diff --git a/.github/workflows/build-docfx.yml b/.github/workflows/build-docfx.yml index 1c4b543743..ca1a6f0af1 100644 --- a/.github/workflows/build-docfx.yml +++ b/.github/workflows/build-docfx.yml @@ -21,7 +21,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v3.2.0 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Install dependencies run: dotnet restore diff --git a/.github/workflows/build-map-renderer.yml b/.github/workflows/build-map-renderer.yml index e921bd2558..35aed1a7f7 100644 --- a/.github/workflows/build-map-renderer.yml +++ b/.github/workflows/build-map-renderer.yml @@ -36,7 +36,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v3.2.0 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Install dependencies run: dotnet restore diff --git a/.github/workflows/build-test-debug.yml b/.github/workflows/build-test-debug.yml index 9abd4fbe17..47f9fd1a51 100644 --- a/.github/workflows/build-test-debug.yml +++ b/.github/workflows/build-test-debug.yml @@ -36,7 +36,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v3.2.0 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Install dependencies run: dotnet restore diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7cff930c75..1ff4c49d90 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -22,17 +22,24 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v3.2.0 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Get Engine Tag run: | cd RobustToolbox git fetch --depth=1 + - name: Install dependencies + run: dotnet restore + + - name: Build Packaging + run: dotnet build Content.Packaging --configuration Release --no-restore /m + + - name: Package server + run: dotnet run --project Content.Packaging server --platform win-x64 --platform linux-x64 --platform osx-x64 --platform linux-arm64 + - name: Package client - run: | - Tools/package_server_build.py -p win-x64 linux-x64 osx-x64 linux-arm64 - Tools/package_client_build.py + run: dotnet run --project Content.Packaging client --no-wipe-release - name: Update Build Info run: Tools/gen_build_info.py diff --git a/.github/workflows/test-packaging.yml b/.github/workflows/test-packaging.yml index 815b6a4adc..2dce502697 100644 --- a/.github/workflows/test-packaging.yml +++ b/.github/workflows/test-packaging.yml @@ -51,15 +51,19 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v3.2.0 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Install dependencies run: dotnet restore + - name: Build Packaging + run: dotnet build Content.Packaging --configuration Release --no-restore /m + + - name: Package server + run: dotnet run --project Content.Packaging server --platform win-x64 --platform linux-x64 --platform osx-x64 --platform linux-arm64 + - name: Package client - run: | - Tools/package_server_build.py -p win-x64 linux-x64 osx-x64 linux-arm64 - Tools/package_client_build.py + run: dotnet run --project Content.Packaging client --no-wipe-release - name: Update Build Info run: Tools/gen_build_info.py diff --git a/.github/workflows/update-credits.yml b/.github/workflows/update-credits.yml index e0333096c4..fec053dc1b 100644 --- a/.github/workflows/update-credits.yml +++ b/.github/workflows/update-credits.yml @@ -23,10 +23,30 @@ jobs: # TODO #- name: Get this week's Patreons - # run: Tools/script2dumppatreons > Resources/Credits/Patrons.yml + # run: Tools/script2dumppatreons > Resources/Credits/Patrons.yml + + # MAKE SURE YOU ENABLED "Allow GitHub Actions to create and approve pull requests" IN YOUR ACTIONS, OTHERWISE IT WILL MOST LIKELY FAIL - - name: Commit new credit files - uses: stefanzweifel/git-auto-commit-action@v4 + + # For this you can use a pat token of an account with direct push access to the repo if you have protected branches. + # Uncomment this and comment the other line if you do this. + # https://github.com/stefanzweifel/git-auto-commit-action#push-to-protected-branches + + #- name: Commit new credit files + # uses: stefanzweifel/git-auto-commit-action@v4 + # with: + # commit_message: Update Credits + # commit_author: PJBot + + # This will make a PR + - name: Set current date as env variable + run: echo "NOW=$(date +'%Y-%m-%dT%H-%M-%S')" >> $GITHUB_ENV + + - name: Create Pull Request + uses: peter-evans/create-pull-request@v5 with: - commit_message: Update Credits - commit_author: DeltaV-Bot + commit-message: Update Credits + title: Update Credits + body: This is an automated Pull Request. This PR updates the github contributors in the credits section. + author: DeltaV-Bot + branch: automated/credits-${{env.NOW}} diff --git a/.github/workflows/yaml-linter.yml b/.github/workflows/yaml-linter.yml index 254384acff..691eb29f1d 100644 --- a/.github/workflows/yaml-linter.yml +++ b/.github/workflows/yaml-linter.yml @@ -26,7 +26,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v3.2.0 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Install dependencies run: dotnet restore - name: Build diff --git a/Content.Benchmarks/Content.Benchmarks.csproj b/Content.Benchmarks/Content.Benchmarks.csproj index a8b255c71b..049d6f5b6f 100644 --- a/Content.Benchmarks/Content.Benchmarks.csproj +++ b/Content.Benchmarks/Content.Benchmarks.csproj @@ -8,7 +8,7 @@ false Exe true - 11 + 12 diff --git a/Content.Benchmarks/EntityQueryBenchmark.cs b/Content.Benchmarks/EntityQueryBenchmark.cs new file mode 100644 index 0000000000..cef6a5e35c --- /dev/null +++ b/Content.Benchmarks/EntityQueryBenchmark.cs @@ -0,0 +1,137 @@ +#nullable enable +using System; +using System.Threading.Tasks; +using BenchmarkDotNet.Attributes; +using Content.IntegrationTests; +using Content.IntegrationTests.Pair; +using Content.Shared.Clothing.Components; +using Content.Shared.Item; +using Robust.Server.GameObjects; +using Robust.Shared; +using Robust.Shared.Analyzers; +using Robust.Shared.GameObjects; +using Robust.Shared.Map; +using Robust.Shared.Random; + +namespace Content.Benchmarks; + +[Virtual] +public class EntityQueryBenchmark +{ + public const string Map = "Maps/atlas.yml"; + + private TestPair _pair = default!; + private IEntityManager _entMan = default!; + private MapId _mapId = new MapId(10); + private EntityQuery _clothingQuery; + + [GlobalSetup] + public void Setup() + { + ProgramShared.PathOffset = "../../../../"; + PoolManager.Startup(null); + + _pair = PoolManager.GetServerClient().GetAwaiter().GetResult(); + _entMan = _pair.Server.ResolveDependency(); + + _pair.Server.ResolveDependency().SetSeed(42); + _pair.Server.WaitPost(() => + { + var success = _entMan.System().TryLoad(_mapId, Map, out _); + if (!success) + throw new Exception("Map load failed"); + _pair.Server.MapMan.DoMapInitialize(_mapId); + }).GetAwaiter().GetResult(); + + _clothingQuery = _entMan.GetEntityQuery(); + + // Apparently ~40% of entities are items, and 1 in 6 of those are clothing. + /* + var entCount = _entMan.EntityCount; + var itemCount = _entMan.Count(); + var clothingCount = _entMan.Count(); + var itemRatio = (float) itemCount / entCount; + var clothingRatio = (float) clothingCount / entCount; + Console.WriteLine($"Entities: {entCount}. Items: {itemRatio:P2}. Clothing: {clothingRatio:P2}."); + */ + } + + [GlobalCleanup] + public async Task Cleanup() + { + await _pair.DisposeAsync(); + PoolManager.Shutdown(); + } + + [Benchmark] + public int HasComponent() + { + var hashCode = 0; + var enumerator = _entMan.AllEntityQueryEnumerator(); + while (enumerator.MoveNext(out var uid, out var _)) + { + if (_entMan.HasComponent(uid)) + hashCode = HashCode.Combine(hashCode, uid.Id); + } + + return hashCode; + } + + [Benchmark] + public int HasComponentQuery() + { + var hashCode = 0; + var enumerator = _entMan.AllEntityQueryEnumerator(); + while (enumerator.MoveNext(out var uid, out var _)) + { + if (_clothingQuery.HasComponent(uid)) + hashCode = HashCode.Combine(hashCode, uid.Id); + } + + return hashCode; + } + + [Benchmark] + public int TryGetComponent() + { + var hashCode = 0; + var enumerator = _entMan.AllEntityQueryEnumerator(); + while (enumerator.MoveNext(out var uid, out var _)) + { + if (_entMan.TryGetComponent(uid, out ClothingComponent? clothing)) + hashCode = HashCode.Combine(hashCode, clothing.GetHashCode()); + } + + return hashCode; + } + + [Benchmark] + public int TryGetComponentQuery() + { + var hashCode = 0; + var enumerator = _entMan.AllEntityQueryEnumerator(); + while (enumerator.MoveNext(out var uid, out var _)) + { + if (_clothingQuery.TryGetComponent(uid, out var clothing)) + hashCode = HashCode.Combine(hashCode, clothing.GetHashCode()); + } + + return hashCode; + } + + /// + /// Enumerate all entities with both an item and clothing component. + /// + [Benchmark] + public int Enumerator() + { + var hashCode = 0; + var enumerator = _entMan.AllEntityQueryEnumerator(); + while (enumerator.MoveNext(out var _, out var clothing)) + { + hashCode = HashCode.Combine(hashCode, clothing.GetHashCode()); + } + + return hashCode; + } +} diff --git a/Content.Client/Actions/ActionsSystem.cs b/Content.Client/Actions/ActionsSystem.cs index a487e5d8d8..508f3404ba 100644 --- a/Content.Client/Actions/ActionsSystem.cs +++ b/Content.Client/Actions/ActionsSystem.cs @@ -6,6 +6,7 @@ using Robust.Shared.ContentPack; using Robust.Shared.GameStates; using Robust.Shared.Input.Binding; +using Robust.Shared.Player; using Robust.Shared.Serialization.Manager; using Robust.Shared.Serialization.Markdown; using Robust.Shared.Serialization.Markdown.Mapping; @@ -86,12 +87,15 @@ private void BaseHandleState(EntityUid uid, BaseActionComponent component, Ba component.Cooldown = state.Cooldown; component.UseDelay = state.UseDelay; component.Charges = state.Charges; + component.MaxCharges = state.MaxCharges; + component.RenewCharges = state.RenewCharges; component.Container = EnsureEntity(state.Container, uid); component.EntityIcon = EnsureEntity(state.EntityIcon, uid); component.CheckCanInteract = state.CheckCanInteract; component.ClientExclusive = state.ClientExclusive; component.Priority = state.Priority; component.AttachedEntity = EnsureEntity(state.AttachedEntity, uid); + component.RaiseOnUser = state.RaiseOnUser; component.AutoPopulate = state.AutoPopulate; component.Temporary = state.Temporary; component.ItemIconStyle = state.ItemIconStyle; diff --git a/Content.Client/Actions/UI/ActionAlertTooltip.cs b/Content.Client/Actions/UI/ActionAlertTooltip.cs index f48350d772..ddc498b6e9 100644 --- a/Content.Client/Actions/UI/ActionAlertTooltip.cs +++ b/Content.Client/Actions/UI/ActionAlertTooltip.cs @@ -21,7 +21,7 @@ public sealed class ActionAlertTooltip : PanelContainer /// public (TimeSpan Start, TimeSpan End)? Cooldown { get; set; } - public ActionAlertTooltip(FormattedMessage name, FormattedMessage? desc, string? requires = null) + public ActionAlertTooltip(FormattedMessage name, FormattedMessage? desc, string? requires = null, FormattedMessage? charges = null) { _gameTiming = IoCManager.Resolve(); @@ -52,6 +52,17 @@ public ActionAlertTooltip(FormattedMessage name, FormattedMessage? desc, string? vbox.AddChild(description); } + if (charges != null && !string.IsNullOrWhiteSpace(charges.ToString())) + { + var chargesLabel = new RichTextLabel + { + MaxWidth = TooltipTextMaxWidth, + StyleClasses = { StyleNano.StyleClassTooltipActionCharges } + }; + chargesLabel.SetMessage(charges); + vbox.AddChild(chargesLabel); + } + vbox.AddChild(_cooldownLabel = new RichTextLabel { MaxWidth = TooltipTextMaxWidth, diff --git a/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs b/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs index 5fa28bf1ac..41c3ac76f9 100644 --- a/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs +++ b/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs @@ -1,10 +1,8 @@ using System.Linq; using Content.Client.Administration.Systems; using Content.Client.UserInterface.Controls; -using Content.Client.Verbs; using Content.Client.Verbs.UI; using Content.Shared.Administration; -using Content.Shared.Input; using Robust.Client.AutoGenerated; using Robust.Client.Graphics; using Robust.Client.UserInterface; @@ -39,6 +37,7 @@ public PlayerListControl() RobustXamlLoader.Load(this); // Fill the Option data PlayerListContainer.ItemPressed += PlayerListItemPressed; + PlayerListContainer.ItemKeyBindDown += PlayerListItemKeyBindDown; PlayerListContainer.GenerateItem += GenerateButton; PopulateList(_adminSystem.PlayerList); FilterLineEdit.OnTextChanged += _ => FilterList(); @@ -50,18 +49,27 @@ private void PlayerListItemPressed(BaseButton.ButtonEventArgs? args, ListData? d { if (args == null || data is not PlayerListData {Info: var selectedPlayer}) return; - if (args.Event.Function == EngineKeyFunctions.UIClick) - { - OnSelectionChanged?.Invoke(selectedPlayer); - // update label text. Only required if there is some override (e.g. unread bwoink count). - if (OverrideText != null && args.Button.Children.FirstOrDefault()?.Children?.FirstOrDefault() is Label label) - label.Text = GetText(selectedPlayer); - } - else if (args.Event.Function == EngineKeyFunctions.UseSecondary && selectedPlayer.NetEntity != null) - { - _uiManager.GetUIController().OpenVerbMenu(_entManager.GetEntity(selectedPlayer.NetEntity.Value)); - } + if (args.Event.Function != EngineKeyFunctions.UIClick) + return; + + OnSelectionChanged?.Invoke(selectedPlayer); + + // update label text. Only required if there is some override (e.g. unread bwoink count). + if (OverrideText != null && args.Button.Children.FirstOrDefault()?.Children?.FirstOrDefault() is Label label) + label.Text = GetText(selectedPlayer); + } + + private void PlayerListItemKeyBindDown(GUIBoundKeyEventArgs? args, ListData? data) + { + if (args == null || data is not PlayerListData { Info: var selectedPlayer }) + return; + + if (args.Function != EngineKeyFunctions.UIRightClick || selectedPlayer.NetEntity == null) + return; + + _uiManager.GetUIController().OpenVerbMenu(selectedPlayer.NetEntity.Value, true); + args.Handle(); } public void StopFiltering() @@ -122,7 +130,7 @@ private void GenerateButton(ListData data, ListContainerButton button) } } }); - button.EnableAllKeybinds = true; + button.AddStyleClass(ListContainer.StyleClassListContainerButton); } } diff --git a/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTab.xaml.cs b/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTab.xaml.cs index 3f5df2cf00..dcb184b308 100644 --- a/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTab.xaml.cs +++ b/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTab.xaml.cs @@ -1,7 +1,6 @@ using Content.Client.Station; using Robust.Client.AutoGenerated; using Robust.Client.UserInterface; -using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; using Robust.Shared.Map.Components; @@ -15,7 +14,7 @@ public sealed partial class ObjectsTab : Control private readonly List _objects = new(); private List _selections = new(); - public event Action? OnEntryPressed; + public event Action? OnEntryKeyBindDown; public ObjectsTab() { @@ -82,7 +81,7 @@ private void RefreshObjectList(ObjectsTabSelection selection) var ctrl = new ObjectsTabEntry(name, entity); _objects.Add(ctrl); ObjectList.AddChild(ctrl); - ctrl.OnPressed += args => OnEntryPressed?.Invoke(args); + ctrl.OnKeyBindDown += args => OnEntryKeyBindDown?.Invoke(ctrl, args); } } diff --git a/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTabEntry.xaml b/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTabEntry.xaml index 92d5278ab5..0f6975e365 100644 --- a/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTabEntry.xaml +++ b/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTabEntry.xaml @@ -1,6 +1,5 @@  + xmlns:customControls="clr-namespace:Content.Client.Administration.UI.CustomControls"> _players = new List(); @@ -26,11 +28,11 @@ public sealed partial class PlayerTab : Control private bool _ascending = true; private bool _showDisconnected; - public event Action? OnEntryPressed; + public event Action? OnEntryKeyBindDown; public PlayerTab() { - _entManager = IoCManager.Resolve(); + IoCManager.InjectDependencies(this); _adminSystem = _entManager.System(); RobustXamlLoader.Load(this); RefreshPlayerList(_adminSystem.PlayerList); @@ -95,13 +97,11 @@ private void RefreshPlayerList(IReadOnlyList players) foreach (var child in PlayerList.Children.ToArray()) { if (child is PlayerTabEntry) - child.Orphan(); + child.Dispose(); } _players = players; - - var playerManager = IoCManager.Resolve(); - PlayerCount.Text = $"Players: {playerManager.PlayerCount}"; + PlayerCount.Text = $"Players: {_playerMan.PlayerCount}"; var sortedPlayers = new List(players); sortedPlayers.Sort(Compare); @@ -123,7 +123,7 @@ private void RefreshPlayerList(IReadOnlyList players) player.Connected, player.PlaytimeString); entry.PlayerEntity = player.NetEntity; - entry.OnPressed += args => OnEntryPressed?.Invoke(args); + entry.OnKeyBindDown += args => OnEntryKeyBindDown?.Invoke(entry, args); entry.ToolTip = Loc.GetString("player-tab-entry-tooltip"); PlayerList.AddChild(entry); diff --git a/Content.Client/Administration/UI/Tabs/PlayerTab/PlayerTabEntry.xaml b/Content.Client/Administration/UI/Tabs/PlayerTab/PlayerTabEntry.xaml index 883681a28a..8ac90305ca 100644 --- a/Content.Client/Administration/UI/Tabs/PlayerTab/PlayerTabEntry.xaml +++ b/Content.Client/Administration/UI/Tabs/PlayerTab/PlayerTabEntry.xaml @@ -1,6 +1,5 @@  + xmlns:customControls="clr-namespace:Content.Client.Administration.UI.CustomControls"> + - + diff --git a/Content.Client/Administration/UI/Tabs/PlayerTab/PlayerTabHeader.xaml.cs b/Content.Client/Administration/UI/Tabs/PlayerTab/PlayerTabHeader.xaml.cs index 98de6dafa9..cf7ceff23c 100644 --- a/Content.Client/Administration/UI/Tabs/PlayerTab/PlayerTabHeader.xaml.cs +++ b/Content.Client/Administration/UI/Tabs/PlayerTab/PlayerTabHeader.xaml.cs @@ -7,7 +7,7 @@ namespace Content.Client.Administration.UI.Tabs.PlayerTab; [GenerateTypedNameReferences] -public sealed partial class PlayerTabHeader : ContainerButton +public sealed partial class PlayerTabHeader : Control { public event Action
? OnHeaderClicked; diff --git a/Content.Client/Alerts/ClientAlertsSystem.cs b/Content.Client/Alerts/ClientAlertsSystem.cs index 5089022415..83327ad77b 100644 --- a/Content.Client/Alerts/ClientAlertsSystem.cs +++ b/Content.Client/Alerts/ClientAlertsSystem.cs @@ -2,6 +2,7 @@ using Content.Shared.Alert; using JetBrains.Annotations; using Robust.Client.Player; +using Robust.Shared.Player; using Robust.Shared.Prototypes; namespace Content.Client.Alerts; diff --git a/Content.Client/Atmos/EntitySystems/AtmosDebugOverlaySystem.cs b/Content.Client/Atmos/EntitySystems/AtmosDebugOverlaySystem.cs index c849abf70e..b63d274bdc 100644 --- a/Content.Client/Atmos/EntitySystems/AtmosDebugOverlaySystem.cs +++ b/Content.Client/Atmos/EntitySystems/AtmosDebugOverlaySystem.cs @@ -1,22 +1,16 @@ -using System.Collections.Generic; using Content.Client.Atmos.Overlays; using Content.Shared.Atmos; using Content.Shared.Atmos.EntitySystems; using Content.Shared.GameTicking; using JetBrains.Annotations; using Robust.Client.Graphics; -using Robust.Shared.IoC; -using Robust.Shared.Map; -using Robust.Shared.Maths; namespace Content.Client.Atmos.EntitySystems { [UsedImplicitly] internal sealed class AtmosDebugOverlaySystem : SharedAtmosDebugOverlaySystem { - - private readonly Dictionary _tileData = - new(); + public readonly Dictionary TileData = new(); // Configuration set by debug commands and used by AtmosDebugOverlay { /// Value source for display @@ -48,20 +42,20 @@ public override void Initialize() private void OnGridRemoved(GridRemovalEvent ev) { - if (_tileData.ContainsKey(ev.EntityUid)) + if (TileData.ContainsKey(ev.EntityUid)) { - _tileData.Remove(ev.EntityUid); + TileData.Remove(ev.EntityUid); } } private void HandleAtmosDebugOverlayMessage(AtmosDebugOverlayMessage message) { - _tileData[GetEntity(message.GridId)] = message; + TileData[GetEntity(message.GridId)] = message; } private void HandleAtmosDebugOverlayDisableMessage(AtmosDebugOverlayDisableMessage ev) { - _tileData.Clear(); + TileData.Clear(); } public override void Shutdown() @@ -74,24 +68,12 @@ public override void Shutdown() public void Reset(RoundRestartCleanupEvent ev) { - _tileData.Clear(); + TileData.Clear(); } public bool HasData(EntityUid gridId) { - return _tileData.ContainsKey(gridId); - } - - public AtmosDebugOverlayData? GetData(EntityUid gridIndex, Vector2i indices) - { - if (!_tileData.TryGetValue(gridIndex, out var srcMsg)) - return null; - - var relative = indices - srcMsg.BaseIdx; - if (relative.X < 0 || relative.Y < 0 || relative.X >= LocalViewRange || relative.Y >= LocalViewRange) - return null; - - return srcMsg.OverlayData[relative.X + relative.Y * LocalViewRange]; + return TileData.ContainsKey(gridId); } } diff --git a/Content.Client/Atmos/Overlays/AtmosDebugOverlay.cs b/Content.Client/Atmos/Overlays/AtmosDebugOverlay.cs index 72adf276bf..fcf3b04e53 100644 --- a/Content.Client/Atmos/Overlays/AtmosDebugOverlay.cs +++ b/Content.Client/Atmos/Overlays/AtmosDebugOverlay.cs @@ -1,187 +1,272 @@ +using System.Linq; using System.Numerics; using Content.Client.Atmos.EntitySystems; +using Content.Client.Resources; using Content.Shared.Atmos; -using Content.Shared.Atmos.EntitySystems; using Robust.Client.Graphics; +using Robust.Client.Input; +using Robust.Client.ResourceManagement; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.CustomControls; using Robust.Shared.Enums; using Robust.Shared.Map; using Robust.Shared.Map.Components; +using AtmosDebugOverlayData = Content.Shared.Atmos.EntitySystems.SharedAtmosDebugOverlaySystem.AtmosDebugOverlayData; +using DebugMessage = Content.Shared.Atmos.EntitySystems.SharedAtmosDebugOverlaySystem.AtmosDebugOverlayMessage; -namespace Content.Client.Atmos.Overlays +namespace Content.Client.Atmos.Overlays; + + +public sealed class AtmosDebugOverlay : Overlay { - public sealed class AtmosDebugOverlay : Overlay + [Dependency] private readonly IEntityManager _entManager = default!; + [Dependency] private readonly IMapManager _mapManager = default!; + [Dependency] private readonly IInputManager _input = default!; + [Dependency] private readonly IUserInterfaceManager _ui = default!; + [Dependency] private readonly IResourceCache _cache = default!; + private readonly SharedTransformSystem _transform; + private readonly AtmosDebugOverlaySystem _system; + private readonly SharedMapSystem _map; + private readonly Font _font; + private List<(Entity, DebugMessage)> _grids = new(); + + public override OverlaySpace Space => OverlaySpace.WorldSpace | OverlaySpace.ScreenSpace; + + internal AtmosDebugOverlay(AtmosDebugOverlaySystem system) { - private readonly AtmosDebugOverlaySystem _atmosDebugOverlaySystem; + IoCManager.InjectDependencies(this); + + _system = system; + _transform = _entManager.System(); + _map = _entManager.System(); + _font = _cache.GetFont("/Fonts/NotoSans/NotoSans-Regular.ttf", 12); + } + + protected override void Draw(in OverlayDrawArgs args) + { + if (args.Space == OverlaySpace.ScreenSpace) + { + DrawTooltip(args); + return; + } - [Dependency] private readonly IEntityManager _entManager = default!; - [Dependency] private readonly IMapManager _mapManager = default!; + var handle = args.WorldHandle; + GetGrids(args.MapId, args.WorldBounds); - public override OverlaySpace Space => OverlaySpace.WorldSpace; - private List> _grids = new(); + // IF YOU ARE ABOUT TO INTRODUCE CHUNKING OR SOME OTHER OPTIMIZATION INTO THIS CODE: + // -- THINK! -- + // 1. "Is this going to make a critical atmos debugging tool harder to debug itself?" + // 2. "Is this going to do anything that could cause the atmos debugging tool to use resources, server-side or client-side, when nobody's using it?" + // 3. "Is this going to make it harder for atmos programmers to add data that may not be chunk-friendly into the atmos debugger?" + // Nanotrasen needs YOU! to avoid premature optimization in critical debugging tools - 20kdc - internal AtmosDebugOverlay(AtmosDebugOverlaySystem system) + foreach (var (grid, msg) in _grids) { - IoCManager.InjectDependencies(this); + handle.SetTransform(_transform.GetWorldMatrix(grid)); + DrawData(msg, handle); + } - _atmosDebugOverlaySystem = system; + handle.SetTransform(Matrix3.Identity); + } + + private void DrawData(DebugMessage msg, + DrawingHandleWorld handle) + { + foreach (var data in msg.OverlayData) + { + if (data != null) + DrawGridTile(data.Value, handle); } + } + + private void DrawGridTile(AtmosDebugOverlayData data, + DrawingHandleWorld handle) + { + DrawFill(data, handle); + DrawBlocked(data, handle); + } + + private void DrawFill(AtmosDebugOverlayData data, DrawingHandleWorld handle) + { + var tile = data.Indices; + var fill = GetFillData(data); + var interp = (fill - _system.CfgBase) / _system.CfgScale; - protected override void Draw(in OverlayDrawArgs args) + Color res; + if (_system.CfgCBM) + { + // Greyscale interpolation + res = Color.InterpolateBetween(Color.Black, Color.White, interp); + } + else { - var drawHandle = args.WorldHandle; + // Red-Green-Blue interpolation + if (interp < 0.5f) + { + res = Color.InterpolateBetween(Color.Red, Color.LimeGreen, interp * 2); + } + else + { + res = Color.InterpolateBetween(Color.LimeGreen, Color.Blue, (interp - 0.5f) * 2); + } + } - var mapId = args.Viewport.Eye!.Position.MapId; - var worldBounds = args.WorldBounds; + res = res.WithAlpha(0.75f); + handle.DrawRect(Box2.FromDimensions(new Vector2(tile.X, tile.Y), new Vector2(1, 1)), res); + } - // IF YOU ARE ABOUT TO INTRODUCE CHUNKING OR SOME OTHER OPTIMIZATION INTO THIS CODE: - // -- THINK! -- - // 1. "Is this going to make a critical atmos debugging tool harder to debug itself?" - // 2. "Is this going to do anything that could cause the atmos debugging tool to use resources, server-side or client-side, when nobody's using it?" - // 3. "Is this going to make it harder for atmos programmers to add data that may not be chunk-friendly into the atmos debugger?" - // Nanotrasen needs YOU! to avoid premature optimization in critical debugging tools - 20kdc + private float GetFillData(AtmosDebugOverlayData data) + { + if (data.Moles == null) + return 0; - _grids.Clear(); + switch (_system.CfgMode) + { + case AtmosDebugOverlayMode.TotalMoles: + var total = 0f; + foreach (var f in data.Moles) + { + total += f; + } - _mapManager.FindGridsIntersecting(mapId, worldBounds, ref _grids, (EntityUid uid, MapGridComponent grid, - ref List> state) => - { - state.Add((uid, grid)); - return true; - }); + return total; + case AtmosDebugOverlayMode.GasMoles: + return data.Moles[_system.CfgSpecificGas]; + default: + return data.Temperature; + } + } - foreach (var (uid, mapGrid) in _grids) - { - if (!_atmosDebugOverlaySystem.HasData(uid) || - !_entManager.TryGetComponent(uid, out var xform)) - continue; + private void DrawBlocked(AtmosDebugOverlayData data, DrawingHandleWorld handle) + { + var tile = data.Indices; + var tileCentre = tile + 0.5f * Vector2.One; + CheckAndShowBlockDir(data, handle, AtmosDirection.North, tileCentre); + CheckAndShowBlockDir(data, handle, AtmosDirection.South, tileCentre); + CheckAndShowBlockDir(data, handle, AtmosDirection.East, tileCentre); + CheckAndShowBlockDir(data, handle, AtmosDirection.West, tileCentre); + + // -- Pressure Direction -- + if (data.PressureDirection != AtmosDirection.Invalid) + { + DrawPressureDirection(handle, data.PressureDirection, tileCentre, Color.Blue); + } + else if (data.LastPressureDirection != AtmosDirection.Invalid) + { + DrawPressureDirection(handle, data.LastPressureDirection, tileCentre, Color.LightGray); + } + + // -- Excited Groups -- + if (data.InExcitedGroup is {} grp) + { + var basisA = tile; + var basisB = tile + new Vector2(1.0f, 1.0f); + var basisC = tile + new Vector2(0.0f, 1.0f); + var basisD = tile + new Vector2(1.0f, 0.0f); + var color = Color.White // Use first three nibbles for an unique color... Good enough? + .WithRed(grp & 0x000F) + .WithGreen((grp & 0x00F0) >> 4) + .WithBlue((grp & 0x0F00) >> 8); + handle.DrawLine(basisA, basisB, color); + handle.DrawLine(basisC, basisD, color); + } + + if (data.IsSpace) + handle.DrawCircle(tileCentre, 0.15f, Color.Yellow); + + if (data.MapAtmosphere) + handle.DrawCircle(tileCentre, 0.1f, Color.Orange); + + if (data.NoGrid) + handle.DrawCircle(tileCentre, 0.05f, Color.Black); + } + + private void CheckAndShowBlockDir(AtmosDebugOverlayData data, DrawingHandleWorld handle, AtmosDirection dir, + Vector2 tileCentre) + { + if (!data.BlockDirection.HasFlag(dir)) + return; + + // Account for South being 0. + var atmosAngle = dir.ToAngle() - Angle.FromDegrees(90); + var atmosAngleOfs = atmosAngle.ToVec() * 0.45f; + var atmosAngleOfsR90 = new Vector2(atmosAngleOfs.Y, -atmosAngleOfs.X); + var basisA = tileCentre + atmosAngleOfs - atmosAngleOfsR90; + var basisB = tileCentre + atmosAngleOfs + atmosAngleOfsR90; + handle.DrawLine(basisA, basisB, Color.Azure); + } - drawHandle.SetTransform(xform.WorldMatrix); + private void DrawPressureDirection( + DrawingHandleWorld handle, + AtmosDirection d, + Vector2 center, + Color color) + { + // Account for South being 0. + var atmosAngle = d.ToAngle() - Angle.FromDegrees(90); + var atmosAngleOfs = atmosAngle.ToVec() * 0.4f; + handle.DrawLine(center, center + atmosAngleOfs, color); + } + + private void DrawTooltip(in OverlayDrawArgs args) + { + var handle = args.ScreenHandle; + var mousePos = _input.MouseScreenPosition; + if (!mousePos.IsValid) + return; + + if (_ui.MouseGetControl(mousePos) is not IViewportControl viewport) + return; - for (var pass = 0; pass < 2; pass++) + var coords= viewport.PixelToMap(mousePos.Position); + var box = Box2.CenteredAround(coords.Position, 3 * Vector2.One); + GetGrids(coords.MapId, new Box2Rotated(box)); + + foreach (var (grid, msg) in _grids) + { + var index = _map.WorldToTile(grid, grid, coords.Position); + foreach (var data in msg.OverlayData) + { + if (data?.Indices == index) { - foreach (var tile in mapGrid.GetTilesIntersecting(worldBounds)) - { - var dataMaybeNull = _atmosDebugOverlaySystem.GetData(uid, tile.GridIndices); - if (dataMaybeNull != null) - { - var data = (SharedAtmosDebugOverlaySystem.AtmosDebugOverlayData) dataMaybeNull; - if (pass == 0) - { - // -- Mole Count -- - float total = 0; - switch (_atmosDebugOverlaySystem.CfgMode) - { - case AtmosDebugOverlayMode.TotalMoles: - foreach (var f in data.Moles) - { - total += f; - } - break; - case AtmosDebugOverlayMode.GasMoles: - total = data.Moles[_atmosDebugOverlaySystem.CfgSpecificGas]; - break; - case AtmosDebugOverlayMode.Temperature: - total = data.Temperature; - break; - } - var interp = (total - _atmosDebugOverlaySystem.CfgBase) / _atmosDebugOverlaySystem.CfgScale; - Color res; - if (_atmosDebugOverlaySystem.CfgCBM) - { - // Greyscale interpolation - res = Color.InterpolateBetween(Color.Black, Color.White, interp); - } - else - { - // Red-Green-Blue interpolation - if (interp < 0.5f) - { - res = Color.InterpolateBetween(Color.Red, Color.LimeGreen, interp * 2); - } - else - { - res = Color.InterpolateBetween(Color.LimeGreen, Color.Blue, (interp - 0.5f) * 2); - } - } - res = res.WithAlpha(0.75f); - drawHandle.DrawRect(Box2.FromDimensions(new Vector2(tile.X, tile.Y), new Vector2(1, 1)), res); - } - else if (pass == 1) - { - // -- Blocked Directions -- - void CheckAndShowBlockDir(AtmosDirection dir) - { - if (data.BlockDirection.HasFlag(dir)) - { - // Account for South being 0. - var atmosAngle = dir.ToAngle() - Angle.FromDegrees(90); - var atmosAngleOfs = atmosAngle.ToVec() * 0.45f; - var atmosAngleOfsR90 = new Vector2(atmosAngleOfs.Y, -atmosAngleOfs.X); - var tileCentre = new Vector2(tile.X + 0.5f, tile.Y + 0.5f); - var basisA = tileCentre + atmosAngleOfs - atmosAngleOfsR90; - var basisB = tileCentre + atmosAngleOfs + atmosAngleOfsR90; - drawHandle.DrawLine(basisA, basisB, Color.Azure); - } - } - CheckAndShowBlockDir(AtmosDirection.North); - CheckAndShowBlockDir(AtmosDirection.South); - CheckAndShowBlockDir(AtmosDirection.East); - CheckAndShowBlockDir(AtmosDirection.West); - - void DrawPressureDirection( - DrawingHandleWorld handle, - AtmosDirection d, - TileRef t, - Color color) - { - // Account for South being 0. - var atmosAngle = d.ToAngle() - Angle.FromDegrees(90); - var atmosAngleOfs = atmosAngle.ToVec() * 0.4f; - var tileCentre = new Vector2(t.X + 0.5f, t.Y + 0.5f); - var basisA = tileCentre; - var basisB = tileCentre + atmosAngleOfs; - handle.DrawLine(basisA, basisB, color); - } - - // -- Pressure Direction -- - if (data.PressureDirection != AtmosDirection.Invalid) - { - DrawPressureDirection(drawHandle, data.PressureDirection, tile, Color.Blue); - } - else if (data.LastPressureDirection != AtmosDirection.Invalid) - { - DrawPressureDirection(drawHandle, data.LastPressureDirection, tile, Color.LightGray); - } - - var tilePos = new Vector2(tile.X, tile.Y); - - // -- Excited Groups -- - if (data.InExcitedGroup != 0) - { - var basisA = tilePos; - var basisB = tilePos + new Vector2(1.0f, 1.0f); - var basisC = tilePos + new Vector2(0.0f, 1.0f); - var basisD = tilePos + new Vector2(1.0f, 0.0f); - var color = Color.White // Use first three nibbles for an unique color... Good enough? - .WithRed( data.InExcitedGroup & 0x000F) - .WithGreen((data.InExcitedGroup & 0x00F0) >>4) - .WithBlue( (data.InExcitedGroup & 0x0F00) >>8); - drawHandle.DrawLine(basisA, basisB, color); - drawHandle.DrawLine(basisC, basisD, color); - } - - // -- Space Tiles -- - if (data.IsSpace) - { - drawHandle.DrawCircle(tilePos + Vector2.One/2, 0.125f, Color.Orange); - } - } - } - } + DrawTooltip(handle, mousePos.Position, data.Value); + return; } } - - drawHandle.SetTransform(Matrix3.Identity); } } + + private void DrawTooltip(DrawingHandleScreen handle, Vector2 pos, AtmosDebugOverlayData data) + { + var lineHeight = _font.GetLineHeight(1f); + var offset = new Vector2(0, lineHeight); + + var moles = data.Moles == null + ? "No Air" + : data.Moles.Sum().ToString(); + + handle.DrawString(_font, pos, $"Moles: {moles}"); + pos += offset; + handle.DrawString(_font, pos, $"Temp: {data.Temperature}"); + pos += offset; + handle.DrawString(_font, pos, $"Excited: {data.InExcitedGroup?.ToString() ?? "None"}"); + pos += offset; + handle.DrawString(_font, pos, $"Space: {data.IsSpace}"); + pos += offset; + handle.DrawString(_font, pos, $"Map: {data.MapAtmosphere}"); + pos += offset; + handle.DrawString(_font, pos, $"NoGrid: {data.NoGrid}"); + } + + private void GetGrids(MapId mapId, Box2Rotated box) + { + _grids.Clear(); + _mapManager.FindGridsIntersecting(mapId, box, ref _grids, (EntityUid uid, MapGridComponent grid, + ref List<(Entity, DebugMessage)> state) => + { + if (_system.TileData.TryGetValue(uid, out var data)) + state.Add(((uid, grid), data)); + return true; + }); + } } diff --git a/Content.Client/Atmos/UI/GasAnalyzerWindow.xaml.cs b/Content.Client/Atmos/UI/GasAnalyzerWindow.xaml.cs index ccf9e370e3..b105e629cf 100644 --- a/Content.Client/Atmos/UI/GasAnalyzerWindow.xaml.cs +++ b/Content.Client/Atmos/UI/GasAnalyzerWindow.xaml.cs @@ -241,6 +241,10 @@ private void GenerateGasDisplay(GasMixEntry gasMix, Control parent) { Orientation = BoxContainer.LayoutOrientation.Vertical }; + var tablePercent = new BoxContainer + { + Orientation = BoxContainer.LayoutOrientation.Vertical + }; dataContainer.AddChild(new BoxContainer { Orientation = BoxContainer.LayoutOrientation.Horizontal, @@ -252,7 +256,13 @@ private void GenerateGasDisplay(GasMixEntry gasMix, Control parent) MinSize = new Vector2(10, 0), HorizontalExpand = true }, - tableVal + tableVal, + new Control + { + MinSize = new Vector2(10, 0), + HorizontalExpand = true + }, + tablePercent } }); // This is the gas bar thingy @@ -260,6 +270,7 @@ private void GenerateGasDisplay(GasMixEntry gasMix, Control parent) var gasBar = new SplitBar { MinHeight = height, + MinBarSize = new Vector2(12, 0) }; // Separator dataContainer.AddChild(new Control @@ -274,6 +285,17 @@ private void GenerateGasDisplay(GasMixEntry gasMix, Control parent) totalGasAmount += gas.Amount; } + tableKey.AddChild(new Label + { Text = Loc.GetString("gas-analyzer-window-gas-column-name"), Align = Label.AlignMode.Center }); + tableVal.AddChild(new Label + { Text = Loc.GetString("gas-analyzer-window-molarity-column-name"), Align = Label.AlignMode.Center }); + tablePercent.AddChild(new Label + { Text = Loc.GetString("gas-analyzer-window-percentage-column-name"), Align = Label.AlignMode.Center }); + + tableKey.AddChild(new StripeBack()); + tableVal.AddChild(new StripeBack()); + tablePercent.AddChild(new StripeBack()); + for (var j = 0; j < gasMix.Gases.Length; j++) { var gas = gasMix.Gases[j]; @@ -286,10 +308,14 @@ private void GenerateGasDisplay(GasMixEntry gasMix, Control parent) tableVal.AddChild(new Label { Text = Loc.GetString("gas-analyzer-window-molarity-text", - ("mol", $"{gas.Amount:0.##}"), - ("percentage", $"{(gas.Amount / totalGasAmount * 100):0.#}")), + ("mol", $"{gas.Amount:0.00}")), Align = Label.AlignMode.Right, - HorizontalExpand = true + }); + tablePercent.AddChild(new Label + { + Text = Loc.GetString("gas-analyzer-window-percentage-text", + ("percentage", $"{(gas.Amount / totalGasAmount * 100):0.0}")), + Align = Label.AlignMode.Right }); // Add to the gas bar //TODO: highlight the currently hover one diff --git a/Content.Client/Audio/AmbientSoundSystem.cs b/Content.Client/Audio/AmbientSoundSystem.cs index aebacb94f6..d66ee434a2 100644 --- a/Content.Client/Audio/AmbientSoundSystem.cs +++ b/Content.Client/Audio/AmbientSoundSystem.cs @@ -1,16 +1,21 @@ -using System.Linq; -using System.Numerics; using Content.Shared.Audio; using Content.Shared.CCVar; -using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.Player; using Robust.Shared.Audio; +using Robust.Shared.Log; using Robust.Shared.Configuration; +using Robust.Shared.Map; using Robust.Shared.Physics; using Robust.Shared.Random; using Robust.Shared.Timing; using Robust.Shared.Utility; +using System.Linq; +using System.Numerics; +using Robust.Client.GameObjects; +using Robust.Shared.Audio.Effects; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Player; namespace Content.Client.Audio; //TODO: This is using a incomplete version of the whole "only play nearest sounds" algo, that breaks down a bit should the ambient sound cap get hit. @@ -41,14 +46,18 @@ protected override void QueueUpdate(EntityUid uid, AmbientSoundComponent ambienc private TimeSpan _targetTime = TimeSpan.Zero; private float _ambienceVolume = 0.0f; - private static AudioParams _params = AudioParams.Default.WithVariation(0.01f).WithLoop(true).WithAttenuation(Attenuation.LinearDistance); + private static AudioParams _params = AudioParams.Default + .WithVariation(0.01f) + .WithLoop(true) + .WithAttenuation(Attenuation.LinearDistance) + .WithMaxDistance(7f); /// /// How many times we can be playing 1 particular sound at once. /// private int MaxSingleSound => (int) (_maxAmbientCount / (16.0f / 6.0f)); - private readonly Dictionary, (IPlayingAudioStream? Stream, SoundSpecifier Sound, string Path)> _playingSounds = new(); + private readonly Dictionary _playingSounds = new(); private readonly Dictionary _playingCount = new(); public bool OverlayEnabled @@ -92,32 +101,32 @@ public override void Initialize() _cfg.OnValueChanged(CCVars.AmbientCooldown, SetCooldown, true); _cfg.OnValueChanged(CCVars.MaxAmbientSources, SetAmbientCount, true); _cfg.OnValueChanged(CCVars.AmbientRange, SetAmbientRange, true); - _cfg.OnValueChanged(CCVars.AmbienceVolume, SetAmbienceVolume, true); + _cfg.OnValueChanged(CCVars.AmbienceVolume, SetAmbienceGain, true); SubscribeLocalEvent(OnShutdown); } private void OnShutdown(EntityUid uid, AmbientSoundComponent component, ComponentShutdown args) { - if (!_playingSounds.Remove((uid, component), out var sound)) + if (!_playingSounds.Remove(component, out var sound)) return; - sound.Stream?.Stop(); + _audio.Stop(sound.Stream); _playingCount[sound.Path] -= 1; if (_playingCount[sound.Path] == 0) _playingCount.Remove(sound.Path); } - private void SetAmbienceVolume(float value) + private void SetAmbienceGain(float value) { - _ambienceVolume = value; + _ambienceVolume = SharedAudioSystem.GainToVolume(value); - foreach (var ((_, comp), values) in _playingSounds) + foreach (var (comp, values) in _playingSounds) { if (values.Stream == null) continue; - var stream = (AudioSystem.PlayingStream) values.Stream; - stream.Volume = _params.Volume + comp.Volume + _ambienceVolume; + var stream = values.Stream; + _audio.SetVolume(stream, _params.Volume + comp.Volume + _ambienceVolume); } } private void SetCooldown(float value) => _cooldown = value; @@ -132,7 +141,7 @@ public override void Shutdown() _cfg.UnsubValueChanged(CCVars.AmbientCooldown, SetCooldown); _cfg.UnsubValueChanged(CCVars.MaxAmbientSources, SetAmbientCount); _cfg.UnsubValueChanged(CCVars.AmbientRange, SetAmbientRange); - _cfg.UnsubValueChanged(CCVars.AmbienceVolume, SetAmbienceVolume); + _cfg.UnsubValueChanged(CCVars.AmbienceVolume, SetAmbienceGain); } private int PlayingCount(string countSound) @@ -177,7 +186,7 @@ private void ClearSounds() { foreach (var (stream, _, _) in _playingSounds.Values) { - stream?.Stop(); + _audio.Stop(stream); } _playingSounds.Clear(); @@ -186,7 +195,7 @@ private void ClearSounds() private readonly struct QueryState { - public readonly Dictionary)>> SourceDict = new(); + public readonly Dictionary> SourceDict = new(); public readonly Vector2 MapPos; public readonly TransformComponent Player; public readonly EntityQuery Query; @@ -224,7 +233,7 @@ private static bool Callback( // Prioritize far away & loud sounds. var importance = range * (ambientComp.Volume + 32); - state.SourceDict.GetOrNew(key).Add((importance, (ambientComp.Owner, ambientComp))); + state.SourceDict.GetOrNew(key).Add((importance, ambientComp)); return true; } @@ -238,10 +247,9 @@ private void ProcessNearbyAmbience(TransformComponent playerXform) var mapPos = playerXform.MapPosition; // Remove out-of-range ambiences - foreach (var (ent, sound) in _playingSounds) + foreach (var (comp, sound) in _playingSounds) { - var entity = ent.Owner; - var comp = ent.Comp; + var entity = comp.Owner; if (comp.Enabled && // Don't keep playing sounds that have changed since. @@ -258,8 +266,8 @@ private void ProcessNearbyAmbience(TransformComponent playerXform) continue; } - sound.Stream?.Stop(); - _playingSounds.Remove((entity, comp)); + _audio.Stop(sound.Stream); + _playingSounds.Remove(comp); _playingCount[sound.Path] -= 1; if (_playingCount[sound.Path] == 0) _playingCount.Remove(sound.Path); @@ -284,12 +292,11 @@ private void ProcessNearbyAmbience(TransformComponent playerXform) sources.Sort(static (a, b) => b.Importance.CompareTo(a.Importance)); - foreach (var (_, ent) in sources) + foreach (var (_, comp) in sources) { - var uid = ent.Owner; - var comp = ent.Comp; + var uid = comp.Owner; - if (_playingSounds.ContainsKey(ent) || + if (_playingSounds.ContainsKey(comp) || metaQuery.GetComponent(uid).EntityPaused) continue; @@ -299,11 +306,8 @@ private void ProcessNearbyAmbience(TransformComponent playerXform) .WithPlayOffset(_random.NextFloat(0.0f, 100.0f)) .WithMaxDistance(comp.Range); - var stream = _audio.PlayPvs(comp.Sound, uid, audioParams); - if (stream == null) - continue; - - _playingSounds[ent] = (stream, comp.Sound, key); + var stream = _audio.PlayEntity(comp.Sound, Filter.Local(), uid, false, audioParams); + _playingSounds[comp] = (stream.Value.Entity, comp.Sound, key); playingCount++; if (_playingSounds.Count >= _maxAmbientCount) diff --git a/Content.Client/Audio/BackgroundAudioSystem.cs b/Content.Client/Audio/BackgroundAudioSystem.cs index 0b31db2463..09ac1efcd6 100644 --- a/Content.Client/Audio/BackgroundAudioSystem.cs +++ b/Content.Client/Audio/BackgroundAudioSystem.cs @@ -5,6 +5,7 @@ using Robust.Client; using Robust.Client.State; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; using Robust.Shared.Player; @@ -13,6 +14,9 @@ namespace Content.Client.Audio; [UsedImplicitly] public sealed class BackgroundAudioSystem : EntitySystem { + /* + * TODO: Nuke this system and merge into contentaudiosystem + */ [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly IBaseClient _client = default!; [Dependency] private readonly IConfigurationManager _configManager = default!; @@ -21,7 +25,7 @@ public sealed class BackgroundAudioSystem : EntitySystem private readonly AudioParams _lobbyParams = new(-5f, 1, "Master", 0, 0, 0, true, 0f); - private IPlayingAudioStream? _lobbyStream; + public EntityUid? LobbyStream; public override void Initialize() { @@ -108,7 +112,7 @@ public void RestartLobbyMusic() public void StartLobbyMusic() { - if (_lobbyStream != null || !_configManager.GetCVar(CCVars.LobbyMusicEnabled)) + if (LobbyStream != null || !_configManager.GetCVar(CCVars.LobbyMusicEnabled)) return; var file = _gameTicker.LobbySong; @@ -117,13 +121,12 @@ public void StartLobbyMusic() return; } - _lobbyStream = _audio.PlayGlobal(file, Filter.Local(), false, - _lobbyParams.WithVolume(_lobbyParams.Volume + _configManager.GetCVar(CCVars.LobbyMusicVolume))); + LobbyStream = _audio.PlayGlobal(file, Filter.Local(), false, + _lobbyParams.WithVolume(_lobbyParams.Volume + SharedAudioSystem.GainToVolume(_configManager.GetCVar(CCVars.LobbyMusicVolume))))?.Entity; } private void EndLobbyMusic() { - _lobbyStream?.Stop(); - _lobbyStream = null; + LobbyStream = _audio.Stop(LobbyStream); } } diff --git a/Content.Client/Audio/ClientGlobalSoundSystem.cs b/Content.Client/Audio/ClientGlobalSoundSystem.cs index 792f149d18..1d98564090 100644 --- a/Content.Client/Audio/ClientGlobalSoundSystem.cs +++ b/Content.Client/Audio/ClientGlobalSoundSystem.cs @@ -2,6 +2,7 @@ using Content.Shared.CCVar; using Content.Shared.GameTicking; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; using Robust.Shared.Player; @@ -14,11 +15,11 @@ public sealed class ClientGlobalSoundSystem : SharedGlobalSoundSystem // Admin music private bool _adminAudioEnabled = true; - private List _adminAudio = new(1); + private List _adminAudio = new(1); // Event sounds (e.g. nuke timer) private bool _eventAudioEnabled = true; - private Dictionary _eventAudio = new(1); + private Dictionary _eventAudio = new(1); public override void Initialize() { @@ -49,13 +50,13 @@ private void ClearAudio() { foreach (var stream in _adminAudio) { - stream?.Stop(); + _audio.Stop(stream); } _adminAudio.Clear(); - foreach (var (_, stream) in _eventAudio) + foreach (var stream in _eventAudio.Values) { - stream?.Stop(); + _audio.Stop(stream); } _eventAudio.Clear(); @@ -66,7 +67,7 @@ private void PlayAdminSound(AdminSoundEvent soundEvent) if(!_adminAudioEnabled) return; var stream = _audio.PlayGlobal(soundEvent.Filename, Filter.Local(), false, soundEvent.AudioParams); - _adminAudio.Add(stream); + _adminAudio.Add(stream.Value.Entity); } private void PlayStationEventMusic(StationEventMusicEvent soundEvent) @@ -75,7 +76,7 @@ private void PlayStationEventMusic(StationEventMusicEvent soundEvent) if(!_eventAudioEnabled || _eventAudio.ContainsKey(soundEvent.Type)) return; var stream = _audio.PlayGlobal(soundEvent.Filename, Filter.Local(), false, soundEvent.AudioParams); - _eventAudio.Add(soundEvent.Type, stream); + _eventAudio.Add(soundEvent.Type, stream.Value.Entity); } private void PlayGameSound(GameGlobalSoundEvent soundEvent) @@ -85,8 +86,10 @@ private void PlayGameSound(GameGlobalSoundEvent soundEvent) private void StopStationEventMusic(StopStationEventMusic soundEvent) { - if (!_eventAudio.TryGetValue(soundEvent.Type, out var stream)) return; - stream?.Stop(); + if (!_eventAudio.TryGetValue(soundEvent.Type, out var stream)) + return; + + _audio.Stop(stream); _eventAudio.Remove(soundEvent.Type); } @@ -96,7 +99,7 @@ private void ToggleAdminSound(bool enabled) if (_adminAudioEnabled) return; foreach (var stream in _adminAudio) { - stream?.Stop(); + _audio.Stop(stream); } _adminAudio.Clear(); } @@ -107,7 +110,7 @@ private void ToggleStationEventMusic(bool enabled) if (_eventAudioEnabled) return; foreach (var stream in _eventAudio) { - stream.Value?.Stop(); + _audio.Stop(stream.Value); } _eventAudio.Clear(); } diff --git a/Content.Client/Audio/ContentAudioSystem.AmbientMusic.cs b/Content.Client/Audio/ContentAudioSystem.AmbientMusic.cs index 15fc53222e..aafd0ea630 100644 --- a/Content.Client/Audio/ContentAudioSystem.AmbientMusic.cs +++ b/Content.Client/Audio/ContentAudioSystem.AmbientMusic.cs @@ -9,6 +9,8 @@ using Robust.Client.ResourceManagement; using Robust.Client.State; using Robust.Shared.Audio; +using Robust.Shared.Audio.Components; +using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; using Robust.Shared.Player; using Robust.Shared.Prototypes; @@ -39,7 +41,7 @@ public sealed partial class ContentAudioSystem // Don't need to worry about this being serializable or pauseable as it doesn't affect the sim. private TimeSpan _nextAudio; - private AudioSystem.PlayingStream? _ambientMusicStream; + private EntityUid? _ambientMusicStream; private AmbientMusicPrototype? _musicProto; /// @@ -58,12 +60,6 @@ public sealed partial class ContentAudioSystem private void InitializeAmbientMusic() { - // TODO: Shitty preload - foreach (var audio in _proto.Index("AmbienceSpace").PickFiles) - { - _resource.GetResource(audio.ToString()); - } - _configManager.OnValueChanged(CCVars.AmbientMusicVolume, AmbienceCVarChanged, true); _sawmill = IoCManager.Resolve().GetSawmill("audio.ambience"); @@ -71,7 +67,7 @@ private void InitializeAmbientMusic() _nextAudio = TimeSpan.MaxValue; SetupAmbientSounds(); - _proto.PrototypesReloaded += OnProtoReload; + SubscribeLocalEvent(OnProtoReload); _state.OnStateChanged += OnStateChange; // On round end summary OR lobby cut audio. SubscribeNetworkEvent(OnRoundEndMessage); @@ -79,32 +75,25 @@ private void InitializeAmbientMusic() private void AmbienceCVarChanged(float obj) { - _volumeSlider = obj; + _volumeSlider = SharedAudioSystem.GainToVolume(obj); if (_ambientMusicStream != null && _musicProto != null) { - _ambientMusicStream.Volume = _musicProto.Sound.Params.Volume + _volumeSlider; + _audio.SetVolume(_ambientMusicStream, _musicProto.Sound.Params.Volume + _volumeSlider); } } private void ShutdownAmbientMusic() { _configManager.UnsubValueChanged(CCVars.AmbientMusicVolume, AmbienceCVarChanged); - _proto.PrototypesReloaded -= OnProtoReload; _state.OnStateChanged -= OnStateChange; - _ambientMusicStream?.Stop(); + _ambientMusicStream = _audio.Stop(_ambientMusicStream); } private void OnProtoReload(PrototypesReloadedEventArgs obj) { - if (!obj.ByType.ContainsKey(typeof(AmbientMusicPrototype)) && - !obj.ByType.ContainsKey(typeof(RulesPrototype))) - { - return; - } - - _ambientSounds.Clear(); - SetupAmbientSounds(); + if (obj.WasModified() || obj.WasModified()) + SetupAmbientSounds(); } private void OnStateChange(StateChangedEventArgs obj) @@ -118,6 +107,7 @@ private void OnStateChange(StateChangedEventArgs obj) private void SetupAmbientSounds() { + _ambientSounds.Clear(); foreach (var ambience in _proto.EnumeratePrototypes()) { var tracks = _ambientSounds.GetOrNew(ambience.ID); @@ -129,8 +119,7 @@ private void SetupAmbientSounds() private void OnRoundEndMessage(RoundEndMessageEvent ev) { // If scoreboard shows then just stop the music - _ambientMusicStream?.Stop(); - _ambientMusicStream = null; + _ambientMusicStream = _audio.Stop(_ambientMusicStream); _nextAudio = TimeSpan.FromMinutes(3); } @@ -164,21 +153,26 @@ private void UpdateAmbientMusic() // Update still runs in lobby so just ignore it. if (_state.CurrentState is not GameplayState) { - FadeOut(_ambientMusicStream); + Audio.Stop(_ambientMusicStream); _ambientMusicStream = null; _musicProto = null; return; } - var isDone = _ambientMusicStream?.Done; + bool? isDone = null; + + if (TryComp(_ambientMusicStream, out AudioComponent? audioComp)) + { + isDone = !audioComp.Playing; + } if (_interruptable) { - var player = _player.LocalPlayer?.ControlledEntity; + var player = _player.LocalSession?.AttachedEntity; if (player == null || _musicProto == null || !_rules.IsTrue(player.Value, _proto.Index(_musicProto.Rules))) { - FadeOut(_ambientMusicStream, AmbientMusicFadeTime); + FadeOut(_ambientMusicStream, duration: AmbientMusicFadeTime); _musicProto = null; _interruptable = false; isDone = true; @@ -221,14 +215,11 @@ private void UpdateAmbientMusic() false, AudioParams.Default.WithVolume(_musicProto.Sound.Params.Volume + _volumeSlider)); - if (strim != null) - { - _ambientMusicStream = (AudioSystem.PlayingStream) strim; + _ambientMusicStream = strim.Value.Entity; - if (_musicProto.FadeIn) - { - FadeIn(_ambientMusicStream, AmbientMusicFadeTime); - } + if (_musicProto.FadeIn) + { + FadeIn(_ambientMusicStream, strim.Value.Component, AmbientMusicFadeTime); } // Refresh the list diff --git a/Content.Client/Audio/ContentAudioSystem.cs b/Content.Client/Audio/ContentAudioSystem.cs index 696a5eb32d..603b1086d8 100644 --- a/Content.Client/Audio/ContentAudioSystem.cs +++ b/Content.Client/Audio/ContentAudioSystem.cs @@ -1,26 +1,61 @@ using Content.Shared.Audio; +using Content.Shared.CCVar; +using Content.Shared.GameTicking; using Robust.Client.GameObjects; +using Robust.Shared; +using Robust.Shared.Audio; +using AudioComponent = Robust.Shared.Audio.Components.AudioComponent; namespace Content.Client.Audio; public sealed partial class ContentAudioSystem : SharedContentAudioSystem { // Need how much volume to change per tick and just remove it when it drops below "0" - private readonly Dictionary _fadingOut = new(); + private readonly Dictionary _fadingOut = new(); // Need volume change per tick + target volume. - private readonly Dictionary _fadingIn = new(); + private readonly Dictionary _fadingIn = new(); - private readonly List _fadeToRemove = new(); + private readonly List _fadeToRemove = new(); private const float MinVolume = -32f; private const float DefaultDuration = 2f; + /* + * Gain multipliers for specific audio sliders. + * The float value will get multiplied by this when setting + * i.e. a gain of 0.5f x 3 will equal 1.5f which is supported in OpenAL. + */ + + public const float MasterVolumeMultiplier = 3f; + public const float MidiVolumeMultiplier = 0.25f; + public const float AmbienceMultiplier = 3f; + public const float AmbientMusicMultiplier = 3f; + public const float LobbyMultiplier = 3f; + public override void Initialize() { base.Initialize(); UpdatesOutsidePrediction = true; InitializeAmbientMusic(); + SubscribeNetworkEvent(OnRoundCleanup); + } + + private void OnRoundCleanup(RoundRestartCleanupEvent ev) + { + _fadingOut.Clear(); + + // Preserve lobby music but everything else should get dumped. + var lobbyStream = EntityManager.System().LobbyStream; + TryComp(lobbyStream, out AudioComponent? audioComp); + var oldGain = audioComp?.Gain; + + SilenceAudio(); + + if (oldGain != null) + { + Audio.SetGain(lobbyStream, oldGain.Value, audioComp); + } } public override void Shutdown() @@ -42,28 +77,28 @@ public override void Update(float frameTime) #region Fades - public void FadeOut(AudioSystem.PlayingStream? stream, float duration = DefaultDuration) + public void FadeOut(EntityUid? stream, AudioComponent? component = null, float duration = DefaultDuration) { - if (stream == null || duration <= 0f) + if (stream == null || duration <= 0f || !Resolve(stream.Value, ref component)) return; // Just in case // TODO: Maybe handle the removals by making it seamless? - _fadingIn.Remove(stream); - var diff = stream.Volume - MinVolume; - _fadingOut.Add(stream, diff / duration); + _fadingIn.Remove(stream.Value); + var diff = component.Volume - MinVolume; + _fadingOut.Add(stream.Value, diff / duration); } - public void FadeIn(AudioSystem.PlayingStream? stream, float duration = DefaultDuration) + public void FadeIn(EntityUid? stream, AudioComponent? component = null, float duration = DefaultDuration) { - if (stream == null || duration <= 0f || stream.Volume < MinVolume) + if (stream == null || duration <= 0f || !Resolve(stream.Value, ref component) || component.Volume < MinVolume) return; - _fadingOut.Remove(stream); - var curVolume = stream.Volume; + _fadingOut.Remove(stream.Value); + var curVolume = component.Volume; var change = (curVolume - MinVolume) / duration; - _fadingIn.Add(stream, (change, stream.Volume)); - stream.Volume = MinVolume; + _fadingIn.Add(stream.Value, (change, component.Volume)); + component.Volume = MinVolume; } private void UpdateFades(float frameTime) @@ -72,19 +107,18 @@ private void UpdateFades(float frameTime) foreach (var (stream, change) in _fadingOut) { - // Cancelled elsewhere - if (stream.Done) + if (!TryComp(stream, out AudioComponent? component)) { _fadeToRemove.Add(stream); continue; } - var volume = stream.Volume - change * frameTime; - stream.Volume = MathF.Max(MinVolume, volume); + var volume = component.Volume - change * frameTime; + component.Volume = MathF.Max(MinVolume, volume); - if (stream.Volume.Equals(MinVolume)) + if (component.Volume.Equals(MinVolume)) { - stream.Stop(); + _audio.Stop(stream); _fadeToRemove.Add(stream); } } @@ -99,16 +133,16 @@ private void UpdateFades(float frameTime) foreach (var (stream, (change, target)) in _fadingIn) { // Cancelled elsewhere - if (stream.Done) + if (!TryComp(stream, out AudioComponent? component)) { _fadeToRemove.Add(stream); continue; } - var volume = stream.Volume + change * frameTime; - stream.Volume = MathF.Min(target, volume); + var volume = component.Volume + change * frameTime; + component.Volume = MathF.Min(target, volume); - if (stream.Volume.Equals(target)) + if (component.Volume.Equals(target)) { _fadeToRemove.Add(stream); } diff --git a/Content.Client/Changelog/ChangelogTab.xaml.cs b/Content.Client/Changelog/ChangelogTab.xaml.cs index bb677db40e..b8f98c0d40 100644 --- a/Content.Client/Changelog/ChangelogTab.xaml.cs +++ b/Content.Client/Changelog/ChangelogTab.xaml.cs @@ -7,6 +7,7 @@ using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; +using Robust.Shared.ContentPack; using Robust.Shared.Utility; using static Content.Client.Changelog.ChangelogManager; using static Robust.Client.UserInterface.Controls.BoxContainer; diff --git a/Content.Client/Chat/UI/SpeechBubble.cs b/Content.Client/Chat/UI/SpeechBubble.cs index b6b336f1dc..91e8e5a90f 100644 --- a/Content.Client/Chat/UI/SpeechBubble.cs +++ b/Content.Client/Chat/UI/SpeechBubble.cs @@ -1,19 +1,28 @@ using System.Numerics; using Content.Client.Chat.Managers; +using Content.Shared.CCVar; +using Content.Shared.Chat; using Robust.Client.Graphics; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; +using Robust.Shared.Configuration; using Robust.Shared.Timing; +using Robust.Shared.Utility; namespace Content.Client.Chat.UI { public abstract class SpeechBubble : Control { + [Dependency] private readonly IEyeManager _eyeManager = default!; + [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] protected readonly IConfigurationManager ConfigManager = default!; + public enum SpeechType : byte { Emote, Say, - Whisper + Whisper, + Looc } /// @@ -32,10 +41,12 @@ public enum SpeechType : byte /// private const float EntityVerticalOffset = 0.5f; - private readonly IEyeManager _eyeManager; + /// + /// The default maximum width for speech bubbles. + /// + public const float SpeechMaxWidth = 256; + private readonly EntityUid _senderEntity; - private readonly IChatManager _chatManager; - private readonly IEntityManager _entityManager; private float _timeLeft = TotalTime; @@ -47,35 +58,36 @@ public enum SpeechType : byte // man down public event Action? OnDied; - public static SpeechBubble CreateSpeechBubble(SpeechType type, string text, EntityUid senderEntity, IEyeManager eyeManager, IChatManager chatManager, IEntityManager entityManager) + public static SpeechBubble CreateSpeechBubble(SpeechType type, ChatMessage message, EntityUid senderEntity) { switch (type) { case SpeechType.Emote: - return new TextSpeechBubble(text, senderEntity, eyeManager, chatManager, entityManager, "emoteBox"); + return new TextSpeechBubble(message, senderEntity, "emoteBox"); case SpeechType.Say: - return new TextSpeechBubble(text, senderEntity, eyeManager, chatManager, entityManager, "sayBox"); + return new FancyTextSpeechBubble(message, senderEntity, "sayBox"); case SpeechType.Whisper: - return new TextSpeechBubble(text, senderEntity, eyeManager, chatManager, entityManager, "whisperBox"); + return new FancyTextSpeechBubble(message, senderEntity, "whisperBox"); + + case SpeechType.Looc: + return new TextSpeechBubble(message, senderEntity, "emoteBox", Color.FromHex("#48d1cc")); default: throw new ArgumentOutOfRangeException(); } } - public SpeechBubble(string text, EntityUid senderEntity, IEyeManager eyeManager, IChatManager chatManager, IEntityManager entityManager, string speechStyleClass) + public SpeechBubble(ChatMessage message, EntityUid senderEntity, string speechStyleClass, Color? fontColor = null) { - _chatManager = chatManager; + IoCManager.InjectDependencies(this); _senderEntity = senderEntity; - _eyeManager = eyeManager; - _entityManager = entityManager; // Use text clipping so new messages don't overlap old ones being pushed up. RectClipContent = true; - var bubble = BuildBubble(text, speechStyleClass); + var bubble = BuildBubble(message, speechStyleClass, fontColor); AddChild(bubble); @@ -86,7 +98,7 @@ public SpeechBubble(string text, EntityUid senderEntity, IEyeManager eyeManager, _verticalOffsetAchieved = -ContentSize.Y; } - protected abstract Control BuildBubble(string text, string speechStyleClass); + protected abstract Control BuildBubble(ChatMessage message, string speechStyleClass, Color? fontColor = null); protected override void FrameUpdate(FrameEventArgs args) { @@ -160,22 +172,49 @@ public void FadeNow() _timeLeft = FadeTime; } } + + protected FormattedMessage FormatSpeech(string message, Color? fontColor = null) + { + var msg = new FormattedMessage(); + if (fontColor != null) + msg.PushColor(fontColor.Value); + msg.AddMarkup(message); + return msg; + } + + protected string ExtractSpeechSubstring(ChatMessage message, string tag) + { + var rawmsg = message.WrappedMessage; + var tagStart = rawmsg.IndexOf($"[{tag}]"); + var tagEnd = rawmsg.IndexOf($"[/{tag}]"); + if (tagStart < 0 || tagEnd < 0) //the above return -1 if the tag's not found, which in turn will cause the below to throw an exception. a blank speech bubble is far more noticeably broken than the bubble not appearing at all -bhijn + return ""; + tagStart += tag.Length + 2; + return rawmsg.Substring(tagStart, tagEnd - tagStart); + } + + protected FormattedMessage ExtractAndFormatSpeechSubstring(ChatMessage message, string tag, Color? fontColor = null) + { + return FormatSpeech(ExtractSpeechSubstring(message, tag), fontColor); + } + } public sealed class TextSpeechBubble : SpeechBubble { - public TextSpeechBubble(string text, EntityUid senderEntity, IEyeManager eyeManager, IChatManager chatManager, IEntityManager entityManager, string speechStyleClass) - : base(text, senderEntity, eyeManager, chatManager, entityManager, speechStyleClass) + public TextSpeechBubble(ChatMessage message, EntityUid senderEntity, string speechStyleClass, Color? fontColor = null) + : base(message, senderEntity, speechStyleClass, fontColor) { } - protected override Control BuildBubble(string text, string speechStyleClass) + protected override Control BuildBubble(ChatMessage message, string speechStyleClass, Color? fontColor = null) { var label = new RichTextLabel { - MaxWidth = 256, + MaxWidth = SpeechMaxWidth, }; - label.SetMessage(text); + + label.SetMessage(FormatSpeech(message.WrappedMessage, fontColor)); var panel = new PanelContainer { @@ -187,4 +226,76 @@ protected override Control BuildBubble(string text, string speechStyleClass) return panel; } } + + public sealed class FancyTextSpeechBubble : SpeechBubble + { + + public FancyTextSpeechBubble(ChatMessage message, EntityUid senderEntity, string speechStyleClass, Color? fontColor = null) + : base(message, senderEntity, speechStyleClass, fontColor) + { + } + + protected override Control BuildBubble(ChatMessage message, string speechStyleClass, Color? fontColor = null) + { + if (!ConfigManager.GetCVar(CCVars.ChatEnableFancyBubbles)) + { + var label = new RichTextLabel + { + MaxWidth = SpeechMaxWidth + }; + + label.SetMessage(ExtractAndFormatSpeechSubstring(message, "BubbleContent", fontColor)); + + var unfanciedPanel = new PanelContainer + { + StyleClasses = { "speechBox", speechStyleClass }, + Children = { label }, + ModulateSelfOverride = Color.White.WithAlpha(0.75f) + }; + return unfanciedPanel; + } + + var bubbleHeader = new RichTextLabel + { + Margin = new Thickness(1, 1, 1, 1) + }; + + var bubbleContent = new RichTextLabel + { + MaxWidth = SpeechMaxWidth, + Margin = new Thickness(2, 6, 2, 2) + }; + + //We'll be honest. *Yes* this is hacky. Doing this in a cleaner way would require a bottom-up refactor of how saycode handles sending chat messages. -Myr + bubbleHeader.SetMessage(ExtractAndFormatSpeechSubstring(message, "BubbleHeader", fontColor)); + bubbleContent.SetMessage(ExtractAndFormatSpeechSubstring(message, "BubbleContent", fontColor)); + + //As for below: Some day this could probably be converted to xaml. But that is not today. -Myr + var mainPanel = new PanelContainer + { + StyleClasses = { "speechBox", speechStyleClass }, + Children = { bubbleContent }, + ModulateSelfOverride = Color.White.WithAlpha(0.75f), + HorizontalAlignment = HAlignment.Center, + VerticalAlignment = VAlignment.Bottom, + Margin = new Thickness(4, 14, 4, 2) + }; + + var headerPanel = new PanelContainer + { + StyleClasses = { "speechBox", speechStyleClass }, + Children = { bubbleHeader }, + ModulateSelfOverride = Color.White.WithAlpha(ConfigManager.GetCVar(CCVars.ChatFancyNameBackground) ? 0.75f : 0f), + HorizontalAlignment = HAlignment.Center, + VerticalAlignment = VAlignment.Top + }; + + var panel = new PanelContainer + { + Children = { mainPanel, headerPanel } + }; + + return panel; + } + } } diff --git a/Content.Client/Chemistry/EntitySystems/SolutionContainerMixerSystem.cs b/Content.Client/Chemistry/EntitySystems/SolutionContainerMixerSystem.cs new file mode 100644 index 0000000000..b6401c113d --- /dev/null +++ b/Content.Client/Chemistry/EntitySystems/SolutionContainerMixerSystem.cs @@ -0,0 +1,9 @@ +using Content.Shared.Chemistry.EntitySystems; + +namespace Content.Client.Chemistry.EntitySystems; + +/// +public sealed class SolutionContainerMixerSystem : SharedSolutionContainerMixerSystem +{ + +} diff --git a/Content.Client/Clothing/ClientClothingSystem.cs b/Content.Client/Clothing/ClientClothingSystem.cs index b16e14d653..979f7430e1 100644 --- a/Content.Client/Clothing/ClientClothingSystem.cs +++ b/Content.Client/Clothing/ClientClothingSystem.cs @@ -202,17 +202,15 @@ private void OnDidUnequip(EntityUid uid, SpriteComponent component, DidUnequipEv revealedLayers.Clear(); } - public void InitClothing(EntityUid uid, InventoryComponent? component = null, SpriteComponent? sprite = null) + public void InitClothing(EntityUid uid, InventoryComponent component) { - if (!Resolve(uid, ref sprite, ref component) || !_inventorySystem.TryGetSlots(uid, out var slots, component)) + if (!TryComp(uid, out SpriteComponent? sprite)) return; - foreach (var slot in slots) + var enumerator = _inventorySystem.GetSlotEnumerator((uid, component)); + while (enumerator.NextItem(out var item, out var slot)) { - if (!_inventorySystem.TryGetSlotContainer(uid, slot.Name, out var containerSlot, out _, component) || - !containerSlot.ContainedEntity.HasValue) continue; - - RenderEquipment(uid, containerSlot.ContainedEntity.Value, slot.Name, component, sprite); + RenderEquipment(uid, item, slot.Name, component, sprite); } } diff --git a/Content.Client/Clothing/Systems/ChameleonClothingSystem.cs b/Content.Client/Clothing/Systems/ChameleonClothingSystem.cs index f067d91051..0ea9bbac09 100644 --- a/Content.Client/Clothing/Systems/ChameleonClothingSystem.cs +++ b/Content.Client/Clothing/Systems/ChameleonClothingSystem.cs @@ -29,18 +29,13 @@ public override void Initialize() SubscribeLocalEvent(HandleState); PrepareAllVariants(); - _proto.PrototypesReloaded += OnProtoReloaded; + SubscribeLocalEvent(OnProtoReloaded); } - public override void Shutdown() + private void OnProtoReloaded(PrototypesReloadedEventArgs args) { - base.Shutdown(); - _proto.PrototypesReloaded -= OnProtoReloaded; - } - - private void OnProtoReloaded(PrototypesReloadedEventArgs _) - { - PrepareAllVariants(); + if (args.WasModified()) + PrepareAllVariants(); } private void HandleState(EntityUid uid, ChameleonClothingComponent component, ref AfterAutoHandleStateEvent args) diff --git a/Content.Client/Construction/ConstructionSystem.cs b/Content.Client/Construction/ConstructionSystem.cs index 9fc638cea2..4035c68cc7 100644 --- a/Content.Client/Construction/ConstructionSystem.cs +++ b/Content.Client/Construction/ConstructionSystem.cs @@ -2,6 +2,7 @@ using Content.Client.Popups; using Content.Shared.Construction; using Content.Shared.Construction.Prototypes; +using Content.Shared.Construction.Steps; using Content.Shared.Examine; using Content.Shared.Input; using Content.Shared.Interaction; @@ -12,6 +13,7 @@ using Robust.Shared.Input; using Robust.Shared.Input.Binding; using Robust.Shared.Map; +using Robust.Shared.Player; using Robust.Shared.Prototypes; namespace Content.Client.Construction @@ -96,7 +98,11 @@ private void HandleConstructionGhostExamined(EntityUid uid, ConstructionGhostCom return; } - edge.Steps[0].DoExamine(args); + foreach (ConstructionGraphStep step in edge.Steps) + { + args.Message.PushNewline(); + step.DoExamine(args); + } } public event EventHandler? CraftingAvailabilityChanged; @@ -197,7 +203,7 @@ public bool TrySpawnGhost( var comp = EntityManager.GetComponent(ghost.Value); comp.Prototype = prototype; EntityManager.GetComponent(ghost.Value).LocalRotation = dir.ToAngle(); - _ghosts.Add(ghost.Value.Id, ghost.Value); + _ghosts.Add(ghost.GetHashCode(), ghost.Value); var sprite = EntityManager.GetComponent(ghost.Value); sprite.Color = new Color(48, 255, 48, 128); @@ -264,7 +270,7 @@ public void TryStartConstruction(EntityUid ghostId, ConstructionGhostComponent? } var transform = EntityManager.GetComponent(ghostId); - var msg = new TryStartStructureConstructionMessage(GetNetCoordinates(transform.Coordinates), ghostComp.Prototype.ID, transform.LocalRotation, ghostId.Id); + var msg = new TryStartStructureConstructionMessage(GetNetCoordinates(transform.Coordinates), ghostComp.Prototype.ID, transform.LocalRotation, ghostId.GetHashCode()); RaiseNetworkEvent(msg); } diff --git a/Content.Client/Construction/UI/ConstructionMenuPresenter.cs b/Content.Client/Construction/UI/ConstructionMenuPresenter.cs index cdc9044a40..28cf3ba16c 100644 --- a/Content.Client/Construction/UI/ConstructionMenuPresenter.cs +++ b/Content.Client/Construction/UI/ConstructionMenuPresenter.cs @@ -1,9 +1,11 @@ using System.Linq; using Content.Client.UserInterface.Systems.MenuBar.Widgets; using Content.Shared.Construction.Prototypes; +using Content.Shared.Tag; using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.Placement; +using Robust.Client.Player; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.Utility; @@ -25,6 +27,7 @@ internal sealed class ConstructionMenuPresenter : IDisposable [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IPlacementManager _placementManager = default!; [Dependency] private readonly IUserInterfaceManager _uiManager = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; private readonly IConstructionMenuView _constructionView; @@ -152,6 +155,11 @@ private void OnViewPopulateRecipes(object? sender, (string search, string catago if (recipe.Hide) continue; + if (_playerManager.LocalSession == null + || _playerManager.LocalEntity == null + || (recipe.EntityWhitelist != null && !recipe.EntityWhitelist.IsValid(_playerManager.LocalEntity.Value))) + continue; + if (!string.IsNullOrEmpty(search)) { if (!recipe.Name.ToLowerInvariant().Contains(search.Trim().ToLowerInvariant())) diff --git a/Content.Client/Credits/CreditsWindow.xaml.cs b/Content.Client/Credits/CreditsWindow.xaml.cs index 666ff2aa48..60ac579845 100644 --- a/Content.Client/Credits/CreditsWindow.xaml.cs +++ b/Content.Client/Credits/CreditsWindow.xaml.cs @@ -11,6 +11,7 @@ using Robust.Client.UserInterface.CustomControls; using Robust.Client.UserInterface.XAML; using Robust.Shared.Configuration; +using Robust.Shared.ContentPack; using Robust.Shared.IoC; using Robust.Shared.Localization; using Robust.Shared.Maths; @@ -23,7 +24,7 @@ namespace Content.Client.Credits [GenerateTypedNameReferences] public sealed partial class CreditsWindow : DefaultWindow { - [Dependency] private readonly IResourceCache _resourceManager = default!; + [Dependency] private readonly IResourceManager _resourceManager = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; private static readonly Dictionary PatronTierPriority = new() @@ -49,7 +50,7 @@ public CreditsWindow() private void PopulateLicenses(BoxContainer licensesContainer) { - foreach (var entry in CreditsManager.GetLicenses().OrderBy(p => p.Name)) + foreach (var entry in CreditsManager.GetLicenses(_resourceManager).OrderBy(p => p.Name)) { licensesContainer.AddChild(new Label {StyleClasses = {StyleBase.StyleClassLabelHeading}, Text = entry.Name}); diff --git a/Content.Client/CrewManifest/CrewManifestSystem.cs b/Content.Client/CrewManifest/CrewManifestSystem.cs index 05f27620c4..d05acb5680 100644 --- a/Content.Client/CrewManifest/CrewManifestSystem.cs +++ b/Content.Client/CrewManifest/CrewManifestSystem.cs @@ -1,4 +1,3 @@ -using Content.Client.GameTicking.Managers; using Content.Shared.CrewManifest; using Content.Shared.Roles; using Robust.Shared.Prototypes; @@ -19,12 +18,7 @@ public override void Initialize() base.Initialize(); BuildDepartmentLookup(); - _prototypeManager.PrototypesReloaded += OnPrototypesReload; - } - - public override void Shutdown() - { - _prototypeManager.PrototypesReloaded -= OnPrototypesReload; + SubscribeLocalEvent(OnPrototypesReload); } /// @@ -36,16 +30,16 @@ public void RequestCrewManifest(NetEntity netEntity) RaiseNetworkEvent(new RequestCrewManifestMessage(netEntity)); } - private void OnPrototypesReload(PrototypesReloadedEventArgs _) + private void OnPrototypesReload(PrototypesReloadedEventArgs args) { - _jobDepartmentLookup.Clear(); - _departments.Clear(); - - BuildDepartmentLookup(); + if (args.WasModified()) + BuildDepartmentLookup(); } private void BuildDepartmentLookup() { + _jobDepartmentLookup.Clear(); + _departments.Clear(); foreach (var department in _prototypeManager.EnumeratePrototypes()) { _departments.Add(department.ID); diff --git a/Content.Client/Decals/DecalSystem.cs b/Content.Client/Decals/DecalSystem.cs index 66b30545da..be442ab8a0 100644 --- a/Content.Client/Decals/DecalSystem.cs +++ b/Content.Client/Decals/DecalSystem.cs @@ -15,6 +15,9 @@ public sealed class DecalSystem : SharedDecalSystem private DecalOverlay _overlay = default!; + private HashSet _removedUids = new(); + private readonly List _removedChunks = new(); + public override void Initialize() { base.Initialize(); @@ -65,13 +68,14 @@ private void OnHandleState(EntityUid gridUid, DecalGridComponent gridComp, ref C return; // is this a delta or full state? - var removedChunks = new List(); + _removedChunks.Clear(); + if (!state.FullState) { foreach (var key in gridComp.ChunkCollection.ChunkCollection.Keys) { if (!state.AllChunks!.Contains(key)) - removedChunks.Add(key); + _removedChunks.Add(key); } } else @@ -79,12 +83,12 @@ private void OnHandleState(EntityUid gridUid, DecalGridComponent gridComp, ref C foreach (var key in gridComp.ChunkCollection.ChunkCollection.Keys) { if (!state.Chunks.ContainsKey(key)) - removedChunks.Add(key); + _removedChunks.Add(key); } } - if (removedChunks.Count > 0) - RemoveChunks(gridUid, gridComp, removedChunks); + if (_removedChunks.Count > 0) + RemoveChunks(gridUid, gridComp, _removedChunks); if (state.Chunks.Count > 0) UpdateChunks(gridUid, gridComp, state.Chunks); @@ -137,9 +141,10 @@ private void UpdateChunks(EntityUid gridId, DecalGridComponent gridComp, Diction { if (chunkCollection.TryGetValue(indices, out var chunk)) { - var removedUids = new HashSet(chunk.Decals.Keys); - removedUids.ExceptWith(newChunkData.Decals.Keys); - foreach (var removedUid in removedUids) + _removedUids.Clear(); + _removedUids.UnionWith(chunk.Decals.Keys); + _removedUids.ExceptWith(newChunkData.Decals.Keys); + foreach (var removedUid in _removedUids) { OnDecalRemoved(gridId, removedUid, gridComp, indices, chunk); gridComp.DecalIndex.Remove(removedUid); @@ -166,7 +171,8 @@ private void RemoveChunks(EntityUid gridId, DecalGridComponent gridComp, IEnumer foreach (var index in chunks) { - if (!chunkCollection.TryGetValue(index, out var chunk)) continue; + if (!chunkCollection.TryGetValue(index, out var chunk)) + continue; foreach (var decalId in chunk.Decals.Keys) { diff --git a/Content.Client/Decals/Overlays/DecalOverlay.cs b/Content.Client/Decals/Overlays/DecalOverlay.cs index f2c11e2a68..6fcd48264b 100644 --- a/Content.Client/Decals/Overlays/DecalOverlay.cs +++ b/Content.Client/Decals/Overlays/DecalOverlay.cs @@ -30,21 +30,22 @@ protected override void Draw(in OverlayDrawArgs args) { // Shouldn't need to clear cached textures unless the prototypes get reloaded. var handle = args.WorldHandle; - var xformQuery = _entManager.GetEntityQuery(); var xformSystem = _entManager.System(); var eyeAngle = args.Viewport.Eye?.Rotation ?? Angle.Zero; - foreach (var (decalGrid, xform) in _entManager.EntityQuery(true)) + var gridQuery = _entManager.AllEntityQueryEnumerator(); + + while (gridQuery.MoveNext(out var decalGrid, out var xform)) { + if (xform.MapID != args.MapId) + continue; + var zIndexDictionary = decalGrid.DecalRenderIndex; if (zIndexDictionary.Count == 0) continue; - if (xform.MapID != args.MapId) - continue; - - var (_, worldRot, worldMatrix) = xformSystem.GetWorldPositionRotationMatrix(xform, xformQuery); + var (_, worldRot, worldMatrix) = xformSystem.GetWorldPositionRotationMatrix(xform); handle.SetTransform(worldMatrix); diff --git a/Content.Client/DeltaV/Biscuit/BiscuitSystem.cs b/Content.Client/DeltaV/Biscuit/BiscuitSystem.cs new file mode 100644 index 0000000000..9cc7258d76 --- /dev/null +++ b/Content.Client/DeltaV/Biscuit/BiscuitSystem.cs @@ -0,0 +1,26 @@ +using Content.Shared.DeltaV.Biscuit; +using Robust.Client.GameObjects; + +namespace Content.Client.DeltaV.Biscuit; + +public sealed class BiscuitSystem : VisualizerSystem +{ + [Dependency] private readonly AppearanceSystem _appearance = default!; + + protected override void OnAppearanceChange(EntityUid uid, BiscuitVisualsComponent component, + ref AppearanceChangeEvent args) + { + if (args.Sprite == null) + return; + + _appearance.TryGetData(uid, BiscuitStatus.Cracked, out bool cracked); + + args.Sprite.LayerSetVisible(BiscuitVisualLayers.Top, !cracked); + } +} + +public enum BiscuitVisualLayers : byte +{ + Base, + Top +} diff --git a/Content.Client/DeltaV/Biscuit/BiscuitVisualsComponent.cs b/Content.Client/DeltaV/Biscuit/BiscuitVisualsComponent.cs new file mode 100644 index 0000000000..42c745bcb4 --- /dev/null +++ b/Content.Client/DeltaV/Biscuit/BiscuitVisualsComponent.cs @@ -0,0 +1,5 @@ +namespace Content.Client.DeltaV.Biscuit; + +[RegisterComponent] +public sealed partial class BiscuitVisualsComponent : Component +{} diff --git a/Content.Client/DeltaV/CartridgeLoader/Cartridges/CrimeAssistUi.cs b/Content.Client/DeltaV/CartridgeLoader/Cartridges/CrimeAssistUi.cs new file mode 100644 index 0000000000..ea5aa3cf25 --- /dev/null +++ b/Content.Client/DeltaV/CartridgeLoader/Cartridges/CrimeAssistUi.cs @@ -0,0 +1,35 @@ +using Robust.Client.UserInterface; +using Content.Client.UserInterface.Fragments; +using Content.Shared.DeltaV.CartridgeLoader.Cartridges; +using Content.Shared.CartridgeLoader; +using Robust.Shared.Prototypes; + +namespace Content.Client.DeltaV.CartridgeLoader.Cartridges; + +public sealed partial class CrimeAssistUi : UIFragment +{ + private CrimeAssistUiFragment? _fragment; + + public override Control GetUIFragmentRoot() + { + return _fragment!; + } + + public override void Setup(BoundUserInterface userInterface, EntityUid? fragmentOwner) + { + _fragment = new CrimeAssistUiFragment(); + + _fragment.OnSync += _ => SendSyncMessage(userInterface); + } + + private void SendSyncMessage(BoundUserInterface userInterface) + { + var syncMessage = new CrimeAssistSyncMessageEvent(); + var message = new CartridgeUiMessage(syncMessage); + userInterface.SendMessage(message); + } + + public override void UpdateState(BoundUserInterfaceState state) + { + } +} diff --git a/Content.Client/DeltaV/CartridgeLoader/Cartridges/CrimeAssistUiFragment.xaml b/Content.Client/DeltaV/CartridgeLoader/Cartridges/CrimeAssistUiFragment.xaml new file mode 100644 index 0000000000..8186986d8f --- /dev/null +++ b/Content.Client/DeltaV/CartridgeLoader/Cartridges/CrimeAssistUiFragment.xaml @@ -0,0 +1,16 @@ + + + + + + + + + + [Access(typeof(ExpendableLightSystem))] - public IPlayingAudioStream? PlayingStream; + public EntityUid? PlayingStream; } public enum ExpendableLightVisualLayers : byte diff --git a/Content.Client/Light/EntitySystems/ExpendableLightSystem.cs b/Content.Client/Light/EntitySystems/ExpendableLightSystem.cs index 6e9e546dfa..a2a7fb2531 100644 --- a/Content.Client/Light/EntitySystems/ExpendableLightSystem.cs +++ b/Content.Client/Light/EntitySystems/ExpendableLightSystem.cs @@ -2,6 +2,8 @@ using Content.Shared.Light.Components; using Robust.Client.GameObjects; using Robust.Client.Graphics; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; namespace Content.Client.Light.EntitySystems; @@ -19,7 +21,7 @@ public override void Initialize() private void OnLightShutdown(EntityUid uid, ExpendableLightComponent component, ComponentShutdown args) { - component.PlayingStream?.Stop(); + component.PlayingStream = _audioSystem.Stop(component.PlayingStream); } protected override void OnAppearanceChange(EntityUid uid, ExpendableLightComponent comp, ref AppearanceChangeEvent args) @@ -48,12 +50,10 @@ protected override void OnAppearanceChange(EntityUid uid, ExpendableLightCompone switch (state) { case ExpendableLightState.Lit: - comp.PlayingStream?.Stop(); + _audioSystem.Stop(comp.PlayingStream); comp.PlayingStream = _audioSystem.PlayPvs( - comp.LoopedSound, - uid, - SharedExpendableLightComponent.LoopedSoundParams - ); + comp.LoopedSound, uid, SharedExpendableLightComponent.LoopedSoundParams)?.Entity; + if (args.Sprite.LayerMapTryGet(ExpendableLightVisualLayers.Overlay, out var layerIdx, true)) { if (!string.IsNullOrWhiteSpace(comp.IconStateLit)) @@ -73,7 +73,7 @@ protected override void OnAppearanceChange(EntityUid uid, ExpendableLightCompone break; case ExpendableLightState.Dead: - comp.PlayingStream?.Stop(); + comp.PlayingStream = _audioSystem.Stop(comp.PlayingStream); if (args.Sprite.LayerMapTryGet(ExpendableLightVisualLayers.Overlay, out layerIdx, true)) { if (!string.IsNullOrWhiteSpace(comp.IconStateSpent)) diff --git a/Content.Client/Light/Visualizers/PoweredLightVisualizerSystem.cs b/Content.Client/Light/Visualizers/PoweredLightVisualizerSystem.cs index bf69053d9a..e7fcf7e219 100644 --- a/Content.Client/Light/Visualizers/PoweredLightVisualizerSystem.cs +++ b/Content.Client/Light/Visualizers/PoweredLightVisualizerSystem.cs @@ -2,6 +2,8 @@ using Robust.Client.Animations; using Robust.Client.GameObjects; using Robust.Shared.Animations; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Random; namespace Content.Client.Light.Visualizers; diff --git a/Content.Client/Lobby/UI/LobbyCharacterPreviewPanel.cs b/Content.Client/Lobby/UI/LobbyCharacterPreviewPanel.cs index 31db2c9c53..86989cd561 100644 --- a/Content.Client/Lobby/UI/LobbyCharacterPreviewPanel.cs +++ b/Content.Client/Lobby/UI/LobbyCharacterPreviewPanel.cs @@ -119,7 +119,7 @@ public void UpdateUI() OverrideDirection = Direction.South, Scale = new Vector2(4f, 4f), MaxSize = new Vector2(112, 112), - Stretch = SpriteView.StretchMode.None, + Stretch = SpriteView.StretchMode.Fill, }; spriteView.SetEntity(_previewDummy.Value); _viewBox.AddChild(spriteView); diff --git a/Content.Client/MagicMirror/MagicMirrorBoundUserInterface.cs b/Content.Client/MagicMirror/MagicMirrorBoundUserInterface.cs index ba4362a472..ebb6780853 100644 --- a/Content.Client/MagicMirror/MagicMirrorBoundUserInterface.cs +++ b/Content.Client/MagicMirror/MagicMirrorBoundUserInterface.cs @@ -64,5 +64,16 @@ protected override void ReceiveMessage(BoundUserInterfaceMessage message) _window.UpdateState(data); } + protected override void Dispose(bool disposing) + { + base.Dispose(disposing); + if (!disposing) + return; + + if (_window != null) + _window.OnClose -= Close; + + _window?.Dispose(); + } } diff --git a/Content.Client/Medical/CrewMonitoring/CrewMonitoringBoundUserInterface.cs b/Content.Client/Medical/CrewMonitoring/CrewMonitoringBoundUserInterface.cs index fc632575c7..3978880987 100644 --- a/Content.Client/Medical/CrewMonitoring/CrewMonitoringBoundUserInterface.cs +++ b/Content.Client/Medical/CrewMonitoring/CrewMonitoringBoundUserInterface.cs @@ -1,53 +1,56 @@ using Content.Shared.Medical.CrewMonitoring; -using Robust.Client.GameObjects; -namespace Content.Client.Medical.CrewMonitoring +namespace Content.Client.Medical.CrewMonitoring; + +public sealed class CrewMonitoringBoundUserInterface : BoundUserInterface { - public sealed class CrewMonitoringBoundUserInterface : BoundUserInterface + [ViewVariables] + private CrewMonitoringWindow? _menu; + + public CrewMonitoringBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { - [ViewVariables] - private CrewMonitoringWindow? _menu; + } - public CrewMonitoringBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) - { - } + protected override void Open() + { + EntityUid? gridUid = null; + string stationName = string.Empty; - protected override void Open() + if (EntMan.TryGetComponent(Owner, out var xform)) { - EntityUid? gridUid = null; + gridUid = xform.GridUid; - if (EntMan.TryGetComponent(Owner, out var xform)) + if (EntMan.TryGetComponent(gridUid, out var metaData)) { - gridUid = xform.GridUid; + stationName = metaData.EntityName; } - - _menu = new CrewMonitoringWindow(gridUid); - - _menu.OpenCentered(); - _menu.OnClose += Close; } - protected override void UpdateState(BoundUserInterfaceState state) - { - base.UpdateState(state); + _menu = new CrewMonitoringWindow(stationName, gridUid); - switch (state) - { - case CrewMonitoringState st: - EntMan.TryGetComponent(Owner, out var xform); + _menu.OpenCentered(); + _menu.OnClose += Close; + } - _menu?.ShowSensors(st.Sensors, xform?.Coordinates, st.Snap, st.Precision); - break; - } - } + protected override void UpdateState(BoundUserInterfaceState state) + { + base.UpdateState(state); - protected override void Dispose(bool disposing) + switch (state) { - base.Dispose(disposing); - if (!disposing) - return; - - _menu?.Dispose(); + case CrewMonitoringState st: + EntMan.TryGetComponent(Owner, out var xform); + _menu?.ShowSensors(st.Sensors, Owner, xform?.Coordinates); + break; } } + + protected override void Dispose(bool disposing) + { + base.Dispose(disposing); + if (!disposing) + return; + + _menu?.Dispose(); + } } diff --git a/Content.Client/Medical/CrewMonitoring/CrewMonitoringNavMapControl.cs b/Content.Client/Medical/CrewMonitoring/CrewMonitoringNavMapControl.cs new file mode 100644 index 0000000000..e6adf13bed --- /dev/null +++ b/Content.Client/Medical/CrewMonitoring/CrewMonitoringNavMapControl.cs @@ -0,0 +1,79 @@ +using Content.Client.Pinpointer.UI; +using Robust.Client.Graphics; +using Robust.Client.UserInterface.Controls; + +namespace Content.Client.Medical.CrewMonitoring; + +public sealed partial class CrewMonitoringNavMapControl : NavMapControl +{ + public NetEntity? Focus; + public Dictionary LocalizedNames = new(); + + private Color _backgroundColor; + private Label _trackedEntityLabel; + private PanelContainer _trackedEntityPanel; + + public CrewMonitoringNavMapControl() : base() + { + WallColor = new Color(192, 122, 196); + TileColor = new(71, 42, 72); + + _backgroundColor = Color.FromSrgb(TileColor.WithAlpha(0.8f)); + + _trackedEntityLabel = new Label + { + Margin = new Thickness(10f, 8f), + HorizontalAlignment = HAlignment.Center, + VerticalAlignment = VAlignment.Center, + Modulate = Color.White, + }; + + _trackedEntityPanel = new PanelContainer + { + PanelOverride = new StyleBoxFlat + { + BackgroundColor = _backgroundColor, + }, + + Margin = new Thickness(5f, 10f), + HorizontalAlignment = HAlignment.Left, + VerticalAlignment = VAlignment.Bottom, + Visible = false, + }; + + _trackedEntityPanel.AddChild(_trackedEntityLabel); + this.AddChild(_trackedEntityPanel); + } + + protected override void Draw(DrawingHandleScreen handle) + { + base.Draw(handle); + + if (Focus == null) + { + _trackedEntityLabel.Text = string.Empty; + _trackedEntityPanel.Visible = false; + + return; + } + + foreach ((var netEntity, var blip) in TrackedEntities) + { + if (netEntity != Focus) + continue; + + if (!LocalizedNames.TryGetValue(netEntity, out var name)) + name = "Unknown"; + + var message = name + "\nLocation: [x = " + MathF.Round(blip.Coordinates.X) + ", y = " + MathF.Round(blip.Coordinates.Y) + "]"; + + _trackedEntityLabel.Text = message; + _trackedEntityPanel.Visible = true; + + return; + } + + _trackedEntityLabel.Text = string.Empty; + _trackedEntityPanel.Visible = false; + } +} diff --git a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml index 559a12d63b..80bf5a3f8b 100644 --- a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml +++ b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml @@ -1,39 +1,49 @@ - - - - - - - + + + + + + diff --git a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs index ff08af6bb6..d8c87899db 100644 --- a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs +++ b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs @@ -1,275 +1,437 @@ +using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Numerics; +using Content.Client.Pinpointer.UI; using Content.Client.Stylesheets; using Content.Client.UserInterface.Controls; using Content.Shared.Medical.SuitSensor; +using Content.Shared.StatusIcon; using Robust.Client.AutoGenerated; +using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; using Robust.Shared.Map; +using Robust.Shared.Prototypes; using Robust.Shared.Timing; +using Robust.Shared.Utility; using static Robust.Client.UserInterface.Controls.BoxContainer; -namespace Content.Client.Medical.CrewMonitoring +namespace Content.Client.Medical.CrewMonitoring; + +[GenerateTypedNameReferences] +public sealed partial class CrewMonitoringWindow : FancyWindow { - [GenerateTypedNameReferences] - public sealed partial class CrewMonitoringWindow : FancyWindow + private List _rowsContent = new(); + private readonly IEntityManager _entManager; + private readonly IPrototypeManager _prototypeManager; + private readonly SpriteSystem _spriteSystem; + + private NetEntity? _trackedEntity; + private bool _tryToScrollToListFocus; + private Texture? _blipTexture; + + public CrewMonitoringWindow(string stationName, EntityUid? mapUid) + { + RobustXamlLoader.Load(this); + + _entManager = IoCManager.Resolve(); + _prototypeManager = IoCManager.Resolve(); + _spriteSystem = _entManager.System(); + + _blipTexture = _spriteSystem.Frame0(new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_circle.png"))); + + if (_entManager.TryGetComponent(mapUid, out var xform)) + NavMap.MapUid = xform.GridUid; + + else + NavMap.Visible = false; + + StationName.AddStyleClass("LabelBig"); + StationName.Text = stationName; + + NavMap.TrackedEntitySelectedAction += SetTrackedEntityFromNavMap; + NavMap.ForceNavMapUpdate(); + } + + protected override void FrameUpdate(FrameEventArgs args) { - private List _rowsContent = new(); - private List<(DirectionIcon Icon, Vector2 Position)> _directionIcons = new(); - private readonly IEntityManager _entManager; - private readonly IEyeManager _eye; - private EntityUid? _stationUid; - private CrewMonitoringButton? _trackedButton; + base.FrameUpdate(args); - public static int IconSize = 16; // XAML has a `VSeparationOverride` of 20 for each row. + if (_tryToScrollToListFocus) + TryToScrollToFocus(); + } - public CrewMonitoringWindow(EntityUid? mapUid) + public void ShowSensors(List sensors, EntityUid monitor, EntityCoordinates? monitorCoords) + { + ClearOutDatedData(); + + // No server label + if (sensors.Count == 0) { - RobustXamlLoader.Load(this); - _eye = IoCManager.Resolve(); - _entManager = IoCManager.Resolve(); - _stationUid = mapUid; + NoServerLabel.Visible = true; + return; + } + + NoServerLabel.Visible = false; + + // Order sensor data + var orderedSensors = sensors.OrderBy(n => n.Name).OrderBy(j => j.Job); + var assignedSensors = new HashSet(); + var departments = sensors.SelectMany(d => d.JobDepartments).Distinct().OrderBy(n => n); - if (_entManager.TryGetComponent(mapUid, out var xform)) + // Create department labels and populate lists + foreach (var department in departments) + { + var departmentSensors = orderedSensors.Where(d => d.JobDepartments.Contains(department)); + + if (departmentSensors == null || !departmentSensors.Any()) + continue; + + foreach (var sensor in departmentSensors) + assignedSensors.Add(sensor); + + if (SensorsTable.ChildCount > 0) { - NavMap.MapUid = xform.GridUid; + var spacer = new Control() + { + SetHeight = 20, + }; + + SensorsTable.AddChild(spacer); + _rowsContent.Add(spacer); } - else + + var deparmentLabel = new RichTextLabel() { - NavMap.Visible = false; - SetSize = new Vector2(775, 400); - MinSize = SetSize; - } + Margin = new Thickness(10, 0), + HorizontalExpand = true, + }; + + deparmentLabel.SetMessage(department); + deparmentLabel.StyleClasses.Add(StyleNano.StyleClassTooltipActionDescription); + + SensorsTable.AddChild(deparmentLabel); + _rowsContent.Add(deparmentLabel); + + PopulateDepartmentList(departmentSensors); } - public void ShowSensors(List stSensors, EntityCoordinates? monitorCoords, bool snap, float precision) + // Account for any non-station users + var remainingSensors = orderedSensors.Except(assignedSensors); + + if (remainingSensors.Any()) { - ClearAllSensors(); + var spacer = new Control() + { + SetHeight = 20, + }; - var monitorCoordsInStationSpace = _stationUid != null ? monitorCoords?.WithEntityId(_stationUid.Value, _entManager).Position : null; + SensorsTable.AddChild(spacer); + _rowsContent.Add(spacer); - // TODO scroll container - // TODO filter by name & occupation - // TODO make each row a xaml-control. Get rid of some of this c# control creation. - if (stSensors.Count == 0) + var deparmentLabel = new RichTextLabel() { - NoServerLabel.Visible = true; - return; - } - NoServerLabel.Visible = false; + Margin = new Thickness(10, 0), + HorizontalExpand = true, + }; + + deparmentLabel.SetMessage(Loc.GetString("crew-monitoring-user-interface-no-department")); + deparmentLabel.StyleClasses.Add(StyleNano.StyleClassTooltipActionDescription); - // add a row for each sensor - foreach (var sensor in stSensors.OrderBy(a => a.Name)) + SensorsTable.AddChild(deparmentLabel); + _rowsContent.Add(deparmentLabel); + + PopulateDepartmentList(remainingSensors); + } + + // Show monitor on nav map + if (monitorCoords != null && _blipTexture != null) + { + NavMap.TrackedEntities[_entManager.GetNetEntity(monitor)] = new NavMapBlip(monitorCoords.Value, _blipTexture, Color.Cyan, true, false); + } + } + + private void PopulateDepartmentList(IEnumerable departmentSensors) + { + // Populate departments + foreach (var sensor in departmentSensors) + { + var coordinates = _entManager.GetCoordinates(sensor.Coordinates); + + // Add a button that will hold a username and other details + NavMap.LocalizedNames.TryAdd(sensor.SuitSensorUid, sensor.Name + ", " + sensor.Job); + + var sensorButton = new CrewMonitoringButton() { - var sensorEntity = _entManager.GetEntity(sensor.SuitSensorUid); - var coordinates = _entManager.GetCoordinates(sensor.Coordinates); + SuitSensorUid = sensor.SuitSensorUid, + Coordinates = coordinates, + Disabled = (coordinates == null), + HorizontalExpand = true, + }; - // add button with username - var nameButton = new CrewMonitoringButton() - { - SuitSensorUid = sensorEntity, - Coordinates = coordinates, - Text = sensor.Name, - Margin = new Thickness(5f, 5f), - }; - if (sensorEntity == _trackedButton?.SuitSensorUid) - nameButton.AddStyleClass(StyleNano.StyleClassButtonColorGreen); - SetColorLabel(nameButton.Label, sensor.TotalDamage, sensor.IsAlive); - SensorsTable.AddChild(nameButton); - _rowsContent.Add(nameButton); - - // add users job - // format: JobName - var jobLabel = new Label() - { - Text = sensor.Job, - HorizontalExpand = true - }; - SetColorLabel(jobLabel, sensor.TotalDamage, sensor.IsAlive); - SensorsTable.AddChild(jobLabel); - _rowsContent.Add(jobLabel); - - // add users status and damage - // format: IsAlive (TotalDamage) - var statusText = Loc.GetString(sensor.IsAlive ? - "crew-monitoring-user-interface-alive" : - "crew-monitoring-user-interface-dead"); - if (sensor.TotalDamage != null) - { - statusText += $" ({sensor.TotalDamage})"; - } - var statusLabel = new Label() - { - Text = statusText - }; - SetColorLabel(statusLabel, sensor.TotalDamage, sensor.IsAlive); - SensorsTable.AddChild(statusLabel); - _rowsContent.Add(statusLabel); + if (sensor.SuitSensorUid == _trackedEntity) + sensorButton.AddStyleClass(StyleNano.StyleClassButtonColorGreen); - // add users positions - // format: (x, y) - var box = GetPositionBox(sensor, monitorCoordsInStationSpace ?? Vector2.Zero, snap, precision); + SensorsTable.AddChild(sensorButton); + _rowsContent.Add(sensorButton); - SensorsTable.AddChild(box); - _rowsContent.Add(box); + // Primary container to hold the button UI elements + var mainContainer = new BoxContainer() + { + Orientation = LayoutOrientation.Horizontal, + HorizontalExpand = true, + }; - if (coordinates != null && NavMap.Visible) - { - NavMap.TrackedCoordinates.TryAdd(coordinates.Value, - (true, sensorEntity == _trackedButton?.SuitSensorUid ? StyleNano.PointGreen : StyleNano.PointRed)); + sensorButton.AddChild(mainContainer); - nameButton.OnButtonUp += args => - { - if (_trackedButton != null && _trackedButton?.Coordinates != null) - //Make previous point red - NavMap.TrackedCoordinates[_trackedButton.Coordinates.Value] = (true, StyleNano.PointRed); + // User status container + var statusContainer = new BoxContainer() + { + SizeFlagsStretchRatio = 1.25f, + Orientation = LayoutOrientation.Horizontal, + HorizontalExpand = true, + }; - NavMap.TrackedCoordinates[coordinates.Value] = (true, StyleNano.PointGreen); - NavMap.CenterToCoordinates(coordinates.Value); + mainContainer.AddChild(statusContainer); - nameButton.AddStyleClass(StyleNano.StyleClassButtonColorGreen); - if (_trackedButton != null) - { //Make previous button default - var previosButton = SensorsTable.GetChild(_trackedButton.IndexInTable); - previosButton.RemoveStyleClass(StyleNano.StyleClassButtonColorGreen); - } - _trackedButton = nameButton; - _trackedButton.IndexInTable = nameButton.GetPositionInParent(); - }; - } - } - // Show monitor point - if (monitorCoords != null) - NavMap.TrackedCoordinates.Add(monitorCoords.Value, (true, StyleNano.PointMagenta)); - } + // Suit coords indicator + var suitCoordsIndicator = new TextureRect() + { + Texture = _blipTexture, + TextureScale = new Vector2(0.25f, 0.25f), + Modulate = coordinates != null ? Color.LimeGreen : Color.DarkRed, + HorizontalAlignment = HAlignment.Center, + VerticalAlignment = VAlignment.Center, + }; - private BoxContainer GetPositionBox(SuitSensorStatus sensor, Vector2 monitorCoordsInStationSpace, bool snap, float precision) - { - EntityCoordinates? coordinates = _entManager.GetCoordinates(sensor.Coordinates); - var box = new BoxContainer() { Orientation = LayoutOrientation.Horizontal }; + statusContainer.AddChild(suitCoordsIndicator); + + // Specify texture for the user status icon + var specifier = new SpriteSpecifier.Rsi(new ResPath("Interface/Alerts/human_crew_monitoring.rsi"), "alive"); - if (coordinates == null || _stationUid == null) + if (!sensor.IsAlive) { - var dirIcon = new DirectionIcon() - { - SetSize = new Vector2(IconSize, IconSize), - Margin = new(0, 0, 4, 0) - }; - box.AddChild(dirIcon); - box.AddChild(new Label() { Text = Loc.GetString("crew-monitoring-user-interface-no-info") }); + specifier = new SpriteSpecifier.Rsi(new ResPath("Interface/Alerts/human_crew_monitoring.rsi"), "dead"); } - else + + else if (sensor.TotalDamage != null) { - var local = coordinates.Value.WithEntityId(_stationUid.Value, _entManager).Position; + var index = MathF.Round(4f * (sensor.TotalDamage.Value / 100f)); - var displayPos = local.Floored(); - var dirIcon = new DirectionIcon(snap, precision) - { - SetSize = new Vector2(IconSize, IconSize), - Margin = new(0, 0, 4, 0) - }; - box.AddChild(dirIcon); - Label label = new Label() { Text = displayPos.ToString() }; - SetColorLabel(label, sensor.TotalDamage, sensor.IsAlive); - box.AddChild(label); - _directionIcons.Add((dirIcon, local - monitorCoordsInStationSpace)); + if (index >= 5) + specifier = new SpriteSpecifier.Rsi(new ResPath("Interface/Alerts/human_crew_monitoring.rsi"), "critical"); + + else + specifier = new SpriteSpecifier.Rsi(new ResPath("Interface/Alerts/human_crew_monitoring.rsi"), "health" + index); } - return box; - } + // Status icon + var statusIcon = new AnimatedTextureRect + { + HorizontalAlignment = HAlignment.Center, + VerticalAlignment = VAlignment.Center, + Margin = new Thickness(0, 1, 3, 0), + }; - protected override void FrameUpdate(FrameEventArgs args) - { - // the window is separate from any specific viewport, so there is no real way to get an eye-rotation without - // using IEyeManager. Eventually this will have to be reworked for a station AI with multi-viewports. - // (From the future: Or alternatively, just disable the angular offset for station AIs?) - - // An offsetAngle of zero here perfectly aligns directions to the station map. - // Note that the "relative angle" does this weird inverse-inverse thing. - // Could recalculate it all in world coordinates and then pass in eye directly... or do this. - var offsetAngle = Angle.Zero; - if (_entManager.TryGetComponent(_stationUid, out var xform)) + statusIcon.SetFromSpriteSpecifier(specifier); + statusIcon.DisplayRect.TextureScale = new Vector2(2f, 2f); + + statusContainer.AddChild(statusIcon); + + // User name + var nameLabel = new Label() + { + Text = sensor.Name, + HorizontalExpand = true, + ClipText = true, + }; + + statusContainer.AddChild(nameLabel); + + // User job container + var jobContainer = new BoxContainer() + { + Orientation = LayoutOrientation.Horizontal, + HorizontalExpand = true, + }; + + mainContainer.AddChild(jobContainer); + + // Job icon + if (_prototypeManager.TryIndex(sensor.JobIcon, out var proto)) { - // Apply the offset relative to the eye. - // For a station at 45 degrees rotation, the current eye rotation is -45 degrees. - // TODO: This feels sketchy. Is there something underlying wrong with eye rotation? - offsetAngle = -(_eye.CurrentEye.Rotation + xform.WorldRotation); + var jobIcon = new TextureRect() + { + TextureScale = new Vector2(2f, 2f), + Stretch = TextureRect.StretchMode.KeepCentered, + Texture = _spriteSystem.Frame0(proto.Icon), + Margin = new Thickness(5, 0, 5, 0), + }; + + jobContainer.AddChild(jobIcon); } - foreach (var (icon, pos) in _directionIcons) + // Job name + var jobLabel = new Label() { - icon.UpdateDirection(pos, offsetAngle); + Text = sensor.Job, + HorizontalExpand = true, + ClipText = true, + }; + + jobContainer.AddChild(jobLabel); + + // Add user coordinates to the navmap + if (coordinates != null && NavMap.Visible && _blipTexture != null) + { + NavMap.TrackedEntities.TryAdd(sensor.SuitSensorUid, + new NavMapBlip + (coordinates.Value, + _blipTexture, + (_trackedEntity == null || sensor.SuitSensorUid == _trackedEntity) ? Color.LimeGreen : Color.LimeGreen * Color.DimGray, + sensor.SuitSensorUid == _trackedEntity)); + + NavMap.Focus = _trackedEntity; + + // On button up + sensorButton.OnButtonUp += args => + { + var prevTrackedEntity = _trackedEntity; + + if (_trackedEntity == sensor.SuitSensorUid) + { + _trackedEntity = null; + } + + else + { + _trackedEntity = sensor.SuitSensorUid; + NavMap.CenterToCoordinates(coordinates.Value); + } + + NavMap.Focus = _trackedEntity; + + UpdateSensorsTable(_trackedEntity, prevTrackedEntity); + }; } } + } + + private void SetTrackedEntityFromNavMap(NetEntity? netEntity) + { + var prevTrackedEntity = _trackedEntity; + _trackedEntity = netEntity; + + if (_trackedEntity == prevTrackedEntity) + prevTrackedEntity = null; + + NavMap.Focus = _trackedEntity; + _tryToScrollToListFocus = true; + + UpdateSensorsTable(_trackedEntity, prevTrackedEntity); + } - private void ClearAllSensors() + private void UpdateSensorsTable(NetEntity? currTrackedEntity, NetEntity? prevTrackedEntity) + { + foreach (var sensor in SensorsTable.Children) { - foreach (var child in _rowsContent) + if (sensor is not CrewMonitoringButton) + continue; + + var castSensor = (CrewMonitoringButton) sensor; + + if (castSensor.SuitSensorUid == prevTrackedEntity) + castSensor.RemoveStyleClass(StyleNano.StyleClassButtonColorGreen); + + else if (castSensor.SuitSensorUid == currTrackedEntity) + castSensor.AddStyleClass(StyleNano.StyleClassButtonColorGreen); + + if (castSensor?.Coordinates == null) + continue; + + if (NavMap.TrackedEntities.TryGetValue(castSensor.SuitSensorUid, out var data)) { - SensorsTable.RemoveChild(child); + data = new NavMapBlip + (data.Coordinates, + data.Texture, + (currTrackedEntity == null || castSensor.SuitSensorUid == currTrackedEntity) ? Color.LimeGreen : Color.LimeGreen * Color.DimGray, + castSensor.SuitSensorUid == currTrackedEntity); + + NavMap.TrackedEntities[castSensor.SuitSensorUid] = data; } - _rowsContent.Clear(); - _directionIcons.Clear(); - NavMap.TrackedCoordinates.Clear(); } + } - private void SetColorLabel(Label label, int? totalDamage, bool isAlive) + private void TryToScrollToFocus() + { + if (!_tryToScrollToListFocus) + return; + + if (!TryGetVerticalScrollbar(SensorScroller, out var vScrollbar)) + return; + + if (TryGetNextScrollPosition(out float? nextScrollPosition)) { - var startColor = Color.White; - var critColor = Color.Yellow; - var endColor = Color.Red; + vScrollbar.ValueTarget = nextScrollPosition.Value; - if (!isAlive) + if (MathHelper.CloseToPercent(vScrollbar.Value, vScrollbar.ValueTarget)) { - label.FontColorOverride = endColor; + _tryToScrollToListFocus = false; return; } + } + } - //Convert from null to regular int - int damage; - if (totalDamage == null) return; - else damage = (int) totalDamage; + private bool TryGetVerticalScrollbar(ScrollContainer scroll, [NotNullWhen(true)] out VScrollBar? vScrollBar) + { + vScrollBar = null; - if (damage <= 0) - { - label.FontColorOverride = startColor; - } - else if (damage >= 200) - { - label.FontColorOverride = endColor; - } - else if (damage >= 0 && damage <= 100) - { - label.FontColorOverride = GetColorLerp(startColor, critColor, damage); - } - else if (damage >= 100 && damage <= 200) - { - //We need a number from 0 to 100. Divide the number from 100 to 200 by 2 - damage /= 2; - label.FontColorOverride = GetColorLerp(critColor, endColor, damage); - } + foreach (var child in scroll.Children) + { + if (child is not VScrollBar) + continue; + + vScrollBar = (VScrollBar) child; + return true; } - private Color GetColorLerp(Color startColor, Color endColor, int damage) + return false; + } + + private bool TryGetNextScrollPosition([NotNullWhen(true)] out float? nextScrollPosition) + { + nextScrollPosition = 0; + + foreach (var sensor in SensorsTable.Children) { - //Smooth transition from one color to another depending on the percentage - var t = damage / 100f; - var r = MathHelper.Lerp(startColor.R, endColor.R, t); - var g = MathHelper.Lerp(startColor.G, endColor.G, t); - var b = MathHelper.Lerp(startColor.B, endColor.B, t); - var a = MathHelper.Lerp(startColor.A, endColor.A, t); - - return new Color(r, g, b, a); + if (sensor is CrewMonitoringButton && + ((CrewMonitoringButton) sensor).SuitSensorUid == _trackedEntity) + return true; + + nextScrollPosition += sensor.Height; } + + // Failed to find control + nextScrollPosition = null; + + return false; } - public sealed class CrewMonitoringButton : Button + private void ClearOutDatedData() { - public int IndexInTable; - public EntityUid? SuitSensorUid; - public EntityCoordinates? Coordinates; + SensorsTable.RemoveAllChildren(); + _rowsContent.Clear(); + NavMap.TrackedCoordinates.Clear(); + NavMap.TrackedEntities.Clear(); + NavMap.LocalizedNames.Clear(); } } + +public sealed class CrewMonitoringButton : Button +{ + public int IndexInTable; + public NetEntity SuitSensorUid; + public EntityCoordinates? Coordinates; +} diff --git a/Content.Client/Movement/Systems/ContentEyeSystem.cs b/Content.Client/Movement/Systems/ContentEyeSystem.cs index 4056f5fd85..d8f73b0057 100644 --- a/Content.Client/Movement/Systems/ContentEyeSystem.cs +++ b/Content.Client/Movement/Systems/ContentEyeSystem.cs @@ -30,14 +30,18 @@ public void RequestToggleFov() public void RequestToggleFov(EntityUid uid, EyeComponent? eye = null) { if (Resolve(uid, ref eye, false)) - RequestFov(!eye.DrawFov); + RequestEye(!eye.DrawFov, eye.DrawLight); } - public void RequestFov(bool value) + public void RequestToggleLight(EntityUid uid, EyeComponent? eye = null) { - RaisePredictiveEvent(new RequestFovEvent() - { - Fov = value, - }); + if (Resolve(uid, ref eye, false)) + RequestEye(eye.DrawFov, !eye.DrawLight); + } + + + public void RequestEye(bool drawFov, bool drawLight) + { + RaisePredictiveEvent(new RequestEyeEvent(drawFov, drawLight)); } } diff --git a/Content.Client/NetworkConfigurator/Systems/NetworkConfiguratorSystem.cs b/Content.Client/NetworkConfigurator/Systems/NetworkConfiguratorSystem.cs index 7bd13a12b2..9047d7cc8a 100644 --- a/Content.Client/NetworkConfigurator/Systems/NetworkConfiguratorSystem.cs +++ b/Content.Client/NetworkConfigurator/Systems/NetworkConfiguratorSystem.cs @@ -102,17 +102,6 @@ public void ClearAllOverlays() _overlay.RemoveOverlay(overlay); } - // hacky solution related to mapping - public void SetActiveDeviceList(EntityUid tool, EntityUid list, NetworkConfiguratorComponent? component = null) - { - if (!Resolve(tool, ref component)) - { - return; - } - - component.ActiveDeviceList = list; - } - private sealed class StatusControl : Control { private readonly RichTextLabel _label; diff --git a/Content.Client/Options/UI/OptionsMenu.xaml b/Content.Client/Options/UI/OptionsMenu.xaml index 5d028879fe..ab3b88ca4e 100644 --- a/Content.Client/Options/UI/OptionsMenu.xaml +++ b/Content.Client/Options/UI/OptionsMenu.xaml @@ -3,6 +3,7 @@ Title="{Loc 'ui-options-title'}" MinSize="800 450"> + diff --git a/Content.Client/Options/UI/OptionsMenu.xaml.cs b/Content.Client/Options/UI/OptionsMenu.xaml.cs index 1a924d2af1..c3a8e66470 100644 --- a/Content.Client/Options/UI/OptionsMenu.xaml.cs +++ b/Content.Client/Options/UI/OptionsMenu.xaml.cs @@ -15,10 +15,11 @@ public OptionsMenu() RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); - Tabs.SetTabTitle(0, Loc.GetString("ui-options-tab-graphics")); - Tabs.SetTabTitle(1, Loc.GetString("ui-options-tab-controls")); - Tabs.SetTabTitle(2, Loc.GetString("ui-options-tab-audio")); - Tabs.SetTabTitle(3, Loc.GetString("ui-options-tab-network")); + Tabs.SetTabTitle(0, Loc.GetString("ui-options-tab-misc")); + Tabs.SetTabTitle(1, Loc.GetString("ui-options-tab-graphics")); + Tabs.SetTabTitle(2, Loc.GetString("ui-options-tab-controls")); + Tabs.SetTabTitle(3, Loc.GetString("ui-options-tab-audio")); + Tabs.SetTabTitle(4, Loc.GetString("ui-options-tab-network")); UpdateTabs(); } diff --git a/Content.Client/Options/UI/Tabs/AudioTab.xaml.cs b/Content.Client/Options/UI/Tabs/AudioTab.xaml.cs index 5875c4a33a..80e13d4a43 100644 --- a/Content.Client/Options/UI/Tabs/AudioTab.xaml.cs +++ b/Content.Client/Options/UI/Tabs/AudioTab.xaml.cs @@ -1,10 +1,14 @@ +using Content.Client.Audio; using Content.Shared.CCVar; +using Robust.Client.Audio; using Robust.Client.AutoGenerated; +using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; using Robust.Shared; +using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; using Range = Robust.Client.UserInterface.Controls.Range; @@ -14,13 +18,14 @@ namespace Content.Client.Options.UI.Tabs public sealed partial class AudioTab : Control { [Dependency] private readonly IConfigurationManager _cfg = default!; - [Dependency] private readonly IClydeAudio _clydeAudio = default!; + private readonly IAudioManager _audio; public AudioTab() { RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); + _audio = IoCManager.Resolve(); LobbyMusicCheckBox.Pressed = _cfg.GetCVar(CCVars.LobbyMusicEnabled); RestartSoundsCheckBox.Pressed = _cfg.GetCVar(CCVars.RestartSoundsEnabled); EventMusicCheckBox.Pressed = _cfg.GetCVar(CCVars.EventMusicEnabled); @@ -79,7 +84,7 @@ private void OnAmbienceSoundsSliderChanged(Range obj) private void OnMasterVolumeSliderChanged(Range range) { - _clydeAudio.SetMasterVolume(MasterVolumeSlider.Value / 100); + _audio.SetMasterGain(MasterVolumeSlider.Value / 100f * ContentAudioSystem.MasterVolumeMultiplier); UpdateChanges(); } @@ -108,15 +113,16 @@ private void OnAdminSoundsCheckToggled(BaseButton.ButtonEventArgs args) private void OnApplyButtonPressed(BaseButton.ButtonEventArgs args) { - _cfg.SetCVar(CVars.AudioMasterVolume, MasterVolumeSlider.Value / 100); + _cfg.SetCVar(CVars.AudioMasterVolume, MasterVolumeSlider.Value / 100f * ContentAudioSystem.MasterVolumeMultiplier); // Want the CVar updated values to have the multiplier applied // For the UI we just display 0-100 still elsewhere - _cfg.SetCVar(CVars.MidiVolume, LV100ToDB(MidiVolumeSlider.Value, CCVars.MidiMultiplier)); - _cfg.SetCVar(CCVars.AmbienceVolume, LV100ToDB(AmbienceVolumeSlider.Value, CCVars.AmbienceMultiplier)); - _cfg.SetCVar(CCVars.AmbientMusicVolume, LV100ToDB(AmbientMusicVolumeSlider.Value, CCVars.AmbientMusicMultiplier)); + _cfg.SetCVar(CVars.MidiVolume, MidiVolumeSlider.Value / 100f * ContentAudioSystem.MidiVolumeMultiplier); + _cfg.SetCVar(CCVars.AmbienceVolume, AmbienceVolumeSlider.Value / 100f * ContentAudioSystem.AmbienceMultiplier); + _cfg.SetCVar(CCVars.AmbientMusicVolume, AmbientMusicVolumeSlider.Value / 100f * ContentAudioSystem.AmbientMusicMultiplier); + _cfg.SetCVar(CCVars.LobbyMusicVolume, LobbyVolumeSlider.Value / 100f * ContentAudioSystem.LobbyMultiplier); - _cfg.SetCVar(CCVars.LobbyMusicVolume, LV100ToDB(LobbyVolumeSlider.Value)); _cfg.SetCVar(CCVars.MaxAmbientSources, (int)AmbienceSoundsSlider.Value); + _cfg.SetCVar(CCVars.LobbyMusicEnabled, LobbyMusicCheckBox.Pressed); _cfg.SetCVar(CCVars.RestartSoundsEnabled, RestartSoundsCheckBox.Pressed); _cfg.SetCVar(CCVars.EventMusicEnabled, EventMusicCheckBox.Pressed); @@ -132,13 +138,14 @@ private void OnResetButtonPressed(BaseButton.ButtonEventArgs args) private void Reset() { - MasterVolumeSlider.Value = _cfg.GetCVar(CVars.AudioMasterVolume) * 100; - MidiVolumeSlider.Value = DBToLV100(_cfg.GetCVar(CVars.MidiVolume), CCVars.MidiMultiplier); - AmbienceVolumeSlider.Value = DBToLV100(_cfg.GetCVar(CCVars.AmbienceVolume), CCVars.AmbienceMultiplier); - AmbientMusicVolumeSlider.Value = - DBToLV100(_cfg.GetCVar(CCVars.AmbientMusicVolume), CCVars.AmbientMusicMultiplier); - LobbyVolumeSlider.Value = DBToLV100(_cfg.GetCVar(CCVars.LobbyMusicVolume)); + MasterVolumeSlider.Value = _cfg.GetCVar(CVars.AudioMasterVolume) * 100f / ContentAudioSystem.MasterVolumeMultiplier; + MidiVolumeSlider.Value = _cfg.GetCVar(CVars.MidiVolume) * 100f / ContentAudioSystem.MidiVolumeMultiplier; + AmbienceVolumeSlider.Value = _cfg.GetCVar(CCVars.AmbienceVolume) * 100f / ContentAudioSystem.AmbienceMultiplier; + AmbientMusicVolumeSlider.Value = _cfg.GetCVar(CCVars.AmbientMusicVolume) * 100f / ContentAudioSystem.AmbientMusicMultiplier; + LobbyVolumeSlider.Value = _cfg.GetCVar(CCVars.LobbyMusicVolume) * 100f / ContentAudioSystem.LobbyMultiplier; + AmbienceSoundsSlider.Value = _cfg.GetCVar(CCVars.MaxAmbientSources); + LobbyMusicCheckBox.Pressed = _cfg.GetCVar(CCVars.LobbyMusicEnabled); RestartSoundsCheckBox.Pressed = _cfg.GetCVar(CCVars.RestartSoundsEnabled); EventMusicCheckBox.Pressed = _cfg.GetCVar(CCVars.EventMusicEnabled); @@ -146,33 +153,20 @@ private void Reset() UpdateChanges(); } - // Note: Rather than moving these functions somewhere, instead switch MidiManager to using linear units rather than dB - // Do be sure to rename the setting though - private float DBToLV100(float db, float multiplier = 1f) - { - var weh = (float) (Math.Pow(10, db / 10) * 100 / multiplier); - return weh; - } - - private float LV100ToDB(float lv100, float multiplier = 1f) - { - // Saving negative infinity doesn't work, so use -10000000 instead (MidiManager does it) - var weh = MathF.Max(-10000000, (float) (Math.Log(lv100 * multiplier / 100, 10) * 10)); - return weh; - } - private void UpdateChanges() { + // y'all need jesus. var isMasterVolumeSame = - Math.Abs(MasterVolumeSlider.Value - _cfg.GetCVar(CVars.AudioMasterVolume) * 100) < 0.01f; + Math.Abs(MasterVolumeSlider.Value - _cfg.GetCVar(CVars.AudioMasterVolume) * 100f / ContentAudioSystem.MasterVolumeMultiplier) < 0.01f; var isMidiVolumeSame = - Math.Abs(MidiVolumeSlider.Value - DBToLV100(_cfg.GetCVar(CVars.MidiVolume), CCVars.MidiMultiplier)) < 0.01f; + Math.Abs(MidiVolumeSlider.Value - _cfg.GetCVar(CVars.MidiVolume) * 100f / ContentAudioSystem.MidiVolumeMultiplier) < 0.01f; var isAmbientVolumeSame = - Math.Abs(AmbienceVolumeSlider.Value - DBToLV100(_cfg.GetCVar(CCVars.AmbienceVolume), CCVars.AmbienceMultiplier)) < 0.01f; + Math.Abs(AmbienceVolumeSlider.Value - _cfg.GetCVar(CCVars.AmbienceVolume) * 100f / ContentAudioSystem.AmbienceMultiplier) < 0.01f; var isAmbientMusicVolumeSame = - Math.Abs(AmbientMusicVolumeSlider.Value - DBToLV100(_cfg.GetCVar(CCVars.AmbientMusicVolume), CCVars.AmbientMusicMultiplier)) < 0.01f; + Math.Abs(AmbientMusicVolumeSlider.Value - _cfg.GetCVar(CCVars.AmbientMusicVolume) * 100f / ContentAudioSystem.AmbientMusicMultiplier) < 0.01f; var isLobbyVolumeSame = - Math.Abs(LobbyVolumeSlider.Value - DBToLV100(_cfg.GetCVar(CCVars.LobbyMusicVolume))) < 0.01f; + Math.Abs(LobbyVolumeSlider.Value - _cfg.GetCVar(CCVars.LobbyMusicVolume) * 100f / ContentAudioSystem.LobbyMultiplier) < 0.01f; + var isAmbientSoundsSame = (int)AmbienceSoundsSlider.Value == _cfg.GetCVar(CCVars.MaxAmbientSources); var isLobbySame = LobbyMusicCheckBox.Pressed == _cfg.GetCVar(CCVars.LobbyMusicEnabled); var isRestartSoundsSame = RestartSoundsCheckBox.Pressed == _cfg.GetCVar(CCVars.RestartSoundsEnabled); diff --git a/Content.Client/Options/UI/Tabs/GraphicsTab.xaml b/Content.Client/Options/UI/Tabs/GraphicsTab.xaml index 41b304417a..74a0c78c52 100644 --- a/Content.Client/Options/UI/Tabs/GraphicsTab.xaml +++ b/Content.Client/Options/UI/Tabs/GraphicsTab.xaml @@ -20,8 +20,6 @@ - - diff --git a/Content.Client/Options/UI/Tabs/GraphicsTab.xaml.cs b/Content.Client/Options/UI/Tabs/GraphicsTab.xaml.cs index 852a3c2866..1773b2abe5 100644 --- a/Content.Client/Options/UI/Tabs/GraphicsTab.xaml.cs +++ b/Content.Client/Options/UI/Tabs/GraphicsTab.xaml.cs @@ -101,8 +101,6 @@ public GraphicsTab() UpdateApplyButton(); }; - ShowHeldItemCheckBox.OnToggled += OnCheckBoxToggled; - ShowCombatModeIndicatorsCheckBox.OnToggled += OnCheckBoxToggled; IntegerScalingCheckBox.OnToggled += OnCheckBoxToggled; ViewportLowResCheckBox.OnToggled += OnCheckBoxToggled; ParallaxLowQualityCheckBox.OnToggled += OnCheckBoxToggled; @@ -119,8 +117,6 @@ public GraphicsTab() ViewportLowResCheckBox.Pressed = !_cfg.GetCVar(CCVars.ViewportScaleRender); ParallaxLowQualityCheckBox.Pressed = _cfg.GetCVar(CCVars.ParallaxLowQuality); FpsCounterCheckBox.Pressed = _cfg.GetCVar(CCVars.HudFpsCounterVisible); - ShowHeldItemCheckBox.Pressed = _cfg.GetCVar(CCVars.HudHeldItemShow); - ShowCombatModeIndicatorsCheckBox.Pressed = _cfg.GetCVar(CCVars.CombatModeIndicatorsPointShow); ViewportWidthSlider.Value = _cfg.GetCVar(CCVars.ViewportWidth); _cfg.OnValueChanged(CCVars.ViewportMinimumWidth, _ => UpdateViewportWidthRange()); @@ -166,8 +162,6 @@ private void OnApplyButtonPressed(BaseButton.ButtonEventArgs args) IntegerScalingCheckBox.Pressed ? CCVars.ViewportSnapToleranceMargin.DefaultValue : 0); _cfg.SetCVar(CCVars.ViewportScaleRender, !ViewportLowResCheckBox.Pressed); _cfg.SetCVar(CCVars.ParallaxLowQuality, ParallaxLowQualityCheckBox.Pressed); - _cfg.SetCVar(CCVars.HudHeldItemShow, ShowHeldItemCheckBox.Pressed); - _cfg.SetCVar(CCVars.CombatModeIndicatorsPointShow, ShowCombatModeIndicatorsCheckBox.Pressed); _cfg.SetCVar(CCVars.HudFpsCounterVisible, FpsCounterCheckBox.Pressed); _cfg.SetCVar(CCVars.ViewportWidth, (int) ViewportWidthSlider.Value); @@ -203,8 +197,6 @@ private void UpdateApplyButton() var isIntegerScalingSame = IntegerScalingCheckBox.Pressed == (_cfg.GetCVar(CCVars.ViewportSnapToleranceMargin) != 0); var isVPResSame = ViewportLowResCheckBox.Pressed == !_cfg.GetCVar(CCVars.ViewportScaleRender); var isPLQSame = ParallaxLowQualityCheckBox.Pressed == _cfg.GetCVar(CCVars.ParallaxLowQuality); - var isShowHeldItemSame = ShowHeldItemCheckBox.Pressed == _cfg.GetCVar(CCVars.HudHeldItemShow); - var isCombatModeIndicatorsSame = ShowCombatModeIndicatorsCheckBox.Pressed == _cfg.GetCVar(CCVars.CombatModeIndicatorsPointShow); var isFpsCounterVisibleSame = FpsCounterCheckBox.Pressed == _cfg.GetCVar(CCVars.HudFpsCounterVisible); var isWidthSame = (int) ViewportWidthSlider.Value == _cfg.GetCVar(CCVars.ViewportWidth); var isLayoutSame = HudLayoutOption.SelectedMetadata is string opt && opt == _cfg.GetCVar(CCVars.UILayout); @@ -219,8 +211,6 @@ private void UpdateApplyButton() isVPResSame && isPLQSame && isHudThemeSame && - isShowHeldItemSame && - isCombatModeIndicatorsSame && isFpsCounterVisibleSame && isWidthSame && isLayoutSame; diff --git a/Content.Client/Options/UI/Tabs/KeyRebindTab.xaml.cs b/Content.Client/Options/UI/Tabs/KeyRebindTab.xaml.cs index c68e7f3af9..87b1f10352 100644 --- a/Content.Client/Options/UI/Tabs/KeyRebindTab.xaml.cs +++ b/Content.Client/Options/UI/Tabs/KeyRebindTab.xaml.cs @@ -224,10 +224,6 @@ void AddCheckBox(string checkBoxName, bool currentState, Action + + + + + [Prototype("parallax")] -public sealed class ParallaxPrototype : IPrototype +public sealed partial class ParallaxPrototype : IPrototype { /// [IdDataField] diff --git a/Content.Client/Parallax/ParallaxSystem.cs b/Content.Client/Parallax/ParallaxSystem.cs index 8b96cbdc3d..720da72e80 100644 --- a/Content.Client/Parallax/ParallaxSystem.cs +++ b/Content.Client/Parallax/ParallaxSystem.cs @@ -1,3 +1,4 @@ +using System.Numerics; using Content.Client.Parallax.Data; using Content.Client.Parallax.Managers; using Content.Shared.Parallax; @@ -23,14 +24,13 @@ public override void Initialize() { base.Initialize(); _overlay.AddOverlay(new ParallaxOverlay()); - _protoManager.PrototypesReloaded += OnReload; - + SubscribeLocalEvent(OnReload); SubscribeLocalEvent(OnAfterAutoHandleState); } private void OnReload(PrototypesReloadedEventArgs obj) { - if (!obj.ByType.ContainsKey(typeof(ParallaxPrototype))) + if (!obj.WasModified()) return; _parallax.UnloadParallax(Fallback); @@ -47,7 +47,6 @@ public override void Shutdown() { base.Shutdown(); _overlay.RemoveOverlay(); - _protoManager.PrototypesReloaded -= OnReload; } private void OnAfterAutoHandleState(EntityUid uid, ParallaxComponent component, ref AfterAutoHandleStateEvent args) @@ -72,4 +71,56 @@ public string GetParallax(EntityUid mapUid) { return TryComp(mapUid, out var parallax) ? parallax.Parallax : Fallback; } + + /// + /// Draws a texture as parallax in the specified world handle. + /// + /// + /// WorldAABB to use + /// Sprite to draw + /// Current time, unused if scrolling not set + /// Current position of the parallax + /// How much to scroll the parallax texture per second + /// Scale of the texture + /// How slow the parallax moves compared to position + /// Color modulation applied to drawing the texture + public void DrawParallax( + DrawingHandleWorld worldHandle, + Box2 worldAABB, + Texture sprite, + TimeSpan curTime, + Vector2 position, + Vector2 scrolling, + float scale = 1f, + float slowness = 0f, + Color? modulate = null) + { + // Size of the texture in world units. + var size = sprite.Size / (float) EyeManager.PixelsPerMeter * scale; + var scrolled = scrolling * (float) curTime.TotalSeconds; + + // Origin - start with the parallax shift itself. + var originBL = position * slowness + scrolled; + + // Centre the image. + originBL -= size / 2; + + // Remove offset so we can floor. + var flooredBL = worldAABB.BottomLeft - originBL; + + // Floor to background size. + flooredBL = (flooredBL / size).Floored() * size; + + // Re-offset. + flooredBL += originBL; + + for (var x = flooredBL.X; x < worldAABB.Right; x += size.X) + { + for (var y = flooredBL.Y; y < worldAABB.Top; y += size.Y) + { + var box = Box2.FromDimensions(new Vector2(x, y), size); + worldHandle.DrawTextureRect(sprite, box, modulate); + } + } + } } diff --git a/Content.Client/Physics/Controllers/MoverController.cs b/Content.Client/Physics/Controllers/MoverController.cs index 52340b3391..763f7b0114 100644 --- a/Content.Client/Physics/Controllers/MoverController.cs +++ b/Content.Client/Physics/Controllers/MoverController.cs @@ -4,6 +4,7 @@ using Robust.Client.Physics; using Robust.Client.Player; using Robust.Shared.Physics.Components; +using Robust.Shared.Player; using Robust.Shared.Timing; namespace Content.Client.Physics.Controllers diff --git a/Content.Client/Pinpointer/UI/NavMapControl.cs b/Content.Client/Pinpointer/UI/NavMapControl.cs index 04d8cc76f9..438c06f7f2 100644 --- a/Content.Client/Pinpointer/UI/NavMapControl.cs +++ b/Content.Client/Pinpointer/UI/NavMapControl.cs @@ -1,40 +1,68 @@ -using System.Numerics; using Content.Client.Stylesheets; using Content.Client.UserInterface.Controls; using Content.Shared.Pinpointer; -using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.ResourceManagement; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; +using Robust.Shared.Collections; using Robust.Shared.Input; using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Physics; using Robust.Shared.Physics.Collision.Shapes; using Robust.Shared.Physics.Components; +using Robust.Shared.Timing; +using System.Numerics; +using JetBrains.Annotations; namespace Content.Client.Pinpointer.UI; /// /// Displays the nav map data of the specified grid. /// -public sealed class NavMapControl : MapGridControl +[UsedImplicitly, Virtual] +public partial class NavMapControl : MapGridControl { [Dependency] private readonly IEntityManager _entManager = default!; - private SharedTransformSystem _transform; + private readonly SharedTransformSystem _transformSystem = default!; public EntityUid? MapUid; + // Actions + public event Action? TrackedEntitySelectedAction; + + // Tracked data public Dictionary TrackedCoordinates = new(); + public Dictionary TrackedEntities = new(); + public Dictionary> TileGrid = default!; + + // Default colors + public Color WallColor = new(102, 217, 102); + public Color TileColor = new(30, 67, 30); + + // Constants + protected float UpdateTime = 1.0f; + protected float MaxSelectableDistance = 10f; + protected float RecenterMinimum = 0.05f; + protected float MinDragDistance = 5f; + // Local variables private Vector2 _offset; private bool _draggin; + private Vector2 _startDragPosition = default!; private bool _recentering = false; - private readonly float _recenterMinimum = 0.05f; private readonly Font _font; - private static readonly Color TileColor = new(30, 67, 30); - private static readonly Color BeaconColor = Color.FromSrgb(TileColor.WithAlpha(0.8f)); + private float _updateTimer = 0.25f; + private Dictionary _sRGBLookUp = new Dictionary(); + private Color _beaconColor; + + // Components + private NavMapComponent? _navMap; + private MapGridComponent? _grid; + private TransformComponent? _xform; + private PhysicsComponent? _physics; + private FixturesComponent? _fixtures; // TODO: https://github.com/space-wizards/RobustToolbox/issues/3818 private readonly Label _zoom = new() @@ -45,20 +73,30 @@ public sealed class NavMapControl : MapGridControl private readonly Button _recenter = new() { - Text = "Recentre", + Text = Loc.GetString("navmap-recenter"), VerticalAlignment = VAlignment.Top, HorizontalAlignment = HAlignment.Right, Margin = new Thickness(8f, 4f), Disabled = true, }; + private readonly CheckBox _beacons = new() + { + Text = Loc.GetString("navmap-toggle-beacons"), + Margin = new Thickness(4f, 0f), + VerticalAlignment = VAlignment.Center, + HorizontalAlignment = HAlignment.Center, + Pressed = false, + }; + public NavMapControl() : base(8f, 128f, 48f) { IoCManager.InjectDependencies(this); - - _transform = _entManager.System(); var cache = IoCManager.Resolve(); - _font = new VectorFont(cache.GetResource("/EngineFonts/NotoSans/NotoSans-Regular.ttf"), 16); + + _transformSystem = _entManager.System(); + _font = new VectorFont(cache.GetResource("/EngineFonts/NotoSans/NotoSans-Regular.ttf"), 12); + _beaconColor = Color.FromSrgb(TileColor.WithAlpha(0.8f)); RectClipContent = true; HorizontalExpand = true; @@ -75,6 +113,7 @@ public NavMapControl() : base(8f, 128f, 48f) Children = { _zoom, + _beacons, _recenter, } }; @@ -101,14 +140,28 @@ public NavMapControl() : base(8f, 128f, 48f) { _recentering = true; }; + + ForceNavMapUpdate(); + } + + public void ForceRecenter() + { + _recentering = true; + } + + public void ForceNavMapUpdate() + { + _entManager.TryGetComponent(MapUid, out _navMap); + _entManager.TryGetComponent(MapUid, out _grid); + + UpdateNavMap(); } public void CenterToCoordinates(EntityCoordinates coordinates) { - if (_entManager.TryGetComponent(MapUid, out var physics)) - { - _offset = new Vector2(coordinates.X, coordinates.Y) - physics.LocalCenter; - } + if (_physics != null) + _offset = new Vector2(coordinates.X, coordinates.Y) - _physics.LocalCenter; + _recenter.Disabled = false; } @@ -118,6 +171,7 @@ protected override void KeyBindDown(GUIBoundKeyEventArgs args) if (args.Function == EngineKeyFunctions.Use) { + _startDragPosition = args.PointerLocation.Position; _draggin = true; } } @@ -127,8 +181,59 @@ protected override void KeyBindUp(GUIBoundKeyEventArgs args) base.KeyBindUp(args); if (args.Function == EngineKeyFunctions.Use) - { _draggin = false; + + if (TrackedEntitySelectedAction == null) + return; + + if (args.Function == EngineKeyFunctions.Use) + { + if (_xform == null || _physics == null || TrackedEntities.Count == 0) + return; + + // If the cursor has moved a significant distance, exit + if ((_startDragPosition - args.PointerLocation.Position).Length() > MinDragDistance) + return; + + // Get the clicked position + var offset = _offset + _physics.LocalCenter; + var localPosition = args.PointerLocation.Position - GlobalPixelPosition; + + // Convert to a world position + var unscaledPosition = (localPosition - MidpointVector) / MinimapScale; + var worldPosition = _transformSystem.GetWorldMatrix(_xform).Transform(new Vector2(unscaledPosition.X, -unscaledPosition.Y) + offset); + + // Find closest tracked entity in range + var closestEntity = NetEntity.Invalid; + var closestCoords = new EntityCoordinates(); + var closestDistance = float.PositiveInfinity; + + foreach ((var currentEntity, var blip) in TrackedEntities) + { + if (!blip.Selectable) + continue; + + var currentDistance = (blip.Coordinates.ToMapPos(_entManager, _transformSystem) - worldPosition).Length(); + + if (closestDistance < currentDistance || currentDistance * MinimapScale > MaxSelectableDistance) + continue; + + closestEntity = currentEntity; + closestCoords = blip.Coordinates; + closestDistance = currentDistance; + } + + if (closestDistance > MaxSelectableDistance || !closestEntity.IsValid()) + return; + + TrackedEntitySelectedAction.Invoke(closestEntity); + } + + else if (args.Function == EngineKeyFunctions.UIRightClick) + { + // Clear current selection with right click + if (TrackedEntitySelectedAction != null) + TrackedEntitySelectedAction.Invoke(null); } } @@ -143,25 +248,30 @@ protected override void MouseMove(GUIMouseMoveEventArgs args) _offset -= new Vector2(args.Relative.X, -args.Relative.Y) / MidPoint * WorldRange; if (_offset != Vector2.Zero) - { _recenter.Disabled = false; - } + else - { _recenter.Disabled = true; - } } protected override void Draw(DrawingHandleScreen handle) { base.Draw(handle); + // Get the components necessary for drawing the navmap + _entManager.TryGetComponent(MapUid, out _navMap); + _entManager.TryGetComponent(MapUid, out _grid); + _entManager.TryGetComponent(MapUid, out _xform); + _entManager.TryGetComponent(MapUid, out _physics); + _entManager.TryGetComponent(MapUid, out _fixtures); + + // Map re-centering if (_recentering) { var frameTime = Timing.FrameTime; var diff = _offset * (float) frameTime.TotalSeconds; - if (_offset.LengthSquared() < _recenterMinimum) + if (_offset.LengthSquared() < RecenterMinimum) { _offset = Vector2.Zero; _recentering = false; @@ -173,29 +283,22 @@ protected override void Draw(DrawingHandleScreen handle) } } - _zoom.Text = $"Zoom: {(WorldRange / WorldMaxRange * 100f):0.00}%"; + _zoom.Text = Loc.GetString("navmap-zoom", ("value", $"{(WorldRange / WorldMaxRange * 100f):0.00}")); - if (!_entManager.TryGetComponent(MapUid, out var navMap) || - !_entManager.TryGetComponent(MapUid, out var xform) || - !_entManager.TryGetComponent(MapUid, out var grid)) - { + if (_navMap == null || _xform == null) return; - } var offset = _offset; - var lineColor = new Color(102, 217, 102); - if (_entManager.TryGetComponent(MapUid, out var physics)) - { - offset += physics.LocalCenter; - } + if (_physics != null) + offset += _physics.LocalCenter; // Draw tiles - if (_entManager.TryGetComponent(MapUid, out var manager)) + if (_fixtures != null) { Span verts = new Vector2[8]; - foreach (var fixture in manager.Fixtures.Values) + foreach (var fixture in _fixtures.Fixtures.Values) { if (fixture.Shape is not PolygonShape poly) continue; @@ -211,113 +314,63 @@ protected override void Draw(DrawingHandleScreen handle) } } - // Draw the wall data var area = new Box2(-WorldRange, -WorldRange, WorldRange + 1f, WorldRange + 1f).Translated(offset); - var tileSize = new Vector2(grid.TileSize, -grid.TileSize); - for (var x = Math.Floor(area.Left); x <= Math.Ceiling(area.Right); x += SharedNavMapSystem.ChunkSize * grid.TileSize) + // Drawing lines can be rather expensive due to the number of neighbors that need to be checked in order + // to figure out where they should be drawn. However, we don't *need* to do check these every frame. + // Instead, lets periodically update where to draw each line and then store these points in a list. + // Then we can just run through the list each frame and draw the lines without any extra computation. + + // Draw walls + if (TileGrid != null && TileGrid.Count > 0) { - for (var y = Math.Floor(area.Bottom); y <= Math.Ceiling(area.Top); y += SharedNavMapSystem.ChunkSize * grid.TileSize) + var walls = new ValueList(); + + foreach ((var chunk, var chunkedLines) in TileGrid) { - var floored = new Vector2i((int) x, (int) y); + var offsetChunk = new Vector2(chunk.X, chunk.Y) * SharedNavMapSystem.ChunkSize; - var chunkOrigin = SharedMapSystem.GetChunkIndices(floored, SharedNavMapSystem.ChunkSize); + if (offsetChunk.X < area.Left - SharedNavMapSystem.ChunkSize || offsetChunk.X > area.Right) + continue; - if (!navMap.Chunks.TryGetValue(chunkOrigin, out var chunk)) + if (offsetChunk.Y < area.Bottom - SharedNavMapSystem.ChunkSize || offsetChunk.Y > area.Top) continue; - // TODO: Okay maybe I should just use ushorts lmao... - for (var i = 0; i < SharedNavMapSystem.ChunkSize * SharedNavMapSystem.ChunkSize; i++) + foreach (var chunkedLine in chunkedLines) + { + var start = Scale(chunkedLine.Origin - new Vector2(offset.X, -offset.Y)); + var end = Scale(chunkedLine.Terminus - new Vector2(offset.X, -offset.Y)); + + walls.Add(start); + walls.Add(end); + } + } + + if (walls.Count > 0) + { + if (!_sRGBLookUp.TryGetValue(WallColor, out var sRGB)) { - var value = (int) Math.Pow(2, i); - - var mask = chunk.TileData & value; - - if (mask == 0x0) - continue; - - // Alright now we'll work out our edges - var relativeTile = SharedNavMapSystem.GetTile(mask); - var tile = (chunk.Origin * SharedNavMapSystem.ChunkSize + relativeTile) * grid.TileSize - offset; - var position = new Vector2(tile.X, -tile.Y); - NavMapChunk? neighborChunk; - bool neighbor; - - // North edge - if (relativeTile.Y == SharedNavMapSystem.ChunkSize - 1) - { - neighbor = navMap.Chunks.TryGetValue(chunkOrigin + new Vector2i(0, 1), out neighborChunk) && - (neighborChunk.TileData & - SharedNavMapSystem.GetFlag(new Vector2i(relativeTile.X, 0))) != 0x0; - } - else - { - var flag = SharedNavMapSystem.GetFlag(relativeTile + new Vector2i(0, 1)); - neighbor = (chunk.TileData & flag) != 0x0; - } - - if (!neighbor) - { - handle.DrawLine(Scale(position + new Vector2(0f, -grid.TileSize)), Scale(position + tileSize), lineColor); - } - - // East edge - if (relativeTile.X == SharedNavMapSystem.ChunkSize - 1) - { - neighbor = navMap.Chunks.TryGetValue(chunkOrigin + new Vector2i(1, 0), out neighborChunk) && - (neighborChunk.TileData & - SharedNavMapSystem.GetFlag(new Vector2i(0, relativeTile.Y))) != 0x0; - } - else - { - var flag = SharedNavMapSystem.GetFlag(relativeTile + new Vector2i(1, 0)); - neighbor = (chunk.TileData & flag) != 0x0; - } - - if (!neighbor) - { - handle.DrawLine(Scale(position + tileSize), Scale(position + new Vector2(grid.TileSize, 0f)), lineColor); - } - - // South edge - if (relativeTile.Y == 0) - { - neighbor = navMap.Chunks.TryGetValue(chunkOrigin + new Vector2i(0, -1), out neighborChunk) && - (neighborChunk.TileData & - SharedNavMapSystem.GetFlag(new Vector2i(relativeTile.X, SharedNavMapSystem.ChunkSize - 1))) != 0x0; - } - else - { - var flag = SharedNavMapSystem.GetFlag(relativeTile + new Vector2i(0, -1)); - neighbor = (chunk.TileData & flag) != 0x0; - } - - if (!neighbor) - { - handle.DrawLine(Scale(position + new Vector2(grid.TileSize, 0f)), Scale(position), lineColor); - } - - // West edge - if (relativeTile.X == 0) - { - neighbor = navMap.Chunks.TryGetValue(chunkOrigin + new Vector2i(-1, 0), out neighborChunk) && - (neighborChunk.TileData & - SharedNavMapSystem.GetFlag(new Vector2i(SharedNavMapSystem.ChunkSize - 1, relativeTile.Y))) != 0x0; - } - else - { - var flag = SharedNavMapSystem.GetFlag(relativeTile + new Vector2i(-1, 0)); - neighbor = (chunk.TileData & flag) != 0x0; - } - - if (!neighbor) - { - handle.DrawLine(Scale(position), Scale(position + new Vector2(0f, -grid.TileSize)), lineColor); - } - - // Draw a diagonal line for interiors. - handle.DrawLine(Scale(position + new Vector2(0f, -grid.TileSize)), Scale(position + new Vector2(grid.TileSize, 0f)), lineColor); + sRGB = Color.ToSrgb(WallColor); + _sRGBLookUp[WallColor] = sRGB; } + + handle.DrawPrimitives(DrawPrimitiveTopology.LineList, walls.Span, sRGB); + } + } + + // Beacons + if (_beacons.Pressed) + { + var rectBuffer = new Vector2(5f, 3f); + + foreach (var beacon in _navMap.Beacons) + { + var position = beacon.Position - offset; + position = Scale(position with { Y = -position.Y }); + + var textDimensions = handle.GetDimensions(_font, beacon.Text, 1f); + handle.DrawRect(new UIBox2(position - textDimensions / 2 - rectBuffer, position + textDimensions / 2 + rectBuffer), _beaconColor); + handle.DrawString(_font, position - textDimensions / 2, beacon.Text, beacon.Color); } } @@ -325,43 +378,241 @@ protected override void Draw(DrawingHandleScreen handle) var blinkFrequency = 1f / 1f; var lit = curTime.TotalSeconds % blinkFrequency > blinkFrequency / 2f; + // Tracked coordinates (simple dot, legacy) foreach (var (coord, value) in TrackedCoordinates) { if (lit && value.Visible) { - var mapPos = coord.ToMap(_entManager); + var mapPos = coord.ToMap(_entManager, _transformSystem); if (mapPos.MapId != MapId.Nullspace) { - var position = xform.InvWorldMatrix.Transform(mapPos.Position) - offset; + var position = _transformSystem.GetInvWorldMatrix(_xform).Transform(mapPos.Position) - offset; position = Scale(new Vector2(position.X, -position.Y)); - handle.DrawCircle(position, MinimapScale / 2f, value.Color); + handle.DrawCircle(position, float.Sqrt(MinimapScale) * 2f, value.Color); } } } - // Beacons - var labelOffset = new Vector2(0.5f, 0.5f) * MinimapScale; - var rectBuffer = new Vector2(5f, 3f); + // Tracked entities (can use a supplied sprite as a marker instead; should probably just replace TrackedCoordinates with this eventually) + var iconVertexUVs = new Dictionary<(Texture, Color), ValueList>(); - foreach (var beacon in navMap.Beacons) + foreach (var blip in TrackedEntities.Values) { - var position = beacon.Position - offset; + if (blip.Blinks && !lit) + continue; + + if (blip.Texture == null) + continue; - position = Scale(position with { Y = -position.Y }); + if (!iconVertexUVs.TryGetValue((blip.Texture, blip.Color), out var vertexUVs)) + vertexUVs = new(); - handle.DrawCircle(position, MinimapScale / 2f, beacon.Color); - var textDimensions = handle.GetDimensions(_font, beacon.Text, 1f); + var mapPos = blip.Coordinates.ToMap(_entManager, _transformSystem); - var labelPosition = position + labelOffset; - handle.DrawRect(new UIBox2(labelPosition, labelPosition + textDimensions + rectBuffer * 2), BeaconColor); - handle.DrawString(_font, labelPosition + rectBuffer, beacon.Text, beacon.Color); + if (mapPos.MapId != MapId.Nullspace) + { + var position = _transformSystem.GetInvWorldMatrix(_xform).Transform(mapPos.Position) - offset; + position = Scale(new Vector2(position.X, -position.Y)); + + var scalingCoefficient = 2.5f; + var positionOffset = scalingCoefficient * float.Sqrt(MinimapScale); + + vertexUVs.Add(new DrawVertexUV2D(new Vector2(position.X - positionOffset, position.Y - positionOffset), new Vector2(1f, 1f))); + vertexUVs.Add(new DrawVertexUV2D(new Vector2(position.X - positionOffset, position.Y + positionOffset), new Vector2(1f, 0f))); + vertexUVs.Add(new DrawVertexUV2D(new Vector2(position.X + positionOffset, position.Y - positionOffset), new Vector2(0f, 1f))); + vertexUVs.Add(new DrawVertexUV2D(new Vector2(position.X - positionOffset, position.Y + positionOffset), new Vector2(1f, 0f))); + vertexUVs.Add(new DrawVertexUV2D(new Vector2(position.X + positionOffset, position.Y - positionOffset), new Vector2(0f, 1f))); + vertexUVs.Add(new DrawVertexUV2D(new Vector2(position.X + positionOffset, position.Y + positionOffset), new Vector2(0f, 0f))); + } + + iconVertexUVs[(blip.Texture, blip.Color)] = vertexUVs; } + + foreach ((var (texture, color), var vertexUVs) in iconVertexUVs) + { + if (!_sRGBLookUp.TryGetValue(color, out var sRGB)) + { + sRGB = Color.ToSrgb(color); + _sRGBLookUp[color] = sRGB; + } + + handle.DrawPrimitives(DrawPrimitiveTopology.TriangleList, texture, vertexUVs.Span, sRGB); + } + } + + protected override void FrameUpdate(FrameEventArgs args) + { + // Update the timer + _updateTimer += args.DeltaSeconds; + + if (_updateTimer >= UpdateTime) + { + _updateTimer -= UpdateTime; + + UpdateNavMap(); + } + } + + private void UpdateNavMap() + { + if (_navMap == null || _grid == null) + return; + + TileGrid = GetDecodedWallChunks(_navMap.Chunks, _grid); } - private Vector2 Scale(Vector2 position) + public Dictionary> GetDecodedWallChunks + (Dictionary chunks, + MapGridComponent grid) + { + var decodedOutput = new Dictionary>(); + + foreach ((var chunkOrigin, var chunk) in chunks) + { + var list = new List(); + + // TODO: Okay maybe I should just use ushorts lmao... + for (var i = 0; i < SharedNavMapSystem.ChunkSize * SharedNavMapSystem.ChunkSize; i++) + { + var value = (int) Math.Pow(2, i); + + var mask = chunk.TileData & value; + + if (mask == 0x0) + continue; + + // Alright now we'll work out our edges + var relativeTile = SharedNavMapSystem.GetTile(mask); + var tile = (chunk.Origin * SharedNavMapSystem.ChunkSize + relativeTile) * grid.TileSize; + var position = new Vector2(tile.X, -tile.Y); + NavMapChunk? neighborChunk; + bool neighbor; + + // North edge + if (relativeTile.Y == SharedNavMapSystem.ChunkSize - 1) + { + neighbor = chunks.TryGetValue(chunkOrigin + new Vector2i(0, 1), out neighborChunk) && + (neighborChunk.TileData & + SharedNavMapSystem.GetFlag(new Vector2i(relativeTile.X, 0))) != 0x0; + } + else + { + var flag = SharedNavMapSystem.GetFlag(relativeTile + new Vector2i(0, 1)); + neighbor = (chunk.TileData & flag) != 0x0; + } + + if (!neighbor) + { + // Add points + list.Add(new NavMapLine(position + new Vector2(0f, -grid.TileSize), position + new Vector2(grid.TileSize, -grid.TileSize))); + } + + // East edge + if (relativeTile.X == SharedNavMapSystem.ChunkSize - 1) + { + neighbor = chunks.TryGetValue(chunkOrigin + new Vector2i(1, 0), out neighborChunk) && + (neighborChunk.TileData & + SharedNavMapSystem.GetFlag(new Vector2i(0, relativeTile.Y))) != 0x0; + } + else + { + var flag = SharedNavMapSystem.GetFlag(relativeTile + new Vector2i(1, 0)); + neighbor = (chunk.TileData & flag) != 0x0; + } + + if (!neighbor) + { + // Add points + list.Add(new NavMapLine(position + new Vector2(grid.TileSize, -grid.TileSize), position + new Vector2(grid.TileSize, 0f))); + } + + // South edge + if (relativeTile.Y == 0) + { + neighbor = chunks.TryGetValue(chunkOrigin + new Vector2i(0, -1), out neighborChunk) && + (neighborChunk.TileData & + SharedNavMapSystem.GetFlag(new Vector2i(relativeTile.X, SharedNavMapSystem.ChunkSize - 1))) != 0x0; + } + else + { + var flag = SharedNavMapSystem.GetFlag(relativeTile + new Vector2i(0, -1)); + neighbor = (chunk.TileData & flag) != 0x0; + } + + if (!neighbor) + { + // Add points + list.Add(new NavMapLine(position + new Vector2(grid.TileSize, 0f), position)); + } + + // West edge + if (relativeTile.X == 0) + { + neighbor = chunks.TryGetValue(chunkOrigin + new Vector2i(-1, 0), out neighborChunk) && + (neighborChunk.TileData & + SharedNavMapSystem.GetFlag(new Vector2i(SharedNavMapSystem.ChunkSize - 1, relativeTile.Y))) != 0x0; + } + else + { + var flag = SharedNavMapSystem.GetFlag(relativeTile + new Vector2i(-1, 0)); + neighbor = (chunk.TileData & flag) != 0x0; + } + + if (!neighbor) + { + // Add point + list.Add(new NavMapLine(position, position + new Vector2(0f, -grid.TileSize))); + } + + // Draw a diagonal line for interiors. + list.Add(new NavMapLine(position + new Vector2(0f, -grid.TileSize), position + new Vector2(grid.TileSize, 0f))); + } + + decodedOutput.Add(chunkOrigin, list); + } + + return decodedOutput; + } + + protected Vector2 Scale(Vector2 position) { return position * MinimapScale + MidpointVector; } + + protected Vector2 GetOffset() + { + return _offset + (_physics != null ? _physics.LocalCenter : new Vector2()); + } +} + +public struct NavMapBlip +{ + public EntityCoordinates Coordinates; + public Texture Texture; + public Color Color; + public bool Blinks; + public bool Selectable; + + public NavMapBlip(EntityCoordinates coordinates, Texture texture, Color color, bool blinks, bool selectable = true) + { + Coordinates = coordinates; + Texture = texture; + Color = color; + Blinks = blinks; + Selectable = selectable; + } +} + +public struct NavMapLine +{ + public readonly Vector2 Origin; + public readonly Vector2 Terminus; + + public NavMapLine(Vector2 origin, Vector2 terminus) + { + Origin = origin; + Terminus = terminus; + } } diff --git a/Content.Client/Pinpointer/UI/StationMapWindow.xaml.cs b/Content.Client/Pinpointer/UI/StationMapWindow.xaml.cs index 1fa12fa9e7..f52f536775 100644 --- a/Content.Client/Pinpointer/UI/StationMapWindow.xaml.cs +++ b/Content.Client/Pinpointer/UI/StationMapWindow.xaml.cs @@ -21,5 +21,7 @@ public StationMapWindow(EntityUid? mapUid, EntityUid? trackedEntity) { Title = metadata.EntityName; } + + NavMapScreen.ForceNavMapUpdate(); } } diff --git a/Content.Client/PowerCell/PowerCellSystem.cs b/Content.Client/PowerCell/PowerCellSystem.cs index ec69f0d56b..1423dffaa3 100644 --- a/Content.Client/PowerCell/PowerCellSystem.cs +++ b/Content.Client/PowerCell/PowerCellSystem.cs @@ -1,4 +1,5 @@ using Content.Shared.PowerCell; +using Content.Shared.PowerCell.Components; using JetBrains.Annotations; using Robust.Client.GameObjects; @@ -15,6 +16,29 @@ public override void Initialize() SubscribeLocalEvent(OnPowerCellVisualsChange); } + /// + public override bool HasActivatableCharge(EntityUid uid, PowerCellDrawComponent? battery = null, PowerCellSlotComponent? cell = null, + EntityUid? user = null) + { + if (!Resolve(uid, ref battery, ref cell, false)) + return true; + + return battery.CanUse; + } + + /// + public override bool HasDrawCharge( + EntityUid uid, + PowerCellDrawComponent? battery = null, + PowerCellSlotComponent? cell = null, + EntityUid? user = null) + { + if (!Resolve(uid, ref battery, ref cell, false)) + return true; + + return battery.CanDraw; + } + private void OnPowerCellVisualsChange(EntityUid uid, PowerCellVisualsComponent component, ref AppearanceChangeEvent args) { if (args.Sprite == null) diff --git a/Content.Client/Replay/ContentReplayPlaybackManager.cs b/Content.Client/Replay/ContentReplayPlaybackManager.cs index cbb5117255..37c066f594 100644 --- a/Content.Client/Replay/ContentReplayPlaybackManager.cs +++ b/Content.Client/Replay/ContentReplayPlaybackManager.cs @@ -40,6 +40,7 @@ public sealed class ContentReplayPlaybackManager [Dependency] private readonly IClientConGroupController _conGrp = default!; [Dependency] private readonly IClientAdminManager _adminMan = default!; [Dependency] private readonly IPlayerManager _player = default!; + [Dependency] private readonly IBaseClient _client = default!; /// /// UI state to return to when stopping a replay or loading fails. @@ -87,6 +88,9 @@ public void ReturnToDefaultState() _stateMan.RequestStateChange().SetDisconnected(); else _stateMan.RequestStateChange(); + + if (_client.RunLevel == ClientRunLevel.SinglePlayerGame) + _client.StopSinglePlayer(); } private void OnCheckpointReset() @@ -135,7 +139,6 @@ private bool OnHandleReplayMessage(object message, bool skipEffects) { case RoundEndMessageEvent: case PopupEvent: - case AudioMessage: case PickupAnimationEvent: case MeleeLungeEvent: case SharedGunSystem.HitscanEvent: diff --git a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Movement.cs b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Movement.cs index d48a1eab46..e7d01713e5 100644 --- a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Movement.cs +++ b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Movement.cs @@ -44,7 +44,7 @@ public override void FrameUpdate(float frameTime) if (_replayPlayback.Replay == null) return; - if (_player.LocalPlayer?.ControlledEntity is not { } player) + if (_player.LocalEntity is not { } player) return; if (Direction == DirectionFlag.None) @@ -99,7 +99,7 @@ public override void FrameUpdate(float frameTime) var worldVec = parentRotation.RotateVec(localVec); var speed = CompOrNull(player)?.BaseSprintSpeed ?? DefaultSpeed; var delta = worldVec * frameTime * speed; - _transform.SetWorldPositionRotation(xform, pos + delta, delta.ToWorldAngle()); + _transform.SetWorldPositionRotation(player, pos + delta, delta.ToWorldAngle(), xform); } private sealed class MoverHandler : InputCmdHandler diff --git a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Position.cs b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Position.cs index 479e2eff97..2ee7e30ec9 100644 --- a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Position.cs +++ b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Position.cs @@ -1,8 +1,9 @@ using Content.Shared.Movement.Components; -using Robust.Client.Player; +using Robust.Shared.GameStates; using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Network; +using Robust.Shared.Player; namespace Content.Client.Replay.Spectator; @@ -25,7 +26,7 @@ public struct SpectatorData /// /// The player that was originally controlling /// - public NetUserId? Controller; + public NetUserId Controller; public (EntityCoordinates Coords, Angle Rot)? Local; public (EntityCoordinates Coords, Angle Rot)? World; @@ -35,27 +36,17 @@ public struct SpectatorData public SpectatorData GetSpectatorData() { var data = new SpectatorData(); - - if (_player.LocalPlayer?.ControlledEntity is not { } player) + if (_player.LocalEntity is not { } player) return data; - foreach (var session in _player.Sessions) - { - if (session.UserId == _player.LocalPlayer?.UserId) - continue; - - if (session.AttachedEntity == player) - { - data.Controller = session.UserId; - break; - } - } + data.Controller = _player.LocalUser ?? DefaultUser; if (!TryComp(player, out TransformComponent? xform) || xform.MapUid == null) return data; data.Local = (xform.Coordinates, xform.LocalRotation); - data.World = (new(xform.MapUid.Value, xform.WorldPosition), xform.WorldRotation); + var (pos, rot) = _transform.GetWorldPositionRotation(player); + data.World = (new(xform.MapUid.Value, pos), rot); if (TryComp(player, out InputMoverComponent? mover)) data.Eye = (mover.RelativeEntity, mover.TargetRelativeRotation); @@ -77,18 +68,54 @@ private void OnAfterSetTick() _spectatorData = null; } + private void OnBeforeApplyState((GameState Current, GameState? Next) args) + { + // Before applying the game state, we want to check to see if a recorded player session is about to + // get attached to the entity that we are currently spectating. If it is, then we switch out local session + // to the recorded session. I.e., we switch from spectating the entity to spectating the session. + // This is required because having multiple sessions attached to a single entity is not currently supported. + + if (_player.LocalUser != DefaultUser) + return; // Already spectating some session. + + if (_player.LocalEntity is not {} uid) + return; + + var netEnt = GetNetEntity(uid); + if (netEnt.IsClientSide()) + return; + + foreach (var playerState in args.Current.PlayerStates.Value) + { + if (playerState.ControlledEntity != netEnt) + continue; + + if (!_player.TryGetSessionById(playerState.UserId, out var session)) + session = _player.CreateAndAddSession(playerState.UserId, playerState.Name); + + _player.SetLocalSession(session); + break; + } + } + public void SetSpectatorPosition(SpectatorData data) { if (_player.LocalSession == null) return; - if (data.Controller != null - && _player.SessionsDict.TryGetValue(data.Controller.Value, out var session) - && Exists(session.AttachedEntity) - && Transform(session.AttachedEntity.Value).MapID != MapId.Nullspace) + if (data.Controller != DefaultUser) { - _player.SetAttachedEntity(_player.LocalSession, session.AttachedEntity); - return; + // the "local player" is currently set to some recorded session. As long as that session has an entity, we + // do nothing here + if (_player.TryGetSessionById(data.Controller, out var session) + && Exists(session.AttachedEntity)) + { + _player.SetLocalSession(session); + return; + } + + // Spectated session is no longer valid - return to the client-side session + _player.SetLocalSession(_player.GetSessionById(DefaultUser)); } if (Exists(data.Entity) && Transform(data.Entity).MapID != MapId.Nullspace) @@ -114,7 +141,7 @@ public void SetSpectatorPosition(SpectatorData data) } else { - Logger.Error("Failed to find a suitable observer spawn point"); + Log.Error("Failed to find a suitable observer spawn point"); return; } @@ -153,7 +180,7 @@ private bool TryFindFallbackSpawn(out EntityCoordinates coords) private void OnTerminating(EntityUid uid, ReplaySpectatorComponent component, ref EntityTerminatingEvent args) { - if (uid != _player.LocalPlayer?.ControlledEntity) + if (uid != _player.LocalEntity) return; var xform = Transform(uid); @@ -165,7 +192,7 @@ private void OnTerminating(EntityUid uid, ReplaySpectatorComponent component, re private void OnParentChanged(EntityUid uid, ReplaySpectatorComponent component, ref EntParentChangedMessage args) { - if (uid != _player.LocalPlayer?.ControlledEntity) + if (uid != _player.LocalEntity) return; if (args.Transform.MapUid != null || args.OldMapId == MapId.Nullspace) diff --git a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Spectate.cs b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Spectate.cs index 80a8429055..27b33b84c5 100644 --- a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Spectate.cs +++ b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Spectate.cs @@ -3,6 +3,7 @@ using Content.Shared.Verbs; using Robust.Shared.Console; using Robust.Shared.Map; +using Robust.Shared.Player; using Robust.Shared.Utility; namespace Content.Client.Replay.Spectator; @@ -15,19 +16,13 @@ private void OnGetAlternativeVerbs(GetVerbsEvent ev) if (_replayPlayback.Replay == null) return; - var verb = new AlternativeVerb + ev.Verbs.Add(new AlternativeVerb { Priority = 100, - Act = () => - { - SpectateEntity(ev.Target); - }, - + Act = () => SpectateEntity(ev.Target), Text = Loc.GetString("replay-verb-spectate"), Icon = new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/VerbIcons/vv.svg.192dpi.png")) - }; - - ev.Verbs.Add(verb); + }); } public void SpectateEntity(EntityUid target) @@ -35,7 +30,7 @@ public void SpectateEntity(EntityUid target) if (_player.LocalSession == null) return; - var old = _player.LocalSession.AttachedEntity; + var old = _player.LocalEntity; if (old == target) { @@ -44,8 +39,11 @@ public void SpectateEntity(EntityUid target) return; } - _player.SetAttachedEntity(_player.LocalSession, target); EnsureComp(target); + if (TryComp(target, out ActorComponent? actor)) + _player.SetLocalSession(actor.PlayerSession); + else + _player.SetAttachedEntity(_player.LocalSession, target); _stateMan.RequestStateChange(); if (old == null) @@ -59,10 +57,9 @@ public void SpectateEntity(EntityUid target) public TransformComponent SpawnSpectatorGhost(EntityCoordinates coords, bool gridAttach) { - if (_player.LocalSession == null) - throw new InvalidOperationException(); - - var old = _player.LocalSession.AttachedEntity; + var old = _player.LocalEntity; + var session = _player.GetSessionById(DefaultUser); + _player.SetLocalSession(session); var ent = Spawn("ReplayObserver", coords); _eye.SetMaxZoom(ent, Vector2.One * 5); @@ -73,7 +70,7 @@ public TransformComponent SpawnSpectatorGhost(EntityCoordinates coords, bool gri if (gridAttach) _transform.AttachToGridOrMap(ent); - _player.SetAttachedEntity(_player.LocalSession, ent); + _player.SetAttachedEntity(session, ent); if (old != null) { diff --git a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.cs b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.cs index 3b9662ed8c..8a3b858720 100644 --- a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.cs +++ b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.cs @@ -1,11 +1,12 @@ using Content.Shared.Movement.Systems; using Content.Shared.Verbs; -using Robust.Client; using Robust.Client.GameObjects; using Robust.Client.Player; using Robust.Client.Replays.Playback; using Robust.Client.State; using Robust.Shared.Console; +using Robust.Shared.Network; +using Robust.Shared.Player; using Robust.Shared.Serialization.Markdown.Mapping; namespace Content.Client.Replay.Spectator; @@ -26,13 +27,17 @@ public sealed partial class ReplaySpectatorSystem : EntitySystem [Dependency] private readonly IStateManager _stateMan = default!; [Dependency] private readonly TransformSystem _transform = default!; [Dependency] private readonly SharedMoverController _mover = default!; - [Dependency] private readonly IBaseClient _client = default!; [Dependency] private readonly SharedContentEyeSystem _eye = default!; [Dependency] private readonly IReplayPlaybackManager _replayPlayback = default!; private SpectatorData? _spectatorData; public const string SpectateCmd = "replay_spectate"; + /// + /// User Id that corresponds to the local user in a single-player game. + /// + public static readonly NetUserId DefaultUser = default; + public override void Initialize() { base.Initialize(); @@ -48,6 +53,7 @@ public override void Initialize() _replayPlayback.AfterSetTick += OnAfterSetTick; _replayPlayback.ReplayPlaybackStarted += OnPlaybackStarted; _replayPlayback.ReplayPlaybackStopped += OnPlaybackStopped; + _replayPlayback.BeforeApplyState += OnBeforeApplyState; } public override void Shutdown() @@ -57,6 +63,7 @@ public override void Shutdown() _replayPlayback.AfterSetTick -= OnAfterSetTick; _replayPlayback.ReplayPlaybackStarted -= OnPlaybackStarted; _replayPlayback.ReplayPlaybackStopped -= OnPlaybackStopped; + _replayPlayback.BeforeApplyState -= OnBeforeApplyState; } private void OnPlaybackStarted(MappingDataNode yamlMappingNode, List objects) diff --git a/Content.Client/Research/UI/MiniTechnologyCardControl.xaml.cs b/Content.Client/Research/UI/MiniTechnologyCardControl.xaml.cs index 5af1159c93..e7984ccaf9 100644 --- a/Content.Client/Research/UI/MiniTechnologyCardControl.xaml.cs +++ b/Content.Client/Research/UI/MiniTechnologyCardControl.xaml.cs @@ -1,4 +1,4 @@ -using Content.Shared.Research.Prototypes; +using Content.Shared.Research.Prototypes; using Robust.Client.AutoGenerated; using Robust.Client.GameObjects; using Robust.Client.UserInterface; @@ -12,6 +12,9 @@ namespace Content.Client.Research.UI; [GenerateTypedNameReferences] public sealed partial class MiniTechnologyCardControl : Control { + /// The technology that this control represents + public readonly TechnologyPrototype Technology; + public MiniTechnologyCardControl(TechnologyPrototype technology, IPrototypeManager prototypeManager, SpriteSystem spriteSys, FormattedMessage description) { RobustXamlLoader.Load(this); @@ -24,5 +27,6 @@ public MiniTechnologyCardControl(TechnologyPrototype technology, IPrototypeManag var tooltip = new Tooltip(); tooltip.SetMessage(description); Main.TooltipSupplier = _ => tooltip; + Technology = technology; } } diff --git a/Content.Client/Research/UI/ResearchConsoleMenu.xaml.cs b/Content.Client/Research/UI/ResearchConsoleMenu.xaml.cs index a20509202f..52abd0df08 100644 --- a/Content.Client/Research/UI/ResearchConsoleMenu.xaml.cs +++ b/Content.Client/Research/UI/ResearchConsoleMenu.xaml.cs @@ -1,3 +1,4 @@ +using System.Linq; using System.Numerics; using Content.Client.UserInterface.Controls; using Content.Shared.Access.Components; @@ -48,16 +49,10 @@ public ResearchConsoleMenu(EntityUid entity) public void UpdatePanels(ResearchConsoleBoundInterfaceState state) { - var allTech = _research.GetAvailableTechnologies(Entity); - AvailableCardsContainer.Children.Clear(); TechnologyCardsContainer.Children.Clear(); - UnlockedCardsContainer.Children.Clear(); - foreach (var tech in allTech) - { - var mini = new MiniTechnologyCardControl(tech, _prototype, _sprite, _research.GetTechnologyDescription(tech)); - AvailableCardsContainer.AddChild(mini); - } + var availableTech = _research.GetAvailableTechnologies(Entity); + SyncTechnologyList(AvailableCardsContainer, availableTech); if (_technologyDatabase == null) return; @@ -79,12 +74,8 @@ public void UpdatePanels(ResearchConsoleBoundInterfaceState state) TechnologyCardsContainer.AddChild(cardControl); } - foreach (var unlocked in _technologyDatabase.UnlockedTechnologies) - { - var tech = _prototype.Index(unlocked); - var cardControl = new MiniTechnologyCardControl(tech, _prototype, _sprite, _research.GetTechnologyDescription(tech, false)); - UnlockedCardsContainer.AddChild(cardControl); - } + var unlockedTech = _technologyDatabase.UnlockedTechnologies.Select(x => _prototype.Index(x)); + SyncTechnologyList(UnlockedCardsContainer, unlockedTech); } public void UpdateInformationPanel(ResearchConsoleBoundInterfaceState state) @@ -146,5 +137,46 @@ public void UpdateInformationPanel(ResearchConsoleBoundInterfaceState state) TierDisplayContainer.AddChild(control); } } + + /// + /// Synchronize a container for technology cards with a list of technologies, + /// creating or removing UI cards as appropriate. + /// + /// The container which contains the UI cards + /// The current set of technologies for which there should be cards + private void SyncTechnologyList(BoxContainer container, IEnumerable technologies) + { + // For the cards which already exist, build a map from technology prototype to the UI card + var currentTechControls = new Dictionary(); + foreach (var child in container.Children) + { + if (child is MiniTechnologyCardControl) + { + currentTechControls.Add((child as MiniTechnologyCardControl)!.Technology, child); + } + } + + foreach (var tech in technologies) + { + if (!currentTechControls.ContainsKey(tech)) + { + // Create a card for any technology which doesn't already have one. + var mini = new MiniTechnologyCardControl(tech, _prototype, _sprite, _research.GetTechnologyDescription(tech)); + container.AddChild(mini); + } + else + { + // The tech already exists in the UI; remove it from the set, so we won't revisit it below + currentTechControls.Remove(tech); + } + } + + // Now, any items left in the dictionary are technologies which were previously + // available, but now are not. Remove them. + foreach (var (tech, techControl) in currentTechControls) + { + container.Children.Remove(techControl); + } + } } diff --git a/Content.Client/Roles/RoleSystem.cs b/Content.Client/Roles/RoleSystem.cs index 6a98320af4..5c27e173d3 100644 --- a/Content.Client/Roles/RoleSystem.cs +++ b/Content.Client/Roles/RoleSystem.cs @@ -1,5 +1,7 @@ -namespace Content.Client.Roles; +using Content.Shared.Roles; -public sealed class RoleSystem : EntitySystem +namespace Content.Client.Roles; + +public sealed class RoleSystem : SharedRoleSystem { } diff --git a/Content.Client/Salvage/RestrictedRangeSystem.cs b/Content.Client/Salvage/RestrictedRangeSystem.cs new file mode 100644 index 0000000000..c81fcf14e1 --- /dev/null +++ b/Content.Client/Salvage/RestrictedRangeSystem.cs @@ -0,0 +1,7 @@ +using Content.Shared.Salvage; + +namespace Content.Client.Salvage; + +public sealed class RestrictedRangeSystem : SharedRestrictedRangeSystem +{ +} diff --git a/Content.Client/Silicons/Borgs/BorgSystem.cs b/Content.Client/Silicons/Borgs/BorgSystem.cs index 5d2e5fa070..e92ce5cc77 100644 --- a/Content.Client/Silicons/Borgs/BorgSystem.cs +++ b/Content.Client/Silicons/Borgs/BorgSystem.cs @@ -1,4 +1,5 @@ -using Content.Shared.Silicons.Borgs; +using Content.Shared.Mobs; +using Content.Shared.Silicons.Borgs; using Content.Shared.Silicons.Borgs.Components; using Robust.Client.GameObjects; using Robust.Shared.Containers; @@ -22,7 +23,7 @@ private void OnBorgAppearanceChanged(EntityUid uid, BorgChassisComponent compone { if (args.Sprite == null) return; - UpdateBorgAppearnce(uid, component, args.Component, args.Sprite); + UpdateBorgAppearance(uid, component, args.Component, args.Sprite); } protected override void OnInserted(EntityUid uid, BorgChassisComponent component, EntInsertedIntoContainerMessage args) @@ -31,7 +32,7 @@ protected override void OnInserted(EntityUid uid, BorgChassisComponent component return; base.OnInserted(uid, component, args); - UpdateBorgAppearnce(uid, component); + UpdateBorgAppearance(uid, component); } protected override void OnRemoved(EntityUid uid, BorgChassisComponent component, EntRemovedFromContainerMessage args) @@ -40,10 +41,10 @@ protected override void OnRemoved(EntityUid uid, BorgChassisComponent component, return; base.OnRemoved(uid, component, args); - UpdateBorgAppearnce(uid, component); + UpdateBorgAppearance(uid, component); } - private void UpdateBorgAppearnce(EntityUid uid, + private void UpdateBorgAppearance(EntityUid uid, BorgChassisComponent? component = null, AppearanceComponent? appearance = null, SpriteComponent? sprite = null) @@ -51,6 +52,15 @@ private void UpdateBorgAppearnce(EntityUid uid, if (!Resolve(uid, ref component, ref appearance, ref sprite)) return; + if (_appearance.TryGetData(uid, MobStateVisuals.State, out var state, appearance)) + { + if (state != MobState.Alive) + { + sprite.LayerSetVisible(BorgVisualLayers.Light, false); + return; + } + } + if (!_appearance.TryGetData(uid, BorgVisuals.HasPlayer, out var hasPlayer, appearance)) hasPlayer = false; diff --git a/Content.Client/Storage/Visualizers/EntityStorageVisualizerSystem.cs b/Content.Client/Storage/Visualizers/EntityStorageVisualizerSystem.cs index 39a8f3d932..772f516a69 100644 --- a/Content.Client/Storage/Visualizers/EntityStorageVisualizerSystem.cs +++ b/Content.Client/Storage/Visualizers/EntityStorageVisualizerSystem.cs @@ -37,15 +37,27 @@ protected override void OnAppearanceChange(EntityUid uid, EntityStorageVisualsCo { if (open) { - args.Sprite.LayerSetVisible(StorageVisualLayers.Door, true); + if (comp.OpenDrawDepth != null) + args.Sprite.DrawDepth = comp.OpenDrawDepth.Value; + if (comp.StateDoorOpen != null) + { args.Sprite.LayerSetState(StorageVisualLayers.Door, comp.StateDoorOpen); + args.Sprite.LayerSetVisible(StorageVisualLayers.Door, true); + } + else + { + args.Sprite.LayerSetVisible(StorageVisualLayers.Door, false); + } if (comp.StateBaseOpen != null) args.Sprite.LayerSetState(StorageVisualLayers.Base, comp.StateBaseOpen); } else { + if (comp.ClosedDrawDepth != null) + args.Sprite.DrawDepth = comp.ClosedDrawDepth.Value; + if (comp.StateDoorClosed != null) { args.Sprite.LayerSetState(StorageVisualLayers.Door, comp.StateDoorClosed); diff --git a/Content.Client/Storage/Visualizers/EntityStorageVisualsComponent.cs b/Content.Client/Storage/Visualizers/EntityStorageVisualsComponent.cs index 2635608421..dc171d6c54 100644 --- a/Content.Client/Storage/Visualizers/EntityStorageVisualsComponent.cs +++ b/Content.Client/Storage/Visualizers/EntityStorageVisualsComponent.cs @@ -45,4 +45,16 @@ public sealed partial class EntityStorageVisualsComponent : Component [DataField("stateUnlocked")] [ViewVariables(VVAccess.ReadWrite)] public string? StateUnlocked = "unlocked"; + + /// + /// The drawdepth the object has when it's open + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public int? OpenDrawDepth; + + /// + /// The drawdepth the object has when it's closed + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public int? ClosedDrawDepth; } diff --git a/Content.Client/Stylesheets/StyleNano.cs b/Content.Client/Stylesheets/StyleNano.cs index 071429a992..3e9ba2af52 100644 --- a/Content.Client/Stylesheets/StyleNano.cs +++ b/Content.Client/Stylesheets/StyleNano.cs @@ -56,6 +56,7 @@ public sealed class StyleNano : StyleBase public const string StyleClassTooltipActionDescription = "tooltipActionDesc"; public const string StyleClassTooltipActionCooldown = "tooltipActionCooldown"; public const string StyleClassTooltipActionRequirements = "tooltipActionCooldown"; + public const string StyleClassTooltipActionCharges = "tooltipActionCharges"; public const string StyleClassHotbarSlotNumber = "hotbarSlotNumber"; public const string StyleClassActionSearchBox = "actionSearchBox"; public const string StyleClassActionMenuItemRevoked = "actionMenuItemRevoked"; @@ -940,6 +941,10 @@ public StyleNano(IResourceCache resCache) : base(resCache) { new StyleProperty("font", notoSans15) }), + new StyleRule(new SelectorElement(typeof(RichTextLabel), new[] {StyleClassTooltipActionCharges}, null, null), new[] + { + new StyleProperty("font", notoSans15) + }), // small number for the entity counter in the entity menu new StyleRule(new SelectorElement(typeof(Label), new[] {ContextMenuElement.StyleClassEntityMenuIconLabel}, null, null), new[] diff --git a/Content.Client/SubFloor/TrayScannerSystem.cs b/Content.Client/SubFloor/TrayScannerSystem.cs index 6497ba1d68..f4ba455303 100644 --- a/Content.Client/SubFloor/TrayScannerSystem.cs +++ b/Content.Client/SubFloor/TrayScannerSystem.cs @@ -23,6 +23,8 @@ public sealed class TrayScannerSystem : SharedTrayScannerSystem private const string TRayAnimationKey = "trays"; private const double AnimationLength = 0.3; + public const LookupFlags Flags = LookupFlags.Static | LookupFlags.Sundries | LookupFlags.Approximate; + public override void Update(float frameTime) { base.Update(frameTime); @@ -76,28 +78,23 @@ public override void Update(float frameTime) if (canSee) { - _lookup.GetEntitiesInRange(playerMap, playerPos, range, inRange); + _lookup.GetEntitiesInRange(playerMap, playerPos, range, inRange, flags: Flags); foreach (var (uid, comp) in inRange) { - if (!comp.IsUnderCover || !comp.BlockAmbience | !comp.BlockInteractions) - continue; - - EnsureComp(uid); + if (comp.IsUnderCover) + EnsureComp(uid); } } - var revealedQuery = AllEntityQuery(); + var revealedQuery = AllEntityQuery(); var subfloorQuery = GetEntityQuery(); - while (revealedQuery.MoveNext(out var uid, out _, out var sprite, out var xform)) + while (revealedQuery.MoveNext(out var uid, out _, out var sprite)) { // Revealing // Add buffer range to avoid flickers. if (subfloorQuery.TryGetComponent(uid, out var subfloor) && - xform.MapID != MapId.Nullspace && - xform.MapID == playerMap && - xform.Anchored && inRange.Contains((uid, subfloor))) { // Due to the fact client is predicting this server states will reset it constantly diff --git a/Content.Client/TextScreen/TextScreenSystem.cs b/Content.Client/TextScreen/TextScreenSystem.cs index 040e5b7d31..c14bce740a 100644 --- a/Content.Client/TextScreen/TextScreenSystem.cs +++ b/Content.Client/TextScreen/TextScreenSystem.cs @@ -1,3 +1,4 @@ +using System.Linq; using System.Numerics; using Content.Shared.TextScreen; using Robust.Client.GameObjects; @@ -6,6 +7,20 @@ namespace Content.Client.TextScreen; +/// overview: +/// Data is passed from server to client through , +/// calling , which calls almost everything else. + +/// Data for the (at most one) timer is stored in . + +/// All screens have , but: +/// the update method only updates the timers, so the timercomp is added/removed by appearance changes/timing out. + +/// Because the sprite component stores layers in a dict with no nesting, individual layers +/// have to be mapped to unique ids e.g. {"textMapKey01" : } +/// in either the visuals or timer component. + + /// /// The TextScreenSystem draws text in the game world using 3x5 sprite states for each character. /// @@ -33,13 +48,20 @@ public sealed class TextScreenSystem : VisualizerSystem /// A string prefix for all text layers. /// - private const string TextScreenLayerMapKey = "textScreenLayerMapKey"; + private const string TextMapKey = "textMapKey"; + /// + /// A string prefix for all timer layers. + /// + private const string TimerMapKey = "timerMapKey"; + private const string TextPath = "Effects/text.rsi"; + private const int CharWidth = 4; public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnTimerInit); } private void OnInit(EntityUid uid, TextScreenVisualsComponent component, ComponentInit args) @@ -47,199 +69,201 @@ private void OnInit(EntityUid uid, TextScreenVisualsComponent component, Compone if (!TryComp(uid, out SpriteComponent? sprite)) return; - ResetTextLength(uid, component, sprite); - PrepareLayerStatesToDraw(uid, component, sprite); - UpdateLayersToDraw(uid, component, sprite); + // awkward to specify a textoffset of e.g. 0.1875 in the prototype + component.TextOffset = Vector2.Multiply(TextScreenVisualsComponent.PixelSize, component.TextOffset); + component.TimerOffset = Vector2.Multiply(TextScreenVisualsComponent.PixelSize, component.TimerOffset); + + ResetText(uid, component, sprite); + BuildTextLayers(uid, component, sprite); } /// - /// Resets all TextScreenComponent sprite layers, through removing them and then creating new ones. + /// Instantiates with { + int : } pairs. /// - public void ResetTextLength(EntityUid uid, TextScreenVisualsComponent component, SpriteComponent? sprite = null) + private void OnTimerInit(EntityUid uid, TextScreenTimerComponent timer, ComponentInit args) { - if (!Resolve(uid, ref sprite)) + if (!TryComp(uid, out var sprite) || !TryComp(uid, out var screen)) return; - foreach (var (key, _) in component.LayerStatesToDraw) + for (var i = 0; i < screen.RowLength; i++) { - sprite.RemoveLayer(key); + sprite.LayerMapReserveBlank(TimerMapKey + i); + timer.LayerStatesToDraw.Add(TimerMapKey + i, null); + sprite.LayerSetRSI(TimerMapKey + i, new ResPath(TextPath)); + sprite.LayerSetColor(TimerMapKey + i, screen.Color); + sprite.LayerSetState(TimerMapKey + i, DefaultState); } - - component.LayerStatesToDraw.Clear(); - - var length = component.TextLength; - component.TextLength = 0; - SetTextLength(uid, component, length, sprite); } /// - /// Sets , adding or removing sprite layers if necessary. + /// Called by to handle text updates, + /// and spawn a if necessary /// - public void SetTextLength(EntityUid uid, TextScreenVisualsComponent component, int newLength, SpriteComponent? sprite = null) + protected override void OnAppearanceChange(EntityUid uid, TextScreenVisualsComponent component, ref AppearanceChangeEvent args) { - if (newLength == component.TextLength) + if (!Resolve(uid, ref args.Sprite)) return; - if (!Resolve(uid, ref sprite)) - return; + var appearance = args.Component; - if (newLength > component.TextLength) + if (AppearanceSystem.TryGetData(uid, TextScreenVisuals.TargetTime, out TimeSpan time, appearance)) { - for (var i = component.TextLength; i < newLength; i++) + if (time > _gameTiming.CurTime) { - sprite.LayerMapReserveBlank(TextScreenLayerMapKey + i); - component.LayerStatesToDraw.Add(TextScreenLayerMapKey + i, null); - sprite.LayerSetRSI(TextScreenLayerMapKey + i, new ResPath("Effects/text.rsi")); - sprite.LayerSetColor(TextScreenLayerMapKey + i, component.Color); - sprite.LayerSetState(TextScreenLayerMapKey + i, DefaultState); + var timer = EnsureComp(uid); + timer.Target = time; + BuildTimerLayers(uid, timer, component); + DrawLayers(uid, timer.LayerStatesToDraw); } - } - else - { - for (var i = component.TextLength; i > newLength; i--) + else { - sprite.LayerMapGet(TextScreenLayerMapKey + (i - 1)); - component.LayerStatesToDraw.Remove(TextScreenLayerMapKey + (i - 1)); - sprite.RemoveLayer(TextScreenLayerMapKey + (i - 1)); + OnTimerFinish(uid, component); } } - UpdateOffsets(uid, component, sprite); - - component.TextLength = newLength; - } - - /// - /// Updates the layers offsets based on the text length, so it is drawn correctly. - /// - public void UpdateOffsets(EntityUid uid, TextScreenVisualsComponent component, SpriteComponent? sprite = null) - { - if (!Resolve(uid, ref sprite)) - return; - - for (var i = 0; i < component.LayerStatesToDraw.Count; i++) + if (AppearanceSystem.TryGetData(uid, TextScreenVisuals.ScreenText, out string?[] text, appearance)) { - var offset = i - (component.LayerStatesToDraw.Count - 1) / 2.0f; - sprite.LayerSetOffset(TextScreenLayerMapKey + i, new Vector2(offset * TextScreenVisualsComponent.PixelSize * 4f, 0.0f) + component.TextOffset); + component.TextToDraw = text; + ResetText(uid, component); + BuildTextLayers(uid, component, args.Sprite); + DrawLayers(uid, component.LayerStatesToDraw); } } - protected override void OnAppearanceChange(EntityUid uid, TextScreenVisualsComponent component, ref AppearanceChangeEvent args) + /// + /// Removes the timer component, clears the sprite layer dict, + /// and draws + /// + private void OnTimerFinish(EntityUid uid, TextScreenVisualsComponent screen) { - UpdateAppearance(uid, component, args.Component, args.Sprite); - } + screen.TextToDraw = screen.Text; - public void UpdateAppearance(EntityUid uid, TextScreenVisualsComponent component, AppearanceComponent? appearance = null, SpriteComponent? sprite = null) - { - if (!Resolve(uid, ref appearance, ref sprite)) + if (!TryComp(uid, out var timer) || !TryComp(uid, out var sprite)) return; - if (AppearanceSystem.TryGetData(uid, TextScreenVisuals.On, out bool on, appearance)) - { - component.Activated = on; - UpdateVisibility(uid, component, sprite); - } - - if (AppearanceSystem.TryGetData(uid, TextScreenVisuals.Mode, out TextScreenMode mode, appearance)) - { - component.CurrentMode = mode; - if (component.CurrentMode == TextScreenMode.Timer) - EnsureComp(uid); - else - RemComp(uid); - - UpdateText(component); - } - - if (AppearanceSystem.TryGetData(uid, TextScreenVisuals.TargetTime, out TimeSpan time, appearance)) - { - component.TargetTime = time; - } + foreach (var key in timer.LayerStatesToDraw.Keys) + sprite.RemoveLayer(key); - if (AppearanceSystem.TryGetData(uid, TextScreenVisuals.ScreenText, out string text, appearance)) - { - component.Text = text; - } + RemComp(uid); - UpdateText(component); - PrepareLayerStatesToDraw(uid, component, sprite); - UpdateLayersToDraw(uid, component, sprite); + ResetText(uid, screen); + BuildTextLayers(uid, screen, sprite); + DrawLayers(uid, screen.LayerStatesToDraw); } /// - /// If currently in mode:
- /// Sets to the value of + /// Clears , and instantiates new blank defaults. ///
- public static void UpdateText(TextScreenVisualsComponent component) + public void ResetText(EntityUid uid, TextScreenVisualsComponent component, SpriteComponent? sprite = null) { - if (component.CurrentMode == TextScreenMode.Text) - component.TextToDraw = component.Text; + if (!Resolve(uid, ref sprite)) + return; + + foreach (var key in component.LayerStatesToDraw.Keys) + sprite.RemoveLayer(key); + + component.LayerStatesToDraw.Clear(); + + for (var row = 0; row < component.Rows; row++) + for (var i = 0; i < component.RowLength; i++) + { + sprite.LayerMapReserveBlank(TextMapKey + row + i); + component.LayerStatesToDraw.Add(TextMapKey + row + i, null); + sprite.LayerSetRSI(TextMapKey + row + i, new ResPath(TextPath)); + sprite.LayerSetColor(TextMapKey + row + i, component.Color); + sprite.LayerSetState(TextMapKey + row + i, DefaultState); + } } /// - /// Sets visibility of text to . + /// Sets the states in the to match the component + /// string?[]. /// - public void UpdateVisibility(EntityUid uid, TextScreenVisualsComponent component, SpriteComponent? sprite = null) + /// + /// Remember to set to a string?[] first. + /// + public void BuildTextLayers(EntityUid uid, TextScreenVisualsComponent component, SpriteComponent? sprite = null) { if (!Resolve(uid, ref sprite)) return; - foreach (var (key, _) in component.LayerStatesToDraw) + for (var rowIdx = 0; rowIdx < Math.Min(component.TextToDraw.Length, component.Rows); rowIdx++) { - sprite.LayerSetVisible(key, component.Activated); + var row = component.TextToDraw[rowIdx]; + if (row == null) + continue; + var min = Math.Min(row.Length, component.RowLength); + + for (var chr = 0; chr < min; chr++) + { + component.LayerStatesToDraw[TextMapKey + rowIdx + chr] = GetStateFromChar(row[chr]); + sprite.LayerSetOffset( + TextMapKey + rowIdx + chr, + Vector2.Multiply( + new Vector2((chr - min / 2f + 0.5f) * CharWidth, -rowIdx * component.RowOffset), + TextScreenVisualsComponent.PixelSize + ) + component.TextOffset + ); + } } } /// - /// Sets the states in the to match the component string. + /// Populates timer.LayerStatesToDraw & the sprite component's layer dict with calculated offsets. /// - /// - /// Remember to set to a string first. - /// - public void PrepareLayerStatesToDraw(EntityUid uid, TextScreenVisualsComponent component, SpriteComponent? sprite = null) + public void BuildTimerLayers(EntityUid uid, TextScreenTimerComponent timer, TextScreenVisualsComponent screen) { - if (!Resolve(uid, ref sprite)) + if (!TryComp(uid, out var sprite)) return; - for (var i = 0; i < component.TextLength; i++) + string time = TimeToString( + (_gameTiming.CurTime - timer.Target).Duration(), + false, + screen.HourFormat, screen.MinuteFormat, screen.SecondFormat + ); + + int min = Math.Min(time.Length, screen.RowLength); + + for (int i = 0; i < min; i++) { - if (i >= component.TextToDraw.Length) - { - component.LayerStatesToDraw[TextScreenLayerMapKey + i] = DefaultState; - continue; - } - component.LayerStatesToDraw[TextScreenLayerMapKey + i] = GetStateFromChar(component.TextToDraw[i]); + timer.LayerStatesToDraw[TimerMapKey + i] = GetStateFromChar(time[i]); + sprite.LayerSetOffset( + TimerMapKey + i, + Vector2.Multiply( + new Vector2((i - min / 2f + 0.5f) * CharWidth, 0f), + TextScreenVisualsComponent.PixelSize + ) + screen.TimerOffset + ); } } /// - /// Iterates through , setting sprite states to the appropriate layers. + /// Draws a LayerStates dict by setting the sprite states individually. /// - public void UpdateLayersToDraw(EntityUid uid, TextScreenVisualsComponent component, SpriteComponent? sprite = null) + private void DrawLayers(EntityUid uid, Dictionary layerStates, SpriteComponent? sprite = null) { if (!Resolve(uid, ref sprite)) return; - foreach (var (key, state) in component.LayerStatesToDraw) - { - if (state == null) - continue; + foreach (var (key, state) in layerStates.Where(pairs => pairs.Value != null)) sprite.LayerSetState(key, state); - } } public override void Update(float frameTime) { base.Update(frameTime); - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var comp, out _)) + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var timer, out var screen)) { - // Basically Abs(TimeSpan, TimeSpan) -> Gives the difference between the current time and the target time. - var timeToShow = _gameTiming.CurTime > comp.TargetTime ? _gameTiming.CurTime - comp.TargetTime : comp.TargetTime - _gameTiming.CurTime; - comp.TextToDraw = TimeToString(timeToShow, false); - PrepareLayerStatesToDraw(uid, comp); - UpdateLayersToDraw(uid, comp); + if (timer.Target < _gameTiming.CurTime) + { + OnTimerFinish(uid, screen); + continue; + } + + BuildTimerLayers(uid, timer, screen); + DrawLayers(uid, timer.LayerStatesToDraw); } } @@ -248,28 +272,29 @@ public override void Update(float frameTime) /// /// TimeSpan to convert into string. /// Should the string be ss:ms if minutes are less than 1? - public static string TimeToString(TimeSpan timeSpan, bool getMilliseconds = true) + /// + /// hours, minutes, seconds, and centiseconds are each set to 2 decimal places by default. + /// + public static string TimeToString(TimeSpan timeSpan, bool getMilliseconds = true, string hours = "D2", string minutes = "D2", string seconds = "D2", string cs = "D2") { string firstString; string lastString; if (timeSpan.TotalHours >= 1) { - firstString = timeSpan.Hours.ToString("D2"); - lastString = timeSpan.Minutes.ToString("D2"); + firstString = timeSpan.Hours.ToString(hours); + lastString = timeSpan.Minutes.ToString(minutes); } else if (timeSpan.TotalMinutes >= 1 || !getMilliseconds) { - firstString = timeSpan.Minutes.ToString("D2"); - // It's nicer to see a timer set at 5 seconds actually start at 00:05 instead of 00:04. - var seconds = timeSpan.Seconds + (timeSpan.Milliseconds > 500 ? 1 : 0); - lastString = seconds.ToString("D2"); + firstString = timeSpan.Minutes.ToString(minutes); + lastString = timeSpan.Seconds.ToString(seconds); } else { - firstString = timeSpan.Seconds.ToString("D2"); + firstString = timeSpan.Seconds.ToString(seconds); var centiseconds = timeSpan.Milliseconds / 10; - lastString = centiseconds.ToString("D2"); + lastString = centiseconds.ToString(cs); } return firstString + ':' + lastString; diff --git a/Content.Client/TextScreen/TextScreenTimerComponent.cs b/Content.Client/TextScreen/TextScreenTimerComponent.cs index 9034f763d1..96081452e5 100644 --- a/Content.Client/TextScreen/TextScreenTimerComponent.cs +++ b/Content.Client/TextScreen/TextScreenTimerComponent.cs @@ -1,10 +1,14 @@ -namespace Content.Client.TextScreen; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Client.TextScreen; /// -/// This is an active component for tracking +/// Added to an entity already containing a to track frame-by-frame timer updates /// [RegisterComponent] public sealed partial class TextScreenTimerComponent : Component { - + [DataField("targetTime", customTypeSerializer: typeof(TimeOffsetSerializer))] + public TimeSpan Target = TimeSpan.Zero; + public Dictionary LayerStatesToDraw = new(); } diff --git a/Content.Client/TextScreen/TextScreenVisualsComponent.cs b/Content.Client/TextScreen/TextScreenVisualsComponent.cs index c3ee23928c..cf3619024c 100644 --- a/Content.Client/TextScreen/TextScreenVisualsComponent.cs +++ b/Content.Client/TextScreen/TextScreenVisualsComponent.cs @@ -1,7 +1,6 @@ using System.Numerics; using Content.Shared.TextScreen; using Robust.Client.Graphics; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; namespace Content.Client.TextScreen; @@ -16,52 +15,63 @@ public sealed partial class TextScreenVisualsComponent : Component /// /// The color of the text drawn. /// - [DataField("color")] - public Color Color { get; set; } = Color.FloralWhite; + /// + /// 15,151,251 is the old ss13 color, from tg + /// + [DataField("color"), ViewVariables(VVAccess.ReadWrite)] + public Color Color = new Color(15, 151, 251); /// - /// Whether the screen is on. + /// Offset for centering the text. /// - [DataField("activated")] - public bool Activated; + [DataField("textOffset"), ViewVariables(VVAccess.ReadWrite)] + public Vector2 TextOffset = Vector2.Zero; /// - /// The current mode of the screen - is it showing text, or currently counting? + /// Offset for centering the timer. /// - [DataField("currentMode")] - public TextScreenMode CurrentMode = TextScreenMode.Text; + [DataField("timerOffset"), ViewVariables(VVAccess.ReadWrite)] + public Vector2 TimerOffset = Vector2.Zero; /// - /// The time it is counting to or from. + /// Number of rows of text this screen can render. /// - [DataField("targetTime", customTypeSerializer: typeof(TimeOffsetSerializer))] - public TimeSpan TargetTime = TimeSpan.Zero; + [DataField("rows")] + public int Rows = 1; /// - /// Offset for drawing the text.
- /// (0, 8) pixels is the default for the Structures\Wallmounts\textscreen.rsi + /// Spacing between each text row ///
- [DataField("textOffset"), ViewVariables(VVAccess.ReadWrite)] - public Vector2 TextOffset = new(0f, 8f * PixelSize); + [DataField("rowOffset")] + public int RowOffset = 7; /// - /// The amount of characters this component can show. + /// The amount of characters this component can show per row. /// - [DataField("textLength")] - public int TextLength = 5; + [DataField("rowLength")] + public int RowLength = 5; /// - /// Text the screen should show when it's not counting. + /// Text the screen should show when it finishes a timer. /// [DataField("text"), ViewVariables(VVAccess.ReadWrite)] - public string Text = ""; + public string?[] Text = new string?[2]; - public string TextToDraw = ""; + /// + /// Text the screen will draw whenever appearance is updated. + /// + public string?[] TextToDraw = new string?[2]; /// - /// The different layers for each character - this is the currently drawn states. + /// Per-character layers, for mapping into the sprite component. /// [DataField("layerStatesToDraw")] public Dictionary LayerStatesToDraw = new(); -} + [DataField("hourFormat")] + public string HourFormat = "D2"; + [DataField("minuteFormat")] + public string MinuteFormat = "D2"; + [DataField("secondFormat")] + public string SecondFormat = "D2"; +} diff --git a/Content.Client/Toggleable/ToggleableLightVisualsComponent.cs b/Content.Client/Toggleable/ToggleableLightVisualsComponent.cs index 8acdef1e05..c42d5a7faa 100644 --- a/Content.Client/Toggleable/ToggleableLightVisualsComponent.cs +++ b/Content.Client/Toggleable/ToggleableLightVisualsComponent.cs @@ -16,7 +16,7 @@ public sealed partial class ToggleableLightVisualsComponent : Component /// Sprite layer that will have its visibility toggled when this item is toggled. /// [DataField("spriteLayer")] - public string SpriteLayer = "light"; + public string? SpriteLayer = "light"; /// /// Layers to add to the sprite of the player that is holding this entity (while the component is toggled on). diff --git a/Content.Client/Toggleable/ToggleableLightVisualsSystem.cs b/Content.Client/Toggleable/ToggleableLightVisualsSystem.cs index e3c17a4fd5..3507c786b9 100644 --- a/Content.Client/Toggleable/ToggleableLightVisualsSystem.cs +++ b/Content.Client/Toggleable/ToggleableLightVisualsSystem.cs @@ -30,7 +30,7 @@ protected override void OnAppearanceChange(EntityUid uid, ToggleableLightVisuals var modulate = AppearanceSystem.TryGetData(uid, ToggleableLightVisuals.Color, out var color, args.Component); // Update the item's sprite - if (args.Sprite != null && args.Sprite.LayerMapTryGet(component.SpriteLayer, out var layer)) + if (args.Sprite != null && component.SpriteLayer != null && args.Sprite.LayerMapTryGet(component.SpriteLayer, out var layer)) { args.Sprite.LayerSetVisible(layer, enabled); if (modulate) diff --git a/Content.Client/Traits/ParacusiaSystem.cs b/Content.Client/Traits/ParacusiaSystem.cs index 87abec80bb..c661254bc9 100644 --- a/Content.Client/Traits/ParacusiaSystem.cs +++ b/Content.Client/Traits/ParacusiaSystem.cs @@ -2,6 +2,9 @@ using Content.Shared.Traits.Assorted; using Robust.Shared.Random; using Robust.Client.Player; +using Robust.Shared.Player; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Timing; namespace Content.Client.Traits; @@ -40,7 +43,7 @@ private void OnComponentStartup(EntityUid uid, ParacusiaComponent component, Com private void OnPlayerDetach(EntityUid uid, ParacusiaComponent component, LocalPlayerDetachedEvent args) { - component.Stream?.Stop(); + component.Stream = _audio.Stop(component.Stream); } private void PlayParacusiaSounds(EntityUid uid) @@ -66,7 +69,7 @@ private void PlayParacusiaSounds(EntityUid uid) var newCoords = Transform(uid).Coordinates.Offset(randomOffset); // Play the sound - paracusia.Stream = _audio.PlayStatic(paracusia.Sounds, uid, newCoords); + paracusia.Stream = _audio.PlayStatic(paracusia.Sounds, uid, newCoords).Value.Entity; } } diff --git a/Content.Client/Trigger/TimerTriggerVisualizerSystem.cs b/Content.Client/Trigger/TimerTriggerVisualizerSystem.cs index 1c91565858..44c92456a1 100644 --- a/Content.Client/Trigger/TimerTriggerVisualizerSystem.cs +++ b/Content.Client/Trigger/TimerTriggerVisualizerSystem.cs @@ -1,6 +1,8 @@ using Content.Shared.Trigger; using Robust.Client.Animations; using Robust.Client.GameObjects; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.GameObjects; namespace Content.Client.Trigger; diff --git a/Content.Client/UserInterface/BoundKeyHelpers.cs b/Content.Client/UserInterface/BoundKeyHelpers.cs index 7413481ca3..a4a09a4507 100644 --- a/Content.Client/UserInterface/BoundKeyHelpers.cs +++ b/Content.Client/UserInterface/BoundKeyHelpers.cs @@ -13,6 +13,11 @@ public static string ShortKeyName(BoundKeyFunction keyFunction) return TryGetShortKeyName(keyFunction, out var name) ? Loc.GetString(name) : " "; } + public static bool IsBound(BoundKeyFunction keyFunction) + { + return TryGetShortKeyName(keyFunction, out _); + } + private static string? DefaultShortKeyName(BoundKeyFunction keyFunction) { var name = FormattedMessage.EscapeText(IoCManager.Resolve().GetKeyFunctionButtonString(keyFunction)); diff --git a/Content.Client/UserInterface/Controls/ListContainer.cs b/Content.Client/UserInterface/Controls/ListContainer.cs index c66ef33d3f..05ae0a4bb1 100644 --- a/Content.Client/UserInterface/Controls/ListContainer.cs +++ b/Content.Client/UserInterface/Controls/ListContainer.cs @@ -23,6 +23,7 @@ public bool Group public bool Toggle { get; set; } public Action? GenerateItem; public Action? ItemPressed; + public Action? ItemKeyBindDown; public IReadOnlyList Data => _data; private const int DefaultSeparation = 3; @@ -135,6 +136,11 @@ private void OnItemPressed(BaseButton.ButtonEventArgs args) ItemPressed?.Invoke(args, button.Data); } + private void OnItemKeyBindDown(ListContainerButton button, GUIBoundKeyEventArgs args) + { + ItemKeyBindDown?.Invoke(args, button.Data); + } + [Pure] private Vector2 GetScrollValue() { @@ -256,6 +262,7 @@ protected override Vector2 ArrangeOverride(Vector2 finalSize) { button = new ListContainerButton(data); button.OnPressed += OnItemPressed; + button.OnKeyBindDown += args => OnItemKeyBindDown(button, args); button.ToggleMode = Toggle; button.Group = _buttonGroup; diff --git a/Content.Client/UserInterface/Controls/SlotControl.cs b/Content.Client/UserInterface/Controls/SlotControl.cs index 37f8de88d6..9b94f8a0c8 100644 --- a/Content.Client/UserInterface/Controls/SlotControl.cs +++ b/Content.Client/UserInterface/Controls/SlotControl.cs @@ -188,7 +188,7 @@ public void ClearHover() if (!EntityHover) return; - var tempQualifier = HoverSpriteView.Ent; + var tempQualifier = HoverSpriteView.Entity; if (tempQualifier != null) { IoCManager.Resolve().QueueDeleteEntity(tempQualifier); diff --git a/Content.Client/UserInterface/Controls/SplitBar.xaml.cs b/Content.Client/UserInterface/Controls/SplitBar.xaml.cs index a7b11970e2..7273f327bf 100644 --- a/Content.Client/UserInterface/Controls/SplitBar.xaml.cs +++ b/Content.Client/UserInterface/Controls/SplitBar.xaml.cs @@ -9,6 +9,8 @@ namespace Content.Client.UserInterface.Controls [GenerateTypedNameReferences] public partial class SplitBar : BoxContainer { + public Vector2 MinBarSize = new(24, 0); + public SplitBar() { RobustXamlLoader.Load(this); @@ -33,7 +35,7 @@ public void AddEntry(float amount, Color color, string? tooltip = null) PaddingLeft = 2f, PaddingRight = 2f, }, - MinSize = new Vector2(24, 0) + MinSize = MinBarSize }); } } diff --git a/Content.Client/UserInterface/Screens/DefaultGameScreen.xaml b/Content.Client/UserInterface/Screens/DefaultGameScreen.xaml index 8b502515c9..5c09574005 100644 --- a/Content.Client/UserInterface/Screens/DefaultGameScreen.xaml +++ b/Content.Client/UserInterface/Screens/DefaultGameScreen.xaml @@ -22,10 +22,10 @@ + - diff --git a/Content.Client/UserInterface/Screens/DefaultGameScreen.xaml.cs b/Content.Client/UserInterface/Screens/DefaultGameScreen.xaml.cs index c35d831035..a8a53e83c7 100644 --- a/Content.Client/UserInterface/Screens/DefaultGameScreen.xaml.cs +++ b/Content.Client/UserInterface/Screens/DefaultGameScreen.xaml.cs @@ -17,7 +17,6 @@ public DefaultGameScreen() SetAnchorPreset(MainViewport, LayoutPreset.Wide); SetAnchorPreset(ViewportContainer, LayoutPreset.Wide); SetAnchorAndMarginPreset(TopLeft, LayoutPreset.TopLeft, margin: 10); - SetAnchorAndMarginPreset(Actions, LayoutPreset.BottomLeft, margin: 10); SetAnchorAndMarginPreset(Ghost, LayoutPreset.BottomWide, margin: 80); SetAnchorAndMarginPreset(Hotbar, LayoutPreset.BottomWide, margin: 5); SetAnchorAndMarginPreset(Chat, LayoutPreset.TopRight, margin: 10); @@ -25,6 +24,7 @@ public DefaultGameScreen() Chat.OnResized += ChatOnResized; Chat.OnChatResizeFinish += ChatOnResizeFinish; + Actions.ActionsContainer.Columns = 1; } private void ChatOnResizeFinish(Vector2 _) diff --git a/Content.Client/UserInterface/Screens/SeparatedChatGameScreen.xaml b/Content.Client/UserInterface/Screens/SeparatedChatGameScreen.xaml index 33418520a2..d62ad33dfc 100644 --- a/Content.Client/UserInterface/Screens/SeparatedChatGameScreen.xaml +++ b/Content.Client/UserInterface/Screens/SeparatedChatGameScreen.xaml @@ -16,10 +16,12 @@ - - + + + + diff --git a/Content.Client/UserInterface/Screens/SeparatedChatGameScreen.xaml.cs b/Content.Client/UserInterface/Screens/SeparatedChatGameScreen.xaml.cs index 41c4a85e7e..7816cf1be1 100644 --- a/Content.Client/UserInterface/Screens/SeparatedChatGameScreen.xaml.cs +++ b/Content.Client/UserInterface/Screens/SeparatedChatGameScreen.xaml.cs @@ -18,8 +18,7 @@ public SeparatedChatGameScreen() SetAnchorPreset(ScreenContainer, LayoutPreset.Wide); SetAnchorPreset(ViewportContainer, LayoutPreset.Wide); SetAnchorPreset(MainViewport, LayoutPreset.Wide); - SetAnchorAndMarginPreset(VoteMenu, LayoutPreset.TopLeft, margin: 10); - SetAnchorAndMarginPreset(Actions, LayoutPreset.BottomLeft, margin: 10); + SetAnchorAndMarginPreset(TopLeftContainer, LayoutPreset.TopLeft, margin: 10); SetAnchorAndMarginPreset(Ghost, LayoutPreset.BottomWide, margin: 80); SetAnchorAndMarginPreset(Hotbar, LayoutPreset.BottomWide, margin: 5); SetAnchorAndMarginPreset(Alerts, LayoutPreset.CenterRight, margin: 10); diff --git a/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs b/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs index e2de86201e..aae06965ef 100644 --- a/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs +++ b/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs @@ -1,6 +1,5 @@ using System.Linq; using System.Numerics; -using System.Runtime.InteropServices; using Content.Client.Actions; using Content.Client.Construction; using Content.Client.Gameplay; @@ -49,17 +48,14 @@ public sealed class ActionUIController : UIController, IOnStateChanged _pages = new(); - private int _currentPageIndex = DefaultPageIndex; + private readonly List _actions = new(); private readonly DragDropHelper _menuDragHelper; private readonly TextureRect _dragShadow; private ActionsWindow? _window; private ActionsBar? ActionsBar => UIManager.GetActiveUIWidgetOrNull(); private MenuButton? ActionButton => UIManager.GetActiveUIWidgetOrNull()?.ActionButton; - private ActionPage CurrentPage => _pages[_currentPageIndex]; public bool IsDragging => _menuDragHelper.IsDragging; @@ -79,14 +75,6 @@ public ActionUIController() SetSize = new Vector2(64, 64), MouseFilter = MouseFilterMode.Ignore }; - - var pageCount = ContentKeyFunctions.GetLoadoutBoundKeys().Length; - var buttonCount = ContentKeyFunctions.GetHotbarBoundKeys().Length; - for (var i = 0; i < pageCount; i++) - { - var page = new ActionPage(buttonCount); - _pages.Add(page); - } } public override void Initialize() @@ -139,15 +127,6 @@ public void OnStateEntered(GameplayState state) }, false, true)); } - var loadoutKeys = ContentKeyFunctions.GetLoadoutBoundKeys(); - for (var i = 0; i < loadoutKeys.Length; i++) - { - var boundId = i; // This is needed, because the lambda captures it. - var boundKey = loadoutKeys[i]; - builder = builder.Bind(boundKey, - InputCmdHandler.FromDelegate(_ => ChangePage(boundId))); - } - builder .Bind(ContentKeyFunctions.OpenActionsMenu, InputCmdHandler.FromDelegate(_ => ToggleWindow())) @@ -178,7 +157,7 @@ private bool TargetingOnUse(in PointerInputCmdArgs args) if (!_timing.IsFirstTimePredicted || _actionsSystem == null || SelectingTargetFor is not { } actionId) return false; - if (_playerManager.LocalPlayer?.ControlledEntity is not { } user) + if (_playerManager.LocalEntity is not { } user) return false; if (!EntityManager.TryGetComponent(user, out ActionsComponent? comp)) @@ -192,7 +171,7 @@ private bool TargetingOnUse(in PointerInputCmdArgs args) // Is the action currently valid? if (!action.Enabled - || action.Charges is 0 + || action is { Charges: 0, RenewCharges: false } || action.Cooldown.HasValue && action.Cooldown.Value.End > _timing.CurTime) { // The user is targeting with this action, but it is not valid. Maybe mark this click as @@ -332,76 +311,16 @@ public void OnStateExited(GameplayState state) private void TriggerAction(int index) { if (_actionsSystem == null || - CurrentPage[index] is not { } actionId || + !_actions.TryGetValue(index, out var actionId) || !_actionsSystem.TryGetActionData(actionId, out var baseAction)) { return; } if (baseAction is BaseTargetActionComponent action) - ToggleTargeting(actionId, action); + ToggleTargeting(actionId.Value, action); else - _actionsSystem?.TriggerAction(actionId, baseAction); - } - - private void ChangePage(int index) - { - if (_actionsSystem == null) - return; - - var lastPage = _pages.Count - 1; - if (index < 0) - { - index = lastPage; - } - else if (index > lastPage) - { - index = 0; - } - - _currentPageIndex = index; - var page = _pages[_currentPageIndex]; - _container?.SetActionData(_actionsSystem, page); - - ActionsBar!.PageButtons.Label.Text = $"{_currentPageIndex + 1}"; - } - - private void OnLeftArrowPressed(ButtonEventArgs args) - { - ChangePage(_currentPageIndex - 1); - } - - private void OnRightArrowPressed(ButtonEventArgs args) - { - ChangePage(_currentPageIndex + 1); - } - - private void AppendAction(EntityUid action) - { - if (_container == null) - return; - - foreach (var button in _container.GetButtons()) - { - if (button.ActionId != null) - continue; - - SetAction(button, action); - return; - } - - foreach (var page in _pages) - { - for (var i = 0; i < page.Size; i++) - { - var pageAction = page[i]; - if (pageAction != null) - continue; - - page[i] = action; - return; - } - } + _actionsSystem?.TriggerAction(actionId.Value, baseAction); } private void OnActionAdded(EntityUid actionId) @@ -416,18 +335,10 @@ private void OnActionAdded(EntityUid actionId) if (action is BaseTargetActionComponent targetAction && action.Toggled) StartTargeting(actionId, targetAction); - foreach (var page in _pages) - { - for (var i = 0; i < page.Size; i++) - { - if (page[i] == actionId) - { - return; - } - } - } + if (_actions.Contains(actionId)) + return; - AppendAction(actionId); + _actions.Add(actionId); } private void OnActionRemoved(EntityUid actionId) @@ -435,40 +346,18 @@ private void OnActionRemoved(EntityUid actionId) if (_container == null) return; - // stop targeting if the action is removed if (actionId == SelectingTargetFor) StopTargeting(); - foreach (var button in _container.GetButtons()) - { - if (button.ActionId == actionId) - { - SetAction(button, null); - } - } - - foreach (var page in _pages) - { - for (var i = 0; i < page.Size; i++) - { - if (page[i] == actionId) - { - page[i] = null; - } - } - } + _actions.RemoveAll(x => x == actionId); } private void OnActionsUpdated() { QueueWindowUpdate(); - if (_container == null) - return; - foreach (var button in _container.GetButtons()) - { - button.UpdateIcons(); - } + if (_actionsSystem != null) + _container?.SetActionData(_actionsSystem, _actions.ToArray()); } private void ActionButtonPressed(ButtonEventArgs args) @@ -512,8 +401,8 @@ private bool MatchesFilter(BaseActionComponent action, Filters filter) return filter switch { Filters.Enabled => action.Enabled, - Filters.Item => action.Container != null && action.Container != _playerManager.LocalPlayer?.ControlledEntity, - Filters.Innate => action.Container == null || action.Container == _playerManager.LocalPlayer?.ControlledEntity, + Filters.Item => action.Container != null && action.Container != _playerManager.LocalEntity, + Filters.Innate => action.Container == null || action.Container == _playerManager.LocalEntity, Filters.Instant => action is InstantActionComponent, Filters.Targeted => action is BaseTargetActionComponent, _ => throw new ArgumentOutOfRangeException(nameof(filter), filter, null) @@ -580,7 +469,7 @@ private void SearchAndDisplay() if (_actionsSystem == null) return; - if (_playerManager.LocalPlayer?.ControlledEntity is not { } player) + if (_playerManager.LocalEntity is not { } player) return; var search = _window.SearchBar.Text; @@ -615,7 +504,7 @@ private void SearchAndDisplay() PopulateActions(actions); } - private void SetAction(ActionButton button, EntityUid? actionId) + private void SetAction(ActionButton button, EntityUid? actionId, bool updateSlots = true) { if (_actionsSystem == null) return; @@ -627,22 +516,30 @@ private void SetAction(ActionButton button, EntityUid? actionId) button.ClearData(); if (_container?.TryGetButtonIndex(button, out position) ?? false) { - CurrentPage[position] = actionId; + _actions.RemoveAt(position); } - - return; } - - if (button.TryReplaceWith(actionId.Value, _actionsSystem) && + else if (button.TryReplaceWith(actionId.Value, _actionsSystem) && _container != null && _container.TryGetButtonIndex(button, out position)) { - CurrentPage[position] = actionId; + if (position >= _actions.Count) + { + _actions.Add(actionId); + } + else + { + _actions[position] = actionId; + } } + + if (updateSlots) + _container?.SetActionData(_actionsSystem, _actions.ToArray()); } private void DragAction() { + EntityUid? swapAction = null; if (UIManager.CurrentlyHovered is ActionButton button) { if (!_menuDragHelper.IsDragging || _menuDragHelper.Dragged?.ActionId is not { } type) @@ -651,14 +548,18 @@ private void DragAction() return; } - SetAction(button, type); + swapAction = button.ActionId; + SetAction(button, type, false); } if (_menuDragHelper.Dragged is {Parent: ActionButtonContainer} old) { - SetAction(old, null); + SetAction(old, swapAction, false); } + if (_actionsSystem != null) + _container?.SetActionData(_actionsSystem, _actions.ToArray()); + _menuDragHelper.EndDrag(); } @@ -737,6 +638,7 @@ private void OnActionUnpressed(GUIBoundKeyEventArgs args, ActionButton button) if (args.Function != EngineKeyFunctions.UIClick || _actionsSystem == null) return; + //todo: make dragging onto the same spot NOT trigger again if (UIManager.CurrentlyHovered == button) { _menuDragHelper.EndDrag(); @@ -767,11 +669,15 @@ private void OnActionUnpressed(GUIBoundKeyEventArgs args, ActionButton button) private bool OnMenuBeginDrag() { + // TODO ACTIONS + // The dragging icon shuld be based on the entity's icon style. I.e. if the action has a large icon texture, + // and a small item/provider sprite, then the dragged icon should be the big texture, not the provider. if (_actionsSystem != null && _actionsSystem.TryGetActionData(_menuDragHelper.Dragged?.ActionId, out var action)) { - if (EntityManager.TryGetComponent(action.EntityIcon, out SpriteComponent? sprite)) + if (EntityManager.TryGetComponent(action.EntityIcon, out SpriteComponent? sprite) + && sprite.Icon?.GetFrame(RsiDirection.South, 0) is {} frame) { - _dragShadow.Texture = sprite.Icon?.GetFrame(RsiDirection.South, 0); + _dragShadow.Texture = frame; } else if (action.Icon != null) { @@ -809,9 +715,6 @@ private void UnloadGui() return; } - ActionsBar.PageButtons.LeftArrow.OnPressed -= OnLeftArrowPressed; - ActionsBar.PageButtons.RightArrow.OnPressed -= OnRightArrowPressed; - if (_window != null) { _window.OnOpen -= OnWindowOpened; @@ -842,9 +745,6 @@ private void LoadGui() return; } - ActionsBar.PageButtons.LeftArrow.OnPressed += OnLeftArrowPressed; - ActionsBar.PageButtons.RightArrow.OnPressed += OnRightArrowPressed; - RegisterActionContainer(ActionsBar.ActionsContainer); _actionsSystem?.LinkAllActions(); @@ -855,7 +755,7 @@ public void RegisterActionContainer(ActionButtonContainer container) if (_container != null) { _container.ActionPressed -= OnActionPressed; - _container.ActionUnpressed -= OnActionPressed; + _container.ActionUnpressed -= OnActionUnpressed; } _container = container; @@ -873,12 +773,12 @@ private void AssignSlots(List assignments) if (_actionsSystem == null) return; - foreach (ref var assignment in CollectionsMarshal.AsSpan(assignments)) + for (var i = 0; i < assignments.Count; i++) { - _pages[assignment.Hotbar][assignment.Slot] = assignment.ActionId; + _actions[i] = assignments[i].ActionId; } - _container?.SetActionData(_actionsSystem, _pages[_currentPageIndex]); + _container?.SetActionData(_actionsSystem, _actions.ToArray()); } public void RemoveActionContainer() @@ -914,8 +814,8 @@ private void OnComponentLinked(ActionsComponent component) if (_actionsSystem == null) return; - LoadDefaultActions(component); - _container?.SetActionData(_actionsSystem, _pages[DefaultPageIndex]); + LoadDefaultActions(); + _container?.SetActionData(_actionsSystem, _actions.ToArray()); QueueWindowUpdate(); } @@ -926,7 +826,7 @@ private void OnComponentUnlinked() StopTargeting(); } - private void LoadDefaultActions(ActionsComponent component) + private void LoadDefaultActions() { if (_actionsSystem == null) return; @@ -934,36 +834,11 @@ private void LoadDefaultActions(ActionsComponent component) var actions = _actionsSystem.GetClientActions().Where(action => action.Comp.AutoPopulate).ToList(); actions.Sort(ActionComparer); - var offset = 0; - var totalPages = _pages.Count; - var pagesLeft = totalPages; - var currentPage = DefaultPageIndex; - while (pagesLeft > 0) + _actions.Clear(); + foreach (var (action, _) in actions) { - var page = _pages[currentPage]; - var pageSize = page.Size; - - for (var slot = 0; slot < pageSize; slot++) - { - var actionIndex = slot + offset; - if (actionIndex < actions.Count) - { - page[slot] = actions[slot + offset].Id; - } - else - { - page[slot] = null; - } - } - - offset += pageSize; - currentPage++; - if (currentPage == totalPages) - { - currentPage = 0; - } - - pagesLeft--; + if (!_actions.Contains(action)) + _actions.Add(action); } } @@ -1074,34 +949,4 @@ private void StopTargeting() handOverlay.IconOverride = null; handOverlay.EntityOverride = null; } - - - //TODO: Serialize this shit - private sealed class ActionPage - { - private readonly EntityUid?[] _data; - - public ActionPage(int size) - { - _data = new EntityUid?[size]; - } - - public EntityUid? this[int index] - { - get => _data[index]; - set => _data[index] = value; - } - - public static implicit operator EntityUid?[](ActionPage p) - { - return p._data.ToArray(); - } - - public void Clear() - { - Array.Fill(_data, null); - } - - public int Size => _data.Length; - } } diff --git a/Content.Client/UserInterface/Systems/Actions/Controls/ActionButton.cs b/Content.Client/UserInterface/Systems/Actions/Controls/ActionButton.cs index 31c5a28e52..3cd172b080 100644 --- a/Content.Client/UserInterface/Systems/Actions/Controls/ActionButton.cs +++ b/Content.Client/UserInterface/Systems/Actions/Controls/ActionButton.cs @@ -49,6 +49,8 @@ public BoundKeyFunction? KeyBind private readonly SpriteView _smallItemSpriteView; private readonly SpriteView _bigItemSpriteView; + private Texture? _buttonBackgroundTexture; + public EntityUid? ActionId { get; private set; } private BaseActionComponent? _action; public bool Locked { get; set; } @@ -138,9 +140,9 @@ public ActionButton(IEntityManager entities, SpriteSystem? spriteSys = null, Act }); Cooldown = new CooldownGraphic {Visible = false}; + AddChild(Button); AddChild(_bigActionIcon); AddChild(_bigItemSpriteView); - AddChild(Button); AddChild(HighlightRect); AddChild(Label); AddChild(Cooldown); @@ -167,7 +169,7 @@ public ActionButton(IEntityManager entities, SpriteSystem? spriteSys = null, Act protected override void OnThemeUpdated() { base.OnThemeUpdated(); - Button.Texture = Theme.ResolveTexture("SlotBackground"); + _buttonBackgroundTexture = Theme.ResolveTexture("SlotBackground"); Label.FontColorOverride = Theme.ResolveColorOrSpecified("whiteText"); } @@ -189,6 +191,12 @@ private void OnUnpressed(GUIBoundKeyEventArgs args) var name = FormattedMessage.FromMarkupPermissive(Loc.GetString(metadata.EntityName)); var decr = FormattedMessage.FromMarkupPermissive(Loc.GetString(metadata.EntityDescription)); + if (_action is { Charges: not null }) + { + var charges = FormattedMessage.FromMarkupPermissive(Loc.GetString($"Charges: {_action.Charges.Value.ToString()}/{_action.MaxCharges.ToString()}")); + return new ActionAlertTooltip(name, decr, charges: charges); + } + return new ActionAlertTooltip(name, decr); } @@ -263,6 +271,7 @@ private void SetActionIcon(Texture? texture) public void UpdateIcons() { UpdateItemIcon(); + UpdateBackground(); if (_action == null) { @@ -278,6 +287,20 @@ public void UpdateIcons() SetActionIcon(_action.Icon != null ? _spriteSys.Frame0(_action.Icon) : null); } + public void UpdateBackground() + { + _controller ??= UserInterfaceManager.GetUIController(); + if (_action != null || + _controller.IsDragging && GetPositionInParent() == Parent?.ChildCount - 1) + { + Button.Texture = _buttonBackgroundTexture; + } + else + { + Button.Texture = null; + } + } + public bool TryReplaceWith(EntityUid actionId, ActionsSystem system) { if (Locked) @@ -311,6 +334,9 @@ protected override void FrameUpdate(FrameEventArgs args) { base.FrameUpdate(args); + UpdateBackground(); + + Cooldown.Visible = _action != null && _action.Cooldown != null; if (_action == null) return; @@ -363,7 +389,8 @@ public void Depress(GUIBoundKeyEventArgs args, bool depress) public void DrawModeChanged() { - HighlightRect.Visible = _beingHovered; + _controller ??= UserInterfaceManager.GetUIController(); + HighlightRect.Visible = _beingHovered && (_action != null || _controller.IsDragging); // always show the normal empty button style if no action in this slot if (_action == null) @@ -373,15 +400,14 @@ public void DrawModeChanged() } // show a hover only if the action is usable or another action is being dragged on top of this - _controller ??= UserInterfaceManager.GetUIController(); - if (_beingHovered && (_controller.IsDragging || _action.Enabled)) + if (_beingHovered && (_controller.IsDragging || _action!.Enabled)) { SetOnlyStylePseudoClass(ContainerButton.StylePseudoClassHover); } // it's only depress-able if it's usable, so if we're depressed // show the depressed style - if (_depressed) + if (_depressed && !_beingHovered) { HighlightRect.Visible = false; SetOnlyStylePseudoClass(ContainerButton.StylePseudoClassPressed); diff --git a/Content.Client/UserInterface/Systems/Actions/Controls/ActionButtonContainer.cs b/Content.Client/UserInterface/Systems/Actions/Controls/ActionButtonContainer.cs index 9986c61ad6..a2aa972625 100644 --- a/Content.Client/UserInterface/Systems/Actions/Controls/ActionButtonContainer.cs +++ b/Content.Client/UserInterface/Systems/Actions/Controls/ActionButtonContainer.cs @@ -1,12 +1,19 @@ +using System.Linq; using Content.Client.Actions; +using Content.Shared.Input; +using Robust.Client.Input; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; +using Robust.Shared.Utility; namespace Content.Client.UserInterface.Systems.Actions.Controls; [Virtual] public class ActionButtonContainer : GridContainer { + [Dependency] private readonly IEntityManager _entity = default!; + [Dependency] private readonly IInputManager _input = default!; + public event Action? ActionPressed; public event Action? ActionUnpressed; public event Action? ActionFocusExited; @@ -14,7 +21,6 @@ public class ActionButtonContainer : GridContainer public ActionButtonContainer() { IoCManager.InjectDependencies(this); - UserInterfaceManager.GetUIController().RegisterActionContainer(this); } public ActionButton this[int index] @@ -22,17 +28,43 @@ public ActionButton this[int index] get => (ActionButton) GetChild(index); } - public void SetActionData(ActionsSystem system, params EntityUid?[] actionTypes) + private void BuildActionButtons(int count) { - ClearActionData(); + var keys = ContentKeyFunctions.GetHotbarBoundKeys(); - for (var i = 0; i < actionTypes.Length; i++) + Children.Clear(); + for (var index = 0; index < count; index++) { - var action = actionTypes[i]; - if (action == null) - continue; + Children.Add(MakeButton(index)); + } + + ActionButton MakeButton(int index) + { + var button = new ActionButton(_entity); + + if (keys.TryGetValue(index, out var boundKey)) + { + button.KeyBind = boundKey; + + var binding = _input.GetKeyBinding(boundKey); + button.Label.Text = binding.GetKeyString(); + } - ((ActionButton) GetChild(i)).UpdateData(action.Value, system); + return button; + } + } + + public void SetActionData(ActionsSystem system, params EntityUid?[] actionTypes) + { + var uniqueCount = Math.Min(system.GetClientActions().Count(), actionTypes.Length + 1); + if (ChildCount != uniqueCount) + BuildActionButtons(uniqueCount); + + for (var i = 0; i < uniqueCount; i++) + { + if (!actionTypes.TryGetValue(i, out var action)) + action = null; + ((ActionButton) GetChild(i)).UpdateData(action, system); } } diff --git a/Content.Client/UserInterface/Systems/Actions/Controls/ActionTooltip.xaml b/Content.Client/UserInterface/Systems/Actions/Controls/ActionTooltip.xaml index 338a297453..22893ccef4 100644 --- a/Content.Client/UserInterface/Systems/Actions/Controls/ActionTooltip.xaml +++ b/Content.Client/UserInterface/Systems/Actions/Controls/ActionTooltip.xaml @@ -5,5 +5,6 @@ + diff --git a/Content.Client/UserInterface/Systems/Actions/Widgets/ActionsBar.xaml b/Content.Client/UserInterface/Systems/Actions/Widgets/ActionsBar.xaml index 7e4d60a057..1d317f6155 100644 --- a/Content.Client/UserInterface/Systems/Actions/Widgets/ActionsBar.xaml +++ b/Content.Client/UserInterface/Systems/Actions/Widgets/ActionsBar.xaml @@ -13,7 +13,7 @@ VerticalAlignment="Center" MaxSize="64 9999" Name="ActionsContainer" - Access="Public"/> - + Access="Public" + Rows="1"/> diff --git a/Content.Client/UserInterface/Systems/Actions/Widgets/ActionsBar.xaml.cs b/Content.Client/UserInterface/Systems/Actions/Widgets/ActionsBar.xaml.cs index ff3c32cc0e..8e95992ff6 100644 --- a/Content.Client/UserInterface/Systems/Actions/Widgets/ActionsBar.xaml.cs +++ b/Content.Client/UserInterface/Systems/Actions/Widgets/ActionsBar.xaml.cs @@ -1,6 +1,4 @@ -using Content.Client.UserInterface.Systems.Actions.Controls; -using Content.Shared.Input; -using Robust.Client.AutoGenerated; +using Robust.Client.AutoGenerated; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; @@ -9,28 +7,9 @@ namespace Content.Client.UserInterface.Systems.Actions.Widgets; [GenerateTypedNameReferences] public sealed partial class ActionsBar : UIWidget { - [Dependency] private readonly IEntityManager _entity = default!; - public ActionsBar() { RobustXamlLoader.Load(this); - IoCManager.InjectDependencies(this); - - var keys = ContentKeyFunctions.GetHotbarBoundKeys(); - for (var index = 1; index < keys.Length; index++) - { - ActionsContainer.Children.Add(MakeButton(index)); - } - ActionsContainer.Children.Add(MakeButton(0)); - - ActionButton MakeButton(int index) - { - var boundKey = keys[index]; - var button = new ActionButton(_entity); - button.KeyBind = boundKey; - button.Label.Text = index.ToString(); - return button; - } } } diff --git a/Content.Client/UserInterface/Systems/Admin/AdminUIController.cs b/Content.Client/UserInterface/Systems/Admin/AdminUIController.cs index 4a7a57e527..a7ece3714d 100644 --- a/Content.Client/UserInterface/Systems/Admin/AdminUIController.cs +++ b/Content.Client/UserInterface/Systems/Admin/AdminUIController.cs @@ -13,6 +13,7 @@ using JetBrains.Annotations; using Robust.Client.Console; using Robust.Client.Input; +using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controllers; using Robust.Client.UserInterface.Controls; using Robust.Shared.Input; @@ -97,8 +98,8 @@ private void EnsureWindow() if (_panicBunker != null) _window.PanicBunkerControl.UpdateStatus(_panicBunker); - _window.PlayerTabControl.OnEntryPressed += PlayerTabEntryPressed; - _window.ObjectsTabControl.OnEntryPressed += ObjectsTabEntryPressed; + _window.PlayerTabControl.OnEntryKeyBindDown += PlayerTabEntryKeyBindDown; + _window.ObjectsTabControl.OnEntryKeyBindDown += ObjectsTabEntryKeyBindDown; _window.OnOpen += OnWindowOpen; _window.OnClose += OnWindowClosed; _window.OnDisposed += OnWindowDisposed; @@ -144,8 +145,8 @@ private void OnWindowDisposed() if (_window == null) return; - _window.PlayerTabControl.OnEntryPressed -= PlayerTabEntryPressed; - _window.ObjectsTabControl.OnEntryPressed -= ObjectsTabEntryPressed; + _window.PlayerTabControl.OnEntryKeyBindDown -= PlayerTabEntryKeyBindDown; + _window.ObjectsTabControl.OnEntryKeyBindDown -= ObjectsTabEntryKeyBindDown; _window.OnOpen -= OnWindowOpen; _window.OnClose -= OnWindowClosed; _window.OnDisposed -= OnWindowDisposed; @@ -175,32 +176,28 @@ private void Toggle() } } - private void PlayerTabEntryPressed(ButtonEventArgs args) + private void PlayerTabEntryKeyBindDown(PlayerTabEntry entry, GUIBoundKeyEventArgs args) { - if (args.Button is not PlayerTabEntry button - || button.PlayerEntity == null) + if (entry.PlayerEntity == null) return; - var entity = button.PlayerEntity.Value; - var function = args.Event.Function; + var entity = entry.PlayerEntity.Value; + var function = args.Function; if (function == EngineKeyFunctions.UIClick) _conHost.ExecuteCommand($"vv {entity}"); - else if (function == EngineKeyFunctions.UseSecondary) - _verb.OpenVerbMenu(EntityManager.GetEntity(entity), true); + else if (function == EngineKeyFunctions.UIRightClick) + _verb.OpenVerbMenu(entity, true); else return; - args.Event.Handle(); + args.Handle(); } - private void ObjectsTabEntryPressed(ButtonEventArgs args) + private void ObjectsTabEntryKeyBindDown(ObjectsTabEntry entry, GUIBoundKeyEventArgs args) { - if (args.Button is not ObjectsTabEntry button) - return; - - var uid = button.AssocEntity; - var function = args.Event.Function; + var uid = entry.AssocEntity; + var function = args.Function; if (function == EngineKeyFunctions.UIClick) _conHost.ExecuteCommand($"vv {uid}"); @@ -209,6 +206,6 @@ private void ObjectsTabEntryPressed(ButtonEventArgs args) else return; - args.Event.Handle(); + args.Handle(); } } diff --git a/Content.Client/UserInterface/Systems/Bwoink/AHelpUIController.cs b/Content.Client/UserInterface/Systems/Bwoink/AHelpUIController.cs index 87d4b8072f..43789bb228 100644 --- a/Content.Client/UserInterface/Systems/Bwoink/AHelpUIController.cs +++ b/Content.Client/UserInterface/Systems/Bwoink/AHelpUIController.cs @@ -11,15 +11,17 @@ using Content.Client.UserInterface.Controls; using Content.Client.UserInterface.Systems.MenuBar.Widgets; using Content.Shared.Administration; +using Content.Shared.CCVar; using Content.Shared.Input; using JetBrains.Annotations; +using Robust.Client.Audio; using Robust.Client.Graphics; using Robust.Client.Player; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controllers; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.CustomControls; -using Robust.Shared.Audio; +using Robust.Shared.Configuration; using Robust.Shared.Input.Binding; using Robust.Shared.Network; using Robust.Shared.Player; @@ -31,9 +33,11 @@ namespace Content.Client.UserInterface.Systems.Bwoink; public sealed class AHelpUIController: UIController, IOnSystemChanged, IOnStateChanged, IOnStateChanged { [Dependency] private readonly IClientAdminManager _adminManager = default!; + [Dependency] private readonly IConfigurationManager _config = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IClyde _clyde = default!; [Dependency] private readonly IUserInterfaceManager _uiManager = default!; + [UISystemDependency] private readonly AudioSystem _audio = default!; private BwoinkSystem? _bwoinkSystem; private MenuButton? GameAHelpButton => UIManager.GetActiveUIWidgetOrNull()?.AHelpButton; @@ -41,6 +45,7 @@ public sealed class AHelpUIController: UIController, IOnSystemChanged(PeopleTypingUpdated); _adminManager.AdminStatusUpdated += OnAdminStatusUpdated; + _config.OnValueChanged(CCVars.AHelpSound, v => _aHelpSound = v, true); } public void UnloadButton() @@ -121,14 +127,15 @@ private void SetAHelpPressed(bool pressed) private void ReceivedBwoink(object? sender, SharedBwoinkSystem.BwoinkTextMessage message) { Logger.InfoS("c.s.go.es.bwoink", $"@{message.UserId}: {message.Text}"); - var localPlayer = _playerManager.LocalPlayer; + var localPlayer = _playerManager.LocalSession; if (localPlayer == null) { return; } if (localPlayer.UserId != message.TrueSender) { - SoundSystem.Play("/Audio/Effects/adminhelp.ogg", Filter.Local()); + if (_aHelpSound != null) + _audio.PlayGlobal(_aHelpSound, Filter.Local(), false); _clyde.RequestWindowAttention(); } diff --git a/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs b/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs index 24e3e90e1e..3d028531dc 100644 --- a/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs +++ b/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs @@ -384,19 +384,13 @@ private void AddSpeechBubble(ChatMessage msg, SpeechBubble.SpeechType speechType return; } - // msg.Message should be the string that a user sent over text, without any added markup. - var messages = SplitMessage(msg.Message); - - foreach (var message in messages) - { - EnqueueSpeechBubble(ent, message, speechType); - } + EnqueueSpeechBubble(ent, msg, speechType); } private void CreateSpeechBubble(EntityUid entity, SpeechBubbleData speechData) { var bubble = - SpeechBubble.CreateSpeechBubble(speechData.Type, speechData.Message, entity, _eye, _manager, EntityManager); + SpeechBubble.CreateSpeechBubble(speechData.Type, speechData.Message, entity); bubble.OnDied += SpeechBubbleDied; @@ -430,7 +424,7 @@ private void SpeechBubbleDied(EntityUid entity, SpeechBubble bubble) RemoveSpeechBubble(entity, bubble); } - private void EnqueueSpeechBubble(EntityUid entity, string contents, SpeechBubble.SpeechType speechType) + private void EnqueueSpeechBubble(EntityUid entity, ChatMessage message, SpeechBubble.SpeechType speechType) { // Don't enqueue speech bubbles for other maps. TODO: Support multiple viewports/maps? if (EntityManager.GetComponent(entity).MapID != _eye.CurrentMap) @@ -442,7 +436,7 @@ private void EnqueueSpeechBubble(EntityUid entity, string contents, SpeechBubble _queuedSpeechBubbles.Add(entity, queueData); } - queueData.MessageQueue.Enqueue(new SpeechBubbleData(contents, speechType)); + queueData.MessageQueue.Enqueue(new SpeechBubbleData(message, speechType)); } public void RemoveSpeechBubble(EntityUid entityUid, SpeechBubble bubble) @@ -579,7 +573,7 @@ private void UpdateQueuedSpeechBubbles(FrameEventArgs delta) var msg = queueData.MessageQueue.Dequeue(); - queueData.TimeLeft += BubbleDelayBase + msg.Message.Length * BubbleDelayFactor; + queueData.TimeLeft += BubbleDelayBase + msg.Message.Message.Length * BubbleDelayFactor; // We keep the queue around while it has 0 items. This allows us to keep the timer. // When the timer hits 0 and there's no messages left, THEN we can clear it up. @@ -632,52 +626,6 @@ private void SetBubbles(List bubbles, bool visible) } } - private List SplitMessage(string msg) - { - // Split message into words separated by spaces. - var words = msg.Split(' '); - var messages = new List(); - var currentBuffer = new List(); - - // Really shoddy way to approximate word length. - // Yes, I am aware of all the crimes here. - // TODO: Improve this to use actual glyph width etc.. - var currentWordLength = 0; - foreach (var word in words) - { - // +1 for the space. - currentWordLength += word.Length + 1; - - if (currentWordLength > SingleBubbleCharLimit) - { - // Too long for the current speech bubble, flush it. - messages.Add(string.Join(" ", currentBuffer)); - currentBuffer.Clear(); - - currentWordLength = word.Length; - - if (currentWordLength > SingleBubbleCharLimit) - { - // Word is STILL too long. - // Truncate it with an ellipse. - messages.Add($"{word.Substring(0, SingleBubbleCharLimit - 3)}..."); - currentWordLength = 0; - continue; - } - } - - currentBuffer.Add(word); - } - - if (currentBuffer.Count != 0) - { - // Don't forget the last bubble. - messages.Add(string.Join(" ", currentBuffer)); - } - - return messages; - } - public ChatSelectChannel MapLocalIfGhost(ChatSelectChannel channel) { if (channel == ChatSelectChannel.Local && _ghost is {IsGhost: true}) @@ -772,21 +720,28 @@ public void SendMessage(ChatBox box, ChatSelectChannel channel) private void OnDamageForceSay(DamageForceSayEvent ev, EntitySessionEventArgs _) { - if (UIManager.ActiveScreen?.GetWidget() is not { } chatBox) + var chatBox = UIManager.ActiveScreen?.GetWidget() ?? UIManager.ActiveScreen?.GetWidget(); + if (chatBox == null) return; + var msg = chatBox.ChatInput.Input.Text.TrimEnd(); // Don't send on OOC/LOOC obviously! - if (chatBox.SelectedChannel is not - (ChatSelectChannel.Local or - ChatSelectChannel.Radio or - ChatSelectChannel.Whisper)) + + // we need to handle selected channel + // and prefix-channel separately.. + var allowedChannels = ChatSelectChannel.Local | ChatSelectChannel.Whisper; + if ((chatBox.SelectedChannel & allowedChannels) == ChatSelectChannel.None) return; - if (_player.LocalPlayer?.ControlledEntity is not { } ent - || !EntityManager.TryGetComponent(ent, out var forceSay)) + // none can be returned from this if theres no prefix, + // so we allow it in that case (assuming the previous check will have exited already if its an invalid channel) + var prefixChannel = SplitInputContents(msg).chatChannel; + if (prefixChannel != ChatSelectChannel.None && (prefixChannel & allowedChannels) == ChatSelectChannel.None) return; - var msg = chatBox.ChatInput.Input.Text.TrimEnd(); + if (_player.LocalSession?.AttachedEntity is not { } ent + || !EntityManager.TryGetComponent(ent, out var forceSay)) + return; if (string.IsNullOrWhiteSpace(msg)) return; @@ -857,6 +812,11 @@ public void ProcessChatMessage(ChatMessage msg, bool speechBubble = true) case ChatChannel.Emotes: AddSpeechBubble(msg, SpeechBubble.SpeechType.Emote); break; + + case ChatChannel.LOOC: + if (_cfg.GetCVar(CCVars.LoocAboveHeadShow)) + AddSpeechBubble(msg, SpeechBubble.SpeechType.Looc); + break; } } @@ -898,7 +858,7 @@ public void Repopulate() } } - private readonly record struct SpeechBubbleData(string Message, SpeechBubble.SpeechType Type); + private readonly record struct SpeechBubbleData(ChatMessage Message, SpeechBubble.SpeechType Type); private sealed class SpeechBubbleQueueData { diff --git a/Content.Client/UserInterface/Systems/Chat/Controls/ChannelFilterButton.cs b/Content.Client/UserInterface/Systems/Chat/Controls/ChannelFilterButton.cs index d19f167587..c5b810ced3 100644 --- a/Content.Client/UserInterface/Systems/Chat/Controls/ChannelFilterButton.cs +++ b/Content.Client/UserInterface/Systems/Chat/Controls/ChannelFilterButton.cs @@ -1,20 +1,18 @@ using System.Numerics; using Content.Client.Resources; using Robust.Client.ResourceManagement; -using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; -using Robust.Shared.Input; namespace Content.Client.UserInterface.Systems.Chat.Controls; -public sealed class ChannelFilterButton : ContainerButton +public sealed class ChannelFilterButton : ChatPopupButton { private static readonly Color ColorNormal = Color.FromHex("#7b7e9e"); private static readonly Color ColorHovered = Color.FromHex("#9699bb"); private static readonly Color ColorPressed = Color.FromHex("#789B8C"); private readonly TextureRect? _textureRect; - public readonly ChannelFilterPopup ChatFilterPopup; private readonly ChatUIController _chatUIController; + private const int FilterDropdownOffset = 120; public ChannelFilterButton() @@ -23,10 +21,6 @@ public ChannelFilterButton() var filterTexture = IoCManager.Resolve() .GetTexture("/Textures/Interface/Nano/filter.svg.96dpi.png"); - // needed for same reason as ChannelSelectorButton - Mode = ActionMode.Press; - EnableAllKeybinds = true; - AddChild( (_textureRect = new TextureRect { @@ -35,42 +29,19 @@ public ChannelFilterButton() VerticalAlignment = VAlignment.Center }) ); - ToggleMode = true; - OnToggled += OnFilterButtonToggled; - ChatFilterPopup = UserInterfaceManager.CreatePopup(); - ChatFilterPopup.OnVisibilityChanged += PopupVisibilityChanged; - - _chatUIController.FilterableChannelsChanged += ChatFilterPopup.SetChannels; - _chatUIController.UnreadMessageCountsUpdated += ChatFilterPopup.UpdateUnread; - ChatFilterPopup.SetChannels(_chatUIController.FilterableChannels); - } - - private void PopupVisibilityChanged(Control control) - { - Pressed = control.Visible; - } - private void OnFilterButtonToggled(ButtonToggledEventArgs args) - { - if (args.Pressed) - { - var globalPos = GlobalPosition; - var (minX, minY) = ChatFilterPopup.MinSize; - var box = UIBox2.FromDimensions(globalPos - new Vector2(FilterDropdownOffset, 0), - new Vector2(Math.Max(minX, ChatFilterPopup.MinWidth), minY)); - ChatFilterPopup.Open(box); - } - else - { - ChatFilterPopup.Close(); - } + _chatUIController.FilterableChannelsChanged += Popup.SetChannels; + _chatUIController.UnreadMessageCountsUpdated += Popup.UpdateUnread; + Popup.SetChannels(_chatUIController.FilterableChannels); } - protected override void KeyBindDown(GUIBoundKeyEventArgs args) + protected override UIBox2 GetPopupPosition() { - // needed since we need EnableAllKeybinds - don't double-send both UI click and Use - if (args.Function == EngineKeyFunctions.Use) return; - base.KeyBindDown(args); + var globalPos = GlobalPosition; + var (minX, minY) = Popup.MinSize; + return UIBox2.FromDimensions( + globalPos - new Vector2(FilterDropdownOffset, 0), + new Vector2(Math.Max(minX, Popup.MinWidth), minY)); } private void UpdateChildColors() @@ -114,7 +85,7 @@ protected override void Dispose(bool disposing) if (!disposing) return; - _chatUIController.FilterableChannelsChanged -= ChatFilterPopup.SetChannels; - _chatUIController.UnreadMessageCountsUpdated -= ChatFilterPopup.UpdateUnread; + _chatUIController.FilterableChannelsChanged -= Popup.SetChannels; + _chatUIController.UnreadMessageCountsUpdated -= Popup.UpdateUnread; } } diff --git a/Content.Client/UserInterface/Systems/Chat/Controls/ChannelSelectorButton.cs b/Content.Client/UserInterface/Systems/Chat/Controls/ChannelSelectorButton.cs index e28cd2bd44..041d8075e3 100644 --- a/Content.Client/UserInterface/Systems/Chat/Controls/ChannelSelectorButton.cs +++ b/Content.Client/UserInterface/Systems/Chat/Controls/ChannelSelectorButton.cs @@ -1,18 +1,10 @@ using System.Numerics; using Content.Shared.Chat; -using Robust.Client.UserInterface; -using Robust.Client.UserInterface.Controls; -using Robust.Shared.Input; namespace Content.Client.UserInterface.Systems.Chat.Controls; -/// -/// Only needed to avoid the issue where right click on the button closes the popup -/// but leaves the button highlighted. -/// -public sealed class ChannelSelectorButton : Button +public sealed class ChannelSelectorButton : ChatPopupButton { - private readonly ChannelSelectorPopup _channelSelectorPopup; public event Action? OnChannelSelect; public ChatSelectChannel SelectedChannel { get; private set; } @@ -21,49 +13,39 @@ public sealed class ChannelSelectorButton : Button public ChannelSelectorButton() { - // needed so the popup is untoggled regardless of which key is pressed when hovering this button. - // If we don't have this, then right clicking the button while it's toggled on will hide - // the popup but keep the button toggled on Name = "ChannelSelector"; - Mode = ActionMode.Press; - EnableAllKeybinds = true; - ToggleMode = true; - OnToggled += OnSelectorButtonToggled; - _channelSelectorPopup = UserInterfaceManager.CreatePopup(); - _channelSelectorPopup.Selected += OnChannelSelected; - _channelSelectorPopup.OnVisibilityChanged += OnPopupVisibilityChanged; - if (_channelSelectorPopup.FirstChannel is { } firstSelector) + Popup.Selected += OnChannelSelected; + + if (Popup.FirstChannel is { } firstSelector) { Select(firstSelector); } } - private void OnChannelSelected(ChatSelectChannel channel) - { - Select(channel); - } - - private void OnPopupVisibilityChanged(Control control) + protected override UIBox2 GetPopupPosition() { - Pressed = control.Visible; + var globalLeft = GlobalPosition.X; + var globalBot = GlobalPosition.Y + Height; + return UIBox2.FromDimensions( + new Vector2(globalLeft, globalBot), + new Vector2(SizeBox.Width, SelectorDropdownOffset)); } - protected override void KeyBindDown(GUIBoundKeyEventArgs args) + private void OnChannelSelected(ChatSelectChannel channel) { - // needed since we need EnableAllKeybinds - don't double-send both UI click and Use - if (args.Function == EngineKeyFunctions.Use) return; - base.KeyBindDown(args); + Select(channel); } public void Select(ChatSelectChannel channel) { - if (_channelSelectorPopup.Visible) + if (Popup.Visible) { - _channelSelectorPopup.Close(); + Popup.Close(); } - if (SelectedChannel == channel) return; + if (SelectedChannel == channel) + return; SelectedChannel = channel; OnChannelSelect?.Invoke(channel); } @@ -92,19 +74,4 @@ public void UpdateChannelSelectButton(ChatSelectChannel channel, Shared.Radio.Ra Text = radio != null ? Loc.GetString(radio.Name) : ChannelSelectorName(channel); Modulate = radio?.Color ?? ChannelSelectColor(channel); } - - private void OnSelectorButtonToggled(ButtonToggledEventArgs args) - { - if (args.Pressed) - { - var globalLeft = GlobalPosition.X; - var globalBot = GlobalPosition.Y + Height; - var box = UIBox2.FromDimensions(new Vector2(globalLeft, globalBot), new Vector2(SizeBox.Width, SelectorDropdownOffset)); - _channelSelectorPopup.Open(box); - } - else - { - _channelSelectorPopup.Close(); - } - } } diff --git a/Content.Client/UserInterface/Systems/Chat/Controls/ChatInputBox.cs b/Content.Client/UserInterface/Systems/Chat/Controls/ChatInputBox.cs index 22d50f93ff..843fd46c1a 100644 --- a/Content.Client/UserInterface/Systems/Chat/Controls/ChatInputBox.cs +++ b/Content.Client/UserInterface/Systems/Chat/Controls/ChatInputBox.cs @@ -33,7 +33,7 @@ public ChatInputBox() Input = new HistoryLineEdit { Name = "Input", - PlaceHolder = Loc.GetString("hud-chatbox-info", ("talk-key", BoundKeyHelper.ShortKeyName(ContentKeyFunctions.FocusChat)), ("cycle-key", BoundKeyHelper.ShortKeyName(ContentKeyFunctions.CycleChatChannelForward))), + PlaceHolder = GetChatboxInfoPlaceholder(), HorizontalExpand = true, StyleClasses = {"chatLineEdit"} }; @@ -51,4 +51,15 @@ private void UpdateActiveChannel(ChatSelectChannel selectedChannel) { ActiveChannel = (ChatChannel) selectedChannel; } + + private static string GetChatboxInfoPlaceholder() + { + return (BoundKeyHelper.IsBound(ContentKeyFunctions.FocusChat), BoundKeyHelper.IsBound(ContentKeyFunctions.CycleChatChannelForward)) switch + { + (true, true) => Loc.GetString("hud-chatbox-info", ("talk-key", BoundKeyHelper.ShortKeyName(ContentKeyFunctions.FocusChat)), ("cycle-key", BoundKeyHelper.ShortKeyName(ContentKeyFunctions.CycleChatChannelForward))), + (true, false) => Loc.GetString("hud-chatbox-info-talk", ("talk-key", BoundKeyHelper.ShortKeyName(ContentKeyFunctions.FocusChat))), + (false, true) => Loc.GetString("hud-chatbox-info-cycle", ("cycle-key", BoundKeyHelper.ShortKeyName(ContentKeyFunctions.CycleChatChannelForward))), + (false, false) => Loc.GetString("hud-chatbox-info-unbound") + }; + } } diff --git a/Content.Client/UserInterface/Systems/Chat/Controls/ChatPopupButton.cs b/Content.Client/UserInterface/Systems/Chat/Controls/ChatPopupButton.cs new file mode 100644 index 0000000000..e284eda2b6 --- /dev/null +++ b/Content.Client/UserInterface/Systems/Chat/Controls/ChatPopupButton.cs @@ -0,0 +1,70 @@ +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; +using Robust.Shared.Timing; + +namespace Content.Client.UserInterface.Systems.Chat.Controls; + +// NO MORE FUCKING COPY PASTING THIS SHIT + +/// +/// Base class for button that toggles a popup-window. +/// Base type of and . +/// +public abstract class ChatPopupButton : Button + where TPopup : Popup, new() +{ + private readonly IGameTiming _gameTiming; + + public readonly TPopup Popup; + + private uint _frameLastPopupChanged; + + protected ChatPopupButton() + { + _gameTiming = IoCManager.Resolve(); + + ToggleMode = true; + OnToggled += OnButtonToggled; + + Popup = UserInterfaceManager.CreatePopup(); + Popup.OnVisibilityChanged += OnPopupVisibilityChanged; + } + + protected override void KeyBindDown(GUIBoundKeyEventArgs args) + { + // If you try to close the popup by clicking on the button again the following would happen: + // The UI system would see that you clicked outside a popup, and would close it. + // Because of the above logic, that sets the button to UNPRESSED. + // THEN, it would propagate the keyboard event to us, the chat selector... + // And we would become pressed again. + // As a workaround, we check the frame the popup was last dismissed (above) + // and don't allow changing it again this frame. + if (_frameLastPopupChanged == _gameTiming.CurFrame) + return; + + base.KeyBindDown(args); + } + + protected abstract UIBox2 GetPopupPosition(); + + private void OnButtonToggled(ButtonToggledEventArgs args) + { + if (args.Pressed) + { + Popup.Open(GetPopupPosition()); + } + else + { + Popup.Close(); + } + } + + private void OnPopupVisibilityChanged(Control control) + { + // If the popup gets closed (e.g. by clicking anywhere else on the screen) + // We clear the button pressed state. + + Pressed = control.Visible; + _frameLastPopupChanged = _gameTiming.CurFrame; + } +} diff --git a/Content.Client/UserInterface/Systems/Chat/Widgets/ChatBox.xaml.cs b/Content.Client/UserInterface/Systems/Chat/Widgets/ChatBox.xaml.cs index 56c0c28634..936e7cdecd 100644 --- a/Content.Client/UserInterface/Systems/Chat/Widgets/ChatBox.xaml.cs +++ b/Content.Client/UserInterface/Systems/Chat/Widgets/ChatBox.xaml.cs @@ -1,7 +1,9 @@ using Content.Client.UserInterface.Systems.Chat.Controls; using Content.Shared.Chat; using Content.Shared.Input; +using Robust.Client.Audio; using Robust.Client.AutoGenerated; +using Robust.Client.GameObjects; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; @@ -19,6 +21,7 @@ public partial class ChatBox : UIWidget #pragma warning restore RA0003 { private readonly ChatUIController _controller; + private readonly IEntityManager _entManager; public bool Main { get; set; } @@ -27,12 +30,13 @@ public partial class ChatBox : UIWidget public ChatBox() { RobustXamlLoader.Load(this); + _entManager = IoCManager.Resolve(); ChatInput.Input.OnTextEntered += OnTextEntered; ChatInput.Input.OnKeyBindDown += OnKeyBindDown; ChatInput.Input.OnTextChanged += OnTextChanged; ChatInput.ChannelSelector.OnChannelSelect += OnChannelSelect; - ChatInput.FilterButton.ChatFilterPopup.OnChannelFilter += OnChannelFilter; + ChatInput.FilterButton.Popup.OnChannelFilter += OnChannelFilter; _controller = UserInterfaceManager.GetUIController(); _controller.MessageAdded += OnMessageAdded; @@ -47,13 +51,13 @@ private void OnTextEntered(LineEditEventArgs args) private void OnMessageAdded(ChatMessage msg) { Logger.DebugS("chat", $"{msg.Channel}: {msg.Message}"); - if (!ChatInput.FilterButton.ChatFilterPopup.IsActive(msg.Channel)) + if (!ChatInput.FilterButton.Popup.IsActive(msg.Channel)) { return; } - if (msg is { Read: false, AudioPath: not null }) - SoundSystem.Play(msg.AudioPath, Filter.Local(), new AudioParams().WithVolume(msg.AudioVolume)); + if (msg is { Read: false, AudioPath: { } }) + _entManager.System().PlayGlobal(msg.AudioPath, Filter.Local(), false, AudioParams.Default.WithVolume(msg.AudioVolume)); msg.Read = true; diff --git a/Content.Client/UserInterface/Systems/DamageOverlays/DamageOverlayUiController.cs b/Content.Client/UserInterface/Systems/DamageOverlays/DamageOverlayUiController.cs index ba4a871199..0485ea5dff 100644 --- a/Content.Client/UserInterface/Systems/DamageOverlays/DamageOverlayUiController.cs +++ b/Content.Client/UserInterface/Systems/DamageOverlays/DamageOverlayUiController.cs @@ -8,6 +8,7 @@ using Robust.Client.Player; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controllers; +using Robust.Shared.Player; namespace Content.Client.UserInterface.Systems.DamageOverlays; diff --git a/Content.Client/UserInterface/Systems/DecalPlacer/DecalPlacerUIController.cs b/Content.Client/UserInterface/Systems/DecalPlacer/DecalPlacerUIController.cs index 5f1914a462..f1b611ac5a 100644 --- a/Content.Client/UserInterface/Systems/DecalPlacer/DecalPlacerUIController.cs +++ b/Content.Client/UserInterface/Systems/DecalPlacer/DecalPlacerUIController.cs @@ -53,7 +53,8 @@ public void OnSystemUnloaded(SandboxSystem system) private void OnPrototypesReloaded(PrototypesReloadedEventArgs obj) { - ReloadPrototypes(); + if (obj.WasModified()) + ReloadPrototypes(); } private void ReloadPrototypes() diff --git a/Content.Client/VendingMachines/UI/VendingMachineMenu.xaml b/Content.Client/VendingMachines/UI/VendingMachineMenu.xaml index abc7252e40..a990c4eff6 100644 --- a/Content.Client/VendingMachines/UI/VendingMachineMenu.xaml +++ b/Content.Client/VendingMachines/UI/VendingMachineMenu.xaml @@ -1,9 +1,10 @@ - + + VerticalExpand="True" + SelectMode="Button"> diff --git a/Content.Client/Verbs/UI/VerbMenuElement.cs b/Content.Client/Verbs/UI/VerbMenuElement.cs index 5997a97384..1815144f7d 100644 --- a/Content.Client/Verbs/UI/VerbMenuElement.cs +++ b/Content.Client/Verbs/UI/VerbMenuElement.cs @@ -33,11 +33,14 @@ public VerbMenuElement(Verb verb) : base(verb.Text) Label.SetOnlyStyleClass(verb.TextStyleClass); + // There are no confirmations in debug fam. +#if !DEBUG if (verb.ConfirmationPopup) { ExpansionIndicator.SetOnlyStyleClass(StyleClassVerbMenuConfirmationTexture); ExpansionIndicator.Visible = true; } +#endif var entManager = IoCManager.Resolve(); diff --git a/Content.Client/Verbs/UI/VerbMenuUIController.cs b/Content.Client/Verbs/UI/VerbMenuUIController.cs index 6347564ec8..165b55131a 100644 --- a/Content.Client/Verbs/UI/VerbMenuUIController.cs +++ b/Content.Client/Verbs/UI/VerbMenuUIController.cs @@ -9,6 +9,7 @@ using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controllers; using Robust.Shared.Input; +using Robust.Shared.Utility; namespace Content.Client.Verbs.UI { @@ -29,7 +30,7 @@ public sealed class VerbMenuUIController : UIController, IOnStateEntered CurrentVerbs = new(); /// @@ -64,8 +65,25 @@ public void OnStateExited(GameplayState state) /// public void OpenVerbMenu(EntityUid target, bool force = false, ContextMenuPopup? popup=null) { - if (_playerManager.LocalPlayer?.ControlledEntity is not {Valid: true} user || - _combatMode.IsInCombatMode(user)) + DebugTools.Assert(target.IsValid()); + OpenVerbMenu(EntityManager.GetNetEntity(target), force, popup); + } + + /// + /// Open a verb menu and fill it with verbs applicable to the given target entity. + /// + /// Entity to get verbs on. + /// Used to force showing all verbs. Only works on networked entities if the user is an admin. + /// + /// If this is not null, verbs will be placed into the given popup instead. + /// + public void OpenVerbMenu(NetEntity target, bool force = false, ContextMenuPopup? popup=null) + { + DebugTools.Assert(target.IsValid()); + if (_playerManager.LocalEntity is not {Valid: true} user) + return; + + if (!force && _combatMode.IsInCombatMode(user)) return; Close(); @@ -82,7 +100,7 @@ public void OpenVerbMenu(EntityUid target, bool force = false, ContextMenuPopup? // Add indicator that some verbs may be missing. // I long for the day when verbs will all be predicted and this becomes unnecessary. - if (!EntityManager.IsClientSide(target)) + if (!target.IsClientSide()) { _context.AddElement(menu, new ContextMenuElement(Loc.GetString("verb-system-waiting-on-server-text"))); } @@ -248,7 +266,7 @@ private void Close() private void HandleVerbsResponse(VerbsResponseEvent msg) { - if (OpenMenu == null || !OpenMenu.Visible || CurrentTarget != EntityManager.GetEntity(msg.Entity)) + if (OpenMenu == null || !OpenMenu.Visible || CurrentTarget != msg.Entity) return; AddServerVerbs(msg.Verbs, OpenMenu); diff --git a/Content.Client/Verbs/VerbSystem.cs b/Content.Client/Verbs/VerbSystem.cs index e71da351b9..34634482c6 100644 --- a/Content.Client/Verbs/VerbSystem.cs +++ b/Content.Client/Verbs/VerbSystem.cs @@ -170,28 +170,27 @@ public bool TryGetEntityMenuEntities(MapCoordinates targetPos, [NotNullWhen(true /// public SortedSet GetVerbs(EntityUid target, EntityUid user, Type type, bool force = false) { - return GetVerbs(target, user, new List() { type }, force); + return GetVerbs(GetNetEntity(target), user, new List() { type }, force); } /// /// Ask the server to send back a list of server-side verbs, and for now return an incomplete list of verbs /// (only those defined locally). /// - public SortedSet GetVerbs(EntityUid target, EntityUid user, List verbTypes, + public SortedSet GetVerbs(NetEntity target, EntityUid user, List verbTypes, bool force = false) { - if (!IsClientSide(target)) - { - RaiseNetworkEvent(new RequestServerVerbsEvent(GetNetEntity(target), verbTypes, adminRequest: force)); - } + if (!target.IsClientSide()) + RaiseNetworkEvent(new RequestServerVerbsEvent(target, verbTypes, adminRequest: force)); // Some admin menu interactions will try get verbs for entities that have not yet been sent to the player. - if (!Exists(target)) + if (!TryGetEntity(target, out var local)) return new(); - return GetLocalVerbs(target, user, verbTypes, force); + return GetLocalVerbs(local.Value, user, verbTypes, force); } + /// /// Execute actions associated with the given verb. /// @@ -200,8 +199,18 @@ public SortedSet GetVerbs(EntityUid target, EntityUid user, List ver /// public void ExecuteVerb(EntityUid target, Verb verb) { - var user = _playerManager.LocalPlayer?.ControlledEntity; - if (user == null) + ExecuteVerb(GetNetEntity(target), verb); + } + + /// + /// Execute actions associated with the given verb. + /// + /// + /// Unless this is a client-exclusive verb, this will also tell the server to run the same verb. + /// + public void ExecuteVerb(NetEntity target, Verb verb) + { + if ( _playerManager.LocalEntity is not {} user) return; // is this verb actually valid? @@ -209,16 +218,16 @@ public void ExecuteVerb(EntityUid target, Verb verb) { // maybe send an informative pop-up message. if (!string.IsNullOrWhiteSpace(verb.Message)) - _popupSystem.PopupEntity(verb.Message, user.Value); + _popupSystem.PopupEntity(verb.Message, user); return; } - if (verb.ClientExclusive || IsClientSide(target)) + if (verb.ClientExclusive || target.IsClientSide()) // is this a client exclusive (gui) verb? - ExecuteVerb(verb, user.Value, target); + ExecuteVerb(verb, user, GetEntity(target)); else - EntityManager.RaisePredictiveEvent(new ExecuteVerbEvent(GetNetEntity(target), verb)); + EntityManager.RaisePredictiveEvent(new ExecuteVerbEvent(target, verb)); } private void HandleVerbResponse(VerbsResponseEvent msg) diff --git a/Content.Client/Voting/VoteManager.cs b/Content.Client/Voting/VoteManager.cs index 3220f2bdb2..63c706c86b 100644 --- a/Content.Client/Voting/VoteManager.cs +++ b/Content.Client/Voting/VoteManager.cs @@ -3,6 +3,7 @@ using System.Linq; using Content.Shared.Voting; using Robust.Client; +using Robust.Client.Audio; using Robust.Client.Console; using Robust.Client.GameObjects; using Robust.Client.UserInterface; diff --git a/Content.Client/Weapons/Ranged/Systems/FlyBySoundSystem.cs b/Content.Client/Weapons/Ranged/Systems/FlyBySoundSystem.cs index 4e4df4a156..565672ad38 100644 --- a/Content.Client/Weapons/Ranged/Systems/FlyBySoundSystem.cs +++ b/Content.Client/Weapons/Ranged/Systems/FlyBySoundSystem.cs @@ -2,6 +2,8 @@ using Content.Shared.Weapons.Ranged.Components; using Content.Shared.Weapons.Ranged.Systems; using Robust.Client.Player; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Physics.Events; using Robust.Shared.Player; using Robust.Shared.Random; diff --git a/Content.Client/Weather/WeatherOverlay.cs b/Content.Client/Weather/WeatherOverlay.cs deleted file mode 100644 index 12af31b863..0000000000 --- a/Content.Client/Weather/WeatherOverlay.cs +++ /dev/null @@ -1,218 +0,0 @@ -using System.Linq; -using System.Numerics; -using Content.Client.Parallax; -using Content.Shared.Weather; -using Robust.Client.GameObjects; -using Robust.Client.Graphics; -using Robust.Client.ResourceManagement; -using Robust.Client.Utility; -using Robust.Shared.Enums; -using Robust.Shared.Graphics.RSI; -using Robust.Shared.Map; -using Robust.Shared.Map.Components; -using Robust.Shared.Physics.Components; -using Robust.Shared.Prototypes; -using Robust.Shared.Timing; -using Robust.Shared.Utility; - -namespace Content.Client.Weather; - -public sealed class WeatherOverlay : Overlay -{ - [Dependency] private readonly IClyde _clyde = default!; - [Dependency] private readonly IEntityManager _entManager = default!; - [Dependency] private readonly IGameTiming _timing = default!; - [Dependency] private readonly IMapManager _mapManager = default!; - [Dependency] private readonly IPrototypeManager _protoManager = default!; - [Dependency] private readonly IResourceCache _cache = default!; - private readonly SharedTransformSystem _transform; - private readonly SpriteSystem _sprite; - private readonly WeatherSystem _weather; - - public override OverlaySpace Space => OverlaySpace.WorldSpaceBelowFOV; - - private IRenderTexture? _blep; - - public WeatherOverlay(SharedTransformSystem transform, SpriteSystem sprite, WeatherSystem weather) - { - ZIndex = ParallaxSystem.ParallaxZIndex + 1; - _transform = transform; - _weather = weather; - _sprite = sprite; - IoCManager.InjectDependencies(this); - } - - protected override bool BeforeDraw(in OverlayDrawArgs args) - { - if (args.MapId == MapId.Nullspace) - return false; - - if (!_entManager.TryGetComponent(_mapManager.GetMapEntityId(args.MapId), out var weather) || - weather.Weather.Count == 0) - { - return false; - } - - return base.BeforeDraw(in args); - } - - protected override void Draw(in OverlayDrawArgs args) - { - var mapUid = _mapManager.GetMapEntityId(args.MapId); - - if (!_entManager.TryGetComponent(mapUid, out var comp)) - { - return; - } - - foreach (var (proto, weather) in comp.Weather) - { - if (!_protoManager.TryIndex(proto, out var weatherProto)) - continue; - - var alpha = _weather.GetPercent(weather, mapUid); - DrawWorld(args, weatherProto, alpha); - } - } - - private void DrawWorld(in OverlayDrawArgs args, WeatherPrototype weatherProto, float alpha) - { - var worldHandle = args.WorldHandle; - var mapId = args.MapId; - var worldAABB = args.WorldAABB; - var worldBounds = args.WorldBounds; - var invMatrix = args.Viewport.GetWorldToLocalMatrix(); - var position = args.Viewport.Eye?.Position.Position ?? Vector2.Zero; - - if (_blep?.Texture.Size != args.Viewport.Size) - { - _blep?.Dispose(); - _blep = _clyde.CreateRenderTarget(args.Viewport.Size, new RenderTargetFormatParameters(RenderTargetColorFormat.Rgba8Srgb), name: "weather-stencil"); - } - - // Cut out the irrelevant bits via stencil - // This is why we don't just use parallax; we might want specific tiles to get drawn over - // particularly for planet maps or stations. - worldHandle.RenderInRenderTarget(_blep, () => - { - var bodyQuery = _entManager.GetEntityQuery(); - var xformQuery = _entManager.GetEntityQuery(); - var weatherIgnoreQuery = _entManager.GetEntityQuery(); - - // idk if this is safe to cache in a field and clear sloth help - var grids = new List>(); - _mapManager.FindGridsIntersecting(mapId, worldAABB, ref grids); - - foreach (var grid in grids) - { - var matrix = _transform.GetWorldMatrix(grid, xformQuery); - Matrix3.Multiply(in matrix, in invMatrix, out var matty); - worldHandle.SetTransform(matty); - - foreach (var tile in grid.Comp.GetTilesIntersecting(worldAABB)) - { - // Ignored tiles for stencil - if (_weather.CanWeatherAffect(grid, tile, weatherIgnoreQuery, bodyQuery)) - { - continue; - } - - var gridTile = new Box2(tile.GridIndices * grid.Comp.TileSize, - (tile.GridIndices + Vector2i.One) * grid.Comp.TileSize); - - worldHandle.DrawRect(gridTile, Color.White); - } - } - - }, Color.Transparent); - - worldHandle.SetTransform(Matrix3.Identity); - worldHandle.UseShader(_protoManager.Index("StencilMask").Instance()); - worldHandle.DrawTextureRect(_blep.Texture, worldBounds); - Texture? sprite = null; - var curTime = _timing.RealTime; - - switch (weatherProto.Sprite) - { - case SpriteSpecifier.Rsi rsi: - var rsiActual = _cache.GetResource(rsi.RsiPath).RSI; - rsiActual.TryGetState(rsi.RsiState, out var state); - var frames = state!.GetFrames(RsiDirection.South); - var delays = state.GetDelays(); - var totalDelay = delays.Sum(); - var time = curTime.TotalSeconds % totalDelay; - var delaySum = 0f; - - for (var i = 0; i < delays.Length; i++) - { - var delay = delays[i]; - delaySum += delay; - - if (time > delaySum) - continue; - - sprite = frames[i]; - break; - } - - sprite ??= _sprite.Frame0(weatherProto.Sprite); - break; - case SpriteSpecifier.Texture texture: - sprite = texture.GetTexture(_cache); - break; - default: - throw new NotImplementedException(); - } - - // Draw the rain - worldHandle.UseShader(_protoManager.Index("StencilDraw").Instance()); - - // TODO: This is very similar to parallax but we need stencil support but we can probably combine these somehow - // and not make it spaghetti, while getting the advantages of not-duped code? - - - // Okay I have spent like 5 hours on this at this point and afaict you have one of the following comprises: - // - No scrolling so the weather is always centered on the player - // - Crappy looking rotation but strafing looks okay and scrolls - // - Crappy looking strafing but rotation looks okay. - // - No rotation - // - Storing state across frames to do scrolling and just having it always do topdown. - - // I have chosen no rotation. - - const float scale = 1f; - const float slowness = 0f; - var scrolling = Vector2.Zero; - - // Size of the texture in world units. - var size = (sprite.Size / (float) EyeManager.PixelsPerMeter) * scale; - var scrolled = scrolling * (float) curTime.TotalSeconds; - - // Origin - start with the parallax shift itself. - var originBL = position * slowness + scrolled; - - // Centre the image. - originBL -= size / 2; - - // Remove offset so we can floor. - var flooredBL = args.WorldAABB.BottomLeft - originBL; - - // Floor to background size. - flooredBL = (flooredBL / size).Floored() * size; - - // Re-offset. - flooredBL += originBL; - - for (var x = flooredBL.X; x < args.WorldAABB.Right; x += size.X) - { - for (var y = flooredBL.Y; y < args.WorldAABB.Top; y += size.Y) - { - var box = Box2.FromDimensions(new Vector2(x, y), size); - worldHandle.DrawTextureRect(sprite, box, (weatherProto.Color ?? Color.White).WithAlpha(alpha)); - } - } - - worldHandle.SetTransform(Matrix3.Identity); - worldHandle.UseShader(null); - } -} diff --git a/Content.Client/Weather/WeatherSystem.cs b/Content.Client/Weather/WeatherSystem.cs index e1742f4790..a9c29f96c9 100644 --- a/Content.Client/Weather/WeatherSystem.cs +++ b/Content.Client/Weather/WeatherSystem.cs @@ -1,8 +1,11 @@ using System.Numerics; using Content.Shared.Weather; +using Robust.Client.Audio; using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.Player; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.GameStates; using Robust.Shared.Map; using Robust.Shared.Map.Components; @@ -10,39 +13,29 @@ using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; using Robust.Shared.Player; +using AudioComponent = Robust.Shared.Audio.Components.AudioComponent; namespace Content.Client.Weather; public sealed class WeatherSystem : SharedWeatherSystem { - [Dependency] private readonly IOverlayManager _overlayManager = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly AudioSystem _audio = default!; [Dependency] private readonly MapSystem _mapSystem = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; - private const float OcclusionLerpRate = 4f; - private const float AlphaLerpRate = 4f; - public override void Initialize() { base.Initialize(); - _overlayManager.AddOverlay(new WeatherOverlay(_transform, EntityManager.System(), this)); SubscribeLocalEvent(OnWeatherHandleState); } - public override void Shutdown() - { - base.Shutdown(); - _overlayManager.RemoveOverlay(); - } - protected override void Run(EntityUid uid, WeatherData weather, WeatherPrototype weatherProto, float frameTime) { base.Run(uid, weather, weatherProto, frameTime); - var ent = _playerManager.LocalPlayer?.ControlledEntity; + var ent = _playerManager.LocalEntity; if (ent == null) return; @@ -53,26 +46,18 @@ protected override void Run(EntityUid uid, WeatherData weather, WeatherPrototype // Maybe have the viewports manage this? if (mapUid == null || entXform.MapUid != mapUid) { - weather.LastOcclusion = 0f; - weather.LastAlpha = 0f; - weather.Stream?.Stop(); - weather.Stream = null; + weather.Stream = _audio.Stop(weather.Stream); return; } if (!Timing.IsFirstTimePredicted || weatherProto.Sound == null) return; - weather.Stream ??= _audio.PlayGlobal(weatherProto.Sound, Filter.Local(), true); - var volumeMod = MathF.Pow(10, weatherProto.Sound.Params.Volume / 10f); + weather.Stream ??= _audio.PlayGlobal(weatherProto.Sound, Filter.Local(), true).Value.Entity; - var stream = (AudioSystem.PlayingStream) weather.Stream!; - var alpha = weather.LastAlpha; - alpha = MathF.Pow(alpha, 2f) * volumeMod; - // TODO: Lerp this occlusion. + var stream = weather.Stream.Value; + var comp = Comp(stream); var occlusion = 0f; - // TODO: Fade-out needs to be slower - // TODO: HELPER PLZ // Work out tiles nearby to determine volume. if (TryComp(entXform.GridUid, out var grid)) @@ -84,8 +69,6 @@ protected override void Run(EntityUid uid, WeatherData weather, WeatherPrototype frontier.Enqueue(seed); // If we don't have a nearest node don't play any sound. EntityCoordinates? nearestNode = null; - var bodyQuery = GetEntityQuery(); - var weatherIgnoreQuery = GetEntityQuery(); var visited = new HashSet(); while (frontier.TryDequeue(out var node)) @@ -93,7 +76,7 @@ protected override void Run(EntityUid uid, WeatherData weather, WeatherPrototype if (!visited.Add(node.GridIndices)) continue; - if (!CanWeatherAffect(grid, node, weatherIgnoreQuery, bodyQuery)) + if (!CanWeatherAffect(grid, node)) { // Add neighbors // TODO: Ideally we pick some deterministically random direction and use that @@ -117,50 +100,29 @@ protected override void Run(EntityUid uid, WeatherData weather, WeatherPrototype } nearestNode = new EntityCoordinates(entXform.GridUid.Value, - (Vector2) node.GridIndices + (grid.TileSizeHalfVector)); + node.GridIndices + grid.TileSizeHalfVector); break; } - if (nearestNode == null) - alpha = 0f; + // Get occlusion to the targeted node if it exists, otherwise set a default occlusion. + if (nearestNode != null) + { + var entPos = _transform.GetMapCoordinates(entXform); + var nodePosition = nearestNode.Value.ToMap(EntityManager, _transform).Position; + var delta = nodePosition - entPos.Position; + var distance = delta.Length(); + occlusion = _audio.GetOcclusion(entPos, delta, distance); + } else { - var entPos = _transform.GetWorldPosition(entXform); - var sourceRelative = nearestNode.Value.ToMap(EntityManager).Position - entPos; - - if (sourceRelative.LengthSquared() > 1f) - { - occlusion = _physics.IntersectRayPenetration(entXform.MapID, - new CollisionRay(entPos, sourceRelative.Normalized(), _audio.OcclusionCollisionMask), - sourceRelative.Length(), stream.TrackingEntity); - } + occlusion = 3f; } } - if (MathHelper.CloseTo(weather.LastOcclusion, occlusion, 0.01f)) - weather.LastOcclusion = occlusion; - else - weather.LastOcclusion += (occlusion - weather.LastOcclusion) * OcclusionLerpRate * frameTime; - - if (MathHelper.CloseTo(weather.LastAlpha, alpha, 0.01f)) - weather.LastAlpha = alpha; - else - weather.LastAlpha += (alpha - weather.LastAlpha) * AlphaLerpRate * frameTime; - - // Full volume if not on grid - stream.Source.SetVolumeDirect(weather.LastAlpha); - stream.Source.SetOcclusion(weather.LastOcclusion); - } - - protected override void EndWeather(EntityUid uid, WeatherComponent component, string proto) - { - base.EndWeather(uid, component, proto); - - if (!component.Weather.TryGetValue(proto, out var weather)) - return; - - weather.LastAlpha = 0f; - weather.LastOcclusion = 0f; + var alpha = GetPercent(weather, uid); + alpha *= SharedAudioSystem.VolumeToGain(weatherProto.Sound.Params.Volume); + _audio.SetGain(stream, alpha, comp); + comp.Occlusion = occlusion; } protected override bool SetState(WeatherState state, WeatherComponent comp, WeatherData weather, WeatherPrototype weatherProto) @@ -172,9 +134,8 @@ protected override bool SetState(WeatherState state, WeatherComponent comp, Weat return true; // TODO: Fades (properly) - weather.Stream?.Stop(); - weather.Stream = null; - weather.Stream = _audio.PlayGlobal(weatherProto.Sound, Filter.Local(), true); + weather.Stream = _audio.Stop(weather.Stream); + weather.Stream = _audio.PlayGlobal(weatherProto.Sound, Filter.Local(), true)?.Entity; return true; } @@ -205,7 +166,6 @@ private void OnWeatherHandleState(EntityUid uid, WeatherComponent component, ref // New weather StartWeather(component, ProtoMan.Index(proto), weather.EndTime); - weather.LastAlpha = 0f; } } } diff --git a/Content.Client/Xenoarchaeology/Equipment/ArtifactCrusherSystem.cs b/Content.Client/Xenoarchaeology/Equipment/ArtifactCrusherSystem.cs new file mode 100644 index 0000000000..a57ef55574 --- /dev/null +++ b/Content.Client/Xenoarchaeology/Equipment/ArtifactCrusherSystem.cs @@ -0,0 +1,9 @@ +using Content.Shared.Xenoarchaeology.Equipment; + +namespace Content.Client.Xenoarchaeology.Equipment; + +/// +public sealed class ArtifactCrusherSystem : SharedArtifactCrusherSystem +{ + +} diff --git a/Content.IntegrationTests/Pair/TestPair.Helpers.cs b/Content.IntegrationTests/Pair/TestPair.Helpers.cs index 574644f67e..554807b2d2 100644 --- a/Content.IntegrationTests/Pair/TestPair.Helpers.cs +++ b/Content.IntegrationTests/Pair/TestPair.Helpers.cs @@ -1,7 +1,9 @@ #nullable enable +using System.Collections.Generic; using System.Linq; using Robust.Shared.GameObjects; using Robust.Shared.Map; +using Robust.Shared.Prototypes; using Robust.UnitTesting; namespace Content.IntegrationTests.Pair; @@ -95,4 +97,33 @@ public async Task WaitClientCommand(string cmd, int numTicks = 10) await Client.ExecuteCommand(cmd); await RunTicksSync(numTicks); } + + /// + /// Retrieve all entity prototypes that have some component. + /// + public List GetPrototypesWithComponent( + HashSet? ignored = null, + bool ignoreAbstract = true, + bool ignoreTestPrototypes = true) + where T : IComponent + { + var id = Server.ResolveDependency().GetComponentName(typeof(T)); + var list = new List(); + foreach (var proto in Server.ProtoMan.EnumeratePrototypes()) + { + if (ignored != null && ignored.Contains(proto.ID)) + continue; + + if (ignoreAbstract && proto.Abstract) + continue; + + if (ignoreTestPrototypes && IsTestPrototype(proto)) + continue; + + if (proto.Components.ContainsKey(id)) + list.Add(proto); + } + + return list; + } } diff --git a/Content.IntegrationTests/PoolManager.Cvars.cs b/Content.IntegrationTests/PoolManager.Cvars.cs index dfdbddd923..327ec627f5 100644 --- a/Content.IntegrationTests/PoolManager.Cvars.cs +++ b/Content.IntegrationTests/PoolManager.Cvars.cs @@ -35,7 +35,7 @@ private static readonly (string cvar, string value)[] TestCvars = (CVars.NetBufferSize.Name, "0") }; - public static async Task SetupCVars(RobustIntegrationTest.IntegrationInstance instance, PoolSettings settings) + public static async Task SetupCVars(RobustIntegrationTest.IntegrationInstance instance, PoolSettings settings) { var cfg = instance.ResolveDependency(); await instance.WaitPost(() => @@ -67,4 +67,4 @@ private static void SetDefaultCVars(RobustIntegrationTest.IntegrationOptions opt options.CVarOverrides[cvar] = value; } } -} \ No newline at end of file +} diff --git a/Content.IntegrationTests/PoolManager.cs b/Content.IntegrationTests/PoolManager.cs index a2015f3fdb..03ebf49a9b 100644 --- a/Content.IntegrationTests/PoolManager.cs +++ b/Content.IntegrationTests/PoolManager.cs @@ -69,7 +69,6 @@ public static partial class PoolManager options.BeforeStart += () => { var entSysMan = IoCManager.Resolve(); - var compFactory = IoCManager.Resolve(); entSysMan.LoadExtraSystemType(); entSysMan.LoadExtraSystemType(); entSysMan.LoadExtraSystemType(); @@ -425,25 +424,6 @@ public static async Task WaitUntil(RobustIntegrationTest.IntegrationInstance ins Assert.That(passed); } - /// - /// Helper method that retrieves all entity prototypes that have some component. - /// - public static List GetPrototypesWithComponent(RobustIntegrationTest.IntegrationInstance instance) where T : IComponent - { - var protoMan = instance.ResolveDependency(); - var compFact = instance.ResolveDependency(); - - var id = compFact.GetComponentName(typeof(T)); - var list = new List(); - foreach (var ent in protoMan.EnumeratePrototypes()) - { - if (ent.Components.ContainsKey(id)) - list.Add(ent); - } - - return list; - } - /// /// Initialize the pool manager. /// diff --git a/Content.IntegrationTests/Tests/Chemistry/SolutionSystemTests.cs b/Content.IntegrationTests/Tests/Chemistry/SolutionSystemTests.cs index 8b489d27fc..064ce46934 100644 --- a/Content.IntegrationTests/Tests/Chemistry/SolutionSystemTests.cs +++ b/Content.IntegrationTests/Tests/Chemistry/SolutionSystemTests.cs @@ -26,22 +26,22 @@ public sealed class SolutionSystemTests - type: reagent id: TestReagentA - name: nah - desc: nah - physicalDesc: nah + name: reagent-name-nothing + desc: reagent-desc-nothing + physicalDesc: reagent-physical-desc-nothing - type: reagent id: TestReagentB - name: nah - desc: nah - physicalDesc: nah + name: reagent-name-nothing + desc: reagent-desc-nothing + physicalDesc: reagent-physical-desc-nothing - type: reagent id: TestReagentC specificHeat: 2.0 - name: nah - desc: nah - physicalDesc: nah + name: reagent-name-nothing + desc: reagent-desc-nothing + physicalDesc: reagent-physical-desc-nothing "; [Test] public async Task TryAddTwoNonReactiveReagent() diff --git a/Content.IntegrationTests/Tests/DeltaV/CrimeassistTest.cs b/Content.IntegrationTests/Tests/DeltaV/CrimeassistTest.cs new file mode 100644 index 0000000000..2e5c7605fa --- /dev/null +++ b/Content.IntegrationTests/Tests/DeltaV/CrimeassistTest.cs @@ -0,0 +1,79 @@ +using System.Linq; +using Content.Shared.DeltaV.CartridgeLoader.Cartridges; +using Robust.Shared.GameObjects; +using Robust.Shared.Localization; +using Robust.Shared.Map; +using Robust.Shared.Prototypes; + +namespace Content.IntegrationTests.Tests.DeltaV; + +[TestFixture] +public sealed class CrimeAssistTest +{ + [Test] + public async Task CrimeAssistValid() + { + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; + await server.WaitIdleAsync(); + + var prototypeManager = server.ResolveDependency(); + var allProtos = prototypeManager.EnumeratePrototypes().ToArray(); + + await server.WaitAssertion(() => + { + foreach (var proto in allProtos) + { + if (proto.LocKey != null) + { + Assert.That(Loc.TryGetString(proto.LocKey, out var _), + $"CrimeAssistPage {proto.ID} has invalid LocKey {proto.LocKey}!"); + } + + if (proto.LocKeyTitle != null) + { + Assert.That(Loc.TryGetString(proto.LocKeyTitle, out var _), + $"CrimeAssistPage {proto.ID} has invalid LocKeyTitle {proto.LocKeyTitle}!"); + } + + if (proto.LocKeyDescription != null) + { + Assert.That(Loc.TryGetString(proto.LocKeyDescription, out var _), + $"CrimeAssistPage {proto.ID} has invalid LocKeyDescription {proto.LocKeyDescription}!"); + } + + if (proto.LocKeySeverity != null) + { + Assert.That(Loc.TryGetString(proto.LocKeySeverity, out var _), + $"CrimeAssistPage {proto.ID} has invalid LocKeySeverity {proto.LocKeySeverity}!"); + } + + if (proto.LocKeyPunishment != null) + { + Assert.That(Loc.TryGetString(proto.LocKeyPunishment, out var _), + $"CrimeAssistPage {proto.ID} has invalid LocKeyPunishment {proto.LocKeyPunishment}!"); + } + + if (proto.OnStart != null) + { + Assert.That(allProtos.Any(p => p.ID == proto.OnStart), + $"CrimeAssistPage {proto.ID} has invalid OnStart {proto.OnStart}!"); + } + + if (proto.OnYes != null) + { + Assert.That(allProtos.Any(p => p.ID == proto.OnYes), + $"CrimeAssistPage {proto.ID} has invalid OnYes {proto.OnYes}!"); + } + + if (proto.OnNo != null) + { + Assert.That(allProtos.Any(p => p.ID == proto.OnNo), + $"CrimeAssistPage {proto.ID} has invalid OnNo {proto.OnNo}!"); + } + } + }); + + await pair.CleanReturnAsync(); + } +} diff --git a/Content.IntegrationTests/Tests/Destructible/DestructibleThresholdActivationTest.cs b/Content.IntegrationTests/Tests/Destructible/DestructibleThresholdActivationTest.cs index 34692aa082..47c0d84977 100644 --- a/Content.IntegrationTests/Tests/Destructible/DestructibleThresholdActivationTest.cs +++ b/Content.IntegrationTests/Tests/Destructible/DestructibleThresholdActivationTest.cs @@ -6,6 +6,8 @@ using Content.Shared.Damage; using Content.Shared.Damage.Prototypes; using Content.Shared.FixedPoint; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.GameObjects; using Robust.Shared.Prototypes; using static Content.IntegrationTests.Tests.Destructible.DestructibleTestPrototypes; diff --git a/Content.IntegrationTests/Tests/EntityTest.cs b/Content.IntegrationTests/Tests/EntityTest.cs index 042db1deb3..9f8823fd5e 100644 --- a/Content.IntegrationTests/Tests/EntityTest.cs +++ b/Content.IntegrationTests/Tests/EntityTest.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using System.Linq; +using System.Numerics; using Content.Server.Humanoid.Components; using Content.Shared.Coordinates; using Content.Shared.Prototypes; @@ -215,6 +216,7 @@ public async Task SpawnAndDeleteEntityCountTest() { var settings = new PoolSettings { Connected = true, Dirty = true }; await using var pair = await PoolManager.GetServerClient(settings); + var mapManager = pair.Server.ResolveDependency(); var server = pair.Server; var client = pair.Client; @@ -232,6 +234,8 @@ public async Task SpawnAndDeleteEntityCountTest() "GhostRoleMobSpawner", "NukeOperativeSpawner", "TimedSpawner", + // makes an announcement on mapInit. + "AnnounceOnSpawn", }; Assert.That(server.CfgMan.GetCVar(CVars.NetPVS), Is.False); @@ -244,16 +248,18 @@ public async Task SpawnAndDeleteEntityCountTest() .Select(p => p.ID) .ToList(); - MapCoordinates coords = default; + protoIds.Sort(); + var mapId = MapId.Nullspace; + await server.WaitPost(() => { - var map = server.MapMan.CreateMap(); - coords = new MapCoordinates(default, map); + mapId = mapManager.CreateMap(); }); + var coords = new MapCoordinates(Vector2.Zero, mapId); + await pair.RunTicksSync(3); - List badPrototypes = new(); foreach (var protoId in protoIds) { // TODO fix ninja @@ -270,27 +276,50 @@ await server.WaitPost(() => // If the entity deleted itself, check that it didn't spawn other entities if (!server.EntMan.EntityExists(uid)) { - if (server.EntMan.EntityCount != count || client.EntMan.EntityCount != clientCount) - badPrototypes.Add(protoId); + if (server.EntMan.EntityCount != count) + { + Assert.Fail($"Server prototype {protoId} failed on deleting itself"); + } + + if (client.EntMan.EntityCount != clientCount) + { + Assert.Fail($"Client prototype {protoId} failed on deleting itself\n" + + $"Expected {clientCount} and found {client.EntMan.EntityCount}.\n" + + $"Server was {count}."); + } continue; } // Check that the number of entities has increased. - if (server.EntMan.EntityCount <= count || client.EntMan.EntityCount <= clientCount) + if (server.EntMan.EntityCount <= count) { - badPrototypes.Add(protoId); - continue; + Assert.Fail($"Server prototype {protoId} failed on spawning as entity count didn't increase"); + } + + if (client.EntMan.EntityCount <= clientCount) + { + Assert.Fail($"Client prototype {protoId} failed on spawning as entity count didn't increase" + + $"Expected at least {clientCount} and found {client.EntMan.EntityCount}. " + + $"Server was {count}"); } await server.WaitPost(() => server.EntMan.DeleteEntity(uid)); await pair.RunTicksSync(3); // Check that the number of entities has gone back to the original value. - if (server.EntMan.EntityCount != count || client.EntMan.EntityCount != clientCount) - badPrototypes.Add(protoId); + if (server.EntMan.EntityCount != count) + { + Assert.Fail($"Server prototype {protoId} failed on deletion count didn't reset properly"); + } + + if (client.EntMan.EntityCount != clientCount) + { + Assert.Fail($"Client prototype {protoId} failed on deletion count didn't reset properly:\n" + + $"Expected {clientCount} and found {client.EntMan.EntityCount}.\n" + + $"Server was {count}."); + } } - Assert.That(badPrototypes, Is.Empty); await pair.CleanReturnAsync(); } @@ -303,7 +332,7 @@ public async Task AllComponentsOneToOneDeleteTest() "DebugExceptionExposeData", "DebugExceptionInitialize", "DebugExceptionStartup", - "GridFillComponent", + "GridFill", "Map", // We aren't testing a map entity in this test "MapGrid", "Broadphase", diff --git a/Content.IntegrationTests/Tests/Fluids/AbsorbentTest.cs b/Content.IntegrationTests/Tests/Fluids/AbsorbentTest.cs new file mode 100644 index 0000000000..de5226202c --- /dev/null +++ b/Content.IntegrationTests/Tests/Fluids/AbsorbentTest.cs @@ -0,0 +1,344 @@ +using Content.Server.Fluids.EntitySystems; +using Content.Shared.Chemistry.Components; +using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.FixedPoint; +using Content.Shared.Fluids; +using Robust.Shared.GameObjects; +using Robust.Shared.Prototypes; +using System.Collections.Generic; +using System.Linq; + +namespace Content.IntegrationTests.Tests.Fluids; + +[TestFixture] +[TestOf(typeof(AbsorbentComponent))] +public sealed class AbsorbentTest +{ + private const string UserDummyId = "UserDummy"; + private const string AbsorbentDummyId = "AbsorbentDummy"; + private const string RefillableDummyId = "RefillableDummy"; + private const string SmallRefillableDummyId = "SmallRefillableDummy"; + + private const string EvaporablePrototypeId = "Water"; + private const string NonEvaporablePrototypeId = "Cola"; + + [TestPrototypes] + private const string Prototypes = $@" +- type: entity + name: {UserDummyId} + id: {UserDummyId} + +- type: entity + name: {AbsorbentDummyId} + id: {AbsorbentDummyId} + components: + - type: Absorbent + - type: SolutionContainerManager + solutions: + absorbed: + maxVol: 100 + +- type: entity + name: {RefillableDummyId} + id: {RefillableDummyId} + components: + - type: SolutionContainerManager + solutions: + refillable: + maxVol: 200 + - type: RefillableSolution + solution: refillable + +- type: entity + name: {SmallRefillableDummyId} + id: {SmallRefillableDummyId} + components: + - type: SolutionContainerManager + solutions: + refillable: + maxVol: 20 + - type: RefillableSolution + solution: refillable +"; + public sealed record TestSolutionReagents(FixedPoint2 VolumeOfEvaporable, FixedPoint2 VolumeOfNonEvaporable); + + public record TestSolutionCase( + string Case, // Only for clarity purposes + TestSolutionReagents InitialAbsorbentSolution, + TestSolutionReagents InitialRefillableSolution, + TestSolutionReagents ExpectedAbsorbentSolution, + TestSolutionReagents ExpectedRefillableSolution); + + [TestCaseSource(nameof(TestCasesToRun))] + public async Task AbsorbentOnRefillableTest(TestSolutionCase testCase) + { + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; + + var testMap = await pair.CreateTestMap(); + var coordinates = testMap.GridCoords; + + var entityManager = server.ResolveDependency(); + var absorbentSystem = entityManager.System(); + var solutionContainerSystem = entityManager.System(); + var prototypeManager = server.ResolveDependency(); + + EntityUid user = default; + EntityUid absorbent = default; + EntityUid refillable = default; + AbsorbentComponent component = null; + await server.WaitAssertion(() => + { + user = entityManager.SpawnEntity(UserDummyId, coordinates); + absorbent = entityManager.SpawnEntity(AbsorbentDummyId, coordinates); + refillable = entityManager.SpawnEntity(RefillableDummyId, coordinates); + + entityManager.TryGetComponent(absorbent, out component); + solutionContainerSystem.TryGetSolution(absorbent, AbsorbentComponent.SolutionName, out var absorbentSolution); + solutionContainerSystem.TryGetRefillableSolution(refillable, out var refillableSolution); + + // Arrange + if (testCase.InitialAbsorbentSolution.VolumeOfEvaporable > FixedPoint2.Zero) + solutionContainerSystem.AddSolution(absorbent, absorbentSolution, new Solution(EvaporablePrototypeId, testCase.InitialAbsorbentSolution.VolumeOfEvaporable)); + if (testCase.InitialAbsorbentSolution.VolumeOfNonEvaporable > FixedPoint2.Zero) + solutionContainerSystem.AddSolution(absorbent, absorbentSolution, new Solution(NonEvaporablePrototypeId, testCase.InitialAbsorbentSolution.VolumeOfNonEvaporable)); + + if (testCase.InitialRefillableSolution.VolumeOfEvaporable > FixedPoint2.Zero) + solutionContainerSystem.AddSolution(refillable, refillableSolution, new Solution(EvaporablePrototypeId, testCase.InitialRefillableSolution.VolumeOfEvaporable)); + if (testCase.InitialRefillableSolution.VolumeOfNonEvaporable > FixedPoint2.Zero) + solutionContainerSystem.AddSolution(refillable, refillableSolution, new Solution(NonEvaporablePrototypeId, testCase.InitialRefillableSolution.VolumeOfNonEvaporable)); + + // Act + absorbentSystem.Mop(user, refillable, absorbent, component); + + // Assert + var absorbentComposition = absorbentSolution.GetReagentPrototypes(prototypeManager).ToDictionary(r => r.Key.ID, r => r.Value); + var refillableComposition = refillableSolution.GetReagentPrototypes(prototypeManager).ToDictionary(r => r.Key.ID, r => r.Value); + Assert.Multiple(() => + { + Assert.That(VolumeOfPrototypeInComposition(absorbentComposition, EvaporablePrototypeId), Is.EqualTo(testCase.ExpectedAbsorbentSolution.VolumeOfEvaporable)); + Assert.That(VolumeOfPrototypeInComposition(absorbentComposition, NonEvaporablePrototypeId), Is.EqualTo(testCase.ExpectedAbsorbentSolution.VolumeOfNonEvaporable)); + Assert.That(VolumeOfPrototypeInComposition(refillableComposition, EvaporablePrototypeId), Is.EqualTo(testCase.ExpectedRefillableSolution.VolumeOfEvaporable)); + Assert.That(VolumeOfPrototypeInComposition(refillableComposition, NonEvaporablePrototypeId), Is.EqualTo(testCase.ExpectedRefillableSolution.VolumeOfNonEvaporable)); + }); + }); + await pair.RunTicksSync(5); + + await pair.CleanReturnAsync(); + } + + [TestCaseSource(nameof(TestCasesToRunOnSmallRefillable))] + public async Task AbsorbentOnSmallRefillableTest(TestSolutionCase testCase) + { + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; + + var testMap = await pair.CreateTestMap(); + var coordinates = testMap.GridCoords; + + var entityManager = server.ResolveDependency(); + var absorbentSystem = entityManager.System(); + var solutionContainerSystem = entityManager.System(); + var prototypeManager = server.ResolveDependency(); + + EntityUid user = default; + EntityUid absorbent = default; + EntityUid refillable = default; + AbsorbentComponent component = null; + await server.WaitAssertion(() => + { + user = entityManager.SpawnEntity(UserDummyId, coordinates); + absorbent = entityManager.SpawnEntity(AbsorbentDummyId, coordinates); + refillable = entityManager.SpawnEntity(SmallRefillableDummyId, coordinates); + + entityManager.TryGetComponent(absorbent, out component); + solutionContainerSystem.TryGetSolution(absorbent, AbsorbentComponent.SolutionName, out var absorbentSolution); + solutionContainerSystem.TryGetRefillableSolution(refillable, out var refillableSolution); + + // Arrange + solutionContainerSystem.AddSolution(absorbent, absorbentSolution, new Solution(EvaporablePrototypeId, testCase.InitialAbsorbentSolution.VolumeOfEvaporable)); + if (testCase.InitialAbsorbentSolution.VolumeOfNonEvaporable > FixedPoint2.Zero) + solutionContainerSystem.AddSolution(absorbent, absorbentSolution, new Solution(NonEvaporablePrototypeId, testCase.InitialAbsorbentSolution.VolumeOfNonEvaporable)); + + if (testCase.InitialRefillableSolution.VolumeOfEvaporable > FixedPoint2.Zero) + solutionContainerSystem.AddSolution(refillable, refillableSolution, new Solution(EvaporablePrototypeId, testCase.InitialRefillableSolution.VolumeOfEvaporable)); + if (testCase.InitialRefillableSolution.VolumeOfNonEvaporable > FixedPoint2.Zero) + solutionContainerSystem.AddSolution(refillable, refillableSolution, new Solution(NonEvaporablePrototypeId, testCase.InitialRefillableSolution.VolumeOfNonEvaporable)); + + // Act + absorbentSystem.Mop(user, refillable, absorbent, component); + + // Assert + var absorbentComposition = absorbentSolution.GetReagentPrototypes(prototypeManager).ToDictionary(r => r.Key.ID, r => r.Value); + var refillableComposition = refillableSolution.GetReagentPrototypes(prototypeManager).ToDictionary(r => r.Key.ID, r => r.Value); + Assert.Multiple(() => + { + Assert.That(VolumeOfPrototypeInComposition(absorbentComposition, EvaporablePrototypeId), Is.EqualTo(testCase.ExpectedAbsorbentSolution.VolumeOfEvaporable)); + Assert.That(VolumeOfPrototypeInComposition(absorbentComposition, NonEvaporablePrototypeId), Is.EqualTo(testCase.ExpectedAbsorbentSolution.VolumeOfNonEvaporable)); + Assert.That(VolumeOfPrototypeInComposition(refillableComposition, EvaporablePrototypeId), Is.EqualTo(testCase.ExpectedRefillableSolution.VolumeOfEvaporable)); + Assert.That(VolumeOfPrototypeInComposition(refillableComposition, NonEvaporablePrototypeId), Is.EqualTo(testCase.ExpectedRefillableSolution.VolumeOfNonEvaporable)); + }); + }); + await pair.RunTicksSync(5); + + await pair.CleanReturnAsync(); + } + + private static FixedPoint2 VolumeOfPrototypeInComposition(Dictionary composition, string prototypeId) + { + return composition.TryGetValue(prototypeId, out var value) ? value : FixedPoint2.Zero; + } + + public static readonly TestSolutionCase[] TestCasesToRun = new TestSolutionCase[] + { + // Both empty case + new( + "Both empty - no transfer", + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero) + ), + // Just water cases + new( + "Transfer water to empty refillable", + new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.Zero) + ), + new( + "Transfer water to empty absorbent", + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero) + ), + new( + "Both partially filled with water while everything fits in absorbent", + new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.New(40), FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.New(90), FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero) + ), + new( + "Both partially filled with water while not everything fits in absorbent", + new TestSolutionReagents(FixedPoint2.New(70), FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.New(100), FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.New(20), FixedPoint2.Zero) + ), + // Just contaminants cases + new( + "Transfer contaminants to empty refillable", + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(50)), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(50)) + ), + new( + "Do not transfer contaminants back to empty absorbent", + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(50)), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(50)) + ), + new( + "Add contaminants to preexisting while everything fits in refillable", + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(50)), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(130)), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(180)) + ), + new( + "Add contaminants to preexisting while not everything fits in refillable", + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(90)), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(130)), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(20)), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(200)) + ), + // Mixed: water and contaminants cases + new( + "Transfer just contaminants into empty refillable", + new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.New(50)), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(50)) + ), + new( + "Transfer just contaminants into non-empty refillable while everything fits", + new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.New(50)), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(60)), + new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(110)) + ), + new( + "Transfer just contaminants into non-empty refillable while not everything fits", + new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.New(50)), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(170)), + new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.New(20)), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(200)) + ), + new( + "Transfer just contaminants and absorb water from water refillable", + new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.New(50)), + new TestSolutionReagents(FixedPoint2.New(70), FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.New(100), FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.New(20), FixedPoint2.New(50)) + ), + new( + "Transfer just contaminants and absorb water from a full water refillable", + new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.New(50)), + new TestSolutionReagents(FixedPoint2.New(200), FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.New(100), FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.New(150), FixedPoint2.New(50)) + ), + new( + "Transfer just contaminants and absorb water from a full mixed refillable", + new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.New(50)), + new TestSolutionReagents(FixedPoint2.New(100), FixedPoint2.New(100)), + new TestSolutionReagents(FixedPoint2.New(100), FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.New(150)) + ), + new( + "Transfer just contaminants and absorb water from a low-water mixed refillable", + new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.New(50)), + new TestSolutionReagents(FixedPoint2.New(10), FixedPoint2.New(100)), + new TestSolutionReagents(FixedPoint2.New(60), FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(150)) + ), + new( + "Contaminants for water exchange", + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(100)), + new TestSolutionReagents(FixedPoint2.New(200), FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.New(100), FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.New(100), FixedPoint2.New(100)) + ) + }; + + public static readonly TestSolutionCase[] TestCasesToRunOnSmallRefillable = new TestSolutionCase[] + { + // Only testing cases where small refillable AvailableVolume makes a difference + new( + "Transfer water to empty refillable", + new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.New(30), FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.New(20), FixedPoint2.Zero) + ), + new( + "Transfer contaminants to empty refillable", + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(50)), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(30)), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(20)) + ), + new( + "Mixed transfer in limited space", + new TestSolutionReagents(FixedPoint2.New(20), FixedPoint2.New(25)), + new TestSolutionReagents(FixedPoint2.New(10), FixedPoint2.New(5)), + new TestSolutionReagents(FixedPoint2.New(30), FixedPoint2.New(10)), + new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(20)) + ) + }; +} diff --git a/Content.IntegrationTests/Tests/FollowerSystemTest.cs b/Content.IntegrationTests/Tests/FollowerSystemTest.cs index ddd5c7a3f0..4d308c6d91 100644 --- a/Content.IntegrationTests/Tests/FollowerSystemTest.cs +++ b/Content.IntegrationTests/Tests/FollowerSystemTest.cs @@ -1,3 +1,4 @@ +using Content.Server.GameTicking; using Content.Shared.Follower; using Robust.Shared.GameObjects; using Robust.Shared.Log; @@ -31,11 +32,11 @@ await server.WaitPost(() => var map = mapMan.CreateMap(); // Spawn an observer to be followed. - var followed = entMan.SpawnEntity("MobObserver", new MapCoordinates(0, 0, map)); + var followed = entMan.SpawnEntity(GameTicker.ObserverPrototypeName, new MapCoordinates(0, 0, map)); logger.Info($"Spawned followed observer: {entMan.ToPrettyString(followed)}"); // Spawn an observer to follow another observer. - var follower = entMan.SpawnEntity("MobObserver", new MapCoordinates(0, 0, map)); + var follower = entMan.SpawnEntity(GameTicker.ObserverPrototypeName, new MapCoordinates(0, 0, map)); logger.Info($"Spawned follower observer: {entMan.ToPrettyString(follower)}"); followerSystem.StartFollowingEntity(follower, followed); diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifier.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifier.cs index 86aaa68c82..414cf4bb56 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifier.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifier.cs @@ -112,17 +112,19 @@ await Server.WaitPost(() => } /// - /// Convert an entity-uid to a matching entity specifier. Usefull when doing entity lookups & checking that the - /// right quantity of entities/materials werre produced. + /// Convert an entity-uid to a matching entity specifier. Useful when doing entity lookups & checking that the + /// right quantity of entities/materials werre produced. Returns null if passed an entity with a null prototype. /// - protected EntitySpecifier ToEntitySpecifier(EntityUid uid) + protected EntitySpecifier? ToEntitySpecifier(EntityUid uid) { if (SEntMan.TryGetComponent(uid, out StackComponent? stack)) return new EntitySpecifier(stack.StackTypeId, stack.Count) { Converted = true }; var meta = SEntMan.GetComponent(uid); - Assert.That(meta.EntityPrototype, Is.Not.Null); - return new(meta.EntityPrototype!.ID, 1) { Converted = true }; + if (meta.EntityPrototype is null) + return null; + + return new(meta.EntityPrototype.ID, 1) { Converted = true }; } } diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifierCollection.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifierCollection.cs index 0af2747662..520d2699c1 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifierCollection.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifierCollection.cs @@ -156,7 +156,9 @@ public void ConvertToStacks(IPrototypeManager protoMan, IComponentFactory factor protected EntitySpecifierCollection ToEntityCollection(IEnumerable entities) { - var collection = new EntitySpecifierCollection(entities.Select(uid => ToEntitySpecifier(uid))); + var collection = new EntitySpecifierCollection(entities + .Select(ToEntitySpecifier) + .OfType()); Assert.That(collection.Converted); return collection; } diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs index 25171e1ea2..6c842f0082 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs @@ -598,7 +598,7 @@ protected async Task AssertEntityLookup(params EntitySpecifier[] entities) /// /// Performs an entity lookup and asserts that only the listed entities exist and that they are all present. - /// Ignores the grid, map, player, target and contained entities. + /// Ignores the grid, map, player, target, contained entities, and entities with null prototypes. /// protected async Task AssertEntityLookup( EntitySpecifierCollection collection, @@ -619,6 +619,9 @@ protected async Task AssertEntityLookup( { foreach (var (proto, quantity) in expected.Entities) { + if (proto == "Audio") + continue; + if (quantity < 0 && failOnExcess) Assert.Fail($"Unexpected entity/stack: {proto}, quantity: {-quantity}"); @@ -649,6 +652,9 @@ protected async Task FindEntity( foreach (var uid in entities) { var found = ToEntitySpecifier(uid); + if (found is null) + continue; + if (spec.Prototype != found.Prototype) continue; diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs index df77410e54..58076454c1 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs @@ -5,7 +5,6 @@ using Content.Client.Examine; using Content.IntegrationTests.Pair; using Content.Server.Body.Systems; -using Content.Server.Players; using Content.Server.Stack; using Content.Server.Tools; using Content.Shared.Body.Part; @@ -17,8 +16,6 @@ using Content.Shared.Players; using Robust.Client.Input; using Robust.Client.UserInterface; -using Robust.Server.GameObjects; -using Robust.Server.Player; using Robust.Shared.GameObjects; using Robust.Shared.Log; using Robust.Shared.Map; @@ -102,7 +99,6 @@ public abstract partial class InteractionTest protected ToolSystem ToolSys = default!; protected InteractionTestSystem STestSystem = default!; protected SharedTransformSystem Transform = default!; - protected ActorSystem Actor = default!; protected ISawmill SLogger = default!; // CLIENT dependencies @@ -144,7 +140,7 @@ public abstract partial class InteractionTest [SetUp] public virtual async Task Setup() { - Pair = await PoolManager.GetServerClient(new PoolSettings { Connected = true }); + Pair = await PoolManager.GetServerClient(new PoolSettings { Connected = true, Dirty = true}); // server dependencies SEntMan = Server.ResolveDependency(); @@ -161,7 +157,6 @@ public virtual async Task Setup() SConstruction = SEntMan.System(); STestSystem = SEntMan.System(); Stack = SEntMan.System(); - Actor = SEntMan.System(); SLogger = Server.ResolveDependency().RootSawmill; // client dependencies @@ -197,17 +192,17 @@ await Server.WaitPost(() => // Mind system is a time vampire SEntMan.System().WipeMind(ServerSession.ContentData()?.Mind); - old = cPlayerMan.LocalPlayer.ControlledEntity; + old = cPlayerMan.LocalEntity; Player = SEntMan.GetNetEntity(SEntMan.SpawnEntity(PlayerPrototype, SEntMan.GetCoordinates(PlayerCoords))); var serverPlayerEnt = SEntMan.GetEntity(Player); - Actor.Attach(serverPlayerEnt, ServerSession); + Server.PlayerMan.SetAttachedEntity(ServerSession, serverPlayerEnt); Hands = SEntMan.GetComponent(serverPlayerEnt); DoAfters = SEntMan.GetComponent(serverPlayerEnt); }); // Check player got attached. await RunTicks(5); - Assert.That(CEntMan.GetNetEntity(cPlayerMan.LocalPlayer.ControlledEntity), Is.EqualTo(Player)); + Assert.That(CEntMan.GetNetEntity(cPlayerMan.LocalEntity), Is.EqualTo(Player)); // Delete old player entity. await Server.WaitPost(() => @@ -234,7 +229,7 @@ await Server.WaitPost(() => await Pair.ReallyBeIdle(5); Assert.Multiple(() => { - Assert.That(CEntMan.GetNetEntity(cPlayerMan.LocalPlayer.ControlledEntity), Is.EqualTo(Player)); + Assert.That(CEntMan.GetNetEntity(cPlayerMan.LocalEntity), Is.EqualTo(Player)); Assert.That(sPlayerMan.GetSessionByUserId(ClientSession.UserId).AttachedEntity, Is.EqualTo(SEntMan.GetEntity(Player))); }); } diff --git a/Content.IntegrationTests/Tests/Minds/MindTests.EntityDeletion.cs b/Content.IntegrationTests/Tests/Minds/MindTests.EntityDeletion.cs index a67a45ecb4..2ebe750f98 100644 --- a/Content.IntegrationTests/Tests/Minds/MindTests.EntityDeletion.cs +++ b/Content.IntegrationTests/Tests/Minds/MindTests.EntityDeletion.cs @@ -1,5 +1,5 @@ using System.Linq; -using Content.Server.Players; +using Content.Server.GameTicking; using Content.Shared.Ghost; using Content.Shared.Mind; using Content.Shared.Players; @@ -173,7 +173,7 @@ public async Task TestOriginalDeletedWhileGhostingKeepsGhost() EntityUid ghost = default!; await server.WaitAssertion(() => { - ghost = entMan.SpawnEntity("MobObserver", MapCoordinates.Nullspace); + ghost = entMan.SpawnEntity(GameTicker.ObserverPrototypeName, MapCoordinates.Nullspace); mindSystem.Visit(mind.Id, ghost); }); @@ -224,7 +224,7 @@ public async Task TestGhostToAghost() var ghost = await BecomeGhost(pair); // Player is a normal ghost (not admin ghost). - Assert.That(entMan.GetComponent(player.AttachedEntity!.Value).EntityPrototype?.ID, Is.Not.EqualTo("AdminObserver")); + Assert.That(entMan.GetComponent(player.AttachedEntity!.Value).EntityPrototype?.ID, Is.Not.EqualTo(GameTicker.AdminObserverPrototypeName)); // Try to become an admin ghost await server.WaitAssertion(() => serverConsole.ExecuteCommand(player, "aghost")); @@ -235,7 +235,7 @@ public async Task TestGhostToAghost() { Assert.That(player.AttachedEntity, Is.Not.EqualTo(ghost), "Player is still attached to the old ghost"); Assert.That(entMan.HasComponent(player.AttachedEntity), "Player did not become a new ghost"); - Assert.That(entMan.GetComponent(player.AttachedEntity!.Value).EntityPrototype?.ID, Is.EqualTo("AdminObserver")); + Assert.That(entMan.GetComponent(player.AttachedEntity!.Value).EntityPrototype?.ID, Is.EqualTo(GameTicker.AdminObserverPrototypeName)); }); var mindId = player.ContentData()?.Mind; diff --git a/Content.IntegrationTests/Tests/Minds/MindTests.Helpers.cs b/Content.IntegrationTests/Tests/Minds/MindTests.Helpers.cs index d6b30d60a0..428380631d 100644 --- a/Content.IntegrationTests/Tests/Minds/MindTests.Helpers.cs +++ b/Content.IntegrationTests/Tests/Minds/MindTests.Helpers.cs @@ -1,7 +1,7 @@ using System.Linq; using Content.IntegrationTests.Pair; +using Content.Server.GameTicking; using Content.Server.Mind; -using Content.Server.Players; using Content.Shared.Ghost; using Content.Shared.Mind; using Content.Shared.Players; @@ -78,7 +78,7 @@ private static async Task BecomeGhost(TestPair pair, bool visit = fal await pair.Server.WaitAssertion(() => { var oldUid = player.AttachedEntity; - ghostUid = entMan.SpawnEntity("MobObserver", MapCoordinates.Nullspace); + ghostUid = entMan.SpawnEntity(GameTicker.ObserverPrototypeName, MapCoordinates.Nullspace); mindId = mindSys.GetMind(player.UserId)!.Value; Assert.That(mindId, Is.Not.EqualTo(default(EntityUid))); mind = entMan.GetComponent(mindId); diff --git a/Content.IntegrationTests/Tests/Minds/MindTests.ReconnectTests.cs b/Content.IntegrationTests/Tests/Minds/MindTests.ReconnectTests.cs index 3cac766825..d31d5f9262 100644 --- a/Content.IntegrationTests/Tests/Minds/MindTests.ReconnectTests.cs +++ b/Content.IntegrationTests/Tests/Minds/MindTests.ReconnectTests.cs @@ -1,8 +1,6 @@ using System.Linq; using Content.Shared.Ghost; using Content.Shared.Mind; -using NUnit.Framework.Interfaces; -using Robust.Server.GameObjects; using Robust.Server.Player; using Robust.Shared.GameObjects; using Robust.Shared.Map; @@ -124,7 +122,7 @@ public async Task TestVisitingGhostReconnect() [Test] public async Task TestVisitingReconnect() { - await using var pair = await SetupPair(); + await using var pair = await SetupPair(true); var entMan = pair.Server.ResolveDependency(); var mindSys = entMan.System(); var mind = GetMind(pair); diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index 4b7f9c40b7..b3b585c25a 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -64,9 +64,11 @@ public sealed class PostMapInitTest "MeteorArena", "Pebble", //DeltaV "Edge", //DeltaV + "Shoukou", //DeltaV "Tortuga", //DeltaV "Arena", //DeltaV - "Asterisk" //DeltaV + "Asterisk", //DeltaV + "TheHive" //DeltaV }; /// diff --git a/Content.IntegrationTests/Tests/Preferences/ServerDbSqliteTests.cs b/Content.IntegrationTests/Tests/Preferences/ServerDbSqliteTests.cs index 35aedf43f2..1bc2885e97 100644 --- a/Content.IntegrationTests/Tests/Preferences/ServerDbSqliteTests.cs +++ b/Content.IntegrationTests/Tests/Preferences/ServerDbSqliteTests.cs @@ -8,9 +8,11 @@ using Microsoft.EntityFrameworkCore; using Robust.Shared.Configuration; using Robust.Shared.Enums; +using Robust.Shared.Log; using Robust.Shared.Maths; using Robust.Shared.Network; using Robust.Shared.Prototypes; +using Robust.UnitTesting; namespace Content.IntegrationTests.Tests.Preferences { @@ -64,20 +66,22 @@ private static HumanoidCharacterProfile CharlieCharlieson() ); } - private static ServerDbSqlite GetDb(IConfigurationManager cfgManager) + private static ServerDbSqlite GetDb(RobustIntegrationTest.ServerIntegrationInstance server) { + var cfg = server.ResolveDependency(); + var opsLog = server.ResolveDependency().GetSawmill("db.ops"); var builder = new DbContextOptionsBuilder(); var conn = new SqliteConnection("Data Source=:memory:"); conn.Open(); builder.UseSqlite(conn); - return new ServerDbSqlite(() => builder.Options, true, cfgManager, true); + return new ServerDbSqlite(() => builder.Options, true, cfg, true, opsLog); } [Test] public async Task TestUserDoesNotExist() { var pair = await PoolManager.GetServerClient(); - var db = GetDb(pair.Server.ResolveDependency()); + var db = GetDb(pair.Server); // Database should be empty so a new GUID should do it. Assert.Null(await db.GetPlayerPreferencesAsync(NewUserId())); @@ -88,7 +92,7 @@ public async Task TestUserDoesNotExist() public async Task TestInitPrefs() { var pair = await PoolManager.GetServerClient(); - var db = GetDb(pair.Server.ResolveDependency()); + var db = GetDb(pair.Server); var username = new NetUserId(new Guid("640bd619-fc8d-4fe2-bf3c-4a5fb17d6ddd")); const int slot = 0; var originalProfile = CharlieCharlieson(); @@ -103,7 +107,7 @@ public async Task TestDeleteCharacter() { var pair = await PoolManager.GetServerClient(); var server = pair.Server; - var db = GetDb(server.ResolveDependency()); + var db = GetDb(server); var username = new NetUserId(new Guid("640bd619-fc8d-4fe2-bf3c-4a5fb17d6ddd")); await db.InitPrefsAsync(username, new HumanoidCharacterProfile()); await db.SaveCharacterSlotAsync(username, CharlieCharlieson(), 1); diff --git a/Content.IntegrationTests/Tests/Replays/ReplayTests.cs b/Content.IntegrationTests/Tests/Replays/ReplayTests.cs index 7e2d3da4b6..dcff6c3b45 100644 --- a/Content.IntegrationTests/Tests/Replays/ReplayTests.cs +++ b/Content.IntegrationTests/Tests/Replays/ReplayTests.cs @@ -14,7 +14,11 @@ public sealed class ReplayTests [Test] public async Task AutoRecordReplayTest() { - var settings = new PoolSettings {DummyTicker = false}; + var settings = new PoolSettings + { + DummyTicker = false, + Dirty = true + }; await using var pair = await PoolManager.GetServerClient(settings); var server = pair.Server; diff --git a/Content.IntegrationTests/Tests/ResettingEntitySystemTests.cs b/Content.IntegrationTests/Tests/ResettingEntitySystemTests.cs index 98fb84210f..d5c2a9124d 100644 --- a/Content.IntegrationTests/Tests/ResettingEntitySystemTests.cs +++ b/Content.IntegrationTests/Tests/ResettingEntitySystemTests.cs @@ -33,7 +33,8 @@ public async Task ResettingEntitySystemResetTest() await using var pair = await PoolManager.GetServerClient(new PoolSettings { DummyTicker = false, - Connected = true + Connected = true, + Dirty = true }); var server = pair.Server; diff --git a/Content.IntegrationTests/Tests/RestartRoundTest.cs b/Content.IntegrationTests/Tests/RestartRoundTest.cs index edc6d356ea..69c9a7dedf 100644 --- a/Content.IntegrationTests/Tests/RestartRoundTest.cs +++ b/Content.IntegrationTests/Tests/RestartRoundTest.cs @@ -1,6 +1,5 @@ using Content.Server.GameTicking; using Robust.Shared.GameObjects; -using Robust.Shared.IoC; namespace Content.IntegrationTests.Tests { @@ -13,7 +12,8 @@ public async Task Test() await using var pair = await PoolManager.GetServerClient(new PoolSettings { DummyTicker = false, - Connected = true + Connected = true, + Dirty = true }); var server = pair.Server; var sysManager = server.ResolveDependency(); diff --git a/Content.IntegrationTests/Tests/RoundEndTest.cs b/Content.IntegrationTests/Tests/RoundEndTest.cs index 4dda2190e8..d77ffb867a 100644 --- a/Content.IntegrationTests/Tests/RoundEndTest.cs +++ b/Content.IntegrationTests/Tests/RoundEndTest.cs @@ -16,7 +16,8 @@ public async Task Test() await using var pair = await PoolManager.GetServerClient(new PoolSettings { DummyTicker = false, - Connected = true + Connected = true, + Dirty = true }); var server = pair.Server; diff --git a/Content.IntegrationTests/Tests/Sprite/ItemSpriteTest.cs b/Content.IntegrationTests/Tests/Sprite/ItemSpriteTest.cs new file mode 100644 index 0000000000..96f710d468 --- /dev/null +++ b/Content.IntegrationTests/Tests/Sprite/ItemSpriteTest.cs @@ -0,0 +1,64 @@ +#nullable enable +using System.Collections.Generic; +using Content.Shared.Item; +using Robust.Client.GameObjects; +using Robust.Shared.GameObjects; +using Robust.Shared.Prototypes; + +namespace Content.IntegrationTests.Tests.Sprite; + +/// +/// This test checks that all items have a visible sprite. The general rationale is that all items can be picked up +/// by players, thus they need to be visible and have a sprite that can be rendered on screen and in their hands GUI. +/// This has nothing to do with in-hand sprites. +/// +/// +/// If a prototype fails this test, its probably either because it: +/// - Should be marked abstract +/// - inherits from BaseItem despite not being an item +/// - Shouldn't have an item component +/// - Is missing the required sprite information. +/// If none of the abveo are true, it might need to be added to the list of ignored components, see +/// +/// +[TestFixture] +public sealed class PrototypeSaveTest +{ + private static HashSet _ignored = new() + { + // The only prototypes that should get ignored are those that REQUIRE setup to get a sprite. At that point it is + // the responsibility of the spawner to ensure that a valid sprite is set. + "HandVirtualItem" + }; + + [Test] + public async Task AllItemsHaveSpritesTest() + { + var settings = new PoolSettings() {Connected = true}; // client needs to be in-game + await using var pair = await PoolManager.GetServerClient(settings); + List badPrototypes = new(); + + await pair.Client.WaitPost(() => + { + foreach (var proto in pair.GetPrototypesWithComponent(_ignored)) + { + var dummy = pair.Client.EntMan.Spawn(proto.ID); + pair.Client.EntMan.RunMapInit(dummy, pair.Client.MetaData(dummy)); + var spriteComponent = pair.Client.EntMan.GetComponentOrNull(dummy); + if (spriteComponent?.Icon == null) + badPrototypes.Add(proto); + pair.Client.EntMan.DeleteEntity(dummy); + } + }); + + Assert.Multiple(() => + { + foreach (var proto in badPrototypes) + { + Assert.Fail($"Item prototype has no sprite: {proto.ID}. It should probably either be marked as abstract, not be an item, or have a valid sprite"); + } + }); + + await pair.CleanReturnAsync(); + } +} diff --git a/Content.IntegrationTests/Tests/StackTest.cs b/Content.IntegrationTests/Tests/StackTest.cs index a34dd7e53d..f991a5a5e5 100644 --- a/Content.IntegrationTests/Tests/StackTest.cs +++ b/Content.IntegrationTests/Tests/StackTest.cs @@ -19,7 +19,7 @@ public async Task StackCorrectItemSize() Assert.Multiple(() => { - foreach (var entity in PoolManager.GetPrototypesWithComponent(server)) + foreach (var entity in pair.GetPrototypesWithComponent()) { if (!entity.TryGetComponent(out var stackComponent, compFact) || !entity.TryGetComponent(out var itemComponent, compFact)) diff --git a/Content.IntegrationTests/Tests/StorageTest.cs b/Content.IntegrationTests/Tests/StorageTest.cs index ea7f3f5866..6bcdb84df4 100644 --- a/Content.IntegrationTests/Tests/StorageTest.cs +++ b/Content.IntegrationTests/Tests/StorageTest.cs @@ -80,7 +80,7 @@ public async Task TestSufficientSpaceForFill() Assert.Multiple(() => { - foreach (var proto in PoolManager.GetPrototypesWithComponent(server)) + foreach (var proto in pair.GetPrototypesWithComponent()) { int capacity; var isEntStorage = false; diff --git a/Content.MapRenderer/Painters/DecalPainter.cs b/Content.MapRenderer/Painters/DecalPainter.cs index ffcd140a6e..f863595f9a 100644 --- a/Content.MapRenderer/Painters/DecalPainter.cs +++ b/Content.MapRenderer/Painters/DecalPainter.cs @@ -4,6 +4,7 @@ using Content.Shared.Decals; using Robust.Client.ResourceManagement; using Robust.Client.Utility; +using Robust.Shared.ContentPack; using Robust.Shared.Prototypes; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -16,7 +17,7 @@ namespace Content.MapRenderer.Painters; public sealed class DecalPainter { - private readonly IResourceCache _cResourceCache; + private readonly IResourceManager _resManager; private readonly IPrototypeManager _sPrototypeManager; @@ -24,7 +25,7 @@ public sealed class DecalPainter public DecalPainter(ClientIntegrationInstance client, ServerIntegrationInstance server) { - _cResourceCache = client.ResolveDependency(); + _resManager = client.ResolveDependency(); _sPrototypeManager = server.ResolveDependency(); } @@ -63,7 +64,7 @@ private void Run(Image canvas, DecalData data) Stream stream; if (sprite is SpriteSpecifier.Texture texture) { - stream = _cResourceCache.ContentFileRead(texture.TexturePath); + stream = _resManager.ContentFileRead(texture.TexturePath); } else if (sprite is SpriteSpecifier.Rsi rsi) { @@ -73,7 +74,7 @@ private void Run(Image canvas, DecalData data) path = $"/Textures/{path}"; } - stream = _cResourceCache.ContentFileRead(path); + stream = _resManager.ContentFileRead(path); } else { diff --git a/Content.MapRenderer/Painters/EntityPainter.cs b/Content.MapRenderer/Painters/EntityPainter.cs index 79f2ed7679..de6b98711f 100644 --- a/Content.MapRenderer/Painters/EntityPainter.cs +++ b/Content.MapRenderer/Painters/EntityPainter.cs @@ -3,6 +3,7 @@ using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.ResourceManagement; +using Robust.Shared.ContentPack; using Robust.Shared.GameObjects; using Robust.Shared.Timing; using SixLabors.ImageSharp; @@ -14,7 +15,7 @@ namespace Content.MapRenderer.Painters; public sealed class EntityPainter { - private readonly IResourceCache _cResourceCache; + private readonly IResourceManager _resManager; private readonly Dictionary<(string path, string state), Image> _images; private readonly Image _errorImage; @@ -23,12 +24,12 @@ public sealed class EntityPainter public EntityPainter(ClientIntegrationInstance client, ServerIntegrationInstance server) { - _cResourceCache = client.ResolveDependency(); + _resManager = client.ResolveDependency(); _sEntityManager = server.ResolveDependency(); _images = new Dictionary<(string path, string state), Image>(); - _errorImage = Image.Load(_cResourceCache.ContentFileRead("/Textures/error.rsi/error.png")); + _errorImage = Image.Load(_resManager.ContentFileRead("/Textures/error.rsi/error.png")); } public void Run(Image canvas, List entities) @@ -81,7 +82,7 @@ public void Run(Image canvas, EntityData entity, SharedTransformSystem xformSyst if (!_images.TryGetValue(key, out image!)) { - var stream = _cResourceCache.ContentFileRead($"{rsi.Path}/{state.StateId}.png"); + var stream = _resManager.ContentFileRead($"{rsi.Path}/{state.StateId}.png"); image = Image.Load(stream); _images[key] = image; diff --git a/Content.MapRenderer/Painters/MapPainter.cs b/Content.MapRenderer/Painters/MapPainter.cs index 8f3dd59baf..94d58b35a0 100644 --- a/Content.MapRenderer/Painters/MapPainter.cs +++ b/Content.MapRenderer/Painters/MapPainter.cs @@ -1,9 +1,10 @@ -#nullable enable using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Content.IntegrationTests; +using Content.Server.GameTicking; +using Content.Server.Maps; using Robust.Client.GameObjects; using Robust.Server.GameObjects; using Robust.Server.Player; @@ -11,11 +12,11 @@ using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Maths; +using Robust.Shared.Prototypes; using Robust.Shared.Timing; using SixLabors.ImageSharp; using SixLabors.ImageSharp.PixelFormats; using SixLabors.ImageSharp.Processing; -using SpriteComponent = Robust.Client.GameObjects.SpriteComponent; namespace Content.MapRenderer.Painters { @@ -31,7 +32,8 @@ public static async IAsyncEnumerable> Paint(string map DummyTicker = false, Connected = true, Fresh = true, - Map = map + // Seriously whoever made MapPainter use GameMapPrototype I wish you step on a lego one time. + Map = map, }); var server = pair.Server; @@ -46,7 +48,7 @@ public static async IAsyncEnumerable> Paint(string map await client.WaitPost(() => { - if (cEntityManager.TryGetComponent(cPlayerManager.LocalPlayer!.ControlledEntity!, out SpriteComponent? sprite)) + if (cEntityManager.TryGetComponent(cPlayerManager.LocalEntity, out SpriteComponent? sprite)) { sprite.Visible = false; } @@ -62,7 +64,7 @@ await client.WaitPost(() => var tilePainter = new TilePainter(client, server); var entityPainter = new GridPainter(client, server); - (EntityUid Uid, MapGridComponent Grid)[] grids = null!; + Entity[] grids = null!; var xformQuery = sEntityManager.GetEntityQuery(); var xformSystem = sEntityManager.System(); @@ -75,8 +77,8 @@ await server.WaitPost(() => sEntityManager.DeleteEntity(playerEntity.Value); } - var mapId = sMapManager.GetAllMapIds().Last(); - grids = sMapManager.GetAllMapGrids(mapId).Select(o => (o.Owner, o)).ToArray(); + var mapId = sEntityManager.System().DefaultMap; + grids = sMapManager.GetAllGrids(mapId).ToArray(); foreach (var (uid, _) in grids) { diff --git a/Content.MapRenderer/Painters/TilePainter.cs b/Content.MapRenderer/Painters/TilePainter.cs index 461bad9f21..cac0f960c4 100644 --- a/Content.MapRenderer/Painters/TilePainter.cs +++ b/Content.MapRenderer/Painters/TilePainter.cs @@ -3,6 +3,7 @@ using System.Linq; using Robust.Client.Graphics; using Robust.Client.ResourceManagement; +using Robust.Shared.ContentPack; using Robust.Shared.GameObjects; using Robust.Shared.Map; using Robust.Shared.Map.Components; @@ -19,12 +20,12 @@ public sealed class TilePainter public const int TileImageSize = EyeManager.PixelsPerMeter; private readonly ITileDefinitionManager _sTileDefinitionManager; - private readonly IResourceCache _cResourceCache; + private readonly IResourceManager _resManager; public TilePainter(ClientIntegrationInstance client, ServerIntegrationInstance server) { _sTileDefinitionManager = server.ResolveDependency(); - _cResourceCache = client.ResolveDependency(); + _resManager = client.ResolveDependency(); } public void Run(Image gridCanvas, EntityUid gridUid, MapGridComponent grid) @@ -37,7 +38,7 @@ public void Run(Image gridCanvas, EntityUid gridUid, MapGridComponent grid) var yOffset = -bounds.Bottom; var tileSize = grid.TileSize * TileImageSize; - var images = GetTileImages(_sTileDefinitionManager, _cResourceCache, tileSize); + var images = GetTileImages(_sTileDefinitionManager, _resManager, tileSize); var i = 0; grid.GetAllTiles().AsParallel().ForAll(tile => @@ -61,7 +62,7 @@ public void Run(Image gridCanvas, EntityUid gridUid, MapGridComponent grid) private Dictionary> GetTileImages( ITileDefinitionManager tileDefinitionManager, - IResourceCache resourceCache, + IResourceManager resManager, int tileSize) { var stopwatch = new Stopwatch(); @@ -78,7 +79,7 @@ private Dictionary> GetTileImages( images[path] = new List(definition.Variants); - using var stream = resourceCache.ContentFileRead(path); + using var stream = resManager.ContentFileRead(path); Image tileSheet = Image.Load(stream); if (tileSheet.Width != tileSize * definition.Variants || tileSheet.Height != tileSize) diff --git a/Content.Packaging/ClientPackaging.cs b/Content.Packaging/ClientPackaging.cs new file mode 100644 index 0000000000..a989ebd968 --- /dev/null +++ b/Content.Packaging/ClientPackaging.cs @@ -0,0 +1,79 @@ +using System.Diagnostics; +using System.IO.Compression; +using Robust.Packaging; +using Robust.Packaging.AssetProcessing; +using Robust.Packaging.AssetProcessing.Passes; +using Robust.Packaging.Utility; +using Robust.Shared.Timing; + +namespace Content.Packaging; + +public static class ClientPackaging +{ + /// + /// Be advised this can be called from server packaging during a HybridACZ build. + /// + public static async Task PackageClient(bool skipBuild, IPackageLogger logger) + { + logger.Info("Building client..."); + + if (!skipBuild) + { + await ProcessHelpers.RunCheck(new ProcessStartInfo + { + FileName = "dotnet", + ArgumentList = + { + "build", + Path.Combine("Content.Client", "Content.Client.csproj"), + "-c", "Release", + "--nologo", + "/v:m", + "/t:Rebuild", + "/p:FullRelease=true", + "/m" + } + }); + } + + logger.Info("Packaging client..."); + + var sw = RStopwatch.StartNew(); + { + await using var zipFile = + File.Open(Path.Combine("release", "SS14.Client.zip"), FileMode.Create, FileAccess.ReadWrite); + using var zip = new ZipArchive(zipFile, ZipArchiveMode.Update); + var writer = new AssetPassZipWriter(zip); + + await WriteResources("", writer, logger, default); + await writer.FinishedTask; + } + + logger.Info($"Finished packaging client in {sw.Elapsed}"); + } + + public static async Task WriteResources( + string contentDir, + AssetPass pass, + IPackageLogger logger, + CancellationToken cancel) + { + var graph = new RobustClientAssetGraph(); + pass.Dependencies.Add(new AssetPassDependency(graph.Output.Name)); + + AssetGraph.CalculateGraph(graph.AllPasses.Append(pass).ToArray(), logger); + + var inputPass = graph.Input; + + await RobustSharedPackaging.WriteContentAssemblies( + inputPass, + contentDir, + "Content.Client", + new[] { "Content.Client", "Content.Shared", "Content.Shared.Database" }, + cancel: cancel); + + await RobustClientPackaging.WriteClientResources(contentDir, pass, cancel); + + inputPass.InjectFinished(); + } +} diff --git a/Content.Packaging/CommandLineArgs.cs b/Content.Packaging/CommandLineArgs.cs new file mode 100644 index 0000000000..9f2b075535 --- /dev/null +++ b/Content.Packaging/CommandLineArgs.cs @@ -0,0 +1,139 @@ +using System.Diagnostics.CodeAnalysis; + +namespace Content.Packaging; + +public sealed class CommandLineArgs +{ + // PJB forgib me + + /// + /// Generate client or server. + /// + public bool Client { get; set; } + + /// + /// Should we also build the relevant project. + /// + public bool SkipBuild { get; set; } + + /// + /// Should we wipe the release folder or ignore it. + /// + public bool WipeRelease { get; set; } + + /// + /// Platforms for server packaging. + /// + public List? Platforms { get; set; } + + /// + /// Use HybridACZ for server packaging. + /// + public bool HybridAcz { get; set; } + + // CommandLineArgs, 3rd of her name. + public static bool TryParse(IReadOnlyList args, [NotNullWhen(true)] out CommandLineArgs? parsed) + { + parsed = null; + bool? client = null; + var skipBuild = false; + var wipeRelease = true; + var hybridAcz = false; + List? platforms = null; + + using var enumerator = args.GetEnumerator(); + var i = -1; + + while (enumerator.MoveNext()) + { + i++; + var arg = enumerator.Current; + if (i == 0) + { + if (arg == "client") + { + client = true; + } + else if (arg == "server") + { + client = false; + } + else + { + return false; + } + + continue; + } + + if (arg == "--skip-build") + { + skipBuild = true; + } + else if (arg == "--no-wipe-release") + { + wipeRelease = false; + } + else if (arg == "--hybrid-acz") + { + hybridAcz = true; + } + else if (arg == "--platform") + { + if (!enumerator.MoveNext()) + { + Console.WriteLine("No platform provided"); + return false; + } + + platforms ??= new List(); + platforms.Add(enumerator.Current); + } + else if (arg == "--help") + { + PrintHelp(); + return false; + } + else + { + Console.WriteLine("Unknown argument: {0}", arg); + } + } + + if (client == null) + { + Console.WriteLine("Client / server packaging unspecified."); + return false; + } + + parsed = new CommandLineArgs(client.Value, skipBuild, wipeRelease, hybridAcz, platforms); + return true; + } + + private static void PrintHelp() + { + Console.WriteLine(@" +Usage: Content.Packaging [client/server] [options] + +Options: + --skip-build Should we skip building the project and use what's already there. + --no-wipe-release Don't wipe the release folder before creating files. + --hybrid-acz Use HybridACZ for server builds. + --platform Platform for server builds. Default will output several x64 targets. +"); + } + + private CommandLineArgs( + bool client, + bool skipBuild, + bool wipeRelease, + bool hybridAcz, + List? platforms) + { + Client = client; + SkipBuild = skipBuild; + WipeRelease = wipeRelease; + HybridAcz = hybridAcz; + Platforms = platforms; + } +} diff --git a/Content.Packaging/Content.Packaging.csproj b/Content.Packaging/Content.Packaging.csproj index 1b5acec3fd..dcbac5066d 100644 --- a/Content.Packaging/Content.Packaging.csproj +++ b/Content.Packaging/Content.Packaging.csproj @@ -3,8 +3,12 @@ Exe enable enable + True + + + diff --git a/Content.Packaging/ContentPackaging.cs b/Content.Packaging/ContentPackaging.cs deleted file mode 100644 index 0f8c7c747b..0000000000 --- a/Content.Packaging/ContentPackaging.cs +++ /dev/null @@ -1,32 +0,0 @@ -using Robust.Packaging; -using Robust.Packaging.AssetProcessing; - -namespace Content.Packaging; - -public static class ContentPackaging -{ - public static async Task WriteResources( - string contentDir, - AssetPass pass, - IPackageLogger logger, - CancellationToken cancel) - { - var graph = new RobustClientAssetGraph(); - pass.Dependencies.Add(new AssetPassDependency(graph.Output.Name)); - - AssetGraph.CalculateGraph(graph.AllPasses.Append(pass).ToArray(), logger); - - var inputPass = graph.Input; - - await RobustClientPackaging.WriteContentAssemblies( - inputPass, - contentDir, - "Content.Client", - new[] { "Content.Client", "Content.Shared", "Content.Shared.Database" }, - cancel); - - await RobustClientPackaging.WriteClientResources(contentDir, inputPass, cancel); - - inputPass.InjectFinished(); - } -} diff --git a/Content.Packaging/Program.cs b/Content.Packaging/Program.cs index f965ec9995..ba5924ec3e 100644 --- a/Content.Packaging/Program.cs +++ b/Content.Packaging/Program.cs @@ -1,68 +1,44 @@ -using System.Diagnostics; -using System.IO.Compression; -using Content.Packaging; +using Content.Packaging; using Robust.Packaging; -using Robust.Packaging.AssetProcessing.Passes; -using Robust.Packaging.Utility; -using Robust.Shared.Timing; IPackageLogger logger = new PackageLoggerConsole(); -logger.Info("Clearing release/ directory"); -Directory.CreateDirectory("release"); +if (!CommandLineArgs.TryParse(args, out var parsed)) +{ + logger.Error("Unable to parse args, aborting."); + return; +} -var skipBuild = args.Contains("--skip-build"); +if (parsed.WipeRelease) + WipeRelease(); -if (!skipBuild) +if (!parsed.SkipBuild) WipeBin(); -await Build(skipBuild); - -async Task Build(bool skipBuild) +if (parsed.Client) { - logger.Info("Building project..."); - - if (!skipBuild) - { - await ProcessHelpers.RunCheck(new ProcessStartInfo - { - FileName = "dotnet", - ArgumentList = - { - "build", - Path.Combine("Content.Client", "Content.Client.csproj"), - "-c", "Release", - "--nologo", - "/v:m", - "/t:Rebuild", - "/p:FullRelease=true", - "/m" - } - }); - } - - logger.Info("Packaging client..."); - - var sw = RStopwatch.StartNew(); - - { - using var zipFile = - File.Open(Path.Combine("release", "SS14.Client.zip"), FileMode.Create, FileAccess.ReadWrite); - using var zip = new ZipArchive(zipFile, ZipArchiveMode.Update); - var writer = new AssetPassZipWriter(zip); - - await ContentPackaging.WriteResources("", writer, logger, default); - - await writer.FinishedTask; - } - - logger.Info($"Finished packaging in {sw.Elapsed}"); + await ClientPackaging.PackageClient(parsed.SkipBuild, logger); +} +else +{ + await ServerPackaging.PackageServer(parsed.SkipBuild, parsed.HybridAcz, logger, parsed.Platforms); } - void WipeBin() { logger.Info("Clearing old build artifacts (if any)..."); - Directory.Delete("bin", recursive: true); + if (Directory.Exists("bin")) + Directory.Delete("bin", recursive: true); +} + +void WipeRelease() +{ + if (Directory.Exists("release")) + { + logger.Info("Cleaning old release packages (release/)..."); + Directory.Delete("release", recursive: true); + } + + Directory.CreateDirectory("release"); } diff --git a/Content.Packaging/ServerPackaging.cs b/Content.Packaging/ServerPackaging.cs new file mode 100644 index 0000000000..ba489629f7 --- /dev/null +++ b/Content.Packaging/ServerPackaging.cs @@ -0,0 +1,222 @@ +using System.Diagnostics; +using System.IO.Compression; +using Robust.Packaging; +using Robust.Packaging.AssetProcessing; +using Robust.Packaging.AssetProcessing.Passes; +using Robust.Packaging.Utility; +using Robust.Shared.Timing; + +namespace Content.Packaging; + +public static class ServerPackaging +{ + private static readonly List Platforms = new() + { + new PlatformReg("win-x64", "Windows", true), + new PlatformReg("linux-x64", "Linux", true), + new PlatformReg("linux-arm64", "Linux", true), + new PlatformReg("osx-x64", "MacOS", true), + // Non-default platforms (i.e. for Watchdog Git) + new PlatformReg("win-x86", "Windows", false), + new PlatformReg("linux-x86", "Linux", false), + new PlatformReg("linux-arm", "Linux", false), + }; + + private static List PlatformRids => Platforms + .Select(o => o.Rid) + .ToList(); + + private static List PlatformRidsDefault => Platforms + .Where(o => o.BuildByDefault) + .Select(o => o.Rid) + .ToList(); + + private static readonly List ServerContentAssemblies = new() + { + "Content.Server.Database", + "Content.Server", + "Content.Shared", + "Content.Shared.Database", + }; + + private static readonly List ServerExtraAssemblies = new() + { + // Python script had Npgsql. though we want Npgsql.dll as well soooo + "Npgsql", + "Microsoft", + }; + + private static readonly List ServerNotExtraAssemblies = new() + { + "Microsoft.CodeAnalysis", + }; + + private static readonly HashSet BinSkipFolders = new() + { + // Roslyn localization files, screw em. + "cs", + "de", + "es", + "fr", + "it", + "ja", + "ko", + "pl", + "pt-BR", + "ru", + "tr", + "zh-Hans", + "zh-Hant" + }; + + public static async Task PackageServer(bool skipBuild, bool hybridAcz, IPackageLogger logger, List? platforms = null) + { + if (platforms == null) + { + platforms ??= PlatformRidsDefault; + } + + if (hybridAcz) + { + // Hybrid ACZ involves a file "Content.Client.zip" in the server executable directory. + // Rather than hosting the client ZIP on the watchdog or on a separate server, + // Hybrid ACZ uses the ACZ hosting functionality to host it as part of the status host, + // which means that features such as automatic UPnP forwarding still work properly. + await ClientPackaging.PackageClient(skipBuild, logger); + } + + // Good variable naming right here. + foreach (var platform in Platforms) + { + if (!platforms.Contains(platform.Rid)) + continue; + + await BuildPlatform(platform, skipBuild, hybridAcz, logger); + } + } + + private static async Task BuildPlatform(PlatformReg platform, bool skipBuild, bool hybridAcz, IPackageLogger logger) + { + logger.Info($"Building project for {platform}..."); + + if (!skipBuild) + { + await ProcessHelpers.RunCheck(new ProcessStartInfo + { + FileName = "dotnet", + ArgumentList = + { + "build", + Path.Combine("Content.Server", "Content.Server.csproj"), + "-c", "Release", + "--nologo", + "/v:m", + $"/p:TargetOs={platform.TargetOs}", + "/t:Rebuild", + "/p:FullRelease=true", + "/m" + } + }); + + await PublishClientServer(platform.Rid, platform.TargetOs); + } + + logger.Info($"Packaging {platform.Rid} server..."); + + var sw = RStopwatch.StartNew(); + { + await using var zipFile = + File.Open(Path.Combine("release", $"SS14.Server_{platform.Rid}.zip"), FileMode.Create, FileAccess.ReadWrite); + using var zip = new ZipArchive(zipFile, ZipArchiveMode.Update); + var writer = new AssetPassZipWriter(zip); + + await WriteServerResources(platform, "", writer, logger, hybridAcz, default); + await writer.FinishedTask; + } + + logger.Info($"Finished packaging server in {sw.Elapsed}"); + } + + private static async Task PublishClientServer(string runtime, string targetOs) + { + await ProcessHelpers.RunCheck(new ProcessStartInfo + { + FileName = "dotnet", + ArgumentList = + { + "publish", + "--runtime", runtime, + "--no-self-contained", + "-c", "Release", + $"/p:TargetOs={targetOs}", + "/p:FullRelease=True", + "/m", + "RobustToolbox/Robust.Server/Robust.Server.csproj" + } + }); + } + + private static async Task WriteServerResources( + PlatformReg platform, + string contentDir, + AssetPass pass, + IPackageLogger logger, + bool hybridAcz, + CancellationToken cancel) + { + var graph = new RobustServerAssetGraph(); + var passes = graph.AllPasses.ToList(); + + pass.Dependencies.Add(new AssetPassDependency(graph.Output.Name)); + passes.Add(pass); + + AssetGraph.CalculateGraph(passes, logger); + + var inputPassCore = graph.InputCore; + var inputPassResources = graph.InputResources; + var contentAssemblies = new List(ServerContentAssemblies); + + // Additional assemblies that need to be copied such as EFCore. + var sourcePath = Path.Combine(contentDir, "bin", "Content.Server"); + + // Should this be an asset pass? + // For future archaeologists I just want audio rework to work and need the audio pass so + // just porting this as is from python. + foreach (var fullPath in Directory.EnumerateFiles(sourcePath, "*.*", SearchOption.AllDirectories)) + { + var fileName = Path.GetFileNameWithoutExtension(fullPath); + + if (!ServerNotExtraAssemblies.Any(o => fileName.StartsWith(o)) && ServerExtraAssemblies.Any(o => fileName.StartsWith(o))) + { + contentAssemblies.Add(fileName); + } + } + + await RobustSharedPackaging.DoResourceCopy( + Path.Combine("RobustToolbox", "bin", "Server", + platform.Rid, + "publish"), + inputPassCore, + BinSkipFolders, + cancel: cancel); + + await RobustSharedPackaging.WriteContentAssemblies( + inputPassResources, + contentDir, + "Content.Server", + contentAssemblies, + cancel: cancel); + + await RobustServerPackaging.WriteServerResources(contentDir, inputPassResources, cancel); + + if (hybridAcz) + { + inputPassCore.InjectFileFromDisk("Content.Client.zip", Path.Combine("release", "SS14.Client.zip")); + } + + inputPassCore.InjectFinished(); + inputPassResources.InjectFinished(); + } + + private readonly record struct PlatformReg(string Rid, string TargetOs, bool BuildByDefault); +} diff --git a/Content.Replay/Menu/ReplayMainMenu.cs b/Content.Replay/Menu/ReplayMainMenu.cs index 5792c1bc01..8bd99f82fb 100644 --- a/Content.Replay/Menu/ReplayMainMenu.cs +++ b/Content.Replay/Menu/ReplayMainMenu.cs @@ -47,7 +47,7 @@ protected override void Startup() _mainMenuControl.QuitButton.OnPressed += QuitButtonPressed; _mainMenuControl.OptionsButton.OnPressed += OptionsButtonPressed; _mainMenuControl.FolderButton.OnPressed += OnFolderPressed; - _mainMenuControl.LoadButton.OnPressed += OnLoadpressed; + _mainMenuControl.LoadButton.OnPressed += OnLoadPressed; _directory = new ResPath(_cfg.GetCVar(CVars.ReplayDirectory)).ToRootedPath(); RefreshReplays(); @@ -205,7 +205,7 @@ private void OnFolderPressed(BaseButton.ButtonEventArgs obj) _resMan.UserData.OpenOsWindow(_directory); } - private void OnLoadpressed(BaseButton.ButtonEventArgs obj) + private void OnLoadPressed(BaseButton.ButtonEventArgs obj) { if (_selected.HasValue) { diff --git a/Content.Server.Database/Migrations/Postgres/20231126234054_ConnectionLogServer.Designer.cs b/Content.Server.Database/Migrations/Postgres/20231126234054_ConnectionLogServer.Designer.cs new file mode 100644 index 0000000000..71440b79cb --- /dev/null +++ b/Content.Server.Database/Migrations/Postgres/20231126234054_ConnectionLogServer.Designer.cs @@ -0,0 +1,1758 @@ +// +using System; +using System.Net; +using System.Text.Json; +using Content.Server.Database; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; + +#nullable disable + +namespace Content.Server.Database.Migrations.Postgres +{ + [DbContext(typeof(PostgresServerDbContext))] + [Migration("20231126234054_ConnectionLogServer")] + partial class ConnectionLogServer + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "7.0.4") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("AdminRankId") + .HasColumnType("integer") + .HasColumnName("admin_rank_id"); + + b.Property("Title") + .HasColumnType("text") + .HasColumnName("title"); + + b.HasKey("UserId") + .HasName("PK_admin"); + + b.HasIndex("AdminRankId") + .HasDatabaseName("IX_admin_admin_rank_id"); + + b.ToTable("admin", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_flag_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AdminId") + .HasColumnType("uuid") + .HasColumnName("admin_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("text") + .HasColumnName("flag"); + + b.Property("Negative") + .HasColumnType("boolean") + .HasColumnName("negative"); + + b.HasKey("Id") + .HasName("PK_admin_flag"); + + b.HasIndex("AdminId") + .HasDatabaseName("IX_admin_flag_admin_id"); + + b.HasIndex("Flag", "AdminId") + .IsUnique(); + + b.ToTable("admin_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Property("Id") + .HasColumnType("integer") + .HasColumnName("admin_log_id"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Date") + .HasColumnType("timestamp with time zone") + .HasColumnName("date"); + + b.Property("Impact") + .HasColumnType("smallint") + .HasColumnName("impact"); + + b.Property("Json") + .IsRequired() + .HasColumnType("jsonb") + .HasColumnName("json"); + + b.Property("Message") + .IsRequired() + .HasColumnType("text") + .HasColumnName("message"); + + b.Property("Type") + .HasColumnType("integer") + .HasColumnName("type"); + + b.HasKey("Id", "RoundId") + .HasName("PK_admin_log"); + + b.HasIndex("Date"); + + b.HasIndex("Message") + .HasAnnotation("Npgsql:TsVectorConfig", "english"); + + NpgsqlIndexBuilderExtensions.HasMethod(b.HasIndex("Message"), "GIN"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_log_round_id"); + + b.HasIndex("Type") + .HasDatabaseName("IX_admin_log_type"); + + b.ToTable("admin_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("LogId") + .HasColumnType("integer") + .HasColumnName("log_id"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.HasKey("PlayerUserId", "LogId", "RoundId") + .HasName("PK_admin_log_player"); + + b.HasIndex("LogId", "RoundId"); + + b.ToTable("admin_log_player", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminMessage", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_messages_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("uuid") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("boolean") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("uuid") + .HasColumnName("deleted_by_id"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("character varying(4096)") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Seen") + .HasColumnType("boolean") + .HasColumnName("seen"); + + b.HasKey("Id") + .HasName("PK_admin_messages"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_messages_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_messages_round_id"); + + b.ToTable("admin_messages", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_notes_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("uuid") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("boolean") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("uuid") + .HasColumnName("deleted_by_id"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .IsRequired() + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("character varying(4096)") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Secret") + .HasColumnType("boolean") + .HasColumnName("secret"); + + b.Property("Severity") + .HasColumnType("integer") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_admin_notes"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_notes_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_notes_round_id"); + + b.ToTable("admin_notes", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_rank_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_admin_rank"); + + b.ToTable("admin_rank", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_rank_flag_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AdminRankId") + .HasColumnType("integer") + .HasColumnName("admin_rank_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("text") + .HasColumnName("flag"); + + b.HasKey("Id") + .HasName("PK_admin_rank_flag"); + + b.HasIndex("AdminRankId"); + + b.HasIndex("Flag", "AdminRankId") + .IsUnique(); + + b.ToTable("admin_rank_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminWatchlist", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_watchlists_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("uuid") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("boolean") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("uuid") + .HasColumnName("deleted_by_id"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .IsRequired() + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("character varying(4096)") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.HasKey("Id") + .HasName("PK_admin_watchlists"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_watchlists_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_watchlists_round_id"); + + b.ToTable("admin_watchlists", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("antag_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AntagName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("antag_name"); + + b.Property("ProfileId") + .HasColumnType("integer") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_antag"); + + b.HasIndex("ProfileId", "AntagName") + .IsUnique(); + + b.ToTable("antag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AssignedUserId", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("assigned_user_id_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_assigned_user_id"); + + b.HasIndex("UserId") + .IsUnique(); + + b.HasIndex("UserName") + .IsUnique(); + + b.ToTable("assigned_user_id", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("connection_log_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Address") + .IsRequired() + .HasColumnType("inet") + .HasColumnName("address"); + + b.Property("Denied") + .HasColumnType("smallint") + .HasColumnName("denied"); + + b.Property("HWId") + .HasColumnType("bytea") + .HasColumnName("hwid"); + + b.Property("ServerId") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasDefaultValue(0) + .HasColumnName("server_id"); + + b.Property("Time") + .HasColumnType("timestamp with time zone") + .HasColumnName("time"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_connection_log"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_connection_log_server_id"); + + b.HasIndex("UserId"); + + b.ToTable("connection_log", null, t => + { + t.HasCheckConstraint("AddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= address"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("job_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("JobName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("job_name"); + + b.Property("Priority") + .HasColumnType("integer") + .HasColumnName("priority"); + + b.Property("ProfileId") + .HasColumnType("integer") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_job"); + + b.HasIndex("ProfileId"); + + b.HasIndex("ProfileId", "JobName") + .IsUnique(); + + b.HasIndex(new[] { "ProfileId" }, "IX_job_one_high_priority") + .IsUnique() + .HasFilter("priority = 3"); + + b.ToTable("job", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.PlayTime", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("play_time_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("PlayerId") + .HasColumnType("uuid") + .HasColumnName("player_id"); + + b.Property("TimeSpent") + .HasColumnType("interval") + .HasColumnName("time_spent"); + + b.Property("Tracker") + .IsRequired() + .HasColumnType("text") + .HasColumnName("tracker"); + + b.HasKey("Id") + .HasName("PK_play_time"); + + b.HasIndex("PlayerId", "Tracker") + .IsUnique(); + + b.ToTable("play_time", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("player_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("FirstSeenTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("first_seen_time"); + + b.Property("LastReadRules") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_read_rules"); + + b.Property("LastSeenAddress") + .IsRequired() + .HasColumnType("inet") + .HasColumnName("last_seen_address"); + + b.Property("LastSeenHWId") + .HasColumnType("bytea") + .HasColumnName("last_seen_hwid"); + + b.Property("LastSeenTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_seen_time"); + + b.Property("LastSeenUserName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("last_seen_user_name"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_player"); + + b.HasAlternateKey("UserId") + .HasName("ak_player_user_id"); + + b.HasIndex("LastSeenUserName"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("player", null, t => + { + t.HasCheckConstraint("LastSeenAddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= last_seen_address"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("preference_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AdminOOCColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("admin_ooc_color"); + + b.Property("SelectedCharacterSlot") + .HasColumnType("integer") + .HasColumnName("selected_character_slot"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_preference"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("preference", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("profile_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Age") + .HasColumnType("integer") + .HasColumnName("age"); + + b.Property("Backpack") + .IsRequired() + .HasColumnType("text") + .HasColumnName("backpack"); + + b.Property("CharacterName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("char_name"); + + b.Property("Clothing") + .IsRequired() + .HasColumnType("text") + .HasColumnName("clothing"); + + b.Property("EyeColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("eye_color"); + + b.Property("FacialHairColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("facial_hair_color"); + + b.Property("FacialHairName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("facial_hair_name"); + + b.Property("FlavorText") + .IsRequired() + .HasColumnType("text") + .HasColumnName("flavor_text"); + + b.Property("Gender") + .IsRequired() + .HasColumnType("text") + .HasColumnName("gender"); + + b.Property("HairColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("hair_color"); + + b.Property("HairName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("hair_name"); + + b.Property("Markings") + .HasColumnType("jsonb") + .HasColumnName("markings"); + + b.Property("PreferenceId") + .HasColumnType("integer") + .HasColumnName("preference_id"); + + b.Property("PreferenceUnavailable") + .HasColumnType("integer") + .HasColumnName("pref_unavailable"); + + b.Property("Sex") + .IsRequired() + .HasColumnType("text") + .HasColumnName("sex"); + + b.Property("SkinColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("skin_color"); + + b.Property("Slot") + .HasColumnType("integer") + .HasColumnName("slot"); + + b.Property("Species") + .IsRequired() + .HasColumnType("text") + .HasColumnName("species"); + + b.HasKey("Id") + .HasName("PK_profile"); + + b.HasIndex("PreferenceId") + .HasDatabaseName("IX_profile_preference_id"); + + b.HasIndex("Slot", "PreferenceId") + .IsUnique(); + + b.ToTable("profile", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("round_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ServerId") + .HasColumnType("integer") + .HasColumnName("server_id"); + + b.Property("StartDate") + .ValueGeneratedOnAdd() + .HasColumnType("timestamp with time zone") + .HasDefaultValue(new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified)) + .HasColumnName("start_date"); + + b.HasKey("Id") + .HasName("PK_round"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_round_server_id"); + + b.HasIndex("StartDate"); + + b.ToTable("round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_server"); + + b.ToTable("server", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_ban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property?>("Address") + .HasColumnType("inet") + .HasColumnName("address"); + + b.Property("AutoDelete") + .HasColumnType("boolean") + .HasColumnName("auto_delete"); + + b.Property("BanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("uuid") + .HasColumnName("banning_admin"); + + b.Property("ExemptFlags") + .HasColumnType("integer") + .HasColumnName("exempt_flags"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("HWId") + .HasColumnType("bytea") + .HasColumnName("hwid"); + + b.Property("Hidden") + .HasColumnType("boolean") + .HasColumnName("hidden"); + + b.Property("LastEditedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("text") + .HasColumnName("reason"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Severity") + .HasColumnType("integer") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_server_ban"); + + b.HasIndex("Address"); + + b.HasIndex("BanningAdmin"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_server_ban_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_server_ban_round_id"); + + b.ToTable("server_ban", null, t => + { + t.HasCheckConstraint("AddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= address"); + + t.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR player_user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanExemption", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("Flags") + .HasColumnType("integer") + .HasColumnName("flags"); + + b.HasKey("UserId") + .HasName("PK_server_ban_exemption"); + + b.ToTable("server_ban_exemption", null, t => + { + t.HasCheckConstraint("FlagsNotZero", "flags != 0"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_ban_hit_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("BanId") + .HasColumnType("integer") + .HasColumnName("ban_id"); + + b.Property("ConnectionId") + .HasColumnType("integer") + .HasColumnName("connection_id"); + + b.HasKey("Id") + .HasName("PK_server_ban_hit"); + + b.HasIndex("BanId") + .HasDatabaseName("IX_server_ban_hit_ban_id"); + + b.HasIndex("ConnectionId") + .HasDatabaseName("IX_server_ban_hit_connection_id"); + + b.ToTable("server_ban_hit", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_role_ban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property?>("Address") + .HasColumnType("inet") + .HasColumnName("address"); + + b.Property("BanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("uuid") + .HasColumnName("banning_admin"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("HWId") + .HasColumnType("bytea") + .HasColumnName("hwid"); + + b.Property("Hidden") + .HasColumnType("boolean") + .HasColumnName("hidden"); + + b.Property("LastEditedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("text") + .HasColumnName("reason"); + + b.Property("RoleId") + .IsRequired() + .HasColumnType("text") + .HasColumnName("role_id"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Severity") + .HasColumnType("integer") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_server_role_ban"); + + b.HasIndex("Address"); + + b.HasIndex("BanningAdmin"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_server_role_ban_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_server_role_ban_round_id"); + + b.ToTable("server_role_ban", null, t => + { + t.HasCheckConstraint("AddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= address"); + + t.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR player_user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("role_unban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("BanId") + .HasColumnType("integer") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("uuid") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_role_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_role_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("unban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("BanId") + .HasColumnType("integer") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("uuid") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("trait_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ProfileId") + .HasColumnType("integer") + .HasColumnName("profile_id"); + + b.Property("TraitName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("trait_name"); + + b.HasKey("Id") + .HasName("PK_trait"); + + b.HasIndex("ProfileId", "TraitName") + .IsUnique(); + + b.ToTable("trait", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.UploadedResourceLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("uploaded_resource_log_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Data") + .IsRequired() + .HasColumnType("bytea") + .HasColumnName("data"); + + b.Property("Date") + .HasColumnType("timestamp with time zone") + .HasColumnName("date"); + + b.Property("Path") + .IsRequired() + .HasColumnType("text") + .HasColumnName("path"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_uploaded_resource_log"); + + b.ToTable("uploaded_resource_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Whitelist", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("UserId") + .HasName("PK_whitelist"); + + b.ToTable("whitelist", (string)null); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.Property("PlayersId") + .HasColumnType("integer") + .HasColumnName("players_id"); + + b.Property("RoundsId") + .HasColumnType("integer") + .HasColumnName("rounds_id"); + + b.HasKey("PlayersId", "RoundsId") + .HasName("PK_player_round"); + + b.HasIndex("RoundsId") + .HasDatabaseName("IX_player_round_rounds_id"); + + b.ToTable("player_round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.HasOne("Content.Server.Database.AdminRank", "AdminRank") + .WithMany("Admins") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_admin_rank_admin_rank_id"); + + b.Navigation("AdminRank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.HasOne("Content.Server.Database.Admin", "Admin") + .WithMany("Flags") + .HasForeignKey("AdminId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_flag_admin_admin_id"); + + b.Navigation("Admin"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany("AdminLogs") + .HasForeignKey("RoundId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_round_round_id"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminLogs") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_player_player_user_id"); + + b.HasOne("Content.Server.Database.AdminLog", "Log") + .WithMany("Players") + .HasForeignKey("LogId", "RoundId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_admin_log_log_id_round_id"); + + b.Navigation("Log"); + + b.Navigation("Player"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminMessage", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminMessagesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminMessagesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminMessagesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminMessagesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_messages_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_messages_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminNotesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminNotesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminNotesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminNotesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_notes_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_notes_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.HasOne("Content.Server.Database.AdminRank", "Rank") + .WithMany("Flags") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_rank_flag_admin_rank_admin_rank_id"); + + b.Navigation("Rank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminWatchlist", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminWatchlistsCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminWatchlistsDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminWatchlistsLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminWatchlistsReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_watchlists_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_watchlists_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Antags") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_antag_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("ConnectionLogs") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.SetNull) + .IsRequired() + .HasConstraintName("FK_connection_log_server_server_id"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Jobs") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_job_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.HasOne("Content.Server.Database.Preference", "Preference") + .WithMany("Profiles") + .HasForeignKey("PreferenceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_preference_preference_id"); + + b.Navigation("Preference"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("Rounds") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_round_server_server_id"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminServerBansCreated") + .HasForeignKey("BanningAdmin") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_ban_player_banning_admin"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminServerBansLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_ban_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_server_ban_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithMany("BanHits") + .HasForeignKey("BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_server_ban_ban_id"); + + b.HasOne("Content.Server.Database.ConnectionLog", "Connection") + .WithMany("BanHits") + .HasForeignKey("ConnectionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_connection_log_connection_id"); + + b.Navigation("Ban"); + + b.Navigation("Connection"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminServerRoleBansCreated") + .HasForeignKey("BanningAdmin") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_role_ban_player_banning_admin"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminServerRoleBansLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_role_ban_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_server_role_ban_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.HasOne("Content.Server.Database.ServerRoleBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerRoleUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_role_unban_server_role_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_unban_server_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Traits") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_trait_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.HasOne("Content.Server.Database.Player", null) + .WithMany() + .HasForeignKey("PlayersId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_player_players_id"); + + b.HasOne("Content.Server.Database.Round", null) + .WithMany() + .HasForeignKey("RoundsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_round_rounds_id"); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Navigation("Players"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Navigation("Admins"); + + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Navigation("BanHits"); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Navigation("AdminLogs"); + + b.Navigation("AdminMessagesCreated"); + + b.Navigation("AdminMessagesDeleted"); + + b.Navigation("AdminMessagesLastEdited"); + + b.Navigation("AdminMessagesReceived"); + + b.Navigation("AdminNotesCreated"); + + b.Navigation("AdminNotesDeleted"); + + b.Navigation("AdminNotesLastEdited"); + + b.Navigation("AdminNotesReceived"); + + b.Navigation("AdminServerBansCreated"); + + b.Navigation("AdminServerBansLastEdited"); + + b.Navigation("AdminServerRoleBansCreated"); + + b.Navigation("AdminServerRoleBansLastEdited"); + + b.Navigation("AdminWatchlistsCreated"); + + b.Navigation("AdminWatchlistsDeleted"); + + b.Navigation("AdminWatchlistsLastEdited"); + + b.Navigation("AdminWatchlistsReceived"); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Navigation("Profiles"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Navigation("Antags"); + + b.Navigation("Jobs"); + + b.Navigation("Traits"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Navigation("AdminLogs"); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Navigation("ConnectionLogs"); + + b.Navigation("Rounds"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Navigation("BanHits"); + + b.Navigation("Unban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Navigation("Unban"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Content.Server.Database/Migrations/Postgres/20231126234054_ConnectionLogServer.cs b/Content.Server.Database/Migrations/Postgres/20231126234054_ConnectionLogServer.cs new file mode 100644 index 0000000000..1102ae3eb7 --- /dev/null +++ b/Content.Server.Database/Migrations/Postgres/20231126234054_ConnectionLogServer.cs @@ -0,0 +1,55 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace Content.Server.Database.Migrations.Postgres +{ + /// + public partial class ConnectionLogServer : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "server_id", + table: "connection_log", + type: "integer", + nullable: false, + defaultValue: 0); + + // Note: EF Core automatically makes indexes for all FKs. + // That's really dumb, and there's no simple way to disable this. + // So we drop the index creation command from the migration here, + // as we don't want this index: + + // migrationBuilder.CreateIndex( + // name: "IX_connection_log_server_id", + // table: "connection_log", + // column: "server_id"); + + migrationBuilder.AddForeignKey( + name: "FK_connection_log_server_server_id", + table: "connection_log", + column: "server_id", + principalTable: "server", + principalColumn: "server_id", + onDelete: ReferentialAction.SetNull); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropForeignKey( + name: "FK_connection_log_server_server_id", + table: "connection_log"); + + // migrationBuilder.DropIndex( + // name: "IX_connection_log_server_id", + // table: "connection_log"); + + migrationBuilder.DropColumn( + name: "server_id", + table: "connection_log"); + } + } +} diff --git a/Content.Server.Database/Migrations/Postgres/PostgresServerDbContextModelSnapshot.cs b/Content.Server.Database/Migrations/Postgres/PostgresServerDbContextModelSnapshot.cs index e26527be9d..fe41d338d0 100644 --- a/Content.Server.Database/Migrations/Postgres/PostgresServerDbContextModelSnapshot.cs +++ b/Content.Server.Database/Migrations/Postgres/PostgresServerDbContextModelSnapshot.cs @@ -528,6 +528,12 @@ protected override void BuildModel(ModelBuilder modelBuilder) .HasColumnType("bytea") .HasColumnName("hwid"); + b.Property("ServerId") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasDefaultValue(0) + .HasColumnName("server_id"); + b.Property("Time") .HasColumnType("timestamp with time zone") .HasColumnName("time"); @@ -544,6 +550,9 @@ protected override void BuildModel(ModelBuilder modelBuilder) b.HasKey("Id") .HasName("PK_connection_log"); + b.HasIndex("ServerId") + .HasDatabaseName("IX_connection_log_server_id"); + b.HasIndex("UserId"); b.ToTable("connection_log", null, t => @@ -1466,6 +1475,18 @@ protected override void BuildModel(ModelBuilder modelBuilder) b.Navigation("Profile"); }); + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("ConnectionLogs") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.SetNull) + .IsRequired() + .HasConstraintName("FK_connection_log_server_server_id"); + + b.Navigation("Server"); + }); + modelBuilder.Entity("Content.Server.Database.Job", b => { b.HasOne("Content.Server.Database.Profile", "Profile") @@ -1712,6 +1733,8 @@ protected override void BuildModel(ModelBuilder modelBuilder) modelBuilder.Entity("Content.Server.Database.Server", b => { + b.Navigation("ConnectionLogs"); + b.Navigation("Rounds"); }); diff --git a/Content.Server.Database/Migrations/Sqlite/20231126234049_ConnectionLogServer.Designer.cs b/Content.Server.Database/Migrations/Sqlite/20231126234049_ConnectionLogServer.Designer.cs new file mode 100644 index 0000000000..c2a135d581 --- /dev/null +++ b/Content.Server.Database/Migrations/Sqlite/20231126234049_ConnectionLogServer.Designer.cs @@ -0,0 +1,1690 @@ +// +using System; +using Content.Server.Database; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace Content.Server.Database.Migrations.Sqlite +{ + [DbContext(typeof(SqliteServerDbContext))] + [Migration("20231126234049_ConnectionLogServer")] + partial class ConnectionLogServer + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder.HasAnnotation("ProductVersion", "7.0.4"); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("AdminRankId") + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_id"); + + b.Property("Title") + .HasColumnType("TEXT") + .HasColumnName("title"); + + b.HasKey("UserId") + .HasName("PK_admin"); + + b.HasIndex("AdminRankId") + .HasDatabaseName("IX_admin_admin_rank_id"); + + b.ToTable("admin", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_flag_id"); + + b.Property("AdminId") + .HasColumnType("TEXT") + .HasColumnName("admin_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("flag"); + + b.Property("Negative") + .HasColumnType("INTEGER") + .HasColumnName("negative"); + + b.HasKey("Id") + .HasName("PK_admin_flag"); + + b.HasIndex("AdminId") + .HasDatabaseName("IX_admin_flag_admin_id"); + + b.HasIndex("Flag", "AdminId") + .IsUnique(); + + b.ToTable("admin_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Property("Id") + .HasColumnType("INTEGER") + .HasColumnName("admin_log_id"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Date") + .HasColumnType("TEXT") + .HasColumnName("date"); + + b.Property("Impact") + .HasColumnType("INTEGER") + .HasColumnName("impact"); + + b.Property("Json") + .IsRequired() + .HasColumnType("jsonb") + .HasColumnName("json"); + + b.Property("Message") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("Type") + .HasColumnType("INTEGER") + .HasColumnName("type"); + + b.HasKey("Id", "RoundId") + .HasName("PK_admin_log"); + + b.HasIndex("Date"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_log_round_id"); + + b.HasIndex("Type") + .HasDatabaseName("IX_admin_log_type"); + + b.ToTable("admin_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("LogId") + .HasColumnType("INTEGER") + .HasColumnName("log_id"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.HasKey("PlayerUserId", "LogId", "RoundId") + .HasName("PK_admin_log_player"); + + b.HasIndex("LogId", "RoundId"); + + b.ToTable("admin_log_player", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminMessage", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_messages_id"); + + b.Property("CreatedAt") + .HasColumnType("TEXT") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("TEXT") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("INTEGER") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("TEXT") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("TEXT") + .HasColumnName("deleted_by_id"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Seen") + .HasColumnType("INTEGER") + .HasColumnName("seen"); + + b.HasKey("Id") + .HasName("PK_admin_messages"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_messages_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_messages_round_id"); + + b.ToTable("admin_messages", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_notes_id"); + + b.Property("CreatedAt") + .HasColumnType("TEXT") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("TEXT") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("INTEGER") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("TEXT") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("TEXT") + .HasColumnName("deleted_by_id"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Secret") + .HasColumnType("INTEGER") + .HasColumnName("secret"); + + b.Property("Severity") + .HasColumnType("INTEGER") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_admin_notes"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_notes_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_notes_round_id"); + + b.ToTable("admin_notes", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_id"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_admin_rank"); + + b.ToTable("admin_rank", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_flag_id"); + + b.Property("AdminRankId") + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("flag"); + + b.HasKey("Id") + .HasName("PK_admin_rank_flag"); + + b.HasIndex("AdminRankId"); + + b.HasIndex("Flag", "AdminRankId") + .IsUnique(); + + b.ToTable("admin_rank_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminWatchlist", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_watchlists_id"); + + b.Property("CreatedAt") + .HasColumnType("TEXT") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("TEXT") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("INTEGER") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("TEXT") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("TEXT") + .HasColumnName("deleted_by_id"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.HasKey("Id") + .HasName("PK_admin_watchlists"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_watchlists_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_watchlists_round_id"); + + b.ToTable("admin_watchlists", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("antag_id"); + + b.Property("AntagName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("antag_name"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_antag"); + + b.HasIndex("ProfileId", "AntagName") + .IsUnique(); + + b.ToTable("antag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AssignedUserId", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("assigned_user_id_id"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_assigned_user_id"); + + b.HasIndex("UserId") + .IsUnique(); + + b.HasIndex("UserName") + .IsUnique(); + + b.ToTable("assigned_user_id", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("connection_log_id"); + + b.Property("Address") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("address"); + + b.Property("Denied") + .HasColumnType("INTEGER") + .HasColumnName("denied"); + + b.Property("HWId") + .HasColumnType("BLOB") + .HasColumnName("hwid"); + + b.Property("ServerId") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasDefaultValue(0) + .HasColumnName("server_id"); + + b.Property("Time") + .HasColumnType("TEXT") + .HasColumnName("time"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_connection_log"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_connection_log_server_id"); + + b.HasIndex("UserId"); + + b.ToTable("connection_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("job_id"); + + b.Property("JobName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("job_name"); + + b.Property("Priority") + .HasColumnType("INTEGER") + .HasColumnName("priority"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_job"); + + b.HasIndex("ProfileId"); + + b.HasIndex("ProfileId", "JobName") + .IsUnique(); + + b.HasIndex(new[] { "ProfileId" }, "IX_job_one_high_priority") + .IsUnique() + .HasFilter("priority = 3"); + + b.ToTable("job", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.PlayTime", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("play_time_id"); + + b.Property("PlayerId") + .HasColumnType("TEXT") + .HasColumnName("player_id"); + + b.Property("TimeSpent") + .HasColumnType("TEXT") + .HasColumnName("time_spent"); + + b.Property("Tracker") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("tracker"); + + b.HasKey("Id") + .HasName("PK_play_time"); + + b.HasIndex("PlayerId", "Tracker") + .IsUnique(); + + b.ToTable("play_time", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("player_id"); + + b.Property("FirstSeenTime") + .HasColumnType("TEXT") + .HasColumnName("first_seen_time"); + + b.Property("LastReadRules") + .HasColumnType("TEXT") + .HasColumnName("last_read_rules"); + + b.Property("LastSeenAddress") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_seen_address"); + + b.Property("LastSeenHWId") + .HasColumnType("BLOB") + .HasColumnName("last_seen_hwid"); + + b.Property("LastSeenTime") + .HasColumnType("TEXT") + .HasColumnName("last_seen_time"); + + b.Property("LastSeenUserName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_seen_user_name"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_player"); + + b.HasAlternateKey("UserId") + .HasName("ak_player_user_id"); + + b.HasIndex("LastSeenUserName"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("player", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("preference_id"); + + b.Property("AdminOOCColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("admin_ooc_color"); + + b.Property("SelectedCharacterSlot") + .HasColumnType("INTEGER") + .HasColumnName("selected_character_slot"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_preference"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("preference", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.Property("Age") + .HasColumnType("INTEGER") + .HasColumnName("age"); + + b.Property("Backpack") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("backpack"); + + b.Property("CharacterName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("char_name"); + + b.Property("Clothing") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("clothing"); + + b.Property("EyeColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("eye_color"); + + b.Property("FacialHairColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("facial_hair_color"); + + b.Property("FacialHairName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("facial_hair_name"); + + b.Property("FlavorText") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("flavor_text"); + + b.Property("Gender") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("gender"); + + b.Property("HairColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("hair_color"); + + b.Property("HairName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("hair_name"); + + b.Property("Markings") + .HasColumnType("jsonb") + .HasColumnName("markings"); + + b.Property("PreferenceId") + .HasColumnType("INTEGER") + .HasColumnName("preference_id"); + + b.Property("PreferenceUnavailable") + .HasColumnType("INTEGER") + .HasColumnName("pref_unavailable"); + + b.Property("Sex") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("sex"); + + b.Property("SkinColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("skin_color"); + + b.Property("Slot") + .HasColumnType("INTEGER") + .HasColumnName("slot"); + + b.Property("Species") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("species"); + + b.HasKey("Id") + .HasName("PK_profile"); + + b.HasIndex("PreferenceId") + .HasDatabaseName("IX_profile_preference_id"); + + b.HasIndex("Slot", "PreferenceId") + .IsUnique(); + + b.ToTable("profile", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("ServerId") + .HasColumnType("INTEGER") + .HasColumnName("server_id"); + + b.Property("StartDate") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasDefaultValue(new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified)) + .HasColumnName("start_date"); + + b.HasKey("Id") + .HasName("PK_round"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_round_server_id"); + + b.HasIndex("StartDate"); + + b.ToTable("round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_id"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_server"); + + b.ToTable("server", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_ban_id"); + + b.Property("Address") + .HasColumnType("TEXT") + .HasColumnName("address"); + + b.Property("AutoDelete") + .HasColumnType("INTEGER") + .HasColumnName("auto_delete"); + + b.Property("BanTime") + .HasColumnType("TEXT") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("banning_admin"); + + b.Property("ExemptFlags") + .HasColumnType("INTEGER") + .HasColumnName("exempt_flags"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("HWId") + .HasColumnType("BLOB") + .HasColumnName("hwid"); + + b.Property("Hidden") + .HasColumnType("INTEGER") + .HasColumnName("hidden"); + + b.Property("LastEditedAt") + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("reason"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Severity") + .HasColumnType("INTEGER") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_server_ban"); + + b.HasIndex("Address"); + + b.HasIndex("BanningAdmin"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_server_ban_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_server_ban_round_id"); + + b.ToTable("server_ban", null, t => + { + t.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR player_user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanExemption", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("Flags") + .HasColumnType("INTEGER") + .HasColumnName("flags"); + + b.HasKey("UserId") + .HasName("PK_server_ban_exemption"); + + b.ToTable("server_ban_exemption", null, t => + { + t.HasCheckConstraint("FlagsNotZero", "flags != 0"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_ban_hit_id"); + + b.Property("BanId") + .HasColumnType("INTEGER") + .HasColumnName("ban_id"); + + b.Property("ConnectionId") + .HasColumnType("INTEGER") + .HasColumnName("connection_id"); + + b.HasKey("Id") + .HasName("PK_server_ban_hit"); + + b.HasIndex("BanId") + .HasDatabaseName("IX_server_ban_hit_ban_id"); + + b.HasIndex("ConnectionId") + .HasDatabaseName("IX_server_ban_hit_connection_id"); + + b.ToTable("server_ban_hit", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_role_ban_id"); + + b.Property("Address") + .HasColumnType("TEXT") + .HasColumnName("address"); + + b.Property("BanTime") + .HasColumnType("TEXT") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("banning_admin"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("HWId") + .HasColumnType("BLOB") + .HasColumnName("hwid"); + + b.Property("Hidden") + .HasColumnType("INTEGER") + .HasColumnName("hidden"); + + b.Property("LastEditedAt") + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("reason"); + + b.Property("RoleId") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("role_id"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Severity") + .HasColumnType("INTEGER") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_server_role_ban"); + + b.HasIndex("Address"); + + b.HasIndex("BanningAdmin"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_server_role_ban_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_server_role_ban_round_id"); + + b.ToTable("server_role_ban", null, t => + { + t.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR player_user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("role_unban_id"); + + b.Property("BanId") + .HasColumnType("INTEGER") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("TEXT") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_role_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_role_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("unban_id"); + + b.Property("BanId") + .HasColumnType("INTEGER") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("TEXT") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("trait_id"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.Property("TraitName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("trait_name"); + + b.HasKey("Id") + .HasName("PK_trait"); + + b.HasIndex("ProfileId", "TraitName") + .IsUnique(); + + b.ToTable("trait", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.UploadedResourceLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("uploaded_resource_log_id"); + + b.Property("Data") + .IsRequired() + .HasColumnType("BLOB") + .HasColumnName("data"); + + b.Property("Date") + .HasColumnType("TEXT") + .HasColumnName("date"); + + b.Property("Path") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("path"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_uploaded_resource_log"); + + b.ToTable("uploaded_resource_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Whitelist", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("UserId") + .HasName("PK_whitelist"); + + b.ToTable("whitelist", (string)null); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.Property("PlayersId") + .HasColumnType("INTEGER") + .HasColumnName("players_id"); + + b.Property("RoundsId") + .HasColumnType("INTEGER") + .HasColumnName("rounds_id"); + + b.HasKey("PlayersId", "RoundsId") + .HasName("PK_player_round"); + + b.HasIndex("RoundsId") + .HasDatabaseName("IX_player_round_rounds_id"); + + b.ToTable("player_round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.HasOne("Content.Server.Database.AdminRank", "AdminRank") + .WithMany("Admins") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_admin_rank_admin_rank_id"); + + b.Navigation("AdminRank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.HasOne("Content.Server.Database.Admin", "Admin") + .WithMany("Flags") + .HasForeignKey("AdminId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_flag_admin_admin_id"); + + b.Navigation("Admin"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany("AdminLogs") + .HasForeignKey("RoundId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_round_round_id"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminLogs") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_player_player_user_id"); + + b.HasOne("Content.Server.Database.AdminLog", "Log") + .WithMany("Players") + .HasForeignKey("LogId", "RoundId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_admin_log_log_id_round_id"); + + b.Navigation("Log"); + + b.Navigation("Player"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminMessage", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminMessagesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminMessagesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminMessagesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminMessagesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_messages_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_messages_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminNotesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminNotesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminNotesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminNotesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_notes_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_notes_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.HasOne("Content.Server.Database.AdminRank", "Rank") + .WithMany("Flags") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_rank_flag_admin_rank_admin_rank_id"); + + b.Navigation("Rank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminWatchlist", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminWatchlistsCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminWatchlistsDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminWatchlistsLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminWatchlistsReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_watchlists_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_watchlists_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Antags") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_antag_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("ConnectionLogs") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.SetNull) + .IsRequired() + .HasConstraintName("FK_connection_log_server_server_id"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Jobs") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_job_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.HasOne("Content.Server.Database.Preference", "Preference") + .WithMany("Profiles") + .HasForeignKey("PreferenceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_preference_preference_id"); + + b.Navigation("Preference"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("Rounds") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_round_server_server_id"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminServerBansCreated") + .HasForeignKey("BanningAdmin") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_ban_player_banning_admin"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminServerBansLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_ban_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_server_ban_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithMany("BanHits") + .HasForeignKey("BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_server_ban_ban_id"); + + b.HasOne("Content.Server.Database.ConnectionLog", "Connection") + .WithMany("BanHits") + .HasForeignKey("ConnectionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_connection_log_connection_id"); + + b.Navigation("Ban"); + + b.Navigation("Connection"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminServerRoleBansCreated") + .HasForeignKey("BanningAdmin") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_role_ban_player_banning_admin"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminServerRoleBansLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_role_ban_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_server_role_ban_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.HasOne("Content.Server.Database.ServerRoleBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerRoleUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_role_unban_server_role_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_unban_server_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Traits") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_trait_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.HasOne("Content.Server.Database.Player", null) + .WithMany() + .HasForeignKey("PlayersId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_player_players_id"); + + b.HasOne("Content.Server.Database.Round", null) + .WithMany() + .HasForeignKey("RoundsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_round_rounds_id"); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Navigation("Players"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Navigation("Admins"); + + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Navigation("BanHits"); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Navigation("AdminLogs"); + + b.Navigation("AdminMessagesCreated"); + + b.Navigation("AdminMessagesDeleted"); + + b.Navigation("AdminMessagesLastEdited"); + + b.Navigation("AdminMessagesReceived"); + + b.Navigation("AdminNotesCreated"); + + b.Navigation("AdminNotesDeleted"); + + b.Navigation("AdminNotesLastEdited"); + + b.Navigation("AdminNotesReceived"); + + b.Navigation("AdminServerBansCreated"); + + b.Navigation("AdminServerBansLastEdited"); + + b.Navigation("AdminServerRoleBansCreated"); + + b.Navigation("AdminServerRoleBansLastEdited"); + + b.Navigation("AdminWatchlistsCreated"); + + b.Navigation("AdminWatchlistsDeleted"); + + b.Navigation("AdminWatchlistsLastEdited"); + + b.Navigation("AdminWatchlistsReceived"); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Navigation("Profiles"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Navigation("Antags"); + + b.Navigation("Jobs"); + + b.Navigation("Traits"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Navigation("AdminLogs"); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Navigation("ConnectionLogs"); + + b.Navigation("Rounds"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Navigation("BanHits"); + + b.Navigation("Unban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Navigation("Unban"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Content.Server.Database/Migrations/Sqlite/20231126234049_ConnectionLogServer.cs b/Content.Server.Database/Migrations/Sqlite/20231126234049_ConnectionLogServer.cs new file mode 100644 index 0000000000..e9378e4465 --- /dev/null +++ b/Content.Server.Database/Migrations/Sqlite/20231126234049_ConnectionLogServer.cs @@ -0,0 +1,55 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace Content.Server.Database.Migrations.Sqlite +{ + /// + public partial class ConnectionLogServer : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "server_id", + table: "connection_log", + type: "INTEGER", + nullable: false, + defaultValue: 0); + + // Note: EF Core automatically makes indexes for all FKs. + // That's really dumb, and there's no simple way to disable this. + // So we drop the index creation command from the migration here, + // as we don't want this index: + + // migrationBuilder.CreateIndex( + // name: "IX_connection_log_server_id", + // table: "connection_log", + // column: "server_id"); + + migrationBuilder.AddForeignKey( + name: "FK_connection_log_server_server_id", + table: "connection_log", + column: "server_id", + principalTable: "server", + principalColumn: "server_id", + onDelete: ReferentialAction.SetNull); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropForeignKey( + name: "FK_connection_log_server_server_id", + table: "connection_log"); + + // migrationBuilder.DropIndex( + // name: "IX_connection_log_server_id", + // table: "connection_log"); + + migrationBuilder.DropColumn( + name: "server_id", + table: "connection_log"); + } + } +} diff --git a/Content.Server.Database/Migrations/Sqlite/SqliteServerDbContextModelSnapshot.cs b/Content.Server.Database/Migrations/Sqlite/SqliteServerDbContextModelSnapshot.cs index 5afea5b58f..eec11945ae 100644 --- a/Content.Server.Database/Migrations/Sqlite/SqliteServerDbContextModelSnapshot.cs +++ b/Content.Server.Database/Migrations/Sqlite/SqliteServerDbContextModelSnapshot.cs @@ -498,6 +498,12 @@ protected override void BuildModel(ModelBuilder modelBuilder) .HasColumnType("BLOB") .HasColumnName("hwid"); + b.Property("ServerId") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasDefaultValue(0) + .HasColumnName("server_id"); + b.Property("Time") .HasColumnType("TEXT") .HasColumnName("time"); @@ -514,6 +520,9 @@ protected override void BuildModel(ModelBuilder modelBuilder) b.HasKey("Id") .HasName("PK_connection_log"); + b.HasIndex("ServerId") + .HasDatabaseName("IX_connection_log_server_id"); + b.HasIndex("UserId"); b.ToTable("connection_log", (string)null); @@ -1398,6 +1407,18 @@ protected override void BuildModel(ModelBuilder modelBuilder) b.Navigation("Profile"); }); + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("ConnectionLogs") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.SetNull) + .IsRequired() + .HasConstraintName("FK_connection_log_server_server_id"); + + b.Navigation("Server"); + }); + modelBuilder.Entity("Content.Server.Database.Job", b => { b.HasOne("Content.Server.Database.Profile", "Profile") @@ -1644,6 +1665,8 @@ protected override void BuildModel(ModelBuilder modelBuilder) modelBuilder.Entity("Content.Server.Database.Server", b => { + b.Navigation("ConnectionLogs"); + b.Navigation("Rounds"); }); diff --git a/Content.Server.Database/Model.cs b/Content.Server.Database/Model.cs index c59d2d9255..995dabaace 100644 --- a/Content.Server.Database/Model.cs +++ b/Content.Server.Database/Model.cs @@ -168,6 +168,15 @@ protected override void OnModelCreating(ModelBuilder modelBuilder) modelBuilder.Entity() .HasIndex(p => p.UserId); + modelBuilder.Entity() + .Property(p => p.ServerId) + .HasDefaultValue(0); + + modelBuilder.Entity() + .HasOne(p => p.Server) + .WithMany(p => p.ConnectionLogs) + .OnDelete(DeleteBehavior.SetNull); + // SetNull is necessary for created by/edited by-s here, // so you can safely delete admins (GDPR right to erasure) while keeping the notes intact @@ -494,6 +503,9 @@ public class Server [InverseProperty(nameof(Round.Server))] public List Rounds { get; set; } = default!; + + [InverseProperty(nameof(ConnectionLog.Server))] + public List ConnectionLogs { get; set; } = default!; } [Index(nameof(Type))] @@ -749,7 +761,19 @@ public class ConnectionLog public ConnectionDenyReason? Denied { get; set; } + /// + /// ID of the that the connection was attempted to. + /// + /// + /// + /// The default value of this column is set to 0, which is the ID of the "unknown" server. + /// This is intended for old entries (that didn't track this) and if the server name isn't configured. + /// + /// + public int ServerId { get; set; } + public List BanHits { get; set; } = null!; + public Server Server { get; set; } = null!; } public enum ConnectionDenyReason : byte diff --git a/Content.Server/Access/Components/PresetIdCardComponent.cs b/Content.Server/Access/Components/PresetIdCardComponent.cs index a2842d7815..94aef2e6ca 100644 --- a/Content.Server/Access/Components/PresetIdCardComponent.cs +++ b/Content.Server/Access/Components/PresetIdCardComponent.cs @@ -1,12 +1,14 @@ -namespace Content.Server.Access.Components +using Content.Shared.Roles; +using Robust.Shared.Prototypes; + +namespace Content.Server.Access.Components; + +[RegisterComponent] +public sealed partial class PresetIdCardComponent : Component { - [RegisterComponent] - public sealed partial class PresetIdCardComponent : Component - { - [DataField("job")] - public string? JobName; + [DataField("job")] + public ProtoId? JobName; - [DataField("name")] - public string? IdName; - } + [DataField("name")] + public string? IdName; } diff --git a/Content.Server/Access/Systems/AccessOverriderSystem.cs b/Content.Server/Access/Systems/AccessOverriderSystem.cs index 147ac70a6d..41bb84ab6b 100644 --- a/Content.Server/Access/Systems/AccessOverriderSystem.cs +++ b/Content.Server/Access/Systems/AccessOverriderSystem.cs @@ -8,6 +8,8 @@ using Content.Shared.Interaction; using JetBrains.Annotations; using Robust.Server.GameObjects; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Player; using static Content.Shared.Access.Components.AccessOverriderComponent; diff --git a/Content.Server/Access/Systems/IdCardSystem.cs b/Content.Server/Access/Systems/IdCardSystem.cs index 3bf00d34c7..1c1e687417 100644 --- a/Content.Server/Access/Systems/IdCardSystem.cs +++ b/Content.Server/Access/Systems/IdCardSystem.cs @@ -7,200 +7,216 @@ using Content.Shared.Access.Systems; using Content.Shared.Database; using Content.Shared.Popups; +using Content.Shared.Roles; using Content.Shared.StatusIcon; using Robust.Shared.Prototypes; using Robust.Shared.Random; -namespace Content.Server.Access.Systems +namespace Content.Server.Access.Systems; + +public sealed class IdCardSystem : SharedIdCardSystem { - public sealed class IdCardSystem : SharedIdCardSystem - { - [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - [Dependency] private readonly IAdminLogManager _adminLogger = default!; - [Dependency] private readonly MetaDataSystem _metaSystem = default!; + [Dependency] private readonly PopupSystem _popupSystem = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IAdminLogManager _adminLogger = default!; + [Dependency] private readonly MetaDataSystem _metaSystem = default!; - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnMapInit); - SubscribeLocalEvent(OnMicrowaved); - } + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnMicrowaved); + } - private void OnMapInit(EntityUid uid, IdCardComponent id, MapInitEvent args) - { - UpdateEntityName(uid, id); - } + private void OnMapInit(EntityUid uid, IdCardComponent id, MapInitEvent args) + { + UpdateEntityName(uid, id); + } - private void OnMicrowaved(EntityUid uid, IdCardComponent component, BeingMicrowavedEvent args) + private void OnMicrowaved(EntityUid uid, IdCardComponent component, BeingMicrowavedEvent args) + { + if (TryComp(uid, out var access)) { - if (TryComp(uid, out var access)) + float randomPick = _random.NextFloat(); + // if really unlucky, burn card + if (randomPick <= 0.15f) { - float randomPick = _random.NextFloat(); - // if really unlucky, burn card - if (randomPick <= 0.15f) + TryComp(uid, out TransformComponent? transformComponent); + if (transformComponent != null) { - TryComp(uid, out TransformComponent? transformComponent); - if (transformComponent != null) - { - _popupSystem.PopupCoordinates(Loc.GetString("id-card-component-microwave-burnt", ("id", uid)), - transformComponent.Coordinates, PopupType.Medium); - EntityManager.SpawnEntity("FoodBadRecipe", - transformComponent.Coordinates); - } - _adminLogger.Add(LogType.Action, LogImpact.Medium, - $"{ToPrettyString(args.Microwave)} burnt {ToPrettyString(uid):entity}"); - EntityManager.QueueDeleteEntity(uid); - return; + _popupSystem.PopupCoordinates(Loc.GetString("id-card-component-microwave-burnt", ("id", uid)), + transformComponent.Coordinates, PopupType.Medium); + EntityManager.SpawnEntity("FoodBadRecipe", + transformComponent.Coordinates); } - // If they're unlucky, brick their ID - if (randomPick <= 0.25f) - { - _popupSystem.PopupEntity(Loc.GetString("id-card-component-microwave-bricked", ("id", uid)), uid); - - access.Tags.Clear(); - Dirty(access); - - _adminLogger.Add(LogType.Action, LogImpact.Medium, - $"{ToPrettyString(args.Microwave)} cleared access on {ToPrettyString(uid):entity}"); - } - else - { - _popupSystem.PopupEntity(Loc.GetString("id-card-component-microwave-safe", ("id", uid)), uid, PopupType.Medium); - } - - // Give them a wonderful new access to compensate for everything - var random = _random.Pick(_prototypeManager.EnumeratePrototypes().ToArray()); - - access.Tags.Add(random.ID); - Dirty(access); - _adminLogger.Add(LogType.Action, LogImpact.Medium, - $"{ToPrettyString(args.Microwave)} added {random.ID} access to {ToPrettyString(uid):entity}"); + $"{ToPrettyString(args.Microwave)} burnt {ToPrettyString(uid):entity}"); + EntityManager.QueueDeleteEntity(uid); + return; } - } - - /// - /// Attempts to change the job title of a card. - /// Returns true/false. - /// - /// - /// If provided with a player's EntityUid to the player parameter, adds the change to the admin logs. - /// - public bool TryChangeJobTitle(EntityUid uid, string? jobTitle, IdCardComponent? id = null, EntityUid? player = null) - { - if (!Resolve(uid, ref id)) - return false; - - if (!string.IsNullOrWhiteSpace(jobTitle)) + // If they're unlucky, brick their ID + if (randomPick <= 0.25f) { - jobTitle = jobTitle.Trim(); + _popupSystem.PopupEntity(Loc.GetString("id-card-component-microwave-bricked", ("id", uid)), uid); - if (jobTitle.Length > IdCardConsoleComponent.MaxJobTitleLength) - jobTitle = jobTitle[..IdCardConsoleComponent.MaxJobTitleLength]; + access.Tags.Clear(); + Dirty(access); + + _adminLogger.Add(LogType.Action, LogImpact.Medium, + $"{ToPrettyString(args.Microwave)} cleared access on {ToPrettyString(uid):entity}"); } else { - jobTitle = null; + _popupSystem.PopupEntity(Loc.GetString("id-card-component-microwave-safe", ("id", uid)), uid, PopupType.Medium); } - if (id.JobTitle == jobTitle) - return true; - id.JobTitle = jobTitle; - Dirty(id); - UpdateEntityName(uid, id); + // Give them a wonderful new access to compensate for everything + var random = _random.Pick(_prototypeManager.EnumeratePrototypes().ToArray()); - if (player != null) - { - _adminLogger.Add(LogType.Identity, LogImpact.Low, - $"{ToPrettyString(player.Value):player} has changed the job title of {ToPrettyString(uid):entity} to {jobTitle} "); - } - return true; + access.Tags.Add(random.ID); + Dirty(access); + + _adminLogger.Add(LogType.Action, LogImpact.Medium, + $"{ToPrettyString(args.Microwave)} added {random.ID} access to {ToPrettyString(uid):entity}"); } + } + + /// + /// Attempts to change the job title of a card. + /// Returns true/false. + /// + /// + /// If provided with a player's EntityUid to the player parameter, adds the change to the admin logs. + /// + public bool TryChangeJobTitle(EntityUid uid, string? jobTitle, IdCardComponent? id = null, EntityUid? player = null) + { + if (!Resolve(uid, ref id)) + return false; - public bool TryChangeJobIcon(EntityUid uid, StatusIconPrototype jobIcon, IdCardComponent? id = null, EntityUid? player = null) + if (!string.IsNullOrWhiteSpace(jobTitle)) { - if (!Resolve(uid, ref id)) - { - return false; - } + jobTitle = jobTitle.Trim(); - if (id.JobIcon == jobIcon.ID) - { - return true; - } + if (jobTitle.Length > IdCardConsoleComponent.MaxJobTitleLength) + jobTitle = jobTitle[..IdCardConsoleComponent.MaxJobTitleLength]; + } + else + { + jobTitle = null; + } - id.JobIcon = jobIcon.ID; - Dirty(uid, id); + if (id.JobTitle == jobTitle) + return true; + id.JobTitle = jobTitle; + Dirty(id); + UpdateEntityName(uid, id); - if (player != null) - { - _adminLogger.Add(LogType.Identity, LogImpact.Low, - $"{ToPrettyString(player.Value):player} has changed the job icon of {ToPrettyString(uid):entity} to {jobIcon} "); - } + if (player != null) + { + _adminLogger.Add(LogType.Identity, LogImpact.Low, + $"{ToPrettyString(player.Value):player} has changed the job title of {ToPrettyString(uid):entity} to {jobTitle} "); + } + return true; + } + + public bool TryChangeJobIcon(EntityUid uid, StatusIconPrototype jobIcon, IdCardComponent? id = null, EntityUid? player = null) + { + if (!Resolve(uid, ref id)) + { + return false; + } + if (id.JobIcon == jobIcon.ID) + { return true; } - /// - /// Attempts to change the full name of a card. - /// Returns true/false. - /// - /// - /// If provided with a player's EntityUid to the player parameter, adds the change to the admin logs. - /// - public bool TryChangeFullName(EntityUid uid, string? fullName, IdCardComponent? id = null, EntityUid? player = null) + id.JobIcon = jobIcon.ID; + Dirty(uid, id); + + if (player != null) { - if (!Resolve(uid, ref id)) - return false; + _adminLogger.Add(LogType.Identity, LogImpact.Low, + $"{ToPrettyString(player.Value):player} has changed the job icon of {ToPrettyString(uid):entity} to {jobIcon} "); + } - if (!string.IsNullOrWhiteSpace(fullName)) - { - fullName = fullName.Trim(); - if (fullName.Length > IdCardConsoleComponent.MaxFullNameLength) - fullName = fullName[..IdCardConsoleComponent.MaxFullNameLength]; - } - else - { - fullName = null; - } + return true; + } - if (id.FullName == fullName) - return true; - id.FullName = fullName; - Dirty(id); - UpdateEntityName(uid, id); + public bool TryChangeJobDepartment(EntityUid uid, JobPrototype job, IdCardComponent? id = null) + { + if (!Resolve(uid, ref id)) + return false; - if (player != null) - { - _adminLogger.Add(LogType.Identity, LogImpact.Low, - $"{ToPrettyString(player.Value):player} has changed the name of {ToPrettyString(uid):entity} to {fullName} "); - } - return true; + foreach (var department in _prototypeManager.EnumeratePrototypes()) + { + if (department.Roles.Contains(job.ID)) + id.JobDepartments.Add("department-" + department.ID); } - /// - /// Changes the name of the id's owner. - /// - /// - /// If either or is empty, it's replaced by placeholders. - /// If both are empty, the original entity's name is restored. - /// - private void UpdateEntityName(EntityUid uid, IdCardComponent? id = null) + Dirty(uid, id); + + return true; + } + + /// + /// Attempts to change the full name of a card. + /// Returns true/false. + /// + /// + /// If provided with a player's EntityUid to the player parameter, adds the change to the admin logs. + /// + public bool TryChangeFullName(EntityUid uid, string? fullName, IdCardComponent? id = null, EntityUid? player = null) + { + if (!Resolve(uid, ref id)) + return false; + + if (!string.IsNullOrWhiteSpace(fullName)) { - if (!Resolve(uid, ref id)) - return; + fullName = fullName.Trim(); + if (fullName.Length > IdCardConsoleComponent.MaxFullNameLength) + fullName = fullName[..IdCardConsoleComponent.MaxFullNameLength]; + } + else + { + fullName = null; + } - var jobSuffix = string.IsNullOrWhiteSpace(id.JobTitle) ? string.Empty : $" ({id.JobTitle})"; + if (id.FullName == fullName) + return true; + id.FullName = fullName; + Dirty(id); + UpdateEntityName(uid, id); - var val = string.IsNullOrWhiteSpace(id.FullName) - ? Loc.GetString("access-id-card-component-owner-name-job-title-text", - ("jobSuffix", jobSuffix)) - : Loc.GetString("access-id-card-component-owner-full-name-job-title-text", - ("fullName", id.FullName), - ("jobSuffix", jobSuffix)); - _metaSystem.SetEntityName(uid, val); + if (player != null) + { + _adminLogger.Add(LogType.Identity, LogImpact.Low, + $"{ToPrettyString(player.Value):player} has changed the name of {ToPrettyString(uid):entity} to {fullName} "); } + return true; + } + + /// + /// Changes the name of the id's owner. + /// + /// + /// If either or is empty, it's replaced by placeholders. + /// If both are empty, the original entity's name is restored. + /// + private void UpdateEntityName(EntityUid uid, IdCardComponent? id = null) + { + if (!Resolve(uid, ref id)) + return; + + var jobSuffix = string.IsNullOrWhiteSpace(id.JobTitle) ? string.Empty : $" ({id.JobTitle})"; + + var val = string.IsNullOrWhiteSpace(id.FullName) + ? Loc.GetString("access-id-card-component-owner-name-job-title-text", + ("jobSuffix", jobSuffix)) + : Loc.GetString("access-id-card-component-owner-full-name-job-title-text", + ("fullName", id.FullName), + ("jobSuffix", jobSuffix)); + _metaSystem.SetEntityName(uid, val); } } diff --git a/Content.Server/Access/Systems/PresetIdCardSystem.cs b/Content.Server/Access/Systems/PresetIdCardSystem.cs index 96a38278b5..4073b4baa2 100644 --- a/Content.Server/Access/Systems/PresetIdCardSystem.cs +++ b/Content.Server/Access/Systems/PresetIdCardSystem.cs @@ -7,82 +7,82 @@ using Content.Shared.StatusIcon; using Robust.Shared.Prototypes; -namespace Content.Server.Access.Systems +namespace Content.Server.Access.Systems; + +public sealed class PresetIdCardSystem : EntitySystem { - public sealed class PresetIdCardSystem : EntitySystem + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IdCardSystem _cardSystem = default!; + [Dependency] private readonly SharedAccessSystem _accessSystem = default!; + [Dependency] private readonly StationSystem _stationSystem = default!; + + public override void Initialize() { - [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - [Dependency] private readonly IdCardSystem _cardSystem = default!; - [Dependency] private readonly SharedAccessSystem _accessSystem = default!; - [Dependency] private readonly StationSystem _stationSystem = default!; + SubscribeLocalEvent(OnMapInit); - public override void Initialize() - { - SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(PlayerJobsAssigned); + } - SubscribeLocalEvent(PlayerJobsAssigned); - } + private void PlayerJobsAssigned(RulePlayerJobsAssignedEvent ev) + { + // Go over all ID cards and make sure they're correctly configured for extended access. - private void PlayerJobsAssigned(RulePlayerJobsAssignedEvent ev) + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var card)) { - // Go over all ID cards and make sure they're correctly configured for extended access. - - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var card)) - { - var station = _stationSystem.GetOwningStation(uid); + var station = _stationSystem.GetOwningStation(uid); - // If we're not on an extended access station, the ID is already configured correctly from MapInit. - if (station == null || !Comp(station.Value).ExtendedAccess) - return; + // If we're not on an extended access station, the ID is already configured correctly from MapInit. + if (station == null || !Comp(station.Value).ExtendedAccess) + return; - SetupIdAccess(uid, card, true); - SetupIdName(uid, card); - } + SetupIdAccess(uid, card, true); + SetupIdName(uid, card); } + } - private void OnMapInit(EntityUid uid, PresetIdCardComponent id, MapInitEvent args) - { - // If a preset ID card is spawned on a station at setup time, - // the station may not exist, - // or may not yet know whether it is on extended access (players not spawned yet). - // PlayerJobsAssigned makes sure extended access is configured correctly in that case. + private void OnMapInit(EntityUid uid, PresetIdCardComponent id, MapInitEvent args) + { + // If a preset ID card is spawned on a station at setup time, + // the station may not exist, + // or may not yet know whether it is on extended access (players not spawned yet). + // PlayerJobsAssigned makes sure extended access is configured correctly in that case. + + var station = _stationSystem.GetOwningStation(uid); + var extended = false; + if (station != null) + extended = Comp(station.Value).ExtendedAccess; + + SetupIdAccess(uid, id, extended); + SetupIdName(uid, id); + } - var station = _stationSystem.GetOwningStation(uid); - var extended = false; - if (station != null) - extended = Comp(station.Value).ExtendedAccess; + private void SetupIdName(EntityUid uid, PresetIdCardComponent id) + { + if (id.IdName == null) + return; + _cardSystem.TryChangeFullName(uid, id.IdName); + } - SetupIdAccess(uid, id, extended); - SetupIdName(uid, id); - } + private void SetupIdAccess(EntityUid uid, PresetIdCardComponent id, bool extended) + { + if (id.JobName == null) + return; - private void SetupIdName(EntityUid uid, PresetIdCardComponent id) + if (!_prototypeManager.TryIndex(id.JobName, out JobPrototype? job)) { - if (id.IdName == null) - return; - _cardSystem.TryChangeFullName(uid, id.IdName); + Log.Error($"Invalid job id ({id.JobName}) for preset card"); + return; } - private void SetupIdAccess(EntityUid uid, PresetIdCardComponent id, bool extended) - { - if (id.JobName == null) - return; - - if (!_prototypeManager.TryIndex(id.JobName, out JobPrototype? job)) - { - Log.Error($"Invalid job id ({id.JobName}) for preset card"); - return; - } - - _accessSystem.SetAccessToJob(uid, job, extended); + _accessSystem.SetAccessToJob(uid, job, extended); - _cardSystem.TryChangeJobTitle(uid, job.LocalizedName); + _cardSystem.TryChangeJobTitle(uid, job.LocalizedName); + _cardSystem.TryChangeJobDepartment(uid, job); - if (_prototypeManager.TryIndex(job.Icon, out var jobIcon)) - { - _cardSystem.TryChangeJobIcon(uid, jobIcon); - } + if (_prototypeManager.TryIndex(job.Icon, out var jobIcon)) + { + _cardSystem.TryChangeJobIcon(uid, jobIcon); } } } diff --git a/Content.Server/Acz/ContentMagicAczProvider.cs b/Content.Server/Acz/ContentMagicAczProvider.cs index ffd3123c57..57b5c1ec56 100644 --- a/Content.Server/Acz/ContentMagicAczProvider.cs +++ b/Content.Server/Acz/ContentMagicAczProvider.cs @@ -20,6 +20,6 @@ public async Task Package(AssetPass pass, IPackageLogger logger, CancellationTok { var contentDir = DefaultMagicAczProvider.FindContentRootPath(_deps); - await ContentPackaging.WriteResources(contentDir, pass, logger, cancel); + await ClientPackaging.WriteResources(contentDir, pass, logger, cancel); } } diff --git a/Content.Server/Administration/BanPanelEui.cs b/Content.Server/Administration/BanPanelEui.cs index 2e6dfab18a..eaea015d5d 100644 --- a/Content.Server/Administration/BanPanelEui.cs +++ b/Content.Server/Administration/BanPanelEui.cs @@ -29,6 +29,8 @@ public sealed class BanPanelEui : BaseEui, IPostInjectInit private string PlayerName { get; set; } = string.Empty; private IPAddress? LastAddress { get; set; } private ImmutableArray? LastHwid { get; set; } + private const int Ipv4_CIDR = 32; + private const int Ipv6_CIDR = 64; public BanPanelEui() { @@ -78,20 +80,20 @@ private async void BanPlayer(string? target, string? ipAddressString, bool useLa if (split.Length > 1) hid = split[1]; - if (!IPAddress.TryParse(ipAddressString, out var ipAddress) || !uint.TryParse(hid, out var hidInt) || hidInt > 128 || hidInt > 32 && ipAddress.AddressFamily == AddressFamily.InterNetwork) + if (!IPAddress.TryParse(ipAddressString, out var ipAddress) || !uint.TryParse(hid, out var hidInt) || hidInt > Ipv6_CIDR || hidInt > Ipv4_CIDR && ipAddress.AddressFamily == AddressFamily.InterNetwork) { _chat.DispatchServerMessage(Player, Loc.GetString("ban-panel-invalid-ip")); return; } if (hidInt == 0) - hidInt = (uint) (ipAddress.AddressFamily == AddressFamily.InterNetworkV6 ? 128 : 32); + hidInt = (uint) (ipAddress.AddressFamily == AddressFamily.InterNetworkV6 ? Ipv6_CIDR : Ipv4_CIDR); addressRange = (ipAddress, (int) hidInt); } var targetUid = target is not null ? PlayerId : null; - addressRange = useLastIp && LastAddress is not null ? (LastAddress, LastAddress.AddressFamily == AddressFamily.InterNetworkV6 ? 128 : 32) : addressRange; + addressRange = useLastIp && LastAddress is not null ? (LastAddress, LastAddress.AddressFamily == AddressFamily.InterNetworkV6 ? Ipv6_CIDR : Ipv4_CIDR) : addressRange; var targetHWid = useLastHwid ? LastHwid : hwid; if (target != null && target != PlayerName || Guid.TryParse(target, out var parsed) && parsed != PlayerId) { @@ -108,8 +110,8 @@ private async void BanPlayer(string? target, string? ipAddressString, bool useLa if (targetAddress.IsIPv4MappedToIPv6) targetAddress = targetAddress.MapToIPv4(); - // Ban /128 for IPv6, /32 for IPv4. - var hid = targetAddress.AddressFamily == AddressFamily.InterNetworkV6 ? 128 : 32; + // Ban /64 for IPv6, /32 for IPv4. + var hid = targetAddress.AddressFamily == AddressFamily.InterNetworkV6 ? Ipv6_CIDR : Ipv4_CIDR; addressRange = (targetAddress, hid); } targetHWid = useLastHwid ? located.LastHWId : hwid; diff --git a/Content.Server/Administration/Commands/AGhost.cs b/Content.Server/Administration/Commands/AGhost.cs index 2d1a15a0be..d541b1c884 100644 --- a/Content.Server/Administration/Commands/AGhost.cs +++ b/Content.Server/Administration/Commands/AGhost.cs @@ -46,7 +46,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) var coordinates = player.AttachedEntity != null ? _entities.GetComponent(player.AttachedEntity.Value).Coordinates : EntitySystem.Get().GetObserverSpawnPoint(); - var ghost = _entities.SpawnEntity("AdminObserver", coordinates); + var ghost = _entities.SpawnEntity(GameTicker.AdminObserverPrototypeName, coordinates); _entities.GetComponent(ghost).AttachToGridOrMap(); if (canReturn) diff --git a/Content.Server/Administration/Commands/PlayGlobalSoundCommand.cs b/Content.Server/Administration/Commands/PlayGlobalSoundCommand.cs index fdf067181d..ac55ce8325 100644 --- a/Content.Server/Administration/Commands/PlayGlobalSoundCommand.cs +++ b/Content.Server/Administration/Commands/PlayGlobalSoundCommand.cs @@ -6,7 +6,6 @@ using Robust.Shared.Console; using Robust.Shared.ContentPack; using Robust.Shared.Player; -using Robust.Shared.Prototypes; namespace Content.Server.Administration.Commands; diff --git a/Content.Server/Administration/Commands/SetOutfitCommand.cs b/Content.Server/Administration/Commands/SetOutfitCommand.cs index 97c1fa0656..72ff9ff9b6 100644 --- a/Content.Server/Administration/Commands/SetOutfitCommand.cs +++ b/Content.Server/Administration/Commands/SetOutfitCommand.cs @@ -92,9 +92,9 @@ public static bool SetOutfit(EntityUid target, string gear, IEntityManager entit } var invSystem = entityManager.System(); - if (invSystem.TryGetSlots(target, out var slotDefinitions, inventoryComponent)) + if (invSystem.TryGetSlots(target, out var slots)) { - foreach (var slot in slotDefinitions) + foreach (var slot in slots) { invSystem.TryUnequip(target, slot.Name, true, true, false, inventoryComponent); var gearStr = startingGear.GetGear(slot.Name, profile); diff --git a/Content.Server/Administration/Components/SuperBonkComponent.cs b/Content.Server/Administration/Components/SuperBonkComponent.cs new file mode 100644 index 0000000000..868d232e60 --- /dev/null +++ b/Content.Server/Administration/Components/SuperBonkComponent.cs @@ -0,0 +1,48 @@ +using Content.Server.Administration.Systems; +using Content.Shared.Climbing.Components; + +namespace Content.Server.Administration.Components; + +/// +/// Component to track the timer for the SuperBonk smite. +/// +[RegisterComponent, Access(typeof(SuperBonkSystem))] +public sealed partial class SuperBonkComponent: Component +{ + /// + /// Entity being Super Bonked. + /// + [DataField] + public EntityUid Target; + + /// + /// All of the tables the target will be bonked on. + /// + [DataField] + public Dictionary.Enumerator Tables; + + /// + /// Value used to reset the timer once it expires. + /// + [DataField] + public float InitialTime = 0.10f; + + /// + /// Timer till the next bonk. + /// + [DataField] + public float TimeRemaining = 0.10f; + + /// + /// Whether to remove the clumsy component from the target after SuperBonk is done. + /// + [DataField] + public bool RemoveClumsy = true; + + /// + /// Whether to stop Super Bonk on the target once he dies. Otherwise it will continue until no other tables are left + /// or the target is gibbed. + /// + [DataField] + public bool StopWhenDead = true; +} diff --git a/Content.Server/Administration/Systems/AdminSystem.cs b/Content.Server/Administration/Systems/AdminSystem.cs index 29ad854550..f007255950 100644 --- a/Content.Server/Administration/Systems/AdminSystem.cs +++ b/Content.Server/Administration/Systems/AdminSystem.cs @@ -26,6 +26,7 @@ using Robust.Server.GameObjects; using Robust.Server.Player; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; using Robust.Shared.Enums; using Robust.Shared.Network; @@ -39,7 +40,6 @@ public sealed class AdminSystem : EntitySystem [Dependency] private readonly IChatManager _chat = default!; [Dependency] private readonly IConfigurationManager _config = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; - [Dependency] private readonly AudioSystem _audio = default!; [Dependency] private readonly HandsSystem _hands = default!; [Dependency] private readonly SharedJobSystem _jobs = default!; [Dependency] private readonly InventorySystem _inventory = default!; @@ -49,6 +49,7 @@ public sealed class AdminSystem : EntitySystem [Dependency] private readonly PlayTimeTrackingManager _playTime = default!; [Dependency] private readonly SharedRoleSystem _role = default!; [Dependency] private readonly GameTicker _gameTicker = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly StationRecordsSystem _stationRecords = default!; [Dependency] private readonly TransformSystem _transform = default!; @@ -340,7 +341,7 @@ public void Erase(ICommonSession player) _popup.PopupCoordinates(Loc.GetString("admin-erase-popup", ("user", name)), coordinates, PopupType.LargeCaution); var filter = Filter.Pvs(coordinates, 1, EntityManager, _playerManager); var audioParams = new AudioParams().WithVolume(3); - _audio.Play("/Audio/DeltaV/Misc/reducedtoatmos.ogg", filter, coordinates, true, audioParams); + _audio.PlayStatic("/Audio/DeltaV/Misc/reducedtoatmos.ogg", filter, coordinates, true, audioParams); } foreach (var item in _inventory.GetHandOrInventoryEntities(entity.Value)) @@ -367,15 +368,12 @@ keyStorage.Key is { } key && } } - if (TryComp(entity.Value, out InventoryComponent? inventory) && - _inventory.TryGetSlots(entity.Value, out var slots, inventory)) + if (_inventory.TryGetContainerSlotEnumerator(entity.Value, out var enumerator)) { - foreach (var slot in slots) + while (enumerator.NextItem(out var item, out var slot)) { - if (_inventory.TryUnequip(entity.Value, entity.Value, slot.Name, out var item, true, true)) - { - _physics.ApplyAngularImpulse(item.Value, ThrowingSystem.ThrowAngularImpulse); - } + if (_inventory.TryUnequip(entity.Value, entity.Value, slot.Name, true, true)) + _physics.ApplyAngularImpulse(item, ThrowingSystem.ThrowAngularImpulse); } } diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs index 245fad4b33..76cb1e0da9 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs @@ -20,7 +20,6 @@ public sealed partial class AdminVerbSystem [Dependency] private readonly PiratesRuleSystem _piratesRule = default!; [Dependency] private readonly RevolutionaryRuleSystem _revolutionaryRule = default!; [Dependency] private readonly SharedMindSystem _minds = default!; - [Dependency] private readonly GameTicker _gameTicker = default!; // All antag verbs have names so invokeverb works. private void AddAntagVerbs(GetVerbsEvent args) diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs index c2f07320b5..10a001be8b 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs @@ -40,7 +40,6 @@ using Content.Shared.Tabletop.Components; using Content.Shared.Tools.Systems; using Content.Shared.Verbs; -using Robust.Server.GameObjects; using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Physics; @@ -77,6 +76,7 @@ public sealed partial class AdminVerbSystem [Dependency] private readonly WeldableSystem _weldableSystem = default!; [Dependency] private readonly SharedContentEyeSystem _eyeSystem = default!; [Dependency] private readonly SharedTransformSystem _transformSystem = default!; + [Dependency] private readonly SuperBonkSystem _superBonkSystem = default!; // All smite verbs have names so invokeverb works. private void AddSmiteVerbs(GetVerbsEvent args) @@ -793,5 +793,32 @@ private void AddSmiteVerbs(GetVerbsEvent args) Message = Loc.GetString("admin-smite-super-speed-description"), }; args.Verbs.Add(superSpeed); + //Bonk + Verb superBonkLite = new() + { + Text = "Super Bonk Lite", + Category = VerbCategory.Smite, + Icon = new SpriteSpecifier.Rsi(new("Structures/Furniture/Tables/glass.rsi"), "full"), + Act = () => + { + _superBonkSystem.StartSuperBonk(args.Target, stopWhenDead: true); + }, + Message = Loc.GetString("admin-smite-super-bonk-lite-description"), + Impact = LogImpact.Extreme, + }; + args.Verbs.Add(superBonkLite); + Verb superBonk= new() + { + Text = "Super Bonk", + Category = VerbCategory.Smite, + Icon = new SpriteSpecifier.Rsi(new("Structures/Furniture/Tables/generic.rsi"), "full"), + Act = () => + { + _superBonkSystem.StartSuperBonk(args.Target); + }, + Message = Loc.GetString("admin-smite-super-bonk-description"), + Impact = LogImpact.Extreme, + }; + args.Verbs.Add(superBonk); } } diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Tools.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Tools.cs index d7df3faee2..4b64195e93 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Tools.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Tools.cs @@ -285,27 +285,7 @@ private void AddTricksVerbs(GetVerbsEvent args) Text = "Refill Internals Oxygen", Category = VerbCategory.Tricks, Icon = new SpriteSpecifier.Rsi(new("/Textures/Objects/Tanks/oxygen.rsi"), "icon"), - Act = () => - { - foreach (var slot in _inventorySystem.GetSlots(args.Target)) - { - if (!_inventorySystem.TryGetSlotEntity(args.Target, slot.Name, out var entity)) - continue; - - if (!TryComp(entity, out tank)) - continue; - - RefillGasTank(entity.Value, Gas.Oxygen, tank); - } - - foreach (var held in _handsSystem.EnumerateHeld(args.Target)) - { - if (!TryComp(held, out tank)) - continue; - - RefillGasTank(held, Gas.Oxygen, tank); - } - }, + Act = () => RefillEquippedTanks(args.User, Gas.Oxygen), Impact = LogImpact.Extreme, Message = Loc.GetString("admin-trick-internals-refill-oxygen-description"), Priority = (int) TricksVerbPriorities.RefillOxygen, @@ -317,27 +297,7 @@ private void AddTricksVerbs(GetVerbsEvent args) Text = "Refill Internals Nitrogen", Category = VerbCategory.Tricks, Icon = new SpriteSpecifier.Rsi(new("/Textures/Objects/Tanks/red.rsi"), "icon"), - Act = () => - { - foreach (var slot in _inventorySystem.GetSlots(args.Target)) - { - if (!_inventorySystem.TryGetSlotEntity(args.Target, slot.Name, out var entity)) - continue; - - if (!TryComp(entity, out tank)) - continue; - - RefillGasTank(entity.Value, Gas.Nitrogen, tank); - } - - foreach (var held in _handsSystem.EnumerateHeld(args.Target)) - { - if (!TryComp(held, out tank)) - continue; - - RefillGasTank(held, Gas.Nitrogen, tank); - } - }, + Act = () =>RefillEquippedTanks(args.User, Gas.Nitrogen), Impact = LogImpact.Extreme, Message = Loc.GetString("admin-trick-internals-refill-nitrogen-description"), Priority = (int) TricksVerbPriorities.RefillNitrogen, @@ -349,27 +309,7 @@ private void AddTricksVerbs(GetVerbsEvent args) Text = "Refill Internals Plasma", Category = VerbCategory.Tricks, Icon = new SpriteSpecifier.Rsi(new("/Textures/Objects/Tanks/plasma.rsi"), "icon"), - Act = () => - { - foreach (var slot in _inventorySystem.GetSlots(args.Target)) - { - if (!_inventorySystem.TryGetSlotEntity(args.Target, slot.Name, out var entity)) - continue; - - if (!TryComp(entity, out tank)) - continue; - - RefillGasTank(entity.Value, Gas.Plasma, tank); - } - - foreach (var held in _handsSystem.EnumerateHeld(args.Target)) - { - if (!TryComp(held, out tank)) - continue; - - RefillGasTank(held, Gas.Plasma, tank); - } - }, + Act = () => RefillEquippedTanks(args.User, Gas.Plasma), Impact = LogImpact.Extreme, Message = Loc.GetString("admin-trick-internals-refill-plasma-description"), Priority = (int) TricksVerbPriorities.RefillPlasma, @@ -792,9 +732,17 @@ private void AddTricksVerbs(GetVerbsEvent args) } } - private void RefillGasTank(EntityUid tank, Gas gasType, GasTankComponent? tankComponent) + private void RefillEquippedTanks(EntityUid target, Gas plasma) { - if (!Resolve(tank, ref tankComponent)) + foreach (var held in _inventorySystem.GetHandOrInventoryEntities(target)) + { + RefillGasTank(held, Gas.Plasma); + } + } + + private void RefillGasTank(EntityUid tank, Gas gasType, GasTankComponent? tankComponent = null) + { + if (!Resolve(tank, ref tankComponent, false)) return; var mixSize = tankComponent.Air.Volume; @@ -824,18 +772,20 @@ private IEnumerable GetGridChildrenInner(EntityUid target) { foreach (var grid in station.Grids) { - foreach (var ent in Transform(grid).ChildEntities) + var enumerator = Transform(grid).ChildEnumerator; + while (enumerator.MoveNext(out var ent)) { yield return ent; } } } - else if (HasComp(target)) { - foreach (var possibleGrid in Transform(target).ChildEntities) + var enumerator = Transform(target).ChildEnumerator; + while (enumerator.MoveNext(out var possibleGrid)) { - foreach (var ent in Transform(possibleGrid).ChildEntities) + var enumerator2 = Transform(possibleGrid).ChildEnumerator; + while (enumerator2.MoveNext(out var ent)) { yield return ent; } @@ -843,7 +793,8 @@ private IEnumerable GetGridChildrenInner(EntityUid target) } else { - foreach (var ent in Transform(target).ChildEntities) + var enumerator = Transform(target).ChildEnumerator; + while (enumerator.MoveNext(out var ent)) { yield return ent; } diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.cs b/Content.Server/Administration/Systems/AdminVerbSystem.cs index bc065745f5..2637004565 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.cs @@ -5,10 +5,12 @@ using Content.Server.Disposal.Tube; using Content.Server.Disposal.Tube.Components; using Content.Server.EUI; +using Content.Server.GameTicking; using Content.Server.Ghost.Roles; using Content.Server.Mind; using Content.Server.Mind.Commands; using Content.Server.Prayer; +using Content.Server.Station.Systems; using Content.Server.Xenoarchaeology.XenoArtifacts; using Content.Server.Xenoarchaeology.XenoArtifacts.Triggers.Components; using Content.Shared.Administration; @@ -50,6 +52,7 @@ public sealed partial class AdminVerbSystem : EntitySystem [Dependency] private readonly AdminSystem _adminSystem = default!; [Dependency] private readonly DisposalTubeSystem _disposalTubes = default!; [Dependency] private readonly EuiManager _euiManager = default!; + [Dependency] private readonly GameTicker _ticker = default!; [Dependency] private readonly GhostRoleSystem _ghostRoleSystem = default!; [Dependency] private readonly ArtifactSystem _artifactSystem = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; @@ -59,6 +62,8 @@ public sealed partial class AdminVerbSystem : EntitySystem [Dependency] private readonly ToolshedManager _toolshed = default!; [Dependency] private readonly RejuvenateSystem _rejuvenate = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly StationSystem _stations = default!; + [Dependency] private readonly StationSpawningSystem _spawning = default!; private readonly Dictionary _openSolutionUis = new(); @@ -156,6 +161,69 @@ private void AddAdminVerbs(GetVerbsEvent args) Impact = LogImpact.Extreme, ConfirmationPopup = true }); + + // Respawn + args.Verbs.Add(new Verb() + { + Text = Loc.GetString("admin-player-actions-respawn"), + Category = VerbCategory.Admin, + Act = () => + { + _console.ExecuteCommand(player, $"respawn {targetActor.PlayerSession.Name}"); + }, + ConfirmationPopup = true, + // No logimpact as the command does it internally. + }); + + // Spawn - Like respawn but on the spot. + args.Verbs.Add(new Verb() + { + Text = Loc.GetString("admin-player-actions-spawn"), + Category = VerbCategory.Admin, + Act = () => + { + if (!_transformSystem.TryGetMapOrGridCoordinates(args.Target, out var coords)) + { + _popup.PopupEntity(Loc.GetString("admin-player-spawn-failed"), args.User, args.User); + return; + } + + var stationUid = _stations.GetOwningStation(args.Target); + + var profile = _ticker.GetPlayerProfile(targetActor.PlayerSession); + var mobUid = _spawning.SpawnPlayerMob(coords.Value, null, profile, stationUid); + var targetMind = _mindSystem.GetMind(args.Target); + + if (targetMind != null) + { + _mindSystem.TransferTo(targetMind.Value, mobUid); + } + }, + ConfirmationPopup = true, + Impact = LogImpact.High, + }); + + // Clone - Spawn but without the mind transfer, also spawns at the user's coordinates not the target's + args.Verbs.Add(new Verb() + { + Text = Loc.GetString("admin-player-actions-clone"), + Category = VerbCategory.Admin, + Act = () => + { + if (!_transformSystem.TryGetMapOrGridCoordinates(args.User, out var coords)) + { + _popup.PopupEntity(Loc.GetString("admin-player-spawn-failed"), args.User, args.User); + return; + } + + var stationUid = _stations.GetOwningStation(args.Target); + + var profile = _ticker.GetPlayerProfile(targetActor.PlayerSession); + _spawning.SpawnPlayerMob(coords.Value, null, profile, stationUid); + }, + ConfirmationPopup = true, + Impact = LogImpact.High, + }); } // Admin Logs @@ -170,7 +238,7 @@ private void AddAdminVerbs(GetVerbsEvent args) { var ui = new AdminLogsEui(); _eui.OpenEui(ui, player); - ui.SetLogFilter(search:args.Target.GetHashCode().ToString()); + ui.SetLogFilter(search:args.Target.Id.ToString()); }, Impact = LogImpact.Low }; @@ -211,21 +279,6 @@ private void AddAdminVerbs(GetVerbsEvent args) Impact = LogImpact.Low }); - // Respawn - if (HasComp(args.Target)) - { - args.Verbs.Add(new Verb() - { - Text = Loc.GetString("admin-player-actions-respawn"), - Category = VerbCategory.Admin, - Act = () => - { - _console.ExecuteCommand(player, $"respawn {actor.PlayerSession.Name}"); - }, - ConfirmationPopup = true, - // No logimpact as the command does it internally. - }); - } } } diff --git a/Content.Server/Administration/Systems/BwoinkSystem.cs b/Content.Server/Administration/Systems/BwoinkSystem.cs index 31ef285a88..00b771e448 100644 --- a/Content.Server/Administration/Systems/BwoinkSystem.cs +++ b/Content.Server/Administration/Systems/BwoinkSystem.cs @@ -46,6 +46,7 @@ public sealed class BwoinkSystem : SharedBwoinkSystem private readonly Dictionary> _messageQueues = new(); private readonly HashSet _processingChannels = new(); private readonly Dictionary _typingUpdateTimestamps = new(); + private string _overrideClientName = string.Empty; // Max embed description length is 4096, according to https://discord.com/developers/docs/resources/channel#embed-object-embed-limits // Keep small margin, just to be safe @@ -67,6 +68,7 @@ public override void Initialize() _config.OnValueChanged(CCVars.DiscordAHelpFooterIcon, OnFooterIconChanged, true); _config.OnValueChanged(CCVars.DiscordAHelpAvatar, OnAvatarChanged, true); _config.OnValueChanged(CVars.GameHostName, OnServerNameChanged, true); + _config.OnValueChanged(CCVars.AdminAhelpOverrideClientName, OnOverrideChanged, true); _sawmill = IoCManager.Resolve().GetSawmill("AHELP"); _maxAdditionalChars = GenerateAHelpMessage("", "", true).Length; _playerManager.PlayerStatusChanged += OnPlayerStatusChanged; @@ -75,6 +77,11 @@ public override void Initialize() SubscribeNetworkEvent(OnClientTypingUpdated); } + private void OnOverrideChanged(string obj) + { + _overrideClientName = obj; + } + private void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs e) { if (e.NewStatus != SessionStatus.InGame) @@ -144,6 +151,7 @@ public override void Shutdown() _config.UnsubValueChanged(CCVars.DiscordAHelpWebhook, OnWebhookChanged); _config.UnsubValueChanged(CCVars.DiscordAHelpFooterIcon, OnFooterIconChanged); _config.UnsubValueChanged(CVars.GameHostName, OnServerNameChanged); + _config.UnsubValueChanged(CCVars.AdminAhelpOverrideClientName, OnOverrideChanged); } private async void OnWebhookChanged(string url) @@ -393,14 +401,20 @@ protected override void OnBwoinkTextMessage(BwoinkTextMessage message, EntitySes var escapedText = FormattedMessage.EscapeText(message.Text); - var bwoinkText = senderAdmin switch + string bwoinkText; + + if (senderAdmin is not null && senderAdmin.Flags == AdminFlags.Adminhelp) // Mentor. Not full admin. That's why it's colored differently. { - var x when x is not null && x.Flags == AdminFlags.Adminhelp => - $"[color=purple]{senderSession.Name}[/color]: {escapedText}", - var x when x is not null && x.HasFlag(AdminFlags.Adminhelp) => - $"[color=red]{senderSession.Name}[/color]: {escapedText}", - _ => $"{senderSession.Name}: {escapedText}", - }; + bwoinkText = $"[color=purple]{senderSession.Name}[/color]: {escapedText}"; + } + else if (senderAdmin is not null && senderAdmin.HasFlag(AdminFlags.Adminhelp)) + { + bwoinkText = $"[color=red]{senderSession.Name}[/color]: {escapedText}"; + } + else + { + bwoinkText = $"{senderSession.Name}: {escapedText}"; + } var msg = new BwoinkTextMessage(message.UserId, senderSession.UserId, bwoinkText); @@ -418,7 +432,30 @@ protected override void OnBwoinkTextMessage(BwoinkTextMessage message, EntitySes if (_playerManager.TryGetSessionById(message.UserId, out var session)) { if (!admins.Contains(session.ConnectedClient)) - RaiseNetworkEvent(msg, session.ConnectedClient); + { + // If _overrideClientName is set, we generate a new message with the override name. The admins name will still be the original name for the webhooks. + if (_overrideClientName != string.Empty) + { + string overrideMsgText; + // Doing the same thing as above, but with the override name. Theres probably a better way to do this. + if (senderAdmin is not null && senderAdmin.Flags == AdminFlags.Adminhelp) // Mentor. Not full admin. That's why it's colored differently. + { + overrideMsgText = $"[color=purple]{_overrideClientName}[/color]: {escapedText}"; + } + else if (senderAdmin is not null && senderAdmin.HasFlag(AdminFlags.Adminhelp)) + { + overrideMsgText = $"[color=red]{_overrideClientName}[/color]: {escapedText}"; + } + else + { + overrideMsgText = $"{senderSession.Name}: {escapedText}"; // Not an admin, name is not overridden. + } + + RaiseNetworkEvent(new BwoinkTextMessage(message.UserId, senderSession.UserId, overrideMsgText), session.ConnectedClient); + } + else + RaiseNetworkEvent(msg, session.ConnectedClient); + } } var sendsWebhook = _webhookUrl != string.Empty; diff --git a/Content.Server/Administration/Systems/SuperBonkSystem.cs b/Content.Server/Administration/Systems/SuperBonkSystem.cs new file mode 100644 index 0000000000..5488a8d6f4 --- /dev/null +++ b/Content.Server/Administration/Systems/SuperBonkSystem.cs @@ -0,0 +1,107 @@ +using Content.Server.Administration.Components; +using Content.Shared.Climbing.Components; +using Content.Shared.Climbing.Events; +using Content.Shared.Climbing.Systems; +using Content.Shared.Interaction.Components; +using Content.Shared.Mobs; +using Content.Shared.Mobs.Components; + +namespace Content.Server.Administration.Systems; + +public sealed class SuperBonkSystem: EntitySystem +{ + [Dependency] private readonly SharedTransformSystem _transformSystem = default!; + [Dependency] private readonly BonkSystem _bonkSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnBonkShutdown); + SubscribeLocalEvent(OnMobStateChanged); + } + + public void StartSuperBonk(EntityUid target, float delay = 0.1f, bool stopWhenDead = false ) + { + + //The other check in the code to stop when the target dies does not work if the target is already dead. + if (stopWhenDead && TryComp(target, out var mState)) + { + if (mState.CurrentState == MobState.Dead) + return; + } + + + var hadClumsy = EnsureComp(target, out _); + + var tables = EntityQueryEnumerator(); + var bonks = new Dictionary(); + // This is done so we don't crash if something like a new table is spawned. + while (tables.MoveNext(out var uid, out var comp)) + { + bonks.Add(uid, comp); + } + + var sComp = new SuperBonkComponent + { + Target = target, + Tables = bonks.GetEnumerator(), + RemoveClumsy = !hadClumsy, + StopWhenDead = stopWhenDead, + }; + + AddComp(target, sComp); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + var comps = EntityQueryEnumerator(); + + while (comps.MoveNext(out var uid, out var comp)) + { + comp.TimeRemaining -= frameTime; + if (!(comp.TimeRemaining <= 0)) + continue; + + Bonk(comp); + + if (!(comp.Tables.MoveNext())) + { + RemComp(comp.Target); + continue; + } + + comp.TimeRemaining = comp.InitialTime; + } + } + + private void Bonk(SuperBonkComponent comp) + { + var uid = comp.Tables.Current.Key; + var bonkComp = comp.Tables.Current.Value; + + // It would be very weird for something without a transform component to have a bonk component + // but just in case because I don't want to crash the server. + if (!HasComp(uid)) + return; + + _transformSystem.SetCoordinates(comp.Target, Transform(uid).Coordinates); + + _bonkSystem.TryBonk(comp.Target, uid, bonkComp); + } + + private void OnMobStateChanged(EntityUid uid, SuperBonkComponent comp, MobStateChangedEvent args) + { + if (comp.StopWhenDead && args.NewMobState == MobState.Dead) + { + RemComp(uid); + } + } + + private void OnBonkShutdown(EntityUid uid, SuperBonkComponent comp, ComponentShutdown ev) + { + if (comp.RemoveClumsy) + RemComp(comp.Target); + } +} diff --git a/Content.Server/Advertisements/AdvertisementsPackPrototype.cs b/Content.Server/Advertisements/AdvertisementsPackPrototype.cs index 31443573d3..56086d39a4 100644 --- a/Content.Server/Advertisements/AdvertisementsPackPrototype.cs +++ b/Content.Server/Advertisements/AdvertisementsPackPrototype.cs @@ -3,7 +3,7 @@ namespace Content.Server.Advertisements { [Serializable, Prototype("advertisementsPack")] - public sealed class AdvertisementsPackPrototype : IPrototype + public sealed partial class AdvertisementsPackPrototype : IPrototype { [ViewVariables] [IdDataField] diff --git a/Content.Server/Alert/ServerAlertsSystem.cs b/Content.Server/Alert/ServerAlertsSystem.cs index 58e56c7566..b7b80f7321 100644 --- a/Content.Server/Alert/ServerAlertsSystem.cs +++ b/Content.Server/Alert/ServerAlertsSystem.cs @@ -1,19 +1,7 @@ using Content.Shared.Alert; -using Robust.Server.GameObjects; namespace Content.Server.Alert; internal sealed class ServerAlertsSystem : AlertsSystem { - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnPlayerAttached); - } - - private void OnPlayerAttached(EntityUid uid, AlertsComponent component, PlayerAttachedEvent args) - { - Dirty(component); - } } diff --git a/Content.Server/AlertLevel/AlertLevelPrototype.cs b/Content.Server/AlertLevel/AlertLevelPrototype.cs index 6716203b25..c6740c16cc 100644 --- a/Content.Server/AlertLevel/AlertLevelPrototype.cs +++ b/Content.Server/AlertLevel/AlertLevelPrototype.cs @@ -4,7 +4,7 @@ namespace Content.Server.AlertLevel; [Prototype("alertLevels")] -public sealed class AlertLevelPrototype : IPrototype +public sealed partial class AlertLevelPrototype : IPrototype { [IdDataField] public string ID { get; } = default!; diff --git a/Content.Server/AlertLevel/AlertLevelSystem.cs b/Content.Server/AlertLevel/AlertLevelSystem.cs index 66e09d34e0..04e274ceeb 100644 --- a/Content.Server/AlertLevel/AlertLevelSystem.cs +++ b/Content.Server/AlertLevel/AlertLevelSystem.cs @@ -3,6 +3,7 @@ using Content.Server.Station.Systems; using Content.Shared.CCVar; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; using Robust.Shared.Prototypes; @@ -10,10 +11,11 @@ namespace Content.Server.AlertLevel; public sealed class AlertLevelSystem : EntitySystem { + [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly ChatSystem _chatSystem = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly StationSystem _stationSystem = default!; - [Dependency] private readonly IConfigurationManager _cfg = default!; // Until stations are a prototype, this is how it's going to have to be. public const string DefaultAlertLevelSet = "stationAlerts"; @@ -21,15 +23,7 @@ public sealed class AlertLevelSystem : EntitySystem public override void Initialize() { SubscribeLocalEvent(OnStationInitialize); - - _prototypeManager.PrototypesReloaded += OnPrototypeReload; - } - - public override void Shutdown() - { - base.Shutdown(); - - _prototypeManager.PrototypesReloaded -= OnPrototypeReload; + SubscribeLocalEvent(OnPrototypeReload); } public override void Update(float time) @@ -174,7 +168,7 @@ public void SetLevel(EntityUid station, string level, bool playSound, bool annou if (detail.Sound != null) { var filter = _stationSystem.GetInOwningStation(station); - SoundSystem.Play(detail.Sound.GetSound(), filter, detail.Sound.Params); + _audio.PlayGlobal(detail.Sound.GetSound(), filter, true, detail.Sound.Params); } else { diff --git a/Content.Server/Ame/Components/AmeControllerComponent.cs b/Content.Server/Ame/Components/AmeControllerComponent.cs index 1bf1ac2c92..abdb76c9e3 100644 --- a/Content.Server/Ame/Components/AmeControllerComponent.cs +++ b/Content.Server/Ame/Components/AmeControllerComponent.cs @@ -2,6 +2,7 @@ using Content.Shared.Ame; using Robust.Shared.Audio; using Robust.Shared.Containers; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; namespace Content.Server.Ame.Components; @@ -89,4 +90,16 @@ public sealed partial class AmeControllerComponent : SharedAmeControllerComponen /// [ViewVariables] public TimeSpan UpdateUIPeriod = TimeSpan.FromSeconds(3.0); + + /// + /// Time at which the admin alarm sound effect can next be played. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] + public TimeSpan EffectCooldown; + + /// + /// Time between admin alarm sound effects. Prevents spam + /// + [DataField] + public TimeSpan CooldownDuration = TimeSpan.FromSeconds(10f); } diff --git a/Content.Server/Ame/EntitySystems/AmeControllerSystem.cs b/Content.Server/Ame/EntitySystems/AmeControllerSystem.cs index 44140193d2..2e46134504 100644 --- a/Content.Server/Ame/EntitySystems/AmeControllerSystem.cs +++ b/Content.Server/Ame/EntitySystems/AmeControllerSystem.cs @@ -1,6 +1,7 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; using Content.Server.Administration.Logs; +using Content.Server.Administration.Managers; using Content.Server.Ame.Components; using Content.Server.Chat.Managers; using Content.Server.NodeContainer; @@ -15,7 +16,9 @@ using Robust.Server.Containers; using Robust.Server.GameObjects; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; +using Robust.Shared.Player; using Robust.Shared.Timing; namespace Content.Server.Ame.EntitySystems; @@ -23,6 +26,7 @@ namespace Content.Server.Ame.EntitySystems; public sealed class AmeControllerSystem : EntitySystem { [Dependency] private readonly IAdminLogManager _adminLogger = default!; + [Dependency] private readonly IAdminManager _adminManager = default!; [Dependency] private readonly IChatManager _chatManager = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly AppearanceSystem _appearanceSystem = default!; @@ -233,7 +237,15 @@ public void SetInjectionAmount(EntityUid uid, int value, EntityUid? user = null, safeLimit = group.CoreCount * 2; if (oldValue <= safeLimit && value > safeLimit) - _chatManager.SendAdminAlert(user.Value, $"increased AME over safe limit to {controller.InjectionAmount}"); + { + if (_gameTiming.CurTime > controller.EffectCooldown) + { + _chatManager.SendAdminAlert(user.Value, $"increased AME over safe limit to {controller.InjectionAmount}"); + _audioSystem.PlayGlobal("/Audio/Misc/adminlarm.ogg", + Filter.Empty().AddPlayers(_adminManager.ActiveAdmins), false, AudioParams.Default.WithVolume(-8f)); + controller.EffectCooldown = _gameTiming.CurTime + controller.CooldownDuration; + } + } } public void AdjustInjectionAmount(EntityUid uid, int delta, int min = 0, int max = int.MaxValue, EntityUid? user = null, AmeControllerComponent? controller = null) diff --git a/Content.Server/Ame/EntitySystems/AmePartSystem.cs b/Content.Server/Ame/EntitySystems/AmePartSystem.cs index 54a379f693..a75c092e2e 100644 --- a/Content.Server/Ame/EntitySystems/AmePartSystem.cs +++ b/Content.Server/Ame/EntitySystems/AmePartSystem.cs @@ -6,6 +6,8 @@ using Content.Shared.Database; using Content.Shared.Hands.Components; using Content.Shared.Interaction; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Map; namespace Content.Server.Ame.EntitySystems; diff --git a/Content.Server/Animals/Components/EggLayerComponent.cs b/Content.Server/Animals/Components/EggLayerComponent.cs index 33d14c8e36..a0f7de676e 100644 --- a/Content.Server/Animals/Components/EggLayerComponent.cs +++ b/Content.Server/Animals/Components/EggLayerComponent.cs @@ -1,7 +1,6 @@ using Content.Shared.Storage; using Robust.Shared.Audio; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Animals.Components; @@ -9,28 +8,29 @@ namespace Content.Server.Animals.Components; /// This component handles animals which lay eggs (or some other item) on a timer, using up hunger to do so. /// It also grants an action to players who are controlling these entities, allowing them to do it manually. /// + [RegisterComponent] public sealed partial class EggLayerComponent : Component { - [DataField("eggLayAction", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string EggLayAction = "ActionAnimalLayEgg"; + [DataField] + public EntProtoId EggLayAction = "ActionAnimalLayEgg"; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("hungerUsage")] + /// + /// The amount of nutrient consumed on update. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] public float HungerUsage = 60f; /// /// Minimum cooldown used for the automatic egg laying. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("eggLayCooldownMin")] + [DataField, ViewVariables(VVAccess.ReadWrite)] public float EggLayCooldownMin = 60f; /// /// Maximum cooldown used for the automatic egg laying. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("eggLayCooldownMax")] + [DataField, ViewVariables(VVAccess.ReadWrite)] public float EggLayCooldownMax = 120f; /// @@ -39,14 +39,13 @@ public sealed partial class EggLayerComponent : Component [ViewVariables(VVAccess.ReadWrite)] public float CurrentEggLayCooldown; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("eggSpawn", required: true)] + [DataField(required: true), ViewVariables(VVAccess.ReadWrite)] public List EggSpawn = default!; - [DataField("eggLaySound")] + [DataField] public SoundSpecifier EggLaySound = new SoundPathSpecifier("/Audio/Effects/pop.ogg"); - [DataField("accumulatedFrametime")] + [DataField] public float AccumulatedFrametime; [DataField] public EntityUid? Action; diff --git a/Content.Server/Animals/Components/UdderComponent.cs b/Content.Server/Animals/Components/UdderComponent.cs index 1c71fcb7c5..3895a8ba24 100644 --- a/Content.Server/Animals/Components/UdderComponent.cs +++ b/Content.Server/Animals/Components/UdderComponent.cs @@ -1,9 +1,15 @@ using Content.Server.Animals.Systems; using Content.Shared.Chemistry.Reagent; using Content.Shared.FixedPoint; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + namespace Content.Server.Animals.Components + +/// +/// Lets an entity produce milk. Uses hunger if present. +/// { [RegisterComponent, Access(typeof(UdderSystem))] internal sealed partial class UdderComponent : Component @@ -11,31 +17,37 @@ internal sealed partial class UdderComponent : Component /// /// The reagent to produce. /// - [ViewVariables(VVAccess.ReadOnly)] - [DataField("reagentId", customTypeSerializer:typeof(PrototypeIdSerializer))] - public string ReagentId = "Milk"; + [DataField, ViewVariables(VVAccess.ReadOnly)] + public ProtoId ReagentId = "Milk"; /// /// The solution to add reagent to. /// - [ViewVariables(VVAccess.ReadOnly)] - [DataField("targetSolution")] - public string TargetSolutionName = "udder"; + [DataField, ViewVariables(VVAccess.ReadOnly)] + public string Solution = "udder"; /// /// The amount of reagent to be generated on update. /// - [ViewVariables(VVAccess.ReadOnly)] - [DataField("quantity")] - public FixedPoint2 QuantityPerUpdate = 1; + [DataField, ViewVariables(VVAccess.ReadOnly)] + public FixedPoint2 QuantityPerUpdate = 25; /// - /// The time between updates (in seconds). + /// The amount of nutrient consumed on update. /// - [ViewVariables(VVAccess.ReadOnly)] - [DataField("updateRate")] - public float UpdateRate = 5; + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float HungerUsage = 10f; - public float AccumulatedFrameTime; + /// + /// How long to wait before producing. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public TimeSpan GrowthDelay = TimeSpan.FromMinutes(1); + + /// + /// When to next try to produce. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite)] + public TimeSpan NextGrowth = TimeSpan.FromSeconds(0); } } diff --git a/Content.Server/Animals/Components/WoolyComponent.cs b/Content.Server/Animals/Components/WoolyComponent.cs new file mode 100644 index 0000000000..e700fd76f6 --- /dev/null +++ b/Content.Server/Animals/Components/WoolyComponent.cs @@ -0,0 +1,51 @@ +using Content.Server.Animals.Systems; +using Content.Shared.Chemistry.Reagent; +using Content.Shared.FixedPoint; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Server.Animals.Components; + +/// +/// Lets an entity produce wool fibers. Uses hunger if present. +/// + +[RegisterComponent, Access(typeof(WoolySystem))] +public sealed partial class WoolyComponent : Component +{ + /// + /// The reagent to grow. + /// + [DataField, ViewVariables(VVAccess.ReadOnly)] + public ProtoId ReagentId = "Fiber"; + + /// + /// The solution to add reagent to. + /// + [DataField, ViewVariables(VVAccess.ReadOnly)] + public string Solution = "wool"; + + /// + /// The amount of reagent to be generated on update. + /// + [DataField, ViewVariables(VVAccess.ReadOnly)] + public FixedPoint2 Quantity = 25; + + /// + /// The amount of nutrient consumed on update. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float HungerUsage = 10f; + + /// + /// How long to wait before growing wool. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public TimeSpan GrowthDelay = TimeSpan.FromMinutes(1); + + /// + /// When to next try growing wool. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite)] + public TimeSpan NextGrowth = TimeSpan.FromSeconds(0); +} diff --git a/Content.Server/Animals/Systems/EggLayerSystem.cs b/Content.Server/Animals/Systems/EggLayerSystem.cs index 5189adb031..55d63808a4 100644 --- a/Content.Server/Animals/Systems/EggLayerSystem.cs +++ b/Content.Server/Animals/Systems/EggLayerSystem.cs @@ -2,15 +2,21 @@ using Content.Server.Animals.Components; using Content.Server.Popups; using Content.Shared.Actions.Events; +using Content.Shared.Mobs.Systems; using Content.Shared.Nutrition.Components; using Content.Shared.Nutrition.EntitySystems; using Content.Shared.Storage; +using Robust.Server.Audio; using Robust.Server.GameObjects; using Robust.Shared.Player; using Robust.Shared.Random; namespace Content.Server.Animals.Systems; +/// +/// Gives ability to produce eggs, produces endless if the +/// owner has no HungerComponent +/// public sealed class EggLayerSystem : EntitySystem { [Dependency] private readonly IRobustRandom _random = default!; @@ -18,6 +24,7 @@ public sealed class EggLayerSystem : EntitySystem [Dependency] private readonly AudioSystem _audio = default!; [Dependency] private readonly HungerSystem _hunger = default!; [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly MobStateSystem _mobState = default!; public override void Initialize() { @@ -56,35 +63,38 @@ private void OnMapInit(EntityUid uid, EggLayerComponent component, MapInitEvent component.CurrentEggLayCooldown = _random.NextFloat(component.EggLayCooldownMin, component.EggLayCooldownMax); } - private void OnEggLayAction(EntityUid uid, EggLayerComponent component, EggLayInstantActionEvent args) + private void OnEggLayAction(EntityUid uid, EggLayerComponent egglayer, EggLayInstantActionEvent args) { - args.Handled = TryLayEgg(uid, component); + args.Handled = TryLayEgg(uid, egglayer); } - public bool TryLayEgg(EntityUid uid, EggLayerComponent? component) + public bool TryLayEgg(EntityUid uid, EggLayerComponent? egglayer) { - if (!Resolve(uid, ref component)) + if (!Resolve(uid, ref egglayer)) + return false; + + if (_mobState.IsDead(uid)) return false; // Allow infinitely laying eggs if they can't get hungry if (TryComp(uid, out var hunger)) { - if (hunger.CurrentHunger < component.HungerUsage) + if (hunger.CurrentHunger < egglayer.HungerUsage) { _popup.PopupEntity(Loc.GetString("action-popup-lay-egg-too-hungry"), uid, uid); return false; } - _hunger.ModifyHunger(uid, -component.HungerUsage, hunger); + _hunger.ModifyHunger(uid, -egglayer.HungerUsage, hunger); } - foreach (var ent in EntitySpawnCollection.GetSpawns(component.EggSpawn, _random)) + foreach (var ent in EntitySpawnCollection.GetSpawns(egglayer.EggSpawn, _random)) { Spawn(ent, Transform(uid).Coordinates); } // Sound + popups - _audio.PlayPvs(component.EggLaySound, uid); + _audio.PlayPvs(egglayer.EggLaySound, uid); _popup.PopupEntity(Loc.GetString("action-popup-lay-egg-user"), uid, uid); _popup.PopupEntity(Loc.GetString("action-popup-lay-egg-others", ("entity", uid)), uid, Filter.PvsExcept(uid), true); diff --git a/Content.Server/Animals/Systems/UdderSystem.cs b/Content.Server/Animals/Systems/UdderSystem.cs index 4164aedfd1..c07ba12dd5 100644 --- a/Content.Server/Animals/Systems/UdderSystem.cs +++ b/Content.Server/Animals/Systems/UdderSystem.cs @@ -4,124 +4,132 @@ using Content.Shared.Chemistry.EntitySystems; using Content.Shared.DoAfter; using Content.Shared.IdentityManagement; +using Content.Shared.Mobs.Systems; using Content.Shared.Nutrition.Components; using Content.Shared.Nutrition.EntitySystems; using Content.Shared.Popups; using Content.Shared.Udder; using Content.Shared.Verbs; +using Robust.Shared.Timing; -namespace Content.Server.Animals.Systems +namespace Content.Server.Animals.Systems; + +/// +/// Gives ability to produce milkable reagents, produces endless if the +/// owner has no HungerComponent +/// +internal sealed class UdderSystem : EntitySystem { - /// - /// Gives ability to living beings with acceptable hunger level to produce milkable reagents. - /// - internal sealed class UdderSystem : EntitySystem + [Dependency] private readonly HungerSystem _hunger = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly MobStateSystem _mobState = default!; + [Dependency] private readonly PopupSystem _popupSystem = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; + [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; + + public override void Initialize() { - [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; - [Dependency] private readonly HungerSystem _hunger = default!; - [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; - [Dependency] private readonly PopupSystem _popupSystem = default!; + base.Initialize(); - public override void Initialize() - { - base.Initialize(); + SubscribeLocalEvent>(AddMilkVerb); + SubscribeLocalEvent(OnDoAfter); + } - SubscribeLocalEvent>(AddMilkVerb); - SubscribeLocalEvent(OnDoAfter); - } + public override void Update(float frameTime) + { + base.Update(frameTime); - public override void Update(float frameTime) + var query = EntityQueryEnumerator(); + var now = _timing.CurTime; + while (query.MoveNext(out var uid, out var udder)) { - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var udder)) + if (now < udder.NextGrowth) + continue; + + udder.NextGrowth = now + udder.GrowthDelay; + + if (_mobState.IsDead(uid)) + continue; + + // Actually there is food digestion so no problem with instant reagent generation "OnFeed" + if (EntityManager.TryGetComponent(uid, out HungerComponent? hunger)) { - udder.AccumulatedFrameTime += frameTime; - - while (udder.AccumulatedFrameTime > udder.UpdateRate) - { - udder.AccumulatedFrameTime -= udder.UpdateRate; - - // Actually there is food digestion so no problem with instant reagent generation "OnFeed" - if (EntityManager.TryGetComponent(uid, out HungerComponent? hunger)) - { - // Is there enough nutrition to produce reagent? - if (_hunger.GetHungerThreshold(hunger) < HungerThreshold.Peckish) - continue; - } - - if (!_solutionContainerSystem.TryGetSolution(uid, udder.TargetSolutionName, - out var solution)) - continue; - - //TODO: toxins from bloodstream !? - _solutionContainerSystem.TryAddReagent(uid, solution, udder.ReagentId, - udder.QuantityPerUpdate, out var accepted); - } + // Is there enough nutrition to produce reagent? + if (_hunger.GetHungerThreshold(hunger) < HungerThreshold.Okay) + continue; + + _hunger.ModifyHunger(uid, -udder.HungerUsage, hunger); } + + if (!_solutionContainerSystem.TryGetSolution(uid, udder.Solution, out var solution)) + continue; + + //TODO: toxins from bloodstream !? + _solutionContainerSystem.TryAddReagent(uid, solution, udder.ReagentId, udder.QuantityPerUpdate, out _); } + } + + private void AttemptMilk(Entity udder, EntityUid userUid, EntityUid containerUid) + { + if (!Resolve(udder, ref udder.Comp)) + return; - private void AttemptMilk(EntityUid uid, EntityUid userUid, EntityUid containerUid, UdderComponent? udder = null) + var doargs = new DoAfterArgs(EntityManager, userUid, 5, new MilkingDoAfterEvent(), udder, udder, used: containerUid) { - if (!Resolve(uid, ref udder)) - return; + BreakOnUserMove = true, + BreakOnDamage = true, + BreakOnTargetMove = true, + MovementThreshold = 1.0f, + }; - var doargs = new DoAfterArgs(EntityManager, userUid, 5, new MilkingDoAfterEvent(), uid, uid, used: containerUid) - { - BreakOnUserMove = true, - BreakOnDamage = true, - BreakOnTargetMove = true, - MovementThreshold = 1.0f, - }; + _doAfterSystem.TryStartDoAfter(doargs); + } - _doAfterSystem.TryStartDoAfter(doargs); - } + private void OnDoAfter(EntityUid uid, UdderComponent component, MilkingDoAfterEvent args) + { + if (args.Cancelled || args.Handled || args.Args.Used == null) + return; - private void OnDoAfter(EntityUid uid, UdderComponent component, MilkingDoAfterEvent args) - { - if (args.Cancelled || args.Handled || args.Args.Used == null) - return; + if (!_solutionContainerSystem.TryGetSolution(uid, component.Solution, out var solution)) + return; - if (!_solutionContainerSystem.TryGetSolution(uid, component.TargetSolutionName, out var solution)) - return; + if (!_solutionContainerSystem.TryGetRefillableSolution(args.Args.Used.Value, out var targetSolution)) + return; - if (!_solutionContainerSystem.TryGetRefillableSolution(args.Args.Used.Value, out var targetSolution)) - return; + args.Handled = true; + var quantity = solution.Volume; + if (quantity == 0) + { + _popupSystem.PopupEntity(Loc.GetString("udder-system-dry"), uid, args.Args.User); + return; + } - args.Handled = true; - var quantity = solution.Volume; - if(quantity == 0) - { - _popupSystem.PopupEntity(Loc.GetString("udder-system-dry"), uid, args.Args.User); - return; - } + if (quantity > targetSolution.AvailableVolume) + quantity = targetSolution.AvailableVolume; - if (quantity > targetSolution.AvailableVolume) - quantity = targetSolution.AvailableVolume; + var split = _solutionContainerSystem.SplitSolution(uid, solution, quantity); + _solutionContainerSystem.TryAddSolution(args.Args.Used.Value, targetSolution, split); - var split = _solutionContainerSystem.SplitSolution(uid, solution, quantity); - _solutionContainerSystem.TryAddSolution(args.Args.Used.Value, targetSolution, split); + _popupSystem.PopupEntity(Loc.GetString("udder-system-success", ("amount", quantity), ("target", Identity.Entity(args.Args.Used.Value, EntityManager))), uid, + args.Args.User, PopupType.Medium); + } - _popupSystem.PopupEntity(Loc.GetString("udder-system-success", ("amount", quantity), ("target", Identity.Entity(args.Args.Used.Value, EntityManager))), uid, - args.Args.User, PopupType.Medium); - } + private void AddMilkVerb(EntityUid uid, UdderComponent component, GetVerbsEvent args) + { + if (args.Using == null || + !args.CanInteract || + !EntityManager.HasComponent(args.Using.Value)) + return; - private void AddMilkVerb(EntityUid uid, UdderComponent component, GetVerbsEvent args) + AlternativeVerb verb = new() { - if (args.Using == null || - !args.CanInteract || - !EntityManager.HasComponent(args.Using.Value)) - return; - - AlternativeVerb verb = new() + Act = () => { - Act = () => - { - AttemptMilk(uid, args.User, args.Using.Value, component); - }, - Text = Loc.GetString("udder-system-verb-milk"), - Priority = 2 - }; - args.Verbs.Add(verb); - } + AttemptMilk(uid, args.User, args.Using.Value); + }, + Text = Loc.GetString("udder-system-verb-milk"), + Priority = 2 + }; + args.Verbs.Add(verb); } } diff --git a/Content.Server/Animals/Systems/WoolySystem.cs b/Content.Server/Animals/Systems/WoolySystem.cs new file mode 100644 index 0000000000..6cf8d8c88f --- /dev/null +++ b/Content.Server/Animals/Systems/WoolySystem.cs @@ -0,0 +1,67 @@ +using Content.Server.Animals.Components; +using Content.Server.Nutrition; +using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Mobs.Systems; +using Content.Shared.Nutrition.Components; +using Content.Shared.Nutrition.EntitySystems; +using Robust.Shared.Timing; + +namespace Content.Server.Animals.Systems; + +/// +/// Gives ability to produce fiber reagents, produces endless if the +/// owner has no HungerComponent +/// +public sealed class WoolySystem : EntitySystem +{ + [Dependency] private readonly HungerSystem _hunger = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly MobStateSystem _mobState = default!; + [Dependency] private readonly SolutionContainerSystem _solutionContainer = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnBeforeFullyEaten); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var query = EntityQueryEnumerator(); + var now = _timing.CurTime; + while (query.MoveNext(out var uid, out var wooly)) + { + if (now < wooly.NextGrowth) + continue; + + wooly.NextGrowth = now + wooly.GrowthDelay; + + if (_mobState.IsDead(uid)) + continue; + + // Actually there is food digestion so no problem with instant reagent generation "OnFeed" + if (EntityManager.TryGetComponent(uid, out HungerComponent? hunger)) + { + // Is there enough nutrition to produce reagent? + if (_hunger.GetHungerThreshold(hunger) < HungerThreshold.Okay) + continue; + + _hunger.ModifyHunger(uid, -wooly.HungerUsage, hunger); + } + + if (!_solutionContainer.TryGetSolution(uid, wooly.Solution, out var solution)) + continue; + + _solutionContainer.TryAddReagent(uid, solution, wooly.ReagentId, wooly.Quantity, out _); + } + } + + private void OnBeforeFullyEaten(Entity ent, ref BeforeFullyEatenEvent args) + { + // don't want moths to delete goats after eating them + args.Cancel(); + } +} diff --git a/Content.Server/Announcements/RoundAnnouncementPrototype.cs b/Content.Server/Announcements/RoundAnnouncementPrototype.cs index 928c279a87..11984196f1 100644 --- a/Content.Server/Announcements/RoundAnnouncementPrototype.cs +++ b/Content.Server/Announcements/RoundAnnouncementPrototype.cs @@ -1,7 +1,5 @@ -using Content.Server.GameTicking.Presets; using Robust.Shared.Audio; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; namespace Content.Server.Announcements; @@ -9,7 +7,7 @@ namespace Content.Server.Announcements; /// Used for any announcements on the start of a round. /// [Prototype("roundAnnouncement")] -public sealed class RoundAnnouncementPrototype : IPrototype +public sealed partial class RoundAnnouncementPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Server/Anomaly/AnomalySynchronizerSystem.cs b/Content.Server/Anomaly/AnomalySynchronizerSystem.cs new file mode 100644 index 0000000000..7b42b9d890 --- /dev/null +++ b/Content.Server/Anomaly/AnomalySynchronizerSystem.cs @@ -0,0 +1,201 @@ +using System.Linq; +using Content.Server.Anomaly.Components; +using Content.Server.DeviceLinking.Systems; +using Content.Server.Power.Components; +using Content.Server.Power.EntitySystems; +using Content.Shared.Anomaly.Components; +using Content.Shared.Examine; +using Content.Shared.Interaction; +using Content.Shared.Popups; +using Robust.Shared.Audio.Systems; +using Content.Shared.Verbs; + +namespace Content.Server.Anomaly; + +/// +/// a device that allows you to translate anomaly activity into multitool signals. +/// +public sealed partial class AnomalySynchronizerSystem : EntitySystem +{ + [Dependency] private readonly AnomalySystem _anomaly = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly EntityLookupSystem _entityLookup = default!; + [Dependency] private readonly DeviceLinkSystem _signal = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly PowerReceiverSystem _power = default!; + + private const float AttachRange = 0.15f; // The radius of one tile. It must not be set higher, otherwise the anomaly can be moved from tile to tile. + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnInteractHand); + SubscribeLocalEvent(OnPowerChanged); + SubscribeLocalEvent(OnExamined); + SubscribeLocalEvent>(OnGetInteractionVerbs); + + SubscribeLocalEvent(OnAnomalyPulse); + SubscribeLocalEvent(OnAnomalySeverityChanged); + SubscribeLocalEvent(OnAnomalyStabilityChanged); + } + + /// + /// If powered, try to attach a nearby anomaly. + /// + public bool TryAttachNearbyAnomaly(Entity ent, EntityUid? user = null) + { + if (!_power.IsPowered(ent)) + { + if (user is not null) + _popup.PopupEntity(Loc.GetString("base-computer-ui-component-not-powered", ("machine", ent)), ent, user.Value); + + return false; + } + + var coords = _transform.GetMapCoordinates(ent); + var anomaly = _entityLookup.GetEntitiesInRange(coords, AttachRange).FirstOrDefault(); + + if (anomaly.Owner is {Valid: false}) // no anomaly in range + { + if (user is not null) + _popup.PopupEntity(Loc.GetString("anomaly-sync-no-anomaly"), ent, user.Value); + + return false; + } + + ConnectToAnomaly(ent, anomaly); + return true; + } + + private void OnPowerChanged(Entity ent, ref PowerChangedEvent args) + { + if (args.Powered) + return; + + if (!TryComp(ent.Comp.ConnectedAnomaly, out var anomaly)) + return; + + _anomaly.DoAnomalyPulse(ent.Comp.ConnectedAnomaly.Value, anomaly); + DisconneсtFromAnomaly(ent, anomaly); + } + + private void OnExamined(Entity ent, ref ExaminedEvent args) + { + args.PushMarkup(Loc.GetString(ent.Comp.ConnectedAnomaly.HasValue ? "anomaly-sync-examine-connected" : "anomaly-sync-examine-not-connected")); + } + + private void OnGetInteractionVerbs(Entity ent, ref GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract || args.Hands is null || ent.Comp.ConnectedAnomaly.HasValue) + return; + + var user = args.User; + args.Verbs.Add(new() { + Act = () => + { + TryAttachNearbyAnomaly(ent, user); + }, + Message = Loc.GetString("anomaly-sync-connect-verb-message", ("machine", ent)), + Text = Loc.GetString("anomaly-sync-connect-verb-text"), + }); + } + + private void OnInteractHand(Entity ent, ref InteractHandEvent args) + { + TryAttachNearbyAnomaly(ent, args.User); + } + + private void ConnectToAnomaly(Entity ent, Entity anomaly) + { + if (ent.Comp.ConnectedAnomaly == anomaly) + return; + + ent.Comp.ConnectedAnomaly = anomaly; + //move the anomaly to the center of the synchronizer, for aesthetics. + var targetXform = _transform.GetWorldPosition(ent); + _transform.SetWorldPosition(anomaly, targetXform); + + _anomaly.DoAnomalyPulse(anomaly, anomaly); + _popup.PopupEntity(Loc.GetString("anomaly-sync-connected"), ent, PopupType.Medium); + _audio.PlayPvs(ent.Comp.ConnectedSound, ent); + } + + //TO DO: disconnection from the anomaly should also be triggered if the anomaly is far away from the synchronizer. + //Currently only bluespace anomaly can do this, but for some reason it is the only one that cannot be connected to the synchronizer. + private void DisconneсtFromAnomaly(Entity ent, AnomalyComponent anomaly) + { + if (ent.Comp.ConnectedAnomaly == null) + return; + + _anomaly.DoAnomalyPulse(ent.Comp.ConnectedAnomaly.Value, anomaly); + _popup.PopupEntity(Loc.GetString("anomaly-sync-disconnected"), ent, PopupType.Large); + _audio.PlayPvs(ent.Comp.ConnectedSound, ent); + + ent.Comp.ConnectedAnomaly = null; + } + + private void OnAnomalyPulse(ref AnomalyPulseEvent args) + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var component)) + { + if (args.Anomaly != component.ConnectedAnomaly) + continue; + + if (!_power.IsPowered(uid)) + continue; + + _signal.InvokePort(uid, component.PulsePort); + } + } + + private void OnAnomalySeverityChanged(ref AnomalySeverityChangedEvent args) + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var ent, out var component)) + { + if (args.Anomaly != component.ConnectedAnomaly) + continue; + + if (!_power.IsPowered(ent)) + continue; + + //The superscritical port is invoked not at the AnomalySupercriticalEvent, + //but at the moment the growth animation starts. Otherwise, there is no point in this port. + //ATTENTION! the console command supercriticalanomaly does not work here, + //as it forcefully causes growth to start without increasing severity. + if (args.Severity >= 1) + _signal.InvokePort(ent, component.SupercritPort); + } + } + + private void OnAnomalyStabilityChanged(ref AnomalyStabilityChangedEvent args) + { + Entity anomaly = (args.Anomaly, Comp(args.Anomaly)); + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var ent, out var component)) + { + if (component.ConnectedAnomaly != anomaly) + continue; + + if (!_power.IsPowered(ent)) + continue; + + if (args.Stability < anomaly.Comp.DecayThreshold) + { + _signal.InvokePort(ent, component.DecayingPort); + } + else if (args.Stability > anomaly.Comp.GrowthThreshold) + { + _signal.InvokePort(ent, component.GrowingPort); + } + else + { + _signal.InvokePort(ent, component.StabilizePort); + } + } + } +} diff --git a/Content.Server/Anomaly/AnomalySystem.Generator.cs b/Content.Server/Anomaly/AnomalySystem.Generator.cs index f1b147ac80..769558a7ad 100644 --- a/Content.Server/Anomaly/AnomalySystem.Generator.cs +++ b/Content.Server/Anomaly/AnomalySystem.Generator.cs @@ -81,7 +81,7 @@ public void TryGeneratorCreateAnomaly(EntityUid uid, AnomalyGeneratorComponent? var generating = EnsureComp(uid); generating.EndTime = Timing.CurTime + component.GenerationLength; - generating.AudioStream = Audio.PlayPvs(component.GeneratingSound, uid, AudioParams.Default.WithLoop(true)); + generating.AudioStream = Audio.PlayPvs(component.GeneratingSound, uid, AudioParams.Default.WithLoop(true))?.Entity; component.CooldownEndTime = Timing.CurTime + component.CooldownLength; UpdateGeneratorUi(uid, component); } @@ -174,7 +174,8 @@ private void UpdateGenerator() { if (Timing.CurTime < active.EndTime) continue; - active.AudioStream?.Stop(); + + active.AudioStream = _audio.Stop(active.AudioStream); OnGeneratingFinished(ent, gen); } } diff --git a/Content.Server/Anomaly/AnomalySystem.Scanner.cs b/Content.Server/Anomaly/AnomalySystem.Scanner.cs index 30b3d99497..74af8e67e3 100644 --- a/Content.Server/Anomaly/AnomalySystem.Scanner.cs +++ b/Content.Server/Anomaly/AnomalySystem.Scanner.cs @@ -78,6 +78,8 @@ private void OnScannerAfterInteract(EntityUid uid, AnomalyScannerComponent compo return; if (!HasComp(target)) return; + if (!args.CanReach) + return; _doAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, args.User, component.ScanDoAfterDuration, new ScannerDoAfterEvent(), uid, target: target, used: uid) { diff --git a/Content.Server/Anomaly/AnomalySystem.Vessel.cs b/Content.Server/Anomaly/AnomalySystem.Vessel.cs index c37b38b1f1..2acfb95e51 100644 --- a/Content.Server/Anomaly/AnomalySystem.Vessel.cs +++ b/Content.Server/Anomaly/AnomalySystem.Vessel.cs @@ -21,7 +21,6 @@ private void InitializeVessel() { SubscribeLocalEvent(OnVesselShutdown); SubscribeLocalEvent(OnVesselMapInit); - SubscribeLocalEvent(OnRefreshParts); SubscribeLocalEvent(OnUpgradeExamine); SubscribeLocalEvent(OnVesselInteractUsing); SubscribeLocalEvent(OnExamined); @@ -69,12 +68,6 @@ private void OnVesselMapInit(EntityUid uid, AnomalyVesselComponent component, Ma UpdateVesselAppearance(uid, component); } - private void OnRefreshParts(EntityUid uid, AnomalyVesselComponent component, RefreshPartsEvent args) - { - var modifierRating = args.PartRatings[component.MachinePartPointModifier] - 1; - component.PointMultiplier = MathF.Pow(component.PartRatingPointModifier, modifierRating); - } - private void OnUpgradeExamine(EntityUid uid, AnomalyVesselComponent component, UpgradeExamineEvent args) { args.AddPercentageUpgrade("anomaly-vessel-component-upgrade-output", component.PointMultiplier); @@ -102,6 +95,7 @@ private void OnVesselInteractUsing(EntityUid uid, AnomalyVesselComponent compone component.Anomaly = scanner.ScannedAnomaly; anomalyComponent.ConnectedVessel = uid; + _radiation.SetSourceEnabled(uid, true); UpdateVesselAppearance(uid, component); Popup.PopupEntity(Loc.GetString("anomaly-vessel-component-anomaly-assigned"), uid); } @@ -129,6 +123,7 @@ private void OnVesselAnomalyShutdown(ref AnomalyShutdownEvent args) component.Anomaly = null; UpdateVesselAppearance(ent, component); + _radiation.SetSourceEnabled(ent, false); if (!args.Supercritical) continue; diff --git a/Content.Server/Anomaly/AnomalySystem.cs b/Content.Server/Anomaly/AnomalySystem.cs index 74d6da951f..6f337097f4 100644 --- a/Content.Server/Anomaly/AnomalySystem.cs +++ b/Content.Server/Anomaly/AnomalySystem.cs @@ -3,12 +3,14 @@ using Content.Server.Audio; using Content.Server.Explosion.EntitySystems; using Content.Server.Materials; +using Content.Server.Radiation.Systems; using Content.Server.Radio.EntitySystems; using Content.Server.Station.Systems; using Content.Shared.Anomaly; using Content.Shared.Anomaly.Components; using Content.Shared.DoAfter; using Robust.Server.GameObjects; +using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; using Robust.Shared.Physics.Events; using Robust.Shared.Prototypes; @@ -31,6 +33,8 @@ public sealed partial class AnomalySystem : SharedAnomalySystem [Dependency] private readonly SharedPointLightSystem _pointLight = default!; [Dependency] private readonly StationSystem _station = default!; [Dependency] private readonly RadioSystem _radio = default!; + [Dependency] private readonly RadiationSystem _radiation = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly UserInterfaceSystem _ui = default!; public const float MinParticleVariation = 0.8f; diff --git a/Content.Server/Anomaly/Components/AnomalyCoreComponent.cs b/Content.Server/Anomaly/Components/AnomalyCoreComponent.cs new file mode 100644 index 0000000000..f86f95c71a --- /dev/null +++ b/Content.Server/Anomaly/Components/AnomalyCoreComponent.cs @@ -0,0 +1,42 @@ +using Content.Server.Anomaly.Effects; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Server.Anomaly.Components; + +/// +/// This component exists for a limited time, and after it expires it modifies the entity, greatly reducing its value and changing its visuals +/// +[RegisterComponent, Access(typeof(AnomalyCoreSystem))] +public sealed partial class AnomalyCoreComponent : Component +{ + + /// + /// Amount of time required for the core to decompose into an inert core + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public double TimeToDecay = 600; + + /// + /// The moment of core decay. It is set during entity initialization. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite)] + public TimeSpan DecayMoment; + + /// + /// The starting value of the entity. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public double StartPrice = 10000; + + /// + /// The value of the object sought during decaying + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public double EndPrice = 200; + + /// + /// Has the core decayed? + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public bool IsDecayed; +} diff --git a/Content.Server/Anomaly/Components/AnomalySynchronizerComponent.cs b/Content.Server/Anomaly/Components/AnomalySynchronizerComponent.cs new file mode 100644 index 0000000000..295ce885c2 --- /dev/null +++ b/Content.Server/Anomaly/Components/AnomalySynchronizerComponent.cs @@ -0,0 +1,42 @@ +using Content.Shared.Anomaly; +using Content.Shared.Anomaly.Components; +using Content.Shared.DeviceLinking; +using Robust.Shared.Audio; +using Robust.Shared.Prototypes; + +namespace Content.Server.Anomaly.Components; + +/// +/// a device that allows you to translate anomaly activity into multitool signals. +/// +[RegisterComponent, Access(typeof(AnomalySynchronizerSystem))] +public sealed partial class AnomalySynchronizerComponent : Component +{ + /// + /// The uid of the anomaly to which the synchronizer is connected. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public EntityUid? ConnectedAnomaly; + + + [DataField] + public ProtoId DecayingPort = "Decaying"; + + [DataField] + public ProtoId StabilizePort = "Stabilize"; + + [DataField] + public ProtoId GrowingPort = "Growing"; + + [DataField] + public ProtoId PulsePort = "Pulse"; + + [DataField] + public ProtoId SupercritPort = "Supercritical"; + + [DataField, ViewVariables(VVAccess.ReadWrite)] + public SoundSpecifier ConnectedSound = new SoundPathSpecifier("/Audio/Machines/anomaly_sync_connect.ogg"); + + [DataField, ViewVariables(VVAccess.ReadWrite)] + public SoundSpecifier DisconnectedSound = new SoundPathSpecifier("/Audio/Machines/anomaly_sync_connect.ogg"); +} diff --git a/Content.Server/Anomaly/Components/AnomalyVesselComponent.cs b/Content.Server/Anomaly/Components/AnomalyVesselComponent.cs index 426e1d97d5..74c5e3e9ed 100644 --- a/Content.Server/Anomaly/Components/AnomalyVesselComponent.cs +++ b/Content.Server/Anomaly/Components/AnomalyVesselComponent.cs @@ -1,8 +1,6 @@ using Content.Shared.Anomaly; -using Content.Shared.Construction.Prototypes; using Robust.Shared.Audio; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Anomaly.Components; @@ -25,22 +23,9 @@ public sealed partial class AnomalyVesselComponent : Component /// /// A multiplier applied to the amount of points generated. /// - [ViewVariables(VVAccess.ReadWrite)] + [DataField, ViewVariables(VVAccess.ReadWrite)] public float PointMultiplier = 1; - /// - /// The machine part that affects the point multiplier of the vessel - /// - [DataField("machinePartPointModifier", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string MachinePartPointModifier = "Capacitor"; - - /// - /// A value used to scale the point multiplier - /// with the corresponding part rating. - /// - [DataField("partRatingPointModifier")] - public float PartRatingPointModifier = 1.25f; - /// /// The maximum time between each beep /// diff --git a/Content.Server/Anomaly/Components/GeneratingAnomalyGeneratorComponent.cs b/Content.Server/Anomaly/Components/GeneratingAnomalyGeneratorComponent.cs index d768f905ce..4233bfd7e1 100644 --- a/Content.Server/Anomaly/Components/GeneratingAnomalyGeneratorComponent.cs +++ b/Content.Server/Anomaly/Components/GeneratingAnomalyGeneratorComponent.cs @@ -13,5 +13,5 @@ public sealed partial class GeneratingAnomalyGeneratorComponent : Component [DataField("endTime", customTypeSerializer: typeof(TimeOffsetSerializer))] public TimeSpan EndTime = TimeSpan.Zero; - public IPlayingAudioStream? AudioStream; + public EntityUid? AudioStream; } diff --git a/Content.Server/Anomaly/Effects/AnomalyCoreSystem.cs b/Content.Server/Anomaly/Effects/AnomalyCoreSystem.cs new file mode 100644 index 0000000000..eb45101373 --- /dev/null +++ b/Content.Server/Anomaly/Effects/AnomalyCoreSystem.cs @@ -0,0 +1,56 @@ +using Content.Server.Anomaly.Components; +using Content.Server.Cargo.Systems; +using Content.Shared.Anomaly; +using Robust.Shared.Timing; + +namespace Content.Server.Anomaly.Effects; + +/// +/// This component reduces the value of the entity during decay +/// +public sealed class AnomalyCoreSystem : EntitySystem +{ + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly IGameTiming _gameTiming = default!; + + public override void Initialize() + { + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnGetPrice); + } + + private void OnMapInit(Entity core, ref MapInitEvent args) + { + core.Comp.DecayMoment = _gameTiming.CurTime + TimeSpan.FromSeconds(core.Comp.TimeToDecay); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var component)) + { + if (component.IsDecayed) + continue; + + //When time runs out, we completely decompose + if (component.DecayMoment < _gameTiming.CurTime) + Decay(uid, component); + } + } + private void OnGetPrice(Entity core, ref PriceCalculationEvent args) + { + var timeLeft = core.Comp.DecayMoment - _gameTiming.CurTime; + var lerp = (double) (timeLeft.TotalSeconds / core.Comp.TimeToDecay); + lerp = Math.Clamp(lerp, 0, 1); + + args.Price = MathHelper.Lerp(core.Comp.EndPrice, core.Comp.StartPrice, lerp); + } + + private void Decay(EntityUid uid, AnomalyCoreComponent component) + { + _appearance.SetData(uid, AnomalyCoreVisuals.Decaying, false); + component.IsDecayed = true; + } +} diff --git a/Content.Server/Anomaly/Effects/BluespaceAnomalySystem.cs b/Content.Server/Anomaly/Effects/BluespaceAnomalySystem.cs index 964a42234d..603396e31a 100644 --- a/Content.Server/Anomaly/Effects/BluespaceAnomalySystem.cs +++ b/Content.Server/Anomaly/Effects/BluespaceAnomalySystem.cs @@ -4,6 +4,8 @@ using Content.Shared.Anomaly.Components; using Content.Shared.Mobs.Components; using Content.Shared.Teleportation.Components; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Random; namespace Content.Server.Anomaly.Effects; diff --git a/Content.Server/Anomaly/Effects/EntityAnomalySystem.cs b/Content.Server/Anomaly/Effects/EntityAnomalySystem.cs index 5f20183314..ee4e2ac115 100644 --- a/Content.Server/Anomaly/Effects/EntityAnomalySystem.cs +++ b/Content.Server/Anomaly/Effects/EntityAnomalySystem.cs @@ -21,27 +21,46 @@ public override void Initialize() { SubscribeLocalEvent(OnPulse); SubscribeLocalEvent(OnSupercritical); + SubscribeLocalEvent(OnStabilityChanged); } private void OnPulse(EntityUid uid, EntitySpawnAnomalyComponent component, ref AnomalyPulseEvent args) { + if (!component.SpawnOnPulse) + return; + var range = component.SpawnRange * args.Stability; var amount = (int) (component.MaxSpawnAmount * args.Severity + 0.5f); var xform = Transform(uid); - SpawnMonstersOnOpenTiles(component, xform, amount, range, component.Spawns); + SpawnEntitesOnOpenTiles(component, xform, amount, range, component.Spawns); } private void OnSupercritical(EntityUid uid, EntitySpawnAnomalyComponent component, ref AnomalySupercriticalEvent args) { + if (!component.SpawnOnSuperCritical) + return; + var xform = Transform(uid); - // A cluster of monsters - SpawnMonstersOnOpenTiles(component, xform, component.MaxSpawnAmount, component.SpawnRange, component.Spawns); + // A cluster of entities + SpawnEntitesOnOpenTiles(component, xform, component.MaxSpawnAmount, component.SpawnRange, component.Spawns); // And so much meat (for the meat anomaly at least) - SpawnMonstersOnOpenTiles(component, xform, component.MaxSpawnAmount, component.SpawnRange, component.SuperCriticalSpawns); + SpawnEntitesOnOpenTiles(component, xform, component.MaxSpawnAmount, component.SpawnRange, component.SuperCriticalSpawns); + } + + private void OnStabilityChanged(EntityUid uid, EntitySpawnAnomalyComponent component, ref AnomalyStabilityChangedEvent args) + { + if (!component.SpawnOnStabilityChanged) + return; + + var range = component.SpawnRange * args.Stability; + var amount = (int) (component.MaxSpawnAmount * args.Stability + 0.5f); + + var xform = Transform(uid); + SpawnEntitesOnOpenTiles(component, xform, amount, range, component.Spawns); } - private void SpawnMonstersOnOpenTiles(EntitySpawnAnomalyComponent component, TransformComponent xform, int amount, float radius, List spawns) + private void SpawnEntitesOnOpenTiles(EntitySpawnAnomalyComponent component, TransformComponent xform, int amount, float radius, List spawns) { if (!component.Spawns.Any()) return; diff --git a/Content.Server/Anomaly/Effects/GasProducerAnomalySystem.cs b/Content.Server/Anomaly/Effects/GasProducerAnomalySystem.cs index 6c5057edab..a5e42be540 100644 --- a/Content.Server/Anomaly/Effects/GasProducerAnomalySystem.cs +++ b/Content.Server/Anomaly/Effects/GasProducerAnomalySystem.cs @@ -65,7 +65,7 @@ private void ReleaseGas(EntityUid uid, Gas gas, float mols, float radius, int co if (tilerefs.Length == 0) return; - var mixture = _atmosphere.GetTileMixture(xform.GridUid, xform.MapUid, _xform.GetGridOrMapTilePosition(uid, xform), true); + var mixture = _atmosphere.GetTileMixture((uid, xform), grid, true); if (mixture != null) { mixture.AdjustMoles(gas, mols); diff --git a/Content.Server/Anomaly/Effects/ReagentProducerAnomalySystem.cs b/Content.Server/Anomaly/Effects/ReagentProducerAnomalySystem.cs index c87dcf4eae..487d20f43f 100644 --- a/Content.Server/Anomaly/Effects/ReagentProducerAnomalySystem.cs +++ b/Content.Server/Anomaly/Effects/ReagentProducerAnomalySystem.cs @@ -6,6 +6,7 @@ using Robust.Shared.Prototypes; using Content.Shared.Sprite; using Robust.Server.GameObjects; +using Robust.Shared.Audio.Systems; namespace Content.Server.Anomaly.Effects; @@ -75,7 +76,7 @@ public override void Update(float frameTime) if (anomaly.Severity >= 0.97) reagentProducingAmount *= component.SupercriticalReagentProducingModifier; newSol.AddReagent(component.ProducingReagent, reagentProducingAmount); - _solutionContainer.TryAddSolution(uid, producerSol, newSol); //TO DO - the container is not fully filled. + _solutionContainer.TryAddSolution(uid, producerSol, newSol); //TO DO - the container is not fully filled. component.AccumulatedFrametime = 0; diff --git a/Content.Server/Anomaly/Effects/TempAffectingAnomalySystem.cs b/Content.Server/Anomaly/Effects/TempAffectingAnomalySystem.cs index f65612f98a..869d451f70 100644 --- a/Content.Server/Anomaly/Effects/TempAffectingAnomalySystem.cs +++ b/Content.Server/Anomaly/Effects/TempAffectingAnomalySystem.cs @@ -22,7 +22,7 @@ public override void Update(float frameTime) { var grid = xform.GridUid; var map = xform.MapUid; - var indices = _xform.GetGridOrMapTilePosition(ent, xform); + var indices = _xform.GetGridTilePositionOrDefault((ent, xform)); var mixture = _atmosphere.GetTileMixture(grid, map, indices, true); if (mixture is { }) diff --git a/Content.Server/Antag/AntagSelectionSystem.cs b/Content.Server/Antag/AntagSelectionSystem.cs index 737b723d39..b3b8a37508 100644 --- a/Content.Server/Antag/AntagSelectionSystem.cs +++ b/Content.Server/Antag/AntagSelectionSystem.cs @@ -21,6 +21,7 @@ using Content.Server.Station.Systems; using Content.Server.Shuttles.Systems; using Content.Shared.Mobs; +using Robust.Server.Audio; using Robust.Server.Containers; using Robust.Shared.Player; using Robust.Shared.Prototypes; diff --git a/Content.Server/Arcade/SpaceVillainGame/SpaceVillainArcadeSystem.cs b/Content.Server/Arcade/SpaceVillainGame/SpaceVillainArcadeSystem.cs index 5e4d7d5ec6..eae9b94964 100644 --- a/Content.Server/Arcade/SpaceVillainGame/SpaceVillainArcadeSystem.cs +++ b/Content.Server/Arcade/SpaceVillainGame/SpaceVillainArcadeSystem.cs @@ -3,6 +3,7 @@ using static Content.Shared.Arcade.SharedSpaceVillainArcadeComponent; using Robust.Server.GameObjects; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Random; namespace Content.Server.Arcade.SpaceVillain; diff --git a/Content.Server/Arcade/SpaceVillainGame/SpaceVillainGame.cs b/Content.Server/Arcade/SpaceVillainGame/SpaceVillainGame.cs index 18dc32282b..ae4c15f2db 100644 --- a/Content.Server/Arcade/SpaceVillainGame/SpaceVillainGame.cs +++ b/Content.Server/Arcade/SpaceVillainGame/SpaceVillainGame.cs @@ -1,6 +1,7 @@ using static Content.Shared.Arcade.SharedSpaceVillainArcadeComponent; using Robust.Server.GameObjects; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Random; namespace Content.Server.Arcade.SpaceVillain; diff --git a/Content.Server/Atmos/Components/AirFilterComponent.cs b/Content.Server/Atmos/Components/AirFilterComponent.cs new file mode 100644 index 0000000000..6b65a646f2 --- /dev/null +++ b/Content.Server/Atmos/Components/AirFilterComponent.cs @@ -0,0 +1,46 @@ +using Content.Server.Atmos.EntitySystems; +using Content.Shared.Atmos; + +namespace Content.Server.Atmos.Components; + +/// +/// This is basically a reverse scrubber but using . +/// +[RegisterComponent, Access(typeof(AirFilterSystem))] +public sealed partial class AirFilterComponent : Component +{ + /// + /// Gases that will be filtered out of internal air + /// + [DataField(required: true)] + public HashSet Gases = new(); + + /// + /// Gases that will be filtered out of internal air to maintain oxygen ratio. + /// When oxygen is below , these gases will be filtered instead of . + /// + [DataField(required: true)] + public HashSet OverflowGases = new(); + + /// + /// Minimum oxygen fraction before it will start removing . + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float TargetOxygen = 0.21f; + + /// + /// Gas to consider oxygen for and logic. + /// + /// + /// For slime you might want to change this to be nitrogen, and overflowgases to remove oxygen. + /// However theres still no real danger since standard atmos is mostly nitrogen so nitrogen tends to 100% anyway. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public Gas Oxygen = Gas.Oxygen; + + /// + /// Fraction of target volume to transfer every second. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float TransferRate = 0.1f; +} diff --git a/Content.Server/Atmos/Components/AirIntakeComponent.cs b/Content.Server/Atmos/Components/AirIntakeComponent.cs new file mode 100644 index 0000000000..dafaed93a5 --- /dev/null +++ b/Content.Server/Atmos/Components/AirIntakeComponent.cs @@ -0,0 +1,29 @@ +using Content.Server.Atmos.EntitySystems; +using Content.Shared.Atmos; + +namespace Content.Server.Atmos.Components; + +/// +/// This is basically a siphon vent for . +/// +[RegisterComponent, Access(typeof(AirFilterSystem))] +public sealed partial class AirIntakeComponent : Component +{ + /// + /// Target pressure change for a single atmos tick + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float TargetPressureChange = 5f; + + /// + /// How strong the intake pump is, it will be able to replenish air from lower pressure areas. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float PumpPower = 2f; + + /// + /// Pressure to intake gases up to, maintains pressure of the air volume. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float Pressure = Atmospherics.OneAtmosphere; +} diff --git a/Content.Server/Atmos/Components/BarotraumaComponent.cs b/Content.Server/Atmos/Components/BarotraumaComponent.cs index 1e421f0a12..4e29699872 100644 --- a/Content.Server/Atmos/Components/BarotraumaComponent.cs +++ b/Content.Server/Atmos/Components/BarotraumaComponent.cs @@ -43,7 +43,7 @@ public sealed partial class BarotraumaComponent : Component /// /// Whether the entity is immuned to pressure (i.e possess the PressureImmunity component) /// - [ViewVariables] + [ViewVariables(VVAccess.ReadWrite)] public bool HasImmunity = false; } diff --git a/Content.Server/Atmos/Components/BreathToolComponent.cs b/Content.Server/Atmos/Components/BreathToolComponent.cs index 6e50dc71ea..f3688ef7ff 100644 --- a/Content.Server/Atmos/Components/BreathToolComponent.cs +++ b/Content.Server/Atmos/Components/BreathToolComponent.cs @@ -13,7 +13,7 @@ public sealed partial class BreathToolComponent : Component /// Tool is functional only in allowed slots /// [DataField("allowedSlots")] - public SlotFlags AllowedSlots = SlotFlags.MASK; + public SlotFlags AllowedSlots = SlotFlags.MASK | SlotFlags.HEAD; public bool IsFunctional; public EntityUid? ConnectedInternalsEntity; } diff --git a/Content.Server/Atmos/Components/FlammableComponent.cs b/Content.Server/Atmos/Components/FlammableComponent.cs index 9891c55d4a..679b551058 100644 --- a/Content.Server/Atmos/Components/FlammableComponent.cs +++ b/Content.Server/Atmos/Components/FlammableComponent.cs @@ -6,16 +6,15 @@ namespace Content.Server.Atmos.Components [RegisterComponent] public sealed partial class FlammableComponent : Component { - [ViewVariables] - public bool Resisting = false; - - [ViewVariables] - public readonly List Collided = new(); + [DataField] + public bool Resisting; [ViewVariables(VVAccess.ReadWrite)] + [DataField] public bool OnFire { get; set; } [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float FireStacks { get; set; } [ViewVariables(VVAccess.ReadWrite)] @@ -56,5 +55,11 @@ public sealed partial class FlammableComponent : Component [ViewVariables(VVAccess.ReadWrite)] [DataField("firestacksOnIgnite")] public float FirestacksOnIgnite = 2.0f; + + /// + /// Determines how quickly the object will fade out. With positive values, the object will flare up instead of going out. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float FirestackFade = -0.1f; } } diff --git a/Content.Server/Atmos/Components/GasTankComponent.cs b/Content.Server/Atmos/Components/GasTankComponent.cs index a649e57b45..2d6b073e9d 100644 --- a/Content.Server/Atmos/Components/GasTankComponent.cs +++ b/Content.Server/Atmos/Components/GasTankComponent.cs @@ -30,8 +30,8 @@ public sealed partial class GasTankComponent : Component, IGasMixtureHolder // Cancel toggles sounds if we re-toggle again. - public IPlayingAudioStream? ConnectStream; - public IPlayingAudioStream? DisconnectStream; + public EntityUid? ConnectStream; + public EntityUid? DisconnectStream; [DataField("air"), ViewVariables(VVAccess.ReadWrite)] public GasMixture Air { get; set; } = new(); diff --git a/Content.Server/Atmos/Components/GridAtmosphereComponent.cs b/Content.Server/Atmos/Components/GridAtmosphereComponent.cs index f9301d7029..7fcd63bc5d 100644 --- a/Content.Server/Atmos/Components/GridAtmosphereComponent.cs +++ b/Content.Server/Atmos/Components/GridAtmosphereComponent.cs @@ -65,22 +65,22 @@ public sealed partial class GridAtmosphereComponent : Component public readonly HashSet> AtmosDevices = new(); [ViewVariables] - public Queue CurrentRunTiles = new(); + public readonly Queue CurrentRunTiles = new(); [ViewVariables] - public Queue CurrentRunExcitedGroups = new(); + public readonly Queue CurrentRunExcitedGroups = new(); [ViewVariables] - public Queue CurrentRunPipeNet = new(); + public readonly Queue CurrentRunPipeNet = new(); [ViewVariables] - public Queue> CurrentRunAtmosDevices = new(); + public readonly Queue> CurrentRunAtmosDevices = new(); [ViewVariables] public readonly HashSet InvalidatedCoords = new(1000); [ViewVariables] - public Queue CurrentRunInvalidatedCoordinates = new(); + public readonly Queue CurrentRunInvalidatedCoordinates = new(); [ViewVariables] public int InvalidatedCoordsCount => InvalidatedCoords.Count; diff --git a/Content.Server/Atmos/Components/IgniteOnMeleeHitComponent.cs b/Content.Server/Atmos/Components/IgniteOnMeleeHitComponent.cs index 26dd9ad24d..f30b20db30 100644 --- a/Content.Server/Atmos/Components/IgniteOnMeleeHitComponent.cs +++ b/Content.Server/Atmos/Components/IgniteOnMeleeHitComponent.cs @@ -1,8 +1,11 @@ namespace Content.Server.Atmos.Components; +/// +/// Component that can be used to add (or remove) fire stacks when used as a melee weapon. +/// [RegisterComponent] public sealed partial class IgniteOnMeleeHitComponent : Component { - [DataField("fireStacks")] + [DataField] public float FireStacks { get; set; } } diff --git a/Content.Server/Atmos/EntitySystems/AirFilterSystem.cs b/Content.Server/Atmos/EntitySystems/AirFilterSystem.cs new file mode 100644 index 0000000000..416045fc5e --- /dev/null +++ b/Content.Server/Atmos/EntitySystems/AirFilterSystem.cs @@ -0,0 +1,113 @@ +using Content.Server.Atmos; +using Content.Server.Atmos.Components; +using Content.Server.Atmos.Piping.Components; +using Content.Shared.Atmos; +using Robust.Shared.GameObjects; +using Robust.Shared.Map; +using System.Diagnostics.CodeAnalysis; + +namespace Content.Server.Atmos.EntitySystems; + +/// +/// Handles gas filtering and intake for and . +/// +public sealed class AirFilterSystem : EntitySystem +{ + [Dependency] private readonly AtmosphereSystem _atmosphere = default!; + [Dependency] private readonly IMapManager _map = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnIntakeUpdate); + SubscribeLocalEvent(OnFilterUpdate); + } + + private void OnIntakeUpdate(EntityUid uid, AirIntakeComponent intake, ref AtmosDeviceUpdateEvent args) + { + if (!GetAir(uid, out var air)) + return; + + // if the volume is filled there is nothing to do + if (air.Pressure >= intake.Pressure) + return; + + var environment = _atmosphere.GetContainingMixture(uid, true, true); + // nothing to intake from + if (environment == null) + return; + + // absolute maximum pressure change + var pressureDelta = args.dt * intake.TargetPressureChange; + pressureDelta = MathF.Min(pressureDelta, intake.Pressure - air.Pressure); + if (pressureDelta <= 0) + return; + + // how many moles to transfer to change internal pressure by pressureDelta + // ignores temperature difference because lazy + var transferMoles = pressureDelta * air.Volume / (environment.Temperature * Atmospherics.R); + _atmosphere.Merge(air, environment.Remove(transferMoles)); + } + + private void OnFilterUpdate(EntityUid uid, AirFilterComponent filter, ref AtmosDeviceUpdateEvent args) + { + if (!GetAir(uid, out var air)) + return; + + var ratio = MathF.Min(1f, args.dt * filter.TransferRate * _atmosphere.PumpSpeedup()); + var removed = air.RemoveRatio(ratio); + // nothing left to remove from the volume + if (MathHelper.CloseToPercent(removed.TotalMoles, 0f)) + return; + + // when oxygen gets too low start removing overflow gases (nitrogen) to maintain oxygen ratio + var oxygen = air.GetMoles(filter.Oxygen) / air.TotalMoles; + var gases = oxygen >= filter.TargetOxygen ? filter.Gases : filter.OverflowGases; + + var coordinates = Transform(uid).MapPosition; + GasMixture? destination = null; + if (_map.TryFindGridAt(coordinates, out _, out var grid)) + { + var tile = grid.GetTileRef(coordinates); + destination = _atmosphere.GetTileMixture(tile.GridUid, null, tile.GridIndices, true); + } + + if (destination != null) + { + _atmosphere.ScrubInto(removed, destination, gases); + } + else + { + // filtering into space/planet so just discard them + foreach (var gas in gases) + { + removed.SetMoles(gas, 0f); + } + } + + _atmosphere.Merge(air, removed); + } + + /// + /// Uses to get an internal volume of air on an entity. + /// Used for both filter and intake. + /// + public bool GetAir(EntityUid uid, [NotNullWhen(true)] out GasMixture? air) + { + air = null; + + var ev = new GetFilterAirEvent(); + RaiseLocalEvent(uid, ref ev); + air = ev.Air; + return air != null; + } +} + +/// +/// Get a reference to an entity's air volume to filter. +/// Do not create a new mixture as this will be modified when filtering and intaking air. +/// +[ByRefEvent] +public record struct GetFilterAirEvent(GasMixture? Air = null); diff --git a/Content.Server/Atmos/EntitySystems/AtmosDebugOverlaySystem.cs b/Content.Server/Atmos/EntitySystems/AtmosDebugOverlaySystem.cs index 90edd4caed..4af32fce58 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosDebugOverlaySystem.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosDebugOverlaySystem.cs @@ -20,7 +20,7 @@ public sealed class AtmosDebugOverlaySystem : SharedAtmosDebugOverlaySystem [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IConfigurationManager _configManager = default!; - [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly MapSystem _mapSystem = default!; /// @@ -67,7 +67,7 @@ public bool RemoveObserver(ICommonSession observer) } var message = new AtmosDebugOverlayDisableMessage(); - RaiseNetworkEvent(message, observer.ConnectedClient); + RaiseNetworkEvent(message, observer.Channel); return true; } @@ -84,11 +84,9 @@ public bool ToggleObserver(ICommonSession observer) RemoveObserver(observer); return false; } - else - { - AddObserver(observer); - return true; - } + + AddObserver(observer); + return true; } private void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs e) @@ -99,19 +97,22 @@ private void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs e) } } - private AtmosDebugOverlayData ConvertTileToData(TileAtmosphere? tile, bool mapIsSpace) + private AtmosDebugOverlayData ConvertTileToData(TileAtmosphere? tile) { - var gases = new float[Atmospherics.AdjustedNumberOfGases]; - - if (tile?.Air == null) - { - return new AtmosDebugOverlayData(Atmospherics.TCMB, gases, AtmosDirection.Invalid, tile?.LastPressureDirection ?? AtmosDirection.Invalid, 0, tile?.BlockedAirflow ?? AtmosDirection.Invalid, tile?.Space ?? mapIsSpace); - } - else - { - NumericsHelpers.Add(gases, tile.Air.Moles); - return new AtmosDebugOverlayData(tile.Air.Temperature, gases, tile.PressureDirection, tile.LastPressureDirection, tile.ExcitedGroup?.GetHashCode() ?? 0, tile.BlockedAirflow, tile.Space); - } + if (tile == null) + return default; + + return new AtmosDebugOverlayData( + tile.GridIndices, + tile.Air?.Temperature ?? default, + tile.Air?.Moles, + tile.PressureDirection, + tile.LastPressureDirection, + tile.BlockedAirflow, + tile.ExcitedGroup?.GetHashCode(), + tile.Space, + false, + false); } public override void Update(float frameTime) @@ -135,12 +136,9 @@ public override void Update(float frameTime) if (session.AttachedEntity is not {Valid: true} entity) continue; - var transform = EntityManager.GetComponent(entity); - var mapUid = transform.MapUid; - - var mapIsSpace = _atmosphereSystem.IsTileSpace(null, mapUid, Vector2i.Zero); - - var worldBounds = Box2.CenteredAround(transform.WorldPosition, + var transform = Transform(entity); + var pos = _transform.GetWorldPosition(transform); + var worldBounds = Box2.CenteredAround(pos, new Vector2(LocalViewRange, LocalViewRange)); _grids.Clear(); @@ -157,8 +155,8 @@ public override void Update(float frameTime) continue; var entityTile = _mapSystem.GetTileRef(grid, grid, transform.Coordinates).GridIndices; - var baseTile = new Vector2i(entityTile.X - (LocalViewRange / 2), entityTile.Y - (LocalViewRange / 2)); - var debugOverlayContent = new AtmosDebugOverlayData[LocalViewRange * LocalViewRange]; + var baseTile = new Vector2i(entityTile.X - LocalViewRange / 2, entityTile.Y - LocalViewRange / 2); + var debugOverlayContent = new AtmosDebugOverlayData?[LocalViewRange * LocalViewRange]; var index = 0; for (var y = 0; y < LocalViewRange; y++) @@ -166,11 +164,13 @@ public override void Update(float frameTime) for (var x = 0; x < LocalViewRange; x++) { var vector = new Vector2i(baseTile.X + x, baseTile.Y + y); - debugOverlayContent[index++] = ConvertTileToData(gridAtmos.Tiles.TryGetValue(vector, out var tile) ? tile : null, mapIsSpace); + gridAtmos.Tiles.TryGetValue(vector, out var tile); + debugOverlayContent[index++] = tile == null ? null : ConvertTileToData(tile); } } - RaiseNetworkEvent(new AtmosDebugOverlayMessage(GetNetEntity(grid), baseTile, debugOverlayContent), session.ConnectedClient); + var msg = new AtmosDebugOverlayMessage(GetNetEntity(grid), baseTile, debugOverlayContent); + RaiseNetworkEvent(msg, session.Channel); } } } diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.API.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.API.cs index 00ed05449c..310e602336 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.API.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.API.cs @@ -127,9 +127,18 @@ public void InvalidateTile(EntityUid gridUid, Vector2i tile) return ev.Mixtures; } - public GasMixture? GetTileMixture(EntityUid? gridUid, EntityUid? mapUid, Vector2i tile, bool excite = false) + public GasMixture? GetTileMixture (Entity entity, MapGridComponent? grid = null, bool excite = false) { - var ev = new GetTileMixtureMethodEvent(gridUid, mapUid, tile, excite); + if (!Resolve(entity.Owner, ref entity.Comp)) + return null; + + var indices = _transformSystem.GetGridTilePositionOrDefault(entity); + return GetTileMixture(entity.Comp.GridUid, entity.Comp.MapUid, indices, excite); + } + + public GasMixture? GetTileMixture(EntityUid? gridUid, EntityUid? mapUid, Vector2i gridTile, bool excite = false) + { + var ev = new GetTileMixtureMethodEvent(gridUid, mapUid, gridTile, excite); // If we've been passed a grid, try to let it handle it. if(gridUid.HasValue) diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.CVars.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.CVars.cs index 60e215204d..7f82e6fb57 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.CVars.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.CVars.cs @@ -24,6 +24,8 @@ public sealed partial class AtmosphereSystem public bool ExcitedGroupsSpaceIsAllConsuming { get; private set; } public float AtmosMaxProcessTime { get; private set; } public float AtmosTickRate { get; private set; } + public float Speedup { get; private set; } + public float HeatScale { get; private set; } /// /// Time between each atmos sub-update. If you are writing an atmos device, use AtmosDeviceUpdateEvent.dt @@ -49,6 +51,8 @@ private void InitializeCVars() _cfg.OnValueChanged(CCVars.Superconduction, value => Superconduction = value, true); _cfg.OnValueChanged(CCVars.AtmosMaxProcessTime, value => AtmosMaxProcessTime = value, true); _cfg.OnValueChanged(CCVars.AtmosTickRate, value => AtmosTickRate = value, true); + _cfg.OnValueChanged(CCVars.AtmosSpeedup, value => Speedup = value, true); + _cfg.OnValueChanged(CCVars.AtmosHeatScale, value => { HeatScale = value; InitializeGases(); }, true); _cfg.OnValueChanged(CCVars.ExcitedGroups, value => ExcitedGroups = value, true); _cfg.OnValueChanged(CCVars.ExcitedGroupsSpaceIsAllConsuming, value => ExcitedGroupsSpaceIsAllConsuming = value, true); } diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Gases.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Gases.cs index 0726606ae0..f8ee4f4192 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Gases.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Gases.cs @@ -35,7 +35,7 @@ private void InitializeGases() for (var i = 0; i < GasPrototypes.Length; i++) { - _gasSpecificHeats[i] = GasPrototypes[i].SpecificHeat; + _gasSpecificHeats[i] = GasPrototypes[i].SpecificHeat / HeatScale; GasReagents[i] = GasPrototypes[i].Reagent; } } @@ -43,11 +43,22 @@ private void InitializeGases() /// /// Calculates the heat capacity for a gas mixture. /// - public float GetHeatCapacity(GasMixture mixture) + /// The mixture whose heat capacity should be calculated + /// Whether the internal heat capacity scaling should be applied. This should not be + /// used outside of atmospheric related heat transfer. + /// + public float GetHeatCapacity(GasMixture mixture, bool applyScaling) { - return GetHeatCapacityCalculation(mixture.Moles, mixture.Immutable); + var scale = GetHeatCapacityCalculation(mixture.Moles, mixture.Immutable); + + // By default GetHeatCapacityCalculation() has the heat-scale divisor pre-applied. + // So if we want the un-scaled heat capacity, we have to multiply by the scale. + return applyScaling ? scale : scale * HeatScale; } + private float GetHeatCapacity(GasMixture mixture) + => GetHeatCapacityCalculation(mixture.Moles, mixture.Immutable); + [MethodImpl(MethodImplOptions.AggressiveInlining)] private float GetHeatCapacityCalculation(float[] moles, bool space) { @@ -59,9 +70,19 @@ private float GetHeatCapacityCalculation(float[] moles, bool space) Span tmp = stackalloc float[moles.Length]; NumericsHelpers.Multiply(moles, GasSpecificHeats, tmp); + // Adjust heat capacity by speedup, because this is primarily what + // determines how quickly gases heat up/cool. return MathF.Max(NumericsHelpers.HorizontalAdd(tmp), Atmospherics.MinimumHeatCapacity); } + /// + /// Return speedup factor for pumped or flow-based devices that depend on MaxTransferRate. + /// + public float PumpSpeedup() + { + return Speedup; + } + /// /// Calculates the thermal energy for a gas mixture. /// @@ -101,7 +122,7 @@ public void Merge(GasMixture receiver, GasMixture giver) var receiverHeatCapacity = GetHeatCapacity(receiver); var giverHeatCapacity = GetHeatCapacity(giver); var combinedHeatCapacity = receiverHeatCapacity + giverHeatCapacity; - if (combinedHeatCapacity > 0f) + if (combinedHeatCapacity > Atmospherics.MinimumHeatCapacity) { receiver.Temperature = (GetThermalEnergy(giver, giverHeatCapacity) + GetThermalEnergy(receiver, receiverHeatCapacity)) / combinedHeatCapacity; } @@ -145,7 +166,7 @@ public void DivideInto(GasMixture source, List receivers) sourceHeatCapacity ??= GetHeatCapacity(source); var receiverHeatCapacity = GetHeatCapacity(receiver); var combinedHeatCapacity = receiverHeatCapacity + sourceHeatCapacity.Value * fraction; - if (combinedHeatCapacity > 0f) + if (combinedHeatCapacity > Atmospherics.MinimumHeatCapacity) receiver.Temperature = (GetThermalEnergy(source, sourceHeatCapacity.Value * fraction) + GetThermalEnergy(receiver, receiverHeatCapacity)) / combinedHeatCapacity; } } @@ -310,7 +331,9 @@ public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder) var req = prototype.MinimumRequirements[i]; - if (!(mixture.GetMoles(i) < req)) continue; + if (!(mixture.GetMoles(i) < req)) + continue; + doReaction = false; break; } @@ -318,7 +341,7 @@ public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder) if (!doReaction) continue; - reaction = prototype.React(mixture, holder, this); + reaction = prototype.React(mixture, holder, this, HeatScale); if(reaction.HasFlag(ReactionResult.StopReactions)) break; } diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.GridAtmosphere.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.GridAtmosphere.cs index 036b64cad9..1f1a208b24 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.GridAtmosphere.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.GridAtmosphere.cs @@ -3,6 +3,7 @@ using Content.Server.Atmos.Reactions; using Content.Shared.Atmos; using Content.Shared.Atmos.Components; +using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Utility; @@ -13,6 +14,7 @@ public sealed partial class AtmosphereSystem private void InitializeGridAtmosphere() { SubscribeLocalEvent(OnGridAtmosphereInit); + SubscribeLocalEvent(OnAtmosphereRemove); SubscribeLocalEvent(OnGridSplit); #region Atmos API Subscriptions @@ -41,6 +43,19 @@ private void InitializeGridAtmosphere() #endregion } + private void OnAtmosphereRemove(EntityUid uid, GridAtmosphereComponent component, ComponentRemove args) + { + for (var i = 0; i < _currentRunAtmosphere.Count; i++) + { + if (_currentRunAtmosphere[i].Owner != uid) + continue; + + _currentRunAtmosphere.RemoveAt(i); + if (_currentRunAtmosphereIndex > i) + _currentRunAtmosphereIndex--; + } + } + private void OnGridAtmosphereInit(EntityUid uid, GridAtmosphereComponent gridAtmosphere, ComponentInit args) { base.Initialize(); @@ -558,4 +573,12 @@ private void GridRepopulateTiles(Entity gridAtmospher if(_spaceWindSoundCooldown == 0 && !string.IsNullOrEmpty(SpaceWindSound)) { var coordinates = tile.GridIndices.ToEntityCoordinates(tile.GridIndex, _mapManager); - SoundSystem.Play(SpaceWindSound, Filter.Pvs(coordinates), - coordinates, AudioHelpers.WithVariation(0.125f).WithVolume(MathHelper.Clamp(tile.PressureDifference / 10, 10, 100))); + _audio.PlayPvs(SpaceWindSound, coordinates, AudioParams.Default.WithVariation(0.125f).WithVolume(MathHelper.Clamp(tile.PressureDifference / 10, 10, 100))); } } diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs index 1b44f6e819..5b3d869229 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs @@ -85,8 +85,7 @@ private void ProcessHotspot(GridAtmosphereComponent gridAtmosphere, TileAtmosphe // A few details on the audio parameters for fire. // The greater the fire state, the lesser the pitch variation. // The greater the fire state, the greater the volume. - SoundSystem.Play(HotspotSound, Filter.Pvs(coordinates), - coordinates, AudioHelpers.WithVariation(0.15f/tile.Hotspot.State).WithVolume(-5f + 5f * tile.Hotspot.State)); + _audio.PlayPvs(HotspotSound, coordinates, AudioParams.Default.WithVariation(0.15f/tile.Hotspot.State).WithVolume(-5f + 5f * tile.Hotspot.State)); } if (_hotspotSoundCooldown > HotspotSoundCooldownCycles) diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs index 6499291495..4f8df0af67 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs @@ -4,6 +4,7 @@ using Content.Shared.Atmos; using Content.Shared.Atmos.Components; using Content.Shared.Maps; +using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Physics.Components; using Robust.Shared.Timing; @@ -41,7 +42,12 @@ private bool ProcessRevalidate(Entity ent, GasTileOverl var (owner, atmosphere) = ent; if (!atmosphere.ProcessingPaused) { - atmosphere.CurrentRunInvalidatedCoordinates = new Queue(atmosphere.InvalidatedCoords); + atmosphere.CurrentRunInvalidatedCoordinates.Clear(); + atmosphere.CurrentRunInvalidatedCoordinates.EnsureCapacity(atmosphere.InvalidatedCoords.Count); + foreach (var tile in atmosphere.InvalidatedCoords) + { + atmosphere.CurrentRunInvalidatedCoordinates.Enqueue(tile); + } atmosphere.InvalidatedCoords.Clear(); } @@ -151,11 +157,24 @@ private bool ProcessRevalidate(Entity ent, GasTileOverl return true; } + private void QueueRunTiles( + Queue queue, + HashSet tiles) + { + + queue.Clear(); + queue.EnsureCapacity(tiles.Count); + foreach (var tile in tiles) + { + queue.Enqueue(tile); + } + } + private bool ProcessTileEqualize(Entity ent, GasTileOverlayComponent? visuals) { var (uid, atmosphere) = ent; if (!atmosphere.ProcessingPaused) - atmosphere.CurrentRunTiles = new Queue(atmosphere.ActiveTiles); + QueueRunTiles(atmosphere.CurrentRunTiles, atmosphere.ActiveTiles); if (!TryComp(uid, out MapGridComponent? mapGridComp)) throw new Exception("Tried to process a grid atmosphere on an entity that isn't a grid!"); @@ -182,7 +201,7 @@ private bool ProcessTileEqualize(Entity ent, GasTileOve private bool ProcessActiveTiles(GridAtmosphereComponent atmosphere, GasTileOverlayComponent? visuals) { if(!atmosphere.ProcessingPaused) - atmosphere.CurrentRunTiles = new Queue(atmosphere.ActiveTiles); + QueueRunTiles(atmosphere.CurrentRunTiles, atmosphere.ActiveTiles); var number = 0; while (atmosphere.CurrentRunTiles.TryDequeue(out var tile)) @@ -205,8 +224,15 @@ private bool ProcessActiveTiles(GridAtmosphereComponent atmosphere, GasTileOverl private bool ProcessExcitedGroups(GridAtmosphereComponent gridAtmosphere) { - if(!gridAtmosphere.ProcessingPaused) - gridAtmosphere.CurrentRunExcitedGroups = new Queue(gridAtmosphere.ExcitedGroups); + if (!gridAtmosphere.ProcessingPaused) + { + gridAtmosphere.CurrentRunExcitedGroups.Clear(); + gridAtmosphere.CurrentRunExcitedGroups.EnsureCapacity(gridAtmosphere.ExcitedGroups.Count); + foreach (var group in gridAtmosphere.ExcitedGroups) + { + gridAtmosphere.CurrentRunExcitedGroups.Enqueue(group); + } + } var number = 0; while (gridAtmosphere.CurrentRunExcitedGroups.TryDequeue(out var excitedGroup)) @@ -238,7 +264,7 @@ private bool ProcessHighPressureDelta(Entity ent) { var atmosphere = ent.Comp; if (!atmosphere.ProcessingPaused) - atmosphere.CurrentRunTiles = new Queue(atmosphere.HighPressureDelta); + QueueRunTiles(atmosphere.CurrentRunTiles, atmosphere.HighPressureDelta); // Note: This is still processed even if space wind is turned off since this handles playing the sounds. @@ -273,7 +299,7 @@ private bool ProcessHighPressureDelta(Entity ent) private bool ProcessHotspots(GridAtmosphereComponent atmosphere) { if(!atmosphere.ProcessingPaused) - atmosphere.CurrentRunTiles = new Queue(atmosphere.HotspotTiles); + QueueRunTiles(atmosphere.CurrentRunTiles, atmosphere.HotspotTiles); var number = 0; while (atmosphere.CurrentRunTiles.TryDequeue(out var hotspot)) @@ -297,7 +323,7 @@ private bool ProcessHotspots(GridAtmosphereComponent atmosphere) private bool ProcessSuperconductivity(GridAtmosphereComponent atmosphere) { if(!atmosphere.ProcessingPaused) - atmosphere.CurrentRunTiles = new Queue(atmosphere.SuperconductivityTiles); + QueueRunTiles(atmosphere.CurrentRunTiles, atmosphere.SuperconductivityTiles); var number = 0; while (atmosphere.CurrentRunTiles.TryDequeue(out var superconductivity)) @@ -320,8 +346,15 @@ private bool ProcessSuperconductivity(GridAtmosphereComponent atmosphere) private bool ProcessPipeNets(GridAtmosphereComponent atmosphere) { - if(!atmosphere.ProcessingPaused) - atmosphere.CurrentRunPipeNet = new Queue(atmosphere.PipeNets); + if (!atmosphere.ProcessingPaused) + { + atmosphere.CurrentRunPipeNet.Clear(); + atmosphere.CurrentRunPipeNet.EnsureCapacity(atmosphere.PipeNets.Count); + foreach (var net in atmosphere.PipeNets) + { + atmosphere.CurrentRunPipeNet.Enqueue(net); + } + } var number = 0; while (atmosphere.CurrentRunPipeNet.TryDequeue(out var pipenet)) @@ -362,13 +395,21 @@ public float RealAtmosTime() private bool ProcessAtmosDevices(GridAtmosphereComponent atmosphere) { if (!atmosphere.ProcessingPaused) - atmosphere.CurrentRunAtmosDevices = new Queue>(atmosphere.AtmosDevices); + { + atmosphere.CurrentRunAtmosDevices.Clear(); + atmosphere.CurrentRunAtmosDevices.EnsureCapacity(atmosphere.AtmosDevices.Count); + foreach (var device in atmosphere.AtmosDevices) + { + atmosphere.CurrentRunAtmosDevices.Enqueue(device); + } + } var time = _gameTiming.CurTime; var number = 0; + var ev = new AtmosDeviceUpdateEvent(RealAtmosTime()); while (atmosphere.CurrentRunAtmosDevices.TryDequeue(out var device)) { - RaiseLocalEvent(device, new AtmosDeviceUpdateEvent(RealAtmosTime())); + RaiseLocalEvent(device, ref ev); device.Comp.LastProcess = time; if (number++ < LagCheckIterations) @@ -410,6 +451,15 @@ private void UpdateProcessing(float frameTime) var (owner, atmosphere) = ent; TryComp(owner, out GasTileOverlayComponent? visuals); + if (!TryComp(owner, out TransformComponent? x) + || x.MapUid == null + || TerminatingOrDeleted(x.MapUid.Value) + || x.MapID == MapId.Nullspace) + { + Log.Error($"Attempted to process atmos without a map? Entity: {ToPrettyString(owner)}. Map: {ToPrettyString(x?.MapUid)}. MapId: {x?.MapID}"); + continue; + } + if (atmosphere.LifeStage >= ComponentLifeStage.Stopping || Paused(owner) || !atmosphere.Simulated) continue; diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.cs index d8364b652b..07efdb4f67 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.cs @@ -1,12 +1,13 @@ using Content.Server.Administration.Logs; using Content.Server.Atmos.Components; using Content.Server.Body.Systems; -using Content.Server.Maps; +using Content.Server.Fluids.EntitySystems; using Content.Server.NodeContainer.EntitySystems; using Content.Shared.Atmos.EntitySystems; using Content.Shared.Maps; using JetBrains.Annotations; using Robust.Server.GameObjects; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Map; using Robust.Shared.Physics.Systems; @@ -28,8 +29,11 @@ public sealed partial class AtmosphereSystem : SharedAtmosphereSystem [Dependency] private readonly SharedContainerSystem _containers = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly GasTileOverlaySystem _gasTileOverlaySystem = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly TransformSystem _transformSystem = default!; [Dependency] private readonly TileSystem _tile = default!; + [Dependency] private readonly MapSystem _map = default!; + [Dependency] public readonly PuddleSystem Puddle = default!; private const float ExposedUpdateDelay = 1f; private float _exposedTimer = 0f; @@ -77,7 +81,7 @@ public override void Update(float frameTime) return; var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var exposed, out var transform)) + while (query.MoveNext(out var uid, out _, out var transform)) { var air = GetContainingMixture(uid, transform:transform); diff --git a/Content.Server/Atmos/EntitySystems/FlammableSystem.cs b/Content.Server/Atmos/EntitySystems/FlammableSystem.cs index be3e5cd934..36722884e5 100644 --- a/Content.Server/Atmos/EntitySystems/FlammableSystem.cs +++ b/Content.Server/Atmos/EntitySystems/FlammableSystem.cs @@ -1,24 +1,31 @@ using Content.Server.Administration.Logs; using Content.Server.Atmos.Components; +using Content.Server.Explosion.EntitySystems; using Content.Server.Stunnable; using Content.Server.Temperature.Components; using Content.Server.Temperature.Systems; using Content.Shared.ActionBlocker; using Content.Shared.Alert; using Content.Shared.Atmos; +using Content.Shared.Atmos.Components; using Content.Shared.Damage; using Content.Shared.Database; using Content.Shared.Interaction; +using Content.Shared.Interaction.Events; using Content.Shared.Physics; using Content.Shared.Popups; using Content.Shared.Rejuvenate; using Content.Shared.Temperature; using Content.Shared.Throwing; +using Content.Shared.Timing; +using Content.Shared.Toggleable; using Content.Shared.Weapons.Melee.Events; +using Robust.Server.Audio; using Robust.Server.GameObjects; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Events; using Robust.Shared.Physics.Systems; +using Robust.Shared.Random; namespace Content.Server.Atmos.EntitySystems { @@ -36,6 +43,9 @@ public sealed class FlammableSystem : EntitySystem [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly UseDelaySystem _useDelay = default!; + [Dependency] private readonly AudioSystem _audio = default!; + [Dependency] private readonly IRobustRandom _random = default!; public const float MinimumFireStacks = -10f; public const float MaximumFireStacks = 20f; @@ -47,6 +57,7 @@ public sealed class FlammableSystem : EntitySystem private float _timer; private readonly Dictionary, float> _fireEvents = new(); + private readonly List _toRemove = new(); public override void Initialize() { @@ -63,6 +74,8 @@ public override void Initialize() SubscribeLocalEvent(OnIgniteLand); SubscribeLocalEvent(OnMeleeHit); + + SubscribeLocalEvent(OnExtinguishActivateInWorld); } private void OnMeleeHit(EntityUid uid, IgniteOnMeleeHitComponent component, MeleeHitEvent args) @@ -72,8 +85,9 @@ private void OnMeleeHit(EntityUid uid, IgniteOnMeleeHitComponent component, Mele if (!TryComp(entity, out var flammable)) continue; - flammable.FireStacks += component.FireStacks; - Ignite(entity, args.Weapon, flammable, args.User); + AdjustFireStacks(entity, component.FireStacks, flammable); + if (component.FireStacks >= 0) + Ignite(entity, args.Weapon, flammable, args.User); } } @@ -128,56 +142,86 @@ private void OnInteractUsing(EntityUid uid, FlammableComponent flammable, Intera args.Handled = true; } + private void OnExtinguishActivateInWorld(EntityUid uid, ExtinguishOnInteractComponent component, ActivateInWorldEvent args) + { + if (args.Handled) + return; + + if (!TryComp(uid, out FlammableComponent? flammable)) + return; + + if (!flammable.OnFire) + return; + + args.Handled = true; + + if (!_useDelay.BeginDelay(uid)) + return; + + _audio.PlayPvs(component.ExtinguishAttemptSound, uid); + if (_random.Prob(component.Probability)) + { + AdjustFireStacks(uid, component.StackDelta, flammable); + } + else + { + _popup.PopupEntity(Loc.GetString(component.ExtinguishFailed), uid); + } + } private void OnCollide(EntityUid uid, FlammableComponent flammable, ref StartCollideEvent args) { var otherUid = args.OtherEntity; + // Collisions cause events to get raised directed at both entities. We only want to handle this collision + // once, hence the uid check. + if (otherUid.Id < uid.Id) + return; + // Normal hard collisions, though this isn't generally possible since most flammable things are mobs // which don't collide with one another, shouldn't work here. if (args.OtherFixtureId != FlammableFixtureID && args.OurFixtureId != FlammableFixtureID) return; - if (!EntityManager.TryGetComponent(otherUid, out FlammableComponent? otherFlammable)) + if (!flammable.FireSpread) return; - if (!flammable.FireSpread || !otherFlammable.FireSpread) + if (!TryComp(otherUid, out FlammableComponent? otherFlammable) || !otherFlammable.FireSpread) return; + if (!flammable.OnFire && !otherFlammable.OnFire) + return; // Neither are on fire + + if (flammable.OnFire && otherFlammable.OnFire) + { + // Both are on fire -> equalize fire stacks. + var avg = (flammable.FireStacks + otherFlammable.FireStacks) / 2; + flammable.FireStacks = flammable.CanExtinguish ? avg : Math.Max(flammable.FireStacks, avg); + otherFlammable.FireStacks = otherFlammable.CanExtinguish ? avg : Math.Max(otherFlammable.FireStacks, avg); + UpdateAppearance(uid, flammable); + UpdateAppearance(otherUid, otherFlammable); + return; + } + + // Only one is on fire -> attempt to spread the fire. if (flammable.OnFire) { - if (otherFlammable.OnFire) + otherFlammable.FireStacks += flammable.FireStacks / 2; + Ignite(otherUid, uid, otherFlammable); + if (flammable.CanExtinguish) { - if (flammable.CanExtinguish) - { - var fireSplit = (flammable.FireStacks + otherFlammable.FireStacks) / 2; - flammable.FireStacks = fireSplit; - otherFlammable.FireStacks = fireSplit; - } - else - { - otherFlammable.FireStacks = flammable.FireStacks / 2; - } - } - else - { - if (!flammable.CanExtinguish) - { - otherFlammable.FireStacks += flammable.FireStacks / 2; - Ignite(otherUid, uid, otherFlammable); - } - else - { - flammable.FireStacks /= 2; - otherFlammable.FireStacks += flammable.FireStacks; - Ignite(otherUid, uid, otherFlammable); - } + flammable.FireStacks /= 2; + UpdateAppearance(uid, flammable); } } - else if (otherFlammable.OnFire) + else { - otherFlammable.FireStacks /= 2; - flammable.FireStacks += otherFlammable.FireStacks; + flammable.FireStacks += otherFlammable.FireStacks / 2; Ignite(uid, otherUid, flammable); + if (otherFlammable.CanExtinguish) + { + otherFlammable.FireStacks /= 2; + UpdateAppearance(otherUid, otherFlammable); + } } } @@ -208,6 +252,12 @@ public void UpdateAppearance(EntityUid uid, FlammableComponent? flammable = null _appearance.SetData(uid, FireVisuals.OnFire, flammable.OnFire, appearance); _appearance.SetData(uid, FireVisuals.FireStacks, flammable.FireStacks, appearance); + + // Also enable toggleable-light visuals + // This is intended so that matches & candles can re-use code for un-shaded layers on in-hand sprites. + // However, this could cause conflicts if something is ACTUALLY both a toggleable light and flammable. + // if that ever happens, then fire visuals will need to implement their own in-hand sprite management. + _appearance.SetData(uid, ToggleableLightVisuals.Enabled, flammable.OnFire, appearance); } public void AdjustFireStacks(EntityUid uid, float relativeFireStacks, FlammableComponent? flammable = null) @@ -219,8 +269,8 @@ public void AdjustFireStacks(EntityUid uid, float relativeFireStacks, FlammableC if (flammable.OnFire && flammable.FireStacks <= 0) Extinguish(uid, flammable); - - UpdateAppearance(uid, flammable); + else + UpdateAppearance(uid, flammable); } public void Extinguish(EntityUid uid, FlammableComponent? flammable = null) @@ -235,8 +285,6 @@ public void Extinguish(EntityUid uid, FlammableComponent? flammable = null) flammable.OnFire = false; flammable.FireStacks = 0; - flammable.Collided.Clear(); - UpdateAppearance(uid, flammable); } @@ -338,7 +386,7 @@ public override void Update(float frameTime) _damageableSystem.TryChangeDamage(uid, flammable.Damage * damageScale); - AdjustFireStacks(uid, -0.1f * (flammable.Resisting ? 10f : 1f), flammable); + AdjustFireStacks(uid, flammable.FirestackFade * (flammable.Resisting ? 10f : 1f), flammable); } else { @@ -362,24 +410,6 @@ public override void Update(float frameTime) 700f, 50f, uid, true); } - - for (var i = flammable.Collided.Count - 1; i >= 0; i--) - { - var otherUid = flammable.Collided[i]; - - if (!otherUid.IsValid() || !EntityManager.EntityExists(otherUid)) - { - flammable.Collided.RemoveAt(i); - continue; - } - - // TODO: Sloth, please save our souls! - // no - if (!_lookup.GetWorldAABB(uid, transform).Intersects(_lookup.GetWorldAABB(otherUid))) - { - flammable.Collided.RemoveAt(i); - } - } } } } diff --git a/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs b/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs index 16ddf1f933..6a2c8f0a7e 100644 --- a/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs +++ b/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs @@ -1,3 +1,4 @@ +using System.Linq; using Content.Server.Atmos; using Content.Server.Atmos.Components; using Content.Server.NodeContainer; @@ -23,6 +24,11 @@ public sealed class GasAnalyzerSystem : EntitySystem [Dependency] private readonly UserInterfaceSystem _userInterface = default!; [Dependency] private readonly TransformSystem _transform = default!; + /// + /// Minimum moles of a gas to be sent to the client. + /// + private const float UIMinMoles = 0.01f; + public override void Initialize() { base.Initialize(); @@ -254,7 +260,7 @@ private GasEntry[] GenerateGasEntryArray(GasMixture? mixture) { var gas = _atmo.GetGas(i); - if (mixture?.Moles[i] <= Atmospherics.GasMinMoles) + if (mixture?.Moles[i] <= UIMinMoles) continue; if (mixture != null) @@ -264,7 +270,9 @@ private GasEntry[] GenerateGasEntryArray(GasMixture? mixture) } } - return gases.ToArray(); + var gasesOrdered = gases.OrderByDescending(gas => gas.Amount); + + return gasesOrdered.ToArray(); } } } diff --git a/Content.Server/Atmos/EntitySystems/GasTankSystem.cs b/Content.Server/Atmos/EntitySystems/GasTankSystem.cs index 17715435b2..bdd60d6d05 100644 --- a/Content.Server/Atmos/EntitySystems/GasTankSystem.cs +++ b/Content.Server/Atmos/EntitySystems/GasTankSystem.cs @@ -1,3 +1,4 @@ +using System.Numerics; using Content.Server.Atmos.Components; using Content.Server.Body.Components; using Content.Server.Body.Systems; @@ -8,11 +9,13 @@ using Content.Shared.Atmos; using Content.Shared.Atmos.Components; using Content.Shared.Examine; +using Content.Shared.Throwing; using Content.Shared.Toggleable; using Content.Shared.Verbs; using JetBrains.Annotations; using Robust.Server.GameObjects; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Physics.Systems; using Robust.Shared.Player; @@ -32,9 +35,11 @@ public sealed class GasTankSystem : EntitySystem [Dependency] private readonly UserInterfaceSystem _ui = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly ThrowingSystem _throwing = default!; private const float TimerDelay = 0.5f; private float _timer = 0f; + private const float MinimumSoundValvePressure = 10.0f; public override void Initialize() { @@ -64,7 +69,7 @@ private void OnGasTankToggleInternals(Entity ent, ref GasTankT private void OnGasTankSetPressure(Entity ent, ref GasTankSetPressureMessage args) { - var pressure = Math.Min(args.Pressure, ent.Comp.MaxOutputPressure); + var pressure = Math.Clamp(args.Pressure, 0f, ent.Comp.MaxOutputPressure); ent.Comp.OutputPressure = pressure; @@ -136,7 +141,7 @@ public override void Update(float frameTime) while (query.MoveNext(out var uid, out var comp)) { var gasTank = (uid, comp); - if (comp.IsValveOpen && !comp.IsLowPressure) + if (comp.IsValveOpen && !comp.IsLowPressure && comp.OutputPressure > 0) { ReleaseGas(gasTank); } @@ -171,10 +176,11 @@ private void ReleaseGas(Entity gasTank) { _atmosphereSystem.Merge(environment, removed); } - var impulse = removed.TotalMoles * removed.Temperature; - _physics.ApplyLinearImpulse(gasTank, _random.NextAngle().ToWorldVec() * impulse); - _physics.ApplyAngularImpulse(gasTank, _random.NextFloat(-3f, 3f)); - _audioSys.PlayPvs(gasTank.Comp.RuptureSound, gasTank); + var strength = removed.TotalMoles * MathF.Sqrt(removed.Temperature); + var dir = _random.NextAngle().ToWorldVec(); + _throwing.TryThrow(gasTank, dir * strength, strength); + if (gasTank.Comp.OutputPressure >= MinimumSoundValvePressure) + _audioSys.PlayPvs(gasTank.Comp.RuptureSound, gasTank); } private void ToggleInternals(Entity ent) @@ -239,10 +245,8 @@ public void ConnectToInternals(Entity ent) if (!component.IsConnected) return; - component.ConnectStream?.Stop(); - - if (component.ConnectSound != null) - component.ConnectStream = _audioSys.PlayPvs(component.ConnectSound, owner); + component.ConnectStream = _audioSys.Stop(component.ConnectStream); + component.ConnectStream = _audioSys.PlayPvs(component.ConnectSound, component.Owner)?.Entity; UpdateUserInterface(ent); } @@ -259,10 +263,8 @@ public void DisconnectFromInternals(Entity ent) _actions.SetToggled(component.ToggleActionEntity, false); _internals.DisconnectTank(internals); - component.DisconnectStream?.Stop(); - - if (component.DisconnectSound != null) - component.DisconnectStream = _audioSys.PlayPvs(component.DisconnectSound, owner); + component.DisconnectStream = _audioSys.Stop(component.DisconnectStream); + component.DisconnectStream = _audioSys.PlayPvs(component.DisconnectSound, component.Owner)?.Entity; UpdateUserInterface(ent); } @@ -322,7 +324,7 @@ public void CheckStatus(Entity ent) if(environment != null) _atmosphereSystem.Merge(environment, component.Air); - _audioSys.Play(component.RuptureSound, Filter.Pvs(owner), Transform(owner).Coordinates, true, AudioParams.Default.WithVariation(0.125f)); + _audioSys.PlayPvs(component.RuptureSound, Transform(component.Owner).Coordinates, AudioParams.Default.WithVariation(0.125f)); QueueDel(owner); return; diff --git a/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs b/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs index b0e8cf71c7..201185d6f6 100644 --- a/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs +++ b/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs @@ -36,6 +36,12 @@ public sealed class GasTileOverlaySystem : SharedGasTileOverlaySystem [Robust.Shared.IoC.Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; [Robust.Shared.IoC.Dependency] private readonly ChunkingSystem _chunkingSys = default!; + /// + /// Per-tick cache of sessions. + /// + private readonly List _sessions = new(); + private UpdatePlayerJob _updateJob; + private readonly Dictionary>> _lastSentChunks = new(); // Oh look its more duplicated decal system code! @@ -56,6 +62,19 @@ public sealed class GasTileOverlaySystem : SharedGasTileOverlaySystem public override void Initialize() { base.Initialize(); + + _updateJob = new UpdatePlayerJob() + { + EntManager = EntityManager, + System = this, + ChunkIndexPool = _chunkIndexPool, + Sessions = _sessions, + ChunkingSys = _chunkingSys, + MapManager = _mapManager, + ChunkViewerPool = _chunkViewerPool, + LastSentChunks = _lastSentChunks, + }; + _playerManager.PlayerStatusChanged += OnPlayerStatusChanged; _confMan.OnValueChanged(CCVars.NetGasOverlayTickRate, UpdateTickRate, true); _confMan.OnValueChanged(CCVars.GasOverlayThresholds, UpdateThresholds, true); @@ -69,7 +88,7 @@ private void OnStartup(EntityUid uid, GasTileOverlayComponent component, Compone { // This **shouldn't** be required, but just in case we ever get entity prototypes that have gas overlays, we // need to ensure that we send an initial full state to players. - Dirty(component); + Dirty(uid, component); } public override void Shutdown() @@ -287,101 +306,137 @@ public override void Update(float frameTime) // Now we'll go through each player, then through each chunk in range of that player checking if the player is still in range // If they are, check if they need the new data to send (i.e. if there's an overlay for the gas). // Afterwards we reset all the chunk data for the next time we tick. - var players = _playerManager.Sessions.Where(x => x.Status == SessionStatus.InGame).ToArray(); - var opts = new ParallelOptions { MaxDegreeOfParallelism = _parMan.ParallelProcessCount }; - Parallel.ForEach(players, opts, p => UpdatePlayer(p, curTick)); - } - - private void UpdatePlayer(ICommonSession playerSession, GameTick curTick) - { - var chunksInRange = _chunkingSys.GetChunksForSession(playerSession, ChunkSize, _chunkIndexPool, _chunkViewerPool); - var previouslySent = _lastSentChunks[playerSession]; + _sessions.Clear(); - var ev = new GasOverlayUpdateEvent(); - - foreach (var (netGrid, oldIndices) in previouslySent) + foreach (var player in _playerManager.Sessions) { - // Mark the whole grid as stale and flag for removal. - if (!chunksInRange.TryGetValue(netGrid, out var chunks)) - { - previouslySent.Remove(netGrid); + if (player.Status != SessionStatus.InGame) + continue; - // If grid was deleted then don't worry about sending it to the client. - if (!TryGetEntity(netGrid, out var gridId) || !_mapManager.IsGrid(gridId.Value)) - ev.RemovedChunks[netGrid] = oldIndices; - else - { - oldIndices.Clear(); - _chunkIndexPool.Return(oldIndices); - } + _sessions.Add(player); + } - continue; - } + if (_sessions.Count > 0) + { + _updateJob.CurrentTick = curTick; + _parMan.ProcessNow(_updateJob, _sessions.Count); + } + } - var old = _chunkIndexPool.Get(); - DebugTools.Assert(old.Count == 0); - foreach (var chunk in oldIndices) + public void Reset(RoundRestartCleanupEvent ev) + { + foreach (var data in _lastSentChunks.Values) + { + foreach (var previous in data.Values) { - if (!chunks.Contains(chunk)) - old.Add(chunk); + previous.Clear(); + _chunkIndexPool.Return(previous); } - if (old.Count == 0) - _chunkIndexPool.Return(old); - else - ev.RemovedChunks.Add(netGrid, old); + data.Clear(); } + } - foreach (var (netGrid, gridChunks) in chunksInRange) - { - // Not all grids have atmospheres. - if (!TryGetEntity(netGrid, out var grid) || !TryComp(grid, out GasTileOverlayComponent? overlay)) - continue; + #region Jobs + + /// + /// Updates per player gas overlay data. + /// + private record struct UpdatePlayerJob : IParallelRobustJob + { + public int BatchSize => 2; - List dataToSend = new(); - ev.UpdatedChunks[netGrid] = dataToSend; + public IEntityManager EntManager; + public IMapManager MapManager; + public ChunkingSystem ChunkingSys; + public GasTileOverlaySystem System; + public ObjectPool> ChunkIndexPool; + public ObjectPool>> ChunkViewerPool; - previouslySent.TryGetValue(netGrid, out var previousChunks); + public GameTick CurrentTick; + public Dictionary>> LastSentChunks; + public List Sessions; - foreach (var index in gridChunks) + public void Execute(int index) + { + var playerSession = Sessions[index]; + var chunksInRange = ChunkingSys.GetChunksForSession(playerSession, ChunkSize, ChunkIndexPool, ChunkViewerPool); + var previouslySent = LastSentChunks[playerSession]; + + var ev = new GasOverlayUpdateEvent(); + + foreach (var (netGrid, oldIndices) in previouslySent) { - if (!overlay.Chunks.TryGetValue(index, out var value)) + // Mark the whole grid as stale and flag for removal. + if (!chunksInRange.TryGetValue(netGrid, out var chunks)) + { + previouslySent.Remove(netGrid); + + // If grid was deleted then don't worry about sending it to the client. + if (!EntManager.TryGetEntity(netGrid, out var gridId) || !MapManager.IsGrid(gridId.Value)) + ev.RemovedChunks[netGrid] = oldIndices; + else + { + oldIndices.Clear(); + ChunkIndexPool.Return(oldIndices); + } + continue; + } - if (previousChunks != null && - previousChunks.Contains(index) && - value.LastUpdate != curTick) + var old = ChunkIndexPool.Get(); + DebugTools.Assert(old.Count == 0); + foreach (var chunk in oldIndices) { - continue; + if (!chunks.Contains(chunk)) + old.Add(chunk); } - dataToSend.Add(value); + if (old.Count == 0) + ChunkIndexPool.Return(old); + else + ev.RemovedChunks.Add(netGrid, old); } - previouslySent[netGrid] = gridChunks; - if (previousChunks != null) + foreach (var (netGrid, gridChunks) in chunksInRange) { - previousChunks.Clear(); - _chunkIndexPool.Return(previousChunks); - } - } + // Not all grids have atmospheres. + if (!EntManager.TryGetEntity(netGrid, out var grid) || !EntManager.TryGetComponent(grid, out GasTileOverlayComponent? overlay)) + continue; - if (ev.UpdatedChunks.Count != 0 || ev.RemovedChunks.Count != 0) - RaiseNetworkEvent(ev, playerSession.ConnectedClient); - } + List dataToSend = new(); + ev.UpdatedChunks[netGrid] = dataToSend; - public void Reset(RoundRestartCleanupEvent ev) - { - foreach (var data in _lastSentChunks.Values) - { - foreach (var previous in data.Values) - { - previous.Clear(); - _chunkIndexPool.Return(previous); + previouslySent.TryGetValue(netGrid, out var previousChunks); + + foreach (var gIndex in gridChunks) + { + if (!overlay.Chunks.TryGetValue(gIndex, out var value)) + continue; + + if (previousChunks != null && + previousChunks.Contains(gIndex) && + value.LastUpdate != CurrentTick) + { + continue; + } + + dataToSend.Add(value); + } + + previouslySent[netGrid] = gridChunks; + if (previousChunks != null) + { + previousChunks.Clear(); + ChunkIndexPool.Return(previousChunks); + } } - data.Clear(); + if (ev.UpdatedChunks.Count != 0 || ev.RemovedChunks.Count != 0) + System.RaiseNetworkEvent(ev, playerSession.Channel); } } + + #endregion } } diff --git a/Content.Server/Atmos/EntitySystems/HeatExchangerSystem.cs b/Content.Server/Atmos/EntitySystems/HeatExchangerSystem.cs index e8a7b089c6..a71174d4d3 100644 --- a/Content.Server/Atmos/EntitySystems/HeatExchangerSystem.cs +++ b/Content.Server/Atmos/EntitySystems/HeatExchangerSystem.cs @@ -43,7 +43,7 @@ private void CacheTileLoss(float val) tileLoss = val; } - private void OnAtmosUpdate(EntityUid uid, HeatExchangerComponent comp, AtmosDeviceUpdateEvent args) + private void OnAtmosUpdate(EntityUid uid, HeatExchangerComponent comp, ref AtmosDeviceUpdateEvent args) { if (!TryComp(uid, out NodeContainerComponent? nodeContainer) || !TryComp(uid, out AtmosDeviceComponent? device) @@ -83,7 +83,7 @@ private void OnAtmosUpdate(EntityUid uid, HeatExchangerComponent comp, AtmosDevi else xfer = outlet.Air.Remove(-n); - float CXfer = _atmosphereSystem.GetHeatCapacity(xfer); + float CXfer = _atmosphereSystem.GetHeatCapacity(xfer, true); if (CXfer < Atmospherics.MinimumHeatCapacity) return; @@ -94,7 +94,7 @@ private void OnAtmosUpdate(EntityUid uid, HeatExchangerComponent comp, AtmosDevi float CEnv = 0f; if (environment != null) { - CEnv = _atmosphereSystem.GetHeatCapacity(environment); + CEnv = _atmosphereSystem.GetHeatCapacity(environment, true); hasEnv = CEnv >= Atmospherics.MinimumHeatCapacity && environment.TotalMoles > 0f; if (hasEnv) radTemp = environment.Temperature; diff --git a/Content.Server/Atmos/GasMixture.cs b/Content.Server/Atmos/GasMixture.cs index 1547c259e6..0a2ef235a7 100644 --- a/Content.Server/Atmos/GasMixture.cs +++ b/Content.Server/Atmos/GasMixture.cs @@ -4,6 +4,7 @@ using Content.Server.Atmos.Reactions; using Content.Shared.Atmos; using Robust.Shared.Serialization; +using Robust.Shared.Utility; namespace Content.Server.Atmos { @@ -58,8 +59,9 @@ public float Temperature get => _temperature; set { + DebugTools.Assert(!float.IsNaN(_temperature)); if (Immutable) return; - _temperature = MathF.Max(value, Atmospherics.TCMB); + _temperature = MathF.Min(MathF.Max(value, Atmospherics.TCMB), Atmospherics.Tmax); } } @@ -120,12 +122,9 @@ public void AdjustMoles(int gasId, float quantity) if (!float.IsFinite(quantity)) throw new ArgumentException($"Invalid quantity \"{quantity}\" specified!", nameof(quantity)); - Moles[gasId] += quantity; - - var moles = Moles[gasId]; - - if (!float.IsFinite(moles) || float.IsNegative(moles)) - throw new Exception($"Invalid mole quantity \"{moles}\" in gas Id {gasId} after adjusting moles with \"{quantity}\"!"); + // Clamping is needed because x - x can be negative with floating point numbers. If we don't + // clamp here, the caller always has to call GetMoles(), clamp, then SetMoles(). + Moles[gasId] = MathF.Max(Moles[gasId] + quantity, 0); } } diff --git a/Content.Server/Atmos/IGasReactionEffect.cs b/Content.Server/Atmos/IGasReactionEffect.cs index acaef2a071..bd229694bb 100644 --- a/Content.Server/Atmos/IGasReactionEffect.cs +++ b/Content.Server/Atmos/IGasReactionEffect.cs @@ -6,6 +6,14 @@ namespace Content.Server.Atmos [ImplicitDataDefinitionForInheritors] public partial interface IGasReactionEffect { - ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem); + /// + /// Process this reaction effect. + /// + /// The gas mixture to react + /// The container of this gas mixture + /// The atmosphere system + /// Scaling factor that should be applied to all heat input or outputs. + ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem, + float heatScale); } } diff --git a/Content.Server/Atmos/Monitor/Systems/AirAlarmSystem.cs b/Content.Server/Atmos/Monitor/Systems/AirAlarmSystem.cs index 190ac9d5c9..b65d855680 100644 --- a/Content.Server/Atmos/Monitor/Systems/AirAlarmSystem.cs +++ b/Content.Server/Atmos/Monitor/Systems/AirAlarmSystem.cs @@ -569,7 +569,7 @@ private void ForceCloseAllInterfaces(EntityUid uid) _ui.TryCloseAll(uid, SharedAirAlarmInterfaceKey.Key); } - private void OnAtmosUpdate(EntityUid uid, AirAlarmComponent alarm, AtmosDeviceUpdateEvent args) + private void OnAtmosUpdate(EntityUid uid, AirAlarmComponent alarm, ref AtmosDeviceUpdateEvent args) { alarm.CurrentModeUpdater?.Update(uid); } diff --git a/Content.Server/Atmos/Monitor/Systems/AtmosAlarmableSystem.cs b/Content.Server/Atmos/Monitor/Systems/AtmosAlarmableSystem.cs index b674f86442..27e64a9956 100644 --- a/Content.Server/Atmos/Monitor/Systems/AtmosAlarmableSystem.cs +++ b/Content.Server/Atmos/Monitor/Systems/AtmosAlarmableSystem.cs @@ -7,6 +7,7 @@ using Content.Server.Power.Components; using Content.Shared.Atmos.Monitor; using Content.Shared.Tag; +using Robust.Server.Audio; using Robust.Server.GameObjects; using Robust.Shared.Audio; using Robust.Shared.Utility; diff --git a/Content.Server/Atmos/Monitor/Systems/AtmosMonitoringSystem.cs b/Content.Server/Atmos/Monitor/Systems/AtmosMonitoringSystem.cs index efd67550ba..1fcb7734d8 100644 --- a/Content.Server/Atmos/Monitor/Systems/AtmosMonitoringSystem.cs +++ b/Content.Server/Atmos/Monitor/Systems/AtmosMonitoringSystem.cs @@ -47,12 +47,12 @@ public override void Initialize() SubscribeLocalEvent(OnAtmosDeviceEnterAtmosphere); } - private void OnAtmosDeviceLeaveAtmosphere(EntityUid uid, AtmosMonitorComponent atmosMonitor, AtmosDeviceDisabledEvent args) + private void OnAtmosDeviceLeaveAtmosphere(EntityUid uid, AtmosMonitorComponent atmosMonitor, ref AtmosDeviceDisabledEvent args) { atmosMonitor.TileGas = null; } - private void OnAtmosDeviceEnterAtmosphere(EntityUid uid, AtmosMonitorComponent atmosMonitor, AtmosDeviceEnabledEvent args) + private void OnAtmosDeviceEnterAtmosphere(EntityUid uid, AtmosMonitorComponent atmosMonitor, ref AtmosDeviceEnabledEvent args) { atmosMonitor.TileGas = _atmosphereSystem.GetContainingMixture(uid, true); } @@ -198,7 +198,7 @@ private void OnFireEvent(EntityUid uid, AtmosMonitorComponent component, ref Til } } - private void OnAtmosUpdate(EntityUid uid, AtmosMonitorComponent component, AtmosDeviceUpdateEvent args) + private void OnAtmosUpdate(EntityUid uid, AtmosMonitorComponent component, ref AtmosDeviceUpdateEvent args) { if (!this.IsPowered(uid, EntityManager)) return; diff --git a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasPassiveGateSystem.cs b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasPassiveGateSystem.cs index 9b37aaaf3e..77bab4775c 100644 --- a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasPassiveGateSystem.cs +++ b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasPassiveGateSystem.cs @@ -24,7 +24,7 @@ public override void Initialize() SubscribeLocalEvent(OnExamined); } - private void OnPassiveGateUpdated(EntityUid uid, GasPassiveGateComponent gate, AtmosDeviceUpdateEvent args) + private void OnPassiveGateUpdated(EntityUid uid, GasPassiveGateComponent gate, ref AtmosDeviceUpdateEvent args) { if (!EntityManager.TryGetComponent(uid, out NodeContainerComponent? nodeContainer)) return; diff --git a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasPressurePumpSystem.cs b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasPressurePumpSystem.cs index 75167dfbc2..49b69fc673 100644 --- a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasPressurePumpSystem.cs +++ b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasPressurePumpSystem.cs @@ -63,7 +63,7 @@ private void OnExamined(EntityUid uid, GasPressurePumpComponent pump, ExaminedEv } } - private void OnPumpUpdated(EntityUid uid, GasPressurePumpComponent pump, AtmosDeviceUpdateEvent args) + private void OnPumpUpdated(EntityUid uid, GasPressurePumpComponent pump, ref AtmosDeviceUpdateEvent args) { if (!pump.Enabled || !EntityManager.TryGetComponent(uid, out NodeContainerComponent? nodeContainer) @@ -94,7 +94,7 @@ private void OnPumpUpdated(EntityUid uid, GasPressurePumpComponent pump, AtmosDe } } - private void OnPumpLeaveAtmosphere(EntityUid uid, GasPressurePumpComponent pump, AtmosDeviceDisabledEvent args) + private void OnPumpLeaveAtmosphere(EntityUid uid, GasPressurePumpComponent pump, ref AtmosDeviceDisabledEvent args) { pump.Enabled = false; UpdateAppearance(uid, pump); diff --git a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasRecyclerSystem.cs b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasRecyclerSystem.cs index 359123aabf..fb35ddc346 100644 --- a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasRecyclerSystem.cs +++ b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasRecyclerSystem.cs @@ -33,7 +33,7 @@ public override void Initialize() SubscribeLocalEvent(OnUpgradeExamine); } - private void OnEnabled(EntityUid uid, GasRecyclerComponent comp, AtmosDeviceEnabledEvent args) + private void OnEnabled(EntityUid uid, GasRecyclerComponent comp, ref AtmosDeviceEnabledEvent args) { UpdateAppearance(uid, comp); } @@ -105,11 +105,11 @@ public float PassiveTransferVol(GasMixture inlet, GasMixture outlet) return 0; } float overPressConst = 300; // pressure difference (in atm) to get 200 L/sec transfer rate - float alpha = Atmospherics.MaxTransferRate / (float)Math.Sqrt(overPressConst*Atmospherics.OneAtmosphere); + float alpha = Atmospherics.MaxTransferRate * _atmosphereSystem.PumpSpeedup() / (float)Math.Sqrt(overPressConst*Atmospherics.OneAtmosphere); return alpha * (float)Math.Sqrt(inlet.Pressure - outlet.Pressure); } - private void OnDisabled(EntityUid uid, GasRecyclerComponent comp, AtmosDeviceDisabledEvent args) + private void OnDisabled(EntityUid uid, GasRecyclerComponent comp, ref AtmosDeviceDisabledEvent args) { comp.Reacting = false; UpdateAppearance(uid, comp); diff --git a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasValveSystem.cs b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasValveSystem.cs index 914e732991..934ce8a7a4 100644 --- a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasValveSystem.cs +++ b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasValveSystem.cs @@ -8,6 +8,7 @@ using Content.Shared.Interaction; using JetBrains.Annotations; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; namespace Content.Server.Atmos.Piping.Binary.EntitySystems @@ -17,6 +18,7 @@ public sealed class GasValveSystem : EntitySystem { [Dependency] private readonly SharedAmbientSoundSystem _ambientSoundSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly NodeContainerSystem _nodeContainer = default!; public override void Initialize() @@ -35,10 +37,11 @@ private void OnExamined(Entity ent, ref ExaminedEvent args) return; if (Loc.TryGetString("gas-valve-system-examined", out var str, - ("statusColor", valve.Open ? "green" : "orange"), - ("open", valve.Open) - )) + ("statusColor", valve.Open ? "green" : "orange"), + ("open", valve.Open))) + { args.PushMarkup(str); + } } private void OnStartup(EntityUid uid, GasValveComponent component, ComponentStartup args) @@ -50,7 +53,7 @@ private void OnStartup(EntityUid uid, GasValveComponent component, ComponentStar private void OnActivate(EntityUid uid, GasValveComponent component, ActivateInWorldEvent args) { Toggle(uid, component); - SoundSystem.Play(component.ValveSound.GetSound(), Filter.Pvs(uid), uid, AudioHelpers.WithVariation(0.25f)); + _audio.PlayPvs(component.ValveSound, uid, AudioParams.Default.WithVariation(0.25f)); } public void Set(EntityUid uid, GasValveComponent component, bool value) diff --git a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasVolumePumpSystem.cs b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasVolumePumpSystem.cs index 66bd28eaac..4ae0d70f5e 100644 --- a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasVolumePumpSystem.cs +++ b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasVolumePumpSystem.cs @@ -69,7 +69,7 @@ private void OnExamined(EntityUid uid, GasVolumePumpComponent pump, ExaminedEven args.PushMarkup(str); } - private void OnVolumePumpUpdated(EntityUid uid, GasVolumePumpComponent pump, AtmosDeviceUpdateEvent args) + private void OnVolumePumpUpdated(EntityUid uid, GasVolumePumpComponent pump, ref AtmosDeviceUpdateEvent args) { if (!pump.Enabled || !TryComp(uid, out NodeContainerComponent? nodeContainer) @@ -105,14 +105,12 @@ private void OnVolumePumpUpdated(EntityUid uid, GasVolumePumpComponent pump, Atm return; // We multiply the transfer rate in L/s by the seconds passed since the last process to get the liters. - var removed = inlet.Air.RemoveVolume(pump.TransferRate * args.dt); + var removed = inlet.Air.RemoveVolume(pump.TransferRate * _atmosphereSystem.PumpSpeedup() * args.dt); // Some of the gas from the mixture leaks when overclocked. if (pump.Overclocked) { - var transform = Transform(uid); - var indices = _transformSystem.GetGridOrMapTilePosition(uid, transform); - var tile = _atmosphereSystem.GetTileMixture(transform.GridUid, null, indices, true); + var tile = _atmosphereSystem.GetTileMixture(uid, excite: true); if (tile != null) { @@ -127,7 +125,7 @@ private void OnVolumePumpUpdated(EntityUid uid, GasVolumePumpComponent pump, Atm _ambientSoundSystem.SetAmbience(uid, removed.TotalMoles > 0f); } - private void OnVolumePumpLeaveAtmosphere(EntityUid uid, GasVolumePumpComponent pump, AtmosDeviceDisabledEvent args) + private void OnVolumePumpLeaveAtmosphere(EntityUid uid, GasVolumePumpComponent pump, ref AtmosDeviceDisabledEvent args) { pump.Enabled = false; UpdateAppearance(uid, pump); diff --git a/Content.Server/Atmos/Piping/Components/AtmosDeviceComponent.cs b/Content.Server/Atmos/Piping/Components/AtmosDeviceComponent.cs index cf53bb8b6e..361e3cbbeb 100644 --- a/Content.Server/Atmos/Piping/Components/AtmosDeviceComponent.cs +++ b/Content.Server/Atmos/Piping/Components/AtmosDeviceComponent.cs @@ -1,60 +1,73 @@ -namespace Content.Server.Atmos.Piping.Components +using Content.Server.Atmos.Components; + +namespace Content.Server.Atmos.Piping.Components; + +/// +/// Component for atmos devices which are updated in line with atmos, as part of a +/// +[RegisterComponent] +public sealed partial class AtmosDeviceComponent : Component { /// - /// Adds itself to a to be updated by. + /// If true, this device must be anchored before it will receive any AtmosDeviceUpdateEvents. /// - [RegisterComponent] - public sealed partial class AtmosDeviceComponent : Component - { - /// - /// If true, this device must be anchored before it will receive any AtmosDeviceUpdateEvents. - /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("requireAnchored")] - public bool RequireAnchored { get; private set; } = true; - - /// - /// If true, update even when there is no grid atmosphere. Normally, atmos devices only - /// update when inside a grid atmosphere, because they work with gases in the environment - /// and won't do anything useful if there is no environment. This is useful for devices - /// like gas canisters whose contents can still react if the canister itself is not inside - /// a grid atmosphere. - /// - [DataField("joinSystem")] - public bool JoinSystem { get; private set; } = false; - - /// - /// If non-null, the grid that this device is part of. - /// - public EntityUid? JoinedGrid { get; set; } - - /// - /// Indicates that a device is not on a grid atmosphere but still being updated. - /// - [ViewVariables] - public bool JoinedSystem { get; set; } = false; - - [ViewVariables] - public TimeSpan LastProcess { get; set; } = TimeSpan.Zero; - } + [ViewVariables(VVAccess.ReadWrite)] + [DataField] + public bool RequireAnchored = true; - public sealed class AtmosDeviceUpdateEvent : EntityEventArgs + /// + /// If true, update even when there is no grid atmosphere. Normally, atmos devices only + /// update when inside a grid atmosphere, because they work with gases in the environment + /// and won't do anything useful if there is no environment. This is useful for devices + /// like gas canisters whose contents can still react if the canister itself is not inside + /// a grid atmosphere. + /// + [DataField] + public bool JoinSystem = false; + + /// + /// If non-null, the grid that this device is part of. + /// + [DataField] + public EntityUid? JoinedGrid = null; + + /// + /// Indicates that a device is not on a grid atmosphere but still being updated. + /// + [ViewVariables] + public bool JoinedSystem = false; + + [ViewVariables] + public TimeSpan LastProcess = TimeSpan.Zero; +} + +/// +/// Raised directed on an atmos device as part of the atmos update loop when the device should do processing. +/// Use this for atmos devices instead of . +/// +[ByRefEvent] +public readonly struct AtmosDeviceUpdateEvent +{ + /// + /// Time elapsed since last update, in seconds. Multiply values used in the update handler + /// by this number to make them tickrate-invariant. Use this number instead of AtmosphereSystem.AtmosTime. + /// + public readonly float dt; + + public AtmosDeviceUpdateEvent(float dt) { - /// - /// Time elapsed since last update, in seconds. Multiply values used in the update handler - /// by this number to make them tickrate-invariant. Use this number instead of AtmosphereSystem.AtmosTime. - /// - public float dt; - - public AtmosDeviceUpdateEvent(float dt) - { - this.dt = dt; - } + this.dt = dt; } +} - public sealed class AtmosDeviceEnabledEvent : EntityEventArgs - {} +/// +/// Raised directed on an atmos device when it is enabled. +/// +[ByRefEvent] +public record struct AtmosDeviceEnabledEvent; - public sealed class AtmosDeviceDisabledEvent : EntityEventArgs - {} -} +/// +/// Raised directed on an atmos device when it is enabled. +/// +[ByRefEvent] +public record struct AtmosDeviceDisabledEvent; diff --git a/Content.Server/Atmos/Piping/EntitySystems/AtmosDeviceSystem.cs b/Content.Server/Atmos/Piping/EntitySystems/AtmosDeviceSystem.cs index ee7cf37096..f4da68ab53 100644 --- a/Content.Server/Atmos/Piping/EntitySystems/AtmosDeviceSystem.cs +++ b/Content.Server/Atmos/Piping/EntitySystems/AtmosDeviceSystem.cs @@ -16,6 +16,9 @@ public sealed class AtmosDeviceSystem : EntitySystem // Set of atmos devices that are off-grid but have JoinSystem set. private readonly HashSet> _joinedDevices = new(); + private static AtmosDeviceDisabledEvent _disabledEv = new(); + private static AtmosDeviceEnabledEvent _enabledEv = new(); + public override void Initialize() { base.Initialize(); @@ -45,7 +48,7 @@ public void JoinAtmosphere(Entity ent) } component.LastProcess = _gameTiming.CurTime; - RaiseLocalEvent(ent, new AtmosDeviceEnabledEvent()); + RaiseLocalEvent(ent, ref _enabledEv); } public void LeaveAtmosphere(Entity ent) @@ -66,7 +69,7 @@ public void LeaveAtmosphere(Entity ent) } component.LastProcess = TimeSpan.Zero; - RaiseLocalEvent(ent, new AtmosDeviceDisabledEvent()); + RaiseLocalEvent(ent, ref _disabledEv); } public void RejoinAtmosphere(Entity component) @@ -116,9 +119,10 @@ public override void Update(float frameTime) _timer -= _atmosphereSystem.AtmosTime; var time = _gameTiming.CurTime; + var ev = new AtmosDeviceUpdateEvent(_atmosphereSystem.AtmosTime); foreach (var device in _joinedDevices) { - RaiseLocalEvent(device, new AtmosDeviceUpdateEvent(_atmosphereSystem.AtmosTime)); + RaiseLocalEvent(device, ref ev); device.Comp.LastProcess = time; } } diff --git a/Content.Server/Atmos/Piping/EntitySystems/AtmosUnsafeUnanchorSystem.cs b/Content.Server/Atmos/Piping/EntitySystems/AtmosUnsafeUnanchorSystem.cs index 84ac05a503..fcb3ccde68 100644 --- a/Content.Server/Atmos/Piping/EntitySystems/AtmosUnsafeUnanchorSystem.cs +++ b/Content.Server/Atmos/Piping/EntitySystems/AtmosUnsafeUnanchorSystem.cs @@ -5,6 +5,7 @@ using Content.Server.Popups; using Content.Shared.Atmos; using Content.Shared.Construction.Components; +using Content.Shared.Destructible; using Content.Shared.Popups; using JetBrains.Annotations; using Robust.Shared.Player; @@ -21,6 +22,7 @@ public override void Initialize() { SubscribeLocalEvent(OnBeforeUnanchored); SubscribeLocalEvent(OnUnanchorAttempt); + SubscribeLocalEvent(OnBreak); } private void OnUnanchorAttempt(EntityUid uid, AtmosUnsafeUnanchorComponent component, UnanchorAttemptEvent args) @@ -48,7 +50,24 @@ private void OnUnanchorAttempt(EntityUid uid, AtmosUnsafeUnanchorComponent compo private void OnBeforeUnanchored(EntityUid uid, AtmosUnsafeUnanchorComponent component, BeforeUnanchoredEvent args) { - if (!component.Enabled || !EntityManager.TryGetComponent(uid, out NodeContainerComponent? nodes)) + if (component.Enabled) + LeakGas(uid); + } + + private void OnBreak(EntityUid uid, AtmosUnsafeUnanchorComponent component, BreakageEventArgs args) + { + LeakGas(uid); + // Can't use DoActsBehavior["Destruction"] in the same trigger because that would prevent us + // from leaking. So we make up for this by queueing deletion here. + QueueDel(uid); + } + + /// + /// Leak gas from the uid's NodeContainer into the tile atmosphere. + /// + public void LeakGas(EntityUid uid) + { + if (!EntityManager.TryGetComponent(uid, out NodeContainerComponent? nodes)) return; if (_atmosphere.GetContainingMixture(uid, true, true) is not {} environment) diff --git a/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs b/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs index 7032e7fe0e..492d8cb0bd 100644 --- a/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs +++ b/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs @@ -50,7 +50,7 @@ private void OnInit(EntityUid uid, GasFilterComponent filter, ComponentInit args UpdateAppearance(uid, filter); } - private void OnFilterUpdated(EntityUid uid, GasFilterComponent filter, AtmosDeviceUpdateEvent args) + private void OnFilterUpdated(EntityUid uid, GasFilterComponent filter, ref AtmosDeviceUpdateEvent args) { if (!filter.Enabled || !EntityManager.TryGetComponent(uid, out NodeContainerComponent? nodeContainer) @@ -65,7 +65,7 @@ private void OnFilterUpdated(EntityUid uid, GasFilterComponent filter, AtmosDevi } // We multiply the transfer rate in L/s by the seconds passed since the last process to get the liters. - var transferVol = filter.TransferRate * args.dt; + var transferVol = filter.TransferRate * _atmosphereSystem.PumpSpeedup() * args.dt; if (transferVol <= 0) { @@ -90,7 +90,7 @@ private void OnFilterUpdated(EntityUid uid, GasFilterComponent filter, AtmosDevi _atmosphereSystem.Merge(outletNode.Air, removed); } - private void OnFilterLeaveAtmosphere(EntityUid uid, GasFilterComponent filter, AtmosDeviceDisabledEvent args) + private void OnFilterLeaveAtmosphere(EntityUid uid, GasFilterComponent filter, ref AtmosDeviceDisabledEvent args) { filter.Enabled = false; diff --git a/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasMixerSystem.cs b/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasMixerSystem.cs index f6ad51fb24..6d03c86248 100644 --- a/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasMixerSystem.cs +++ b/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasMixerSystem.cs @@ -50,7 +50,7 @@ private void OnInit(EntityUid uid, GasMixerComponent mixer, ComponentInit args) UpdateAppearance(uid, mixer); } - private void OnMixerUpdated(EntityUid uid, GasMixerComponent mixer, AtmosDeviceUpdateEvent args) + private void OnMixerUpdated(EntityUid uid, GasMixerComponent mixer, ref AtmosDeviceUpdateEvent args) { // TODO ATMOS: Cache total moles since it's expensive. @@ -138,7 +138,7 @@ private void OnMixerUpdated(EntityUid uid, GasMixerComponent mixer, AtmosDeviceU _ambientSoundSystem.SetAmbience(uid, true); } - private void OnMixerLeaveAtmosphere(EntityUid uid, GasMixerComponent mixer, AtmosDeviceDisabledEvent args) + private void OnMixerLeaveAtmosphere(EntityUid uid, GasMixerComponent mixer, ref AtmosDeviceDisabledEvent args) { mixer.Enabled = false; diff --git a/Content.Server/Atmos/Piping/Trinary/EntitySystems/PressureControlledValveSystem.cs b/Content.Server/Atmos/Piping/Trinary/EntitySystems/PressureControlledValveSystem.cs index ceea449a31..2c2f1584a5 100644 --- a/Content.Server/Atmos/Piping/Trinary/EntitySystems/PressureControlledValveSystem.cs +++ b/Content.Server/Atmos/Piping/Trinary/EntitySystems/PressureControlledValveSystem.cs @@ -31,7 +31,7 @@ private void OnInit(EntityUid uid, PressureControlledValveComponent comp, Compon UpdateAppearance(uid, comp); } - private void OnUpdate(EntityUid uid, PressureControlledValveComponent comp, AtmosDeviceUpdateEvent args) + private void OnUpdate(EntityUid uid, PressureControlledValveComponent comp, ref AtmosDeviceUpdateEvent args) { if (!EntityManager.TryGetComponent(uid, out NodeContainerComponent? nodeContainer) || !EntityManager.TryGetComponent(uid, out AtmosDeviceComponent? device) @@ -62,7 +62,7 @@ private void OnUpdate(EntityUid uid, PressureControlledValveComponent comp, Atmo else { comp.Enabled = true; - transferRate = Math.Min(control * comp.Gain, comp.MaxTransferRate); + transferRate = Math.Min(control * comp.Gain, comp.MaxTransferRate * _atmosphereSystem.PumpSpeedup()); } UpdateAppearance(uid, comp); @@ -79,7 +79,7 @@ private void OnUpdate(EntityUid uid, PressureControlledValveComponent comp, Atmo _atmosphereSystem.Merge(outletNode.Air, removed); } - private void OnFilterLeaveAtmosphere(EntityUid uid, PressureControlledValveComponent comp, AtmosDeviceDisabledEvent args) + private void OnFilterLeaveAtmosphere(EntityUid uid, PressureControlledValveComponent comp, ref AtmosDeviceDisabledEvent args) { comp.Enabled = false; UpdateAppearance(uid, comp); diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasCanisterComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasCanisterComponent.cs index 178e169888..1daa42d7c4 100644 --- a/Content.Server/Atmos/Piping/Unary/Components/GasCanisterComponent.cs +++ b/Content.Server/Atmos/Piping/Unary/Components/GasCanisterComponent.cs @@ -1,4 +1,5 @@ using Content.Shared.Atmos; +using Content.Shared.Containers.ItemSlots; using Robust.Shared.Audio; namespace Content.Server.Atmos.Piping.Unary.Components @@ -15,7 +16,11 @@ public sealed partial class GasCanisterComponent : Component, IGasMixtureHolder /// [ViewVariables(VVAccess.ReadWrite)] [DataField("container")] - public string ContainerName { get; set; } = "GasCanisterTankHolder"; + public string ContainerName { get; set; } = "tank_slot"; + + [ViewVariables(VVAccess.ReadWrite)] + [DataField] + public ItemSlot GasTankSlot = new(); [ViewVariables(VVAccess.ReadWrite)] [DataField("gasMixture")] diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasCondenserComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasCondenserComponent.cs new file mode 100644 index 0000000000..1db0b524bb --- /dev/null +++ b/Content.Server/Atmos/Piping/Unary/Components/GasCondenserComponent.cs @@ -0,0 +1,33 @@ +using Content.Server.Atmos.Piping.Unary.EntitySystems; + +namespace Content.Server.Atmos.Piping.Unary.Components; + +/// +/// Used for an entity that converts moles of gas into units of reagent. +/// +[RegisterComponent] +[Access(typeof(GasCondenserSystem))] +public sealed partial class GasCondenserComponent : Component +{ + /// + /// The ID for the pipe node. + /// + [DataField] + public string Inlet = "pipe"; + + /// + /// The ID for the solution. + /// + [DataField] + public string SolutionId = "tank"; + + /// + /// For a condenser, how many U of reagents are given per each mole of gas. + /// + /// + /// Derived from a standard of 500u per canister: + /// 400u / 1871.71051 moles per canister + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float MolesToReagentMultiplier = 0.2137f; +} diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs index 14a1e5e456..e1e7b2a701 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs @@ -11,11 +11,14 @@ using Content.Server.Popups; using Content.Shared.Atmos; using Content.Shared.Atmos.Piping.Binary.Components; +using Content.Shared.Containers.ItemSlots; using Content.Shared.Database; using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction; using Content.Shared.Lock; using Robust.Server.GameObjects; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Player; @@ -32,6 +35,7 @@ public sealed class GasCanisterSystem : EntitySystem [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly UserInterfaceSystem _ui = default!; [Dependency] private readonly NodeContainerSystem _nodeContainer = default!; + [Dependency] private readonly ItemSlotsSystem _slots = default!; public override void Initialize() { @@ -41,7 +45,7 @@ public override void Initialize() SubscribeLocalEvent(OnCanisterUpdated); SubscribeLocalEvent(OnCanisterActivate, after: new[] { typeof(LockSystem) }); SubscribeLocalEvent(OnCanisterInteractHand); - SubscribeLocalEvent(OnCanisterInteractUsing); + SubscribeLocalEvent(OnCanisterInsertAttempt); SubscribeLocalEvent(OnCanisterContainerInserted); SubscribeLocalEvent(OnCanisterContainerRemoved); SubscribeLocalEvent(CalculateCanisterPrice); @@ -72,11 +76,8 @@ public void PurgeContents(EntityUid uid, GasCanisterComponent? canister = null, private void OnCanisterStartup(EntityUid uid, GasCanisterComponent comp, ComponentStartup args) { - // Ensure container manager. - var containerManager = EnsureComp(uid); - - // Ensure container. - _container.EnsureContainer(uid, comp.ContainerName, containerManager); + // Ensure container + _slots.AddItemSlot(uid, comp.ContainerName, comp.GasTankSlot); if (TryComp(uid, out var lockComp)) { @@ -85,10 +86,9 @@ private void OnCanisterStartup(EntityUid uid, GasCanisterComponent comp, Compone } private void DirtyUI(EntityUid uid, - GasCanisterComponent? canister = null, NodeContainerComponent? nodeContainer = null, - ContainerManagerComponent? containerManager = null) + GasCanisterComponent? canister = null, NodeContainerComponent? nodeContainer = null) { - if (!Resolve(uid, ref canister, ref nodeContainer, ref containerManager)) + if (!Resolve(uid, ref canister, ref nodeContainer)) return; var portStatus = false; @@ -98,10 +98,9 @@ private void DirtyUI(EntityUid uid, if (_nodeContainer.TryGetNode(nodeContainer, canister.PortName, out PipeNode? portNode) && portNode.NodeGroup?.Nodes.Count > 1) portStatus = true; - if (containerManager.TryGetContainer(canister.ContainerName, out var tankContainer) - && tankContainer.ContainedEntities.Count > 0) + if (canister.GasTankSlot.Item != null) { - var tank = tankContainer.ContainedEntities[0]; + var tank = canister.GasTankSlot.Item.Value; var tankComponent = Comp(tank); tankLabel = Name(tank); tankPressure = tankComponent.Air.Pressure; @@ -115,15 +114,12 @@ private void DirtyUI(EntityUid uid, private void OnHoldingTankEjectMessage(EntityUid uid, GasCanisterComponent canister, GasCanisterHoldingTankEjectMessage args) { - if (!TryComp(uid, out var containerManager) - || !containerManager.TryGetContainer(canister.ContainerName, out var container)) - return; - - if (container.ContainedEntities.Count == 0) + if (canister.GasTankSlot.Item == null || args.Session.AttachedEntity == null) return; - _adminLogger.Add(LogType.CanisterTankEjected, LogImpact.Medium, $"Player {ToPrettyString(args.Session.AttachedEntity.GetValueOrDefault()):player} ejected tank {ToPrettyString(container.ContainedEntities[0]):tank} from {ToPrettyString(uid):canister}"); - container.Remove(container.ContainedEntities[0]); + var item = canister.GasTankSlot.Item; + _slots.TryEjectToHands(uid, canister.GasTankSlot, args.Session.AttachedEntity); + _adminLogger.Add(LogType.CanisterTankEjected, LogImpact.Medium, $"Player {ToPrettyString(args.Session.AttachedEntity.GetValueOrDefault()):player} ejected tank {ToPrettyString(item):tank} from {ToPrettyString(uid):canister}"); } private void OnCanisterChangeReleasePressure(EntityUid uid, GasCanisterComponent canister, GasCanisterChangeReleasePressureMessage args) @@ -139,12 +135,8 @@ private void OnCanisterChangeReleasePressure(EntityUid uid, GasCanisterComponent private void OnCanisterChangeReleaseValve(EntityUid uid, GasCanisterComponent canister, GasCanisterChangeReleaseValveMessage args) { var impact = LogImpact.High; - if (TryComp(uid, out var containerManager) - && containerManager.TryGetContainer(canister.ContainerName, out var container)) - { - // filling a jetpack with plasma is less important than filling a room with it - impact = container.ContainedEntities.Count != 0 ? LogImpact.Medium : LogImpact.High; - } + // filling a jetpack with plasma is less important than filling a room with it + impact = canister.GasTankSlot.HasItem ? LogImpact.Medium : LogImpact.High; var containedGasDict = new Dictionary(); var containedGasArray = Gas.GetValues(typeof(Gas)); @@ -160,7 +152,7 @@ private void OnCanisterChangeReleaseValve(EntityUid uid, GasCanisterComponent ca DirtyUI(uid, canister); } - private void OnCanisterUpdated(EntityUid uid, GasCanisterComponent canister, AtmosDeviceUpdateEvent args) + private void OnCanisterUpdated(EntityUid uid, GasCanisterComponent canister, ref AtmosDeviceUpdateEvent args) { _atmos.React(canister.Air, canister); @@ -176,18 +168,12 @@ private void OnCanisterUpdated(EntityUid uid, GasCanisterComponent canister, Atm MixContainerWithPipeNet(canister.Air, net.Air); } - ContainerManagerComponent? containerManager = null; - // Release valve is open, release gas. if (canister.ReleaseValve) { - if (!TryComp(uid, out containerManager) - || !containerManager.TryGetContainer(canister.ContainerName, out var container)) - return; - - if (container.ContainedEntities.Count > 0) + if (canister.GasTankSlot.Item != null) { - var gasTank = Comp(container.ContainedEntities[0]); + var gasTank = Comp(canister.GasTankSlot.Item.Value); _atmos.ReleaseGasTo(canister.Air, gasTank.Air, canister.ReleasePressure); } else @@ -201,7 +187,7 @@ private void OnCanisterUpdated(EntityUid uid, GasCanisterComponent canister, Atm if (MathHelper.CloseToPercent(canister.Air.Pressure, canister.LastPressure)) return; - DirtyUI(uid, canister, nodeContainer, containerManager); + DirtyUI(uid, canister, nodeContainer); canister.LastPressure = canister.Air.Pressure; @@ -252,28 +238,22 @@ private void OnCanisterInteractHand(EntityUid uid, GasCanisterComponent componen args.Handled = true; } - private void OnCanisterInteractUsing(EntityUid uid, GasCanisterComponent component, InteractUsingEvent args) + private void OnCanisterInsertAttempt(EntityUid uid, GasCanisterComponent component, ref ItemSlotInsertAttemptEvent args) { - var container = _container.EnsureContainer(uid, component.ContainerName); - - // Container full. - if (container.ContainedEntity != null) + if (args.Slot.ID != component.ContainerName || args.User == null) return; - // Check the used item is valid... - if (!TryComp(args.Used, out var gasTank) || gasTank.IsValveOpen) + if (!TryComp(args.Item, out var gasTank) || gasTank.IsValveOpen) + { + args.Cancelled = true; return; + } // Preventing inserting a tank since if its locked you cant remove it. - if (CheckLocked(uid, component, args.User)) - return; - - if (!_hands.TryDropIntoContainer(args.User, args.Used, container)) + if (!CheckLocked(uid, component, args.User.Value)) return; - _adminLogger.Add(LogType.CanisterTankInserted, LogImpact.Medium, $"Player {ToPrettyString(args.User):player} inserted tank {ToPrettyString(container.ContainedEntities[0]):tank} into {ToPrettyString(uid):canister}"); - - args.Handled = true; + args.Cancelled = true; } private void OnCanisterContainerInserted(EntityUid uid, GasCanisterComponent component, EntInsertedIntoContainerMessage args) @@ -345,10 +325,7 @@ private bool CheckLocked(EntityUid uid, GasCanisterComponent comp, EntityUid use if (TryComp(uid, out var lockComp) && lockComp.Locked) { _popup.PopupEntity(Loc.GetString("gas-canister-popup-denied"), uid, user); - if (comp.AccessDeniedSound != null) - { - _audio.PlayPvs(comp.AccessDeniedSound, uid); - } + _audio.PlayPvs(comp.AccessDeniedSound, uid); return true; } diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCondenserSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCondenserSystem.cs new file mode 100644 index 0000000000..f9ed614d9c --- /dev/null +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCondenserSystem.cs @@ -0,0 +1,73 @@ +using Content.Server.Atmos.EntitySystems; +using Content.Server.Atmos.Piping.Components; +using Content.Server.Atmos.Piping.Unary.Components; +using Content.Server.NodeContainer; +using Content.Server.NodeContainer.EntitySystems; +using Content.Server.NodeContainer.Nodes; +using Content.Server.Power.Components; +using Content.Shared.Atmos; +using JetBrains.Annotations; +using Content.Server.Power.EntitySystems; +using Content.Shared.Chemistry.EntitySystems; + +namespace Content.Server.Atmos.Piping.Unary.EntitySystems; + +[UsedImplicitly] +public sealed class GasCondenserSystem : EntitySystem +{ + [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; + [Dependency] private readonly PowerReceiverSystem _power = default!; + [Dependency] private readonly NodeContainerSystem _nodeContainer = default!; + [Dependency] private readonly SolutionContainerSystem _solution = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnCondenserUpdated); + } + + private void OnCondenserUpdated(EntityUid uid, GasCondenserComponent component, ref AtmosDeviceUpdateEvent args) + { + if (!(_power.IsPowered(uid) && TryComp(uid, out var receiver)) + || !TryComp(uid, out var nodeContainer) + || !_nodeContainer.TryGetNode(nodeContainer, component.Inlet, out PipeNode? inlet) + || !_solution.TryGetSolution(uid, component.SolutionId, out var solution)) + { + return; + } + + if (solution.AvailableVolume == 0 || inlet.Air.TotalMoles == 0) + return; + + var molesToConvert = NumberOfMolesToConvert(receiver, inlet.Air, args.dt); + var removed = inlet.Air.Remove(molesToConvert); + for (var i = 0; i < Atmospherics.TotalNumberOfGases; i++) + { + var moles = removed.Moles[i]; + if (moles <= 0) + continue; + + if (_atmosphereSystem.GetGas(i).Reagent is not {} gasReagent) + continue; + + var moleToReagentMultiplier = component.MolesToReagentMultiplier; + var amount = moles * moleToReagentMultiplier; + + if (_solution.TryAddReagent(uid, solution, gasReagent, amount, out var remaining)) + continue; + + // if we have leftover reagent, then convert it back to moles and put it back in the mixture. + inlet.Air.AdjustMoles(i, remaining.Float() / moleToReagentMultiplier); + } + } + + public float NumberOfMolesToConvert(ApcPowerReceiverComponent comp, GasMixture mix, float dt) + { + var hc = _atmosphereSystem.GetHeatCapacity(mix, true); + var alpha = 0.8f; // tuned to give us 1-ish u/second of reagent conversion + // ignores the energy needed to cool down the solution to the condensation point, but that probably adds too much difficulty and so let's not simulate that + var energy = comp.Load * dt; + return energy / (alpha * hc); + } +} diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasOutletInjectorSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasOutletInjectorSystem.cs index adde584cc3..8029a09556 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasOutletInjectorSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasOutletInjectorSystem.cs @@ -45,7 +45,7 @@ public void UpdateAppearance(EntityUid uid, GasOutletInjectorComponent component _appearance.SetData(uid, OutletInjectorVisuals.Enabled, component.Enabled, appearance); } - private void OnOutletInjectorUpdated(EntityUid uid, GasOutletInjectorComponent injector, AtmosDeviceUpdateEvent args) + private void OnOutletInjectorUpdated(EntityUid uid, GasOutletInjectorComponent injector, ref AtmosDeviceUpdateEvent args) { if (!injector.Enabled) return; @@ -73,7 +73,7 @@ private void OnOutletInjectorUpdated(EntityUid uid, GasOutletInjectorComponent i var timeDelta = args.dt; // TODO adjust ratio so that environment does not go above MaxPressure? - var ratio = MathF.Min(1f, timeDelta * injector.TransferRate / inlet.Air.Volume); + var ratio = MathF.Min(1f, timeDelta * injector.TransferRate * _atmosphereSystem.PumpSpeedup() / inlet.Air.Volume); var removed = inlet.Air.RemoveRatio(ratio); _atmosphereSystem.Merge(environment, removed); diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasPassiveVentSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasPassiveVentSystem.cs index f0a3ee777b..c8fd23d466 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasPassiveVentSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasPassiveVentSystem.cs @@ -22,7 +22,7 @@ public override void Initialize() SubscribeLocalEvent(OnPassiveVentUpdated); } - private void OnPassiveVentUpdated(EntityUid uid, GasPassiveVentComponent vent, AtmosDeviceUpdateEvent args) + private void OnPassiveVentUpdated(EntityUid uid, GasPassiveVentComponent vent, ref AtmosDeviceUpdateEvent args) { var environment = _atmosphereSystem.GetContainingMixture(uid, true, true); diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasThermoMachineSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasThermoMachineSystem.cs index 7f5f58fe4b..46e3b3c172 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasThermoMachineSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasThermoMachineSystem.cs @@ -46,7 +46,7 @@ public override void Initialize() SubscribeLocalEvent(OnPacketRecv); } - private void OnThermoMachineUpdated(EntityUid uid, GasThermoMachineComponent thermoMachine, AtmosDeviceUpdateEvent args) + private void OnThermoMachineUpdated(EntityUid uid, GasThermoMachineComponent thermoMachine, ref AtmosDeviceUpdateEvent args) { if (!(_power.IsPowered(uid) && TryComp(uid, out var receiver)) || !TryComp(uid, out var nodeContainer) @@ -80,7 +80,7 @@ private void OnThermoMachineUpdated(EntityUid uid, GasThermoMachineComponent the float dQ = thermoMachine.HeatCapacity * thermoMachine.Cp * args.dt; // Clamps the heat transferred to not overshoot - float Cin = _atmosphereSystem.GetHeatCapacity(inlet.Air); + float Cin = _atmosphereSystem.GetHeatCapacity(inlet.Air, true); float dT = targetTemp - temp; float dQLim = dT * Cin; float scale = 1f; diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs index 2c95887198..a35c6b1aa6 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs @@ -51,7 +51,7 @@ public override void Initialize() SubscribeLocalEvent(OnWeldChanged); } - private void OnGasVentPumpUpdated(EntityUid uid, GasVentPumpComponent vent, AtmosDeviceUpdateEvent args) + private void OnGasVentPumpUpdated(EntityUid uid, GasVentPumpComponent vent, ref AtmosDeviceUpdateEvent args) { //Bingo waz here if (_weldable.IsWelded(uid)) @@ -165,12 +165,12 @@ private void OnGasVentPumpUpdated(EntityUid uid, GasVentPumpComponent vent, Atmo } } - private void OnGasVentPumpLeaveAtmosphere(EntityUid uid, GasVentPumpComponent component, AtmosDeviceDisabledEvent args) + private void OnGasVentPumpLeaveAtmosphere(EntityUid uid, GasVentPumpComponent component, ref AtmosDeviceDisabledEvent args) { UpdateState(uid, component); } - private void OnGasVentPumpEnterAtmosphere(EntityUid uid, GasVentPumpComponent component, AtmosDeviceEnabledEvent args) + private void OnGasVentPumpEnterAtmosphere(EntityUid uid, GasVentPumpComponent component, ref AtmosDeviceEnabledEvent args) { UpdateState(uid, component); } diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentScrubberSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentScrubberSystem.cs index f7f13a4d33..ecf7d1d0b4 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentScrubberSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentScrubberSystem.cs @@ -45,7 +45,7 @@ public override void Initialize() SubscribeLocalEvent(OnWeldChanged); } - private void OnVentScrubberUpdated(EntityUid uid, GasVentScrubberComponent scrubber, AtmosDeviceUpdateEvent args) + private void OnVentScrubberUpdated(EntityUid uid, GasVentScrubberComponent scrubber, ref AtmosDeviceUpdateEvent args) { if (_weldable.IsWelded(uid)) { @@ -67,8 +67,7 @@ private void OnVentScrubberUpdated(EntityUid uid, GasVentScrubberComponent scrub if (xform.GridUid == null) return; - var position = _transformSystem.GetGridOrMapTilePosition(uid, xform); - + var position = _transformSystem.GetGridTilePositionOrDefault((uid,xform)); var environment = _atmosphereSystem.GetTileMixture(xform.GridUid, xform.MapUid, position, true); Scrub(timeDelta, scrubber, environment, outlet); @@ -91,7 +90,7 @@ private void OnVentScrubberEnterAtmosphere(EntityUid uid, GasVentScrubberCompone private void Scrub(float timeDelta, GasVentScrubberComponent scrubber, GasMixture? tile, PipeNode outlet) { - Scrub(timeDelta, scrubber.TransferRate, scrubber.PumpDirection, scrubber.FilterGases, tile, outlet.Air); + Scrub(timeDelta, scrubber.TransferRate*_atmosphereSystem.PumpSpeedup(), scrubber.PumpDirection, scrubber.FilterGases, tile, outlet.Air); } /// diff --git a/Content.Server/Atmos/Portable/PortableScrubberComponent.cs b/Content.Server/Atmos/Portable/PortableScrubberComponent.cs index 5cb84439b5..7ded9beb01 100644 --- a/Content.Server/Atmos/Portable/PortableScrubberComponent.cs +++ b/Content.Server/Atmos/Portable/PortableScrubberComponent.cs @@ -28,7 +28,7 @@ public sealed partial class PortableScrubberComponent : Component Gas.Plasma, Gas.Tritium, Gas.WaterVapor, - Gas.Miasma, + Gas.Ammonia, Gas.NitrousOxide, Gas.Frezon }; diff --git a/Content.Server/Atmos/Portable/PortableScrubberSystem.cs b/Content.Server/Atmos/Portable/PortableScrubberSystem.cs index a5e4793056..922943f25f 100644 --- a/Content.Server/Atmos/Portable/PortableScrubberSystem.cs +++ b/Content.Server/Atmos/Portable/PortableScrubberSystem.cs @@ -48,7 +48,7 @@ private bool IsFull(PortableScrubberComponent component) return component.Air.Pressure >= component.MaxPressure; } - private void OnDeviceUpdated(EntityUid uid, PortableScrubberComponent component, AtmosDeviceUpdateEvent args) + private void OnDeviceUpdated(EntityUid uid, PortableScrubberComponent component, ref AtmosDeviceUpdateEvent args) { if (!TryComp(uid, out AtmosDeviceComponent? device)) return; @@ -79,8 +79,7 @@ private void OnDeviceUpdated(EntityUid uid, PortableScrubberComponent component, if (xform.GridUid == null) return; - var position = _transformSystem.GetGridOrMapTilePosition(uid, xform); - + var position = _transformSystem.GetGridTilePositionOrDefault((uid,xform)); var environment = _atmosphereSystem.GetTileMixture(xform.GridUid, xform.MapUid, position, true); var running = Scrub(timeDelta, component, environment); @@ -146,7 +145,7 @@ private void OnDestroyed(EntityUid uid, PortableScrubberComponent component, Des private bool Scrub(float timeDelta, PortableScrubberComponent scrubber, GasMixture? tile) { - return _scrubberSystem.Scrub(timeDelta, scrubber.TransferRate, ScrubberPumpDirection.Scrubbing, scrubber.FilterGases, tile, scrubber.Air); + return _scrubberSystem.Scrub(timeDelta, scrubber.TransferRate * _atmosphereSystem.PumpSpeedup(), ScrubberPumpDirection.Scrubbing, scrubber.FilterGases, tile, scrubber.Air); } private void UpdateAppearance(EntityUid uid, bool isFull, bool isRunning) diff --git a/Content.Server/Atmos/Reactions/AmmoniaOxygenReaction.cs b/Content.Server/Atmos/Reactions/AmmoniaOxygenReaction.cs new file mode 100644 index 0000000000..197034ce54 --- /dev/null +++ b/Content.Server/Atmos/Reactions/AmmoniaOxygenReaction.cs @@ -0,0 +1,33 @@ +using Content.Server.Atmos.EntitySystems; +using Content.Shared.Atmos; +using JetBrains.Annotations; + +namespace Content.Server.Atmos.Reactions; + +[UsedImplicitly] +public sealed partial class AmmoniaOxygenReaction : IGasReactionEffect +{ + public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem, float heatScale) + { + var nAmmonia = mixture.GetMoles(Gas.Ammonia); + var nOxygen = mixture.GetMoles(Gas.Oxygen); + var nTotal = mixture.TotalMoles; + + // Concentration-dependent reaction rate + var fAmmonia = nAmmonia/nTotal; + var fOxygen = nOxygen/nTotal; + var rate = MathF.Pow(fAmmonia, 2) * MathF.Pow(fOxygen, 2); + + var deltaMoles = nAmmonia / Atmospherics.AmmoniaOxygenReactionRate * 2 * rate; + + if (deltaMoles <= 0 || nAmmonia - deltaMoles < 0) + return ReactionResult.NoReaction; + + mixture.AdjustMoles(Gas.Ammonia, -deltaMoles); + mixture.AdjustMoles(Gas.Oxygen, -deltaMoles); + mixture.AdjustMoles(Gas.NitrousOxide, deltaMoles / 2); + mixture.AdjustMoles(Gas.WaterVapor, deltaMoles * 1.5f); + + return ReactionResult.Reacting; + } +} diff --git a/Content.Server/Atmos/Reactions/FrezonCoolantReaction.cs b/Content.Server/Atmos/Reactions/FrezonCoolantReaction.cs index 36a0f28686..051ee8202d 100644 --- a/Content.Server/Atmos/Reactions/FrezonCoolantReaction.cs +++ b/Content.Server/Atmos/Reactions/FrezonCoolantReaction.cs @@ -10,9 +10,9 @@ namespace Content.Server.Atmos.Reactions; [UsedImplicitly] public sealed partial class FrezonCoolantReaction : IGasReactionEffect { - public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem) + public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem, float heatScale) { - var oldHeatCapacity = atmosphereSystem.GetHeatCapacity(mixture); + var oldHeatCapacity = atmosphereSystem.GetHeatCapacity(mixture, true); var temperature = mixture.Temperature; var energyModifier = 1f; @@ -45,10 +45,11 @@ public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, Atmos energyReleased = burnRate * Atmospherics.FrezonCoolEnergyReleased * energyModifier; } + energyReleased /= heatScale; // adjust energy to make sure speedup doesn't cause mega temperature rise if (energyReleased >= 0f) return ReactionResult.NoReaction; - var newHeatCapacity = atmosphereSystem.GetHeatCapacity(mixture); + var newHeatCapacity = atmosphereSystem.GetHeatCapacity(mixture, true); if (newHeatCapacity > Atmospherics.MinimumHeatCapacity) mixture.Temperature = (temperature * oldHeatCapacity + energyReleased) / newHeatCapacity; diff --git a/Content.Server/Atmos/Reactions/FrezonProductionReaction.cs b/Content.Server/Atmos/Reactions/FrezonProductionReaction.cs index 084d939e4e..4ffd9c2f5b 100644 --- a/Content.Server/Atmos/Reactions/FrezonProductionReaction.cs +++ b/Content.Server/Atmos/Reactions/FrezonProductionReaction.cs @@ -11,7 +11,7 @@ namespace Content.Server.Atmos.Reactions; [UsedImplicitly] public sealed partial class FrezonProductionReaction : IGasReactionEffect { - public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem) + public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem, float heatScale) { var initialN2 = mixture.GetMoles(Gas.Nitrogen); var initialOxy = mixture.GetMoles(Gas.Oxygen); @@ -28,7 +28,6 @@ public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, Atmos // Amount of tritium & oxygen that are reacting var tritBurned = Math.Min(oxyLimit, initialTrit); var oxyBurned = tritBurned * Atmospherics.FrezonProductionTritRatio; - var burnRatio = tritBurned / initialTrit; var oxyConversion = oxyBurned / Atmospherics.FrezonProductionConversionRate; var tritConversion = tritBurned / Atmospherics.FrezonProductionConversionRate; diff --git a/Content.Server/Atmos/Reactions/GasReactionPrototype.cs b/Content.Server/Atmos/Reactions/GasReactionPrototype.cs index 6db99d80d8..0ee29de3bf 100644 --- a/Content.Server/Atmos/Reactions/GasReactionPrototype.cs +++ b/Content.Server/Atmos/Reactions/GasReactionPrototype.cs @@ -18,7 +18,7 @@ public enum GasReaction : byte } [Prototype("gasReaction")] - public sealed class GasReactionPrototype : IPrototype + public sealed partial class GasReactionPrototype : IPrototype { [ViewVariables] [IdDataField] @@ -60,13 +60,20 @@ public sealed class GasReactionPrototype : IPrototype /// [DataField("effects")] private List _effects = new(); - public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem) + /// + /// Process all reaction effects. + /// + /// The gas mixture to react + /// The container of this gas mixture + /// The atmosphere system + /// Scaling factor that should be applied to all heat input or outputs. + public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem, float heatScale) { var result = ReactionResult.NoReaction; foreach (var effect in _effects) { - result |= effect.React(mixture, holder, atmosphereSystem); + result |= effect.React(mixture, holder, atmosphereSystem, heatScale); } return result; diff --git a/Content.Server/Atmos/Reactions/MiasmicSubsumationReaction.cs b/Content.Server/Atmos/Reactions/MiasmicSubsumationReaction.cs deleted file mode 100644 index b7dd5b7eb8..0000000000 --- a/Content.Server/Atmos/Reactions/MiasmicSubsumationReaction.cs +++ /dev/null @@ -1,25 +0,0 @@ -using Content.Server.Atmos.EntitySystems; -using Content.Shared.Atmos; -using JetBrains.Annotations; - -namespace Content.Server.Atmos.Reactions; - -/// -/// Converts frezon into miasma when the two come into contact. Does not occur at very high temperatures. -/// -[UsedImplicitly] -public sealed partial class MiasmicSubsumationReaction : IGasReactionEffect -{ - public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem) - { - var initialMiasma = mixture.GetMoles(Gas.Miasma); - var initialFrezon = mixture.GetMoles(Gas.Frezon); - - var convert = Math.Min(Math.Min(initialFrezon, initialMiasma), Atmospherics.MiasmicSubsumationMaxConversionRate); - - mixture.AdjustMoles(Gas.Miasma, convert); - mixture.AdjustMoles(Gas.Frezon, -convert); - - return ReactionResult.Reacting; - } -} diff --git a/Content.Server/Atmos/Reactions/N2ODecompositionReaction.cs b/Content.Server/Atmos/Reactions/N2ODecompositionReaction.cs new file mode 100644 index 0000000000..7fce663dc3 --- /dev/null +++ b/Content.Server/Atmos/Reactions/N2ODecompositionReaction.cs @@ -0,0 +1,28 @@ +using Content.Server.Atmos.EntitySystems; +using Content.Shared.Atmos; +using JetBrains.Annotations; + +namespace Content.Server.Atmos.Reactions; + +/// +/// Decomposes Nitrous Oxide into Nitrogen and Oxygen. +/// +[UsedImplicitly] +public sealed partial class N2ODecompositionReaction : IGasReactionEffect +{ + public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem, float heatScale) + { + var cacheN2O = mixture.GetMoles(Gas.NitrousOxide); + + var burnedFuel = cacheN2O / Atmospherics.N2ODecompositionRate; + + if (burnedFuel <= 0 || cacheN2O - burnedFuel < 0) + return ReactionResult.NoReaction; + + mixture.AdjustMoles(Gas.NitrousOxide, -burnedFuel); + mixture.AdjustMoles(Gas.Nitrogen, burnedFuel); + mixture.AdjustMoles(Gas.Oxygen, burnedFuel / 2); + + return ReactionResult.Reacting; + } +} diff --git a/Content.Server/Atmos/Reactions/PlasmaFireReaction.cs b/Content.Server/Atmos/Reactions/PlasmaFireReaction.cs index 6aae69b2f2..9adda3089c 100644 --- a/Content.Server/Atmos/Reactions/PlasmaFireReaction.cs +++ b/Content.Server/Atmos/Reactions/PlasmaFireReaction.cs @@ -8,10 +8,10 @@ namespace Content.Server.Atmos.Reactions [DataDefinition] public sealed partial class PlasmaFireReaction : IGasReactionEffect { - public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem) + public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem, float heatScale) { var energyReleased = 0f; - var oldHeatCapacity = atmosphereSystem.GetHeatCapacity(mixture); + var oldHeatCapacity = atmosphereSystem.GetHeatCapacity(mixture, true); var temperature = mixture.Temperature; var location = holder as TileAtmosphere; mixture.ReactionResults[GasReaction.Fire] = 0; @@ -22,8 +22,10 @@ public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, Atmos if (temperature > Atmospherics.PlasmaUpperTemperature) temperatureScale = 1f; else + { temperatureScale = (temperature - Atmospherics.PlasmaMinimumBurnTemperature) / (Atmospherics.PlasmaUpperTemperature - Atmospherics.PlasmaMinimumBurnTemperature); + } if (temperatureScale > 0) { @@ -56,13 +58,14 @@ public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, Atmos mixture.AdjustMoles(Gas.CarbonDioxide, plasmaBurnRate * (1.0f - supersaturation)); energyReleased += Atmospherics.FirePlasmaEnergyReleased * plasmaBurnRate; + energyReleased /= heatScale; // adjust energy to make sure speedup doesn't cause mega temperature rise mixture.ReactionResults[GasReaction.Fire] += plasmaBurnRate * (1 + oxygenBurnRate); } } if (energyReleased > 0) { - var newHeatCapacity = atmosphereSystem.GetHeatCapacity(mixture); + var newHeatCapacity = atmosphereSystem.GetHeatCapacity(mixture, true); if (newHeatCapacity > Atmospherics.MinimumHeatCapacity) mixture.Temperature = (temperature * oldHeatCapacity + energyReleased) / newHeatCapacity; } diff --git a/Content.Server/Atmos/Reactions/TritiumFireReaction.cs b/Content.Server/Atmos/Reactions/TritiumFireReaction.cs index cc58f0cf7d..c52b431fd4 100644 --- a/Content.Server/Atmos/Reactions/TritiumFireReaction.cs +++ b/Content.Server/Atmos/Reactions/TritiumFireReaction.cs @@ -8,10 +8,10 @@ namespace Content.Server.Atmos.Reactions [DataDefinition] public sealed partial class TritiumFireReaction : IGasReactionEffect { - public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem) + public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem, float heatScale) { var energyReleased = 0f; - var oldHeatCapacity = atmosphereSystem.GetHeatCapacity(mixture); + var oldHeatCapacity = atmosphereSystem.GetHeatCapacity(mixture, true); var temperature = mixture.Temperature; var location = holder as TileAtmosphere; mixture.ReactionResults[GasReaction.Fire] = 0f; @@ -47,9 +47,10 @@ public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, Atmos mixture.ReactionResults[GasReaction.Fire] += burnedFuel; } + energyReleased /= heatScale; // adjust energy to make sure speedup doesn't cause mega temperature rise if (energyReleased > 0) { - var newHeatCapacity = atmosphereSystem.GetHeatCapacity(mixture); + var newHeatCapacity = atmosphereSystem.GetHeatCapacity(mixture, true); if (newHeatCapacity > Atmospherics.MinimumHeatCapacity) mixture.Temperature = ((temperature * oldHeatCapacity + energyReleased) / newHeatCapacity); } diff --git a/Content.Server/Atmos/Reactions/WaterVaporReaction.cs b/Content.Server/Atmos/Reactions/WaterVaporReaction.cs index 75eb0291df..8db8fdbd66 100644 --- a/Content.Server/Atmos/Reactions/WaterVaporReaction.cs +++ b/Content.Server/Atmos/Reactions/WaterVaporReaction.cs @@ -17,7 +17,7 @@ public sealed partial class WaterVaporReaction : IGasReactionEffect [DataField("molesPerUnit")] public float MolesPerUnit { get; private set; } = 1; - public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem) + public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem, float heatScale) { // If any of the prototypes is invalid, we do nothing. if (string.IsNullOrEmpty(Reagent)) @@ -34,9 +34,8 @@ public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, Atmos // Remove the moles from the mixture... mixture.AdjustMoles(GasId, -MolesPerUnit); - var tileRef = tile.GridIndices.GetTileRef(tile.GridIndex); - EntitySystem.Get() - .TrySpillAt(tileRef, new Solution(Reagent, FixedPoint2.New(MolesPerUnit)), out _, sound: false); + var tileRef = atmosphereSystem.GetTileRef(tile); + atmosphereSystem.Puddle.TrySpillAt(tileRef, new Solution(Reagent, FixedPoint2.New(MolesPerUnit)), out _, sound: false); return ReactionResult.Reacting; } diff --git a/Content.Server/Atmos/Miasma/RottingSystem.cs b/Content.Server/Atmos/Rotting/RottingSystem.cs similarity index 91% rename from Content.Server/Atmos/Miasma/RottingSystem.cs rename to Content.Server/Atmos/Rotting/RottingSystem.cs index 676c9ec6e9..2d430a74ac 100644 --- a/Content.Server/Atmos/Miasma/RottingSystem.cs +++ b/Content.Server/Atmos/Rotting/RottingSystem.cs @@ -3,7 +3,7 @@ using Content.Server.Atmos.EntitySystems; using Content.Server.Body.Components; using Content.Server.Temperature.Components; -using Content.Shared.Atmos.Miasma; +using Content.Shared.Atmos.Rotting; using Content.Shared.Examine; using Content.Shared.Mobs; using Content.Shared.Mobs.Components; @@ -14,7 +14,7 @@ using Robust.Shared.Physics.Components; using Robust.Shared.Timing; -namespace Content.Server.Atmos.Miasma; +namespace Content.Server.Atmos.Rotting; public sealed class RottingSystem : EntitySystem { @@ -118,10 +118,8 @@ private void OnGibbed(EntityUid uid, RottingComponent component, BeingGibbedEven return; var molsToDump = perishable.MolsPerSecondPerUnitMass * physics.FixturesMass * (float) component.TotalRotTime.TotalSeconds; - var transform = Transform(uid); - var indices = _transform.GetGridOrMapTilePosition(uid, transform); - var tileMix = _atmosphere.GetTileMixture(transform.GridUid, transform.MapUid, indices, true); - tileMix?.AdjustMoles(Gas.Miasma, molsToDump); + var tileMix = _atmosphere.GetTileMixture(uid, excite: true); + tileMix?.AdjustMoles(Gas.Ammonia, molsToDump); } private void OnExamined(EntityUid uid, RottingComponent component, ExaminedEvent args) @@ -129,9 +127,9 @@ private void OnExamined(EntityUid uid, RottingComponent component, ExaminedEvent var stage = RotStage(uid, component); var description = stage switch { - >= 2 => "miasma-extremely-bloated", - >= 1 => "miasma-bloated", - _ => "miasma-rotting" + >= 2 => "rotting-extremely-bloated", + >= 1 => "rotting-bloated", + _ => "rotting-rotting" }; args.PushMarkup(Loc.GetString(description)); } @@ -214,9 +212,8 @@ public override void Update(float frameTime) // We need a way to get the mass of the mob alone without armor etc in the future // or just remove the mass mechanics altogether because they aren't good. var molRate = perishable.MolsPerSecondPerUnitMass * (float) rotting.RotUpdateRate.TotalSeconds; - var indices = _transform.GetGridOrMapTilePosition(uid); - var tileMix = _atmosphere.GetTileMixture(xform.GridUid, null, indices, true); - tileMix?.AdjustMoles(Gas.Miasma, molRate * physics.FixturesMass); + var tileMix = _atmosphere.GetTileMixture(uid, excite: true); + tileMix?.AdjustMoles(Gas.Ammonia, molRate * physics.FixturesMass); } } } diff --git a/Content.Server/Audio/ContentAudioSystem.cs b/Content.Server/Audio/ContentAudioSystem.cs index b1e7dcb187..b1db01141b 100644 --- a/Content.Server/Audio/ContentAudioSystem.cs +++ b/Content.Server/Audio/ContentAudioSystem.cs @@ -1,8 +1,39 @@ +using Content.Server.GameTicking.Events; using Content.Shared.Audio; +using Content.Shared.GameTicking; +using Robust.Server.Audio; +using Robust.Shared.Audio; +using Robust.Shared.Prototypes; namespace Content.Server.Audio; public sealed class ContentAudioSystem : SharedContentAudioSystem { + [Dependency] private readonly AudioSystem _serverAudio = default!; + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnRoundCleanup); + SubscribeLocalEvent(OnRoundStart); + SubscribeLocalEvent(OnProtoReload); + } + + private void OnRoundCleanup(RoundRestartCleanupEvent ev) + { + SilenceAudio(); + } + + private void OnProtoReload(PrototypesReloadedEventArgs obj) + { + if (obj.WasModified()) + _serverAudio.ReloadPresets(); + } + + private void OnRoundStart(RoundStartingEvent ev) + { + // On cleanup all entities get purged so need to ensure audio presets are still loaded + // yeah it's whacky af. + _serverAudio.ReloadPresets(); + } } diff --git a/Content.Server/Beam/BeamSystem.cs b/Content.Server/Beam/BeamSystem.cs index a9f994ed56..33f2f252d9 100644 --- a/Content.Server/Beam/BeamSystem.cs +++ b/Content.Server/Beam/BeamSystem.cs @@ -3,6 +3,8 @@ using Content.Shared.Beam; using Content.Shared.Beam.Components; using Content.Shared.Physics; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Physics; using Robust.Shared.Physics.Collision.Shapes; diff --git a/Content.Server/Bed/Sleep/SleepingSystem.cs b/Content.Server/Bed/Sleep/SleepingSystem.cs index 17fe4d5eff..4a6874bccc 100644 --- a/Content.Server/Bed/Sleep/SleepingSystem.cs +++ b/Content.Server/Bed/Sleep/SleepingSystem.cs @@ -13,6 +13,8 @@ using Content.Shared.StatusEffect; using Content.Shared.Stunnable; 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; diff --git a/Content.Server/Bible/BibleSystem.cs b/Content.Server/Bible/BibleSystem.cs index b3b41e2f32..5c153bb464 100644 --- a/Content.Server/Bible/BibleSystem.cs +++ b/Content.Server/Bible/BibleSystem.cs @@ -15,6 +15,7 @@ using Content.Shared.Timing; using Content.Shared.Verbs; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; using Robust.Shared.Random; @@ -29,6 +30,7 @@ public sealed class BibleSystem : EntitySystem [Dependency] private readonly MobStateSystem _mobStateSystem = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly UseDelaySystem _delay = default!; public override void Initialize() @@ -80,8 +82,8 @@ public override void Update(float frameTime) summonableComp.Summon = null; } summonableComp.AlreadySummoned = false; - _popupSystem.PopupEntity(Loc.GetString("bible-summon-respawn-ready", ("book", uid)), uid, PopupType.Medium); - SoundSystem.Play("/Audio/Effects/radpulse9.ogg", Filter.Pvs(uid), uid, AudioParams.Default.WithVolume(-4f)); + _popupSystem.PopupEntity(Loc.GetString("bible-summon-respawn-ready", ("book", summonableComp.Owner)), summonableComp.Owner, PopupType.Medium); + _audio.PlayPvs("/Audio/Effects/radpulse9.ogg", summonableComp.Owner, AudioParams.Default.WithVolume(-4f)); // Clean up the accumulator and respawn tracking component summonableComp.Accumulator = 0; _remQueue.Enqueue(uid); @@ -107,7 +109,7 @@ private void OnAfterInteract(EntityUid uid, BibleComponent component, AfterInter { _popupSystem.PopupEntity(Loc.GetString("bible-sizzle"), args.User, args.User); - SoundSystem.Play(component.SizzleSoundPath.GetSound(), Filter.Pvs(args.User), args.User); + _audio.PlayPvs(component.SizzleSoundPath, args.User); _damageableSystem.TryChangeDamage(args.User, component.DamageOnUntrainedUse, true, origin: uid); _delay.BeginDelay(uid, delay); @@ -125,7 +127,7 @@ private void OnAfterInteract(EntityUid uid, BibleComponent component, AfterInter var selfFailMessage = Loc.GetString(component.LocPrefix + "-heal-fail-self", ("target", Identity.Entity(args.Target.Value, EntityManager)),("bible", uid)); _popupSystem.PopupEntity(selfFailMessage, args.User, args.User, PopupType.MediumCaution); - SoundSystem.Play("/Audio/Effects/hit_kick.ogg", Filter.Pvs(args.Target.Value), args.User); + _audio.PlayPvs("/Audio/Effects/hit_kick.ogg", args.User); _damageableSystem.TryChangeDamage(args.Target.Value, component.DamageOnFail, true, origin: uid); _delay.BeginDelay(uid, delay); return; @@ -149,7 +151,7 @@ private void OnAfterInteract(EntityUid uid, BibleComponent component, AfterInter var selfMessage = Loc.GetString(component.LocPrefix + "-heal-success-self", ("target", Identity.Entity(args.Target.Value, EntityManager)),("bible", uid)); _popupSystem.PopupEntity(selfMessage, args.User, args.User, PopupType.Large); - SoundSystem.Play(component.HealSoundPath.GetSound(), Filter.Pvs(args.Target.Value), args.User); + _audio.PlayPvs(component.HealSoundPath, args.User); _delay.BeginDelay(uid, delay); } } diff --git a/Content.Server/Body/Systems/BloodstreamSystem.cs b/Content.Server/Body/Systems/BloodstreamSystem.cs index 39403288e9..cb83625615 100644 --- a/Content.Server/Body/Systems/BloodstreamSystem.cs +++ b/Content.Server/Body/Systems/BloodstreamSystem.cs @@ -1,7 +1,6 @@ using Content.Server.Body.Components; using Content.Server.Chemistry.ReactionEffects; using Content.Server.Fluids.EntitySystems; -using Content.Server.Forensics; using Content.Server.HealthExaminable; using Content.Server.Popups; using Content.Shared.Alert; @@ -10,16 +9,20 @@ using Content.Shared.Chemistry.Reaction; using Content.Shared.Damage; using Content.Shared.Damage.Prototypes; +using Content.Shared.Drunk; using Content.Shared.FixedPoint; using Content.Shared.IdentityManagement; -using Content.Shared.Popups; -using Content.Shared.Drunk; using Content.Shared.Mobs.Systems; +using Content.Shared.Popups; using Content.Shared.Rejuvenate; +using Content.Shared.Speech.EntitySystems; using Robust.Server.GameObjects; using Robust.Shared.Prototypes; using Robust.Shared.Random; using Content.Shared.Speech.EntitySystems; +using Robust.Server.Audio; +using Robust.Shared.GameObjects; +using Content.Server.Forensics; namespace Content.Server.Body.Systems; @@ -36,6 +39,7 @@ public sealed class BloodstreamSystem : EntitySystem [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; [Dependency] private readonly SharedStutteringSystem _stutteringSystem = default!; [Dependency] private readonly AlertsSystem _alertsSystem = default!; + [Dependency] private readonly ForensicsSystem _forensicsSystem = default!; public override void Initialize() { @@ -114,7 +118,7 @@ public override void Update(float frameTime) // bloodloss damage is based on the base value, and modified by how low your blood level is. var amt = bloodstream.BloodlossDamage / (0.1f + bloodPercentage); - _damageableSystem.TryChangeDamage(uid, amt, true, false); + _damageableSystem.TryChangeDamage(uid, amt, false, false); // Apply dizziness as a symptom of bloodloss. // The effect is applied in a way that it will never be cleared without being healthy. @@ -320,11 +324,7 @@ public bool TryModifyBloodLevel(EntityUid uid, FixedPoint2 amount, BloodstreamCo component.BloodTemporarySolution.AddSolution(temp, _prototypeManager); if (_puddleSystem.TrySpillAt(uid, component.BloodTemporarySolution, out var puddleUid, false)) { - if (TryComp(uid, out var dna)) - { - var comp = EnsureComp(puddleUid); - comp.DNAs.Add(dna.DNA); - } + _forensicsSystem.TransferDna(puddleUid, uid, false); } component.BloodTemporarySolution.RemoveAllSolution(); @@ -376,11 +376,7 @@ public void SpillAllSolutions(EntityUid uid, BloodstreamComponent? component = n if (_puddleSystem.TrySpillAt(uid, tempSol, out var puddleUid)) { - if (TryComp(uid, out var dna)) - { - var comp = EnsureComp(puddleUid); - comp.DNAs.Add(dna.DNA); - } + _forensicsSystem.TransferDna(puddleUid, uid, false); } } diff --git a/Content.Server/Body/Systems/BodySystem.cs b/Content.Server/Body/Systems/BodySystem.cs index 242b02d78c..763e53de00 100644 --- a/Content.Server/Body/Systems/BodySystem.cs +++ b/Content.Server/Body/Systems/BodySystem.cs @@ -15,6 +15,7 @@ using Robust.Shared.Random; using Robust.Shared.Timing; using System.Numerics; +using Robust.Shared.Audio.Systems; namespace Content.Server.Body.Systems; @@ -129,7 +130,7 @@ public override HashSet GibBody(EntityUid bodyId, bool gibOrgans = fa var filter = Filter.Pvs(bodyId, entityManager: EntityManager); var audio = AudioParams.Default.WithVariation(0.025f); - _audio.Play(body.GibSound, filter, coordinates, true, audio); + _audio.PlayStatic(body.GibSound, filter, coordinates, true, audio); foreach (var entity in gibs) { diff --git a/Content.Server/Body/Systems/InternalsSystem.cs b/Content.Server/Body/Systems/InternalsSystem.cs index 17a6544976..b96e108968 100644 --- a/Content.Server/Body/Systems/InternalsSystem.cs +++ b/Content.Server/Body/Systems/InternalsSystem.cs @@ -6,6 +6,7 @@ using Content.Shared.Alert; using Content.Shared.Atmos; using Content.Shared.DoAfter; +using Content.Shared.Hands.Components; using Content.Shared.Internals; using Content.Shared.Inventory; using Content.Shared.Verbs; @@ -26,6 +27,8 @@ public sealed class InternalsSystem : EntitySystem [Dependency] private readonly InventorySystem _inventory = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; + public const SlotFlags InventorySlots = SlotFlags.POCKET | SlotFlags.BELT; + public override void Initialize() { base.Initialize(); @@ -81,7 +84,7 @@ public void ToggleInternals(EntityUid uid, EntityUid user, bool force, Internals return; } - var tank = FindBestGasTank(uid, internals); + var tank = FindBestGasTank(uid); if (tank == null) { @@ -224,59 +227,35 @@ private short GetSeverity(InternalsComponent component) return 1; } - public Entity? FindBestGasTank(EntityUid internalsOwner, InternalsComponent component) + public Entity? FindBestGasTank(Entity user) { // Prioritise // 1. back equipped tanks // 2. exo-slot tanks // 3. in-hand tanks // 4. pocket/belt tanks - InventoryComponent? inventory = null; - ContainerManagerComponent? containerManager = null; - if (_inventory.TryGetSlotEntity(internalsOwner, "back", out var backEntity, inventory, containerManager) && + if (!Resolve(user.Owner, ref user.Comp1, ref user.Comp2, ref user.Comp3)) + return null; + + if (_inventory.TryGetSlotEntity(user.Owner, "back", out var backEntity, user.Comp2, user.Comp3) && TryComp(backEntity, out var backGasTank) && _gasTank.CanConnectToInternals(backGasTank)) { return (backEntity.Value, backGasTank); } - if (_inventory.TryGetSlotEntity(internalsOwner, "suitstorage", out var entity, inventory, containerManager) && + if (_inventory.TryGetSlotEntity(user.Owner, "suitstorage", out var entity, user.Comp2, user.Comp3) && TryComp(entity, out var gasTank) && _gasTank.CanConnectToInternals(gasTank)) { return (entity.Value, gasTank); } - var tanks = new List>(); - - foreach (var hand in _hands.EnumerateHands(internalsOwner)) - { - if (TryComp(hand.HeldEntity, out gasTank) && _gasTank.CanConnectToInternals(gasTank)) - tanks.Add((hand.HeldEntity.Value, gasTank)); - } - - if (tanks.Count > 0) + foreach (var item in _inventory.GetHandOrInventoryEntities((user.Owner, user.Comp1, user.Comp2))) { - tanks.Sort((x, y) => y.Comp.Air.TotalMoles.CompareTo(x.Comp.Air.TotalMoles)); - return tanks[0]; - } - - if (Resolve(internalsOwner, ref inventory, false)) - { - var enumerator = new InventorySystem.ContainerSlotEnumerator(internalsOwner, inventory.TemplateId, _protoManager, _inventory, SlotFlags.POCKET | SlotFlags.BELT); - - while (enumerator.MoveNext(out var container)) - { - if (TryComp(container.ContainedEntity, out gasTank) && _gasTank.CanConnectToInternals(gasTank)) - tanks.Add((container.ContainedEntity.Value, gasTank)); - } - - if (tanks.Count > 0) - { - tanks.Sort((x, y) => y.Comp.Air.TotalMoles.CompareTo(x.Comp.Air.TotalMoles)); - return tanks[0]; - } + if (TryComp(item, out gasTank) && _gasTank.CanConnectToInternals(gasTank)) + return (item, gasTank); } return null; diff --git a/Content.Server/Body/Systems/LungSystem.cs b/Content.Server/Body/Systems/LungSystem.cs index 301cf14311..3aef2486e7 100644 --- a/Content.Server/Body/Systems/LungSystem.cs +++ b/Content.Server/Body/Systems/LungSystem.cs @@ -3,12 +3,14 @@ using Content.Server.Body.Components; using Content.Shared.Atmos; using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Clothing; using Content.Shared.Inventory.Events; namespace Content.Server.Body.Systems; public sealed class LungSystem : EntitySystem { + [Dependency] private readonly AtmosphereSystem _atmos = default!; [Dependency] private readonly InternalsSystem _internals = default!; [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; @@ -21,6 +23,7 @@ public override void Initialize() SubscribeLocalEvent(OnComponentInit); SubscribeLocalEvent(OnGotEquipped); SubscribeLocalEvent(OnGotUnequipped); + SubscribeLocalEvent(OnMaskToggled); } private void OnGotUnequipped(EntityUid uid, BreathToolComponent component, GotUnequippedEvent args) @@ -31,7 +34,7 @@ private void OnGotUnequipped(EntityUid uid, BreathToolComponent component, GotUn private void OnGotEquipped(EntityUid uid, BreathToolComponent component, GotEquippedEvent args) { - if ((args.SlotFlags & component.AllowedSlots) != component.AllowedSlots) return; + if ((args.SlotFlags & component.AllowedSlots) == 0) return; component.IsFunctional = true; if (TryComp(args.Equipee, out InternalsComponent? internals)) @@ -48,6 +51,24 @@ private void OnComponentInit(EntityUid uid, LungComponent component, ComponentIn component.LungSolution.CanReact = false; // No dexalin lungs } + private void OnMaskToggled(Entity ent, ref ItemMaskToggledEvent args) + { + if (args.IsToggled || args.IsEquip) + { + _atmos.DisconnectInternals(ent.Comp); + } + else + { + ent.Comp.IsFunctional = true; + + if (TryComp(args.Wearer, out InternalsComponent? internals)) + { + ent.Comp.ConnectedInternalsEntity = args.Wearer; + _internals.ConnectBreathTool((args.Wearer, internals), ent); + } + } + } + public void GasToReagent(EntityUid uid, LungComponent lung) { foreach (var gas in Enum.GetValues()) diff --git a/Content.Server/Body/Systems/RespiratorSystem.cs b/Content.Server/Body/Systems/RespiratorSystem.cs index 58f803acdc..3fa8f59a1d 100644 --- a/Content.Server/Body/Systems/RespiratorSystem.cs +++ b/Content.Server/Body/Systems/RespiratorSystem.cs @@ -160,7 +160,7 @@ private void TakeSuffocationDamage(EntityUid uid, RespiratorComponent respirator _alertsSystem.ShowAlert(uid, AlertType.LowOxygen); } - _damageableSys.TryChangeDamage(uid, respirator.Damage, true, false); + _damageableSys.TryChangeDamage(uid, respirator.Damage, false, false); } private void StopSuffocation(EntityUid uid, RespiratorComponent respirator) @@ -170,7 +170,7 @@ private void StopSuffocation(EntityUid uid, RespiratorComponent respirator) _alertsSystem.ClearAlert(uid, AlertType.LowOxygen); - _damageableSys.TryChangeDamage(uid, respirator.DamageRecovery, true); + _damageableSys.TryChangeDamage(uid, respirator.DamageRecovery); } public void UpdateSaturation(EntityUid uid, float amount, diff --git a/Content.Server/Botany/Systems/MutationSystem.cs b/Content.Server/Botany/Systems/MutationSystem.cs index 672139fbca..cfa944a221 100644 --- a/Content.Server/Botany/Systems/MutationSystem.cs +++ b/Content.Server/Botany/Systems/MutationSystem.cs @@ -1,5 +1,7 @@ using Robust.Shared.Prototypes; using Robust.Shared.Random; +using Content.Shared.Random; +using Content.Shared.Random.Helpers; using Content.Shared.Chemistry.Reagent; using System.Linq; using Content.Shared.Atmos; @@ -11,11 +13,12 @@ public sealed class MutationSystem : EntitySystem { [Dependency] private readonly IRobustRandom _robustRandom = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - private List _allChemicals = default!; + private WeightedRandomFillSolutionPrototype _randomChems = default!; + public override void Initialize() { - _allChemicals = _prototypeManager.EnumeratePrototypes().ToList(); + _randomChems = _prototypeManager.Index("RandomPickBotanyReagent"); } /// @@ -37,7 +40,7 @@ public void MutateSeed(ref SeedData seed, float severity) } // Add up everything in the bits column and put the number here. - const int totalbits = 270; + const int totalbits = 275; // Tolerances (55) MutateFloat(ref seed.NutrientConsumption , 0.05f, 1.2f, 5, totalbits, severity); @@ -81,10 +84,10 @@ public void MutateSeed(ref SeedData seed, float severity) MutateGasses(ref seed.ConsumeGasses, 0.01f, 0.5f, 1, totalbits, severity); // Chems (20) - MutateChemicals(ref seed.Chemicals, 5, 20, totalbits, severity); + MutateChemicals(ref seed.Chemicals, 20, totalbits, severity); - // Species (5) - MutateSpecies(ref seed, 5, totalbits, severity); + // Species (10) + MutateSpecies(ref seed, 10, totalbits, severity); } public SeedData Cross(SeedData a, SeedData b) @@ -246,7 +249,7 @@ private void MutateGasses(ref Dictionary gasses, float min, float ma } } - private void MutateChemicals(ref Dictionary chemicals, int max, int bits, int totalbits, float mult) + private void MutateChemicals(ref Dictionary chemicals, int bits, int totalbits, float mult) { float probModify = mult * bits / totalbits; probModify = Math.Clamp(probModify, 0, 1); @@ -254,11 +257,11 @@ private void MutateChemicals(ref Dictionary chemicals, return; // Add a random amount of a random chemical to this set of chemicals - ReagentPrototype selectedChemical = _robustRandom.Pick(_allChemicals); - if (selectedChemical != null) + if (_randomChems != null) { - string chemicalId = selectedChemical.ID; - int amount = _robustRandom.Next(1, max); + var pick = _randomChems.Pick(_robustRandom); + string chemicalId = pick.reagent; + int amount = _robustRandom.Next(1, ((int)pick.quantity)); SeedChemQuantity seedChemQuantity = new SeedChemQuantity(); if (chemicals.ContainsKey(chemicalId)) { diff --git a/Content.Server/Botany/Systems/PlantHolderSystem.cs b/Content.Server/Botany/Systems/PlantHolderSystem.cs index 9991edd230..027ca9b038 100644 --- a/Content.Server/Botany/Systems/PlantHolderSystem.cs +++ b/Content.Server/Botany/Systems/PlantHolderSystem.cs @@ -19,6 +19,7 @@ using Content.Shared.Tag; using Robust.Server.GameObjects; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; @@ -441,12 +442,14 @@ public void Update(EntityUid uid, PlantHolderComponent? component = null) component.Health -= 6 * healthMod; } - // Make sure the plant is not starving. - if (_random.Prob(0.35f)) + // Prevents the plant from aging when lacking resources. + // Limits the effect on aging so that when resources are added, the plant starts growing in a reasonable amount of time. + if (component.SkipAging < 10) { + // Make sure the plant is not starving. if (component.NutritionLevel > 5) { - component.Health += healthMod; + component.Health += Convert.ToInt32(_random.Prob(0.35f)) * healthMod; } else { @@ -454,16 +457,10 @@ public void Update(EntityUid uid, PlantHolderComponent? component = null) component.Health -= healthMod; } - if (component.DrawWarnings) - component.UpdateSpriteAfterUpdate = true; - } - - // Make sure the plant is not thirsty. - if (_random.Prob(0.35f)) - { + // Make sure the plant is not thirsty. if (component.WaterLevel > 10) { - component.Health += healthMod; + component.Health += Convert.ToInt32(_random.Prob(0.35f)) * healthMod; } else { diff --git a/Content.Server/CardboardBox/CardboardBoxSystem.cs b/Content.Server/CardboardBox/CardboardBoxSystem.cs index df9743a21a..b9c9427d5c 100644 --- a/Content.Server/CardboardBox/CardboardBoxSystem.cs +++ b/Content.Server/CardboardBox/CardboardBoxSystem.cs @@ -1,5 +1,6 @@ using Content.Server.Storage.Components; using Content.Server.Storage.EntitySystems; +using Content.Shared.Access.Components; using Content.Shared.CardboardBox; using Content.Shared.CardboardBox.Components; using Content.Shared.Damage; @@ -10,6 +11,8 @@ using Content.Shared.Stealth.Components; using Content.Shared.Storage.Components; using Robust.Server.GameObjects; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Player; using Robust.Shared.Timing; @@ -31,7 +34,8 @@ public override void Initialize() SubscribeLocalEvent(AfterStorageOpen); SubscribeLocalEvent(BeforeStorageOpen); SubscribeLocalEvent(AfterStorageClosed); - SubscribeLocalEvent(OnInteracted); + SubscribeLocalEvent(OnGetAdditionalAccess); + SubscribeLocalEvent(OnInteracted); SubscribeLocalEvent(OnNoHandInteracted); SubscribeLocalEvent(OnEntInserted); SubscribeLocalEvent(OnEntRemoved); @@ -39,19 +43,19 @@ public override void Initialize() SubscribeLocalEvent(OnDamage); } - private void OnInteracted(EntityUid uid, CardboardBoxComponent component, ActivateInWorldEvent args) + private void OnInteracted(EntityUid uid, CardboardBoxComponent component, ActivateInWorldEvent args) { - if (!TryComp(uid, out var box)) + if (!TryComp(uid, out var box)) return; args.Handled = true; _storage.ToggleOpen(args.User, uid, box); - if (box.Contents.Contains(args.User) && !box.Open) - { - _mover.SetRelay(args.User, uid); - component.Mover = args.User; - } + if (box.Contents.Contains(args.User) && !box.Open) + { + _mover.SetRelay(args.User, uid); + component.Mover = args.User; + } } private void OnNoHandInteracted(EntityUid uid, CardboardBoxComponent component, InteractedNoHandEvent args) @@ -63,10 +67,17 @@ private void OnNoHandInteracted(EntityUid uid, CardboardBoxComponent component, _storage.OpenStorage(uid); } + private void OnGetAdditionalAccess(EntityUid uid, CardboardBoxComponent component, ref GetAdditionalAccessEvent args) + { + if (component.Mover == null) + return; + args.Entities.Add(component.Mover.Value); + } + private void BeforeStorageOpen(EntityUid uid, CardboardBoxComponent component, ref StorageBeforeOpenEvent args) { - if (component.Quiet) - return; + if (component.Quiet) + return; //Play effect & sound if (component.Mover != null) @@ -113,7 +124,7 @@ private void OnEntInserted(EntityUid uid, CardboardBoxComponent component, EntIn if (component.Mover == null) { _mover.SetRelay(args.Entity, uid); - component.Mover = args.Entity; + component.Mover = args.Entity; } } diff --git a/Content.Server/Cargo/Components/StationCargoBountyDatabaseComponent.cs b/Content.Server/Cargo/Components/StationCargoBountyDatabaseComponent.cs index d94c2995e3..68517ea144 100644 --- a/Content.Server/Cargo/Components/StationCargoBountyDatabaseComponent.cs +++ b/Content.Server/Cargo/Components/StationCargoBountyDatabaseComponent.cs @@ -33,8 +33,15 @@ public sealed partial class StationCargoBountyDatabaseComponent : Component public float MinBountyTime = 600f; /// - /// The maxmium amount of time the bounty lasts before being removed. + /// The maximum amount of time the bounty lasts before being removed. /// [DataField("maxBountyTime"), ViewVariables(VVAccess.ReadWrite)] public float MaxBountyTime = 905f; + + /// + /// A list of bounty IDs that have been checked this tick. + /// Used to prevent multiplying bounty prices. + /// + [DataField] + public HashSet CheckedBounties = new(); } diff --git a/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs b/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs index be8f54dfee..f502b7f92f 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs @@ -89,18 +89,24 @@ private void OnGetBountyPrice(EntityUid uid, CargoBountyLabelComponent component if (!_container.TryGetContainingContainer(uid, out var container) || container.ID != LabelSystem.ContainerName) return; - if (_station.GetOwningStation(uid) is not { } station) + if (_station.GetOwningStation(uid) is not { } station || !TryComp(station, out var database)) + return; + + if (database.CheckedBounties.Contains(component.Id)) return; - if (!TryGetBountyFromId(station, component.Id, out var bounty)) + if (!TryGetBountyFromId(station, component.Id, out var bounty, database)) return; - if (!_protoMan.TryIndex(bounty.Value.Bounty, out var bountyProtoype) ||!IsBountyComplete(container.Owner, bountyProtoype)) + if (!_protoMan.TryIndex(bounty.Value.Bounty, out var bountyPrototype) || + !IsBountyComplete(container.Owner, bountyPrototype)) return; + + database.CheckedBounties.Add(component.Id); args.Handled = true; component.Calculating = true; - args.Price = bountyProtoype.Reward - _pricing.GetPrice(container.Owner); + args.Price = bountyPrototype.Reward - _pricing.GetPrice(container.Owner); component.Calculating = false; } @@ -329,6 +335,7 @@ private void UpdateBounty() var query = EntityQueryEnumerator(); while (query.MoveNext(out var uid, out var bountyDatabase)) { + bountyDatabase.CheckedBounties.Clear(); var bounties = new ValueList(bountyDatabase.Bounties); foreach (var bounty in bounties) { diff --git a/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs b/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs index cbe7b7078d..2b396095af 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs @@ -292,7 +292,7 @@ private bool CanSell(EntityUid uid, TransformComponent xform) var children = xform.ChildEnumerator; while (children.MoveNext(out var child)) { - if (!CanSell(child.Value, _xformQuery.GetComponent(child.Value))) + if (!CanSell(child, _xformQuery.GetComponent(child))) return false; } diff --git a/Content.Server/Cargo/Systems/CargoSystem.cs b/Content.Server/Cargo/Systems/CargoSystem.cs index 32b63f7105..51cfc9791c 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.cs @@ -13,6 +13,8 @@ using Content.Shared.Mobs.Components; using JetBrains.Annotations; using Robust.Server.GameObjects; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; using Robust.Shared.Map; using Robust.Shared.Prototypes; diff --git a/Content.Server/Cargo/Systems/PricingSystem.cs b/Content.Server/Cargo/Systems/PricingSystem.cs index 509e99a28a..5bbe1e5a6d 100644 --- a/Content.Server/Cargo/Systems/PricingSystem.cs +++ b/Content.Server/Cargo/Systems/PricingSystem.cs @@ -342,8 +342,8 @@ public double AppraiseGrid(EntityUid grid, Func? predicate = nu { var xform = Transform(grid); var price = 0.0; - - foreach (var child in xform.ChildEntities) + var enumerator = xform.ChildEnumerator; + while (enumerator.MoveNext(out var child)) { if (predicate is null || predicate(child)) { diff --git a/Content.Server/CartridgeLoader/Cartridges/NetProbeCartridgeSystem.cs b/Content.Server/CartridgeLoader/Cartridges/NetProbeCartridgeSystem.cs index b115e658bb..f01be1fc71 100644 --- a/Content.Server/CartridgeLoader/Cartridges/NetProbeCartridgeSystem.cs +++ b/Content.Server/CartridgeLoader/Cartridges/NetProbeCartridgeSystem.cs @@ -4,6 +4,7 @@ using Content.Shared.CartridgeLoader.Cartridges; using Content.Shared.Popups; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; using Robust.Shared.Random; diff --git a/Content.Server/Chat/AnnounceOnSpawnComponent.cs b/Content.Server/Chat/AnnounceOnSpawnComponent.cs new file mode 100644 index 0000000000..ad7c558ef4 --- /dev/null +++ b/Content.Server/Chat/AnnounceOnSpawnComponent.cs @@ -0,0 +1,36 @@ +using Content.Server.Chat.Systems; +using Robust.Shared.Audio; +using Robust.Shared.Maths; + +namespace Content.Server.Chat; + +/// +/// Dispatches an announcement to everyone when the entity is mapinit'd. +/// +[RegisterComponent, Access(typeof(AnnounceOnSpawnSystem))] +public sealed partial class AnnounceOnSpawnComponent : Component +{ + /// + /// Locale id of the announcement message. + /// + [DataField(required: true)] + public LocId Message = string.Empty; + + /// + /// Locale id of the announcement's sender, defaults to Central Command. + /// + [DataField] + public LocId? Sender; + + /// + /// Sound override for the announcement. + /// + [DataField] + public SoundSpecifier? Sound; + + /// + /// Color override for the announcement. + /// + [DataField] + public Color? Color; +} diff --git a/Content.Server/Chat/ChatUser.cs b/Content.Server/Chat/ChatUser.cs new file mode 100644 index 0000000000..9b63dbc42c --- /dev/null +++ b/Content.Server/Chat/ChatUser.cs @@ -0,0 +1,34 @@ +using Content.Shared.Chat; + +namespace Content.Server.Chat; + +public sealed class ChatUser +{ + /// + /// The unique key associated with this chat user, starting from 1 and incremented. + /// Used when the server sends . + /// Used on the client to delete messages sent by this user when receiving + /// . + /// + public readonly int Key; + + /// + /// All entities that this chat user was attached to while sending chat messages. + /// Sent to the client to delete messages sent by those entities when receiving + /// . + /// + public readonly HashSet Entities = new(); + + public ChatUser(int key) + { + Key = key; + } + + public void AddEntity(NetEntity entity) + { + if (!entity.Valid) + return; + + Entities.Add(entity); + } +} diff --git a/Content.Server/Chat/Managers/ChatManager.RateLimit.cs b/Content.Server/Chat/Managers/ChatManager.RateLimit.cs new file mode 100644 index 0000000000..cf87ab6322 --- /dev/null +++ b/Content.Server/Chat/Managers/ChatManager.RateLimit.cs @@ -0,0 +1,84 @@ +using System.Runtime.InteropServices; +using Content.Shared.CCVar; +using Content.Shared.Database; +using Robust.Shared.Enums; +using Robust.Shared.Player; +using Robust.Shared.Timing; + +namespace Content.Server.Chat.Managers; + +internal sealed partial class ChatManager +{ + private readonly Dictionary _rateLimitData = new(); + + public bool HandleRateLimit(ICommonSession player) + { + ref var datum = ref CollectionsMarshal.GetValueRefOrAddDefault(_rateLimitData, player, out _); + var time = _gameTiming.RealTime; + if (datum.CountExpires < time) + { + // Period expired, reset it. + var periodLength = _configurationManager.GetCVar(CCVars.ChatRateLimitPeriod); + datum.CountExpires = time + TimeSpan.FromSeconds(periodLength); + datum.Count = 0; + datum.Announced = false; + } + + var maxCount = _configurationManager.GetCVar(CCVars.ChatRateLimitCount); + datum.Count += 1; + + if (datum.Count <= maxCount) + return true; + + // Breached rate limits, inform admins if configured. + if (_configurationManager.GetCVar(CCVars.ChatRateLimitAnnounceAdmins)) + { + if (datum.NextAdminAnnounce < time) + { + SendAdminAlert(Loc.GetString("chat-manager-rate-limit-admin-announcement", ("player", player.Name))); + var delay = _configurationManager.GetCVar(CCVars.ChatRateLimitAnnounceAdminsDelay); + datum.NextAdminAnnounce = time + TimeSpan.FromSeconds(delay); + } + } + + if (!datum.Announced) + { + DispatchServerMessage(player, Loc.GetString("chat-manager-rate-limited"), suppressLog: true); + _adminLogger.Add(LogType.ChatRateLimited, LogImpact.Medium, $"Player {player} breached chat rate limits"); + + datum.Announced = true; + } + + return false; + } + + private void PlayerStatusChanged(object? sender, SessionStatusEventArgs e) + { + if (e.NewStatus == SessionStatus.Disconnected) + _rateLimitData.Remove(e.Session); + } + + private struct RateLimitDatum + { + /// + /// Time stamp (relative to ) this rate limit period will expire at. + /// + public TimeSpan CountExpires; + + /// + /// How many messages have been sent in the current rate limit period. + /// + public int Count; + + /// + /// Have we announced to the player that they've been blocked in this rate limit period? + /// + public bool Announced; + + /// + /// Time stamp (relative to ) of the + /// next time we can send an announcement to admins about rate limit breach. + /// + public TimeSpan NextAdminAnnounce; + } +} diff --git a/Content.Server/Chat/Managers/ChatManager.cs b/Content.Server/Chat/Managers/ChatManager.cs index 59a9d305bd..b28fd88186 100644 --- a/Content.Server/Chat/Managers/ChatManager.cs +++ b/Content.Server/Chat/Managers/ChatManager.cs @@ -1,3 +1,4 @@ +using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Runtime.InteropServices; using Content.Server.Administration.Logs; @@ -10,10 +11,12 @@ using Content.Shared.Chat; using Content.Shared.Database; using Content.Shared.Mind; +using Robust.Server.Player; using Robust.Shared.Configuration; using Robust.Shared.Network; using Robust.Shared.Player; using Robust.Shared.Replays; +using Robust.Shared.Timing; using Robust.Shared.Utility; namespace Content.Server.Chat.Managers @@ -21,7 +24,7 @@ namespace Content.Server.Chat.Managers /// /// Dispatches chat messages to clients. /// - internal sealed class ChatManager : IChatManager + internal sealed partial class ChatManager : IChatManager { private static readonly Dictionary PatronOocColors = new() { @@ -40,6 +43,8 @@ internal sealed class ChatManager : IChatManager [Dependency] private readonly IConfigurationManager _configurationManager = default!; [Dependency] private readonly INetConfigurationManager _netConfigManager = default!; [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; /// /// The maximum length a player-sent message can be sent @@ -49,8 +54,7 @@ internal sealed class ChatManager : IChatManager private bool _oocEnabled = true; private bool _adminOocEnabled = true; - public Dictionary SenderKeys { get; } = new(); - public Dictionary> SenderEntities { get; } = new(); + private readonly Dictionary _players = new(); public void Initialize() { @@ -59,6 +63,8 @@ public void Initialize() _configurationManager.OnValueChanged(CCVars.OocEnabled, OnOocEnabledChanged, true); _configurationManager.OnValueChanged(CCVars.AdminOocEnabled, OnAdminOocEnabledChanged, true); + + _playerManager.PlayerStatusChanged += PlayerStatusChanged; } private void OnOocEnabledChanged(bool val) @@ -79,13 +85,26 @@ private void OnAdminOocEnabledChanged(bool val) public void DeleteMessagesBy(ICommonSession player) { - var key = SenderKeys.GetValueOrDefault(player); - var entities = SenderEntities.GetValueOrDefault(player) ?? new HashSet(); - var msg = new MsgDeleteChatMessagesBy { Key = key, Entities = entities }; + if (!_players.TryGetValue(player.UserId, out var user)) + return; + var msg = new MsgDeleteChatMessagesBy { Key = user.Key, Entities = user.Entities }; _netManager.ServerSendToAll(msg); } + [return: NotNullIfNotNull(nameof(author))] + public ChatUser? EnsurePlayer(NetUserId? author) + { + if (author == null) + return null; + + ref var user = ref CollectionsMarshal.GetValueRefOrAddDefault(_players, author.Value, out var exists); + if (!exists || user == null) + user = new ChatUser(_players.Count); + + return user; + } + #region Server Announcements public void DispatchServerAnnouncement(string message, Color? colorOverride = null) @@ -165,6 +184,9 @@ public void SendHookOOC(string sender, string message) /// The type of message. public void TrySendOOCMessage(ICommonSession player, string message, OOCChatType type) { + if (!HandleRateLimit(player)) + return; + // Check if message exceeds the character limit if (message.Length > MaxMessageLength) { @@ -214,12 +236,8 @@ private void SendOOC(ICommonSession player, string message) wrappedMessage = Loc.GetString("chat-manager-send-ooc-patron-wrap-message", ("patronColor", patronColor),("playerName", player.Name), ("message", FormattedMessage.EscapeText(message))); } - ref var key = ref CollectionsMarshal.GetValueRefOrAddDefault(SenderKeys, player, out var exists); - if (!exists) - key = SenderKeys.Count; - //TODO: player.Name color, this will need to change the structure of the MsgChatMessage - ChatMessageToAll(ChatChannel.OOC, message, wrappedMessage, EntityUid.Invalid, hideChat: false, recordReplay: true, colorOverride: colorOverride, senderKey: key); + ChatMessageToAll(ChatChannel.OOC, message, wrappedMessage, EntityUid.Invalid, hideChat: false, recordReplay: true, colorOverride: colorOverride, author: player.UserId); _mommiLink.SendOOCMessage(player.Name, message); _adminLogger.Add(LogType.Chat, LogImpact.Low, $"OOC from {player:Player}: {message}"); } @@ -237,10 +255,6 @@ private void SendAdminChat(ICommonSession player, string message) ("adminChannelName", Loc.GetString("chat-manager-admin-channel-name")), ("playerName", player.Name), ("message", FormattedMessage.EscapeText(message))); - ref var key = ref CollectionsMarshal.GetValueRefOrAddDefault(SenderKeys, player, out var exists); - if (!exists) - key = SenderKeys.Count; - foreach (var client in clients) { var isSource = client != player.ConnectedClient; @@ -251,7 +265,8 @@ private void SendAdminChat(ICommonSession player, string message) false, client, audioPath: isSource ? _netConfigManager.GetClientCVar(client, CCVars.AdminChatSoundPath) : default, - audioVolume: isSource ? _netConfigManager.GetClientCVar(client, CCVars.AdminChatSoundVolume) : default, senderKey: key); + audioVolume: isSource ? _netConfigManager.GetClientCVar(client, CCVars.AdminChatSoundVolume) : default, + author: player.UserId); } _adminLogger.Add(LogType.Chat, $"Admin chat from {player:Player}: {message}"); @@ -261,9 +276,13 @@ private void SendAdminChat(ICommonSession player, string message) #region Utility - public void ChatMessageToOne(ChatChannel channel, string message, string wrappedMessage, EntityUid source, bool hideChat, INetChannel client, Color? colorOverride = null, bool recordReplay = false, string? audioPath = null, float audioVolume = 0, int? senderKey = null) + public void ChatMessageToOne(ChatChannel channel, string message, string wrappedMessage, EntityUid source, bool hideChat, INetChannel client, Color? colorOverride = null, bool recordReplay = false, string? audioPath = null, float audioVolume = 0, NetUserId? author = null) { - var msg = new ChatMessage(channel, message, wrappedMessage, _entityManager.GetNetEntity(source), senderKey, hideChat, colorOverride, audioPath, audioVolume); + var user = author == null ? null : EnsurePlayer(author); + var netSource = _entityManager.GetNetEntity(source); + user?.AddEntity(netSource); + + var msg = new ChatMessage(channel, message, wrappedMessage, netSource, user?.Key, hideChat, colorOverride, audioPath, audioVolume); _netManager.ServerSendMessage(new MsgChatMessage() { Message = msg }, client); if (!recordReplay) @@ -276,12 +295,16 @@ public void ChatMessageToOne(ChatChannel channel, string message, string wrapped } } - public void ChatMessageToMany(ChatChannel channel, string message, string wrappedMessage, EntityUid source, bool hideChat, bool recordReplay, IEnumerable clients, Color? colorOverride = null, string? audioPath = null, float audioVolume = 0) - => ChatMessageToMany(channel, message, wrappedMessage, source, hideChat, recordReplay, clients.ToList(), colorOverride, audioPath, audioVolume); + public void ChatMessageToMany(ChatChannel channel, string message, string wrappedMessage, EntityUid source, bool hideChat, bool recordReplay, IEnumerable clients, Color? colorOverride = null, string? audioPath = null, float audioVolume = 0, NetUserId? author = null) + => ChatMessageToMany(channel, message, wrappedMessage, source, hideChat, recordReplay, clients.ToList(), colorOverride, audioPath, audioVolume, author); - public void ChatMessageToMany(ChatChannel channel, string message, string wrappedMessage, EntityUid source, bool hideChat, bool recordReplay, List clients, Color? colorOverride = null, string? audioPath = null, float audioVolume = 0) + public void ChatMessageToMany(ChatChannel channel, string message, string wrappedMessage, EntityUid source, bool hideChat, bool recordReplay, List clients, Color? colorOverride = null, string? audioPath = null, float audioVolume = 0, NetUserId? author = null) { - var msg = new ChatMessage(channel, message, wrappedMessage, _entityManager.GetNetEntity(source), null, hideChat, colorOverride, audioPath, audioVolume); + var user = author == null ? null : EnsurePlayer(author); + var netSource = _entityManager.GetNetEntity(source); + user?.AddEntity(netSource); + + var msg = new ChatMessage(channel, message, wrappedMessage, netSource, user?.Key, hideChat, colorOverride, audioPath, audioVolume); _netManager.ServerSendToMany(new MsgChatMessage() { Message = msg }, clients); if (!recordReplay) @@ -309,9 +332,13 @@ public void ChatMessageToManyFiltered(Filter filter, ChatChannel channel, string ChatMessageToMany(channel, message, wrappedMessage, source, hideChat, recordReplay, clients, colorOverride, audioPath, audioVolume); } - public void ChatMessageToAll(ChatChannel channel, string message, string wrappedMessage, EntityUid source, bool hideChat, bool recordReplay, Color? colorOverride = null, string? audioPath = null, float audioVolume = 0, int? senderKey = null) + public void ChatMessageToAll(ChatChannel channel, string message, string wrappedMessage, EntityUid source, bool hideChat, bool recordReplay, Color? colorOverride = null, string? audioPath = null, float audioVolume = 0, NetUserId? author = null) { - var msg = new ChatMessage(channel, message, wrappedMessage, _entityManager.GetNetEntity(source), senderKey, hideChat, colorOverride, audioPath, audioVolume); + var user = author == null ? null : EnsurePlayer(author); + var netSource = _entityManager.GetNetEntity(source); + user?.AddEntity(netSource); + + var msg = new ChatMessage(channel, message, wrappedMessage, netSource, user?.Key, hideChat, colorOverride, audioPath, audioVolume); _netManager.ServerSendToAll(new MsgChatMessage() { Message = msg }); if (!recordReplay) diff --git a/Content.Server/Chat/Managers/IChatManager.cs b/Content.Server/Chat/Managers/IChatManager.cs index 5317b3054e..e5fa8d5f4d 100644 --- a/Content.Server/Chat/Managers/IChatManager.cs +++ b/Content.Server/Chat/Managers/IChatManager.cs @@ -1,3 +1,4 @@ +using System.Diagnostics.CodeAnalysis; using Content.Shared.Chat; using Robust.Shared.Network; using Robust.Shared.Player; @@ -6,17 +7,6 @@ namespace Content.Server.Chat.Managers { public interface IChatManager { - /// - /// Keys identifying messages sent by a specific player, used when sending - /// - /// - Dictionary SenderKeys { get; } - - /// - /// Tracks which entities a player was attached to while sending messages. - /// - Dictionary> SenderEntities { get; } - void Initialize(); /// @@ -36,17 +26,28 @@ public interface IChatManager void SendAdminAlert(EntityUid player, string message); void ChatMessageToOne(ChatChannel channel, string message, string wrappedMessage, EntityUid source, bool hideChat, - INetChannel client, Color? colorOverride = null, bool recordReplay = false, string? audioPath = null, float audioVolume = 0, int? senderKey = null); + INetChannel client, Color? colorOverride = null, bool recordReplay = false, string? audioPath = null, float audioVolume = 0, NetUserId? author = null); void ChatMessageToMany(ChatChannel channel, string message, string wrappedMessage, EntityUid source, bool hideChat, bool recordReplay, - IEnumerable clients, Color? colorOverride = null, string? audioPath = null, float audioVolume = 0); + IEnumerable clients, Color? colorOverride = null, string? audioPath = null, float audioVolume = 0, NetUserId? author = null); void ChatMessageToManyFiltered(Filter filter, ChatChannel channel, string message, string wrappedMessage, EntityUid source, bool hideChat, bool recordReplay, Color? colorOverride, string? audioPath = null, float audioVolume = 0); - void ChatMessageToAll(ChatChannel channel, string message, string wrappedMessage, EntityUid source, bool hideChat, bool recordReplay, Color? colorOverride = null, string? audioPath = null, float audioVolume = 0, int? senderKey = null); + void ChatMessageToAll(ChatChannel channel, string message, string wrappedMessage, EntityUid source, bool hideChat, bool recordReplay, Color? colorOverride = null, string? audioPath = null, float audioVolume = 0, NetUserId? author = null); bool MessageCharacterLimit(ICommonSession player, string message); void DeleteMessagesBy(ICommonSession player); + + [return: NotNullIfNotNull(nameof(author))] + ChatUser? EnsurePlayer(NetUserId? author); + + /// + /// Called when a player sends a chat message to handle rate limits. + /// Will update counts and do necessary actions if breached. + /// + /// The player sending a chat message. + /// False if the player has violated rate limits and should be blocked from sending further messages. + bool HandleRateLimit(ICommonSession player); } } diff --git a/Content.Server/Chat/Systems/AnnounceOnSpawnSystem.cs b/Content.Server/Chat/Systems/AnnounceOnSpawnSystem.cs new file mode 100644 index 0000000000..0f0365e56b --- /dev/null +++ b/Content.Server/Chat/Systems/AnnounceOnSpawnSystem.cs @@ -0,0 +1,22 @@ +using Content.Server.Chat; + +namespace Content.Server.Chat.Systems; + +public sealed class AnnounceOnSpawnSystem : EntitySystem +{ + [Dependency] private readonly ChatSystem _chat = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnInit); + } + + private void OnInit(EntityUid uid, AnnounceOnSpawnComponent comp, MapInitEvent args) + { + var message = Loc.GetString(comp.Message); + var sender = comp.Sender != null ? Loc.GetString(comp.Sender) : "Central Command"; + _chat.DispatchGlobalAnnouncement(message, sender, playSound: true, comp.Sound, comp.Color); + } +} diff --git a/Content.Server/Chat/Systems/ChatSystem.Emote.cs b/Content.Server/Chat/Systems/ChatSystem.Emote.cs index 7ab86aa108..8bba76dadd 100644 --- a/Content.Server/Chat/Systems/ChatSystem.Emote.cs +++ b/Content.Server/Chat/Systems/ChatSystem.Emote.cs @@ -1,3 +1,4 @@ +using System.Collections.Frozen; using Content.Shared.Chat.Prototypes; using Robust.Shared.Prototypes; using Robust.Shared.Random; @@ -7,44 +8,36 @@ namespace Content.Server.Chat.Systems; // emotes using emote prototype public partial class ChatSystem { - private readonly Dictionary _wordEmoteDict = new(); + private FrozenDictionary _wordEmoteDict = FrozenDictionary.Empty; - private void InitializeEmotes() + protected override void OnPrototypeReload(PrototypesReloadedEventArgs obj) { - _prototypeManager.PrototypesReloaded += OnPrototypeReloadEmotes; - CacheEmotes(); - } - - private void ShutdownEmotes() - { - _prototypeManager.PrototypesReloaded -= OnPrototypeReloadEmotes; - } - - private void OnPrototypeReloadEmotes(PrototypesReloadedEventArgs obj) - { - CacheEmotes(); + base.OnPrototypeReload(obj); + if (obj.WasModified()) + CacheEmotes(); } private void CacheEmotes() { - _wordEmoteDict.Clear(); + var dict = new Dictionary(); var emotes = _prototypeManager.EnumeratePrototypes(); foreach (var emote in emotes) { foreach (var word in emote.ChatTriggers) { var lowerWord = word.ToLower(); - if (_wordEmoteDict.ContainsKey(lowerWord)) + if (dict.TryGetValue(lowerWord, out var value)) { - var existingId = _wordEmoteDict[lowerWord].ID; - var errMsg = $"Duplicate of emote word {lowerWord} in emotes {emote.ID} and {existingId}"; - Logger.Error(errMsg); + var errMsg = $"Duplicate of emote word {lowerWord} in emotes {emote.ID} and {value.ID}"; + Log.Error(errMsg); continue; } - _wordEmoteDict.Add(lowerWord, emote); + dict.Add(lowerWord, emote); } } + + _wordEmoteDict = dict.ToFrozenDictionary(); } /// diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index b2eb668641..dc4e03049e 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -1,14 +1,14 @@ using System.Globalization; using System.Linq; using System.Text; -using Content.Server.Speech.EntitySystems; -using Content.Server.Speech.Components; using Content.Server.Administration.Logs; using Content.Server.Administration.Managers; using Content.Server.Chat.Managers; using Content.Server.GameTicking; using Content.Server.Players; using Content.Server.Nyanotrasen.Chat; +using Content.Server.Speech.Components; +using Content.Server.Speech.EntitySystems; using Content.Server.Station.Components; using Content.Server.Station.Systems; using Content.Shared.ActionBlocker; @@ -21,9 +21,9 @@ using Content.Shared.Mobs.Systems; using Content.Shared.Players; using Content.Shared.Radio; -using Robust.Server.GameObjects; using Robust.Server.Player; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; using Robust.Shared.Console; using Robust.Shared.Network; @@ -74,7 +74,7 @@ public sealed partial class ChatSystem : SharedChatSystem public override void Initialize() { base.Initialize(); - InitializeEmotes(); + CacheEmotes(); _configurationManager.OnValueChanged(CCVars.LoocEnabled, OnLoocEnabledChanged, true); _configurationManager.OnValueChanged(CCVars.DeadLoocEnabled, OnDeadLoocEnabledChanged, true); _configurationManager.OnValueChanged(CCVars.CritLoocEnabled, OnCritLoocEnabledChanged, true); @@ -85,7 +85,6 @@ public override void Initialize() public override void Shutdown() { base.Shutdown(); - ShutdownEmotes(); _configurationManager.UnsubValueChanged(CCVars.LoocEnabled, OnLoocEnabledChanged); _configurationManager.UnsubValueChanged(CCVars.DeadLoocEnabled, OnDeadLoocEnabledChanged); _configurationManager.UnsubValueChanged(CCVars.CritLoocEnabled, OnCritLoocEnabledChanged); @@ -189,6 +188,9 @@ public void TrySendInGameICMessage( return; } + if (player != null && !_chatManager.HandleRateLimit(player)) + return; + // Sus if (player?.AttachedEntity is { Valid: true } entity && source != entity) { @@ -198,8 +200,20 @@ public void TrySendInGameICMessage( if (!CanSendInGame(message, shell, player)) return; + ignoreActionBlocker = CheckIgnoreSpeechBlocker(source, ignoreActionBlocker); + + // this method is a disaster + // every second i have to spend working with this code is fucking agony + // scientists have to wonder how any of this was merged + // coding any game admin feature that involves chat code is pure torture + // changing even 10 lines of code feels like waterboarding myself + // and i dont feel like vibe checking 50 code paths + // so we set this here + // todo free me from chat code if (player != null) - _chatManager.SenderEntities.GetOrNew(player).Add(GetNetEntity(source)); + { + _chatManager.EnsurePlayer(player.UserId).AddEntity(GetNetEntity(source)); + } if (desiredType == InGameICChatType.Speak && message.StartsWith(LocalPrefix)) { @@ -231,7 +245,7 @@ public void TrySendInGameICMessage( { if (TryProccessRadioMessage(source, message, out var modMessage, out var channel)) { - SendEntityWhisper(source, modMessage, range, channel, nameOverride, ignoreActionBlocker); + SendEntityWhisper(source, modMessage, range, channel, nameOverride, hideLog, ignoreActionBlocker); return; } } @@ -267,6 +281,9 @@ public void TrySendInGameOOCMessage( if (!CanSendInGame(message, shell, player)) return; + if (player != null && !_chatManager.HandleRateLimit(player)) + return; + // It doesn't make any sense for a non-player to send in-game OOC messages, whereas non-players may be sending // in-game IC messages. if (player?.AttachedEntity is not { Valid: true } entity || source != entity) @@ -316,7 +333,7 @@ public void DispatchGlobalAnnouncement( _chatManager.ChatMessageToAll(ChatChannel.Radio, message, wrappedMessage, default, false, true, colorOverride); if (playSound) { - SoundSystem.Play(announcementSound?.GetSound() ?? DefaultAnnouncementSound, Filter.Broadcast(), AudioParams.Default.WithVolume(-2f)); + _audio.PlayGlobal(announcementSound?.GetSound() ?? DefaultAnnouncementSound, Filter.Broadcast(), true, AudioParams.Default.WithVolume(-2f)); } _adminLogger.Add(LogType.Chat, LogImpact.Low, $"Global station announcement from {sender}: {message}"); } @@ -354,7 +371,7 @@ public void DispatchStationAnnouncement( if (playDefaultSound) { - SoundSystem.Play(announcementSound?.GetSound() ?? DefaultAnnouncementSound, filter, AudioParams.Default.WithVolume(-2f)); + _audio.PlayGlobal(announcementSound?.GetSound() ?? DefaultAnnouncementSound, filter, true, AudioParams.Default.WithVolume(-2f)); } _adminLogger.Add(LogType.Chat, LogImpact.Low, $"Station Announcement on {station} from {sender}: {message}"); @@ -528,7 +545,8 @@ private void SendEntityEmote( string? nameOverride, bool hideLog = false, bool checkEmote = true, - bool ignoreActionBlocker = false + bool ignoreActionBlocker = false, + NetUserId? author = null ) { if (!_actionBlocker.CanEmote(source) && !ignoreActionBlocker) @@ -546,7 +564,7 @@ private void SendEntityEmote( if (checkEmote) TryEmoteChatInput(source, action); - SendInVoiceRange(ChatChannel.Emotes, action, wrappedMessage, source, range); + SendInVoiceRange(ChatChannel.Emotes, action, wrappedMessage, source, range, author); if (!hideLog) if (name != Name(source)) _adminLogger.Add(LogType.Chat, LogImpact.Low, $"Emote from {ToPrettyString(source):user} as {name}: {action}"); @@ -573,9 +591,7 @@ private void SendLOOC(EntityUid source, ICommonSession player, string message, b ("entityName", name), ("message", FormattedMessage.EscapeText(message))); - _chatManager.SenderEntities.GetOrNew(player).Add(GetNetEntity(source)); - - SendInVoiceRange(ChatChannel.LOOC, message, wrappedMessage, source, hideChat ? ChatTransmitRange.HideChat : ChatTransmitRange.Normal); + SendInVoiceRange(ChatChannel.LOOC, message, wrappedMessage, source, hideChat ? ChatTransmitRange.HideChat : ChatTransmitRange.Normal, player.UserId); _adminLogger.Add(LogType.Chat, LogImpact.Low, $"LOOC from {player:Player}: {message}"); } @@ -601,9 +617,7 @@ private void SendDeadChat(EntityUid source, ICommonSession player, string messag _adminLogger.Add(LogType.Chat, LogImpact.Low, $"Dead chat from {player:Player}: {message}"); } - _chatManager.SenderEntities.GetOrNew(player).Add(GetNetEntity(source)); - - _chatManager.ChatMessageToMany(ChatChannel.Dead, message, wrappedMessage, source, hideChat, true, clients.ToList()); + _chatManager.ChatMessageToMany(ChatChannel.Dead, message, wrappedMessage, source, hideChat, true, clients.ToList(), author: player.UserId); } #endregion @@ -657,7 +671,7 @@ private MessageRangeCheckResult MessageRangeCheck(ICommonSession session, ICChat /// /// Sends a chat message to the given players in range of the source entity. /// - private void SendInVoiceRange(ChatChannel channel, string message, string wrappedMessage, EntityUid source, ChatTransmitRange range) + private void SendInVoiceRange(ChatChannel channel, string message, string wrappedMessage, EntityUid source, ChatTransmitRange range, NetUserId? author = null) { foreach (var (session, data) in GetRecipients(source, VoiceRange)) { @@ -665,7 +679,7 @@ private void SendInVoiceRange(ChatChannel channel, string message, string wrappe if (entRange == MessageRangeCheckResult.Disallowed) continue; var entHideChat = entRange == MessageRangeCheckResult.HideChat; - _chatManager.ChatMessageToOne(channel, message, wrappedMessage, source, entHideChat, session.ConnectedClient); + _chatManager.ChatMessageToOne(channel, message, wrappedMessage, source, entHideChat, session.ConnectedClient, author: author); } _replay.RecordServerMessage(new ChatMessage(channel, message, wrappedMessage, GetNetEntity(source), null, MessageRangeHideChatForReplay(range))); @@ -731,6 +745,17 @@ public string TransformSpeech(EntityUid sender, string message) return ev.Message; } + public bool CheckIgnoreSpeechBlocker(EntityUid sender, bool ignoreBlocker) + { + if (ignoreBlocker) + return ignoreBlocker; + + var ev = new CheckIgnoreSpeechBlockerEvent(sender, ignoreBlocker); + RaiseLocalEvent(sender, ev, true); + + return ev.IgnoreBlocker; + } + private IEnumerable GetDeadChatClients() { return Filter.Empty() @@ -868,6 +893,18 @@ public TransformSpeechEvent(EntityUid sender, string message) } } +public sealed class CheckIgnoreSpeechBlockerEvent : EntityEventArgs +{ + public EntityUid Sender; + public bool IgnoreBlocker; + + public CheckIgnoreSpeechBlockerEvent(EntityUid sender, bool ignoreBlocker) + { + Sender = sender; + IgnoreBlocker = ignoreBlocker; + } +} + /// /// Raised on an entity when it speaks, either through 'say' or 'whisper'. /// diff --git a/Content.Server/Chat/TypingIndicator/TypingIndicatorSystem.cs b/Content.Server/Chat/TypingIndicator/TypingIndicatorSystem.cs index c48ba07c44..761e9456bc 100644 --- a/Content.Server/Chat/TypingIndicator/TypingIndicatorSystem.cs +++ b/Content.Server/Chat/TypingIndicator/TypingIndicatorSystem.cs @@ -1,6 +1,6 @@ using Content.Shared.ActionBlocker; using Content.Shared.Chat.TypingIndicator; -using Robust.Server.GameObjects; +using Robust.Shared.Player; namespace Content.Server.Chat.TypingIndicator; diff --git a/Content.Server/Chemistry/Components/DeleteOnSolutionEmptyComponent.cs b/Content.Server/Chemistry/Components/DeleteOnSolutionEmptyComponent.cs new file mode 100644 index 0000000000..e53d10b55a --- /dev/null +++ b/Content.Server/Chemistry/Components/DeleteOnSolutionEmptyComponent.cs @@ -0,0 +1,15 @@ +namespace Content.Server.Chemistry.Components.DeleteOnSolutionEmptyComponent +{ + /// + /// Component that removes an item when a specific solution in it becomes empty. + /// + [RegisterComponent] + public sealed partial class DeleteOnSolutionEmptyComponent : Component + { + /// + /// The name of the solution of which to check emptiness + /// + [DataField("solution")] + public string Solution = string.Empty; + } +} diff --git a/Content.Server/Chemistry/EntitySystems/ChemMasterSystem.cs b/Content.Server/Chemistry/EntitySystems/ChemMasterSystem.cs index a831165e68..07ac01fab6 100644 --- a/Content.Server/Chemistry/EntitySystems/ChemMasterSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/ChemMasterSystem.cs @@ -14,6 +14,7 @@ using Content.Shared.FixedPoint; using Content.Shared.Storage; using JetBrains.Annotations; +using Robust.Server.Audio; using Robust.Server.GameObjects; using Robust.Shared.Audio; using Robust.Shared.Containers; diff --git a/Content.Server/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs b/Content.Server/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs index 7485c0e901..e2cd72030d 100644 --- a/Content.Server/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs @@ -17,8 +17,7 @@ public override void Initialize() { base.Initialize(); - PrototypeManager.PrototypesReloaded += PrototypeManagerReload; - + SubscribeLocalEvent(PrototypeManagerReload); _player.PlayerStatusChanged += OnPlayerStatusChanged; InitializeServerRegistry(); diff --git a/Content.Server/Chemistry/EntitySystems/ChemistrySystem.Injector.cs b/Content.Server/Chemistry/EntitySystems/ChemistrySystem.Injector.cs index 6b085d133e..c618094d1b 100644 --- a/Content.Server/Chemistry/EntitySystems/ChemistrySystem.Injector.cs +++ b/Content.Server/Chemistry/EntitySystems/ChemistrySystem.Injector.cs @@ -15,6 +15,7 @@ using Content.Shared.Verbs; using Content.Shared.Stacks; using Robust.Shared.Player; +using Content.Shared.Forensics; namespace Content.Server.Chemistry.EntitySystems; @@ -290,7 +291,7 @@ private void TryInjectIntoBloodstream(InjectorComponent component, EntityUid inj ("target", Identity.Entity(target, EntityManager))), injector, user); Dirty(component); - AfterInject(component, injector); + AfterInject(component, injector, target); } private void TryInject(InjectorComponent component, EntityUid injector, EntityUid targetEntity, Solution targetSolution, EntityUid user, bool asRefill) @@ -328,10 +329,10 @@ private void TryInject(InjectorComponent component, EntityUid injector, EntityUi ("target", Identity.Entity(targetEntity, EntityManager))), injector, user); Dirty(component); - AfterInject(component, injector); + AfterInject(component, injector, targetEntity); } - private void AfterInject(InjectorComponent component, EntityUid injector) + private void AfterInject(InjectorComponent component, EntityUid injector, EntityUid target) { // Automatically set syringe to draw after completely draining it. if (_solutions.TryGetSolution(injector, InjectorComponent.SolutionName, out var solution) @@ -339,9 +340,13 @@ private void AfterInject(InjectorComponent component, EntityUid injector) { component.ToggleState = SharedInjectorComponent.InjectorToggleMode.Draw; } + + // Leave some DNA from the injectee on it + var ev = new TransferDnaEvent { Donor = target, Recipient = injector }; + RaiseLocalEvent(target, ref ev); } - private void AfterDraw(InjectorComponent component, EntityUid injector) + private void AfterDraw(InjectorComponent component, EntityUid injector, EntityUid target) { // Automatically set syringe to inject after completely filling it. if (_solutions.TryGetSolution(injector, InjectorComponent.SolutionName, out var solution) @@ -349,6 +354,10 @@ private void AfterDraw(InjectorComponent component, EntityUid injector) { component.ToggleState = SharedInjectorComponent.InjectorToggleMode.Inject; } + + // Leave some DNA from the drawee on it + var ev = new TransferDnaEvent { Donor = target, Recipient = injector }; + RaiseLocalEvent(target, ref ev); } private void TryDraw(InjectorComponent component, EntityUid injector, EntityUid targetEntity, Solution targetSolution, EntityUid user, BloodstreamComponent? stream = null) @@ -389,7 +398,7 @@ private void TryDraw(InjectorComponent component, EntityUid injector, EntityUid ("target", Identity.Entity(targetEntity, EntityManager))), injector, user); Dirty(component); - AfterDraw(component, injector); + AfterDraw(component, injector, targetEntity); } private void DrawFromBlood(EntityUid user, EntityUid injector, EntityUid target, InjectorComponent component, Solution injectorSolution, BloodstreamComponent stream, FixedPoint2 transferAmount) @@ -414,7 +423,7 @@ private void DrawFromBlood(EntityUid user, EntityUid injector, EntityUid target, ("target", Identity.Entity(target, EntityManager))), injector, user); Dirty(component); - AfterDraw(component, injector); + AfterDraw(component, injector, target); } } diff --git a/Content.Server/Chemistry/EntitySystems/ChemistrySystem.cs b/Content.Server/Chemistry/EntitySystems/ChemistrySystem.cs index fc4ea0a0b2..759d403ace 100644 --- a/Content.Server/Chemistry/EntitySystems/ChemistrySystem.cs +++ b/Content.Server/Chemistry/EntitySystems/ChemistrySystem.cs @@ -7,6 +7,8 @@ using Content.Shared.Chemistry.EntitySystems; using Content.Shared.DoAfter; using Content.Shared.Mobs.Systems; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; namespace Content.Server.Chemistry.EntitySystems; diff --git a/Content.Server/Chemistry/EntitySystems/ChemistrySystemHypospray.cs b/Content.Server/Chemistry/EntitySystems/ChemistrySystemHypospray.cs index fcc3c58fa7..cb4feb8064 100644 --- a/Content.Server/Chemistry/EntitySystems/ChemistrySystemHypospray.cs +++ b/Content.Server/Chemistry/EntitySystems/ChemistrySystemHypospray.cs @@ -14,6 +14,7 @@ using Content.Shared.Weapons.Melee.Events; using Content.Shared.Timing; using Robust.Shared.GameStates; +using Content.Shared.Forensics; namespace Content.Server.Chemistry.EntitySystems { @@ -138,6 +139,9 @@ public bool TryDoInject(EntityUid uid, EntityUid? target, EntityUid user, Hyposp _reactiveSystem.DoEntityReaction(target.Value, removedSolution, ReactionMethod.Injection); _solutions.TryAddSolution(target.Value, targetSolution, removedSolution); + var ev = new TransferDnaEvent { Donor = target.Value, Recipient = uid }; + RaiseLocalEvent(target.Value, ref ev); + // same LogType as syringes... _adminLogger.Add(LogType.ForceFeed, $"{_entMan.ToPrettyString(user):user} injected {_entMan.ToPrettyString(target.Value):target} with a solution {SolutionContainerSystem.ToPrettyString(removedSolution):removedSolution} using a {_entMan.ToPrettyString(uid):using}"); diff --git a/Content.Server/Chemistry/EntitySystems/DeleteOnSolutionEmptySystem.cs b/Content.Server/Chemistry/EntitySystems/DeleteOnSolutionEmptySystem.cs new file mode 100644 index 0000000000..fd7933e66a --- /dev/null +++ b/Content.Server/Chemistry/EntitySystems/DeleteOnSolutionEmptySystem.cs @@ -0,0 +1,38 @@ +using Content.Server.Chemistry.Components.DeleteOnSolutionEmptyComponent; +using Content.Shared.Chemistry.Components.SolutionManager; +using Content.Shared.Chemistry.EntitySystems; + +namespace Content.Server.Chemistry.EntitySystems.DeleteOnSolutionEmptySystem +{ + public sealed class DeleteOnSolutionEmptySystem : EntitySystem + { + [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnStartup); + SubscribeLocalEvent(OnSolutionChange); + } + + public void OnStartup(EntityUid uid, DeleteOnSolutionEmptyComponent component, ComponentStartup args) + { + CheckSolutions(uid, component); + } + + public void OnSolutionChange(EntityUid uid, DeleteOnSolutionEmptyComponent component, SolutionChangedEvent args) + { + CheckSolutions(uid, component); + } + + public void CheckSolutions(EntityUid uid, DeleteOnSolutionEmptyComponent component) + { + if (!EntityManager.HasComponent(uid)) + return; + + if (_solutionContainerSystem.TryGetSolution(uid, component.Solution, out var solution)) + if (solution.Volume <= 0) + EntityManager.QueueDeleteEntity(uid); + } + } +} diff --git a/Content.Server/Chemistry/EntitySystems/ReagentDispenserSystem.cs b/Content.Server/Chemistry/EntitySystems/ReagentDispenserSystem.cs index daa2ac80b7..3768ee1051 100644 --- a/Content.Server/Chemistry/EntitySystems/ReagentDispenserSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/ReagentDispenserSystem.cs @@ -10,6 +10,7 @@ using Content.Shared.Emag.Components; using Content.Shared.Emag.Systems; using JetBrains.Annotations; +using Robust.Server.Audio; using Robust.Server.GameObjects; using Robust.Shared.Audio; using Robust.Shared.Containers; diff --git a/Content.Server/Chemistry/EntitySystems/SolutionContainerMixerSystem.cs b/Content.Server/Chemistry/EntitySystems/SolutionContainerMixerSystem.cs new file mode 100644 index 0000000000..a942d34e7a --- /dev/null +++ b/Content.Server/Chemistry/EntitySystems/SolutionContainerMixerSystem.cs @@ -0,0 +1,29 @@ +using Content.Server.Power.Components; +using Content.Server.Power.EntitySystems; +using Content.Shared.Chemistry.Components; +using Content.Shared.Chemistry.EntitySystems; + +namespace Content.Server.Chemistry.EntitySystems; + +/// +public sealed class SolutionContainerMixerSystem : SharedSolutionContainerMixerSystem +{ + /// + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnPowerChanged); + } + + private void OnPowerChanged(Entity ent, ref PowerChangedEvent args) + { + if (!args.Powered) + StopMix(ent); + } + + protected override bool HasPower(Entity entity) + { + return this.IsPowered(entity, EntityManager); + } +} diff --git a/Content.Server/Chemistry/EntitySystems/SolutionInjectOnCollideSystem.cs b/Content.Server/Chemistry/EntitySystems/SolutionInjectOnCollideSystem.cs index dcfc57a9b2..e053ce9720 100644 --- a/Content.Server/Chemistry/EntitySystems/SolutionInjectOnCollideSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/SolutionInjectOnCollideSystem.cs @@ -35,15 +35,13 @@ private void HandleInjection(Entity ent, ref S return; } - if (component.BlockSlots != 0x0 && TryComp(target, out var inventory)) + if (component.BlockSlots != 0x0) { - var containerEnumerator = new InventorySystem.ContainerSlotEnumerator(target, inventory.TemplateId, _protoManager, _inventorySystem, component.BlockSlots); + var containerEnumerator = _inventorySystem.GetSlotEnumerator(target, component.BlockSlots); - while (containerEnumerator.MoveNext(out var container)) - { - if (!container.ContainedEntity.HasValue) continue; + // TODO add a helper method for this? + if (containerEnumerator.MoveNext(out _)) return; - } } var solRemoved = solution.SplitSolution(component.TransferAmount); diff --git a/Content.Server/Chemistry/ReactionEffects/AreaReactionEffect.cs b/Content.Server/Chemistry/ReactionEffects/AreaReactionEffect.cs index 291a654422..fc807069f7 100644 --- a/Content.Server/Chemistry/ReactionEffects/AreaReactionEffect.cs +++ b/Content.Server/Chemistry/ReactionEffects/AreaReactionEffect.cs @@ -8,6 +8,7 @@ using Content.Shared.Maps; using JetBrains.Annotations; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; @@ -72,7 +73,8 @@ public override void Effect(ReagentEffectArgs args) var smoke = args.EntityManager.System(); smoke.StartSmoke(ent, splitSolution, _duration, spreadAmount); - args.EntityManager.System().PlayPvs(_sound, args.SolutionEntity, AudioHelpers.WithVariation(0.125f)); + var audio = args.EntityManager.System(); + audio.PlayPvs(_sound, args.SolutionEntity, AudioHelpers.WithVariation(0.125f)); } } } diff --git a/Content.Server/Chemistry/ReagentEffects/ChemVomit.cs b/Content.Server/Chemistry/ReagentEffects/ChemVomit.cs index cfdfd5ffa0..630d00124c 100644 --- a/Content.Server/Chemistry/ReagentEffects/ChemVomit.cs +++ b/Content.Server/Chemistry/ReagentEffects/ChemVomit.cs @@ -13,10 +13,10 @@ public sealed partial class ChemVomit : ReagentEffect { /// How many units of thirst to add each time we vomit [DataField("thirstAmount")] - public float ThirstAmount = -40f; + public float ThirstAmount = -8f; /// How many units of hunger to add each time we vomit [DataField("hungerAmount")] - public float HungerAmount = -40f; + public float HungerAmount = -8f; protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) => Loc.GetString("reagent-effect-guidebook-chem-vomit", ("chance", Probability)); diff --git a/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs b/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs index b0eb9c4abc..bf7691fe37 100644 --- a/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs +++ b/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs @@ -4,6 +4,7 @@ using Content.Shared.Mind.Components; using Robust.Shared.Prototypes; using Content.Server.Psionics; //Nyano - Summary: pulls in the ability for the sentient creature to become psionic. +using Content.Shared.Humanoid; //Delta-V - Banning humanoids from becoming ghost roles. namespace Content.Server.Chemistry.ReagentEffects; @@ -35,6 +36,15 @@ public override void Effect(ReagentEffectArgs args) return; } + // Delta-V: Do not allow humanoids to become sentient. Intended to stop people from + // repeatedly cloning themselves and using cognizine on their bodies. + // HumanoidAppearanceComponent is common to all player species, and is also used for the + // Ripley pilot whitelist, so there's a precedent for using it for this kind of check. + if (entityManager.HasComponent(uid)) + { + return; + } + ghostRole = entityManager.AddComponent(uid); entityManager.EnsureComponent(uid); entityManager.EnsureComponent(uid); //Nyano - Summary:. Makes the animated body able to get psionics. diff --git a/Content.Server/Chemistry/TileReactions/CleanDecalsReaction.cs b/Content.Server/Chemistry/TileReactions/CleanDecalsReaction.cs index b5d5862e6c..c23956760a 100644 --- a/Content.Server/Chemistry/TileReactions/CleanDecalsReaction.cs +++ b/Content.Server/Chemistry/TileReactions/CleanDecalsReaction.cs @@ -44,11 +44,11 @@ public FixedPoint2 TileReact(TileRef tile, ReagentPrototype reagent, FixedPoint2 if (!decal.Decal.Cleanable) continue; + if (amount + CleanCost > reactVolume) + break; + decalSystem.RemoveDecal(tile.GridUid, decal.Index, decalGrid); amount += CleanCost; - - if (amount > reactVolume) - break; } return amount; diff --git a/Content.Server/Chunking/ChunkingSystem.cs b/Content.Server/Chunking/ChunkingSystem.cs index 6f44c43be8..3919361af1 100644 --- a/Content.Server/Chunking/ChunkingSystem.cs +++ b/Content.Server/Chunking/ChunkingSystem.cs @@ -38,7 +38,10 @@ public override void Shutdown() _configurationManager.UnsubValueChanged(CVars.NetMaxUpdateRange, OnPvsRangeChanged); } - private void OnPvsRangeChanged(float value) => _baseViewBounds = Box2.UnitCentered.Scale(value); + private void OnPvsRangeChanged(float value) + { + _baseViewBounds = Box2.UnitCentered.Scale(value); + } public Dictionary> GetChunksForSession( ICommonSession session, @@ -47,70 +50,84 @@ public Dictionary> GetChunksForSession( ObjectPool>> viewerPool, float? viewEnlargement = null) { - var viewers = GetSessionViewers(session); - var chunks = GetChunksForViewers(viewers, chunkSize, indexPool, viewerPool, viewEnlargement ?? chunkSize); - return chunks; - } - - private HashSet GetSessionViewers(ICommonSession session) - { - var viewers = new HashSet(); - if (session.Status != SessionStatus.InGame || session.AttachedEntity is null) - return viewers; + var chunks = viewerPool.Get(); + DebugTools.Assert(chunks.Count == 0); - viewers.Add(session.AttachedEntity.Value); + if (session.Status != SessionStatus.InGame || session.AttachedEntity is not {} player) + return chunks; + var enlargement = viewEnlargement ?? chunkSize; + AddViewerChunks(player, chunks, indexPool, chunkSize, enlargement); foreach (var uid in session.ViewSubscriptions) { - viewers.Add(uid); + AddViewerChunks(uid, chunks, indexPool, chunkSize, enlargement); } - return viewers; + return chunks; } - private Dictionary> GetChunksForViewers( - HashSet viewers, - int chunkSize, + private void AddViewerChunks(EntityUid viewer, + Dictionary> chunks, ObjectPool> indexPool, - ObjectPool>> viewerPool, + int chunkSize, float viewEnlargement) { - var chunks = viewerPool.Get(); - DebugTools.Assert(chunks.Count == 0); + if (!_xformQuery.TryGetComponent(viewer, out var xform)) + return; - foreach (var viewerUid in viewers) + var pos = _transform.GetWorldPosition(xform); + var bounds = _baseViewBounds.Translated(pos).Enlarged(viewEnlargement); + + var state = new QueryState(chunks, indexPool, chunkSize, bounds, _transform, EntityManager); + _mapManager.FindGridsIntersecting(xform.MapID, bounds, ref state, AddGridChunks, true); + } + + private static bool AddGridChunks( + EntityUid uid, + MapGridComponent grid, + ref QueryState state) + { + var netGrid = state.EntityManager.GetNetEntity(uid); + if (!state.Chunks.TryGetValue(netGrid, out var set)) { - if (!_xformQuery.TryGetComponent(viewerUid, out var xform)) - { - Log.Error($"Player has deleted viewer entities? Viewers: {string.Join(", ", viewers.Select(ToPrettyString))}"); - continue; - } - - var pos = _transform.GetWorldPosition(xform); - var bounds = _baseViewBounds.Translated(pos).Enlarged(viewEnlargement); - var grids = new List>(); - _mapManager.FindGridsIntersecting(xform.MapID, bounds, ref grids, true); - - foreach (var grid in grids) - { - var netGrid = GetNetEntity(grid); - - if (!chunks.TryGetValue(netGrid, out var set)) - { - chunks[netGrid] = set = indexPool.Get(); - DebugTools.Assert(set.Count == 0); - } - - var enumerator = new ChunkIndicesEnumerator(_transform.GetInvWorldMatrix(grid).TransformBox(bounds), chunkSize); - - while (enumerator.MoveNext(out var indices)) - { - set.Add(indices.Value); - } - } + state.Chunks[netGrid] = set = state.Pool.Get(); + DebugTools.Assert(set.Count == 0); } - return chunks; + var aabb = state.Transform.GetInvWorldMatrix(uid).TransformBox(state.Bounds); + var enumerator = new ChunkIndicesEnumerator(aabb, state.ChunkSize); + while (enumerator.MoveNext(out var indices)) + { + set.Add(indices.Value); + } + + return true; + } + + private readonly struct QueryState + { + public readonly Dictionary> Chunks; + public readonly ObjectPool> Pool; + public readonly int ChunkSize; + public readonly Box2 Bounds; + public readonly SharedTransformSystem Transform; + public readonly EntityManager EntityManager; + + public QueryState( + Dictionary> chunks, + ObjectPool> pool, + int chunkSize, + Box2 bounds, + SharedTransformSystem transform, + EntityManager entityManager) + { + Chunks = chunks; + Pool = pool; + ChunkSize = chunkSize; + Bounds = bounds; + Transform = transform; + EntityManager = entityManager; + } } } diff --git a/Content.Server/Cloning/CloningSystem.cs b/Content.Server/Cloning/CloningSystem.cs index a16c47dbcd..fcb162d484 100644 --- a/Content.Server/Cloning/CloningSystem.cs +++ b/Content.Server/Cloning/CloningSystem.cs @@ -29,6 +29,8 @@ using Robust.Server.Containers; using Robust.Server.GameObjects; using Robust.Server.Player; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; using Robust.Shared.Containers; using Robust.Shared.Physics.Components; @@ -341,8 +343,7 @@ private void EndFailedCloning(EntityUid uid, CloningPodComponent clonePod) clonePod.CloningProgress = 0f; UpdateStatus(uid, CloningPodStatus.Idle, clonePod); var transform = Transform(uid); - var indices = _transformSystem.GetGridOrMapTilePosition(uid); - + var indices = _transformSystem.GetGridTilePositionOrDefault((uid, transform)); var tileMix = _atmosphereSystem.GetTileMixture(transform.GridUid, null, indices, true); if (HasComp(uid)) @@ -356,7 +357,7 @@ private void EndFailedCloning(EntityUid uid, CloningPodComponent clonePod) var i = 0; while (i < 1) { - tileMix?.AdjustMoles(Gas.Miasma, 6f); + tileMix?.AdjustMoles(Gas.Ammonia, 6f); bloodSolution.AddReagent("Blood", 50); if (_robustRandom.Prob(0.2f)) i++; diff --git a/Content.Server/Clothing/Components/MaskComponent.cs b/Content.Server/Clothing/Components/MaskComponent.cs deleted file mode 100644 index 704ea11ece..0000000000 --- a/Content.Server/Clothing/Components/MaskComponent.cs +++ /dev/null @@ -1,21 +0,0 @@ -using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; - -namespace Content.Server.Clothing.Components -{ - [Access(typeof(MaskSystem))] - [RegisterComponent] - public sealed partial class MaskComponent : Component - { - [DataField("toggleAction", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string ToggleAction = "ActionToggleMask"; - - /// - /// This mask can be toggled (pulled up/down) - /// - [DataField("toggleActionEntity")] - public EntityUid? ToggleActionEntity; - - public bool IsToggled = false; - } -} diff --git a/Content.Server/Clothing/MaskSystem.cs b/Content.Server/Clothing/MaskSystem.cs deleted file mode 100644 index 776979106f..0000000000 --- a/Content.Server/Clothing/MaskSystem.cs +++ /dev/null @@ -1,124 +0,0 @@ -using Content.Server.Actions; -using Content.Server.Atmos.Components; -using Content.Server.Atmos.EntitySystems; -using Content.Server.Body.Components; -using Content.Server.Body.Systems; -using Content.Server.Clothing.Components; -using Content.Server.IdentityManagement; -using Content.Server.Nutrition.EntitySystems; -using Content.Server.Popups; -using Content.Server.VoiceMask; -using Content.Shared.Actions; -using Content.Shared.Clothing; -using Content.Shared.Clothing.Components; -using Content.Shared.Clothing.EntitySystems; -using Content.Shared.IdentityManagement.Components; -using Content.Shared.Inventory; -using Content.Shared.Inventory.Events; - -namespace Content.Server.Clothing -{ - public sealed class MaskSystem : EntitySystem - { - [Dependency] private readonly ActionsSystem _actionSystem = default!; - [Dependency] private readonly AtmosphereSystem _atmos = default!; - [Dependency] private readonly InternalsSystem _internals = default!; - [Dependency] private readonly InventorySystem _inventorySystem = default!; - [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly IdentitySystem _identity = default!; - [Dependency] private readonly ClothingSystem _clothing = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnToggleMask); - SubscribeLocalEvent(OnGetActions); - SubscribeLocalEvent(OnGotUnequipped); - } - - private void OnGetActions(EntityUid uid, MaskComponent component, GetItemActionsEvent args) - { - if (!args.InHands) - args.AddAction(ref component.ToggleActionEntity, component.ToggleAction); - } - - private void OnToggleMask(Entity ent, ref ToggleMaskEvent args) - { - var (uid, mask) = ent; - if (mask.ToggleActionEntity == null) - return; - - if (!_inventorySystem.TryGetSlotEntity(args.Performer, "mask", out var existing) || !uid.Equals(existing)) - return; - - mask.IsToggled ^= true; - _actionSystem.SetToggled(mask.ToggleActionEntity, mask.IsToggled); - - // Pulling mask down can change identity, so we want to update that - _identity.QueueIdentityUpdate(args.Performer); - - 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); - - ToggleMaskComponents(uid, mask, args.Performer); - } - - // 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) - return; - - mask.IsToggled = false; - _actionSystem.SetToggled(mask.ToggleActionEntity, mask.IsToggled); - - ToggleMaskComponents(uid, mask, args.Equipee, true); - } - - private void ToggleMaskComponents(EntityUid uid, MaskComponent mask, EntityUid wearer, bool isEquip = false) - { - // toggle visuals - if (TryComp(uid, out var clothing)) - { - //TODO: sprites for 'pulled down' state. defaults to invisible due to no sprite with this prefix - _clothing.SetEquippedPrefix(uid, mask.IsToggled ? "toggled" : null, clothing); - } - - // shouldn't this be an event? - - // toggle ingestion blocking - if (TryComp(uid, out var blocker)) - blocker.Enabled = !mask.IsToggled; - - // toggle identity - if (TryComp(uid, out var identity)) - identity.Enabled = !mask.IsToggled; - - // toggle voice masking - if (TryComp(wearer, out var voiceMask)) - voiceMask.Enabled = !mask.IsToggled; - - // toggle breath tool connection (skip during equip since that is handled in LungSystem) - if (isEquip || !TryComp(uid, out var breathTool)) - return; - - if (mask.IsToggled) - { - _atmos.DisconnectInternals(breathTool); - } - else - { - breathTool.IsFunctional = true; - - if (TryComp(wearer, out InternalsComponent? internals)) - { - breathTool.ConnectedInternalsEntity = wearer; - _internals.ConnectBreathTool((wearer, internals), uid); - } - } - } - } -} diff --git a/Content.Server/Cluwne/CluwneSystem.cs b/Content.Server/Cluwne/CluwneSystem.cs index 9ce50137bf..c170886a80 100644 --- a/Content.Server/Cluwne/CluwneSystem.cs +++ b/Content.Server/Cluwne/CluwneSystem.cs @@ -14,6 +14,8 @@ using Content.Server.Speech.EntitySystems; using Content.Shared.Cluwne; using Content.Shared.Interaction.Components; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; namespace Content.Server.Cluwne; diff --git a/Content.Server/Commands/ActionCommands.cs b/Content.Server/Commands/ActionCommands.cs new file mode 100644 index 0000000000..280bf75a61 --- /dev/null +++ b/Content.Server/Commands/ActionCommands.cs @@ -0,0 +1,81 @@ +using Content.Server.Administration; +using Content.Shared.Actions; +using Content.Shared.Administration; +using Robust.Shared.Console; + +namespace Content.Server.Commands; + +[AdminCommand(AdminFlags.Fun)] +internal sealed class UpgradeActionCommand : IConsoleCommand +{ + [Dependency] private readonly IEntityManager _entMan = default!; + + public string Command => "upgradeaction"; + public string Description => Loc.GetString("upgradeaction-command-description"); + public string Help => Loc.GetString("upgradeaction-command-help"); + + public void Execute(IConsoleShell shell, string argStr, string[] args) + { + if (args.Length < 1) + { + shell.WriteLine(Loc.GetString("upgradeaction-command-need-one-argument")); + return; + } + + if (args.Length > 2) + { + shell.WriteLine(Loc.GetString("upgradeaction-command-max-two-arguments")); + return; + } + + var actionUpgrade = _entMan.EntitySysManager.GetEntitySystem(); + var id = args[0]; + + if (!EntityUid.TryParse(id, out var uid)) + { + shell.WriteLine(Loc.GetString("upgradeaction-command-incorrect-entityuid-format")); + return; + } + + if (!_entMan.EntityExists(uid)) + { + shell.WriteLine(Loc.GetString("upgradeaction-command-entity-does-not-exist")); + return; + } + + if (!_entMan.TryGetComponent(uid, out var actionUpgradeComponent)) + { + shell.WriteLine(Loc.GetString("upgradeaction-command-entity-is-not-action")); + return; + } + + if (args.Length == 1) + { + if (!actionUpgrade.TryUpgradeAction(uid, actionUpgradeComponent)) + { + shell.WriteLine(Loc.GetString("upgradeaction-command-cannot-level-up")); + return; + } + } + + if (args.Length == 2) + { + var levelArg = args[1]; + + if (!int.TryParse(levelArg, out var level)) + { + shell.WriteLine(Loc.GetString("upgradeaction-command-second-argument-not-number")); + return; + } + + if (level <= 0) + { + shell.WriteLine(Loc.GetString("upgradeaction-command-less-than-required-level")); + return; + } + + if (!actionUpgrade.TryUpgradeAction(uid, actionUpgradeComponent, level)) + shell.WriteLine(Loc.GetString("upgradeaction-command-cannot-level-up")); + } + } +} diff --git a/Content.Server/Connection/ConnectionManager.cs b/Content.Server/Connection/ConnectionManager.cs index 43ba601f77..c5f1dd119d 100644 --- a/Content.Server/Connection/ConnectionManager.cs +++ b/Content.Server/Connection/ConnectionManager.cs @@ -29,6 +29,7 @@ public sealed class ConnectionManager : IConnectionManager [Dependency] private readonly IServerDbManager _db = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly ILocalizationManager _loc = default!; + [Dependency] private readonly ServerDbEntryManager _serverDbEntry = default!; public void Initialize() { @@ -66,11 +67,13 @@ private async Task NetMgrOnConnecting(NetConnectingArgs e) var addr = e.IP.Address; var userId = e.UserId; + var serverId = (await _serverDbEntry.ServerEntity).Id; + if (deny != null) { var (reason, msg, banHits) = deny.Value; - var id = await _db.AddConnectionLogAsync(userId, e.UserName, addr, e.UserData.HWId, reason); + var id = await _db.AddConnectionLogAsync(userId, e.UserName, addr, e.UserData.HWId, reason, serverId); if (banHits is { Count: > 0 }) await _db.AddServerBanHitsAsync(id, banHits); @@ -78,7 +81,7 @@ private async Task NetMgrOnConnecting(NetConnectingArgs e) } else { - await _db.AddConnectionLogAsync(userId, e.UserName, addr, e.UserData.HWId, null); + await _db.AddConnectionLogAsync(userId, e.UserName, addr, e.UserData.HWId, null, serverId); if (!ServerPreferencesManager.ShouldStorePrefs(e.AuthType)) return; diff --git a/Content.Server/Construction/Commands/FixRotationsCommand.cs b/Content.Server/Construction/Commands/FixRotationsCommand.cs index bdbfaf170d..9c99035573 100644 --- a/Content.Server/Construction/Commands/FixRotationsCommand.cs +++ b/Content.Server/Construction/Commands/FixRotationsCommand.cs @@ -64,7 +64,9 @@ public void Execute(IConsoleShell shell, string argsOther, string[] args) var changed = 0; var tagSystem = _entManager.EntitySysManager.GetEntitySystem(); - foreach (var child in xformQuery.GetComponent(gridId.Value).ChildEntities) + + var enumerator = xformQuery.GetComponent(gridId.Value).ChildEnumerator; + while (enumerator.MoveNext(out var child)) { if (!_entManager.EntityExists(child)) { diff --git a/Content.Server/Construction/Commands/TileWallsCommand.cs b/Content.Server/Construction/Commands/TileWallsCommand.cs index 731d4da7f8..14d16dfb98 100644 --- a/Content.Server/Construction/Commands/TileWallsCommand.cs +++ b/Content.Server/Construction/Commands/TileWallsCommand.cs @@ -72,7 +72,8 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) var underplating = _tileDefManager[TilePrototypeId]; var underplatingTile = new Tile(underplating.TileId); var changed = 0; - foreach (var child in _entManager.GetComponent(gridId.Value).ChildEntities) + var enumerator = _entManager.GetComponent(gridId.Value).ChildEnumerator; + while (enumerator.MoveNext(out var child)) { if (!_entManager.EntityExists(child)) { diff --git a/Content.Server/Construction/Completions/DamageEntity.cs b/Content.Server/Construction/Completions/DamageEntity.cs new file mode 100644 index 0000000000..780194f2bf --- /dev/null +++ b/Content.Server/Construction/Completions/DamageEntity.cs @@ -0,0 +1,23 @@ +using Content.Shared.Construction; +using Content.Shared.Damage; +using Content.Shared.Damage.Systems; + +namespace Content.Server.Construction.Completions; + +/// +/// Damage the entity on step completion. +/// +[DataDefinition] +public sealed partial class DamageEntity : IGraphAction +{ + /// + /// Damage to deal to the entity. + /// + [DataField] + public DamageSpecifier Damage; + + public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager) + { + entityManager.System().TryChangeDamage(uid, Damage, origin: userUid); + } +} diff --git a/Content.Server/Construction/Completions/EmptyAllContainers.cs b/Content.Server/Construction/Completions/EmptyAllContainers.cs index 5b086efb4a..79de939387 100644 --- a/Content.Server/Construction/Completions/EmptyAllContainers.cs +++ b/Content.Server/Construction/Completions/EmptyAllContainers.cs @@ -3,7 +3,10 @@ using Content.Shared.Hands.Components; using JetBrains.Annotations; using Robust.Server.Containers; +using Robust.Server.GameObjects; using Robust.Shared.Containers; +using Robust.Shared.GameObjects; +using Robust.Shared.Map; namespace Content.Server.Construction.Completions { @@ -14,9 +17,15 @@ public sealed partial class EmptyAllContainers : IGraphAction /// /// Whether or not the user should attempt to pick up the removed entities. /// - [DataField("pickup")] + [DataField] public bool Pickup = false; + /// + /// Whether or not to empty the container at the user's location. + /// + [DataField] + public bool EmptyAtUser = false; + public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager) { if (!entityManager.TryGetComponent(uid, out ContainerManagerComponent? containerManager)) @@ -24,6 +33,7 @@ public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager enti var containerSys = entityManager.EntitySysManager.GetEntitySystem(); var handSys = entityManager.EntitySysManager.GetEntitySystem(); + var transformSys = entityManager.EntitySysManager.GetEntitySystem(); HandsComponent? hands = null; var pickup = Pickup && entityManager.TryGetComponent(userUid, out hands); @@ -32,6 +42,9 @@ public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager enti { foreach (var ent in containerSys.EmptyContainer(container, true, reparent: !pickup)) { + if (EmptyAtUser && userUid is not null) + transformSys.DropNextTo(ent, (EntityUid) userUid); + if (pickup) handSys.PickupOrDrop(userUid, ent, handsComp: hands); } diff --git a/Content.Server/Construction/Completions/PlaySound.cs b/Content.Server/Construction/Completions/PlaySound.cs index 9fa3c43ae4..50b705ddfe 100644 --- a/Content.Server/Construction/Completions/PlaySound.cs +++ b/Content.Server/Construction/Completions/PlaySound.cs @@ -1,6 +1,7 @@ using Content.Shared.Construction; using JetBrains.Annotations; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Random; namespace Content.Server.Construction.Completions diff --git a/Content.Server/Construction/Components/MachineFrameComponent.cs b/Content.Server/Construction/Components/MachineFrameComponent.cs index 16aba3bd17..75cc486f24 100644 --- a/Content.Server/Construction/Components/MachineFrameComponent.cs +++ b/Content.Server/Construction/Components/MachineFrameComponent.cs @@ -44,9 +44,4 @@ public sealed partial class MachineFrameComponent : Component [ViewVariables] public Container PartContainer = default!; } - - [DataDefinition] - public sealed partial class MachineDeconstructedEvent : EntityEventArgs - { - } } diff --git a/Content.Server/Construction/Components/PartExchangerComponent.cs b/Content.Server/Construction/Components/PartExchangerComponent.cs index 6cf32a5e46..a2579c92e8 100644 --- a/Content.Server/Construction/Components/PartExchangerComponent.cs +++ b/Content.Server/Construction/Components/PartExchangerComponent.cs @@ -25,5 +25,5 @@ public sealed partial class PartExchangerComponent : Component [DataField("exchangeSound")] public SoundSpecifier ExchangeSound = new SoundPathSpecifier("/Audio/Items/rped.ogg"); - public IPlayingAudioStream? AudioStream; + public EntityUid? AudioStream; } diff --git a/Content.Server/Construction/Conditions/MinSolution.cs b/Content.Server/Construction/Conditions/MinSolution.cs new file mode 100644 index 0000000000..d70e84761d --- /dev/null +++ b/Content.Server/Construction/Conditions/MinSolution.cs @@ -0,0 +1,83 @@ +using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Chemistry.Reagent; +using Content.Shared.Construction; +using Content.Shared.Examine; +using Content.Shared.FixedPoint; +using Robust.Shared.Prototypes; + +namespace Content.Server.Construction.Conditions; + +/// +/// Requires that a certain solution has a minimum amount of a reagent to proceed. +/// +[DataDefinition] +public sealed partial class MinSolution : IGraphCondition +{ + /// + /// The solution that needs to have the reagent. + /// + [DataField(required: true)] + public string Solution = string.Empty; + + /// + /// The reagent that needs to be present. + /// + [DataField(required: true)] + public ReagentId Reagent = new(); + + /// + /// How much of the reagent must be present. + /// + [DataField] + public FixedPoint2 Quantity = 1; + + public bool Condition(EntityUid uid, IEntityManager entMan) + { + var containerSys = entMan.System(); + if (!containerSys.TryGetSolution(uid, Solution, out var solution)) + return false; + + solution.TryGetReagentQuantity(Reagent, out var quantity); + return quantity >= Quantity; + } + + public bool DoExamine(ExaminedEvent args) + { + var entMan = IoCManager.Resolve(); + var uid = args.Examined; + + var containerSys = entMan.System(); + if (!containerSys.TryGetSolution(uid, Solution, out var solution)) + return false; + + solution.TryGetReagentQuantity(Reagent, out var quantity); + + // already has enough so dont show examine + if (quantity >= Quantity) + return false; + + args.PushMarkup(Loc.GetString("construction-examine-condition-min-solution", + ("quantity", Quantity - quantity), ("reagent", Name())) + "\n"); + return true; + } + + public IEnumerable GenerateGuideEntry() + { + yield return new ConstructionGuideEntry() + { + Localization = "construction-guide-condition-min-solution", + Arguments = new (string, object)[] + { + ("quantity", Quantity), + ("reagent", Name()) + } + }; + } + + private string Name() + { + var protoMan = IoCManager.Resolve(); + var proto = protoMan.Index(Reagent.Prototype); + return proto.LocalizedName; + } +} diff --git a/Content.Server/Construction/Conditions/SolutionEmpty.cs b/Content.Server/Construction/Conditions/SolutionEmpty.cs new file mode 100644 index 0000000000..d3cbd7356e --- /dev/null +++ b/Content.Server/Construction/Conditions/SolutionEmpty.cs @@ -0,0 +1,52 @@ +using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Construction; +using Content.Shared.Examine; + +namespace Content.Server.Construction.Conditions; + +/// +/// Requires that a certain solution be empty to proceed. +/// +[DataDefinition] +public sealed partial class SolutionEmpty : IGraphCondition +{ + /// + /// The solution that needs to be empty. + /// + [DataField] + public string Solution; + + public bool Condition(EntityUid uid, IEntityManager entMan) + { + var containerSys = entMan.System(); + if (!containerSys.TryGetSolution(uid, Solution, out var solution)) + return false; + + return solution.Volume == 0; + } + + public bool DoExamine(ExaminedEvent args) + { + var entMan = IoCManager.Resolve(); + var uid = args.Examined; + + var containerSys = entMan.System(); + if (!containerSys.TryGetSolution(uid, Solution, out var solution)) + return false; + + // already empty so dont show examine + if (solution.Volume == 0) + return false; + + args.PushMarkup(Loc.GetString("construction-examine-condition-solution-empty")); + return true; + } + + public IEnumerable GenerateGuideEntry() + { + yield return new ConstructionGuideEntry() + { + Localization = "construction-guide-condition-solution-empty" + }; + } +} diff --git a/Content.Server/Construction/ConstructionSystem.Guided.cs b/Content.Server/Construction/ConstructionSystem.Guided.cs index 0877ec79ba..cf6ea4da51 100644 --- a/Content.Server/Construction/ConstructionSystem.Guided.cs +++ b/Content.Server/Construction/ConstructionSystem.Guided.cs @@ -69,9 +69,16 @@ private void HandleConstructionExamined(EntityUid uid, ConstructionComponent com { if (GetTargetNode(uid, component) is {} target) { - args.PushMarkup(Loc.GetString( - "construction-component-to-create-header", - ("targetName", target.Name)) + "\n"); + if (target.Name == component.DeconstructionNode) + { + args.PushMarkup(Loc.GetString("deconstruction-header-text") + "\n"); + } + else + { + args.PushMarkup(Loc.GetString( + "construction-component-to-create-header", + ("targetName", target.Name)) + "\n"); + } } if (component.EdgeIndex == null && GetTargetEdge(uid, component) is {} targetEdge) diff --git a/Content.Server/Construction/ConstructionSystem.Initial.cs b/Content.Server/Construction/ConstructionSystem.Initial.cs index 21978f2d0c..f312308798 100644 --- a/Content.Server/Construction/ConstructionSystem.Initial.cs +++ b/Content.Server/Construction/ConstructionSystem.Initial.cs @@ -15,6 +15,7 @@ using Content.Shared.Interaction; using Content.Shared.Inventory; using Content.Shared.Storage; +using Content.Shared.Tag; using Robust.Shared.Containers; using Robust.Shared.Player; using Robust.Shared.Timing; @@ -29,6 +30,8 @@ public sealed partial class ConstructionSystem [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; [Dependency] private readonly SharedHandsSystem _handsSystem = default!; [Dependency] private readonly EntityLookupSystem _lookupSystem = default!; + [Dependency] private readonly StorageSystem _storageSystem = default!; + [Dependency] private readonly TagSystem _tagSystem = default!; // --- WARNING! LEGACY CODE AHEAD! --- // This entire file contains the legacy code for initial construction. @@ -330,6 +333,12 @@ public async Task TryStartItemConstruction(string prototype, EntityUid use return false; } + if (constructionPrototype.EntityWhitelist != null && !constructionPrototype.EntityWhitelist.IsValid(user)) + { + _popup.PopupEntity(Loc.GetString("construction-system-cannot-start"), user, user); + return false; + } + var startNode = constructionGraph.Nodes[constructionPrototype.StartNode]; var targetNode = constructionGraph.Nodes[constructionPrototype.TargetNode]; var pathFind = constructionGraph.Path(startNode.Name, targetNode.Name); @@ -383,7 +392,6 @@ public async Task TryStartItemConstruction(string prototype, EntityUid use // LEGACY CODE. See warning at the top of the file! private async void HandleStartStructureConstruction(TryStartStructureConstructionMessage ev, EntitySessionEventArgs args) { - if (!_prototypeManager.TryIndex(ev.PrototypeName, out ConstructionPrototype? constructionPrototype)) { _sawmill.Error($"Tried to start construction of invalid recipe '{ev.PrototypeName}'!"); @@ -404,6 +412,12 @@ private async void HandleStartStructureConstruction(TryStartStructureConstructio return; } + if (constructionPrototype.EntityWhitelist != null && !constructionPrototype.EntityWhitelist.IsValid(user)) + { + _popup.PopupEntity(Loc.GetString("construction-system-cannot-start"), user, user); + return; + } + if (_container.IsEntityInContainer(user)) { _popup.PopupEntity(Loc.GetString("construction-system-inside-container"), user, user); diff --git a/Content.Server/Construction/PartExchangerSystem.cs b/Content.Server/Construction/PartExchangerSystem.cs index 4b543a0247..75629146a4 100644 --- a/Content.Server/Construction/PartExchangerSystem.cs +++ b/Content.Server/Construction/PartExchangerSystem.cs @@ -10,6 +10,8 @@ using Robust.Shared.Containers; using Robust.Shared.Utility; using Content.Shared.Wires; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Collections; namespace Content.Server.Construction; @@ -34,7 +36,7 @@ private void OnDoAfter(EntityUid uid, PartExchangerComponent component, DoAfterE { if (args.Cancelled) { - component.AudioStream?.Stop(); + component.AudioStream = _audio.Stop(component.AudioStream); return; } @@ -168,7 +170,7 @@ private void OnAfterInteract(EntityUid uid, PartExchangerComponent component, Af return; } - component.AudioStream = _audio.PlayPvs(component.ExchangeSound, uid); + component.AudioStream = _audio.PlayPvs(component.ExchangeSound, uid).Value.Entity; _doAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, args.User, component.ExchangeDuration, new ExchangerDoAfterEvent(), uid, target: args.Target, used: uid) { diff --git a/Content.Server/Containers/EmptyOnMachineDeconstructSystem.cs b/Content.Server/Containers/EmptyOnMachineDeconstructSystem.cs index c0cae8fdf7..77563dd31c 100644 --- a/Content.Server/Containers/EmptyOnMachineDeconstructSystem.cs +++ b/Content.Server/Containers/EmptyOnMachineDeconstructSystem.cs @@ -1,4 +1,4 @@ -using Content.Server.Construction.Components; +using Content.Shared.Construction; using Content.Shared.Containers.ItemSlots; using JetBrains.Annotations; using Robust.Shared.Containers; diff --git a/Content.Server/Corvax/GameTicking/RoundEndedEvent.cs b/Content.Server/Corvax/GameTicking/RoundEndedEvent.cs new file mode 100644 index 0000000000..dc25631093 --- /dev/null +++ b/Content.Server/Corvax/GameTicking/RoundEndedEvent.cs @@ -0,0 +1,13 @@ +namespace Content.Server.Corvax.GameTicking; + +public sealed class RoundEndedEvent : EntityEventArgs +{ + public int RoundId { get; } + public TimeSpan RoundDuration { get; } + + public RoundEndedEvent(int roundId, TimeSpan roundDuration) + { + RoundId = roundId; + RoundDuration = roundDuration; + } +} diff --git a/Content.Server/Corvax/GameTicking/RoundStartedEvent.cs b/Content.Server/Corvax/GameTicking/RoundStartedEvent.cs new file mode 100644 index 0000000000..7a21fcef4b --- /dev/null +++ b/Content.Server/Corvax/GameTicking/RoundStartedEvent.cs @@ -0,0 +1,11 @@ +namespace Content.Server.Corvax.GameTicking; + +public sealed class RoundStartedEvent : EntityEventArgs +{ + public int RoundId { get; } + + public RoundStartedEvent(int roundId) + { + RoundId = roundId; + } +} diff --git a/Content.Server/Corvax/StationGoal/StationGoalCommand.cs b/Content.Server/Corvax/StationGoal/StationGoalCommand.cs new file mode 100644 index 0000000000..baad64d62c --- /dev/null +++ b/Content.Server/Corvax/StationGoal/StationGoalCommand.cs @@ -0,0 +1,55 @@ +using System.Linq; +using Content.Server.Administration; +using Content.Shared.Administration; +using Robust.Shared.Console; +using Robust.Shared.Prototypes; + +namespace Content.Server.Corvax.StationGoal +{ + [AdminCommand(AdminFlags.Fun)] + public sealed class StationGoalCommand : IConsoleCommand + { + public string Command => "sendstationgoal"; + public string Description => Loc.GetString("send-station-goal-command-description"); + public string Help => Loc.GetString("send-station-goal-command-help-text", ("command", Command)); + + public void Execute(IConsoleShell shell, string argStr, string[] args) + { + if (args.Length != 1) + { + shell.WriteError(Loc.GetString("shell-need-exactly-one-argument")); + return; + } + + var protoId = args[0]; + var prototypeManager = IoCManager.Resolve(); + if (!prototypeManager.TryIndex(protoId, out var proto)) + { + shell.WriteError(Loc.GetString("send-station-goal-command-error-no-goal-proto", ("id", protoId))); + return; + } + + var stationGoalPaper = IoCManager.Resolve().System(); + if (!stationGoalPaper.SendStationGoal(proto)) + { + shell.WriteError(Loc.GetString("send-station-goal-command-error-couldnt-fax")); + return; + } + } + + public CompletionResult GetCompletion(IConsoleShell shell, string[] args) + { + if (args.Length == 1) + { + var options = IoCManager.Resolve() + .EnumeratePrototypes() + .OrderBy(p => p.ID) + .Select(p => new CompletionOption(p.ID)); + + return CompletionResult.FromHintOptions(options, Loc.GetString("send-station-goal-command-arg-id")); + } + + return CompletionResult.Empty; + } + } +} diff --git a/Content.Server/Corvax/StationGoal/StationGoalPaperComponent.cs b/Content.Server/Corvax/StationGoal/StationGoalPaperComponent.cs new file mode 100644 index 0000000000..f8ee1b32f1 --- /dev/null +++ b/Content.Server/Corvax/StationGoal/StationGoalPaperComponent.cs @@ -0,0 +1,11 @@ +namespace Content.Server.Corvax.StationGoal +{ + /// + /// Paper with a written station goal in it. + /// + [RegisterComponent] + public sealed partial class StationGoalPaperComponent : Component + { + } +} + diff --git a/Content.Server/Corvax/StationGoal/StationGoalPaperSystem.cs b/Content.Server/Corvax/StationGoal/StationGoalPaperSystem.cs new file mode 100644 index 0000000000..7e370fd5de --- /dev/null +++ b/Content.Server/Corvax/StationGoal/StationGoalPaperSystem.cs @@ -0,0 +1,113 @@ +using System.Data; +using System.Text.RegularExpressions; +using Content.Server.Corvax.GameTicking; +using Content.Server.Fax; +using Content.Server.Station.Systems; +using Content.Shared.Corvax.CCCVars; +using Content.Shared.Random; +using Content.Shared.Random.Helpers; +using Robust.Shared.Configuration; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; + +namespace Content.Server.Corvax.StationGoal; + +/// +/// System for station goals +/// +public sealed class StationGoalPaperSystem : EntitySystem +{ + [Dependency] private readonly IPrototypeManager _prototype = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly FaxSystem _fax = default!; + [Dependency] private readonly IConfigurationManager _config = default!; + [Dependency] private readonly StationSystem _station = default!; + + private static readonly Regex StationIdRegex = new(@".*-(\d+)$"); + + private const string RandomPrototype = "StationGoals"; + + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnRoundStarted); + } + + + private void OnRoundStarted(RoundStartedEvent ev) + { + if (_config.GetCVar(CCCVars.StationGoalsEnabled)) + SendRandomGoal(); + } + + /// + /// Send a random station goal to all faxes which are authorized to receive it + /// + /// If the fax was successful + /// Raised when station goal types in the prototype is invalid + public bool SendRandomGoal() + { + // Get the random station goal list + if (!_prototype.TryIndex(RandomPrototype, out var goals)) + { + Log.Error($"StationGoalPaperSystem: Random station goal prototype '{RandomPrototype}' not found"); + return false; + } + + // Get a random goal + var goal = RecursiveRandom(goals); + + // Send the goal + return SendStationGoal(goal); + } + + private StationGoalPrototype RecursiveRandom(WeightedRandomPrototype random) + { + var goal = random.Pick(_random); + + if (_prototype.TryIndex(goal, out var goalPrototype)) + return goalPrototype; + + if (_prototype.TryIndex(goal, out var goalRandom)) + return RecursiveRandom(goalRandom); + + throw new Exception($"StationGoalPaperSystem: Random station goal could not be found from origin prototype {RandomPrototype}"); + } + + /// + /// Send a station goal to all faxes which are authorized to receive it + /// + /// True if at least one fax received paper + public bool SendStationGoal(StationGoalPrototype goal) + { + var enumerator = EntityManager.EntityQueryEnumerator(); + var wasSent = false; + + while (enumerator.MoveNext(out var uid, out var fax)) + { + if (!fax.ReceiveStationGoal || + !TryComp(_station.GetOwningStation(uid), out var meta)) + continue; + + var stationId = StationIdRegex.Match(meta.EntityName).Groups[1].Value; + + var printout = new FaxPrintout( + Loc.GetString("station-goal-fax-paper-header", + ("date", DateTime.Now.AddYears(1000).ToString("yyyy MMMM dd")), + ("station", string.IsNullOrEmpty(stationId) ? "???" : stationId), + ("content", goal.Text) + ), + Loc.GetString("station-goal-fax-paper-name"), + "StationGoalPaper" + ); + + _fax.Receive(uid, printout, null, fax); + + wasSent = true; + } + + return wasSent; + } +} diff --git a/Content.Server/Corvax/StationGoal/StationGoalPrototype.cs b/Content.Server/Corvax/StationGoal/StationGoalPrototype.cs new file mode 100644 index 0000000000..73289e60c9 --- /dev/null +++ b/Content.Server/Corvax/StationGoal/StationGoalPrototype.cs @@ -0,0 +1,12 @@ +using Robust.Shared.Prototypes; + +namespace Content.Server.Corvax.StationGoal +{ + [Serializable, Prototype("stationGoal")] + public sealed class StationGoalPrototype : IPrototype + { + [IdDataFieldAttribute] public string ID { get; } = default!; + + public string Text => Loc.GetString($"station-goal-{ID.ToLower()}"); + } +} diff --git a/Content.Server/Crayon/CrayonSystem.cs b/Content.Server/Crayon/CrayonSystem.cs index 16385d4d7e..32bb96e9e2 100644 --- a/Content.Server/Crayon/CrayonSystem.cs +++ b/Content.Server/Crayon/CrayonSystem.cs @@ -11,6 +11,7 @@ using Content.Shared.Interaction.Events; using Robust.Server.GameObjects; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.GameStates; using Robust.Shared.Player; using Robust.Shared.Prototypes; diff --git a/Content.Server/Damage/Systems/DamageOnHighSpeedImpactSystem.cs b/Content.Server/Damage/Systems/DamageOnHighSpeedImpactSystem.cs deleted file mode 100644 index bcd1e0423a..0000000000 --- a/Content.Server/Damage/Systems/DamageOnHighSpeedImpactSystem.cs +++ /dev/null @@ -1,56 +0,0 @@ -using Content.Server.Damage.Components; -using Content.Server.Stunnable; -using Content.Shared.Damage; -using Content.Shared.Effects; -using Robust.Shared.Audio; -using Robust.Shared.Physics.Events; -using Robust.Shared.Player; -using Robust.Shared.Random; -using Robust.Shared.Timing; - -namespace Content.Server.Damage.Systems; - -public sealed class DamageOnHighSpeedImpactSystem : EntitySystem -{ - [Dependency] private readonly IGameTiming _gameTiming = default!; - [Dependency] private readonly IRobustRandom _robustRandom = default!; - [Dependency] private readonly DamageableSystem _damageable = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly SharedColorFlashEffectSystem _color = default!; - [Dependency] private readonly StunSystem _stun = default!; - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(HandleCollide); - } - - private void HandleCollide(EntityUid uid, DamageOnHighSpeedImpactComponent component, ref StartCollideEvent args) - { - if (!args.OurFixture.Hard || !args.OtherFixture.Hard) - return; - - if (!EntityManager.HasComponent(uid)) - return; - - var speed = args.OurBody.LinearVelocity.Length(); - - if (speed < component.MinimumSpeed) - return; - - if ((_gameTiming.CurTime - component.LastHit).TotalSeconds < component.DamageCooldown) - return; - - component.LastHit = _gameTiming.CurTime; - - if (_robustRandom.Prob(component.StunChance)) - _stun.TryStun(uid, TimeSpan.FromSeconds(component.StunSeconds), true); - - var damageScale = component.SpeedDamageFactor * speed / component.MinimumSpeed; - - _damageable.TryChangeDamage(uid, component.Damage * damageScale); - - _audio.PlayPvs(component.SoundHit, uid, AudioParams.Default.WithVariation(0.125f).WithVolume(-0.125f)); - _color.RaiseEffect(Color.Red, new List() { uid }, Filter.Pvs(uid, entityManager: EntityManager)); - } -} diff --git a/Content.Server/Damage/Systems/DamageOnLandSystem.cs b/Content.Server/Damage/Systems/DamageOnLandSystem.cs index f44bfeacce..8f01e791ea 100644 --- a/Content.Server/Damage/Systems/DamageOnLandSystem.cs +++ b/Content.Server/Damage/Systems/DamageOnLandSystem.cs @@ -1,4 +1,5 @@ using Content.Server.Damage.Components; +using Content.Shared.CombatMode.Pacification; using Content.Shared.Damage; using Content.Shared.Throwing; @@ -12,6 +13,19 @@ public override void Initialize() { base.Initialize(); SubscribeLocalEvent(DamageOnLand); + SubscribeLocalEvent(OnAttemptPacifiedThrow); + } + + /// + /// Prevent Pacified entities from throwing damaging items. + /// + private void OnAttemptPacifiedThrow(Entity ent, ref AttemptPacifiedThrowEvent args) + { + // Allow healing projectiles, forbid any that do damage: + if (ent.Comp.Damage.Any()) + { + args.Cancel("pacified-cannot-throw"); + } } private void DamageOnLand(EntityUid uid, DamageOnLandComponent component, ref LandEvent args) diff --git a/Content.Server/Database/ServerDbBase.cs b/Content.Server/Database/ServerDbBase.cs index 235072603e..1edf929321 100644 --- a/Content.Server/Database/ServerDbBase.cs +++ b/Content.Server/Database/ServerDbBase.cs @@ -1,6 +1,7 @@ using System.Collections.Immutable; using System.Linq; using System.Net; +using System.Runtime.CompilerServices; using System.Text.Json; using System.Threading; using System.Threading.Tasks; @@ -20,6 +21,14 @@ namespace Content.Server.Database { public abstract class ServerDbBase { + private readonly ISawmill _opsLog; + + /// Sawmill to trace log database operations to. + public ServerDbBase(ISawmill opsLog) + { + _opsLog = opsLog; + } + #region Preferences public async Task GetPlayerPreferencesAsync(NetUserId userId) { @@ -570,7 +579,8 @@ public abstract Task AddConnectionLogAsync( string userName, IPAddress address, ImmutableArray hwId, - ConnectionDenyReason? denied); + ConnectionDenyReason? denied, + int serverId); public async Task AddServerBanHitsAsync(int connection, IEnumerable bans) { @@ -1374,7 +1384,12 @@ protected async Task> GetGroupedServerRoleBansAsNotesFor #endregion - protected abstract Task GetDb(); + protected abstract Task GetDb([CallerMemberName] string? name = null); + + protected void LogDbOp(string? name) + { + _opsLog.Verbose($"Running DB operation: {name ?? "unknown"}"); + } protected abstract class DbGuard : IAsyncDisposable { diff --git a/Content.Server/Database/ServerDbEntryManager.cs b/Content.Server/Database/ServerDbEntryManager.cs new file mode 100644 index 0000000000..193cc96175 --- /dev/null +++ b/Content.Server/Database/ServerDbEntryManager.cs @@ -0,0 +1,39 @@ +using System.Threading.Tasks; +using Content.Shared.CCVar; +using Robust.Shared.Configuration; + +namespace Content.Server.Database; + +/// +/// Stupid tiny manager whose sole purpose is keeping track of the database entry for this server. +/// +/// +/// This allows the value to be cached, +/// so it can be easily retrieved by later code that needs to log the server ID to the database. +/// +public sealed class ServerDbEntryManager +{ + [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly IServerDbManager _db = default!; + [Dependency] private readonly ILogManager _logManager = default!; + + private Task? _serverEntityTask; + + /// + /// The entity that represents this server in the database. + /// + /// + /// This value is cached when first requested. Do not re-use this entity; if you need data like the rounds, + /// request it manually with . + /// + public Task ServerEntity => _serverEntityTask ??= GetServerEntity(); + + private async Task GetServerEntity() + { + var name = _cfg.GetCVar(CCVars.AdminLogsServerName); + var server = await _db.AddOrGetServer(name); + + _logManager.GetSawmill("db").Verbose("Server name: {Name}, ID in database: {Id}", server, server.Id); + return server; + } +} diff --git a/Content.Server/Database/ServerDbManager.cs b/Content.Server/Database/ServerDbManager.cs index 8d07a5ac5e..7deeeb8e95 100644 --- a/Content.Server/Database/ServerDbManager.cs +++ b/Content.Server/Database/ServerDbManager.cs @@ -185,7 +185,8 @@ Task AddConnectionLogAsync( string userName, IPAddress address, ImmutableArray hwId, - ConnectionDenyReason? denied); + ConnectionDenyReason? denied, + int serverId); Task AddServerBanHitsAsync(int connection, IEnumerable bans); @@ -288,6 +289,10 @@ public sealed class ServerDbManager : IServerDbManager "db_write_ops", "Amount of write operations processed by the database manager."); + public static readonly Gauge DbActiveOps = Metrics.CreateGauge( + "db_executing_ops", + "Amount of active database operations. Note that some operations may be waiting for a database connection."); + [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly IResourceManager _res = default!; [Dependency] private readonly ILogManager _logMgr = default!; @@ -312,15 +317,16 @@ public void Init() _synchronous = _cfg.GetCVar(CCVars.DatabaseSynchronous); var engine = _cfg.GetCVar(CCVars.DatabaseEngine).ToLower(); + var opsLog = _logMgr.GetSawmill("db.op"); switch (engine) { case "sqlite": SetupSqlite(out var contextFunc, out var inMemory); - _db = new ServerDbSqlite(contextFunc, inMemory, _cfg, _synchronous); + _db = new ServerDbSqlite(contextFunc, inMemory, _cfg, _synchronous, opsLog); break; case "postgres": var pgOptions = CreatePostgresOptions(); - _db = new ServerDbPostgres(pgOptions, _cfg); + _db = new ServerDbPostgres(pgOptions, _cfg, opsLog); break; default: throw new InvalidDataException($"Unknown database engine {engine}."); @@ -514,10 +520,11 @@ public Task AddConnectionLogAsync( string userName, IPAddress address, ImmutableArray hwId, - ConnectionDenyReason? denied) + ConnectionDenyReason? denied, + int serverId) { DbWriteOpsMetric.Inc(); - return RunDbCommand(() => _db.AddConnectionLogAsync(userId, userName, address, hwId, denied)); + return RunDbCommand(() => _db.AddConnectionLogAsync(userId, userName, address, hwId, denied, serverId)); } public Task AddServerBanHitsAsync(int connection, IEnumerable bans) @@ -854,20 +861,27 @@ public Task MarkMessageAsSeen(int id) // as that would make things very random and undeterministic. // That only works on SQLite though, since SQLite is internally synchronous anyways. - private Task RunDbCommand(Func> command) + private async Task RunDbCommand(Func> command) { + using var _ = DbActiveOps.TrackInProgress(); + if (_synchronous) - return RunDbCommandCoreSync(command); + return await RunDbCommandCoreSync(command); - return Task.Run(command); + return await Task.Run(command); } - private Task RunDbCommand(Func command) + private async Task RunDbCommand(Func command) { + using var _ = DbActiveOps.TrackInProgress(); + if (_synchronous) - return RunDbCommandCoreSync(command); + { + await RunDbCommandCoreSync(command); + return; + } - return Task.Run(command); + await Task.Run(command); } private static T RunDbCommandCoreSync(Func command) where T : IAsyncResult diff --git a/Content.Server/Database/ServerDbPostgres.cs b/Content.Server/Database/ServerDbPostgres.cs index 3548b1d1b3..4af3c6e2ed 100644 --- a/Content.Server/Database/ServerDbPostgres.cs +++ b/Content.Server/Database/ServerDbPostgres.cs @@ -3,6 +3,7 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Net; +using System.Runtime.CompilerServices; using System.Threading; using System.Threading.Tasks; using Content.Server.Administration.Logs; @@ -20,7 +21,13 @@ public sealed class ServerDbPostgres : ServerDbBase private readonly SemaphoreSlim _prefsSemaphore; private readonly Task _dbReadyTask; - public ServerDbPostgres(DbContextOptions options, IConfigurationManager cfg) + private int _msLag; + + public ServerDbPostgres( + DbContextOptions options, + IConfigurationManager cfg, + ISawmill opsLog) + : base(opsLog) { var concurrency = cfg.GetCVar(CCVars.DatabasePgConcurrency); @@ -39,6 +46,8 @@ public ServerDbPostgres(DbContextOptions options, IConf await ctx.DisposeAsync(); } }); + + cfg.OnValueChanged(CCVars.DatabasePgFakeLag, v => _msLag = v, true); } #region Ban @@ -463,7 +472,8 @@ public override async Task AddConnectionLogAsync( string userName, IPAddress address, ImmutableArray hwId, - ConnectionDenyReason? denied) + ConnectionDenyReason? denied, + int serverId) { await using var db = await GetDbImpl(); @@ -475,6 +485,7 @@ public override async Task AddConnectionLogAsync( UserName = userName, HWId = hwId.ToArray(), Denied = denied, + ServerId = serverId }; db.PgDbContext.ConnectionLog.Add(connectionLog); @@ -520,17 +531,22 @@ WHERE to_tsvector('english'::regconfig, a.message) @@ websearch_to_tsquery('engl return db.AdminLog; } - private async Task GetDbImpl() + private async Task GetDbImpl([CallerMemberName] string? name = null) { + LogDbOp(name); + await _dbReadyTask; await _prefsSemaphore.WaitAsync(); + if (_msLag > 0) + await Task.Delay(_msLag); + return new DbGuardImpl(this, new PostgresServerDbContext(_options)); } - protected override async Task GetDb() + protected override async Task GetDb([CallerMemberName] string? name = null) { - return await GetDbImpl(); + return await GetDbImpl(name); } private sealed class DbGuardImpl : DbGuard diff --git a/Content.Server/Database/ServerDbSqlite.cs b/Content.Server/Database/ServerDbSqlite.cs index 676081c54e..1bcea6b170 100644 --- a/Content.Server/Database/ServerDbSqlite.cs +++ b/Content.Server/Database/ServerDbSqlite.cs @@ -2,6 +2,7 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Net; +using System.Runtime.CompilerServices; using System.Threading; using System.Threading.Tasks; using Content.Server.Administration.Logs; @@ -28,9 +29,13 @@ public sealed class ServerDbSqlite : ServerDbBase private int _msDelay; - public ServerDbSqlite(Func> options, + public ServerDbSqlite( + Func> options, bool inMemory, - IConfigurationManager cfg, bool synchronous) + IConfigurationManager cfg, + bool synchronous, + ISawmill opsLog) + : base(opsLog) { _options = options; @@ -413,12 +418,13 @@ protected override PlayerRecord MakePlayerRecord(Player record) DateTime.SpecifyKind(unban.UnbanTime, DateTimeKind.Utc)); } - public override async Task AddConnectionLogAsync( + public override async Task AddConnectionLogAsync( NetUserId userId, string userName, IPAddress address, ImmutableArray hwId, - ConnectionDenyReason? denied) + ConnectionDenyReason? denied, + int serverId) { await using var db = await GetDbImpl(); @@ -429,7 +435,8 @@ public override async Task AddConnectionLogAsync( UserId = userId.UserId, UserName = userName, HWId = hwId.ToArray(), - Denied = denied + Denied = denied, + ServerId = serverId }; db.SqliteDbContext.ConnectionLog.Add(connectionLog); @@ -539,8 +546,9 @@ public override async Task AddAdminMessage(AdminMessage message) return await base.AddAdminMessage(message); } - private async Task GetDbImpl() + private async Task GetDbImpl([CallerMemberName] string? name = null) { + LogDbOp(name); await _dbReadyTask; if (_msDelay > 0) await Task.Delay(_msDelay); @@ -552,9 +560,9 @@ private async Task GetDbImpl() return new DbGuardImpl(this, dbContext); } - protected override async Task GetDb() + protected override async Task GetDb([CallerMemberName] string? name = null) { - return await GetDbImpl().ConfigureAwait(false); + return await GetDbImpl(name).ConfigureAwait(false); } private sealed class DbGuardImpl : DbGuard diff --git a/Content.Server/Decals/DecalSystem.cs b/Content.Server/Decals/DecalSystem.cs index ce2e0711e7..101d077d49 100644 --- a/Content.Server/Decals/DecalSystem.cs +++ b/Content.Server/Decals/DecalSystem.cs @@ -41,6 +41,9 @@ public sealed class DecalSystem : SharedDecalSystem private static readonly Vector2 _boundsMinExpansion = new(0.01f, 0.01f); private static readonly Vector2 _boundsMaxExpansion = new(1.01f, 1.01f); + private UpdatePlayerJob _updateJob; + private List _sessions = new(); + // If this ever gets parallelised then you'll want to increase the pooled count. private ObjectPool> _chunkIndexPool = new DefaultObjectPool>( @@ -54,6 +57,12 @@ public override void Initialize() { base.Initialize(); + _updateJob = new UpdatePlayerJob() + { + System = this, + Sessions = _sessions, + }; + _playerManager.PlayerStatusChanged += OnPlayerStatusChanged; SubscribeLocalEvent(OnTileChanged); @@ -428,9 +437,18 @@ public override void Update(float frameTime) if (PvsEnabled) { - var players = _playerManager.Sessions.Where(x => x.Status == SessionStatus.InGame).ToArray(); - var opts = new ParallelOptions { MaxDegreeOfParallelism = _parMan.ParallelProcessCount }; - Parallel.ForEach(players, opts, UpdatePlayer); + _sessions.Clear(); + + foreach (var session in _playerManager.Sessions) + { + if (session.Status != SessionStatus.InGame) + continue; + + _sessions.Add(session); + } + + if (_sessions.Count > 0) + _parMan.ProcessNow(_updateJob, _sessions.Count); } _dirtyChunks.Clear(); @@ -454,11 +472,14 @@ public void UpdatePlayer(ICommonSession player) previouslySent.Remove(netGrid); // Was the grid deleted? - if (!TryGetEntity(netGrid, out var gridId) || !MapManager.IsGrid(gridId.Value)) + if (TryGetEntity(netGrid, out var gridId) && HasComp(gridId.Value)) + { + // no -> add it to the list of stale chunks staleChunks[netGrid] = oldIndices; + } else { - // If grid was deleted then don't worry about telling the client to delete the chunk. + // If the grid was deleted then don't worry about telling the client to delete the chunk. oldIndices.Clear(); _chunkIndexPool.Return(oldIndices); } @@ -561,5 +582,26 @@ private void SendChunkUpdates( ReturnToPool(updatedChunks); ReturnToPool(staleChunks); } + + #region Jobs + + /// + /// Updates per-player data for decals. + /// + private record struct UpdatePlayerJob : IParallelRobustJob + { + public int BatchSize => 2; + + public DecalSystem System; + + public List Sessions; + + public void Execute(int index) + { + System.UpdatePlayer(Sessions[index]); + } + } + + #endregion } } diff --git a/Content.Server/Defusable/Systems/DefusableSystem.cs b/Content.Server/Defusable/Systems/DefusableSystem.cs index ca5c6f5a09..c450fd04fb 100644 --- a/Content.Server/Defusable/Systems/DefusableSystem.cs +++ b/Content.Server/Defusable/Systems/DefusableSystem.cs @@ -12,6 +12,8 @@ using Content.Shared.Verbs; using Content.Shared.Wires; using Robust.Server.GameObjects; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; namespace Content.Server.Defusable.Systems; @@ -44,7 +46,7 @@ public override void Initialize() /// private void OnGetAltVerbs(EntityUid uid, DefusableComponent comp, GetVerbsEvent args) { - if (!args.CanInteract || !args.CanAccess) + if (!args.CanInteract || !args.CanAccess || args.Hands == null) return; args.Verbs.Add(new AlternativeVerb diff --git a/Content.Server/DeltaV/Biscuit/BiscuitComponent.cs b/Content.Server/DeltaV/Biscuit/BiscuitComponent.cs new file mode 100644 index 0000000000..c66ad21a6c --- /dev/null +++ b/Content.Server/DeltaV/Biscuit/BiscuitComponent.cs @@ -0,0 +1,10 @@ +using Content.Shared.DeltaV.Biscuit; + +namespace Content.Server.DeltaV.Biscuit; + +[RegisterComponent] +public sealed partial class BiscuitComponent : SharedBiscuitComponent +{ + [DataField] + public bool Cracked { get; set; } +} diff --git a/Content.Server/DeltaV/Biscuit/BiscuitSystem.cs b/Content.Server/DeltaV/Biscuit/BiscuitSystem.cs new file mode 100644 index 0000000000..53960e86dd --- /dev/null +++ b/Content.Server/DeltaV/Biscuit/BiscuitSystem.cs @@ -0,0 +1,49 @@ +using Content.Shared.Containers.ItemSlots; +using Content.Shared.DeltaV.Biscuit; +using Content.Shared.Verbs; +using Robust.Server.Audio; +using Robust.Server.GameObjects; +using Robust.Shared.Audio; + +namespace Content.Server.DeltaV.Biscuit; + +public sealed class BiscuitSystem : EntitySystem +{ + [Dependency] private readonly AppearanceSystem _appearanceSystem = default!; + [Dependency] private readonly ItemSlotsSystem _slotSystem = default!; + [Dependency] private readonly AudioSystem _audioSystem = default!; + + public override void Initialize() + { + SubscribeLocalEvent>(AddCrackVerb); + } + + private void AddCrackVerb(EntityUid uid, BiscuitComponent component, GetVerbsEvent args) + { + if (!args.CanInteract || !args.CanAccess || component.Cracked) + return; + + AlternativeVerb verb = new() + { + Act = () => + { + CrackBiscuit(uid, component); + }, + Text = Loc.GetString("biscuit-verb-crack"), + Priority = 2 + }; + args.Verbs.Add(verb); + } + + private void CrackBiscuit(EntityUid uid, BiscuitComponent component) + { + component.Cracked = true; + + _appearanceSystem.SetData(uid, BiscuitStatus.Cracked, true); + + _audioSystem.PlayPvs("/Audio/DeltaV/Effects/crack1.ogg", uid, + AudioParams.Default.WithVariation(0.2f).WithVolume(-4f)); + + _slotSystem.SetLock(uid, "PaperSlip", false); + } +} diff --git a/Content.Server/DeltaV/CartridgeLoader/CrimeAssistCartridgeComponent.cs b/Content.Server/DeltaV/CartridgeLoader/CrimeAssistCartridgeComponent.cs new file mode 100644 index 0000000000..741a613458 --- /dev/null +++ b/Content.Server/DeltaV/CartridgeLoader/CrimeAssistCartridgeComponent.cs @@ -0,0 +1,5 @@ +namespace Content.Server.DeltaV.CartridgeLoader.Cartridges; + +[RegisterComponent] +public sealed partial class CrimeAssistCartridgeComponent : Component +{ } diff --git a/Content.Server/DeltaV/CartridgeLoader/CrimeAssistCartridgeSystem.cs b/Content.Server/DeltaV/CartridgeLoader/CrimeAssistCartridgeSystem.cs new file mode 100644 index 0000000000..06732c2c53 --- /dev/null +++ b/Content.Server/DeltaV/CartridgeLoader/CrimeAssistCartridgeSystem.cs @@ -0,0 +1,16 @@ +using Content.Shared.CartridgeLoader; +using Content.Server.DeltaV.CartridgeLoader; +using Content.Server.CartridgeLoader.Cartridges; +using Content.Server.CartridgeLoader; + +namespace Content.Server.DeltaV.CartridgeLoader.Cartridges; + +public sealed class CrimeAssistCartridgeSystem : EntitySystem +{ + [Dependency] private readonly CartridgeLoaderSystem? _cartridgeLoaderSystem = default!; + + public override void Initialize() + { + base.Initialize(); + } +} diff --git a/Content.Server/DeltaV/Harpy/HarpySingerSystem.cs b/Content.Server/DeltaV/Harpy/HarpySingerSystem.cs index 2e0428af19..21b5b3a245 100644 --- a/Content.Server/DeltaV/Harpy/HarpySingerSystem.cs +++ b/Content.Server/DeltaV/Harpy/HarpySingerSystem.cs @@ -1,6 +1,8 @@ using Content.Server.Instruments; using Content.Server.Speech.Components; using Content.Server.UserInterface; +using Content.Shared.Instruments; +using Content.Shared.Instruments.UI; using Content.Shared.ActionBlocker; using Content.Shared.Damage; using Content.Shared.Damage.ForceSay; @@ -17,6 +19,7 @@ using Robust.Server.GameObjects; using Robust.Shared.Player; using Robust.Shared.Prototypes; +using Content.Shared.DeltaV.Harpy.Components; namespace Content.Server.DeltaV.Harpy { @@ -27,6 +30,7 @@ public sealed class HarpySingerSystem : EntitySystem [Dependency] private readonly InventorySystem _inventorySystem = default!; [Dependency] private readonly ActionBlockerSystem _blocker = default!; [Dependency] private readonly IPrototypeManager _prototype = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; public override void Initialize() { @@ -40,6 +44,8 @@ public override void Initialize() SubscribeLocalEvent(OnSleep); SubscribeLocalEvent(OnStatusEffect); SubscribeLocalEvent(OnDamageChanged); + SubscribeLocalEvent(OnBoundUIClosed); + SubscribeLocalEvent(OnBoundUIOpened); // This is intended to intercept the UI event and stop the MIDI UI from opening if the // singer is unable to sing. Thus it needs to run before the ActivatableUISystem. @@ -153,5 +159,24 @@ private void OnInstrumentOpen(EntityUid uid, HarpySingerComponent component, Ope if (args.Handled) _popupSystem.PopupEntity(Loc.GetString("no-sing-while-no-speak"), uid, uid, PopupType.Medium); } + + private void OnBoundUIClosed(EntityUid uid, HarpySingerComponent component, BoundUIClosedEvent args) + { + if (args.UiKey is not InstrumentUiKey) + return; + + TryComp(uid, out AppearanceComponent? appearance); + _appearance.SetData(uid, HarpyVisualLayers.Singing, SingingVisualLayer.False, appearance); + } + + private void OnBoundUIOpened(EntityUid uid, HarpySingerComponent component, BoundUIOpenedEvent args) + { + if (args.UiKey is not InstrumentUiKey) + return; + + TryComp(uid, out AppearanceComponent? appearance); + _appearance.SetData(uid, HarpyVisualLayers.Singing, SingingVisualLayer.True, appearance); + + } } } diff --git a/Content.Server/DeltaV/Implants/SubdermalBionicSyrinxImplantSystem.cs b/Content.Server/DeltaV/Implants/SubdermalBionicSyrinxImplantSystem.cs new file mode 100644 index 0000000000..65678668d7 --- /dev/null +++ b/Content.Server/DeltaV/Implants/SubdermalBionicSyrinxImplantSystem.cs @@ -0,0 +1,113 @@ +using Content.Server.Administration.Logs; +using Content.Server.Chat.Systems; +using Content.Server.Popups; +using Content.Server.VoiceMask; +using Content.Shared.Database; +using Content.Shared.Implants; +using Content.Shared.Implants.Components; +using Content.Shared.Popups; +using Content.Shared.Preferences; +using Content.Shared.Tag; +using Content.Shared.VoiceMask; +using Robust.Server.GameObjects; +using Robust.Shared.Containers; + +namespace Content.Server.Implants; + +public sealed class SubdermalBionicSyrinxImplantSystem : EntitySystem +{ + [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; + [Dependency] private readonly PopupSystem _popupSystem = default!; + [Dependency] private readonly IAdminLogManager _adminLogger = default!; + [Dependency] private readonly TagSystem _tag = default!; + + [ValidatePrototypeId] + public const string BionicSyrinxImplant = "BionicSyrinxImplant"; + + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnInsert); + SubscribeLocalEvent(OnSpeakerNameTransform); + SubscribeLocalEvent(OnChangeName); + // We need to remove the SyrinxVoiceMaskComponent from the owner before the implant + // is removed, so we need to execute before the SubdermalImplantSystem. + SubscribeLocalEvent(OnRemove, before: new[] { typeof(SubdermalImplantSystem) }); + } + + private void OnInsert(EntityUid uid, VoiceMaskerComponent component, ImplantImplantedEvent args) + { + if (!args.Implanted.HasValue || + !_tag.HasTag(args.Implant, BionicSyrinxImplant)) + return; + + var voicemask = EnsureComp(args.Implanted.Value); + voicemask.VoiceName = MetaData(args.Implanted.Value).EntityName; + Dirty(args.Implanted.Value, voicemask); + } + + private void OnRemove(EntityUid uid, VoiceMaskerComponent component, EntGotRemovedFromContainerMessage args) + { + if (!TryComp(uid, out var implanted) || implanted.ImplantedEntity == null) + return; + + RemComp(implanted.ImplantedEntity.Value); + } + + /// + /// Copy from VoiceMaskSystem, adapted to work with SyrinxVoiceMaskComponent. + /// + private void OnChangeName(EntityUid uid, SyrinxVoiceMaskComponent component, VoiceMaskChangeNameMessage message) + { + if (message.Name.Length > HumanoidCharacterProfile.MaxNameLength || message.Name.Length <= 0) + { + _popupSystem.PopupEntity(Loc.GetString("voice-mask-popup-failure"), uid, message.Session, PopupType.SmallCaution); + return; + } + + component.VoiceName = message.Name; + if (message.Session.AttachedEntity != null) + _adminLogger.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(message.Session.AttachedEntity.Value):player} set voice of {ToPrettyString(uid):mask}: {component.VoiceName}"); + else + _adminLogger.Add(LogType.Action, LogImpact.Medium, $"Voice of {ToPrettyString(uid):mask} set: {component.VoiceName}"); + + _popupSystem.PopupEntity(Loc.GetString("voice-mask-popup-success"), uid, message.Session); + TrySetLastKnownName(uid, message.Name); + UpdateUI(uid, component); + } + + /// + /// Copy from VoiceMaskSystem, adapted to work with SyrinxVoiceMaskComponent. + /// + private void TrySetLastKnownName(EntityUid implanted, string lastName) + { + if (!HasComp(implanted) + || !TryComp(implanted, out var maskComp)) + return; + + maskComp.LastSetName = lastName; + } + + /// + /// Copy from VoiceMaskSystem, adapted to work with SyrinxVoiceMaskComponent. + /// + private void UpdateUI(EntityUid owner, SyrinxVoiceMaskComponent? component = null) + { + if (!Resolve(owner, ref component, logMissing: false)) + return; + + if (_uiSystem.TryGetUi(owner, VoiceMaskUIKey.Key, out var bui)) + _uiSystem.SetUiState(bui, new VoiceMaskBuiState(component.VoiceName)); + } + + /// + /// Copy from VoiceMaskSystem, adapted to work with SyrinxVoiceMaskComponent. + /// + private void OnSpeakerNameTransform(EntityUid uid, SyrinxVoiceMaskComponent component, TransformSpeakerNameEvent args) + { + if (component.Enabled) + args.Name = component.VoiceName; + } +} diff --git a/Content.Server/DeltaV/Nutrition/Events.cs b/Content.Server/DeltaV/Nutrition/Events.cs new file mode 100644 index 0000000000..fb1b2b870b --- /dev/null +++ b/Content.Server/DeltaV/Nutrition/Events.cs @@ -0,0 +1,34 @@ +namespace Content.Server.Nutrition; + +/// +/// Raised on a food being sliced. +/// Used by deep frier to apply friedness to slices (e.g. deep fried pizza) +/// +public sealed class SliceFoodEvent : EntityEventArgs +{ + /// + /// Who did the slicing? + /// + public EntityUid User; + + /// + /// What has been sliced? + /// + /// + /// This could soon be deleted if there was not enough food left to + /// continue slicing. + /// + public EntityUid Food; + + /// + /// What is the slice? + /// + public EntityUid Slice; + + public SliceFoodEvent(EntityUid user, EntityUid food, EntityUid slice) + { + User = user; + Food = food; + Slice = slice; + } +} diff --git a/Content.Server/DeltaV/Objectives/Systems/NotJobsRequirementSystem.cs b/Content.Server/DeltaV/Objectives/Systems/NotJobsRequirementSystem.cs index e0112ddc79..4ba1500837 100644 --- a/Content.Server/DeltaV/Objectives/Systems/NotJobsRequirementSystem.cs +++ b/Content.Server/DeltaV/Objectives/Systems/NotJobsRequirementSystem.cs @@ -25,7 +25,7 @@ private void OnCheck(EntityUid uid, NotJobsRequirementComponent comp, ref Requir if (!TryComp(args.MindId, out var job)) return; foreach (string forbidJob in comp.Jobs) - if (job.PrototypeId == forbidJob) + if (job.Prototype == forbidJob) args.Cancelled = true; } } diff --git a/Content.Server/DeltaV/RoundEnd/RoundEndSystem.Pacified.cs b/Content.Server/DeltaV/RoundEnd/RoundEndSystem.Pacified.cs index 7d5d31dfb0..36615a425f 100644 --- a/Content.Server/DeltaV/RoundEnd/RoundEndSystem.Pacified.cs +++ b/Content.Server/DeltaV/RoundEnd/RoundEndSystem.Pacified.cs @@ -1,5 +1,5 @@ -using Content.Server.Emp; using Content.Server.Explosion.Components; +using Content.Server.Flash.Components; using Content.Server.GameTicking; using Content.Server.Popups; using Content.Server.Store.Components; @@ -38,19 +38,25 @@ private void OnRoundEnded(RoundEndTextAppendEvent ev) var harmQuery = EntityQueryEnumerator(); while (harmQuery.MoveNext(out var uid, out var _)) { - _entityManager.EnsureComponent(uid); + EnsureComp(uid); } - var grenadeQuery = EntityQueryEnumerator(); + var explosiveQuery = EntityQueryEnumerator(); + while (explosiveQuery.MoveNext(out var uid, out var _)) + { + RemComp(uid); + } + + var grenadeQuery = EntityQueryEnumerator(); while (grenadeQuery.MoveNext(out var uid, out var _)) { - _entityManager.RemoveComponent(uid); + RemComp(uid); } - var empQuery = EntityQueryEnumerator(); - while (empQuery.MoveNext(out var uid, out var _)) + var flashQuery = EntityQueryEnumerator(); + while (flashQuery.MoveNext(out var uid, out var _)) { - _entityManager.RemoveComponent(uid); + RemComp(uid); } var uplinkQuery = EntityQueryEnumerator(); diff --git a/Content.Server/DeltaV/Speech/Components/ScottishAccentComponent.cs b/Content.Server/DeltaV/Speech/Components/ScottishAccentComponent.cs new file mode 100644 index 0000000000..9cb83bf86d --- /dev/null +++ b/Content.Server/DeltaV/Speech/Components/ScottishAccentComponent.cs @@ -0,0 +1,8 @@ +using Content.Server.DeltaV.Speech.EntitySystems; + +namespace Content.Server.DeltaV.Speech.Components; + +[RegisterComponent] +[Access(typeof(ScottishAccentSystem))] +public sealed partial class ScottishAccentComponent : Component +{ } \ No newline at end of file diff --git a/Content.Server/DeltaV/Speech/EntitySystems/ScottishAccentSystem.cs b/Content.Server/DeltaV/Speech/EntitySystems/ScottishAccentSystem.cs new file mode 100644 index 0000000000..d17431911e --- /dev/null +++ b/Content.Server/DeltaV/Speech/EntitySystems/ScottishAccentSystem.cs @@ -0,0 +1,33 @@ +using Content.Server.DeltaV.Speech.Components; +using Content.Server.Speech; +using Content.Server.Speech.EntitySystems; +using System.Text.RegularExpressions; + +namespace Content.Server.DeltaV.Speech.EntitySystems; + +public sealed class ScottishAccentSystem : EntitySystem +{ + [Dependency] private readonly ReplacementAccentSystem _replacement = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnAccentGet); + } + + // converts left word when typed into the right word. For example typing you becomes ye. + public string Accentuate(string message, ScottishAccentComponent component) + { + var msg = message; + + msg = _replacement.ApplyReplacements(msg, "scottish"); + + return msg; + } + + private void OnAccentGet(EntityUid uid, ScottishAccentComponent component, AccentGetEvent args) + { + args.Message = Accentuate(args.Message, component); + } +} \ No newline at end of file diff --git a/Content.Server/DeltaV/StationEvents/Components/PirateRadioSpawnRuleComponent.cs b/Content.Server/DeltaV/StationEvents/Components/PirateRadioSpawnRuleComponent.cs new file mode 100644 index 0000000000..288fe2a37f --- /dev/null +++ b/Content.Server/DeltaV/StationEvents/Components/PirateRadioSpawnRuleComponent.cs @@ -0,0 +1,15 @@ +using Content.Server.StationEvents.Events; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Server.StationEvents.Components; + +[RegisterComponent, Access(typeof(PirateRadioSpawnRule))] +public sealed partial class PirateRadioSpawnRuleComponent : Component +{ + [DataField("PirateRadioShuttlePath")] + public string PirateRadioShuttlePath = "Maps/Shuttles/DeltaV/DV-pirateradio.yml"; + + [DataField("additionalRule")] + public EntityUid? AdditionalRule; +} diff --git a/Content.Server/DeltaV/StationEvents/Events/PirateRadioSpawnRule.cs b/Content.Server/DeltaV/StationEvents/Events/PirateRadioSpawnRule.cs new file mode 100644 index 0000000000..499300dfe3 --- /dev/null +++ b/Content.Server/DeltaV/StationEvents/Events/PirateRadioSpawnRule.cs @@ -0,0 +1,39 @@ +using Robust.Server.GameObjects; +using Robust.Server.Maps; +using Robust.Shared.Map; +using Content.Server.GameTicking; +using Content.Server.GameTicking.Rules; +using Content.Server.GameTicking.Rules.Components; +using Content.Server.StationEvents.Components; +using Content.Server.RoundEnd; + +namespace Content.Server.StationEvents.Events; + +public sealed class PirateRadioSpawnRule : StationEventSystem +{ + [Dependency] private readonly IMapManager _mapManager = default!; + [Dependency] private readonly MapLoaderSystem _map = default!; + [Dependency] private readonly GameTicker _gameTicker = default!; + [Dependency] private readonly TraitorRuleSystem _TraitorRuleSystem = default!; + + protected override void Started(EntityUid uid, PirateRadioSpawnRuleComponent component, GameRuleComponent gameRule, GameRuleStartedEvent args) + { + base.Started(uid, component, gameRule, args); + + var shuttleMap = _mapManager.CreateMap(); + var options = new MapLoadOptions + { + LoadMap = true, + }; + + _map.TryLoad(shuttleMap, component.PirateRadioShuttlePath, out _, options); + } + + protected override void Ended(EntityUid uid, PirateRadioSpawnRuleComponent component, GameRuleComponent gameRule, GameRuleEndedEvent args) + { + base.Ended(uid, component, gameRule, args); + + if (component.AdditionalRule != null) + GameTicker.EndGameRule(component.AdditionalRule.Value); + } +} \ No newline at end of file diff --git a/Content.Server/DeltaV/VoiceMask/SyrinxVoiceMaskComponent.cs b/Content.Server/DeltaV/VoiceMask/SyrinxVoiceMaskComponent.cs new file mode 100644 index 0000000000..97c04039f9 --- /dev/null +++ b/Content.Server/DeltaV/VoiceMask/SyrinxVoiceMaskComponent.cs @@ -0,0 +1,9 @@ +namespace Content.Server.VoiceMask; + +[RegisterComponent] +public sealed partial class SyrinxVoiceMaskComponent : Component +{ + [ViewVariables(VVAccess.ReadWrite)] public bool Enabled = true; + + [ViewVariables(VVAccess.ReadWrite)] public string VoiceName = "Unknown"; +} diff --git a/Content.Server/DeltaV/Weapons/Ranged/Components/EnergyGunComponent.cs b/Content.Server/DeltaV/Weapons/Ranged/Components/EnergyGunComponent.cs new file mode 100644 index 0000000000..ef146fd930 --- /dev/null +++ b/Content.Server/DeltaV/Weapons/Ranged/Components/EnergyGunComponent.cs @@ -0,0 +1,57 @@ +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Content.Server.DeltaV.Weapons.Ranged.Systems; + +namespace Content.Server.DeltaV.Weapons.Ranged.Components; + +/// +/// Allows for energy gun to switch between three modes. This also changes the sprite accordingly. +/// +/// This is BatteryWeaponFireModesSystem with additional changes to allow for different sprites. +[RegisterComponent] +[Access(typeof(EnergyGunSystem))] +[AutoGenerateComponentState] +public sealed partial class EnergyGunComponent : Component +{ + /// + /// A list of the different firing modes the energy gun can switch between + /// + [DataField("fireModes", required: true)] + [AutoNetworkedField] + public List FireModes = new(); + + /// + /// The currently selected firing mode + /// + [DataField("currentFireMode")] + [AutoNetworkedField] + public EnergyWeaponFireMode? CurrentFireMode = default!; +} + +[DataDefinition] +public sealed partial class EnergyWeaponFireMode +{ + /// + /// The projectile prototype associated with this firing mode + /// + [DataField("proto", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] + public string Prototype = default!; + + /// + /// The battery cost to fire the projectile associated with this firing mode + /// + [DataField("fireCost")] + public float FireCost = 100; + + /// + /// The name of the selected firemode + /// + [DataField("name")] + public string Name = string.Empty; + + /// + /// What RsiState we use for that firemode if it needs to change. + /// + [DataField("state")] + public string State = string.Empty; +} diff --git a/Content.Server/DeltaV/Weapons/Ranged/Systems/EnergyGunSystem.cs b/Content.Server/DeltaV/Weapons/Ranged/Systems/EnergyGunSystem.cs new file mode 100644 index 0000000000..96afc8cd17 --- /dev/null +++ b/Content.Server/DeltaV/Weapons/Ranged/Systems/EnergyGunSystem.cs @@ -0,0 +1,159 @@ +using Content.Server.Popups; +using Content.Server.DeltaV.Weapons.Ranged.Components; +using Content.Shared.Database; +using Content.Shared.Examine; +using Content.Shared.Interaction; +using Content.Shared.Verbs; +using Content.Shared.Item; +using Content.Shared.DeltaV.Weapons.Ranged; +using Content.Shared.Weapons.Ranged.Components; +using Robust.Shared.Prototypes; +using System.Linq; + +namespace Content.Server.DeltaV.Weapons.Ranged.Systems; + +public sealed class EnergyGunSystem : EntitySystem +{ + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly PopupSystem _popupSystem = default!; + [Dependency] private readonly SharedItemSystem _item = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnInteractHandEvent); + SubscribeLocalEvent>(OnGetVerb); + SubscribeLocalEvent(OnExamined); + } + + private void OnExamined(EntityUid uid, EnergyGunComponent component, ExaminedEvent args) + { + if (component.FireModes == null || component.FireModes.Count < 2) + return; + + if (component.CurrentFireMode == null) + { + SetFireMode(uid, component, component.FireModes.First()); + } + + if (component.CurrentFireMode?.Prototype == null) + return; + + if (!_prototypeManager.TryIndex(component.CurrentFireMode.Prototype, out var proto)) + return; + + args.PushMarkup(Loc.GetString("energygun-examine-fire-mode", ("mode", component.CurrentFireMode.Name != string.Empty ? component.CurrentFireMode.Name : proto.Name))); + } + + private void OnGetVerb(EntityUid uid, EnergyGunComponent component, GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract || args.Hands == null) + return; + + if (component.FireModes == null || component.FireModes.Count < 2) + return; + + if (component.CurrentFireMode == null) + { + SetFireMode(uid, component, component.FireModes.First()); + } + + foreach (var fireMode in component.FireModes) + { + var entProto = _prototypeManager.Index(fireMode.Prototype); + + var v = new Verb + { + Priority = 1, + Category = VerbCategory.SelectType, + Text = entProto.Name, + Disabled = fireMode == component.CurrentFireMode, + Impact = LogImpact.Low, + DoContactInteraction = true, + Act = () => + { + SetFireMode(uid, component, fireMode, args.User); + } + }; + + args.Verbs.Add(v); + } + } + + private void OnInteractHandEvent(EntityUid uid, EnergyGunComponent component, ActivateInWorldEvent args) + { + if (component.FireModes == null || component.FireModes.Count < 2) + return; + + CycleFireMode(uid, component, args.User); + } + + private void CycleFireMode(EntityUid uid, EnergyGunComponent component, EntityUid user) + { + int index = (component.CurrentFireMode != null) ? + Math.Max(component.FireModes.IndexOf(component.CurrentFireMode), 0) + 1 : 1; + + EnergyWeaponFireMode? fireMode; + + if (index >= component.FireModes.Count) + { + fireMode = component.FireModes.FirstOrDefault(); + } + + else + { + fireMode = component.FireModes[index]; + } + + SetFireMode(uid, component, fireMode, user); + } + + private void SetFireMode(EntityUid uid, EnergyGunComponent component, EnergyWeaponFireMode? fireMode, EntityUid? user = null) + { + if (fireMode?.Prototype == null) + return; + + component.CurrentFireMode = fireMode; + + if (TryComp(uid, out ProjectileBatteryAmmoProviderComponent? projectileBatteryAmmoProvider)) + { + if (!_prototypeManager.TryIndex(fireMode.Prototype, out var prototype)) + return; + + projectileBatteryAmmoProvider.Prototype = fireMode.Prototype; + projectileBatteryAmmoProvider.FireCost = fireMode.FireCost; + + if (user != null) + { + _popupSystem.PopupEntity(Loc.GetString("gun-set-fire-mode", ("mode", component.CurrentFireMode.Name != string.Empty ? component.CurrentFireMode.Name : prototype.Name)), uid, user.Value); + } + + if (component.CurrentFireMode.State == string.Empty) + return; + + if (TryComp(uid, out var _) && TryComp(uid, out var item)) + { + _item.SetHeldPrefix(uid, component.CurrentFireMode.State, item); + switch (component.CurrentFireMode.State) + { + case "disabler": + UpdateAppearance(uid, EnergyGunFireModeState.Disabler); + break; + case "lethal": + UpdateAppearance(uid, EnergyGunFireModeState.Lethal); + break; + case "special": + UpdateAppearance(uid, EnergyGunFireModeState.Special); + break; + } + } + } + } + + private void UpdateAppearance(EntityUid uid, EnergyGunFireModeState state) + { + _appearance.SetData(uid, EnergyGunFireModeVisuals.State, state); + } +} diff --git a/Content.Server/Destructible/DestructibleSystem.cs b/Content.Server/Destructible/DestructibleSystem.cs index 74e88292df..7e43e72007 100644 --- a/Content.Server/Destructible/DestructibleSystem.cs +++ b/Content.Server/Destructible/DestructibleSystem.cs @@ -15,6 +15,7 @@ using Content.Shared.Destructible; using Content.Shared.FixedPoint; using JetBrains.Annotations; +using Robust.Server.Audio; using Robust.Server.GameObjects; using Robust.Shared.Containers; using Robust.Shared.Prototypes; diff --git a/Content.Server/Destructible/Thresholds/Behaviors/PlaySoundBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/PlaySoundBehavior.cs index 74a4cdfb1b..26ba01c359 100644 --- a/Content.Server/Destructible/Thresholds/Behaviors/PlaySoundBehavior.cs +++ b/Content.Server/Destructible/Thresholds/Behaviors/PlaySoundBehavior.cs @@ -1,5 +1,6 @@ using Content.Shared.Audio; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; namespace Content.Server.Destructible.Thresholds.Behaviors diff --git a/Content.Server/DeviceLinking/Components/EdgeDetectorComponent.cs b/Content.Server/DeviceLinking/Components/EdgeDetectorComponent.cs index 603aa2aa20..0a59f98468 100644 --- a/Content.Server/DeviceLinking/Components/EdgeDetectorComponent.cs +++ b/Content.Server/DeviceLinking/Components/EdgeDetectorComponent.cs @@ -1,35 +1,34 @@ using Content.Server.DeviceLinking.Systems; using Content.Shared.DeviceLinking; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Robust.Shared.Prototypes; namespace Content.Server.DeviceLinking.Components; /// /// An edge detector that pulses high or low output ports when the input port gets a rising or falling edge respectively. /// -[RegisterComponent] -[Access(typeof(EdgeDetectorSystem))] +[RegisterComponent, Access(typeof(EdgeDetectorSystem))] public sealed partial class EdgeDetectorComponent : Component { /// /// Name of the input port. /// - [DataField("inputPort", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string InputPort = "Input"; + [DataField, ViewVariables(VVAccess.ReadWrite)] + public ProtoId InputPort = "Input"; /// /// Name of the rising edge output port. /// - [DataField("outputHighPort", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string OutputHighPort = "OutputHigh"; + [DataField, ViewVariables(VVAccess.ReadWrite)] + public ProtoId OutputHighPort = "OutputHigh"; /// /// Name of the falling edge output port. /// - [DataField("outputLowPort", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string OutputLowPort = "OutputLow"; + [DataField, ViewVariables(VVAccess.ReadWrite)] + public ProtoId OutputLowPort = "OutputLow"; // Initial state - [ViewVariables] + [DataField] public SignalState State = SignalState.Low; } diff --git a/Content.Server/DeviceLinking/Components/LogicGateComponent.cs b/Content.Server/DeviceLinking/Components/LogicGateComponent.cs index ee055c5df8..61f85934b4 100644 --- a/Content.Server/DeviceLinking/Components/LogicGateComponent.cs +++ b/Content.Server/DeviceLinking/Components/LogicGateComponent.cs @@ -2,62 +2,61 @@ using Content.Shared.DeviceLinking; using Content.Shared.Tools; using Robust.Shared.Audio; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Robust.Shared.Prototypes; namespace Content.Server.DeviceLinking.Components; /// /// A logic gate that sets its output port by doing an operation on its 2 input ports, A and B. /// -[RegisterComponent] -[Access(typeof(LogicGateSystem))] +[RegisterComponent, Access(typeof(LogicGateSystem))] public sealed partial class LogicGateComponent : Component { /// /// The logic gate operation to use. /// - [DataField("gate")] + [DataField] public LogicGate Gate = LogicGate.Or; /// /// Tool quality to use for cycling logic gate operations. /// Cannot be pulsing since linking uses that. /// - [DataField("cycleQuality", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string CycleQuality = "Screwing"; + [DataField, ViewVariables(VVAccess.ReadWrite)] + public ProtoId CycleQuality = "Screwing"; /// /// Sound played when cycling logic gate operations. /// - [DataField("cycleSound")] + [DataField] public SoundSpecifier CycleSound = new SoundPathSpecifier("/Audio/Machines/lightswitch.ogg"); /// /// Name of the first input port. /// - [DataField("inputPortA", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string InputPortA = "InputA"; + [DataField, ViewVariables(VVAccess.ReadWrite)] + public ProtoId InputPortA = "InputA"; /// /// Name of the second input port. /// - [DataField("inputPortB", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string InputPortB = "InputB"; + [DataField, ViewVariables(VVAccess.ReadWrite)] + public ProtoId InputPortB = "InputB"; /// /// Name of the output port. /// - [DataField("outputPort", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string OutputPort = "Output"; + [DataField, ViewVariables(VVAccess.ReadWrite)] + public ProtoId OutputPort = "Output"; // Initial state - [ViewVariables] + [DataField] public SignalState StateA = SignalState.Low; - [ViewVariables] + [DataField] public SignalState StateB = SignalState.Low; - [ViewVariables] + [DataField] public bool LastOutput; } diff --git a/Content.Server/DeviceLinking/Components/PowerSensorComponent.cs b/Content.Server/DeviceLinking/Components/PowerSensorComponent.cs new file mode 100644 index 0000000000..d9599546ae --- /dev/null +++ b/Content.Server/DeviceLinking/Components/PowerSensorComponent.cs @@ -0,0 +1,76 @@ +using Content.Server.DeviceLinking.Systems; +using Content.Shared.DeviceLinking; +using Content.Shared.Tools; +using Robust.Shared.Audio; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Server.DeviceLinking.Components; + +/// +/// A power sensor checks the power network it's anchored to. +/// Has 2 ports for when it is charging or discharging. They should never both be high. +/// Requires to function. +/// +[RegisterComponent, Access(typeof(PowerSensorSystem))] +public sealed partial class PowerSensorComponent : Component +{ + /// + /// Whether to check the power network's input or output battery stats. + /// Useful when working with SMESes where input and output can both be important. + /// Or with APCs where there is no output and only input. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public bool Output; + + /// + /// Tool quality to use for switching between input and output. + /// Cannot be pulsing since linking uses that. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public ProtoId SwitchQuality = "Screwing"; + + /// + /// Sound played when switching between input and output. + /// + [DataField] + public SoundSpecifier SwitchSound = new SoundPathSpecifier("/Audio/Machines/lightswitch.ogg"); + + /// + /// Name of the port set when the network is charging power. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public ProtoId ChargingPort = "PowerCharging"; + + /// + /// Name of the port set when the network is discharging power. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public ProtoId DischargingPort = "PowerDischarging"; + + /// + /// How long to wait before checking the power network. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public TimeSpan CheckDelay = TimeSpan.FromSeconds(1); + + /// + /// Time at which power will be checked. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite)] + public TimeSpan NextCheck = TimeSpan.Zero; + + /// + /// Charge the network was at, at the last check. + /// Charging/discharging is derived from this. + /// + [DataField] + public float LastCharge; + + // Initial state + [DataField] + public bool ChargingState; + + [DataField] + public bool DischargingState; +} diff --git a/Content.Server/DeviceLinking/Components/SignalTimerComponent.cs b/Content.Server/DeviceLinking/Components/SignalTimerComponent.cs index 00119b1f63..d40d7174ab 100644 --- a/Content.Server/DeviceLinking/Components/SignalTimerComponent.cs +++ b/Content.Server/DeviceLinking/Components/SignalTimerComponent.cs @@ -20,7 +20,7 @@ public sealed partial class SignalTimerComponent : Component /// The label, used for TextScreen visuals currently. /// [DataField("label"), ViewVariables(VVAccess.ReadWrite)] - public string Label = ""; + public string Label = string.Empty; /// /// The port that gets signaled when the timer triggers. diff --git a/Content.Server/DeviceLinking/Systems/DeviceLinkOverloadSystem.cs b/Content.Server/DeviceLinking/Systems/DeviceLinkOverloadSystem.cs index 8f4bade83a..8ca6fd75c2 100644 --- a/Content.Server/DeviceLinking/Systems/DeviceLinkOverloadSystem.cs +++ b/Content.Server/DeviceLinking/Systems/DeviceLinkOverloadSystem.cs @@ -1,6 +1,7 @@ using Content.Server.DeviceLinking.Components; using Content.Server.DeviceLinking.Components.Overload; using Content.Server.DeviceLinking.Events; +using Robust.Server.Audio; using Robust.Server.GameObjects; using Robust.Shared.Audio; diff --git a/Content.Server/DeviceLinking/Systems/LogicGateSystem.cs b/Content.Server/DeviceLinking/Systems/LogicGateSystem.cs index 5641b0b4ae..115285413f 100644 --- a/Content.Server/DeviceLinking/Systems/LogicGateSystem.cs +++ b/Content.Server/DeviceLinking/Systems/LogicGateSystem.cs @@ -3,9 +3,12 @@ using Content.Shared.DeviceLinking; using Content.Shared.Examine; using Content.Shared.Interaction; -using Content.Shared.Tools; using Content.Shared.Popups; -using SharedToolSystem = Content.Shared.Tools.Systems.SharedToolSystem; +using Content.Shared.Timing; +using Content.Shared.Tools; +using Content.Shared.Tools.Systems; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using SignalReceivedEvent = Content.Server.DeviceLinking.Events.SignalReceivedEvent; namespace Content.Server.DeviceLinking.Systems; @@ -17,6 +20,7 @@ public sealed class LogicGateSystem : EntitySystem [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedToolSystem _tool = default!; + [Dependency] private readonly UseDelaySystem _useDelay = default!; private readonly int GateCount = Enum.GetValues(typeof(LogicGate)).Length; @@ -69,6 +73,10 @@ private void OnInteractUsing(EntityUid uid, LogicGateComponent comp, InteractUsi if (args.Handled || !_tool.HasQuality(args.Used, comp.CycleQuality)) return; + // no sound spamming + if (TryComp(uid, out var useDelay) && _useDelay.ActiveDelay(uid, useDelay)) + return; + // cycle through possible gates var gate = (int) comp.Gate; gate = ++gate % GateCount; @@ -82,6 +90,8 @@ private void OnInteractUsing(EntityUid uid, LogicGateComponent comp, InteractUsi var msg = Loc.GetString("logic-gate-cycle", ("gate", comp.Gate.ToString().ToUpper())); _popup.PopupEntity(msg, uid, args.User); _appearance.SetData(uid, LogicGateVisuals.Gate, comp.Gate); + + _useDelay.BeginDelay(uid, useDelay); } private void OnSignalReceived(EntityUid uid, LogicGateComponent comp, ref SignalReceivedEvent args) diff --git a/Content.Server/DeviceLinking/Systems/PowerSensorSystem.cs b/Content.Server/DeviceLinking/Systems/PowerSensorSystem.cs new file mode 100644 index 0000000000..cabcabe1ae --- /dev/null +++ b/Content.Server/DeviceLinking/Systems/PowerSensorSystem.cs @@ -0,0 +1,140 @@ +using Content.Server.DeviceLinking.Components; +using Content.Server.DeviceNetwork; +using Content.Server.NodeContainer; +using Content.Server.Power.EntitySystems; +using Content.Server.Power.Nodes; +using Content.Server.Power.NodeGroups; +using Content.Shared.Examine; +using Content.Shared.Interaction; +using Content.Shared.Popups; +using Content.Shared.Power.Generator; +using Content.Shared.Timing; +using Content.Shared.Tools; +using Content.Shared.Tools.Systems; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Map; +using Robust.Shared.Timing; + +namespace Content.Server.DeviceLinking.Systems; + +public sealed class PowerSensorSystem : EntitySystem +{ + [Dependency] private readonly DeviceLinkSystem _deviceLink = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly IMapManager _mapManager = default!; + [Dependency] private readonly PowerNetSystem _powerNet = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedToolSystem _tool = default!; + [Dependency] private readonly UseDelaySystem _useDelay = default!; + + private EntityQuery _nodeQuery; + private EntityQuery _xformQuery; + + public override void Initialize() + { + base.Initialize(); + + _nodeQuery = GetEntityQuery(); + _xformQuery = GetEntityQuery(); + + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnExamined); + SubscribeLocalEvent(OnInteractUsing); + } + + public override void Update(float deltaTime) + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var comp)) + { + var now = _timing.CurTime; + if (comp.NextCheck > now) + continue; + + comp.NextCheck = now + comp.CheckDelay; + UpdateOutputs(uid, comp); + } + } + + private void OnInit(EntityUid uid, PowerSensorComponent comp, ComponentInit args) + { + _deviceLink.EnsureSourcePorts(uid, comp.ChargingPort, comp.DischargingPort); + } + + private void OnExamined(EntityUid uid, PowerSensorComponent comp, ExaminedEvent args) + { + if (!args.IsInDetailsRange) + return; + + args.PushMarkup(Loc.GetString("power-sensor-examine", ("output", comp.Output))); + } + + private void OnInteractUsing(EntityUid uid, PowerSensorComponent comp, InteractUsingEvent args) + { + if (args.Handled || !_tool.HasQuality(args.Used, comp.SwitchQuality)) + return; + + // no sound spamming + if (TryComp(uid, out var useDelay) && _useDelay.ActiveDelay(uid, useDelay)) + return; + + // switch between input and output mode. + comp.Output = !comp.Output; + + // since the battery to be checked changed the output probably has too, update it + UpdateOutputs(uid, comp); + + // notify the user + _audio.PlayPvs(comp.SwitchSound, uid); + var msg = Loc.GetString("power-sensor-switch", ("output", comp.Output)); + _popup.PopupEntity(msg, uid, args.User); + + _useDelay.BeginDelay(uid, useDelay); + } + + private void UpdateOutputs(EntityUid uid, PowerSensorComponent comp) + { + // get power stats on the power network that's been switched to + var powerSwitchable = Comp(uid); + var cable = powerSwitchable.Cables[powerSwitchable.ActiveIndex]; + var nodeContainer = Comp(uid); + var deviceNode = (CableDeviceNode) nodeContainer.Nodes[cable.Node]; + + var charge = 0f; + var chargingState = false; + var dischargingState = false; + + // update state based on the power stats retrieved from the selected power network + var xform = _xformQuery.GetComponent(uid); + _mapManager.TryGetGrid(xform.GridUid, out var grid); + var cables = deviceNode.GetReachableNodes(xform, _nodeQuery, _xformQuery, grid, EntityManager); + foreach (var node in cables) + { + if (node.NodeGroup == null) + continue; + + var group = (IBasePowerNet) node.NodeGroup; + var stats = _powerNet.GetNetworkStatistics(group.NetworkNode); + charge = comp.Output ? stats.OutStorageCurrent : stats.InStorageCurrent; + chargingState = charge > comp.LastCharge; + dischargingState = charge < comp.LastCharge; + break; + } + + comp.LastCharge = charge; + + // send new signals if changed + if (comp.ChargingState != chargingState) + { + comp.ChargingState = chargingState; + _deviceLink.SendSignal(uid, comp.ChargingPort, chargingState); + } + + if (comp.DischargingState != dischargingState) + { + comp.DischargingState = dischargingState; + _deviceLink.SendSignal(uid, comp.DischargingPort, dischargingState); + } + } +} diff --git a/Content.Server/DeviceLinking/Systems/SignalSwitchSystem.cs b/Content.Server/DeviceLinking/Systems/SignalSwitchSystem.cs index 7bcc438b92..f6469d68b9 100644 --- a/Content.Server/DeviceLinking/Systems/SignalSwitchSystem.cs +++ b/Content.Server/DeviceLinking/Systems/SignalSwitchSystem.cs @@ -2,6 +2,7 @@ using Content.Server.DeviceNetwork; using Content.Shared.Interaction; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; namespace Content.Server.DeviceLinking.Systems; diff --git a/Content.Server/DeviceLinking/Systems/SignalTimerSystem.cs b/Content.Server/DeviceLinking/Systems/SignalTimerSystem.cs index 3a7fd6bec9..ff90679e28 100644 --- a/Content.Server/DeviceLinking/Systems/SignalTimerSystem.cs +++ b/Content.Server/DeviceLinking/Systems/SignalTimerSystem.cs @@ -4,6 +4,8 @@ using Content.Shared.MachineLinking; using Content.Shared.TextScreen; using Robust.Server.GameObjects; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Timing; namespace Content.Server.DeviceLinking.Systems; @@ -50,14 +52,19 @@ private void OnAfterActivatableUIOpen(EntityUid uid, SignalTimerComponent compon } } + /// + /// Finishes a timer, triggering its main port, and removing its . + /// public void Trigger(EntityUid uid, SignalTimerComponent signalTimer) { RemComp(uid); + if (TryComp(uid, out var appearance)) + { + _appearanceSystem.SetData(uid, TextScreenVisuals.ScreenText, new string?[] { signalTimer.Label }, appearance); + } _signalSystem.InvokePort(uid, signalTimer.TriggerPort); - _appearanceSystem.SetData(uid, TextScreenVisuals.Mode, TextScreenMode.Text); - if (_ui.TryGetUi(uid, SignalTimerUiKey.Key, out var bui)) { _ui.SetUiState(bui, new SignalTimerBoundUserInterfaceState(signalTimer.Label, @@ -73,11 +80,6 @@ public void Trigger(EntityUid uid, SignalTimerComponent signalTimer) public override void Update(float frameTime) { base.Update(frameTime); - UpdateTimer(); - } - - private void UpdateTimer() - { var query = EntityQueryEnumerator(); while (query.MoveNext(out var uid, out var active, out var timer)) { @@ -86,9 +88,8 @@ private void UpdateTimer() Trigger(uid, timer); - if (timer.DoneSound == null) - continue; - _audio.PlayPvs(timer.DoneSound, uid); + if (timer.DoneSound != null) + _audio.PlayPvs(timer.DoneSound, uid); } } @@ -96,7 +97,6 @@ private void UpdateTimer() /// Checks if a UI is allowed to be sent by the user. /// /// The entity that is interacted with. - /// private bool IsMessageValid(EntityUid uid, BoundUserInterfaceMessage message) { if (message.Session.AttachedEntity is not { Valid: true } mob) @@ -108,53 +108,53 @@ private bool IsMessageValid(EntityUid uid, BoundUserInterfaceMessage message) return true; } + /// + /// Called by to both + /// change the default component label, and propagate that change to the TextScreen. + /// private void OnTextChangedMessage(EntityUid uid, SignalTimerComponent component, SignalTimerTextChangedMessage args) { if (!IsMessageValid(uid, args)) return; component.Label = args.Text[..Math.Min(5, args.Text.Length)]; - _appearanceSystem.SetData(uid, TextScreenVisuals.ScreenText, component.Label); + + if (!HasComp(uid)) + _appearanceSystem.SetData(uid, TextScreenVisuals.ScreenText, new string?[] { component.Label }); } + /// + /// Called by to change the + /// delay, and propagate that change to a textscreen. + /// private void OnDelayChangedMessage(EntityUid uid, SignalTimerComponent component, SignalTimerDelayChangedMessage args) { if (!IsMessageValid(uid, args)) return; component.Delay = args.Delay.TotalSeconds; + _appearanceSystem.SetData(uid, TextScreenVisuals.TargetTime, component.Delay); } + /// + /// Called by to instantiate an , + /// clear , propagate those changes, and invoke the start port. + /// private void OnTimerStartMessage(EntityUid uid, SignalTimerComponent component, SignalTimerStartMessage args) { if (!IsMessageValid(uid, args)) return; TryComp(uid, out var appearance); + var timer = EnsureComp(uid); + timer.TriggerTime = _gameTiming.CurTime + TimeSpan.FromSeconds(component.Delay); - if (!HasComp(uid)) + if (appearance != null) { - var activeTimer = EnsureComp(uid); - activeTimer.TriggerTime = _gameTiming.CurTime + TimeSpan.FromSeconds(component.Delay); - - if (appearance != null) - { - _appearanceSystem.SetData(uid, TextScreenVisuals.Mode, TextScreenMode.Timer, appearance); - _appearanceSystem.SetData(uid, TextScreenVisuals.TargetTime, activeTimer.TriggerTime, appearance); - _appearanceSystem.SetData(uid, TextScreenVisuals.ScreenText, component.Label, appearance); - } - - _signalSystem.InvokePort(uid, component.StartPort); + _appearanceSystem.SetData(uid, TextScreenVisuals.TargetTime, timer.TriggerTime, appearance); + _appearanceSystem.SetData(uid, TextScreenVisuals.ScreenText, new string?[] { }, appearance); } - else - { - RemComp(uid); - if (appearance != null) - { - _appearanceSystem.SetData(uid, TextScreenVisuals.Mode, TextScreenMode.Text, appearance); - _appearanceSystem.SetData(uid, TextScreenVisuals.ScreenText, component.Label, appearance); - } - } + _signalSystem.InvokePort(uid, component.StartPort); } } diff --git a/Content.Server/DeviceNetwork/Components/DeviceNetworkComponent.cs b/Content.Server/DeviceNetwork/Components/DeviceNetworkComponent.cs index 7bd89382bc..3a68fffbcc 100644 --- a/Content.Server/DeviceNetwork/Components/DeviceNetworkComponent.cs +++ b/Content.Server/DeviceNetwork/Components/DeviceNetworkComponent.cs @@ -103,11 +103,17 @@ public enum DeviceNetIdDefaults public bool SendBroadcastAttemptEvent = false; /// - /// A list of entities that get sent the when this entity gets deleted.

- /// When a device subscribes to the deletion of another device the entity id of the device being subscribed - /// to also gets saved on the subscribing device. + /// A list of device-lists that this device is on. ///
- [DataField("ShutdownSubscribers")] - public HashSet ShutdownSubscribers = new(); + [DataField] + [Access(typeof(DeviceListSystem))] + public HashSet DeviceLists = new(); + + /// + /// A list of configurators that this device is on. + /// + [DataField] + [Access(typeof(NetworkConfiguratorSystem))] + public HashSet Configurators = new(); } } diff --git a/Content.Server/DeviceNetwork/NetworkPayload.cs b/Content.Server/DeviceNetwork/NetworkPayload.cs index ae93eea048..eefbaa6eea 100644 --- a/Content.Server/DeviceNetwork/NetworkPayload.cs +++ b/Content.Server/DeviceNetwork/NetworkPayload.cs @@ -3,7 +3,7 @@ namespace Content.Server.DeviceNetwork { - public sealed class NetworkPayload : Dictionary + public sealed class NetworkPayload : Dictionary { /// /// Tries to get a value from the payload and checks if that value is of type T. diff --git a/Content.Server/DeviceNetwork/Systems/DeviceListSystem.cs b/Content.Server/DeviceNetwork/Systems/DeviceListSystem.cs index f3d1231b0f..66c1e36254 100644 --- a/Content.Server/DeviceNetwork/Systems/DeviceListSystem.cs +++ b/Content.Server/DeviceNetwork/Systems/DeviceListSystem.cs @@ -14,22 +14,32 @@ public sealed class DeviceListSystem : SharedDeviceListSystem { private ISawmill _sawmill = default!; - [Dependency] private DeviceNetworkSystem _deviceNetworkSystem = null!; + [Dependency] private readonly NetworkConfiguratorSystem _configurator = default!; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnShutdown); SubscribeLocalEvent(OnBeforeBroadcast); SubscribeLocalEvent(OnBeforePacketSent); - SubscribeLocalEvent(OnDeviceShutdown); SubscribeLocalEvent(OnMapSave); _sawmill = Logger.GetSawmill("devicelist"); } - public void OnInit(EntityUid uid, DeviceListComponent component, ComponentInit args) + private void OnShutdown(EntityUid uid, DeviceListComponent component, ComponentShutdown args) { - Dirty(component); + foreach (var conf in component.Configurators) + { + _configurator.OnDeviceListShutdown(conf, (uid, component)); + } + + var query = GetEntityQuery(); + foreach (var device in component.Devices) + { + if (query.TryGetComponent(device, out var comp)) + comp.DeviceLists.Remove(uid); + } + component.Devices.Clear(); } /// @@ -74,20 +84,6 @@ public bool ExistsInDeviceList(EntityUid uid, string address, DeviceListComponen return addresses.Contains(address); } - protected override void UpdateShutdownSubscription(EntityUid uid, List newDevices, List oldDevices) - { - foreach (var device in newDevices) - { - _deviceNetworkSystem.SubscribeToDeviceShutdown(uid, device); - } - - var removedDevices = oldDevices.Except(newDevices); - foreach (var device in removedDevices) - { - _deviceNetworkSystem.UnsubscribeFromDeviceShutdown(uid, device); - } - } - /// /// Filters the broadcasts recipient list against the device list as either an allow or deny list depending on the components IsAllowList field /// @@ -119,10 +115,14 @@ private void OnBeforePacketSent(EntityUid uid, DeviceListComponent component, Be args.Cancel(); } - private void OnDeviceShutdown(EntityUid uid, DeviceListComponent component, ref DeviceShutDownEvent args) + public void OnDeviceShutdown(Entity list, Entity device) { - component.Devices.Remove(args.ShutDownEntityUid); - Dirty(component); + device.Comp.DeviceLists.Remove(list.Owner); + if (!Resolve(list.Owner, ref list.Comp)) + return; + + list.Comp.Devices.Remove(device); + Dirty(list); } private void OnMapSave(BeforeSaveEvent ev) @@ -166,4 +166,57 @@ private void OnMapSave(BeforeSaveEvent ev) toRemove.Clear(); } } + + /// + /// Updates the device list stored on this entity. + /// + /// The entity to update. + /// The devices to store. + /// Whether to merge or replace the devices stored. + /// Device list component + public DeviceListUpdateResult UpdateDeviceList(EntityUid uid, IEnumerable devices, bool merge = false, DeviceListComponent? deviceList = null) + { + if (!Resolve(uid, ref deviceList)) + return DeviceListUpdateResult.NoComponent; + + var list = devices.ToList(); + var newDevices = new HashSet(list); + + if (merge) + newDevices.UnionWith(deviceList.Devices); + + if (newDevices.Count > deviceList.DeviceLimit) + { + return DeviceListUpdateResult.TooManyDevices; + } + + var query = GetEntityQuery(); + var oldDevices = deviceList.Devices.ToList(); + foreach (var device in oldDevices) + { + if (newDevices.Contains(device)) + continue; + + deviceList.Devices.Remove(device); + if (query.TryGetComponent(device, out var comp)) + comp.DeviceLists.Remove(uid); + } + + foreach (var device in newDevices) + { + if (!query.TryGetComponent(device, out var comp)) + continue; + + if (!deviceList.Devices.Add(device)) + continue; + + comp.DeviceLists.Add(uid); + } + + RaiseLocalEvent(uid, new DeviceListUpdateEvent(oldDevices, list)); + + Dirty(uid, deviceList); + + return DeviceListUpdateResult.UpdateOk; + } } diff --git a/Content.Server/DeviceNetwork/Systems/DeviceNetworkSystem.cs b/Content.Server/DeviceNetwork/Systems/DeviceNetworkSystem.cs index d17093c294..83967c9bbd 100644 --- a/Content.Server/DeviceNetwork/Systems/DeviceNetworkSystem.cs +++ b/Content.Server/DeviceNetwork/Systems/DeviceNetworkSystem.cs @@ -6,6 +6,7 @@ using System.Buffers; using System.Diagnostics.CodeAnalysis; using System.Numerics; +using Content.Shared.DeviceNetwork.Components; using Content.Shared.Examine; namespace Content.Server.DeviceNetwork.Systems @@ -20,6 +21,8 @@ public sealed class DeviceNetworkSystem : EntitySystem [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly IPrototypeManager _protoMan = default!; [Dependency] private readonly SharedTransformSystem _transformSystem = default!; + [Dependency] private readonly DeviceListSystem _deviceLists = default!; + [Dependency] private readonly NetworkConfiguratorSystem _configurator = default!; private readonly Dictionary _networks = new(4); private readonly Queue _queueA = new(); @@ -143,15 +146,14 @@ private DeviceNet GetNetwork(int netId) /// private void OnNetworkShutdown(EntityUid uid, DeviceNetworkComponent component, ComponentShutdown args) { - var eventArgs = new DeviceShutDownEvent(uid); - - foreach (var shutdownSubscriberId in component.ShutdownSubscribers) + foreach (var list in component.DeviceLists) { - RaiseLocalEvent(shutdownSubscriberId, ref eventArgs); + _deviceLists.OnDeviceShutdown(list, (uid, component)); + } - DeviceNetworkComponent? device = null!; - if (Resolve(shutdownSubscriberId, ref device)) - device.ShutdownSubscribers.Remove(uid); + foreach (var list in component.Configurators) + { + _configurator.OnDeviceShutdown(list, (uid, component)); } GetNetwork(component.DeviceNetId).Remove(component); @@ -267,36 +269,6 @@ public void RandomizeAddress(EntityUid uid, DeviceNetworkComponent? device = nul deviceNet.Add(device); } - public void SubscribeToDeviceShutdown( - EntityUid subscriberId, EntityUid targetId, - DeviceNetworkComponent? subscribingDevice = null, - DeviceNetworkComponent? targetDevice = null) - { - if (subscriberId == targetId) - return; - - if (!Resolve(subscriberId, ref subscribingDevice) || !Resolve(targetId, ref targetDevice)) - return; - - targetDevice.ShutdownSubscribers.Add(subscriberId); - subscribingDevice.ShutdownSubscribers.Add(targetId); - } - - public void UnsubscribeFromDeviceShutdown( - EntityUid subscriberId, EntityUid targetId, - DeviceNetworkComponent? subscribingDevice = null, - DeviceNetworkComponent? targetDevice = null) - { - if (subscriberId == targetId) - return; - - if (!Resolve(subscriberId, ref subscribingDevice) || !Resolve(targetId, ref targetDevice)) - return; - - targetDevice.ShutdownSubscribers.Remove(subscriberId); - subscribingDevice.ShutdownSubscribers.Remove(targetId); - } - /// /// Try to find a device on a network using its address. /// @@ -481,11 +453,4 @@ public DeviceNetworkPacketEvent(int netId, string? address, uint frequency, stri Data = data; } } - - /// - /// Gets raised on entities that subscribed to shutdown event of the shut down entity - /// - /// The entity that was shut down - [ByRefEvent] - public readonly record struct DeviceShutDownEvent(EntityUid ShutDownEntityUid); } diff --git a/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs b/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs index a977a44287..fefe85ce81 100644 --- a/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs +++ b/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs @@ -15,6 +15,7 @@ using Content.Shared.Popups; using Content.Shared.Verbs; using JetBrains.Annotations; +using Robust.Server.Audio; using Robust.Server.GameObjects; using Robust.Shared.Audio; using Robust.Shared.Player; @@ -42,6 +43,7 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnShutdown); //Interaction SubscribeLocalEvent(AfterInteract); //TODO: Replace with utility verb? @@ -65,6 +67,15 @@ public override void Initialize() SubscribeLocalEvent(OnComponentRemoved); } + private void OnShutdown(EntityUid uid, NetworkConfiguratorComponent component, ComponentShutdown args) + { + ClearDevices(uid, component); + + if (TryComp(component.ActiveDeviceList, out DeviceListComponent? list)) + list.Configurators.Remove(uid); + component.ActiveDeviceList = null; + } + public override void Update(float frameTime) { base.Update(frameTime); @@ -84,7 +95,6 @@ public override void Update(float frameTime) private void OnMapInit(EntityUid uid, NetworkConfiguratorComponent component, MapInitEvent args) { - component.Devices.Clear(); UpdateListUiState(uid, component); } @@ -130,6 +140,7 @@ private void TryAddNetworkDevice(EntityUid configuratorUid, EntityUid? targetUid return; } + device.Configurators.Add(configuratorUid); configurator.Devices.Add(address, targetUid.Value); _popupSystem.PopupCursor(Loc.GetString("network-configurator-device-saved", ("address", device.Address), ("device", targetUid)), userUid, PopupType.Medium); @@ -461,14 +472,21 @@ private void UpdateLinkUiState(EntityUid configuratorUid, EntityUid sourceUid, E /// private void OpenDeviceListUi(EntityUid configuratorUid, EntityUid? targetUid, EntityUid userUid, NetworkConfiguratorComponent configurator) { + if (configurator.ActiveDeviceLink == targetUid) + return; + if (Delay(configurator)) return; if (!targetUid.HasValue || !TryComp(userUid, out ActorComponent? actor) || !AccessCheck(targetUid.Value, userUid, configurator)) return; + if (!TryComp(targetUid, out DeviceListComponent? list)) + return; + + list.Configurators.Add(configuratorUid); configurator.ActiveDeviceList = targetUid; - Dirty(configurator); + Dirty(configuratorUid, configurator); if (!_uiSystem.TryGetUi(configuratorUid, NetworkConfiguratorUiKey.Configure, out var bui)) return; @@ -515,6 +533,10 @@ private void UpdateListUiState(EntityUid uid, NetworkConfiguratorComponent compo private void OnUiClosed(EntityUid uid, NetworkConfiguratorComponent component, BoundUIClosedEvent args) { component.ActiveDeviceList = null; + if (TryComp(component.ActiveDeviceList, out DeviceListComponent? list)) + { + list.Configurators.Remove(uid); + } if (args.UiKey is NetworkConfiguratorUiKey.Link) { @@ -523,15 +545,28 @@ private void OnUiClosed(EntityUid uid, NetworkConfiguratorComponent component, B } } + public void OnDeviceListShutdown(Entity conf, Entity list) + { + list.Comp.Configurators.Remove(conf.Owner); + if (Resolve(conf.Owner, ref conf.Comp)) + conf.Comp.ActiveDeviceList = null; + } + /// /// Removes a device from the saved devices list /// private void OnRemoveDevice(EntityUid uid, NetworkConfiguratorComponent component, NetworkConfiguratorRemoveDeviceMessage args) { if (component.Devices.TryGetValue(args.Address, out var removedDevice) && args.Session.AttachedEntity != null) + { _adminLogger.Add(LogType.DeviceLinking, LogImpact.Low, $"{ToPrettyString(args.Session.AttachedEntity.Value):actor} removed buffered device {ToPrettyString(removedDevice):subject} from {ToPrettyString(uid):tool}"); + } + component.Devices.Remove(args.Address); + if (TryComp(removedDevice, out DeviceNetworkComponent? device)) + device.Configurators.Remove(uid); + UpdateListUiState(uid, component); } @@ -543,10 +578,24 @@ private void OnClearDevice(EntityUid uid, NetworkConfiguratorComponent component if (args.Session.AttachedEntity != null) _adminLogger.Add(LogType.DeviceLinking, LogImpact.Low, $"{ToPrettyString(args.Session.AttachedEntity.Value):actor} cleared buffered devices from {ToPrettyString(uid):tool}"); - component.Devices.Clear(); + + + ClearDevices(uid, component); UpdateListUiState(uid, component); } + private void ClearDevices(EntityUid uid, NetworkConfiguratorComponent component) + { + var query = GetEntityQuery(); + foreach (var device in component.Devices.Values) + { + if (query.TryGetComponent(device, out var comp)) + comp.Configurators.Remove(uid); + } + + component.Devices.Clear(); + } + private void OnClearLinks(EntityUid uid, NetworkConfiguratorComponent configurator, NetworkConfiguratorClearLinksMessage args) { if (!configurator.ActiveDeviceLink.HasValue || !configurator.DeviceLinkTarget.HasValue) @@ -701,7 +750,18 @@ private void OnConfigButtonPressed(EntityUid uid, NetworkConfiguratorComponent c if (args.Session.AttachedEntity != null) _adminLogger.Add(LogType.DeviceLinking, LogImpact.Low, $"{ToPrettyString(args.Session.AttachedEntity.Value):actor} copied devices from {ToPrettyString(component.ActiveDeviceList.Value):subject} to {ToPrettyString(uid):tool}"); - component.Devices = _deviceListSystem.GetDeviceList(component.ActiveDeviceList.Value); + + ClearDevices(uid, component); + + var query = GetEntityQuery(); + foreach (var (addr, device) in _deviceListSystem.GetDeviceList(component.ActiveDeviceList.Value)) + { + if (query.TryGetComponent(device, out var comp)) + { + component.Devices[addr] = device; + comp.Configurators.Add(uid); + } + } UpdateListUiState(uid, component); return; case NetworkConfiguratorButtonKey.Show: @@ -724,6 +784,21 @@ private void OnConfigButtonPressed(EntityUid uid, NetworkConfiguratorComponent c .Select(v => (v.Key, MetaData(v.Value).EntityName)).ToHashSet())); } + public void OnDeviceShutdown(Entity conf, Entity device) + { + device.Comp.Configurators.Remove(conf.Owner); + if (!Resolve(conf.Owner, ref conf.Comp)) + return; + + foreach (var (addr, dev) in conf.Comp.Devices) + { + if (device.Owner == dev) + conf.Comp.Devices.Remove(addr); + } + + UpdateListUiState(conf, conf.Comp); + } + private void OnUiOpenAttempt(EntityUid uid, NetworkConfiguratorComponent configurator, ActivatableUIOpenAttemptEvent args) { if (configurator.LinkModeActive) diff --git a/Content.Server/Dice/DiceSystem.cs b/Content.Server/Dice/DiceSystem.cs index beb2a28489..2d13679bd0 100644 --- a/Content.Server/Dice/DiceSystem.cs +++ b/Content.Server/Dice/DiceSystem.cs @@ -1,6 +1,8 @@ using Content.Shared.Dice; using Content.Shared.Popups; using JetBrains.Annotations; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Random; namespace Content.Server.Dice; diff --git a/Content.Server/Discord/DiscordWebhook.cs b/Content.Server/Discord/DiscordWebhook.cs index d8a9318444..ace5766764 100644 --- a/Content.Server/Discord/DiscordWebhook.cs +++ b/Content.Server/Discord/DiscordWebhook.cs @@ -1,5 +1,7 @@ -using System.Net.Http; +using System.Net.Http; using System.Net.Http.Json; +using System.Text.Json; +using System.Text.Json.Serialization; using System.Threading.Tasks; namespace Content.Server.Discord; @@ -66,7 +68,7 @@ public async void TryGetWebhook(string url, Action onComplete) public async Task CreateMessage(WebhookIdentifier identifier, WebhookPayload payload) { var url = $"{GetUrl(identifier)}?wait=true"; - return await _http.PostAsJsonAsync(url, payload); + return await _http.PostAsJsonAsync(url, payload, new JsonSerializerOptions { DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull }); } /// @@ -91,7 +93,7 @@ public async Task DeleteMessage(WebhookIdentifier identifie public async Task EditMessage(WebhookIdentifier identifier, ulong messageId, WebhookPayload payload) { var url = $"{GetUrl(identifier)}/messages/{messageId}"; - return await _http.PatchAsJsonAsync(url, payload); + return await _http.PatchAsJsonAsync(url, payload, new JsonSerializerOptions { DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull }); } void IPostInjectInit.PostInject() diff --git a/Content.Server/Discord/WebhookEmbed.cs b/Content.Server/Discord/WebhookEmbed.cs index 8e0db0722c..25083e4895 100644 --- a/Content.Server/Discord/WebhookEmbed.cs +++ b/Content.Server/Discord/WebhookEmbed.cs @@ -1,10 +1,13 @@ -using System.Text.Json.Serialization; +using System.Text.Json.Serialization; namespace Content.Server.Discord; // https://discord.com/developers/docs/resources/channel#embed-object-embed-structure public struct WebhookEmbed { + [JsonPropertyName("title")] + public string Title { get; set; } = ""; + [JsonPropertyName("description")] public string Description { get; set; } = ""; @@ -14,6 +17,10 @@ public struct WebhookEmbed [JsonPropertyName("footer")] public WebhookEmbedFooter? Footer { get; set; } = null; + + [JsonPropertyName("fields")] + public List Fields { get; set; } = default!; + public WebhookEmbed() { } diff --git a/Content.Server/Discord/WebhookEmbedField.cs b/Content.Server/Discord/WebhookEmbedField.cs new file mode 100644 index 0000000000..5c03c84899 --- /dev/null +++ b/Content.Server/Discord/WebhookEmbedField.cs @@ -0,0 +1,20 @@ +using System.Text.Json.Serialization; + +namespace Content.Server.Discord; + +// https://discord.com/developers/docs/resources/channel#embed-object-embed-field-structure +public struct WebhookEmbedField +{ + [JsonPropertyName("name")] + public string Name { get; set; } = ""; + + [JsonPropertyName("value")] + public string Value { get; set; } = ""; + + [JsonPropertyName("inline")] + public bool Inline { get; set; } = true; + + public WebhookEmbedField() + { + } +} diff --git a/Content.Server/Discord/WebhookMentions.cs b/Content.Server/Discord/WebhookMentions.cs index da945b363e..e28726990f 100644 --- a/Content.Server/Discord/WebhookMentions.cs +++ b/Content.Server/Discord/WebhookMentions.cs @@ -1,4 +1,4 @@ -using System.Text.Json.Serialization; +using System.Text.Json.Serialization; namespace Content.Server.Discord; diff --git a/Content.Server/Discord/WebhookPayload.cs b/Content.Server/Discord/WebhookPayload.cs index 6300f86ad5..fdf5f48444 100644 --- a/Content.Server/Discord/WebhookPayload.cs +++ b/Content.Server/Discord/WebhookPayload.cs @@ -1,4 +1,4 @@ -using System.Text.Json.Serialization; +using System.Text.Json.Serialization; namespace Content.Server.Discord; @@ -9,13 +9,13 @@ public struct WebhookPayload /// The message to send in the webhook. Maximum of 2000 characters. /// [JsonPropertyName("content")] - public string Content { get; set; } = ""; + public string? Content { get; set; } [JsonPropertyName("username")] public string? Username { get; set; } [JsonPropertyName("avatar_url")] - public string? AvatarUrl { get; set; } = ""; + public string? AvatarUrl { get; set; } [JsonPropertyName("embeds")] public List? Embeds { get; set; } = null; diff --git a/Content.Server/Disposal/Tube/Components/DisposalSignalRouterComponent.cs b/Content.Server/Disposal/Tube/Components/DisposalSignalRouterComponent.cs new file mode 100644 index 0000000000..b4ef81d898 --- /dev/null +++ b/Content.Server/Disposal/Tube/Components/DisposalSignalRouterComponent.cs @@ -0,0 +1,36 @@ +using Content.Server.Disposal.Tube.Systems; +using Content.Shared.DeviceLinking; +using Robust.Shared.Prototypes; + +namespace Content.Server.Disposal.Tube.Components; + +/// +/// Requires to function. +/// +[RegisterComponent, Access(typeof(DisposalSignalRouterSystem))] +public sealed partial class DisposalSignalRouterComponent : Component +{ + /// + /// Whether to route items to the side or not. + /// + [DataField] + public bool Routing; + + /// + /// Port that sets the router to send items to the side. + /// + [DataField] + public ProtoId OnPort = "On"; + + /// + /// Port that sets the router to send items ahead. + /// + [DataField] + public ProtoId OffPort = "Off"; + + /// + /// Port that toggles the router between sending items to the side and ahead. + /// + [DataField] + public ProtoId TogglePort = "Toggle"; +} diff --git a/Content.Server/Disposal/Tube/Components/DisposalTubeComponent.cs b/Content.Server/Disposal/Tube/Components/DisposalTubeComponent.cs index 8b3cd4720d..c16f1fcc22 100644 --- a/Content.Server/Disposal/Tube/Components/DisposalTubeComponent.cs +++ b/Content.Server/Disposal/Tube/Components/DisposalTubeComponent.cs @@ -1,30 +1,38 @@ -using System.Linq; -using Content.Server.Disposal.Unit.Components; using Content.Server.Disposal.Unit.EntitySystems; -using Content.Shared.Construction.Components; -using Content.Shared.Popups; +using Content.Shared.Damage; using Robust.Shared.Audio; using Robust.Shared.Containers; -namespace Content.Server.Disposal.Tube.Components +namespace Content.Server.Disposal.Tube.Components; + +[RegisterComponent] +[Access(typeof(DisposalTubeSystem), typeof(DisposableSystem))] +public sealed partial class DisposalTubeComponent : Component { - [RegisterComponent] - [Access(typeof(DisposalTubeSystem), typeof(DisposableSystem))] - public sealed partial class DisposalTubeComponent : Component - { - [DataField("containerId")] public string ContainerId { get; set; } = "DisposalTube"; + [DataField] + public string ContainerId = "DisposalTube"; - public static readonly TimeSpan ClangDelay = TimeSpan.FromSeconds(0.5); - public TimeSpan LastClang; + [ViewVariables] + public bool Connected; - public bool Connected; - [DataField("clangSound")] public SoundSpecifier ClangSound = new SoundPathSpecifier("/Audio/Effects/clang.ogg"); + [DataField] + public SoundSpecifier ClangSound = new SoundPathSpecifier("/Audio/Effects/clang.ogg", AudioParams.Default.WithVolume(-5f)); - /// - /// Container of entities that are currently inside this tube - /// - [ViewVariables] - [Access(typeof(DisposalTubeSystem), typeof(DisposableSystem))] - public Container Contents { get; set; } = default!; - } + /// + /// Container of entities that are currently inside this tube + /// + [ViewVariables] + public Container Contents = default!; + + /// + /// Damage dealt to containing entities on every turn + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public DamageSpecifier DamageOnTurn = new() + { + DamageDict = new() + { + { "Blunt", 0.0 }, + } + }; } diff --git a/Content.Server/Disposal/Tube/DisposalTubeSystem.cs b/Content.Server/Disposal/Tube/DisposalTubeSystem.cs index 477a167fa2..2bf00c5008 100644 --- a/Content.Server/Disposal/Tube/DisposalTubeSystem.cs +++ b/Content.Server/Disposal/Tube/DisposalTubeSystem.cs @@ -13,6 +13,7 @@ using Content.Shared.Movement.Events; using Robust.Server.GameObjects; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Map; using Robust.Shared.Physics; @@ -44,7 +45,6 @@ public override void Initialize() SubscribeLocalEvent(OnComponentRemove); SubscribeLocalEvent(OnAnchorChange); - SubscribeLocalEvent(OnRelayMovement); SubscribeLocalEvent(OnBreak); SubscribeLocalEvent(OnStartup); SubscribeLocalEvent(OnDeconstruct); @@ -278,17 +278,6 @@ private void OnStartup(EntityUid uid, DisposalTubeComponent component, Component UpdateAnchored(uid, component, Transform(uid).Anchored); } - private void OnRelayMovement(EntityUid uid, DisposalTubeComponent component, ref ContainerRelayMovementEntityEvent args) - { - if (_gameTiming.CurTime < component.LastClang + DisposalTubeComponent.ClangDelay) - { - return; - } - - component.LastClang = _gameTiming.CurTime; - _audioSystem.PlayPvs(component.ClangSound, uid); - } - private void OnBreak(EntityUid uid, DisposalTubeComponent component, BreakageEventArgs args) { DisconnectTube(uid, component); diff --git a/Content.Server/Disposal/Tube/Systems/DisposalSignalRouterSystem.cs b/Content.Server/Disposal/Tube/Systems/DisposalSignalRouterSystem.cs new file mode 100644 index 0000000000..3a9fdbbf8d --- /dev/null +++ b/Content.Server/Disposal/Tube/Systems/DisposalSignalRouterSystem.cs @@ -0,0 +1,52 @@ +using Content.Server.DeviceLinking.Events; +using Content.Server.DeviceLinking.Systems; +using Content.Server.Disposal.Tube; +using Content.Server.Disposal.Tube.Components; + +namespace Content.Server.Disposal.Tube.Systems; + +/// +/// Handles signals and the routing get next direction event. +/// +public sealed class DisposalSignalRouterSystem : EntitySystem +{ + [Dependency] private readonly DeviceLinkSystem _deviceLink = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnSignalReceived); + SubscribeLocalEvent(OnGetNextDirection, after: new[] { typeof(DisposalTubeSystem) }); + } + + private void OnInit(EntityUid uid, DisposalSignalRouterComponent comp, ComponentInit args) + { + _deviceLink.EnsureSinkPorts(uid, comp.OnPort, comp.OffPort, comp.TogglePort); + } + + private void OnSignalReceived(EntityUid uid, DisposalSignalRouterComponent comp, ref SignalReceivedEvent args) + { + // TogglePort flips it + // OnPort sets it to true + // OffPort sets it to false + comp.Routing = args.Port == comp.TogglePort + ? !comp.Routing + : args.Port == comp.OnPort; + } + + private void OnGetNextDirection(EntityUid uid, DisposalSignalRouterComponent comp, ref GetDisposalsNextDirectionEvent args) + { + if (!comp.Routing) + { + args.Next = Transform(uid).LocalRotation.GetDir(); + return; + } + + // use the junction side direction when a tag matches + var ev = new GetDisposalsConnectableDirectionsEvent(); + RaiseLocalEvent(uid, ref ev); + args.Next = ev.Connectable[1]; + } +} diff --git a/Content.Server/Disposal/Unit/EntitySystems/DisposableSystem.cs b/Content.Server/Disposal/Unit/EntitySystems/DisposableSystem.cs index 3edc2a5fa7..59aa832f6a 100644 --- a/Content.Server/Disposal/Unit/EntitySystems/DisposableSystem.cs +++ b/Content.Server/Disposal/Unit/EntitySystems/DisposableSystem.cs @@ -4,30 +4,50 @@ using Content.Server.Disposal.Tube.Components; using Content.Server.Disposal.Unit.Components; using Content.Shared.Body.Components; -using Content.Shared.Disposal.Components; +using Content.Shared.Damage; using Content.Shared.Item; -using JetBrains.Annotations; +using Content.Shared.Throwing; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; -using Robust.Shared.Map; +using Robust.Shared.Map.Components; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; +using Robust.Shared.Random; namespace Content.Server.Disposal.Unit.EntitySystems { public sealed class DisposableSystem : EntitySystem { - [Dependency] private readonly IMapManager _mapManager = default!; + [Dependency] private readonly ThrowingSystem _throwing = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; + [Dependency] private readonly DamageableSystem _damageable = default!; [Dependency] private readonly DisposalUnitSystem _disposalUnitSystem = default!; [Dependency] private readonly DisposalTubeSystem _disposalTubeSystem = default!; - [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; - [Dependency] private readonly SharedPhysicsSystem _physicsSystem = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedContainerSystem _containerSystem = default!; + [Dependency] private readonly SharedMapSystem _maps = default!; + [Dependency] private readonly SharedPhysicsSystem _physicsSystem = default!; [Dependency] private readonly SharedTransformSystem _xformSystem = default!; + private EntityQuery _disposalTubeQuery; + private EntityQuery _disposalUnitQuery; + private EntityQuery _metaQuery; + private EntityQuery _physicsQuery; + private EntityQuery _xformQuery; + + private List _entList = new(); + public override void Initialize() { base.Initialize(); + _disposalTubeQuery = GetEntityQuery(); + _disposalUnitQuery = GetEntityQuery(); + _metaQuery = GetEntityQuery(); + _physicsQuery = GetEntityQuery(); + _xformQuery = GetEntityQuery(); + SubscribeLocalEvent(OnComponentStartup); } @@ -46,7 +66,7 @@ public bool TryInsert(EntityUid uid, EntityUid toInsert, DisposalHolderComponent if (!holder.Container.Insert(toInsert, EntityManager)) return false; - if (TryComp(toInsert, out var physBody)) + if (_physicsQuery.TryGetComponent(toInsert, out var physBody)) _physicsSystem.SetCanCollide(toInsert, false, body: physBody); return true; @@ -86,11 +106,12 @@ public void ExitDisposals(EntityUid uid, DisposalHolderComponent? holder = null, EntityUid? disposalId = null; DisposalUnitComponent? duc = null; - if (_mapManager.TryGetGrid(holderTransform.GridUid, out var grid)) + var gridUid = holderTransform.GridUid; + if (TryComp(gridUid, out var grid)) { - foreach (var contentUid in grid.GetLocal(holderTransform.Coordinates)) + foreach (var contentUid in _maps.GetLocal(gridUid.Value, grid, holderTransform.Coordinates)) { - if (EntityManager.TryGetComponent(contentUid, out duc)) + if (_disposalUnitQuery.TryGetComponent(contentUid, out duc)) { disposalId = contentUid; break; @@ -98,25 +119,32 @@ public void ExitDisposals(EntityUid uid, DisposalHolderComponent? holder = null, } } - foreach (var entity in holder.Container.ContainedEntities.ToArray()) + _entList.Clear(); + _entList.AddRange(holder.Container.ContainedEntities); + + foreach (var entity in _entList) { RemComp(entity); - var meta = MetaData(entity); + var meta = _metaQuery.GetComponent(entity); holder.Container.Remove(entity, EntityManager, meta: meta, reparent: false, force: true); - var xform = Transform(entity); + var xform = _xformQuery.GetComponent(entity); if (xform.ParentUid != uid) continue; if (duc != null) duc.Container.Insert(entity, EntityManager, xform, meta: meta); else + { _xformSystem.AttachToGridOrMap(entity, xform); - if (EntityManager.TryGetComponent(entity, out PhysicsComponent? physics)) - { - _physicsSystem.WakeBody(entity, body: physics); + if (holder.PreviousDirection != Direction.Invalid && _xformQuery.TryGetComponent(xform.ParentUid, out var parentXform)) + { + var direction = holder.PreviousDirection.ToAngle(); + direction += _xformSystem.GetWorldRotation(parentXform); + _throwing.TryThrow(entity, direction.ToWorldVec() * 3f, 10f); + } } } @@ -182,6 +210,17 @@ public bool EnterTube(EntityUid holderUid, EntityUid toUid, DisposalHolderCompon ExitDisposals(holderUid, holder, holderTransform); return false; } + + // damage entities on turns and play sound + if (holder.CurrentDirection != holder.PreviousDirection) + { + foreach (var ent in holder.Container.ContainedEntities) + { + _damageable.TryChangeDamage(ent, to.DamageOnTurn); + } + _audio.PlayPvs(to.ClangSound, toUid); + } + return true; } @@ -217,7 +256,7 @@ private void UpdateComp(EntityUid uid, DisposalHolderComponent holder, float fra if (holder.TimeLeft > 0) { var progress = 1 - holder.TimeLeft / holder.StartingTime; - var origin = Transform(currentTube).Coordinates; + var origin = _xformQuery.GetComponent(currentTube).Coordinates; var destination = holder.CurrentDirection.ToVec(); var newPosition = destination * progress; @@ -228,7 +267,7 @@ private void UpdateComp(EntityUid uid, DisposalHolderComponent holder, float fra // Past this point, we are performing inter-tube transfer! // Remove current tube content - Comp(currentTube).Contents.Remove(uid, reparent: false, force: true); + _disposalTubeQuery.GetComponent(currentTube).Contents.Remove(uid, reparent: false, force: true); // Find next tube var nextTube = _disposalTubeSystem.NextTubeFor(currentTube, holder.CurrentDirection); diff --git a/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs b/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs index 0e56d0fb18..659566ca43 100644 --- a/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs +++ b/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs @@ -26,6 +26,7 @@ using Content.Shared.Popups; using Content.Shared.Throwing; using Content.Shared.Verbs; +using Robust.Server.Audio; using Robust.Server.GameObjects; using Robust.Shared.Containers; using Robust.Shared.GameStates; @@ -45,6 +46,7 @@ public sealed class DisposalUnitSystem : SharedDisposalUnitSystem [Dependency] private readonly ActionBlockerSystem _actionBlockerSystem = default!; [Dependency] private readonly AppearanceSystem _appearance = default!; [Dependency] private readonly AtmosphereSystem _atmosSystem = default!; + [Dependency] private readonly AudioSystem _audioSystem = default!; [Dependency] private readonly DisposalTubeSystem _disposalTubeSystem = default!; [Dependency] private readonly EntityLookupSystem _lookup = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; @@ -304,14 +306,24 @@ private void OnAfterInteractUsing(EntityUid uid, SharedDisposalUnitComponent com ///
private void OnThrowCollide(EntityUid uid, SharedDisposalUnitComponent component, ThrowHitByEvent args) { - if (!CanInsert(uid, component, args.Thrown) || - _robustRandom.NextDouble() > 0.75 || - !component.Container.Insert(args.Thrown)) + var canInsert = CanInsert(uid, component, args.Thrown); + var randDouble = _robustRandom.NextDouble(); + + if (!canInsert || randDouble > 0.75) { + _audioSystem.PlayPvs(component.MissSound, uid); + _popupSystem.PopupEntity(Loc.GetString("disposal-unit-thrown-missed"), uid); return; } + var inserted = _containerSystem.Insert(args.Thrown, component.Container); + + if (!inserted) + { + throw new InvalidOperationException("Container insertion failed but CanInsert returned true"); + } + if (args.Component.Thrower != null) _adminLogger.Add(LogType.Landed, LogImpact.Low, $"{ToPrettyString(args.Thrown)} thrown by {ToPrettyString(args.Component.Thrower.Value):player} landed in {ToPrettyString(uid)}"); @@ -576,7 +588,7 @@ public bool TryFlush(EntityUid uid, SharedDisposalUnitComponent component) private void HandleAir(EntityUid uid, DisposalUnitComponent component, TransformComponent xform) { var air = component.Air; - var indices = _transformSystem.GetGridOrMapTilePosition(uid, xform); + var indices = _transformSystem.GetGridTilePositionOrDefault((uid, xform)); if (_atmosSystem.GetTileMixture(xform.GridUid, xform.MapUid, indices, true) is { Temperature: > 0f } environment) { @@ -786,6 +798,8 @@ public void QueueAutomaticEngage(EntityUid uid, SharedDisposalUnitComponent comp public void AfterInsert(EntityUid uid, SharedDisposalUnitComponent component, EntityUid inserted, EntityUid? user = null) { + _audioSystem.PlayPvs(component.InsertSound, uid); + if (!component.Container.Insert(inserted)) return; diff --git a/Content.Server/Dragon/DragonRiftSystem.cs b/Content.Server/Dragon/DragonRiftSystem.cs index 52137f2ee6..f7d5cd783d 100644 --- a/Content.Server/Dragon/DragonRiftSystem.cs +++ b/Content.Server/Dragon/DragonRiftSystem.cs @@ -11,6 +11,8 @@ using Robust.Shared.Player; using Robust.Shared.Serialization.Manager; using System.Numerics; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; namespace Content.Server.Dragon; diff --git a/Content.Server/Dragon/DragonSystem.cs b/Content.Server/Dragon/DragonSystem.cs index ed17ba8bdc..93d6bc8db0 100644 --- a/Content.Server/Dragon/DragonSystem.cs +++ b/Content.Server/Dragon/DragonSystem.cs @@ -10,6 +10,8 @@ using Content.Shared.Mind.Components; using Content.Shared.Mobs; using Content.Shared.Movement.Systems; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.GameStates; using Robust.Shared.Map; using Robust.Shared.Player; @@ -203,7 +205,7 @@ private void OnCreated(EntityUid uid, DragonComponent comp, ref GenericAntagCrea private void Roar(EntityUid uid, DragonComponent comp) { if (comp.SoundRoar != null) - _audio.Play(comp.SoundRoar, Filter.Pvs(uid, 4f, EntityManager), uid, true); + _audio.PlayPvs(comp.SoundRoar, uid); } /// diff --git a/Content.Server/Electrocution/ElectrocutionSystem.cs b/Content.Server/Electrocution/ElectrocutionSystem.cs index 8ddc8540c0..c3ae246074 100644 --- a/Content.Server/Electrocution/ElectrocutionSystem.cs +++ b/Content.Server/Electrocution/ElectrocutionSystem.cs @@ -26,6 +26,7 @@ using Content.Shared.Tag; using Content.Shared.Weapons.Melee.Events; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Physics.Events; using Robust.Shared.Player; @@ -229,7 +230,7 @@ public bool TryDoElectrifiedAct(EntityUid uid, EntityUid targetUid, _appearance.SetData(uid, ElectrifiedVisuals.IsPowered, true); siemens *= electrified.SiemensCoefficient; - if (siemens <= 0 || !DoCommonElectrocutionAttempt(targetUid, uid, ref siemens)) + if (!DoCommonElectrocutionAttempt(targetUid, uid, ref siemens) || siemens <= 0) return false; // If electrocution would fail, do nothing. var targets = new List<(EntityUid entity, int depth)>(); diff --git a/Content.Server/Ensnaring/EnsnareableSystem.Ensnaring.cs b/Content.Server/Ensnaring/EnsnareableSystem.Ensnaring.cs index b04c1296fc..f355187a0b 100644 --- a/Content.Server/Ensnaring/EnsnareableSystem.Ensnaring.cs +++ b/Content.Server/Ensnaring/EnsnareableSystem.Ensnaring.cs @@ -2,6 +2,7 @@ using Content.Server.Body.Systems; using Content.Shared.Alert; using Content.Shared.Body.Part; +using Content.Shared.CombatMode.Pacification; using Content.Shared.Damage.Components; using Content.Shared.Damage.Systems; using Content.Shared.DoAfter; @@ -26,6 +27,12 @@ public void InitializeEnsnaring() SubscribeLocalEvent(AttemptStepTrigger); SubscribeLocalEvent(OnStepTrigger); SubscribeLocalEvent(OnThrowHit); + SubscribeLocalEvent(OnAttemptPacifiedThrow); + } + + private void OnAttemptPacifiedThrow(Entity ent, ref AttemptPacifiedThrowEvent args) + { + args.Cancel("pacified-cannot-throw-snare"); } private void OnComponentRemove(EntityUid uid, EnsnaringComponent component, ComponentRemove args) diff --git a/Content.Server/Explosion/Components/ClusterGrenadeComponent.cs b/Content.Server/Explosion/Components/ClusterGrenadeComponent.cs index e2e3ca2733..fe1b8caede 100644 --- a/Content.Server/Explosion/Components/ClusterGrenadeComponent.cs +++ b/Content.Server/Explosion/Components/ClusterGrenadeComponent.cs @@ -1,7 +1,6 @@ using Content.Server.Explosion.EntitySystems; using Robust.Shared.Containers; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Explosion.Components { @@ -13,8 +12,8 @@ public sealed partial class ClusterGrenadeComponent : Component /// /// What we fill our prototype with if we want to pre-spawn with grenades. /// - [DataField("fillPrototype", customTypeSerializer:typeof(PrototypeIdSerializer))] - public string? FillPrototype; + [DataField("fillPrototype")] + public EntProtoId? FillPrototype; /// /// If we have a pre-fill how many more can we spawn. @@ -28,20 +27,91 @@ public sealed partial class ClusterGrenadeComponent : Component public int MaxGrenades = 3; /// - /// How long until our grenades are shot out and armed. + /// Maximum delay in seconds between individual grenade triggers /// - [ViewVariables(VVAccess.ReadWrite)] [DataField("delay")] - public float Delay = 1; + [ViewVariables(VVAccess.ReadWrite)] + [DataField("grenadeTriggerIntervalMax")] + public float GrenadeTriggerIntervalMax = 0f; /// - /// Max distance grenades can be thrown. + /// Minimum delay in seconds between individual grenade triggers /// - [ViewVariables(VVAccess.ReadWrite)] [DataField("distance")] - public float ThrowDistance = 50; + [ViewVariables(VVAccess.ReadWrite)] + [DataField("grenadeTriggerIntervalMin")] + public float GrenadeTriggerIntervalMin = 0f; + + /// + /// Minimum delay in seconds before any grenades start to be triggered. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("baseTriggerDelay")] + public float BaseTriggerDelay = 1.0f; + + /// + /// Decides if grenades trigger after getting launched + /// + [DataField("triggerGrenades")] + public bool TriggerGrenades = true; + + /// + /// Does the cluster grenade shoot or throw + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("grenadeType")] + public Enum GrenadeType = Components.GrenadeType.Throw; + + /// + /// The speed at which grenades get thrown + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("velocity")] + public float Velocity = 5; + + /// + /// Should the spread be random + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("randomSpread")] + public bool RandomSpread = false; + + /// + /// Should the angle be random + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("randomAngle")] + public bool RandomAngle = false; + + /// + /// Static distance grenades will be thrown to. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("distance")] + public float Distance = 1f; + + /// + /// Max distance grenades should randomly be thrown to. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("maxSpreadDistance")] + public float MaxSpreadDistance = 2.5f; + + /// + /// Minimal distance grenades should randomly be thrown to. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("minSpreadDistance")] + public float MinSpreadDistance = 0f; /// /// This is the end. /// public bool CountDown; } + + public enum GrenadeType + { + Throw, + Shoot + } + } diff --git a/Content.Server/Explosion/Components/ExplosionResistanceComponent.cs b/Content.Server/Explosion/Components/ExplosionResistanceComponent.cs index a65764c413..d4a93c2b56 100644 --- a/Content.Server/Explosion/Components/ExplosionResistanceComponent.cs +++ b/Content.Server/Explosion/Components/ExplosionResistanceComponent.cs @@ -5,7 +5,9 @@ namespace Content.Server.Explosion.Components; /// -/// Component that provides entities with explosion resistance. +/// Component that provides entities with explosion resistance. +/// By default this is applied when worn, but to solely protect the entity itself and +/// not the wearer use worn: false. /// /// /// This is desirable over just using damage modifier sets, given that equipment like bomb-suits need to @@ -21,6 +23,20 @@ public sealed partial class ExplosionResistanceComponent : Component [DataField("damageCoefficient")] public float DamageCoefficient = 1; + /// + /// When true, resistances will be applied to the entity wearing this item. + /// When false, only this entity will get th resistance. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public bool Worn = true; + + /// + /// Examine string for explosion resistance. + /// Passed value from 0 to 100. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public LocId Examine = "explosion-resistance-coefficient-value"; + /// /// Modifiers specific to each explosion type for more customizability. /// diff --git a/Content.Server/Explosion/Components/OnTrigger/SmokeOnTriggerComponent.cs b/Content.Server/Explosion/Components/OnTrigger/SmokeOnTriggerComponent.cs new file mode 100644 index 0000000000..d71e93495a --- /dev/null +++ b/Content.Server/Explosion/Components/OnTrigger/SmokeOnTriggerComponent.cs @@ -0,0 +1,41 @@ +using Content.Server.Explosion.EntitySystems; +using Content.Shared.Chemistry.Components; +using Robust.Shared.Prototypes; + +namespace Content.Server.Explosion.Components; + +/// +/// Creates a smoke cloud when triggered, with an optional solution to include in it. +/// No sound is played incase a grenade is stealthy, use if you want a sound. +/// +[RegisterComponent, Access(typeof(SmokeOnTriggerSystem))] +public sealed partial class SmokeOnTriggerComponent : Component +{ + /// + /// How long the smoke stays for, after it has spread. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float Duration = 10; + + /// + /// How much the smoke will spread. + /// + [DataField(required: true), ViewVariables(VVAccess.ReadWrite)] + public int SpreadAmount; + + /// + /// Smoke entity to spawn. + /// Defaults to smoke but you can use foam if you want. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public ProtoId SmokePrototype = "Smoke"; + + /// + /// Solution to add to each smoke cloud. + /// + /// + /// When using repeating trigger this essentially gets multiplied so dont do anything crazy like omnizine or lexorin. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public Solution Solution = new(); +} diff --git a/Content.Server/Explosion/Components/RandomTimerTriggerComponent.cs b/Content.Server/Explosion/Components/RandomTimerTriggerComponent.cs new file mode 100644 index 0000000000..3863b9c313 --- /dev/null +++ b/Content.Server/Explosion/Components/RandomTimerTriggerComponent.cs @@ -0,0 +1,22 @@ +using Content.Server.Explosion.EntitySystems; + +namespace Content.Server.Explosion.Components; + +/// +/// This is used for randomizing a on MapInit +/// +[RegisterComponent, Access(typeof(TriggerSystem))] +public sealed partial class RandomTimerTriggerComponent : Component +{ + /// + /// The minimum random trigger time. + /// + [DataField] + public float Min; + + /// + /// The maximum random trigger time. + /// + [DataField] + public float Max; +} diff --git a/Content.Server/Explosion/EntitySystems/ClusterGrenadeSystem.cs b/Content.Server/Explosion/EntitySystems/ClusterGrenadeSystem.cs index 9467966cb6..2674a8d61b 100644 --- a/Content.Server/Explosion/EntitySystems/ClusterGrenadeSystem.cs +++ b/Content.Server/Explosion/EntitySystems/ClusterGrenadeSystem.cs @@ -6,6 +6,10 @@ using Content.Shared.Throwing; using Robust.Shared.Containers; using Robust.Shared.Random; +using Content.Server.Weapons.Ranged.Systems; +using System.Numerics; +using Robust.Server.Containers; +using Robust.Server.GameObjects; namespace Content.Server.Explosion.EntitySystems; @@ -13,9 +17,11 @@ public sealed class ClusterGrenadeSystem : EntitySystem { [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly SharedContainerSystem _container = default!; - [Dependency] private readonly TriggerSystem _trigger = default!; [Dependency] private readonly ThrowingSystem _throwingSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly GunSystem _gun = default!; + [Dependency] private readonly TransformSystem _transformSystem = default!; + [Dependency] private readonly ContainerSystem _containerSystem = default!; public override void Initialize() { @@ -23,12 +29,12 @@ public override void Initialize() SubscribeLocalEvent(OnClugInit); SubscribeLocalEvent(OnClugStartup); SubscribeLocalEvent(OnClugUsing); - SubscribeLocalEvent(OnClugUse); + SubscribeLocalEvent(OnClugTrigger); } private void OnClugInit(EntityUid uid, ClusterGrenadeComponent component, ComponentInit args) { - component.GrenadesContainer = _container.EnsureContainer(uid, "cluster-flash"); + component.GrenadesContainer = _container.EnsureContainer(uid, "cluster-payload"); } private void OnClugStartup(Entity clug, ref ComponentStartup args) @@ -53,64 +59,97 @@ private void OnClugUsing(Entity clug, ref InteractUsing !HasComp(args.Used)) return; - component.GrenadesContainer.Insert(args.Used); + _containerSystem.Insert(args.Used, component.GrenadesContainer); UpdateAppearance(clug); args.Handled = true; } - private void OnClugUse(EntityUid uid, ClusterGrenadeComponent component, UseInHandEvent args) + private void OnClugTrigger(Entity clug, ref TriggerEvent args) { - if (component.CountDown || (component.GrenadesContainer.ContainedEntities.Count + component.UnspawnedCount) <= 0) - return; + var component = clug.Comp; + component.CountDown = true; + args.Handled = true; + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + var query = EntityQueryEnumerator(); - // TODO: Should be an Update loop - uid.SpawnTimer((int) (component.Delay * 1000), () => + while (query.MoveNext(out var uid, out var clug)) { - if (Deleted(uid)) - return; - - component.CountDown = true; - var delay = 20; - var grenadesInserted = component.GrenadesContainer.ContainedEntities.Count + component.UnspawnedCount; - var thrownCount = 0; - var segmentAngle = 360 / grenadesInserted; - while (TryGetGrenade((uid, component), out var grenade)) + if (clug.CountDown && clug.UnspawnedCount > 0) { - var angleMin = segmentAngle * thrownCount; - var angleMax = segmentAngle * (thrownCount + 1); - var angle = Angle.FromDegrees(_random.Next(angleMin, angleMax)); - // var distance = random.NextFloat() * _throwDistance; + var grenadesInserted = clug.GrenadesContainer.ContainedEntities.Count + clug.UnspawnedCount; + var thrownCount = 0; + var segmentAngle = 360 / grenadesInserted; + var grenadeDelay = 0f; - delay += _random.Next(550, 900); - thrownCount++; + while (TryGetGrenade(uid, clug, out var grenade)) + { + // var distance = random.NextFloat() * _throwDistance; + var angleMin = segmentAngle * thrownCount; + var angleMax = segmentAngle * (thrownCount + 1); + var angle = Angle.FromDegrees(_random.Next(angleMin, angleMax)); + if (clug.RandomAngle) + angle = _random.NextAngle(); + thrownCount++; + + switch (clug.GrenadeType) + { + case GrenadeType.Shoot: + ShootProjectile(grenade, angle, clug, uid); + break; + case GrenadeType.Throw: + ThrowGrenade(grenade, angle, clug); + break; + } + + // give an active timer trigger to the contained grenades when they get launched + if (clug.TriggerGrenades) + { + grenadeDelay += _random.NextFloat(clug.GrenadeTriggerIntervalMin, clug.GrenadeTriggerIntervalMax); + var grenadeTimer = EnsureComp(grenade); + grenadeTimer.TimeRemaining = (clug.BaseTriggerDelay + grenadeDelay); + var ev = new ActiveTimerTriggerEvent(grenade, uid); + RaiseLocalEvent(uid, ref ev); + } + } + // delete the empty shell of the clusterbomb + Del(uid); + } + } + } - // TODO: Suss out throw strength - _throwingSystem.TryThrow(grenade, angle.ToVec().Normalized() * component.ThrowDistance); + private void ShootProjectile(EntityUid grenade, Angle angle, ClusterGrenadeComponent clug, EntityUid clugUid) + { + var direction = angle.ToVec().Normalized(); - grenade.SpawnTimer(delay, () => - { - if ((!EntityManager.EntityExists(grenade) ? EntityLifeStage.Deleted : MetaData(grenade).EntityLifeStage) >= EntityLifeStage.Deleted) - return; + if (clug.RandomSpread) + direction = _random.NextVector2().Normalized(); - _trigger.Trigger(grenade, args.User); - }); - } + _gun.ShootProjectile(grenade, direction, Vector2.One.Normalized(), clugUid); - EntityManager.DeleteEntity(uid); - }); + } - args.Handled = true; + private void ThrowGrenade(EntityUid grenade, Angle angle, ClusterGrenadeComponent clug) + { + var direction = angle.ToVec().Normalized() * clug.Distance; + + if (clug.RandomSpread) + direction = angle.ToVec().Normalized() * _random.NextFloat(clug.MinSpreadDistance, clug.MaxSpreadDistance); + + _throwingSystem.TryThrow(grenade, direction, clug.Velocity); } - private bool TryGetGrenade(Entity ent, out EntityUid grenade) + private bool TryGetGrenade(EntityUid clugUid, ClusterGrenadeComponent component, out EntityUid grenade) { grenade = default; - var component = ent.Comp; if (component.UnspawnedCount > 0) { component.UnspawnedCount--; - grenade = EntityManager.SpawnEntity(component.FillPrototype, Transform(ent).MapPosition); + grenade = Spawn(component.FillPrototype, _transformSystem.GetMapCoordinates(clugUid)); return true; } @@ -128,12 +167,12 @@ private bool TryGetGrenade(Entity ent, out EntityUid gr return false; } - private void UpdateAppearance(Entity ent) + private void UpdateAppearance(Entity clug) { - var component = ent.Comp; - if (!TryComp(ent, out var appearance)) + var component = clug.Comp; + if (!TryComp(clug, out var appearance)) return; - _appearance.SetData(ent, ClusterGrenadeVisuals.GrenadesCounter, component.GrenadesContainer.ContainedEntities.Count + component.UnspawnedCount, appearance); + _appearance.SetData(clug, ClusterGrenadeVisuals.GrenadesCounter, component.GrenadesContainer.ContainedEntities.Count + component.UnspawnedCount, appearance); } } diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs index 34028ab435..799489d7b4 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs @@ -1,5 +1,6 @@ using System.Numerics; using Content.Shared.Atmos; +using Content.Shared.Explosion; using Robust.Shared.Map; using Robust.Shared.Map.Components; @@ -37,6 +38,13 @@ private void OnGridRemoved(GridRemovalEvent ev) { _airtightMap.Remove(ev.EntityUid); _gridEdges.Remove(ev.EntityUid); + + // this should be a small enough set that iterating all of them is fine + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var visuals)) + { + visuals.Tiles.Remove(ev.EntityUid); + } } /// diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs index 102b461fe0..e48d9f145e 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs @@ -1,16 +1,11 @@ using System.Linq; using System.Numerics; -using System.Reflection; -using Content.Server.Explosion.Components; using Content.Shared.CCVar; using Content.Shared.Damage; -using Content.Shared.Database; using Content.Shared.Explosion; using Content.Shared.Maps; -using Content.Shared.Mind.Components; using Content.Shared.Physics; using Content.Shared.Projectiles; -using Robust.Shared.Spawners; using Content.Shared.Tag; using Robust.Shared.Map; using Robust.Shared.Map.Components; @@ -55,6 +50,15 @@ public sealed partial class ExplosionSystem /// private int _previousTileIteration; + /// + /// This list is used when raising to avoid allocating a new list per event. + /// + private readonly List _containedEntities = new(); + + private readonly List<(EntityUid, DamageSpecifier)> _toDamage = new(); + + private List _anchored = new(); + private void OnMapChanged(MapChangedEvent ev) { // If a map was deleted, check the explosion currently being processed belongs to that map. @@ -82,8 +86,6 @@ public override void Update(float frameTime) Stopwatch.Restart(); var x = Stopwatch.Elapsed.TotalMilliseconds; - var availableTime = MaxProcessingTime; - var tilesRemaining = TilesPerTick; while (tilesRemaining > 0 && MaxProcessingTime > Stopwatch.Elapsed.TotalMilliseconds) { @@ -194,7 +196,7 @@ public bool IsBlockingTurf(EntityUid uid) /// /// True if the underlying tile can be uprooted, false if the tile is blocked by a dense entity internal bool ExplodeTile(BroadphaseComponent lookup, - MapGridComponent grid, + Entity grid, Vector2i tile, float throwForce, DamageSpecifier damage, @@ -202,7 +204,8 @@ internal bool ExplodeTile(BroadphaseComponent lookup, HashSet processed, string id) { - var gridBox = new Box2(tile * grid.TileSize, (tile + 1) * grid.TileSize); + var size = grid.Comp.TileSize; + var gridBox = new Box2(tile * size, (tile + 1) * size); // get the entities on a tile. Note that we cannot process them directly, or we get // enumerator-changed-while-enumerating errors. @@ -223,8 +226,9 @@ internal bool ExplodeTile(BroadphaseComponent lookup, // process anchored entities var tileBlocked = false; - var anchoredList = grid.GetAnchoredEntities(tile).ToList(); - foreach (var entity in anchoredList) + _anchored.Clear(); + _map.GetAnchoredEntities(grid, tile, _anchored); + foreach (var entity in _anchored) { processed.Add(entity); ProcessEntity(entity, epicenter, damage, throwForce, id, null); @@ -234,9 +238,11 @@ internal bool ExplodeTile(BroadphaseComponent lookup, // the purposes of destroying floors. Again, ideally the process of damaging an entity should somehow return // information about the entities that were spawned as a result, but without that information we just have to // re-check for new anchored entities. Compared to entity spawning & deleting, this should still be relatively minor. - if (anchoredList.Count > 0) + if (_anchored.Count > 0) { - foreach (var entity in grid.GetAnchoredEntities(tile)) + _anchored.Clear(); + _map.GetAnchoredEntities(grid, tile, _anchored); + foreach (var entity in _anchored) { tileBlocked |= IsBlockingTurf(entity); } @@ -267,7 +273,7 @@ internal bool ExplodeTile(BroadphaseComponent lookup, return !tileBlocked; } - private bool GridQueryCallback( + private static bool GridQueryCallback( ref (List<(EntityUid, TransformComponent)> List, HashSet Processed, EntityQuery XformQuery) state, in EntityUid uid) { @@ -277,7 +283,7 @@ private bool GridQueryCallback( return true; } - private bool GridQueryCallback( + private static bool GridQueryCallback( ref (List<(EntityUid, TransformComponent)> List, HashSet Processed, EntityQuery XformQuery) state, in FixtureProxy proxy) { @@ -301,7 +307,7 @@ internal void ExplodeSpace(BroadphaseComponent lookup, var gridBox = Box2.FromDimensions(tile * DefaultTileSize, new Vector2(DefaultTileSize, DefaultTileSize)); var worldBox = spaceMatrix.TransformBox(gridBox); var list = new List<(EntityUid, TransformComponent)>(); - var state = (list, processed, invSpaceMatrix, lookup.Owner, _transformQuery, gridBox); + var state = (list, processed, invSpaceMatrix, lookup.Owner, _transformQuery, gridBox, _transformSystem); // get entities: lookup.DynamicTree.QueryAabb(ref state, SpaceQueryCallback, worldBox, true); @@ -330,8 +336,8 @@ internal void ExplodeSpace(BroadphaseComponent lookup, } } - private bool SpaceQueryCallback( - ref (List<(EntityUid, TransformComponent)> List, HashSet Processed, Matrix3 InvSpaceMatrix, EntityUid LookupOwner, EntityQuery XformQuery, Box2 GridBox) state, + private static bool SpaceQueryCallback( + ref (List<(EntityUid, TransformComponent)> List, HashSet Processed, Matrix3 InvSpaceMatrix, EntityUid LookupOwner, EntityQuery XformQuery, Box2 GridBox, SharedTransformSystem System) state, in EntityUid uid) { if (state.Processed.Contains(uid)) @@ -349,65 +355,94 @@ private bool SpaceQueryCallback( } // finally check if it intersects our tile - if (state.GridBox.Contains(state.InvSpaceMatrix.Transform(_transformSystem.GetWorldPosition(xform, state.XformQuery)))) + var wpos = state.System.GetWorldPosition(xform); + if (state.GridBox.Contains(state.InvSpaceMatrix.Transform(wpos))) state.List.Add((uid, xform)); return true; } - private bool SpaceQueryCallback( - ref (List<(EntityUid, TransformComponent)> List, HashSet Processed, Matrix3 InvSpaceMatrix, EntityUid LookupOwner, EntityQuery XformQuery, Box2 GridBox) state, + private static bool SpaceQueryCallback( + ref (List<(EntityUid, TransformComponent)> List, HashSet Processed, Matrix3 InvSpaceMatrix, EntityUid LookupOwner, EntityQuery XformQuery, Box2 GridBox, SharedTransformSystem System) state, in FixtureProxy proxy) { var uid = proxy.Entity; return SpaceQueryCallback(ref state, in uid); } + private DamageSpecifier GetDamage(EntityUid uid, + string id, DamageSpecifier damage) + { + // TODO Explosion Performance + // Cache this? I.e., instead of raising an event, check for a component? + var resistanceEv = new GetExplosionResistanceEvent(id); + RaiseLocalEvent(uid, ref resistanceEv); + resistanceEv.DamageCoefficient = Math.Max(0, resistanceEv.DamageCoefficient); + + // ReSharper disable once CompareOfFloatsByEqualityOperator + if (resistanceEv.DamageCoefficient != 1) + damage *= resistanceEv.DamageCoefficient; + + return damage; + } + + private void GetEntitiesToDamage(EntityUid uid, DamageSpecifier originalDamage, string prototype) + { + _toDamage.Clear(); + + // don't raise BeforeExplodeEvent if the entity is completely immune to explosions + var thisDamage = GetDamage(uid, prototype, originalDamage); + if (!thisDamage.Any()) + return; + + _toDamage.Add((uid, thisDamage)); + + for (var i = 0; i < _toDamage.Count; i++) + { + var (ent, damage) = _toDamage[i]; + _containedEntities.Clear(); + var ev = new BeforeExplodeEvent(damage, prototype, _containedEntities); + RaiseLocalEvent(ent, ref ev); + + if (_containedEntities.Count == 0) + continue; + + // ReSharper disable once CompareOfFloatsByEqualityOperator + if (ev.DamageCoefficient != 1) + damage *= ev.DamageCoefficient; + + _toDamage.EnsureCapacity(_toDamage.Count + _containedEntities.Count); + foreach (var contained in _containedEntities) + { + var newDamage = GetDamage(contained, prototype, damage); + _toDamage.Add((contained, newDamage)); + } + } + } + /// /// This function actually applies the explosion affects to an entity. /// private void ProcessEntity( EntityUid uid, MapCoordinates epicenter, - DamageSpecifier? damage, + DamageSpecifier? originalDamage, float throwForce, string id, TransformComponent? xform) { - // damage - if (damage != null && _damageQuery.TryGetComponent(uid, out var damageable)) + if (originalDamage != null) { - // TODO Explosion Performance - // Cache this? I.e., instead of raising an event, check for a component? - var ev = new GetExplosionResistanceEvent(id); - RaiseLocalEvent(uid, ref ev); - - ev.DamageCoefficient = Math.Max(0, ev.DamageCoefficient); - - // TODO explosion entity - // Move explosion data into the existing explosion visuals entity - // Give each explosion a unique name, include in admin logs. - - // TODO Explosion Performance - // This creates a new dictionary. Maybe we should just re-use a private local damage specifier and update it. - // Though most entities shouldn't have explosion resistance, so maybe its fine. - // ReSharper disable once CompareOfFloatsByEqualityOperator - if (ev.DamageCoefficient != 1) - damage *= ev.DamageCoefficient; - - // Log damage to players. Damage is logged before dealing damage so that the position can be logged before - // the entity gets deleted. - if (_mindQuery.HasComponent(uid)) + GetEntitiesToDamage(uid, originalDamage, id); + foreach (var (entity, damage) in _toDamage) { - _adminLogger.Add(LogType.Explosion, LogImpact.Medium, - $"Explosion caused [{damage.Total}] damage to {ToPrettyString(uid):target} at {xform?.Coordinates}"); + // TODO EXPLOSIONS turn explosions into entities, and pass the the entity in as the damage origin. + _damageableSystem.TryChangeDamage(entity, damage, ignoreResistances: true); } - - _damageableSystem.TryChangeDamage(uid, damage, ignoreResistances: true, damageable: damageable); } // throw - if (xform != null // null implies anchored + if (xform != null // null implies anchored or in a container && !xform.Anchored && throwForce > 0 && !EntityManager.IsQueuedForDeletion(uid) @@ -423,10 +458,6 @@ private void ProcessEntity( _projectileQuery, throwForce); } - - // TODO EXPLOSION puddle / flammable ignite? - - // TODO EXPLOSION deaf/ear damage? other explosion effects? } /// @@ -773,7 +804,7 @@ public int Process(int processingTarget) // damage entities on the tile. Also figures out whether there are any solid entities blocking the floor // from being destroyed. var canDamageFloor = _system.ExplodeTile(_currentLookup, - _currentGrid, + (_currentGrid.Owner, _currentGrid), _currentEnumerator.Current, _currentThrowForce, _currentDamage, @@ -826,4 +857,3 @@ private void SetTiles() _tileUpdateDict.Clear(); } } - diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Visuals.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Visuals.cs index 08374d7392..ef8e1ffd98 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Visuals.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Visuals.cs @@ -50,11 +50,11 @@ private EntityUid CreateExplosionVisualEntity(MapCoordinates epicenter, string p comp.Intensity = iterationIntensity; comp.SpaceMatrix = spaceMatrix; comp.SpaceTileSize = spaceData?.TileSize ?? DefaultTileSize; - Dirty(comp); + Dirty(explosionEntity, comp); // Light, sound & visuals may extend well beyond normal PVS range. In principle, this should probably still be // restricted to something like the same map, but whatever. - _pvsSys.AddGlobalOverride(explosionEntity); + _pvsSys.AddGlobalOverride(GetNetEntity(explosionEntity)); var appearance = AddComp(explosionEntity); _appearance.SetData(explosionEntity, ExplosionAppearanceData.Progress, 1, appearance); diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs index aa1ad71b16..d9bfbece23 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs @@ -20,6 +20,7 @@ using Robust.Server.GameStates; using Robust.Server.Player; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; using Robust.Shared.Map; using Robust.Shared.Physics.Components; @@ -48,20 +49,21 @@ public sealed partial class ExplosionSystem : EntitySystem [Dependency] private readonly IChatManager _chat = default!; [Dependency] private readonly ThrowingSystem _throwingSystem = default!; [Dependency] private readonly PvsOverrideSystem _pvsSys = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedTransformSystem _transformSystem = default!; + [Dependency] private readonly SharedMapSystem _map = default!; private EntityQuery _transformQuery; private EntityQuery _damageQuery; private EntityQuery _physicsQuery; private EntityQuery _projectileQuery; - private EntityQuery _mindQuery; /// /// "Tile-size" for space when there are no nearby grids to use as a reference. /// public const ushort DefaultTileSize = 1; - private AudioParams _audioParams = AudioParams.Default.WithVolume(-3f); + public const int MaxExplosionAudioRange = 30; /// /// The "default" explosion prototype. @@ -107,7 +109,6 @@ public override void Initialize() _damageQuery = GetEntityQuery(); _physicsQuery = GetEntityQuery(); _projectileQuery = GetEntityQuery(); - _mindQuery = GetEntityQuery(); } private void OnReset(RoundRestartCleanupEvent ev) @@ -131,7 +132,8 @@ public override void Shutdown() private void RelayedResistance(EntityUid uid, ExplosionResistanceComponent component, InventoryRelayedEvent args) { - OnGetResistance(uid, component, ref args.Args); + if (component.Worn) + OnGetResistance(uid, component, ref args.Args); } private void OnGetResistance(EntityUid uid, ExplosionResistanceComponent component, ref GetExplosionResistanceEvent args) @@ -326,15 +328,33 @@ public void QueueExplosion(MapCoordinates epicenter, var visualEnt = CreateExplosionVisualEntity(epicenter, type.ID, spaceMatrix, spaceData, gridData.Values, iterationIntensity); // camera shake - CameraShake(iterationIntensity.Count * 2.5f, epicenter, totalIntensity); + CameraShake(iterationIntensity.Count * 4f, epicenter, totalIntensity); //For whatever bloody reason, sound system requires ENTITY coordinates. var mapEntityCoords = EntityCoordinates.FromMap(EntityManager, _mapManager.GetMapEntityId(epicenter.MapId), epicenter); // play sound. - var audioRange = iterationIntensity.Count * 5; + // for the normal audio, we want everyone in pvs range + // + if the bomb is big enough, people outside of it too + // this is capped to 30 because otherwise really huge bombs + // will attempt to play regular audio for people who can't hear it anyway because the epicenter is so far away + var audioRange = Math.Min(iterationIntensity.Count * 2, MaxExplosionAudioRange); var filter = Filter.Pvs(epicenter).AddInRange(epicenter, audioRange); - SoundSystem.Play(type.Sound.GetSound(), filter, mapEntityCoords, _audioParams); + var sound = iterationIntensity.Count < type.SmallSoundIterationThreshold + ? type.SmallSound + : type.Sound; + + _audio.PlayStatic(sound, filter, mapEntityCoords, true, sound.Params); + + // play far sound + // far sound should play for anyone who wasn't in range of any of the effects of the bomb + var farAudioRange = iterationIntensity.Count * 5; + var farFilter = Filter.Empty().AddInRange(epicenter, farAudioRange).RemoveInRange(epicenter, audioRange); + var farSound = iterationIntensity.Count < type.SmallSoundIterationThreshold + ? type.SmallSoundFar + : type.SoundFar; + + _audio.PlayGlobal(farSound, farFilter, true, farSound.Params); return new Explosion(this, type, @@ -377,9 +397,9 @@ private void CameraShake(float range, MapCoordinates epicenter, float totalInten private void OnArmorExamine(EntityUid uid, ExplosionResistanceComponent component, ref ArmorExamineEvent args) { + var value = MathF.Round((1f - component.DamageCoefficient) * 100, 1); + args.Msg.PushNewline(); - args.Msg.AddMarkup(Loc.GetString("explosion-resistance-coefficient-value", - ("value", MathF.Round((1f - component.DamageCoefficient) * 100, 1)) - )); + args.Msg.AddMarkup(Loc.GetString(component.Examine, ("value", value))); } } diff --git a/Content.Server/Explosion/EntitySystems/SmokeOnTriggerSystem.cs b/Content.Server/Explosion/EntitySystems/SmokeOnTriggerSystem.cs new file mode 100644 index 0000000000..3ddb411d40 --- /dev/null +++ b/Content.Server/Explosion/EntitySystems/SmokeOnTriggerSystem.cs @@ -0,0 +1,46 @@ +using Content.Server.Explosion.Components; +using Content.Server.Fluids.EntitySystems; +using Content.Shared.Chemistry.Components; +using Content.Shared.Coordinates.Helpers; +using Content.Shared.Maps; +using Robust.Shared.Map; + +namespace Content.Server.Explosion.EntitySystems; + +/// +/// Handles creating smoke when is triggered. +/// +public sealed class SmokeOnTriggerSystem : EntitySystem +{ + [Dependency] private readonly IMapManager _mapMan = default!; + [Dependency] private readonly SmokeSystem _smoke = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnTrigger); + } + + private void OnTrigger(EntityUid uid, SmokeOnTriggerComponent comp, TriggerEvent args) + { + var xform = Transform(uid); + if (!_mapMan.TryFindGridAt(xform.MapPosition, out _, out var grid) || + !grid.TryGetTileRef(xform.Coordinates, out var tileRef) || + tileRef.Tile.IsSpace()) + { + return; + } + + var coords = grid.MapToGrid(xform.MapPosition); + var ent = Spawn(comp.SmokePrototype, coords.SnapToGrid()); + if (!TryComp(ent, out var smoke)) + { + Logger.Error($"Smoke prototype {comp.SmokePrototype} was missing SmokeComponent"); + Del(ent); + return; + } + + _smoke.StartSmoke(ent, comp.Solution, comp.Duration, comp.SpreadAmount, smoke); + } +} diff --git a/Content.Server/Explosion/EntitySystems/TriggerSystem.OnUse.cs b/Content.Server/Explosion/EntitySystems/TriggerSystem.OnUse.cs index fb1f72eb44..7edca9b803 100644 --- a/Content.Server/Explosion/EntitySystems/TriggerSystem.OnUse.cs +++ b/Content.Server/Explosion/EntitySystems/TriggerSystem.OnUse.cs @@ -4,7 +4,6 @@ using Content.Shared.Interaction.Events; using Content.Shared.Popups; using Content.Shared.Verbs; -using Robust.Shared.Player; namespace Content.Server.Explosion.EntitySystems; @@ -18,6 +17,7 @@ private void InitializeOnUse() SubscribeLocalEvent(OnExamined); SubscribeLocalEvent>(OnGetAltVerbs); SubscribeLocalEvent(OnStuck); + SubscribeLocalEvent(OnRandomTimerTriggerMapInit); } private void OnStuck(EntityUid uid, OnUseTimerTriggerComponent component, EntityStuckEvent args) @@ -45,7 +45,7 @@ private void OnExamined(EntityUid uid, OnUseTimerTriggerComponent component, Exa /// private void OnGetAltVerbs(EntityUid uid, OnUseTimerTriggerComponent component, GetVerbsEvent args) { - if (!args.CanInteract || !args.CanAccess) + if (!args.CanInteract || !args.CanAccess || args.Hands == null) return; if (component.UseVerbInstead) @@ -114,6 +114,16 @@ private void OnGetAltVerbs(EntityUid uid, OnUseTimerTriggerComponent component, } } + private void OnRandomTimerTriggerMapInit(Entity ent, ref MapInitEvent args) + { + var (_, comp) = ent; + + if (!TryComp(ent, out var timerTriggerComp)) + return; + + timerTriggerComp.Delay = _random.NextFloat(comp.Min, comp.Max); + } + private void CycleDelay(OnUseTimerTriggerComponent component, EntityUid user) { if (component.DelayOptions == null || component.DelayOptions.Count == 1) diff --git a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs index b57e9bd298..323dae493a 100644 --- a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs +++ b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs @@ -24,6 +24,8 @@ using Content.Shared.Mobs; using Content.Shared.Mobs.Components; using Content.Shared.Weapons.Ranged.Events; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Random; namespace Content.Server.Explosion.EntitySystems { @@ -61,6 +63,7 @@ public sealed partial class TriggerSystem : EntitySystem [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedTransformSystem _transformSystem = default!; [Dependency] private readonly RadioSystem _radioSystem = default!; + [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; public override void Initialize() diff --git a/Content.Server/Extinguisher/FireExtinguisherSystem.cs b/Content.Server/Extinguisher/FireExtinguisherSystem.cs index 7b96b8b921..30895deb4c 100644 --- a/Content.Server/Extinguisher/FireExtinguisherSystem.cs +++ b/Content.Server/Extinguisher/FireExtinguisherSystem.cs @@ -9,6 +9,7 @@ using Content.Shared.Interaction.Events; using Content.Shared.Verbs; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; namespace Content.Server.Extinguisher; @@ -18,6 +19,7 @@ public sealed class FireExtinguisherSystem : EntitySystem [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; public override void Initialize() { @@ -86,7 +88,7 @@ private void OnAfterInteract(EntityUid uid, FireExtinguisherComponent component, var drained = _solutionContainerSystem.Drain(target, targetSolution, transfer); _solutionContainerSystem.TryAddSolution(uid, container, drained); - SoundSystem.Play(component.RefillSound.GetSound(), Filter.Pvs(uid), uid); + _audio.PlayPvs(component.RefillSound, uid); _popupSystem.PopupEntity(Loc.GetString("fire-extinguisher-component-after-interact-refilled-message", ("owner", uid)), uid, args.Target.Value); } @@ -135,8 +137,7 @@ public void ToggleSafety(EntityUid uid, EntityUid user, return; extinguisher.Safety = !extinguisher.Safety; - SoundSystem.Play(extinguisher.SafetySound.GetSound(), Filter.Pvs(uid), - uid, AudioHelpers.WithVariation(0.125f).WithVolume(-4f)); + _audio.PlayPvs(extinguisher.SafetySound, uid, AudioParams.Default.WithVariation(0.125f).WithVolume(-4f)); UpdateAppearance(uid, extinguisher); } } diff --git a/Content.Server/Fax/FaxMachineComponent.cs b/Content.Server/Fax/FaxMachineComponent.cs index d1f269dd37..d67a92a50a 100644 --- a/Content.Server/Fax/FaxMachineComponent.cs +++ b/Content.Server/Fax/FaxMachineComponent.cs @@ -51,6 +51,15 @@ public sealed partial class FaxMachineComponent : Component [DataField("receiveNukeCodes")] public bool ReceiveNukeCodes { get; set; } = false; + // Corvax-StationGoal-Start + /// + /// Should that fax receive station goal info + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("receiveStationGoal")] + public bool ReceiveStationGoal { get; set; } = false; + // Corvax-StationGoal-End + /// /// Sound to play when fax has been emagged /// diff --git a/Content.Server/Fax/FaxSystem.cs b/Content.Server/Fax/FaxSystem.cs index ec95d71dcf..647f73bad3 100644 --- a/Content.Server/Fax/FaxSystem.cs +++ b/Content.Server/Fax/FaxSystem.cs @@ -19,6 +19,7 @@ using Content.Shared.Paper; using Robust.Server.GameObjects; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Player; diff --git a/Content.Server/Flash/FlashSystem.cs b/Content.Server/Flash/FlashSystem.cs index bc2c4ddaba..29d603bfc6 100644 --- a/Content.Server/Flash/FlashSystem.cs +++ b/Content.Server/Flash/FlashSystem.cs @@ -15,6 +15,7 @@ using Content.Shared.Tag; using Content.Shared.Traits.Assorted; using Content.Shared.Weapons.Melee.Events; +using Robust.Server.Audio; using Robust.Server.GameObjects; using Robust.Shared.Audio; using Robust.Shared.Player; @@ -172,7 +173,7 @@ public void FlashArea(EntityUid source, EntityUid? user, float range, float dura } if (sound != null) { - SoundSystem.Play(sound.GetSound(), Filter.Pvs(transform), source); + _audio.PlayPvs(sound, source); } } diff --git a/Content.Server/Fluids/Components/PreventSpillerComponent.cs b/Content.Server/Fluids/Components/PreventSpillerComponent.cs new file mode 100644 index 0000000000..37096f1bb3 --- /dev/null +++ b/Content.Server/Fluids/Components/PreventSpillerComponent.cs @@ -0,0 +1,7 @@ +namespace Content.Server.Fluids.Components; + +[RegisterComponent] +public sealed partial class PreventSpillerComponent : Component +{ + +} diff --git a/Content.Server/Fluids/EntitySystems/AbsorbentSystem.cs b/Content.Server/Fluids/EntitySystems/AbsorbentSystem.cs index facc39f146..a2c89d4e42 100644 --- a/Content.Server/Fluids/EntitySystems/AbsorbentSystem.cs +++ b/Content.Server/Fluids/EntitySystems/AbsorbentSystem.cs @@ -1,14 +1,14 @@ using Content.Server.Popups; using Content.Shared.Chemistry.Components; using Content.Shared.Chemistry.EntitySystems; -using Content.Shared.Chemistry.Reagent; using Content.Shared.FixedPoint; using Content.Shared.Fluids; using Content.Shared.Fluids.Components; using Content.Shared.Interaction; using Content.Shared.Timing; using Content.Shared.Weapons.Melee; -using Robust.Server.GameObjects; +using Robust.Server.Audio; +using Robust.Shared.Map; using Robust.Shared.Prototypes; using Robust.Shared.Utility; @@ -17,6 +17,7 @@ namespace Content.Server.Fluids.EntitySystems; /// public sealed class AbsorbentSystem : SharedAbsorbentSystem { + [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IPrototypeManager _prototype = default!; [Dependency] private readonly AudioSystem _audio = default!; [Dependency] private readonly PopupSystem _popups = default!; @@ -25,7 +26,6 @@ public sealed class AbsorbentSystem : SharedAbsorbentSystem [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly SolutionContainerSystem _solutionSystem = default!; [Dependency] private readonly UseDelaySystem _useDelay = default!; - [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; public override void Initialize() { @@ -55,13 +55,13 @@ private void UpdateAbsorbent(EntityUid uid, AbsorbentComponent component) var oldProgress = component.Progress.ShallowClone(); component.Progress.Clear(); - var water = solution.GetTotalPrototypeQuantity(PuddleSystem.EvaporationReagent); + var water = solution.GetTotalPrototypeQuantity(PuddleSystem.EvaporationReagents); if (water > FixedPoint2.Zero) { - component.Progress[_prototype.Index(PuddleSystem.EvaporationReagent).SubstanceColor] = water.Float(); + component.Progress[solution.GetColorWithOnly(_prototype, PuddleSystem.EvaporationReagents)] = water.Float(); } - var otherColor = solution.GetColorWithout(_prototype, PuddleSystem.EvaporationReagent); + var otherColor = solution.GetColorWithout(_prototype, PuddleSystem.EvaporationReagents); var other = (solution.Volume - water).Float(); if (other > 0f) @@ -79,7 +79,7 @@ private void UpdateAbsorbent(EntityUid uid, AbsorbentComponent component) if (component.Progress.Equals(oldProgress)) return; - Dirty(component); + Dirty(uid, component); } private void OnInteractNoHand(EntityUid uid, AbsorbentComponent component, InteractNoHandEvent args) @@ -100,29 +100,27 @@ private void OnAfterInteract(EntityUid uid, AbsorbentComponent component, AfterI args.Handled = true; } - private void Mop(EntityUid user, EntityUid target, EntityUid used, AbsorbentComponent component) + public void Mop(EntityUid user, EntityUid target, EntityUid used, AbsorbentComponent component) { - if (!_solutionSystem.TryGetSolution(used, AbsorbentComponent.SolutionName, out var absorberSoln)) + if (!_solutionSystem.TryGetSolution(used, AbsorbentComponent.SolutionName, out var absorbentSolution)) return; if (_useDelay.ActiveDelay(used)) return; // If it's a puddle try to grab from - if (!TryPuddleInteract(user, used, target, component, absorberSoln)) + if (!TryPuddleInteract(user, used, target, component, absorbentSolution)) { - // Do a transfer, try to get water onto us and transfer anything else to them. - - // If it's anything else transfer to - if (!TryTransferAbsorber(user, used, target, component, absorberSoln)) + // If it's refillable try to transfer + if (!TryRefillableInteract(user, used, target, component, absorbentSolution)) return; } } /// - /// Attempt to fill an absorber from some refillable solution. + /// Logic for an absorbing entity interacting with a refillable. /// - private bool TryTransferAbsorber(EntityUid user, EntityUid used, EntityUid target, AbsorbentComponent component, Solution absorberSoln) + private bool TryRefillableInteract(EntityUid user, EntityUid used, EntityUid target, AbsorbentComponent component, Solution absorbentSolution) { if (!TryComp(target, out RefillableSolutionComponent? refillable)) return false; @@ -132,81 +130,133 @@ private bool TryTransferAbsorber(EntityUid user, EntityUid used, EntityUid targe if (refillableSolution.Volume <= 0) { - var msg = Loc.GetString("mopping-system-target-container-empty", ("target", target)); - _popups.PopupEntity(msg, user, user); + // Target empty - only transfer absorbent contents into refillable + if (!TryTransferFromAbsorbentToRefillable(user, used, target, component, absorbentSolution, refillableSolution)) + return false; + } + else + { + // Target non-empty - do a two-way transfer + if (!TryTwoWayAbsorbentRefillableTransfer(user, used, target, component, absorbentSolution, refillableSolution)) + return false; + } + + _audio.PlayPvs(component.TransferSound, target); + _useDelay.BeginDelay(used); + return true; + } + + /// + /// Logic for an transferring solution from absorber to an empty refillable. + /// + private bool TryTransferFromAbsorbentToRefillable( + EntityUid user, + EntityUid used, + EntityUid target, + AbsorbentComponent component, + Solution absorbentSolution, + Solution refillableSolution) + { + if (absorbentSolution.Volume <= 0) + { + _popups.PopupEntity(Loc.GetString("mopping-system-target-container-empty", ("target", target)), user, user); + return false; + } + + var transferAmount = component.PickupAmount < refillableSolution.AvailableVolume ? + component.PickupAmount : + refillableSolution.AvailableVolume; + + if (transferAmount <= 0) + { + _popups.PopupEntity(Loc.GetString("mopping-system-full", ("used", used)), used, user); return false; } - // Remove the non-water reagents. - // Remove water on target - // Then do the transfer. - var nonWater = absorberSoln.SplitSolutionWithout(component.PickupAmount, PuddleSystem.EvaporationReagent); - _solutionContainerSystem.UpdateChemicals(used, absorberSoln, true); + // Prioritize transferring non-evaporatives if absorbent has any + var contaminants = absorbentSolution.SplitSolutionWithout(transferAmount, PuddleSystem.EvaporationReagents); + if (contaminants.Volume > 0) + { + _solutionSystem.UpdateChemicals(used, absorbentSolution, true); + _solutionSystem.TryAddSolution(target, refillableSolution, contaminants); + } + else + { + var evaporatives = absorbentSolution.SplitSolution(transferAmount); + _solutionSystem.UpdateChemicals(used, absorbentSolution, true); + _solutionSystem.TryAddSolution(target, refillableSolution, evaporatives); + } + + return true; + } - if (nonWater.Volume == FixedPoint2.Zero && absorberSoln.AvailableVolume == FixedPoint2.Zero) + /// + /// Logic for an transferring contaminants to a non-empty refillable & reabsorbing water if any available. + /// + private bool TryTwoWayAbsorbentRefillableTransfer( + EntityUid user, + EntityUid used, + EntityUid target, + AbsorbentComponent component, + Solution absorbentSolution, + Solution refillableSolution) + { + var contaminantsFromAbsorbent = absorbentSolution.SplitSolutionWithout(component.PickupAmount, PuddleSystem.EvaporationReagents); + _solutionSystem.UpdateChemicals(used, absorbentSolution, true); + + if (contaminantsFromAbsorbent.Volume == FixedPoint2.Zero && absorbentSolution.AvailableVolume == FixedPoint2.Zero) { + // Nothing to transfer to refillable and no room to absorb anything extra _popups.PopupEntity(Loc.GetString("mopping-system-puddle-space", ("used", used)), user, user); + + // We can return cleanly because nothing was split from absorbent solution return false; } - var transferAmount = component.PickupAmount < absorberSoln.AvailableVolume ? + var waterPulled = component.PickupAmount < absorbentSolution.AvailableVolume ? component.PickupAmount : - absorberSoln.AvailableVolume; + absorbentSolution.AvailableVolume; - var water = refillableSolution.RemoveReagent(PuddleSystem.EvaporationReagent, transferAmount); - _solutionContainerSystem.UpdateChemicals(target, refillableSolution); + var waterFromRefillable = refillableSolution.SplitSolutionWithOnly(waterPulled, PuddleSystem.EvaporationReagents); + _solutionSystem.UpdateChemicals(target, refillableSolution); - if (water == FixedPoint2.Zero && nonWater.Volume == FixedPoint2.Zero) + if (waterFromRefillable.Volume == FixedPoint2.Zero && contaminantsFromAbsorbent.Volume == FixedPoint2.Zero) { + // Nothing to transfer in either direction _popups.PopupEntity(Loc.GetString("mopping-system-target-container-empty-water", ("target", target)), user, user); + + // We can return cleanly because nothing was split from refillable solution return false; } + var anyTransferOccurred = false; - if (water > 0 && !_solutionContainerSystem.TryAddReagent(used, absorberSoln, PuddleSystem.EvaporationReagent, water, - out _)) + if (waterFromRefillable.Volume > FixedPoint2.Zero) { - _popups.PopupEntity(Loc.GetString("mopping-system-full", ("used", used)), used, user); + // transfer water to absorbent + _solutionSystem.TryAddSolution(used, absorbentSolution, waterFromRefillable); + anyTransferOccurred = true; } - // Attempt to transfer the full nonWater solution to the bucket. - if (nonWater.Volume > 0) + if (contaminantsFromAbsorbent.Volume > 0) { - bool fullTransferSuccess = _solutionContainerSystem.TryAddSolution(target, refillableSolution, nonWater); - - // If full transfer was unsuccessful, try a partial transfer. - if (!fullTransferSuccess) + if (refillableSolution.AvailableVolume <= 0) { - var partiallyTransferSolution = nonWater.SplitSolution(refillableSolution.AvailableVolume); - - // Try to transfer the split solution to the bucket. - if (_solutionContainerSystem.TryAddSolution(target, refillableSolution, partiallyTransferSolution)) - { - // The transfer was successful. nonWater now contains the amount that wasn't transferred. - // If there's any leftover nonWater solution, add it back to the mop. - if (nonWater.Volume > 0) - { - absorberSoln.AddSolution(nonWater, _prototype); - _solutionContainerSystem.UpdateChemicals(used, absorberSoln); - } - } - else - { - // If the transfer was unsuccessful, combine both solutions and return them to the mop. - nonWater.AddSolution(partiallyTransferSolution, _prototype); - absorberSoln.AddSolution(nonWater, _prototype); - _solutionContainerSystem.UpdateChemicals(used, absorberSoln); - } + _popups.PopupEntity(Loc.GetString("mopping-system-full", ("used", target)), user, user); } - } - else - { - _popups.PopupEntity(Loc.GetString("mopping-system-full", ("used", target)), user, user); + else + { + // transfer as much contaminants to refillable as will fit + var contaminantsForRefillable = contaminantsFromAbsorbent.SplitSolution(refillableSolution.AvailableVolume); + _solutionSystem.TryAddSolution(target, refillableSolution, contaminantsForRefillable); + anyTransferOccurred = true; + } + + // absorb everything that did not fit in the refillable back by the absorbent + _solutionSystem.TryAddSolution(used, absorbentSolution, contaminantsFromAbsorbent); } - _audio.PlayPvs(component.TransferSound, target); - _useDelay.BeginDelay(used); - return true; + return anyTransferOccurred; } /// @@ -217,18 +267,18 @@ private bool TryPuddleInteract(EntityUid user, EntityUid used, EntityUid target, if (!TryComp(target, out PuddleComponent? puddle)) return false; - if (!_solutionSystem.TryGetSolution(target, puddle.SolutionName, out var puddleSolution) || puddleSolution.Volume <= 0) + if (!_solutionSystem.TryGetSolution(target, puddle.SolutionName, out var puddleSoln) || puddleSoln.Volume <= 0) return false; // Check if the puddle has any non-evaporative reagents - if (_puddleSystem.CanFullyEvaporate(puddleSolution)) + if (_puddleSystem.CanFullyEvaporate(puddleSoln)) { _popups.PopupEntity(Loc.GetString("mopping-system-puddle-evaporate", ("target", target)), user, user); return true; } // Check if we have any evaporative reagents on our absorber to transfer - var available = absorberSoln.GetTotalPrototypeQuantity(PuddleSystem.EvaporationReagent); + var available = absorberSoln.GetTotalPrototypeQuantity(PuddleSystem.EvaporationReagents); // No material if (available == FixedPoint2.Zero) @@ -240,14 +290,21 @@ private bool TryPuddleInteract(EntityUid user, EntityUid used, EntityUid target, var transferMax = absorber.PickupAmount; var transferAmount = available > transferMax ? transferMax : available; - var split = puddleSolution.SplitSolutionWithout(transferAmount, PuddleSystem.EvaporationReagent); + var puddleSplit = puddleSoln.SplitSolutionWithout(transferAmount, PuddleSystem.EvaporationReagents); + var absorberSplit = absorberSoln.SplitSolutionWithOnly(puddleSplit.Volume, PuddleSystem.EvaporationReagents); + + // Do tile reactions first + var coordinates = Transform(target).Coordinates; + if (_mapManager.TryGetGrid(coordinates.GetGridUid(EntityManager), out var mapGrid)) + { + _puddleSystem.DoTileReactions(mapGrid.GetTileRef(coordinates), absorberSplit); + } - absorberSoln.RemoveReagent(PuddleSystem.EvaporationReagent, split.Volume); - puddleSolution.AddReagent(PuddleSystem.EvaporationReagent, split.Volume); - absorberSoln.AddSolution(split, _prototype); + puddleSoln.AddSolution(absorberSplit, _prototype); + absorberSoln.AddSolution(puddleSplit, _prototype); _solutionSystem.UpdateChemicals(used, absorberSoln); - _solutionSystem.UpdateChemicals(target, puddleSolution); + _solutionSystem.UpdateChemicals(target, puddleSoln); _audio.PlayPvs(absorber.PickupSound, target); _useDelay.BeginDelay(used); diff --git a/Content.Server/Fluids/EntitySystems/DrainSystem.cs b/Content.Server/Fluids/EntitySystems/DrainSystem.cs index ea3df2f8c4..505ce71261 100644 --- a/Content.Server/Fluids/EntitySystems/DrainSystem.cs +++ b/Content.Server/Fluids/EntitySystems/DrainSystem.cs @@ -13,6 +13,9 @@ using Content.Shared.Interaction; using Content.Shared.Tag; using Content.Shared.Verbs; +using Content.Shared.Fluids.Components; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Collections; using Robust.Shared.Random; using Robust.Shared.Utility; diff --git a/Content.Server/Fluids/EntitySystems/PuddleSystem.Evaporation.cs b/Content.Server/Fluids/EntitySystems/PuddleSystem.Evaporation.cs index 1392a23356..d0df5e0505 100644 --- a/Content.Server/Fluids/EntitySystems/PuddleSystem.Evaporation.cs +++ b/Content.Server/Fluids/EntitySystems/PuddleSystem.Evaporation.cs @@ -11,7 +11,12 @@ public sealed partial class PuddleSystem private static readonly TimeSpan EvaporationCooldown = TimeSpan.FromSeconds(1); [ValidatePrototypeId] - public const string EvaporationReagent = "Water"; + private const string Water = "Water"; + + [ValidatePrototypeId] + private const string SoapyWater = "SoapyWater"; + + public static string[] EvaporationReagents = new[] { Water, SoapyWater }; private void OnEvaporationMapInit(EntityUid uid, EvaporationComponent component, MapInitEvent args) { @@ -25,7 +30,7 @@ private void UpdateEvaporation(EntityUid uid, Solution solution) return; } - if (solution.ContainsPrototype(EvaporationReagent)) + if (solution.GetTotalPrototypeQuantity(EvaporationReagents) > FixedPoint2.Zero) { var evaporation = AddComp(uid); evaporation.NextTick = _timing.CurTime + EvaporationCooldown; @@ -51,7 +56,7 @@ private void TickEvaporation() continue; var reagentTick = evaporation.EvaporationAmount * EvaporationCooldown.TotalSeconds; - _solutionContainerSystem.RemoveReagent(uid, puddleSolution, EvaporationReagent, reagentTick); + puddleSolution.SplitSolutionWithOnly(reagentTick, EvaporationReagents); // Despawn if we're done if (puddleSolution.Volume == FixedPoint2.Zero) @@ -65,6 +70,6 @@ private void TickEvaporation() public bool CanFullyEvaporate(Solution solution) { - return solution.Contents.Count == 1 && solution.ContainsPrototype(EvaporationReagent); + return solution.GetTotalPrototypeQuantity(EvaporationReagents) == solution.Volume; } } diff --git a/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs b/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs index a6d6a5b204..e1681d8731 100644 --- a/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs +++ b/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs @@ -6,6 +6,7 @@ using Content.Shared.Chemistry.Reaction; using Content.Shared.Chemistry.Reagent; using Content.Shared.Clothing.Components; +using Content.Shared.CombatMode.Pacification; using Content.Shared.Database; using Content.Shared.DoAfter; using Content.Shared.Examine; @@ -25,6 +26,7 @@ namespace Content.Server.Fluids.EntitySystems; public sealed partial class PuddleSystem { [Dependency] private readonly OpenableSystem _openable = default!; + [Dependency] private readonly IEntityManager _entityManager = default!; private void InitializeSpillable() { @@ -36,6 +38,7 @@ private void InitializeSpillable() SubscribeLocalEvent(OnGotEquipped); SubscribeLocalEvent(OnOverflow); SubscribeLocalEvent(OnDoAfter); + SubscribeLocalEvent(OnAttemptPacifiedThrow); } private void OnExamined(EntityUid uid, SpillableComponent component, ExaminedEvent args) @@ -152,6 +155,22 @@ private void SpillOnLand(EntityUid uid, SpillableComponent component, ref LandEv TrySplashSpillAt(uid, Transform(uid).Coordinates, drainedSolution, out _); } + /// + /// Prevent Pacified entities from throwing items that can spill liquids. + /// + private void OnAttemptPacifiedThrow(Entity ent, ref AttemptPacifiedThrowEvent args) + { + // Don’t care about closed containers. + if (_openable.IsClosed(ent)) + return; + + // Don’t care about empty containers. + if (!_solutionContainerSystem.TryGetSolution(ent, ent.Comp.SolutionName, out var solution)) + return; + + args.Cancel("pacified-cannot-throw-spill"); + } + private void AddSpillVerb(EntityUid uid, SpillableComponent component, GetVerbsEvent args) { if (!args.CanAccess || !args.CanInteract) @@ -166,6 +185,10 @@ private void AddSpillVerb(EntityUid uid, SpillableComponent component, GetVerbsE if (solution.Volume == FixedPoint2.Zero) return; + if (_entityManager.HasComponent(args.User)) + return; + + Verb verb = new() { Text = Loc.GetString("spill-target-verb-get-data-text") diff --git a/Content.Server/Fluids/EntitySystems/PuddleSystem.cs b/Content.Server/Fluids/EntitySystems/PuddleSystem.cs index 886cb9eff1..05d0809bb2 100644 --- a/Content.Server/Fluids/EntitySystems/PuddleSystem.cs +++ b/Content.Server/Fluids/EntitySystems/PuddleSystem.cs @@ -30,6 +30,11 @@ using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Timing; +using Content.Shared.Movement.Components; +using Content.Shared.Movement.Systems; +using Content.Shared.Maps; +using Content.Shared.Effects; +using Robust.Server.Audio; namespace Content.Server.Fluids.EntitySystems; @@ -63,9 +68,9 @@ public sealed partial class PuddleSystem : SharedPuddleSystem private const string Slime = "Slime"; [ValidatePrototypeId] - private const string SpiderBlood = "SpiderBlood"; + private const string CopperBlood = "CopperBlood"; - private static string[] _standoutReagents = new[] { Blood, Slime, SpiderBlood }; + private static string[] _standoutReagents = new[] { Blood, Slime, CopperBlood }; public static float PuddleVolume = 1000; @@ -373,7 +378,7 @@ private void HandlePuddleExamined(EntityUid uid, PuddleComponent component, Exam { args.PushMarkup(Loc.GetString("puddle-component-examine-evaporating")); } - else if (solution?.ContainsPrototype(EvaporationReagent) == true) + else if (solution?.GetTotalPrototypeQuantity(EvaporationReagents) > FixedPoint2.Zero) { args.PushMarkup(Loc.GetString("puddle-component-examine-evaporating-partial")); } @@ -446,8 +451,7 @@ public bool TryAddSolution(EntityUid puddleUid, return true; } - SoundSystem.Play(puddleComponent.SpillSound.GetSound(), - Filter.Pvs(puddleUid), puddleUid); + _audio.PlayPvs(puddleComponent.SpillSound, puddleUid); return true; } @@ -602,16 +606,7 @@ public bool TrySpillAt(TileRef tileRef, Solution solution, out EntityUid puddleU if (tileReact) { // First, do all tile reactions - for (var i = solution.Contents.Count - 1; i >= 0; i--) - { - var (reagent, quantity) = solution.Contents[i]; - var proto = _prototypeManager.Index(reagent.Prototype); - var removed = proto.ReactionTile(tileRef, quantity); - if (removed <= FixedPoint2.Zero) - continue; - - solution.RemoveReagent(reagent, removed); - } + DoTileReactions(tileRef, solution); } // Tile reactions used up everything. @@ -660,6 +655,21 @@ public bool TrySpillAt(TileRef tileRef, Solution solution, out EntityUid puddleU #endregion + public void DoTileReactions(TileRef tileRef, Solution solution) + { + for (var i = solution.Contents.Count - 1; i >= 0; i--) + { + + var (reagent, quantity) = solution.Contents[i]; + var proto = _prototypeManager.Index(reagent.Prototype); + var removed = proto.ReactionTile(tileRef, quantity); + if (removed <= FixedPoint2.Zero) + continue; + + solution.RemoveReagent(reagent, removed); + } + } + /// /// Tries to get the relevant puddle entity for a tile. /// diff --git a/Content.Server/Fluids/EntitySystems/SpraySystem.cs b/Content.Server/Fluids/EntitySystems/SpraySystem.cs index f0afd43dd2..1b87b3ef24 100644 --- a/Content.Server/Fluids/EntitySystems/SpraySystem.cs +++ b/Content.Server/Fluids/EntitySystems/SpraySystem.cs @@ -12,6 +12,8 @@ using Content.Shared.Interaction; using Content.Shared.Vapor; using Robust.Server.GameObjects; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Physics.Components; using Robust.Shared.Prototypes; using Robust.Shared.Timing; diff --git a/Content.Server/Forensics/Components/CleansForensicsComponent.cs b/Content.Server/Forensics/Components/CleansForensicsComponent.cs new file mode 100644 index 0000000000..a1f40c9527 --- /dev/null +++ b/Content.Server/Forensics/Components/CleansForensicsComponent.cs @@ -0,0 +1,14 @@ +namespace Content.Server.Forensics; + +/// +/// This component is for items that can clean up forensic evidence +/// +[RegisterComponent] +public sealed partial class CleansForensicsComponent : Component +{ + /// + /// How long it takes to wipe prints/blood/etc. off of things using this entity + /// + [DataField] + public float CleanDelay = 12.0f; +} diff --git a/Content.Server/Forensics/Components/FingerprintComponent.cs b/Content.Server/Forensics/Components/FingerprintComponent.cs index 96f8042ddf..97d138119e 100644 --- a/Content.Server/Forensics/Components/FingerprintComponent.cs +++ b/Content.Server/Forensics/Components/FingerprintComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Forensics [RegisterComponent] public sealed partial class FingerprintComponent : Component { - [DataField("fingerprint")] + [DataField("fingerprint"), ViewVariables(VVAccess.ReadWrite)] public string? Fingerprint; } } diff --git a/Content.Server/Forensics/Components/ForensicScannerComponent.cs b/Content.Server/Forensics/Components/ForensicScannerComponent.cs index 16eb852590..ad26213848 100644 --- a/Content.Server/Forensics/Components/ForensicScannerComponent.cs +++ b/Content.Server/Forensics/Components/ForensicScannerComponent.cs @@ -13,21 +13,27 @@ public sealed partial class ForensicScannerComponent : Component /// /// A list of fingerprint GUIDs that the forensic scanner found from the on an entity. /// - [ViewVariables(VVAccess.ReadOnly)] + [ViewVariables(VVAccess.ReadOnly), DataField("fingerprints")] public List Fingerprints = new(); /// /// A list of glove fibers that the forensic scanner found from the on an entity. /// - [ViewVariables(VVAccess.ReadOnly)] + [ViewVariables(VVAccess.ReadOnly), DataField("fibers")] public List Fibers = new(); /// /// DNA that the forensic scanner found from the on an entity. /// - [ViewVariables(VVAccess.ReadOnly)] + [ViewVariables(VVAccess.ReadOnly), DataField("dnas")] public List DNAs = new(); + /// + /// Residue that the forensic scanner found from the on an entity. + /// + [ViewVariables(VVAccess.ReadOnly), DataField("residues")] + public List Residues = new(); + /// /// What is the name of the entity that was scanned last? /// diff --git a/Content.Server/Forensics/Components/ForensicsComponent.cs b/Content.Server/Forensics/Components/ForensicsComponent.cs index 5a73a6a3e3..e4579c5f3a 100644 --- a/Content.Server/Forensics/Components/ForensicsComponent.cs +++ b/Content.Server/Forensics/Components/ForensicsComponent.cs @@ -11,5 +11,21 @@ public sealed partial class ForensicsComponent : Component [DataField("dnas")] public HashSet DNAs = new(); + + [DataField("residues")] + public HashSet Residues = new(); + + /// + /// How close you must be to wipe the prints/blood/etc. off of this entity + /// + [DataField("cleanDistance")] + public float CleanDistance = 1.5f; + + /// + /// Can the DNA be cleaned off of this entity? + /// e.g. you can wipe the DNA off of a knife, but not a cigarette + /// + [DataField("canDnaBeCleaned")] + public bool CanDnaBeCleaned = true; } } diff --git a/Content.Server/Forensics/Components/IgnoresFingerprintsComponent.cs b/Content.Server/Forensics/Components/IgnoresFingerprintsComponent.cs new file mode 100644 index 0000000000..4ecaf849af --- /dev/null +++ b/Content.Server/Forensics/Components/IgnoresFingerprintsComponent.cs @@ -0,0 +1,7 @@ +namespace Content.Server.Forensics.Components; + +/// +/// This component is for entities we do not wish to track fingerprints/fibers, like puddles +/// +[RegisterComponent] +public sealed partial class IgnoresFingerprintsComponent : Component { } diff --git a/Content.Server/Forensics/Components/ResidueComponent.cs b/Content.Server/Forensics/Components/ResidueComponent.cs new file mode 100644 index 0000000000..10895e7c2b --- /dev/null +++ b/Content.Server/Forensics/Components/ResidueComponent.cs @@ -0,0 +1,15 @@ +namespace Content.Server.Forensics; + +/// +/// This controls residues left on items +/// which the forensics system uses. +/// +[RegisterComponent] +public sealed partial class ResidueComponent : Component +{ + [DataField] + public LocId ResidueAdjective = "residue-unknown"; + + [DataField] + public string? ResidueColor; +} diff --git a/Content.Server/Forensics/Systems/ForensicScannerSystem.cs b/Content.Server/Forensics/Systems/ForensicScannerSystem.cs index acf7cbd80d..6710864c72 100644 --- a/Content.Server/Forensics/Systems/ForensicScannerSystem.cs +++ b/Content.Server/Forensics/Systems/ForensicScannerSystem.cs @@ -8,6 +8,7 @@ using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction; using Content.Shared.Verbs; +using Robust.Shared.Audio.Systems; using Robust.Server.GameObjects; using Robust.Shared.Audio; using Robust.Shared.Player; @@ -50,6 +51,7 @@ private void UpdateUserInterface(EntityUid uid, ForensicScannerComponent compone component.Fingerprints, component.Fibers, component.DNAs, + component.Residues, component.LastScannedName, component.PrintCooldown, component.PrintReadyAt); @@ -73,6 +75,7 @@ private void OnDoAfter(EntityUid uid, ForensicScannerComponent component, DoAfte scanner.Fingerprints = new(); scanner.Fibers = new(); scanner.DNAs = new(); + scanner.Residues = new(); } else @@ -80,6 +83,7 @@ private void OnDoAfter(EntityUid uid, ForensicScannerComponent component, DoAfte scanner.Fingerprints = forensics.Fingerprints.ToList(); scanner.Fibers = forensics.Fibers.ToList(); scanner.DNAs = forensics.DNAs.ToList(); + scanner.Residues = forensics.Residues.ToList(); } scanner.LastScannedName = MetaData(args.Args.Target.Value).EntityName; @@ -221,6 +225,12 @@ private void OnPrint(EntityUid uid, ForensicScannerComponent component, Forensic { text.AppendLine(dna); } + text.AppendLine(); + text.AppendLine(Loc.GetString("forensic-scanner-interface-residues")); + foreach (var residue in component.Residues) + { + text.AppendLine(residue); + } _paperSystem.SetContent(printed, text.ToString()); _audioSystem.PlayPvs(component.SoundPrint, uid, diff --git a/Content.Server/Forensics/Systems/ForensicsSystem.cs b/Content.Server/Forensics/Systems/ForensicsSystem.cs index c67af9d816..16bd2a50ee 100644 --- a/Content.Server/Forensics/Systems/ForensicsSystem.cs +++ b/Content.Server/Forensics/Systems/ForensicsSystem.cs @@ -1,5 +1,14 @@ +using Content.Server.Body.Components; +using Content.Server.DoAfter; +using Content.Server.Fluids.EntitySystems; +using Content.Server.Forensics.Components; +using Content.Server.Popups; +using Content.Shared.DoAfter; +using Content.Shared.Forensics; +using Content.Shared.Interaction; using Content.Shared.Interaction.Events; using Content.Shared.Inventory; +using Content.Shared.Weapons.Melee.Events; using Robust.Shared.Random; namespace Content.Server.Forensics @@ -8,11 +17,19 @@ public sealed class ForensicsSystem : EntitySystem { [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly InventorySystem _inventory = default!; + [Dependency] private readonly DoAfterSystem _doAfterSystem = default!; + [Dependency] private readonly PopupSystem _popupSystem = default!; public override void Initialize() { SubscribeLocalEvent(OnInteract); SubscribeLocalEvent(OnFingerprintInit); SubscribeLocalEvent(OnDNAInit); + + SubscribeLocalEvent(OnBeingGibbed); + SubscribeLocalEvent(OnMeleeHit); + SubscribeLocalEvent(OnAfterInteract, after: new[] { typeof(AbsorbentSystem) }); + SubscribeLocalEvent(OnCleanForensicsDoAfter); + SubscribeLocalEvent(OnTransferDnaEvent); } private void OnInteract(EntityUid uid, FingerprintComponent component, ContactInteractionEvent args) @@ -30,14 +47,87 @@ private void OnDNAInit(EntityUid uid, DnaComponent component, MapInitEvent args) component.DNA = GenerateDNA(); } - private string GenerateFingerprint() + private void OnBeingGibbed(EntityUid uid, DnaComponent component, BeingGibbedEvent args) + { + foreach(EntityUid part in args.GibbedParts) + { + var partComp = EnsureComp(part); + partComp.DNAs.Add(component.DNA); + partComp.CanDnaBeCleaned = false; + } + } + + private void OnMeleeHit(EntityUid uid, ForensicsComponent component, MeleeHitEvent args) + { + if((args.BaseDamage.DamageDict.TryGetValue("Blunt", out var bluntDamage) && bluntDamage.Value > 0) || + (args.BaseDamage.DamageDict.TryGetValue("Slash", out var slashDamage) && slashDamage.Value > 0) || + (args.BaseDamage.DamageDict.TryGetValue("Piercing", out var pierceDamage) && pierceDamage.Value > 0)) + { + foreach(EntityUid hitEntity in args.HitEntities) + { + if(TryComp(hitEntity, out var hitEntityComp)) + component.DNAs.Add(hitEntityComp.DNA); + } + } + } + + private void OnAfterInteract(EntityUid uid, CleansForensicsComponent component, AfterInteractEvent args) + { + if (args.Handled) + return; + + if (!TryComp(args.Target, out var forensicsComp)) + return; + + if((forensicsComp.DNAs.Count > 0 && forensicsComp.CanDnaBeCleaned) || (forensicsComp.Fingerprints.Count + forensicsComp.Fibers.Count > 0)) + { + var doAfterArgs = new DoAfterArgs(EntityManager, args.User, component.CleanDelay, new CleanForensicsDoAfterEvent(), uid, target: args.Target, used: args.Used) + { + BreakOnHandChange = true, + NeedHand = true, + BreakOnDamage = true, + BreakOnTargetMove = true, + MovementThreshold = 0.01f, + DistanceThreshold = forensicsComp.CleanDistance, + }; + + _doAfterSystem.TryStartDoAfter(doAfterArgs); + _popupSystem.PopupEntity(Loc.GetString("forensics-cleaning", ("target", args.Target)), args.User, args.User); + + args.Handled = true; + } + } + + private void OnCleanForensicsDoAfter(EntityUid uid, ForensicsComponent component, CleanForensicsDoAfterEvent args) + { + if (args.Handled || args.Cancelled || args.Args.Target == null) + return; + + if (!TryComp(args.Target, out var targetComp)) + return; + + targetComp.Fibers = new(); + targetComp.Fingerprints = new(); + + if (targetComp.CanDnaBeCleaned) + targetComp.DNAs = new(); + + // leave behind evidence it was cleaned + if (TryComp(args.Used, out var fiber)) + targetComp.Fibers.Add(string.IsNullOrEmpty(fiber.FiberColor) ? Loc.GetString("forensic-fibers", ("material", fiber.FiberMaterial)) : Loc.GetString("forensic-fibers-colored", ("color", fiber.FiberColor), ("material", fiber.FiberMaterial))); + + if (TryComp(args.Used, out var residue)) + targetComp.Residues.Add(string.IsNullOrEmpty(residue.ResidueColor) ? Loc.GetString("forensic-residue", ("adjective", residue.ResidueAdjective)) : Loc.GetString("forensic-residue-colored", ("color", residue.ResidueColor), ("adjective", residue.ResidueAdjective))); + } + + public string GenerateFingerprint() { var fingerprint = new byte[16]; _random.NextBytes(fingerprint); return Convert.ToHexString(fingerprint); } - private string GenerateDNA() + public string GenerateDNA() { var letters = new[] { "A", "C", "G", "T" }; var DNA = string.Empty; @@ -52,6 +142,9 @@ private string GenerateDNA() private void ApplyEvidence(EntityUid user, EntityUid target) { + if (HasComp(target)) + return; + var component = EnsureComp(target); if (_inventory.TryGetSlotEntity(user, "gloves", out var gloves)) { @@ -64,5 +157,32 @@ private void ApplyEvidence(EntityUid user, EntityUid target) if (TryComp(user, out var fingerprint)) component.Fingerprints.Add(fingerprint.Fingerprint ?? ""); } + + private void OnTransferDnaEvent(EntityUid uid, DnaComponent component, ref TransferDnaEvent args) + { + var recipientComp = EnsureComp(args.Recipient); + recipientComp.DNAs.Add(component.DNA); + recipientComp.CanDnaBeCleaned = args.CanDnaBeCleaned; + } + + #region Public API + + /// + /// Transfer DNA from one entity onto the forensics of another + /// + /// The entity receiving the DNA + /// The entity applying its DNA + /// If this DNA be cleaned off of the recipient. e.g. cleaning a knife vs cleaning a puddle of blood + public void TransferDna(EntityUid recipient, EntityUid donor, bool canDnaBeCleaned = true) + { + if (TryComp(donor, out var donorComp)) + { + EnsureComp(recipient, out var recipientComp); + recipientComp.DNAs.Add(donorComp.DNA); + recipientComp.CanDnaBeCleaned = canDnaBeCleaned; + } + } + + #endregion } } diff --git a/Content.Server/GameTicking/GameTicker.GamePreset.cs b/Content.Server/GameTicking/GameTicker.GamePreset.cs index 2d7539bd0f..f17a3aed37 100644 --- a/Content.Server/GameTicking/GameTicker.GamePreset.cs +++ b/Content.Server/GameTicking/GameTicker.GamePreset.cs @@ -7,9 +7,12 @@ using Content.Shared.Damage; using Content.Shared.Damage.Prototypes; using Content.Shared.Database; +using Content.Shared.FixedPoint; using Content.Shared.Ghost; using Content.Shared.Mind; +using Content.Shared.Mobs; using Content.Shared.Mobs.Components; +using Content.Shared.Mobs.Systems; using JetBrains.Annotations; using Robust.Shared.Player; @@ -17,6 +20,8 @@ namespace Content.Server.GameTicking { public sealed partial class GameTicker { + [Dependency] private readonly MobThresholdSystem _mobThresholdSystem = default!; + public const float PresetFailedCooldownIncrease = 30f; /// @@ -254,7 +259,17 @@ public bool OnGhostAttempt(EntityUid mindId, bool canReturnGlobal, bool viaComma //todo: what if they dont breathe lol //cry deeply - DamageSpecifier damage = new(_prototypeManager.Index("Asphyxiation"), 200); + + FixedPoint2 dealtDamage = 200; + if (TryComp(playerEntity, out var damageable) + && TryComp(playerEntity, out var thresholds)) + { + var playerDeadThreshold = _mobThresholdSystem.GetThresholdForState(playerEntity.Value, MobState.Dead, thresholds); + dealtDamage = playerDeadThreshold - damageable.TotalDamage; + } + + DamageSpecifier damage = new(_prototypeManager.Index("Asphyxiation"), dealtDamage); + _damageable.TryChangeDamage(playerEntity, damage, true); } } @@ -262,7 +277,7 @@ public bool OnGhostAttempt(EntityUid mindId, bool canReturnGlobal, bool viaComma var xformQuery = GetEntityQuery(); var coords = _transform.GetMoverCoordinates(position, xformQuery); - var ghost = Spawn("MobObserver", coords); + var ghost = Spawn(ObserverPrototypeName, coords); // Try setting the ghost entity name to either the character name or the player name. // If all else fails, it'll default to the default entity prototype name, "observer". @@ -301,7 +316,7 @@ private void IncrementRoundNumber() // This whole setup logic should be made asynchronous so we can properly wait on the DB AAAAAAAAAAAAAH var task = Task.Run(async () => { - var server = await _db.AddOrGetServer(serverName); + var server = await _dbEntryManager.ServerEntity; return await _db.AddNewRound(server, playerIds); }); diff --git a/Content.Server/GameTicking/GameTicker.Player.cs b/Content.Server/GameTicking/GameTicker.Player.cs index caa8062f41..b6c20e56a5 100644 --- a/Content.Server/GameTicking/GameTicker.Player.cs +++ b/Content.Server/GameTicking/GameTicker.Player.cs @@ -4,7 +4,6 @@ using Content.Shared.Players; using Content.Shared.Preferences; using JetBrains.Annotations; -using Robust.Server.GameObjects; using Robust.Server.Player; using Robust.Shared.Enums; using Robust.Shared.Player; @@ -18,7 +17,6 @@ public sealed partial class GameTicker { [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IServerDbManager _dbManager = default!; - [Dependency] private readonly ActorSystem _actor = default!; private void InitializePlayer() { @@ -34,7 +32,7 @@ private async void PlayerStatusChanged(object? sender, SessionStatusEventArgs ar if (args.NewStatus != SessionStatus.Disconnected) { mind.Session = session; - _pvsOverride.AddSessionOverride(mindId.Value, session); + _pvsOverride.AddSessionOverride(GetNetEntity(mindId.Value), session); } DebugTools.Assert(mind.Session == session); @@ -103,7 +101,7 @@ private async void PlayerStatusChanged(object? sender, SessionStatusEventArgs ar } else { - if (_actor.Attach(mind.CurrentEntity, session)) + if (_playerManager.SetAttachedEntity(session, mind.CurrentEntity)) { PlayerJoinGame(session); } @@ -123,7 +121,7 @@ private async void PlayerStatusChanged(object? sender, SessionStatusEventArgs ar _chatManager.SendAdminAnnouncement(Loc.GetString("player-leave-message", ("name", args.Session.Name))); if (mind != null) { - _pvsOverride.ClearOverride(mindId!.Value); + _pvsOverride.ClearOverride(GetNetEntity(mindId!.Value)); mind.Session = null; } @@ -155,7 +153,7 @@ async void AddPlayerToDb(Guid id) } } - private HumanoidCharacterProfile GetPlayerProfile(ICommonSession p) + public HumanoidCharacterProfile GetPlayerProfile(ICommonSession p) { return (HumanoidCharacterProfile) _prefsManager.GetPreferences(p.UserId).SelectedCharacter; } diff --git a/Content.Server/GameTicking/GameTicker.RoundFlow.cs b/Content.Server/GameTicking/GameTicker.RoundFlow.cs index 85f833bd1c..3b8fce5400 100644 --- a/Content.Server/GameTicking/GameTicker.RoundFlow.cs +++ b/Content.Server/GameTicking/GameTicker.RoundFlow.cs @@ -1,5 +1,6 @@ using System.Linq; using Content.Server.Announcements; +using Content.Server.Corvax.GameTicking; using Content.Server.Discord; using Content.Server.GameTicking.Events; using Content.Server.Ghost; @@ -163,6 +164,8 @@ public IReadOnlyList LoadGameMap(GameMapPrototype map, MapId targetMa var gridIds = _map.LoadMap(targetMapId, ev.GameMap.MapPath.ToString(), ev.Options); + _metaData.SetEntityName(_mapManager.GetMapEntityId(targetMapId), "Station map"); + var gridUids = gridIds.ToList(); RaiseLocalEvent(new PostGameMapLoad(map, targetMapId, gridUids, stationName)); @@ -252,6 +255,7 @@ public void StartRound(bool force = false) AnnounceRound(); UpdateInfoText(); SendRoundStartedDiscordMessage(); + RaiseLocalEvent(new RoundStartedEvent(RoundId)); // Corvax-RoundFlow #if EXCEPTION_TOLERANCE } @@ -360,7 +364,9 @@ public void ShowRoundEndScoreboard(string text = "") playerIcName = icName; if (TryGetEntity(mind.OriginalOwnedEntity, out var entity)) - _pvsOverride.AddGlobalOverride(entity.Value, recursive: true); + { + _pvsOverride.AddGlobalOverride(GetNetEntity(entity.Value), recursive: true); + } var roles = _roles.MindGetAllRoles(mindId); @@ -388,6 +394,7 @@ public void ShowRoundEndScoreboard(string text = "") RaiseNetworkEvent(new RoundEndMessageEvent(gamemodeTitle, roundEndText, roundDuration, RoundId, listOfPlayerInfoFinal.Length, listOfPlayerInfoFinal, LobbySong, new SoundCollectionSpecifier("RoundEnd").GetSound())); + RaiseLocalEvent(new RoundEndedEvent(RoundId, roundDuration)); // Corvax-RoundFlow } private async void SendRoundEndDiscordMessage() @@ -609,7 +616,7 @@ private void AnnounceRound() _chatSystem.DispatchGlobalAnnouncement(Loc.GetString(proto.Message), playSound: true); if (proto.Sound != null) - SoundSystem.Play(proto.Sound.GetSound(), Filter.Broadcast()); + _audio.PlayGlobal(proto.Sound, Filter.Broadcast(), true); } private async void SendRoundStartedDiscordMessage() diff --git a/Content.Server/GameTicking/GameTicker.Spawning.cs b/Content.Server/GameTicking/GameTicker.Spawning.cs index c2bf523657..9bf40b20d4 100644 --- a/Content.Server/GameTicking/GameTicker.Spawning.cs +++ b/Content.Server/GameTicking/GameTicker.Spawning.cs @@ -31,6 +31,9 @@ public sealed partial class GameTicker [ValidatePrototypeId] public const string ObserverPrototypeName = "MobObserver"; + [ValidatePrototypeId] + public const string AdminObserverPrototypeName = "AdminObserver"; + /// /// How many players have joined the round through normal methods. /// Useful for game rules to look at. Doesn't count observers, people in lobby, etc. @@ -200,13 +203,21 @@ private void SpawnPlayer(ICommonSession player, HumanoidCharacterProfile charact _mind.SetUserId(newMind, data.UserId); var jobPrototype = _prototypeManager.Index(jobId); - var job = new JobComponent { PrototypeId = jobId }; + var job = new JobComponent { Prototype = jobId }; _roles.MindAddRole(newMind, job, silent: silent); var jobName = _jobs.MindTryGetJobName(newMind); _playTimeTrackings.PlayerRolesChanged(player); - var mobMaybe = _stationSpawning.SpawnPlayerCharacterOnStation(station, job, character); + // Delta-V: Add AlwaysUseSpawner. + var spawnPointType = SpawnPointType.Unset; + if (jobPrototype.AlwaysUseSpawner) + { + lateJoin = false; + spawnPointType = SpawnPointType.Job; + } + + var mobMaybe = _stationSpawning.SpawnPlayerCharacterOnStation(station, job, character, spawnPointType: spawnPointType); DebugTools.AssertNotNull(mobMaybe); var mob = mobMaybe!.Value; diff --git a/Content.Server/GameTicking/GameTicker.StatusShell.cs b/Content.Server/GameTicking/GameTicker.StatusShell.cs index e2da4d0995..7d16f2ede2 100644 --- a/Content.Server/GameTicking/GameTicker.StatusShell.cs +++ b/Content.Server/GameTicking/GameTicker.StatusShell.cs @@ -1,5 +1,6 @@ using System.Text.Json.Nodes; using Content.Shared.CCVar; +using Content.Shared.GameTicking; using Robust.Server.ServerStatus; using Robust.Shared.Configuration; @@ -22,7 +23,11 @@ public sealed partial class GameTicker /// For access to CVars in status responses. /// [Dependency] private readonly IConfigurationManager _cfg = default!; - + /// + /// For access to the round ID in status responses. + /// + [Dependency] private readonly SharedGameTicker _gameTicker = default!; + private void InitializeStatusShell() { IoCManager.Resolve().OnStatusRequest += GetStatusResponse; @@ -34,6 +39,8 @@ private void GetStatusResponse(JsonNode jObject) lock (_statusShellLock) { jObject["name"] = _baseServer.ServerName; + jObject["map"] = _gameMapManager.GetSelectedMap()?.MapName; + jObject["round_id"] = _gameTicker.RoundId; jObject["players"] = _playerManager.PlayerCount; jObject["soft_max_players"] = _cfg.GetCVar(CCVars.SoftMaxPlayers); jObject["run_level"] = (int) _runLevel; diff --git a/Content.Server/GameTicking/GameTicker.cs b/Content.Server/GameTicking/GameTicker.cs index 14819fb0ac..1d07814ece 100644 --- a/Content.Server/GameTicking/GameTicker.cs +++ b/Content.Server/GameTicking/GameTicker.cs @@ -19,6 +19,8 @@ using Robust.Server; using Robust.Server.GameObjects; using Robust.Server.GameStates; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; using Robust.Shared.Console; using Robust.Shared.Map; @@ -61,12 +63,14 @@ public sealed partial class GameTicker : SharedGameTicker [Dependency] private readonly PlayTimeTrackingSystem _playTimeTrackings = default!; [Dependency] private readonly PvsOverrideSystem _pvsOverride = default!; [Dependency] private readonly ServerUpdateManager _serverUpdates = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly StationJobsSystem _stationJobs = default!; [Dependency] private readonly StationSpawningSystem _stationSpawning = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly UserDbDataManager _userDb = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly SharedRoleSystem _roles = default!; + [Dependency] private readonly ServerDbEntryManager _dbEntryManager = default!; [ViewVariables] private bool _initialized; [ViewVariables] private bool _postInitialized; diff --git a/Content.Server/GameTicking/Presets/GamePresetPrototype.cs b/Content.Server/GameTicking/Presets/GamePresetPrototype.cs index aff42cb4a7..4731364ace 100644 --- a/Content.Server/GameTicking/Presets/GamePresetPrototype.cs +++ b/Content.Server/GameTicking/Presets/GamePresetPrototype.cs @@ -10,7 +10,7 @@ namespace Content.Server.GameTicking.Presets /// A round-start setup preset, such as which antagonists to spawn. /// [Prototype("gamePreset")] - public sealed class GamePresetPrototype : IPrototype + public sealed partial class GamePresetPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Server/GameTicking/Prototypes/LobbyBackgroundPrototype.cs b/Content.Server/GameTicking/Prototypes/LobbyBackgroundPrototype.cs index 27f9930df5..4370c22b7f 100644 --- a/Content.Server/GameTicking/Prototypes/LobbyBackgroundPrototype.cs +++ b/Content.Server/GameTicking/Prototypes/LobbyBackgroundPrototype.cs @@ -7,7 +7,7 @@ namespace Content.Server.GameTicking.Prototypes; /// Prototype for a lobby background the game can choose. /// [Prototype("lobbyBackground")] -public sealed class LobbyBackgroundPrototype : IPrototype +public sealed partial class LobbyBackgroundPrototype : IPrototype { /// [IdDataField] diff --git a/Content.Server/GameTicking/Rules/Components/NukeOperativeComponent.cs b/Content.Server/GameTicking/Rules/Components/NukeOperativeComponent.cs deleted file mode 100644 index 59fc9526dc..0000000000 --- a/Content.Server/GameTicking/Rules/Components/NukeOperativeComponent.cs +++ /dev/null @@ -1,16 +0,0 @@ -using Robust.Shared.Audio; - -namespace Content.Server.GameTicking.Rules.Components; - -/// -/// This is used for tagging a mob as a nuke operative. -/// -[RegisterComponent] -public sealed partial class NukeOperativeComponent : Component -{ - /// - /// Path to antagonist alert sound. - /// - [DataField("greetSoundNotification")] - public SoundSpecifier GreetSoundNotification = new SoundPathSpecifier("/Audio/Ambience/Antag/nukeops_start.ogg"); -} diff --git a/Content.Server/GameTicking/Rules/Components/NukeopsRuleComponent.cs b/Content.Server/GameTicking/Rules/Components/NukeopsRuleComponent.cs index 55c14f88d4..8d9da3646d 100644 --- a/Content.Server/GameTicking/Rules/Components/NukeopsRuleComponent.cs +++ b/Content.Server/GameTicking/Rules/Components/NukeopsRuleComponent.cs @@ -10,6 +10,7 @@ using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; using Robust.Shared.Utility; + namespace Content.Server.GameTicking.Rules.Components; [RegisterComponent, Access(typeof(NukeopsRuleSystem), typeof(LoneOpsSpawnRule))] @@ -59,7 +60,7 @@ public sealed partial class NukeopsRuleComponent : Component /// Time to emergency shuttle to arrive if RoundEndBehavior is ShuttleCall. /// [DataField] - public TimeSpan EvacShuttleTime = TimeSpan.FromMinutes(10); + public TimeSpan EvacShuttleTime = TimeSpan.FromMinutes(3); /// /// Whether or not to spawn the nuclear operative outpost. Used by LoneOpsSpawn event. @@ -136,6 +137,9 @@ public sealed partial class NukeopsRuleComponent : Component [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] public string EliteNames = "SyndicateNamesElite"; + [DataField] + public string OperationName = "Test Operation"; + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] public string NormalNames = "SyndicateNamesNormal"; diff --git a/Content.Server/GameTicking/Rules/GameRulePrototype.cs b/Content.Server/GameTicking/Rules/GameRulePrototype.cs index d4872fdcad..47f99184f7 100644 --- a/Content.Server/GameTicking/Rules/GameRulePrototype.cs +++ b/Content.Server/GameTicking/Rules/GameRulePrototype.cs @@ -4,7 +4,7 @@ namespace Content.Server.GameTicking.Rules; /* [Prototype("gameRule")] -public sealed class GameRulePrototype : IPrototype +public sealed partial class GameRulePrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs b/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs index 779c47885f..dd5c61a229 100644 --- a/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs @@ -5,6 +5,7 @@ using Content.Server.Chat.Managers; using Content.Server.Chat.Systems; using Content.Server.Communications; +using Content.Server.RandomMetadata; using Content.Server.GameTicking.Rules.Components; using Content.Server.Ghost.Roles.Components; using Content.Server.Ghost.Roles.Events; @@ -44,6 +45,7 @@ using Robust.Server.Maps; using Robust.Server.Player; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Player; using Robust.Shared.Prototypes; @@ -67,6 +69,7 @@ public sealed class NukeopsRuleSystem : GameRuleSystem [Dependency] private readonly IServerPreferencesManager _prefs = default!; [Dependency] private readonly MapLoaderSystem _map = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; + [Dependency] private readonly RandomMetadataSystem _randomMetadata = default!; [Dependency] private readonly MindSystem _mind = default!; [Dependency] private readonly NpcFactionSystem _npcFaction = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; @@ -79,6 +82,7 @@ public sealed class NukeopsRuleSystem : GameRuleSystem [Dependency] private readonly TagSystem _tag = default!; [Dependency] private readonly WarDeclaratorSystem _warDeclarator = default!; + [ValidatePrototypeId] private const string TelecrystalCurrencyPrototype = "Telecrystal"; @@ -88,6 +92,12 @@ public sealed class NukeopsRuleSystem : GameRuleSystem [ValidatePrototypeId] public const string NukeopsId = "Nukeops"; + [ValidatePrototypeId] + private const string OperationPrefixDataset = "operationPrefix"; + + [ValidatePrototypeId] + private const string OperationSuffixDataset = "operationSuffix"; + public override void Initialize() { base.Initialize(); @@ -344,6 +354,7 @@ private void OnRoundStart(EntityUid uid, NukeopsRuleComponent? component = null) return; component.TargetStation = _random.Pick(eligible); + component.OperationName = _randomMetadata.GetRandomFromSegments(new List {OperationPrefixDataset, OperationSuffixDataset}, " "); var filter = Filter.Empty(); var query = EntityQueryEnumerator(); @@ -372,7 +383,7 @@ private void OnRoundEnd(EntityUid uid, NukeopsRuleComponent? component = null) continue; // UH OH - if (centcomms.Contains(nukeTransform.MapID)) + if (nukeTransform.MapUid != null && centcomms.Contains(nukeTransform.MapUid.Value)) { component.WinConditions.Add(WinCondition.NukeActiveAtCentCom); SetWinType(uid, WinType.OpsMajor, component); @@ -436,8 +447,7 @@ private void OnRoundEnd(EntityUid uid, NukeopsRuleComponent? component = null) while (diskQuery.MoveNext(out _, out var transform)) { - var diskMapId = transform.MapID; - diskAtCentCom = centcomms.Contains(diskMapId); + diskAtCentCom = transform.MapUid != null && centcomms.Contains(transform.MapUid.Value); // TODO: The target station should be stored, and the nuke disk should store its original station. // This is fine for now, because we can assume a single station in base SS14. @@ -969,6 +979,19 @@ private void SpawnOperatives(int spawnCount, List sessions, bool } } + /// + /// Display a greeting message and play a sound for a nukie + /// + private void NotifyNukie(ICommonSession session, NukeOperativeComponent nukeop, NukeopsRuleComponent nukeopsRule) + { + if (nukeopsRule.TargetStation is not { } station) + return; + + _chatManager.DispatchServerMessage(session, Loc.GetString("nukeops-welcome", ("station", station), ("name", nukeopsRule.OperationName))); + _audio.PlayGlobal(nukeop.GreetSoundNotification, session); + } + + private void SpawnOperativesForGhostRoles(EntityUid uid, NukeopsRuleComponent? component = null) { if (!Resolve(uid, ref component)) @@ -990,18 +1013,6 @@ private void SpawnOperativesForGhostRoles(EntityUid uid, NukeopsRuleComponent? c SpawnOperatives(numNukies, operatives, true, component); } - /// - /// Display a greeting message and play a sound for a nukie - /// - private void NotifyNukie(ICommonSession session, NukeOperativeComponent nukeop, NukeopsRuleComponent nukeopsRule) - { - if (nukeopsRule.TargetStation is not { } station) - return; - - _chatManager.DispatchServerMessage(session, Loc.GetString("nukeops-welcome", ("station", station))); - _audio.PlayGlobal(nukeop.GreetSoundNotification, session); - } - //For admins forcing someone to nukeOps. public void MakeLoneNukie(EntityUid mindId, MindComponent mind) { diff --git a/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs b/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs index 0785d81d09..eb22ba9ead 100644 --- a/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs @@ -4,17 +4,23 @@ using Content.Server.Cargo.Systems; using Content.Server.Chat.Managers; using Content.Server.GameTicking.Rules.Components; +using Content.Server.NPC.Components; +using Content.Server.NPC.Systems; using Content.Server.Preferences.Managers; using Content.Server.Spawners.Components; using Content.Server.Station.Components; using Content.Server.Station.Systems; using Content.Shared.CCVar; using Content.Shared.Humanoid; +using Content.Shared.Humanoid.Prototypes; using Content.Shared.Mind; using Content.Shared.Preferences; using Content.Shared.Roles; using Robust.Server.GameObjects; using Robust.Server.Maps; +using Robust.Server.Player; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; using Robust.Shared.Enums; using Robust.Shared.Map; @@ -40,10 +46,32 @@ public sealed class PiratesRuleSystem : GameRuleSystem [Dependency] private readonly PricingSystem _pricingSystem = default!; [Dependency] private readonly MapLoaderSystem _map = default!; [Dependency] private readonly NamingSystem _namingSystem = default!; + [Dependency] private readonly NpcFactionSystem _npcFaction = default!; [Dependency] private readonly SharedMindSystem _mindSystem = default!; [Dependency] private readonly SharedAudioSystem _audioSystem = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; + [ValidatePrototypeId] + private const string GameRuleId = "Pirates"; + + [ValidatePrototypeId] + private const string MobId = "MobHuman"; + + [ValidatePrototypeId] + private const string SpeciesId = "Human"; + + [ValidatePrototypeId] + private const string PirateFactionId = "Syndicate"; + + [ValidatePrototypeId] + private const string EnemyFactionId = "NanoTrasen"; + + [ValidatePrototypeId] + private const string GearId = "PirateGear"; + + [ValidatePrototypeId] + private const string SpawnPointId = "SpawnPointPirates"; + /// public override void Initialize() { @@ -168,6 +196,7 @@ private void OnPlayerSpawningEvent(RulePlayerSpawningEvent ev) var gridId = _map.LoadGrid(GameTicker.DefaultMap, map, new MapLoadOptions { Offset = aabb.Center + new Vector2(a, a), + LoadMap = false, }); if (!gridId.HasValue) @@ -184,7 +213,7 @@ private void OnPlayerSpawningEvent(RulePlayerSpawningEvent ev) pirates.PirateShip = gridId.Value; // TODO: Loot table or something - var pirateGear = _prototypeManager.Index("PirateGear"); // YARRR + var pirateGear = _prototypeManager.Index(GearId); // YARRR var spawns = new List(); @@ -192,7 +221,7 @@ private void OnPlayerSpawningEvent(RulePlayerSpawningEvent ev) foreach (var (_, meta, xform) in EntityQuery(true)) { - if (meta.EntityPrototype?.ID != "SpawnPointPirates" || xform.ParentUid != pirates.PirateShip) + if (meta.EntityPrototype?.ID != SpawnPointId || xform.ParentUid != pirates.PirateShip) continue; spawns.Add(xform.Coordinates); @@ -209,19 +238,22 @@ private void OnPlayerSpawningEvent(RulePlayerSpawningEvent ev) var sex = _random.Prob(0.5f) ? Sex.Male : Sex.Female; var gender = sex == Sex.Male ? Gender.Male : Gender.Female; - var name = _namingSystem.GetName("Human", gender); + var name = _namingSystem.GetName(SpeciesId, gender); var session = ops[i]; var newMind = _mindSystem.CreateMind(session.UserId, name); _mindSystem.SetUserId(newMind, session.UserId); - var mob = Spawn("MobHuman", _random.Pick(spawns)); + var mob = Spawn(MobId, _random.Pick(spawns)); _metaData.SetEntityName(mob, name); _mindSystem.TransferTo(newMind, mob); var profile = _prefs.GetPreferences(session.UserId).SelectedCharacter as HumanoidCharacterProfile; _stationSpawningSystem.EquipStartingGear(mob, pirateGear, profile); + _npcFaction.RemoveFaction(mob, EnemyFactionId, false); + _npcFaction.AddFaction(mob, PirateFactionId); + pirates.Pirates.Add(newMind); // Notificate every player about a pirate antagonist role with sound @@ -243,13 +275,13 @@ public void MakePirate(EntityUid mindId, MindComponent mind) { if (!mind.OwnedEntity.HasValue) return; - SetOutfitCommand.SetOutfit(mind.OwnedEntity.Value, "PirateGear", EntityManager); + SetOutfitCommand.SetOutfit(mind.OwnedEntity.Value, GearId, EntityManager); var pirateRule = EntityQuery().FirstOrDefault(); if (pirateRule == null) { //todo fuck me this shit is awful - GameTicker.StartGameRule("Pirates", out var ruleEntity); + GameTicker.StartGameRule(GameRuleId, out var ruleEntity); pirateRule = Comp(ruleEntity); } diff --git a/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs b/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs index 78568820e9..2759e93118 100644 --- a/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs @@ -7,6 +7,7 @@ using Content.Server.Mind; using Content.Server.NPC.Components; using Content.Server.NPC.Systems; +using Content.Server.Objectives; using Content.Server.Popups; using Content.Server.Revolutionary.Components; using Content.Server.Roles; @@ -24,6 +25,8 @@ using Content.Shared.Roles; using Content.Shared.Stunnable; using Content.Shared.Zombies; +using Robust.Server.Audio; +using Robust.Server.GameObjects; using Robust.Shared.Timing; namespace Content.Server.GameTicking.Rules; @@ -40,10 +43,12 @@ public sealed class RevolutionaryRuleSystem : GameRuleSystem] public const string RevolutionaryNpcFaction = "Revolutionary"; @@ -98,24 +103,19 @@ private void OnRoundEndText(RoundEndTextAppendEvent ev) var index = (commandLost ? 1 : 0) | (revsLost ? 2 : 0); ev.AddLine(Loc.GetString(Outcomes[index])); - ev.AddLine(Loc.GetString("head-rev-initial-count", ("initialCount", headrev.HeadRevs.Count))); - foreach (var player in headrev.HeadRevs) + ev.AddLine(Loc.GetString("rev-headrev-count", ("initialCount", headrev.HeadRevs.Count))); + foreach (var player in headrev.HeadRevs.Values) { - _mind.TryGetSession(player.Value, out var session); - var username = session?.Name; - if (username != null) - { - ev.AddLine(Loc.GetString("head-rev-initial-name-user", - ("name", player.Key), - ("username", username))); - } - else - { - ev.AddLine(Loc.GetString("head-rev-initial-name", - ("name", player.Key))); - } + var title = _objectives.GetTitle(player); + if (title == null) + continue; + + // TODO: when role entities are a thing this has to change + var count = CompOrNull(player)?.ConvertedCount ?? 0; + ev.AddLine(Loc.GetString("rev-headrev-player", ("title", title), ("count", count))); + + // TODO: someone suggested listing all alive? revs maybe implement at some point } - break; } } @@ -205,6 +205,9 @@ public void OnPostFlash(EntityUid uid, HeadRevolutionaryComponent comp, ref Afte if (ev.User != null) { _adminLogManager.Add(LogType.Mind, LogImpact.Medium, $"{ToPrettyString(ev.User.Value)} converted {ToPrettyString(ev.Target)} into a Revolutionary"); + + if (_mind.TryGetRole(ev.User.Value, out var headrev)) + headrev.ConvertedCount++; } if (mindId == default || !_role.MindHasRole(mindId)) @@ -216,6 +219,7 @@ public void OnPostFlash(EntityUid uid, HeadRevolutionaryComponent comp, ref Afte var message = Loc.GetString("rev-role-greeting"); var wrappedMessage = Loc.GetString("chat-manager-server-wrap-message", ("message", message)); _chatManager.ChatMessageToOne(ChatChannel.Server, message, wrappedMessage, default, false, mind.Session.ConnectedClient, Color.Red); + _audioSystem.PlayGlobal("/Audio/Ambience/Antag/headrev_start.ogg", ev.Target); } } diff --git a/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs index ef949d09fc..60a35d704b 100644 --- a/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs @@ -17,6 +17,9 @@ using Content.Shared.Preferences; using Content.Shared.Roles; using Content.Shared.Roles.Jobs; +using Robust.Server.Player; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; using Robust.Shared.Player; using Robust.Shared.Prototypes; @@ -268,21 +271,16 @@ public bool MakeTraitor(ICommonSession traitor, bool giveUplink = true, bool giv _roleSystem.MindAddRole(mindId, new TraitorRoleComponent { PrototypeId = traitorRule.TraitorPrototypeId - }); - // Assign briefing + }, mind); + // Assign briefing and greeting sound _roleSystem.MindAddRole(mindId, new RoleBriefingComponent { Briefing = briefing - }); + }, mind); + _roleSystem.MindPlaySound(mindId, traitorRule.GreetSoundNotification, mind); SendTraitorBriefing(mindId, traitorRule.Codewords, code); traitorRule.TraitorMinds.Add(mindId); - if (_mindSystem.TryGetSession(mindId, out var session)) - { - // Notificate player about new role assignment - _audioSystem.PlayGlobal(traitorRule.GreetSoundNotification, session); - } - // Change the faction _npcFaction.RemoveFaction(entity, "NanoTrasen", false); _npcFaction.AddFaction(entity, "Syndicate"); diff --git a/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs b/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs index a4febc385c..f4319815a7 100644 --- a/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs @@ -22,6 +22,8 @@ using Content.Shared.Zombies; using Robust.Server.GameObjects; using Robust.Server.Player; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; using Robust.Shared.Player; using Robust.Shared.Random; diff --git a/Content.Server/Gateway/Components/GatewayComponent.cs b/Content.Server/Gateway/Components/GatewayComponent.cs index 5145cb6b08..71d070f699 100644 --- a/Content.Server/Gateway/Components/GatewayComponent.cs +++ b/Content.Server/Gateway/Components/GatewayComponent.cs @@ -1,6 +1,7 @@ using Content.Server.Gateway.Systems; using Robust.Shared.Audio; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; +using Robust.Shared.Utility; namespace Content.Server.Gateway.Components; @@ -10,6 +11,25 @@ namespace Content.Server.Gateway.Components; [RegisterComponent, Access(typeof(GatewaySystem))] public sealed partial class GatewayComponent : Component { + /// + /// Whether this destination is shown in the gateway ui. + /// If you are making a gateway for an admeme set this once you are ready for players to select it. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public bool Enabled; + + /// + /// Can the gateway be interacted with? If false then only settable via admins / mappers. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public bool Interactable = true; + + /// + /// Name as it shows up on the ui of station gateways. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public FormattedMessage Name = new(); + /// /// Sound to play when opening the portal. /// @@ -32,24 +52,14 @@ public sealed partial class GatewayComponent : Component public SoundSpecifier AccessDeniedSound = new SoundPathSpecifier("/Audio/Machines/custom_deny.ogg"); /// - /// Every other gateway destination on the server. + /// Cooldown between opening portal / closing. /// - /// - /// Added on startup and when a new destination portal is created. - /// [DataField] - public HashSet Destinations = new(); - - /// - /// The time at which the portal will be closed. - /// - [ViewVariables(VVAccess.ReadWrite), DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] - public TimeSpan NextClose; + public TimeSpan Cooldown = TimeSpan.FromSeconds(30); /// - /// The time at which the portal was last opened. - /// Only used for UI. + /// The time at which the portal can next be opened. /// [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] - public TimeSpan LastOpen; + public TimeSpan NextReady; } diff --git a/Content.Server/Gateway/Components/GatewayDestinationComponent.cs b/Content.Server/Gateway/Components/GatewayDestinationComponent.cs deleted file mode 100644 index 41a41457f2..0000000000 --- a/Content.Server/Gateway/Components/GatewayDestinationComponent.cs +++ /dev/null @@ -1,48 +0,0 @@ -using Content.Server.Gateway.Systems; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; - -namespace Content.Server.Gateway.Components; - -/// -/// A gateway destination linked to by station gateway(s). -/// -[RegisterComponent, Access(typeof(GatewaySystem))] -public sealed partial class GatewayDestinationComponent : Component -{ - /// - /// Whether this destination is shown in the gateway ui. - /// If you are making a gateway for an admeme set this once you are ready for players to select it. - /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - public bool Enabled; - - /// - /// Name as it shows up on the ui of station gateways. - /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - public string Name = string.Empty; - - /// - /// Time at which this destination is ready to be linked to. - /// - [ViewVariables(VVAccess.ReadWrite), DataField(customTypeSerializer:typeof(TimeOffsetSerializer))] - public TimeSpan NextReady; - - /// - /// How long the portal will be open for after linking. - /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - public TimeSpan OpenTime = TimeSpan.FromSeconds(600); - - /// - /// How long the destination is not ready for after the portal closes. - /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - public TimeSpan Cooldown = TimeSpan.FromSeconds(60); - - /// - /// If true, the portal can be closed by alt clicking it. - /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - public bool Closeable; -} diff --git a/Content.Server/Gateway/Components/GatewayGeneratorComponent.cs b/Content.Server/Gateway/Components/GatewayGeneratorComponent.cs new file mode 100644 index 0000000000..90b86bad52 --- /dev/null +++ b/Content.Server/Gateway/Components/GatewayGeneratorComponent.cs @@ -0,0 +1,68 @@ +using Content.Shared.Parallax.Biomes.Markers; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Server.Gateway.Components; + +/// +/// Generates gateway destinations at a regular interval. +/// +[RegisterComponent] +public sealed partial class GatewayGeneratorComponent : Component +{ + /// + /// Prototype to spawn on the generated map if applicable. + /// + [DataField] + public EntProtoId? Proto = "Gateway"; + + /// + /// Next time another seed unlocks. + /// + [DataField(customTypeSerializer:typeof(TimeOffsetSerializer))] + public TimeSpan NextUnlock; + + /// + /// How long it takes to unlock another destination once one is taken. + /// + [DataField] + public TimeSpan UnlockCooldown = TimeSpan.FromMinutes(75); + + /// + /// Maps we've generated. + /// + [DataField] + public List Generated = new(); + + [DataField] + public int MobLayerCount = 1; + + /// + /// Mob layers to pick from. + /// + [DataField] + public List> MobLayers = new() + { + "Carps", + "Xenos", + }; + + [DataField] + public int LootLayerCount = 3; + + /// + /// Loot layers to pick from. + /// + public List> LootLayers = new() + { + "OreTin", + "OreQuartz", + "OreGold", + "OreSilver", + "OrePlasma", + "OreUranium", + "OreBananium", + "OreArtifactFragment", + }; +} + diff --git a/Content.Server/Gateway/Components/GatewayGeneratorDestinationComponent.cs b/Content.Server/Gateway/Components/GatewayGeneratorDestinationComponent.cs new file mode 100644 index 0000000000..1bddff3e8b --- /dev/null +++ b/Content.Server/Gateway/Components/GatewayGeneratorDestinationComponent.cs @@ -0,0 +1,37 @@ +namespace Content.Server.Gateway.Components; + +/// +/// Destination created by +/// +[RegisterComponent] +public sealed partial class GatewayGeneratorDestinationComponent : Component +{ + /// + /// Generator that created this destination. + /// + [DataField] + public EntityUid Generator; + + /// + /// Is the map locked from being used still or unlocked. + /// Used in conjunction with the attached generator's NextUnlock. + /// + [DataField] + public bool Locked = true; + + [DataField] + public bool Loaded; + + /// + /// Seed used for this destination. + /// + [DataField] + public int Seed; + + /// + /// Origin of the gateway. + /// + [DataField] + public Vector2i Origin; +} + diff --git a/Content.Server/Gateway/Systems/GatewayGeneratorSystem.cs b/Content.Server/Gateway/Systems/GatewayGeneratorSystem.cs new file mode 100644 index 0000000000..3bee8a6569 --- /dev/null +++ b/Content.Server/Gateway/Systems/GatewayGeneratorSystem.cs @@ -0,0 +1,233 @@ +using System.Linq; +using System.Numerics; +using Content.Server.Gateway.Components; +using Content.Server.Parallax; +using Content.Server.Procedural; +using Content.Server.Salvage; +using Content.Shared.CCVar; +using Content.Shared.Dataset; +using Content.Shared.Movement.Components; +using Content.Shared.Parallax.Biomes; +using Content.Shared.Physics; +using Content.Shared.Procedural; +using Content.Shared.Salvage; +using Robust.Shared.Configuration; +using Robust.Shared.Map; +using Robust.Shared.Map.Components; +using Robust.Shared.Physics.Collision.Shapes; +using Robust.Shared.Physics.Components; +using Robust.Shared.Physics.Systems; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; +using Robust.Shared.Timing; +using Robust.Shared.Utility; + +namespace Content.Server.Gateway.Systems; + +/// +/// Generates gateway destinations regularly and indefinitely that can be chosen from. +/// +public sealed class GatewayGeneratorSystem : EntitySystem +{ + [Dependency] private readonly IConfigurationManager _cfgManager = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly IMapManager _mapManager = default!; + [Dependency] private readonly IPrototypeManager _protoManager = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly ITileDefinitionManager _tileDefManager = default!; + [Dependency] private readonly BiomeSystem _biome = default!; + [Dependency] private readonly DungeonSystem _dungeon = default!; + [Dependency] private readonly GatewaySystem _gateway = default!; + [Dependency] private readonly MetaDataSystem _metadata = default!; + [Dependency] private readonly RestrictedRangeSystem _restricted = default!; + [Dependency] private readonly SharedMapSystem _maps = default!; + + [ValidatePrototypeId] + private const string PlanetNames = "names_borer"; + + // TODO: + // Fix shader some more + // Show these in UI + // Use regular mobs for thingo. + + // Use salvage mission params + // Add the funny song + // Put salvage params in the UI + + // Re-use salvage config stuff for the RNG + // Have it in the UI like expeditions. + + // Also add weather coz it's funny. + + // Add songs (incl. the downloaded one) to the ambient music playlist for planet probably. + // Copy most of salvage mission spawner + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnGeneratorUnpaused); + SubscribeLocalEvent(OnGeneratorMapInit); + SubscribeLocalEvent(OnGeneratorShutdown); + SubscribeLocalEvent(OnGeneratorAttemptOpen); + SubscribeLocalEvent(OnGeneratorOpen); + } + + private void OnGeneratorShutdown(EntityUid uid, GatewayGeneratorComponent component, ComponentShutdown args) + { + foreach (var genUid in component.Generated) + { + if (Deleted(genUid)) + continue; + + QueueDel(genUid); + } + } + + private void OnGeneratorUnpaused(Entity ent, ref EntityUnpausedEvent args) + { + ent.Comp.NextUnlock += args.PausedTime; + } + + private void OnGeneratorMapInit(EntityUid uid, GatewayGeneratorComponent generator, MapInitEvent args) + { + if (!_cfgManager.GetCVar(CCVars.GatewayGeneratorEnabled)) + return; + + generator.NextUnlock = TimeSpan.FromMinutes(5); + + for (var i = 0; i < 3; i++) + { + GenerateDestination(uid, generator); + } + + Dirty(uid, generator); + } + + private void GenerateDestination(EntityUid uid, GatewayGeneratorComponent? generator = null) + { + if (!Resolve(uid, ref generator)) + return; + + var tileDef = _tileDefManager["FloorSteel"]; + const int MaxOffset = 256; + var tiles = new List<(Vector2i Index, Tile Tile)>(); + var seed = _random.Next(); + var random = new Random(seed); + var mapId = _mapManager.CreateMap(); + var mapUid = _mapManager.GetMapEntityId(mapId); + + var gatewayName = SharedSalvageSystem.GetFTLName(_protoManager.Index(PlanetNames), seed); + _metadata.SetEntityName(mapUid, gatewayName); + + var origin = new Vector2i(random.Next(-MaxOffset, MaxOffset), random.Next(-MaxOffset, MaxOffset)); + var restricted = new RestrictedRangeComponent + { + Origin = origin + }; + AddComp(mapUid, restricted); + + _biome.EnsurePlanet(mapUid, _protoManager.Index("Continental"), seed); + + var grid = Comp(mapUid); + + for (var x = -2; x <= 2; x++) + { + for (var y = -2; y <= 2; y++) + { + tiles.Add((new Vector2i(x, y) + origin, new Tile(tileDef.TileId, variant: random.NextByte(tileDef.Variants)))); + } + } + + // Clear area nearby as a sort of landing pad. + _maps.SetTiles(mapUid, grid, tiles); + + _metadata.SetEntityName(mapUid, gatewayName); + var originCoords = new EntityCoordinates(mapUid, origin); + + var genDest = AddComp(mapUid); + genDest.Origin = origin; + genDest.Seed = seed; + genDest.Generator = uid; + + // Create the gateway. + var gatewayUid = SpawnAtPosition(generator.Proto, originCoords); + var gatewayComp = Comp(gatewayUid); + _gateway.SetDestinationName(gatewayUid, FormattedMessage.FromMarkup($"[color=#D381C996]{gatewayName}[/color]"), gatewayComp); + _gateway.SetEnabled(gatewayUid, true, gatewayComp); + generator.Generated.Add(mapUid); + } + + private void OnGeneratorAttemptOpen(Entity ent, ref AttemptGatewayOpenEvent args) + { + if (ent.Comp.Loaded || args.Cancelled) + return; + + if (!TryComp(ent.Comp.Generator, out GatewayGeneratorComponent? generatorComp)) + return; + + if (generatorComp.NextUnlock + _metadata.GetPauseTime(ent.Owner) <= _timing.CurTime) + return; + + args.Cancelled = true; + } + + private void OnGeneratorOpen(Entity ent, ref GatewayOpenEvent args) + { + if (ent.Comp.Loaded) + return; + + if (TryComp(ent.Comp.Generator, out GatewayGeneratorComponent? generatorComp)) + { + generatorComp.NextUnlock = _timing.CurTime + generatorComp.UnlockCooldown; + _gateway.UpdateAllGateways(); + // Generate another destination to keep them going. + GenerateDestination(ent.Comp.Generator); + } + + if (!TryComp(args.MapUid, out MapGridComponent? grid)) + return; + + ent.Comp.Locked = false; + ent.Comp.Loaded = true; + + // Do dungeon + var seed = ent.Comp.Seed; + var origin = ent.Comp.Origin; + var random = new Random(seed); + var dungeonDistance = random.Next(3, 6); + var dungeonRotation = _dungeon.GetDungeonRotation(seed); + var dungeonPosition = (origin + dungeonRotation.RotateVec(new Vector2i(0, dungeonDistance))).Floored(); + + _dungeon.GenerateDungeon(_protoManager.Index("Experiment"), args.MapUid, grid, dungeonPosition, seed); + + // TODO: Dungeon mobs + loot. + + // Do markers on the map. + if (TryComp(ent.Owner, out BiomeComponent? biomeComp) && generatorComp != null) + { + // - Loot + var lootLayers = generatorComp.LootLayers.ToList(); + + for (var i = 0; i < generatorComp.LootLayerCount; i++) + { + var layerIdx = random.Next(lootLayers.Count); + var layer = lootLayers[layerIdx]; + lootLayers.RemoveSwap(layerIdx); + + _biome.AddMarkerLayer(ent.Owner, biomeComp, layer.Id); + } + + // - Mobs + var mobLayers = generatorComp.MobLayers.ToList(); + + for (var i = 0; i < generatorComp.MobLayerCount; i++) + { + var layerIdx = random.Next(mobLayers.Count); + var layer = mobLayers[layerIdx]; + mobLayers.RemoveSwap(layerIdx); + + _biome.AddMarkerLayer(ent.Owner, biomeComp, layer.Id); + } + } + } +} diff --git a/Content.Server/Gateway/Systems/GatewaySystem.cs b/Content.Server/Gateway/Systems/GatewaySystem.cs index ae00cd378c..d05cca3af6 100644 --- a/Content.Server/Gateway/Systems/GatewaySystem.cs +++ b/Content.Server/Gateway/Systems/GatewaySystem.cs @@ -1,4 +1,6 @@ using Content.Server.Gateway.Components; +using Content.Server.Station.Systems; +using Content.Server.UserInterface; using Content.Shared.Access.Systems; using Content.Shared.Gateway; using Content.Shared.Popups; @@ -7,8 +9,10 @@ using Content.Shared.Verbs; using Robust.Server.GameObjects; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.GameObjects; using Robust.Shared.Timing; +using Robust.Shared.Utility; namespace Content.Server.Gateway.Systems; @@ -19,6 +23,8 @@ public sealed class GatewaySystem : EntitySystem [Dependency] private readonly LinkedEntitySystem _linkedEntity = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly MetaDataSystem _metadata = default!; + [Dependency] private readonly StationSystem _stations = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly UserInterfaceSystem _ui = default!; @@ -26,62 +32,109 @@ public override void Initialize() { base.Initialize(); + SubscribeLocalEvent(OnGatewayUnpaused); SubscribeLocalEvent(OnStartup); + SubscribeLocalEvent(OnGatewayOpenAttempt); SubscribeLocalEvent(UpdateUserInterface); SubscribeLocalEvent(OnOpenPortal); - - SubscribeLocalEvent(OnDestinationStartup); - SubscribeLocalEvent(OnDestinationShutdown); - SubscribeLocalEvent>(OnDestinationGetVerbs); } - public override void Update(float frameTime) + public void SetEnabled(EntityUid uid, bool value, GatewayComponent? component = null) { - base.Update(frameTime); + if (!Resolve(uid, ref component) || component.Enabled == value) + return; - // close portals after theyve been open long enough - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var comp, out var _)) - { - if (_timing.CurTime < comp.NextClose) - continue; + component.Enabled = value; + UpdateAllGateways(); + } - ClosePortal(uid, comp); - } + private void OnGatewayUnpaused(EntityUid uid, GatewayComponent component, ref EntityUnpausedEvent args) + { + component.NextReady += args.PausedTime; } private void OnStartup(EntityUid uid, GatewayComponent comp, ComponentStartup args) { - // add existing destinations - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var dest, out _)) - { - comp.Destinations.Add(dest); - } - // no need to update ui since its just been created, just do portal UpdateAppearance(uid); } + private void OnGatewayOpenAttempt(EntityUid uid, GatewayComponent component, ref ActivatableUIOpenAttemptEvent args) + { + if (!component.Enabled || !component.Interactable) + args.Cancel(); + } + private void UpdateUserInterface(EntityUid uid, GatewayComponent comp, T args) { UpdateUserInterface(uid, comp); } - private void UpdateUserInterface(EntityUid uid, GatewayComponent comp) + public void UpdateAllGateways() { - var destinations = new List<(NetEntity, string, TimeSpan, bool)>(); - foreach (var destUid in comp.Destinations) + var query = AllEntityQuery(); + + while (query.MoveNext(out var uid, out var comp, out var xform)) { - var dest = Comp(destUid); - if (!dest.Enabled) + UpdateUserInterface(uid, comp, xform); + } + } + + private void UpdateUserInterface(EntityUid uid, GatewayComponent comp, TransformComponent? xform = null) + { + if (!Resolve(uid, ref xform)) + return; + + var destinations = new List(); + var query = AllEntityQuery(); + + var nextUnlock = TimeSpan.Zero; + var unlockTime = TimeSpan.Zero; + + // Next unlock is based off of: + // - Our station's unlock timer (if we have a station) + // - If our map is a generated destination then use the generator that made it + + if (TryComp(_stations.GetOwningStation(uid), out GatewayGeneratorComponent? generatorComp) || + (TryComp(xform.MapUid, out GatewayGeneratorDestinationComponent? generatorDestination) && + TryComp(generatorDestination.Generator, out generatorComp))) + { + nextUnlock = generatorComp.NextUnlock; + unlockTime = generatorComp.UnlockCooldown; + } + + while (query.MoveNext(out var destUid, out var dest, out var destXform)) + { + if (!dest.Enabled || destUid == uid) continue; - destinations.Add((GetNetEntity(destUid), dest.Name, dest.NextReady, HasComp(destUid))); + // Show destination if either no destination comp on the map or it's ours. + TryComp(destXform.MapUid, out var gatewayDestination); + + destinations.Add(new GatewayDestinationData() + { + Entity = GetNetEntity(destUid), + // Fallback to grid's ID if applicable. + Name = dest.Name.IsEmpty && destXform.GridUid != null ? FormattedMessage.FromUnformatted(MetaData(destXform.GridUid.Value).EntityName) : dest.Name , + Portal = HasComp(destUid), + // If NextUnlock < CurTime it's unlocked, however + // we'll always send the client if it's locked + // It can just infer unlock times locally and not have to worry about it here. + Locked = gatewayDestination != null && gatewayDestination.Locked + }); } _linkedEntity.GetLink(uid, out var current); - var state = new GatewayBoundUserInterfaceState(destinations, GetNetEntity(current), comp.NextClose, comp.LastOpen); + + var state = new GatewayBoundUserInterfaceState( + destinations, + GetNetEntity(current), + comp.NextReady, + comp.Cooldown, + nextUnlock, + unlockTime + ); + _ui.TrySetUiState(uid, GatewayUiKey.Key, state); } @@ -92,38 +145,58 @@ private void UpdateAppearance(EntityUid uid) private void OnOpenPortal(EntityUid uid, GatewayComponent comp, GatewayOpenPortalMessage args) { - if (args.Session.AttachedEntity == null) + if (args.Session.AttachedEntity == null || GetNetEntity(uid) == args.Destination || + !comp.Enabled || !comp.Interactable) return; // if the gateway has an access reader check it before allowing opening var user = args.Session.AttachedEntity.Value; - if (CheckAccess(user, uid)) + if (CheckAccess(user, uid, comp)) return; // can't link if portal is already open on either side, the destination is invalid or on cooldown var desto = GetEntity(args.Destination); - if (HasComp(uid) || - HasComp(desto) || - !TryComp(desto, out var dest) || + // If it's already open / not enabled / we're not ready DENY. + if (!TryComp(desto, out var dest) || !dest.Enabled || - _timing.CurTime < dest.NextReady) + _timing.CurTime < _metadata.GetPauseTime(uid) + comp.NextReady) + { return; + } // TODO: admin log??? + ClosePortal(uid, comp, false); OpenPortal(uid, comp, desto, dest); } - private void OpenPortal(EntityUid uid, GatewayComponent comp, EntityUid dest, GatewayDestinationComponent destComp) + private void OpenPortal(EntityUid uid, GatewayComponent comp, EntityUid dest, GatewayComponent destComp, TransformComponent? destXform = null) { - _linkedEntity.TryLink(uid, dest); - EnsureComp(uid).CanTeleportToOtherMaps = true; - EnsureComp(dest).CanTeleportToOtherMaps = true; + if (!Resolve(dest, ref destXform) || destXform.MapUid == null) + return; + + var ev = new AttemptGatewayOpenEvent(destXform.MapUid.Value, dest); + RaiseLocalEvent(destXform.MapUid.Value, ref ev); + + if (ev.Cancelled) + return; + + _linkedEntity.OneWayLink(uid, dest); + + var sourcePortal = EnsureComp(uid); + var targetPortal = EnsureComp(dest); + + sourcePortal.CanTeleportToOtherMaps = true; + targetPortal.CanTeleportToOtherMaps = true; + + sourcePortal.RandomTeleport = false; + targetPortal.RandomTeleport = false; + + var openEv = new GatewayOpenEvent(destXform.MapUid.Value, dest); + RaiseLocalEvent(destXform.MapUid.Value, ref openEv); // for ui - comp.LastOpen = _timing.CurTime; - // close automatically after time is up - comp.NextClose = comp.LastOpen + destComp.OpenTime; + comp.NextReady = _timing.CurTime + comp.Cooldown; _audio.PlayPvs(comp.OpenSound, uid); _audio.PlayPvs(comp.OpenSound, dest); @@ -133,7 +206,7 @@ private void OpenPortal(EntityUid uid, GatewayComponent comp, EntityUid dest, Ga UpdateAppearance(dest); } - private void ClosePortal(EntityUid uid, GatewayComponent? comp = null) + private void ClosePortal(EntityUid uid, GatewayComponent? comp = null, bool update = true) { if (!Resolve(uid, ref comp)) return; @@ -142,7 +215,7 @@ private void ClosePortal(EntityUid uid, GatewayComponent? comp = null) if (!_linkedEntity.GetLink(uid, out var dest)) return; - if (TryComp(dest, out var destComp)) + if (TryComp(dest, out var destComp)) { // portals closed, put it on cooldown and let it eventually be opened again destComp.NextReady = _timing.CurTime + destComp.Cooldown; @@ -153,46 +226,35 @@ private void ClosePortal(EntityUid uid, GatewayComponent? comp = null) _linkedEntity.TryUnlink(uid, dest.Value); RemComp(dest.Value); - UpdateUserInterface(uid, comp); - UpdateAppearance(uid); - UpdateAppearance(dest.Value); + + if (update) + { + UpdateUserInterface(uid, comp); + UpdateAppearance(uid); + UpdateAppearance(dest.Value); + } } - private void OnDestinationStartup(EntityUid uid, GatewayDestinationComponent comp, ComponentStartup args) + private void OnDestinationStartup(EntityUid uid, GatewayComponent comp, ComponentStartup args) { - var query = EntityQueryEnumerator(); + var query = AllEntityQuery(); while (query.MoveNext(out var gatewayUid, out var gateway)) { - gateway.Destinations.Add(uid); UpdateUserInterface(gatewayUid, gateway); } UpdateAppearance(uid); } - private void OnDestinationShutdown(EntityUid uid, GatewayDestinationComponent comp, ComponentShutdown args) + private void OnDestinationShutdown(EntityUid uid, GatewayComponent comp, ComponentShutdown args) { - var query = EntityQueryEnumerator(); + var query = AllEntityQuery(); while (query.MoveNext(out var gatewayUid, out var gateway)) { - gateway.Destinations.Remove(uid); UpdateUserInterface(gatewayUid, gateway); } } - private void OnDestinationGetVerbs(EntityUid uid, GatewayDestinationComponent comp, GetVerbsEvent args) - { - if (!comp.Closeable || !args.CanInteract || !args.CanAccess) - return; - - // a portal is open so add verb to close it - args.Verbs.Add(new AlternativeVerb() - { - Act = () => TryClose(uid, args.User), - Text = Loc.GetString("gateway-close-portal") - }); - } - private void TryClose(EntityUid uid, EntityUid user) { // portal already closed so cant close it @@ -222,4 +284,31 @@ private bool CheckAccess(EntityUid user, EntityUid uid, GatewayComponent? comp = _audio.PlayPvs(comp.AccessDeniedSound, uid); return true; } + + public void SetDestinationName(EntityUid gatewayUid, FormattedMessage gatewayName, GatewayComponent? gatewayComp = null) + { + if (!Resolve(gatewayUid, ref gatewayComp)) + return; + + gatewayComp.Name = gatewayName; + Dirty(gatewayUid, gatewayComp); + } } + +/// +/// Raised directed on the target map when a GatewayDestination is attempted to be opened. +/// +[ByRefEvent] +public record struct AttemptGatewayOpenEvent(EntityUid MapUid, EntityUid GatewayDestinationUid) +{ + public readonly EntityUid MapUid = MapUid; + public readonly EntityUid GatewayDestinationUid = GatewayDestinationUid; + + public bool Cancelled = false; +} + +/// +/// Raised directed on the target map when a gateway is opened. +/// +[ByRefEvent] +public readonly record struct GatewayOpenEvent(EntityUid MapUid, EntityUid GatewayDestinationUid); diff --git a/Content.Server/Gatherable/GatherableSystem.cs b/Content.Server/Gatherable/GatherableSystem.cs index 4f7d19b0a8..7fbbf7f4f6 100644 --- a/Content.Server/Gatherable/GatherableSystem.cs +++ b/Content.Server/Gatherable/GatherableSystem.cs @@ -5,6 +5,7 @@ using Content.Shared.Tag; using Content.Shared.Weapons.Melee.Events; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Prototypes; using Robust.Shared.Random; diff --git a/Content.Server/Glue/GlueSystem.cs b/Content.Server/Glue/GlueSystem.cs index eaf95a1f1d..58eed00c49 100644 --- a/Content.Server/Glue/GlueSystem.cs +++ b/Content.Server/Glue/GlueSystem.cs @@ -9,6 +9,8 @@ using Content.Shared.Hands; using Robust.Shared.Timing; using Content.Shared.Interaction.Components; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; namespace Content.Server.Glue; diff --git a/Content.Server/Guardian/GuardianComponent.cs b/Content.Server/Guardian/GuardianComponent.cs index dcb9a8c054..a54d033756 100644 --- a/Content.Server/Guardian/GuardianComponent.cs +++ b/Content.Server/Guardian/GuardianComponent.cs @@ -9,24 +9,26 @@ public sealed partial class GuardianComponent : Component /// /// The guardian host entity /// - public EntityUid Host; + [DataField] + public EntityUid? Host; /// /// Percentage of damage reflected from the guardian to the host /// - [DataField("damageShare")] + [DataField] public float DamageShare { get; set; } = 0.65f; /// /// Maximum distance the guardian can travel before it's forced to recall, use YAML to set /// - [DataField("distanceAllowed")] + [DataField] public float DistanceAllowed { get; set; } = 5f; /// /// If the guardian is currently manifested /// - public bool GuardianLoose = false; + [DataField] + public bool GuardianLoose; } } diff --git a/Content.Server/Guardian/GuardianHostComponent.cs b/Content.Server/Guardian/GuardianHostComponent.cs index 6a747ae86a..e9d0e4affd 100644 --- a/Content.Server/Guardian/GuardianHostComponent.cs +++ b/Content.Server/Guardian/GuardianHostComponent.cs @@ -1,6 +1,5 @@ using Robust.Shared.Containers; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Guardian { @@ -16,6 +15,7 @@ public sealed partial class GuardianHostComponent : Component /// /// Can be null if the component is added at any time. /// + [DataField] public EntityUid? HostedGuardian; /// @@ -23,9 +23,9 @@ public sealed partial class GuardianHostComponent : Component /// [ViewVariables] public ContainerSlot GuardianContainer = default!; - [DataField("action", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string Action = "ActionToggleGuardian"; + [DataField] + public EntProtoId Action = "ActionToggleGuardian"; - [DataField("actionEntity")] public EntityUid? ActionEntity; + [DataField] public EntityUid? ActionEntity; } } diff --git a/Content.Server/Guardian/GuardianSystem.cs b/Content.Server/Guardian/GuardianSystem.cs index b6121a7fbd..1b3cbd1fc3 100644 --- a/Content.Server/Guardian/GuardianSystem.cs +++ b/Content.Server/Guardian/GuardianSystem.cs @@ -13,6 +13,8 @@ using Content.Shared.Mobs; using Content.Shared.Popups; using Robust.Server.GameObjects; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Player; using Robust.Shared.Utility; @@ -41,10 +43,11 @@ public override void Initialize() SubscribeLocalEvent(OnCreatorExamine); SubscribeLocalEvent(OnDoAfter); + SubscribeLocalEvent(OnGuardianShutdown); SubscribeLocalEvent(OnGuardianMove); SubscribeLocalEvent(OnGuardianDamaged); - SubscribeLocalEvent(OnGuardianPlayer); - SubscribeLocalEvent(OnGuardianUnplayer); + SubscribeLocalEvent(OnGuardianPlayerAttached); + SubscribeLocalEvent(OnGuardianPlayerDetached); SubscribeLocalEvent(OnHostInit); SubscribeLocalEvent(OnHostMove); @@ -56,6 +59,21 @@ public override void Initialize() SubscribeLocalEvent(OnGuardianAttackAttempt); } + private void OnGuardianShutdown(EntityUid uid, GuardianComponent component, ComponentShutdown args) + { + var host = component.Host; + component.Host = null; + + if (!TryComp(host, out GuardianHostComponent? hostComponent)) + return; + + hostComponent.GuardianContainer.Remove(uid); + hostComponent.HostedGuardian = null; + Dirty(host.Value, hostComponent); + QueueDel(hostComponent.ActionEntity); + hostComponent.ActionEntity = null; + } + private void OnPerformAction(EntityUid uid, GuardianHostComponent component, GuardianToggleActionEvent args) { if (args.Handled) @@ -67,24 +85,29 @@ private void OnPerformAction(EntityUid uid, GuardianHostComponent component, Gua args.Handled = true; } - private void OnGuardianUnplayer(EntityUid uid, GuardianComponent component, PlayerDetachedEvent args) + private void OnGuardianPlayerDetached(EntityUid uid, GuardianComponent component, PlayerDetachedEvent args) { var host = component.Host; - - if (!TryComp(host, out var hostComponent) || LifeStage(host) >= EntityLifeStage.MapInitialized) + if (!TryComp(host, out var hostComponent) || TerminatingOrDeleted(host.Value)) + { + QueueDel(uid); return; + } - RetractGuardian(host, hostComponent, uid, component); + RetractGuardian(host.Value, hostComponent, uid, component); } - private void OnGuardianPlayer(EntityUid uid, GuardianComponent component, PlayerAttachedEvent args) + private void OnGuardianPlayerAttached(EntityUid uid, GuardianComponent component, PlayerAttachedEvent args) { var host = component.Host; if (!HasComp(host)) + { + QueueDel(uid); return; + } - _popupSystem.PopupEntity(Loc.GetString("guardian-available"), host, host); + _popupSystem.PopupEntity(Loc.GetString("guardian-available"), host.Value, host.Value); } private void OnHostInit(EntityUid uid, GuardianHostComponent component, ComponentInit args) @@ -95,14 +118,16 @@ private void OnHostInit(EntityUid uid, GuardianHostComponent component, Componen private void OnHostShutdown(EntityUid uid, GuardianHostComponent component, ComponentShutdown args) { - if (component.HostedGuardian == null) + if (component.HostedGuardian is not {} guardian) return; - if (HasComp(component.HostedGuardian.Value)) + // Ensure held items are dropped before deleting guardian. + if (HasComp(guardian)) _bodySystem.GibBody(component.HostedGuardian.Value); - EntityManager.QueueDeleteEntity(component.HostedGuardian.Value); - _actionSystem.RemoveAction(uid, component.ActionEntity); + QueueDel(guardian); + QueueDel(component.ActionEntity); + component.ActionEntity = null; } private void OnGuardianAttackAttempt(EntityUid uid, GuardianComponent component, AttackAttemptEvent args) @@ -117,7 +142,7 @@ private void OnGuardianAttackAttempt(EntityUid uid, GuardianComponent component, public void ToggleGuardian(EntityUid user, GuardianHostComponent hostComponent) { - if (hostComponent.HostedGuardian == null || !TryComp(hostComponent.HostedGuardian, out var guardianComponent)) + if (!TryComp(hostComponent.HostedGuardian, out var guardianComponent)) return; if (guardianComponent.GuardianLoose) @@ -134,7 +159,7 @@ private void OnCreatorUse(EntityUid uid, GuardianCreatorComponent component, Use if (args.Handled) return; - //args.Handled = true; + args.Handled = true; UseCreator(args.User, args.User, uid, component); } @@ -143,7 +168,7 @@ private void OnCreatorInteract(EntityUid uid, GuardianCreatorComponent component if (args.Handled || args.Target == null || !args.CanReach) return; - //args.Handled = true; + args.Handled = true; UseCreator(args.User, args.Target.Value, uid, component); } private void UseCreator(EntityUid user, EntityUid target, EntityUid injector, GuardianCreatorComponent component) @@ -194,15 +219,15 @@ private void OnDoAfter(EntityUid uid, GuardianCreatorComponent component, DoAfte if (TryComp(guardian, out var guardianComp)) { guardianComp.Host = args.Args.Target.Value; - _audio.Play("/Audio/Effects/guardian_inject.ogg", Filter.Pvs(args.Args.Target.Value), args.Args.Target.Value, true); + _audio.PlayPvs("/Audio/Effects/guardian_inject.ogg", args.Args.Target.Value); _popupSystem.PopupEntity(Loc.GetString("guardian-created"), args.Args.Target.Value, args.Args.Target.Value); // Exhaust the activator component.Used = true; } else { - Logger.ErrorS("guardian", $"Tried to spawn a guardian that doesn't have {nameof(GuardianComponent)}"); - EntityManager.QueueDeleteEntity(guardian); + Log.Error($"Tried to spawn a guardian that doesn't have {nameof(GuardianComponent)}"); + QueueDel(guardian); } args.Handled = true; @@ -219,13 +244,13 @@ private void OnHostStateChange(EntityUid uid, GuardianHostComponent component, M if (args.NewMobState == MobState.Critical) { _popupSystem.PopupEntity(Loc.GetString("guardian-host-critical-warn"), component.HostedGuardian.Value, component.HostedGuardian.Value); - _audio.Play("/Audio/Effects/guardian_warn.ogg", Filter.Pvs(component.HostedGuardian.Value), component.HostedGuardian.Value, true); + _audio.PlayPvs("/Audio/Effects/guardian_warn.ogg", component.HostedGuardian.Value); } else if (args.NewMobState == MobState.Dead) { //TODO: Replace WithVariation with datafield - _audio.Play("/Audio/Voice/Human/malescream_guardian.ogg", Filter.Pvs(uid), uid, true, AudioHelpers.WithVariation(0.20f)); - EntityManager.RemoveComponent(uid); + _audio.PlayPvs("/Audio/Voice/Human/malescream_guardian.ogg", uid, AudioParams.Default.WithVariation(0.20f)); + RemComp(uid); } } @@ -234,11 +259,11 @@ private void OnHostStateChange(EntityUid uid, GuardianHostComponent component, M /// private void OnGuardianDamaged(EntityUid uid, GuardianComponent component, DamageChangedEvent args) { - if (args.DamageDelta == null) + if (args.DamageDelta == null || component.Host == null || component.DamageShare > 0) return; _damageSystem.TryChangeDamage(component.Host, args.DamageDelta * component.DamageShare, origin: args.Origin); - _popupSystem.PopupEntity(Loc.GetString("guardian-entity-taking-damage"), component.Host, component.Host); + _popupSystem.PopupEntity(Loc.GetString("guardian-entity-taking-damage"), component.Host.Value, component.Host.Value); } @@ -256,8 +281,7 @@ private void OnCreatorExamine(EntityUid uid, GuardianCreatorComponent component, /// private void OnHostMove(EntityUid uid, GuardianHostComponent component, ref MoveEvent args) { - if (component.HostedGuardian == null || - !TryComp(component.HostedGuardian, out GuardianComponent? guardianComponent) || + if (!TryComp(component.HostedGuardian, out GuardianComponent? guardianComponent) || !guardianComponent.GuardianLoose) { return; @@ -271,10 +295,10 @@ private void OnHostMove(EntityUid uid, GuardianHostComponent component, ref Move ///
private void OnGuardianMove(EntityUid uid, GuardianComponent component, ref MoveEvent args) { - if (!component.GuardianLoose) + if (!component.GuardianLoose || component.Host == null) return; - CheckGuardianMove(component.Host, uid, guardianComponent: component); + CheckGuardianMove(component.Host.Value, uid, guardianComponent: component); } /// @@ -288,6 +312,9 @@ private void CheckGuardianMove( TransformComponent? hostXform = null, TransformComponent? guardianXform = null) { + if (TerminatingOrDeleted(guardianUid) || TerminatingOrDeleted(hostUid)) + return; + if (!Resolve(hostUid, ref hostComponent, ref hostXform) || !Resolve(guardianUid, ref guardianComponent, ref guardianXform)) { diff --git a/Content.Server/GuideGenerator/ReagentEntry.cs b/Content.Server/GuideGenerator/ReagentEntry.cs index 7e1444b8a0..5c9ec40fd4 100644 --- a/Content.Server/GuideGenerator/ReagentEntry.cs +++ b/Content.Server/GuideGenerator/ReagentEntry.cs @@ -1,7 +1,10 @@ using System.Linq; using System.Text.Json.Serialization; +using Content.Server.Body.Components; +using Content.Shared.Body.Prototypes; using Content.Shared.Chemistry.Reaction; using Content.Shared.Chemistry.Reagent; +using Robust.Shared.Prototypes; namespace Content.Server.GuideGenerator; @@ -29,7 +32,7 @@ public sealed class ReagentEntry public List Recipes { get; } = new(); [JsonPropertyName("metabolisms")] - public Dictionary? Metabolisms { get; } + public Dictionary, ReagentEffectsEntry>? Metabolisms { get; } public ReagentEntry(ReagentPrototype proto) { diff --git a/Content.Server/Hands/Systems/HandsSystem.cs b/Content.Server/Hands/Systems/HandsSystem.cs index e3e6699537..5c750e7544 100644 --- a/Content.Server/Hands/Systems/HandsSystem.cs +++ b/Content.Server/Hands/Systems/HandsSystem.cs @@ -8,6 +8,7 @@ using Content.Shared.ActionBlocker; using Content.Shared.Body.Part; using Content.Shared.CombatMode; +using Content.Shared.Explosion; using Content.Shared.Hands; using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; @@ -54,6 +55,8 @@ public override void Initialize() SubscribeLocalEvent(GetComponentState); + SubscribeLocalEvent(OnExploded); + CommandBinds.Builder .Bind(ContentKeyFunctions.ThrowItemInHand, new PointerInputCmdHandler(HandleThrowItem)) .Bind(ContentKeyFunctions.SmartEquipBackpack, InputCmdHandler.FromDelegate(HandleSmartEquipBackpack)) @@ -73,6 +76,15 @@ private void GetComponentState(EntityUid uid, HandsComponent hands, ref Componen args.State = new HandsComponentState(hands); } + private void OnExploded(Entity ent, ref BeforeExplodeEvent args) + { + foreach (var hand in ent.Comp.Hands.Values) + { + if (hand.HeldEntity is {} uid) + args.Contents.Add(uid); + } + } + private void OnDisarmed(EntityUid uid, HandsComponent component, DisarmedEvent args) { if (args.Handled) @@ -192,9 +204,9 @@ hands.ActiveHandEntity is not { } throwEnt || // Let other systems change the thrown entity (useful for virtual items) // or the throw strength. var ev = new BeforeThrowEvent(throwEnt, direction, throwStrength, player); - RaiseLocalEvent(player, ev, false); + RaiseLocalEvent(player, ref ev); - if (ev.Handled) + if (ev.Cancelled) return true; // This can grief the above event so we raise it afterwards diff --git a/Content.Server/Holiday/Christmas/RandomGiftSystem.cs b/Content.Server/Holiday/Christmas/RandomGiftSystem.cs index 4581d378f6..33d5d0d234 100644 --- a/Content.Server/Holiday/Christmas/RandomGiftSystem.cs +++ b/Content.Server/Holiday/Christmas/RandomGiftSystem.cs @@ -4,6 +4,7 @@ using Content.Shared.Examine; using Content.Shared.Interaction.Events; using Content.Shared.Item; +using Robust.Server.Audio; using Robust.Server.GameObjects; using Robust.Shared.Map.Components; using Robust.Shared.Physics.Components; @@ -30,7 +31,7 @@ public sealed class RandomGiftSystem : EntitySystem /// public override void Initialize() { - _prototype.PrototypesReloaded += OnPrototypesReloaded; + SubscribeLocalEvent(OnPrototypesReloaded); SubscribeLocalEvent(OnGiftMapInit); SubscribeLocalEvent(OnUseInHand); SubscribeLocalEvent(OnExamined); @@ -79,7 +80,8 @@ private void OnGiftMapInit(EntityUid uid, RandomGiftComponent component, MapInit private void OnPrototypesReloaded(PrototypesReloadedEventArgs obj) { - BuildIndex(); + if (obj.WasModified()) + BuildIndex(); } private void BuildIndex() diff --git a/Content.Server/Holiday/HolidayPrototype.cs b/Content.Server/Holiday/HolidayPrototype.cs index 20414ad939..749423402b 100644 --- a/Content.Server/Holiday/HolidayPrototype.cs +++ b/Content.Server/Holiday/HolidayPrototype.cs @@ -6,7 +6,7 @@ namespace Content.Server.Holiday { [Prototype("holiday")] - public sealed class HolidayPrototype : IPrototype + public sealed partial class HolidayPrototype : IPrototype { [DataField("name")] public string Name { get; private set; } = string.Empty; diff --git a/Content.Server/IdentityManagement/IdentitySystem.cs b/Content.Server/IdentityManagement/IdentitySystem.cs index cdb4dc7c6c..5161911254 100644 --- a/Content.Server/IdentityManagement/IdentitySystem.cs +++ b/Content.Server/IdentityManagement/IdentitySystem.cs @@ -1,6 +1,7 @@ using Content.Server.Access.Systems; using Content.Server.Administration.Logs; using Content.Server.Humanoid; +using Content.Shared.Clothing; using Content.Shared.Database; using Content.Shared.Hands; using Content.Shared.Humanoid; @@ -33,6 +34,7 @@ public override void Initialize() SubscribeLocalEvent((uid, _, _) => QueueIdentityUpdate(uid)); SubscribeLocalEvent((uid, _, _) => QueueIdentityUpdate(uid)); SubscribeLocalEvent((uid, _, _) => QueueIdentityUpdate(uid)); + SubscribeLocalEvent((uid, _, _) => QueueIdentityUpdate(uid)); SubscribeLocalEvent(OnMapInit); } diff --git a/Content.Server/IgnitionSource/IgniteOnTriggerSystem.cs b/Content.Server/IgnitionSource/IgniteOnTriggerSystem.cs index 256a857864..d80d7ecbfc 100644 --- a/Content.Server/IgnitionSource/IgniteOnTriggerSystem.cs +++ b/Content.Server/IgnitionSource/IgniteOnTriggerSystem.cs @@ -1,6 +1,7 @@ using Content.Server.Explosion.EntitySystems; using Content.Shared.Timing; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Timing; namespace Content.Server.IgnitionSource; diff --git a/Content.Server/ImmovableRod/ImmovableRodSystem.cs b/Content.Server/ImmovableRod/ImmovableRodSystem.cs index d688941abf..0fa8f7d292 100644 --- a/Content.Server/ImmovableRod/ImmovableRodSystem.cs +++ b/Content.Server/ImmovableRod/ImmovableRodSystem.cs @@ -3,6 +3,8 @@ using Content.Shared.Body.Components; using Content.Shared.Examine; using Content.Shared.Popups; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Events; diff --git a/Content.Server/Implants/SubdermalImplantSystem.cs b/Content.Server/Implants/SubdermalImplantSystem.cs index 038e0fdcdf..0b1e9d46b1 100644 --- a/Content.Server/Implants/SubdermalImplantSystem.cs +++ b/Content.Server/Implants/SubdermalImplantSystem.cs @@ -1,4 +1,5 @@ using Content.Server.Cuffs; +using Content.Server.Forensics; using Content.Server.Humanoid; using Content.Server.Store.Components; using Content.Server.Store.Systems; @@ -19,6 +20,7 @@ public sealed class SubdermalImplantSystem : SharedSubdermalImplantSystem [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly StoreSystem _store = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly ForensicsSystem _forensicsSystem = default!; public override void Initialize() { @@ -80,6 +82,14 @@ private void OnDnaScramblerImplant(EntityUid uid, SubdermalImplantComponent comp var newProfile = HumanoidCharacterProfile.RandomWithSpecies(humanoid.Species); _humanoidAppearance.LoadProfile(ent, newProfile, humanoid); _metaData.SetEntityName(ent, newProfile.Name); + if (TryComp(ent, out var dna)) + { + dna.DNA = _forensicsSystem.GenerateDNA(); + } + if (TryComp(ent, out var fingerprint)) + { + fingerprint.Fingerprint = _forensicsSystem.GenerateFingerprint(); + } _popup.PopupEntity(Loc.GetString("scramble-implant-activated-popup"), ent, ent); } diff --git a/Content.Server/Interaction/InteractionPopupSystem.cs b/Content.Server/Interaction/InteractionPopupSystem.cs index 86158fb7a8..474284cf80 100644 --- a/Content.Server/Interaction/InteractionPopupSystem.cs +++ b/Content.Server/Interaction/InteractionPopupSystem.cs @@ -6,6 +6,7 @@ using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; using Robust.Shared.Random; using Robust.Shared.Timing; @@ -18,6 +19,7 @@ public sealed class InteractionPopupSystem : EntitySystem [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly MobStateSystem _mobStateSystem = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; public override void Initialize() { @@ -41,15 +43,17 @@ private void OnInteractHand(EntityUid uid, InteractionPopupComponent component, if (curTime < component.LastInteractTime + component.InteractDelay) return; - if (TryComp(uid, out var state) // if it has a MobStateComponent, - && !_mobStateSystem.IsAlive(uid, state)) // AND if that state is not Alive (e.g. dead/incapacitated/critical) + if (TryComp(uid, out var state) + && !_mobStateSystem.IsAlive(uid, state)) + { return; + } // TODO: Should be an attempt event // TODO: Need to handle pausing with an accumulator. string msg = ""; // Stores the text to be shown in the popup message - string? sfx = null; // Stores the filepath of the sound to be played + SoundSpecifier? sfx = null; // Stores the filepath of the sound to be played if (_random.Prob(component.SuccessChance)) { @@ -57,7 +61,7 @@ private void OnInteractHand(EntityUid uid, InteractionPopupComponent component, msg = Loc.GetString(component.InteractSuccessString, ("target", Identity.Entity(uid, EntityManager))); // Success message (localized). if (component.InteractSuccessSound != null) - sfx = component.InteractSuccessSound.GetSound(); + sfx = component.InteractSuccessSound; if (component.InteractSuccessSpawn != null) Spawn(component.InteractSuccessSpawn, Transform(uid).MapPosition); @@ -68,7 +72,7 @@ private void OnInteractHand(EntityUid uid, InteractionPopupComponent component, msg = Loc.GetString(component.InteractFailureString, ("target", Identity.Entity(uid, EntityManager))); // Failure message (localized). if (component.InteractFailureSound != null) - sfx = component.InteractFailureSound.GetSound(); + sfx = component.InteractFailureSound; if (component.InteractFailureSpawn != null) Spawn(component.InteractFailureSpawn, Transform(uid).MapPosition); @@ -76,7 +80,7 @@ private void OnInteractHand(EntityUid uid, InteractionPopupComponent component, if (component.MessagePerceivedByOthers != null) { - string msgOthers = Loc.GetString(component.MessagePerceivedByOthers, + var msgOthers = Loc.GetString(component.MessagePerceivedByOthers, ("user", Identity.Entity(args.User, EntityManager)), ("target", Identity.Entity(uid, EntityManager))); _popupSystem.PopupEntity(msg, uid, args.User); _popupSystem.PopupEntity(msgOthers, uid, Filter.PvsExcept(args.User, entityManager: EntityManager), true); @@ -87,9 +91,9 @@ private void OnInteractHand(EntityUid uid, InteractionPopupComponent component, if (sfx is not null) //not all cases will have sound. { if (component.SoundPerceivedByOthers) - SoundSystem.Play(sfx, Filter.Pvs(args.Target), args.Target); //play for everyone in range + _audio.PlayPvs(sfx, args.Target); //play for everyone in range else - SoundSystem.Play(sfx, Filter.Entities(args.User, args.Target), args.Target); //play only for the initiating entity and its target. + _audio.PlayEntity(sfx, Filter.Entities(args.User, args.Target), args.Target, true); //play only for the initiating entity and its target. } component.LastInteractTime = curTime; diff --git a/Content.Server/Inventory/ServerInventorySystem.cs b/Content.Server/Inventory/ServerInventorySystem.cs index f80a604ad5..7e3d9b3c7d 100644 --- a/Content.Server/Inventory/ServerInventorySystem.cs +++ b/Content.Server/Inventory/ServerInventorySystem.cs @@ -1,5 +1,6 @@ using Content.Server.Storage.EntitySystems; using Content.Shared.Clothing.Components; +using Content.Shared.Explosion; using Content.Shared.Interaction.Events; using Content.Shared.Inventory; using Content.Shared.Inventory.Events; @@ -15,11 +16,24 @@ public override void Initialize() { base.Initialize(); + SubscribeLocalEvent(OnExploded); + SubscribeLocalEvent(OnUseInHand); SubscribeNetworkEvent(OnOpenSlotStorage); } + private void OnExploded(Entity ent, ref BeforeExplodeEvent args) + { + // explode each item in their inventory too + var slots = new InventorySlotEnumerator(ent); + while (slots.MoveNext(out var slot)) + { + if (slot.ContainedEntity != null) + args.Contents.Add(slot.ContainedEntity.Value); + } + } + private void OnUseInHand(EntityUid uid, ClothingComponent component, UseInHandEvent args) { if (args.Handled || !component.QuickEquip) @@ -39,33 +53,16 @@ private void OnOpenSlotStorage(OpenSlotStorageNetworkMessage ev, EntitySessionEv } } - public void TransferEntityInventories(EntityUid uid, EntityUid target) + public void TransferEntityInventories(Entity source, Entity target) { - if (!TryGetContainerSlotEnumerator(uid, out var enumerator)) + if (!Resolve(source.Owner, ref source.Comp) || !Resolve(target.Owner, ref target.Comp)) return; - Dictionary inventoryEntities = new(); - var slots = GetSlots(uid); - while (enumerator.MoveNext(out var containerSlot)) - { - //records all the entities stored in each of the target's slots - foreach (var slot in slots) - { - if (TryGetSlotContainer(target, slot.Name, out var conslot, out _) && - conslot.ID == containerSlot.ID && - containerSlot.ContainedEntity is { } containedEntity) - { - inventoryEntities.Add(slot.Name, containedEntity); - } - } - //drops everything in the target's inventory on the ground - TryUnequip(uid, containerSlot.ID, true, true); - } - // This takes the objects we removed and stored earlier - // and actually equips all of it to the new entity - foreach (var (slot, item) in inventoryEntities) + var enumerator = new InventorySlotEnumerator(source.Comp); + while (enumerator.NextItem(out var item, out var slot)) { - TryEquip(target, item, slot , true, true); + if (TryUnequip(source, slot.Name, true, true, inventory: source.Comp)) + TryEquip(target, item, slot.Name , true, true, inventory: target.Comp); } } } diff --git a/Content.Server/IoC/ServerContentIoC.cs b/Content.Server/IoC/ServerContentIoC.cs index a69afc8657..2a63ace8e3 100644 --- a/Content.Server/IoC/ServerContentIoC.cs +++ b/Content.Server/IoC/ServerContentIoC.cs @@ -57,6 +57,7 @@ public static void Register() IoCManager.Register(); IoCManager.Register(); IoCManager.Register(); + IoCManager.Register(); } } } diff --git a/Content.Server/Item/ItemToggleSystem.cs b/Content.Server/Item/ItemToggleSystem.cs index 5610582007..fb72148b88 100644 --- a/Content.Server/Item/ItemToggleSystem.cs +++ b/Content.Server/Item/ItemToggleSystem.cs @@ -4,6 +4,8 @@ using Content.Shared.Item; using Content.Shared.Toggleable; using Content.Shared.Tools.Components; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; namespace Content.Server.Weapons.Melee.ItemToggle; @@ -53,7 +55,7 @@ private void TurnOff(EntityUid uid, ItemToggleComponent comp, ref ItemToggleDeac if (TryComp(uid, out var malus)) malus.Malus -= comp.ActivatedDisarmMalus; - _audio.Play(comp.DeActivateSound, Filter.Pvs(uid, entityManager: EntityManager), uid, true, comp.DeActivateSound.Params); + _audio.PlayEntity(comp.DeActivateSound, Filter.Pvs(uid, entityManager: EntityManager), uid, true, comp.DeActivateSound.Params); comp.Activated = false; } @@ -66,7 +68,7 @@ private void TurnOn(EntityUid uid, ItemToggleComponent comp, ref ItemToggleActiv if (TryComp(uid, out var malus)) malus.Malus += comp.ActivatedDisarmMalus; - _audio.Play(comp.ActivateSound, Filter.Pvs(uid, entityManager: EntityManager), uid, true, comp.ActivateSound.Params); + _audio.PlayEntity(comp.ActivateSound, Filter.Pvs(uid, entityManager: EntityManager), uid, true, comp.ActivateSound.Params); comp.Activated = true; } diff --git a/Content.Server/Kitchen/Components/MicrowaveComponent.cs b/Content.Server/Kitchen/Components/MicrowaveComponent.cs index 538a069d16..45f927389e 100644 --- a/Content.Server/Kitchen/Components/MicrowaveComponent.cs +++ b/Content.Server/Kitchen/Components/MicrowaveComponent.cs @@ -1,4 +1,5 @@ using Content.Shared.Construction.Prototypes; +using Content.Shared.DeviceLinking; using Robust.Shared.Audio; using Robust.Shared.Containers; using Robust.Shared.Prototypes; @@ -29,7 +30,8 @@ public sealed partial class MicrowaveComponent : Component [DataField("ItemBreakSound")] public SoundSpecifier ItemBreakSound = new SoundPathSpecifier("/Audio/Effects/clang.ogg"); - public IPlayingAudioStream? PlayingStream { get; set; } + public EntityUid? PlayingStream; + [DataField("loopingSound")] public SoundSpecifier LoopingSound = new SoundPathSpecifier("/Audio/Machines/microwave_loop.ogg"); #endregion @@ -37,6 +39,9 @@ public sealed partial class MicrowaveComponent : Component [ViewVariables] public bool Broken; + [DataField, ViewVariables(VVAccess.ReadWrite)] + public ProtoId OnPort = "On"; + /// /// This is a fixed offset of 5. /// The cook times for all recipes should be divisible by 5,with a minimum of 1 second. diff --git a/Content.Server/Kitchen/Components/ReagentGrinderComponent.cs b/Content.Server/Kitchen/Components/ReagentGrinderComponent.cs index 4b53049086..2a028a8580 100644 --- a/Content.Server/Kitchen/Components/ReagentGrinderComponent.cs +++ b/Content.Server/Kitchen/Components/ReagentGrinderComponent.cs @@ -48,7 +48,7 @@ public sealed partial class ReagentGrinderComponent : Component [DataField("juiceSound"), ViewVariables(VVAccess.ReadWrite)] public SoundSpecifier JuiceSound { get; set; } = new SoundPathSpecifier("/Audio/Machines/juicer.ogg"); - public IPlayingAudioStream? AudioStream; + public EntityUid? AudioStream; } [Access(typeof(ReagentGrinderSystem)), RegisterComponent] diff --git a/Content.Server/Kitchen/EntitySystems/KitchenSpikeSystem.cs b/Content.Server/Kitchen/EntitySystems/KitchenSpikeSystem.cs index 6e563ff45f..0419e13d23 100644 --- a/Content.Server/Kitchen/EntitySystems/KitchenSpikeSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/KitchenSpikeSystem.cs @@ -16,6 +16,8 @@ using Content.Shared.Popups; using Content.Shared.Storage; using Robust.Server.GameObjects; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; using Robust.Shared.Random; using static Content.Shared.Kitchen.Components.KitchenSpikeComponent; @@ -154,7 +156,7 @@ private void Spike(EntityUid uid, EntityUid userUid, EntityUid victimUid, QueueDel(gib); } - _audio.Play(component.SpikeSound, Filter.Pvs(uid), uid, true); + _audio.PlayEntity(component.SpikeSound, Filter.Pvs(uid), uid, true); } private bool TryGetPiece(EntityUid uid, EntityUid user, EntityUid used, diff --git a/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs b/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs index 1c8dbfb4df..436f040acf 100644 --- a/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs @@ -1,9 +1,13 @@ using System.Linq; using Content.Server.Body.Systems; using Content.Server.Construction; +using Content.Server.DeviceLinking.Events; +using Content.Server.DeviceLinking.Systems; +using Content.Server.DeviceNetwork; using Content.Server.Hands.Systems; using Content.Server.Kitchen.Components; using Content.Server.Power.Components; +using Content.Server.Power.EntitySystems; using Content.Server.Temperature.Components; using Content.Server.Temperature.Systems; using Content.Shared.Body.Components; @@ -24,6 +28,7 @@ using Robust.Server.Containers; using Robust.Server.GameObjects; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Player; @@ -33,7 +38,9 @@ public sealed class MicrowaveSystem : EntitySystem { [Dependency] private readonly BodySystem _bodySystem = default!; [Dependency] private readonly ContainerSystem _container = default!; + [Dependency] private readonly DeviceLinkSystem _deviceLink = default!; [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + [Dependency] private readonly PowerReceiverSystem _power = default!; [Dependency] private readonly RecipeManager _recipeManager = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; @@ -49,6 +56,7 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnSolutionChange); SubscribeLocalEvent(OnInteractUsing, after: new[] { typeof(AnchorableSystem) }); SubscribeLocalEvent(OnBreak); @@ -57,6 +65,8 @@ public override void Initialize() SubscribeLocalEvent(OnRefreshParts); SubscribeLocalEvent(OnUpgradeExamine); + SubscribeLocalEvent(OnSignalReceived); + SubscribeLocalEvent((u, c, m) => Wzhzhzh(u, c, m.Session.AttachedEntity)); SubscribeLocalEvent(OnEjectMessage); SubscribeLocalEvent(OnEjectIndex); @@ -73,7 +83,7 @@ private void OnCookStart(EntityUid uid, ActiveMicrowaveComponent component, Comp SetAppearance(uid, MicrowaveVisualState.Cooking, microwaveComponent); microwaveComponent.PlayingStream = - _audio.PlayPvs(microwaveComponent.LoopingSound, uid, AudioParams.Default.WithLoop(true).WithMaxDistance(5)); + _audio.PlayPvs(microwaveComponent.LoopingSound, uid, AudioParams.Default.WithLoop(true).WithMaxDistance(5)).Value.Entity; } private void OnCookStop(EntityUid uid, ActiveMicrowaveComponent component, ComponentShutdown args) @@ -82,7 +92,7 @@ private void OnCookStop(EntityUid uid, ActiveMicrowaveComponent component, Compo return; SetAppearance(uid, MicrowaveVisualState.Idle, microwaveComponent); - microwaveComponent.PlayingStream?.Stop(); + microwaveComponent.PlayingStream = _audio.Stop(microwaveComponent.PlayingStream); } /// @@ -172,9 +182,15 @@ private void SubtractContents(MicrowaveComponent component, FoodRecipePrototype } } - private void OnInit(EntityUid uid, MicrowaveComponent component, ComponentInit ags) + private void OnInit(Entity ent, ref ComponentInit args) + { + // this really does have to be in ComponentInit + ent.Comp.Storage = _container.EnsureContainer(ent, "microwave_entity_container"); + } + + private void OnMapInit(Entity ent, ref MapInitEvent args) { - component.Storage = _container.EnsureContainer(uid, "microwave_entity_container"); + _deviceLink.EnsureSinkPorts(ent, ent.Comp.OnPort); } private void OnSuicide(EntityUid uid, MicrowaveComponent component, SuicideEvent args) @@ -277,6 +293,17 @@ private void OnUpgradeExamine(EntityUid uid, MicrowaveComponent component, Upgra args.AddPercentageUpgrade("microwave-component-upgrade-cook-time", component.CookTimeMultiplier); } + private void OnSignalReceived(Entity ent, ref SignalReceivedEvent args) + { + if (args.Port != ent.Comp.OnPort) + return; + + if (ent.Comp.Broken || !_power.IsPowered(ent)) + return; + + Wzhzhzh(ent.Owner, ent.Comp, null); + } + public void UpdateUserInterfaceState(EntityUid uid, MicrowaveComponent component) { var ui = _userInterface.GetUiOrNull(uid, MicrowaveUiKey.Key); diff --git a/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs b/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs index 6ce53dc530..3a6d5e4134 100644 --- a/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs @@ -16,6 +16,7 @@ using JetBrains.Annotations; using Robust.Server.GameObjects; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Timing; @@ -64,7 +65,7 @@ public override void Update(float frameTime) if (active.EndTime > _timing.CurTime) continue; - reagentGrinder.AudioStream?.Stop(); + reagentGrinder.AudioStream = _audioSystem.Stop(reagentGrinder.AudioStream); RemCompDeferred(uid); var inputContainer = _containerSystem.EnsureContainer(uid, SharedReagentGrinder.InputContainerId); @@ -284,7 +285,7 @@ private void DoWork(EntityUid uid, ReagentGrinderComponent reagentGrinder, Grind active.Program = program; reagentGrinder.AudioStream = _audioSystem.PlayPvs(sound, uid, - AudioParams.Default.WithPitchScale(1 / reagentGrinder.WorkTimeMultiplier)); //slightly higher pitched + AudioParams.Default.WithPitchScale(1 / reagentGrinder.WorkTimeMultiplier)).Value.Entity; //slightly higher pitched _userInterfaceSystem.TrySendUiMessage(uid, ReagentGrinderUiKey.Key, new ReagentGrinderWorkStartedMessage(program)); } diff --git a/Content.Server/Lathe/LatheSystem.cs b/Content.Server/Lathe/LatheSystem.cs index 309ee58316..c6614fcd4f 100644 --- a/Content.Server/Lathe/LatheSystem.cs +++ b/Content.Server/Lathe/LatheSystem.cs @@ -16,6 +16,8 @@ using Content.Shared.Research.Prototypes; using JetBrains.Annotations; using Robust.Server.GameObjects; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Prototypes; using Robust.Shared.Timing; diff --git a/Content.Server/Light/EntitySystems/ExpendableLightSystem.cs b/Content.Server/Light/EntitySystems/ExpendableLightSystem.cs index f4db4216cf..40d212c6ad 100644 --- a/Content.Server/Light/EntitySystems/ExpendableLightSystem.cs +++ b/Content.Server/Light/EntitySystems/ExpendableLightSystem.cs @@ -9,6 +9,9 @@ using Content.Shared.Verbs; using JetBrains.Annotations; using Robust.Server.GameObjects; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Player; using Robust.Shared.Utility; namespace Content.Server.Light.EntitySystems diff --git a/Content.Server/Light/EntitySystems/HandheldLightSystem.cs b/Content.Server/Light/EntitySystems/HandheldLightSystem.cs index f3e7eaca0e..70ce3c7488 100644 --- a/Content.Server/Light/EntitySystems/HandheldLightSystem.cs +++ b/Content.Server/Light/EntitySystems/HandheldLightSystem.cs @@ -9,6 +9,10 @@ using Content.Shared.Rounding; using Content.Shared.Toggleable; using Content.Shared.Verbs; +using JetBrains.Annotations; +using Robust.Server.GameObjects; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.GameStates; using Robust.Shared.Utility; diff --git a/Content.Server/Light/EntitySystems/LightBulbSystem.cs b/Content.Server/Light/EntitySystems/LightBulbSystem.cs index 43b0b4662c..5714bde3e5 100644 --- a/Content.Server/Light/EntitySystems/LightBulbSystem.cs +++ b/Content.Server/Light/EntitySystems/LightBulbSystem.cs @@ -4,6 +4,7 @@ using Content.Shared.Throwing; using Robust.Server.GameObjects; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; namespace Content.Server.Light.EntitySystems @@ -11,6 +12,7 @@ namespace Content.Server.Light.EntitySystems public sealed class LightBulbSystem : EntitySystem { [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; public override void Initialize() { @@ -68,7 +70,7 @@ public void PlayBreakSound(EntityUid uid, LightBulbComponent? bulb = null) if (!Resolve(uid, ref bulb)) return; - SoundSystem.Play(bulb.BreakSound.GetSound(), Filter.Pvs(uid), uid); + _audio.PlayPvs(bulb.BreakSound, uid); } private void UpdateAppearance(EntityUid uid, LightBulbComponent? bulb = null, diff --git a/Content.Server/Light/EntitySystems/LightReplacerSystem.cs b/Content.Server/Light/EntitySystems/LightReplacerSystem.cs index d37080a1e1..8347f14ea4 100644 --- a/Content.Server/Light/EntitySystems/LightReplacerSystem.cs +++ b/Content.Server/Light/EntitySystems/LightReplacerSystem.cs @@ -6,6 +6,8 @@ using Content.Shared.Popups; using Content.Shared.Storage; using JetBrains.Annotations; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; namespace Content.Server.Light.EntitySystems; diff --git a/Content.Server/Light/EntitySystems/MatchstickSystem.cs b/Content.Server/Light/EntitySystems/MatchstickSystem.cs index 88f416ce9d..2195c69b18 100644 --- a/Content.Server/Light/EntitySystems/MatchstickSystem.cs +++ b/Content.Server/Light/EntitySystems/MatchstickSystem.cs @@ -7,6 +7,7 @@ using Content.Shared.Temperature; using Robust.Server.GameObjects; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; namespace Content.Server.Light.EntitySystems @@ -15,6 +16,7 @@ public sealed class MatchstickSystem : EntitySystem { [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedItemSystem _item = default!; [Dependency] private readonly SharedPointLightSystem _lights = default!; [Dependency] private readonly TransformSystem _transformSystem = default!; @@ -79,8 +81,7 @@ public void Ignite(Entity matchstick, EntityUid user) var component = matchstick.Comp; // Play Sound - SoundSystem.Play(component.IgniteSound.GetSound(), Filter.Pvs(matchstick), - matchstick, AudioHelpers.WithVariation(0.125f).WithVolume(-0.125f)); + _audio.PlayPvs(component.IgniteSound, matchstick, AudioParams.Default.WithVariation(0.125f).WithVolume(-0.125f)); // Change state SetState(matchstick, component, SmokableState.Lit); diff --git a/Content.Server/Light/EntitySystems/PoweredLightSystem.cs b/Content.Server/Light/EntitySystems/PoweredLightSystem.cs index cd4322aa26..b92fc247d0 100644 --- a/Content.Server/Light/EntitySystems/PoweredLightSystem.cs +++ b/Content.Server/Light/EntitySystems/PoweredLightSystem.cs @@ -23,6 +23,12 @@ using Robust.Shared.Containers; using Robust.Shared.Player; using Robust.Shared.Timing; +using Content.Shared.DoAfter; +using Content.Server.Emp; +using Content.Server.DeviceLinking.Events; +using Content.Server.DeviceLinking.Systems; +using Content.Shared.Inventory; +using Robust.Shared.Audio.Systems; namespace Content.Server.Light.EntitySystems { @@ -130,7 +136,7 @@ private void OnInteractHand(EntityUid uid, PoweredLightComponent light, Interact if (damage != null) _adminLogger.Add(LogType.Damaged, $"{ToPrettyString(args.User):user} burned their hand on {ToPrettyString(args.Target):target} and received {damage.Total:damage} damage"); - _audio.Play(light.BurnHandSound, Filter.Pvs(uid), uid, true); + _audio.PlayEntity(light.BurnHandSound, Filter.Pvs(uid), uid, true); args.Handled = true; return; @@ -281,7 +287,7 @@ private void UpdateLight(EntityUid uid, if (time > light.LastThunk + ThunkDelay) { light.LastThunk = time; - _audio.Play(light.TurnOnSound, Filter.Pvs(uid), uid, true, AudioParams.Default.WithVolume(-10f)); + _audio.PlayEntity(light.TurnOnSound, Filter.Pvs(uid), uid, true, AudioParams.Default.WithVolume(-10f)); } } else @@ -343,7 +349,9 @@ private void OnGhostBoo(EntityUid uid, PoweredLightComponent light, GhostBooEven private void OnPowerChanged(EntityUid uid, PoweredLightComponent component, ref PowerChangedEvent args) { // TODO: Power moment - if (MetaData(uid).EntityPaused) + var metadata = MetaData(uid); + + if (metadata.EntityPaused || TerminatingOrDeleted(uid, metadata)) return; UpdateLight(uid, component); diff --git a/Content.Server/Light/EntitySystems/UnpoweredFlashlightSystem.cs b/Content.Server/Light/EntitySystems/UnpoweredFlashlightSystem.cs index c24966aba8..a1ed71ee4c 100644 --- a/Content.Server/Light/EntitySystems/UnpoweredFlashlightSystem.cs +++ b/Content.Server/Light/EntitySystems/UnpoweredFlashlightSystem.cs @@ -7,6 +7,8 @@ using Content.Shared.Mind.Components; using Content.Shared.Toggleable; using Content.Shared.Verbs; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Utility; diff --git a/Content.Server/Lock/Components/ActivatableUIRequiresLockComponent.cs b/Content.Server/Lock/Components/ActivatableUIRequiresLockComponent.cs new file mode 100644 index 0000000000..dac677c1c2 --- /dev/null +++ b/Content.Server/Lock/Components/ActivatableUIRequiresLockComponent.cs @@ -0,0 +1,15 @@ +namespace Content.Server.Lock.Components; + +/// +/// This is used for activatable UIs that require the entity to have a lock in a certain state. +/// +[RegisterComponent] +public sealed partial class ActivatableUIRequiresLockComponent : Component +{ + /// + /// TRUE: the lock must be locked to access the UI. + /// FALSE: the lock must be unlocked to access the UI. + /// + [DataField("requireLocked"), ViewVariables(VVAccess.ReadWrite)] + public bool requireLocked = false; +} diff --git a/Content.Server/Lock/EntitySystems/ActivatableUIRequiresLockSystem.cs b/Content.Server/Lock/EntitySystems/ActivatableUIRequiresLockSystem.cs new file mode 100644 index 0000000000..bfb2fbc6e1 --- /dev/null +++ b/Content.Server/Lock/EntitySystems/ActivatableUIRequiresLockSystem.cs @@ -0,0 +1,41 @@ +using Content.Server.Lock.Components; +using Content.Server.Popups; +using Content.Server.UserInterface; +using Content.Shared.Lock; + +namespace Content.Server.Lock.EntitySystems; +public sealed class ActivatableUIRequiresLockSystem : EntitySystem +{ + [Dependency] private readonly ActivatableUISystem _activatableUI = default!; + [Dependency] private readonly PopupSystem _popupSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnUIOpenAttempt); + SubscribeLocalEvent(LockToggled); + } + + private void OnUIOpenAttempt(EntityUid uid, ActivatableUIRequiresLockComponent component, ActivatableUIOpenAttemptEvent args) + { + if (args.Cancelled) + return; + + if (TryComp(uid, out var lockComp) && lockComp.Locked != component.requireLocked) + { + args.Cancel(); + if (lockComp.Locked) + _popupSystem.PopupEntity(Loc.GetString("entity-storage-component-locked-message"), uid, args.User); + } + } + + private void LockToggled(EntityUid uid, ActivatableUIRequiresLockComponent component, LockToggledEvent args) + { + if (!TryComp(uid, out var lockComp) || lockComp.Locked == component.requireLocked) + return; + + _activatableUI.CloseAll(uid); + } +} + diff --git a/Content.Server/Lube/LubeSystem.cs b/Content.Server/Lube/LubeSystem.cs index 10a30dc25c..86921d222c 100644 --- a/Content.Server/Lube/LubeSystem.cs +++ b/Content.Server/Lube/LubeSystem.cs @@ -7,6 +7,8 @@ using Content.Shared.Item; using Content.Shared.Lube; using Content.Shared.Popups; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Random; namespace Content.Server.Lube; diff --git a/Content.Server/Magic/MagicSystem.cs b/Content.Server/Magic/MagicSystem.cs index 4fbd9e3ec7..d8febe0d1f 100644 --- a/Content.Server/Magic/MagicSystem.cs +++ b/Content.Server/Magic/MagicSystem.cs @@ -19,6 +19,7 @@ using Content.Shared.Storage; using Robust.Server.GameObjects; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Random; using Robust.Shared.Serialization.Manager; @@ -176,7 +177,7 @@ private void OnProjectileSpell(ProjectileSpellEvent ev) var ent = Spawn(ev.Prototype, spawnCoords); var direction = ev.Target.ToMapPos(EntityManager, _transformSystem) - spawnCoords.ToMapPos(EntityManager, _transformSystem); - _gunSystem.ShootProjectile(ent, direction, userVelocity, ev.Performer); + _gunSystem.ShootProjectile(ent, direction, userVelocity, ev.Performer, ev.Performer); } } diff --git a/Content.Server/MagicMirror/MagicMirrorComponent.cs b/Content.Server/MagicMirror/MagicMirrorComponent.cs index d9c2fff6da..b974b513cd 100644 --- a/Content.Server/MagicMirror/MagicMirrorComponent.cs +++ b/Content.Server/MagicMirror/MagicMirrorComponent.cs @@ -1,6 +1,25 @@ +using Content.Shared.Humanoid; +using Robust.Shared.Audio; + namespace Content.Server.MagicMirror; [RegisterComponent] public sealed partial class MagicMirrorComponent : Component { + public Entity? Target; + + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float AddSlotTime = 5f; + + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float RemoveSlotTime = 2f; + + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float SelectSlotTime = 3f; + + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float ChangeSlotTime = 1f; + + [DataField, ViewVariables(VVAccess.ReadWrite)] + public SoundSpecifier ChangeHairSound = new SoundPathSpecifier("/Audio/Items/scissors.ogg"); } diff --git a/Content.Server/MagicMirror/MagicMirrorSystem.cs b/Content.Server/MagicMirror/MagicMirrorSystem.cs index a599a2c868..eb989eafd6 100644 --- a/Content.Server/MagicMirror/MagicMirrorSystem.cs +++ b/Content.Server/MagicMirror/MagicMirrorSystem.cs @@ -1,16 +1,22 @@ using System.Linq; +using Content.Server.DoAfter; using Content.Server.Humanoid; using Content.Server.UserInterface; +using Content.Shared.DoAfter; using Content.Shared.Humanoid; using Content.Shared.Humanoid.Markings; +using Content.Shared.Interaction; using Content.Shared.MagicMirror; using Robust.Server.GameObjects; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; namespace Content.Server.MagicMirror; public sealed class MagicMirrorSystem : EntitySystem { + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly DoAfterSystem _doAfterSystem = default!; [Dependency] private readonly MarkingManager _markings = default!; [Dependency] private readonly HumanoidAppearanceSystem _humanoid = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; @@ -22,9 +28,27 @@ public override void Initialize() SubscribeLocalEvent(OnOpenUIAttempt); SubscribeLocalEvent(AfterUIOpen); SubscribeLocalEvent(OnMagicMirrorSelect); - SubscribeLocalEvent(OnMagicMirrorChangeColor); - SubscribeLocalEvent(OnMagicMirrorAddSlot); - SubscribeLocalEvent(OnMagicMirrorRemoveSlot); + SubscribeLocalEvent(OnTryMagicMirrorChangeColor); + SubscribeLocalEvent(OnTryMagicMirrorAddSlot); + SubscribeLocalEvent(OnTryMagicMirrorRemoveSlot); + + SubscribeLocalEvent(OnMagicMirrorInteract); + + SubscribeLocalEvent(OnSelectSlotDoAfter); + SubscribeLocalEvent(OnChangeColorDoAfter); + SubscribeLocalEvent(OnRemoveSlotDoAfter); + SubscribeLocalEvent(OnAddSlotDoAfter); + } + + private void OnMagicMirrorInteract(Entity mirror, ref AfterInteractEvent args) + { + if (!TryComp(args.User, out var actor)) return; + if (TryComp(args.Target, out var humanoid)) + { + mirror.Comp.Target = new Entity(args.Target.Value, humanoid); + UpdateInterface(mirror.Owner, mirror.Comp.Target.Value.Owner, actor.PlayerSession); + Log.Debug($"Target {mirror.Comp.Target}!"); + }; } private void OnOpenUIAttempt(EntityUid uid, MagicMirrorComponent mirror, ActivatableUIOpenAttemptEvent args) @@ -33,16 +57,32 @@ private void OnOpenUIAttempt(EntityUid uid, MagicMirrorComponent mirror, Activat args.Cancel(); } - private void OnMagicMirrorSelect(EntityUid uid, MagicMirrorComponent component, - MagicMirrorSelectMessage message) + private void OnMagicMirrorSelect(EntityUid uid, MagicMirrorComponent component, MagicMirrorSelectMessage message) { - if (message.Session.AttachedEntity == null || !TryComp(message.Session.AttachedEntity.Value, out var humanoid)) + if (component.Target == null) return; + if (message.Session.AttachedEntity == null) return; + + var doAfter = new SelectDoAfterEvent(message); + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Session.AttachedEntity.Value, component.SelectSlotTime, doAfter, uid, target: component.Target.Value.Owner, used: uid) { + BreakOnTargetMove = true, + BreakOnDamage = true, + BreakOnHandChange = false, + BreakOnUserMove = true, + BreakOnWeightlessMove = false, + NeedHand = true + }); + + _audio.PlayPvs(component.ChangeHairSound, uid); + } + private void OnSelectSlotDoAfter(EntityUid uid, MagicMirrorComponent component, SelectDoAfterEvent args) + { + if (args.Handled || args.Args.Target == null || args.Cancelled) return; - } + if (component.Target == null) return; var category = MarkingCategories.Hair; - switch (message.Category) + switch (args.Message.Category) { case MagicMirrorCategory.Hair: category = MarkingCategories.Hair; @@ -54,21 +94,35 @@ private void OnMagicMirrorSelect(EntityUid uid, MagicMirrorComponent component, return; } - _humanoid.SetMarkingId(message.Session.AttachedEntity.Value, category, message.Slot, message.Marking); + _humanoid.SetMarkingId(component.Target.Value.Owner, category, args.Message.Slot, args.Message.Marking); - UpdateInterface(uid, message.Session.AttachedEntity.Value, message.Session); + UpdateInterface(uid, component.Target.Value.Owner, args.Message.Session); } - private void OnMagicMirrorChangeColor(EntityUid uid, MagicMirrorComponent component, - MagicMirrorChangeColorMessage message) + private void OnTryMagicMirrorChangeColor(EntityUid uid, MagicMirrorComponent component, MagicMirrorChangeColorMessage message) { - if (message.Session.AttachedEntity == null || !TryComp(message.Session.AttachedEntity.Value, out var humanoid)) + if (component.Target == null) return; + if (message.Session.AttachedEntity == null) return; + + var doAfter = new ChangeColorDoAfterEvent(message); + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Session.AttachedEntity.Value, component.ChangeSlotTime, doAfter, uid, target: component.Target.Value.Owner, used: uid) { + BreakOnTargetMove = true, + BreakOnDamage = true, + BreakOnHandChange = false, + BreakOnUserMove = true, + BreakOnWeightlessMove = false, + NeedHand = true + }); + } + private void OnChangeColorDoAfter(EntityUid uid, MagicMirrorComponent component, ChangeColorDoAfterEvent args) + { + if (args.Handled || args.Args.Target == null || args.Cancelled) return; - } + if (component.Target == null) return; var category = MarkingCategories.Hair; - switch (message.Category) + switch (args.Message.Category) { case MagicMirrorCategory.Hair: category = MarkingCategories.Hair; @@ -80,22 +134,39 @@ private void OnMagicMirrorChangeColor(EntityUid uid, MagicMirrorComponent compon return; } - _humanoid.SetMarkingColor(message.Session.AttachedEntity.Value, category, message.Slot, message.Colors); + _humanoid.SetMarkingColor(component.Target.Value.Owner, category, args.Message.Slot, args.Message.Colors); // using this makes the UI feel like total ass - // UpdateInterface(uid, message.Session.AttachedEntity.Value, message.Session); + // UpdateInterface(uid, component.Target, message.Session); } - private void OnMagicMirrorRemoveSlot(EntityUid uid, MagicMirrorComponent component, - MagicMirrorRemoveSlotMessage message) + private void OnTryMagicMirrorRemoveSlot(EntityUid uid, MagicMirrorComponent component, MagicMirrorRemoveSlotMessage message) { - if (message.Session.AttachedEntity == null || !TryComp(message.Session.AttachedEntity.Value, out var humanoid)) + if (component.Target == null) return; + if (message.Session.AttachedEntity == null) return; + + var doAfter = new RemoveSlotDoAfterEvent(message); + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Session.AttachedEntity.Value, component.RemoveSlotTime, doAfter, uid, target: component.Target.Value.Owner, used: uid) { + BreakOnTargetMove = true, + BreakOnDamage = true, + BreakOnHandChange = false, + BreakOnUserMove = true, + BreakOnWeightlessMove = false, + NeedHand = true + }); + + _audio.PlayPvs(component.ChangeHairSound, uid); + } + private void OnRemoveSlotDoAfter(EntityUid uid, MagicMirrorComponent component, RemoveSlotDoAfterEvent args) + { + if (args.Handled || args.Args.Target == null || args.Cancelled) return; - } + + if (component.Target == null) return; var category = MarkingCategories.Hair; - switch (message.Category) + switch (args.Message.Category) { case MagicMirrorCategory.Hair: category = MarkingCategories.Hair; @@ -107,21 +178,37 @@ private void OnMagicMirrorRemoveSlot(EntityUid uid, MagicMirrorComponent compone return; } - _humanoid.RemoveMarking(message.Session.AttachedEntity.Value, category, message.Slot); + _humanoid.RemoveMarking(component.Target.Value.Owner, category, args.Message.Slot); - UpdateInterface(uid, message.Session.AttachedEntity.Value, message.Session); + UpdateInterface(uid, component.Target.Value.Owner, args.Message.Session); } - private void OnMagicMirrorAddSlot(EntityUid uid, MagicMirrorComponent component, - MagicMirrorAddSlotMessage message) + private void OnTryMagicMirrorAddSlot(EntityUid uid, MagicMirrorComponent component, MagicMirrorAddSlotMessage message) { - if (message.Session.AttachedEntity == null || !TryComp(message.Session.AttachedEntity.Value, out var humanoid)) + if (component.Target == null) return; + if (message.Session.AttachedEntity == null) return; + + var doAfter = new AddSlotDoAfterEvent(message); + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Session.AttachedEntity.Value, component.AddSlotTime, doAfter, uid, target: component.Target.Value.Owner, used: uid) { + BreakOnTargetMove = true, + BreakOnDamage = true, + BreakOnHandChange = false, + BreakOnUserMove = true, + BreakOnWeightlessMove = false, + NeedHand = true + }); + _audio.PlayPvs(component.ChangeHairSound, uid); + } + private void OnAddSlotDoAfter(EntityUid uid, MagicMirrorComponent component, AddSlotDoAfterEvent args) + { + if (args.Handled || args.Args.Target == null || args.Cancelled) return; - } + + if (component.Target == null) return; var category = MarkingCategories.Hair; - switch (message.Category) + switch (args.Message.Category) { case MagicMirrorCategory.Hair: category = MarkingCategories.Hair; @@ -133,23 +220,21 @@ private void OnMagicMirrorAddSlot(EntityUid uid, MagicMirrorComponent component, return; } - var marking = _markings.MarkingsByCategoryAndSpecies(category, humanoid.Species).Keys.FirstOrDefault(); + var marking = _markings.MarkingsByCategoryAndSpecies(category, component.Target.Value.Comp.Species).Keys.FirstOrDefault(); if (string.IsNullOrEmpty(marking)) { return; } - _humanoid.AddMarking(message.Session.AttachedEntity.Value, marking, Color.Black); + _humanoid.AddMarking(component.Target.Value.Owner, marking, Color.Black); - UpdateInterface(uid, message.Session.AttachedEntity.Value, message.Session); + UpdateInterface(uid, component.Target.Value.Owner, args.Message.Session); } - private void UpdateInterface(EntityUid uid, EntityUid playerUid, ICommonSession session, HumanoidAppearanceComponent? humanoid = null) + private void UpdateInterface(EntityUid uid, EntityUid playerUid, ICommonSession session) { - if (!Resolve(playerUid, ref humanoid) || session is not { } player) - { - return; - } + if (!TryComp(playerUid, out var humanoid)) return; + if (session is not { } player) return; var hair = humanoid.MarkingSet.TryGetCategory(MarkingCategories.Hair, out var hairMarkings) ? new List(hairMarkings) @@ -171,9 +256,9 @@ private void UpdateInterface(EntityUid uid, EntityUid playerUid, ICommonSession private void AfterUIOpen(EntityUid uid, MagicMirrorComponent component, AfterActivatableUIOpenEvent args) { - var looks = Comp(args.User); - var actor = Comp(args.User); + if (!TryComp(args.User, out var humanoid)) return; + component.Target = new Entity(args.User, humanoid); UpdateInterface(uid, args.User, args.Session); } -} \ No newline at end of file +} diff --git a/Content.Server/Mapping/MappingCommand.cs b/Content.Server/Mapping/MappingCommand.cs index d72a5c4178..08ba0de833 100644 --- a/Content.Server/Mapping/MappingCommand.cs +++ b/Content.Server/Mapping/MappingCommand.cs @@ -3,6 +3,7 @@ using System.Linq; using Content.Server.Administration; +using Content.Server.GameTicking; using Content.Shared.Administration; using Content.Shared.CCVar; using Robust.Server.Player; @@ -111,7 +112,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) // map successfully created. run misc helpful mapping commands if (player.AttachedEntity is { Valid: true } playerEntity && - _entities.GetComponent(playerEntity).EntityPrototype?.ID != "AdminObserver") + _entities.GetComponent(playerEntity).EntityPrototype?.ID != GameTicker.AdminObserverPrototypeName) { shell.ExecuteCommand("aghost"); } diff --git a/Content.Server/Maps/GameMapPoolPrototype.cs b/Content.Server/Maps/GameMapPoolPrototype.cs index 4c439d44a6..7f45314b7a 100644 --- a/Content.Server/Maps/GameMapPoolPrototype.cs +++ b/Content.Server/Maps/GameMapPoolPrototype.cs @@ -8,7 +8,7 @@ namespace Content.Server.Maps; /// Prototype that holds a pool of maps that can be indexed based on the map pool CCVar. /// [Prototype("gameMapPool"), PublicAPI] -public sealed class GameMapPoolPrototype : IPrototype +public sealed partial class GameMapPoolPrototype : IPrototype { /// [IdDataField] diff --git a/Content.Server/Maps/MapMigrationSystem.cs b/Content.Server/Maps/MapMigrationSystem.cs index 83c2abc5e3..62885cf819 100644 --- a/Content.Server/Maps/MapMigrationSystem.cs +++ b/Content.Server/Maps/MapMigrationSystem.cs @@ -21,7 +21,7 @@ public sealed class MapMigrationSystem : EntitySystem [Dependency] private readonly IPrototypeManager _protoMan = default!; [Dependency] private readonly IResourceManager _resMan = default!; - private const string MigrationFile = "/migration.yml"; + private const string MigrationDir = "/Migrations/"; public override void Initialize() { @@ -33,30 +33,46 @@ public override void Initialize() return; // Verify that all of the entries map to valid entity prototypes. - foreach (var node in mappings.Values) + foreach (var mapping in mappings) { - var newId = ((ValueDataNode) node).Value; - if (!string.IsNullOrEmpty(newId) && newId != "null") - DebugTools.Assert(_protoMan.HasIndex(newId), $"{newId} is not an entity prototype."); + foreach (var node in mapping.Values) + { + var newId = ((ValueDataNode) node).Value; + if (!string.IsNullOrEmpty(newId) && newId != "null") + DebugTools.Assert(_protoMan.HasIndex(newId), + $"{newId} is not an entity prototype."); + } } #endif } - private bool TryReadFile([NotNullWhen(true)] out MappingDataNode? mappings) + private bool TryReadFile([NotNullWhen(true)] out List? mappings) { mappings = null; - var path = new ResPath(MigrationFile); - if (!_resMan.TryContentFileRead(path, out var stream)) - return false; - using var reader = new StreamReader(stream, EncodingHelpers.UTF8); - var documents = DataNodeParser.ParseYamlStream(reader).FirstOrDefault(); + var files = _resMan.ContentFindFiles(MigrationDir) + .Where(f => f.ToString().EndsWith(".yml")) + .ToList(); - if (documents == null) + if (files.Count == 0) return false; - mappings = (MappingDataNode) documents.Root; - return true; + foreach (var file in files) + { + if (!_resMan.TryContentFileRead(file, out var stream)) + continue; + + using var reader = new StreamReader(stream, EncodingHelpers.UTF8); + var documents = DataNodeParser.ParseYamlStream(reader).FirstOrDefault(); + + if (documents == null) + continue; + + mappings = mappings ?? new List(); + mappings.Add((MappingDataNode)documents.Root); + } + + return mappings != null && mappings.Count > 0; } private void OnBeforeReadEvent(BeforeEntityReadEvent ev) @@ -64,15 +80,18 @@ private void OnBeforeReadEvent(BeforeEntityReadEvent ev) if (!TryReadFile(out var mappings)) return; - foreach (var (key, value) in mappings) + foreach (var mapping in mappings) { - if (key is not ValueDataNode keyNode || value is not ValueDataNode valueNode) - continue; + foreach (var (key, value) in mapping) + { + if (key is not ValueDataNode keyNode || value is not ValueDataNode valueNode) + continue; - if (string.IsNullOrWhiteSpace(valueNode.Value) || valueNode.Value == "null") - ev.DeletedPrototypes.Add(keyNode.Value); - else - ev.RenamedPrototypes.Add(keyNode.Value, valueNode.Value); + if (string.IsNullOrWhiteSpace(valueNode.Value) || valueNode.Value == "null") + ev.DeletedPrototypes.Add(keyNode.Value); + else + ev.RenamedPrototypes.Add(keyNode.Value, valueNode.Value); + } } } } diff --git a/Content.Server/Maps/PlanetCommand.cs b/Content.Server/Maps/PlanetCommand.cs index 8bfd2b9de7..718b4a64d9 100644 --- a/Content.Server/Maps/PlanetCommand.cs +++ b/Content.Server/Maps/PlanetCommand.cs @@ -27,9 +27,8 @@ public sealed class PlanetCommand : IConsoleCommand [Dependency] private readonly IEntityManager _entManager = default!; [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IPrototypeManager _protoManager = default!; - [Dependency] private readonly IRobustRandom _random = default!; - public string Command => $"planet"; + public string Command => "planet"; public string Description => Loc.GetString("cmd-planet-desc"); public string Help => Loc.GetString("cmd-planet-help", ("command", Command)); public void Execute(IConsoleShell shell, string argStr, string[] args) @@ -60,46 +59,10 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - var mapUid = _mapManager.GetMapEntityId(mapId); - MetaDataComponent? metadata = null; - - var biome = _entManager.EnsureComponent(mapUid); var biomeSystem = _entManager.System(); - biomeSystem.SetSeed(biome, _random.Next()); - biomeSystem.SetTemplate(biome, biomeTemplate); - _entManager.Dirty(biome); - - var gravity = _entManager.EnsureComponent(mapUid); - gravity.Enabled = true; - gravity.Inherent = true; - _entManager.Dirty(gravity, metadata); - - // Day lighting - // Daylight: #D8B059 - // Midday: #E6CB8B - // Moonlight: #2b3143 - // Lava: #A34931 - - var light = _entManager.EnsureComponent(mapUid); - light.AmbientLightColor = Color.FromHex("#D8B059"); - _entManager.Dirty(light, metadata); - - // Atmos - var atmos = _entManager.EnsureComponent(mapUid); - - var moles = new float[Atmospherics.AdjustedNumberOfGases]; - moles[(int) Gas.Oxygen] = 21.824779f; - moles[(int) Gas.Nitrogen] = 82.10312f; - - var mixture = new GasMixture(2500) - { - Temperature = 293.15f, - Moles = moles, - }; - - _entManager.System().SetMapAtmosphere(mapUid, false, mixture, atmos); + var mapUid = _mapManager.GetMapEntityId(mapId); + biomeSystem.EnsurePlanet(mapUid, biomeTemplate); - _entManager.EnsureComponent(mapUid); shell.WriteLine(Loc.GetString("cmd-planet-success", ("mapId", mapId))); } diff --git a/Content.Server/Maps/ResaveCommand.cs b/Content.Server/Maps/ResaveCommand.cs index 1b2e48294f..a966070d3e 100644 --- a/Content.Server/Maps/ResaveCommand.cs +++ b/Content.Server/Maps/ResaveCommand.cs @@ -46,10 +46,9 @@ public override void Execute(IConsoleShell shell, string argStr, string[] args) { loader.SaveMap(mapId, fn.ToString()); } - else + else if (mapXform.ChildEnumerator.MoveNext(out var child)) { - - loader.Save(mapXform.ChildEntities.First(), fn.ToString()); + loader.Save(child, fn.ToString()); } _mapManager.DeleteMap(mapId); diff --git a/Content.Server/MassMedia/Systems/NewsSystem.cs b/Content.Server/MassMedia/Systems/NewsSystem.cs index 93663474ac..30de1d21d9 100644 --- a/Content.Server/MassMedia/Systems/NewsSystem.cs +++ b/Content.Server/MassMedia/Systems/NewsSystem.cs @@ -17,6 +17,19 @@ using Content.Shared.MassMedia.Systems; using Content.Shared.PDA; using Robust.Server.GameObjects; +using System.Linq; +using Content.Server.Administration.Logs; +using Content.Server.CartridgeLoader.Cartridges; +using Content.Shared.CartridgeLoader; +using Content.Shared.CartridgeLoader.Cartridges; +using Content.Server.CartridgeLoader; +using Content.Server.GameTicking; +using Robust.Shared.Timing; +using Content.Server.Popups; +using Content.Server.StationRecords.Systems; +using Content.Shared.Database; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Player; using Robust.Shared.Timing; @@ -207,7 +220,8 @@ private void TryNotify() while (query.MoveNext(out var uid, out var comp, out var ringer, out var cont)) { - if (!_cartridgeLoaderSystem.HasProgram(uid, false, comp, cont)) + if (!_cartridgeLoaderSystem.TryGetProgram(uid, out _, out var newsReadCartridgeComponent, false, comp, cont) + || !newsReadCartridgeComponent.NotificationOn) continue; _ringer.RingerPlayRingtone(uid, ringer); diff --git a/Content.Server/Materials/MaterialStorageSystem.cs b/Content.Server/Materials/MaterialStorageSystem.cs index b3626774c8..5d581220e2 100644 --- a/Content.Server/Materials/MaterialStorageSystem.cs +++ b/Content.Server/Materials/MaterialStorageSystem.cs @@ -4,10 +4,12 @@ using Content.Shared.Popups; using Content.Shared.Stacks; using Content.Server.Power.Components; -using Content.Server.Construction.Components; using Content.Server.Stack; +using Content.Shared.Construction; using Content.Shared.Database; using JetBrains.Annotations; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Prototypes; diff --git a/Content.Server/Mech/Components/MechAirComponent.cs b/Content.Server/Mech/Components/MechAirComponent.cs index 7e989f6481..c533b3d834 100644 --- a/Content.Server/Mech/Components/MechAirComponent.cs +++ b/Content.Server/Mech/Components/MechAirComponent.cs @@ -6,7 +6,8 @@ namespace Content.Server.Mech.Components; public sealed partial class MechAirComponent : Component { //TODO: this doesn't support a tank implant for mechs or anything like that - [ViewVariables(VVAccess.ReadWrite)] + [DataField, ViewVariables(VVAccess.ReadWrite)] public GasMixture Air = new (GasMixVolume); + public const float GasMixVolume = 70f; } diff --git a/Content.Server/Mech/Components/MechAirFilterComponent.cs b/Content.Server/Mech/Components/MechAirFilterComponent.cs deleted file mode 100644 index d35b4af471..0000000000 --- a/Content.Server/Mech/Components/MechAirFilterComponent.cs +++ /dev/null @@ -1,22 +0,0 @@ -using Content.Shared.Atmos; - -namespace Content.Server.Mech.Components; - -/// -/// This is basically a reverse scrubber for MechAir -/// -[RegisterComponent] -public sealed partial class MechAirFilterComponent : Component -{ - /// - /// Gases that will be filtered out of internal air - /// - [DataField("gases", required: true)] - public HashSet Gases = new(); - - /// - /// Target volume to transfer every second. - /// - [DataField("transferRate")] - public float TransferRate = MechAirComponent.GasMixVolume * 0.1f; -} diff --git a/Content.Server/Mech/Components/MechAirIntakeComponent.cs b/Content.Server/Mech/Components/MechAirIntakeComponent.cs deleted file mode 100644 index 7b3a84c66b..0000000000 --- a/Content.Server/Mech/Components/MechAirIntakeComponent.cs +++ /dev/null @@ -1,28 +0,0 @@ -using Content.Shared.Atmos; - -namespace Content.Server.Mech.Components; - -/// -/// This is basically a siphon vent for mech but not using pump vent component because MechAir bad -/// -[RegisterComponent] -public sealed partial class MechAirIntakeComponent : Component -{ - /// - /// Target pressure change for a single atmos tick - /// - [DataField("targetPressureChange")] - public float TargetPressureChange = 5f; - - /// - /// How strong the intake pump is, it will be able to replenish air from lower pressure areas. - /// - [DataField("pumpPower")] - public float PumpPower = 2f; - - /// - /// Pressure to intake gases up to, maintains MechAir pressure. - /// - [DataField("pressure")] - public float Pressure = Atmospherics.OneAtmosphere; -} diff --git a/Content.Server/Mech/Equipment/Components/MechGrabberComponent.cs b/Content.Server/Mech/Equipment/Components/MechGrabberComponent.cs index 1424f880f3..df94bc94ee 100644 --- a/Content.Server/Mech/Equipment/Components/MechGrabberComponent.cs +++ b/Content.Server/Mech/Equipment/Components/MechGrabberComponent.cs @@ -43,7 +43,7 @@ public sealed partial class MechGrabberComponent : Component [DataField("grabSound")] public SoundSpecifier GrabSound = new SoundPathSpecifier("/Audio/Mecha/sound_mecha_hydraulic.ogg"); - public IPlayingAudioStream? AudioStream; + public EntityUid? AudioStream; [ViewVariables(VVAccess.ReadWrite)] public Container ItemContainer = default!; diff --git a/Content.Server/Mech/Equipment/EntitySystems/MechGrabberSystem.cs b/Content.Server/Mech/Equipment/EntitySystems/MechGrabberSystem.cs index 499f833ac8..8b7a4c6204 100644 --- a/Content.Server/Mech/Equipment/EntitySystems/MechGrabberSystem.cs +++ b/Content.Server/Mech/Equipment/EntitySystems/MechGrabberSystem.cs @@ -10,6 +10,8 @@ using Content.Shared.Mobs.Components; using Content.Shared.Wall; using Robust.Server.GameObjects; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Map; using Robust.Shared.Physics; @@ -149,7 +151,7 @@ private void OnInteract(EntityUid uid, MechGrabberComponent component, InteractN return; args.Handled = true; - component.AudioStream = _audio.PlayPvs(component.GrabSound, uid); + component.AudioStream = _audio.PlayPvs(component.GrabSound, uid).Value.Entity; _doAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, args.User, component.GrabDelay, new GrabberDoAfterEvent(), uid, target: target, used: uid) { BreakOnTargetMove = true, @@ -161,7 +163,7 @@ private void OnMechGrab(EntityUid uid, MechGrabberComponent component, DoAfterEv { if (args.Cancelled) { - component.AudioStream?.Stop(); + component.AudioStream = _audio.Stop(component.AudioStream); return; } diff --git a/Content.Server/Mech/Systems/MechSystem.Filtering.cs b/Content.Server/Mech/Systems/MechSystem.Filtering.cs deleted file mode 100644 index 3de151ba70..0000000000 --- a/Content.Server/Mech/Systems/MechSystem.Filtering.cs +++ /dev/null @@ -1,80 +0,0 @@ -using Content.Server.Atmos; -using Content.Server.Atmos.Piping.Components; -using Content.Server.Mech.Components; -using Content.Shared.Atmos; -using Content.Shared.Mech.Components; - -namespace Content.Server.Mech.Systems; - -// TODO: this could be reused for gasmask or something if MechAir wasnt a thing -public sealed partial class MechSystem -{ - [Dependency] private readonly SharedTransformSystem _transform = default!; - - private void InitializeFiltering() - { - SubscribeLocalEvent(OnIntakeUpdate); - SubscribeLocalEvent(OnFilterUpdate); - } - - private void OnIntakeUpdate(EntityUid uid, MechAirIntakeComponent intake, AtmosDeviceUpdateEvent args) - { - if (!TryComp(uid, out var mech) || !mech.Airtight || !TryComp(uid, out var mechAir)) - return; - - // if the mech is filled there is nothing to do - if (mechAir.Air.Pressure >= intake.Pressure) - return; - - var environment = _atmosphere.GetContainingMixture(uid, true, true); - // nothing to intake from - if (environment == null) - return; - - // absolute maximum pressure change - var pressureDelta = args.dt * intake.TargetPressureChange; - pressureDelta = MathF.Min(pressureDelta, intake.Pressure - mechAir.Air.Pressure); - if (pressureDelta <= 0) - return; - - // how many moles to transfer to change internal pressure by pressureDelta - // ignores temperature difference because lazy - var transferMoles = pressureDelta * mechAir.Air.Volume / (environment.Temperature * Atmospherics.R); - _atmosphere.Merge(mechAir.Air, environment.Remove(transferMoles)); - } - - private void OnFilterUpdate(EntityUid uid, MechAirFilterComponent filter, AtmosDeviceUpdateEvent args) - { - if (!TryComp(uid, out var mech) || !mech.Airtight || !TryComp(uid, out var mechAir)) - return; - - var ratio = MathF.Min(1f, args.dt * filter.TransferRate / mechAir.Air.Volume); - var removed = mechAir.Air.RemoveRatio(ratio); - // nothing left to remove from the mech - if (MathHelper.CloseToPercent(removed.TotalMoles, 0f)) - return; - - - var coordinates = Transform(uid).MapPosition; - GasMixture? destination = null; - if (_map.TryFindGridAt(coordinates, out var gridId, out var grid)) - { - var tile = _mapSystem.GetTileRef(gridId, grid, coordinates); - destination = _atmosphere.GetTileMixture(tile.GridUid, null, tile.GridIndices, true); - } - - if (destination != null) - { - _atmosphere.ScrubInto(removed, destination, filter.Gases); - } - else - { - // filtering into space/planet so just discard them - foreach (var gas in filter.Gases) - { - removed.SetMoles(gas, 0f); - } - } - _atmosphere.Merge(mechAir.Air, removed); - } -} diff --git a/Content.Server/Mech/Systems/MechSystem.cs b/Content.Server/Mech/Systems/MechSystem.cs index a0ca94197e..780dbac82b 100644 --- a/Content.Server/Mech/Systems/MechSystem.cs +++ b/Content.Server/Mech/Systems/MechSystem.cs @@ -47,8 +47,6 @@ public override void Initialize() _sawmill = Logger.GetSawmill("mech"); - InitializeFiltering(); - SubscribeLocalEvent(OnInteractUsing); SubscribeLocalEvent(OnInsertBattery); SubscribeLocalEvent(OnMapInit); @@ -69,6 +67,8 @@ public override void Initialize() SubscribeLocalEvent(OnExhale); SubscribeLocalEvent(OnExpose); + SubscribeLocalEvent(OnGetFilterAir); + #region Equipment UI message relays SubscribeLocalEvent(ReceiveEquipmentUiMesssages); SubscribeLocalEvent(ReceiveEquipmentUiMesssages); @@ -423,5 +423,17 @@ private void OnExpose(EntityUid uid, MechPilotComponent component, ref AtmosExpo args.Handled = true; } + + private void OnGetFilterAir(EntityUid uid, MechAirComponent comp, ref GetFilterAirEvent args) + { + if (args.Air != null) + return; + + // only airtight mechs get internal air + if (!TryComp(uid, out var mech) || !mech.Airtight) + return; + + args.Air = comp.Air; + } #endregion } diff --git a/Content.Server/Medical/BiomassReclaimer/BiomassReclaimerSystem.cs b/Content.Server/Medical/BiomassReclaimer/BiomassReclaimerSystem.cs index f16d13c23c..20ac9420aa 100644 --- a/Content.Server/Medical/BiomassReclaimer/BiomassReclaimerSystem.cs +++ b/Content.Server/Medical/BiomassReclaimer/BiomassReclaimerSystem.cs @@ -24,6 +24,8 @@ using Content.Shared.Popups; using Content.Shared.Throwing; using Robust.Server.Player; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; using Robust.Shared.Physics.Components; using Robust.Shared.Random; diff --git a/Content.Server/Medical/CrewMonitoring/CrewMonitoringConsoleComponent.cs b/Content.Server/Medical/CrewMonitoring/CrewMonitoringConsoleComponent.cs index 7aaa2ef368..c2d7124194 100644 --- a/Content.Server/Medical/CrewMonitoring/CrewMonitoringConsoleComponent.cs +++ b/Content.Server/Medical/CrewMonitoring/CrewMonitoringConsoleComponent.cs @@ -1,33 +1,19 @@ using Content.Shared.Medical.SuitSensor; -namespace Content.Server.Medical.CrewMonitoring -{ - [RegisterComponent] - [Access(typeof(CrewMonitoringConsoleSystem))] - public sealed partial class CrewMonitoringConsoleComponent : Component - { - /// - /// List of all currently connected sensors to this console. - /// - public Dictionary ConnectedSensors = new(); - - /// - /// After what time sensor consider to be lost. - /// - [DataField("sensorTimeout"), ViewVariables(VVAccess.ReadWrite)] - public float SensorTimeout = 10f; +namespace Content.Server.Medical.CrewMonitoring; - /// - /// Whether the direction arrows in the monitor UI should snap the nearest diagonal or cardinal direction, or whether they should point exactly towards the target. - /// - [DataField("snap"), ViewVariables(VVAccess.ReadWrite)] - public bool Snap = true; +[RegisterComponent] +[Access(typeof(CrewMonitoringConsoleSystem))] +public sealed partial class CrewMonitoringConsoleComponent : Component +{ + /// + /// List of all currently connected sensors to this console. + /// + public Dictionary ConnectedSensors = new(); - /// - /// Minimum distance before the monitor direction indicator stops pointing towards the target and instead - /// shows an icon indicating that the target is "here". Does not affect the displayed coordinates. - /// - [DataField("precision"), ViewVariables(VVAccess.ReadWrite)] - public float Precision = 10f; - } + /// + /// After what time sensor consider to be lost. + /// + [DataField("sensorTimeout"), ViewVariables(VVAccess.ReadWrite)] + public float SensorTimeout = 10f; } diff --git a/Content.Server/Medical/CrewMonitoring/CrewMonitoringConsoleSystem.cs b/Content.Server/Medical/CrewMonitoring/CrewMonitoringConsoleSystem.cs index ed65070436..ff02b9cbdf 100644 --- a/Content.Server/Medical/CrewMonitoring/CrewMonitoringConsoleSystem.cs +++ b/Content.Server/Medical/CrewMonitoring/CrewMonitoringConsoleSystem.cs @@ -4,62 +4,71 @@ using Content.Server.PowerCell; using Content.Shared.Medical.CrewMonitoring; using Content.Shared.Medical.SuitSensor; +using Content.Shared.Pinpointer; using Robust.Server.GameObjects; -namespace Content.Server.Medical.CrewMonitoring +namespace Content.Server.Medical.CrewMonitoring; + +public sealed class CrewMonitoringConsoleSystem : EntitySystem { - public sealed class CrewMonitoringConsoleSystem : EntitySystem + [Dependency] private readonly PowerCellSystem _cell = default!; + [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnRemove); + SubscribeLocalEvent(OnPacketReceived); + SubscribeLocalEvent(OnUIOpened); + } + + private void OnRemove(EntityUid uid, CrewMonitoringConsoleComponent component, ComponentRemove args) + { + component.ConnectedSensors.Clear(); + } + + private void OnPacketReceived(EntityUid uid, CrewMonitoringConsoleComponent component, DeviceNetworkPacketEvent args) { - [Dependency] private readonly PowerCellSystem _cell = default!; - [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnRemove); - SubscribeLocalEvent(OnPacketReceived); - SubscribeLocalEvent(OnUIOpened); - } - - private void OnRemove(EntityUid uid, CrewMonitoringConsoleComponent component, ComponentRemove args) - { - component.ConnectedSensors.Clear(); - } - - private void OnPacketReceived(EntityUid uid, CrewMonitoringConsoleComponent component, DeviceNetworkPacketEvent args) - { - var payload = args.Data; - // check command - if (!payload.TryGetValue(DeviceNetworkConstants.Command, out string? command)) - return; - if (command != DeviceNetworkConstants.CmdUpdatedState) - return; - if (!payload.TryGetValue(SuitSensorConstants.NET_STATUS_COLLECTION, out Dictionary? sensorStatus)) - return; - - component.ConnectedSensors = sensorStatus; - UpdateUserInterface(uid, component); - } - - private void OnUIOpened(EntityUid uid, CrewMonitoringConsoleComponent component, BoundUIOpenedEvent args) - { - if (!_cell.TryUseActivatableCharge(uid)) - return; - - UpdateUserInterface(uid, component); - } - - private void UpdateUserInterface(EntityUid uid, CrewMonitoringConsoleComponent? component = null) - { - if (!Resolve(uid, ref component)) - return; - - if (!_uiSystem.TryGetUi(uid, CrewMonitoringUIKey.Key, out var bui)) - return; - - // update all sensors info - var allSensors = component.ConnectedSensors.Values.ToList(); - _uiSystem.SetUiState(bui, new CrewMonitoringState(allSensors, component.Snap, component.Precision)); - } + var payload = args.Data; + + // Check command + if (!payload.TryGetValue(DeviceNetworkConstants.Command, out string? command)) + return; + + if (command != DeviceNetworkConstants.CmdUpdatedState) + return; + + if (!payload.TryGetValue(SuitSensorConstants.NET_STATUS_COLLECTION, out Dictionary? sensorStatus)) + return; + + component.ConnectedSensors = sensorStatus; + UpdateUserInterface(uid, component); + } + + private void OnUIOpened(EntityUid uid, CrewMonitoringConsoleComponent component, BoundUIOpenedEvent args) + { + if (!_cell.TryUseActivatableCharge(uid)) + return; + + UpdateUserInterface(uid, component); + } + + private void UpdateUserInterface(EntityUid uid, CrewMonitoringConsoleComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; + + if (!_uiSystem.TryGetUi(uid, CrewMonitoringUIKey.Key, out var bui)) + return; + + // The grid must have a NavMapComponent to visualize the map in the UI + var xform = Transform(uid); + + if (xform.GridUid != null) + EnsureComp(xform.GridUid.Value); + + // Update all sensors info + var allSensors = component.ConnectedSensors.Values.ToList(); + _uiSystem.SetUiState(bui, new CrewMonitoringState(allSensors)); } } diff --git a/Content.Server/Medical/CryoPodSystem.cs b/Content.Server/Medical/CryoPodSystem.cs index 82f7b9cb0a..b083c480f6 100644 --- a/Content.Server/Medical/CryoPodSystem.cs +++ b/Content.Server/Medical/CryoPodSystem.cs @@ -236,7 +236,7 @@ private void OnPowerChanged(EntityUid uid, CryoPodComponent component, ref Power #region Atmos handler - private void OnCryoPodUpdateAtmosphere(EntityUid uid, CryoPodComponent cryoPod, AtmosDeviceUpdateEvent args) + private void OnCryoPodUpdateAtmosphere(EntityUid uid, CryoPodComponent cryoPod, ref AtmosDeviceUpdateEvent args) { if (!TryComp(uid, out NodeContainerComponent? nodeContainer)) return; diff --git a/Content.Server/Medical/DefibrillatorSystem.cs b/Content.Server/Medical/DefibrillatorSystem.cs index d041f8ee9d..12391d724f 100644 --- a/Content.Server/Medical/DefibrillatorSystem.cs +++ b/Content.Server/Medical/DefibrillatorSystem.cs @@ -1,4 +1,4 @@ -using Content.Server.Atmos.Miasma; +using Content.Server.Atmos.Rotting; using Content.Server.Chat.Systems; using Content.Server.DoAfter; using Content.Server.Electrocution; @@ -16,8 +16,10 @@ using Content.Shared.Mobs; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; +using Content.Shared.PowerCell; using Content.Shared.Timing; using Content.Shared.Toggleable; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; using Robust.Shared.Timing; @@ -75,7 +77,8 @@ private void OnUseInHand(EntityUid uid, DefibrillatorComponent component, UseInH private void OnPowerCellSlotEmpty(EntityUid uid, DefibrillatorComponent component, ref PowerCellSlotEmptyEvent args) { - TryDisable(uid, component); + if (!TerminatingOrDeleted(uid)) + TryDisable(uid, component); } private void OnAfterInteract(EntityUid uid, DefibrillatorComponent component, AfterInteractEvent args) @@ -137,6 +140,7 @@ public bool TryDisable(EntityUid uid, DefibrillatorComponent? component = null) component.Enabled = false; _appearance.SetData(uid, ToggleVisuals.Toggled, false); + _audio.PlayPvs(component.PowerOffSound, uid); return true; } @@ -217,11 +221,9 @@ public void Zap(EntityUid uid, EntityUid target, EntityUid user, DefibrillatorCo } else { - _mobThreshold.SetAllowRevives(target, true, thresholds); if (_mobState.IsDead(target, mob)) _damageable.TryChangeDamage(target, component.ZapHeal, true, origin: uid); _mobState.ChangeMobState(target, MobState.Critical, mob, uid); - _mobThreshold.SetAllowRevives(target, false, thresholds); if (_mind.TryGetMind(target, out var mindId, out var mind) && mind.Session is { } playerSession) diff --git a/Content.Server/Medical/HealingSystem.cs b/Content.Server/Medical/HealingSystem.cs index 2e04e1b03c..57f66f2378 100644 --- a/Content.Server/Medical/HealingSystem.cs +++ b/Content.Server/Medical/HealingSystem.cs @@ -16,6 +16,8 @@ using Content.Shared.Mobs.Systems; using Content.Shared.Stacks; using Content.Server.Popups; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Random; namespace Content.Server.Medical; diff --git a/Content.Server/Medical/HealthAnalyzerSystem.cs b/Content.Server/Medical/HealthAnalyzerSystem.cs index cde361ec74..fe3944b21e 100644 --- a/Content.Server/Medical/HealthAnalyzerSystem.cs +++ b/Content.Server/Medical/HealthAnalyzerSystem.cs @@ -8,6 +8,8 @@ using Robust.Server.GameObjects; using Content.Server.Temperature.Components; using Content.Server.Body.Components; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; namespace Content.Server.Medical diff --git a/Content.Server/Medical/SuitSensors/SuitSensorComponent.cs b/Content.Server/Medical/SuitSensors/SuitSensorComponent.cs index 294be8c7e1..32b81e2921 100644 --- a/Content.Server/Medical/SuitSensors/SuitSensorComponent.cs +++ b/Content.Server/Medical/SuitSensors/SuitSensorComponent.cs @@ -1,76 +1,75 @@ using Content.Shared.Medical.SuitSensor; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; -namespace Content.Server.Medical.SuitSensors +namespace Content.Server.Medical.SuitSensors; + +/// +/// Tracking device, embedded in almost all uniforms and jumpsuits. +/// If enabled, will report to crew monitoring console owners position and status. +/// +[RegisterComponent] +[Access(typeof(SuitSensorSystem))] +public sealed partial class SuitSensorComponent : Component { /// - /// Tracking device, embedded in almost all uniforms and jumpsuits. - /// If enabled, will report to crew monitoring console owners position and status. + /// Choose a random sensor mode when item is spawned. /// - [RegisterComponent] - [Access(typeof(SuitSensorSystem))] - public sealed partial class SuitSensorComponent : Component - { - /// - /// Choose a random sensor mode when item is spawned. - /// - [DataField("randomMode")] - public bool RandomMode = true; + [DataField("randomMode")] + public bool RandomMode = true; - /// - /// If true user can't change suit sensor mode - /// - [DataField("controlsLocked")] - public bool ControlsLocked = false; + /// + /// If true user can't change suit sensor mode + /// + [DataField("controlsLocked")] + public bool ControlsLocked = false; - /// - /// Current sensor mode. Can be switched by user verbs. - /// - [DataField("mode")] - public SuitSensorMode Mode = SuitSensorMode.SensorOff; + /// + /// Current sensor mode. Can be switched by user verbs. + /// + [DataField("mode")] + public SuitSensorMode Mode = SuitSensorMode.SensorOff; - /// - /// Activate sensor if user wear it in this slot. - /// - [DataField("activationSlot")] - public string ActivationSlot = "jumpsuit"; + /// + /// Activate sensor if user wear it in this slot. + /// + [DataField("activationSlot")] + public string ActivationSlot = "jumpsuit"; - /// - /// Activate sensor if user has this in a sensor-compatible container. - /// - [DataField("activationContainer")] - public string? ActivationContainer; + /// + /// Activate sensor if user has this in a sensor-compatible container. + /// + [DataField("activationContainer")] + public string? ActivationContainer; - /// - /// How often does sensor update its owners status (in seconds). Limited by the system update rate. - /// - [DataField("updateRate")] - public TimeSpan UpdateRate = TimeSpan.FromSeconds(2f); + /// + /// How often does sensor update its owners status (in seconds). Limited by the system update rate. + /// + [DataField("updateRate")] + public TimeSpan UpdateRate = TimeSpan.FromSeconds(2f); - /// - /// Current user that wears suit sensor. Null if nobody wearing it. - /// - [ViewVariables] - public EntityUid? User = null; + /// + /// Current user that wears suit sensor. Null if nobody wearing it. + /// + [ViewVariables] + public EntityUid? User = null; - /// - /// Next time when sensor updated owners status - /// - [DataField("nextUpdate", customTypeSerializer:typeof(TimeOffsetSerializer))] - public TimeSpan NextUpdate = TimeSpan.Zero; + /// + /// Next time when sensor updated owners status + /// + [DataField("nextUpdate", customTypeSerializer:typeof(TimeOffsetSerializer))] + public TimeSpan NextUpdate = TimeSpan.Zero; - /// - /// The station this suit sensor belongs to. If it's null the suit didn't spawn on a station and the sensor doesn't work. - /// - [DataField("station")] - public EntityUid? StationId = null; + /// + /// The station this suit sensor belongs to. If it's null the suit didn't spawn on a station and the sensor doesn't work. + /// + [DataField("station")] + public EntityUid? StationId = null; - /// - /// The server the suit sensor sends it state to. - /// The suit sensor will try connecting to a new server when no server is connected. - /// It does this by calling the servers entity system for performance reasons. - /// - [DataField("server")] - public string? ConnectedServer = null; - } + /// + /// The server the suit sensor sends it state to. + /// The suit sensor will try connecting to a new server when no server is connected. + /// It does this by calling the servers entity system for performance reasons. + /// + [DataField("server")] + public string? ConnectedServer = null; } diff --git a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs index f382d520ff..bb662a15ea 100644 --- a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs +++ b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs @@ -18,399 +18,409 @@ using Robust.Shared.Random; using Robust.Shared.Timing; -namespace Content.Server.Medical.SuitSensors +namespace Content.Server.Medical.SuitSensors; + +public sealed class SuitSensorSystem : EntitySystem { - public sealed class SuitSensorSystem : EntitySystem + [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly CrewMonitoringServerSystem _monitoringServerSystem = default!; + [Dependency] private readonly DeviceNetworkSystem _deviceNetworkSystem = default!; + [Dependency] private readonly IdCardSystem _idCardSystem = default!; + [Dependency] private readonly MobStateSystem _mobStateSystem = default!; + [Dependency] private readonly PopupSystem _popupSystem = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly StationSystem _stationSystem = default!; + + public override void Initialize() { - [Dependency] private readonly IGameTiming _gameTiming = default!; - [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly CrewMonitoringServerSystem _monitoringServerSystem = default!; - [Dependency] private readonly DeviceNetworkSystem _deviceNetworkSystem = default!; - [Dependency] private readonly IdCardSystem _idCardSystem = default!; - [Dependency] private readonly MobStateSystem _mobStateSystem = default!; - [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly SharedTransformSystem _transform = default!; - [Dependency] private readonly StationSystem _stationSystem = default!; - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnPlayerSpawn); - SubscribeLocalEvent(OnMapInit); - SubscribeLocalEvent(OnUnpaused); - SubscribeLocalEvent(OnEquipped); - SubscribeLocalEvent(OnUnequipped); - SubscribeLocalEvent(OnExamine); - SubscribeLocalEvent>(OnVerb); - SubscribeLocalEvent(OnInsert); - SubscribeLocalEvent(OnRemove); - } - - private void OnUnpaused(EntityUid uid, SuitSensorComponent component, ref EntityUnpausedEvent args) - { - component.NextUpdate += args.PausedTime; - } - - public override void Update(float frameTime) - { - base.Update(frameTime); - - var curTime = _gameTiming.CurTime; - var sensors = EntityManager.EntityQueryEnumerator(); + base.Initialize(); + SubscribeLocalEvent(OnPlayerSpawn); + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnUnpaused); + SubscribeLocalEvent(OnEquipped); + SubscribeLocalEvent(OnUnequipped); + SubscribeLocalEvent(OnExamine); + SubscribeLocalEvent>(OnVerb); + SubscribeLocalEvent(OnInsert); + SubscribeLocalEvent(OnRemove); + } - while (sensors.MoveNext(out var uid, out var sensor, out var device)) - { - if (device.TransmitFrequency is null) - continue; + private void OnUnpaused(EntityUid uid, SuitSensorComponent component, ref EntityUnpausedEvent args) + { + component.NextUpdate += args.PausedTime; + } - // check if sensor is ready to update - if (curTime < sensor.NextUpdate) - continue; + public override void Update(float frameTime) + { + base.Update(frameTime); - if (!CheckSensorAssignedStation(uid, sensor)) - continue; + var curTime = _gameTiming.CurTime; + var sensors = EntityManager.EntityQueryEnumerator(); - // TODO: This would cause imprecision at different tick rates. - sensor.NextUpdate = curTime + sensor.UpdateRate; + while (sensors.MoveNext(out var uid, out var sensor, out var device)) + { + if (device.TransmitFrequency is null) + continue; - // get sensor status - var status = GetSensorState(uid, sensor); - if (status == null) - continue; + // check if sensor is ready to update + if (curTime < sensor.NextUpdate) + continue; - //Retrieve active server address if the sensor isn't connected to a server - if (sensor.ConnectedServer == null) - { - if (!_monitoringServerSystem.TryGetActiveServerAddress(sensor.StationId!.Value, out var address)) - continue; + if (!CheckSensorAssignedStation(uid, sensor)) + continue; - sensor.ConnectedServer = address; - } + // TODO: This would cause imprecision at different tick rates. + sensor.NextUpdate = curTime + sensor.UpdateRate; - // Send it to the connected server - var payload = SuitSensorToPacket(status); + // get sensor status + var status = GetSensorState(uid, sensor); + if (status == null) + continue; - // Clear the connected server if its address isn't on the network - if (!_deviceNetworkSystem.IsAddressPresent(device.DeviceNetId, sensor.ConnectedServer)) - { - sensor.ConnectedServer = null; + //Retrieve active server address if the sensor isn't connected to a server + if (sensor.ConnectedServer == null) + { + if (!_monitoringServerSystem.TryGetActiveServerAddress(sensor.StationId!.Value, out var address)) continue; - } - _deviceNetworkSystem.QueuePacket(uid, sensor.ConnectedServer, payload, device: device); + sensor.ConnectedServer = address; } - } - /// - /// Checks whether the sensor is assigned to a station or not - /// and tries to assign an unassigned sensor to a station if it's currently on a grid - /// - /// True if the sensor is assigned to a station or assigning it was successful. False otherwise. - private bool CheckSensorAssignedStation(EntityUid uid, SuitSensorComponent sensor) - { - if (!sensor.StationId.HasValue && Transform(uid).GridUid == null) - return false; + // Send it to the connected server + var payload = SuitSensorToPacket(status); - sensor.StationId = _stationSystem.GetOwningStation(uid); - return sensor.StationId.HasValue; - } + // Clear the connected server if its address isn't on the network + if (!_deviceNetworkSystem.IsAddressPresent(device.DeviceNetId, sensor.ConnectedServer)) + { + sensor.ConnectedServer = null; + continue; + } - private void OnPlayerSpawn(PlayerSpawnCompleteEvent ev) - { - // If the player spawns in arrivals then the grid underneath them may not be appropriate. - // in which case we'll just use the station spawn code told us they are attached to and set all of their - // sensors. - var sensorQuery = GetEntityQuery(); - var xformQuery = GetEntityQuery(); - RecursiveSensor(ev.Mob, ev.Station, sensorQuery, xformQuery); + _deviceNetworkSystem.QueuePacket(uid, sensor.ConnectedServer, payload, device: device); } + } - private void RecursiveSensor(EntityUid uid, EntityUid stationUid, EntityQuery sensorQuery, EntityQuery xformQuery) - { - var xform = xformQuery.GetComponent(uid); - var enumerator = xform.ChildEnumerator; + /// + /// Checks whether the sensor is assigned to a station or not + /// and tries to assign an unassigned sensor to a station if it's currently on a grid + /// + /// True if the sensor is assigned to a station or assigning it was successful. False otherwise. + private bool CheckSensorAssignedStation(EntityUid uid, SuitSensorComponent sensor) + { + if (!sensor.StationId.HasValue && Transform(uid).GridUid == null) + return false; - while (enumerator.MoveNext(out var child)) - { - if (sensorQuery.TryGetComponent(child, out var sensor)) - { - sensor.StationId = stationUid; - } + sensor.StationId = _stationSystem.GetOwningStation(uid); + return sensor.StationId.HasValue; + } - RecursiveSensor(child.Value, stationUid, sensorQuery, xformQuery); - } - } + private void OnPlayerSpawn(PlayerSpawnCompleteEvent ev) + { + // If the player spawns in arrivals then the grid underneath them may not be appropriate. + // in which case we'll just use the station spawn code told us they are attached to and set all of their + // sensors. + var sensorQuery = GetEntityQuery(); + var xformQuery = GetEntityQuery(); + RecursiveSensor(ev.Mob, ev.Station, sensorQuery, xformQuery); + } - private void OnMapInit(EntityUid uid, SuitSensorComponent component, MapInitEvent args) - { - // Fallback - component.StationId ??= _stationSystem.GetOwningStation(uid); + private void RecursiveSensor(EntityUid uid, EntityUid stationUid, EntityQuery sensorQuery, EntityQuery xformQuery) + { + var xform = xformQuery.GetComponent(uid); + var enumerator = xform.ChildEnumerator; - // generate random mode - if (component.RandomMode) + while (enumerator.MoveNext(out var child)) + { + if (sensorQuery.TryGetComponent(child, out var sensor)) { - //make the sensor mode favor higher levels, except coords. - var modesDist = new[] - { - SuitSensorMode.SensorOff, - SuitSensorMode.SensorBinary, SuitSensorMode.SensorBinary, - SuitSensorMode.SensorVitals, SuitSensorMode.SensorVitals, SuitSensorMode.SensorVitals, - SuitSensorMode.SensorCords, SuitSensorMode.SensorCords - }; - component.Mode = _random.Pick(modesDist); + sensor.StationId = stationUid; } + + RecursiveSensor(child, stationUid, sensorQuery, xformQuery); } + } - private void OnEquipped(EntityUid uid, SuitSensorComponent component, GotEquippedEvent args) - { - if (args.Slot != component.ActivationSlot) - return; + private void OnMapInit(EntityUid uid, SuitSensorComponent component, MapInitEvent args) + { + // Fallback + component.StationId ??= _stationSystem.GetOwningStation(uid); - component.User = args.Equipee; + // generate random mode + if (component.RandomMode) + { + //make the sensor mode favor higher levels, except coords. + var modesDist = new[] + { + SuitSensorMode.SensorOff, + SuitSensorMode.SensorBinary, SuitSensorMode.SensorBinary, + SuitSensorMode.SensorVitals, SuitSensorMode.SensorVitals, SuitSensorMode.SensorVitals, + SuitSensorMode.SensorCords, SuitSensorMode.SensorCords + }; + component.Mode = _random.Pick(modesDist); } + } - private void OnUnequipped(EntityUid uid, SuitSensorComponent component, GotUnequippedEvent args) - { - if (args.Slot != component.ActivationSlot) - return; + private void OnEquipped(EntityUid uid, SuitSensorComponent component, GotEquippedEvent args) + { + if (args.Slot != component.ActivationSlot) + return; - component.User = null; - } + component.User = args.Equipee; + } - private void OnExamine(EntityUid uid, SuitSensorComponent component, ExaminedEvent args) - { - if (!args.IsInDetailsRange) - return; + private void OnUnequipped(EntityUid uid, SuitSensorComponent component, GotUnequippedEvent args) + { + if (args.Slot != component.ActivationSlot) + return; - string msg; - switch (component.Mode) - { - case SuitSensorMode.SensorOff: - msg = "suit-sensor-examine-off"; - break; - case SuitSensorMode.SensorBinary: - msg = "suit-sensor-examine-binary"; - break; - case SuitSensorMode.SensorVitals: - msg = "suit-sensor-examine-vitals"; - break; - case SuitSensorMode.SensorCords: - msg = "suit-sensor-examine-cords"; - break; - default: - return; - } + component.User = null; + } - args.PushMarkup(Loc.GetString(msg)); - } + private void OnExamine(EntityUid uid, SuitSensorComponent component, ExaminedEvent args) + { + if (!args.IsInDetailsRange) + return; - private void OnVerb(EntityUid uid, SuitSensorComponent component, GetVerbsEvent args) + string msg; + switch (component.Mode) { - // check if user can change sensor - if (component.ControlsLocked) + case SuitSensorMode.SensorOff: + msg = "suit-sensor-examine-off"; + break; + case SuitSensorMode.SensorBinary: + msg = "suit-sensor-examine-binary"; + break; + case SuitSensorMode.SensorVitals: + msg = "suit-sensor-examine-vitals"; + break; + case SuitSensorMode.SensorCords: + msg = "suit-sensor-examine-cords"; + break; + default: return; + } - // standard interaction checks - if (!args.CanAccess || !args.CanInteract || args.Hands == null) - return; + args.PushMarkup(Loc.GetString(msg)); + } - args.Verbs.UnionWith(new[] - { - CreateVerb(uid, component, args.User, SuitSensorMode.SensorOff), - CreateVerb(uid, component, args.User, SuitSensorMode.SensorBinary), - CreateVerb(uid, component, args.User, SuitSensorMode.SensorVitals), - CreateVerb(uid, component, args.User, SuitSensorMode.SensorCords) - }); - } + private void OnVerb(EntityUid uid, SuitSensorComponent component, GetVerbsEvent args) + { + // check if user can change sensor + if (component.ControlsLocked) + return; - private void OnInsert(EntityUid uid, SuitSensorComponent component, EntGotInsertedIntoContainerMessage args) + // standard interaction checks + if (!args.CanAccess || !args.CanInteract || args.Hands == null) + return; + + args.Verbs.UnionWith(new[] { - if (args.Container.ID != component.ActivationContainer) - return; + CreateVerb(uid, component, args.User, SuitSensorMode.SensorOff), + CreateVerb(uid, component, args.User, SuitSensorMode.SensorBinary), + CreateVerb(uid, component, args.User, SuitSensorMode.SensorVitals), + CreateVerb(uid, component, args.User, SuitSensorMode.SensorCords) + }); + } - component.User = args.Container.Owner; - } + private void OnInsert(EntityUid uid, SuitSensorComponent component, EntGotInsertedIntoContainerMessage args) + { + if (args.Container.ID != component.ActivationContainer) + return; - private void OnRemove(EntityUid uid, SuitSensorComponent component, EntGotRemovedFromContainerMessage args) - { - if (args.Container.ID != component.ActivationContainer) - return; + component.User = args.Container.Owner; + } - component.User = null; - } + private void OnRemove(EntityUid uid, SuitSensorComponent component, EntGotRemovedFromContainerMessage args) + { + if (args.Container.ID != component.ActivationContainer) + return; - private Verb CreateVerb(EntityUid uid, SuitSensorComponent component, EntityUid userUid, SuitSensorMode mode) - { - return new Verb() - { - Text = GetModeName(mode), - Disabled = component.Mode == mode, - Priority = -(int) mode, // sort them in descending order - Category = VerbCategory.SetSensor, - Act = () => SetSensor(uid, mode, userUid, component) - }; - } + component.User = null; + } - private string GetModeName(SuitSensorMode mode) + private Verb CreateVerb(EntityUid uid, SuitSensorComponent component, EntityUid userUid, SuitSensorMode mode) + { + return new Verb() { - string name; - switch (mode) - { - case SuitSensorMode.SensorOff: - name = "suit-sensor-mode-off"; - break; - case SuitSensorMode.SensorBinary: - name = "suit-sensor-mode-binary"; - break; - case SuitSensorMode.SensorVitals: - name = "suit-sensor-mode-vitals"; - break; - case SuitSensorMode.SensorCords: - name = "suit-sensor-mode-cords"; - break; - default: - return ""; - } + Text = GetModeName(mode), + Disabled = component.Mode == mode, + Priority = -(int) mode, // sort them in descending order + Category = VerbCategory.SetSensor, + Act = () => SetSensor(uid, mode, userUid, component) + }; + } - return Loc.GetString(name); + private string GetModeName(SuitSensorMode mode) + { + string name; + switch (mode) + { + case SuitSensorMode.SensorOff: + name = "suit-sensor-mode-off"; + break; + case SuitSensorMode.SensorBinary: + name = "suit-sensor-mode-binary"; + break; + case SuitSensorMode.SensorVitals: + name = "suit-sensor-mode-vitals"; + break; + case SuitSensorMode.SensorCords: + name = "suit-sensor-mode-cords"; + break; + default: + return ""; } - public void SetSensor(EntityUid uid, SuitSensorMode mode, EntityUid? userUid = null, - SuitSensorComponent? component = null) - { - if (!Resolve(uid, ref component)) - return; + return Loc.GetString(name); + } - component.Mode = mode; + public void SetSensor(EntityUid uid, SuitSensorMode mode, EntityUid? userUid = null, + SuitSensorComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; - if (userUid != null) - { - var msg = Loc.GetString("suit-sensor-mode-state", ("mode", GetModeName(mode))); - _popupSystem.PopupEntity(msg, uid, userUid.Value); - } - } + component.Mode = mode; - public SuitSensorStatus? GetSensorState(EntityUid uid, SuitSensorComponent? sensor = null, TransformComponent? transform = null) + if (userUid != null) { - if (!Resolve(uid, ref sensor, ref transform)) - return null; + var msg = Loc.GetString("suit-sensor-mode-state", ("mode", GetModeName(mode))); + _popupSystem.PopupEntity(msg, uid, userUid.Value); + } + } - // check if sensor is enabled and worn by user - if (sensor.Mode == SuitSensorMode.SensorOff || sensor.User == null || transform.GridUid == null) - return null; + public SuitSensorStatus? GetSensorState(EntityUid uid, SuitSensorComponent? sensor = null, TransformComponent? transform = null) + { + if (!Resolve(uid, ref sensor, ref transform)) + return null; - // try to get mobs id from ID slot - var userName = Loc.GetString("suit-sensor-component-unknown-name"); - var userJob = Loc.GetString("suit-sensor-component-unknown-job"); - if (_idCardSystem.TryFindIdCard(sensor.User.Value, out var card)) - { - if (card.Comp.FullName != null) - userName = card.Comp.FullName; - if (card.Comp.JobTitle != null) - userJob = card.Comp.JobTitle; - } + // check if sensor is enabled and worn by user + if (sensor.Mode == SuitSensorMode.SensorOff || sensor.User == null || transform.GridUid == null) + return null; - // get health mob state - var isAlive = false; - if (EntityManager.TryGetComponent(sensor.User.Value, out MobStateComponent? mobState)) - isAlive = !_mobStateSystem.IsDead(sensor.User.Value, mobState); + // try to get mobs id from ID slot + var userName = Loc.GetString("suit-sensor-component-unknown-name"); + var userJob = Loc.GetString("suit-sensor-component-unknown-job"); + var userJobIcon = "JobIconNoId"; + var userJobDepartments = new List(); - // get mob total damage - var totalDamage = 0; - if (TryComp(sensor.User.Value, out var damageable)) - totalDamage = damageable.TotalDamage.Int(); + if (_idCardSystem.TryFindIdCard(sensor.User.Value, out var card)) + { + if (card.Comp.FullName != null) + userName = card.Comp.FullName; + if (card.Comp.JobTitle != null) + userJob = card.Comp.JobTitle; + if (card.Comp.JobIcon != null) + userJobIcon = card.Comp.JobIcon; + + foreach (var department in card.Comp.JobDepartments) + userJobDepartments.Add(Loc.GetString(department)); + } - // finally, form suit sensor status - var status = new SuitSensorStatus(GetNetEntity(uid), userName, userJob); - switch (sensor.Mode) - { - case SuitSensorMode.SensorBinary: - status.IsAlive = isAlive; - break; - case SuitSensorMode.SensorVitals: - status.IsAlive = isAlive; - status.TotalDamage = totalDamage; - break; - case SuitSensorMode.SensorCords: - status.IsAlive = isAlive; - status.TotalDamage = totalDamage; - EntityCoordinates coordinates; - var xformQuery = GetEntityQuery(); - - if (transform.GridUid != null) - { - coordinates = new EntityCoordinates(transform.GridUid.Value, - _transform.GetInvWorldMatrix(xformQuery.GetComponent(transform.GridUid.Value), xformQuery) - .Transform(_transform.GetWorldPosition(transform, xformQuery))); - } - else if (transform.MapUid != null) - { - coordinates = new EntityCoordinates(transform.MapUid.Value, - _transform.GetWorldPosition(transform, xformQuery)); - } - else - { - coordinates = EntityCoordinates.Invalid; - } - - status.Coordinates = GetNetCoordinates(coordinates); - break; - } + // get health mob state + var isAlive = false; + if (EntityManager.TryGetComponent(sensor.User.Value, out MobStateComponent? mobState)) + isAlive = !_mobStateSystem.IsDead(sensor.User.Value, mobState); - return status; - } + // get mob total damage + var totalDamage = 0; + if (TryComp(sensor.User.Value, out var damageable)) + totalDamage = damageable.TotalDamage.Int(); - /// - /// Serialize create a device network package from the suit sensors status. - /// - public NetworkPayload SuitSensorToPacket(SuitSensorStatus status) + // finally, form suit sensor status + var status = new SuitSensorStatus(GetNetEntity(uid), userName, userJob, userJobIcon, userJobDepartments); + switch (sensor.Mode) { - var payload = new NetworkPayload() - { - [DeviceNetworkConstants.Command] = DeviceNetworkConstants.CmdUpdatedState, - [SuitSensorConstants.NET_NAME] = status.Name, - [SuitSensorConstants.NET_JOB] = status.Job, - [SuitSensorConstants.NET_IS_ALIVE] = status.IsAlive, - [SuitSensorConstants.NET_SUIT_SENSOR_UID] = status.SuitSensorUid, - }; + case SuitSensorMode.SensorBinary: + status.IsAlive = isAlive; + break; + case SuitSensorMode.SensorVitals: + status.IsAlive = isAlive; + status.TotalDamage = totalDamage; + break; + case SuitSensorMode.SensorCords: + status.IsAlive = isAlive; + status.TotalDamage = totalDamage; + EntityCoordinates coordinates; + var xformQuery = GetEntityQuery(); + + if (transform.GridUid != null) + { + coordinates = new EntityCoordinates(transform.GridUid.Value, + _transform.GetInvWorldMatrix(xformQuery.GetComponent(transform.GridUid.Value), xformQuery) + .Transform(_transform.GetWorldPosition(transform, xformQuery))); + } + else if (transform.MapUid != null) + { + coordinates = new EntityCoordinates(transform.MapUid.Value, + _transform.GetWorldPosition(transform, xformQuery)); + } + else + { + coordinates = EntityCoordinates.Invalid; + } - if (status.TotalDamage != null) - payload.Add(SuitSensorConstants.NET_TOTAL_DAMAGE, status.TotalDamage); - if (status.Coordinates != null) - payload.Add(SuitSensorConstants.NET_COORDINATES, status.Coordinates); + status.Coordinates = GetNetCoordinates(coordinates); + break; + } + return status; + } - return payload; - } + /// + /// Serialize create a device network package from the suit sensors status. + /// + public NetworkPayload SuitSensorToPacket(SuitSensorStatus status) + { + var payload = new NetworkPayload() + { + [DeviceNetworkConstants.Command] = DeviceNetworkConstants.CmdUpdatedState, + [SuitSensorConstants.NET_NAME] = status.Name, + [SuitSensorConstants.NET_JOB] = status.Job, + [SuitSensorConstants.NET_JOB_ICON] = status.JobIcon, + [SuitSensorConstants.NET_JOB_DEPARTMENTS] = status.JobDepartments, + [SuitSensorConstants.NET_IS_ALIVE] = status.IsAlive, + [SuitSensorConstants.NET_SUIT_SENSOR_UID] = status.SuitSensorUid, + }; + + if (status.TotalDamage != null) + payload.Add(SuitSensorConstants.NET_TOTAL_DAMAGE, status.TotalDamage); + if (status.Coordinates != null) + payload.Add(SuitSensorConstants.NET_COORDINATES, status.Coordinates); + + return payload; + } - /// - /// Try to create the suit sensors status from the device network message - /// - public SuitSensorStatus? PacketToSuitSensor(NetworkPayload payload) + /// + /// Try to create the suit sensors status from the device network message + /// + public SuitSensorStatus? PacketToSuitSensor(NetworkPayload payload) + { + // check command + if (!payload.TryGetValue(DeviceNetworkConstants.Command, out string? command)) + return null; + if (command != DeviceNetworkConstants.CmdUpdatedState) + return null; + + // check name, job and alive + if (!payload.TryGetValue(SuitSensorConstants.NET_NAME, out string? name)) return null; + if (!payload.TryGetValue(SuitSensorConstants.NET_JOB, out string? job)) return null; + if (!payload.TryGetValue(SuitSensorConstants.NET_JOB_ICON, out string? jobIcon)) return null; + if (!payload.TryGetValue(SuitSensorConstants.NET_JOB_DEPARTMENTS, out List? jobDepartments)) return null; + if (!payload.TryGetValue(SuitSensorConstants.NET_IS_ALIVE, out bool? isAlive)) return null; + if (!payload.TryGetValue(SuitSensorConstants.NET_SUIT_SENSOR_UID, out NetEntity suitSensorUid)) return null; + + // try get total damage and cords (optionals) + payload.TryGetValue(SuitSensorConstants.NET_TOTAL_DAMAGE, out int? totalDamage); + payload.TryGetValue(SuitSensorConstants.NET_COORDINATES, out NetCoordinates? coords); + + var status = new SuitSensorStatus(suitSensorUid, name, job, jobIcon, jobDepartments) { - // check command - if (!payload.TryGetValue(DeviceNetworkConstants.Command, out string? command)) - return null; - if (command != DeviceNetworkConstants.CmdUpdatedState) - return null; - - // check name, job and alive - if (!payload.TryGetValue(SuitSensorConstants.NET_NAME, out string? name)) return null; - if (!payload.TryGetValue(SuitSensorConstants.NET_JOB, out string? job)) return null; - if (!payload.TryGetValue(SuitSensorConstants.NET_IS_ALIVE, out bool? isAlive)) return null; - if (!payload.TryGetValue(SuitSensorConstants.NET_SUIT_SENSOR_UID, out NetEntity suitSensorUid)) return null; - - // try get total damage and cords (optionals) - payload.TryGetValue(SuitSensorConstants.NET_TOTAL_DAMAGE, out int? totalDamage); - payload.TryGetValue(SuitSensorConstants.NET_COORDINATES, out NetCoordinates? coords); - - var status = new SuitSensorStatus(suitSensorUid, name, job) - { - IsAlive = isAlive.Value, - TotalDamage = totalDamage, - Coordinates = coords, - }; - return status; - } + IsAlive = isAlive.Value, + TotalDamage = totalDamage, + Coordinates = coords, + }; + return status; } } diff --git a/Content.Server/Medical/VomitSystem.cs b/Content.Server/Medical/VomitSystem.cs index d754bfd05e..fedb6d2357 100644 --- a/Content.Server/Medical/VomitSystem.cs +++ b/Content.Server/Medical/VomitSystem.cs @@ -10,6 +10,7 @@ using Content.Shared.Nutrition.Components; using Content.Shared.Nutrition.EntitySystems; using Content.Shared.StatusEffect; +using Robust.Server.Audio; using Robust.Server.GameObjects; using Robust.Shared.Audio; using Robust.Shared.Prototypes; @@ -27,6 +28,7 @@ public sealed class VomitSystem : EntitySystem [Dependency] private readonly SolutionContainerSystem _solutionContainer = default!; [Dependency] private readonly StunSystem _stun = default!; [Dependency] private readonly ThirstSystem _thirst = default!; + [Dependency] private readonly ForensicsSystem _forensics = default!; /// /// Make an entity vomit, if they have a stomach. @@ -84,9 +86,7 @@ public void Vomit(EntityUid uid, float thirstAdded = -40f, float hungerAdded = - if (_puddle.TrySpillAt(uid, solution, out var puddle, false)) { - var forensics = EnsureComp(puddle); - if (TryComp(uid, out var dna)) - forensics.DNAs.Add(dna.DNA); + _forensics.TransferDna(puddle, uid, false); } // Force sound to play as spill doesn't work if solution is empty. diff --git a/Content.Server/Mind/MindSystem.cs b/Content.Server/Mind/MindSystem.cs index f23e9b6407..3039cad25a 100644 --- a/Content.Server/Mind/MindSystem.cs +++ b/Content.Server/Mind/MindSystem.cs @@ -7,10 +7,8 @@ using Content.Shared.Mind; using Content.Shared.Mind.Components; using Content.Shared.Players; -using Robust.Server.GameObjects; using Robust.Server.GameStates; using Robust.Server.Player; -using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Network; using Robust.Shared.Player; @@ -21,10 +19,8 @@ namespace Content.Server.Mind; public sealed class MindSystem : SharedMindSystem { - [Dependency] private readonly ActorSystem _actor = default!; [Dependency] private readonly GameTicker _gameTicker = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; - [Dependency] private readonly IMapManager _maps = default!; [Dependency] private readonly IPlayerManager _players = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly SharedGhostSystem _ghosts = default!; @@ -44,7 +40,7 @@ private void OnMindShutdown(EntityUid uid, MindComponent mind, ComponentShutdown if (mind.UserId is {} user) { UserMinds.Remove(user); - if (_players.GetPlayerData(user).ContentData() is { } oldData) + if (_players.TryGetPlayerData(user, out var data) && data.ContentData() is { } oldData) oldData.Mind = null; mind.UserId = null; } @@ -176,7 +172,7 @@ public override void Visit(EntityUid mindId, EntityUid entity, MindComponent? mi } if (GetSession(mind) is { } session) - _actor.Attach(entity, session); + _players.SetAttachedEntity(session, entity); mind.VisitingEntity = entity; @@ -203,7 +199,7 @@ public override void UnVisit(EntityUid mindId, MindComponent? mind = null) var owned = mind.OwnedEntity; if (GetSession(mind) is { } session) - _actor.Attach(owned, session); + _players.SetAttachedEntity(session, owned); if (owned.HasValue) { @@ -254,7 +250,7 @@ public override void TransferTo(EntityUid mindId, EntityUid? entity, bool ghostC ? _gameTicker.GetObserverSpawnPoint().ToMap(EntityManager, _transform) : Transform(mind.OwnedEntity.Value).MapPosition; - entity = Spawn("MobObserver", position); + entity = Spawn(GameTicker.ObserverPrototypeName, position); component = EnsureComp(entity.Value); var ghostComponent = Comp(entity.Value); _ghosts.SetCanReturnToBody(ghostComponent, false); @@ -292,7 +288,7 @@ public override void TransferTo(EntityUid mindId, EntityUid? entity, bool ghostC var session = GetSession(mind); if (session != null && !alreadyAttached && mind.VisitingEntity == null) { - _actor.Attach(entity, session, true); + _players.SetAttachedEntity(session, entity, true); DebugTools.Assert(session.AttachedEntity == entity, $"Failed to attach entity."); Log.Info($"Session {session.Name} transferred to entity {entity}."); } @@ -324,7 +320,8 @@ public override void SetUserId(EntityUid mindId, NetUserId? userId, MindComponen return; Dirty(mindId, mind); - _pvsOverride.ClearOverride(mindId); + var netMind = GetNetEntity(mindId); + _pvsOverride.ClearOverride(netMind); if (userId != null && !_players.TryGetPlayerData(userId.Value, out _)) { Log.Error($"Attempted to set mind user to invalid value {userId}"); @@ -333,7 +330,7 @@ public override void SetUserId(EntityUid mindId, NetUserId? userId, MindComponen if (mind.Session != null) { - _actor.Attach(null, GetSession(mind)!); + _players.SetAttachedEntity(GetSession(mind), null); mind.Session = null; } @@ -366,8 +363,8 @@ public override void SetUserId(EntityUid mindId, NetUserId? userId, MindComponen if (_players.TryGetSessionById(userId.Value, out var ret)) { mind.Session = ret; - _pvsOverride.AddSessionOverride(mindId, ret); - _actor.Attach(mind.CurrentEntity, ret); + _pvsOverride.AddSessionOverride(netMind, ret); + _players.SetAttachedEntity(ret, mind.CurrentEntity); } // session may be null, but user data may still exist for disconnected players. diff --git a/Content.Server/Mobs/CritMobActionsSystem.cs b/Content.Server/Mobs/CritMobActionsSystem.cs index 0f6a6fc9b0..8dd8274d10 100644 --- a/Content.Server/Mobs/CritMobActionsSystem.cs +++ b/Content.Server/Mobs/CritMobActionsSystem.cs @@ -75,7 +75,7 @@ private void OnLastWords(EntityUid uid, MobStateActionsComponent component, Crit } lastWords += "..."; - _chat.TrySendInGameICMessage(uid, lastWords, InGameICChatType.Whisper, ChatTransmitRange.Normal, ignoreActionBlocker: true); + _chat.TrySendInGameICMessage(uid, lastWords, InGameICChatType.Whisper, ChatTransmitRange.Normal, checkRadioPrefix: false, ignoreActionBlocker: true); _host.ExecuteCommand(actor.PlayerSession, "ghost"); }); diff --git a/Content.Server/Morgue/CrematoriumSystem.cs b/Content.Server/Morgue/CrematoriumSystem.cs index 8d05d0abd1..7f3c7aa1e9 100644 --- a/Content.Server/Morgue/CrematoriumSystem.cs +++ b/Content.Server/Morgue/CrematoriumSystem.cs @@ -14,6 +14,8 @@ using Content.Shared.Storage.Components; using Content.Shared.Verbs; using Robust.Server.GameObjects; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; namespace Content.Server.Morgue; diff --git a/Content.Server/Morgue/MorgueSystem.cs b/Content.Server/Morgue/MorgueSystem.cs index 91fb0ab9f1..b05c4414bc 100644 --- a/Content.Server/Morgue/MorgueSystem.cs +++ b/Content.Server/Morgue/MorgueSystem.cs @@ -3,6 +3,9 @@ using Content.Shared.Examine; using Content.Shared.Morgue; using Content.Shared.Morgue.Components; +using Robust.Server.GameObjects; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; namespace Content.Server.Morgue; diff --git a/Content.Server/Movement/StressTestMovementSystem.cs b/Content.Server/Movement/StressTestMovementSystem.cs index 632af9cecf..81ea6840e3 100644 --- a/Content.Server/Movement/StressTestMovementSystem.cs +++ b/Content.Server/Movement/StressTestMovementSystem.cs @@ -26,6 +26,9 @@ public override void Update(float frameTime) while (query.MoveNext(out var uid, out var stressTest, out var transform)) { + if (!transform.ParentUid.IsValid()) + continue; + stressTest.Progress += frameTime; if (stressTest.Progress > 1) diff --git a/Content.Server/Movement/Systems/BoundarySystem.cs b/Content.Server/Movement/Systems/BoundarySystem.cs new file mode 100644 index 0000000000..a798f1052d --- /dev/null +++ b/Content.Server/Movement/Systems/BoundarySystem.cs @@ -0,0 +1,32 @@ +using Content.Shared.Movement.Components; +using Robust.Shared.Physics.Events; + +namespace Content.Server.Movement.Systems; + +public sealed class BoundarySystem : EntitySystem +{ + /* + * The real reason this even exists is because with out mover controller it's really easy to clip out of bounds on chain shapes. + */ + + [Dependency] private readonly SharedTransformSystem _xform = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnBoundaryCollide); + } + + private void OnBoundaryCollide(Entity ent, ref StartCollideEvent args) + { + var center = _xform.GetWorldPosition(ent.Owner); + var otherXform = Transform(args.OtherEntity); + var collisionPoint = _xform.GetWorldPosition(otherXform); + var offset = collisionPoint - center; + offset = offset.Normalized() * (offset.Length() - ent.Comp.Offset); + // If for whatever reason you want to yeet them to the other side. + // offset = new Angle(MathF.PI).RotateVec(offset); + + _xform.SetWorldPosition(otherXform, center + offset); + } +} diff --git a/Content.Server/NPC/Components/NpcFactionPrototype.cs b/Content.Server/NPC/Components/NpcFactionPrototype.cs index dba51c6a60..fe5774710a 100644 --- a/Content.Server/NPC/Components/NpcFactionPrototype.cs +++ b/Content.Server/NPC/Components/NpcFactionPrototype.cs @@ -7,7 +7,7 @@ namespace Content.Server.NPC.Components /// Contains data about this faction's relations with other factions. /// [Prototype("npcFaction")] - public sealed class NpcFactionPrototype : IPrototype + public sealed partial class NpcFactionPrototype : IPrototype { [ViewVariables] [IdDataField] diff --git a/Content.Server/NPC/HTN/HTNCompoundPrototype.cs b/Content.Server/NPC/HTN/HTNCompoundPrototype.cs index 82d6f029a7..29cfb96f97 100644 --- a/Content.Server/NPC/HTN/HTNCompoundPrototype.cs +++ b/Content.Server/NPC/HTN/HTNCompoundPrototype.cs @@ -6,7 +6,7 @@ namespace Content.Server.NPC.HTN; /// Represents a network of multiple tasks. This gets expanded out to its relevant nodes. /// [Prototype("htnCompound")] -public sealed class HTNCompoundPrototype : IPrototype +public sealed partial class HTNCompoundPrototype : IPrototype { [IdDataField] public string ID { get; } = string.Empty; diff --git a/Content.Server/NPC/HTN/HTNSystem.cs b/Content.Server/NPC/HTN/HTNSystem.cs index a7689fbabe..2ba91d5be6 100644 --- a/Content.Server/NPC/HTN/HTNSystem.cs +++ b/Content.Server/NPC/HTN/HTNSystem.cs @@ -10,7 +10,6 @@ using Content.Shared.Mobs; using Content.Shared.NPC; using JetBrains.Annotations; -using Robust.Server.GameObjects; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Utility; @@ -38,8 +37,7 @@ public override void Initialize() SubscribeLocalEvent(_npc.OnPlayerNPCDetach); SubscribeLocalEvent(OnHTNShutdown); SubscribeNetworkEvent(OnHTNMessage); - - _prototypeManager.PrototypesReloaded += OnPrototypeLoad; + SubscribeLocalEvent(OnPrototypeLoad); OnLoad(); } @@ -57,12 +55,6 @@ private void OnHTNMessage(RequestHTNMessage msg, EntitySessionEventArgs args) _subscribers.Remove(args.SenderSession); } - public override void Shutdown() - { - base.Shutdown(); - _prototypeManager.PrototypesReloaded -= OnPrototypeLoad; - } - private void OnLoad() { // Clear all NPCs in case they're hanging onto stale tasks diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/SpeakOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/SpeakOperator.cs index 7fb2f91b94..cf07831959 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/SpeakOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/SpeakOperator.cs @@ -9,6 +9,12 @@ public sealed partial class SpeakOperator : HTNOperator [DataField("speech", required: true)] public string Speech = string.Empty; + /// + /// Whether to hide message from chat window and logs. + /// + [DataField] + public bool Hidden; + public override void Initialize(IEntitySystemManager sysManager) { base.Initialize(sysManager); @@ -19,7 +25,7 @@ public override HTNOperatorStatus Update(NPCBlackboard blackboard, float frameTi { var speaker = blackboard.GetValue(NPCBlackboard.Owner); - _chat.TrySendInGameICMessage(speaker, Loc.GetString(Speech), InGameICChatType.Speak, false); + _chat.TrySendInGameICMessage(speaker, Loc.GetString(Speech), InGameICChatType.Speak, hideChat: Hidden, hideLog: Hidden); return base.Update(blackboard, frameTime); } } diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/MedibotInjectOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/MedibotInjectOperator.cs index 311fd23468..7b66cff1f8 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/MedibotInjectOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/MedibotInjectOperator.cs @@ -2,17 +2,23 @@ using Content.Server.NPC.Components; using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Damage; +using Content.Shared.Emag.Components; using Content.Shared.Interaction; +using Content.Shared.Mobs.Components; using Content.Shared.Popups; using Content.Shared.Silicons.Bots; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Player; namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators.Specific; public sealed partial class MedibotInjectOperator : HTNOperator { [Dependency] private readonly IEntityManager _entMan = default!; - private SharedAudioSystem _audio = default!; private ChatSystem _chat = default!; + private MedibotSystem _medibot = default!; + private SharedAudioSystem _audio = default!; private SharedInteractionSystem _interaction = default!; private SharedPopupSystem _popup = default!; private SolutionContainerSystem _solution = default!; @@ -26,8 +32,9 @@ public sealed partial class MedibotInjectOperator : HTNOperator public override void Initialize(IEntitySystemManager sysManager) { base.Initialize(sysManager); - _audio = sysManager.GetEntitySystem(); _chat = sysManager.GetEntitySystem(); + _medibot = sysManager.GetEntitySystem(); + _audio = sysManager.GetEntitySystem(); _interaction = sysManager.GetEntitySystem(); _popup = sysManager.GetEntitySystem(); _solution = sysManager.GetEntitySystem(); @@ -62,29 +69,22 @@ public override HTNOperatorStatus Update(NPCBlackboard blackboard, float frameTi var total = damage.TotalDamage; - if (total == 0) + // always inject healthy patients when emagged + if (total == 0 && !_entMan.HasComponent(owner)) + return HTNOperatorStatus.Failed; + + if (!_entMan.TryGetComponent(target, out var mobState)) + return HTNOperatorStatus.Failed; + + var state = mobState.CurrentState; + if (!_medibot.TryGetTreatment(botComp, mobState.CurrentState, out var treatment) || !treatment.IsValid(total)) return HTNOperatorStatus.Failed; - if (total >= MedibotComponent.EmergencyMedDamageThreshold) - { - _entMan.EnsureComponent(target); - _solution.TryAddReagent(target, injectable, botComp.EmergencyMed, botComp.EmergencyMedAmount, out var accepted); - _popup.PopupEntity(Loc.GetString("hypospray-component-feel-prick-message"), target, target); - _audio.PlayPvs(botComp.InjectSound, target); - _chat.TrySendInGameICMessage(owner, Loc.GetString("medibot-finish-inject"), InGameICChatType.Speak, ChatTransmitRange.GhostRangeLimit); - return HTNOperatorStatus.Finished; - } - - if (total >= MedibotComponent.StandardMedDamageThreshold && total <= MedibotComponent.StandardMedDamageThresholdStop) - { - _entMan.EnsureComponent(target); - _solution.TryAddReagent(target, injectable, botComp.StandardMed, botComp.StandardMedAmount, out var accepted); - _popup.PopupEntity(Loc.GetString("hypospray-component-feel-prick-message"), target, target); - _audio.PlayPvs(botComp.InjectSound, target); - _chat.TrySendInGameICMessage(owner, Loc.GetString("medibot-finish-inject"), InGameICChatType.Speak, ChatTransmitRange.GhostRangeLimit); - return HTNOperatorStatus.Finished; - } - - return HTNOperatorStatus.Failed; + _entMan.EnsureComponent(target); + _solution.TryAddReagent(target, injectable, treatment.Reagent, treatment.Quantity, out _); + _popup.PopupEntity(Loc.GetString("hypospray-component-feel-prick-message"), target, target); + _audio.PlayPvs(botComp.InjectSound, target); + _chat.TrySendInGameICMessage(owner, Loc.GetString("medibot-finish-inject"), InGameICChatType.Speak, hideChat: true, hideLog: true); + return HTNOperatorStatus.Finished; } } diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/PickNearbyInjectableOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/PickNearbyInjectableOperator.cs index dccd9f3fa4..a71091ad97 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/PickNearbyInjectableOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/PickNearbyInjectableOperator.cs @@ -15,6 +15,7 @@ public sealed partial class PickNearbyInjectableOperator : HTNOperator { [Dependency] private readonly IEntityManager _entManager = default!; private EntityLookupSystem _lookup = default!; + private MedibotSystem _medibot = default!; private PathfindingSystem _pathfinding = default!; [DataField("rangeKey")] public string RangeKey = NPCBlackboard.MedibotInjectRange; @@ -35,6 +36,7 @@ public override void Initialize(IEntitySystemManager sysManager) { base.Initialize(sysManager); _lookup = sysManager.GetEntitySystem(); + _medibot = sysManager.GetEntitySystem(); _pathfinding = sysManager.GetEntitySystem(); } @@ -46,37 +48,46 @@ public override void Initialize(IEntitySystemManager sysManager) if (!blackboard.TryGetValue(RangeKey, out var range, _entManager)) return (false, null); + if (!_entManager.TryGetComponent(owner, out var medibot)) + return (false, null); + var damageQuery = _entManager.GetEntityQuery(); var injectQuery = _entManager.GetEntityQuery(); var recentlyInjected = _entManager.GetEntityQuery(); var mobState = _entManager.GetEntityQuery(); + var emaggedQuery = _entManager.GetEntityQuery(); foreach (var entity in _lookup.GetEntitiesInRange(owner, range)) { - if (mobState.HasComponent(entity) && + if (mobState.TryGetComponent(entity, out var state) && injectQuery.HasComponent(entity) && damageQuery.TryGetComponent(entity, out var damage) && !recentlyInjected.HasComponent(entity)) - //Only go towards a target if the bot can actually help them or if the medibot is emagged - if (damage.TotalDamage > MedibotComponent.StandardMedDamageThreshold && - damage.TotalDamage <= MedibotComponent.StandardMedDamageThresholdStop || - damage.TotalDamage > MedibotComponent.EmergencyMedDamageThreshold || - _entManager.HasComponent(owner)) + { + // no treating dead bodies + if (!_medibot.TryGetTreatment(medibot, state.CurrentState, out var treatment)) + continue; + + // Only go towards a target if the bot can actually help them or if the medibot is emagged + // note: this and the actual injecting don't check for specific damage types so for example, + // radiation damage will trigger injection but the tricordrazine won't heal it. + if (!emaggedQuery.HasComponent(entity) && !treatment.IsValid(damage.TotalDamage)) + continue; + + //Needed to make sure it doesn't sometimes stop right outside it's interaction range + var pathRange = SharedInteractionSystem.InteractionRange - 1f; + var path = await _pathfinding.GetPath(owner, entity, pathRange, cancelToken); + + if (path.Result == PathResult.NoPath) + continue; + + return (true, new Dictionary() { - //Needed to make sure it doesn't sometimes stop right outside it's interaction range - var pathRange = SharedInteractionSystem.InteractionRange - 1f; - var path = await _pathfinding.GetPath(owner, entity, pathRange, cancelToken); - - if (path.Result == PathResult.NoPath) - continue; - - return (true, new Dictionary() - { - {TargetKey, entity}, - {TargetMoveKey, _entManager.GetComponent(entity).Coordinates}, - {NPCBlackboard.PathfindKey, path}, - }); - } + {TargetKey, entity}, + {TargetMoveKey, _entManager.GetComponent(entity).Coordinates}, + {NPCBlackboard.PathfindKey, path}, + }); + } } return (false, null); diff --git a/Content.Server/NPC/Pathfinding/PathfindingSystem.Grid.cs b/Content.Server/NPC/Pathfinding/PathfindingSystem.Grid.cs index c430c71958..b3db87e896 100644 --- a/Content.Server/NPC/Pathfinding/PathfindingSystem.Grid.cs +++ b/Content.Server/NPC/Pathfinding/PathfindingSystem.Grid.cs @@ -50,7 +50,7 @@ private void InitializeGrid() SubscribeLocalEvent(OnCollisionLayerChange); SubscribeLocalEvent(OnBodyTypeChange); SubscribeLocalEvent(OnTileChange); - SubscribeLocalEvent(OnMoveEvent); + _transform.OnGlobalMoveEvent += OnMoveEvent; } private void OnTileChange(ref TileChangedEvent ev) diff --git a/Content.Server/NPC/Pathfinding/PathfindingSystem.cs b/Content.Server/NPC/Pathfinding/PathfindingSystem.cs index 1b1f6f5476..1830b35bb6 100644 --- a/Content.Server/NPC/Pathfinding/PathfindingSystem.cs +++ b/Content.Server/NPC/Pathfinding/PathfindingSystem.cs @@ -46,6 +46,7 @@ public sealed partial class PathfindingSystem : SharedPathfindingSystem [Dependency] private readonly FixtureSystem _fixtures = default!; [Dependency] private readonly NPCSystem _npc = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; private readonly Dictionary _subscribedSessions = new(); @@ -75,6 +76,7 @@ public override void Shutdown() base.Shutdown(); _subscribedSessions.Clear(); _playerManager.PlayerStatusChanged -= OnPlayerChange; + _transform.OnGlobalMoveEvent -= OnMoveEvent; } public override void Update(float frameTime) diff --git a/Content.Server/NPC/Queries/Curves/UtilityCurvePresetPrototype.cs b/Content.Server/NPC/Queries/Curves/UtilityCurvePresetPrototype.cs index 5ac127c053..7a6e9152c6 100644 --- a/Content.Server/NPC/Queries/Curves/UtilityCurvePresetPrototype.cs +++ b/Content.Server/NPC/Queries/Curves/UtilityCurvePresetPrototype.cs @@ -3,7 +3,7 @@ namespace Content.Server.NPC.Queries.Curves; [Prototype("utilityCurvePreset")] -public sealed class UtilityCurvePresetPrototype : IPrototype +public sealed partial class UtilityCurvePresetPrototype : IPrototype { [IdDataField] public string ID { get; } = string.Empty; diff --git a/Content.Server/NPC/Queries/UtilityQueryPrototype.cs b/Content.Server/NPC/Queries/UtilityQueryPrototype.cs index e9b7e244fd..76750dbe9b 100644 --- a/Content.Server/NPC/Queries/UtilityQueryPrototype.cs +++ b/Content.Server/NPC/Queries/UtilityQueryPrototype.cs @@ -10,7 +10,7 @@ namespace Content.Server.NPC.Queries; /// These results are then run through the considerations. /// [Prototype("utilityQuery")] -public sealed class UtilityQueryPrototype : IPrototype +public sealed partial class UtilityQueryPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Server/NPC/Systems/NPCCombatSystem.cs b/Content.Server/NPC/Systems/NPCCombatSystem.cs index fe01b2fcbe..7b012300da 100644 --- a/Content.Server/NPC/Systems/NPCCombatSystem.cs +++ b/Content.Server/NPC/Systems/NPCCombatSystem.cs @@ -1,6 +1,8 @@ using Content.Server.Interaction; using Content.Server.Weapons.Ranged.Systems; using Content.Shared.Weapons.Melee; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Physics.Systems; using Robust.Shared.Random; diff --git a/Content.Server/NPC/Systems/NPCRetaliationSystem.cs b/Content.Server/NPC/Systems/NPCRetaliationSystem.cs index a8bf1766f0..cde8decefc 100644 --- a/Content.Server/NPC/Systems/NPCRetaliationSystem.cs +++ b/Content.Server/NPC/Systems/NPCRetaliationSystem.cs @@ -8,16 +8,14 @@ namespace Content.Server.NPC.Systems; /// -/// Handles NPC which become aggressive after being attacked. +/// Handles NPC which become aggressive after being attacked. /// public sealed class NPCRetaliationSystem : EntitySystem { - [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly NpcFactionSystem _npcFaction = default!; + [Dependency] private readonly IGameTiming _timing = default!; - private readonly HashSet _deAggroQueue = new(); - - /// + /// public override void Initialize() { SubscribeLocalEvent(OnDamageChanged); @@ -54,9 +52,7 @@ public bool TryRetaliate(EntityUid uid, EntityUid target, NPCRetaliationComponen _npcFaction.AggroEntity(uid, target); if (component.AttackMemoryLength is { } memoryLength) - { component.AttackMemories[target] = _timing.CurTime + memoryLength; - } return true; } @@ -65,25 +61,15 @@ public override void Update(float frameTime) { base.Update(frameTime); - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var comp, out var factionException, out var metaData)) + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var retaliationComponent, out var factionException)) { - _deAggroQueue.Clear(); - - foreach (var ent in new ValueList(comp.AttackMemories.Keys)) + foreach (var entity in new ValueList(retaliationComponent.AttackMemories.Keys)) { - if (_timing.CurTime < comp.AttackMemories[ent]) + if (!TerminatingOrDeleted(entity) && _timing.CurTime < retaliationComponent.AttackMemories[entity]) continue; - if (TerminatingOrDeleted(ent, metaData)) - _deAggroQueue.Add(ent); - - _deAggroQueue.Add(ent); - } - - foreach (var ent in _deAggroQueue) - { - _npcFaction.DeAggroEntity(uid, ent, factionException); + _npcFaction.DeAggroEntity(uid, entity, factionException); } } } diff --git a/Content.Server/NPC/Systems/NPCSteeringSystem.Context.cs b/Content.Server/NPC/Systems/NPCSteeringSystem.Context.cs index 6507f24edf..89e3e64e9f 100644 --- a/Content.Server/NPC/Systems/NPCSteeringSystem.Context.cs +++ b/Content.Server/NPC/Systems/NPCSteeringSystem.Context.cs @@ -469,12 +469,13 @@ private void CollisionAvoidance( { var objectRadius = 0.15f; var detectionRadius = MathF.Max(0.35f, agentRadius + objectRadius); + var ents = _entSetPool.Get(); + _lookup.GetEntitiesInRange(uid, detectionRadius, ents, LookupFlags.Static); - foreach (var ent in _lookup.GetEntitiesInRange(uid, detectionRadius, LookupFlags.Static)) + foreach (var ent in ents) { // TODO: If we can access the door or smth. - if (ent == uid || - !_physicsQuery.TryGetComponent(ent, out var otherBody) || + if (!_physicsQuery.TryGetComponent(ent, out var otherBody) || !otherBody.Hard || !otherBody.CanCollide || (mask & otherBody.CollisionLayer) == 0x0 && @@ -521,6 +522,7 @@ private void CollisionAvoidance( } } + _entSetPool.Return(ents); } #endregion @@ -545,12 +547,13 @@ private void Separation( var detectionRadius = MathF.Max(0.35f, agentRadius + objectRadius); var ourVelocity = body.LinearVelocity; _factionQuery.TryGetComponent(uid, out var ourFaction); + var ents = _entSetPool.Get(); + _lookup.GetEntitiesInRange(uid, detectionRadius, ents, LookupFlags.Dynamic); - foreach (var ent in _lookup.GetEntitiesInRange(uid, detectionRadius, LookupFlags.Dynamic)) + foreach (var ent in ents) { // TODO: If we can access the door or smth. - if (ent == uid || - !_physicsQuery.TryGetComponent(ent, out var otherBody) || + if (!_physicsQuery.TryGetComponent(ent, out var otherBody) || !otherBody.Hard || !otherBody.CanCollide || (mask & otherBody.CollisionLayer) == 0x0 && @@ -602,6 +605,8 @@ private void Separation( danger[i] = MathF.Max(dot * weight, danger[i]); } } + + _entSetPool.Return(ents); } #endregion diff --git a/Content.Server/NPC/Systems/NPCSteeringSystem.cs b/Content.Server/NPC/Systems/NPCSteeringSystem.cs index e5b62acfe8..3db7c58674 100644 --- a/Content.Server/NPC/Systems/NPCSteeringSystem.cs +++ b/Content.Server/NPC/Systems/NPCSteeringSystem.cs @@ -27,6 +27,8 @@ using Robust.Shared.Timing; using Robust.Shared.Utility; using Content.Shared.Prying.Systems; +using Microsoft.Extensions.ObjectPool; +using Robust.Shared.Threading; namespace Content.Server.NPC.Systems; @@ -49,17 +51,16 @@ public sealed partial class NPCSteeringSystem : SharedNPCSteeringSystem [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ClimbSystem _climb = default!; [Dependency] private readonly DoAfterSystem _doAfter = default!; - [Dependency] private readonly DoorSystem _doors = default!; [Dependency] private readonly EntityLookupSystem _lookup = default!; [Dependency] private readonly NpcFactionSystem _npcFaction = default!; [Dependency] private readonly PathfindingSystem _pathfindingSystem = default!; + [Dependency] private readonly PryingSystem _pryingSystem = default!; [Dependency] private readonly SharedInteractionSystem _interaction = default!; [Dependency] private readonly SharedMeleeWeaponSystem _melee = default!; [Dependency] private readonly SharedMoverController _mover = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly SharedCombatModeSystem _combat = default!; - [Dependency] private readonly PryingSystem _pryingSystem = default!; private EntityQuery _fixturesQuery; private EntityQuery _modifierQuery; @@ -67,6 +68,9 @@ public sealed partial class NPCSteeringSystem : SharedNPCSteeringSystem private EntityQuery _physicsQuery; private EntityQuery _xformQuery; + private ObjectPool> _entSetPool = + new DefaultObjectPool>(new SetPolicy()); + /// /// Enabled antistuck detection so if an NPC is in the same spot for a while it will re-path. /// diff --git a/Content.Server/NPC/Systems/NPCUtilitySystem.cs b/Content.Server/NPC/Systems/NPCUtilitySystem.cs index 4a9df0e663..641b8c20e1 100644 --- a/Content.Server/NPC/Systems/NPCUtilitySystem.cs +++ b/Content.Server/NPC/Systems/NPCUtilitySystem.cs @@ -45,14 +45,21 @@ public sealed class NPCUtilitySystem : EntitySystem [Dependency] private readonly SolutionContainerSystem _solutions = default!; [Dependency] private readonly WeldableSystem _weldable = default!; + private EntityQuery _puddleQuery; private EntityQuery _xformQuery; private ObjectPool> _entPool = new DefaultObjectPool>(new SetPolicy(), 256); + // Temporary caches. + private List _entityList = new(); + private HashSet> _entitySet = new(); + private List _compTypes = new(); + public override void Initialize() { base.Initialize(); + _puddleQuery = GetEntityQuery(); _xformQuery = GetEntityQuery(); } @@ -360,12 +367,31 @@ private void Add(NPCBlackboard blackboard, HashSet entities, UtilityQ { case ComponentQuery compQuery: { - var mapPos = Transform(owner).MapPosition; - var comps = compQuery.Components.Values.ToList(); - var compZero = comps[0]; - comps.RemoveAt(0); + if (compQuery.Components.Count == 0) + return; + + var mapPos = _xformQuery.GetComponent(owner).MapPosition; + _compTypes.Clear(); + var i = -1; + EntityPrototype.ComponentRegistryEntry compZero = default!; + + foreach (var compType in compQuery.Components.Values) + { + i++; + + if (i == 0) + { + compZero = compType; + continue; + } + + _compTypes.Add(compType); + } + + _entitySet.Clear(); + _lookup.GetEntitiesInRange(compZero.Component.GetType(), mapPos, vision, _entitySet); - foreach (var comp in _lookup.GetEntitiesInRange(compZero.Component.GetType(), mapPos, vision)) + foreach (var comp in _entitySet) { var ent = comp.Owner; @@ -374,7 +400,7 @@ private void Add(NPCBlackboard blackboard, HashSet entities, UtilityQ var othersFound = true; - foreach (var compOther in comps) + foreach (var compOther in _compTypes) { if (!HasComp(ent, compOther.Component.GetType())) { @@ -428,7 +454,7 @@ private void RecursiveAdd(EntityUid uid, HashSet entities) while (enumerator.MoveNext(out var child)) { - RecursiveAdd(child.Value, entities); + RecursiveAdd(child, entities); } } @@ -438,7 +464,7 @@ private void Filter(NPCBlackboard blackboard, HashSet entities, Utili { case ComponentFilter compFilter: { - var toRemove = new ValueList(); + _entityList.Clear(); foreach (var ent in entities) { @@ -447,12 +473,12 @@ private void Filter(NPCBlackboard blackboard, HashSet entities, Utili if (HasComp(ent, comp.Value.Component.GetType())) continue; - toRemove.Add(ent); + _entityList.Add(ent); break; } } - foreach (var ent in toRemove) + foreach (var ent in _entityList) { entities.Remove(ent); } @@ -461,20 +487,19 @@ private void Filter(NPCBlackboard blackboard, HashSet entities, Utili } case PuddleFilter: { - var puddleQuery = GetEntityQuery(); - var toRemove = new ValueList(); + _entityList.Clear(); foreach (var ent in entities) { - if (!puddleQuery.TryGetComponent(ent, out var puddleComp) || + if (!_puddleQuery.TryGetComponent(ent, out var puddleComp) || !_solutions.TryGetSolution(ent, puddleComp.SolutionName, out var sol) || _puddle.CanFullyEvaporate(sol)) { - toRemove.Add(ent); + _entityList.Add(ent); } } - foreach (var ent in toRemove) + foreach (var ent in _entityList) { entities.Remove(ent); } diff --git a/Content.Server/NPC/Systems/NpcFactionSystem.cs b/Content.Server/NPC/Systems/NpcFactionSystem.cs index 5b8264e7b9..3458025f19 100644 --- a/Content.Server/NPC/Systems/NpcFactionSystem.cs +++ b/Content.Server/NPC/Systems/NpcFactionSystem.cs @@ -1,3 +1,4 @@ +using System.Collections.Frozen; using System.Linq; using Content.Server.NPC.Components; using JetBrains.Annotations; @@ -19,31 +20,23 @@ public sealed partial class NpcFactionSystem : EntitySystem /// /// To avoid prototype mutability we store an intermediary data class that gets used instead. /// - private Dictionary _factions = new(); + private FrozenDictionary _factions = FrozenDictionary.Empty; public override void Initialize() { base.Initialize(); _sawmill = Logger.GetSawmill("faction"); SubscribeLocalEvent(OnFactionStartup); - _protoManager.PrototypesReloaded += OnProtoReload; + SubscribeLocalEvent(OnProtoReload); InitializeException(); RefreshFactions(); } - public override void Shutdown() - { - base.Shutdown(); - _protoManager.PrototypesReloaded -= OnProtoReload; - } - private void OnProtoReload(PrototypesReloadedEventArgs obj) { - if (!obj.ByType.ContainsKey(typeof(NpcFactionPrototype))) - return; - - RefreshFactions(); + if (obj.WasModified()) + RefreshFactions(); } private void OnFactionStartup(EntityUid uid, NpcFactionMemberComponent memberComponent, ComponentStartup args) @@ -238,16 +231,15 @@ public void MakeFriendly(string source, string target) private void RefreshFactions() { - _factions.Clear(); - foreach (var faction in _protoManager.EnumeratePrototypes()) - { - _factions[faction.ID] = new FactionData() + _factions = _protoManager.EnumeratePrototypes().ToFrozenDictionary( + faction => faction.ID, + faction => new FactionData { Friendly = faction.Friendly.ToHashSet(), - Hostile = faction.Hostile.ToHashSet(), - }; - } + Hostile = faction.Hostile.ToHashSet() + + }); foreach (var comp in EntityQuery(true)) { diff --git a/Content.Server/NameIdentifier/NameIdentifierSystem.cs b/Content.Server/NameIdentifier/NameIdentifierSystem.cs index bde8466d06..6d6e9e6c69 100644 --- a/Content.Server/NameIdentifier/NameIdentifierSystem.cs +++ b/Content.Server/NameIdentifier/NameIdentifierSystem.cs @@ -28,9 +28,9 @@ public override void Initialize() SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnComponentShutdown); SubscribeLocalEvent(CleanupIds); + SubscribeLocalEvent(OnReloadPrototypes); InitialSetupPrototypes(); - _prototypeManager.PrototypesReloaded += OnReloadPrototypes; } private void OnComponentShutdown(EntityUid uid, NameIdentifierComponent component, ComponentShutdown args) @@ -46,13 +46,6 @@ private void OnComponentShutdown(EntityUid uid, NameIdentifierComponent componen } } - public override void Shutdown() - { - base.Shutdown(); - - _prototypeManager.PrototypesReloaded -= OnReloadPrototypes; - } - /// /// Generates a new unique name/suffix for a given entity and adds it to /// but does not set the entity's name. diff --git a/Content.Server/Ninja/Systems/BatteryDrainerSystem.cs b/Content.Server/Ninja/Systems/BatteryDrainerSystem.cs index 37bf0eade1..552ee0397f 100644 --- a/Content.Server/Ninja/Systems/BatteryDrainerSystem.cs +++ b/Content.Server/Ninja/Systems/BatteryDrainerSystem.cs @@ -7,6 +7,7 @@ using Content.Shared.Ninja.Systems; using Content.Shared.Popups; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; namespace Content.Server.Ninja.Systems; @@ -50,6 +51,7 @@ private void OnBeforeInteractHand(EntityUid uid, BatteryDrainerComponent comp, B var doAfterArgs = new DoAfterArgs(EntityManager, uid, comp.DrainTime, new DrainDoAfterEvent(), target: target, eventTarget: uid) { BreakOnUserMove = true, + BreakOnWeightlessMove = true, // prevent a ninja on a pod remotely draining it MovementThreshold = 0.5f, CancelDuplicate = false, AttemptFrequency = AttemptFrequency.StartAndEnd diff --git a/Content.Server/Ninja/Systems/SpaceNinjaSystem.cs b/Content.Server/Ninja/Systems/SpaceNinjaSystem.cs index 6de2d7dee0..a1b1032105 100644 --- a/Content.Server/Ninja/Systems/SpaceNinjaSystem.cs +++ b/Content.Server/Ninja/Systems/SpaceNinjaSystem.cs @@ -24,7 +24,9 @@ using Robust.Shared.Player; using Robust.Shared.Random; using System.Diagnostics.CodeAnalysis; +using System.Linq; using Content.Server.Objectives.Components; +using Robust.Shared.Audio.Systems; namespace Content.Server.Ninja.Systems; @@ -167,6 +169,7 @@ private void OnNinjaCreated(EntityUid uid, SpaceNinjaComponent comp, ref Generic PrototypeId = "SpaceNinja" }; _role.MindAddRole(mindId, role, mind); + _role.MindPlaySound(mindId, config.GreetingSound, mind); // choose spider charge detonation point var warps = new List(); @@ -179,9 +182,7 @@ private void OnNinjaCreated(EntityUid uid, SpaceNinjaComponent comp, ref Generic if (warps.Count > 0) role.SpiderChargeTarget = _random.Pick(warps); - var session = mind.Session; - _audio.PlayGlobal(config.GreetingSound, Filter.Empty().AddPlayer(session), false, AudioParams.Default); - _chatMan.DispatchServerMessage(session, Loc.GetString("ninja-role-greeting")); + _chatMan.DispatchServerMessage(mind.Session, Loc.GetString("ninja-role-greeting")); } // TODO: PowerCellDraw, modify when cloak enabled diff --git a/Content.Server/Ninja/Systems/StunProviderSystem.cs b/Content.Server/Ninja/Systems/StunProviderSystem.cs index 70182e0e36..636037060a 100644 --- a/Content.Server/Ninja/Systems/StunProviderSystem.cs +++ b/Content.Server/Ninja/Systems/StunProviderSystem.cs @@ -1,12 +1,16 @@ using Content.Server.Ninja.Events; using Content.Server.Power.EntitySystems; -using Content.Shared.Electrocution; +using Content.Shared.Damage; +using Content.Shared.Damage.Prototypes; using Content.Shared.Interaction; using Content.Shared.Ninja.Components; using Content.Shared.Ninja.Systems; using Content.Shared.Popups; +using Content.Shared.Stunnable; using Content.Shared.Whitelist; using Robust.Shared.Audio; +using Robust.Shared.Prototypes; +using Robust.Shared.Audio.Systems; using Robust.Shared.Timing; namespace Content.Server.Ninja.Systems; @@ -17,11 +21,13 @@ namespace Content.Server.Ninja.Systems; public sealed class StunProviderSystem : SharedStunProviderSystem { [Dependency] private readonly BatterySystem _battery = default!; + [Dependency] private readonly DamageableSystem _damageable = default!; [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly SharedElectrocutionSystem _electrocution = default!; [Dependency] private readonly SharedNinjaGlovesSystem _gloves = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedStunSystem _stun = default!; public override void Initialize() { @@ -55,8 +61,9 @@ private void OnBeforeInteractHand(EntityUid uid, StunProviderComponent comp, Bef _audio.PlayPvs(comp.Sound, target); - // not holding hands with target so insuls don't matter - _electrocution.TryDoElectrocution(target, uid, comp.StunDamage, comp.StunTime, false, ignoreInsulation: true); + _damageable.TryChangeDamage(target, comp.StunDamage, false, true, null, origin: uid); + _stun.TryParalyze(target, comp.StunTime, refresh: false); + // short cooldown to prevent instant stunlocking comp.NextStun = _timing.CurTime + comp.Cooldown; diff --git a/Content.Server/Nuke/NukeComponent.cs b/Content.Server/Nuke/NukeComponent.cs index 2b9c9fe01e..16377d5f75 100644 --- a/Content.Server/Nuke/NukeComponent.cs +++ b/Content.Server/Nuke/NukeComponent.cs @@ -174,7 +174,7 @@ public sealed partial class NukeComponent : SharedNukeComponent /// public bool PlayedAlertSound = false; - public IPlayingAudioStream? AlertAudioStream = default; + public EntityUid? AlertAudioStream = default; /// /// The radius from the nuke for which there must be floor tiles for it to be anchorable. diff --git a/Content.Server/Nuke/NukeSystem.cs b/Content.Server/Nuke/NukeSystem.cs index ca0b0e0113..77689c4e2b 100644 --- a/Content.Server/Nuke/NukeSystem.cs +++ b/Content.Server/Nuke/NukeSystem.cs @@ -14,6 +14,7 @@ using Content.Shared.Popups; using Robust.Server.GameObjects; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Map; using Robust.Shared.Player; @@ -216,7 +217,7 @@ private void OnKeypadButtonPressed(EntityUid uid, NukeComponent component, NukeK private void OnClearButtonPressed(EntityUid uid, NukeComponent component, NukeKeypadClearMessage args) { - _audio.Play(component.KeypadPressSound, Filter.Pvs(uid), uid, true); + _audio.PlayEntity(component.KeypadPressSound, Filter.Pvs(uid), uid, true); if (component.Status != NukeStatus.AWAIT_CODE) return; @@ -334,12 +335,12 @@ private void UpdateStatus(EntityUid uid, NukeComponent? component = null) { component.Status = NukeStatus.AWAIT_ARM; component.RemainingTime = component.Timer; - _audio.Play(component.AccessGrantedSound, Filter.Pvs(uid), uid, true); + _audio.PlayEntity(component.AccessGrantedSound, Filter.Pvs(uid), uid, true); } else { component.EnteredCode = ""; - _audio.Play(component.AccessDeniedSound, Filter.Pvs(uid), uid, true); + _audio.PlayEntity(component.AccessDeniedSound, Filter.Pvs(uid), uid, true); } break; @@ -409,7 +410,7 @@ private void PlayNukeKeypadSound(EntityUid uid, int number, NukeComponent? compo // Don't double-dip on the octave shifting component.LastPlayedKeypadSemitones = number == 0 ? component.LastPlayedKeypadSemitones : semitoneShift; - _audio.Play(component.KeypadPressSound, Filter.Pvs(uid), uid, true, AudioHelpers.ShiftSemitone(semitoneShift).WithVolume(-5f)); + _audio.PlayEntity(component.KeypadPressSound, Filter.Pvs(uid), uid, true, AudioHelpers.ShiftSemitone(semitoneShift).WithVolume(-5f)); } public string GenerateRandomNumberString(int length) @@ -500,7 +501,7 @@ public void DisarmBomb(EntityUid uid, NukeComponent? component = null) // disable sound and reset it component.PlayedAlertSound = false; - component.AlertAudioStream?.Stop(); + component.AlertAudioStream = _audio.Stop(component.AlertAudioStream); // turn off the spinny light _pointLight.SetEnabled(uid, false); diff --git a/Content.Server/Nutrition/Components/FatExtractorComponent.cs b/Content.Server/Nutrition/Components/FatExtractorComponent.cs index 61bb85f9ec..7bd9b85c79 100644 --- a/Content.Server/Nutrition/Components/FatExtractorComponent.cs +++ b/Content.Server/Nutrition/Components/FatExtractorComponent.cs @@ -83,7 +83,7 @@ public sealed partial class FatExtractorComponent : Component [DataField("processSound")] public SoundSpecifier? ProcessSound; - public IPlayingAudioStream? Stream; + public EntityUid? Stream; /// /// A minium hunger threshold for extracting nutrition. diff --git a/Content.Server/Nutrition/Components/FoodComponent.cs b/Content.Server/Nutrition/Components/FoodComponent.cs index af74352132..c7f90ccff1 100644 --- a/Content.Server/Nutrition/Components/FoodComponent.cs +++ b/Content.Server/Nutrition/Components/FoodComponent.cs @@ -67,4 +67,10 @@ public sealed partial class FoodComponent : Component /// [DataField] public float ForceFeedDelay = 3; + + /// + /// For mobs that are food, requires killing them before eating. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public bool RequireDead = true; } diff --git a/Content.Server/Nutrition/Components/IngestionBlockerComponent.cs b/Content.Server/Nutrition/Components/IngestionBlockerComponent.cs index 68d2b78fba..c3188d07a0 100644 --- a/Content.Server/Nutrition/Components/IngestionBlockerComponent.cs +++ b/Content.Server/Nutrition/Components/IngestionBlockerComponent.cs @@ -1,6 +1,6 @@ -using Content.Server.Clothing; +using Content.Server.Nutrition.EntitySystems; -namespace Content.Server.Nutrition.EntitySystems; +namespace Content.Server.Nutrition.Components; /// /// Component that denotes a piece of clothing that blocks the mouth or otherwise prevents eating & drinking. @@ -9,7 +9,7 @@ namespace Content.Server.Nutrition.EntitySystems; /// In the event that more head-wear & mask functionality is added (like identity systems, or raising/lowering of /// masks), then this component might become redundant. /// -[RegisterComponent, Access(typeof(FoodSystem), typeof(DrinkSystem), typeof(MaskSystem))] +[RegisterComponent, Access(typeof(FoodSystem), typeof(DrinkSystem), typeof(IngestionBlockerSystem))] public sealed partial class IngestionBlockerComponent : Component { /// diff --git a/Content.Server/Nutrition/Components/SliceableFoodComponent.cs b/Content.Server/Nutrition/Components/SliceableFoodComponent.cs index 7173e2ecd2..2b74d0c67e 100644 --- a/Content.Server/Nutrition/Components/SliceableFoodComponent.cs +++ b/Content.Server/Nutrition/Components/SliceableFoodComponent.cs @@ -1,24 +1,31 @@ using Content.Server.Nutrition.EntitySystems; using Robust.Shared.Audio; +using Robust.Shared.Prototypes; -namespace Content.Server.Nutrition.Components +namespace Content.Server.Nutrition.Components; + +[RegisterComponent, Access(typeof(SliceableFoodSystem))] +public sealed partial class SliceableFoodComponent : Component { - [RegisterComponent, Access(typeof(SliceableFoodSystem))] - internal sealed partial class SliceableFoodComponent : Component - { - [DataField("slice")] - [ViewVariables(VVAccess.ReadWrite)] - public string Slice = string.Empty; + /// + /// Prototype to spawn after slicing. + /// If null then it can't be sliced. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public EntProtoId? Slice; - [DataField("sound")] - [ViewVariables(VVAccess.ReadWrite)] - public SoundSpecifier Sound = new SoundPathSpecifier("/Audio/Items/Culinary/chop.ogg"); + [DataField, ViewVariables(VVAccess.ReadWrite)] + public SoundSpecifier Sound = new SoundPathSpecifier("/Audio/Items/Culinary/chop.ogg"); - [DataField("count")] - [ViewVariables(VVAccess.ReadWrite)] - public ushort TotalCount = 5; + /// + /// Number of slices the food starts with. + /// + [DataField("count"), ViewVariables(VVAccess.ReadWrite)] + public ushort TotalCount = 5; - [ViewVariables(VVAccess.ReadWrite)] - public ushort Count; - } + /// + /// Number of slices left. + /// + [ViewVariables(VVAccess.ReadWrite)] + public ushort Count; } diff --git a/Content.Server/Nutrition/Components/TrashOnEmptyComponent.cs b/Content.Server/Nutrition/Components/TrashOnEmptyComponent.cs deleted file mode 100644 index b36bd172bf..0000000000 --- a/Content.Server/Nutrition/Components/TrashOnEmptyComponent.cs +++ /dev/null @@ -1,16 +0,0 @@ -namespace Content.Server.Nutrition.Components -{ - /// - /// Component that tags solution containers as trash when their contents have been emptied. - /// Used for things like used ketchup packets or used syringes. - /// - [RegisterComponent] - public sealed partial class TrashOnEmptyComponent : Component - { - /// - /// The name of the solution of which to check emptiness - /// - [DataField("solution")] - public string Solution { get; set; } = string.Empty; - } -} diff --git a/Content.Server/Nutrition/Components/TrashOnSolutionEmptyComponent.cs b/Content.Server/Nutrition/Components/TrashOnSolutionEmptyComponent.cs new file mode 100644 index 0000000000..4fac2a362b --- /dev/null +++ b/Content.Server/Nutrition/Components/TrashOnSolutionEmptyComponent.cs @@ -0,0 +1,16 @@ +namespace Content.Server.Nutrition.Components +{ + /// + /// Component that tags solution containers as trash when their contents have been emptied. + /// Used for things like used ketchup packets or used syringes. + /// + [RegisterComponent] + public sealed partial class TrashOnSolutionEmptyComponent : Component + { + /// + /// The name of the solution of which to check emptiness + /// + [DataField("solution")] + public string Solution { get; set; } = string.Empty; + } +} diff --git a/Content.Server/Nutrition/EntitySystems/AnimalHusbandrySystem.cs b/Content.Server/Nutrition/EntitySystems/AnimalHusbandrySystem.cs index e8e456c0ea..1271c57a23 100644 --- a/Content.Server/Nutrition/EntitySystems/AnimalHusbandrySystem.cs +++ b/Content.Server/Nutrition/EntitySystems/AnimalHusbandrySystem.cs @@ -9,6 +9,9 @@ using Content.Shared.Nutrition.Components; using Content.Shared.Nutrition.EntitySystems; using Content.Shared.Storage; +using Robust.Server.GameObjects; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; using Robust.Shared.Random; using Robust.Shared.Timing; @@ -32,6 +35,7 @@ public sealed class AnimalHusbandrySystem : EntitySystem [Dependency] private readonly SharedTransformSystem _transform = default!; private readonly HashSet _failedAttempts = new(); + private readonly HashSet _birthQueue = new(); /// public override void Initialize() @@ -222,7 +226,7 @@ public override void Update(float frameTime) { base.Update(frameTime); - HashSet birthQueue = new(); + _birthQueue.Clear(); _failedAttempts.Clear(); var query = EntityQueryEnumerator(); @@ -230,7 +234,7 @@ public override void Update(float frameTime) { if (reproductive.GestationEndTime != null && _timing.CurTime >= reproductive.GestationEndTime) { - birthQueue.Add(uid); + _birthQueue.Add(uid); } if (_timing.CurTime < reproductive.NextBreedAttempt) @@ -244,7 +248,7 @@ public override void Update(float frameTime) TryReproduceNearby(uid, reproductive); } - foreach (var queued in birthQueue) + foreach (var queued in _birthQueue) { Birth(queued); } diff --git a/Content.Server/Nutrition/EntitySystems/CreamPieSystem.cs b/Content.Server/Nutrition/EntitySystems/CreamPieSystem.cs index 586f965096..eebe7f98d8 100644 --- a/Content.Server/Nutrition/EntitySystems/CreamPieSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/CreamPieSystem.cs @@ -13,6 +13,7 @@ using JetBrains.Annotations; using Robust.Server.GameObjects; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; namespace Content.Server.Nutrition.EntitySystems @@ -37,7 +38,7 @@ public override void Initialize() protected override void SplattedCreamPie(EntityUid uid, CreamPieComponent creamPie) { - _audio.Play(_audio.GetSound(creamPie.Sound), Filter.Pvs(uid), uid, false, new AudioParams().WithVariation(0.125f)); + _audio.PlayPvs(_audio.GetSound(creamPie.Sound), uid, AudioParams.Default.WithVariation(0.125f)); if (EntityManager.TryGetComponent(uid, out FoodComponent? foodComp)) { diff --git a/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs b/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs index e493a18ae7..e45c904591 100644 --- a/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs @@ -27,6 +27,7 @@ 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; @@ -53,6 +54,7 @@ public sealed class DrinkSystem : EntitySystem [Dependency] private readonly SharedInteractionSystem _interaction = default!; [Dependency] private readonly SolutionContainerSystem _solutionContainer = default!; [Dependency] private readonly StomachSystem _stomach = default!; + [Dependency] private readonly ForensicsSystem _forensics = default!; public override void Initialize() { @@ -398,9 +400,7 @@ private void OnDoAfter(EntityUid uid, DrinkComponent component, ConsumeDoAfterEv //TODO: Grab the stomach UIDs somehow without using Owner _stomach.TryTransferSolution(firstStomach.Value.Comp.Owner, drained, firstStomach.Value.Comp); - var comp = EnsureComp(uid); - if (TryComp(args.Target, out var dna)) - comp.DNAs.Add(dna.DNA); + _forensics.TransferDna(uid, args.Target.Value); if (!forceDrink && solution.Volume > 0) args.Repeat = true; diff --git a/Content.Server/Nutrition/EntitySystems/FatExtractorSystem.cs b/Content.Server/Nutrition/EntitySystems/FatExtractorSystem.cs index 6ab432d490..63ca590f5d 100644 --- a/Content.Server/Nutrition/EntitySystems/FatExtractorSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/FatExtractorSystem.cs @@ -10,6 +10,8 @@ using Content.Shared.Nutrition.Components; using Content.Shared.Nutrition.EntitySystems; using Content.Shared.Storage.Components; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Timing; namespace Content.Server.Nutrition.EntitySystems; @@ -90,7 +92,7 @@ public void StartProcessing(EntityUid uid, FatExtractorComponent? component = nu component.Processing = true; _appearance.SetData(uid, FatExtractorVisuals.Processing, true); - component.Stream = _audio.PlayPvs(component.ProcessSound, uid); + component.Stream = _audio.PlayPvs(component.ProcessSound, uid)?.Entity; component.NextUpdate = _timing.CurTime + component.UpdateTime; } @@ -104,7 +106,7 @@ public void StopProcessing(EntityUid uid, FatExtractorComponent? component = nul component.Processing = false; _appearance.SetData(uid, FatExtractorVisuals.Processing, false); - component.Stream?.Stop(); + component.Stream = _audio.Stop(component.Stream); } public bool TryGetValidOccupant(EntityUid uid, [NotNullWhen(true)] out EntityUid? occupant, FatExtractorComponent? component = null, EntityStorageComponent? storage = null) diff --git a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs index ff4ec41dd9..ea50063107 100644 --- a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs @@ -28,6 +28,9 @@ using Robust.Shared.Audio; using Robust.Shared.Player; using Robust.Shared.Utility; +using Content.Shared.Tag; +using Content.Shared.Storage; +using Robust.Shared.Audio.Systems; namespace Content.Server.Nutrition.EntitySystems; @@ -95,7 +98,7 @@ private void OnFeedFood(EntityUid uid, FoodComponent foodComponent, AfterInterac public (bool Success, bool Handled) TryFeed(EntityUid user, EntityUid target, EntityUid food, FoodComponent foodComp) { //Suppresses eating yourself and alive mobs - if (food == user || _mobState.IsAlive(food)) + if (food == user || (_mobState.IsAlive(food) && foodComp.RequireDead)) return (false, false); // Target can't be fed or they're already eating @@ -278,7 +281,7 @@ private void OnDoAfter(EntityUid uid, FoodComponent component, ConsumeDoAfterEve _adminLogger.Add(LogType.Ingestion, LogImpact.Low, $"{ToPrettyString(args.User):target} ate {ToPrettyString(uid):food}"); } - _audio.Play(component.UseSound, Filter.Pvs(args.Target.Value), args.Target.Value, true, AudioParams.Default.WithVolume(-1f)); + _audio.PlayPvs(component.UseSound, args.Target.Value, AudioParams.Default.WithVolume(-1f)); // Try to break all used utensils foreach (var utensil in utensils) @@ -303,33 +306,38 @@ private void OnDoAfter(EntityUid uid, FoodComponent component, ConsumeDoAfterEve return; } + // don't try to repeat if its being deleted + args.Repeat = false; + DeleteAndSpawnTrash(component, uid, args.User); + } + + public void DeleteAndSpawnTrash(FoodComponent component, EntityUid food, EntityUid user) + { var ev = new BeforeFullyEatenEvent { - User = args.User + User = user }; - RaiseLocalEvent(uid, ev); + RaiseLocalEvent(food, ev); if (ev.Cancelled) return; if (string.IsNullOrEmpty(component.Trash)) - QueueDel(uid); - else - DeleteAndSpawnTrash(component, uid, args.User); - } + { + QueueDel(food); + return; + } - public void DeleteAndSpawnTrash(FoodComponent component, EntityUid food, EntityUid? user = null) - { //We're empty. Become trash. var position = Transform(food).MapPosition; var finisher = Spawn(component.Trash, position); // If the user is holding the item - if (user != null && _hands.IsHolding(user.Value, food, out var hand)) + if (_hands.IsHolding(user, food, out var hand)) { Del(food); // Put the trash in the user's hand - _hands.TryPickup(user.Value, finisher, hand); + _hands.TryPickup(user, finisher, hand); return; } @@ -346,7 +354,7 @@ private void AddEatVerb(EntityUid uid, FoodComponent component, GetVerbsEvent(OnBlockerMaskToggled); + } + + private void OnBlockerMaskToggled(Entity ent, ref ItemMaskToggledEvent args) + { + ent.Comp.Enabled = !args.IsToggled; + } +} diff --git a/Content.Server/Nutrition/EntitySystems/OpenableSystem.cs b/Content.Server/Nutrition/EntitySystems/OpenableSystem.cs index dd6474bc74..fbe617eff4 100644 --- a/Content.Server/Nutrition/EntitySystems/OpenableSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/OpenableSystem.cs @@ -7,6 +7,8 @@ using Content.Shared.Nutrition.Components; using Content.Shared.Popups; using Content.Shared.Weapons.Melee.Events; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.GameObjects; namespace Content.Server.Nutrition.EntitySystems; diff --git a/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs b/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs index ead9c5d350..d5f3bbb92f 100644 --- a/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs @@ -1,3 +1,4 @@ +using Content.Server.Nutrition; // DeltaV using Content.Server.Nutrition.Components; using Content.Shared.Chemistry.Components; using Content.Shared.Chemistry.Components.SolutionManager; @@ -7,16 +8,18 @@ using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Player; namespace Content.Server.Nutrition.EntitySystems { - internal sealed class SliceableFoodSystem : EntitySystem + public sealed class SliceableFoodSystem : EntitySystem { [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; - [Dependency] private readonly SharedHandsSystem _handsSystem = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedContainerSystem _containerSystem = default!; + [Dependency] private readonly SharedHandsSystem _handsSystem = default!; public override void Initialize() { @@ -55,7 +58,7 @@ private bool TrySliceFood(EntityUid uid, EntityUid user, EntityUid usedItem, return false; } - var sliceUid = Spawn(component.Slice, transform.Coordinates); + var sliceUid = Slice(uid, user, component, transform); var lostSolution = _solutionContainerSystem.SplitSolution(uid, solution, solution.Volume / FixedPoint2.New(component.Count)); @@ -63,20 +66,7 @@ private bool TrySliceFood(EntityUid uid, EntityUid user, EntityUid usedItem, // Fill new slice FillSlice(sliceUid, lostSolution); - var inCont = _containerSystem.IsEntityInContainer(component.Owner); - if (inCont) - { - _handsSystem.PickupOrDrop(user, sliceUid); - } - else - { - var xform = Transform(sliceUid); - _containerSystem.AttachParentToContainerOrGrid((sliceUid, xform)); - xform.LocalRotation = 0; - } - - SoundSystem.Play(component.Sound.GetSound(), Filter.Pvs(uid), - transform.Coordinates, AudioParams.Default.WithVolume(-2)); + _audio.PlayPvs(component.Sound, transform.Coordinates, AudioParams.Default.WithVolume(-2)); // Decrease size of item based on count - Could implement in the future // Bug with this currently is the size in a container is not updated @@ -87,12 +77,6 @@ private bool TrySliceFood(EntityUid uid, EntityUid user, EntityUid usedItem, component.Count--; - //Nyano - Summary: Begin Nyano Code to tell us we've sliced something for Fryer -- - - var sliceEvent = new SliceFoodEvent(user, usedItem, uid, sliceUid); - RaiseLocalEvent(uid, sliceEvent); - //Nyano - End Nyano Code. - // If someone makes food proto with 1 slice... if (component.Count < 1) { @@ -104,11 +88,26 @@ private bool TrySliceFood(EntityUid uid, EntityUid user, EntityUid usedItem, if (component.Count > 1) return true; - sliceUid = Spawn(component.Slice, transform.Coordinates); + sliceUid = Slice(uid, user, component, transform); // Fill last slice with the rest of the solution FillSlice(sliceUid, solution); + DeleteFood(uid, user); + return true; + } + + /// + /// Create a new slice in the world and returns its entity. + /// The solutions must be set afterwards. + /// + public EntityUid Slice(EntityUid uid, EntityUid user, SliceableFoodComponent? comp = null, TransformComponent? transform = null) + { + if (!Resolve(uid, ref comp, ref transform)) + return EntityUid.Invalid; + + var sliceUid = Spawn(comp.Slice, transform.Coordinates); + var inCont = _containerSystem.IsEntityInContainer(uid); if (inCont) { _handsSystem.PickupOrDrop(user, sliceUid); @@ -120,8 +119,12 @@ private bool TrySliceFood(EntityUid uid, EntityUid user, EntityUid usedItem, xform.LocalRotation = 0; } - DeleteFood(uid, user); - return true; + // DeltaV - Begin deep frier related code + var sliceEvent = new SliceFoodEvent(user, uid, sliceUid); + RaiseLocalEvent(uid, sliceEvent); + // DeltaV - End deep frier related code + + return sliceUid; } private void DeleteFood(EntityUid uid, EntityUid user) @@ -163,40 +166,4 @@ private void OnExamined(EntityUid uid, SliceableFoodComponent component, Examine args.PushMarkup(Loc.GetString("sliceable-food-component-on-examine-remaining-slices-text", ("remainingCount", component.Count))); } } - //Nyano - Summary: Begin Nyano Code for the sliced food event. - public sealed class SliceFoodEvent : EntityEventArgs - { - /// - /// Who did the slicing? - /// - public EntityUid User; - - /// - /// What did the slicing? - /// - public EntityUid Tool; - - /// - /// What has been sliced? - /// - /// - /// This could soon be deleted if there was not enough food left to - /// continue slicing. - /// - public EntityUid Food; - - /// - /// What is the slice? - /// - public EntityUid Slice; - - public SliceFoodEvent(EntityUid user, EntityUid tool, EntityUid food, EntityUid slice) - { - User = user; - Tool = tool; - Food = food; - Slice = slice; - } - } - //End Nyano Code. } diff --git a/Content.Server/Nutrition/EntitySystems/SmokingSystem.cs b/Content.Server/Nutrition/EntitySystems/SmokingSystem.cs index 276393b728..63a558238b 100644 --- a/Content.Server/Nutrition/EntitySystems/SmokingSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/SmokingSystem.cs @@ -15,6 +15,8 @@ using Robust.Server.GameObjects; using Robust.Shared.Containers; using System.Linq; +using Content.Shared.Inventory.Events; +using Content.Server.Forensics; namespace Content.Server.Nutrition.EntitySystems { @@ -30,6 +32,7 @@ public sealed partial class SmokingSystem : EntitySystem [Dependency] private readonly SharedItemSystem _items = default!; [Dependency] private readonly SharedContainerSystem _container = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly ForensicsSystem _forensics = default!; private const float UpdateTimer = 3f; @@ -44,6 +47,7 @@ public override void Initialize() { SubscribeLocalEvent(OnSmokableIsHotEvent); SubscribeLocalEvent(OnSmokableShutdownEvent); + SubscribeLocalEvent(OnSmokeableEquipEvent); InitializeCigars(); InitializePipes(); @@ -85,6 +89,14 @@ private void OnSmokableShutdownEvent(EntityUid uid, SmokableComponent component, _active.Remove(uid); } + private void OnSmokeableEquipEvent(EntityUid uid, SmokableComponent component, GotEquippedEvent args) + { + if (args.Slot == "mask") + { + _forensics.TransferDna(uid, args.Equipee, false); + } + } + public override void Update(float frameTime) { _timer += frameTime; diff --git a/Content.Server/Nutrition/EntitySystems/TrashOnEmptySystem.cs b/Content.Server/Nutrition/EntitySystems/TrashOnEmptySystem.cs deleted file mode 100644 index e702247900..0000000000 --- a/Content.Server/Nutrition/EntitySystems/TrashOnEmptySystem.cs +++ /dev/null @@ -1,52 +0,0 @@ -using Content.Server.Chemistry.EntitySystems; -using Content.Server.Nutrition.Components; -using Content.Shared.Chemistry.Components; -using Content.Shared.Chemistry.Components.SolutionManager; -using Content.Shared.Chemistry.EntitySystems; -using Content.Shared.Tag; - -namespace Content.Server.Nutrition.EntitySystems -{ - public sealed class TrashOnEmptySystem : EntitySystem - { - [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; - [Dependency] private readonly TagSystem _tagSystem = default!; - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnStartup); - SubscribeLocalEvent(OnSolutionChange); - } - - public void OnStartup(EntityUid uid, TrashOnEmptyComponent component, ComponentStartup args) - { - CheckSolutions(component); - } - - public void OnSolutionChange(EntityUid uid, TrashOnEmptyComponent component, SolutionChangedEvent args) - { - CheckSolutions(component); - } - - public void CheckSolutions(TrashOnEmptyComponent component) - { - if (!EntityManager.HasComponent((component).Owner)) - return; - - if (_solutionContainerSystem.TryGetSolution(component.Owner, component.Solution, out var solution)) - UpdateTags(component, solution); - } - - public void UpdateTags(TrashOnEmptyComponent component, Solution solution) - { - if (solution.Volume <= 0) - { - _tagSystem.AddTag(component.Owner, "Trash"); - return; - } - if (_tagSystem.HasTag(component.Owner, "Trash")) - _tagSystem.RemoveTag(component.Owner, "Trash"); - } - } -} diff --git a/Content.Server/Nutrition/EntitySystems/TrashOnSolutionEmptySystem.cs b/Content.Server/Nutrition/EntitySystems/TrashOnSolutionEmptySystem.cs new file mode 100644 index 0000000000..22360b6492 --- /dev/null +++ b/Content.Server/Nutrition/EntitySystems/TrashOnSolutionEmptySystem.cs @@ -0,0 +1,51 @@ +using Content.Server.Nutrition.Components; +using Content.Shared.Chemistry.Components; +using Content.Shared.Chemistry.Components.SolutionManager; +using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Tag; + +namespace Content.Server.Nutrition.EntitySystems +{ + public sealed class TrashOnSolutionEmptySystem : EntitySystem + { + [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; + [Dependency] private readonly TagSystem _tagSystem = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnStartup); + SubscribeLocalEvent(OnSolutionChange); + } + + public void OnStartup(EntityUid uid, TrashOnSolutionEmptyComponent component, ComponentStartup args) + { + CheckSolutions(component); + } + + public void OnSolutionChange(EntityUid uid, TrashOnSolutionEmptyComponent component, SolutionChangedEvent args) + { + CheckSolutions(component); + } + + public void CheckSolutions(TrashOnSolutionEmptyComponent component) + { + if (!EntityManager.HasComponent((component).Owner)) + return; + + if (_solutionContainerSystem.TryGetSolution(component.Owner, component.Solution, out var solution)) + UpdateTags(component, solution); + } + + public void UpdateTags(TrashOnSolutionEmptyComponent component, Solution solution) + { + if (solution.Volume <= 0) + { + _tagSystem.AddTag(component.Owner, "Trash"); + return; + } + if (_tagSystem.HasTag(component.Owner, "Trash")) + _tagSystem.RemoveTag(component.Owner, "Trash"); + } + } +} diff --git a/Content.Server/Nutrition/EntitySystems/UtensilSystem.cs b/Content.Server/Nutrition/EntitySystems/UtensilSystem.cs index 0f1576658b..f5f34080cb 100644 --- a/Content.Server/Nutrition/EntitySystems/UtensilSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/UtensilSystem.cs @@ -2,6 +2,7 @@ using Content.Server.Popups; using Content.Shared.Interaction; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; using Robust.Shared.Random; @@ -15,6 +16,7 @@ internal sealed class UtensilSystem : EntitySystem [Dependency] private readonly IRobustRandom _robustRandom = default!; [Dependency] private readonly FoodSystem _foodSystem = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; public override void Initialize() @@ -66,8 +68,8 @@ public void TryBreak(EntityUid uid, EntityUid userUid, UtensilComponent? compone if (_robustRandom.Prob(component.BreakChance)) { - SoundSystem.Play(component.BreakSound.GetSound(), Filter.Pvs(userUid), userUid, AudioParams.Default.WithVolume(-2f)); - EntityManager.DeleteEntity(component.Owner); + _audio.PlayPvs(component.BreakSound, userUid, AudioParams.Default.WithVolume(-2f)); + EntityManager.DeleteEntity(uid); } } } diff --git a/Content.Server/Nyanotrasen/Abilities/Felinid/FelinidSystem.cs b/Content.Server/Nyanotrasen/Abilities/Felinid/FelinidSystem.cs index fa5205be75..8c66593f00 100644 --- a/Content.Server/Nyanotrasen/Abilities/Felinid/FelinidSystem.cs +++ b/Content.Server/Nyanotrasen/Abilities/Felinid/FelinidSystem.cs @@ -17,6 +17,7 @@ using Content.Server.Popups; using Content.Shared.Chemistry.EntitySystems; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; using Robust.Shared.Random; using Robust.Shared.Prototypes; @@ -34,6 +35,7 @@ public sealed partial class FelinidSystem : EntitySystem [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly InventorySystem _inventorySystem = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; public override void Initialize() { @@ -111,7 +113,7 @@ private void OnHairball(EntityUid uid, FelinidComponent component, HairballActio } _popupSystem.PopupEntity(Loc.GetString("hairball-cough", ("name", Identity.Entity(uid, EntityManager))), uid); - SoundSystem.Play("/Audio/Nyanotrasen/Effects/Species/hairball.ogg", Filter.Pvs(uid), uid, AudioHelpers.WithVariation(0.15f)); + _audio.PlayPvs("/Audio/Nyanotrasen/Effects/Species/hairball.ogg", uid, AudioHelpers.WithVariation(0.15f)); EnsureComp(uid); args.Handled = true; @@ -147,7 +149,7 @@ private void OnEatMouse(EntityUid uid, FelinidComponent component, EatMouseActio Del(component.EatActionTarget.Value); component.EatActionTarget = null; - SoundSystem.Play("/Audio/Items/eatfood.ogg", Filter.Pvs(uid), uid, AudioHelpers.WithVariation(0.15f)); + _audio.PlayPvs("/Audio/Items/eatfood.ogg", uid, AudioHelpers.WithVariation(0.15f)); _hungerSystem.ModifyHunger(uid, 50f, hunger); diff --git a/Content.Server/Nyanotrasen/Abilities/Psionics/Abilities/DispelPowerSystem.cs b/Content.Server/Nyanotrasen/Abilities/Psionics/Abilities/DispelPowerSystem.cs index b67390cf04..5c39d814c4 100644 --- a/Content.Server/Nyanotrasen/Abilities/Psionics/Abilities/DispelPowerSystem.cs +++ b/Content.Server/Nyanotrasen/Abilities/Psionics/Abilities/DispelPowerSystem.cs @@ -12,6 +12,7 @@ using Robust.Shared.Timing; using Content.Shared.Mind; using Content.Shared.Actions.Events; +using Robust.Shared.Audio.Systems; namespace Content.Server.Abilities.Psionics { @@ -80,7 +81,7 @@ private void OnDispelled(EntityUid uid, DispellableComponent component, Dispelle QueueDel(uid); Spawn("Ash", Transform(uid).Coordinates); _popupSystem.PopupCoordinates(Loc.GetString("psionic-burns-up", ("item", uid)), Transform(uid).Coordinates, Filter.Pvs(uid), true, Shared.Popups.PopupType.MediumCaution); - _audioSystem.Play("/Audio/Effects/lightburn.ogg", Filter.Pvs(uid), uid, true); + _audioSystem.PlayEntity("/Audio/Effects/lightburn.ogg", Filter.Pvs(uid), uid, true); args.Handled = true; } @@ -97,7 +98,7 @@ private void OnDmgDispelled(EntityUid uid, DamageOnDispelComponent component, Di private void OnGuardianDispelled(EntityUid uid, GuardianComponent guardian, DispelledEvent args) { if (TryComp(guardian.Host, out var host)) - _guardianSystem.ToggleGuardian(guardian.Host, host); + _guardianSystem.ToggleGuardian(guardian.Host.Value, host); DealDispelDamage(uid); args.Handled = true; @@ -124,7 +125,7 @@ public void DealDispelDamage(EntityUid uid, DamageSpecifier? damage = null) return; _popupSystem.PopupCoordinates(Loc.GetString("psionic-burn-resist", ("item", uid)), Transform(uid).Coordinates, Filter.Pvs(uid), true, Shared.Popups.PopupType.SmallCaution); - _audioSystem.Play("/Audio/Effects/lightburn.ogg", Filter.Pvs(uid), uid, true); + _audioSystem.PlayEntity("/Audio/Effects/lightburn.ogg", Filter.Pvs(uid), uid, true); if (damage == null) { diff --git a/Content.Server/Nyanotrasen/Abilities/Psionics/Abilities/PsionicInvisibilityPowerSystem.cs b/Content.Server/Nyanotrasen/Abilities/Psionics/Abilities/PsionicInvisibilityPowerSystem.cs index 4cec80a30a..76f0a96aab 100644 --- a/Content.Server/Nyanotrasen/Abilities/Psionics/Abilities/PsionicInvisibilityPowerSystem.cs +++ b/Content.Server/Nyanotrasen/Abilities/Psionics/Abilities/PsionicInvisibilityPowerSystem.cs @@ -12,6 +12,7 @@ using Robust.Shared.Timing; using Content.Server.Mind; using Content.Shared.Actions.Events; +using Robust.Shared.Audio.Systems; namespace Content.Server.Abilities.Psionics { @@ -24,6 +25,7 @@ public sealed class PsionicInvisibilityPowerSystem : EntitySystem [Dependency] private readonly SharedStealthSystem _stealth = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly MindSystem _mindSystem = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; public override void Initialize() { @@ -83,7 +85,7 @@ private void OnStart(EntityUid uid, PsionicInvisibilityUsedComponent component, EnsureComp(uid); var stealth = EnsureComp(uid); _stealth.SetVisibility(uid, 0.66f, stealth); - SoundSystem.Play("/Audio/Effects/toss.ogg", Filter.Pvs(uid), uid); + _audio.PlayPvs("/Audio/Effects/toss.ogg", uid); } @@ -95,8 +97,8 @@ private void OnEnd(EntityUid uid, PsionicInvisibilityUsedComponent component, Co RemComp(uid); RemComp(uid); RemComp(uid); - SoundSystem.Play("/Audio/Effects/toss.ogg", Filter.Pvs(uid), uid); - //Pretty sure this DOESN'T work as intended. + _audio.PlayPvs("/Audio/Effects/toss.ogg", uid); + //Pretty sure this DOESN'T work as intended. _actions.RemoveAction(uid, component.PsionicInvisibilityUsedActionEntity); _stunSystem.TryParalyze(uid, TimeSpan.FromSeconds(8), false); diff --git a/Content.Server/Nyanotrasen/Abilities/Psionics/Abilities/PsionicRegenerationPowerSystem.cs b/Content.Server/Nyanotrasen/Abilities/Psionics/Abilities/PsionicRegenerationPowerSystem.cs index d274817c3b..91d6599451 100644 --- a/Content.Server/Nyanotrasen/Abilities/Psionics/Abilities/PsionicRegenerationPowerSystem.cs +++ b/Content.Server/Nyanotrasen/Abilities/Psionics/Abilities/PsionicRegenerationPowerSystem.cs @@ -20,6 +20,7 @@ using Content.Server.Mind; using Content.Shared.Actions.Events; using Content.Shared.Chemistry.EntitySystems; +using Robust.Server.Audio; namespace Content.Server.Abilities.Psionics { diff --git a/Content.Server/Nyanotrasen/Digging/DiggingSystem.cs b/Content.Server/Nyanotrasen/Digging/DiggingSystem.cs new file mode 100644 index 0000000000..8d2e951cfc --- /dev/null +++ b/Content.Server/Nyanotrasen/Digging/DiggingSystem.cs @@ -0,0 +1,102 @@ +using Content.Shared.Interaction; +using Content.Shared.Maps; +using Content.Shared.Nyanotrasen.Digging; +using Content.Shared.Physics; +using Content.Shared.Tools.Components; +using Content.Shared.Tools.Systems; +using Robust.Shared.Map; +using Robust.Shared.Map.Components; + +namespace Content.Server.Digging; + +public sealed class DiggingSystem : EntitySystem +{ + [Dependency] private readonly TileSystem _tiles = default!; + [Dependency] private readonly SharedMapSystem _maps = default!; + [Dependency] private readonly SharedToolSystem _tools = default!; + [Dependency] private readonly TurfSystem _turfs = default!; + [Dependency] private readonly ITileDefinitionManager _tileDefManager = default!; + [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnDiggingAfterInteract); + SubscribeLocalEvent(OnEarthDigComplete); + } + + + private void OnEarthDigComplete(EntityUid shovel, EarthDiggingComponent comp, EarthDiggingDoAfterEvent args) + { + var coordinates = GetCoordinates(args.Coordinates); + if (!TryComp(shovel, out var _)) + return; + + var gridUid = coordinates.GetGridUid(EntityManager); + if (gridUid == null) + return; + + var grid = Comp(gridUid.Value); + var tile = _maps.GetTileRef(gridUid.Value, grid, coordinates); + + if (_tileDefManager[tile.Tile.TypeId] is not ContentTileDefinition tileDef + || !tileDef.CanShovel + || string.IsNullOrEmpty(tileDef.BaseTurf) + || _turfs.IsTileBlocked(tile, CollisionGroup.MobMask)) + { + return; + } + + _tiles.DigTile(tile); + } + + private void OnDiggingAfterInteract(EntityUid uid, EarthDiggingComponent component, + AfterInteractEvent args) + { + if (args.Handled || !args.CanReach || args.Target != null) + return; + + if (TryDig(args.User, uid, component, args.ClickLocation)) + args.Handled = true; + } + + private bool TryDig(EntityUid user, EntityUid shovel, EarthDiggingComponent component, + EntityCoordinates clickLocation) + { + ToolComponent? tool = null; + if (component.ToolComponentNeeded && !TryComp(shovel, out tool)) + return false; + + var mapUid = clickLocation.GetGridUid(EntityManager); + if (mapUid == null || !TryComp(mapUid, out MapGridComponent? mapGrid)) + return false; + + var tile = _maps.GetTileRef(mapUid.Value, mapGrid, clickLocation); + + var coordinates = _maps.GridTileToLocal(mapUid.Value, mapGrid, tile.GridIndices); + + if (!_interactionSystem.InRangeUnobstructed(user, coordinates, popup: false)) + return false; + + if (_tileDefManager[tile.Tile.TypeId] is not ContentTileDefinition tileDef + || !tileDef.CanShovel + || string.IsNullOrEmpty(tileDef.BaseTurf) + || _tileDefManager[tileDef.BaseTurf] is not ContentTileDefinition + || _turfs.IsTileBlocked(tile, CollisionGroup.MobMask)) + { + return false; + } + + var ev = new EarthDiggingDoAfterEvent(GetNetCoordinates(clickLocation)); + return _tools.UseTool( + shovel, + user, + target: shovel, + doAfterDelay: component.Delay, + toolQualitiesNeeded: new[] { component.QualityNeeded }, + doAfterEv: ev, + toolComponent: tool + ); + } +} diff --git a/Content.Server/Nyanotrasen/Item/PseudoItem/PseudoItemSystem.cs b/Content.Server/Nyanotrasen/Item/PseudoItem/PseudoItemSystem.cs index 7ef2da3b86..9f5bd596d7 100644 --- a/Content.Server/Nyanotrasen/Item/PseudoItem/PseudoItemSystem.cs +++ b/Content.Server/Nyanotrasen/Item/PseudoItem/PseudoItemSystem.cs @@ -1,18 +1,18 @@ -using System.Threading; -using Content.Shared.Verbs; -using Content.Shared.Item; -using Content.Shared.Hands; +using Content.Server.DoAfter; +using Content.Server.Storage.EntitySystems; using Content.Shared.DoAfter; +using Content.Shared.Hands; using Content.Shared.IdentityManagement; +using Content.Shared.Item; using Content.Shared.Item.PseudoItem; using Content.Shared.Storage; -using Content.Server.Storage.EntitySystems; -using Content.Server.DoAfter; using Content.Shared.Tag; +using Content.Shared.Verbs; using Robust.Shared.Containers; namespace Content.Server.Item.PseudoItem; -public sealed partial class PseudoItemSystem : EntitySystem + +public sealed class PseudoItemSystem : EntitySystem { [Dependency] private readonly StorageSystem _storageSystem = default!; [Dependency] private readonly ItemSystem _itemSystem = default!; @@ -31,6 +31,7 @@ public override void Initialize() SubscribeLocalEvent(OnGettingPickedUpAttempt); SubscribeLocalEvent(OnDropAttempt); SubscribeLocalEvent(OnDoAfter); + SubscribeLocalEvent(OnInsertAttempt); } private void AddInsertVerb(EntityUid uid, PseudoItemComponent component, GetVerbsEvent args) @@ -97,7 +98,8 @@ private void OnEntRemoved(EntityUid uid, PseudoItemComponent component, EntGotRe component.Active = false; } - private void OnGettingPickedUpAttempt(EntityUid uid, PseudoItemComponent component, GettingPickedUpAttemptEvent args) + private void OnGettingPickedUpAttempt(EntityUid uid, PseudoItemComponent component, + GettingPickedUpAttemptEvent args) { if (args.User == args.Item) return; @@ -111,6 +113,7 @@ private void OnDropAttempt(EntityUid uid, PseudoItemComponent component, DropAtt if (component.Active) args.Cancel(); } + private void OnDoAfter(EntityUid uid, PseudoItemComponent component, DoAfterEvent args) { if (args.Handled || args.Cancelled || args.Args.Used == null) @@ -119,7 +122,8 @@ private void OnDoAfter(EntityUid uid, PseudoItemComponent component, DoAfterEven args.Handled = TryInsert(args.Args.Used.Value, uid, component); } - public bool TryInsert(EntityUid storageUid, EntityUid toInsert, PseudoItemComponent component, StorageComponent? storage = null) + public bool TryInsert(EntityUid storageUid, EntityUid toInsert, PseudoItemComponent component, + StorageComponent? storage = null) { if (!Resolve(storageUid, ref storage)) return false; @@ -139,16 +143,17 @@ public bool TryInsert(EntityUid storageUid, EntityUid toInsert, PseudoItemCompon } component.Active = true; - Transform(storageUid).AttachToGridOrMap(); return true; } - private void StartInsertDoAfter(EntityUid inserter, EntityUid toInsert, EntityUid storageEntity, PseudoItemComponent? pseudoItem = null) + + private void StartInsertDoAfter(EntityUid inserter, EntityUid toInsert, EntityUid storageEntity, + PseudoItemComponent? pseudoItem = null) { if (!Resolve(toInsert, ref pseudoItem)) return; var ev = new PseudoItemInsertDoAfterEvent(); - var args = new DoAfterArgs(EntityManager, inserter, 5f, ev, toInsert, target: toInsert, used: storageEntity) + var args = new DoAfterArgs(EntityManager, inserter, 5f, ev, toInsert, toInsert, storageEntity) { BreakOnTargetMove = true, BreakOnUserMove = true, @@ -157,4 +162,13 @@ private void StartInsertDoAfter(EntityUid inserter, EntityUid toInsert, EntityUi _doAfter.TryStartDoAfter(args); } + + private void OnInsertAttempt(EntityUid uid, PseudoItemComponent component, + ContainerGettingInsertedAttemptEvent args) + { + if (!component.Active) + return; + // This hopefully shouldn't trigger, but this is a failsafe just in case so we dont bluespace them cats + args.Cancel(); + } } diff --git a/Content.Server/Nyanotrasen/Item/ShockCollar/ShockCollarSystem.cs b/Content.Server/Nyanotrasen/Item/ShockCollar/ShockCollarSystem.cs index d6bba3b0d7..0390bc19db 100644 --- a/Content.Server/Nyanotrasen/Item/ShockCollar/ShockCollarSystem.cs +++ b/Content.Server/Nyanotrasen/Item/ShockCollar/ShockCollarSystem.cs @@ -1,4 +1,5 @@ using Content.Shared.Mobs.Components; +using Content.Shared.Timing; using Content.Server.Explosion.EntitySystems; // Why is trigger under explosions by the way? Even doors already use it. using Content.Server.Electrocution; using Robust.Shared.Containers; @@ -9,6 +10,8 @@ public sealed partial class ShockCollarSystem : EntitySystem { [Dependency] private readonly SharedContainerSystem _container = default!; [Dependency] private readonly ElectrocutionSystem _electrocutionSystem = default!; + [Dependency] private readonly UseDelaySystem _useDelay = default!; + public override void Initialize() { base.Initialize(); @@ -25,6 +28,13 @@ private void OnTrigger(EntityUid uid, ShockCollarComponent component, TriggerEve if (!HasComp(containerEnt)) // If it's not a mob we don't care return; + // DeltaV: prevent clocks from instantly killing people + TryComp(uid, out var useDelay); + if (_useDelay.ActiveDelay(uid, useDelay)) + return; + + _useDelay.BeginDelay(uid, useDelay); + _electrocutionSystem.TryDoElectrocution(containerEnt, null, 5, TimeSpan.FromSeconds(2), true); } } diff --git a/Content.Server/Nyanotrasen/Kitchen/EntitySystems/DeepFryerSystem.cs b/Content.Server/Nyanotrasen/Kitchen/EntitySystems/DeepFryerSystem.cs index 3de18d6997..9279c1a2b3 100644 --- a/Content.Server/Nyanotrasen/Kitchen/EntitySystems/DeepFryerSystem.cs +++ b/Content.Server/Nyanotrasen/Kitchen/EntitySystems/DeepFryerSystem.cs @@ -10,7 +10,6 @@ using Robust.Shared.Timing; using Content.Server.Administration.Logs; using Content.Server.Atmos.Components; -using Content.Server.Atmos.Miasma; using Content.Server.Audio; using Content.Server.Body.Components; using Content.Server.Cargo.Systems; @@ -23,6 +22,7 @@ using Content.Server.Ghost.Roles.Components; using Content.Server.Kitchen.Components; using Content.Server.NPC.Components; +using Content.Server.Nutrition; using Content.Server.Nutrition.Components; using Content.Server.Nutrition.EntitySystems; using Content.Server.Paper; @@ -32,7 +32,7 @@ using Content.Server.Temperature.Components; using Content.Server.Temperature.Systems; using Content.Server.UserInterface; -using Content.Shared.Atmos.Miasma; +using Content.Shared.Atmos.Rotting; using Content.Shared.Buckle.Components; using Content.Shared.Chemistry.Components; using Content.Shared.Chemistry.Reagent; @@ -62,6 +62,8 @@ using FastAccessors; using Content.Shared.NPC; using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Construction; +using Robust.Shared.Audio.Systems; namespace Content.Server.Kitchen.EntitySystems { @@ -516,7 +518,7 @@ private void UpdateDeepFriedName(EntityUid uid, DeepFriedComponent component) ("entity", component.OriginalName))); break; default: - _metaDataSystem.SetEntityName(uid, Loc.GetString("deep-fried-burnt-item", + _metaDataSystem.SetEntityName(uid, Loc.GetString("deep-fried-burned-item", ("entity", component.OriginalName))); break; } diff --git a/Content.Server/Nyanotrasen/Mail/MailSystem.cs b/Content.Server/Nyanotrasen/Mail/MailSystem.cs index 58d8678ad8..2516352c32 100644 --- a/Content.Server/Nyanotrasen/Mail/MailSystem.cs +++ b/Content.Server/Nyanotrasen/Mail/MailSystem.cs @@ -44,6 +44,7 @@ using Content.Shared.StatusIcon; using Content.Shared.Storage; using Content.Shared.Tag; +using Robust.Shared.Audio.Systems; using Timer = Robust.Shared.Timing.Timer; namespace Content.Server.Mail diff --git a/Content.Server/Nyanotrasen/Psionics/Glimmer/GlimmerReactiveSystem.cs b/Content.Server/Nyanotrasen/Psionics/Glimmer/GlimmerReactiveSystem.cs index a164a19746..ddd5ac1158 100644 --- a/Content.Server/Nyanotrasen/Psionics/Glimmer/GlimmerReactiveSystem.cs +++ b/Content.Server/Nyanotrasen/Psionics/Glimmer/GlimmerReactiveSystem.cs @@ -17,6 +17,7 @@ using Content.Shared.Destructible; using Content.Shared.Construction.Components; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Random; using Robust.Shared.Physics.Components; @@ -228,13 +229,13 @@ private void OnUnanchorAttempt(EntityUid uid, SharedGlimmerReactiveComponent com public void BeamRandomNearProber(EntityUid prober, int targets, float range = 10f) { List targetList = new(); - foreach (var target in _entityLookupSystem.GetComponentsInRange(Transform(prober).Coordinates, range)) + foreach (var target in _entityLookupSystem.GetComponentsInRange(_transformSystem.GetMapCoordinates(prober), range)) { if (target.AllowedEffects.Contains("Electrocution")) targetList.Add(target.Owner); } - foreach(var reactive in _entityLookupSystem.GetComponentsInRange(Transform(prober).Coordinates, range)) + foreach(var reactive in _entityLookupSystem.GetComponentsInRange(_transformSystem.GetMapCoordinates(prober), range)) { targetList.Add(reactive.Owner); } diff --git a/Content.Server/Nyanotrasen/Psionics/PsionicsSystem.cs b/Content.Server/Nyanotrasen/Psionics/PsionicsSystem.cs index c451dac990..5a96af2e96 100644 --- a/Content.Server/Nyanotrasen/Psionics/PsionicsSystem.cs +++ b/Content.Server/Nyanotrasen/Psionics/PsionicsSystem.cs @@ -12,6 +12,7 @@ using Content.Server.NPC.Components; using Content.Server.NPC.Systems; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; using Robust.Shared.Configuration; using Robust.Shared.Random; @@ -29,6 +30,7 @@ public sealed class PsionicsSystem : EntitySystem [Dependency] private readonly ChatSystem _chat = default!; [Dependency] private readonly NpcFactionSystem _npcFactonSystem = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; /// /// Unfortunately, since spawning as a normal role and anything else is so different, @@ -69,7 +71,7 @@ private void OnMeleeHit(EntityUid uid, AntiPsionicWeaponComponent component, Mel { if (HasComp(entity)) { - SoundSystem.Play("/Audio/Effects/lightburn.ogg", Filter.Pvs(entity), entity); + _audio.PlayPvs("/Audio/Effects/lightburn.ogg", entity); args.ModifiersList.Add(component.Modifiers); if (_random.Prob(component.DisableChance)) _statusEffects.TryAddStatusEffect(entity, "PsionicsDisabled", TimeSpan.FromSeconds(10), true, "PsionicsDisabled"); diff --git a/Content.Server/Nyanotrasen/Research/Oracle/OracleComponent.cs b/Content.Server/Nyanotrasen/Research/Oracle/OracleComponent.cs index b876a06375..73d1a4ecc6 100644 --- a/Content.Server/Nyanotrasen/Research/Oracle/OracleComponent.cs +++ b/Content.Server/Nyanotrasen/Research/Oracle/OracleComponent.cs @@ -1,4 +1,6 @@ +using Content.Shared.Chemistry.Reagent; using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; namespace Content.Server.Research.Oracle; @@ -27,8 +29,8 @@ public sealed partial class OracleComponent : Component [ViewVariables(VVAccess.ReadWrite)] public EntityPrototype? LastDesiredPrototype = default!; - [DataField("rewardReagents")] - public static IReadOnlyList RewardReagents = new[] + [DataField("rewardReagents", customTypeSerializer: typeof(PrototypeIdListSerializer))] + public IReadOnlyList RewardReagents = new[] { "LotophagoiOil", "LotophagoiOil", "LotophagoiOil", "LotophagoiOil", "LotophagoiOil", "Wine", "Blood", "Ichor" }; diff --git a/Content.Server/Nyanotrasen/Research/Oracle/OracleSystem.cs b/Content.Server/Nyanotrasen/Research/Oracle/OracleSystem.cs index 2933df615e..8267aad972 100644 --- a/Content.Server/Nyanotrasen/Research/Oracle/OracleSystem.cs +++ b/Content.Server/Nyanotrasen/Research/Oracle/OracleSystem.cs @@ -128,7 +128,7 @@ private void OnInteractUsing(EntityUid uid, OracleComponent component, InteractU EntityManager.SpawnEntity("ResearchDisk5000", Transform(args.User).Coordinates); - DispenseLiquidReward(uid); + DispenseLiquidReward(uid, component); var i = _random.Next(1, 4); @@ -153,7 +153,7 @@ private bool CheckValidity(EntityPrototype given, EntityPrototype target) return false; } - private void DispenseLiquidReward(EntityUid uid) + private void DispenseLiquidReward(EntityUid uid, OracleComponent component) { if (!_solutionSystem.TryGetSolution(uid, OracleComponent.SolutionName, out var fountainSol)) return; @@ -171,7 +171,7 @@ private void DispenseLiquidReward(EntityUid uid) if (_random.Prob(0.2f)) reagent = _random.Pick(allReagents); else - reagent = _random.Pick(OracleComponent.RewardReagents); + reagent = _random.Pick(component.RewardReagents); sol.AddReagent(reagent, amount); diff --git a/Content.Server/Nyanotrasen/ReverseEngineering/ReverseEngineeringSystem.cs b/Content.Server/Nyanotrasen/ReverseEngineering/ReverseEngineeringSystem.cs index 7fc3f8c2d0..1722bfd98b 100644 --- a/Content.Server/Nyanotrasen/ReverseEngineering/ReverseEngineeringSystem.cs +++ b/Content.Server/Nyanotrasen/ReverseEngineering/ReverseEngineeringSystem.cs @@ -12,6 +12,7 @@ using Robust.Shared.Utility; using Robust.Shared.Timing; using Robust.Server.GameObjects; +using Robust.Shared.Audio.Systems; namespace Content.Server.ReverseEngineering; diff --git a/Content.Server/Nyanotrasen/StationEvents/Events/NoosphericFryRule.cs b/Content.Server/Nyanotrasen/StationEvents/Events/NoosphericFryRule.cs index bbb85e3a91..c04543d219 100644 --- a/Content.Server/Nyanotrasen/StationEvents/Events/NoosphericFryRule.cs +++ b/Content.Server/Nyanotrasen/StationEvents/Events/NoosphericFryRule.cs @@ -16,6 +16,7 @@ using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; using Content.Shared.Psionics.Glimmer; +using Robust.Shared.Audio.Systems; namespace Content.Server.StationEvents.Events; @@ -65,11 +66,11 @@ protected override void Started(EntityUid uid, NoosphericFryRuleComponent compon QueueDel(pair.worn.Owner); Spawn("Ash", Transform(pair.wearer).Coordinates); _popupSystem.PopupEntity(Loc.GetString("psionic-burns-up", ("item", pair.worn.Owner)), pair.wearer, Filter.Pvs(pair.worn.Owner), true, Shared.Popups.PopupType.MediumCaution); - _audioSystem.Play("/Audio/Effects/lightburn.ogg", Filter.Pvs(pair.worn.Owner), pair.worn.Owner, true); + _audioSystem.PlayEntity("/Audio/Effects/lightburn.ogg", Filter.Pvs(pair.worn.Owner), pair.worn.Owner, true); } else { _popupSystem.PopupEntity(Loc.GetString("psionic-burn-resist", ("item", pair.worn.Owner)), pair.wearer, Filter.Pvs(pair.worn.Owner), true, Shared.Popups.PopupType.SmallCaution); - _audioSystem.Play("/Audio/Effects/lightburn.ogg", Filter.Pvs(pair.worn.Owner), pair.worn.Owner, true); + _audioSystem.PlayEntity("/Audio/Effects/lightburn.ogg", Filter.Pvs(pair.worn.Owner), pair.worn.Owner, true); } DamageSpecifier damage = new(); diff --git a/Content.Server/Nyanotrasen/StationEvents/Events/PsionicCatGotYourTongueRule.cs b/Content.Server/Nyanotrasen/StationEvents/Events/PsionicCatGotYourTongueRule.cs index d629a995a4..63e0a435cb 100644 --- a/Content.Server/Nyanotrasen/StationEvents/Events/PsionicCatGotYourTongueRule.cs +++ b/Content.Server/Nyanotrasen/StationEvents/Events/PsionicCatGotYourTongueRule.cs @@ -7,6 +7,7 @@ using Content.Shared.Abilities.Psionics; using Content.Shared.StatusEffect; using Content.Shared.Mobs.Systems; +using Robust.Shared.Audio.Systems; namespace Content.Server.StationEvents.Events; diff --git a/Content.Server/Objectives/ObjectivesSystem.cs b/Content.Server/Objectives/ObjectivesSystem.cs index 3f7e92963a..bf5fe1d4d4 100644 --- a/Content.Server/Objectives/ObjectivesSystem.cs +++ b/Content.Server/Objectives/ObjectivesSystem.cs @@ -1,7 +1,10 @@ -using Content.Server.GameTicking; +using Content.Server.GameTicking; using Content.Server.GameTicking.Rules.Components; using Content.Server.Mind; +using Content.Server.Shuttles.Systems; +using Content.Shared.Cuffs.Components; using Content.Shared.Mind; +using Content.Shared.Mobs.Systems; using Content.Shared.Objectives.Components; using Content.Shared.Objectives.Systems; using Content.Shared.Random; @@ -18,6 +21,7 @@ public sealed class ObjectivesSystem : SharedObjectivesSystem [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly MindSystem _mind = default!; + [Dependency] private readonly EmergencyShuttleSystem _emergencyShuttle = default!; public override void Initialize() { @@ -71,12 +75,18 @@ private void OnRoundEndText(RoundEndTextAppendEvent ev) { // first get the total number of players that were in these game rules combined var total = 0; + var totalInCustody = 0; foreach (var (_, minds) in summary) { total += minds.Count; + totalInCustody += minds.Where(m => IsInCustody(m)).Count(); } var result = Loc.GetString("objectives-round-end-result", ("count", total), ("agent", agent)); + if (agent == Loc.GetString("traitor-round-end-agent-name")) + { + result += "\n" + Loc.GetString("objectives-round-end-result-in-custody", ("count", total), ("custody", totalInCustody), ("agent", agent)); + } // next add all the players with its own prepended text foreach (var (prepend, minds) in summary) { @@ -100,37 +110,22 @@ private void AddSummary(ref string result, string agent, List minds) if (!TryComp(mindId, out MindComponent? mind)) continue; - var name = mind.CharacterName; - _mind.TryGetSession(mindId, out var session); - var username = session?.Name; - - string title; - if (username != null) - { - if (name != null) - title = Loc.GetString("objectives-player-user-named", ("user", username), ("name", name)); - else - title = Loc.GetString("objectives-player-user", ("user", username)); - } - else - { - // nothing to identify the player by, just give up - if (name == null) - continue; - - title = Loc.GetString("objectives-player-named", ("name", name)); - } + var title = GetTitle(mindId, mind); + if (title == null) + continue; result += "\n"; + var custody = IsInCustody(mindId, mind) ? Loc.GetString("objectives-in-custody") + " " : ""; + var objectives = mind.AllObjectives.ToArray(); if (objectives.Length == 0) { - result += Loc.GetString("objectives-no-objectives", ("title", title), ("agent", agent)); + result += Loc.GetString("objectives-no-objectives", ("custody", custody), ("title", title), ("agent", agent)); continue; } - result += Loc.GetString("objectives-with-objectives", ("title", title), ("agent", agent)); + result += Loc.GetString("objectives-with-objectives", ("custody", custody), ("title", title), ("agent", agent)); foreach (var objectiveGroup in objectives.GroupBy(o => Comp(o).Issuer)) { @@ -197,6 +192,54 @@ private void AddSummary(ref string result, string agent, List minds) return null; } + + /// + /// Returns whether a target is considered 'in custody' (cuffed on the shuttle). + /// + private bool IsInCustody(EntityUid mindId, MindComponent? mind = null) + { + if (!Resolve(mindId, ref mind)) + return false; + + // Ghosting will not save you + bool originalEntityInCustody = false; + EntityUid? originalEntity = GetEntity(mind.OriginalOwnedEntity); + if (originalEntity.HasValue && originalEntity != mind.OwnedEntity) + { + originalEntityInCustody = TryComp(originalEntity, out var origCuffed) && origCuffed.CuffedHandCount > 0 + && _emergencyShuttle.IsTargetEscaping(originalEntity.Value); + } + + return originalEntityInCustody || (TryComp(mind.OwnedEntity, out var cuffed) && cuffed.CuffedHandCount > 0 + && _emergencyShuttle.IsTargetEscaping(mind.OwnedEntity.Value)); + } + + /// + /// Get the title for a player's mind used in round end. + /// + public string? GetTitle(EntityUid mindId, MindComponent? mind = null) + { + if (!Resolve(mindId, ref mind)) + return null; + + var name = mind.CharacterName; + _mind.TryGetSession(mindId, out var session); + var username = session?.Name; + + if (username != null) + { + if (name != null) + return Loc.GetString("objectives-player-user-named", ("user", username), ("name", name)); + + return Loc.GetString("objectives-player-user", ("user", username)); + } + + // nothing to identify the player by, just give up + if (name == null) + return null; + + return Loc.GetString("objectives-player-named", ("name", name)); + } } /// diff --git a/Content.Server/Objectives/Systems/NotJobRequirementSystem.cs b/Content.Server/Objectives/Systems/NotJobRequirementSystem.cs index c9539fcbf1..5c2b040463 100644 --- a/Content.Server/Objectives/Systems/NotJobRequirementSystem.cs +++ b/Content.Server/Objectives/Systems/NotJobRequirementSystem.cs @@ -1,4 +1,3 @@ -using Content.Server.Objectives.Components; using Content.Shared.Objectives.Components; using Content.Shared.Roles.Jobs; @@ -25,7 +24,7 @@ private void OnCheck(EntityUid uid, NotJobRequirementComponent comp, ref Require if (!TryComp(args.MindId, out var job)) return; - if (job.PrototypeId == comp.Job) + if (job.Prototype == comp.Job) args.Cancelled = true; } } diff --git a/Content.Server/PDA/Ringer/RingerSystem.cs b/Content.Server/PDA/Ringer/RingerSystem.cs index 7494d5e12c..f8aadac461 100644 --- a/Content.Server/PDA/Ringer/RingerSystem.cs +++ b/Content.Server/PDA/Ringer/RingerSystem.cs @@ -13,6 +13,8 @@ using Robust.Shared.Random; using Robust.Shared.Timing; using Robust.Shared.Utility; +using System.Linq; +using Robust.Server.Audio; namespace Content.Server.PDA.Ringer { @@ -203,7 +205,7 @@ public bool ToggleRingerUI(EntityUid uid, ICommonSession session) ringer.TimeElapsed -= NoteDelay; var ringerXform = Transform(uid); - _audio.Play( + _audio.PlayEntity( GetSound(ringer.Ringtone[ringer.NoteCount]), Filter.Empty().AddInRange(ringerXform.MapPosition, ringer.Range), uid, diff --git a/Content.Server/Paper/PaperComponent.cs b/Content.Server/Paper/PaperComponent.cs index 3cf011e34d..556a197fd4 100644 --- a/Content.Server/Paper/PaperComponent.cs +++ b/Content.Server/Paper/PaperComponent.cs @@ -16,6 +16,10 @@ public sealed partial class PaperComponent : SharedPaperComponent [DataField("stampedBy")] public List StampedBy { get; set; } = new(); + [DataField("canEdit")] + [ViewVariables(VVAccess.ReadWrite)] + public bool CanEdit { get; set; } = true; // DeltaV - Used for paper slips + /// /// Stamp to be displayed on the paper, state from beauracracy.rsi /// diff --git a/Content.Server/Paper/PaperSystem.cs b/Content.Server/Paper/PaperSystem.cs index 553bcaa0a2..6323754936 100644 --- a/Content.Server/Paper/PaperSystem.cs +++ b/Content.Server/Paper/PaperSystem.cs @@ -9,6 +9,9 @@ using Content.Shared.Tag; using Robust.Server.GameObjects; using Robust.Shared.Player; +using Robust.Shared.Utility; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using static Content.Shared.Paper.SharedPaperComponent; namespace Content.Server.Paper @@ -97,7 +100,9 @@ private void OnExamined(EntityUid uid, PaperComponent paperComp, ExaminedEvent a private void OnInteractUsing(EntityUid uid, PaperComponent paperComp, InteractUsingEvent args) { - if (_tagSystem.HasTag(args.Used, "Write") && paperComp.StampedBy.Count == 0) + // only allow editing if there are no stamps or when using a cyberpen + var editable = paperComp.StampedBy.Count == 0 || _tagSystem.HasTag(args.Used, "WriteIgnoreStamps"); + if (_tagSystem.HasTag(args.Used, "Write") && editable && paperComp.CanEdit) { var writeEvent = new PaperWriteEvent(uid, args.User); RaiseLocalEvent(args.Used, ref writeEvent); @@ -107,6 +112,7 @@ private void OnInteractUsing(EntityUid uid, PaperComponent paperComp, InteractUs paperComp.Mode = PaperAction.Write; _uiSystem.TryOpen(uid, PaperUiKey.Key, actor.PlayerSession); UpdateUserInterface(uid, paperComp, actor.PlayerSession); + args.Handled = true; return; } diff --git a/Content.Server/Parallax/BiomeSystem.Commands.cs b/Content.Server/Parallax/BiomeSystem.Commands.cs index 0a60a3f978..607345a00d 100644 --- a/Content.Server/Parallax/BiomeSystem.Commands.cs +++ b/Content.Server/Parallax/BiomeSystem.Commands.cs @@ -1,3 +1,4 @@ +using System.Linq; using Content.Server.Administration; using Content.Shared.Administration; using Content.Shared.Parallax.Biomes; @@ -5,6 +6,7 @@ using Content.Shared.Parallax.Biomes.Markers; using Robust.Shared.Console; using Robust.Shared.Map; +using Robust.Shared.Map.Components; namespace Content.Server.Parallax; @@ -27,14 +29,15 @@ private void BiomeClearCallback(IConsoleShell shell, string argstr, string[] arg int.TryParse(args[0], out var mapInt); var mapId = new MapId(mapInt); + var mapUid = _mapManager.GetMapEntityId(mapId); if (_mapManager.MapExists(mapId) || - !TryComp(_mapManager.GetMapEntityId(mapId), out var biome)) + !TryComp(mapUid, out var biome)) { return; } - ClearTemplate(biome); + ClearTemplate(mapUid, biome); } private CompletionResult BiomeClearCallbackHelper(IConsoleShell shell, string[] args) @@ -61,13 +64,14 @@ private void AddLayerCallback(IConsoleShell shell, string argstr, string[] args) } var mapId = new MapId(mapInt); + var mapUid = _mapManager.GetMapEntityId(mapId); - if (!_mapManager.MapExists(mapId) || !TryComp(_mapManager.GetMapEntityId(mapId), out var biome)) + if (!_mapManager.MapExists(mapId) || !TryComp(mapUid, out var biome)) { return; } - if (!_proto.TryIndex(args[1], out var template)) + if (!ProtoManager.TryIndex(args[1], out var template)) { return; } @@ -79,7 +83,7 @@ private void AddLayerCallback(IConsoleShell shell, string argstr, string[] args) int.TryParse(args[3], out offset); } - AddTemplate(biome, args[2], template, offset); + AddTemplate(mapUid, biome, args[2], template, offset); } private CompletionResult AddLayerCallbackHelp(IConsoleShell shell, string[] args) @@ -92,7 +96,7 @@ private CompletionResult AddLayerCallbackHelp(IConsoleShell shell, string[] args if (args.Length == 2) { return CompletionResult.FromHintOptions( - CompletionHelper.PrototypeIDs(proto: _proto), "Biome template"); + CompletionHelper.PrototypeIDs(proto: ProtoManager), "Biome template"); } if (args.Length == 3) @@ -146,25 +150,38 @@ private void AddMarkerLayerCallback(IConsoleShell shell, string argstr, string[] return; } - if (!_proto.HasIndex(args[1])) + if (!ProtoManager.HasIndex(args[1])) + { + return; + } + + if (!biome.MarkerLayers.Add(args[1])) { return; } - biome.MarkerLayers.Add(args[1]); + biome.ForcedMarkerLayers.Add(args[1]); } private CompletionResult AddMarkerLayerCallbackHelper(IConsoleShell shell, string[] args) { if (args.Length == 1) { - return CompletionResult.FromHintOptions(CompletionHelper.Components(args[0], EntityManager), "Biome"); + var allQuery = AllEntityQuery(); + var options = new List(); + + while (allQuery.MoveNext(out var mapComp, out _)) + { + options.Add(new CompletionOption(mapComp.MapId.ToString())); + } + + return CompletionResult.FromHintOptions(options, "Biome"); } if (args.Length == 2) { return CompletionResult.FromHintOptions( - CompletionHelper.PrototypeIDs(proto: _proto), "Marker"); + CompletionHelper.PrototypeIDs(proto: ProtoManager), "Marker"); } return CompletionResult.Empty; diff --git a/Content.Server/Parallax/BiomeSystem.cs b/Content.Server/Parallax/BiomeSystem.cs index c9017ac821..881663db56 100644 --- a/Content.Server/Parallax/BiomeSystem.cs +++ b/Content.Server/Parallax/BiomeSystem.cs @@ -1,9 +1,15 @@ using System.Numerics; using System.Threading.Tasks; +using Content.Server.Atmos; +using Content.Server.Atmos.Components; +using Content.Server.Atmos.EntitySystems; using Content.Server.Decals; using Content.Server.Ghost.Roles.Components; using Content.Server.Shuttles.Events; +using Content.Server.Shuttles.Systems; +using Content.Shared.Atmos; using Content.Shared.Decals; +using Content.Shared.Gravity; using Content.Shared.Parallax.Biomes; using Content.Shared.Parallax.Biomes.Layers; using Content.Shared.Parallax.Biomes.Markers; @@ -16,6 +22,9 @@ using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Noise; +using Robust.Shared.Physics; +using Robust.Shared.Physics.Components; +using Robust.Shared.Physics.Systems; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; @@ -32,11 +41,17 @@ public sealed partial class BiomeSystem : SharedBiomeSystem [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IParallelManager _parallel = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; - [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly ISerializationManager _serManager = default!; + [Dependency] private readonly AtmosphereSystem _atmos = default!; [Dependency] private readonly DecalSystem _decals = default!; + [Dependency] private readonly SharedMapSystem _mapSystem = default!; + [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly ShuttleSystem _shuttles = default!; + + private EntityQuery _biomeQuery; + private EntityQuery _fixturesQuery; + private EntityQuery _xformQuery; private readonly HashSet _handledEntities = new(); private const float DefaultLoadRange = 16f; @@ -61,20 +76,22 @@ public sealed partial class BiomeSystem : SharedBiomeSystem public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnBiomeStartup); + Log.Level = LogLevel.Debug; + _biomeQuery = GetEntityQuery(); + _fixturesQuery = GetEntityQuery(); + _xformQuery = GetEntityQuery(); SubscribeLocalEvent(OnBiomeMapInit); SubscribeLocalEvent(OnFTLStarted); SubscribeLocalEvent(OnShuttleFlatten); _configManager.OnValueChanged(CVars.NetMaxUpdateRange, SetLoadRange, true); InitializeCommands(); - _proto.PrototypesReloaded += ProtoReload; + SubscribeLocalEvent(ProtoReload); } public override void Shutdown() { base.Shutdown(); _configManager.UnsubValueChanged(CVars.NetMaxUpdateRange, SetLoadRange); - _proto.PrototypesReloaded -= ProtoReload; } private void ProtoReload(PrototypesReloadedEventArgs obj) @@ -84,12 +101,12 @@ private void ProtoReload(PrototypesReloadedEventArgs obj) var query = AllEntityQuery(); - while (query.MoveNext(out var biome)) + while (query.MoveNext(out var uid, out var biome)) { if (biome.Template == null || !reloads.Modified.TryGetValue(biome.Template, out var proto)) continue; - SetTemplate(biome, (BiomeTemplatePrototype) proto); + SetTemplate(uid, biome, (BiomeTemplatePrototype) proto); } } @@ -100,37 +117,66 @@ private void SetLoadRange(float obj) _loadArea = new Box2(-_loadRange, -_loadRange, _loadRange, _loadRange); } - private void OnBiomeStartup(EntityUid uid, BiomeComponent component, ComponentStartup args) - { - component.Noise.SetSeed(component.Seed); - } - private void OnBiomeMapInit(EntityUid uid, BiomeComponent component, MapInitEvent args) { - if (component.Seed != -1) - return; + if (component.Seed == -1) + { + SetSeed(uid, component, _random.Next()); + } + + var xform = Transform(uid); + var mapId = xform.MapID; + + if (mapId != MapId.Nullspace && TryComp(uid, out MapGridComponent? mapGrid)) + { + var setTiles = new List<(Vector2i Index, Tile tile)>(); + + foreach (var grid in _mapManager.GetAllMapGrids(mapId)) + { + var gridUid = grid.Owner; + + if (!_fixturesQuery.TryGetComponent(gridUid, out var fixtures)) + continue; + + // Don't want shuttles flying around now do we. + _shuttles.Disable(gridUid); + var pTransform = _physics.GetPhysicsTransform(gridUid); - SetSeed(component, _random.Next()); + foreach (var fixture in fixtures.Fixtures.Values) + { + for (var i = 0; i < fixture.Shape.ChildCount; i++) + { + var aabb = fixture.Shape.ComputeAABB(pTransform, i); + + setTiles.Clear(); + ReserveTiles(uid, aabb, setTiles); + } + } + } + } } - public void SetSeed(BiomeComponent component, int seed) + public void SetSeed(EntityUid uid, BiomeComponent component, int seed, bool dirty = true) { component.Seed = seed; - component.Noise.SetSeed(seed); - Dirty(component); + + if (dirty) + Dirty(uid, component); } - public void ClearTemplate(BiomeComponent component) + public void ClearTemplate(EntityUid uid, BiomeComponent component, bool dirty = true) { component.Layers.Clear(); component.Template = null; - Dirty(component); + + if (dirty) + Dirty(uid, component); } /// /// Sets the and refreshes layers. /// - public void SetTemplate(BiomeComponent component, BiomeTemplatePrototype template) + public void SetTemplate(EntityUid uid, BiomeComponent component, BiomeTemplatePrototype template, bool dirty = true) { component.Layers.Clear(); component.Template = template.ID; @@ -140,13 +186,14 @@ public void SetTemplate(BiomeComponent component, BiomeTemplatePrototype templat component.Layers.Add(layer); } - Dirty(component); + if (dirty) + Dirty(uid, component); } /// /// Adds the specified layer at the specified marker if it exists. /// - public void AddLayer(BiomeComponent component, string id, IBiomeLayer addedLayer, int seedOffset = 0) + public void AddLayer(EntityUid uid, BiomeComponent component, string id, IBiomeLayer addedLayer, int seedOffset = 0) { for (var i = 0; i < component.Layers.Count; i++) { @@ -160,25 +207,19 @@ public void AddLayer(BiomeComponent component, string id, IBiomeLayer addedLayer break; } - Dirty(component); + Dirty(uid, component); } - public void AddMarkerLayer(BiomeComponent component, string marker) + public void AddMarkerLayer(EntityUid uid, BiomeComponent component, string marker) { - if (!_proto.HasIndex(marker)) - { - // TODO: Log when we get a sawmill - return; - } - component.MarkerLayers.Add(marker); - Dirty(component); + Dirty(uid, component); } /// /// Adds the specified template at the specified marker if it exists, withour overriding every layer. /// - public void AddTemplate(BiomeComponent component, string id, BiomeTemplatePrototype template, int seedOffset = 0) + public void AddTemplate(EntityUid uid, BiomeComponent component, string id, BiomeTemplatePrototype template, int seedOffset = 0) { for (var i = 0; i < component.Layers.Count; i++) { @@ -197,7 +238,7 @@ public void AddTemplate(BiomeComponent component, string id, BiomeTemplateProtot break; } - Dirty(component); + Dirty(uid, component); } private void OnFTLStarted(ref FTLStartedEvent ev) @@ -234,7 +275,7 @@ private void OnShuttleFlatten(ref ShuttleFlattenEvent ev) var mod = biome.ModifiedTiles.GetOrNew(chunk * ChunkSize); - if (!mod.Add(index) || !TryGetBiomeTile(index, biome.Layers, biome.Noise, grid, out var tile)) + if (!mod.Add(index) || !TryGetBiomeTile(index, biome.Layers, biome.Seed, grid, out var tile)) continue; // If we flag it as modified then the tile is never set so need to do it ourselves. @@ -243,7 +284,7 @@ private void OnShuttleFlatten(ref ShuttleFlattenEvent ev) } } - grid.SetTiles(tiles); + _mapSystem.SetTiles(ev.MapUid, grid, tiles); } /// @@ -256,7 +297,7 @@ public void Preload(EntityUid uid, BiomeComponent component, Box2 area) foreach (var layer in markers) { - var proto = _proto.Index(layer); + var proto = ProtoManager.Index(layer); var enumerator = new ChunkIndicesEnumerator(area, proto.Size); while (enumerator.MoveNext(out var chunk)) @@ -271,8 +312,6 @@ public void Preload(EntityUid uid, BiomeComponent component, Box2 area) public override void Update(float frameTime) { base.Update(frameTime); - var biomeQuery = GetEntityQuery(); - var xformQuery = GetEntityQuery(); var biomes = AllEntityQuery(); while (biomes.MoveNext(out var biome)) @@ -284,17 +323,16 @@ public override void Update(float frameTime) // Get chunks in range foreach (var pSession in Filter.GetAllPlayers(_playerManager)) { - - if (xformQuery.TryGetComponent(pSession.AttachedEntity, out var xform) && + if (_xformQuery.TryGetComponent(pSession.AttachedEntity, out var xform) && _handledEntities.Add(pSession.AttachedEntity.Value) && - biomeQuery.TryGetComponent(xform.MapUid, out var biome)) + _biomeQuery.TryGetComponent(xform.MapUid, out var biome)) { - var worldPos = _transform.GetWorldPosition(xform, xformQuery); + var worldPos = _transform.GetWorldPosition(xform); AddChunksInRange(biome, worldPos); foreach (var layer in biome.MarkerLayers) { - var layerProto = _proto.Index(layer); + var layerProto = ProtoManager.Index(layer); AddMarkerChunksInRange(biome, worldPos, layerProto); } } @@ -302,18 +340,18 @@ public override void Update(float frameTime) foreach (var viewer in pSession.ViewSubscriptions) { if (!_handledEntities.Add(viewer) || - !xformQuery.TryGetComponent(viewer, out xform) || - !biomeQuery.TryGetComponent(xform.MapUid, out biome)) + !_xformQuery.TryGetComponent(viewer, out xform) || + !_biomeQuery.TryGetComponent(xform.MapUid, out biome)) { continue; } - var worldPos = _transform.GetWorldPosition(xform, xformQuery); + var worldPos = _transform.GetWorldPosition(xform); AddChunksInRange(biome, worldPos); foreach (var layer in biome.MarkerLayers) { - var layerProto = _proto.Index(layer); + var layerProto = ProtoManager.Index(layer); AddMarkerChunksInRange(biome, worldPos, layerProto); } } @@ -323,12 +361,10 @@ public override void Update(float frameTime) while (loadBiomes.MoveNext(out var gridUid, out var biome, out var grid)) { - var noise = biome.Noise; - // Load new chunks - LoadChunks(biome, gridUid, grid, noise, xformQuery); + LoadChunks(biome, gridUid, grid, biome.Seed, _xformQuery); // Unload old chunks - UnloadChunks(biome, gridUid, grid, noise); + UnloadChunks(biome, gridUid, grid, biome.Seed); } _handledEntities.Clear(); @@ -376,36 +412,43 @@ private void LoadChunks( BiomeComponent component, EntityUid gridUid, MapGridComponent grid, - FastNoiseLite noise, + int seed, EntityQuery xformQuery) { var markers = _markerChunks[component]; var loadedMarkers = component.LoadedMarkers; + var idx = 0; foreach (var (layer, chunks) in markers) { + // I know dictionary ordering isn't guaranteed but I just need something to differentiate seeds. + idx++; + var localIdx = idx; + Parallel.ForEach(chunks, new ParallelOptions() { MaxDegreeOfParallelism = _parallel.ParallelProcessCount }, chunk => { if (loadedMarkers.TryGetValue(layer, out var mobChunks) && mobChunks.Contains(chunk)) return; - var noiseCopy = new FastNoiseLite(); - _serManager.CopyTo(component.Noise, ref noiseCopy, notNullableOverride: true); + // Get the set of spawned nodes to avoid overlap. + var forced = component.ForcedMarkerLayers.Contains(layer); var spawnSet = _tilePool.Get(); var frontier = new ValueList(32); // Make a temporary version and copy back in later. var pending = new Dictionary>>(); - var layerProto = _proto.Index(layer); + var layerProto = ProtoManager.Index(layer); var buffer = layerProto.Radius / 2f; - var rand = new Random(noise.GetSeed() + chunk.X * 8 + chunk.Y + layerProto.GetHashCode()); + var markerSeed = seed + chunk.X * ChunkSize + chunk.Y + localIdx; + var rand = new Random(markerSeed); // We treat a null entity mask as requiring nothing else on the tile var lower = (int) Math.Floor(buffer); var upper = (int) Math.Ceiling(layerProto.Size - buffer); // TODO: Need poisson but crashes whenever I use moony's due to inputs or smth idk + // Get the total amount of groups to spawn across the entire chunk. var count = (int) ((layerProto.Size - buffer) * (layerProto.Size - buffer) / (layerProto.Radius * layerProto.Radius)); count = Math.Min(count, layerProto.MaxCount); @@ -414,14 +457,14 @@ private void LoadChunks( // It will bias edge tiles significantly more but will make the CPU cry less. for (var i = 0; i < count; i++) { - var groupCount = layerProto.GroupCount; + var groupSize = rand.Next(layerProto.MinGroupSize, layerProto.MaxGroupSize + 1); var startNodeX = rand.Next(lower, upper + 1); var startNodeY = rand.Next(lower, upper + 1); var startNode = new Vector2i(startNodeX, startNodeY); frontier.Clear(); frontier.Add(startNode + chunk); - while (groupCount > 0 && frontier.Count > 0) + while (groupSize >= 0 && frontier.Count > 0) { var frontierIndex = rand.Next(frontier.Count); var node = frontier[frontierIndex]; @@ -435,7 +478,7 @@ private void LoadChunks( if (x != 0 && y != 0) continue; - var neighbor = new Vector2i(x + node.X, y + node.Y); + var neighbor = new Vector2i(node.X + x, node.Y + y); var chunkOffset = neighbor - chunk; // Check if it's inbounds. @@ -455,19 +498,30 @@ private void LoadChunks( } // Check if it's a valid spawn, if so then use it. - var enumerator = grid.GetAnchoredEntitiesEnumerator(node); + var enumerator = _mapSystem.GetAnchoredEntitiesEnumerator(gridUid, grid, node); + enumerator.MoveNext(out var existing); - if (enumerator.MoveNext(out _)) + if (!forced && existing != null) continue; - // Check if mask matches. - TryGetEntity(node, component.Layers, noiseCopy, grid, out var proto); + // Check if mask matches // anything blocking. + TryGetEntity(node, component, grid, out var proto); + + // If there's an existing entity and it doesn't match the mask then skip. + if (layerProto.EntityMask.Count > 0 && + (proto == null || + !layerProto.EntityMask.ContainsKey(proto))) + { + continue; + } - if (proto != layerProto.EntityMask) + // If it's just a flat spawn then just check for anything blocking. + if (proto != null && layerProto.Prototype != null) { continue; } + DebugTools.Assert(layerProto.EntityMask.Count == 0 || !string.IsNullOrEmpty(proto)); var chunkOrigin = SharedMapSystem.GetChunkIndices(node, ChunkSize) * ChunkSize; if (!pending.TryGetValue(chunkOrigin, out var pendingMarkers)) @@ -482,9 +536,18 @@ private void LoadChunks( pendingMarkers[layer] = layerMarkers; } - // Log.Info($"Added node at {actualNode} for chunk {chunkOrigin}"); layerMarkers.Add(node); - groupCount--; + groupSize--; + spawnSet.Add(node); + + if (forced && existing != null) + { + // Just lock anything so we can dump this + lock (component.PendingMarkers) + { + Del(existing.Value); + } + } } } @@ -517,67 +580,97 @@ private void LoadChunks( }); } + component.ForcedMarkerLayers.Clear(); var active = _activeChunks[component]; List<(Vector2i, Tile)>? tiles = null; foreach (var chunk in active) { + LoadMarkerChunk(component, gridUid, grid, chunk, seed); + if (!component.LoadedChunks.Add(chunk)) continue; tiles ??= new List<(Vector2i, Tile)>(ChunkSize * ChunkSize); // Load NOW! - LoadChunk(component, gridUid, grid, chunk, noise, tiles, xformQuery); + LoadChunk(component, gridUid, grid, chunk, seed, tiles); } } - /// - /// Loads a particular queued chunk for a biome. - /// - private void LoadChunk( + private void LoadMarkerChunk( BiomeComponent component, EntityUid gridUid, MapGridComponent grid, Vector2i chunk, - FastNoiseLite noise, - List<(Vector2i, Tile)> tiles, - EntityQuery xformQuery) + int seed) { + // Load any pending marker tiles first. + if (!component.PendingMarkers.TryGetValue(chunk, out var layers)) + return; + + // This needs to be done separately in case we try to add a marker layer and want to force it on existing + // loaded chunks. component.ModifiedTiles.TryGetValue(chunk, out var modified); modified ??= _tilePool.Get(); - // Load any pending marker tiles first. - if (component.PendingMarkers.TryGetValue(chunk, out var layers)) + foreach (var (layer, nodes) in layers) { - foreach (var (layer, nodes) in layers) + var layerProto = ProtoManager.Index(layer); + + foreach (var node in nodes) { - var layerProto = _proto.Index(layer); + if (modified.Contains(node)) + continue; - foreach (var node in nodes) + // Need to ensure the tile under it has loaded for anchoring. + if (TryGetBiomeTile(node, component.Layers, seed, grid, out var tile)) { - if (modified.Contains(node)) - continue; + _mapSystem.SetTile(gridUid, grid, node, tile.Value); + } - // Need to ensure the tile under it has loaded for anchoring. - if (TryGetBiomeTile(node, component.Layers, component.Noise, grid, out var tile)) - { - grid.SetTile(node, tile.Value); - } + string? prototype; - // If it is a ghost role then purge it - // TODO: This is *kind* of a bandaid but natural mobs spawns needs a lot more work. - // Ideally we'd just have ghost role and non-ghost role variants for some stuff. - var uid = EntityManager.CreateEntityUninitialized(layerProto.Prototype, grid.GridTileToLocal(node)); - RemComp(uid); - RemComp(uid); - EntityManager.InitializeAndStartEntity(uid); - modified.Add(node); + if (TryGetEntity(node, component, grid, out var proto) && + layerProto.EntityMask.TryGetValue(proto, out var maskedProto)) + { + prototype = maskedProto; + } + else + { + prototype = layerProto.Prototype; } - } - component.PendingMarkers.Remove(chunk); + // If it is a ghost role then purge it + // TODO: This is *kind* of a bandaid but natural mobs spawns needs a lot more work. + // Ideally we'd just have ghost role and non-ghost role variants for some stuff. + var uid = EntityManager.CreateEntityUninitialized(prototype, _mapSystem.GridTileToLocal(gridUid, grid, node)); + RemComp(uid); + RemComp(uid); + EntityManager.InitializeAndStartEntity(uid); + modified.Add(node); + } } + if (modified.Count == 0) + _tilePool.Return(modified); + + component.PendingMarkers.Remove(chunk); + } + + /// + /// Loads a particular queued chunk for a biome. + /// + private void LoadChunk( + BiomeComponent component, + EntityUid gridUid, + MapGridComponent grid, + Vector2i chunk, + int seed, + List<(Vector2i, Tile)> tiles) + { + component.ModifiedTiles.TryGetValue(chunk, out var modified); + modified ??= _tilePool.Get(); + // Set tiles first for (var x = 0; x < ChunkSize; x++) { @@ -585,22 +678,22 @@ private void LoadChunk( { var indices = new Vector2i(x + chunk.X, y + chunk.Y); + // Pass in null so we don't try to get the tileref. if (modified.Contains(indices)) continue; // If there's existing data then don't overwrite it. - if (grid.TryGetTileRef(indices, out var tileRef) && !tileRef.Tile.IsEmpty) + if (_mapSystem.TryGetTileRef(gridUid, grid, indices, out var tileRef) && !tileRef.Tile.IsEmpty) continue; - // Pass in null so we don't try to get the tileref. - if (!TryGetBiomeTile(indices, component.Layers, noise, null, out var biomeTile) || biomeTile.Value == tileRef.Tile) + if (!TryGetBiomeTile(indices, component.Layers, seed, grid, out var biomeTile) || biomeTile.Value == tileRef.Tile) continue; tiles.Add((indices, biomeTile.Value)); } } - grid.SetTiles(tiles); + _mapSystem.SetTiles(gridUid, grid, tiles); tiles.Clear(); // Now do entities @@ -617,17 +710,17 @@ private void LoadChunk( continue; // Don't mess with anything that's potentially anchored. - var anchored = grid.GetAnchoredEntitiesEnumerator(indices); + var anchored = _mapSystem.GetAnchoredEntitiesEnumerator(gridUid, grid, indices); - if (anchored.MoveNext(out _) || !TryGetEntity(indices, component.Layers, noise, grid, out var entPrototype)) + if (anchored.MoveNext(out _) || !TryGetEntity(indices, component, grid, out var entPrototype)) continue; // TODO: Fix non-anchored ents spawning. // Just track loaded chunks for now. - var ent = Spawn(entPrototype, grid.GridTileToLocal(indices)); + var ent = Spawn(entPrototype, _mapSystem.GridTileToLocal(gridUid, grid, indices)); // At least for now unless we do lookups or smth, only work with anchoring. - if (xformQuery.TryGetComponent(ent, out var xform) && !xform.Anchored) + if (_xformQuery.TryGetComponent(ent, out var xform) && !xform.Anchored) { _transform.AnchorEntity(ent, xform, gridUid, grid, indices); } @@ -650,9 +743,9 @@ private void LoadChunk( continue; // Don't mess with anything that's potentially anchored. - var anchored = grid.GetAnchoredEntitiesEnumerator(indices); + var anchored = _mapSystem.GetAnchoredEntitiesEnumerator(gridUid, grid, indices); - if (anchored.MoveNext(out _) || !TryGetDecals(indices, component.Layers, noise, grid, out var decals)) + if (anchored.MoveNext(out _) || !TryGetDecals(indices, component.Layers, seed, grid, out var decals)) continue; foreach (var decal in decals) @@ -683,7 +776,7 @@ private void LoadChunk( /// /// Handles all of the queued chunk unloads for a particular biome. /// - private void UnloadChunks(BiomeComponent component, EntityUid gridUid, MapGridComponent grid, FastNoiseLite noise) + private void UnloadChunks(BiomeComponent component, EntityUid gridUid, MapGridComponent grid, int seed) { var active = _activeChunks[component]; List<(Vector2i, Tile)>? tiles = null; @@ -695,14 +788,14 @@ private void UnloadChunks(BiomeComponent component, EntityUid gridUid, MapGridCo // Unload NOW! tiles ??= new List<(Vector2i, Tile)>(ChunkSize * ChunkSize); - UnloadChunk(component, gridUid, grid, chunk, noise, tiles); + UnloadChunk(component, gridUid, grid, chunk, seed, tiles); } } /// /// Unloads a specific biome chunk. /// - private void UnloadChunk(BiomeComponent component, EntityUid gridUid, MapGridComponent grid, Vector2i chunk, FastNoiseLite noise, List<(Vector2i, Tile)> tiles) + private void UnloadChunk(BiomeComponent component, EntityUid gridUid, MapGridComponent grid, Vector2i chunk, int seed, List<(Vector2i, Tile)> tiles) { // Reverse order to loading component.ModifiedTiles.TryGetValue(chunk, out var modified); @@ -735,7 +828,7 @@ private void UnloadChunk(BiomeComponent component, EntityUid gridUid, MapGridCom } // It's moved - var entTile = grid.LocalToTile(xform.Coordinates); + var entTile = _mapSystem.LocalToTile(gridUid, grid, xform.Coordinates); if (!xform.Anchored || entTile != tile) { @@ -775,8 +868,8 @@ private void UnloadChunk(BiomeComponent component, EntityUid gridUid, MapGridCom } // If it's default data unload the tile. - if (!TryGetBiomeTile(indices, component.Layers, noise, null, out var biomeTile) || - grid.TryGetTileRef(indices, out var tileRef) && tileRef.Tile != biomeTile.Value) + if (!TryGetBiomeTile(indices, component.Layers, seed, null, out var biomeTile) || + _mapSystem.TryGetTileRef(gridUid, grid, indices, out var tileRef) && tileRef.Tile != biomeTile.Value) { modified.Add(indices); continue; @@ -801,4 +894,87 @@ private void UnloadChunk(BiomeComponent component, EntityUid gridUid, MapGridCom } #endregion + + /// + /// Creates a simple planet setup for a map. + /// + public void EnsurePlanet(EntityUid mapUid, BiomeTemplatePrototype biomeTemplate, int? seed = null, MetaDataComponent? metadata = null) + { + if (!Resolve(mapUid, ref metadata)) + return; + + EnsureComp(mapUid); + var biome = (BiomeComponent) EntityManager.ComponentFactory.GetComponent(typeof(BiomeComponent)); + seed ??= _random.Next(); + SetSeed(mapUid, biome, seed.Value, false); + SetTemplate(mapUid, biome, biomeTemplate, false); + AddComp(mapUid, biome, true); + Dirty(mapUid, biome, metadata); + + var gravity = EnsureComp(mapUid); + gravity.Enabled = true; + gravity.Inherent = true; + Dirty(mapUid, gravity, metadata); + + // Day lighting + // Daylight: #D8B059 + // Midday: #E6CB8B + // Moonlight: #2b3143 + // Lava: #A34931 + + var light = EnsureComp(mapUid); + light.AmbientLightColor = Color.FromHex("#D8B059"); + Dirty(mapUid, light, metadata); + + // Atmos + var atmos = EnsureComp(mapUid); + + var moles = new float[Atmospherics.AdjustedNumberOfGases]; + moles[(int) Gas.Oxygen] = 21.824779f; + moles[(int) Gas.Nitrogen] = 82.10312f; + + var mixture = new GasMixture(2500) + { + Temperature = 293.15f, + Moles = moles, + }; + + _atmos.SetMapAtmosphere(mapUid, false, mixture, atmos); + } + + /// + /// Sets the specified tiles as relevant and marks them as modified. + /// + public void ReserveTiles(EntityUid mapUid, Box2 bounds, List<(Vector2i Index, Tile Tile)> tiles, BiomeComponent? biome = null, MapGridComponent? mapGrid = null) + { + if (!Resolve(mapUid, ref biome, ref mapGrid, false)) + return; + + foreach (var tileSet in _mapSystem.GetLocalTilesIntersecting(mapUid, mapGrid, bounds, false)) + { + Vector2i chunkOrigin; + HashSet modified; + + // Existing, ignore + if (_mapSystem.TryGetTileRef(mapUid, mapGrid, tileSet.GridIndices, out var existingRef) && !existingRef.Tile.IsEmpty) + { + chunkOrigin = SharedMapSystem.GetChunkIndices(tileSet.GridIndices, ChunkSize) * ChunkSize; + modified = biome.ModifiedTiles.GetOrNew(chunkOrigin); + modified.Add(tileSet.GridIndices); + continue; + } + + if (!TryGetBiomeTile(tileSet.GridIndices, biome.Layers, biome.Seed, mapGrid, out var tile)) + { + continue; + } + + chunkOrigin = SharedMapSystem.GetChunkIndices(tileSet.GridIndices, ChunkSize) * ChunkSize; + modified = biome.ModifiedTiles.GetOrNew(chunkOrigin); + modified.Add(tileSet.GridIndices); + tiles.Add((tileSet.GridIndices, tile.Value)); + } + + _mapSystem.SetTiles(mapUid, mapGrid, tiles); + } } diff --git a/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorControlBoxComponent.cs b/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorControlBoxComponent.cs index 2adbbe05f7..b460e96acc 100644 --- a/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorControlBoxComponent.cs +++ b/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorControlBoxComponent.cs @@ -1,5 +1,6 @@ using Content.Server.ParticleAccelerator.Wires; using Content.Shared.Singularity.Components; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; namespace Content.Server.ParticleAccelerator.Components; @@ -167,6 +168,18 @@ public sealed partial class ParticleAcceleratorControlBoxComponent : Component [ViewVariables] public bool StrengthLocked = false; + /// + /// Time at which the admin alarm sound effect can next be played. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] + public TimeSpan EffectCooldown; + + /// + /// Time between admin alarm sound effects. Prevents spam + /// + [DataField] + public TimeSpan CooldownDuration = TimeSpan.FromSeconds(10f); + /// /// Whether the PA can be turned on. /// Modified by . diff --git a/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.ControlBox.cs b/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.ControlBox.cs index f200c991d7..5d373652a9 100644 --- a/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.ControlBox.cs +++ b/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.ControlBox.cs @@ -4,13 +4,21 @@ using Content.Shared.Singularity.Components; using Robust.Shared.Utility; using System.Diagnostics; +using Content.Server.Administration.Managers; using Content.Shared.CCVar; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Timing; using Robust.Shared.Player; namespace Content.Server.ParticleAccelerator.EntitySystems; public sealed partial class ParticleAcceleratorSystem { + [Dependency] private readonly IAdminManager _adminManager = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly IGameTiming _timing = default!; + private void InitializeControlBoxSystem() { SubscribeLocalEvent(OnComponentStartup); @@ -165,10 +173,17 @@ or ParticleAcceleratorPowerState.Level3 if (strength >= alertMinPowerState) { var pos = Transform(uid); - _chat.SendAdminAlert(player, Loc.GetString("particle-accelerator-admin-power-strength-warning", - ("machine", ToPrettyString(uid)), - ("powerState", strength), - ("coordinates", pos.Coordinates))); + if (_timing.CurTime > comp.EffectCooldown) + { + _chat.SendAdminAlert(player, Loc.GetString("particle-accelerator-admin-power-strength-warning", + ("machine", ToPrettyString(uid)), + ("powerState", strength), + ("coordinates", pos.Coordinates))); + _audio.PlayGlobal("/Audio/Misc/adminlarm.ogg", + Filter.Empty().AddPlayers(_adminManager.ActiveAdmins), false, + AudioParams.Default.WithVolume(-8f)); + comp.EffectCooldown = _timing.CurTime + comp.CooldownDuration; + } } } diff --git a/Content.Server/Physics/Controllers/MoverController.cs b/Content.Server/Physics/Controllers/MoverController.cs index f69b714477..08738b9abe 100644 --- a/Content.Server/Physics/Controllers/MoverController.cs +++ b/Content.Server/Physics/Controllers/MoverController.cs @@ -1,16 +1,14 @@ using System.Numerics; -using Content.Server.Cargo.Components; using Content.Server.Shuttle.Components; using Content.Server.Shuttles.Components; using Content.Server.Shuttles.Systems; using Content.Shared.Movement.Components; using Content.Shared.Movement.Systems; -using Content.Shared.Pulling.Components; using Content.Shared.Shuttles.Components; using Content.Shared.Shuttles.Systems; -using Robust.Server.GameObjects; using Robust.Shared.Map; using Robust.Shared.Physics.Components; +using Robust.Shared.Player; namespace Content.Server.Physics.Controllers { diff --git a/Content.Server/Pinpointer/ProximityBeeperSystem.cs b/Content.Server/Pinpointer/ProximityBeeperSystem.cs index d52223e2b4..d4175a1af5 100644 --- a/Content.Server/Pinpointer/ProximityBeeperSystem.cs +++ b/Content.Server/Pinpointer/ProximityBeeperSystem.cs @@ -2,6 +2,7 @@ using Content.Shared.Interaction.Events; using Content.Shared.Pinpointer; using Content.Shared.PowerCell; +using Robust.Server.Audio; using Robust.Server.GameObjects; using Robust.Shared.Timing; diff --git a/Content.Server/Placement/PlacementLoggerSystem.cs b/Content.Server/Placement/PlacementLoggerSystem.cs index b548f2c13c..d590754423 100644 --- a/Content.Server/Placement/PlacementLoggerSystem.cs +++ b/Content.Server/Placement/PlacementLoggerSystem.cs @@ -1,8 +1,8 @@ using Content.Server.Administration.Logs; using Content.Shared.Database; -using Robust.Server.GameObjects; using Robust.Shared.Map; using Robust.Shared.Placement; +using Robust.Shared.Player; namespace Content.Server.Placement; @@ -10,7 +10,7 @@ public sealed class PlacementLoggerSystem : EntitySystem { [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly ITileDefinitionManager _tileDefinitionManager = default!; - [Dependency] private readonly ActorSystem _actorSystem = default!; + [Dependency] private readonly ISharedPlayerManager _player = default!; public override void Initialize() { @@ -21,7 +21,8 @@ public override void Initialize() private void OnEntityPlacement(PlacementEntityEvent ev) { - _actorSystem.TryGetActorFromUserId(ev.PlacerNetUserId, out var actor, out var actorEntity); + _player.TryGetSessionById(ev.PlacerNetUserId, out var actor); + var actorEntity = actor?.AttachedEntity; var logType = ev.PlacementEventAction switch { @@ -43,7 +44,8 @@ private void OnEntityPlacement(PlacementEntityEvent ev) private void OnTilePlacement(PlacementTileEvent ev) { - _actorSystem.TryGetActorFromUserId(ev.PlacerNetUserId, out var actor, out var actorEntity); + _player.TryGetSessionById(ev.PlacerNetUserId, out var actor); + var actorEntity = actor?.AttachedEntity; if (actorEntity != null) _adminLogger.Add(LogType.Tile, LogImpact.High, diff --git a/Content.Server/Plants/Systems/PottedPlantHideSystem.cs b/Content.Server/Plants/Systems/PottedPlantHideSystem.cs index 91e544b796..09571c60a1 100644 --- a/Content.Server/Plants/Systems/PottedPlantHideSystem.cs +++ b/Content.Server/Plants/Systems/PottedPlantHideSystem.cs @@ -5,14 +5,16 @@ using Content.Shared.Audio; using Content.Shared.Interaction; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; namespace Content.Server.Plants.Systems { public sealed class PottedPlantHideSystem : EntitySystem { - [Dependency] private readonly SecretStashSystem _stashSystem = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; + [Dependency] private readonly SecretStashSystem _stashSystem = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; public override void Initialize() { @@ -58,7 +60,7 @@ private void Rustle(EntityUid uid, PottedPlantHideComponent? component = null) if (!Resolve(uid, ref component)) return; - SoundSystem.Play(component.RustleSound.GetSound(), Filter.Pvs(uid), uid, AudioHelpers.WithVariation(0.25f)); + _audio.PlayPvs(component.RustleSound, uid, AudioParams.Default.WithVariation(0.25f)); } } } diff --git a/Content.Server/Points/PointSystem.cs b/Content.Server/Points/PointSystem.cs index a71294db9d..b5f94d097e 100644 --- a/Content.Server/Points/PointSystem.cs +++ b/Content.Server/Points/PointSystem.cs @@ -25,7 +25,7 @@ public override void Initialize() private void OnStartup(EntityUid uid, PointManagerComponent component, ComponentStartup args) { - _pvsOverride.AddGlobalOverride(uid); + _pvsOverride.AddGlobalOverride(GetNetEntity(uid)); } /// diff --git a/Content.Server/Polymorph/Systems/PolymorphSystem.cs b/Content.Server/Polymorph/Systems/PolymorphSystem.cs index fbf4961f4f..5531f65409 100644 --- a/Content.Server/Polymorph/Systems/PolymorphSystem.cs +++ b/Content.Server/Polymorph/Systems/PolymorphSystem.cs @@ -15,6 +15,7 @@ using Content.Shared.Polymorph; using Content.Shared.Popups; using JetBrains.Annotations; +using Robust.Server.Audio; using Robust.Server.Containers; using Robust.Server.GameObjects; using Robust.Shared.Map; diff --git a/Content.Server/Power/EntitySystems/ApcSystem.cs b/Content.Server/Power/EntitySystems/ApcSystem.cs index 8d9a62cd73..95b5d74a94 100644 --- a/Content.Server/Power/EntitySystems/ApcSystem.cs +++ b/Content.Server/Power/EntitySystems/ApcSystem.cs @@ -10,6 +10,7 @@ using Content.Shared.Popups; using Robust.Server.GameObjects; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Timing; namespace Content.Server.Power.EntitySystems; diff --git a/Content.Server/Power/EntitySystems/ExtensionCableSystem.cs b/Content.Server/Power/EntitySystems/ExtensionCableSystem.cs index 9d68b60418..acfb8ff87b 100644 --- a/Content.Server/Power/EntitySystems/ExtensionCableSystem.cs +++ b/Content.Server/Power/EntitySystems/ExtensionCableSystem.cs @@ -145,7 +145,7 @@ private IEnumerable> FindAvailableReceiv if (!receiver.Connectable || receiver.Provider != null) continue; - if ((Transform(entity).LocalPosition - xform.LocalPosition).Length() < Math.Min(range, receiver.ReceptionRange)) + if ((Transform(entity).LocalPosition - xform.LocalPosition).Length() <= Math.Min(range, receiver.ReceptionRange)) yield return (entity, receiver); } } diff --git a/Content.Server/Power/EntitySystems/PowerNetSystem.cs b/Content.Server/Power/EntitySystems/PowerNetSystem.cs index c39fc7e5fe..07ecc2eafb 100644 --- a/Content.Server/Power/EntitySystems/PowerNetSystem.cs +++ b/Content.Server/Power/EntitySystems/PowerNetSystem.cs @@ -259,7 +259,7 @@ public override void Update(float frameTime) RaiseLocalEvent(new NetworkBatteryPreSync()); // Run power solver. - _solver.Tick(frameTime, _powerState, _parMan.ParallelProcessCount); + _solver.Tick(frameTime, _powerState, _parMan); // Synchronize batteries, the other way around. RaiseLocalEvent(new NetworkBatteryPostSync()); diff --git a/Content.Server/Power/EntitySystems/PowerReceiverSystem.cs b/Content.Server/Power/EntitySystems/PowerReceiverSystem.cs index f1f8bf0616..5ed39d5178 100644 --- a/Content.Server/Power/EntitySystems/PowerReceiverSystem.cs +++ b/Content.Server/Power/EntitySystems/PowerReceiverSystem.cs @@ -7,6 +7,7 @@ using Content.Shared.Hands.Components; using Content.Shared.Power; using Content.Shared.Verbs; +using Robust.Server.Audio; using Robust.Server.GameObjects; using Robust.Shared.Audio; using Robust.Shared.Utility; diff --git a/Content.Server/Power/Generation/Teg/TegSystem.cs b/Content.Server/Power/Generation/Teg/TegSystem.cs index 9219f5f73c..54f40a1bf3 100644 --- a/Content.Server/Power/Generation/Teg/TegSystem.cs +++ b/Content.Server/Power/Generation/Teg/TegSystem.cs @@ -97,7 +97,7 @@ private void GeneratorExamined(EntityUid uid, TegGeneratorComponent component, E } } - private void GeneratorUpdate(EntityUid uid, TegGeneratorComponent component, AtmosDeviceUpdateEvent args) + private void GeneratorUpdate(EntityUid uid, TegGeneratorComponent component, ref AtmosDeviceUpdateEvent args) { var tegGroup = GetNodeGroup(uid); if (tegGroup is not { IsFullyBuilt: true }) @@ -120,8 +120,8 @@ private void GeneratorUpdate(EntityUid uid, TegGeneratorComponent component, Atm var (airA, δpA) = GetCirculatorAirTransfer(inletA.Air, outletA.Air); var (airB, δpB) = GetCirculatorAirTransfer(inletB.Air, outletB.Air); - var cA = _atmosphere.GetHeatCapacity(airA); - var cB = _atmosphere.GetHeatCapacity(airB); + var cA = _atmosphere.GetHeatCapacity(airA, true); + var cB = _atmosphere.GetHeatCapacity(airB, true); // Shift ramp position based on demand and generation from previous tick. var curRamp = component.RampPosition; @@ -279,6 +279,10 @@ private void UpdateCirculatorAppearance(EntityUid uid, bool powered) private void GeneratorPowerChange(EntityUid uid, TegGeneratorComponent component, ref PowerChangedEvent args) { + // TODO: I wish power events didn't go out on shutdown. + if (TerminatingOrDeleted(uid)) + return; + var nodeGroup = GetNodeGroup(uid); if (nodeGroup == null) return; diff --git a/Content.Server/Power/Generator/GasPowerReceiverSystem.cs b/Content.Server/Power/Generator/GasPowerReceiverSystem.cs index 603cbd769a..c61599edfc 100644 --- a/Content.Server/Power/Generator/GasPowerReceiverSystem.cs +++ b/Content.Server/Power/Generator/GasPowerReceiverSystem.cs @@ -22,7 +22,7 @@ public override void Initialize() SubscribeLocalEvent(OnDeviceUpdated); } - private void OnDeviceUpdated(EntityUid uid, GasPowerReceiverComponent component, AtmosDeviceUpdateEvent args) + private void OnDeviceUpdated(EntityUid uid, GasPowerReceiverComponent component, ref AtmosDeviceUpdateEvent args) { var timeDelta = args.dt; diff --git a/Content.Server/Power/Generator/PortableGeneratorSystem.cs b/Content.Server/Power/Generator/PortableGeneratorSystem.cs index 1180665ad1..031e19b65d 100644 --- a/Content.Server/Power/Generator/PortableGeneratorSystem.cs +++ b/Content.Server/Power/Generator/PortableGeneratorSystem.cs @@ -3,6 +3,7 @@ using Content.Shared.DoAfter; using Content.Shared.Power.Generator; using Content.Shared.Verbs; +using Robust.Server.Audio; using Robust.Server.GameObjects; using Robust.Shared.Player; using Robust.Shared.Random; @@ -97,7 +98,7 @@ private void GeneratorTugged(EntityUid uid, PortableGeneratorComponent component var clogged = _generator.GetIsClogged(uid); var sound = empty ? component.StartSoundEmpty : component.StartSound; - _audio.Play(sound, Filter.Pvs(uid), uid, true); + _audio.PlayEntity(sound, Filter.Pvs(uid), uid, true); if (!clogged && !empty && _random.Prob(component.StartChance)) { diff --git a/Content.Server/Power/Generator/PowerSwitchableSystem.cs b/Content.Server/Power/Generator/PowerSwitchableSystem.cs index ae7960cf8f..7c377ef66e 100644 --- a/Content.Server/Power/Generator/PowerSwitchableSystem.cs +++ b/Content.Server/Power/Generator/PowerSwitchableSystem.cs @@ -6,8 +6,7 @@ using Content.Shared.Power.Generator; using Content.Shared.Timing; using Content.Shared.Verbs; -using Robust.Server.GameObjects; -using Robust.Shared.Player; +using Robust.Shared.Audio.Systems; using Robust.Shared.Utility; namespace Content.Server.Power.Generator; @@ -20,9 +19,9 @@ namespace Content.Server.Power.Generator; /// public sealed class PowerSwitchableSystem : SharedPowerSwitchableSystem { - [Dependency] private readonly AudioSystem _audio = default!; [Dependency] private readonly NodeGroupSystem _nodeGroup = default!; [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly UseDelaySystem _useDelay = default!; public override void Initialize() diff --git a/Content.Server/Power/Pow3r/BatteryRampPegSolver.cs b/Content.Server/Power/Pow3r/BatteryRampPegSolver.cs index d0c0a297b4..5d52bde377 100644 --- a/Content.Server/Power/Pow3r/BatteryRampPegSolver.cs +++ b/Content.Server/Power/Pow3r/BatteryRampPegSolver.cs @@ -1,14 +1,22 @@ -using Pidgin; using Robust.Shared.Utility; using System.Linq; -using System.Runtime.CompilerServices; -using System.Threading.Tasks; +using Robust.Shared.Threading; using static Content.Server.Power.Pow3r.PowerState; namespace Content.Server.Power.Pow3r { public sealed class BatteryRampPegSolver : IPowerSolver { + private UpdateNetworkJob _networkJob; + + public BatteryRampPegSolver() + { + _networkJob = new() + { + Solver = this, + }; + } + private sealed class HeightComparer : Comparer { public static HeightComparer Instance { get; } = new(); @@ -21,15 +29,16 @@ public override int Compare(Network? x, Network? y) } } - public void Tick(float frameTime, PowerState state, int parallel) + public void Tick(float frameTime, PowerState state, IParallelManager parallel) { ClearLoadsAndSupplies(state); state.GroupedNets ??= GroupByNetworkDepth(state); DebugTools.Assert(state.GroupedNets.Select(x => x.Count).Sum() == state.Networks.Count); + _networkJob.State = state; + _networkJob.FrameTime = frameTime; // Each network height layer can be run in parallel without issues. - var opts = new ParallelOptions { MaxDegreeOfParallelism = parallel }; foreach (var group in state.GroupedNets) { // Note that many net-layers only have a handful of networks. @@ -44,7 +53,8 @@ public void Tick(float frameTime, PowerState state, int parallel) // TODO make GroupByNetworkDepth evaluate the TOTAL size of each layer (i.e. loads + chargers + // suppliers + discharger) Then decide based on total layer size whether its worth parallelizing that // layer? - Parallel.ForEach(group, opts, net => UpdateNetwork(net, state, frameTime)); + _networkJob.Networks = group; + parallel.ProcessNow(_networkJob, group.Count); } ClearBatteries(state); @@ -344,5 +354,24 @@ private static void RecursivelyEstimateNetworkDepth(PowerState state, Network ne else groupedNetworks[network.Height].Add(network); } + + #region Jobs + + private record struct UpdateNetworkJob : IParallelRobustJob + { + public int BatchSize => 4; + + public BatteryRampPegSolver Solver; + public PowerState State; + public float FrameTime; + public List Networks; + + public void Execute(int index) + { + Solver.UpdateNetwork(Networks[index], State, FrameTime); + } + } + + #endregion } } diff --git a/Content.Server/Power/Pow3r/IPowerSolver.cs b/Content.Server/Power/Pow3r/IPowerSolver.cs index d386888f0a..bcc33212ae 100644 --- a/Content.Server/Power/Pow3r/IPowerSolver.cs +++ b/Content.Server/Power/Pow3r/IPowerSolver.cs @@ -1,7 +1,9 @@ +using Robust.Shared.Threading; + namespace Content.Server.Power.Pow3r { public interface IPowerSolver { - void Tick(float frameTime, PowerState state, int parallel); + void Tick(float frameTime, PowerState state, IParallelManager parallel); } } diff --git a/Content.Server/Power/Pow3r/NoOpSolver.cs b/Content.Server/Power/Pow3r/NoOpSolver.cs index 2a714e49fd..d82de3fd57 100644 --- a/Content.Server/Power/Pow3r/NoOpSolver.cs +++ b/Content.Server/Power/Pow3r/NoOpSolver.cs @@ -1,8 +1,10 @@ +using Robust.Shared.Threading; + namespace Content.Server.Power.Pow3r { public sealed class NoOpSolver : IPowerSolver { - public void Tick(float frameTime, PowerState state, int parallel) + public void Tick(float frameTime, PowerState state, IParallelManager parallel) { // Literally nothing. } diff --git a/Content.Server/PowerCell/PowerCellSystem.Draw.cs b/Content.Server/PowerCell/PowerCellSystem.Draw.cs index 9d73138346..c6d8e1e709 100644 --- a/Content.Server/PowerCell/PowerCellSystem.Draw.cs +++ b/Content.Server/PowerCell/PowerCellSystem.Draw.cs @@ -22,7 +22,7 @@ public override void Update(float frameTime) if (!comp.Drawing) continue; - if (_timing.CurTime < comp.NextUpdateTime) + if (Timing.CurTime < comp.NextUpdateTime) continue; comp.NextUpdateTime += Delay; diff --git a/Content.Server/PowerCell/PowerCellSystem.cs b/Content.Server/PowerCell/PowerCellSystem.cs index 1cfb4d1d70..b424f34de5 100644 --- a/Content.Server/PowerCell/PowerCellSystem.cs +++ b/Content.Server/PowerCell/PowerCellSystem.cs @@ -1,9 +1,5 @@ -using Content.Server.Administration.Logs; -using Content.Server.Chemistry.EntitySystems; -using Content.Server.Explosion.EntitySystems; using Content.Server.Emp; using Content.Server.Power.Components; -using Content.Shared.Database; using Content.Shared.Examine; using Content.Shared.PowerCell; using Content.Shared.PowerCell.Components; @@ -15,7 +11,6 @@ using Content.Server.UserInterface; using Content.Shared.Containers.ItemSlots; using Content.Shared.Popups; -using Robust.Shared.Timing; namespace Content.Server.PowerCell; @@ -24,7 +19,6 @@ namespace Content.Server.PowerCell; /// public sealed partial class PowerCellSystem : SharedPowerCellSystem { - [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly ActivatableUISystem _activatable = default!; [Dependency] private readonly BatterySystem _battery = default!; [Dependency] private readonly SharedContainerSystem _containerSystem = default!; @@ -95,12 +89,8 @@ protected override void OnCellRemoved(EntityUid uid, PowerCellSlotComponent comp } #region Activatable - - /// - /// Returns whether the entity has a slotted battery and charge. - /// - /// Popup to this user with the relevant detail if specified. - public bool HasActivatableCharge(EntityUid uid, PowerCellDrawComponent? battery = null, PowerCellSlotComponent? cell = null, EntityUid? user = null) + /// + public override bool HasActivatableCharge(EntityUid uid, PowerCellDrawComponent? battery = null, PowerCellSlotComponent? cell = null, EntityUid? user = null) { // Default to true if we don't have the components. if (!Resolve(uid, ref battery, ref cell, false)) @@ -108,6 +98,7 @@ public bool HasActivatableCharge(EntityUid uid, PowerCellDrawComponent? battery return HasCharge(uid, battery.UseRate, cell, user); } + /// /// Tries to use the for this entity. /// @@ -128,11 +119,12 @@ public bool TryUseActivatableCharge(EntityUid uid, PowerCellDrawComponent? batte return false; } - /// - /// Whether the power cell has any power at all for the draw rate. - /// - public bool HasDrawCharge(EntityUid uid, PowerCellDrawComponent? battery = null, - PowerCellSlotComponent? cell = null, EntityUid? user = null) + /// + public override bool HasDrawCharge( + EntityUid uid, + PowerCellDrawComponent? battery = null, + PowerCellSlotComponent? cell = null, + EntityUid? user = null) { if (!Resolve(uid, ref battery, ref cell, false)) return true; @@ -142,15 +134,6 @@ public bool HasDrawCharge(EntityUid uid, PowerCellDrawComponent? battery = null, #endregion - public void SetPowerCellDrawEnabled(EntityUid uid, bool enabled, PowerCellDrawComponent? component = null) - { - if (!Resolve(uid, ref component, false) || enabled == component.Drawing) - return; - - component.Drawing = enabled; - component.NextUpdateTime = _timing.CurTime; - } - /// /// Returns whether the entity has a slotted battery and charge for the requested action. /// diff --git a/Content.Server/PowerSink/PowerSinkSystem.cs b/Content.Server/PowerSink/PowerSinkSystem.cs index e5a118b07e..deb6693500 100644 --- a/Content.Server/PowerSink/PowerSinkSystem.cs +++ b/Content.Server/PowerSink/PowerSinkSystem.cs @@ -6,6 +6,7 @@ using Content.Server.Station.Systems; using Robust.Shared.Timing; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; namespace Content.Server.PowerSink { diff --git a/Content.Server/Procedural/DungeonSystem.cs b/Content.Server/Procedural/DungeonSystem.cs index 0fb343cdfc..ba69f1ea5f 100644 --- a/Content.Server/Procedural/DungeonSystem.cs +++ b/Content.Server/Procedural/DungeonSystem.cs @@ -6,6 +6,7 @@ using Content.Server.GameTicking.Events; using Content.Shared.CCVar; using Content.Shared.Construction.EntitySystems; +using Content.Shared.GameTicking; using Content.Shared.Physics; using Content.Shared.Procedural; using Robust.Server.GameObjects; @@ -47,7 +48,8 @@ public override void Initialize() _console.RegisterCommand("dungen", Loc.GetString("cmd-dungen-desc"), Loc.GetString("cmd-dungen-help"), GenerateDungeon, CompletionCallback); _console.RegisterCommand("dungen_preset_vis", Loc.GetString("cmd-dungen_preset_vis-desc"), Loc.GetString("cmd-dungen_preset_vis-help"), DungeonPresetVis, PresetCallback); _console.RegisterCommand("dungen_pack_vis", Loc.GetString("cmd-dungen_pack_vis-desc"), Loc.GetString("cmd-dungen_pack_vis-help"), DungeonPackVis, PackCallback); - _prototype.PrototypesReloaded += PrototypeReload; + SubscribeLocalEvent(PrototypeReload); + SubscribeLocalEvent(OnRoundCleanup); SubscribeLocalEvent(OnRoundStart); } @@ -57,7 +59,7 @@ public override void Update(float frameTime) _dungeonJobQueue.Process(); } - private void OnRoundStart(RoundStartingEvent ev) + private void OnRoundCleanup(RoundRestartCleanupEvent ev) { foreach (var token in _dungeonJobs.Values) { @@ -65,6 +67,10 @@ private void OnRoundStart(RoundStartingEvent ev) } _dungeonJobs.Clear(); + } + + private void OnRoundStart(RoundStartingEvent ev) + { var query = AllEntityQuery(); while (query.MoveNext(out var uid, out _)) @@ -85,8 +91,6 @@ private void OnRoundStart(RoundStartingEvent ev) public override void Shutdown() { base.Shutdown(); - _prototype.PrototypesReloaded -= PrototypeReload; - foreach (var token in _dungeonJobs.Values) { token.Cancel(); @@ -192,7 +196,6 @@ public void GenerateDungeon(DungeonConfigPrototype gen, _dungeonJobs.Add(job, cancelToken); _dungeonJobQueue.EnqueueJob(job); - job.Run(); } public async Task GenerateDungeonAsync( diff --git a/Content.Server/Projectiles/ProjectileSystem.cs b/Content.Server/Projectiles/ProjectileSystem.cs index b8a6b8c5b2..1d256071d6 100644 --- a/Content.Server/Projectiles/ProjectileSystem.cs +++ b/Content.Server/Projectiles/ProjectileSystem.cs @@ -7,6 +7,7 @@ using Content.Shared.Projectiles; using Robust.Server.GameObjects; using Robust.Shared.Physics.Events; +using Content.Shared.Mobs.Components; using Robust.Shared.Player; namespace Content.Server.Projectiles; @@ -70,7 +71,18 @@ private void OnStartCollide(EntityUid uid, ProjectileComponent component, ref St component.DamagedEntity = true; - if (component.DeleteOnCollide) + if (component.DeleteOnCollide ) + { + QueueDel(uid); + } + if (component.CanPenetrate) + { + component.DamagedEntity = false; + + if (!TryComp(target, out var mobState)) + QueueDel(uid); + } + else if (component.DeleteOnCollide && !component.CanPenetrate) { QueueDel(uid); } diff --git a/Content.Server/Radiation/Systems/GeigerSystem.cs b/Content.Server/Radiation/Systems/GeigerSystem.cs index 3a2fe12549..f889336a06 100644 --- a/Content.Server/Radiation/Systems/GeigerSystem.cs +++ b/Content.Server/Radiation/Systems/GeigerSystem.cs @@ -5,6 +5,7 @@ using Content.Shared.Inventory.Events; using Content.Shared.Radiation.Components; using Content.Shared.Radiation.Systems; +using Robust.Server.Audio; using Robust.Server.GameObjects; using Robust.Server.Player; @@ -149,7 +150,7 @@ private void UpdateSound(EntityUid uid, GeigerComponent? component = null) if (!Resolve(uid, ref component, false)) return; - component.Stream?.Stop(); + component.Stream = _audio.Stop(component.Stream); if (!component.Sounds.TryGetValue(component.DangerLevel, out var sounds)) return; @@ -163,7 +164,7 @@ private void UpdateSound(EntityUid uid, GeigerComponent? component = null) var sound = _audio.GetSound(sounds); var param = sounds.Params.WithLoop(true).WithVolume(-4f); - component.Stream = _audio.PlayGlobal(sound, session, param); + component.Stream = _audio.PlayGlobal(sound, session, param)?.Entity; } public static GeigerDangerLevel RadsToLevel(float rads) diff --git a/Content.Server/Radiation/Systems/RadiationSystem.GridCast.cs b/Content.Server/Radiation/Systems/RadiationSystem.GridCast.cs index 1be8f0fb04..b8193c4d2f 100644 --- a/Content.Server/Radiation/Systems/RadiationSystem.GridCast.cs +++ b/Content.Server/Radiation/Systems/RadiationSystem.GridCast.cs @@ -44,6 +44,9 @@ private void UpdateGridcast() var sourcesData = new ValueList<(EntityUid, RadiationSourceComponent, TransformComponent, Vector2)>(); while (sources.MoveNext(out var uid, out var source, out var sourceTrs)) { + if (!source.Enabled) + continue; + var worldPos = _transform.GetWorldPosition(sourceTrs, transformQuery); var data = (uid, source, sourceTrs, worldPos); sourcesData.Add(data); diff --git a/Content.Server/Radiation/Systems/RadiationSystem.cs b/Content.Server/Radiation/Systems/RadiationSystem.cs index 8e774c788d..ffb7ab1a11 100644 --- a/Content.Server/Radiation/Systems/RadiationSystem.cs +++ b/Content.Server/Radiation/Systems/RadiationSystem.cs @@ -1,4 +1,5 @@ using Content.Server.Radiation.Components; +using Content.Shared.Radiation.Components; using Content.Shared.Radiation.Events; using Robust.Shared.Configuration; using Robust.Shared.Map; @@ -45,6 +46,14 @@ public void IrradiateEntity(EntityUid uid, float radsPerSecond, float time) RaiseLocalEvent(uid, msg); } + public void SetSourceEnabled(Entity entity, bool val) + { + if (!Resolve(entity, ref entity.Comp, false)) + return; + + entity.Comp.Enabled = val; + } + /// /// Marks entity to receive/ignore radiation rays. /// diff --git a/Content.Server/Radio/Components/ActiveRadioComponent.cs b/Content.Server/Radio/Components/ActiveRadioComponent.cs index 6428c0946e..b0a2adbf91 100644 --- a/Content.Server/Radio/Components/ActiveRadioComponent.cs +++ b/Content.Server/Radio/Components/ActiveRadioComponent.cs @@ -15,6 +15,13 @@ public sealed partial class ActiveRadioComponent : Component [DataField("channels", customTypeSerializer: typeof(PrototypeIdHashSetSerializer))] public HashSet Channels = new(); + /// + /// A toggle for globally receiving all radio channels. + /// Overrides + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public bool ReceiveAllChannels; + /// /// If this radio can hear all messages on all maps /// diff --git a/Content.Server/Radio/EntitySystems/RadioSystem.cs b/Content.Server/Radio/EntitySystems/RadioSystem.cs index fa00514e61..3e0ecfba48 100644 --- a/Content.Server/Radio/EntitySystems/RadioSystem.cs +++ b/Content.Server/Radio/EntitySystems/RadioSystem.cs @@ -10,6 +10,7 @@ using Robust.Shared.Map; using Robust.Shared.Network; using Robust.Shared.Player; +using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Replays; using Robust.Shared.Utility; @@ -24,6 +25,7 @@ public sealed class RadioSystem : EntitySystem [Dependency] private readonly INetManager _netMan = default!; [Dependency] private readonly IReplayRecordingManager _replay = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; + [Dependency] private readonly IPrototypeManager _prototype = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ChatSystem _chat = default!; @@ -52,12 +54,20 @@ private void OnIntrinsicReceive(EntityUid uid, IntrinsicRadioReceiverComponent c _netMan.ServerSendMessage(args.ChatMsg, actor.PlayerSession.ConnectedClient); } + /// + /// Send radio message to all active radio listeners + /// + public void SendRadioMessage(EntityUid messageSource, string message, ProtoId channel, EntityUid radioSource, bool escapeMarkup = true) + { + SendRadioMessage(messageSource, message, _prototype.Index(channel), radioSource, escapeMarkup: escapeMarkup); + } + /// /// Send radio message to all active radio listeners /// /// Entity that spoke the message /// Entity that picked up the message and will send it, e.g. headset - public void SendRadioMessage(EntityUid messageSource, string message, RadioChannelPrototype channel, EntityUid radioSource) + public void SendRadioMessage(EntityUid messageSource, string message, RadioChannelPrototype channel, EntityUid radioSource, bool escapeMarkup = true) { // TODO if radios ever garble / modify messages, feedback-prevention needs to be handled better than this. if (!_messages.Add(message)) @@ -67,9 +77,16 @@ public void SendRadioMessage(EntityUid messageSource, string message, RadioChann ? mask.VoiceName : MetaData(messageSource).EntityName; + // Delta-V: Support syrinx voice mask on radio. + if (TryComp(messageSource, out SyrinxVoiceMaskComponent? syrinx) && syrinx.Enabled) + name = syrinx.VoiceName; + name = FormattedMessage.EscapeText(name); var speech = _chat.GetSpeechVerb(messageSource, message); + var content = escapeMarkup + ? FormattedMessage.EscapeText(message) + : message; var wrappedMessage = Loc.GetString(speech.Bold ? "chat-radio-message-wrap-bold" : "chat-radio-message-wrap", ("color", channel.Color), @@ -78,7 +95,7 @@ public void SendRadioMessage(EntityUid messageSource, string message, RadioChann ("verb", Loc.GetString(_random.Pick(speech.SpeechVerbStrings))), ("channel", $"\\[{channel.LocalizedName}\\]"), ("name", name), - ("message", FormattedMessage.EscapeText(message))); + ("message", content)); // most radios are relayed to chat, so lets parse the chat message beforehand var chat = new ChatMessage( @@ -103,8 +120,12 @@ public void SendRadioMessage(EntityUid messageSource, string message, RadioChann var radioQuery = EntityQueryEnumerator(); while (canSend && radioQuery.MoveNext(out var receiver, out var radio, out var transform)) { - if (!radio.Channels.Contains(channel.ID) || (TryComp(receiver, out var intercom) && !intercom.SupportedChannels.Contains(channel.ID))) - continue; + if (!radio.ReceiveAllChannels) + { + if (!radio.Channels.Contains(channel.ID) || (TryComp(receiver, out var intercom) && + !intercom.SupportedChannels.Contains(channel.ID))) + continue; + } if (!channel.LongRange && transform.MapID != sourceMapId && !radio.GlobalReceive) continue; diff --git a/Content.Server/RatKing/RatKingSystem.cs b/Content.Server/RatKing/RatKingSystem.cs index 3cf6d48751..f676e89ac3 100644 --- a/Content.Server/RatKing/RatKingSystem.cs +++ b/Content.Server/RatKing/RatKingSystem.cs @@ -67,7 +67,7 @@ private void OnRaiseArmy(EntityUid uid, RatKingComponent component, RatKingRaise } /// - /// uses hunger to release a specific amount of miasma into the air. This heals the rat king + /// uses hunger to release a specific amount of ammonia into the air. This heals the rat king /// and his servants through a specific metabolism. /// private void OnDomain(EntityUid uid, RatKingComponent component, RatKingDomainActionEvent args) @@ -88,11 +88,8 @@ private void OnDomain(EntityUid uid, RatKingComponent component, RatKingDomainAc _hunger.ModifyHunger(uid, -component.HungerPerDomainUse, hunger); _popup.PopupEntity(Loc.GetString("rat-king-domain-popup"), uid); - - var transform = Transform(uid); - var indices = _xform.GetGridOrMapTilePosition(uid, transform); - var tileMix = _atmos.GetTileMixture(transform.GridUid, transform.MapUid, indices, true); - tileMix?.AdjustMoles(Gas.Miasma, component.MolesMiasmaPerDomain); + var tileMix = _atmos.GetTileMixture(uid, excite: true); + tileMix?.AdjustMoles(Gas.Ammonia, component.MolesAmmoniaPerDomain); } private void OnPointedAt(EntityUid uid, RatKingComponent component, ref AfterPointedAtEvent args) diff --git a/Content.Server/Research/Components/ResearchConsoleComponent.cs b/Content.Server/Research/Components/ResearchConsoleComponent.cs index 038357ef8b..bdd620e9b0 100644 --- a/Content.Server/Research/Components/ResearchConsoleComponent.cs +++ b/Content.Server/Research/Components/ResearchConsoleComponent.cs @@ -1,8 +1,15 @@ +using Content.Shared.Radio; +using Robust.Shared.Prototypes; + namespace Content.Server.Research.Components; [RegisterComponent] public sealed partial class ResearchConsoleComponent : Component { - + /// + /// The radio channel that the unlock announcements are broadcast to. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public ProtoId AnnouncementChannel = "Science"; } diff --git a/Content.Server/Research/Systems/ResearchSystem.Console.cs b/Content.Server/Research/Systems/ResearchSystem.Console.cs index 6da547999d..e802e2c7f9 100644 --- a/Content.Server/Research/Systems/ResearchSystem.Console.cs +++ b/Content.Server/Research/Systems/ResearchSystem.Console.cs @@ -3,6 +3,7 @@ using Content.Server.UserInterface; using Content.Shared.Access.Components; using Content.Shared.Research.Components; +using Content.Shared.Research.Prototypes; namespace Content.Server.Research.Systems; @@ -25,6 +26,9 @@ private void OnConsoleUnlock(EntityUid uid, ResearchConsoleComponent component, if (!this.IsPowered(uid, EntityManager)) return; + if (!PrototypeManager.TryIndex(args.Id, out var technologyPrototype)) + return; + if (TryComp(uid, out var access) && !_accessReader.IsAllowed(ent, uid, access)) { _popup.PopupEntity(Loc.GetString("research-console-no-access-popup"), ent); @@ -34,6 +38,10 @@ private void OnConsoleUnlock(EntityUid uid, ResearchConsoleComponent component, if (!UnlockTechnology(uid, args.Id, ent)) return; + var message = Loc.GetString("research-console-unlock-technology-radio-broadcast", + ("technology", Loc.GetString(technologyPrototype.Name)), + ("amount", technologyPrototype.Cost)); + _radio.SendRadioMessage(uid, message, component.AnnouncementChannel, uid, escapeMarkup: false); SyncClientWithServer(uid); UpdateConsoleInterface(uid, component); } diff --git a/Content.Server/Research/Systems/ResearchSystem.cs b/Content.Server/Research/Systems/ResearchSystem.cs index e89b435800..f8c4d6902a 100644 --- a/Content.Server/Research/Systems/ResearchSystem.cs +++ b/Content.Server/Research/Systems/ResearchSystem.cs @@ -1,6 +1,7 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; using Content.Server.Administration.Logs; +using Content.Server.Radio.EntitySystems; using Content.Shared.Access.Systems; using Content.Shared.Popups; using Content.Shared.Research.Components; @@ -19,6 +20,7 @@ public sealed partial class ResearchSystem : SharedResearchSystem [Dependency] private readonly AccessReaderSystem _accessReader = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly RadioSystem _radio = default!; public override void Initialize() { diff --git a/Content.Server/Research/TechnologyDisk/Systems/DiskConsoleSystem.cs b/Content.Server/Research/TechnologyDisk/Systems/DiskConsoleSystem.cs index 0d60f0af4f..8a65e0a8bc 100644 --- a/Content.Server/Research/TechnologyDisk/Systems/DiskConsoleSystem.cs +++ b/Content.Server/Research/TechnologyDisk/Systems/DiskConsoleSystem.cs @@ -3,6 +3,7 @@ using Content.Server.UserInterface; using Content.Shared.Research; using Content.Shared.Research.Components; +using Robust.Server.Audio; using Robust.Server.GameObjects; using Robust.Shared.Timing; diff --git a/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs b/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs index cb20a1b868..eb6eb5a426 100644 --- a/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs +++ b/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs @@ -321,6 +321,12 @@ private void OnMalfunctionAction(EntityUid uid, RevenantComponent component, Rev foreach (var ent in _lookup.GetEntitiesInRange(uid, component.MalfunctionRadius)) { + if (component.MalfunctionWhitelist?.IsValid(ent, EntityManager) == false) + continue; + + if (component.MalfunctionBlacklist?.IsValid(ent, EntityManager) == true) + continue; + _emag.DoEmagEffect(uid, ent); //it does not emag itself. adorable. } } diff --git a/Content.Server/Roles/Jobs/JobSystem.cs b/Content.Server/Roles/Jobs/JobSystem.cs index 7bee6da755..9f0dd7ae32 100644 --- a/Content.Server/Roles/Jobs/JobSystem.cs +++ b/Content.Server/Roles/Jobs/JobSystem.cs @@ -4,7 +4,6 @@ using Content.Shared.Mind; using Content.Shared.Roles; using Content.Shared.Roles.Jobs; -using Robust.Shared.Prototypes; namespace Content.Server.Roles.Jobs; @@ -48,6 +47,6 @@ public void MindAddJob(EntityUid mindId, string jobPrototypeId) if (MindHasJobWithId(mindId, jobPrototypeId)) return; - _roles.MindAddRole(mindId, new JobComponent { PrototypeId = jobPrototypeId }); + _roles.MindAddRole(mindId, new JobComponent { Prototype = jobPrototypeId }); } } diff --git a/Content.Server/Roles/RevolutionaryRoleComponent.cs b/Content.Server/Roles/RevolutionaryRoleComponent.cs index fa06cc3191..821364c738 100644 --- a/Content.Server/Roles/RevolutionaryRoleComponent.cs +++ b/Content.Server/Roles/RevolutionaryRoleComponent.cs @@ -8,5 +8,9 @@ namespace Content.Server.Roles; [RegisterComponent] public sealed partial class RevolutionaryRoleComponent : AntagonistRoleComponent { - + /// + /// For headrevs, how many people you have converted. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public uint ConvertedCount = 0; } diff --git a/Content.Server/RoundEnd/RoundEndSystem.cs b/Content.Server/RoundEnd/RoundEndSystem.cs index 6043f3fbf9..88c55154a3 100644 --- a/Content.Server/RoundEnd/RoundEndSystem.cs +++ b/Content.Server/RoundEnd/RoundEndSystem.cs @@ -2,16 +2,21 @@ using Content.Server.Administration.Logs; using Content.Server.AlertLevel; using Content.Shared.CCVar; -using Content.Server.Chat; using Content.Server.Chat.Managers; using Content.Server.Chat.Systems; +using Content.Server.DeviceNetwork; +using Content.Server.DeviceNetwork.Components; +using Content.Server.DeviceNetwork.Systems; using Content.Server.GameTicking; +using Content.Server.Shuttles.Components; using Content.Server.Shuttles.Systems; +using Content.Server.Station.Components; using Content.Server.Station.Systems; using Content.Shared.Database; using Content.Shared.GameTicking; -using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; +using Robust.Shared.Map; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Timing; @@ -29,10 +34,15 @@ public sealed class RoundEndSystem : EntitySystem [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly IChatManager _chatManager = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly IMapManager _mapManager = default!; + [Dependency] private readonly IPrototypeManager _protoManager = default!; [Dependency] private readonly ChatSystem _chatSystem = default!; [Dependency] private readonly GameTicker _gameTicker = default!; + [Dependency] private readonly DeviceNetworkSystem _deviceNetworkSystem = default!; [Dependency] private readonly EmergencyShuttleSystem _shuttle = default!; + [Dependency] private readonly ShuttleTimerSystem _shuttleTimerSystem = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly StationSystem _stationSystem = default!; public TimeSpan DefaultCooldownDuration { get; set; } = TimeSpan.FromSeconds(30); @@ -50,7 +60,7 @@ public sealed class RoundEndSystem : EntitySystem public TimeSpan? ShuttleTimeLeft => ExpectedCountdownEnd - _gameTiming.CurTime; public TimeSpan AutoCallStartTime; - private bool AutoCalledBefore = false; + private bool _autoCalledBefore = false; public override void Initialize() { @@ -81,10 +91,36 @@ private void Reset() LastCountdownStart = null; ExpectedCountdownEnd = null; SetAutoCallTime(); - AutoCalledBefore = false; + _autoCalledBefore = false; RaiseLocalEvent(RoundEndSystemChangedEvent.Default); } + /// + /// Attempts to get the MapUid of the station using + /// + public EntityUid? GetStation() + { + AllEntityQuery().MoveNext(out _, out _, out var data); + if (data == null) + return null; + var targetGrid = _stationSystem.GetLargestGrid(data); + return targetGrid == null ? null : Transform(targetGrid.Value).MapUid; + } + + /// + /// Attempts to get centcomm's MapUid + /// + public EntityUid? GetCentcomm() + { + if (AllEntityQuery() + .MoveNext(out var centcomm, out var xform)) + { + return xform.MapUid; + } + + return null; + } + public bool CanCallOrRecall() { return _cooldownTokenSource == null; @@ -142,8 +178,8 @@ public void RequestRoundEnd(TimeSpan countdownTime, EntityUid? requester = null, } else { - time = countdownTime.Minutes; - units = "eta-units-minutes"; + time = countdownTime.Minutes; + units = "eta-units-minutes"; } _chatSystem.DispatchGlobalAnnouncement(Loc.GetString(text, @@ -154,7 +190,7 @@ public void RequestRoundEnd(TimeSpan countdownTime, EntityUid? requester = null, null, Color.Gold); - SoundSystem.Play("/Audio/Announcements/shuttlecalled.ogg", Filter.Broadcast()); + _audio.PlayGlobal("/Audio/Announcements/shuttlecalled.ogg", Filter.Broadcast(), true); LastCountdownStart = _gameTiming.CurTime; ExpectedCountdownEnd = _gameTiming.CurTime + countdownTime; @@ -162,6 +198,21 @@ public void RequestRoundEnd(TimeSpan countdownTime, EntityUid? requester = null, ActivateCooldown(); RaiseLocalEvent(RoundEndSystemChangedEvent.Default); + + var shuttle = _shuttle.GetShuttle(); + if (shuttle != null && TryComp(shuttle, out var net)) + { + var payload = new NetworkPayload + { + [ShuttleTimerMasks.ShuttleMap] = shuttle, + [ShuttleTimerMasks.SourceMap] = GetCentcomm(), + [ShuttleTimerMasks.DestMap] = GetStation(), + [ShuttleTimerMasks.ShuttleTime] = countdownTime, + [ShuttleTimerMasks.SourceTime] = countdownTime + TimeSpan.FromSeconds(_shuttle.TransitTime + _cfg.GetCVar(CCVars.EmergencyShuttleDockTime)), + [ShuttleTimerMasks.DestTime] = countdownTime, + }; + _deviceNetworkSystem.QueuePacket(shuttle.Value, null, payload, net.TransmitFrequency); + } } public void CancelRoundEndCountdown(EntityUid? requester = null, bool checkCooldown = true) @@ -185,12 +236,30 @@ public void CancelRoundEndCountdown(EntityUid? requester = null, bool checkCoold _chatSystem.DispatchGlobalAnnouncement(Loc.GetString("round-end-system-shuttle-recalled-announcement"), Loc.GetString("Station"), false, colorOverride: Color.Gold); - SoundSystem.Play("/Audio/Announcements/shuttlerecalled.ogg", Filter.Broadcast()); + _audio.PlayGlobal("/Audio/Announcements/shuttlerecalled.ogg", Filter.Broadcast(), true); LastCountdownStart = null; ExpectedCountdownEnd = null; ActivateCooldown(); RaiseLocalEvent(RoundEndSystemChangedEvent.Default); + + // remove all active shuttle timers + var zero = TimeSpan.Zero; + var shuttle = _shuttle.GetShuttle(); + if (shuttle != null && TryComp(shuttle, out var net)) + { + var payload = new NetworkPayload + { + [ShuttleTimerMasks.ShuttleMap] = shuttle, + [ShuttleTimerMasks.SourceMap] = GetCentcomm(), + [ShuttleTimerMasks.DestMap] = GetStation(), + [ShuttleTimerMasks.ShuttleTime] = zero, + [ShuttleTimerMasks.SourceTime] = zero, + [ShuttleTimerMasks.DestTime] = zero, + [ShuttleTimerMasks.Text] = new string?[] { string.Empty, string.Empty } + }; + _deviceNetworkSystem.QueuePacket(shuttle.Value, null, payload, net.TransmitFrequency); + } } public void EndRound(TimeSpan? countdownTime = null) @@ -282,14 +351,14 @@ private void ActivateCooldown() public override void Update(float frameTime) { // Check if we should auto-call. - int mins = AutoCalledBefore ? _cfg.GetCVar(CCVars.EmergencyShuttleAutoCallExtensionTime) + int mins = _autoCalledBefore ? _cfg.GetCVar(CCVars.EmergencyShuttleAutoCallExtensionTime) : _cfg.GetCVar(CCVars.EmergencyShuttleAutoCallTime); if (mins != 0 && _gameTiming.CurTime - AutoCallStartTime > TimeSpan.FromMinutes(mins)) { if (!_shuttle.EmergencyShuttleArrived && ExpectedCountdownEnd is null) { RequestRoundEnd(null, false, "round-end-system-shuttle-auto-called-announcement"); - AutoCalledBefore = true; + _autoCalledBefore = true; } // Always reset auto-call in case of a recall. @@ -304,7 +373,7 @@ public sealed class RoundEndSystemChangedEvent : EntityEventArgs } public enum RoundEndBehavior : byte -{ + { /// /// Instantly end round /// @@ -319,5 +388,5 @@ public enum RoundEndBehavior : byte /// Do nothing /// Nothing -} + } } diff --git a/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs b/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs index 3739d6e2b7..0a7108c776 100644 --- a/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs +++ b/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs @@ -40,7 +40,7 @@ public sealed partial class SalvageExpeditionComponent : SharedSalvageExpedition /// /// Countdown audio stream. /// - public IPlayingAudioStream? Stream = null; + public EntityUid? Stream = null; /// /// Sound that plays when the mission end is imminent. diff --git a/Content.Server/Salvage/RestrictedRangeSystem.cs b/Content.Server/Salvage/RestrictedRangeSystem.cs new file mode 100644 index 0000000000..f43d814538 --- /dev/null +++ b/Content.Server/Salvage/RestrictedRangeSystem.cs @@ -0,0 +1,45 @@ +using System.Numerics; +using Content.Shared.Movement.Components; +using Content.Shared.Physics; +using Content.Shared.Salvage; +using Robust.Shared.Map; +using Robust.Shared.Physics.Collision.Shapes; +using Robust.Shared.Physics.Components; +using Robust.Shared.Physics.Systems; + +namespace Content.Server.Salvage; + +public sealed class RestrictedRangeSystem : SharedRestrictedRangeSystem +{ + [Dependency] private readonly FixtureSystem _fixtures = default!; + [Dependency] private readonly SharedPhysicsSystem _physics = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnRestrictedMapInit); + } + + private void OnRestrictedMapInit(EntityUid uid, RestrictedRangeComponent component, MapInitEvent args) + { + component.BoundaryEntity = CreateBoundary(new EntityCoordinates(uid, component.Origin), component.Range); + } + + public EntityUid CreateBoundary(EntityCoordinates coordinates, float range) + { + var boundaryUid = Spawn(null, coordinates); + var boundaryPhysics = AddComp(boundaryUid); + var cShape = new ChainShape(); + // Don't need it to be a perfect circle, just need it to be loosely accurate. + cShape.CreateLoop(Vector2.Zero, range + 0.25f, false, count: 4); + _fixtures.TryCreateFixture( + boundaryUid, + cShape, + "boundary", + collisionLayer: (int) (CollisionGroup.HighImpassable | CollisionGroup.Impassable | CollisionGroup.LowImpassable), + body: boundaryPhysics); + _physics.WakeBody(boundaryUid, body: boundaryPhysics); + AddComp(boundaryUid); + return boundaryUid; + } +} diff --git a/Content.Server/Salvage/SalvageMagnetComponent.cs b/Content.Server/Salvage/SalvageMagnetComponent.cs index d9a5b79b1a..a5ed26a715 100644 --- a/Content.Server/Salvage/SalvageMagnetComponent.cs +++ b/Content.Server/Salvage/SalvageMagnetComponent.cs @@ -102,7 +102,7 @@ public sealed partial class SalvageMagnetComponent : SharedSalvageMagnetComponen /// generated rather than a static salvage prototype. /// [DataField("asteroidChance"), ViewVariables(VVAccess.ReadWrite)] - public float AsteroidChance = 0.6f; + public float AsteroidChance = 0.35f; /// Delta V: reduce the amount of asteroids /// /// A weighted random prototype corresponding to diff --git a/Content.Server/Salvage/SalvageMapPrototype.cs b/Content.Server/Salvage/SalvageMapPrototype.cs index 1f40870c60..b951c47d7a 100644 --- a/Content.Server/Salvage/SalvageMapPrototype.cs +++ b/Content.Server/Salvage/SalvageMapPrototype.cs @@ -4,7 +4,7 @@ namespace Content.Server.Salvage; [Prototype("salvageMap")] -public sealed class SalvageMapPrototype : IPrototype +public sealed partial class SalvageMapPrototype : IPrototype { [ViewVariables] [IdDataField] public string ID { get; } = default!; diff --git a/Content.Server/Salvage/SalvageSystem.Expeditions.cs b/Content.Server/Salvage/SalvageSystem.Expeditions.cs index f2be8cd500..f0d4661a07 100644 --- a/Content.Server/Salvage/SalvageSystem.Expeditions.cs +++ b/Content.Server/Salvage/SalvageSystem.Expeditions.cs @@ -73,7 +73,7 @@ private void SetCooldownChange(float obj) private void OnExpeditionShutdown(EntityUid uid, SalvageExpeditionComponent component, ComponentShutdown args) { - component.Stream?.Stop(); + component.Stream = _audio.Stop(component.Stream); foreach (var (job, cancelToken) in _salvageJobs.ToArray()) { diff --git a/Content.Server/Salvage/SalvageSystem.Runner.cs b/Content.Server/Salvage/SalvageSystem.Runner.cs index 5fe2e62bcb..3b89135c58 100644 --- a/Content.Server/Salvage/SalvageSystem.Runner.cs +++ b/Content.Server/Salvage/SalvageSystem.Runner.cs @@ -10,10 +10,8 @@ using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; using Content.Shared.Salvage.Expeditions; -using Robust.Shared.Audio; using Robust.Shared.Map.Components; using Robust.Shared.Player; -using Robust.Shared.Random; using Robust.Shared.Utility; namespace Content.Server.Salvage; @@ -155,11 +153,7 @@ private void UpdateRunner() else if (comp.Stage < ExpeditionStage.MusicCountdown && remaining < TimeSpan.FromMinutes(2)) { // TODO: Some way to play audio attached to a map for players. - // Parkstation-ExpeditionMusic Start - if (_prototypeManager.TryIndex(comp.Sound, out var sound)) - comp.Stream = _audio.PlayGlobal(new SoundPathSpecifier(_random.Pick(sound.PickFiles), AudioParams.Default.WithVolume(-6)), - Filter.BroadcastMap(Comp(uid).MapId), true); - // Parkstation-ExpeditionMusic End + comp.Stream = _audio.PlayGlobal(comp.Sound, Filter.BroadcastMap(Comp(uid).MapId), true).Value.Entity; comp.Stage = ExpeditionStage.MusicCountdown; Dirty(uid, comp); Announce(uid, Loc.GetString("salvage-expedition-announcement-countdown-minutes", ("duration", TimeSpan.FromMinutes(2).Minutes))); diff --git a/Content.Server/Salvage/SalvageSystem.cs b/Content.Server/Salvage/SalvageSystem.cs index 0da6207289..eb98e1f2e1 100644 --- a/Content.Server/Salvage/SalvageSystem.cs +++ b/Content.Server/Salvage/SalvageSystem.cs @@ -27,6 +27,8 @@ using Content.Shared.Random.Helpers; using Content.Shared.Tools.Components; using Robust.Server.Maps; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Map.Components; using Robust.Shared.Timing; diff --git a/Content.Server/Salvage/SpawnSalvageMissionJob.cs b/Content.Server/Salvage/SpawnSalvageMissionJob.cs index 276f35a836..eb370aa112 100644 --- a/Content.Server/Salvage/SpawnSalvageMissionJob.cs +++ b/Content.Server/Salvage/SpawnSalvageMissionJob.cs @@ -106,14 +106,14 @@ protected override async Task Process() { var biome = _entManager.AddComponent(mapUid); var biomeSystem = _entManager.System(); - biomeSystem.SetTemplate(biome, _prototypeManager.Index(missionBiome.BiomePrototype)); - biomeSystem.SetSeed(biome, mission.Seed); - _entManager.Dirty(biome); + biomeSystem.SetTemplate(mapUid, biome, _prototypeManager.Index(missionBiome.BiomePrototype)); + biomeSystem.SetSeed(mapUid, biome, mission.Seed); + _entManager.Dirty(mapUid, biome); // Gravity var gravity = _entManager.EnsureComponent(mapUid); gravity.Enabled = true; - _entManager.Dirty(gravity, metadata); + _entManager.Dirty(mapUid, gravity, metadata); // Atmos var air = _prototypeManager.Index(mission.Air); @@ -196,7 +196,7 @@ protected override async Task Process() if (!lootProto.Guaranteed) continue; - await SpawnDungeonLoot(dungeon, missionBiome, lootProto, mapUid, grid, random, reservedTiles); + await SpawnDungeonLoot(lootProto, mapUid); } // Handle boss loot (when relevant). @@ -298,7 +298,7 @@ private async Task SpawnRandomEntry(MapGridComponent grid, IBudgetEntry entry, D // oh noooooooooooo } - private async Task SpawnDungeonLoot(Dungeon dungeon, SalvageBiomeModPrototype biomeMod, SalvageLootPrototype loot, EntityUid gridUid, MapGridComponent grid, Random random, List reservedTiles) + private async Task SpawnDungeonLoot(SalvageLootPrototype loot, EntityUid gridUid) { for (var i = 0; i < loot.LootRules.Count; i++) { @@ -308,10 +308,9 @@ private async Task SpawnDungeonLoot(Dungeon dungeon, SalvageBiomeModPrototype bi { case BiomeMarkerLoot biomeLoot: { - if (_entManager.TryGetComponent(gridUid, out var biome) && - biomeLoot.Prototype.TryGetValue(biomeMod.ID, out var mod)) + if (_entManager.TryGetComponent(gridUid, out var biome)) { - _biome.AddMarkerLayer(biome, mod); + _biome.AddMarkerLayer(gridUid, biome, biomeLoot.Prototype); } } break; @@ -319,7 +318,7 @@ private async Task SpawnDungeonLoot(Dungeon dungeon, SalvageBiomeModPrototype bi { if (_entManager.TryGetComponent(gridUid, out var biome)) { - _biome.AddTemplate(biome, "Loot", _prototypeManager.Index(biomeLoot.Prototype), i); + _biome.AddTemplate(gridUid, biome, "Loot", _prototypeManager.Index(biomeLoot.Prototype), i); } } break; diff --git a/Content.Server/Shuttles/Components/ArrivalsShuttleComponent.cs b/Content.Server/Shuttles/Components/ArrivalsShuttleComponent.cs index 79ba1a46cb..99cdcbc3b6 100644 --- a/Content.Server/Shuttles/Components/ArrivalsShuttleComponent.cs +++ b/Content.Server/Shuttles/Components/ArrivalsShuttleComponent.cs @@ -9,10 +9,16 @@ public sealed partial class ArrivalsShuttleComponent : Component [DataField("station")] public EntityUid Station; - [DataField("nextTransfer", customTypeSerializer:typeof(TimeOffsetSerializer))] + [DataField("nextTransfer", customTypeSerializer: typeof(TimeOffsetSerializer))] public TimeSpan NextTransfer; - [DataField("nextArrivalsTime", customTypeSerializer:typeof(TimeOffsetSerializer))] + [DataField("nextArrivalsTime", customTypeSerializer: typeof(TimeOffsetSerializer))] public TimeSpan NextArrivalsTime; + /// + /// the first arrivals FTL originates from nullspace instead of the station + /// + [DataField("firstRun")] + public bool FirstRun = true; + } diff --git a/Content.Server/Shuttles/Components/EmergencyShuttleComponent.cs b/Content.Server/Shuttles/Components/EmergencyShuttleComponent.cs new file mode 100644 index 0000000000..aa3d2fbb7f --- /dev/null +++ b/Content.Server/Shuttles/Components/EmergencyShuttleComponent.cs @@ -0,0 +1,13 @@ +using Content.Server.Shuttles.Systems; + +namespace Content.Server.Shuttles.Components; + +/// +/// Added to station emergency shuttles by , +/// for FTL event handlers +/// +[RegisterComponent] +public sealed partial class EmergencyShuttleComponent : Component +{ + +} diff --git a/Content.Server/Shuttles/Components/FTLComponent.cs b/Content.Server/Shuttles/Components/FTLComponent.cs index 43b702cd39..105b9eae6d 100644 --- a/Content.Server/Shuttles/Components/FTLComponent.cs +++ b/Content.Server/Shuttles/Components/FTLComponent.cs @@ -51,5 +51,5 @@ public sealed partial class FTLComponent : Component Params = AudioParams.Default.WithVolume(-3f).WithLoop(true) }; - public IPlayingAudioStream? TravelStream; + public EntityUid? TravelStream; } diff --git a/Content.Server/Shuttles/Components/ShuttleTimerComponent.cs b/Content.Server/Shuttles/Components/ShuttleTimerComponent.cs new file mode 100644 index 0000000000..03b4f05c14 --- /dev/null +++ b/Content.Server/Shuttles/Components/ShuttleTimerComponent.cs @@ -0,0 +1,24 @@ +namespace Content.Server.Shuttles.Components; + +[RegisterComponent] +public sealed partial class ShuttleTimerComponent : Component +{ + +} + +/// +/// Awkward hashable string consts because NetworkPayload requires string keys +/// TODO: Refactor NetworkPayload to accept bytes from enums? +/// +public sealed class ShuttleTimerMasks +{ + public static readonly string ShuttleTime = "ShuttleTime"; + public static readonly string DestTime = "DestTime"; + public static readonly string SourceTime = "SourceTime"; + public static readonly string ShuttleMap = "ShuttleMap"; + public static readonly string SourceMap = "SourceMap"; + public static readonly string DestMap = "DestMap"; + public static readonly string Docked = "Docked"; + public static readonly string Text = "Text"; +} + diff --git a/Content.Server/Shuttles/Components/StationCentcommComponent.cs b/Content.Server/Shuttles/Components/StationCentcommComponent.cs index 43b35ebc50..4ea7d313a1 100644 --- a/Content.Server/Shuttles/Components/StationCentcommComponent.cs +++ b/Content.Server/Shuttles/Components/StationCentcommComponent.cs @@ -12,17 +12,18 @@ public sealed partial class StationCentcommComponent : Component /// /// Crude shuttle offset spawning. /// - [DataField("shuttleIndex")] + [DataField] public float ShuttleIndex; - [DataField("map")] + [DataField] public ResPath Map = new("/Maps/centcomm.yml"); /// /// Centcomm entity that was loaded. /// - [DataField("entity")] - public EntityUid Entity = EntityUid.Invalid; + [DataField] + public EntityUid? Entity; - public MapId MapId = MapId.Nullspace; + [DataField] + public EntityUid? MapEntity; } diff --git a/Content.Server/Shuttles/Systems/ArrivalsSystem.cs b/Content.Server/Shuttles/Systems/ArrivalsSystem.cs index 19779c5cfe..64bc99f1bb 100644 --- a/Content.Server/Shuttles/Systems/ArrivalsSystem.cs +++ b/Content.Server/Shuttles/Systems/ArrivalsSystem.cs @@ -1,7 +1,13 @@ using System.Linq; +using System.Numerics; using Content.Server.Administration; using Content.Server.GameTicking; using Content.Server.GameTicking.Events; +using Content.Server.Parallax; +using Content.Server.DeviceNetwork; +using Content.Server.DeviceNetwork.Components; +using Content.Server.DeviceNetwork.Systems; +using Content.Server.Salvage; using Content.Server.Shuttles.Components; using Content.Server.Shuttles.Events; using Content.Server.Spawners.Components; @@ -12,6 +18,8 @@ using Content.Shared.CCVar; using Content.Shared.Mobs.Components; using Content.Shared.Movement.Components; +using Content.Shared.Parallax.Biomes; +using Content.Shared.Salvage; using Content.Shared.Shuttles.Components; using Robust.Shared.Spawners; using Content.Shared.Tiles; @@ -20,6 +28,7 @@ using Robust.Shared.Configuration; using Robust.Shared.Console; using Robust.Shared.Map; +using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Timing; using TimedDespawnComponent = Robust.Shared.Spawners.TimedDespawnComponent; @@ -35,24 +44,44 @@ public sealed class ArrivalsSystem : EntitySystem [Dependency] private readonly IConsoleHost _console = default!; [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IMapManager _mapManager = default!; + [Dependency] private readonly IPrototypeManager _protoManager = default!; [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly BiomeSystem _biomes = default!; [Dependency] private readonly GameTicker _ticker = default!; [Dependency] private readonly MapLoaderSystem _loader = default!; + [Dependency] private readonly DeviceNetworkSystem _deviceNetworkSystem = default!; + [Dependency] private readonly RestrictedRangeSystem _restricted = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly ShuttleSystem _shuttles = default!; [Dependency] private readonly StationSpawningSystem _stationSpawning = default!; [Dependency] private readonly StationSystem _station = default!; + private EntityQuery _pendingQuery; + private EntityQuery _blacklistQuery; + private EntityQuery _mobQuery; + /// /// If enabled then spawns players on an alternate map so they can take a shuttle to the station. /// public bool Enabled { get; private set; } + /// + /// The first arrival is a little early, to save everyone 10s + /// + private const float RoundStartFTLDuration = 10f; + + private readonly List> _arrivalsBiomeOptions = new() + { + "Grasslands", + "LowDesert", + "Snow", + }; + public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnPlayerSpawn, before: new []{typeof(SpawnPointSystem)}); + SubscribeLocalEvent(OnPlayerSpawn, before: new[] { typeof(SpawnPointSystem) }); SubscribeLocalEvent(OnArrivalsStartup); SubscribeLocalEvent(OnShuttleStartup); @@ -61,6 +90,11 @@ public override void Initialize() SubscribeLocalEvent(OnRoundStarting); SubscribeLocalEvent(OnArrivalsFTL); + SubscribeLocalEvent(OnArrivalsDocked); + + _pendingQuery = GetEntityQuery(); + _blacklistQuery = GetEntityQuery(); + _mobQuery = GetEntityQuery(); // Don't invoke immediately as it will get set in the natural course of things. Enabled = _cfgManager.GetCVar(CCVars.ArrivalsShuttles); @@ -154,25 +188,55 @@ public override void Shutdown() _cfgManager.UnsubValueChanged(CCVars.ArrivalsShuttles, SetArrivals); } + /// + /// First sends shuttle timer data, then kicks people off the shuttle if it isn't leaving the arrivals terminal + /// private void OnArrivalsFTL(EntityUid shuttleUid, ArrivalsShuttleComponent component, ref FTLStartedEvent args) { if (!TryGetArrivals(out EntityUid arrivals)) return; - var arrivalsMapUid = Transform(arrivals).MapUid; + if (TryComp(shuttleUid, out var netComp)) + { + TryComp(shuttleUid, out var ftlComp); + var ftlTime = TimeSpan.FromSeconds(ftlComp?.TravelTime ?? ShuttleSystem.DefaultTravelTime); + + var payload = new NetworkPayload + { + [ShuttleTimerMasks.ShuttleMap] = shuttleUid, + [ShuttleTimerMasks.ShuttleTime] = ftlTime + }; + + // unfortunate levels of spaghetti due to roundstart arrivals ftl behavior + EntityUid? sourceMap; + var arrivalsDelay = _cfgManager.GetCVar(CCVars.ArrivalsCooldown); + + if (component.FirstRun) + { + var station = _station.GetLargestGrid(Comp(component.Station)); + sourceMap = station == null ? null : Transform(station.Value)?.MapUid; + arrivalsDelay += RoundStartFTLDuration; + component.FirstRun = false; + payload.Add(ShuttleTimerMasks.DestMap, Transform(args.TargetCoordinates.EntityId).MapUid); + payload.Add(ShuttleTimerMasks.DestTime, ftlTime); + } + else + sourceMap = args.FromMapUid; + + payload.Add(ShuttleTimerMasks.SourceMap, sourceMap); + payload.Add(ShuttleTimerMasks.SourceTime, ftlTime + TimeSpan.FromSeconds(arrivalsDelay)); + + _deviceNetworkSystem.QueuePacket(shuttleUid, null, payload, netComp.TransmitFrequency); + } + // Don't do anything here when leaving arrivals. + var arrivalsMapUid = Transform(arrivals).MapUid; if (args.FromMapUid == arrivalsMapUid) return; // Any mob then yeet them off the shuttle. if (!_cfgManager.GetCVar(CCVars.ArrivalsReturns) && args.FromMapUid != null) - { - var pendingEntQuery = GetEntityQuery(); - var arrivalsBlacklistQuery = GetEntityQuery(); - var mobQuery = GetEntityQuery(); - var xformQuery = GetEntityQuery(); - DumpChildren(shuttleUid, ref args, pendingEntQuery, arrivalsBlacklistQuery, mobQuery, xformQuery); - } + DumpChildren(shuttleUid, ref args); var pendingQuery = AllEntityQuery(); @@ -189,7 +253,7 @@ private void OnArrivalsFTL(EntityUid shuttleUid, ArrivalsShuttleComponent compon TryTeleportToMapSpawn(pUid, component.Station, xform); } - // Players who have remained at arrives keep their warp coupon (PendingClockInComponent) for now. + // Players who have remained at arrivals keep their warp coupon (PendingClockInComponent) for now. if (xform.MapUid == arrivalsMapUid) continue; @@ -199,31 +263,53 @@ private void OnArrivalsFTL(EntityUid shuttleUid, ArrivalsShuttleComponent compon } } - private void DumpChildren(EntityUid uid, - ref FTLStartedEvent args, - EntityQuery pendingEntQuery, - EntityQuery arrivalsBlacklistQuery, - EntityQuery mobQuery, - EntityQuery xformQuery) + private void OnArrivalsDocked(EntityUid uid, ArrivalsShuttleComponent component, ref FTLCompletedEvent args) { - if (pendingEntQuery.HasComponent(uid)) - return; + TimeSpan dockTime = component.NextTransfer - _timing.CurTime + TimeSpan.FromSeconds(ShuttleSystem.DefaultStartupTime); - var xform = xformQuery.GetComponent(uid); + if (TryComp(uid, out var netComp)) + { + var payload = new NetworkPayload + { + [ShuttleTimerMasks.ShuttleMap] = uid, + [ShuttleTimerMasks.ShuttleTime] = dockTime, + [ShuttleTimerMasks.SourceMap] = args.MapUid, + [ShuttleTimerMasks.SourceTime] = dockTime, + [ShuttleTimerMasks.Docked] = true + }; + _deviceNetworkSystem.QueuePacket(uid, null, payload, netComp.TransmitFrequency); + } + } - if (mobQuery.HasComponent(uid) || arrivalsBlacklistQuery.HasComponent(uid)) + private void DumpChildren(EntityUid uid, ref FTLStartedEvent args) + { + var toDump = new List>(); + DumpChildren(uid, ref args, toDump); + foreach (var (ent, xform) in toDump) { var rotation = xform.LocalRotation; - _transform.SetCoordinates(uid, new EntityCoordinates(args.FromMapUid!.Value, args.FTLFrom.Transform(xform.LocalPosition))); - _transform.SetWorldRotation(uid, args.FromRotation + rotation); + _transform.SetCoordinates(ent, new EntityCoordinates(args.FromMapUid!.Value, args.FTLFrom.Transform(xform.LocalPosition))); + _transform.SetWorldRotation(ent, args.FromRotation + rotation); + } + } + + private void DumpChildren(EntityUid uid, ref FTLStartedEvent args, List> toDump) + { + if (_pendingQuery.HasComponent(uid)) + return; + + var xform = Transform(uid); + + if (_mobQuery.HasComponent(uid) || _blacklistQuery.HasComponent(uid)) + { + toDump.Add((uid, xform)); return; } var children = xform.ChildEnumerator; - while (children.MoveNext(out var child)) { - DumpChildren(child.Value, ref args, pendingEntQuery, arrivalsBlacklistQuery, mobQuery, xformQuery); + DumpChildren(child, ref args, toDump); } } @@ -244,7 +330,7 @@ private void OnPlayerSpawn(PlayerSpawningEvent ev) var points = EntityQueryEnumerator(); var possiblePositions = new List(); - while ( points.MoveNext(out var uid, out var spawnPoint, out var xform)) + while (points.MoveNext(out var uid, out var spawnPoint, out var xform)) { if (spawnPoint.SpawnType != SpawnPointType.LateJoin || xform.MapID != mapId) continue; @@ -276,7 +362,7 @@ private bool TryTeleportToMapSpawn(EntityUid player, EntityUid stationId, Transf var possiblePositions = new ValueList(32); // Find a spawnpoint on the same map as the player is already docked with now. - while ( points.MoveNext(out var uid, out var spawnPoint, out var xform)) + while (points.MoveNext(out var uid, out var spawnPoint, out var xform)) { if (spawnPoint.SpawnType == SpawnPointType.LateJoin && _station.GetOwningStation(uid, xform) == stationId) @@ -344,7 +430,6 @@ public override void Update(float frameTime) // TODO: Docking should be per-grid rather than per dock and bump off when undocking. // TODO: Stop dispatch if emergency shuttle has arrived. - // TODO: Need server join message specifying shuttle wait time or smth. // TODO: Need maps // TODO: Need emergency suits on shuttle probs // TODO: Need some kind of comp to shunt people off if they try to get on? @@ -355,7 +440,7 @@ public override void Update(float frameTime) if (comp.NextTransfer > curTime || !TryComp(comp.Station, out var data)) continue; - var tripTime = ShuttleSystem.DefaultTravelTime + ShuttleSystem.DefaultStartupTime ; + var tripTime = ShuttleSystem.DefaultTravelTime + ShuttleSystem.DefaultStartupTime; // Go back to arrivals source if (xform.MapUid != arrivalsXform.MapUid) @@ -396,6 +481,8 @@ private void OnRoundStarting(RoundStartingEvent ev) private void SetupArrivalsStation() { var mapId = _mapManager.CreateMap(); + var mapUid = _mapManager.GetMapEntityId(mapId); + _mapManager.AddUninitializedMap(mapId); if (!_loader.TryLoad(mapId, _cfgManager.GetCVar(CCVars.ArrivalsMap), out var uids)) { @@ -409,6 +496,20 @@ private void SetupArrivalsStation() EnsureComp(id); } + // Setup planet arrivals if relevant + if (_cfgManager.GetCVar(CCVars.ArrivalsPlanet)) + { + var template = _random.Pick(_arrivalsBiomeOptions); + _biomes.EnsurePlanet(mapUid, _protoManager.Index(template)); + var restricted = new RestrictedRangeComponent + { + Range = 32f + }; + AddComp(mapUid, restricted); + } + + _mapManager.DoMapInitialize(mapId); + // Handle roundstart stations. var query = AllEntityQuery(); @@ -475,7 +576,7 @@ private void SetupShuttle(EntityUid uid, StationArrivalsComponent component) var arrivalsComp = EnsureComp(component.Shuttle); arrivalsComp.Station = uid; EnsureComp(uid); - _shuttles.FTLTravel(component.Shuttle, shuttleComp, arrivals, hyperspaceTime: 10f, dock: true); + _shuttles.FTLTravel(component.Shuttle, shuttleComp, arrivals, hyperspaceTime: RoundStartFTLDuration, dock: true); arrivalsComp.NextTransfer = _timing.CurTime + TimeSpan.FromSeconds(_cfgManager.GetCVar(CCVars.ArrivalsCooldown)); } diff --git a/Content.Server/Shuttles/Systems/DockingSystem.Shuttle.cs b/Content.Server/Shuttles/Systems/DockingSystem.Shuttle.cs index fd9cf67c5a..0fa82c303f 100644 --- a/Content.Server/Shuttles/Systems/DockingSystem.Shuttle.cs +++ b/Content.Server/Shuttles/Systems/DockingSystem.Shuttle.cs @@ -176,7 +176,7 @@ public bool CanDock( // Check if there's no intersecting grids (AKA oh god it's docking at cargo). grids.Clear(); _mapManager.FindGridsIntersecting(targetGridXform.MapID, dockedBounds, ref grids); - if (grids.Any(o => o.Owner != targetGrid)) + if (grids.Any(o => o.Owner != targetGrid && o.Owner != targetGridXform.MapUid)) { continue; } diff --git a/Content.Server/Shuttles/Systems/DockingSystem.cs b/Content.Server/Shuttles/Systems/DockingSystem.cs index f765ed6976..778d244376 100644 --- a/Content.Server/Shuttles/Systems/DockingSystem.cs +++ b/Content.Server/Shuttles/Systems/DockingSystem.cs @@ -459,45 +459,24 @@ public void Undock(EntityUid dockUid, DockingComponent dock) if (dock.DockedWith == null) return; - if (TryComp(dockUid, out var airlockA)) - { - _bolts.SetBoltsWithAudio(dockUid, airlockA, false); - } - - if (TryComp(dock.DockedWith, out var airlockB)) - { - _bolts.SetBoltsWithAudio(dock.DockedWith.Value, airlockB, false); - } - - if (TryComp(dockUid, out DoorComponent? doorA)) - { - if (_doorSystem.TryClose(dockUid, doorA)) - { - doorA.ChangeAirtight = true; - } - } + OnUndock(dockUid, dock.DockedWith.Value); + OnUndock(dock.DockedWith.Value, dockUid); + Cleanup(dockUid, dock); + } - if (TryComp(dock.DockedWith, out DoorComponent? doorB)) - { - if (_doorSystem.TryClose(dock.DockedWith.Value, doorB)) - { - doorB.ChangeAirtight = true; - } - } + private void OnUndock(EntityUid dockUid, EntityUid other) + { + if (TerminatingOrDeleted(dockUid)) + return; - if (LifeStage(dockUid) < EntityLifeStage.Terminating) - { - var recentlyDocked = EnsureComp(dockUid); - recentlyDocked.LastDocked = dock.DockedWith.Value; - } + if (TryComp(dockUid, out var airlock)) + _bolts.SetBoltsWithAudio(dockUid, airlock, false); - if (TryComp(dock.DockedWith.Value, out MetaDataComponent? meta) && meta.EntityLifeStage < EntityLifeStage.Terminating) - { - var recentlyDocked = EnsureComp(dock.DockedWith.Value); - recentlyDocked.LastDocked = dock.DockedWith.Value; - } + if (TryComp(dockUid, out DoorComponent? door) && _doorSystem.TryClose(dockUid, door)) + door.ChangeAirtight = true; - Cleanup(dockUid, dock); + var recentlyDocked = EnsureComp(dockUid); + recentlyDocked.LastDocked = other; } } } diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs index deb2ba256d..d14c5be438 100644 --- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs +++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs @@ -1,11 +1,12 @@ using System.Threading; +using Content.Server.DeviceNetwork; +using Content.Server.DeviceNetwork.Components; using Content.Server.Shuttles.Components; using Content.Server.Shuttles.Events; using Content.Server.UserInterface; using Content.Shared.Access; using Content.Shared.CCVar; using Content.Shared.Database; -using Content.Shared.Emag.Systems; using Content.Shared.Popups; using Content.Shared.Shuttles.BUIStates; using Content.Shared.Shuttles.Events; @@ -90,7 +91,6 @@ private void InitializeEmergencyConsole() SubscribeLocalEvent(OnEmergencyRepeal); SubscribeLocalEvent(OnEmergencyRepealAll); SubscribeLocalEvent(OnEmergencyOpenAttempt); - SubscribeLocalEvent(OnEmagged); SubscribeLocalEvent(OnEscapeUnpaused); } @@ -105,12 +105,6 @@ private void OnEmergencyOpenAttempt(EntityUid uid, EmergencyShuttleConsoleCompon } } - private void OnEmagged(EntityUid uid, EmergencyShuttleConsoleComponent component, ref GotEmaggedEvent args) - { - _logger.Add(LogType.EmergencyShuttle, LogImpact.Extreme, $"{ToPrettyString(args.UserUid):player} emagged shuttle console for early launch"); - EarlyLaunch(); - } - private void SetAuthorizeTime(float obj) { _authorizeTime = obj; @@ -174,18 +168,19 @@ private void UpdateEmergencyConsole(float frameTime) continue; } - if (Deleted(centcomm.Entity)) + if (!Deleted(centcomm.Entity)) { - // TODO: Need to get non-overlapping positions. _shuttle.FTLTravel(comp.EmergencyShuttle.Value, shuttle, - new EntityCoordinates( - _mapManager.GetMapEntityId(centcomm.MapId), - _random.NextVector2(1000f)), _consoleAccumulator, TransitTime); + centcomm.Entity.Value, _consoleAccumulator, TransitTime, true); + continue; } - else + + if (!Deleted(centcomm.MapEntity)) { + // TODO: Need to get non-overlapping positions. _shuttle.FTLTravel(comp.EmergencyShuttle.Value, shuttle, - centcomm.Entity, _consoleAccumulator, TransitTime, true); + new EntityCoordinates(centcomm.MapEntity.Value, + _random.NextVector2(1000f)), _consoleAccumulator, TransitTime); } } @@ -213,7 +208,7 @@ private void UpdateEmergencyConsole(float frameTime) } // Don't dock them. If you do end up doing this then stagger launch. - _shuttle.FTLTravel(uid, shuttle, centcomm.Entity, hyperspaceTime: TransitTime); + _shuttle.FTLTravel(uid, shuttle, centcomm.Entity.Value, hyperspaceTime: TransitTime); RemCompDeferred(uid); } @@ -237,7 +232,7 @@ private void UpdateEmergencyConsole(float frameTime) if (Deleted(comp.Entity)) continue; - _shuttle.AddFTLDestination(comp.Entity, true); + _shuttle.AddFTLDestination(comp.Entity.Value, true); } } } @@ -381,6 +376,24 @@ public bool EarlyLaunch() RaiseLocalEvent(new EmergencyShuttleAuthorizedEvent()); AnnounceLaunch(); UpdateAllEmergencyConsoles(); + + var time = TimeSpan.FromSeconds(_authorizeTime); + var shuttle = GetShuttle(); + if (shuttle != null && TryComp(shuttle, out var net)) + { + var payload = new NetworkPayload + { + [ShuttleTimerMasks.ShuttleMap] = shuttle, + [ShuttleTimerMasks.SourceMap] = _roundEnd.GetStation(), + [ShuttleTimerMasks.DestMap] = _roundEnd.GetCentcomm(), + [ShuttleTimerMasks.ShuttleTime] = time, + [ShuttleTimerMasks.SourceTime] = time, + [ShuttleTimerMasks.DestTime] = time + TimeSpan.FromSeconds(TransitTime), + [ShuttleTimerMasks.Docked] = true + }; + _deviceNetworkSystem.QueuePacket(shuttle.Value, null, payload, net.TransmitFrequency); + } + return true; } diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs index 3ef3d97a21..eb205cae63 100644 --- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs @@ -5,10 +5,14 @@ using Content.Server.Administration.Managers; using Content.Server.Chat.Systems; using Content.Server.Communications; +using Content.Server.DeviceNetwork; +using Content.Server.DeviceNetwork.Components; +using Content.Server.DeviceNetwork.Systems; using Content.Server.GameTicking.Events; using Content.Server.Popups; using Content.Server.RoundEnd; using Content.Server.Shuttles.Components; +using Content.Server.Shuttles.Events; using Content.Server.Station.Components; using Content.Server.Station.Systems; using Content.Shared.Access.Systems; @@ -20,6 +24,7 @@ using Content.Shared.Tiles; using Robust.Server.GameObjects; using Robust.Server.Maps; +using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; using Robust.Shared.Map; using Robust.Shared.Map.Components; @@ -44,7 +49,9 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem [Dependency] private readonly AccessReaderSystem _reader = default!; [Dependency] private readonly ChatSystem _chatSystem = default!; [Dependency] private readonly CommunicationsConsoleSystem _commsConsole = default!; + [Dependency] private readonly DeviceNetworkSystem _deviceNetworkSystem = default!; [Dependency] private readonly DockingSystem _dock = default!; + [Dependency] private readonly EntityManager _entityManager = default!; [Dependency] private readonly IdCardSystem _idSystem = default!; [Dependency] private readonly MapLoaderSystem _map = default!; [Dependency] private readonly PopupSystem _popup = default!; @@ -52,6 +59,7 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly ShuttleSystem _shuttle = default!; [Dependency] private readonly StationSystem _station = default!; + [Dependency] private readonly TransformSystem _transformSystem = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; private ISawmill _sawmill = default!; @@ -69,10 +77,14 @@ public override void Initialize() _emergencyShuttleEnabled = _configManager.GetCVar(CCVars.EmergencyShuttleEnabled); // Don't immediately invoke as roundstart will just handle it. _configManager.OnValueChanged(CCVars.EmergencyShuttleEnabled, SetEmergencyShuttleEnabled); + SubscribeLocalEvent(OnRoundStart); SubscribeLocalEvent(OnStationStartup); SubscribeLocalEvent(OnCentcommShutdown); SubscribeLocalEvent(OnCentcommInit); + + SubscribeLocalEvent(OnEmergencyFTL); + SubscribeLocalEvent(OnEmergencyFTLComplete); SubscribeNetworkEvent(OnShuttleRequestPosition); InitializeEmergencyConsole(); } @@ -86,13 +98,24 @@ private void OnRoundStart(RoundStartingEvent ev) private void OnCentcommShutdown(EntityUid uid, StationCentcommComponent component, ComponentShutdown args) { - QueueDel(component.Entity); - component.Entity = EntityUid.Invalid; + ClearCentcomm(component); + } - if (_mapManager.MapExists(component.MapId)) - _mapManager.DeleteMap(component.MapId); + private void ClearCentcomm(StationCentcommComponent component) + { + QueueDel(component.Entity); + QueueDel(component.MapEntity); + component.Entity = null; + component.MapEntity = null; + } - component.MapId = MapId.Nullspace; + /// + /// Attempts to get the EntityUid of the emergency shuttle + /// + public EntityUid? GetShuttle() + { + AllEntityQuery().MoveNext(out var shuttle, out _); + return shuttle; } private void SetEmergencyShuttleEnabled(bool value) @@ -135,7 +158,7 @@ public override void Shutdown() } /// - /// If the client is requesting debug info on where an emergency shuttle would dock. + /// If the client is requesting debug info on where an emergency shuttle would dock. /// private void OnShuttleRequestPosition(EmergencyShuttleRequestPositionMessage msg, EntitySessionEventArgs args) { @@ -170,7 +193,56 @@ private void OnShuttleRequestPosition(EmergencyShuttleRequestPositionMessage msg } /// - /// Calls the emergency shuttle for the station. + /// Escape shuttle FTL event handler. The only escape shuttle FTL transit should be from station to centcomm at round end + /// + private void OnEmergencyFTL(EntityUid uid, EmergencyShuttleComponent component, ref FTLStartedEvent args) + { + TimeSpan ftlTime = TimeSpan.FromSeconds + ( + TryComp(uid, out var ftlComp) ? + ftlComp.TravelTime : ShuttleSystem.DefaultTravelTime + ); + + if (TryComp(uid, out var netComp)) + { + var payload = new NetworkPayload + { + [ShuttleTimerMasks.ShuttleMap] = uid, + [ShuttleTimerMasks.SourceMap] = args.FromMapUid, + [ShuttleTimerMasks.DestMap] = args.TargetCoordinates.GetMapUid(_entityManager), + [ShuttleTimerMasks.ShuttleTime] = ftlTime, + [ShuttleTimerMasks.SourceTime] = ftlTime, + [ShuttleTimerMasks.DestTime] = ftlTime + }; + _deviceNetworkSystem.QueuePacket(uid, null, payload, netComp.TransmitFrequency); + } + } + + /// + /// When the escape shuttle finishes FTL (docks at centcomm), have the timers display the round end countdown + /// + private void OnEmergencyFTLComplete(EntityUid uid, EmergencyShuttleComponent component, ref FTLCompletedEvent args) + { + var countdownTime = TimeSpan.FromSeconds(_configManager.GetCVar(CCVars.RoundRestartTime)); + var shuttle = args.Entity; + if (TryComp(shuttle, out var net)) + { + var payload = new NetworkPayload + { + [ShuttleTimerMasks.ShuttleMap] = shuttle, + [ShuttleTimerMasks.SourceMap] = _roundEnd.GetCentcomm(), + [ShuttleTimerMasks.DestMap] = _roundEnd.GetStation(), + [ShuttleTimerMasks.ShuttleTime] = countdownTime, + [ShuttleTimerMasks.SourceTime] = countdownTime, + [ShuttleTimerMasks.DestTime] = countdownTime, + [ShuttleTimerMasks.Text] = new string?[] { "BYE!" } + }; + _deviceNetworkSystem.QueuePacket(shuttle, null, payload, net.TransmitFrequency); + } + } + + /// + /// Attempts to dock the emergency shuttle to the station. /// public void CallEmergencyShuttle(EntityUid stationUid, StationEmergencyShuttleComponent? stationShuttle = null) { @@ -203,6 +275,23 @@ public void CallEmergencyShuttle(EntityUid stationUid, StationEmergencyShuttleCo _chatSystem.DispatchStationAnnouncement(stationUid, Loc.GetString("emergency-shuttle-docked", ("time", $"{_consoleAccumulator:0}"), ("direction", angle.GetDir())), playDefaultSound: false); } + // shuttle timers + var time = TimeSpan.FromSeconds(_consoleAccumulator); + if (TryComp(stationShuttle.EmergencyShuttle.Value, out var netComp)) + { + var payload = new NetworkPayload + { + [ShuttleTimerMasks.ShuttleMap] = stationShuttle.EmergencyShuttle.Value, + [ShuttleTimerMasks.SourceMap] = targetXform?.MapUid, + [ShuttleTimerMasks.DestMap] = _roundEnd.GetCentcomm(), + [ShuttleTimerMasks.ShuttleTime] = time, + [ShuttleTimerMasks.SourceTime] = time, + [ShuttleTimerMasks.DestTime] = time + TimeSpan.FromSeconds(TransitTime), + [ShuttleTimerMasks.Docked] = true + }; + _deviceNetworkSystem.QueuePacket(stationShuttle.EmergencyShuttle.Value, null, payload, netComp.TransmitFrequency); + } + _logger.Add(LogType.EmergencyShuttle, LogImpact.High, $"Emergency shuttle {ToPrettyString(stationUid)} docked with stations"); // TODO: Need filter extensions or something don't blame me. _audio.PlayGlobal("/Audio/Announcements/shuttle_dock.ogg", Filter.Broadcast(), true); @@ -229,7 +318,7 @@ private void OnCentcommInit(EntityUid uid, StationCentcommComponent component, C // Post mapinit? fancy if (TryComp(component.Entity, out var xform)) { - component.MapId = xform.MapID; + component.MapEntity = xform.MapUid; return; } @@ -242,7 +331,7 @@ private void OnStationStartup(EntityUid uid, StationEmergencyShuttleComponent co } /// - /// Spawns the emergency shuttle for each station and starts the countdown until controls unlock. + /// Spawns the emergency shuttle for each station and starts the countdown until controls unlock. /// public void CallEmergencyShuttle() { @@ -283,53 +372,86 @@ private void SetupEmergencyShuttle() var query = AllEntityQuery(); while (query.MoveNext(out var uid, out var comp)) - { AddEmergencyShuttle(uid, comp); - } } private void AddCentcomm(StationCentcommComponent component) { + if (component.MapEntity != null || component.Entity != null) + { + _sawmill.Warning("Attempted to re-add an existing centcomm map."); + return; + } + // Check for existing centcomms and just point to that var query = AllEntityQuery(); - while (query.MoveNext(out var otherComp)) { if (otherComp == component) continue; - component.MapId = otherComp.MapId; + if (!Exists(otherComp.MapEntity) || !Exists(otherComp.Entity)) + { + Log.Error($"Disconvered invalid centcomm component?"); + ClearCentcomm(otherComp); + continue; + } + + component.MapEntity = otherComp.MapEntity; component.ShuttleIndex = otherComp.ShuttleIndex; return; } + if (string.IsNullOrEmpty(component.Map.ToString())) + { + _sawmill.Warning("No CentComm map found, skipping setup."); + return; + } + var mapId = _mapManager.CreateMap(); - component.MapId = mapId; + var grid = _map.LoadGrid(mapId, component.Map.ToString(), new MapLoadOptions() + { + LoadMap = false, + }); + var map = _mapManager.GetMapEntityId(mapId); - if (!string.IsNullOrEmpty(component.Map.ToString())) + if (!Exists(map)) { - var ent = _map.LoadGrid(mapId, component.Map.ToString()); + Log.Error($"Failed to set up centcomm map!"); + QueueDel(grid); + return; + } - if (ent != null) - { - component.Entity = ent.Value; - _shuttle.AddFTLDestination(ent.Value, false); - } + if (!Exists(grid)) + { + Log.Error($"Failed to set up centcomm grid!"); + QueueDel(map); + return; } - else + + var xform = Transform(grid.Value); + if (xform.ParentUid != map || xform.MapUid != map) { - _sawmill.Warning("No CentComm map found, skipping setup."); + Log.Error($"Centcomm grid is not parented to its own map?"); + QueueDel(map); + QueueDel(grid); + return; } + + component.MapEntity = map; + component.Entity = grid; + _shuttle.AddFTLDestination(grid.Value, false); } - public HashSet GetCentcommMaps() + public HashSet GetCentcommMaps() { var query = AllEntityQuery(); - var maps = new HashSet(Count()); + var maps = new HashSet(Count()); while (query.MoveNext(out var comp)) { - maps.Add(comp.MapId); + if (comp.MapEntity != null) + maps.Add(comp.MapEntity.Value); } return maps; @@ -339,17 +461,20 @@ private void AddEmergencyShuttle(EntityUid uid, StationEmergencyShuttleComponent { if (!_emergencyShuttleEnabled || component.EmergencyShuttle != null || - !TryComp(uid, out var centcomm)) + !TryComp(uid, out var centcomm) + || !TryComp(centcomm.MapEntity, out MapComponent? map)) { return; } // Load escape shuttle var shuttlePath = component.EmergencyShuttlePath; - var shuttle = _map.LoadGrid(centcomm.MapId, shuttlePath.ToString(), new MapLoadOptions() + 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 + centcomm.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) @@ -365,7 +490,7 @@ private void AddEmergencyShuttle(EntityUid uid, StationEmergencyShuttleComponent while (query.MoveNext(out var comp)) { - if (comp == centcomm || comp.MapId != centcomm.MapId) + if (comp == centcomm || comp.MapEntity != centcomm.MapEntity) continue; comp.ShuttleIndex = centcomm.ShuttleIndex; @@ -374,6 +499,7 @@ private void AddEmergencyShuttle(EntityUid uid, StationEmergencyShuttleComponent component.EmergencyShuttle = shuttle; EnsureComp(shuttle.Value); EnsureComp(shuttle.Value); + EnsureComp(shuttle.Value); } private void OnEscapeUnpaused(EntityUid uid, EscapePodComponent component, ref EntityUnpausedEvent args) @@ -414,6 +540,6 @@ private bool IsOnGrid(TransformComponent xform, EntityUid shuttle, MapGridCompon if (!Resolve(shuttle, ref grid, ref shuttleXform)) return false; - return shuttleXform.WorldMatrix.TransformBox(grid.LocalAABB).Contains(xform.WorldPosition); + return _transformSystem.GetWorldMatrix(shuttleXform).TransformBox(grid.LocalAABB).Contains(_transformSystem.GetWorldPosition(xform)); } } diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs index e19d88b1c2..763e89e4f8 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs @@ -7,6 +7,7 @@ using Content.Shared.Body.Components; using Content.Shared.Buckle.Components; using Content.Shared.Doors.Components; +using Content.Shared.Ghost; using Content.Shared.Maps; using Content.Shared.Parallax; using Content.Shared.Shuttles.Components; @@ -14,6 +15,7 @@ using Content.Shared.StatusEffect; using JetBrains.Annotations; using Robust.Shared.Audio; +using Robust.Shared.Audio.Components; using Robust.Shared.Collections; using Robust.Shared.Map; using Robust.Shared.Map.Components; @@ -77,6 +79,7 @@ public sealed partial class ShuttleSystem private EntityQuery _bodyQuery; private EntityQuery _buckleQuery; + private EntityQuery _ghostQuery; private EntityQuery _physicsQuery; private EntityQuery _statusQuery; private EntityQuery _xformQuery; @@ -85,6 +88,7 @@ private void InitializeFTL() { _bodyQuery = GetEntityQuery(); _buckleQuery = GetEntityQuery(); + _ghostQuery = GetEntityQuery(); _physicsQuery = GetEntityQuery(); _statusQuery = GetEntityQuery(); _xformQuery = GetEntityQuery(); @@ -210,7 +214,7 @@ private bool TrySetupFTL(EntityUid uid, ShuttleComponent shuttle, [NotNullWhen(t if (HasComp(uid)) { - _sawmill.Warning($"Tried queuing {ToPrettyString(uid)} which already has HyperspaceComponent?"); + Log.Warning($"Tried queuing {ToPrettyString(uid)} which already has HyperspaceComponent?"); return false; } @@ -227,8 +231,8 @@ private bool TrySetupFTL(EntityUid uid, ShuttleComponent shuttle, [NotNullWhen(t component = AddComp(uid); component.State = FTLState.Starting; - // TODO: Need BroadcastGrid to not be bad. - SoundSystem.Play(_startupSound.GetSound(), Filter.Empty().AddInRange(Transform(uid).MapPosition, GetSoundRange(uid)), _startupSound.Params); + var audio = _audio.PlayPvs(_startupSound, uid); + audio.Value.Component.Flags |= AudioFlags.GridAudio; // Make sure the map is setup before we leave to avoid pop-in (e.g. parallax). SetupHyperspace(); return true; @@ -270,7 +274,7 @@ private void UpdateHyperspace(float frameTime) if (TryComp(uid, out body)) { if (shuttle != null) - Enable(uid, body, shuttle); + Enable(uid, component: body, shuttle: shuttle); _physics.SetLinearVelocity(uid, new Vector2(0f, 20f), body: body); _physics.SetAngularVelocity(uid, 0f, body: body); _physics.SetLinearDamping(body, 0f); @@ -284,11 +288,11 @@ private void UpdateHyperspace(float frameTime) var ev = new FTLStartedEvent(uid, target, fromMapUid, fromMatrix, fromRotation); RaiseLocalEvent(uid, ref ev, true); - if (comp.TravelSound != null) - { - comp.TravelStream = SoundSystem.Play(comp.TravelSound.GetSound(), - Filter.Pvs(uid, 4f, entityManager: EntityManager), comp.TravelSound.Params); - } + var wowdio = _audio.PlayPvs(comp.TravelSound, uid); + comp.TravelStream = wowdio?.Entity; + if (wowdio?.Component != null) + wowdio.Value.Component.Flags |= AudioFlags.GridAudio; + break; // Arriving, play effects case FTLState.Travelling: @@ -361,11 +365,11 @@ private void UpdateHyperspace(float frameTime) // to event ordering and awake body shenanigans (at least for now). if (HasComp(xform.MapUid)) { - Disable(uid, body); + Disable(uid, component: body); } else if (shuttle != null) { - Enable(uid, body, shuttle); + Enable(uid, component: body, shuttle: shuttle); } } @@ -374,13 +378,9 @@ private void UpdateHyperspace(float frameTime) _thruster.DisableLinearThrusters(shuttle); } - if (comp.TravelStream != null) - { - comp.TravelStream?.Stop(); - comp.TravelStream = null; - } - - _audio.PlayGlobal(_arrivalSound, Filter.Empty().AddInRange(Transform(uid).MapPosition, GetSoundRange(uid)), true); + comp.TravelStream = _audio.Stop(comp.TravelStream); + var audio = _audio.PlayPvs(_arrivalSound, uid); + audio.Value.Component.Flags |= AudioFlags.GridAudio; if (TryComp(uid, out var dest)) { @@ -401,7 +401,7 @@ private void UpdateHyperspace(float frameTime) _console.RefreshShuttleConsoles(uid); break; default: - _sawmill.Error($"Found invalid FTL state {comp.State} for {uid}"); + Log.Error($"Found invalid FTL state {comp.State} for {uid}"); RemComp(uid); break; } @@ -450,7 +450,8 @@ private void SetupHyperspace() return; _hyperSpaceMap = _mapManager.CreateMap(); - _sawmill.Info($"Setup hyperspace map at {_hyperSpaceMap.Value}"); + _metadata.SetEntityName(_mapManager.GetMapEntityId(_hyperSpaceMap.Value), "FTL"); + Log.Debug($"Setup hyperspace map at {_hyperSpaceMap.Value}"); DebugTools.Assert(!_mapManager.IsMapPaused(_hyperSpaceMap.Value)); var parallax = EnsureComp(_mapManager.GetMapEntityId(_hyperSpaceMap.Value)); parallax.Parallax = "FastSpace"; @@ -500,10 +501,10 @@ private void KnockOverKids(TransformComponent xform, ref ValueList to var childEnumerator = xform.ChildEnumerator; while (childEnumerator.MoveNext(out var child)) { - if (!_buckleQuery.TryGetComponent(child.Value, out var buckle) || buckle.Buckled) + if (!_buckleQuery.TryGetComponent(child, out var buckle) || buckle.Buckled) continue; - toKnock.Add(child.Value); + toKnock.Add(child); } } @@ -700,6 +701,7 @@ private void Smimsh(EntityUid uid, FixturesComponent? manager = null, MapGridCom var transform = _physics.GetPhysicsTransform(uid, xform, _xformQuery); var aabbs = new List(manager.Fixtures.Count); var immune = new HashSet(); + var tileSet = new List<(Vector2i, Tile)>(); foreach (var fixture in manager.Fixtures.Values) { @@ -711,6 +713,10 @@ private void Smimsh(EntityUid uid, FixturesComponent? manager = null, MapGridCom aabb = aabb.Enlarged(0.2f); aabbs.Add(aabb); + // Handle clearing biome stuff as relevant. + tileSet.Clear(); + _biomes.ReserveTiles(xform.MapUid.Value, aabb, tileSet); + foreach (var ent in _lookup.GetEntitiesIntersecting(xform.MapUid.Value, aabb, LookupFlags.Uncontained)) { if (ent == uid || immune.Contains(ent)) @@ -718,6 +724,11 @@ private void Smimsh(EntityUid uid, FixturesComponent? manager = null, MapGridCom continue; } + if (_ghostQuery.HasComponent(ent)) + { + continue; + } + if (_bodyQuery.TryGetComponent(ent, out var mob)) { var gibs = _bobby.GibBody(ent, body: mob); diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.GridFill.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.GridFill.cs index 4d53647c9e..f817878c2e 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.GridFill.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.GridFill.cs @@ -80,7 +80,7 @@ private void GridSpawns(EntityUid uid, GridSpawnComponent component) if (!valid) { - _sawmill.Error($"Error loading gridspawn for {ToPrettyString(uid)} / {path}"); + Log.Error($"Error loading gridspawn for {ToPrettyString(uid)} / {path}"); } } @@ -129,7 +129,7 @@ private void OnGridFillMapInit(EntityUid uid, GridFillComponent component, MapIn if (!valid) { - _sawmill.Error($"Error loading gridfill dock for {ToPrettyString(uid)} / {component.Path}"); + Log.Error($"Error loading gridfill dock for {ToPrettyString(uid)} / {component.Path}"); } _mapManager.DeleteMap(mapId); @@ -148,7 +148,7 @@ private void OnGridFillMapInit(EntityUid uid, GridFillComponent component, MapIn if (!dockQuery.TryGetComponent(child, out var dock)) continue; - return (child.Value, dock); + return (child, dock); } return null; diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.Impact.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.Impact.cs index 73dc4b208c..f346398cda 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.Impact.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.Impact.cs @@ -54,6 +54,6 @@ private void OnShuttleCollide(EntityUid uid, ShuttleComponent component, ref Sta var volume = MathF.Min(10f, 1f * MathF.Pow(jungleDiff, 0.5f) - 5f); var audioParams = AudioParams.Default.WithVariation(SharedContentAudioSystem.DefaultVariation).WithVolume(volume); - _audio.Play(_shuttleImpactSound, Filter.Pvs(coordinates, rangeMultiplier: 4f, entityMan: EntityManager), coordinates, true, audioParams); + _audio.PlayPvs(_shuttleImpactSound, coordinates, audioParams); } } diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.cs index 41e4cbc2be..3e941e67b4 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.cs @@ -1,5 +1,6 @@ using Content.Server.Body.Systems; using Content.Server.Doors.Systems; +using Content.Server.Parallax; using Content.Server.Shuttles.Components; using Content.Server.Station.Systems; using Content.Server.Stunnable; @@ -9,6 +10,8 @@ using Content.Shared.Throwing; using JetBrains.Annotations; using Robust.Server.GameObjects; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; using Robust.Shared.Map; using Robust.Shared.Map.Components; @@ -26,6 +29,7 @@ public sealed partial class ShuttleSystem : SharedShuttleSystem [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ITileDefinitionManager _tileDefManager = default!; + [Dependency] private readonly BiomeSystem _biomes = default!; [Dependency] private readonly BodySystem _bobby = default!; [Dependency] private readonly DockingSystem _dockSystem = default!; [Dependency] private readonly DoorSystem _doors = default!; @@ -33,7 +37,9 @@ public sealed partial class ShuttleSystem : SharedShuttleSystem [Dependency] private readonly EntityLookupSystem _lookup = default!; [Dependency] private readonly FixtureSystem _fixtures = default!; [Dependency] private readonly MapLoaderSystem _loader = default!; + [Dependency] private readonly MetaDataSystem _metadata = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedMapSystem _maps = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly ShuttleConsoleSystem _console = default!; @@ -43,14 +49,11 @@ public sealed partial class ShuttleSystem : SharedShuttleSystem [Dependency] private readonly ThrusterSystem _thruster = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; - private ISawmill _sawmill = default!; - public const float TileMassMultiplier = 0.5f; public override void Initialize() { base.Initialize(); - _sawmill = Logger.GetSawmill("shuttles"); InitializeFTL(); InitializeGridFills(); @@ -115,7 +118,7 @@ private void OnShuttleStartup(EntityUid uid, ShuttleComponent component, Compone if (component.Enabled) { - Enable(uid, physicsComponent, component); + Enable(uid, component: physicsComponent, shuttle: component); } } @@ -128,17 +131,18 @@ public void Toggle(EntityUid uid, ShuttleComponent component) if (component.Enabled) { - Enable(uid, physicsComponent, component); + Enable(uid, component: physicsComponent, shuttle: component); } else { - Disable(uid, physicsComponent); + Disable(uid, component: physicsComponent); } } - private void Enable(EntityUid uid, PhysicsComponent component, ShuttleComponent shuttle) + public void Enable(EntityUid uid, FixturesComponent? manager = null, PhysicsComponent? component = null, ShuttleComponent? shuttle = null) { - FixturesComponent? manager = null; + if (!Resolve(uid, ref manager, ref component, ref shuttle, false)) + return; _physics.SetBodyType(uid, BodyType.Dynamic, manager: manager, body: component); _physics.SetBodyStatus(component, BodyStatus.InAir); @@ -147,9 +151,10 @@ private void Enable(EntityUid uid, PhysicsComponent component, ShuttleComponent _physics.SetAngularDamping(component, shuttle.AngularDamping); } - private void Disable(EntityUid uid, PhysicsComponent component) + public void Disable(EntityUid uid, FixturesComponent? manager = null, PhysicsComponent? component = null) { - FixturesComponent? manager = null; + if (!Resolve(uid, ref manager, ref component, false)) + return; _physics.SetBodyType(uid, BodyType.Static, manager: manager, body: component); _physics.SetBodyStatus(component, BodyStatus.OnGround); @@ -162,11 +167,6 @@ private void OnShuttleShutdown(EntityUid uid, ShuttleComponent component, Compon if (EntityManager.GetComponent(uid).EntityLifeStage >= EntityLifeStage.Terminating) return; - if (!EntityManager.TryGetComponent(uid, out PhysicsComponent? physicsComponent)) - { - return; - } - - Disable(uid, physicsComponent); + Disable(uid); } } diff --git a/Content.Server/Shuttles/Systems/ShuttleTimerSystem.cs b/Content.Server/Shuttles/Systems/ShuttleTimerSystem.cs new file mode 100644 index 0000000000..b65009f6e2 --- /dev/null +++ b/Content.Server/Shuttles/Systems/ShuttleTimerSystem.cs @@ -0,0 +1,69 @@ +using Content.Shared.TextScreen; +using Content.Server.Shuttles.Components; +using Content.Server.DeviceNetwork.Systems; +using Robust.Shared.Timing; + + +namespace Content.Server.Shuttles.Systems; + +/// +/// Controls the wallmounted screens on stations and shuttles displaying e.g. FTL duration, ETA +/// +public sealed class ShuttleTimerSystem : EntitySystem +{ + [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly SharedAppearanceSystem _appearanceSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnPacketReceived); + } + + /// + /// Determines if/how a broadcast packet affects this timer. + /// All shuttle timer packets are broadcast in their network, and subnetting is implemented by filtering timer MapUid. + /// + private void OnPacketReceived(EntityUid uid, ShuttleTimerComponent component, DeviceNetworkPacketEvent args) + { + var timerXform = Transform(uid); + + // no false positives. + if (timerXform.MapUid == null) + return; + + string key; + args.Data.TryGetValue(ShuttleTimerMasks.ShuttleMap, out EntityUid? shuttleMap); + args.Data.TryGetValue(ShuttleTimerMasks.SourceMap, out EntityUid? source); + args.Data.TryGetValue(ShuttleTimerMasks.DestMap, out EntityUid? dest); + args.Data.TryGetValue(ShuttleTimerMasks.Docked, out bool docked); + string?[] text = new string?[] { docked ? "ETD" : "ETA" }; + + switch (timerXform.MapUid) + { + // sometimes the timer transforms on FTL shuttles have a hyperspace mapuid, so matching by grid works as a fallback. + case var local when local == shuttleMap || timerXform.GridUid == shuttleMap: + key = ShuttleTimerMasks.ShuttleTime; + break; + case var origin when origin == source: + key = ShuttleTimerMasks.SourceTime; + break; + case var remote when remote == dest: + key = ShuttleTimerMasks.DestTime; + text = new string?[] { "ETA" }; + break; + default: + return; + } + + if (!args.Data.TryGetValue(key, out TimeSpan duration)) + return; + + if (args.Data.TryGetValue(ShuttleTimerMasks.Text, out string?[]? label)) + text = label; + + _appearanceSystem.SetData(uid, TextScreenVisuals.TargetTime, _gameTiming.CurTime + duration); + _appearanceSystem.SetData(uid, TextScreenVisuals.ScreenText, text); + } +} diff --git a/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs b/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs index c080420266..228f32ad90 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs @@ -3,7 +3,6 @@ using Content.Shared.Interaction.Components; using Content.Shared.Silicons.Borgs.Components; using Robust.Shared.Containers; -using Robust.Shared.Utility; namespace Content.Server.Silicons.Borgs; @@ -89,18 +88,19 @@ private void OnSelectableAction(EntityUid uid, SelectableBorgModuleComponent com if (!TryComp(chassis, out var chassisComp)) return; + var selected = chassisComp.SelectedModule; + args.Handled = true; - if (chassisComp.SelectedModule == uid) + UnselectModule(chassis, chassisComp); + + if (selected != uid) { - UnselectModule(chassis, chassisComp); - return; + SelectModule(chassis, uid, chassisComp, component); } - - SelectModule(chassis, uid, chassisComp, component); } /// - /// Selects a module, enablind the borg to use its provided abilities. + /// Selects a module, enabling the borg to use its provided abilities. /// public void SelectModule(EntityUid chassis, EntityUid moduleUid, diff --git a/Content.Server/Silicons/Borgs/BorgSystem.cs b/Content.Server/Silicons/Borgs/BorgSystem.cs index 883cb3b3d8..7de351a70f 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.cs @@ -11,6 +11,8 @@ using Content.Shared.Interaction; using Content.Shared.Mind; using Content.Shared.Mind.Components; +using Content.Shared.Mobs; +using Content.Shared.Mobs.Systems; using Content.Shared.Movement.Systems; using Content.Shared.PowerCell; using Content.Shared.PowerCell.Components; @@ -39,6 +41,7 @@ public sealed partial class BorgSystem : SharedBorgSystem [Dependency] private readonly HandsSystem _hands = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly SharedMindSystem _mind = default!; + [Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly MovementSpeedModifierSystem _movementSpeedModifier = default!; [Dependency] private readonly PowerCellSystem _powerCell = default!; [Dependency] private readonly ThrowingSystem _throwing = default!; @@ -56,6 +59,7 @@ public override void Initialize() SubscribeLocalEvent(OnChassisInteractUsing); SubscribeLocalEvent(OnMindAdded); SubscribeLocalEvent(OnMindRemoved); + SubscribeLocalEvent(OnMobStateChanged); SubscribeLocalEvent(OnPowerCellChanged); SubscribeLocalEvent(OnPowerCellSlotEmpty); SubscribeLocalEvent(OnUIOpenAttempt); @@ -98,7 +102,7 @@ private void OnChassisInteractUsing(EntityUid uid, BorgChassisComponent componen { if (_mind.TryGetMind(used, out _, out var mind) && mind.Session != null) { - if (!CanPlayerBeBorgged(mind.Session)) + if (!CanPlayerBeBorged(mind.Session)) { Popup.PopupEntity(Loc.GetString("borg-player-not-allowed"), used, args.User); return; @@ -154,6 +158,19 @@ private void OnMindRemoved(EntityUid uid, BorgChassisComponent component, MindRe BorgDeactivate(uid, component); } + private void OnMobStateChanged(EntityUid uid, BorgChassisComponent component, MobStateChangedEvent args) + { + if (args.NewMobState == MobState.Alive) + { + if (_mind.TryGetMind(uid, out _, out _)) + _powerCell.SetPowerCellDrawEnabled(uid, true); + } + else + { + _powerCell.SetPowerCellDrawEnabled(uid, false); + } + } + private void OnPowerCellChanged(EntityUid uid, BorgChassisComponent component, PowerCellChangedEvent args) { UpdateBatteryAlert(uid); @@ -172,7 +189,7 @@ private void OnPowerCellChanged(EntityUid uid, BorgChassisComponent component, P if (_powerCell.HasDrawCharge(uid, draw)) { // only reenable the powerdraw if a player has the role. - if (!draw.Drawing && _mind.TryGetMind(uid, out _, out _)) + if (!draw.Drawing && _mind.TryGetMind(uid, out _, out _) && _mobState.IsAlive(uid)) _powerCell.SetPowerCellDrawEnabled(uid, true); EnableBorgAbilities(uid, component); @@ -213,7 +230,7 @@ private void OnBrainMindAdded(EntityUid uid, BorgBrainComponent component, MindA if (!_mind.TryGetMind(uid, out var mindId, out var mind) || mind.Session == null) return; - if (!CanPlayerBeBorgged(mind.Session)) + if (!CanPlayerBeBorged(mind.Session)) { Popup.PopupEntity(Loc.GetString("borg-player-not-allowed-eject"), uid); Container.RemoveEntity(containerEnt, uid); @@ -249,7 +266,7 @@ private void UpdateBatteryAlert(EntityUid uid, PowerCellSlotComponent? slotCompo /// /// Activates the borg, enabling all of its modules. /// - public void EnableBorgAbilities(EntityUid uid, BorgChassisComponent component) + public void EnableBorgAbilities(EntityUid uid, BorgChassisComponent component, PowerCellDrawComponent? powerCell = null) { if (component.Activated) return; @@ -302,7 +319,7 @@ public void BorgDeactivate(EntityUid uid, BorgChassisComponent component) /// Checks that a player has fulfilled the requirements for the borg job. /// If they don't have enough hours, they cannot be placed into a chassis. /// - public bool CanPlayerBeBorgged(ICommonSession session) + public bool CanPlayerBeBorged(ICommonSession session) { if (_banManager.GetJobBans(session.UserId)?.Contains(BorgJobId) == true) return false; diff --git a/Content.Server/Silicons/Laws/SiliconLawSystem.cs b/Content.Server/Silicons/Laws/SiliconLawSystem.cs index 06d845b72c..e1366fb1eb 100644 --- a/Content.Server/Silicons/Laws/SiliconLawSystem.cs +++ b/Content.Server/Silicons/Laws/SiliconLawSystem.cs @@ -18,6 +18,7 @@ using Content.Shared.Stunnable; using Content.Shared.Wires; using Robust.Server.GameObjects; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Toolshed; @@ -36,6 +37,7 @@ public sealed class SiliconLawSystem : SharedSiliconLawSystem [Dependency] private readonly SharedStunSystem _stunSystem = default!; [Dependency] private readonly IEntityManager _entityManager = default!; [Dependency] private readonly SharedRoleSystem _roles = default!; + [Dependency] private readonly SharedAudioSystem _audioSystem = default!; /// public override void Initialize() @@ -187,6 +189,10 @@ protected override void OnGotEmagged(EntityUid uid, EmagSiliconLawComponent comp EnsureEmaggedRole(uid, component); _stunSystem.TryParalyze(uid, component.StunTime, true); + + if (!_mind.TryGetMind(uid, out var mindId, out _)) + return; + _roles.MindPlaySound(mindId, component.EmaggedSound); } private void OnEmagMindAdded(EntityUid uid, EmagSiliconLawComponent component, MindAddedMessage args) diff --git a/Content.Server/Singularity/EntitySystems/SingularitySystem.cs b/Content.Server/Singularity/EntitySystems/SingularitySystem.cs index ddc63156bf..6b4347740a 100644 --- a/Content.Server/Singularity/EntitySystems/SingularitySystem.cs +++ b/Content.Server/Singularity/EntitySystems/SingularitySystem.cs @@ -5,6 +5,8 @@ using Content.Shared.Singularity.EntitySystems; using Content.Shared.Singularity.Events; using Robust.Server.GameStates; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.GameStates; using Robust.Shared.Player; using Robust.Shared.Timing; @@ -204,9 +206,9 @@ protected override void OnSingularityStartup(EntityUid uid, SingularityComponent MetaDataComponent? metaData = null; if (Resolve(uid, ref metaData) && metaData.EntityLifeStage <= EntityLifeStage.Initializing) - _audio.Play(comp.FormationSound, Filter.Pvs(uid), uid, true); + _audio.PlayPvs(comp.FormationSound, uid); - comp.AmbientSoundStream = _audio.Play(comp.AmbientSound, Filter.Pvs(uid), uid, true); + comp.AmbientSoundStream = _audio.PlayPvs(comp.AmbientSound, uid)?.Entity; UpdateSingularityLevel(uid, comp); } @@ -219,7 +221,7 @@ protected override void OnSingularityStartup(EntityUid uid, SingularityComponent /// The event arguments. public void OnDistortionStartup(EntityUid uid, SingularityDistortionComponent comp, ComponentStartup args) { - _pvs.AddGlobalOverride(uid); + _pvs.AddGlobalOverride(GetNetEntity(uid)); } /// @@ -232,11 +234,18 @@ public void OnDistortionStartup(EntityUid uid, SingularityDistortionComponent co /// The event arguments. public void OnSingularityShutdown(EntityUid uid, SingularityComponent comp, ComponentShutdown args) { - comp.AmbientSoundStream?.Stop(); + comp.AmbientSoundStream = _audio.Stop(comp.AmbientSoundStream); MetaDataComponent? metaData = null; if (Resolve(uid, ref metaData) && metaData.EntityLifeStage >= EntityLifeStage.Terminating) - _audio.Play(comp.DissipationSound, Filter.Pvs(uid), uid, true); + { + var xform = Transform(uid); + var coordinates = xform.Coordinates; + + // I feel like IsValid should be checking this or something idk. + if (!TerminatingOrDeleted(coordinates.EntityId)) + _audio.PlayPvs(comp.DissipationSound, coordinates); + } } /// diff --git a/Content.Server/Spawners/EntitySystems/SpawnPointSystem.cs b/Content.Server/Spawners/EntitySystems/SpawnPointSystem.cs index 755153d309..9146873e00 100644 --- a/Content.Server/Spawners/EntitySystems/SpawnPointSystem.cs +++ b/Content.Server/Spawners/EntitySystems/SpawnPointSystem.cs @@ -1,4 +1,4 @@ -using Content.Server.GameTicking; +using Content.Server.GameTicking; using Content.Server.Spawners.Components; using Content.Server.Station.Systems; using Robust.Shared.Map; @@ -32,6 +32,24 @@ private void OnSpawnPlayer(PlayerSpawningEvent args) if (args.Station != null && _stationSystem.GetOwningStation(uid, xform) != args.Station) continue; + // Delta-V: Allow setting a desired SpawnPointType + if (args.DesiredSpawnPointType != SpawnPointType.Unset) + { + var isMatchingJob = spawnPoint.SpawnType == SpawnPointType.Job && + (args.Job == null || spawnPoint.Job?.ID == args.Job.Prototype); + + switch (args.DesiredSpawnPointType) + { + case SpawnPointType.Job when isMatchingJob: + case SpawnPointType.LateJoin when spawnPoint.SpawnType == SpawnPointType.LateJoin: + case SpawnPointType.Observer when spawnPoint.SpawnType == SpawnPointType.Observer: + possiblePositions.Add(xform.Coordinates); + break; + default: + continue; + } + } + if (_gameTicker.RunLevel == GameRunLevel.InRound && spawnPoint.SpawnType == SpawnPointType.LateJoin) { possiblePositions.Add(xform.Coordinates); @@ -39,7 +57,7 @@ private void OnSpawnPlayer(PlayerSpawningEvent args) if (_gameTicker.RunLevel != GameRunLevel.InRound && spawnPoint.SpawnType == SpawnPointType.Job && - (args.Job == null || spawnPoint.Job?.ID == args.Job.PrototypeId)) + (args.Job == null || spawnPoint.Job?.ID == args.Job.Prototype)) { possiblePositions.Add(xform.Coordinates); } diff --git a/Content.Server/Spawners/EntitySystems/SpawnerSystem.cs b/Content.Server/Spawners/EntitySystems/SpawnerSystem.cs index c6e34c1848..c601fdd287 100644 --- a/Content.Server/Spawners/EntitySystems/SpawnerSystem.cs +++ b/Content.Server/Spawners/EntitySystems/SpawnerSystem.cs @@ -33,7 +33,7 @@ private void OnTimerFired(EntityUid uid, TimedSpawnerComponent component) for (var i = 0; i < number; i++) { var entity = _random.Pick(component.Prototypes); - Spawn(entity, coordinates); + SpawnAtPosition(entity, coordinates); } } diff --git a/Content.Server/Speech/Components/BarkAccentComponent.cs b/Content.Server/Speech/Components/BarkAccentComponent.cs new file mode 100644 index 0000000000..2e9aef2e6f --- /dev/null +++ b/Content.Server/Speech/Components/BarkAccentComponent.cs @@ -0,0 +1,7 @@ +namespace Content.Server.Speech.Components +{ + [RegisterComponent] + public sealed partial class BarkAccentComponent : Component + { + } +} diff --git a/Content.Server/Speech/Components/MothAccentComponent.cs b/Content.Server/Speech/Components/MothAccentComponent.cs new file mode 100644 index 0000000000..e5b38f315d --- /dev/null +++ b/Content.Server/Speech/Components/MothAccentComponent.cs @@ -0,0 +1,10 @@ +namespace Content.Server.Speech.Components; + +/// +/// Buzzz! +/// +[RegisterComponent] +public sealed partial class MothAccentComponent : Component +{ + +} diff --git a/Content.Server/Speech/Components/ReplacementAccentComponent.cs b/Content.Server/Speech/Components/ReplacementAccentComponent.cs index cbec2e8464..ac4e9fbafe 100644 --- a/Content.Server/Speech/Components/ReplacementAccentComponent.cs +++ b/Content.Server/Speech/Components/ReplacementAccentComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Speech.Components { [Prototype("accent")] - public sealed class ReplacementAccentPrototype : IPrototype + public sealed partial class ReplacementAccentPrototype : IPrototype { [ViewVariables] [IdDataField] diff --git a/Content.Server/Speech/Components/UnblockableSpeechComponent.cs b/Content.Server/Speech/Components/UnblockableSpeechComponent.cs new file mode 100644 index 0000000000..48e2b9863a --- /dev/null +++ b/Content.Server/Speech/Components/UnblockableSpeechComponent.cs @@ -0,0 +1,7 @@ +namespace Content.Server.Speech.Components +{ + [RegisterComponent] + public sealed partial class UnblockableSpeechComponent : Component + { + } +} diff --git a/Content.Server/Speech/EntitySystems/BarkAccentSystem.cs b/Content.Server/Speech/EntitySystems/BarkAccentSystem.cs new file mode 100644 index 0000000000..a6e5b68ffc --- /dev/null +++ b/Content.Server/Speech/EntitySystems/BarkAccentSystem.cs @@ -0,0 +1,43 @@ +using Content.Server.Speech.Components; +using Robust.Shared.Random; + +namespace Content.Server.Speech.EntitySystems +{ + public sealed class BarkAccentSystem : EntitySystem + { + [Dependency] private readonly IRobustRandom _random = default!; + + private static readonly IReadOnlyList Barks = new List{ + " Woof!", " WOOF", " wof-wof" + }.AsReadOnly(); + + private static readonly IReadOnlyDictionary SpecialWords = new Dictionary() + { + { "ah", "arf" }, + { "Ah", "Arf" }, + { "oh", "oof" }, + { "Oh", "Oof" }, + }; + + public override void Initialize() + { + SubscribeLocalEvent(OnAccent); + } + + public string Accentuate(string message) + { + foreach (var (word, repl) in SpecialWords) + { + message = message.Replace(word, repl); + } + + return message.Replace("!", _random.Pick(Barks)) + .Replace("l", "r").Replace("L", "R"); + } + + private void OnAccent(EntityUid uid, BarkAccentComponent component, AccentGetEvent args) + { + args.Message = Accentuate(args.Message); + } + } +} diff --git a/Content.Server/Speech/EntitySystems/MothAccentSystem.cs b/Content.Server/Speech/EntitySystems/MothAccentSystem.cs new file mode 100644 index 0000000000..3de4651b4a --- /dev/null +++ b/Content.Server/Speech/EntitySystems/MothAccentSystem.cs @@ -0,0 +1,25 @@ +using System.Text.RegularExpressions; +using Content.Server.Speech.Components; + +namespace Content.Server.Speech.EntitySystems; + +public sealed class MothAccentSystem : EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnAccent); + } + + private void OnAccent(EntityUid uid, MothAccentComponent component, AccentGetEvent args) + { + var message = args.Message; + + // buzzz + message = Regex.Replace(message, "z{1,3}", "zzz"); + // buZZZ + message = Regex.Replace(message, "Z{1,3}", "ZZZ"); + + args.Message = message; + } +} diff --git a/Content.Server/Speech/EntitySystems/UnblockableSpeechSystem.cs b/Content.Server/Speech/EntitySystems/UnblockableSpeechSystem.cs new file mode 100644 index 0000000000..35a77c31f6 --- /dev/null +++ b/Content.Server/Speech/EntitySystems/UnblockableSpeechSystem.cs @@ -0,0 +1,18 @@ +using Content.Server.Chat.Systems; +using Content.Server.Speech.Components; + +namespace Content.Server.Speech.EntitySystems +{ + public sealed class UnblockableSpeechSystem : EntitySystem + { + public override void Initialize() + { + SubscribeLocalEvent(OnCheck); + } + + private void OnCheck(EntityUid uid, UnblockableSpeechComponent component, CheckIgnoreSpeechBlockerEvent args) + { + args.IgnoreBlocker = true; + } + } +} diff --git a/Content.Server/Speech/EntitySystems/VocalSystem.cs b/Content.Server/Speech/EntitySystems/VocalSystem.cs index 5dccb8bf9c..aedcbbd099 100644 --- a/Content.Server/Speech/EntitySystems/VocalSystem.cs +++ b/Content.Server/Speech/EntitySystems/VocalSystem.cs @@ -4,6 +4,8 @@ using Content.Shared.Chat.Prototypes; using Content.Shared.Humanoid; using Content.Shared.Speech; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Prototypes; using Robust.Shared.Random; diff --git a/Content.Server/Speech/SpeechNoiseSystem.cs b/Content.Server/Speech/SpeechNoiseSystem.cs index c81d17caf2..4f66a0828b 100644 --- a/Content.Server/Speech/SpeechNoiseSystem.cs +++ b/Content.Server/Speech/SpeechNoiseSystem.cs @@ -2,6 +2,7 @@ using Content.Server.Chat; using Content.Server.Chat.Systems; using Content.Shared.Speech; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Timing; @@ -14,6 +15,7 @@ public sealed class SpeechSoundSystem : EntitySystem [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly IPrototypeManager _protoManager = default!; [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; public override void Initialize() { @@ -66,7 +68,7 @@ private void OnEntitySpoke(EntityUid uid, SpeechComponent component, EntitySpoke var pitchedAudioParams = component.AudioParams.WithPitchScale(scale); component.LastTimeSoundPlayed = currentTime; - SoundSystem.Play(contextSound, Filter.Pvs(uid, entityManager: EntityManager), uid, pitchedAudioParams); + _audio.PlayPvs(contextSound, uid, pitchedAudioParams); } } } diff --git a/Content.Server/SprayPainter/SprayPainterSystem.cs b/Content.Server/SprayPainter/SprayPainterSystem.cs index 763b7697d3..fd8ff9ea28 100644 --- a/Content.Server/SprayPainter/SprayPainterSystem.cs +++ b/Content.Server/SprayPainter/SprayPainterSystem.cs @@ -11,6 +11,8 @@ using Content.Shared.Interaction; using JetBrains.Annotations; using Robust.Server.GameObjects; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; namespace Content.Server.SprayPainter; diff --git a/Content.Server/Spreader/SpreaderSystem.cs b/Content.Server/Spreader/SpreaderSystem.cs index d61cf303d6..8afc7e6bd5 100644 --- a/Content.Server/Spreader/SpreaderSystem.cs +++ b/Content.Server/Spreader/SpreaderSystem.cs @@ -30,6 +30,7 @@ public sealed class SpreaderSystem : EntitySystem /// /// Remaining number of updates per grid & prototype. /// + // TODO PERFORMANCE Assign each prototype to an index and convert dictionary to array private Dictionary> _gridUpdates = new(); public const float SpreadCooldownSeconds = 1; @@ -42,24 +43,16 @@ public override void Initialize() { SubscribeLocalEvent(OnAirtightChanged); SubscribeLocalEvent(OnGridInit); + SubscribeLocalEvent(OnPrototypeReload); SubscribeLocalEvent(OnTerminating); SetupPrototypes(); - _prototype.PrototypesReloaded += OnPrototypeReload; - } - - public override void Shutdown() - { - base.Shutdown(); - _prototype.PrototypesReloaded -= OnPrototypeReload; } private void OnPrototypeReload(PrototypesReloadedEventArgs obj) { - if (!obj.ByType.ContainsKey(typeof(EdgeSpreaderPrototype))) - return; - - SetupPrototypes(); + if (obj.WasModified()) + SetupPrototypes(); } private void SetupPrototypes() diff --git a/Content.Server/Station/Systems/StationSpawningSystem.cs b/Content.Server/Station/Systems/StationSpawningSystem.cs index 4aa1b117e5..9d44c1ab05 100644 --- a/Content.Server/Station/Systems/StationSpawningSystem.cs +++ b/Content.Server/Station/Systems/StationSpawningSystem.cs @@ -4,6 +4,7 @@ using Content.Server.IdentityManagement; using Content.Server.Mind.Commands; using Content.Server.PDA; +using Content.Server.Spawners.Components; using Content.Server.Station.Components; using Content.Shared.Access.Components; using Content.Shared.Access.Systems; @@ -59,17 +60,19 @@ public override void Initialize() /// The job to assign, if any. /// The character profile to use, if any. /// Resolve pattern, the station spawning component for the station. + /// Delta-V: Set desired spawn point type. /// The resulting player character, if any. /// Thrown when the given station is not a station. /// /// This only spawns the character, and does none of the mind-related setup you'd need for it to be playable. /// - public EntityUid? SpawnPlayerCharacterOnStation(EntityUid? station, JobComponent? job, HumanoidCharacterProfile? profile, StationSpawningComponent? stationSpawning = null) + public EntityUid? SpawnPlayerCharacterOnStation(EntityUid? station, JobComponent? job, HumanoidCharacterProfile? profile, StationSpawningComponent? stationSpawning = null, SpawnPointType spawnPointType = SpawnPointType.Unset) { if (station != null && !Resolve(station.Value, ref stationSpawning)) throw new ArgumentException("Tried to use a non-station entity as a station!", nameof(station)); - var ev = new PlayerSpawningEvent(job, profile, station); + // Delta-V: Set desired spawn point type. + var ev = new PlayerSpawningEvent(job, profile, station, spawnPointType); RaiseLocalEvent(ev); DebugTools.Assert(ev.SpawnResult is { Valid: true } or null); @@ -97,7 +100,7 @@ public EntityUid SpawnPlayerMob( EntityUid? station, EntityUid? entity = null) { - _prototypeManager.TryIndex(job?.PrototypeId ?? string.Empty, out JobPrototype? prototype); + _prototypeManager.TryIndex(job?.Prototype ?? string.Empty, out JobPrototype? prototype); // If we're not spawning a humanoid, we're gonna exit early without doing all the humanoid stuff. if (prototype?.JobEntity != null) @@ -161,7 +164,7 @@ public EntityUid SpawnPlayerMob( private void DoJobSpecials(JobComponent? job, EntityUid entity) { - if (!_prototypeManager.TryIndex(job?.PrototypeId ?? string.Empty, out JobPrototype? prototype)) + if (!_prototypeManager.TryIndex(job?.Prototype ?? string.Empty, out JobPrototype? prototype)) return; foreach (var jobSpecial in prototype.Special) @@ -235,11 +238,16 @@ public sealed class PlayerSpawningEvent : EntityEventArgs /// The target station, if any. /// public readonly EntityUid? Station; + /// + /// Delta-V: Desired SpawnPointType, if any. + /// + public readonly SpawnPointType DesiredSpawnPointType; - public PlayerSpawningEvent(JobComponent? job, HumanoidCharacterProfile? humanoidCharacterProfile, EntityUid? station) + public PlayerSpawningEvent(JobComponent? job, HumanoidCharacterProfile? humanoidCharacterProfile, EntityUid? station, SpawnPointType spawnPointType = SpawnPointType.Unset) { Job = job; HumanoidCharacterProfile = humanoidCharacterProfile; Station = station; + DesiredSpawnPointType = spawnPointType; } } diff --git a/Content.Server/StationEvents/Components/GasLeakRuleComponent.cs b/Content.Server/StationEvents/Components/GasLeakRuleComponent.cs index 066b14e918..f92da0af19 100644 --- a/Content.Server/StationEvents/Components/GasLeakRuleComponent.cs +++ b/Content.Server/StationEvents/Components/GasLeakRuleComponent.cs @@ -9,7 +9,7 @@ public sealed partial class GasLeakRuleComponent : Component { public readonly Gas[] LeakableGases = { - Gas.Miasma, + Gas.Ammonia, Gas.Plasma, Gas.Tritium, Gas.Frezon, diff --git a/Content.Server/StationEvents/Events/StationEventSystem.cs b/Content.Server/StationEvents/Events/StationEventSystem.cs index 41a7b153f5..537a7e7c22 100644 --- a/Content.Server/StationEvents/Events/StationEventSystem.cs +++ b/Content.Server/StationEvents/Events/StationEventSystem.cs @@ -8,6 +8,8 @@ using Content.Server.Station.Systems; using Content.Server.StationEvents.Components; using Content.Shared.Database; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Collections; using Robust.Shared.Map; using Robust.Shared.Map.Components; diff --git a/Content.Server/Storage/EntitySystems/CursedEntityStorageSystem.cs b/Content.Server/Storage/EntitySystems/CursedEntityStorageSystem.cs index f51c215c6e..a8144311bb 100644 --- a/Content.Server/Storage/EntitySystems/CursedEntityStorageSystem.cs +++ b/Content.Server/Storage/EntitySystems/CursedEntityStorageSystem.cs @@ -5,6 +5,9 @@ using Robust.Shared.Audio; using Robust.Shared.Player; using Robust.Shared.Random; +using System.Linq; +using Content.Shared.Storage.Components; +using Robust.Shared.Audio.Systems; namespace Content.Server.Storage.EntitySystems; @@ -12,6 +15,7 @@ public sealed class CursedEntityStorageSystem : EntitySystem { [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly EntityStorageSystem _entityStorage = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; public override void Initialize() { @@ -47,6 +51,7 @@ private void OnClose(EntityUid uid, CursedEntityStorageComponent component, ref storage.Contents.Remove(entity); _entityStorage.AddToContents(entity, lockerEnt); } - SoundSystem.Play(component.CursedSound.GetSound(), Filter.Pvs(uid), uid, AudioHelpers.WithVariation(0.125f, _random)); + + _audio.PlayPvs(component.CursedSound, uid, AudioHelpers.WithVariation(0.125f, _random)); } } diff --git a/Content.Server/Storage/EntitySystems/EntityStorageSystem.cs b/Content.Server/Storage/EntitySystems/EntityStorageSystem.cs index 4bcad622c7..9bc49165ee 100644 --- a/Content.Server/Storage/EntitySystems/EntityStorageSystem.cs +++ b/Content.Server/Storage/EntitySystems/EntityStorageSystem.cs @@ -4,6 +4,7 @@ using Content.Server.Construction.Components; using Content.Server.Storage.Components; using Content.Shared.Destructible; +using Content.Shared.Explosion; using Content.Shared.Foldable; using Content.Shared.Interaction; using Content.Shared.Lock; @@ -46,6 +47,7 @@ public override void Initialize() SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnWeldableAttempt); + SubscribeLocalEvent(OnExploded); SubscribeLocalEvent(OnInsideInhale); SubscribeLocalEvent(OnInsideExhale); @@ -98,6 +100,11 @@ private void OnWeldableAttempt(EntityUid uid, EntityStorageComponent component, } } + private void OnExploded(Entity ent, ref BeforeExplodeEvent args) + { + args.Contents.AddRange(ent.Comp.Contents.ContainedEntities); + } + protected override void TakeGas(EntityUid uid, SharedEntityStorageComponent component) { if (!component.Airtight) diff --git a/Content.Server/Storage/EntitySystems/SpawnItemsOnUseSystem.cs b/Content.Server/Storage/EntitySystems/SpawnItemsOnUseSystem.cs index 25c31e48ca..c49bfdec93 100644 --- a/Content.Server/Storage/EntitySystems/SpawnItemsOnUseSystem.cs +++ b/Content.Server/Storage/EntitySystems/SpawnItemsOnUseSystem.cs @@ -5,6 +5,7 @@ using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction.Events; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Player; using Robust.Shared.Random; @@ -18,6 +19,7 @@ public sealed class SpawnItemsOnUseSystem : EntitySystem [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly SharedHandsSystem _hands = default!; [Dependency] private readonly PricingSystem _pricing = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; public override void Initialize() { @@ -79,7 +81,9 @@ private void OnUseInHand(EntityUid uid, SpawnItemsOnUseComponent component, UseI } if (component.Sound != null) - SoundSystem.Play(component.Sound.GetSound(), Filter.Pvs(uid), uid); + { + _audio.PlayPvs(component.Sound, uid); + } component.Uses--; diff --git a/Content.Server/Storage/EntitySystems/StorageSystem.cs b/Content.Server/Storage/EntitySystems/StorageSystem.cs index 8b4ae1c76f..49ebe99aeb 100644 --- a/Content.Server/Storage/EntitySystems/StorageSystem.cs +++ b/Content.Server/Storage/EntitySystems/StorageSystem.cs @@ -1,5 +1,6 @@ using Content.Server.Administration.Managers; using Content.Shared.Administration; +using Content.Shared.Explosion; using Content.Shared.Ghost; using Content.Shared.Hands; using Content.Shared.Lock; @@ -27,6 +28,7 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent>(AddUiVerb); SubscribeLocalEvent(OnBoundUIClosed); + SubscribeLocalEvent(OnExploded); SubscribeLocalEvent(OnStorageFillMapInit); } @@ -93,10 +95,15 @@ private void OnBoundUIClosed(EntityUid uid, StorageComponent storageComp, BoundU UpdateStorageVisualization(uid, storageComp); if (storageComp.StorageCloseSound is not null) - Audio.Play(storageComp.StorageCloseSound, Filter.Pvs(uid, entityManager: EntityManager), uid, true, storageComp.StorageCloseSound.Params); + Audio.PlayEntity(storageComp.StorageCloseSound, Filter.Pvs(uid, entityManager: EntityManager), uid, true, storageComp.StorageCloseSound.Params); } } + private void OnExploded(Entity ent, ref BeforeExplodeEvent args) + { + args.Contents.AddRange(ent.Comp.Container.ContainedEntities); + } + /// /// Opens the storage UI for an entity /// diff --git a/Content.Server/Store/Conditions/BuyBeforeCondition.cs b/Content.Server/Store/Conditions/BuyBeforeCondition.cs new file mode 100644 index 0000000000..132f353439 --- /dev/null +++ b/Content.Server/Store/Conditions/BuyBeforeCondition.cs @@ -0,0 +1,56 @@ +using Content.Server.Store.Components; +using Content.Server.Store.Systems; +using Content.Shared.Store; +using Robust.Shared.Prototypes; + +namespace Content.Server.Store.Conditions; + +public sealed partial class BuyBeforeCondition : ListingCondition +{ + /// + /// Required listing(s) needed to purchase before this listing is available + /// + [DataField(required: true)] + public HashSet> Whitelist; + + /// + /// Listing(s) that if bought, block this purchase, if any. + /// + public HashSet>? Blacklist; + + public override bool Condition(ListingConditionArgs args) + { + if (!args.EntityManager.TryGetComponent(args.StoreEntity, out var storeComp)) + return false; + + var allListings = storeComp.Listings; + + var purchasesFound = false; + + if (Blacklist != null) + { + foreach (var blacklistListing in Blacklist) + { + foreach (var listing in allListings) + { + if (listing.ID == blacklistListing.Id && listing.PurchaseAmount > 0) + return false; + } + } + } + + foreach (var requiredListing in Whitelist) + { + foreach (var listing in allListings) + { + if (listing.ID == requiredListing.Id) + { + purchasesFound = listing.PurchaseAmount > 0; + break; + } + } + } + + return purchasesFound; + } +} diff --git a/Content.Server/Store/Conditions/BuyerDepartmentCondition.cs b/Content.Server/Store/Conditions/BuyerDepartmentCondition.cs index a71adc4e77..4e5e504aec 100644 --- a/Content.Server/Store/Conditions/BuyerDepartmentCondition.cs +++ b/Content.Server/Store/Conditions/BuyerDepartmentCondition.cs @@ -39,11 +39,11 @@ public override bool Condition(ListingConditionArgs args) var jobs = ent.System(); jobs.MindTryGetJob(mindId, out var job, out _); - if (Blacklist != null && job?.PrototypeId != null) + if (Blacklist != null && job?.Prototype != null) { foreach (var department in prototypeManager.EnumeratePrototypes()) { - if (department.Roles.Contains(job.PrototypeId) && Blacklist.Contains(department.ID)) + if (department.Roles.Contains(job.Prototype) && Blacklist.Contains(department.ID)) return false; } } @@ -52,11 +52,11 @@ public override bool Condition(ListingConditionArgs args) { var found = false; - if (job?.PrototypeId != null) + if (job?.Prototype != null) { foreach (var department in prototypeManager.EnumeratePrototypes()) { - if (department.Roles.Contains(job.PrototypeId) && Whitelist.Contains(department.ID)) + if (department.Roles.Contains(job.Prototype) && Whitelist.Contains(department.ID)) { found = true; break; diff --git a/Content.Server/Store/Conditions/BuyerJobCondition.cs b/Content.Server/Store/Conditions/BuyerJobCondition.cs index f5013008ab..6a53af188c 100644 --- a/Content.Server/Store/Conditions/BuyerJobCondition.cs +++ b/Content.Server/Store/Conditions/BuyerJobCondition.cs @@ -38,13 +38,13 @@ public override bool Condition(ListingConditionArgs args) if (Blacklist != null) { - if (job?.PrototypeId != null && Blacklist.Contains(job.PrototypeId)) + if (job?.Prototype != null && Blacklist.Contains(job.Prototype)) return false; } if (Whitelist != null) { - if (job?.PrototypeId == null || !Whitelist.Contains(job.PrototypeId)) + if (job?.Prototype == null || !Whitelist.Contains(job.Prototype)) return false; } diff --git a/Content.Server/Store/Systems/StoreSystem.Ui.cs b/Content.Server/Store/Systems/StoreSystem.Ui.cs index 0435a6bea6..32c9a05043 100644 --- a/Content.Server/Store/Systems/StoreSystem.Ui.cs +++ b/Content.Server/Store/Systems/StoreSystem.Ui.cs @@ -10,6 +10,8 @@ using Content.Shared.Hands.EntitySystems; using Content.Shared.Store; using Robust.Server.GameObjects; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; namespace Content.Server.Store.Systems; diff --git a/Content.Server/Strip/StrippableSystem.cs b/Content.Server/Strip/StrippableSystem.cs index 75374e7de5..b354f9071a 100644 --- a/Content.Server/Strip/StrippableSystem.cs +++ b/Content.Server/Strip/StrippableSystem.cs @@ -221,6 +221,7 @@ bool Check() var doAfterArgs = new DoAfterArgs(EntityManager, user, ev.Time, new AwaitedDoAfterEvent(), null, target: target, used: held) { ExtraCheck = Check, + Hidden = ev.Stealth, AttemptFrequency = AttemptFrequency.EveryTick, BreakOnDamage = true, BreakOnTargetMove = true, @@ -294,6 +295,7 @@ bool Check() var doAfterArgs = new DoAfterArgs(EntityManager, user, ev.Time, new AwaitedDoAfterEvent(), null, target: target, used: held) { ExtraCheck = Check, + Hidden = ev.Stealth, AttemptFrequency = AttemptFrequency.EveryTick, BreakOnDamage = true, BreakOnTargetMove = true, @@ -308,7 +310,7 @@ bool Check() if (result != DoAfterStatus.Finished) return; _handsSystem.TryDrop(user, checkActionBlocker: false, handsComp: userHands); - _handsSystem.TryPickup(target, held, handName, checkActionBlocker: false, animateUser: true, handsComp: hands); + _handsSystem.TryPickup(target, held, handName, checkActionBlocker: false, animateUser: !ev.Stealth, animate: !ev.Stealth, handsComp: hands); _adminLogger.Add(LogType.Stripping, LogImpact.Medium, $"{ToPrettyString(user):user} has placed the item {ToPrettyString(held):item} in {ToPrettyString(target):target}'s hands"); // hand update will trigger strippable update } @@ -354,6 +356,7 @@ bool Check() var doAfterArgs = new DoAfterArgs(EntityManager, user, ev.Time, new AwaitedDoAfterEvent(), null, target: target, used: item) { ExtraCheck = Check, + Hidden = ev.Stealth, AttemptFrequency = AttemptFrequency.EveryTick, BreakOnDamage = true, BreakOnTargetMove = true, @@ -389,7 +392,7 @@ bool Check() // Raise a dropped event, so that things like gas tank internals properly deactivate when stripping RaiseLocalEvent(item, new DroppedEvent(user), true); - _handsSystem.PickupOrDrop(user, item); + _handsSystem.PickupOrDrop(user, item, animateUser: !ev.Stealth, animate: !ev.Stealth); _adminLogger.Add(LogType.Stripping, LogImpact.Medium, $"{ToPrettyString(user):user} has stripped the item {ToPrettyString(item):item} from {ToPrettyString(target):target}"); } @@ -430,6 +433,7 @@ bool Check() var doAfterArgs = new DoAfterArgs(EntityManager, user, ev.Time, new AwaitedDoAfterEvent(), null, target: target, used: item) { ExtraCheck = Check, + Hidden = ev.Stealth, AttemptFrequency = AttemptFrequency.EveryTick, BreakOnDamage = true, BreakOnTargetMove = true, @@ -439,7 +443,7 @@ bool Check() DuplicateCondition = DuplicateConditions.SameTool }; - if (Check() && _handsSystem.TryGetHand(target, handName, out var handSlot, hands) && handSlot.HeldEntity != null) + if (!ev.Stealth && Check() && _handsSystem.TryGetHand(target, handName, out var handSlot, hands) && handSlot.HeldEntity != null) { _popup.PopupEntity( Loc.GetString("strippable-component-alert-owner", @@ -456,7 +460,7 @@ bool Check() return; _handsSystem.TryDrop(target, item, checkActionBlocker: false, handsComp: hands); - _handsSystem.PickupOrDrop(user, item, handsComp: userHands); + _handsSystem.PickupOrDrop(user, item, animateUser: !ev.Stealth, animate: !ev.Stealth, handsComp: userHands); // hand update will trigger strippable update _adminLogger.Add(LogType.Stripping, LogImpact.Medium, $"{ToPrettyString(user):user} has stripped the item {ToPrettyString(item):item} from {ToPrettyString(target):target}"); diff --git a/Content.Server/Stunnable/Systems/StunbatonSystem.cs b/Content.Server/Stunnable/Systems/StunbatonSystem.cs index f4a7448fa2..da2391a86b 100644 --- a/Content.Server/Stunnable/Systems/StunbatonSystem.cs +++ b/Content.Server/Stunnable/Systems/StunbatonSystem.cs @@ -13,6 +13,7 @@ using Content.Shared.Toggleable; using Robust.Server.GameObjects; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; namespace Content.Server.Stunnable.Systems @@ -24,7 +25,7 @@ public sealed class StunbatonSystem : SharedStunbatonSystem [Dependency] private readonly RiggableSystem _riggableSystem = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly BatterySystem _battery = default!; - [Dependency] private readonly AudioSystem _audio = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; public override void Initialize() { @@ -97,7 +98,6 @@ private void TurnOff(EntityUid uid, StunbatonComponent comp) private void TurnOn(EntityUid uid, StunbatonComponent comp, EntityUid user) { - if (comp.Activated) return; diff --git a/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraSpeakerSystem.cs b/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraSpeakerSystem.cs index d40303ab31..ce3d8568ab 100644 --- a/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraSpeakerSystem.cs +++ b/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraSpeakerSystem.cs @@ -1,5 +1,7 @@ using Content.Server.Chat.Systems; using Content.Shared.Speech; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Timing; diff --git a/Content.Server/Teleportation/HandTeleporterSystem.cs b/Content.Server/Teleportation/HandTeleporterSystem.cs index 4bfe03ba42..29cde5d741 100644 --- a/Content.Server/Teleportation/HandTeleporterSystem.cs +++ b/Content.Server/Teleportation/HandTeleporterSystem.cs @@ -4,6 +4,7 @@ using Content.Shared.Interaction.Events; using Content.Shared.Teleportation.Components; using Content.Shared.Teleportation.Systems; +using Robust.Server.Audio; using Robust.Server.GameObjects; namespace Content.Server.Teleportation; diff --git a/Content.Server/Temperature/Systems/TemperatureSystem.cs b/Content.Server/Temperature/Systems/TemperatureSystem.cs index 646f60eb63..9f7057d9b6 100644 --- a/Content.Server/Temperature/Systems/TemperatureSystem.cs +++ b/Content.Server/Temperature/Systems/TemperatureSystem.cs @@ -149,14 +149,11 @@ private void OnAtmosExposedUpdate(EntityUid uid, TemperatureComponent temperatur if (transform.MapUid == null) return; - var position = _transform.GetGridOrMapTilePosition(uid, transform); - var temperatureDelta = args.GasMixture.Temperature - temperature.CurrentTemperature; - var tileHeatCapacity = - _atmosphere.GetTileHeatCapacity(transform.GridUid, transform.MapUid.Value, position); + var airHeatCapacity = _atmosphere.GetHeatCapacity(args.GasMixture, false); var heatCapacity = GetHeatCapacity(uid, temperature); - var heat = temperatureDelta * (tileHeatCapacity * heatCapacity / - (tileHeatCapacity + heatCapacity)); + var heat = temperatureDelta * (airHeatCapacity * heatCapacity / + (airHeatCapacity + heatCapacity)); ChangeHeat(uid, heat * temperature.AtmosTemperatureTransferEfficiency, temperature: temperature); } @@ -344,7 +341,8 @@ private void RecursiveThresholdUpdate(EntityUid root, EntityQuery _tilesQuery; + + public override void Initialize() + { + base.Initialize(); + _tilesQuery = GetEntityQuery(); + SubscribeLocalEvent(OnTileChange); + } + + private void OnTileChange(ref TileChangedEvent ev) + { + if (!TryComp(ev.Entity, out var grid)) + return; + + var anchored = _maps.GetAnchoredEntitiesEnumerator(ev.Entity, grid, ev.NewTile.GridIndices); + if (anchored.Equals(AnchoredEntitiesEnumerator.Empty)) + return; + + while (anchored.MoveNext(out var ent)) + { + if (!_tilesQuery.HasComponent(ent.Value)) + continue; + + QueueDel(ent.Value); + } + } +} diff --git a/Content.Server/Toilet/ToiletSystem.cs b/Content.Server/Toilet/ToiletSystem.cs index b10feae453..8bf8457e07 100644 --- a/Content.Server/Toilet/ToiletSystem.cs +++ b/Content.Server/Toilet/ToiletSystem.cs @@ -17,6 +17,7 @@ using Content.Shared.Tools.Components; using Content.Shared.Verbs; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; using Robust.Shared.Random; using SharedToolSystem = Content.Shared.Tools.Systems.SharedToolSystem; diff --git a/Content.Server/Tools/ToolSystem.cs b/Content.Server/Tools/ToolSystem.cs index 88a96dc1e8..de6a7fefc1 100644 --- a/Content.Server/Tools/ToolSystem.cs +++ b/Content.Server/Tools/ToolSystem.cs @@ -5,6 +5,8 @@ using Content.Shared.Maps; using Content.Shared.Tools; using Robust.Server.GameObjects; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using SharedToolSystem = Content.Shared.Tools.Systems.SharedToolSystem; diff --git a/Content.Server/UserInterface/ActivatableUISystem.cs b/Content.Server/UserInterface/ActivatableUISystem.cs index adeeed7c19..459a704911 100644 --- a/Content.Server/UserInterface/ActivatableUISystem.cs +++ b/Content.Server/UserInterface/ActivatableUISystem.cs @@ -5,6 +5,7 @@ using Content.Shared.Hands.Components; using Content.Shared.Interaction; using Content.Shared.Interaction.Events; +using Content.Shared.Popups; using Content.Shared.UserInterface; using Content.Shared.Verbs; using Robust.Server.GameObjects; @@ -17,6 +18,7 @@ public sealed partial class ActivatableUISystem : EntitySystem [Dependency] private readonly IAdminManager _adminManager = default!; [Dependency] private readonly ActionBlockerSystem _blockerSystem = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; public override void Initialize() { @@ -142,6 +144,9 @@ private bool InteractUI(EntityUid user, EntityUid uiEntity, ActivatableUICompone if (aui.SingleUser && (aui.CurrentSingleUser != null) && (actor.PlayerSession != aui.CurrentSingleUser)) { + string message = Loc.GetString("machine-already-in-use", ("machine", uiEntity)); + _popupSystem.PopupEntity(message, uiEntity, user); + // If we get here, supposedly, the object is in use. // Check with BUI that it's ACTUALLY in use just in case. // Since this could brick the object if it goes wrong. diff --git a/Content.Server/VoiceMask/VoiceMaskSystem.cs b/Content.Server/VoiceMask/VoiceMaskSystem.cs index 1df66b608c..7b86bb17dc 100644 --- a/Content.Server/VoiceMask/VoiceMaskSystem.cs +++ b/Content.Server/VoiceMask/VoiceMaskSystem.cs @@ -1,8 +1,10 @@ using Content.Server.Administration.Logs; 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.VoiceMask; using Robust.Server.GameObjects; @@ -20,6 +22,7 @@ public override void Initialize() { SubscribeLocalEvent(OnSpeakerNameTransform); SubscribeLocalEvent(OnChangeName); + SubscribeLocalEvent(OnMaskToggled); SubscribeLocalEvent(OnEquip); SubscribeLocalEvent(OnUnequip); SubscribeLocalEvent(OnSetName); @@ -35,7 +38,7 @@ private void OnChangeName(EntityUid uid, VoiceMaskComponent component, VoiceMask { if (message.Name.Length > HumanoidCharacterProfile.MaxNameLength || message.Name.Length <= 0) { - _popupSystem.PopupCursor(Loc.GetString("voice-mask-popup-failure"), message.Session); + _popupSystem.PopupEntity(Loc.GetString("voice-mask-popup-failure"), uid, message.Session, PopupType.SmallCaution); return; } @@ -45,7 +48,7 @@ private void OnChangeName(EntityUid uid, VoiceMaskComponent component, VoiceMask else _adminLogger.Add(LogType.Action, LogImpact.Medium, $"Voice of {ToPrettyString(uid):mask} set: {component.VoiceName}"); - _popupSystem.PopupCursor(Loc.GetString("voice-mask-popup-success"), message.Session); + _popupSystem.PopupEntity(Loc.GetString("voice-mask-popup-success"), uid, message.Session); TrySetLastKnownName(uid, message.Name); @@ -66,9 +69,15 @@ private void OnSpeakerNameTransform(EntityUid uid, VoiceMaskComponent component, } } + private void OnMaskToggled(Entity ent, ref WearerMaskToggledEvent args) + { + ent.Comp.Enabled = !args.IsToggled; + } + private void OpenUI(EntityUid player, ActorComponent? actor = null) { - if (!Resolve(player, ref actor)) + // Delta-V: `logMissing: false` because of syrinx. + if (!Resolve(player, ref actor, logMissing: false)) return; if (!_uiSystem.TryGetUi(player, VoiceMaskUIKey.Key, out var bui)) return; @@ -79,7 +88,8 @@ private void OpenUI(EntityUid player, ActorComponent? actor = null) private void UpdateUI(EntityUid owner, VoiceMaskComponent? component = null) { - if (!Resolve(owner, ref component)) + // Delta-V: `logMissing: false` because of syrinx + if (!Resolve(owner, ref component, logMissing: false)) { return; } diff --git a/Content.Server/Voting/Managers/VoteManager.cs b/Content.Server/Voting/Managers/VoteManager.cs index 90089afb54..4fb022fad0 100644 --- a/Content.Server/Voting/Managers/VoteManager.cs +++ b/Content.Server/Voting/Managers/VoteManager.cs @@ -373,10 +373,16 @@ private void EndVote(VoteReg v) .First() .Select(e => e.Data) .ToImmutableArray(); + // Store all votes in order for webhooks + var voteTally = new List(); + foreach(var entry in v.Entries) + { + voteTally.Add(entry.Votes); + } v.Finished = true; v.Dirty = true; - var args = new VoteFinishedEventArgs(winners.Length == 1 ? winners[0] : null, winners); + var args = new VoteFinishedEventArgs(winners.Length == 1 ? winners[0] : null, winners, voteTally); v.OnFinished?.Invoke(_voteHandles[v.Id], args); DirtyCanCallVoteAll(); } diff --git a/Content.Server/Voting/VoteCommands.cs b/Content.Server/Voting/VoteCommands.cs index 498c9d0494..aad0ee43d7 100644 --- a/Content.Server/Voting/VoteCommands.cs +++ b/Content.Server/Voting/VoteCommands.cs @@ -1,11 +1,20 @@ using System.Linq; +using System.Net.Http; +using System.Text.Json; +using System.Text.Json.Nodes; using Content.Server.Administration; using Content.Server.Administration.Logs; using Content.Server.Chat.Managers; +using Content.Server.Discord; +using Content.Server.GameTicking; using Content.Server.Voting.Managers; using Content.Shared.Administration; +using Content.Shared.CCVar; using Content.Shared.Database; using Content.Shared.Voting; +using Robust.Server.Player; +using Robust.Shared; +using Robust.Shared.Configuration; using Robust.Shared.Console; namespace Content.Server.Voting @@ -61,6 +70,11 @@ public CompletionResult GetCompletion(IConsoleShell shell, string[] args) public sealed class CreateCustomCommand : IConsoleCommand { [Dependency] private readonly IAdminLogManager _adminLogger = default!; + [Dependency] private readonly IEntitySystemManager _entitySystem = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly DiscordWebhook _discord = default!; + + private ISawmill _sawmill = default!; private const int MaxArgCount = 10; @@ -68,8 +82,15 @@ public sealed class CreateCustomCommand : IConsoleCommand public string Description => Loc.GetString("cmd-customvote-desc"); public string Help => Loc.GetString("cmd-customvote-help"); + // Webhook stuff + private string _webhookUrl = string.Empty; + private ulong _webhookId; + private WebhookIdentifier? _webhookIdentifier; + public void Execute(IConsoleShell shell, string argStr, string[] args) { + _sawmill = Logger.GetSawmill("vote"); + if (args.Length < 3 || args.Length > MaxArgCount) { shell.WriteError(Loc.GetString("shell-need-between-arguments",("lower", 3), ("upper", 10))); @@ -91,6 +112,41 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) options.Options.Add((args[i], i)); } + // Set up the webhook payload + string _serverName = _cfg.GetCVar(CVars.GameHostName); + _webhookUrl = _cfg.GetCVar(CCVars.DiscordVoteWebhook); + + + var _gameTicker = _entitySystem.GetEntitySystem(); + + var payload = new WebhookPayload() + { + Username = Loc.GetString("custom-vote-webhook-name"), + Embeds = new List + { + new() + { + Title = $"{shell.Player}", + Color = 13438992, + Description = options.Title, + Footer = new WebhookEmbedFooter + { + Text = $"{_serverName} {_gameTicker.RoundId} {_gameTicker.RunLevel}", + }, + + Fields = new List {}, + }, + }, + }; + + foreach (var voteOption in options.Options) + { + var NewVote = new WebhookEmbedField() { Name = voteOption.text, Value = "0"}; + payload.Embeds[0].Fields.Add(NewVote); + } + + WebhookMessage(payload); + options.SetInitiatorOrServer(shell.Player); if (shell.Player != null) @@ -114,6 +170,18 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) _adminLogger.Add(LogType.Vote, LogImpact.Medium, $"Custom vote {options.Title} finished: {args[(int) eventArgs.Winner]}"); chatMgr.DispatchServerAnnouncement(Loc.GetString("cmd-customvote-on-finished-win",("winner", args[(int) eventArgs.Winner]))); } + + for (int i = 0; i < eventArgs.Votes.Count - 1; i++) + { + var oldName = payload.Embeds[0].Fields[i].Name; + var newValue = eventArgs.Votes[i].ToString(); + var newEmbed = payload.Embeds[0]; + newEmbed.Color = 2353993; + payload.Embeds[0] = newEmbed; + payload.Embeds[0].Fields[i] = new WebhookEmbedField() { Name = oldName, Value = newValue, Inline = true}; + } + + WebhookMessage(payload, _webhookId); }; } @@ -128,6 +196,38 @@ public CompletionResult GetCompletion(IConsoleShell shell, string[] args) var n = args.Length - 1; return CompletionResult.FromHint(Loc.GetString("cmd-customvote-arg-option-n", ("n", n))); } + + // Sends the payload's message. + private async void WebhookMessage(WebhookPayload payload) + { + if (string.IsNullOrEmpty(_webhookUrl)) + return; + + if (await _discord.GetWebhook(_webhookUrl) is not { } identifier) + return; + + _webhookIdentifier = identifier.ToIdentifier(); + + _sawmill.Debug(JsonSerializer.Serialize(payload)); + + var request = await _discord.CreateMessage(_webhookIdentifier.Value, payload); + var content = await request.Content.ReadAsStringAsync(); + _webhookId = ulong.Parse(JsonNode.Parse(content)?["id"]!.GetValue()!); + } + + // Edits a pre-existing payload message, given an ID + private async void WebhookMessage(WebhookPayload payload, ulong id) + { + if (string.IsNullOrEmpty(_webhookUrl)) + return; + + if (await _discord.GetWebhook(_webhookUrl) is not { } identifier) + return; + + _webhookIdentifier = identifier.ToIdentifier(); + + var request = await _discord.EditMessage(_webhookIdentifier.Value, id, payload); + } } diff --git a/Content.Server/Voting/VoteFinishedEventArgs.cs b/Content.Server/Voting/VoteFinishedEventArgs.cs index 344abd4db4..2a641272b0 100644 --- a/Content.Server/Voting/VoteFinishedEventArgs.cs +++ b/Content.Server/Voting/VoteFinishedEventArgs.cs @@ -15,10 +15,16 @@ public sealed class VoteFinishedEventArgs : EventArgs /// public readonly ImmutableArray Winners; - public VoteFinishedEventArgs(object? winner, ImmutableArray winners) + /// + /// Stores all the votes in a string, for webhooks. + /// + public readonly List Votes; + + public VoteFinishedEventArgs(object? winner, ImmutableArray winners, List votes) { Winner = winner; Winners = winners; + Votes = votes; } } } diff --git a/Content.Server/Weapons/Melee/Balloon/BalloonPopperSystem.cs b/Content.Server/Weapons/Melee/Balloon/BalloonPopperSystem.cs index d7864ba16c..45c6a3d9d5 100644 --- a/Content.Server/Weapons/Melee/Balloon/BalloonPopperSystem.cs +++ b/Content.Server/Weapons/Melee/Balloon/BalloonPopperSystem.cs @@ -4,6 +4,8 @@ using Content.Shared.Popups; using Content.Shared.Tag; using Content.Shared.Weapons.Melee.Events; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; namespace Content.Server.Weapons.Melee.Balloon; diff --git a/Content.Server/Weapons/Melee/EnergySword/EnergySwordSystem.cs b/Content.Server/Weapons/Melee/EnergySword/EnergySwordSystem.cs index fcd42f5a28..ca2a367d9b 100644 --- a/Content.Server/Weapons/Melee/EnergySword/EnergySwordSystem.cs +++ b/Content.Server/Weapons/Melee/EnergySword/EnergySwordSystem.cs @@ -12,6 +12,8 @@ using Content.Shared.Weapons.Melee.Events; using Content.Shared.Wieldable; using Content.Shared.Wieldable.Components; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; using Robust.Shared.Random; @@ -116,7 +118,7 @@ private void TurnOff(EntityUid uid, EnergySwordComponent comp, ref EnergySwordDe if (comp.IsSharp) RemComp(uid); - _audio.Play(comp.DeActivateSound, Filter.Pvs(uid, entityManager: EntityManager), uid, true, comp.DeActivateSound.Params); + _audio.PlayEntity(comp.DeActivateSound, Filter.Pvs(uid, entityManager: EntityManager), uid, true, comp.DeActivateSound.Params); comp.Activated = false; } @@ -143,7 +145,7 @@ private void TurnOn(EntityUid uid, EnergySwordComponent comp, ref EnergySwordAct malus.Malus += comp.LitDisarmMalus; } - _audio.Play(comp.ActivateSound, Filter.Pvs(uid, entityManager: EntityManager), uid, true, comp.ActivateSound.Params); + _audio.PlayEntity(comp.ActivateSound, Filter.Pvs(uid, entityManager: EntityManager), uid, true, comp.ActivateSound.Params); comp.Activated = true; } diff --git a/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs b/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs index 3d9c3e8219..0e085cdfe0 100644 --- a/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs +++ b/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs @@ -18,6 +18,7 @@ using Content.Shared.Hands.Components; using Content.Shared.IdentityManagement; using Content.Shared.Inventory; +using Content.Shared.Mobs.Systems; using Content.Shared.Popups; using Content.Shared.Speech.Components; using Content.Shared.StatusEffect; @@ -40,6 +41,7 @@ public sealed class MeleeWeaponSystem : SharedMeleeWeaponSystem [Dependency] private readonly DamageExamineSystem _damageExamine = default!; [Dependency] private readonly InventorySystem _inventory = default!; [Dependency] private readonly LagCompensationSystem _lag = default!; + [Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly SharedColorFlashEffectSystem _color = default!; [Dependency] private readonly SolutionContainerSystem _solutions = default!; [Dependency] private readonly TagSystem _tag = default!; @@ -101,6 +103,11 @@ protected override bool DoDisarm(EntityUid user, DisarmAttackEvent ev, EntityUid var target = GetEntity(ev.Target!.Value); + if (_mobState.IsIncapacitated(target)) + { + return false; + } + if (!TryComp(target, out var targetHandsComponent)) { if (!TryComp(target, out var status) || !status.AllowedEffects.Contains("KnockedDown")) diff --git a/Content.Server/Weapons/Melee/WeaponRandom/WeaponRandomComponent.cs b/Content.Server/Weapons/Melee/WeaponRandom/WeaponRandomComponent.cs index c8cb5d2f28..ef15498a70 100644 --- a/Content.Server/Weapons/Melee/WeaponRandom/WeaponRandomComponent.cs +++ b/Content.Server/Weapons/Melee/WeaponRandom/WeaponRandomComponent.cs @@ -14,25 +14,13 @@ internal sealed partial class WeaponRandomComponent : Component public DamageSpecifier DamageBonus = new(); /// - /// Chance for the damage bonus to occur. + /// Chance for the damage bonus to occur (1 = 100%). /// [ViewVariables(VVAccess.ReadWrite)] public float RandomDamageChance = 0.00001f; /// - /// If this is true then the random damage will occur. - /// - [DataField("randomDamage")] - public bool RandomDamage = true; - - /// - /// If this is true then the weapon will have a unique interaction with cluwnes. - /// - [DataField("antiCluwne")] - public bool AntiCluwne = true; - - /// - /// Noise to play when the damage bonus occurs. + /// Sound effect to play when the damage bonus occurs. /// [DataField("damageSound")] public SoundSpecifier DamageSound = new SoundPathSpecifier("/Audio/Items/bikehorn.ogg"); diff --git a/Content.Server/Weapons/Melee/WeaponRandom/WeaponRandomSystem.cs b/Content.Server/Weapons/Melee/WeaponRandom/WeaponRandomSystem.cs index 6236040a83..7b246b8d09 100644 --- a/Content.Server/Weapons/Melee/WeaponRandom/WeaponRandomSystem.cs +++ b/Content.Server/Weapons/Melee/WeaponRandom/WeaponRandomSystem.cs @@ -1,9 +1,12 @@ using Content.Shared.Weapons.Melee.Events; using Robust.Shared.Random; -using Content.Shared.Cluwne; +using Robust.Shared.Audio.Systems; namespace Content.Server.Weapons.Melee.WeaponRandom; +/// +/// This adds a random damage bonus to melee attacks based on damage bonus amount and probability. +/// public sealed class WeaponRandomSystem : EntitySystem { [Dependency] private readonly IRobustRandom _random = default!; @@ -15,22 +18,15 @@ public override void Initialize() SubscribeLocalEvent(OnMeleeHit); } - + /// + /// On Melee hit there is a possible chance of additional bonus damage occuring. + /// private void OnMeleeHit(EntityUid uid, WeaponRandomComponent component, MeleeHitEvent args) { - foreach (var entity in args.HitEntities) + if (_random.Prob(component.RandomDamageChance)) { - if (HasComp(entity) && component.AntiCluwne) - { - _audio.PlayPvs(component.DamageSound, uid); - args.BonusDamage = component.DamageBonus; - } - - else if (_random.Prob(component.RandomDamageChance) && component.RandomDamage) - { - _audio.PlayPvs(component.DamageSound, uid); - args.BonusDamage = component.DamageBonus; - } + _audio.PlayPvs(component.DamageSound, uid); + args.BonusDamage = component.DamageBonus; } } } diff --git a/Content.Server/Weapons/Misc/TetherGunSystem.cs b/Content.Server/Weapons/Misc/TetherGunSystem.cs index 44d0c49e3f..f6aafe376d 100644 --- a/Content.Server/Weapons/Misc/TetherGunSystem.cs +++ b/Content.Server/Weapons/Misc/TetherGunSystem.cs @@ -1,4 +1,5 @@ using Content.Server.PowerCell; +using Content.Shared.PowerCell; using Content.Shared.Weapons.Misc; using Robust.Shared.Physics.Components; diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs index bbac7acd12..5f8ab0ecb6 100644 --- a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs +++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs @@ -10,6 +10,7 @@ using Content.Shared.Damage.Systems; using Content.Shared.Database; using Content.Shared.Effects; +using Content.Shared.FixedPoint; using Content.Shared.Interaction.Components; using Content.Shared.Projectiles; using Content.Shared.Weapons.Melee; @@ -132,6 +133,27 @@ public override void Shoot(EntityUid gunUid, GunComponent gun, List<(EntityUid? case CartridgeAmmoComponent cartridge: if (!cartridge.Spent) { + if (gun.CompatibleAmmo != null && + !gun.CompatibleAmmo.Exists(ammoAllowed => ammoAllowed.Equals(cartridge.Prototype)) + && user != null) + { + if (gun.DamageOnWrongAmmo != null) + Damageable.TryChangeDamage(user, gun.DamageOnWrongAmmo, origin: user); + _stun.TryParalyze(user.Value, TimeSpan.FromSeconds(3f), true); + + Audio.PlayPvs(new SoundPathSpecifier("/Audio/Weapons/Guns/Gunshots/bang.ogg"), gunUid); + + PopupSystem.PopupEntity(Loc.GetString("gun-component-wrong-ammo"), user.Value); + _adminLogger.Add(LogType.EntityDelete, LogImpact.Medium, $"Shot wrong ammo by {ToPrettyString(user.Value)} deleted {ToPrettyString(gunUid)}"); + userImpulse = false; + + SetCartridgeSpent(ent!.Value, cartridge, true); + MuzzleFlash(gunUid, cartridge, user); + Del(gunUid); + if (cartridge.DeleteOnSpawn) + Del(ent.Value); + return; + } if (cartridge.Count > 1) { var angles = LinearSpread(mapAngle - cartridge.Spread / 2, diff --git a/Content.Server/Whitelist/WhitelistCommands.cs b/Content.Server/Whitelist/WhitelistCommands.cs index e244418810..691b47ae23 100644 --- a/Content.Server/Whitelist/WhitelistCommands.cs +++ b/Content.Server/Whitelist/WhitelistCommands.cs @@ -11,7 +11,7 @@ namespace Content.Server.Whitelist; -[AdminCommand(AdminFlags.Ban)] +[AdminCommand(AdminFlags.Whitelist)] // DeltaV - Custom permission for whitelist public sealed class AddWhitelistCommand : LocalizedCommands { public override string Command => "whitelistadd"; @@ -71,7 +71,7 @@ public override CompletionResult GetCompletion(IConsoleShell shell, string[] arg } } -[AdminCommand(AdminFlags.Ban)] +[AdminCommand(AdminFlags.Ban | AdminFlags.Whitelist)] // DeltaV - Custom permission for whitelist. Hopefully this is an or, not an and public sealed class RemoveWhitelistCommand : LocalizedCommands { public override string Command => "whitelistremove"; diff --git a/Content.Server/Wires/WireLayout.cs b/Content.Server/Wires/WireLayout.cs index ed4381822f..ecafba013e 100644 --- a/Content.Server/Wires/WireLayout.cs +++ b/Content.Server/Wires/WireLayout.cs @@ -1,5 +1,4 @@ using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Array; namespace Content.Server.Wires; @@ -12,7 +11,7 @@ namespace Content.Server.Wires; /// WiresSystem as a functional wire set. /// [Prototype("wireLayout")] -public sealed class WireLayoutPrototype : IPrototype, IInheritingPrototype +public sealed partial class WireLayoutPrototype : IPrototype, IInheritingPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Server/Wires/WiresSystem.cs b/Content.Server/Wires/WiresSystem.cs index b6452efa8a..cb019e3d64 100644 --- a/Content.Server/Wires/WiresSystem.cs +++ b/Content.Server/Wires/WiresSystem.cs @@ -16,6 +16,9 @@ using Content.Shared.Tools.Components; using Content.Shared.Wires; using Robust.Server.GameObjects; +using Robust.Server.Player; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; diff --git a/Content.Server/Worldgen/Prototypes/BiomePrototype.cs b/Content.Server/Worldgen/Prototypes/BiomePrototype.cs index 4f097d04e2..db1b5e2a16 100644 --- a/Content.Server/Worldgen/Prototypes/BiomePrototype.cs +++ b/Content.Server/Worldgen/Prototypes/BiomePrototype.cs @@ -10,7 +10,7 @@ namespace Content.Server.Worldgen.Prototypes; /// of noise channels at that location. /// [Prototype("spaceBiome")] -public sealed class BiomePrototype : IPrototype, IInheritingPrototype +public sealed partial class BiomePrototype : IPrototype, IInheritingPrototype { /// [ParentDataField(typeof(AbstractPrototypeIdArraySerializer))] diff --git a/Content.Server/Worldgen/Prototypes/WorldgenConfigPrototype.cs b/Content.Server/Worldgen/Prototypes/WorldgenConfigPrototype.cs index d6dda9fb74..49e9e1ed9d 100644 --- a/Content.Server/Worldgen/Prototypes/WorldgenConfigPrototype.cs +++ b/Content.Server/Worldgen/Prototypes/WorldgenConfigPrototype.cs @@ -8,7 +8,7 @@ namespace Content.Server.Worldgen.Prototypes; /// The components included are applied to the map that world generation is configured on. /// [Prototype("worldgenConfig")] -public sealed class WorldgenConfigPrototype : IPrototype +public sealed partial class WorldgenConfigPrototype : IPrototype { /// [IdDataField] diff --git a/Content.Server/Worldgen/Systems/Debris/DebrisFeaturePlacerSystem.cs b/Content.Server/Worldgen/Systems/Debris/DebrisFeaturePlacerSystem.cs index 65af0b68cb..47ee6f6214 100644 --- a/Content.Server/Worldgen/Systems/Debris/DebrisFeaturePlacerSystem.cs +++ b/Content.Server/Worldgen/Systems/Debris/DebrisFeaturePlacerSystem.cs @@ -8,6 +8,7 @@ using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Random; +using Robust.Shared.Utility; namespace Content.Server.Worldgen.Systems.Debris; @@ -162,6 +163,12 @@ private void OnChunkLoaded(EntityUid uid, DebrisFeaturePlacerControllerComponent var failures = 0; // Avoid severe log spam. foreach (var point in points) { + if (component.OwnedDebris.TryGetValue(point, out var existing)) + { + DebugTools.Assert(Exists(existing)); + continue; + } + var pointDensity = _noiseIndex.Evaluate(uid, densityChannel, WorldGen.WorldToChunkCoords(point)); if (pointDensity == 0 && component.DensityClip || _random.Prob(component.RandomCancellationChance)) continue; diff --git a/Content.Server/Xenoarchaeology/Equipment/Components/ActiveArtifactAnalyzerComponent.cs b/Content.Server/Xenoarchaeology/Equipment/Components/ActiveArtifactAnalyzerComponent.cs index 6bd20b2bf4..7d3fe6a2f0 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Components/ActiveArtifactAnalyzerComponent.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Components/ActiveArtifactAnalyzerComponent.cs @@ -1,5 +1,4 @@ -using Robust.Shared.Audio; -using Robust.Shared.Serialization.TypeSerializers.Implementations; +using Robust.Shared.Serialization.TypeSerializers.Implementations; namespace Content.Server.Xenoarchaeology.Equipment.Components; @@ -19,6 +18,6 @@ public sealed partial class ActiveArtifactAnalyzerComponent : Component /// /// What is being scanned? /// - [ViewVariables] + [DataField] public EntityUid Artifact; } diff --git a/Content.Server/Xenoarchaeology/Equipment/Components/ArtifactAnalyzerComponent.cs b/Content.Server/Xenoarchaeology/Equipment/Components/ArtifactAnalyzerComponent.cs index 7da34d6a39..b8df29d58e 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Components/ArtifactAnalyzerComponent.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Components/ArtifactAnalyzerComponent.cs @@ -72,7 +72,7 @@ public sealed partial class ArtifactAnalyzerComponent : Component public SoundSpecifier ScanFinishedSound = new SoundPathSpecifier("/Audio/Machines/scan_finish.ogg"); #region Analysis Data - [ViewVariables] + [DataField] public EntityUid? LastAnalyzedArtifact; [ViewVariables] diff --git a/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs b/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs index 17901188d1..49f48abd80 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs @@ -18,6 +18,7 @@ using JetBrains.Annotations; using Robust.Server.GameObjects; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Prototypes; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -196,7 +197,7 @@ private void UpdateUserInterface(EntityUid uid, AnalysisConsoleComponent? compon var canScan = false; var canPrint = false; var points = 0; - if (component.AnalyzerEntity != null && TryComp(component.AnalyzerEntity, out var analyzer)) + if (TryComp(component.AnalyzerEntity, out var analyzer)) { artifact = analyzer.LastAnalyzedArtifact; msg = GetArtifactScanMessage(analyzer); @@ -454,9 +455,14 @@ private void OnItemPlaced(EntityUid uid, ArtifactAnalyzerComponent component, re private void OnItemRemoved(EntityUid uid, ArtifactAnalyzerComponent component, ref ItemRemovedEvent args) { + // Scanners shouldn't give permanent remove vision to an artifact, and the scanned artifact doesn't have any + // component to track analyzers that have scanned it for removal if the artifact gets deleted. + // So we always clear this on removal. + component.LastAnalyzedArtifact = null; + // cancel the scan if the artifact moves off the analyzer CancelScan(args.OtherEntity); - if (component.Console != null && Exists(component.Console)) + if (Exists(component.Console)) UpdateUserInterface(component.Console.Value); } diff --git a/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactCrusherSystem.cs b/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactCrusherSystem.cs new file mode 100644 index 0000000000..de417d087a --- /dev/null +++ b/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactCrusherSystem.cs @@ -0,0 +1,138 @@ +using Content.Server.Body.Systems; +using Content.Server.Power.Components; +using Content.Server.Power.EntitySystems; +using Content.Server.Stack; +using Content.Server.Storage.Components; +using Content.Server.Xenoarchaeology.XenoArtifacts; +using Content.Shared.Body.Components; +using Content.Shared.Damage; +using Content.Shared.Verbs; +using Content.Shared.Xenoarchaeology.Equipment; +using Robust.Shared.Collections; +using Robust.Shared.Random; +using Robust.Shared.Timing; + +namespace Content.Server.Xenoarchaeology.Equipment.Systems; + +/// +public sealed class ArtifactCrusherSystem : SharedArtifactCrusherSystem +{ + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly ArtifactSystem _artifact = default!; + [Dependency] private readonly BodySystem _body = default!; + [Dependency] private readonly DamageableSystem _damageable = default!; + [Dependency] private readonly StackSystem _stack = default!; + + /// + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent>(OnGetVerbs); + SubscribeLocalEvent(OnPowerChanged); + } + + private void OnGetVerbs(Entity ent, ref GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract || args.Hands == null || ent.Comp.Crushing) + return; + + if (!TryComp(ent, out var entityStorageComp) || entityStorageComp.Contents.ContainedEntities.Count == 0) + return; + + if (entityStorageComp.Contents.Contains(args.User) || !this.IsPowered(ent, EntityManager)) + return; + + var verb = new AlternativeVerb + { + Text = Loc.GetString("artifact-crusher-verb-start-crushing"), + Priority = 2, + Act = () => StartCrushing((ent, ent.Comp, entityStorageComp)) + }; + args.Verbs.Add(verb); + } + + private void OnPowerChanged(Entity ent, ref PowerChangedEvent args) + { + if (!args.Powered) + StopCrushing(ent); + } + + public void StartCrushing(Entity ent) + { + var (_, crusher, _) = ent; + + if (crusher.Crushing) + return; + + crusher.Crushing = true; + crusher.NextSecond = _timing.CurTime + TimeSpan.FromSeconds(1); + crusher.CrushEndTime = _timing.CurTime + crusher.CrushDuration; + crusher.CrushingSoundEntity = AudioSystem.PlayPvs(crusher.CrushingSound, ent); + Appearance.SetData(ent, ArtifactCrusherVisuals.Crushing, true); + Dirty(ent, ent.Comp1); + } + + public void FinishCrushing(Entity ent) + { + var (_, crusher, storage) = ent; + StopCrushing((ent, ent.Comp1), false); + AudioSystem.PlayPvs(crusher.CrushingCompleteSound, ent); + crusher.CrushingSoundEntity = null; + Dirty(ent, ent.Comp1); + + var contents = new ValueList(storage.Contents.ContainedEntities); + var coords = Transform(ent).Coordinates; + foreach (var contained in contents) + { + if (crusher.CrushingWhitelist.IsValid(contained, EntityManager)) + { + var amount = _random.Next(crusher.MinFragments, crusher.MaxFragments); + var stacks = _stack.SpawnMultiple(crusher.FragmentStackProtoId, amount, coords); + foreach (var stack in stacks) + { + ContainerSystem.Insert((stack, null, null, null), crusher.OutputContainer); + } + _artifact.ForceActivateArtifact(contained); + } + + if (!TryComp(contained, out var body)) + Del(contained); + + var gibs = _body.GibBody(contained, body: body, gibOrgans: true, deleteBrain: true); + foreach (var gib in gibs) + { + ContainerSystem.Insert((gib, null, null, null), crusher.OutputContainer); + } + } + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var crusher, out var storage)) + { + if (!crusher.Crushing) + continue; + + if (crusher.NextSecond < _timing.CurTime) + { + var contents = new ValueList(storage.Contents.ContainedEntities); + foreach (var contained in contents) + { + _damageable.TryChangeDamage(contained, crusher.CrushingDamage); + } + crusher.NextSecond += TimeSpan.FromSeconds(1); + Dirty(uid, crusher); + } + + if (crusher.CrushEndTime < _timing.CurTime) + { + FinishCrushing((uid, crusher, storage)); + } + } + } +} diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactComponent.cs index ec5af2a15c..4afd8af21c 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactComponent.cs @@ -64,7 +64,7 @@ public sealed partial class ArtifactComponent : Component /// The base amount of research points for each artifact node. /// [DataField("pointsPerNode"), ViewVariables(VVAccess.ReadWrite)] - public int PointsPerNode = 5000; + public int PointsPerNode = 6500; /// /// Research points which have been "consumed" from the theoretical max value of the artifact. diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Nodes.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Nodes.cs index e6f937236d..af1f74dde8 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Nodes.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Nodes.cs @@ -10,10 +10,6 @@ namespace Content.Server.Xenoarchaeology.XenoArtifacts; public sealed partial class ArtifactSystem { - [Dependency] private readonly IPrototypeManager _prototype = default!; - [Dependency] private readonly IComponentFactory _componentFactory = default!; - [Dependency] private readonly ISerializationManager _serialization = default!; - private const int MaxEdgesPerNode = 4; private readonly HashSet _usedNodeIds = new(); diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs index 0791924caa..a7948aa7ff 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs @@ -9,29 +9,30 @@ using Content.Shared.CCVar; using Content.Shared.Xenoarchaeology.XenoArtifacts; using JetBrains.Annotations; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; +using Robust.Shared.Prototypes; using Robust.Shared.Random; +using Robust.Shared.Serialization.Manager; using Robust.Shared.Timing; namespace Content.Server.Xenoarchaeology.XenoArtifacts; public sealed partial class ArtifactSystem : EntitySystem { + [Dependency] private readonly IComponentFactory _componentFactory = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly IPrototypeManager _prototype = default!; [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly ISerializationManager _serialization = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly IConfigurationManager _configurationManager = default!; - - private ISawmill _sawmill = default!; public override void Initialize() { base.Initialize(); - _sawmill = Logger.GetSawmill("artifact"); - SubscribeLocalEvent(GetPrice); - SubscribeLocalEvent(OnRoundEnd); InitializeCommands(); InitializeActions(); @@ -200,8 +201,8 @@ public void ForceActivateArtifact(EntityUid uid, EntityUid? user = null, Artifac var currentNode = GetNodeFromId(component.CurrentNodeId.Value, component); var allNodes = currentNode.Edges; - _sawmill.Debug($"our node: {currentNode.Id}"); - _sawmill.Debug($"other nodes: {string.Join(", ", allNodes)}"); + Log.Debug($"our node: {currentNode.Id}"); + Log.Debug($"other nodes: {string.Join(", ", allNodes)}"); if (TryComp(uid, out var bias) && TryComp(bias.Provider, out var trav) && @@ -224,14 +225,14 @@ public void ForceActivateArtifact(EntityUid uid, EntityUid? user = null, Artifac } var undiscoveredNodes = allNodes.Where(x => !GetNodeFromId(x, component).Discovered).ToList(); - _sawmill.Debug($"Undiscovered nodes: {string.Join(", ", undiscoveredNodes)}"); + Log.Debug($"Undiscovered nodes: {string.Join(", ", undiscoveredNodes)}"); var newNode = _random.Pick(allNodes); if (undiscoveredNodes.Any() && _random.Prob(0.75f)) { newNode = _random.Pick(undiscoveredNodes); } - _sawmill.Debug($"Going to node {newNode}"); + Log.Debug($"Going to node {newNode}"); return GetNodeFromId(newNode, component); } @@ -292,22 +293,4 @@ public ArtifactNode GetRootNode(List allNodes) { return allNodes.First(n => n.Depth == 0); } - - /// - /// Make shit go ape on round-end - /// - private void OnRoundEnd(RoundEndTextAppendEvent ev) - { - var RoundEndTimer = _configurationManager.GetCVar(CCVars.ArtifactRoundEndTimer); - if (RoundEndTimer > 0) - { - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var ent, out var artifactComp)) - { - artifactComp.CooldownTime = TimeSpan.Zero; - var timerTrigger = EnsureComp(ent); - timerTrigger.ActivationRate = TimeSpan.FromSeconds(RoundEndTimer); //HAHAHAHAHAHAHAHAHAH -emo - } - } - } } diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/FoamArtifactComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/FoamArtifactComponent.cs index e455c319ca..dc6fd06839 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/FoamArtifactComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/FoamArtifactComponent.cs @@ -33,7 +33,7 @@ public sealed partial class FoamArtifactComponent : Component /// How much reagent is in the foam? /// [DataField("reagentAmount"), ViewVariables(VVAccess.ReadWrite)] - public float ReagentAmount = 200; + public float ReagentAmount = 100; /// /// Minimum radius of foam spawned diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/GasArtifactComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/GasArtifactComponent.cs index a8c7a3dba3..ee12326df3 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/GasArtifactComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/GasArtifactComponent.cs @@ -27,7 +27,7 @@ public sealed partial class GasArtifactComponent : Component Gas.Nitrogen, Gas.CarbonDioxide, Gas.Tritium, - Gas.Miasma, + Gas.Ammonia, Gas.NitrousOxide, Gas.Frezon }; diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/ChargeBatteryArtifactSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/ChargeBatteryArtifactSystem.cs index 3569a30c36..778c672729 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/ChargeBatteryArtifactSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/ChargeBatteryArtifactSystem.cs @@ -1,6 +1,8 @@ using Content.Server.Power.Components; +using Content.Server.Power.EntitySystems; using Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Components; using Content.Server.Xenoarchaeology.XenoArtifacts.Events; +using Robust.Server.GameObjects; namespace Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Systems; @@ -9,7 +11,10 @@ namespace Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Systems; /// public sealed class ChargeBatteryArtifactSystem : EntitySystem { + [Dependency] private readonly BatterySystem _battery = default!; [Dependency] private readonly EntityLookupSystem _lookup = default!; + [Dependency] private readonly TransformSystem _transform = default!; + /// public override void Initialize() { @@ -18,9 +23,9 @@ public override void Initialize() private void OnActivated(EntityUid uid, ChargeBatteryArtifactComponent component, ArtifactActivatedEvent args) { - foreach (var battery in _lookup.GetComponentsInRange(Transform(uid).MapPosition, component.Radius)) + foreach (var battery in _lookup.GetEntitiesInRange(_transform.GetMapCoordinates(uid), component.Radius)) { - battery.CurrentCharge = battery.MaxCharge; + _battery.SetCharge(battery, battery.Comp.MaxCharge, battery); } } } diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/PolyArtifactSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/PolyArtifactSystem.cs index ba2786f32d..662abfee62 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/PolyArtifactSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/PolyArtifactSystem.cs @@ -3,6 +3,7 @@ using Content.Server.Xenoarchaeology.XenoArtifacts.Events; using Content.Shared.Humanoid; using Content.Shared.Mobs.Systems; +using Robust.Shared.Audio.Systems; namespace Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Systems; diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactGasTriggerComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactGasTriggerComponent.cs index 8762637d52..77cb86f47f 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactGasTriggerComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactGasTriggerComponent.cs @@ -18,7 +18,7 @@ public sealed partial class ArtifactGasTriggerComponent : Component Gas.Plasma, Gas.Nitrogen, Gas.CarbonDioxide, - Gas.Miasma, + Gas.Ammonia, Gas.NitrousOxide }; diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactGasTriggerSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactGasTriggerSystem.cs index a0c4971d8e..96f1dc3783 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactGasTriggerSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactGasTriggerSystem.cs @@ -37,9 +37,7 @@ public override void Update(float frameTime) if (trigger.ActivationGas == null) continue; - var environment = _atmosphereSystem.GetTileMixture(transform.GridUid, transform.MapUid, - _transformSystem.GetGridOrMapTilePosition(uid, transform)); - + var environment = _atmosphereSystem.GetTileMixture((uid, transform)); if (environment == null) continue; diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactHeatTriggerSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactHeatTriggerSystem.cs index 6c62f5d342..33d1a43c12 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactHeatTriggerSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactHeatTriggerSystem.cs @@ -28,8 +28,7 @@ public override void Update(float frameTime) var query = EntityQueryEnumerator(); while (query.MoveNext(out var uid, out var trigger, out var transform, out var artifact)) { - var environment = _atmosphereSystem.GetTileMixture(transform.GridUid, transform.MapUid, - _transformSystem.GetGridOrMapTilePosition(uid, transform)); + var environment = _atmosphereSystem.GetTileMixture((uid, transform)); if (environment == null) continue; diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactPressureTriggerSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactPressureTriggerSystem.cs index cf730d8b49..4388756cce 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactPressureTriggerSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactPressureTriggerSystem.cs @@ -21,9 +21,7 @@ public override void Update(float frameTime) var query = EntityQueryEnumerator(); while (query.MoveNext(out var uid, out var trigger, out var artifact, out var transform)) { - var environment = _atmosphereSystem.GetTileMixture(transform.GridUid, transform.MapUid, - _transformSystem.GetGridOrMapTilePosition(uid, transform)); - + var environment = _atmosphereSystem.GetTileMixture((uid, transform)); if (environment == null) continue; diff --git a/Content.Server/Zombies/NonSpreaderZombieComponent.cs b/Content.Server/Zombies/NonSpreaderZombieComponent.cs new file mode 100644 index 0000000000..5e1d0d3db4 --- /dev/null +++ b/Content.Server/Zombies/NonSpreaderZombieComponent.cs @@ -0,0 +1,10 @@ +namespace Content.Server.Zombies; + +/// +/// Zombified entities with this component cannot infect other entities by attacking. +/// +[RegisterComponent] +public sealed partial class NonSpreaderZombieComponent: Component +{ + +} diff --git a/Content.Server/Zombies/ZombieAccentOverrideComponent.cs b/Content.Server/Zombies/ZombieAccentOverrideComponent.cs new file mode 100644 index 0000000000..f86711426c --- /dev/null +++ b/Content.Server/Zombies/ZombieAccentOverrideComponent.cs @@ -0,0 +1,11 @@ +namespace Content.Server.Zombies; + +/// +/// Overrides the applied accent for zombies. +/// +[RegisterComponent] +public sealed partial class ZombieAccentOverrideComponent : Component +{ + [DataField("accent")] + public string Accent = "zombie"; +} diff --git a/Content.Server/Zombies/ZombieImmuneComponent.cs b/Content.Server/Zombies/ZombieImmuneComponent.cs index 5f8ea625d8..76a8ab9e67 100644 --- a/Content.Server/Zombies/ZombieImmuneComponent.cs +++ b/Content.Server/Zombies/ZombieImmuneComponent.cs @@ -1,5 +1,8 @@ namespace Content.Server.Zombies; +/// +/// Entities with this component cannot be zombified. +/// [RegisterComponent] public sealed partial class ZombieImmuneComponent : Component { diff --git a/Content.Server/Zombies/ZombieSystem.Transform.cs b/Content.Server/Zombies/ZombieSystem.Transform.cs index 3014edd1b9..cac516407b 100644 --- a/Content.Server/Zombies/ZombieSystem.Transform.cs +++ b/Content.Server/Zombies/ZombieSystem.Transform.cs @@ -16,6 +16,7 @@ using Content.Server.Speech.Components; using Content.Server.Temperature.Components; using Content.Shared.CombatMode; +using Content.Shared.CombatMode.Pacification; using Content.Shared.Damage; using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; @@ -24,6 +25,7 @@ using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; using Content.Shared.Movement.Systems; +using Content.Shared.Nutrition.AnimalHusbandry; using Content.Shared.Nutrition.Components; using Content.Shared.Popups; using Content.Shared.Roles; @@ -32,6 +34,7 @@ using Content.Shared.Zombies; using Robust.Shared.Audio; using Content.Shared.Prying.Components; +using Robust.Shared.Audio.Systems; namespace Content.Server.Zombies { @@ -94,18 +97,25 @@ public void ZombifyEntity(EntityUid target, MobStateComponent? mobState = null) var zombiecomp = AddComp(target); //we need to basically remove all of these because zombies shouldn't - //get diseases, breath, be thirst, be hungry, or die in space + //get diseases, breath, be thirst, be hungry, die in space or have offspring RemComp(target); RemComp(target); RemComp(target); RemComp(target); + RemComp(target); + RemComp(target); //funny voice - EnsureComp(target).Accent = "zombie"; + var accentType = "zombie"; + if (TryComp(target, out var accent)) + accentType = accent.Accent; + + EnsureComp(target).Accent = accentType; //This is needed for stupid entities that fuck up combat mode component //in an attempt to make an entity not attack. This is the easiest way to do it. var combat = EnsureComp(target); + RemComp(target); _combat.SetCanDisarm(target, false, combat); _combat.SetInCombatMode(target, true, combat); @@ -196,12 +206,10 @@ public void ZombifyEntity(EntityUid target, MobStateComponent? mobState = null) if (TryComp(target, out var tempComp)) tempComp.ColdDamage.ClampMax(0); - _mobThreshold.SetAllowRevives(target, true); //Heals the zombie from all the damage it took while human if (TryComp(target, out var damageablecomp)) _damageable.SetAllDamage(target, damageablecomp, 0); _mobState.ChangeMobState(target, MobState.Alive); - _mobThreshold.SetAllowRevives(target, false); var factionComp = EnsureComp(target); foreach (var id in new List(factionComp.Factions)) diff --git a/Content.Server/Zombies/ZombieSystem.cs b/Content.Server/Zombies/ZombieSystem.cs index 51cbf34d99..1009e0a294 100644 --- a/Content.Server/Zombies/ZombieSystem.cs +++ b/Content.Server/Zombies/ZombieSystem.cs @@ -40,6 +40,16 @@ public sealed partial class ZombieSystem : SharedZombieSystem [Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; + public const SlotFlags ProtectiveSlots = + SlotFlags.FEET | + SlotFlags.HEAD | + SlotFlags.EYES | + SlotFlags.GLOVES | + SlotFlags.MASK | + SlotFlags.NECK | + SlotFlags.INNERCLOTHING | + SlotFlags.OUTERCLOTHING; + public override void Initialize() { base.Initialize(); @@ -164,33 +174,27 @@ private void OnMobState(EntityUid uid, ZombieComponent component, MobStateChange private float GetZombieInfectionChance(EntityUid uid, ZombieComponent component) { - var baseChance = component.MaxZombieInfectionChance; - - if (!TryComp(uid, out var inventoryComponent)) - return baseChance; - - var enumerator = - new InventorySystem.ContainerSlotEnumerator(uid, inventoryComponent.TemplateId, _protoManager, _inv, - SlotFlags.FEET | - SlotFlags.HEAD | - SlotFlags.EYES | - SlotFlags.GLOVES | - SlotFlags.MASK | - SlotFlags.NECK | - SlotFlags.INNERCLOTHING | - SlotFlags.OUTERCLOTHING); + var max = component.MaxZombieInfectionChance; + + if (!_inventory.TryGetContainerSlotEnumerator(uid, out var enumerator, ProtectiveSlots)) + return max; var items = 0f; var total = 0f; while (enumerator.MoveNext(out var con)) { total++; - if (con.ContainedEntity != null) items++; } - var max = component.MaxZombieInfectionChance; + if (total == 0) + return max; + + // Everyone knows that when it comes to zombies, socks & sandals provide just as much protection as an + // armored vest. Maybe these should be weighted per-item. I.e. some kind of coverage/protection component. + // Or at the very least different weights per slot. + var min = component.MinZombieInfectionChance; //gets a value between the max and min based on how many items the entity is wearing var chance = (max-min) * ((total - items)/total) + min; @@ -219,14 +223,14 @@ private void OnMeleeHit(EntityUid uid, ZombieComponent component, MeleeHitEvent } else { - if (!HasComp(entity) && _random.Prob(GetZombieInfectionChance(entity, component))) + if (!HasComp(entity) && !HasComp(args.User) && _random.Prob(GetZombieInfectionChance(entity, component))) { EnsureComp(entity); EnsureComp(entity); } } - if (_mobState.IsIncapacitated(entity, mobState) && !HasComp(entity)) + if (_mobState.IsIncapacitated(entity, mobState) && !HasComp(entity) && !HasComp(entity)) { ZombifyEntity(entity); args.BonusDamage = -args.BaseDamage; diff --git a/Content.Shared.Database/LogType.cs b/Content.Shared.Database/LogType.cs index 9b2bab5f70..b6580f2faf 100644 --- a/Content.Shared.Database/LogType.cs +++ b/Content.Shared.Database/LogType.cs @@ -91,4 +91,9 @@ public enum LogType Tile = 86, BagOfHolding = 420, //Nyano - Summary: adds bag of holding. Psionics = 421, //Nyano - Summary: ads psionic as a log type. + + /// + /// A client has sent too many chat messages recently and is temporarily blocked from sending more. + /// + ChatRateLimited = 87, } diff --git a/Content.Shared/Access/AccessGroupPrototype.cs b/Content.Shared/Access/AccessGroupPrototype.cs index f32c8ffbca..8d3ed8feea 100644 --- a/Content.Shared/Access/AccessGroupPrototype.cs +++ b/Content.Shared/Access/AccessGroupPrototype.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Access; /// Used by to avoid boilerplate. /// [Prototype("accessGroup")] -public sealed class AccessGroupPrototype : IPrototype +public sealed partial class AccessGroupPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Shared/Access/AccessLevelPrototype.cs b/Content.Shared/Access/AccessLevelPrototype.cs index 4d3e4884b6..8cc5927158 100644 --- a/Content.Shared/Access/AccessLevelPrototype.cs +++ b/Content.Shared/Access/AccessLevelPrototype.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Access /// Defines a single access level that can be stored on ID cards and checked for. /// [Prototype("accessLevel")] - public sealed class AccessLevelPrototype : IPrototype + public sealed partial class AccessLevelPrototype : IPrototype { [ViewVariables] [IdDataField] diff --git a/Content.Shared/Access/Components/IdCardComponent.cs b/Content.Shared/Access/Components/IdCardComponent.cs index 31ded30ebd..7635716d26 100644 --- a/Content.Shared/Access/Components/IdCardComponent.cs +++ b/Content.Shared/Access/Components/IdCardComponent.cs @@ -4,29 +4,34 @@ using Robust.Shared.GameStates; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -namespace Content.Shared.Access.Components +namespace Content.Shared.Access.Components; + +[RegisterComponent, NetworkedComponent] +[AutoGenerateComponentState] +[Access(typeof(SharedIdCardSystem), typeof(SharedPdaSystem), typeof(SharedAgentIdCardSystem), Other = AccessPermissions.ReadWrite)] +public sealed partial class IdCardComponent : Component { - [RegisterComponent, NetworkedComponent] - [AutoGenerateComponentState] - [Access(typeof(SharedIdCardSystem), typeof(SharedPdaSystem), typeof(SharedAgentIdCardSystem), Other = AccessPermissions.ReadWrite)] - public sealed partial class IdCardComponent : Component - { - [DataField("fullName")] - [AutoNetworkedField] - // FIXME Friends - public string? FullName; + [DataField("fullName"), ViewVariables(VVAccess.ReadWrite)] + [AutoNetworkedField] + // FIXME Friends + public string? FullName; - [DataField("jobTitle")] - [AutoNetworkedField] - [Access(typeof(SharedIdCardSystem), typeof(SharedPdaSystem), typeof(SharedAgentIdCardSystem), Other = AccessPermissions.ReadWrite)] - public string? JobTitle; + [DataField("jobTitle")] + [AutoNetworkedField] + [Access(typeof(SharedIdCardSystem), typeof(SharedPdaSystem), typeof(SharedAgentIdCardSystem), Other = AccessPermissions.ReadWrite), ViewVariables(VVAccess.ReadWrite)] + public string? JobTitle; - /// - /// The state of the job icon rsi. - /// - [DataField("jobIcon", customTypeSerializer: typeof(PrototypeIdSerializer))] - [AutoNetworkedField] - public string JobIcon = "JobIconUnknown"; + /// + /// The state of the job icon rsi. + /// + [DataField("jobIcon", customTypeSerializer: typeof(PrototypeIdSerializer))] + [AutoNetworkedField] + public string JobIcon = "JobIconUnknown"; - } + /// + /// The unlocalized names of the departments associated with the job + /// + [DataField("jobDepartments")] + [AutoNetworkedField] + public List JobDepartments = new(); } diff --git a/Content.Shared/Access/Components/IdCardConsoleComponent.cs b/Content.Shared/Access/Components/IdCardConsoleComponent.cs index ddab9b4ccc..90786382c0 100644 --- a/Content.Shared/Access/Components/IdCardConsoleComponent.cs +++ b/Content.Shared/Access/Components/IdCardConsoleComponent.cs @@ -47,7 +47,8 @@ public WriteToTargetIdMessage(string fullName, string jobTitle, List acc "Armory", "Atmospherics", "Bar", - "Brig", + //"Brig", Delta V: Removed Brig Access + "Boxer", // DeltaV - Add Boxer access "Detective", "Captain", "Cargo", @@ -55,6 +56,7 @@ public WriteToTargetIdMessage(string fullName, string jobTitle, List acc "Chemistry", "ChiefEngineer", "ChiefMedicalOfficer", + "Clown", // DeltaV - Add Clown access "Command", "Engineering", "External", @@ -63,10 +65,16 @@ public WriteToTargetIdMessage(string fullName, string jobTitle, List acc "Hydroponics", "Janitor", "Kitchen", + "Lawyer", + "Library", // DeltaV - Add Library access "Maintenance", "Medical", + "Mime", // DeltaV - Add Mime access + "Musician", // DeltaV - Add Musician access "Paramedic", // DeltaV - Add Paramedic access + "Psychologist", // DeltaV - Add Psychologist access "Quartermaster", + "Reporter", // DeltaV - Add Reporter access "Research", "ResearchDirector", "Salvage", @@ -76,6 +84,7 @@ public WriteToTargetIdMessage(string fullName, string jobTitle, List acc "Orders", // DeltaV - Orders, see Resources/Prototypes/DeltaV/Access/cargo.yml "Mail", // Nyanotrasen - Mail, see Resources/Prototypes/Nyanotrasen/Access/cargo.yml "Mantis", // DeltaV - Psionic Mantis, see Resources/Prototypes/DeltaV/Access/epistemics.yml + "Zookeeper", // DeltaV - Add Zookeeper access }; [Serializable, NetSerializable] diff --git a/Content.Shared/Actions/ActionContainerSystem.cs b/Content.Shared/Actions/ActionContainerSystem.cs index d7c02ffd63..21e3f79f2b 100644 --- a/Content.Shared/Actions/ActionContainerSystem.cs +++ b/Content.Shared/Actions/ActionContainerSystem.cs @@ -1,5 +1,8 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; +using Content.Shared.Ghost; +using Content.Shared.Mind; +using Content.Shared.Mind.Components; using Robust.Shared.Containers; using Robust.Shared.Network; using Robust.Shared.Timing; @@ -17,6 +20,7 @@ public sealed class ActionContainerSystem : EntitySystem [Dependency] private readonly SharedActionsSystem _actions = default!; [Dependency] private readonly INetManager _netMan = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly SharedMindSystem _mind = default!; public override void Initialize() { @@ -26,6 +30,25 @@ public override void Initialize() SubscribeLocalEvent(OnShutdown); SubscribeLocalEvent(OnEntityRemoved); SubscribeLocalEvent(OnEntityInserted); + SubscribeLocalEvent(OnMindAdded); + SubscribeLocalEvent(OnMindRemoved); + } + + private void OnMindAdded(EntityUid uid, ActionsContainerComponent component, MindAddedMessage args) + { + if(!_mind.TryGetMind(uid, out var mindId, out _)) + return; + + if (!TryComp(mindId, out var mindActionContainerComp)) + return; + + if (!HasComp(uid) && mindActionContainerComp.Container.ContainedEntities.Count > 0 ) + _actions.GrantContainedActions(uid, mindId); + } + + private void OnMindRemoved(EntityUid uid, ActionsContainerComponent component, MindRemovedMessage args) + { + _actions.RemoveProvidedActions(uid, args.Mind); } /// diff --git a/Content.Shared/Actions/ActionUpgradeComponent.cs b/Content.Shared/Actions/ActionUpgradeComponent.cs new file mode 100644 index 0000000000..0d6a813526 --- /dev/null +++ b/Content.Shared/Actions/ActionUpgradeComponent.cs @@ -0,0 +1,24 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Actions; + +// For actions that can use basic upgrades +// Not all actions should be upgradable +[RegisterComponent, NetworkedComponent, Access(typeof(ActionUpgradeSystem))] +public sealed partial class ActionUpgradeComponent : Component +{ + /// + /// Current Level of the action. + /// + public int Level = 1; + + /// + /// What level(s) effect this action? + /// You can skip levels, so you can have this entity change at level 2 but then won't change again until level 5. + /// + [DataField("effectedLevels"), ViewVariables] + public Dictionary EffectedLevels = new(); + + // TODO: Branching level upgrades +} diff --git a/Content.Shared/Actions/ActionUpgradeSystem.cs b/Content.Shared/Actions/ActionUpgradeSystem.cs new file mode 100644 index 0000000000..f489779493 --- /dev/null +++ b/Content.Shared/Actions/ActionUpgradeSystem.cs @@ -0,0 +1,149 @@ +using System.Diagnostics.CodeAnalysis; +using System.Linq; +using Content.Shared.Actions.Events; +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; + +namespace Content.Shared.Actions; + +public sealed class ActionUpgradeSystem : EntitySystem +{ + [Dependency] private readonly SharedActionsSystem _actions = default!; + [Dependency] private readonly ActionContainerSystem _actionContainer = default!; + [Dependency] private readonly EntityManager _entityManager = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnActionUpgradeEvent); + } + + private void OnActionUpgradeEvent(EntityUid uid, ActionUpgradeComponent component, ActionUpgradeEvent args) + { + if (!CanLevelUp(args.NewLevel, component.EffectedLevels, out var newActionProto) + || !_actions.TryGetActionData(uid, out var actionComp)) + return; + + var originalContainer = actionComp.Container; + var originalAttachedEntity = actionComp.AttachedEntity; + + _actionContainer.RemoveAction(uid, actionComp); + + EntityUid? upgradedActionId = null; + if (originalContainer != null + && TryComp(originalContainer.Value, out var actionContainerComp)) + { + upgradedActionId = _actionContainer.AddAction(originalContainer.Value, newActionProto, actionContainerComp); + + if (originalAttachedEntity != null) + _actions.GrantContainedActions(originalAttachedEntity.Value, originalContainer.Value); + else + _actions.GrantContainedActions(originalContainer.Value, originalContainer.Value); + } + else if (originalAttachedEntity != null) + { + upgradedActionId = _actionContainer.AddAction(originalAttachedEntity.Value, newActionProto); + } + + if (!TryComp(upgradedActionId, out var upgradeComp)) + return; + + upgradeComp.Level = args.NewLevel; + + // TODO: Preserve ordering of actions + + _entityManager.DeleteEntity(uid); + } + + public bool TryUpgradeAction(EntityUid? actionId, ActionUpgradeComponent? actionUpgradeComponent = null, int newLevel = 0) + { + if (!TryGetActionUpgrade(actionId, out var actionUpgradeComp)) + return false; + + actionUpgradeComponent ??= actionUpgradeComp; + DebugTools.AssertNotNull(actionUpgradeComponent); + DebugTools.AssertNotNull(actionId); + + if (newLevel < 1) + newLevel = actionUpgradeComponent.Level + 1; + + if (!CanLevelUp(newLevel, actionUpgradeComponent.EffectedLevels, out _)) + return false; + + UpgradeAction(actionId, actionUpgradeComp); + return true; + } + + // TODO: Add checks for branching upgrades + private bool CanLevelUp( + int newLevel, + Dictionary levelDict, + [NotNullWhen(true)]out EntProtoId? newLevelProto) + { + newLevelProto = null; + + if (levelDict.Count < 1) + return false; + + var canLevel = false; + var finalLevel = levelDict.Keys.ToList()[levelDict.Keys.Count - 1]; + + foreach (var (level, proto) in levelDict) + { + if (newLevel != level || newLevel > finalLevel) + continue; + + canLevel = true; + newLevelProto = proto; + DebugTools.AssertNotNull(newLevelProto); + break; + } + + return canLevel; + } + + /// + /// Raises a level by one + /// + public void UpgradeAction(EntityUid? actionId, ActionUpgradeComponent? actionUpgradeComponent = null, int newLevel = 0) + { + if (!TryGetActionUpgrade(actionId, out var actionUpgradeComp)) + return; + + actionUpgradeComponent ??= actionUpgradeComp; + DebugTools.AssertNotNull(actionUpgradeComponent); + DebugTools.AssertNotNull(actionId); + + if (newLevel < 1) + newLevel = actionUpgradeComponent.Level + 1; + + RaiseActionUpgradeEvent(newLevel, actionId.Value); + } + + private void RaiseActionUpgradeEvent(int level, EntityUid actionId) + { + var ev = new ActionUpgradeEvent(level, actionId); + RaiseLocalEvent(actionId, ev); + } + + public bool TryGetActionUpgrade( + [NotNullWhen(true)] EntityUid? uid, + [NotNullWhen(true)] out ActionUpgradeComponent? result, + bool logError = true) + { + result = null; + if (!Exists(uid)) + return false; + + if (!TryComp(uid, out var actionUpgradeComponent)) + { + Log.Error($"Failed to get action upgrade from action entity: {ToPrettyString(uid.Value)}"); + return false; + } + + result = actionUpgradeComponent; + DebugTools.AssertOwner(uid, result); + return true; + } +} diff --git a/Content.Shared/Actions/BaseActionComponent.cs b/Content.Shared/Actions/BaseActionComponent.cs index a21b801d3c..291d9a3ea2 100644 --- a/Content.Shared/Actions/BaseActionComponent.cs +++ b/Content.Shared/Actions/BaseActionComponent.cs @@ -66,9 +66,21 @@ public abstract partial class BaseActionComponent : Component /// /// Convenience tool for actions with limited number of charges. Automatically decremented on use, and the /// action is disabled when it reaches zero. Does NOT automatically remove the action from the action bar. + /// However, charges will regenerate if is enabled and the action will not disable + /// when charges reach zero. /// [DataField("charges")] public int? Charges; + /// + /// The max charges this action has, set automatically from + /// + public int MaxCharges; + + /// + /// If enabled, charges will regenerate after a is complete + /// + [DataField("renewCharges")]public bool RenewCharges; + /// /// The entity that contains this action. If the action is innate, this may be the user themselves. /// This should almost always be non-null. @@ -120,6 +132,12 @@ public EntityUid? EntityIcon /// [ViewVariables] public EntityUid? AttachedEntity; + /// + /// If true, this will cause the the action event to always be raised directed at the action performer/user instead of the action's container/provider. + /// + [DataField] + public bool RaiseOnUser; + /// /// Whether or not to automatically add this action to the action bar when it becomes available. /// @@ -153,12 +171,15 @@ public abstract class BaseActionComponentState : ComponentState public (TimeSpan Start, TimeSpan End)? Cooldown; public TimeSpan? UseDelay; public int? Charges; + public int MaxCharges; + public bool RenewCharges; public NetEntity? Container; public NetEntity? EntityIcon; public bool CheckCanInteract; public bool ClientExclusive; public int Priority; public NetEntity? AttachedEntity; + public bool RaiseOnUser; public bool AutoPopulate; public bool Temporary; public ItemActionIconStyle ItemIconStyle; @@ -169,6 +190,7 @@ protected BaseActionComponentState(BaseActionComponent component, IEntityManager Container = entManager.GetNetEntity(component.Container); EntityIcon = entManager.GetNetEntity(component.EntIcon); AttachedEntity = entManager.GetNetEntity(component.AttachedEntity); + RaiseOnUser = component.RaiseOnUser; Icon = component.Icon; IconOn = component.IconOn; IconColor = component.IconColor; @@ -178,6 +200,8 @@ protected BaseActionComponentState(BaseActionComponent component, IEntityManager Cooldown = component.Cooldown; UseDelay = component.UseDelay; Charges = component.Charges; + MaxCharges = component.MaxCharges; + RenewCharges = component.RenewCharges; CheckCanInteract = component.CheckCanInteract; ClientExclusive = component.ClientExclusive; Priority = component.Priority; diff --git a/Content.Shared/Actions/Events/ActionUpgradeEvent.cs b/Content.Shared/Actions/Events/ActionUpgradeEvent.cs new file mode 100644 index 0000000000..40ff716b29 --- /dev/null +++ b/Content.Shared/Actions/Events/ActionUpgradeEvent.cs @@ -0,0 +1,13 @@ +namespace Content.Shared.Actions.Events; + +public sealed class ActionUpgradeEvent : EntityEventArgs +{ + public int NewLevel; + public EntityUid? ActionId; + + public ActionUpgradeEvent(int newLevel, EntityUid? actionId) + { + NewLevel = newLevel; + ActionId = actionId; + } +} diff --git a/Content.Shared/Actions/SharedActionsSystem.cs b/Content.Shared/Actions/SharedActionsSystem.cs index 7384ab30b1..4323a46114 100644 --- a/Content.Shared/Actions/SharedActionsSystem.cs +++ b/Content.Shared/Actions/SharedActionsSystem.cs @@ -7,11 +7,15 @@ using Content.Shared.Hands; using Content.Shared.Interaction; using Content.Shared.Inventory.Events; +using Content.Shared.Mind; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.GameStates; using Robust.Shared.Map; using Robust.Shared.Timing; using Robust.Shared.Utility; +using Content.Shared.Rejuvenate; namespace Content.Shared.Actions; @@ -26,15 +30,21 @@ public abstract class SharedActionsSystem : EntitySystem [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedTransformSystem _transformSystem = default!; [Dependency] private readonly ActionContainerSystem _actionContainer = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; public override void Initialize() { base.Initialize(); + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnDidEquip); SubscribeLocalEvent(OnHandEquipped); SubscribeLocalEvent(OnDidUnequip); SubscribeLocalEvent(OnHandUnequipped); + SubscribeLocalEvent(OnRejuventate); SubscribeLocalEvent(OnShutdown); @@ -51,6 +61,12 @@ public override void Initialize() SubscribeAllEvent(OnActionRequest); } + private void OnInit(EntityUid uid, BaseActionComponent component, MapInitEvent args) + { + if (component.Charges != null) + component.MaxCharges = component.Charges.Value; + } + private void OnShutdown(EntityUid uid, ActionsComponent component, ComponentShutdown args) { foreach (var act in component.Actions) @@ -95,7 +111,9 @@ public bool TryGetActionData( if (result != null) return true; - Log.Error($"Failed to get action from action entity: {ToPrettyString(uid.Value)}"); + if (logError) + Log.Error($"Failed to get action from action entity: {ToPrettyString(uid.Value)}"); + return false; } @@ -125,6 +143,27 @@ public void SetCooldown(EntityUid? actionId, TimeSpan start, TimeSpan end) Dirty(actionId.Value, action); } + public void SetCooldown(EntityUid? actionId, TimeSpan cooldown) + { + var start = GameTiming.CurTime; + SetCooldown(actionId, start, start + cooldown); + } + + public void ClearCooldown(EntityUid? actionId) + { + if (actionId == null) + return; + + if (!TryGetActionData(actionId, out var action)) + return; + + if (action.Cooldown is not { } cooldown) + return; + + action.Cooldown = (cooldown.Start, GameTiming.CurTime); + Dirty(actionId.Value, action); + } + public void StartUseDelay(EntityUid? actionId) { if (actionId == null) @@ -137,6 +176,39 @@ public void StartUseDelay(EntityUid? actionId) Dirty(actionId.Value, action); } + public void SetUseDelay(EntityUid? actionId, TimeSpan? delay) + { + if (!TryGetActionData(actionId, out var action) || action.UseDelay == delay) + return; + + action.UseDelay = delay; + UpdateAction(actionId, action); + Dirty(actionId.Value, action); + } + + public void ReduceUseDelay(EntityUid? actionId, TimeSpan? lowerDelay) + { + if (!TryGetActionData(actionId, out var action)) + return; + + if (action.UseDelay != null && lowerDelay != null) + action.UseDelay = action.UseDelay - lowerDelay; + + if (action.UseDelay < TimeSpan.Zero) + action.UseDelay = null; + + UpdateAction(actionId, action); + Dirty(actionId.Value, action); + } + + private void OnRejuventate(EntityUid uid, ActionsComponent component, RejuvenateEvent args) + { + foreach (var act in component.Actions) + { + ClearCooldown(act); + } + } + #region ComponentStateManagement protected virtual void UpdateAction(EntityUid? actionId, BaseActionComponent? action = null) { @@ -182,6 +254,51 @@ public void SetCharges(EntityUid? actionId, int? charges) Dirty(actionId.Value, action); } + public int? GetCharges(EntityUid? actionId) + { + if (!TryGetActionData(actionId, out var action)) + return null; + + return action.Charges; + } + + public void AddCharges(EntityUid? actionId, int addCharges) + { + if (!TryGetActionData(actionId, out var action) || action.Charges == null || addCharges < 1) + return; + + action.Charges += addCharges; + UpdateAction(actionId, action); + Dirty(actionId.Value, action); + } + + public void RemoveCharges(EntityUid? actionId, int? removeCharges) + { + if (!TryGetActionData(actionId, out var action) || action.Charges == null) + return; + + if (removeCharges == null) + action.Charges = removeCharges; + else + action.Charges -= removeCharges; + + if (action.Charges is < 0) + action.Charges = null; + + UpdateAction(actionId, action); + Dirty(actionId.Value, action); + } + + public void ResetCharges(EntityUid? actionId) + { + if (!TryGetActionData(actionId, out var action)) + return; + + action.Charges = action.MaxCharges; + UpdateAction(actionId, action); + Dirty(actionId.Value, action); + } + private void OnActionsGetState(EntityUid uid, ActionsComponent component, ref ComponentGetState args) { args.State = new ActionsComponentState(GetNetEntitySet(component.Actions)); @@ -221,14 +338,18 @@ private void OnActionRequest(RequestPerformActionEvent ev, EntitySessionEventArg return; DebugTools.Assert(action.AttachedEntity == user); - if (!action.Enabled) return; var curTime = GameTiming.CurTime; + // TODO: Check for charge recovery timer if (action.Cooldown.HasValue && action.Cooldown.Value.End > curTime) return; + // TODO: Replace with individual charge recovery when we have the visuals to aid it + if (action is { Charges: < 1, RenewCharges: true }) + ResetCharges(actionEnt); + BaseActionEvent? performEvent = null; // Validate request by checking action blockers and the like: @@ -268,7 +389,7 @@ private void OnActionRequest(RequestPerformActionEvent ev, EntitySessionEventArg } var entityCoordinatesTarget = GetCoordinates(netCoordinatesTarget); - _rotateToFaceSystem.TryFaceCoordinates(user, entityCoordinatesTarget.Position); + _rotateToFaceSystem.TryFaceCoordinates(user, entityCoordinatesTarget.ToMapPos(EntityManager, _transformSystem)); if (!ValidateWorldTarget(user, entityCoordinatesTarget, worldAction)) return; @@ -369,7 +490,7 @@ public void PerformAction(EntityUid performer, ActionsComponent? component, Enti var toggledBefore = action.Toggled; - // Note that attached entity is allowed to be null here. + // Note that attached entity and attached container are allowed to be null here. if (action.AttachedEntity != null && action.AttachedEntity != performer) { Log.Error($"{ToPrettyString(performer)} is attempting to perform an action {ToPrettyString(actionId)} that is attached to another entity {ToPrettyString(action.AttachedEntity.Value)}"); @@ -380,7 +501,12 @@ public void PerformAction(EntityUid performer, ActionsComponent? component, Enti { // This here is required because of client-side prediction (RaisePredictiveEvent results in event re-use). actionEvent.Handled = false; - RaiseLocalEvent(action.Container ?? performer, (object) actionEvent, broadcast: true); + var target = performer; + + if (!action.RaiseOnUser && action.Container != null && !HasComp(action.Container)) + target = action.Container.Value; + + RaiseLocalEvent(target, (object) actionEvent, broadcast: true); handled = actionEvent.Handled; } @@ -398,12 +524,12 @@ public void PerformAction(EntityUid performer, ActionsComponent? component, Enti { dirty = true; action.Charges--; - if (action.Charges == 0) + if (action is { Charges: 0, RenewCharges: false }) action.Enabled = false; } action.Cooldown = null; - if (action.UseDelay != null) + if (action is { UseDelay: not null, Charges: null or < 1 }) { dirty = true; action.Cooldown = (curTime, curTime + action.UseDelay.Value); @@ -621,7 +747,9 @@ public void RemoveAction(EntityUid performer, EntityUid? actionId, ActionsCompon if (action.AttachedEntity != performer) { - DebugTools.Assert(!Resolve(performer, ref comp, false) || !comp.Actions.Contains(actionId.Value)); + DebugTools.Assert(!Resolve(performer, ref comp, false) + || comp.LifeStage >= ComponentLifeStage.Stopping + || !comp.Actions.Contains(actionId.Value)); if (!GameTiming.ApplyingState) Log.Error($"Attempted to remove an action {ToPrettyString(actionId)} from an entity that it was never attached to: {ToPrettyString(performer)}"); diff --git a/Content.Shared/Administration/AdminFlags.cs b/Content.Shared/Administration/AdminFlags.cs index 05b7a45a46..c33a6be86f 100644 --- a/Content.Shared/Administration/AdminFlags.cs +++ b/Content.Shared/Administration/AdminFlags.cs @@ -89,6 +89,11 @@ public enum AdminFlags : uint /// EditNotes = 1 << 14, + /// + /// DeltaV - The ability to whitelist people. Either this permission or +BAN is required for remove. + /// + Whitelist = 1 << 15, + /// /// Dangerous host permissions like scsi. /// diff --git a/Content.Shared/Alert/AlertPrototype.cs b/Content.Shared/Alert/AlertPrototype.cs index ba37e51332..c24ac8582b 100644 --- a/Content.Shared/Alert/AlertPrototype.cs +++ b/Content.Shared/Alert/AlertPrototype.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Alert /// An alert popup with associated icon, tooltip, and other data. /// [Prototype("alert")] - public sealed class AlertPrototype : IPrototype, ISerializationHooks + public sealed partial class AlertPrototype : IPrototype, ISerializationHooks { [ViewVariables] string IPrototype.ID => AlertType.ToString(); diff --git a/Content.Shared/Alert/AlertType.cs b/Content.Shared/Alert/AlertType.cs index e0a7ac99f8..68db360231 100644 --- a/Content.Shared/Alert/AlertType.cs +++ b/Content.Shared/Alert/AlertType.cs @@ -49,7 +49,9 @@ public enum AlertType : byte Debug5, Debug6, SuitPower, - BorgHealth + BorgHealth, + BorgCrit, + BorgDead } } diff --git a/Content.Shared/Alert/AlertsSystem.cs b/Content.Shared/Alert/AlertsSystem.cs index 1a2d8a05bf..424a4670ba 100644 --- a/Content.Shared/Alert/AlertsSystem.cs +++ b/Content.Shared/Alert/AlertsSystem.cs @@ -1,4 +1,6 @@ +using System.Collections.Frozen; using System.Diagnostics.CodeAnalysis; +using Robust.Shared.Player; using Robust.Shared.Prototypes; namespace Content.Shared.Alert; @@ -6,7 +8,8 @@ namespace Content.Shared.Alert; public abstract class AlertsSystem : EntitySystem { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - private readonly Dictionary _typeToAlert = new(); + + private FrozenDictionary _typeToAlert = default!; public IReadOnlyDictionary? GetActiveAlerts(EntityUid euid) { @@ -166,11 +169,11 @@ public override void Initialize() SubscribeLocalEvent(HandleComponentStartup); SubscribeLocalEvent(HandleComponentShutdown); + SubscribeLocalEvent(OnPlayerAttached); SubscribeNetworkEvent(HandleClickAlert); - + SubscribeLocalEvent(HandlePrototypesReloaded); LoadPrototypes(); - _prototypeManager.PrototypesReloaded += HandlePrototypesReloaded; } protected virtual void HandleComponentShutdown(EntityUid uid, AlertsComponent component, ComponentShutdown args) @@ -183,29 +186,25 @@ private void HandleComponentStartup(EntityUid uid, AlertsComponent component, Co RaiseLocalEvent(uid, new AlertSyncEvent(uid), true); } - public override void Shutdown() - { - _prototypeManager.PrototypesReloaded -= HandlePrototypesReloaded; - - base.Shutdown(); - } - private void HandlePrototypesReloaded(PrototypesReloadedEventArgs obj) { - LoadPrototypes(); + if (obj.WasModified()) + LoadPrototypes(); } protected virtual void LoadPrototypes() { - _typeToAlert.Clear(); + var dict = new Dictionary(); foreach (var alert in _prototypeManager.EnumeratePrototypes()) { - if (!_typeToAlert.TryAdd(alert.AlertType, alert)) + if (!dict.TryAdd(alert.AlertType, alert)) { Log.Error("Found alert with duplicate alertType {0} - all alerts must have" + " a unique alerttype, this one will be skipped", alert.AlertType); } } + + _typeToAlert = dict.ToFrozenDictionary(); } /// @@ -239,4 +238,9 @@ private void HandleClickAlert(ClickAlertEvent msg, EntitySessionEventArgs args) alert.OnClick?.AlertClicked(player.Value); } + + private void OnPlayerAttached(EntityUid uid, AlertsComponent component, PlayerAttachedEvent args) + { + Dirty(uid, component); + } } diff --git a/Content.Shared/Anomaly/AnomalyCoreVisuals.cs b/Content.Shared/Anomaly/AnomalyCoreVisuals.cs new file mode 100644 index 0000000000..f15ab58e0c --- /dev/null +++ b/Content.Shared/Anomaly/AnomalyCoreVisuals.cs @@ -0,0 +1,9 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.Anomaly; + +[Serializable, NetSerializable] +public enum AnomalyCoreVisuals : byte +{ + Decaying +} diff --git a/Content.Shared/Anomaly/Components/AnomalyComponent.cs b/Content.Shared/Anomaly/Components/AnomalyComponent.cs index 07fc603e26..0e83861863 100644 --- a/Content.Shared/Anomaly/Components/AnomalyComponent.cs +++ b/Content.Shared/Anomaly/Components/AnomalyComponent.cs @@ -2,6 +2,7 @@ using Content.Shared.Damage; using Robust.Shared.Audio; using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; namespace Content.Shared.Anomaly.Components; @@ -126,7 +127,7 @@ public sealed partial class AnomalyComponent : Component /// The sound plays when an anomaly goes supercritical /// [DataField] - public SoundSpecifier? SupercriticalSound = new SoundCollectionSpecifier("explosion"); + public SoundSpecifier? SupercriticalSound = new SoundCollectionSpecifier("Explosion"); #endregion /// @@ -208,6 +209,18 @@ public sealed partial class AnomalyComponent : Component [DataField] public SoundSpecifier AnomalyContactDamageSound = new SoundPathSpecifier("/Audio/Effects/lightburn.ogg"); + /// + /// A prototype entity that appears when an anomaly supercrit collapse. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public EntProtoId? CorePrototype; + + /// + /// A prototype entity that appears when an anomaly decays. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public EntProtoId? CoreInertPrototype; + #region Floating Animation /// /// How long it takes to go from the bottom of the animation to the top. @@ -230,16 +243,17 @@ public sealed partial class AnomalyComponent : Component /// /// Event raised at regular intervals on an anomaly to do whatever its effect is. /// +/// The anomaly pulsing /// /// [ByRefEvent] -public readonly record struct AnomalyPulseEvent(float Stability, float Severity); +public readonly record struct AnomalyPulseEvent(EntityUid Anomaly, float Stability, float Severity); /// /// Event raised on an anomaly when it reaches a supercritical point. /// [ByRefEvent] -public readonly record struct AnomalySupercriticalEvent; +public readonly record struct AnomalySupercriticalEvent(EntityUid Anomaly); /// /// Event broadcast after an anomaly goes supercritical diff --git a/Content.Shared/Anomaly/Effects/Components/EntitySpawnAnomalyComponent.cs b/Content.Shared/Anomaly/Effects/Components/EntitySpawnAnomalyComponent.cs index 7083c91040..7a816e4312 100644 --- a/Content.Shared/Anomaly/Effects/Components/EntitySpawnAnomalyComponent.cs +++ b/Content.Shared/Anomaly/Effects/Components/EntitySpawnAnomalyComponent.cs @@ -1,7 +1,4 @@ -using Content.Shared.Maps; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; namespace Content.Shared.Anomaly.Effects.Components; @@ -36,8 +33,21 @@ public sealed partial class EntitySpawnAnomalyComponent : Component public float SpawnRange = 5f; /// - /// The tile that is spawned by the anomaly's effect + /// Whether or not anomaly spawns entities on Pulse /// - [DataField("floorTileId", customTypeSerializer: typeof(PrototypeIdSerializer)), ViewVariables(VVAccess.ReadWrite)] - public string FloorTileId = "FloorFlesh"; + [DataField, ViewVariables(VVAccess.ReadWrite)] + public bool SpawnOnPulse = true; + + /// + /// Whether or not anomaly spawns entities on SuperCritical + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public bool SpawnOnSuperCritical = true; + + /// + /// Whether or not anomaly spawns entities on StabilityChanged + /// The idea was to spawn entities either on Pulse/Supercritical OR StabilityChanged + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public bool SpawnOnStabilityChanged = false; } diff --git a/Content.Shared/Anomaly/SharedAnomalySystem.cs b/Content.Shared/Anomaly/SharedAnomalySystem.cs index 4b2b3ada70..cf937b761e 100644 --- a/Content.Shared/Anomaly/SharedAnomalySystem.cs +++ b/Content.Shared/Anomaly/SharedAnomalySystem.cs @@ -1,10 +1,12 @@ -using Content.Shared.Administration.Logs; +using Content.Shared.Administration.Logs; using Content.Shared.Anomaly.Components; using Content.Shared.Damage; using Content.Shared.Database; using Content.Shared.Interaction; using Content.Shared.Popups; using Content.Shared.Weapons.Melee.Events; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Network; using Robust.Shared.Random; using Robust.Shared.Timing; @@ -109,9 +111,9 @@ public void DoAnomalyPulse(EntityUid uid, AnomalyComponent? component = null) var pulse = EnsureComp(uid); pulse.EndTime = Timing.CurTime + pulse.PulseDuration; Appearance.SetData(uid, AnomalyVisuals.IsPulsing, true); - - var ev = new AnomalyPulseEvent(component.Stability, component.Severity); - RaiseLocalEvent(uid, ref ev); + + var ev = new AnomalyPulseEvent(uid, component.Stability, component.Severity); + RaiseLocalEvent(uid, ref ev, true); } /// @@ -154,8 +156,8 @@ public void DoAnomalySupercriticalEvent(EntityUid uid, AnomalyComponent? compone if (_net.IsServer) _sawmill.Info($"Raising supercritical event. Entity: {ToPrettyString(uid)}"); - var ev = new AnomalySupercriticalEvent(); - RaiseLocalEvent(uid, ref ev); + var ev = new AnomalySupercriticalEvent(uid); + RaiseLocalEvent(uid, ref ev, true); EndAnomaly(uid, component, true); } @@ -181,6 +183,9 @@ public void EndAnomaly(EntityUid uid, AnomalyComponent? component = null, bool s if (Terminating(uid) || _net.IsClient) return; + + Spawn(supercritical ? component.CorePrototype : component.CoreInertPrototype, Transform(uid).Coordinates); + QueueDel(uid); } diff --git a/Content.Shared/Armor/SharedArmorSystem.cs b/Content.Shared/Armor/SharedArmorSystem.cs index 89141fcbd3..73cb6da2c2 100644 --- a/Content.Shared/Armor/SharedArmorSystem.cs +++ b/Content.Shared/Armor/SharedArmorSystem.cs @@ -8,13 +8,13 @@ namespace Content.Shared.Armor; /// -/// This handles logic relating to +/// This handles logic relating to /// public abstract class SharedArmorSystem : EntitySystem { [Dependency] private readonly ExamineSystemShared _examine = default!; - /// + /// public override void Initialize() { base.Initialize(); @@ -29,7 +29,8 @@ private void OnDamageModify(EntityUid uid, ArmorComponent component, InventoryRe args.Args.Damage = DamageSpecifier.ApplyModifierSet(args.Args.Damage, component.Modifiers); } - private void OnBorgDamageModify(EntityUid uid, ArmorComponent component, ref BorgModuleRelayedEvent args) + private void OnBorgDamageModify(EntityUid uid, ArmorComponent component, + ref BorgModuleRelayedEvent args) { args.Args.Damage = DamageSpecifier.ApplyModifierSet(args.Args.Damage, component.Modifiers); } @@ -58,19 +59,23 @@ private FormattedMessage GetArmorExamine(DamageModifierSet armorModifiers) foreach (var coefficientArmor in armorModifiers.Coefficients) { msg.PushNewline(); + + var armorType = Loc.GetString("armor-damage-type-" + coefficientArmor.Key.ToLower()); msg.AddMarkup(Loc.GetString("armor-coefficient-value", - ("type", coefficientArmor.Key), - ("value", MathF.Round((1f - coefficientArmor.Value) * 100,1)) - )); + ("type", armorType), + ("value", MathF.Round((1f - coefficientArmor.Value) * 100, 1)) + )); } foreach (var flatArmor in armorModifiers.FlatReduction) { msg.PushNewline(); + + var armorType = Loc.GetString("armor-damage-type-" + flatArmor.Key.ToLower()); msg.AddMarkup(Loc.GetString("armor-reduction-value", - ("type", flatArmor.Key), + ("type", armorType), ("value", flatArmor.Value) - )); + )); } return msg; diff --git a/Content.Shared/Atmos/Atmospherics.cs b/Content.Shared/Atmos/Atmospherics.cs index fd5976aa0b..6c4038fc41 100644 --- a/Content.Shared/Atmos/Atmospherics.cs +++ b/Content.Shared/Atmos/Atmospherics.cs @@ -45,6 +45,15 @@ static Atmospherics() /// public const float T20C = 293.15f; + /// + /// Do not allow any gas mixture temperatures to exceed this number. It is occasionally possible + /// to have very small heat capacity (e.g. room that was just unspaced) and for large amounts of + /// energy to be transferred to it, even for a brief moment. However, this messes up subsequent + /// calculations and so cap it here. The physical interpretation is that at this temperature, any + /// gas that you would have transforms into plasma. + /// + public const float Tmax = 200e3f; + /// /// Liters in a cell. /// @@ -123,7 +132,7 @@ static Atmospherics() /// /// Minimum temperature difference before the gas temperatures are just set to be equal. /// - public const float MinimumTemperatureDeltaToConsider = 0.1f; + public const float MinimumTemperatureDeltaToConsider = 0.01f; /// /// Minimum temperature for starting superconduction. @@ -179,11 +188,11 @@ static Atmospherics() /// /// Amount of heat released per mole of burnt hydrogen or tritium (hydrogen isotope) /// - public const float FireHydrogenEnergyReleased = 560000f; + public const float FireHydrogenEnergyReleased = 284e3f; // hydrogen is 284 kJ/mol public const float FireMinimumTemperatureToExist = T0C + 100f; public const float FireMinimumTemperatureToSpread = T0C + 150f; public const float FireSpreadRadiosityScale = 0.85f; - public const float FirePlasmaEnergyReleased = 3000000f; + public const float FirePlasmaEnergyReleased = 16e3f; // methane is 16 kJ/mol public const float FireGrowthRate = 40000f; public const float SuperSaturationThreshold = 96f; @@ -216,7 +225,7 @@ static Atmospherics() /// Remove X mol of nitrogen for each mol of frezon. /// public const float FrezonNitrogenCoolRatio = 5; - public const float FrezonCoolEnergyReleased = -3000000f; + public const float FrezonCoolEnergyReleased = -600e3f; public const float FrezonCoolRateModifier = 20f; public const float FrezonProductionMaxEfficiencyTemperature = 73.15f; @@ -237,9 +246,14 @@ static Atmospherics() public const float FrezonProductionConversionRate = 50f; /// - /// How many mol of frezon can be converted into miasma in one cycle. + /// The maximum portion of the N2O that can decompose each reaction tick. (50%) + /// + public const float N2ODecompositionRate = 2f; + + /// + /// Divisor for Ammonia Oxygen reaction so that it doesn't happen instantaneously. /// - public const float MiasmicSubsumationMaxConversionRate = 5f; + public const float AmmoniaOxygenReactionRate = 10f; /// /// Determines at what pressure the ultra-high pressure red icon is displayed. @@ -324,7 +338,7 @@ public enum Gas : sbyte Plasma = 3, Tritium = 4, WaterVapor = 5, - Miasma = 6, + Ammonia = 6, NitrousOxide = 7, Frezon = 8 } diff --git a/Content.Shared/Atmos/Components/ExtinguishOnInteractComponent.cs b/Content.Shared/Atmos/Components/ExtinguishOnInteractComponent.cs new file mode 100644 index 0000000000..02c1e3eb26 --- /dev/null +++ b/Content.Shared/Atmos/Components/ExtinguishOnInteractComponent.cs @@ -0,0 +1,29 @@ +using Robust.Shared.Audio; + +namespace Content.Shared.Atmos.Components; +/// +/// Allows you to extinguish an object by interacting with it +/// +[RegisterComponent] +public sealed partial class ExtinguishOnInteractComponent : Component +{ + [DataField, ViewVariables(VVAccess.ReadWrite)] + public SoundSpecifier? ExtinguishAttemptSound = new SoundPathSpecifier("/Audio/Items/candle_blowing.ogg"); + + /// + /// Extinguishing chance + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float Probability = 0.9f; + + /// + /// Number of fire stacks to be changed on successful interaction. + /// + // With positive values, the interaction will conversely fan the fire, + // which is useful for any blacksmithing mechs + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float StackDelta = -5.0f; + + [DataField] + public LocId ExtinguishFailed = "candle-extinguish-failed"; +} diff --git a/Content.Shared/Atmos/EntitySystems/SharedAtmosDebugOverlaySystem.cs b/Content.Shared/Atmos/EntitySystems/SharedAtmosDebugOverlaySystem.cs index d52c6a4ae7..136c195502 100644 --- a/Content.Shared/Atmos/EntitySystems/SharedAtmosDebugOverlaySystem.cs +++ b/Content.Shared/Atmos/EntitySystems/SharedAtmosDebugOverlaySystem.cs @@ -1,4 +1,4 @@ -using Robust.Shared.Map; +using System.Numerics; using Robust.Shared.Serialization; namespace Content.Shared.Atmos.EntitySystems @@ -10,27 +10,17 @@ public abstract class SharedAtmosDebugOverlaySystem : EntitySystem protected float AccumulatedFrameTime; [Serializable, NetSerializable] - public readonly struct AtmosDebugOverlayData - { - public readonly float Temperature; - public readonly float[] Moles; - public readonly AtmosDirection PressureDirection; - public readonly AtmosDirection LastPressureDirection; - public readonly int InExcitedGroup; - public readonly AtmosDirection BlockDirection; - public readonly bool IsSpace; - - public AtmosDebugOverlayData(float temperature, float[] moles, AtmosDirection pressureDirection, AtmosDirection lastPressureDirection, int inExcited, AtmosDirection blockDirection, bool isSpace) - { - Temperature = temperature; - Moles = moles; - PressureDirection = pressureDirection; - LastPressureDirection = lastPressureDirection; - InExcitedGroup = inExcited; - BlockDirection = blockDirection; - IsSpace = isSpace; - } - } + public readonly record struct AtmosDebugOverlayData( + Vector2 Indices, + float Temperature, + float[]? Moles, + AtmosDirection PressureDirection, + AtmosDirection LastPressureDirection, + AtmosDirection BlockDirection, + int? InExcitedGroup, + bool IsSpace, + bool MapAtmosphere, + bool NoGrid); /// /// Invalid tiles for the gas overlay. @@ -43,9 +33,9 @@ public sealed class AtmosDebugOverlayMessage : EntityEventArgs public Vector2i BaseIdx { get; } // LocalViewRange*LocalViewRange - public AtmosDebugOverlayData[] OverlayData { get; } + public AtmosDebugOverlayData?[] OverlayData { get; } - public AtmosDebugOverlayMessage(NetEntity gridIndices, Vector2i baseIdx, AtmosDebugOverlayData[] overlayData) + public AtmosDebugOverlayMessage(NetEntity gridIndices, Vector2i baseIdx, AtmosDebugOverlayData?[] overlayData) { GridId = gridIndices; BaseIdx = baseIdx; diff --git a/Content.Shared/Atmos/Monitor/AtmosAlarmThreshold.cs b/Content.Shared/Atmos/Monitor/AtmosAlarmThreshold.cs index 7ad0e0f502..c37c70a3ab 100644 --- a/Content.Shared/Atmos/Monitor/AtmosAlarmThreshold.cs +++ b/Content.Shared/Atmos/Monitor/AtmosAlarmThreshold.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Atmos.Monitor; [Prototype("alarmThreshold")] -public sealed class AtmosAlarmThresholdPrototype : IPrototype +public sealed partial class AtmosAlarmThresholdPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Shared/Atmos/Piping/Unary/Components/SharedVentScrubberComponent.cs b/Content.Shared/Atmos/Piping/Unary/Components/SharedVentScrubberComponent.cs index 2ef5cebba5..2a33306245 100644 --- a/Content.Shared/Atmos/Piping/Unary/Components/SharedVentScrubberComponent.cs +++ b/Content.Shared/Atmos/Piping/Unary/Components/SharedVentScrubberComponent.cs @@ -20,7 +20,7 @@ public sealed class GasVentScrubberData : IAtmosDeviceData Gas.Plasma, Gas.Tritium, Gas.WaterVapor, - Gas.Miasma, + Gas.Ammonia, Gas.NitrousOxide, Gas.Frezon }; diff --git a/Content.Shared/Atmos/Prototypes/GasPrototype.cs b/Content.Shared/Atmos/Prototypes/GasPrototype.cs index 75416db3f9..dd474f424d 100644 --- a/Content.Shared/Atmos/Prototypes/GasPrototype.cs +++ b/Content.Shared/Atmos/Prototypes/GasPrototype.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Atmos.Prototypes { [Prototype("gas")] - public sealed class GasPrototype : IPrototype + public sealed partial class GasPrototype : IPrototype { [DataField("name")] public string Name { get; set; } = ""; diff --git a/Content.Shared/Atmos/Miasma/AntiRottingContainerComponent.cs b/Content.Shared/Atmos/Rotting/AntiRottingContainerComponent.cs similarity index 81% rename from Content.Shared/Atmos/Miasma/AntiRottingContainerComponent.cs rename to Content.Shared/Atmos/Rotting/AntiRottingContainerComponent.cs index 0557ec9133..1a5ebccb2d 100644 --- a/Content.Shared/Atmos/Miasma/AntiRottingContainerComponent.cs +++ b/Content.Shared/Atmos/Rotting/AntiRottingContainerComponent.cs @@ -1,4 +1,4 @@ -namespace Content.Shared.Atmos.Miasma; +namespace Content.Shared.Atmos.Rotting; /// /// Entities inside this container will not rot. diff --git a/Content.Shared/Atmos/Miasma/PerishableComponent.cs b/Content.Shared/Atmos/Rotting/PerishableComponent.cs similarity index 97% rename from Content.Shared/Atmos/Miasma/PerishableComponent.cs rename to Content.Shared/Atmos/Rotting/PerishableComponent.cs index e7f1438bf6..5a984c39ff 100644 --- a/Content.Shared/Atmos/Miasma/PerishableComponent.cs +++ b/Content.Shared/Atmos/Rotting/PerishableComponent.cs @@ -1,6 +1,6 @@ using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; -namespace Content.Shared.Atmos.Miasma; +namespace Content.Shared.Atmos.Rotting; /// /// This makes mobs eventually start rotting when they die. diff --git a/Content.Shared/Atmos/Miasma/RotIntoComponent.cs b/Content.Shared/Atmos/Rotting/RotIntoComponent.cs similarity index 95% rename from Content.Shared/Atmos/Miasma/RotIntoComponent.cs rename to Content.Shared/Atmos/Rotting/RotIntoComponent.cs index 5f4a472c2e..14697e112f 100644 --- a/Content.Shared/Atmos/Miasma/RotIntoComponent.cs +++ b/Content.Shared/Atmos/Rotting/RotIntoComponent.cs @@ -2,7 +2,7 @@ using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -namespace Content.Shared.Atmos.Miasma; +namespace Content.Shared.Atmos.Rotting; /// /// Lets an entity rot into another entity. diff --git a/Content.Shared/Atmos/Miasma/RottingComponent.cs b/Content.Shared/Atmos/Rotting/RottingComponent.cs similarity index 95% rename from Content.Shared/Atmos/Miasma/RottingComponent.cs rename to Content.Shared/Atmos/Rotting/RottingComponent.cs index c5485eba6d..4314d22440 100644 --- a/Content.Shared/Atmos/Miasma/RottingComponent.cs +++ b/Content.Shared/Atmos/Rotting/RottingComponent.cs @@ -2,7 +2,7 @@ using Robust.Shared.GameStates; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; -namespace Content.Shared.Atmos.Miasma; +namespace Content.Shared.Atmos.Rotting; /// /// Tracking component for stuff that has started to rot. @@ -17,7 +17,7 @@ public sealed partial class RottingComponent : Component public bool DealDamage = true; /// - /// When the next check will happen for rot progression + effects like damage and miasma + /// When the next check will happen for rot progression + effects like damage and ammonia /// [DataField("nextRotUpdate", customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite)] public TimeSpan NextRotUpdate = TimeSpan.Zero; diff --git a/Content.Shared/Audio/AmbientMusicPrototype.cs b/Content.Shared/Audio/AmbientMusicPrototype.cs index ad6f67b175..54f70f5728 100644 --- a/Content.Shared/Audio/AmbientMusicPrototype.cs +++ b/Content.Shared/Audio/AmbientMusicPrototype.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Audio; /// Attaches a rules prototype to sound files to play ambience. /// [Prototype("ambientMusic")] -public sealed class AmbientMusicPrototype : IPrototype +public sealed partial class AmbientMusicPrototype : IPrototype { [IdDataField] public string ID { get; } = string.Empty; diff --git a/Content.Shared/Audio/SharedAmbientSoundSystem.cs b/Content.Shared/Audio/SharedAmbientSoundSystem.cs index 30fdc946ed..6318ba2557 100644 --- a/Content.Shared/Audio/SharedAmbientSoundSystem.cs +++ b/Content.Shared/Audio/SharedAmbientSoundSystem.cs @@ -19,7 +19,7 @@ public virtual void SetAmbience(EntityUid uid, bool value, AmbientSoundComponent ambience.Enabled = value; QueueUpdate(uid, ambience); - Dirty(ambience); + Dirty(uid, ambience); } public virtual void SetRange(EntityUid uid, float value, AmbientSoundComponent? ambience = null) @@ -29,7 +29,7 @@ public virtual void SetRange(EntityUid uid, float value, AmbientSoundComponent? ambience.Range = value; QueueUpdate(uid, ambience); - Dirty(ambience); + Dirty(uid, ambience); } protected virtual void QueueUpdate(EntityUid uid, AmbientSoundComponent ambience) @@ -43,7 +43,7 @@ public virtual void SetVolume(EntityUid uid, float value, AmbientSoundComponent? return; ambience.Volume = value; - Dirty(ambience); + Dirty(uid, ambience); } public virtual void SetSound(EntityUid uid, SoundSpecifier sound, AmbientSoundComponent? ambience = null) @@ -53,7 +53,7 @@ public virtual void SetSound(EntityUid uid, SoundSpecifier sound, AmbientSoundCo ambience.Sound = sound; QueueUpdate(uid, ambience); - Dirty(ambience); + Dirty(uid, ambience); } private void HandleCompState(EntityUid uid, AmbientSoundComponent component, ref ComponentHandleState args) diff --git a/Content.Shared/Audio/SharedContentAudioSystem.cs b/Content.Shared/Audio/SharedContentAudioSystem.cs index 7151ef2c17..932174981f 100644 --- a/Content.Shared/Audio/SharedContentAudioSystem.cs +++ b/Content.Shared/Audio/SharedContentAudioSystem.cs @@ -1,10 +1,13 @@ using Content.Shared.Physics; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Components; +using Robust.Shared.Audio.Systems; namespace Content.Shared.Audio; public abstract class SharedContentAudioSystem : EntitySystem { - [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] protected readonly SharedAudioSystem Audio = default!; /// /// Standard variation to use for sounds. @@ -14,6 +17,16 @@ public abstract class SharedContentAudioSystem : EntitySystem public override void Initialize() { base.Initialize(); - _audio.OcclusionCollisionMask = (int) CollisionGroup.Impassable; + Audio.OcclusionCollisionMask = (int) CollisionGroup.Impassable; + } + + protected void SilenceAudio() + { + var query = AllEntityQuery(); + + while (query.MoveNext(out var uid, out var comp)) + { + Audio.SetGain(uid, 0f, comp); + } } } diff --git a/Content.Shared/BarSign/BarSignPrototype.cs b/Content.Shared/BarSign/BarSignPrototype.cs index 6b8fec1275..a0566d9f46 100644 --- a/Content.Shared/BarSign/BarSignPrototype.cs +++ b/Content.Shared/BarSign/BarSignPrototype.cs @@ -3,7 +3,7 @@ namespace Content.Shared.BarSign { [Prototype("barSign")] - public sealed class BarSignPrototype : IPrototype + public sealed partial class BarSignPrototype : IPrototype { [ViewVariables] [IdDataField] diff --git a/Content.Shared/Blocking/BlockingSystem.User.cs b/Content.Shared/Blocking/BlockingSystem.User.cs index bfefaf2b92..87f285597f 100644 --- a/Content.Shared/Blocking/BlockingSystem.User.cs +++ b/Content.Shared/Blocking/BlockingSystem.User.cs @@ -1,6 +1,7 @@ -using Content.Shared.Damage; +using Content.Shared.Damage; using Content.Shared.Damage.Prototypes; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; namespace Content.Shared.Blocking; @@ -43,6 +44,9 @@ private void OnUserDamageModified(EntityUid uid, BlockingUserComponent component { if (TryComp(component.BlockingItem, out var blocking)) { + if (args.Damage.GetTotal() <= 0) + return; + var blockFraction = blocking.IsBlocking ? blocking.ActiveBlockFraction : blocking.PassiveBlockFraction; blockFraction = Math.Clamp(blockFraction, 0, 1); _damageable.TryChangeDamage(component.BlockingItem, blockFraction * args.OriginalDamage); @@ -51,7 +55,7 @@ private void OnUserDamageModified(EntityUid uid, BlockingUserComponent component if (blocking.IsBlocking) { - _audio.PlayPvs(blocking.BlockSound, uid, AudioParams.Default.WithVariation(0.2f)); + _audio.PlayPvs(blocking.BlockSound, uid); } } } diff --git a/Content.Shared/Blocking/BlockingSystem.cs b/Content.Shared/Blocking/BlockingSystem.cs index f46b202aaa..d616d55eb9 100644 --- a/Content.Shared/Blocking/BlockingSystem.cs +++ b/Content.Shared/Blocking/BlockingSystem.cs @@ -19,6 +19,7 @@ using Robust.Shared.Physics.Systems; using Robust.Shared.Player; using Robust.Shared.Prototypes; +using Robust.Shared.Timing; using Robust.Shared.Utility; namespace Content.Shared.Blocking; @@ -36,6 +37,7 @@ public sealed partial class BlockingSystem : EntitySystem [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly ExamineSystemShared _examine = default!; [Dependency] private readonly INetManager _net = default!; + [Dependency] private readonly IGameTiming _gameTiming = default!; public override void Initialize() { @@ -195,8 +197,12 @@ public bool StartBlocking(EntityUid item, BlockingComponent component, EntityUid return false; } _actionsSystem.SetToggled(component.BlockingToggleActionEntity, true); - _popupSystem.PopupEntity(msgUser, user, user); - _popupSystem.PopupEntity(msgOther, user, Filter.PvsExcept(user), true); + if (_gameTiming.IsFirstTimePredicted) + { + _popupSystem.PopupEntity(msgOther, user, Filter.PvsExcept(user), true); + if(_gameTiming.InPrediction) + _popupSystem.PopupEntity(msgUser, user, user); + } } if (TryComp(user, out var physicsComponent)) @@ -259,8 +265,12 @@ public bool StopBlocking(EntityUid item, BlockingComponent component, EntityUid _actionsSystem.SetToggled(component.BlockingToggleActionEntity, false); _fixtureSystem.DestroyFixture(user, BlockingComponent.BlockFixtureID, body: physicsComponent); _physics.SetBodyType(user, blockingUserComponent.OriginalBodyType, body: physicsComponent); - _popupSystem.PopupEntity(msgUser, user, user); - _popupSystem.PopupEntity(msgOther, user, Filter.PvsExcept(user), true); + if (_gameTiming.IsFirstTimePredicted) + { + _popupSystem.PopupEntity(msgOther, user, Filter.PvsExcept(user), true); + if(_gameTiming.InPrediction) + _popupSystem.PopupEntity(msgUser, user, user); + } } component.IsBlocking = false; diff --git a/Content.Shared/Blocking/Components/BlockingComponent.cs b/Content.Shared/Blocking/Components/BlockingComponent.cs index 9a379a29e9..f869c20679 100644 --- a/Content.Shared/Blocking/Components/BlockingComponent.cs +++ b/Content.Shared/Blocking/Components/BlockingComponent.cs @@ -57,8 +57,11 @@ public sealed partial class BlockingComponent : Component /// /// The sound to be played when you get hit while actively blocking /// - [DataField("blockSound")] - public SoundSpecifier BlockSound = new SoundPathSpecifier("/Audio/Weapons/block_metal1.ogg"); + [DataField("blockSound")] public SoundSpecifier BlockSound = + new SoundPathSpecifier("/Audio/Weapons/block_metal1.ogg") + { + Params = AudioParams.Default.WithVariation(0.25f) + }; /// /// Fraction of original damage shield will take instead of user diff --git a/Content.Shared/Body/Prototypes/BodyPrototype.cs b/Content.Shared/Body/Prototypes/BodyPrototype.cs index a1105dae5c..123638f099 100644 --- a/Content.Shared/Body/Prototypes/BodyPrototype.cs +++ b/Content.Shared/Body/Prototypes/BodyPrototype.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Body.Prototypes; [Prototype("body")] -public sealed class BodyPrototype : IPrototype +public sealed partial class BodyPrototype : IPrototype { [IdDataField] public string ID { get; } = default!; diff --git a/Content.Shared/Body/Prototypes/MetabolismGroupPrototype.cs b/Content.Shared/Body/Prototypes/MetabolismGroupPrototype.cs index 2bf2c5110e..162b5f2d6c 100644 --- a/Content.Shared/Body/Prototypes/MetabolismGroupPrototype.cs +++ b/Content.Shared/Body/Prototypes/MetabolismGroupPrototype.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Body.Prototypes { [Prototype("metabolismGroup")] - public sealed class MetabolismGroupPrototype : IPrototype + public sealed partial class MetabolismGroupPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Shared/Body/Prototypes/MetabolizerTypePrototype.cs b/Content.Shared/Body/Prototypes/MetabolizerTypePrototype.cs index 4add9738f3..c840983ca0 100644 --- a/Content.Shared/Body/Prototypes/MetabolizerTypePrototype.cs +++ b/Content.Shared/Body/Prototypes/MetabolizerTypePrototype.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Body.Prototypes { [Prototype("metabolizerType")] - public sealed class MetabolizerTypePrototype : IPrototype + public sealed partial class MetabolizerTypePrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs index 6add066133..9b31d0899c 100644 --- a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs +++ b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs @@ -435,9 +435,12 @@ public bool TryUnbuckle(EntityUid buckleUid, EntityUid userUid, bool force = fal if (HasComp(buckleUid) && buckleUid == userUid) return false; - // If the strap is a vehicle and the rider is not the person unbuckling, return. - if (TryComp(strapUid, out var vehicle) && - vehicle.Rider != userUid) + // If the strap is a vehicle and the rider is not the person unbuckling, return. Unless the rider is crit or dead. + if (TryComp(strapUid, out var vehicle) && vehicle.Rider != userUid && !_mobState.IsIncapacitated(buckleUid)) + return false; + + // If the person is crit or dead in any kind of strap, return. This prevents people from unbuckling themselves while incapacitated. + if (_mobState.IsIncapacitated(buckleUid) && userUid == buckleUid) return false; } @@ -493,8 +496,10 @@ public bool TryUnbuckle(EntityUid buckleUid, EntityUid userUid, bool force = fal _joints.RefreshRelay(buckleUid); Appearance.SetData(strapUid, StrapVisuals.State, strapComp.BuckledEntities.Count != 0); - var audioSourceUid = userUid != buckleUid ? userUid : strapUid; - _audio.PlayPredicted(strapComp.UnbuckleSound, strapUid, audioSourceUid); + + // TODO: Buckle listening to moveevents is sussy anyway. + if (!TerminatingOrDeleted(strapUid)) + _audio.PlayPredicted(strapComp.UnbuckleSound, strapUid, userUid); var ev = new BuckleChangeEvent(strapUid, buckleUid, false); RaiseLocalEvent(buckleUid, ref ev); diff --git a/Content.Shared/Buckle/SharedBuckleSystem.Strap.cs b/Content.Shared/Buckle/SharedBuckleSystem.Strap.cs index 8616546480..7c449a5d8b 100644 --- a/Content.Shared/Buckle/SharedBuckleSystem.Strap.cs +++ b/Content.Shared/Buckle/SharedBuckleSystem.Strap.cs @@ -1,5 +1,6 @@ using System.Linq; using Content.Shared.Buckle.Components; +using Content.Shared.Construction; using Content.Shared.Destructible; using Content.Shared.DragDrop; using Content.Shared.Foldable; @@ -31,6 +32,7 @@ private void InitializeStrap() SubscribeLocalEvent(OnAttemptFold); SubscribeLocalEvent(OnStrapMoveEvent); + SubscribeLocalEvent((_, c, _) => StrapRemoveAll(c)); } private void OnStrapStartup(EntityUid uid, StrapComponent component, ComponentStartup args) diff --git a/Content.Shared/Buckle/SharedBuckleSystem.cs b/Content.Shared/Buckle/SharedBuckleSystem.cs index 1441745b5d..8f68335663 100644 --- a/Content.Shared/Buckle/SharedBuckleSystem.cs +++ b/Content.Shared/Buckle/SharedBuckleSystem.cs @@ -7,6 +7,8 @@ using Content.Shared.Popups; using Content.Shared.Pulling; using Content.Shared.Standing; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Map; using Robust.Shared.Network; diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index 425d8355de..7787b34476 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -67,26 +67,19 @@ public sealed class CCVars : CVars /// Ambience volume. /// public static readonly CVarDef AmbienceVolume = - CVarDef.Create("ambience.volume", 0.0f, CVar.ARCHIVE | CVar.CLIENTONLY); - - // Midi is on engine so deal - public const float MidiMultiplier = 3f; - - public const float AmbienceMultiplier = 2f; + CVarDef.Create("ambience.volume", 0.50f, CVar.ARCHIVE | CVar.CLIENTONLY); /// /// Ambience music volume. /// public static readonly CVarDef AmbientMusicVolume = - CVarDef.Create("ambience.music_volume", 0.0f, CVar.ARCHIVE | CVar.CLIENTONLY); - - public const float AmbientMusicMultiplier = 2f; + CVarDef.Create("ambience.music_volume", 0.50f, CVar.ARCHIVE | CVar.CLIENTONLY); /// /// Lobby / round end music volume. /// public static readonly CVarDef LobbyMusicVolume = - CVarDef.Create("ambience.lobby_music_volume", 0.0f, CVar.ARCHIVE | CVar.CLIENTONLY); + CVarDef.Create("ambience.lobby_music_volume", 0.50f, CVar.ARCHIVE | CVar.CLIENTONLY); /* * Status @@ -325,12 +318,6 @@ public static readonly CVarDef public static readonly CVarDef GameAlertLevelChangeDelay = CVarDef.Create("game.alert_level_change_delay", 30, CVar.SERVERONLY); - /// - /// How many times per second artifacts when the round is over. - /// If set to 0, they won't activate (on a timer) when the round ends. - /// - public static readonly CVarDef ArtifactRoundEndTimer = CVarDef.Create("game.artifact_round_end_timer", 0f, CVar.NOTIFY | CVar.REPLICATED); - /// /// The time in seconds that the server should wait before restarting the round. /// Defaults to 2 minutes. @@ -362,6 +349,11 @@ public static readonly CVarDef CVarDef.Create("discord.ahelp_avatar", string.Empty, CVar.SERVERONLY); /// + /// URL of the Discord webhook which will relay all custom votes. If left empty, disables the webhook. + /// + public static readonly CVarDef DiscordVoteWebhook = + CVarDef.Create("discord.vote_webhook", string.Empty, CVar.SERVERONLY); + /// URL of the Discord webhook which will relay round restart messages. /// public static readonly CVarDef DiscordRoundUpdateWebhook = @@ -373,6 +365,7 @@ public static readonly CVarDef public static readonly CVarDef DiscordRoundEndRoleWebhook = CVarDef.Create("discord.round_end_role", string.Empty, CVar.SERVERONLY); + /* * Suspicion */ @@ -553,6 +546,16 @@ public static readonly CVarDef public static readonly CVarDef DatabasePgConcurrency = CVarDef.Create("database.pg_concurrency", 8, CVar.SERVERONLY); + /// + /// Milliseconds to asynchronously delay all PostgreSQL database operations with. + /// + /// + /// This is intended for performance testing. It works different from , + /// as the lag is applied after acquiring the database lock. + /// + public static readonly CVarDef DatabasePgFakeLag = + CVarDef.Create("database.pg_fake_lag", 0, CVar.SERVERONLY); + // Basically only exists for integration tests to avoid race conditions. public static readonly CVarDef DatabaseSynchronous = CVarDef.Create("database.sync", false, CVar.SERVERONLY); @@ -631,6 +634,8 @@ public static readonly CVarDef CVarDef.Create("audio.admin_chat_sound_path", "/Audio/Items/pop.ogg", CVar.ARCHIVE | CVar.CLIENT | CVar.REPLICATED); public static readonly CVarDef AdminChatSoundVolume = CVarDef.Create("audio.admin_chat_sound_volume", -5f, CVar.ARCHIVE | CVar.CLIENT | CVar.REPLICATED); + public static readonly CVarDef AHelpSound = + CVarDef.Create("audio.ahelp_sound", "/Audio/Effects/adminhelp.ogg", CVar.ARCHIVE | CVar.CLIENTONLY); /* * HUD @@ -645,6 +650,9 @@ public static readonly CVarDef public static readonly CVarDef CombatModeIndicatorsPointShow = CVarDef.Create("hud.combat_mode_indicators_point_show", true, CVar.ARCHIVE | CVar.CLIENTONLY); + public static readonly CVarDef LoocAboveHeadShow = + CVarDef.Create("hud.show_looc_above_head", true, CVar.ARCHIVE | CVar.CLIENTONLY); + public static readonly CVarDef HudHeldItemOffset = CVarDef.Create("hud.held_item_offset", 28f, CVar.ARCHIVE | CVar.CLIENTONLY); @@ -755,6 +763,11 @@ public static readonly CVarDef public static readonly CVarDef AdminDeadminOnJoin = CVarDef.Create("admin.deadmin_on_join", false, CVar.SERVERONLY); + /// + /// Overrides the name the client sees in ahelps. Set empty to disable. + /// + public static readonly CVarDef AdminAhelpOverrideClientName = + CVarDef.Create("admin.override_adminname_in_client_ahelp", string.Empty, CVar.SERVERONLY); /* * Explosions */ @@ -838,7 +851,7 @@ public static readonly CVarDef /// This determines for how many seconds an explosion should stay visible once it has finished expanding. /// public static readonly CVarDef ExplosionPersistence = - CVarDef.Create("explosion.persistence", 0.3f, CVar.SERVERONLY); + CVarDef.Create("explosion.persistence", 1.0f, CVar.SERVERONLY); /// /// If an explosion covers a larger area than this number, the damaging/processing will always start during @@ -968,9 +981,12 @@ public static readonly CVarDef /// /// Whether monstermos explosive depressurization will rip tiles.. /// Needs and to be enabled to work. + /// WARNING: This cvar causes MAJOR contrast issues, and usually tends to make any spaced scene look very cluttered. + /// This not only usually looks strange, but can also reduce playability for people with impaired vision. Please think twice before enabling this on your server. + /// Also looks weird on slow spacing for unrelated reasons. If you do want to enable this, you should probably turn on instaspacing. /// public static readonly CVarDef MonstermosRipTiles = - CVarDef.Create("atmos.monstermos_rip_tiles", true, CVar.SERVERONLY); + CVarDef.Create("atmos.monstermos_rip_tiles", false, CVar.SERVERONLY); /// /// Whether explosive depressurization will cause the grid to gain an impulse. @@ -1041,6 +1057,22 @@ public static readonly CVarDef public static readonly CVarDef AtmosTickRate = CVarDef.Create("atmos.tickrate", 15f, CVar.SERVERONLY); + /// + /// Scale factor for how fast things happen in our atmosphere + /// simulation compared to real life. 1x means pumps run at 1x + /// speed. Players typically expect things to happen faster + /// in-game. + /// + public static readonly CVarDef AtmosSpeedup = + CVarDef.Create("atmos.speedup", 8f, CVar.SERVERONLY); + + /// + /// Like atmos.speedup, but only for gas and reaction heat values. 64x means + /// gases heat up and cool down 64x faster than real life. + /// + public static readonly CVarDef AtmosHeatScale = + CVarDef.Create("atmos.heat_scale", 8f, CVar.SERVERONLY); + /* * MIDI instruments */ @@ -1246,6 +1278,12 @@ public static readonly CVarDef public static readonly CVarDef CameraRotationLocked = CVarDef.Create("shuttle.camera_rotation_locked", false, CVar.REPLICATED); + /// + /// Whether the arrivals terminal should be on a planet map. + /// + public static readonly CVarDef ArrivalsPlanet = + CVarDef.Create("shuttle.arrivals_planet", true, CVar.SERVERONLY); + /// /// Whether the arrivals shuttle is enabled. /// @@ -1435,6 +1473,39 @@ public static readonly CVarDef * CHAT */ + /// + /// Chat rate limit values are accounted in periods of this size (seconds). + /// After the period has passed, the count resets. + /// + /// + public static readonly CVarDef ChatRateLimitPeriod = + CVarDef.Create("chat.rate_limit_period", 2, CVar.SERVERONLY); + + /// + /// How many chat messages are allowed in a single rate limit period. + /// + /// + /// The total rate limit throughput per second is effectively + /// divided by . + /// + /// + /// + public static readonly CVarDef ChatRateLimitCount = + CVarDef.Create("chat.rate_limit_count", 10, CVar.SERVERONLY); + + /// + /// If true, announce when a player breached chat rate limit to game administrators. + /// + /// + public static readonly CVarDef ChatRateLimitAnnounceAdmins = + CVarDef.Create("chat.rate_limit_announce_admins", true, CVar.SERVERONLY); + + /// + /// Minimum delay (in seconds) between announcements from . + /// + public static readonly CVarDef ChatRateLimitAnnounceAdminsDelay = + CVarDef.Create("chat.rate_limit_announce_admins_delay", 15, CVar.SERVERONLY); + public static readonly CVarDef ChatMaxMessageLength = CVarDef.Create("chat.max_message_length", 1000, CVar.SERVER | CVar.REPLICATED); @@ -1444,6 +1515,12 @@ public static readonly CVarDef public static readonly CVarDef ChatShowTypingIndicator = CVarDef.Create("chat.show_typing_indicator", true, CVar.CLIENTONLY); + public static readonly CVarDef ChatEnableFancyBubbles = + CVarDef.Create("chat.enable_fancy_bubbles", true, CVar.CLIENTONLY | CVar.ARCHIVE, "Toggles displaying fancy speech bubbles, which display the speaking character's name."); + + public static readonly CVarDef ChatFancyNameBackground = + CVarDef.Create("chat.fancy_name_background", false, CVar.CLIENTONLY | CVar.ARCHIVE, "Toggles displaying a background under the speaking character's name."); + /// /// A message broadcast to each player that joins the lobby. /// May be changed by admins ingame through use of the "set-motd" command. @@ -1523,7 +1600,7 @@ public static readonly CVarDef /// Duration for missions /// public static readonly CVarDef - SalvageExpeditionDuration = CVarDef.Create("salvage.expedition_duration", 420f, CVar.REPLICATED); + SalvageExpeditionDuration = CVarDef.Create("salvage.expedition_duration", 660f, CVar.REPLICATED); /// /// Cooldown for missions. @@ -1810,6 +1887,13 @@ public static readonly CVarDef public static readonly CVarDef ReplayAutoRecordTempDir = CVarDef.Create("replay.auto_record_temp_dir", "", CVar.SERVERONLY); + /* + * Miscellaneous + */ + + public static readonly CVarDef GatewayGeneratorEnabled = + CVarDef.Create("gateway.generator_enabled", true); + /// DELTA-V CCVARS /* * Glimmer @@ -1834,6 +1918,5 @@ public static readonly CVarDef /// public static readonly CVarDef PsionicRollsEnabled = CVarDef.Create("psionics.rolls_enabled", true, CVar.SERVERONLY); - } } diff --git a/Content.Shared/Cabinet/ItemCabinetComponent.cs b/Content.Shared/Cabinet/ItemCabinetComponent.cs index 71367e8de6..dcc276e565 100644 --- a/Content.Shared/Cabinet/ItemCabinetComponent.cs +++ b/Content.Shared/Cabinet/ItemCabinetComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Cabinet; /// /// Used for entities that can be opened, closed, and can hold one item. E.g., fire extinguisher cabinets. /// -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true)] public sealed partial class ItemCabinetComponent : Component { /// diff --git a/Content.Shared/Cabinet/SharedItemCabinetSystem.cs b/Content.Shared/Cabinet/SharedItemCabinetSystem.cs index f2f03c1334..ca496814c7 100644 --- a/Content.Shared/Cabinet/SharedItemCabinetSystem.cs +++ b/Content.Shared/Cabinet/SharedItemCabinetSystem.cs @@ -3,6 +3,7 @@ using Content.Shared.Lock; using Content.Shared.Verbs; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -21,6 +22,7 @@ public override void Initialize() SubscribeLocalEvent(OnComponentInit); SubscribeLocalEvent(OnComponentRemove); SubscribeLocalEvent(OnComponentStartup); + SubscribeLocalEvent(OnComponentHandleState); SubscribeLocalEvent(OnActivateInWorld); SubscribeLocalEvent>(AddToggleOpenVerb); @@ -47,6 +49,11 @@ private void OnComponentStartup(EntityUid uid, ItemCabinetComponent cabinet, Com _itemSlots.SetLock(uid, cabinet.CabinetSlot, !cabinet.Opened); } + private void OnComponentHandleState(Entity ent, ref AfterAutoHandleStateEvent args) + { + UpdateAppearance(ent, ent); + } + protected virtual void UpdateAppearance(EntityUid uid, ItemCabinetComponent? cabinet = null) { // we don't fuck with appearance data, and instead just manually update the sprite on the client @@ -117,7 +124,7 @@ public void ToggleItemCabinet(EntityUid uid, EntityUid? user = null, ItemCabinet return; cabinet.Opened = !cabinet.Opened; - Dirty(cabinet); + Dirty(uid, cabinet); _itemSlots.SetLock(uid, cabinet.CabinetSlot, !cabinet.Opened); if (_timing.IsFirstTimePredicted) diff --git a/Content.Shared/Cargo/Prototypes/CargoBountyPrototype.cs b/Content.Shared/Cargo/Prototypes/CargoBountyPrototype.cs index e9c64ec990..89c1d153ac 100644 --- a/Content.Shared/Cargo/Prototypes/CargoBountyPrototype.cs +++ b/Content.Shared/Cargo/Prototypes/CargoBountyPrototype.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Cargo.Prototypes; /// to receive a monetary reward. /// [Prototype("cargoBounty"), Serializable, NetSerializable] -public sealed class CargoBountyPrototype : IPrototype +public sealed partial class CargoBountyPrototype : IPrototype { /// [IdDataField] diff --git a/Content.Shared/Cargo/Prototypes/CargoProductPrototype.cs b/Content.Shared/Cargo/Prototypes/CargoProductPrototype.cs index a2dc9b516d..5487618309 100644 --- a/Content.Shared/Cargo/Prototypes/CargoProductPrototype.cs +++ b/Content.Shared/Cargo/Prototypes/CargoProductPrototype.cs @@ -1,12 +1,11 @@ using Robust.Shared.Prototypes; -using Robust.Shared.Serialization; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; using Robust.Shared.Utility; namespace Content.Shared.Cargo.Prototypes { [Prototype("cargoProduct")] - public sealed class CargoProductPrototype : IPrototype + public sealed partial class CargoProductPrototype : IPrototype { [DataField("name")] private string _name = string.Empty; diff --git a/Content.Shared/Chasm/ChasmSystem.cs b/Content.Shared/Chasm/ChasmSystem.cs index 7353bd0e9c..4045a27078 100644 --- a/Content.Shared/Chasm/ChasmSystem.cs +++ b/Content.Shared/Chasm/ChasmSystem.cs @@ -2,6 +2,8 @@ using Content.Shared.Buckle.Components; using Content.Shared.Movement.Events; using Content.Shared.StepTrigger.Systems; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Network; using Robust.Shared.Physics.Components; using Robust.Shared.Timing; diff --git a/Content.Shared/Chat/MsgChatMessage.cs b/Content.Shared/Chat/MsgChatMessage.cs index 55a3a7342b..f7311d2dc8 100644 --- a/Content.Shared/Chat/MsgChatMessage.cs +++ b/Content.Shared/Chat/MsgChatMessage.cs @@ -57,7 +57,8 @@ public sealed class MsgChatMessage : NetMessage public override void ReadFromBuffer(NetIncomingMessage buffer, IRobustSerializer serializer) { var length = buffer.ReadVariableInt32(); - using var stream = buffer.ReadAlignedMemory(length); + using var stream = new MemoryStream(length); + buffer.ReadAlignedMemory(stream, length); serializer.DeserializeDirect(stream, out Message); } diff --git a/Content.Shared/Chat/Prototypes/AutoEmotePrototype.cs b/Content.Shared/Chat/Prototypes/AutoEmotePrototype.cs index bfa98fa243..ba818efb4d 100644 --- a/Content.Shared/Chat/Prototypes/AutoEmotePrototype.cs +++ b/Content.Shared/Chat/Prototypes/AutoEmotePrototype.cs @@ -1,10 +1,10 @@ -namespace Content.Shared.Chat.Prototypes; - using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +namespace Content.Shared.Chat.Prototypes; + [Prototype("autoEmote")] -public sealed class AutoEmotePrototype : IPrototype +public sealed partial class AutoEmotePrototype : IPrototype { /// [IdDataField] diff --git a/Content.Shared/Chat/Prototypes/EmotePrototype.cs b/Content.Shared/Chat/Prototypes/EmotePrototype.cs index d9d6a63441..08f209d28d 100644 --- a/Content.Shared/Chat/Prototypes/EmotePrototype.cs +++ b/Content.Shared/Chat/Prototypes/EmotePrototype.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Chat.Prototypes; /// Entities can activate emotes by chat input or code. /// [Prototype("emote")] -public sealed class EmotePrototype : IPrototype +public sealed partial class EmotePrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Shared/Chat/Prototypes/EmoteSoundsPrototype.cs b/Content.Shared/Chat/Prototypes/EmoteSoundsPrototype.cs index 769bc7b205..c9a78e7d6d 100644 --- a/Content.Shared/Chat/Prototypes/EmoteSoundsPrototype.cs +++ b/Content.Shared/Chat/Prototypes/EmoteSoundsPrototype.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Chat.Prototypes; /// Different entities may use different sounds collections. /// [Prototype("emoteSounds")] -public sealed class EmoteSoundsPrototype : IPrototype +public sealed partial class EmoteSoundsPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Shared/Chat/SharedChatSystem.cs b/Content.Shared/Chat/SharedChatSystem.cs index 454457fffd..4ff0f61fc5 100644 --- a/Content.Shared/Chat/SharedChatSystem.cs +++ b/Content.Shared/Chat/SharedChatSystem.cs @@ -1,3 +1,4 @@ +using System.Collections.Frozen; using Content.Shared.Popups; using Content.Shared.Radio; using Content.Shared.Speech; @@ -37,35 +38,26 @@ public abstract class SharedChatSystem : EntitySystem /// /// Cache of the keycodes for faster lookup. /// - private Dictionary _keyCodes = new(); + private FrozenDictionary _keyCodes = default!; public override void Initialize() { base.Initialize(); DebugTools.Assert(_prototypeManager.HasIndex(CommonChannel)); - _prototypeManager.PrototypesReloaded += OnPrototypeReload; + SubscribeLocalEvent(OnPrototypeReload); CacheRadios(); } - private void OnPrototypeReload(PrototypesReloadedEventArgs obj) + protected virtual void OnPrototypeReload(PrototypesReloadedEventArgs obj) { - if (obj.ByType.ContainsKey(typeof(RadioChannelPrototype))) + if (obj.WasModified()) CacheRadios(); } private void CacheRadios() { - _keyCodes.Clear(); - - foreach (var proto in _prototypeManager.EnumeratePrototypes()) - { - _keyCodes.Add(proto.KeyCode, proto); - } - } - - public override void Shutdown() - { - _prototypeManager.PrototypesReloaded -= OnPrototypeReload; + _keyCodes = _prototypeManager.EnumeratePrototypes() + .ToFrozenDictionary(x => x.KeyCode); } /// diff --git a/Content.Shared/Chat/TypingIndicator/TypingIndicatorPrototype.cs b/Content.Shared/Chat/TypingIndicator/TypingIndicatorPrototype.cs index 2cd114fde7..8cbfe7bb2e 100644 --- a/Content.Shared/Chat/TypingIndicator/TypingIndicatorPrototype.cs +++ b/Content.Shared/Chat/TypingIndicator/TypingIndicatorPrototype.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Chat.TypingIndicator; /// Prototype to store chat typing indicator visuals. /// [Prototype("typingIndicator")] -public sealed class TypingIndicatorPrototype : IPrototype +public sealed partial class TypingIndicatorPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Shared/Chemistry/Components/Solution.cs b/Content.Shared/Chemistry/Components/Solution.cs index 65fdcd62dd..ca597710d4 100644 --- a/Content.Shared/Chemistry/Components/Solution.cs +++ b/Content.Shared/Chemistry/Components/Solution.cs @@ -289,12 +289,24 @@ public FixedPoint2 GetReagentQuantity(ReagentId id) /// If you only want the volume of a single reagent, use /// [Pure] - public FixedPoint2 GetTotalPrototypeQuantity(string prototype) + public FixedPoint2 GetTotalPrototypeQuantity(params string[] prototypes) { var total = FixedPoint2.Zero; foreach (var (reagent, quantity) in Contents) { - if (reagent.Prototype == prototype) + if (prototypes.Contains(reagent.Prototype)) + total += quantity; + } + + return total; + } + + public FixedPoint2 GetTotalPrototypeQuantity(string id) + { + var total = FixedPoint2.Zero; + foreach (var (reagent, quantity) in Contents) + { + if (id == reagent.Prototype) total += quantity; } @@ -546,6 +558,34 @@ public Solution SplitSolutionWithout(FixedPoint2 toTake, params string[] exclude return sol; } + /// + /// Splits a solution without the specified reagent prototypes. + /// + public Solution SplitSolutionWithOnly(FixedPoint2 toTake, params string[] includedPrototypes) + { + // First remove the non-included prototypes + List excluded = new(); + for (var i = Contents.Count - 1; i >= 0; i--) + { + if (includedPrototypes.Contains(Contents[i].Reagent.Prototype)) + continue; + + excluded.Add(Contents[i]); + RemoveReagent(Contents[i]); + } + + // Then split the solution + var sol = SplitSolution(toTake); + + // Then re-add the excluded reagents to the original solution. + foreach (var reagent in excluded) + { + AddReagent(reagent); + } + + return sol; + } + public Solution SplitSolution(FixedPoint2 toTake) { if (toTake <= FixedPoint2.Zero) @@ -756,6 +796,44 @@ public Color GetColor(IPrototypeManager? protoMan) return GetColorWithout(protoMan); } + public Color GetColorWithOnly(IPrototypeManager? protoMan, params string[] included) + { + if (Volume == FixedPoint2.Zero) + { + return Color.Transparent; + } + + IoCManager.Resolve(ref protoMan); + + Color mixColor = default; + var runningTotalQuantity = FixedPoint2.New(0); + bool first = true; + + foreach (var (reagent, quantity) in Contents) + { + if (!included.Contains(reagent.Prototype)) + continue; + + runningTotalQuantity += quantity; + + if (!protoMan.TryIndex(reagent.Prototype, out ReagentPrototype? proto)) + { + continue; + } + + if (first) + { + first = false; + mixColor = proto.SubstanceColor; + continue; + } + + var interpolateValue = quantity.Float() / runningTotalQuantity.Float(); + mixColor = Color.InterpolateBetween(mixColor, proto.SubstanceColor, interpolateValue); + } + return mixColor; + } + #region Enumeration public IEnumerator GetEnumerator() diff --git a/Content.Shared/Chemistry/Components/SolutionContainerMixerComponent.cs b/Content.Shared/Chemistry/Components/SolutionContainerMixerComponent.cs new file mode 100644 index 0000000000..8e4b6f52d8 --- /dev/null +++ b/Content.Shared/Chemistry/Components/SolutionContainerMixerComponent.cs @@ -0,0 +1,44 @@ +using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Chemistry.Reaction; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Components; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Shared.Chemistry.Components; + +/// +/// This is used for an entity that uses to mix any container with a solution after a period of time. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(SharedSolutionContainerMixerSystem))] +public sealed partial class SolutionContainerMixerComponent : Component +{ + [DataField, ViewVariables(VVAccess.ReadWrite)] + public string ContainerId = "mixer"; + + [DataField, AutoNetworkedField] + public bool Mixing; + + /// + /// How long it takes for mixing to occurs. + /// + [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public TimeSpan MixDuration; + + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public TimeSpan MixTimeEnd; + + [DataField, AutoNetworkedField] + public SoundSpecifier? MixingSound; + + [DataField] + public Entity? MixingSoundEntity; +} + +[Serializable, NetSerializable] +public enum SolutionContainerMixerVisuals : byte +{ + Mixing +} diff --git a/Content.Shared/Chemistry/Dispenser/ReagentDispenserInventoryPrototype.cs b/Content.Shared/Chemistry/Dispenser/ReagentDispenserInventoryPrototype.cs index 8457816838..c362535e4f 100644 --- a/Content.Shared/Chemistry/Dispenser/ReagentDispenserInventoryPrototype.cs +++ b/Content.Shared/Chemistry/Dispenser/ReagentDispenserInventoryPrototype.cs @@ -12,7 +12,7 @@ namespace Content.Shared.Chemistry.Dispenser /// machines define their inventory. /// [Serializable, NetSerializable, Prototype("reagentDispenserInventory")] - public sealed class ReagentDispenserInventoryPrototype : IPrototype + public sealed partial class ReagentDispenserInventoryPrototype : IPrototype { // TODO use ReagentId [DataField("inventory", customTypeSerializer: typeof(PrototypeIdListSerializer))] diff --git a/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerMixerSystem.cs b/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerMixerSystem.cs new file mode 100644 index 0000000000..14c4560dd8 --- /dev/null +++ b/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerMixerSystem.cs @@ -0,0 +1,124 @@ +using Content.Shared.Chemistry.Components; +using Content.Shared.Chemistry.Reaction; +using Content.Shared.Interaction; +using Content.Shared.Popups; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Containers; +using Robust.Shared.Network; +using Robust.Shared.Timing; + +namespace Content.Shared.Chemistry.EntitySystems; + +/// +/// This handles +/// +public abstract class SharedSolutionContainerMixerSystem : EntitySystem +{ + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly INetManager _net = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SolutionContainerSystem _solution = default!; + + /// + public override void Initialize() + { + SubscribeLocalEvent(OnActivateInWorld); + SubscribeLocalEvent(OnRemoveAttempt); + } + + private void OnActivateInWorld(Entity entity, ref ActivateInWorldEvent args) + { + TryStartMix(entity, args.User); + } + + private void OnRemoveAttempt(Entity ent, ref ContainerIsRemovingAttemptEvent args) + { + if (args.Container.ID == ent.Comp.ContainerId && ent.Comp.Mixing) + args.Cancel(); + } + + protected virtual bool HasPower(Entity entity) + { + return true; + } + + public void TryStartMix(Entity entity, EntityUid? user) + { + var (uid, comp) = entity; + if (comp.Mixing) + return; + + if (!HasPower(entity)) + { + if (user != null) + _popup.PopupClient(Loc.GetString("solution-container-mixer-no-power"), entity, user.Value); + return; + } + + if (!_container.TryGetContainer(uid, comp.ContainerId, out var container) || container.Count == 0) + { + if (user != null) + _popup.PopupClient(Loc.GetString("solution-container-mixer-popup-nothing-to-mix"), entity, user.Value); + return; + } + + comp.Mixing = true; + if (_net.IsServer) + comp.MixingSoundEntity = _audio.PlayPvs(comp.MixingSound, entity, comp.MixingSound?.Params.WithLoop(true)); + comp.MixTimeEnd = _timing.CurTime + comp.MixDuration; + _appearance.SetData(entity, SolutionContainerMixerVisuals.Mixing, true); + Dirty(uid, comp); + } + + public void StopMix(Entity entity) + { + var (uid, comp) = entity; + if (!comp.Mixing) + return; + _audio.Stop(comp.MixingSoundEntity); + _appearance.SetData(entity, SolutionContainerMixerVisuals.Mixing, false); + comp.Mixing = false; + comp.MixingSoundEntity = null; + Dirty(uid, comp); + } + + public void FinishMix(Entity entity) + { + var (uid, comp) = entity; + if (!comp.Mixing) + return; + StopMix(entity); + + if (!TryComp(entity, out var reactionMixer) + || !_container.TryGetContainer(uid, comp.ContainerId, out var container)) + return; + + foreach (var ent in container.ContainedEntities) + { + if (!_solution.TryGetFitsInDispenser(ent, out var solution)) + continue; + + _solution.UpdateChemicals(ent, solution, true, reactionMixer); + } + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var comp)) + { + if (!comp.Mixing) + continue; + + if (_timing.CurTime < comp.MixTimeEnd) + continue; + + FinishMix((uid, comp)); + } + } +} diff --git a/Content.Shared/Chemistry/EntitySystems/SolutionContainerSystem.cs b/Content.Shared/Chemistry/EntitySystems/SolutionContainerSystem.cs index a5c35b5e6c..04ad17869f 100644 --- a/Content.Shared/Chemistry/EntitySystems/SolutionContainerSystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/SolutionContainerSystem.cs @@ -174,10 +174,19 @@ private void OnExamineSolution(EntityUid uid, ExaminableSolutionComponent examin : "shared-solution-container-component-on-examine-worded-amount-multiple-reagents")), ("desc", primary.LocalizedPhysicalDescription))); + + var reagentPrototypes = solution.GetReagentPrototypes(_prototypeManager); + + // Sort the reagents by amount, descending then alphabetically + var sortedReagentPrototypes = reagentPrototypes + .OrderByDescending(pair => pair.Value.Value) + .ThenBy(pair => pair.Key.LocalizedName); + // Add descriptions of immediately recognizable reagents, like water or beer var recognized = new List(); - foreach (var proto in solution.GetReagentPrototypes(_prototypeManager).Keys) + foreach (var keyValuePair in sortedReagentPrototypes) { + var proto = keyValuePair.Key; if (!proto.Recognizable) { continue; @@ -365,6 +374,22 @@ public bool TryAddReagent(EntityUid targetUid, Solution targetSolution, ReagentQ return acceptedQuantity == reagentQuantity.Quantity; } + /// + /// Adds reagent of an Id to the container. + /// + /// + /// Container to which we are adding reagent + /// The Id of the reagent to add. + /// The amount of reagent to add. + /// If all the reagent could be added. + [PublicAPI] + public bool TryAddReagent(EntityUid targetUid, Solution targetSolution, string prototype, FixedPoint2 quantity, + float? temperature = null, ReagentData? data = null) + { + var reagent = new ReagentQuantity(prototype, quantity, data); + return TryAddReagent(targetUid, targetSolution, reagent, out _, temperature); + } + /// /// Adds reagent of an Id to the container. /// diff --git a/Content.Shared/Chemistry/Reaction/ChemicalReactionSystem.cs b/Content.Shared/Chemistry/Reaction/ChemicalReactionSystem.cs index ed53b78466..05e176da5b 100644 --- a/Content.Shared/Chemistry/Reaction/ChemicalReactionSystem.cs +++ b/Content.Shared/Chemistry/Reaction/ChemicalReactionSystem.cs @@ -1,10 +1,14 @@ +using System.Collections.Frozen; using System.Linq; using Content.Shared.Administration.Logs; using Content.Shared.Chemistry.Components; using Content.Shared.Chemistry.Reagent; using Content.Shared.Database; using Content.Shared.FixedPoint; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Prototypes; +using Robust.Shared.Utility; namespace Content.Shared.Chemistry.Reaction { @@ -20,23 +24,22 @@ public sealed class ChemicalReactionSystem : EntitySystem [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; /// - /// A cache of all existant chemical reactions indexed by one of their - /// required reactants. + /// A cache of all reactions indexed by at most ONE of their required reactants. + /// I.e., even if a reaction has more than one reagent, it will only ever appear once in this dictionary. /// - private IDictionary> _reactions = default!; + private FrozenDictionary> _reactionsSingle = default!; + + /// + /// A cache of all reactions indexed by one of their required reactants. + /// + private FrozenDictionary> _reactions = default!; public override void Initialize() { base.Initialize(); InitializeReactionCache(); - _prototypeManager.PrototypesReloaded += OnPrototypesReloaded; - } - - public override void Shutdown() - { - base.Shutdown(); - _prototypeManager.PrototypesReloaded -= OnPrototypesReloaded; + SubscribeLocalEvent(OnPrototypesReloaded); } /// @@ -44,34 +47,27 @@ public override void Shutdown() /// private void InitializeReactionCache() { - _reactions = new Dictionary>(); - - var reactions = _prototypeManager.EnumeratePrototypes(); - foreach(var reaction in reactions) + // Construct single-reaction dictionary. + var dict = new Dictionary>(); + foreach(var reaction in _prototypeManager.EnumeratePrototypes()) { - CacheReaction(reaction); + // For this dictionary we only need to cache based on the first reagent. + var reagent = reaction.Reactants.Keys.First(); + var list = dict.GetOrNew(reagent); + list.Add(reaction); } - } + _reactionsSingle = dict.ToFrozenDictionary(); - /// - /// Caches a reaction by its first required reagent. - /// Used to build the reaction cache. - /// - /// A reaction prototype to cache. - private void CacheReaction(ReactionPrototype reaction) - { - var reagents = reaction.Reactants.Keys; - foreach(var reagent in reagents) + dict.Clear(); + foreach(var reaction in _prototypeManager.EnumeratePrototypes()) { - if(!_reactions.TryGetValue(reagent, out var cache)) + foreach (var reagent in reaction.Reactants.Keys) { - cache = new List(); - _reactions.Add(reagent, cache); + var list = dict.GetOrNew(reagent); + list.Add(reaction); } - - cache.Add(reaction); - return; // Only need to cache based on the first reagent. } + _reactions = dict.ToFrozenDictionary(); } /// @@ -80,20 +76,8 @@ private void CacheReaction(ReactionPrototype reaction) /// The set of modified prototypes. private void OnPrototypesReloaded(PrototypesReloadedEventArgs eventArgs) { - if (!eventArgs.ByType.TryGetValue(typeof(ReactionPrototype), out var set)) - return; - - foreach (var (reactant, cache) in _reactions) - { - cache.RemoveAll((reaction) => set.Modified.ContainsKey(reaction.ID)); - if (cache.Count == 0) - _reactions.Remove(reactant); - } - - foreach (var prototype in set.Modified.Values) - { - CacheReaction((ReactionPrototype) prototype); - } + if (eventArgs.WasModified()) + InitializeReactionCache(); } /// @@ -110,7 +94,8 @@ private bool CanReact(Solution solution, ReactionPrototype reaction, EntityUid o { lowestUnitReactions = FixedPoint2.Zero; return false; - } else if(solution.Temperature > reaction.MaximumTemperature) + } + if (solution.Temperature > reaction.MaximumTemperature) { lowestUnitReactions = FixedPoint2.Zero; return false; @@ -124,7 +109,7 @@ private bool CanReact(Solution solution, ReactionPrototype reaction, EntityUid o } var attempt = new ReactionAttemptEvent(reaction, solution); - RaiseLocalEvent(owner, attempt, false); + RaiseLocalEvent(owner, attempt); if (attempt.Cancelled) { lowestUnitReactions = FixedPoint2.Zero; @@ -282,7 +267,7 @@ public void FullyReactSolution(Solution solution, EntityUid owner, FixedPoint2 m SortedSet reactions = new(); foreach (var reactant in solution.Contents) { - if (_reactions.TryGetValue(reactant.Reagent.Prototype, out var reactantReactions)) + if (_reactionsSingle.TryGetValue(reactant.Reagent.Prototype, out var reactantReactions)) reactions.UnionWith(reactantReactions); } @@ -294,7 +279,7 @@ public void FullyReactSolution(Solution solution, EntityUid owner, FixedPoint2 m return; } - Logger.Error($"{nameof(Solution)} {owner} could not finish reacting in under {MaxReactionIterations} loops."); + Log.Error($"{nameof(Solution)} {owner} could not finish reacting in under {MaxReactionIterations} loops."); } } diff --git a/Content.Shared/Chemistry/Reaction/MixingCategoryPrototype.cs b/Content.Shared/Chemistry/Reaction/MixingCategoryPrototype.cs new file mode 100644 index 0000000000..2456fbf733 --- /dev/null +++ b/Content.Shared/Chemistry/Reaction/MixingCategoryPrototype.cs @@ -0,0 +1,27 @@ +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; + +namespace Content.Shared.Chemistry.Reaction; + +/// +/// This is a prototype for a method of chemical mixing, to be used by +/// +[Prototype("mixingCategory")] +public sealed partial class MixingCategoryPrototype : IPrototype +{ + /// + [IdDataField] + public string ID { get; } = default!; + + /// + /// A locale string used in the guidebook to describe this mixing category. + /// + [DataField(required: true)] + public LocId VerbText; + + /// + /// An icon used to represent this mixing category in the guidebook. + /// + [DataField(required: true)] + public SpriteSpecifier Icon = default!; +} diff --git a/Content.Shared/Chemistry/Reaction/ReactionMixerComponent.cs b/Content.Shared/Chemistry/Reaction/ReactionMixerComponent.cs index 6969723953..a88bf02bf8 100644 --- a/Content.Shared/Chemistry/Reaction/ReactionMixerComponent.cs +++ b/Content.Shared/Chemistry/Reaction/ReactionMixerComponent.cs @@ -1,4 +1,5 @@ using Content.Shared.Chemistry.Components; +using Robust.Shared.Prototypes; namespace Content.Shared.Chemistry.Reaction; @@ -10,7 +11,7 @@ public sealed partial class ReactionMixerComponent : Component /// [ViewVariables] [DataField] - public List ReactionTypes = default!; + public List> ReactionTypes = default!; /// /// A string which identifies the string to be sent when successfully mixing a solution diff --git a/Content.Shared/Chemistry/Reaction/ReactionPrototype.cs b/Content.Shared/Chemistry/Reaction/ReactionPrototype.cs index 2ad0ff5e1d..7541784905 100644 --- a/Content.Shared/Chemistry/Reaction/ReactionPrototype.cs +++ b/Content.Shared/Chemistry/Reaction/ReactionPrototype.cs @@ -11,7 +11,7 @@ namespace Content.Shared.Chemistry.Reaction /// Prototype for chemical reaction definitions /// [Prototype("reaction")] - public sealed class ReactionPrototype : IPrototype, IComparable + public sealed partial class ReactionPrototype : IPrototype, IComparable { [ViewVariables] [IdDataField] @@ -48,7 +48,7 @@ public sealed class ReactionPrototype : IPrototype, IComparable [DataField("requiredMixerCategories")] - public List? MixingCategories = null; + public List>? MixingCategories; /// /// Reagents created when the reaction occurs. diff --git a/Content.Shared/Chemistry/Reaction/ReactiveGroupPrototype.cs b/Content.Shared/Chemistry/Reaction/ReactiveGroupPrototype.cs index 3293536815..906c01467c 100644 --- a/Content.Shared/Chemistry/Reaction/ReactiveGroupPrototype.cs +++ b/Content.Shared/Chemistry/Reaction/ReactiveGroupPrototype.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Chemistry.Reaction; [Prototype("reactiveGroup")] -public sealed class ReactiveGroupPrototype : IPrototype +public sealed partial class ReactiveGroupPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs b/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs index 0f24a36339..1603d3d647 100644 --- a/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs +++ b/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs @@ -27,30 +27,30 @@ public sealed partial class ReagentPrototype : IPrototype, IInheritingPrototype [IdDataField] public string ID { get; private set; } = default!; - [DataField("name", required: true)] - private string Name { get; set; } = default!; + [DataField(required: true)] + private LocId Name { get; set; } [ViewVariables(VVAccess.ReadOnly)] public string LocalizedName => Loc.GetString(Name); - [DataField("group")] + [DataField] public string Group { get; private set; } = "Unknown"; - [ParentDataFieldAttribute(typeof(AbstractPrototypeIdArraySerializer))] + [ParentDataField(typeof(AbstractPrototypeIdArraySerializer))] public string[]? Parents { get; private set; } [NeverPushInheritance] - [AbstractDataFieldAttribute] + [AbstractDataField] public bool Abstract { get; private set; } [DataField("desc", required: true)] - private string Description { get; set; } = default!; + private LocId Description { get; set; } [ViewVariables(VVAccess.ReadOnly)] public string LocalizedDescription => Loc.GetString(Description); [DataField("physicalDesc", required: true)] - private string PhysicalDescription { get; set; } = default!; + private LocId PhysicalDescription { get; set; } = default!; [ViewVariables(VVAccess.ReadOnly)] public string LocalizedPhysicalDescription => Loc.GetString(PhysicalDescription); @@ -58,16 +58,16 @@ public sealed partial class ReagentPrototype : IPrototype, IInheritingPrototype /// /// Is this reagent recognizable to the average spaceman (water, welding fuel, ketchup, etc)? /// - [DataField("recognizable")] - public bool Recognizable = false; + [DataField] + public bool Recognizable; - [DataField("flavor", customTypeSerializer:typeof(PrototypeIdSerializer))] - public string? Flavor; + [DataField] + public ProtoId? Flavor; /// /// There must be at least this much quantity in a solution to be tasted. /// - [DataField("flavorMinimum")] + [DataField] public FixedPoint2 FlavorMinimum = FixedPoint2.New(0.1f); [DataField("color")] @@ -77,47 +77,48 @@ public sealed partial class ReagentPrototype : IPrototype, IInheritingPrototype /// The specific heat of the reagent. /// How much energy it takes to heat one unit of this reagent by one Kelvin. /// - [DataField("specificHeat")] + [DataField] public float SpecificHeat { get; private set; } = 1.0f; - [DataField("boilingPoint")] + [DataField] public float? BoilingPoint { get; private set; } - [DataField("meltingPoint")] + [DataField] public float? MeltingPoint { get; private set; } - [DataField("metamorphicSprite")] + [DataField] public SpriteSpecifier? MetamorphicSprite { get; private set; } = null; /// /// If this reagent is part of a puddle is it slippery. /// - [DataField("slippery")] - public bool Slippery = false; + [DataField] + public bool Slippery; /// /// How much reagent slows entities down if it's part of a puddle. /// 0 - no slowdown; 1 - can't move. /// - [DataField("viscosity")] - public float Viscosity = 0; + [DataField] + public float Viscosity; - [DataField("metabolisms", serverOnly: true, customTypeSerializer: typeof(PrototypeIdDictionarySerializer))] - public Dictionary? Metabolisms = null; + [DataField(serverOnly: true)] + public Dictionary, ReagentEffectsEntry>? Metabolisms; - [DataField("reactiveEffects", serverOnly: true, customTypeSerializer: typeof(PrototypeIdDictionarySerializer))] - public Dictionary? ReactiveEffects = null; + [DataField(serverOnly: true)] + public Dictionary, ReactiveReagentEffectEntry>? ReactiveEffects; - [DataField("tileReactions", serverOnly: true)] + [DataField(serverOnly: true)] public List TileReactions = new(0); [DataField("plantMetabolism", serverOnly: true)] public List PlantMetabolisms = new(0); - [DataField("pricePerUnit")] public float PricePerUnit; + [DataField] + public float PricePerUnit; // TODO: Pick the highest reagent for sounds and add sticky to cola, juice, etc. - [DataField("footstepSound")] + [DataField] public SoundSpecifier FootstepSound = new SoundCollectionSpecifier("FootstepWater"); public FixedPoint2 ReactionTile(TileRef tile, FixedPoint2 reactVolume) @@ -171,7 +172,7 @@ public struct ReagentGuideEntry { public string ReagentPrototype; - public Dictionary? GuideEntries; + public Dictionary, ReagentEffectsGuideEntry>? GuideEntries; public ReagentGuideEntry(ReagentPrototype proto, IPrototypeManager prototype, IEntitySystemManager entSys) { diff --git a/Content.Shared/Climbing/Systems/BonkSystem.cs b/Content.Shared/Climbing/Systems/BonkSystem.cs index 6ded524b19..5eff90b09d 100644 --- a/Content.Shared/Climbing/Systems/BonkSystem.cs +++ b/Content.Shared/Climbing/Systems/BonkSystem.cs @@ -3,11 +3,14 @@ using Content.Shared.Damage; using Content.Shared.DoAfter; using Content.Shared.DragDrop; +using Content.Shared.Hands.Components; using Content.Shared.IdentityManagement; using Content.Shared.Interaction; using Content.Shared.Interaction.Components; using Content.Shared.Popups; using Content.Shared.Stunnable; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; using Robust.Shared.Player; using Robust.Shared.Serialization; @@ -33,7 +36,7 @@ public override void Initialize() private void OnBonkDoAfter(EntityUid uid, Components.BonkableComponent component, BonkDoAfterEvent args) { - if (args.Handled || args.Cancelled || args.Args.Target == null) + if (args.Handled || args.Cancelled || args.Args.Target == null || args.Args.Target != args.Args.User) return; TryBonk(args.Args.User, uid, component); @@ -74,7 +77,7 @@ public bool TryBonk(EntityUid user, EntityUid bonkableUid, Components.BonkableCo private void OnDragDrop(EntityUid uid, Components.BonkableComponent component, ref DragDropTargetEvent args) { - if (args.Handled || !HasComp(args.Dragged)) + if (args.Handled || !HasComp(args.Dragged) || !HasComp(args.User)) return; var doAfterArgs = new DoAfterArgs(EntityManager, args.Dragged, component.BonkDelay, new BonkDoAfterEvent(), uid, target: uid) diff --git a/Content.Shared/Climbing/Systems/ClimbSystem.cs b/Content.Shared/Climbing/Systems/ClimbSystem.cs index 46255e4337..081fb7fd8c 100644 --- a/Content.Shared/Climbing/Systems/ClimbSystem.cs +++ b/Content.Shared/Climbing/Systems/ClimbSystem.cs @@ -18,6 +18,7 @@ using Content.Shared.Popups; using Content.Shared.Stunnable; using Content.Shared.Verbs; +using Robust.Shared.Audio.Systems; using Robust.Shared.Physics; using Robust.Shared.Physics.Collision.Shapes; using Robust.Shared.Physics.Components; @@ -153,7 +154,7 @@ private void OnParentChange(EntityUid uid, ClimbingComponent component, ref EntP { if (component.NextTransition != null) { - StopClimb(uid, component); + FinishTransition(uid, component); } } @@ -162,11 +163,16 @@ private void OnCanDragDropOn(EntityUid uid, ClimbableComponent component, ref Ca if (args.Handled) return; + var canVault = args.User == args.Dragged ? CanVault(component, args.User, uid, out _) : CanVault(component, args.User, args.Dragged, uid, out _); args.CanDrop = canVault; + + if (!HasComp(args.User)) + args.CanDrop = false; + args.Handled = true; } @@ -188,9 +194,7 @@ private void AddClimbableVerb(EntityUid uid, ClimbableComponent component, GetVe private void OnClimbableDragDrop(EntityUid uid, ClimbableComponent component, ref DragDropTargetEvent args) { - // definitely a better way to check if two entities are equal - // but don't have computer access and i have to do this without syntax - if (args.Handled || args.User != args.Dragged && !HasComp(args.User)) + if (args.Handled) return; TryClimb(args.User, args.Dragged, uid, out _, component); @@ -354,13 +358,14 @@ private void OnClimbEndCollide(EntityUid uid, ClimbingComponent component, ref E return; } - foreach (var fixture in args.OurFixture.Contacts.Keys) + foreach (var otherFixture in args.OurFixture.Contacts.Keys) { - if (fixture == args.OtherFixture) + // If it's the other fixture then ignore em + if (otherFixture == args.OtherFixture) continue; // If still colliding with a climbable, do not stop climbing - if (HasComp(args.OtherEntity)) + if (HasComp(otherFixture.Owner)) return; } diff --git a/Content.Shared/Clothing/ClothingEvents.cs b/Content.Shared/Clothing/ClothingEvents.cs index 028537f8b2..bb31c568e0 100644 --- a/Content.Shared/Clothing/ClothingEvents.cs +++ b/Content.Shared/Clothing/ClothingEvents.cs @@ -59,3 +59,15 @@ public EquipmentVisualsUpdatedEvent(EntityUid equipee, string slot, HashSet +/// Event raised on the mask entity when it is toggled. +/// +[ByRefEvent] +public readonly record struct ItemMaskToggledEvent(EntityUid Wearer, bool IsToggled, bool IsEquip); + +/// +/// Event raised on the entity wearing the mask when it is toggled. +/// +[ByRefEvent] +public readonly record struct WearerMaskToggledEvent(bool IsToggled); diff --git a/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs b/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs index 74b5369aa3..66ff5c624a 100644 --- a/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs +++ b/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs @@ -1,6 +1,11 @@ +using Content.Shared.Actions; +using Content.Shared.Clothing.Components; using Content.Shared.Examine; +using Content.Shared.IdentityManagement; using Content.Shared.Inventory; using Content.Shared.Movement.Systems; +using Content.Shared.PowerCell; +using Content.Shared.Toggleable; using Content.Shared.Verbs; using Robust.Shared.Containers; using Robust.Shared.GameStates; @@ -10,9 +15,13 @@ namespace Content.Shared.Clothing; public sealed class ClothingSpeedModifierSystem : EntitySystem { - [Dependency] private readonly MovementSpeedModifierSystem _movementSpeed = default!; + [Dependency] private readonly SharedActionsSystem _actions = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly ClothingSpeedModifierSystem _clothingSpeedModifier = default!; [Dependency] private readonly SharedContainerSystem _container = default!; [Dependency] private readonly ExamineSystemShared _examine = default!; + [Dependency] private readonly MovementSpeedModifierSystem _movementSpeed = default!; + [Dependency] private readonly SharedPowerCellSystem _powerCell = default!; public override void Initialize() { @@ -22,6 +31,12 @@ public override void Initialize() SubscribeLocalEvent(OnHandleState); SubscribeLocalEvent>(OnRefreshMoveSpeed); SubscribeLocalEvent>(OnClothingVerbExamine); + + SubscribeLocalEvent>(AddToggleVerb); + SubscribeLocalEvent(OnGetActions); + SubscribeLocalEvent(OnToggleSpeed); + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnPowerCellSlotEmpty); } // Public API @@ -34,7 +49,7 @@ public void SetClothingSpeedModifierEnabled(EntityUid uid, bool enabled, Clothin if (component.Enabled != enabled) { component.Enabled = enabled; - Dirty(component); + Dirty(uid, component); // inventory system will automatically hook into the event raised by this and update accordingly if (_container.TryGetContainingContainer(uid, out var container)) @@ -126,4 +141,61 @@ private void OnClothingVerbExamine(EntityUid uid, ClothingSpeedModifierComponent _examine.AddDetailedExamineVerb(args, component, msg, Loc.GetString("clothing-speed-examinable-verb-text"), "/Textures/Interface/VerbIcons/outfit.svg.192dpi.png", Loc.GetString("clothing-speed-examinable-verb-message")); } + + private void OnMapInit(Entity uid, ref MapInitEvent args) + { + _actions.AddAction(uid, ref uid.Comp.ToggleActionEntity, uid.Comp.ToggleAction); + } + + private void OnToggleSpeed(Entity uid, ref ToggleClothingSpeedEvent args) + { + if (args.Handled) + return; + + args.Handled = true; + SetSpeedToggleEnabled(uid, !uid.Comp.Enabled, args.Performer); + } + + private void SetSpeedToggleEnabled(Entity uid, bool value, EntityUid? user) + { + if (uid.Comp.Enabled == value) + return; + + TryComp(uid, out var draw); + if (value && !_powerCell.HasDrawCharge(uid, draw, user: user)) + return; + + uid.Comp.Enabled = value; + + _appearance.SetData(uid, ToggleVisuals.Toggled, uid.Comp.Enabled); + _actions.SetToggled(uid.Comp.ToggleActionEntity, uid.Comp.Enabled); + _clothingSpeedModifier.SetClothingSpeedModifierEnabled(uid.Owner, uid.Comp.Enabled); + _powerCell.SetPowerCellDrawEnabled(uid, uid.Comp.Enabled, draw); + Dirty(uid, uid.Comp); + } + + private void AddToggleVerb(Entity uid, ref GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract) + return; + + var user = args.User; + ActivationVerb verb = new() + { + Text = Loc.GetString("toggle-clothing-verb-text", + ("entity", Identity.Entity(uid, EntityManager))), + Act = () => SetSpeedToggleEnabled(uid, !uid.Comp.Enabled, user) + }; + args.Verbs.Add(verb); + } + + private void OnGetActions(Entity uid, ref GetItemActionsEvent args) + { + args.AddAction(ref uid.Comp.ToggleActionEntity, uid.Comp.ToggleAction); + } + + private void OnPowerCellSlotEmpty(Entity uid, ref PowerCellSlotEmptyEvent args) + { + SetSpeedToggleEnabled(uid, false, null); + } } diff --git a/Content.Shared/Clothing/Components/AttachedClothingComponent.cs b/Content.Shared/Clothing/Components/AttachedClothingComponent.cs index 2e3b965f97..c52c875952 100644 --- a/Content.Shared/Clothing/Components/AttachedClothingComponent.cs +++ b/Content.Shared/Clothing/Components/AttachedClothingComponent.cs @@ -1,4 +1,5 @@ using Content.Shared.Clothing.EntitySystems; +using Robust.Shared.GameStates; namespace Content.Shared.Clothing.Components; @@ -9,12 +10,12 @@ namespace Content.Shared.Clothing.Components; /// hardsuit helmets. /// [Access(typeof(ToggleableClothingSystem))] -[RegisterComponent] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class AttachedClothingComponent : Component { /// /// The Id of the piece of clothing that this entity belongs to. /// - [DataField("AttachedUid")] - public EntityUid AttachedUid = default!; + [DataField, AutoNetworkedField] + public EntityUid AttachedUid; } diff --git a/Content.Shared/Clothing/Components/MaskComponent.cs b/Content.Shared/Clothing/Components/MaskComponent.cs new file mode 100644 index 0000000000..e645524da7 --- /dev/null +++ b/Content.Shared/Clothing/Components/MaskComponent.cs @@ -0,0 +1,22 @@ +using Content.Shared.Clothing.EntitySystems; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Clothing.Components; + +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(MaskSystem))] +public sealed partial class MaskComponent : Component +{ + [DataField, AutoNetworkedField] + public EntProtoId ToggleAction = "ActionToggleMask"; + + /// + /// This mask can be toggled (pulled up/down) + /// + [DataField, AutoNetworkedField] + public EntityUid? ToggleActionEntity; + + [DataField, AutoNetworkedField] + public bool IsToggled; +} diff --git a/Content.Shared/Clothing/Components/SkatesComponent.cs b/Content.Shared/Clothing/Components/SkatesComponent.cs new file mode 100644 index 0000000000..04b4c722ec --- /dev/null +++ b/Content.Shared/Clothing/Components/SkatesComponent.cs @@ -0,0 +1,69 @@ +using Robust.Shared.GameStates; +using Content.Shared.Clothing.EntitySystems; + +namespace Content.Shared.Clothing; + +[RegisterComponent] +[NetworkedComponent] +[Access(typeof(SkatesSystem))] +public sealed partial class SkatesComponent : Component +{ + /// + /// the levels of friction the wearer is subected to, higher the number the more friction. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float Friction = 2.5f; + + /// + /// Determines the turning ability of the wearer, Higher the number the less control of their turning ability. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float? FrictionNoInput = 2.5f; + + /// + /// Sets the speed in which the wearer accelerates to full speed, higher the number the quicker the acceleration. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float Acceleration = 5f; + + /// + /// The minimum speed the wearer needs to be traveling to take damage from collision. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float MinimumSpeed = 3f; + + /// + /// The length of time the wearer is stunned for on collision. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float StunSeconds = 3f; + + + /// + /// The time duration before another collision can take place. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float DamageCooldown = 2f; + + /// + /// The damage per increment of speed on collision. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float SpeedDamage = 1f; + + + /// + /// Defaults for MinimumSpeed, StunSeconds, DamageCooldown and SpeedDamage. + /// + [ViewVariables] + public float DefaultMinimumSpeed = 20f; + + [ViewVariables] + public float DefaultStunSeconds = 1f; + + [ViewVariables] + public float DefaultDamageCooldown = 2f; + + [ViewVariables] + public float DefaultSpeedDamage = 0.5f; +} diff --git a/Content.Shared/Clothing/Components/ToggleClothingSpeedComponent.cs b/Content.Shared/Clothing/Components/ToggleClothingSpeedComponent.cs new file mode 100644 index 0000000000..90b2d7322e --- /dev/null +++ b/Content.Shared/Clothing/Components/ToggleClothingSpeedComponent.cs @@ -0,0 +1,35 @@ +using Content.Shared.Actions; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Clothing.Components; + +/// +/// This is used for a clothing item that gives a speed modification that is toggleable. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(ClothingSpeedModifierSystem)), AutoGenerateComponentState] +public sealed partial class ToggleClothingSpeedComponent : Component +{ + /// + /// The action for toggling the clothing. + /// + [DataField] + public EntProtoId ToggleAction = "ActionToggleSpeedBoots"; + + /// + /// The action entity + /// + [DataField, AutoNetworkedField] + public EntityUid? ToggleActionEntity; + + /// + /// The state of the toggle. + /// + [DataField, AutoNetworkedField] + public bool Enabled; +} + +public sealed partial class ToggleClothingSpeedEvent : InstantActionEvent +{ + +} diff --git a/Content.Shared/Clothing/Components/ToggleableClothingComponent.cs b/Content.Shared/Clothing/Components/ToggleableClothingComponent.cs index b87cd3fee5..3053efe89a 100644 --- a/Content.Shared/Clothing/Components/ToggleableClothingComponent.cs +++ b/Content.Shared/Clothing/Components/ToggleableClothingComponent.cs @@ -1,17 +1,17 @@ using Content.Shared.Clothing.EntitySystems; using Content.Shared.Inventory; using Robust.Shared.Containers; +using Robust.Shared.GameStates; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.Clothing.Components; /// -/// This component gives an item an action that will equip or un-equip some clothing. Intended for use with -/// hardsuits and hardsuit helmets. +/// This component gives an item an action that will equip or un-equip some clothing e.g. hardsuits and hardsuit helmets. /// [Access(typeof(ToggleableClothingSystem))] -[RegisterComponent] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class ToggleableClothingComponent : Component { public const string DefaultClothingContainerId = "toggleable-clothing"; @@ -19,35 +19,35 @@ public sealed partial class ToggleableClothingComponent : Component /// /// Action used to toggle the clothing on or off. /// - [DataField("action", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string Action = "ActionToggleSuitPiece"; + [DataField, AutoNetworkedField] + public EntProtoId Action = "ActionToggleSuitPiece"; - [DataField("actionEntity")] + [DataField, AutoNetworkedField] public EntityUid? ActionEntity; /// /// Default clothing entity prototype to spawn into the clothing container. /// - [DataField("clothingPrototype", required: true, customTypeSerializer:typeof(PrototypeIdSerializer))] - public string ClothingPrototype = default!; + [DataField(required: true), AutoNetworkedField] + public EntProtoId ClothingPrototype = default!; /// /// The inventory slot that the clothing is equipped to. /// [ViewVariables(VVAccess.ReadWrite)] - [DataField("slot")] + [DataField, AutoNetworkedField] public string Slot = "head"; /// /// The inventory slot flags required for this component to function. /// - [DataField("requiredSlot")] + [DataField("requiredSlot"), AutoNetworkedField] public SlotFlags RequiredFlags = SlotFlags.OUTERCLOTHING; /// /// The container that the clothing is stored in when not equipped. /// - [DataField("containerId")] + [DataField, AutoNetworkedField] public string ContainerId = DefaultClothingContainerId; [ViewVariables] @@ -57,18 +57,18 @@ public sealed partial class ToggleableClothingComponent : Component /// The Id of the piece of clothing that belongs to this component. Required for map-saving if the clothing is /// currently not inside of the container. /// - [DataField("clothingUid")] + [DataField, AutoNetworkedField] public EntityUid? ClothingUid; /// /// Time it takes for this clothing to be toggled via the stripping menu verbs. Null prevents the verb from even showing up. /// - [DataField("stripDelay")] + [DataField, AutoNetworkedField] public TimeSpan? StripDelay = TimeSpan.FromSeconds(3); /// /// Text shown in the toggle-clothing verb. Defaults to using the name of the action. /// - [DataField("verbText")] + [DataField, AutoNetworkedField] public string? VerbText; } diff --git a/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs index 1c69f1227c..9aa0158088 100644 --- a/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs @@ -25,6 +25,7 @@ public override void Initialize() SubscribeLocalEvent(OnHandleState); SubscribeLocalEvent(OnGotEquipped); SubscribeLocalEvent(OnGotUnequipped); + SubscribeLocalEvent(OnMaskToggled); } protected virtual void OnGotEquipped(EntityUid uid, ClothingComponent component, GotEquippedEvent args) @@ -52,6 +53,12 @@ private void OnHandleState(EntityUid uid, ClothingComponent component, ref Compo SetEquippedPrefix(uid, state.EquippedPrefix, component); } + 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 ? "toggled" : null, ent); + } + #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 new file mode 100644 index 0000000000..6c135e1a07 --- /dev/null +++ b/Content.Shared/Clothing/EntitySystems/MaskSystem.cs @@ -0,0 +1,73 @@ +using Content.Shared.Actions; +using Content.Shared.Clothing.Components; +using Content.Shared.Inventory; +using Content.Shared.Inventory.Events; +using Content.Shared.Popups; +using Robust.Shared.Timing; + +namespace Content.Shared.Clothing.EntitySystems; + +public sealed class MaskSystem : EntitySystem +{ + [Dependency] private readonly SharedActionsSystem _actionSystem = default!; + [Dependency] private readonly InventorySystem _inventorySystem = default!; + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + [Dependency] private readonly IGameTiming _timing = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnToggleMask); + SubscribeLocalEvent(OnGetActions); + SubscribeLocalEvent(OnGotUnequipped); + } + + private void OnGetActions(EntityUid uid, MaskComponent component, GetItemActionsEvent args) + { + if (!args.InHands) + args.AddAction(ref component.ToggleActionEntity, component.ToggleAction); + } + + private void OnToggleMask(Entity ent, ref ToggleMaskEvent args) + { + var (uid, mask) = ent; + if (mask.ToggleActionEntity == null || !_timing.IsFirstTimePredicted) + return; + + if (!_inventorySystem.TryGetSlotEntity(args.Performer, "mask", out var existing) || !uid.Equals(existing)) + 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); + + ToggleMaskComponents(uid, mask, args.Performer); + } + + // 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) + return; + + mask.IsToggled = false; + Dirty(uid, mask); + _actionSystem.SetToggled(mask.ToggleActionEntity, mask.IsToggled); + + ToggleMaskComponents(uid, mask, args.Equipee, true); + } + + private void ToggleMaskComponents(EntityUid uid, MaskComponent mask, EntityUid wearer, bool isEquip = false) + { + var maskEv = new ItemMaskToggledEvent(wearer, mask.IsToggled, isEquip); + RaiseLocalEvent(uid, ref maskEv); + + var wearerEv = new WearerMaskToggledEvent(mask.IsToggled); + RaiseLocalEvent(uid, ref wearerEv); + } +} diff --git a/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs index beac22270c..a447a54df1 100644 --- a/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs @@ -1,4 +1,5 @@ -using Content.Shared.Clothing.Components; +using Content.Shared.Access.Components; +using Content.Shared.Clothing.Components; using Content.Shared.Inventory; using Content.Shared.Inventory.Events; using Content.Shared.Item; @@ -45,10 +46,13 @@ protected void UpdateVisuals(EntityUid uid, ChameleonClothingComponent component // world sprite icon UpdateSprite(uid, proto); - // copy name and description - var meta = MetaData(uid); - _metaData.SetEntityName(uid, proto.Name, meta); - _metaData.SetEntityDescription(uid, proto.Description, meta); + // copy name and description, unless its an ID card + if (!HasComp(uid)) + { + var meta = MetaData(uid); + _metaData.SetEntityName(uid, proto.Name, meta); + _metaData.SetEntityDescription(uid, proto.Description, meta); + } // item sprite logic if (TryComp(uid, out ItemComponent? item) && diff --git a/Content.Shared/Clothing/EntitySystems/SkatesSystem.cs b/Content.Shared/Clothing/EntitySystems/SkatesSystem.cs new file mode 100644 index 0000000000..7d748a67a4 --- /dev/null +++ b/Content.Shared/Clothing/EntitySystems/SkatesSystem.cs @@ -0,0 +1,50 @@ +using Content.Shared.Inventory.Events; +using Content.Shared.Movement.Systems; +using Content.Shared.Damage.Systems; +using Content.Shared.Movement.Components; + +namespace Content.Shared.Clothing; + +/// +/// Changes the friction and acceleration of the wearer and also the damage on impact variables of thew wearer when hitting a static object. +/// +public sealed class SkatesSystem : EntitySystem +{ + [Dependency] private readonly MovementSpeedModifierSystem _move = default!; + [Dependency] private readonly DamageOnHighSpeedImpactSystem _impact = default!; + + public override void Initialize() + { + base.Initialize(); + + 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) + { + if (!TryComp(args.Equipee, 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); + } + } + + /// + /// 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) + { + 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); + } + } +} diff --git a/Content.Shared/Clothing/EntitySystems/ToggleableClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/ToggleableClothingSystem.cs index ba006abfda..c9a5c974f9 100644 --- a/Content.Shared/Clothing/EntitySystems/ToggleableClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/ToggleableClothingSystem.cs @@ -9,13 +9,17 @@ using Content.Shared.Strip; using Content.Shared.Verbs; using Robust.Shared.Containers; +using Robust.Shared.Network; using Robust.Shared.Serialization; +using Robust.Shared.Timing; using Robust.Shared.Utility; namespace Content.Shared.Clothing.EntitySystems; public sealed class ToggleableClothingSystem : EntitySystem { + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly INetManager _netMan = default!; [Dependency] private readonly SharedContainerSystem _containerSystem = default!; [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; [Dependency] private readonly ActionContainerSystem _actionContainer = default!; @@ -24,8 +28,6 @@ public sealed class ToggleableClothingSystem : EntitySystem [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; [Dependency] private readonly SharedStrippableSystem _strippable = default!; - private Queue _toInsert = new(); - public override void Initialize() { base.Initialize(); @@ -40,6 +42,7 @@ public override void Initialize() SubscribeLocalEvent(OnInteractHand); SubscribeLocalEvent(OnAttachedUnequip); SubscribeLocalEvent(OnRemoveAttached); + SubscribeLocalEvent(OnAttachedUnequipAttempt); SubscribeLocalEvent>>(GetRelayedVerbs); SubscribeLocalEvent>(OnGetVerbs); @@ -128,18 +131,6 @@ private void OnDoAfterComplete(EntityUid uid, ToggleableClothingComponent compon ToggleClothing(args.User, uid, component); } - public override void Update(float frameTime) - { - base.Update(frameTime); - - // process delayed insertions. Avoids doing a container insert during a container removal. - while (_toInsert.TryDequeue(out var uid)) - { - if (TryComp(uid, out ToggleableClothingComponent? component) && component.ClothingUid != null) - component.Container?.Insert(component.ClothingUid.Value); - } - } - private void OnInteractHand(EntityUid uid, AttachedClothingComponent component, InteractHandEvent args) { if (args.Handled) @@ -161,6 +152,10 @@ private void OnInteractHand(EntityUid uid, AttachedClothingComponent component, /// private void OnToggleableUnequip(EntityUid uid, ToggleableClothingComponent component, GotUnequippedEvent args) { + // If it's a part of PVS departure then don't handle it. + if (_timing.ApplyingState) + return; + // If the attached clothing is not currently in the container, this just assumes that it is currently equipped. // This should maybe double check that the entity currently in the slot is actually the attached clothing, but // if its not, then something else has gone wrong already... @@ -182,10 +177,15 @@ private void OnRemoveToggleable(EntityUid uid, ToggleableClothingComponent compo _actionsSystem.RemoveAction(action.AttachedEntity.Value, component.ActionEntity); } - if (component.ClothingUid != null) + if (component.ClothingUid != null && !_netMan.IsClient) QueueDel(component.ClothingUid.Value); } + private void OnAttachedUnequipAttempt(EntityUid uid, AttachedClothingComponent component, BeingUnequippedAttemptEvent args) + { + args.Cancel(); + } + private void OnRemoveAttached(EntityUid uid, AttachedClothingComponent component, ComponentRemove args) { // if the attached component is being removed (maybe entity is being deleted?) we will just remove the @@ -214,6 +214,10 @@ private void OnRemoveAttached(EntityUid uid, AttachedClothingComponent component /// private void OnAttachedUnequip(EntityUid uid, AttachedClothingComponent component, GotUnequippedEvent args) { + // Let containers worry about it. + if (_timing.ApplyingState) + return; + if (component.LifeStage > ComponentLifeStage.Running) return; @@ -225,7 +229,8 @@ private void OnAttachedUnequip(EntityUid uid, AttachedClothingComponent componen // As unequipped gets called in the middle of container removal, we cannot call a container-insert without causing issues. // So we delay it and process it during a system update: - _toInsert.Enqueue(component.AttachedUid); + if (toggleComp.ClothingUid != null) + toggleComp.Container?.Insert(toggleComp.ClothingUid.Value); } /// @@ -247,10 +252,10 @@ private void ToggleClothing(EntityUid user, EntityUid target, ToggleableClothing var parent = Transform(target).ParentUid; if (component.Container.ContainedEntity == null) - _inventorySystem.TryUnequip(user, parent, component.Slot); + _inventorySystem.TryUnequip(user, parent, component.Slot, force: true); else if (_inventorySystem.TryGetSlotEntity(parent, component.Slot, out var existing)) { - _popupSystem.PopupEntity(Loc.GetString("toggleable-clothing-remove-first", ("entity", existing)), + _popupSystem.PopupClient(Loc.GetString("toggleable-clothing-remove-first", ("entity", existing)), user, user); } else @@ -294,8 +299,11 @@ private void OnMapInit(EntityUid uid, ToggleableClothingComponent component, Map { var xform = Transform(uid); component.ClothingUid = Spawn(component.ClothingPrototype, xform.Coordinates); - EnsureComp(component.ClothingUid.Value).AttachedUid = uid; + var attachedClothing = EnsureComp(component.ClothingUid.Value); + attachedClothing.AttachedUid = uid; + Dirty(component.ClothingUid.Value, attachedClothing); component.Container.Insert(component.ClothingUid.Value, EntityManager, ownerTransform: xform); + Dirty(uid, component); } if (_actionContainer.EnsureAction(uid, ref component.ActionEntity, out var action, component.Action)) diff --git a/Content.Shared/CombatMode/Pacification/PacificationSystem.cs b/Content.Shared/CombatMode/Pacification/PacificationSystem.cs index c52605e09f..a1332fec76 100644 --- a/Content.Shared/CombatMode/Pacification/PacificationSystem.cs +++ b/Content.Shared/CombatMode/Pacification/PacificationSystem.cs @@ -1,20 +1,57 @@ using Content.Shared.Actions; using Content.Shared.Alert; +using Content.Shared.IdentityManagement; using Content.Shared.Interaction.Events; +using Content.Shared.Popups; +using Content.Shared.Throwing; namespace Content.Shared.CombatMode.Pacification; +/// +/// Raised when a Pacified entity attempts to throw something. +/// The throw is only permitted if this event is not cancelled. +/// +[ByRefEvent] +public struct AttemptPacifiedThrowEvent +{ + public EntityUid ItemUid; + public EntityUid PlayerUid; + + public AttemptPacifiedThrowEvent(EntityUid itemUid, EntityUid playerUid) + { + ItemUid = itemUid; + PlayerUid = playerUid; + } + + public bool Cancelled { get; private set; } = false; + public string? CancelReasonMessageId { get; private set; } + + /// + /// Localization string ID for the reason this event has been cancelled. + /// If null, a generic message will be shown to the player. + /// Note that any supplied localization string MUST accept a '$projectile' + /// parameter specifying the name of the thrown entity. + /// + public void Cancel(string? reasonMessageId = null) + { + Cancelled = true; + CancelReasonMessageId = reasonMessageId; + } +} + public sealed class PacificationSystem : EntitySystem { [Dependency] private readonly AlertsSystem _alertsSystem = default!; [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; [Dependency] private readonly SharedCombatModeSystem _combatSystem = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnStartup); SubscribeLocalEvent(OnShutdown); + SubscribeLocalEvent(OnBeforeThrow); SubscribeLocalEvent(OnAttackAttempt); } @@ -47,4 +84,23 @@ private void OnShutdown(EntityUid uid, PacifiedComponent component, ComponentShu _actionsSystem.SetEnabled(combatMode.CombatToggleActionEntity, true); _alertsSystem.ClearAlert(uid, AlertType.Pacified); } + + private void OnBeforeThrow(Entity ent, ref BeforeThrowEvent args) + { + var thrownItem = args.ItemUid; + var itemName = Identity.Entity(thrownItem, EntityManager); + + // Raise an AttemptPacifiedThrow event and rely on other systems to check + // whether the candidate item is OK to throw: + var ev = new AttemptPacifiedThrowEvent(thrownItem, ent); + RaiseLocalEvent(thrownItem, ref ev); + if (!ev.Cancelled) + return; + + args.Cancelled = true; + + // Tell the player why they can’t throw stuff: + var cannotThrowMessage = ev.CancelReasonMessageId ?? "pacified-cannot-throw"; + _popup.PopupEntity(Loc.GetString(cannotThrowMessage, ("projectile", itemName)), ent, ent); + } } diff --git a/Content.Shared/CombatMode/Pacification/PacifiedComponent.cs b/Content.Shared/CombatMode/Pacification/PacifiedComponent.cs index 40ddc70002..4b6dff76a2 100644 --- a/Content.Shared/CombatMode/Pacification/PacifiedComponent.cs +++ b/Content.Shared/CombatMode/Pacification/PacifiedComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.CombatMode.Pacification; /// -/// Status effect that disables combat mode. +/// Status effect that disables combat mode and restricts aggressive actions. /// [RegisterComponent, NetworkedComponent] [Access(typeof(PacificationSystem))] diff --git a/Content.Shared/Communications/CommsHackerComponent.cs b/Content.Shared/Communications/CommsHackerComponent.cs index 810058f1ce..b199e64d7e 100644 --- a/Content.Shared/Communications/CommsHackerComponent.cs +++ b/Content.Shared/Communications/CommsHackerComponent.cs @@ -30,7 +30,7 @@ public sealed partial class CommsHackerComponent : Component /// You wouldn't do that, right? /// [Prototype("ninjaHackingThreat")] -public sealed class NinjaHackingThreatPrototype : IPrototype +public sealed partial class NinjaHackingThreatPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Shared/Construction/Conditions/EntityWhitelistCondition.cs b/Content.Shared/Construction/Conditions/EntityWhitelistCondition.cs new file mode 100644 index 0000000000..22d86b54fb --- /dev/null +++ b/Content.Shared/Construction/Conditions/EntityWhitelistCondition.cs @@ -0,0 +1,45 @@ +using Content.Shared.Construction.EntitySystems; +using Content.Shared.Whitelist; +using Robust.Shared.Map; +using Robust.Shared.Utility; + +namespace Content.Shared.Construction.Conditions; + +/// +/// A check to see if the entity itself can be crafted. +/// +[DataDefinition] +public sealed partial class EntityWhitelistCondition : IConstructionCondition +{ + /// + /// What is told to the player attempting to construct the recipe using this condition. This will be localised. + /// + [DataField("conditionString")] + public string ConditionString = "construction-step-condition-entity-whitelist"; + + /// + /// The icon shown to the player beside the condition string. + /// + [DataField("conditionIcon")] + public SpriteSpecifier? ConditionIcon = null; + + /// + /// The whitelist that allows only certain entities to use this. + /// + [DataField("whitelist", required: true)] + public EntityWhitelist Whitelist = new(); + + public bool Condition(EntityUid user, EntityCoordinates location, Direction direction) + { + return Whitelist.IsValid(user); + } + + public ConstructionGuideEntry GenerateGuideEntry() + { + return new ConstructionGuideEntry + { + Localization = ConditionString, + Icon = ConditionIcon + }; + } +} diff --git a/Content.Shared/Construction/MachineDeconstructedEvent.cs b/Content.Shared/Construction/MachineDeconstructedEvent.cs new file mode 100644 index 0000000000..1f65e7941f --- /dev/null +++ b/Content.Shared/Construction/MachineDeconstructedEvent.cs @@ -0,0 +1,6 @@ +namespace Content.Shared.Construction; + +[DataDefinition] +public sealed partial class MachineDeconstructedEvent : EntityEventArgs +{ +} diff --git a/Content.Shared/Construction/Prototypes/ConstructionGraphPrototype.cs b/Content.Shared/Construction/Prototypes/ConstructionGraphPrototype.cs index 050f8b6c18..7ac02371eb 100644 --- a/Content.Shared/Construction/Prototypes/ConstructionGraphPrototype.cs +++ b/Content.Shared/Construction/Prototypes/ConstructionGraphPrototype.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Construction.Prototypes { [Prototype("constructionGraph")] - public sealed class ConstructionGraphPrototype : IPrototype, ISerializationHooks + public sealed partial class ConstructionGraphPrototype : IPrototype, ISerializationHooks { private readonly Dictionary _nodes = new(); private readonly Dictionary<(string, string), ConstructionGraphNode[]?> _paths = new(); diff --git a/Content.Shared/Construction/Prototypes/ConstructionPrototype.cs b/Content.Shared/Construction/Prototypes/ConstructionPrototype.cs index e4e28b11b5..e9863f8364 100644 --- a/Content.Shared/Construction/Prototypes/ConstructionPrototype.cs +++ b/Content.Shared/Construction/Prototypes/ConstructionPrototype.cs @@ -1,4 +1,5 @@ using Content.Shared.Construction.Conditions; +using Content.Shared.Whitelist; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; using Robust.Shared.Utility; @@ -6,7 +7,7 @@ namespace Content.Shared.Construction.Prototypes; [Prototype("construction")] -public sealed class ConstructionPrototype : IPrototype +public sealed partial class ConstructionPrototype : IPrototype { [DataField("conditions")] private List _conditions = new(); @@ -20,7 +21,7 @@ public sealed class ConstructionPrototype : IPrototype /// Friendly name displayed in the construction GUI. /// [DataField("name")] - public string Name= string.Empty; + public string Name = string.Empty; /// /// "Useful" description displayed in the construction GUI. @@ -31,7 +32,7 @@ public sealed class ConstructionPrototype : IPrototype /// /// The this construction will be using. /// - [DataField("graph", customTypeSerializer:typeof(PrototypeIdSerializer), required: true)] + [DataField("graph", customTypeSerializer: typeof(PrototypeIdSerializer), required: true)] public string Graph = string.Empty; /// @@ -64,6 +65,13 @@ public sealed class ConstructionPrototype : IPrototype [DataField("canBuildInImpassable")] public bool CanBuildInImpassable { get; private set; } + /// + /// If not null, then this is used to check if the entity trying to construct this is whitelisted. + /// If they're not whitelisted, hide the item. + /// + [DataField("entityWhitelist")] + public EntityWhitelist? EntityWhitelist = null; + [DataField("category")] public string Category { get; private set; } = ""; [DataField("objectType")] public ConstructionType Type { get; private set; } = ConstructionType.Structure; @@ -84,11 +92,11 @@ public sealed class ConstructionPrototype : IPrototype /// /// Construction to replace this construction with when the current one is 'flipped' /// - [DataField("mirror", customTypeSerializer:typeof(PrototypeIdSerializer))] + [DataField("mirror", customTypeSerializer: typeof(PrototypeIdSerializer))] public string? Mirror; public IReadOnlyList Conditions => _conditions; - public IReadOnlyList Layers => _layers ?? new List{Icon}; + public IReadOnlyList Layers => _layers ?? new List { Icon }; } public enum ConstructionType diff --git a/Content.Shared/Construction/Prototypes/MachinePartPrototype.cs b/Content.Shared/Construction/Prototypes/MachinePartPrototype.cs index 707dc5dc23..7a080c94a3 100644 --- a/Content.Shared/Construction/Prototypes/MachinePartPrototype.cs +++ b/Content.Shared/Construction/Prototypes/MachinePartPrototype.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Construction.Prototypes; /// different types of machine parts. /// [Prototype("machinePart")] -public sealed class MachinePartPrototype : IPrototype +public sealed partial class MachinePartPrototype : IPrototype { /// [IdDataField] diff --git a/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs b/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs index 9194a8208e..ad27101cc1 100644 --- a/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs +++ b/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs @@ -9,6 +9,8 @@ using Content.Shared.Interaction.Events; using Content.Shared.Popups; using Content.Shared.Verbs; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.GameStates; using Robust.Shared.Network; diff --git a/Content.Shared/Corvax/CCVars/CCCVars.cs b/Content.Shared/Corvax/CCVars/CCCVars.cs new file mode 100644 index 0000000000..371b793d3d --- /dev/null +++ b/Content.Shared/Corvax/CCVars/CCCVars.cs @@ -0,0 +1,18 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.Corvax.CCCVars; + +[CVarDefs] +// ReSharper disable once InconsistentNaming +public sealed class CCCVars +{ + /* + * Station Goals + */ + + /// + /// Enables station goals + /// + public static readonly CVarDef StationGoalsEnabled = + CVarDef.Create("game.station_goals", false, CVar.SERVERONLY); +} diff --git a/Content.Shared/Cuffs/SharedCuffableSystem.cs b/Content.Shared/Cuffs/SharedCuffableSystem.cs index 4951bb7f1c..93ef4e4213 100644 --- a/Content.Shared/Cuffs/SharedCuffableSystem.cs +++ b/Content.Shared/Cuffs/SharedCuffableSystem.cs @@ -29,6 +29,8 @@ using Content.Shared.Stunnable; using Content.Shared.Verbs; using Content.Shared.Weapons.Melee.Events; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Network; using Robust.Shared.Player; @@ -619,6 +621,9 @@ public void Uncuff(EntityUid target, EntityUid? user, EntityUid cuffsToRemove, C if (!Resolve(target, ref cuffable) || !Resolve(cuffsToRemove, ref cuff)) return; + if (TerminatingOrDeleted(cuffsToRemove) || TerminatingOrDeleted(target)) + return; + if (user != null) { var attempt = new UncuffAttemptEvent(user.Value, target); diff --git a/Content.Server/Damage/Components/DamageOnHighSpeedImpactComponent.cs b/Content.Shared/Damage/Components/DamageOnHighSpeedImpactComponent.cs similarity index 92% rename from Content.Server/Damage/Components/DamageOnHighSpeedImpactComponent.cs rename to Content.Shared/Damage/Components/DamageOnHighSpeedImpactComponent.cs index 243cc70c1a..3eef1d70a4 100644 --- a/Content.Server/Damage/Components/DamageOnHighSpeedImpactComponent.cs +++ b/Content.Shared/Damage/Components/DamageOnHighSpeedImpactComponent.cs @@ -1,9 +1,8 @@ -using Content.Server.Damage.Systems; -using Content.Shared.Damage; +using Content.Shared.Damage.Systems; using Robust.Shared.Audio; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; -namespace Content.Server.Damage.Components; +namespace Content.Shared.Damage.Components; /// /// Should the entity take damage / be stunned if colliding at a speed above MinimumSpeed? diff --git a/Content.Shared/Damage/ForceSay/DamageForceSayComponent.cs b/Content.Shared/Damage/ForceSay/DamageForceSayComponent.cs index dc2617bc93..163cc7cbf4 100644 --- a/Content.Shared/Damage/ForceSay/DamageForceSayComponent.cs +++ b/Content.Shared/Damage/ForceSay/DamageForceSayComponent.cs @@ -44,7 +44,7 @@ public sealed partial class DamageForceSayComponent : Component /// a force say occurs. /// [DataField] - public FixedPoint2 DamageThreshold = FixedPoint2.New(10); + public FixedPoint2 DamageThreshold = FixedPoint2.New(5); /// /// A list of damage group types that are considered when checking . diff --git a/Content.Shared/Damage/Prototypes/DamageContainerPrototype.cs b/Content.Shared/Damage/Prototypes/DamageContainerPrototype.cs index 0bcb95294b..a77bf992c8 100644 --- a/Content.Shared/Damage/Prototypes/DamageContainerPrototype.cs +++ b/Content.Shared/Damage/Prototypes/DamageContainerPrototype.cs @@ -14,7 +14,7 @@ namespace Content.Shared.Damage.Prototypes /// [Prototype("damageContainer")] [Serializable, NetSerializable] - public sealed class DamageContainerPrototype : IPrototype + public sealed partial class DamageContainerPrototype : IPrototype { [ViewVariables] [IdDataField] diff --git a/Content.Shared/Damage/Prototypes/DamageGroupPrototype.cs b/Content.Shared/Damage/Prototypes/DamageGroupPrototype.cs index 2a508a03e6..807f143708 100644 --- a/Content.Shared/Damage/Prototypes/DamageGroupPrototype.cs +++ b/Content.Shared/Damage/Prototypes/DamageGroupPrototype.cs @@ -13,7 +13,7 @@ namespace Content.Shared.Damage.Prototypes /// [Prototype("damageGroup", 2)] [Serializable, NetSerializable] - public sealed class DamageGroupPrototype : IPrototype + public sealed partial class DamageGroupPrototype : IPrototype { [IdDataField] public string ID { get; } = default!; diff --git a/Content.Shared/Damage/Prototypes/DamageTypePrototype.cs b/Content.Shared/Damage/Prototypes/DamageTypePrototype.cs index 592de5acf3..cde7a8617f 100644 --- a/Content.Shared/Damage/Prototypes/DamageTypePrototype.cs +++ b/Content.Shared/Damage/Prototypes/DamageTypePrototype.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Damage.Prototypes /// A single damage type. These types are grouped together in s. /// [Prototype("damageType")] - public sealed class DamageTypePrototype : IPrototype + public sealed partial class DamageTypePrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Shared/Damage/Prototypes/ExaminableDamagePrototype.cs b/Content.Shared/Damage/Prototypes/ExaminableDamagePrototype.cs index c4191f4d13..563834b372 100644 --- a/Content.Shared/Damage/Prototypes/ExaminableDamagePrototype.cs +++ b/Content.Shared/Damage/Prototypes/ExaminableDamagePrototype.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Damage.Prototypes; /// Prototype for examinable damage messages. /// [Prototype("examinableDamage")] -public sealed class ExaminableDamagePrototype : IPrototype +public sealed partial class ExaminableDamagePrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Shared/Damage/Systems/DamageOnHighSpeedImpactSystem.cs b/Content.Shared/Damage/Systems/DamageOnHighSpeedImpactSystem.cs new file mode 100644 index 0000000000..12bca52274 --- /dev/null +++ b/Content.Shared/Damage/Systems/DamageOnHighSpeedImpactSystem.cs @@ -0,0 +1,69 @@ +using Content.Shared.Stunnable; +using Content.Shared.Damage.Components; +using Content.Shared.Effects; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Physics.Events; +using Robust.Shared.Player; +using Robust.Shared.Random; +using Robust.Shared.Timing; + +namespace Content.Shared.Damage.Systems; + +public sealed class DamageOnHighSpeedImpactSystem : EntitySystem +{ + [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly IRobustRandom _robustRandom = default!; + [Dependency] private readonly DamageableSystem _damageable = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedColorFlashEffectSystem _color = default!; + [Dependency] private readonly SharedStunSystem _stun = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(HandleCollide); + } + + private void HandleCollide(EntityUid uid, DamageOnHighSpeedImpactComponent component, ref StartCollideEvent args) + { + if (!args.OurFixture.Hard || !args.OtherFixture.Hard) + return; + + if (!EntityManager.HasComponent(uid)) + return; + + var speed = args.OurBody.LinearVelocity.Length(); + + if (speed < component.MinimumSpeed) + return; + + if ((_gameTiming.CurTime - component.LastHit).TotalSeconds < component.DamageCooldown) + return; + + component.LastHit = _gameTiming.CurTime; + + if (_robustRandom.Prob(component.StunChance)) + _stun.TryStun(uid, TimeSpan.FromSeconds(component.StunSeconds), true); + + var damageScale = component.SpeedDamageFactor * speed / component.MinimumSpeed; + + _damageable.TryChangeDamage(uid, component.Damage * damageScale); + + if (_gameTiming.IsFirstTimePredicted) + _audio.PlayPvs(component.SoundHit, uid, AudioParams.Default.WithVariation(0.125f).WithVolume(-0.125f)); + _color.RaiseEffect(Color.Red, new List() { uid }, Filter.Pvs(uid, entityManager: EntityManager)); + } + + public void ChangeCollide(EntityUid uid, float minimumSpeed, float stunSeconds, float damageCooldown, float speedDamage, DamageOnHighSpeedImpactComponent? collide = null) + { + if (!Resolve(uid, ref collide, false)) + return; + + collide.MinimumSpeed = minimumSpeed; + collide.StunSeconds = stunSeconds; + collide.DamageCooldown = damageCooldown; + collide.SpeedDamageFactor = speedDamage; + Dirty(uid, collide); + } +} diff --git a/Content.Shared/Damage/Systems/DamageableSystem.cs b/Content.Shared/Damage/Systems/DamageableSystem.cs index 8f6ccc20e6..9337e79439 100644 --- a/Content.Shared/Damage/Systems/DamageableSystem.cs +++ b/Content.Shared/Damage/Systems/DamageableSystem.cs @@ -1,7 +1,9 @@ using System.Linq; +using Content.Shared.Administration.Logs; using Content.Shared.Damage.Prototypes; using Content.Shared.FixedPoint; using Content.Shared.Inventory; +using Content.Shared.Mind.Components; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; using Content.Shared.Radiation.Events; @@ -16,12 +18,14 @@ namespace Content.Shared.Damage public sealed class DamageableSystem : EntitySystem { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly INetManager _netMan = default!; [Dependency] private readonly MobThresholdSystem _mobThreshold = default!; private EntityQuery _appearanceQuery; private EntityQuery _damageableQuery; + private EntityQuery _mindContainerQuery; public override void Initialize() { @@ -33,6 +37,7 @@ public override void Initialize() _appearanceQuery = GetEntityQuery(); _damageableQuery = GetEntityQuery(); + _mindContainerQuery = GetEntityQuery(); } /// @@ -245,7 +250,7 @@ private void OnIrradiated(EntityUid uid, DamageableComponent component, OnIrradi damage.DamageDict.Add(typeId, damageValue); } - TryChangeDamage(uid, damage); + TryChangeDamage(uid, damage, interruptsDoAfters: false); } private void OnRejuvenate(EntityUid uid, DamageableComponent component, RejuvenateEvent args) diff --git a/Content.Shared/Damage/Systems/StaminaSystem.cs b/Content.Shared/Damage/Systems/StaminaSystem.cs index 40c4f7eb8f..33f1b0375b 100644 --- a/Content.Shared/Damage/Systems/StaminaSystem.cs +++ b/Content.Shared/Damage/Systems/StaminaSystem.cs @@ -16,6 +16,7 @@ using Content.Shared.Weapons.Melee.Events; using JetBrains.Annotations; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Network; using Robust.Shared.Player; using Robust.Shared.Random; diff --git a/Content.Shared/Dataset/DatasetPrototype.cs b/Content.Shared/Dataset/DatasetPrototype.cs index b418864299..08ae380bc5 100644 --- a/Content.Shared/Dataset/DatasetPrototype.cs +++ b/Content.Shared/Dataset/DatasetPrototype.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Dataset { [Prototype("dataset")] - public sealed class DatasetPrototype : IPrototype + public sealed partial class DatasetPrototype : IPrototype { [ViewVariables] [IdDataField] diff --git a/Content.Shared/Decals/ColorPalettePrototype.cs b/Content.Shared/Decals/ColorPalettePrototype.cs index a42e0a0ff3..cef776d0c9 100644 --- a/Content.Shared/Decals/ColorPalettePrototype.cs +++ b/Content.Shared/Decals/ColorPalettePrototype.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Decals; [Prototype("palette")] -public sealed class ColorPalettePrototype : IPrototype +public sealed partial class ColorPalettePrototype : IPrototype { [IdDataField] public string ID { get; } = null!; [DataField("name")] public string Name { get; private set; } = null!; diff --git a/Content.Shared/Decals/DecalPrototype.cs b/Content.Shared/Decals/DecalPrototype.cs index 1fc223b207..2721f5d2d2 100644 --- a/Content.Shared/Decals/DecalPrototype.cs +++ b/Content.Shared/Decals/DecalPrototype.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Decals { [Prototype("decal")] - public sealed class DecalPrototype : IPrototype + public sealed partial class DecalPrototype : IPrototype { [IdDataField] public string ID { get; } = null!; [DataField("sprite")] public SpriteSpecifier Sprite { get; private set; } = SpriteSpecifier.Invalid; diff --git a/Content.Shared/DeltaV/Biscuit/SharedBiscuitComponent.cs b/Content.Shared/DeltaV/Biscuit/SharedBiscuitComponent.cs new file mode 100644 index 0000000000..d98cf6bbca --- /dev/null +++ b/Content.Shared/DeltaV/Biscuit/SharedBiscuitComponent.cs @@ -0,0 +1,12 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.DeltaV.Biscuit; + +public abstract partial class SharedBiscuitComponent : Component +{} + +[Serializable, NetSerializable] +public enum BiscuitStatus : byte +{ + Cracked +} diff --git a/Content.Shared/DeltaV/CartridgeLoader/Cartridges/CrimeAssistPage.cs b/Content.Shared/DeltaV/CartridgeLoader/Cartridges/CrimeAssistPage.cs new file mode 100644 index 0000000000..8fb9a131a8 --- /dev/null +++ b/Content.Shared/DeltaV/CartridgeLoader/Cartridges/CrimeAssistPage.cs @@ -0,0 +1,35 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.DeltaV.CartridgeLoader.Cartridges; + +[Prototype("crimeAssistPage")] +public sealed partial class CrimeAssistPage : IPrototype +{ + [ViewVariables] + [IdDataField] + public string ID { get; private set; } = ""; + + [DataField("onStart")] + public string? OnStart { get; private set; } + + [DataField("locKey")] + public string? LocKey { get; private set; } + + [DataField("onYes")] + public string? OnYes { get; private set; } + + [DataField("onNo")] + public string? OnNo { get; private set; } + + [DataField("locKeyTitle")] + public string? LocKeyTitle { get; private set; } + + [DataField("locKeyDescription")] + public string? LocKeyDescription { get; private set; } + + [DataField("locKeySeverity")] + public string? LocKeySeverity { get; private set; } + + [DataField("locKeyPunishment")] + public string? LocKeyPunishment { get; private set; } +} diff --git a/Content.Shared/DeltaV/CartridgeLoader/Cartridges/CrimeAssistUiState.cs b/Content.Shared/DeltaV/CartridgeLoader/Cartridges/CrimeAssistUiState.cs new file mode 100644 index 0000000000..dd820f1a0b --- /dev/null +++ b/Content.Shared/DeltaV/CartridgeLoader/Cartridges/CrimeAssistUiState.cs @@ -0,0 +1,18 @@ +using Content.Shared.CartridgeLoader; +using Robust.Shared.Serialization; + +namespace Content.Shared.DeltaV.CartridgeLoader.Cartridges; + +[Serializable, NetSerializable] +public sealed class CrimeAssistUiState : BoundUserInterfaceState +{ + public CrimeAssistUiState() + { } +} + +[Serializable, NetSerializable] +public sealed class CrimeAssistSyncMessageEvent : CartridgeMessageEvent +{ + public CrimeAssistSyncMessageEvent() + { } +} diff --git a/Content.Shared/DeltaV/Harpy/Components/HarpyVisualSystem.cs b/Content.Shared/DeltaV/Harpy/Components/HarpyVisualSystem.cs new file mode 100644 index 0000000000..f5100e13c7 --- /dev/null +++ b/Content.Shared/DeltaV/Harpy/Components/HarpyVisualSystem.cs @@ -0,0 +1,17 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.DeltaV.Harpy.Components +{ + [Serializable, NetSerializable] + public enum HarpyVisualLayers + { + Singing, + } + + [Serializable, NetSerializable] + public enum SingingVisualLayer + { + True, + False, + } +} diff --git a/Content.Shared/DeltaV/Weapons/Ranged/EnergyGunFireModeVisuals.cs b/Content.Shared/DeltaV/Weapons/Ranged/EnergyGunFireModeVisuals.cs new file mode 100644 index 0000000000..de84ac4934 --- /dev/null +++ b/Content.Shared/DeltaV/Weapons/Ranged/EnergyGunFireModeVisuals.cs @@ -0,0 +1,17 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.DeltaV.Weapons.Ranged; + +[Serializable, NetSerializable] +public enum EnergyGunFireModeVisuals : byte +{ + State +} + +[Serializable, NetSerializable] +public enum EnergyGunFireModeState : byte +{ + Disabler, + Lethal, + Special +} diff --git a/Content.Shared/DeviceNetwork/Components/DeviceListComponent.cs b/Content.Shared/DeviceNetwork/Components/DeviceListComponent.cs index 8221710292..98f177c0f3 100644 --- a/Content.Shared/DeviceNetwork/Components/DeviceListComponent.cs +++ b/Content.Shared/DeviceNetwork/Components/DeviceListComponent.cs @@ -33,4 +33,7 @@ public sealed partial class DeviceListComponent : Component [ViewVariables(VVAccess.ReadWrite)] [DataField, AutoNetworkedField] public bool HandleIncomingPackets; + + [DataField, Access(typeof(SharedNetworkConfiguratorSystem))] + public HashSet Configurators = new(); } diff --git a/Content.Shared/DeviceNetwork/Components/NetworkConfiguratorComponent.cs b/Content.Shared/DeviceNetwork/Components/NetworkConfiguratorComponent.cs index 7202b803f8..27c74a9640 100644 --- a/Content.Shared/DeviceNetwork/Components/NetworkConfiguratorComponent.cs +++ b/Content.Shared/DeviceNetwork/Components/NetworkConfiguratorComponent.cs @@ -10,6 +10,7 @@ namespace Content.Shared.DeviceNetwork.Components; [Access(typeof(SharedNetworkConfiguratorSystem))] public sealed partial class NetworkConfiguratorComponent : Component { + // AAAAA ALL OF THESE FAA /// /// Determines whether the configurator is in linking mode or list mode /// @@ -21,19 +22,19 @@ public sealed partial class NetworkConfiguratorComponent : Component /// The entity containing a this configurator is currently interacting with /// [DataField, AutoNetworkedField] - public EntityUid? ActiveDeviceList; + public EntityUid? ActiveDeviceList { get; set; } /// /// The entity containing a or this configurator is currently interacting with.
/// If this is set the configurator is in linking mode. ///
- [DataField] + // TODO handle device deletion public EntityUid? ActiveDeviceLink; /// /// The target device this configurator is currently linking with the /// - [DataField] + // TODO handle device deletion public EntityUid? DeviceLinkTarget; /// diff --git a/Content.Shared/DeviceNetwork/DeviceFrequencyPrototype.cs b/Content.Shared/DeviceNetwork/DeviceFrequencyPrototype.cs index 2e6ef4d1a0..b34d5b67a8 100644 --- a/Content.Shared/DeviceNetwork/DeviceFrequencyPrototype.cs +++ b/Content.Shared/DeviceNetwork/DeviceFrequencyPrototype.cs @@ -8,7 +8,7 @@ namespace Content.Shared.DeviceNetwork; /// [Prototype("deviceFrequency")] [Serializable, NetSerializable] -public sealed class DeviceFrequencyPrototype : IPrototype +public sealed partial class DeviceFrequencyPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Shared/DeviceNetwork/Systems/SharedDeviceListSystem.cs b/Content.Shared/DeviceNetwork/Systems/SharedDeviceListSystem.cs index a15d942ad6..2ff3c2daad 100644 --- a/Content.Shared/DeviceNetwork/Systems/SharedDeviceListSystem.cs +++ b/Content.Shared/DeviceNetwork/Systems/SharedDeviceListSystem.cs @@ -5,39 +5,6 @@ namespace Content.Shared.DeviceNetwork.Systems; public abstract class SharedDeviceListSystem : EntitySystem { - /// - /// Updates the device list stored on this entity. - /// - /// The entity to update. - /// The devices to store. - /// Whether to merge or replace the devices stored. - /// Device list component - public DeviceListUpdateResult UpdateDeviceList(EntityUid uid, IEnumerable devices, bool merge = false, DeviceListComponent? deviceList = null) - { - if (!Resolve(uid, ref deviceList)) - return DeviceListUpdateResult.NoComponent; - - var oldDevices = deviceList.Devices.ToList(); - var newDevices = merge ? new HashSet(deviceList.Devices) : new(); - var devicesList = devices.ToList(); - - newDevices.UnionWith(devicesList); - if (newDevices.Count > deviceList.DeviceLimit) - { - return DeviceListUpdateResult.TooManyDevices; - } - - deviceList.Devices = newDevices; - - UpdateShutdownSubscription(uid, devicesList, oldDevices); - - RaiseLocalEvent(uid, new DeviceListUpdateEvent(oldDevices, devicesList)); - - Dirty(deviceList); - - return DeviceListUpdateResult.UpdateOk; - } - public IEnumerable GetAllDevices(EntityUid uid, DeviceListComponent? component = null) { if (!Resolve(uid, ref component)) @@ -46,10 +13,6 @@ public IEnumerable GetAllDevices(EntityUid uid, DeviceListComponent? } return component.Devices; } - - protected virtual void UpdateShutdownSubscription(EntityUid uid, List devicesList, List oldDevices) - { - } } public sealed class DeviceListUpdateEvent : EntityEventArgs diff --git a/Content.Shared/Devour/SharedDevourSystem.cs b/Content.Shared/Devour/SharedDevourSystem.cs index 192fd20078..3d406843f5 100644 --- a/Content.Shared/Devour/SharedDevourSystem.cs +++ b/Content.Shared/Devour/SharedDevourSystem.cs @@ -4,6 +4,8 @@ using Content.Shared.Mobs; using Content.Shared.Mobs.Components; using Content.Shared.Popups; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Serialization; diff --git a/Content.Shared/Disposal/Components/SharedDisposalUnitComponent.cs b/Content.Shared/Disposal/Components/SharedDisposalUnitComponent.cs index e1b78de5cd..72586be1ec 100644 --- a/Content.Shared/Disposal/Components/SharedDisposalUnitComponent.cs +++ b/Content.Shared/Disposal/Components/SharedDisposalUnitComponent.cs @@ -17,6 +17,19 @@ public abstract partial class SharedDisposalUnitComponent : Component [ViewVariables(VVAccess.ReadWrite), DataField("soundFlush")] public SoundSpecifier? FlushSound = new SoundPathSpecifier("/Audio/Machines/disposalflush.ogg"); + /// + /// Sound played when an object is inserted into the disposal unit. + /// + [ViewVariables(VVAccess.ReadWrite), DataField("soundInsert")] + public SoundSpecifier? InsertSound = new SoundPathSpecifier("/Audio/Effects/trashbag1.ogg"); + + /// + /// Sound played when an item is thrown and misses the disposal unit. + /// + [ViewVariables(VVAccess.ReadWrite), DataField("soundMiss")] + public SoundSpecifier? MissSound = new SoundPathSpecifier("/Audio/Effects/thudswoosh.ogg"); + + /// /// State for this disposals unit. /// diff --git a/Content.Shared/DoAfter/DoAfterArgs.cs b/Content.Shared/DoAfter/DoAfterArgs.cs index c5cbc1f302..d2729ad3c6 100644 --- a/Content.Shared/DoAfter/DoAfterArgs.cs +++ b/Content.Shared/DoAfter/DoAfterArgs.cs @@ -40,6 +40,12 @@ public sealed partial class DoAfterArgs public NetEntity? NetUsed; + /// + /// Whether the progress bar for this DoAfter should be hidden from other players. + /// + [DataField] + public bool Hidden; + #region Event options /// /// The event that will get raised when the DoAfter has finished. If null, this will simply raise a @@ -239,6 +245,7 @@ public DoAfterArgs(DoAfterArgs other) Delay = other.Delay; Target = other.Target; Used = other.Used; + Hidden = other.Hidden; EventTarget = other.EventTarget; Broadcast = other.Broadcast; NeedHand = other.NeedHand; diff --git a/Content.Shared/Doors/Systems/SharedDoorBoltSystem.cs b/Content.Shared/Doors/Systems/SharedDoorBoltSystem.cs index a9a52010fd..7c5ef45275 100644 --- a/Content.Shared/Doors/Systems/SharedDoorBoltSystem.cs +++ b/Content.Shared/Doors/Systems/SharedDoorBoltSystem.cs @@ -1,6 +1,8 @@ using Content.Shared.Doors.Components; using Content.Shared.Popups; using Content.Shared.Prying.Components; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; namespace Content.Shared.Doors.Systems; diff --git a/Content.Shared/Doors/Systems/SharedDoorSystem.cs b/Content.Shared/Doors/Systems/SharedDoorSystem.cs index 084c3b4ea2..74ce120cd0 100644 --- a/Content.Shared/Doors/Systems/SharedDoorSystem.cs +++ b/Content.Shared/Doors/Systems/SharedDoorSystem.cs @@ -14,6 +14,8 @@ using Robust.Shared.Physics.Events; using Robust.Shared.Physics.Systems; using Robust.Shared.Timing; +using Content.Shared.Prying.Components; +using Robust.Shared.Audio.Systems; namespace Content.Shared.Doors.Systems; @@ -458,6 +460,10 @@ public IEnumerable GetColliding(EntityUid uid, PhysicsComponent? phys //If the colliding entity is a slippable item ignore it by the airlock if (otherPhysics.CollisionLayer == (int)CollisionGroup.SlipLayer && otherPhysics.CollisionMask == (int)CollisionGroup.ItemMask) continue; + + //For when doors need to close over conveyor belts + if (otherPhysics.CollisionLayer == (int) CollisionGroup.ConveyorMask) + continue; if ((physics.CollisionMask & otherPhysics.CollisionLayer) == 0 && (otherPhysics.CollisionMask & physics.CollisionLayer) == 0) continue; diff --git a/Content.Shared/EntityList/EntityListPrototype.cs b/Content.Shared/EntityList/EntityListPrototype.cs index 4ba6dbd7ca..241712eff7 100644 --- a/Content.Shared/EntityList/EntityListPrototype.cs +++ b/Content.Shared/EntityList/EntityListPrototype.cs @@ -5,7 +5,7 @@ namespace Content.Shared.EntityList { [Prototype("entityList")] - public sealed class EntityListPrototype : IPrototype + public sealed partial class EntityListPrototype : IPrototype { [ViewVariables] [IdDataField] diff --git a/Content.Shared/EntityList/EntityLootTablePrototype.cs b/Content.Shared/EntityList/EntityLootTablePrototype.cs index da535d570c..418a584af5 100644 --- a/Content.Shared/EntityList/EntityLootTablePrototype.cs +++ b/Content.Shared/EntityList/EntityLootTablePrototype.cs @@ -6,7 +6,7 @@ namespace Content.Shared.EntityList; [Prototype("entityLootTable")] -public sealed class EntityLootTablePrototype : IPrototype +public sealed partial class EntityLootTablePrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Shared/Entry/EntryPoint.cs b/Content.Shared/Entry/EntryPoint.cs index 225687aabd..baae144ac5 100644 --- a/Content.Shared/Entry/EntryPoint.cs +++ b/Content.Shared/Entry/EntryPoint.cs @@ -83,6 +83,9 @@ private void InitTileDefinitions() private void PrototypeReload(PrototypesReloadedEventArgs obj) { + if (!obj.WasModified()) + return; + // Need to re-allocate tiledefs due to how prototype reloads work foreach (var def in _prototypeManager.EnumeratePrototypes()) { diff --git a/Content.Shared/Eui/MsgEuiMessage.cs b/Content.Shared/Eui/MsgEuiMessage.cs index c71efc2d7d..3b6fbcad2c 100644 --- a/Content.Shared/Eui/MsgEuiMessage.cs +++ b/Content.Shared/Eui/MsgEuiMessage.cs @@ -16,8 +16,9 @@ public override void ReadFromBuffer(NetIncomingMessage buffer, IRobustSerializer { Id = buffer.ReadUInt32(); - var len = buffer.ReadVariableInt32(); - var stream = buffer.ReadAlignedMemory(len); + var length = buffer.ReadVariableInt32(); + using var stream = new MemoryStream(length); + buffer.ReadAlignedMemory(stream, length); Message = ser.Deserialize(stream); } diff --git a/Content.Shared/Eui/MsgEuiState.cs b/Content.Shared/Eui/MsgEuiState.cs index d1867a3cdf..3ac80ad3ea 100644 --- a/Content.Shared/Eui/MsgEuiState.cs +++ b/Content.Shared/Eui/MsgEuiState.cs @@ -16,8 +16,9 @@ public override void ReadFromBuffer(NetIncomingMessage buffer, IRobustSerializer { Id = buffer.ReadUInt32(); - var len = buffer.ReadVariableInt32(); - var stream = buffer.ReadAlignedMemory(len); + var length = buffer.ReadVariableInt32(); + using var stream = new MemoryStream(length); + buffer.ReadAlignedMemory(stream, length); State = ser.Deserialize(stream); } diff --git a/Content.Shared/Explosion/ExplosionEvents.cs b/Content.Shared/Explosion/ExplosionEvents.cs index 37c956e165..7b0cde48e6 100644 --- a/Content.Shared/Explosion/ExplosionEvents.cs +++ b/Content.Shared/Explosion/ExplosionEvents.cs @@ -1,6 +1,5 @@ +using Content.Shared.Damage; using Content.Shared.Inventory; -using Robust.Shared.Map; -using Robust.Shared.Serialization; namespace Content.Shared.Explosion; @@ -20,3 +19,34 @@ public record struct GetExplosionResistanceEvent(string ExplosionPrototype) : II SlotFlags IInventoryRelayEvent.TargetSlots => ~SlotFlags.POCKET; } + +/// +/// This event is raised directed at an entity that is about to receive damage from an explosion. It can be used to +/// recursively add contained/child entities that should also receive damage. E.g., entities in a player's inventory +/// or backpack. This event will be raised recursively so a matchbox in a backpack in a player's inventory +/// will also receive this event. +/// +[ByRefEvent] +public record struct BeforeExplodeEvent(DamageSpecifier Damage, string Id, List Contents) +{ + /// + /// The damage that will be received by this entity. Note that the entity's explosion resistance has already been + /// used to modify this damage. + /// + public readonly DamageSpecifier Damage = Damage; + + /// + /// ID of the explosion prototype. + /// + public readonly string Id = Id; + + /// + /// Damage multiplier for modifying the damage that will get dealt to contained entities. + /// + public float DamageCoefficient = 1; + + /// + /// Contained/child entities that should receive recursive explosion damage. + /// + public readonly List Contents = Contents; +} diff --git a/Content.Shared/Explosion/ExplosionPrototype.cs b/Content.Shared/Explosion/ExplosionPrototype.cs index a2fa7d632e..1be3e31939 100644 --- a/Content.Shared/Explosion/ExplosionPrototype.cs +++ b/Content.Shared/Explosion/ExplosionPrototype.cs @@ -14,7 +14,7 @@ namespace Content.Shared.Explosion; /// that map of airtight entities. This could be done, but is just not yet implemented. /// [Prototype("explosion")] -public sealed class ExplosionPrototype : IPrototype +public sealed partial class ExplosionPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; @@ -62,8 +62,26 @@ public sealed class ExplosionPrototype : IPrototype [DataField("fireColor")] public Color? FireColor; - [DataField("Sound")] - public SoundSpecifier Sound = new SoundCollectionSpecifier("explosion"); + /// + /// If an explosion finishes in less than this many iterations, play a small sound instead. + /// + /// + /// This value is tuned such that a minibomb is considered small, but just about anything larger is normal + /// + [DataField("smallSoundIterationThreshold")] + public int SmallSoundIterationThreshold = 6; + + [DataField("sound")] + public SoundSpecifier Sound = new SoundCollectionSpecifier("Explosion"); + + [DataField("smallSound")] + public SoundSpecifier SmallSound = new SoundCollectionSpecifier("ExplosionSmall"); + + [DataField("soundFar")] + public SoundSpecifier SoundFar = new SoundCollectionSpecifier("ExplosionFar", AudioParams.Default.WithVolume(2f)); + + [DataField("smallSoundFar")] + public SoundSpecifier SmallSoundFar = new SoundCollectionSpecifier("ExplosionSmallFar", AudioParams.Default.WithVolume(2f)); [DataField("texturePath")] public ResPath TexturePath = new("/Textures/Effects/fire.rsi"); diff --git a/Content.Shared/Eye/Blinding/Components/BlindableComponent.cs b/Content.Shared/Eye/Blinding/Components/BlindableComponent.cs index 32bd4c1c79..15f008e6ea 100644 --- a/Content.Shared/Eye/Blinding/Components/BlindableComponent.cs +++ b/Content.Shared/Eye/Blinding/Components/BlindableComponent.cs @@ -24,7 +24,7 @@ public sealed partial class BlindableComponent : Component [ViewVariables(VVAccess.ReadWrite), DataField("EyeDamage"), AutoNetworkedField] public int EyeDamage = 0; - public const int MaxDamage = 8; + public const int MaxDamage = 3; /// /// Used to ensure that this doesn't break with sandbox or admin tools. diff --git a/Content.Shared/Eye/Blinding/Components/BlurryVisionComponent.cs b/Content.Shared/Eye/Blinding/Components/BlurryVisionComponent.cs index 8182dfe974..a0a64ba46e 100644 --- a/Content.Shared/Eye/Blinding/Components/BlurryVisionComponent.cs +++ b/Content.Shared/Eye/Blinding/Components/BlurryVisionComponent.cs @@ -17,5 +17,5 @@ public sealed partial class BlurryVisionComponent : Component [ViewVariables(VVAccess.ReadWrite), DataField("magnitude"), AutoNetworkedField] public float Magnitude; - public const float MaxMagnitude = 10; + public const float MaxMagnitude = 3; } diff --git a/Content.Shared/Follower/FollowerSystem.cs b/Content.Shared/Follower/FollowerSystem.cs index 58a94d1723..41ee215fe2 100644 --- a/Content.Shared/Follower/FollowerSystem.cs +++ b/Content.Shared/Follower/FollowerSystem.cs @@ -162,8 +162,6 @@ public void StartFollowingEntity(EntityUid follower, EntityUid entity) if (TryComp(follower, out var joints)) _jointSystem.ClearJoints(follower, joints); - _physicsSystem.SetLinearVelocity(follower, Vector2.Zero); - var xform = Transform(follower); _containerSystem.AttachParentToContainerOrGrid((follower, xform)); @@ -173,6 +171,8 @@ public void StartFollowingEntity(EntityUid follower, EntityUid entity) _transform.SetCoordinates(follower, xform, new EntityCoordinates(entity, Vector2.Zero), rotation: Angle.Zero); } + _physicsSystem.SetLinearVelocity(follower, Vector2.Zero); + EnsureComp(follower); var followerEv = new StartedFollowingEntityEvent(entity, follower); diff --git a/Content.Shared/Forensics/Events.cs b/Content.Shared/Forensics/Events.cs index d49bb24fbb..7300b78d76 100644 --- a/Content.Shared/Forensics/Events.cs +++ b/Content.Shared/Forensics/Events.cs @@ -24,3 +24,30 @@ public ForensicPadDoAfterEvent(string sample) public override DoAfterEvent Clone() => this; } + +[Serializable, NetSerializable] +public sealed partial class CleanForensicsDoAfterEvent : SimpleDoAfterEvent +{ +} + +/// +/// An event to apply DNA evidence from a donor onto some recipient. +/// +[ByRefEvent] +public record struct TransferDnaEvent() +{ + /// + /// The entity donating the DNA. + /// + public EntityUid Donor; + + /// + /// The entity receiving the DNA. + /// + public EntityUid Recipient; + + /// + /// Can the DNA be cleaned off? + /// + public bool CanDnaBeCleaned = true; +} diff --git a/Content.Shared/Forensics/ForensicScannerEvent.cs b/Content.Shared/Forensics/ForensicScannerEvent.cs index f305125b99..ce84b1f7b3 100644 --- a/Content.Shared/Forensics/ForensicScannerEvent.cs +++ b/Content.Shared/Forensics/ForensicScannerEvent.cs @@ -8,6 +8,7 @@ public sealed class ForensicScannerBoundUserInterfaceState : BoundUserInterfaceS public readonly List Fingerprints = new(); public readonly List Fibers = new(); public readonly List DNAs = new(); + public readonly List Residues = new(); public readonly string LastScannedName = string.Empty; public readonly TimeSpan PrintCooldown = TimeSpan.Zero; public readonly TimeSpan PrintReadyAt = TimeSpan.Zero; @@ -16,6 +17,7 @@ public ForensicScannerBoundUserInterfaceState( List fingerprints, List fibers, List dnas, + List residues, string lastScannedName, TimeSpan printCooldown, TimeSpan printReadyAt) @@ -23,6 +25,7 @@ public ForensicScannerBoundUserInterfaceState( Fingerprints = fingerprints; Fibers = fibers; DNAs = dnas; + Residues = residues; LastScannedName = lastScannedName; PrintCooldown = printCooldown; PrintReadyAt = printReadyAt; diff --git a/Content.Shared/Gateway/GatewayUi.cs b/Content.Shared/Gateway/GatewayUi.cs index 75518c2be8..248588c779 100644 --- a/Content.Shared/Gateway/GatewayUi.cs +++ b/Content.Shared/Gateway/GatewayUi.cs @@ -1,4 +1,5 @@ using Robust.Shared.Serialization; +using Robust.Shared.Utility; namespace Content.Shared.Gateway; @@ -26,7 +27,7 @@ public sealed class GatewayBoundUserInterfaceState : BoundUserInterfaceState /// /// List of enabled destinations and information about them. /// - public readonly List<(NetEntity, string, TimeSpan, bool)> Destinations; + public readonly List Destinations; /// /// Which destination it is currently linked to, if any. @@ -34,25 +35,52 @@ public sealed class GatewayBoundUserInterfaceState : BoundUserInterfaceState public readonly NetEntity? Current; /// - /// Time the portal will close at. + /// Next time the portal is ready to be used. /// - public readonly TimeSpan NextClose; + public readonly TimeSpan NextReady; + + public readonly TimeSpan Cooldown; + + /// + /// Next time the destination generator unlocks another destination. + /// + public readonly TimeSpan NextUnlock; /// - /// Time the portal last opened at. + /// How long an unlock takes. /// - public readonly TimeSpan LastOpen; + public readonly TimeSpan UnlockTime; - public GatewayBoundUserInterfaceState(List<(NetEntity, string, TimeSpan, bool)> destinations, - NetEntity? current, TimeSpan nextClose, TimeSpan lastOpen) + public GatewayBoundUserInterfaceState(List destinations, + NetEntity? current, TimeSpan nextReady, TimeSpan cooldown, TimeSpan nextUnlock, TimeSpan unlockTime) { Destinations = destinations; Current = current; - NextClose = nextClose; - LastOpen = lastOpen; + NextReady = nextReady; + Cooldown = cooldown; + NextUnlock = nextUnlock; + UnlockTime = unlockTime; } } +[Serializable, NetSerializable] +public record struct GatewayDestinationData +{ + public NetEntity Entity; + + public FormattedMessage Name; + + /// + /// Is the portal currently open. + /// + public bool Portal; + + /// + /// Is the map the gateway on locked or unlocked. + /// + public bool Locked; +} + [Serializable, NetSerializable] public sealed class GatewayOpenPortalMessage : BoundUserInterfaceMessage { diff --git a/Content.Shared/Gateway/SharedGatewayGeneratorSystem.cs b/Content.Shared/Gateway/SharedGatewayGeneratorSystem.cs new file mode 100644 index 0000000000..3145b07cce --- /dev/null +++ b/Content.Shared/Gateway/SharedGatewayGeneratorSystem.cs @@ -0,0 +1,12 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.Gateway; + +/// +/// Sent from client to server upon taking a gateway destination. +/// +[Serializable, NetSerializable] +public sealed class GatewayDestinationMessage : EntityEventArgs +{ + public int Index; +} diff --git a/Content.Shared/Ghost/GhostComponent.cs b/Content.Shared/Ghost/GhostComponent.cs index 9090af4dba..f7717e8d23 100644 --- a/Content.Shared/Ghost/GhostComponent.cs +++ b/Content.Shared/Ghost/GhostComponent.cs @@ -8,10 +8,6 @@ namespace Content.Shared.Ghost; [AutoGenerateComponentState(true)] public sealed partial class GhostComponent : Component { - // I have no idea what this means I just wanted to kill comp references. - [ViewVariables] - public bool IsAttached; - // Actions [DataField] public EntProtoId ToggleLightingAction = "ActionToggleLighting"; @@ -48,10 +44,10 @@ public sealed partial class GhostComponent : Component [ViewVariables(VVAccess.ReadWrite), DataField] public TimeSpan TimeOfDeath = TimeSpan.Zero; - [DataField("booRadius")] + [DataField("booRadius"), ViewVariables(VVAccess.ReadWrite)] public float BooRadius = 3; - [DataField("booMaxTargets")] + [DataField("booMaxTargets"), ViewVariables(VVAccess.ReadWrite)] public int BooMaxTargets = 3; // TODO: instead of this funny stuff just give it access and update in system dirtying when needed diff --git a/Content.Shared/HUD/HudThemePrototype.cs b/Content.Shared/HUD/HudThemePrototype.cs index bdf6f056dc..deb62c9b66 100644 --- a/Content.Shared/HUD/HudThemePrototype.cs +++ b/Content.Shared/HUD/HudThemePrototype.cs @@ -3,7 +3,7 @@ namespace Content.Shared.HUD { [Prototype("hudTheme")] - public sealed class HudThemePrototype : IPrototype + public sealed partial class HudThemePrototype : IPrototype { [DataField("name", required: true)] public string Name { get; private set; } = string.Empty; diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs index 77752c4fbd..d474391f17 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs @@ -163,6 +163,9 @@ public virtual void DoDrop(EntityUid uid, Hand hand, bool doDropInteraction = tr var entity = hand.Container.ContainedEntity.Value; + if (TerminatingOrDeleted(uid) || TerminatingOrDeleted(entity)) + return; + if (!hand.Container.Remove(entity, EntityManager)) { Log.Error($"Failed to remove {ToPrettyString(entity)} from users hand container when dropping. User: {ToPrettyString(uid)}. Hand: {hand.Name}."); diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs index dfa72fcfb7..712e0192db 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs @@ -182,7 +182,9 @@ public bool TryMoveHeldEntityToActiveHand(EntityUid uid, string handName, bool c //TODO: Actually shows all items/clothing/etc. private void HandleExamined(EntityUid uid, HandsComponent handsComp, ExaminedEvent args) { - var held = EnumerateHeld(uid, handsComp).ToList(); + var held = EnumerateHeld(uid, handsComp) + .Where(x => !HasComp(x)).ToList(); + if (!held.Any()) { args.PushText(Loc.GetString("comp-hands-examine-empty", @@ -191,7 +193,6 @@ private void HandleExamined(EntityUid uid, HandsComponent handsComp, ExaminedEve } var heldList = ContentLocalizationManager.FormatList(held - .Where(x => !HasComp(x)) .Select(x => Loc.GetString("comp-hands-examine-wrapper", ("item", Identity.Entity(x, EntityManager)))).ToList()); diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Relay.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Relay.cs new file mode 100644 index 0000000000..9e8e0fa744 --- /dev/null +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Relay.cs @@ -0,0 +1,21 @@ +using Content.Shared.Hands.Components; +using Content.Shared.Movement.Systems; + +namespace Content.Shared.Hands.EntitySystems; + +public abstract partial class SharedHandsSystem +{ + private void InitializeRelay() + { + SubscribeLocalEvent(RelayEvent); + } + + private void RelayEvent(Entity entity, ref T args) where T : EntityEventArgs + { + var ev = new HeldRelayedEvent(args); + foreach (var held in EnumerateHeld(entity, entity.Comp)) + { + RaiseLocalEvent(held, ref ev); + } + } +} diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.cs index 6b786fdfaa..4f34d6fc54 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.cs @@ -31,6 +31,7 @@ public override void Initialize() InitializeDrop(); InitializePickup(); InitializeVirtual(); + InitializeRelay(); } public override void Shutdown() diff --git a/Content.Shared/Hands/HandEvents.cs b/Content.Shared/Hands/HandEvents.cs index 059728ff4d..0499c05f42 100644 --- a/Content.Shared/Hands/HandEvents.cs +++ b/Content.Shared/Hands/HandEvents.cs @@ -319,4 +319,15 @@ public HandCountChangedEvent(EntityUid sender) public EntityUid Sender { get; } } + + [ByRefEvent] + public sealed class HeldRelayedEvent : EntityEventArgs + { + public TEvent Args; + + public HeldRelayedEvent(TEvent args) + { + Args = args; + } + } } diff --git a/Content.Shared/Humanoid/Markings/MarkingManager.cs b/Content.Shared/Humanoid/Markings/MarkingManager.cs index 68f7cfe362..7bf0be998b 100644 --- a/Content.Shared/Humanoid/Markings/MarkingManager.cs +++ b/Content.Shared/Humanoid/Markings/MarkingManager.cs @@ -1,4 +1,6 @@ +using System.Collections.Frozen; using System.Diagnostics.CodeAnalysis; +using System.Linq; using Content.Shared.Humanoid.Prototypes; using Robust.Shared.Prototypes; @@ -9,33 +11,41 @@ public sealed class MarkingManager [Dependency] private readonly IPrototypeManager _prototypeManager = default!; private readonly List _index = new(); - private readonly Dictionary> _markingDict = new(); - private readonly Dictionary _markings = new(); + public FrozenDictionary> CategorizedMarkings = default!; + public FrozenDictionary Markings = default!; public void Initialize() { _prototypeManager.PrototypesReloaded += OnPrototypeReload; + CachePrototypes(); + } + + private void CachePrototypes() + { + _index.Clear(); + var markingDict = new Dictionary>(); foreach (var category in Enum.GetValues()) { - _markingDict.Add(category, new Dictionary()); + markingDict.Add(category, new()); } foreach (var prototype in _prototypeManager.EnumeratePrototypes()) { _index.Add(prototype); - _markingDict[prototype.MarkingCategory].Add(prototype.ID, prototype); - _markings.Add(prototype.ID, prototype); + markingDict[prototype.MarkingCategory].Add(prototype.ID, prototype); } - } - public IReadOnlyDictionary Markings => _markings; - public IReadOnlyDictionary> CategorizedMarkings => _markingDict; + Markings = _prototypeManager.EnumeratePrototypes().ToFrozenDictionary(x => x.ID); + CategorizedMarkings = markingDict.ToFrozenDictionary( + x => x.Key, + x => x.Value.ToFrozenDictionary()); + } - public IReadOnlyDictionary MarkingsByCategory(MarkingCategories category) + public FrozenDictionary MarkingsByCategory(MarkingCategories category) { // all marking categories are guaranteed to have a dict entry - return _markingDict[category]; + return CategorizedMarkings[category]; } /// @@ -143,7 +153,7 @@ public IReadOnlyDictionary MarkingsByCategoryAndSpecie public bool TryGetMarking(Marking marking, [NotNullWhen(true)] out MarkingPrototype? markingResult) { - return _markings.TryGetValue(marking.MarkingId, out markingResult); + return Markings.TryGetValue(marking.MarkingId, out markingResult); } /// @@ -178,17 +188,8 @@ public bool IsValidMarking(Marking marking, MarkingCategories category, string s private void OnPrototypeReload(PrototypesReloadedEventArgs args) { - if(!args.ByType.TryGetValue(typeof(MarkingPrototype), out var set)) - return; - - - _index.RemoveAll(i => set.Modified.ContainsKey(i.ID)); - - foreach (var prototype in set.Modified.Values) - { - var markingPrototype = (MarkingPrototype) prototype; - _index.Add(markingPrototype); - } + if (args.WasModified()) + CachePrototypes(); } public bool CanBeApplied(string species, Sex sex, Marking marking, IPrototypeManager? prototypeManager = null) diff --git a/Content.Shared/Humanoid/Markings/MarkingPoints.cs b/Content.Shared/Humanoid/Markings/MarkingPoints.cs index 41009f95c0..c9784728e7 100644 --- a/Content.Shared/Humanoid/Markings/MarkingPoints.cs +++ b/Content.Shared/Humanoid/Markings/MarkingPoints.cs @@ -35,7 +35,7 @@ public static Dictionary CloneMarkingPointDict } [Prototype("markingPoints")] -public sealed class MarkingPointsPrototype : IPrototype +public sealed partial class MarkingPointsPrototype : IPrototype { [IdDataField] public string ID { get; } = default!; diff --git a/Content.Shared/Humanoid/Markings/MarkingPrototype.cs b/Content.Shared/Humanoid/Markings/MarkingPrototype.cs index 19cb1773c9..dfb594db5f 100644 --- a/Content.Shared/Humanoid/Markings/MarkingPrototype.cs +++ b/Content.Shared/Humanoid/Markings/MarkingPrototype.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Humanoid.Markings { [Prototype("marking")] - public sealed class MarkingPrototype : IPrototype + public sealed partial class MarkingPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = "uwu"; diff --git a/Content.Shared/Humanoid/Prototypes/HumanoidProfilePrototype.cs b/Content.Shared/Humanoid/Prototypes/HumanoidProfilePrototype.cs index 7755e3113c..bd023e2d21 100644 --- a/Content.Shared/Humanoid/Prototypes/HumanoidProfilePrototype.cs +++ b/Content.Shared/Humanoid/Prototypes/HumanoidProfilePrototype.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Humanoid.Prototypes; [Prototype("humanoidProfile")] -public sealed class HumanoidProfilePrototype : IPrototype +public sealed partial class HumanoidProfilePrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Shared/Humanoid/Prototypes/HumanoidSpritePrototypes.cs b/Content.Shared/Humanoid/Prototypes/HumanoidSpritePrototypes.cs index b185a6a502..097dc9d466 100644 --- a/Content.Shared/Humanoid/Prototypes/HumanoidSpritePrototypes.cs +++ b/Content.Shared/Humanoid/Prototypes/HumanoidSpritePrototypes.cs @@ -1,4 +1,3 @@ -using Content.Shared.Humanoid.Markings; using Robust.Shared.Prototypes; using Robust.Shared.Utility; @@ -9,7 +8,7 @@ namespace Content.Shared.Humanoid.Prototypes; /// or settings per layer) /// [Prototype("speciesBaseSprites")] -public sealed class HumanoidSpeciesBaseSpritesPrototype : IPrototype +public sealed partial class HumanoidSpeciesBaseSpritesPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; @@ -30,7 +29,7 @@ public sealed class HumanoidSpeciesBaseSpritesPrototype : IPrototype /// that sprite (or at least, the layer this sprite is on). /// [Prototype("humanoidBaseSprite")] -public sealed class HumanoidSpeciesSpriteLayer : IPrototype +public sealed partial class HumanoidSpeciesSpriteLayer : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Shared/Humanoid/Prototypes/RandomHumanoidSettingsPrototype.cs b/Content.Shared/Humanoid/Prototypes/RandomHumanoidSettingsPrototype.cs index 907adc42dc..ec6818221a 100644 --- a/Content.Shared/Humanoid/Prototypes/RandomHumanoidSettingsPrototype.cs +++ b/Content.Shared/Humanoid/Prototypes/RandomHumanoidSettingsPrototype.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Humanoid.Prototypes; /// This is what is used to change a humanoid spawned by RandomHumanoidSystem in Content.Server. /// [Prototype("randomHumanoidSettings")] -public sealed class RandomHumanoidSettingsPrototype : IPrototype, IInheritingPrototype +public sealed partial class RandomHumanoidSettingsPrototype : IPrototype, IInheritingPrototype { [IdDataField] public string ID { get; } = default!; diff --git a/Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs b/Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs index c1e8f24189..e4adb4d55b 100644 --- a/Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs +++ b/Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Humanoid.Prototypes; [Prototype("species")] -public sealed class SpeciesPrototype : IPrototype +public sealed partial class SpeciesPrototype : IPrototype { /// /// Prototype ID of the species. diff --git a/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs b/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs index a61470bfdf..02e29549d4 100644 --- a/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs +++ b/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs @@ -67,13 +67,13 @@ public void SetLayerVisibility(EntityUid uid, bool permanent = false, HumanoidAppearanceComponent? humanoid = null) { - if (!Resolve(uid, ref humanoid)) + if (!Resolve(uid, ref humanoid, false)) return; var dirty = false; SetLayerVisibility(uid, humanoid, layer, visible, permanent, ref dirty); if (dirty) - Dirty(humanoid); + Dirty(uid, humanoid); } /// diff --git a/Content.Shared/IdentityManagement/SharedIdentitySystem.cs b/Content.Shared/IdentityManagement/SharedIdentitySystem.cs index a671884089..7cb5f41b8a 100644 --- a/Content.Shared/IdentityManagement/SharedIdentitySystem.cs +++ b/Content.Shared/IdentityManagement/SharedIdentitySystem.cs @@ -1,3 +1,4 @@ +using Content.Shared.Clothing; using Content.Shared.IdentityManagement.Components; using Content.Shared.Inventory; using Robust.Shared.Containers; @@ -16,6 +17,7 @@ public override void Initialize() SubscribeLocalEvent(OnComponentInit); SubscribeLocalEvent(OnSeeIdentity); SubscribeLocalEvent>((e, c, ev) => OnSeeIdentity(e, c, ev.Args)); + SubscribeLocalEvent(OnMaskToggled); } private void OnSeeIdentity(EntityUid uid, IdentityBlockerComponent component, SeeIdentityAttemptEvent args) @@ -28,4 +30,9 @@ protected virtual void OnComponentInit(EntityUid uid, IdentityComponent componen { component.IdentityEntitySlot = _container.EnsureContainer(uid, SlotName); } + + private void OnMaskToggled(Entity ent, ref ItemMaskToggledEvent args) + { + ent.Comp.Enabled = !args.IsToggled; + } } diff --git a/Content.Shared/Implants/SharedImplanterSystem.cs b/Content.Shared/Implants/SharedImplanterSystem.cs index 404e6da508..6c8284b9be 100644 --- a/Content.Shared/Implants/SharedImplanterSystem.cs +++ b/Content.Shared/Implants/SharedImplanterSystem.cs @@ -3,12 +3,14 @@ using Content.Shared.Containers.ItemSlots; using Content.Shared.DoAfter; using Content.Shared.Examine; +using Content.Shared.Forensics; using Content.Shared.IdentityManagement; using Content.Shared.Implants.Components; using Content.Shared.Popups; using Content.Shared.Whitelist; using Robust.Shared.Containers; using Robust.Shared.Serialization; +using Robust.Shared.Utility; namespace Content.Shared.Implants; @@ -71,6 +73,9 @@ public void Implant(EntityUid user, EntityUid target, EntityUid implanter, Impla else ImplantMode(implanter, component); + var ev = new TransferDnaEvent { Donor = target, Recipient = implanter }; + RaiseLocalEvent(target, ref ev); + Dirty(component); } @@ -82,7 +87,7 @@ public bool CanImplant( [NotNullWhen(true)] out EntityUid? implant, [NotNullWhen(true)] out SubdermalImplantComponent? implantComp) { - implant = component.ImplanterSlot.ContainerSlot?.ContainedEntities.FirstOrDefault(); + implant = component.ImplanterSlot.ContainerSlot?.ContainedEntities.FirstOrNull(); if (!TryComp(implant, out implantComp)) return false; @@ -139,6 +144,10 @@ public void Draw(EntityUid implanter, EntityUid user, EntityUid target, Implante implantComp.ImplantedEntity = null; implanterContainer.Insert(implant); permanentFound = implantComp.Permanent; + + var ev = new TransferDnaEvent { Donor = target, Recipient = implanter }; + RaiseLocalEvent(target, ref ev); + //Break so only one implant is drawn break; } diff --git a/Content.Shared/Input/ContentKeyFunctions.cs b/Content.Shared/Input/ContentKeyFunctions.cs index 840320b0d3..f4307cd058 100644 --- a/Content.Shared/Input/ContentKeyFunctions.cs +++ b/Content.Shared/Input/ContentKeyFunctions.cs @@ -84,23 +84,6 @@ public static BoundKeyFunction[] GetHotbarBoundKeys() => Hotbar1, Hotbar2, Hotbar3, Hotbar4, Hotbar5, Hotbar6, Hotbar7, Hotbar8, Hotbar9, Hotbar0 }; - public static readonly BoundKeyFunction Loadout0 = "Loadout0"; - public static readonly BoundKeyFunction Loadout1 = "Loadout1"; - public static readonly BoundKeyFunction Loadout2 = "Loadout2"; - public static readonly BoundKeyFunction Loadout3 = "Loadout3"; - public static readonly BoundKeyFunction Loadout4 = "Loadout4"; - public static readonly BoundKeyFunction Loadout5 = "Loadout5"; - public static readonly BoundKeyFunction Loadout6 = "Loadout6"; - public static readonly BoundKeyFunction Loadout7 = "Loadout7"; - public static readonly BoundKeyFunction Loadout8 = "Loadout8"; - public static readonly BoundKeyFunction Loadout9 = "Loadout9"; - - public static BoundKeyFunction[] GetLoadoutBoundKeys() => - new[] - { - Loadout1, Loadout2, Loadout3, Loadout4, Loadout5, Loadout6, Loadout7, Loadout8, Loadout9, Loadout0 - }; - public static readonly BoundKeyFunction Vote0 = "Vote0"; public static readonly BoundKeyFunction Vote1 = "Vote1"; public static readonly BoundKeyFunction Vote2 = "Vote2"; diff --git a/Content.Shared/Interaction/SharedInteractionSystem.cs b/Content.Shared/Interaction/SharedInteractionSystem.cs index 7981deaee6..44cf325567 100644 --- a/Content.Shared/Interaction/SharedInteractionSystem.cs +++ b/Content.Shared/Interaction/SharedInteractionSystem.cs @@ -1044,25 +1044,6 @@ public bool AltInteract(EntityUid user, EntityUid target) } #endregion - #region Throw - /// - /// Calls Thrown on all components that implement the IThrown interface - /// on an entity that has been thrown. - /// - public void ThrownInteraction(EntityUid user, EntityUid thrown) - { - var throwMsg = new ThrownEvent(user, thrown); - RaiseLocalEvent(thrown, throwMsg, true); - if (throwMsg.Handled) - { - _adminLogger.Add(LogType.Throw, LogImpact.Low,$"{ToPrettyString(user):user} threw {ToPrettyString(thrown):entity}"); - return; - } - - _adminLogger.Add(LogType.Throw, LogImpact.Low,$"{ToPrettyString(user):user} threw {ToPrettyString(thrown):entity}"); - } - #endregion - public void DroppedInteraction(EntityUid user, EntityUid item) { var dropMsg = new DroppedEvent(user); diff --git a/Content.Shared/Inventory/InventoryComponent.cs b/Content.Shared/Inventory/InventoryComponent.cs index 07a2463d12..2a8710f0f2 100644 --- a/Content.Shared/Inventory/InventoryComponent.cs +++ b/Content.Shared/Inventory/InventoryComponent.cs @@ -1,4 +1,5 @@ -using Robust.Shared.GameStates; +using Robust.Shared.Containers; +using Robust.Shared.GameStates; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.Inventory; @@ -11,4 +12,7 @@ public sealed partial class InventoryComponent : Component public string TemplateId { get; private set; } = "human"; [DataField("speciesId")] public string? SpeciesId { get; set; } + + public SlotDefinition[] Slots = Array.Empty(); + public ContainerSlot[] Containers = Array.Empty(); } diff --git a/Content.Shared/Inventory/InventorySystem.Equip.cs b/Content.Shared/Inventory/InventorySystem.Equip.cs index 90c9f0e1e0..fd990d17e2 100644 --- a/Content.Shared/Inventory/InventorySystem.Equip.cs +++ b/Content.Shared/Inventory/InventorySystem.Equip.cs @@ -11,10 +11,13 @@ using Content.Shared.Popups; using Content.Shared.Strip.Components; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Network; using Robust.Shared.Player; +using Robust.Shared.Prototypes; using Robust.Shared.Timing; +using Robust.Shared.Utility; namespace Content.Shared.Inventory; @@ -23,6 +26,8 @@ public abstract partial class InventorySystem [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly MovementSpeedModifierSystem _movementSpeed = default!; [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; + [Dependency] private readonly SharedItemSystem _item = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedContainerSystem _containerSystem = default!; [Dependency] private readonly SharedHandsSystem _handsSystem = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; @@ -40,12 +45,10 @@ private void InitializeEquip() protected void QuickEquip(EntityUid uid, ClothingComponent component, UseInHandEvent args) { - if (!TryComp(args.User, out InventoryComponent? inv) - || !TryComp(args.User, out HandsComponent? hands) - || !_prototypeManager.TryIndex(inv.TemplateId, out var prototype)) + if (!TryComp(args.User, out InventoryComponent? inv) || !HasComp(args.User)) return; - foreach (var slotDef in prototype.Slots) + foreach (var slotDef in inv.Slots) { if (!CanEquip(args.User, uid, slotDef.Name, out _, slotDef, inv)) continue; @@ -191,25 +194,12 @@ public bool TryEquip(EntityUid actor, EntityUid target, EntityUid itemUid, strin return false; } - if(!silent && clothing != null && clothing.EquipSound != null && _gameTiming.IsFirstTimePredicted) + if (!silent && clothing != null && clothing.EquipSound != null) { - Filter filter; - - if (_netMan.IsClient) - filter = Filter.Local(); - else - { - filter = Filter.Pvs(target); - - // don't play double audio for predicted interactions - if (predicted) - filter.RemoveWhereAttachedEntity(entity => entity == actor); - } - - SoundSystem.Play(clothing.EquipSound.GetSound(), filter, target, clothing.EquipSound.Params.WithVolume(-2f)); + _audio.PlayPredicted(clothing.EquipSound, target, actor); } - inventory.Dirty(); + Dirty(target, inventory); _movementSpeed.RefreshMovementSpeedModifiers(target); @@ -261,6 +251,7 @@ public bool CanEquip(EntityUid actor, EntityUid target, EntityUid itemUid, strin if (slotDefinition == null && !TryGetSlot(target, slot, out slotDefinition, inventory: inventory)) return false; + DebugTools.Assert(slotDefinition.Name == slot); if (slotDefinition.DependsOn != null && !TryGetSlotEntity(target, slotDefinition.DependsOn, out _, inventory)) return false; @@ -335,6 +326,10 @@ public bool TryUnequip(EntityUid actor, EntityUid target, string slot, [NotNullW bool force = false, bool predicted = false, InventoryComponent? inventory = null, ClothingComponent? clothing = null) { removedItem = null; + + if (TerminatingOrDeleted(target)) + return false; + if (!Resolve(target, ref inventory, false)) { if(!silent && _gameTiming.IsFirstTimePredicted) @@ -351,7 +346,8 @@ public bool TryUnequip(EntityUid actor, EntityUid target, string slot, [NotNullW removedItem = slotContainer.ContainedEntity; - if (!removedItem.HasValue) return false; + if (!removedItem.HasValue || TerminatingOrDeleted(removedItem.Value)) + return false; if (!force && !CanUnequip(actor, target, slot, out var reason, slotContainer, slotDefinition, inventory)) { @@ -364,7 +360,7 @@ public bool TryUnequip(EntityUid actor, EntityUid target, string slot, [NotNullW if (!force && !_containerSystem.CanRemove(removedItem.Value, slotContainer)) return false; - foreach (var slotDef in GetSlots(target, inventory)) + foreach (var slotDef in inventory.Slots) { if (slotDef != slotDefinition && slotDef.DependsOn == slotDefinition.Name) { @@ -376,27 +372,18 @@ public bool TryUnequip(EntityUid actor, EntityUid target, string slot, [NotNullW if (!slotContainer.Remove(removedItem.Value, force: force)) return false; - _transform.DropNextTo(removedItem.Value, target); + // TODO: Inventory needs a hot cleanup hoo boy + // Check if something else (AKA toggleable) dumped it into a container. + if (!_containerSystem.IsEntityInContainer(removedItem.Value)) + _transform.DropNextTo(removedItem.Value, target); - if (!silent && Resolve(removedItem.Value, ref clothing, false) && clothing.UnequipSound != null && _gameTiming.IsFirstTimePredicted) + if (!silent && Resolve(removedItem.Value, ref clothing, false) && clothing.UnequipSound != null) { - Filter filter; - - if (_netMan.IsClient) - filter = Filter.Local(); - else - { - filter = Filter.Pvs(target); - - // don't play double audio for predicted interactions - if (predicted) - filter.RemoveWhereAttachedEntity(entity => entity == actor); - } - - SoundSystem.Play(clothing.UnequipSound.GetSound(), filter, target, clothing.UnequipSound.Params.WithVolume(-2f)); + _audio.PlayPredicted(clothing.UnequipSound, target, actor); } Dirty(target, inventory); + _movementSpeed.RefreshMovementSpeedModifiers(target); return true; diff --git a/Content.Shared/Inventory/InventorySystem.Helpers.cs b/Content.Shared/Inventory/InventorySystem.Helpers.cs index 0e24d2ec24..b1212abe67 100644 --- a/Content.Shared/Inventory/InventorySystem.Helpers.cs +++ b/Content.Shared/Inventory/InventorySystem.Helpers.cs @@ -10,11 +10,11 @@ public partial class InventorySystem /// /// Yields all entities in hands or inventory slots with the specific flags. /// - public IEnumerable GetHandOrInventoryEntities(EntityUid user, SlotFlags flags = SlotFlags.All) + public IEnumerable GetHandOrInventoryEntities(Entity user, SlotFlags flags = SlotFlags.All) { - if (TryComp(user, out var handsComp)) + if (Resolve(user.Owner, ref user.Comp1, false)) { - foreach (var hand in handsComp.Hands.Values) + foreach (var hand in user.Comp1.Hands.Values) { if (hand.HeldEntity == null) continue; @@ -23,27 +23,22 @@ public IEnumerable GetHandOrInventoryEntities(EntityUid user, SlotFla } } - if (TryComp(user, out var inventoryComp)) - { - var slotEnumerator = new ContainerSlotEnumerator(user, inventoryComp.TemplateId, - _prototypeManager, this, flags); - - while (slotEnumerator.MoveNext(out var slot)) - { - if (slot.ContainedEntity == null) - continue; + if (!Resolve(user.Owner, ref user.Comp2, false)) + yield break; - yield return slot.ContainedEntity.Value; - } + var slotEnumerator = new InventorySlotEnumerator(user.Comp2, flags); + while (slotEnumerator.NextItem(out var item)) + { + yield return item; } } /// /// Returns the definition of the inventory slot that the given entity is currently in.. /// - public bool TryGetContainingSlot(EntityUid uid, [NotNullWhen(true)] out SlotDefinition? slot) + public bool TryGetContainingSlot(Entity entity, [NotNullWhen(true)] out SlotDefinition? slot) { - if (!_containerSystem.TryGetContainingContainer(uid, out var container)) + if (!_containerSystem.TryGetContainingContainer(entity.Owner, out var container, entity.Comp2, entity.Comp1)) { slot = null; return false; @@ -55,9 +50,10 @@ public bool TryGetContainingSlot(EntityUid uid, [NotNullWhen(true)] out SlotDefi /// /// Returns true if the given entity is equipped to an inventory slot with the given inventory slot flags. /// - public bool InSlotWithFlags(EntityUid uid, SlotFlags flags) + public bool InSlotWithFlags(Entity entity, SlotFlags flags) { - return TryGetContainingSlot(uid, out var slot) && ((slot.SlotFlags & flags) == flags); + return TryGetContainingSlot(entity, out var slot) + && (slot.SlotFlags & flags) == flags; } public bool SpawnItemInSlot(EntityUid uid, string slot, string prototype, bool silent = false, bool force = false, InventoryComponent? inventory = null) diff --git a/Content.Shared/Inventory/InventorySystem.Relay.cs b/Content.Shared/Inventory/InventorySystem.Relay.cs index fbe744911f..fb27811073 100644 --- a/Content.Shared/Inventory/InventorySystem.Relay.cs +++ b/Content.Shared/Inventory/InventorySystem.Relay.cs @@ -12,7 +12,6 @@ using Content.Shared.Strip.Components; using Content.Shared.Temperature; using Content.Shared.Verbs; -using Robust.Shared.Containers; namespace Content.Shared.Inventory; @@ -42,64 +41,60 @@ public void InitializeRelay() SubscribeLocalEvent>(RelayInventoryEvent); SubscribeLocalEvent>(RelayInventoryEvent); SubscribeLocalEvent>(RelayInventoryEvent); + SubscribeLocalEvent>(RelayInventoryEvent); SubscribeLocalEvent>(OnGetEquipmentVerbs); } protected void RefRelayInventoryEvent(EntityUid uid, InventoryComponent component, ref T args) where T : IInventoryRelayEvent { - var containerEnumerator = new ContainerSlotEnumerator(uid, component.TemplateId, _prototypeManager, this, args.TargetSlots); + RelayEvent((uid, component), ref args); + } - // this copies the by-ref event - var ev = new InventoryRelayedEvent(args); + protected void RelayInventoryEvent(EntityUid uid, InventoryComponent component, T args) where T : IInventoryRelayEvent + { + RelayEvent((uid, component), args); + } - while (containerEnumerator.MoveNext(out var container)) + public void RelayEvent(Entity inventory, ref T args) where T : IInventoryRelayEvent + { + if (args.TargetSlots == SlotFlags.NONE) + return; + + // this copies the by-ref event if it is a struct + var ev = new InventoryRelayedEvent(args); + var enumerator = new InventorySlotEnumerator(inventory, args.TargetSlots); + while (enumerator.NextItem(out var item)) { - if (!container.ContainedEntity.HasValue) continue; - RaiseLocalEvent(container.ContainedEntity.Value, ev); + RaiseLocalEvent(item, ev); } // and now we copy it back args = ev.Args; } - protected void RelayInventoryEvent(EntityUid uid, InventoryComponent component, T args) where T : IInventoryRelayEvent + public void RelayEvent(Entity inventory, T args) where T : IInventoryRelayEvent { if (args.TargetSlots == SlotFlags.NONE) return; - var containerEnumerator = new ContainerSlotEnumerator(uid, component.TemplateId, _prototypeManager, this, args.TargetSlots); var ev = new InventoryRelayedEvent(args); - while (containerEnumerator.MoveNext(out var container)) + var enumerator = new InventorySlotEnumerator(inventory, args.TargetSlots); + while (enumerator.NextItem(out var item)) { - if (!container.ContainedEntity.HasValue) continue; - RaiseLocalEvent(container.ContainedEntity.Value, ev); + RaiseLocalEvent(item, ev); } } private void OnGetEquipmentVerbs(EntityUid uid, InventoryComponent component, GetVerbsEvent args) { // Automatically relay stripping related verbs to all equipped clothing. - - if (!_prototypeManager.TryIndex(component.TemplateId, out InventoryTemplatePrototype? proto)) - return; - - if (!TryComp(uid, out ContainerManagerComponent? containers)) - return; - var ev = new InventoryRelayedEvent>(args); - foreach (var slotDef in proto.Slots) + var enumerator = new InventorySlotEnumerator(component); + while (enumerator.NextItem(out var item, out var slotDef)) { - if (slotDef.StripHidden && args.User != uid) - continue; - - if (!containers.TryGetContainer(slotDef.Name, out var container)) - continue; - - if (container is not ContainerSlot slot || slot.ContainedEntity is not { } ent) - continue; - - RaiseLocalEvent(ent, ev); + if (!slotDef.StripHidden || args.User == uid) + RaiseLocalEvent(item, ev); } } diff --git a/Content.Shared/Inventory/InventorySystem.Slots.cs b/Content.Shared/Inventory/InventorySystem.Slots.cs index 49915f186b..65b050c1c4 100644 --- a/Content.Shared/Inventory/InventorySystem.Slots.cs +++ b/Content.Shared/Inventory/InventorySystem.Slots.cs @@ -1,6 +1,7 @@ using System.Diagnostics.CodeAnalysis; using Robust.Shared.Containers; using Robust.Shared.Prototypes; +using Robust.Shared.Utility; namespace Content.Shared.Inventory; @@ -28,9 +29,14 @@ protected virtual void OnInit(EntityUid uid, InventoryComponent component, Compo if (!_prototypeManager.TryIndex(component.TemplateId, out InventoryTemplatePrototype? invTemplate)) return; - foreach (var slot in invTemplate.Slots) + component.Slots = invTemplate.Slots; + component.Containers = new ContainerSlot[component.Slots.Length]; + for (var i = 0; i < component.Containers.Length; i++) { - _containerSystem.EnsureContainer(uid, slot.Name).OccludesLight = false; + var slot = component.Slots[i]; + var container = _containerSystem.EnsureContainer(uid, slot.Name); + container.OccludesLight = false; + component.Containers[i] = container; } } @@ -52,7 +58,8 @@ public bool TryGetSlotContainer(EntityUid uid, string slot, [NotNullWhen(true)] return false; } - if (container is not ContainerSlot containerSlotChecked) return false; + if (container is not ContainerSlot containerSlotChecked) + return false; containerSlot = containerSlotChecked; return true; @@ -67,12 +74,10 @@ public bool TryGetSlot(EntityUid uid, string slot, [NotNullWhen(true)] out SlotD if (!Resolve(uid, ref inventory, false)) return false; - if (!_prototypeManager.TryIndex(inventory.TemplateId, out var templatePrototype)) - return false; - - foreach (var slotDef in templatePrototype.Slots) + foreach (var slotDef in inventory.Slots) { - if (!slotDef.Name.Equals(slot)) continue; + if (!slotDef.Name.Equals(slot)) + continue; slotDefinition = slotDef; return true; } @@ -80,33 +85,36 @@ public bool TryGetSlot(EntityUid uid, string slot, [NotNullWhen(true)] out SlotD return false; } - public bool TryGetContainerSlotEnumerator(EntityUid uid, out ContainerSlotEnumerator containerSlotEnumerator, InventoryComponent? component = null) + public bool TryGetContainerSlotEnumerator(Entity entity, out InventorySlotEnumerator containerSlotEnumerator, SlotFlags flags = SlotFlags.All) { - containerSlotEnumerator = default; - if (!Resolve(uid, ref component, false)) + if (!Resolve(entity.Owner, ref entity.Comp, false)) + { + containerSlotEnumerator = default; return false; + } - containerSlotEnumerator = new ContainerSlotEnumerator(uid, component.TemplateId, _prototypeManager, this); + containerSlotEnumerator = new InventorySlotEnumerator(entity.Comp, flags); return true; } - public bool TryGetSlots(EntityUid uid, [NotNullWhen(true)] out SlotDefinition[]? slotDefinitions, InventoryComponent? inventoryComponent = null) + public InventorySlotEnumerator GetSlotEnumerator(Entity entity, SlotFlags flags = SlotFlags.All) { - slotDefinitions = null; - if (!Resolve(uid, ref inventoryComponent, false)) - return false; + if (!Resolve(entity.Owner, ref entity.Comp)) + return InventorySlotEnumerator.Empty; - if (!_prototypeManager.TryIndex(inventoryComponent.TemplateId, out var templatePrototype)) - return false; - - slotDefinitions = templatePrototype.Slots; - return true; + return new InventorySlotEnumerator(entity.Comp, flags); } - public SlotDefinition[] GetSlots(EntityUid uid, InventoryComponent? inventoryComponent = null) + public bool TryGetSlots(EntityUid uid, [NotNullWhen(true)] out SlotDefinition[]? slotDefinitions) { - if (!Resolve(uid, ref inventoryComponent)) throw new InvalidOperationException(); - return _prototypeManager.Index(inventoryComponent.TemplateId).Slots; + if (!TryComp(uid, out InventoryComponent? inv)) + { + slotDefinitions = null; + return false; + } + + slotDefinitions = inv.Slots; + return true; } private ViewVariablesPath? HandleViewVariablesSlots(EntityUid uid, InventoryComponent comp, string relativePath) @@ -118,48 +126,98 @@ public SlotDefinition[] GetSlots(EntityUid uid, InventoryComponent? inventoryCom private IEnumerable ListViewVariablesSlots(EntityUid uid, InventoryComponent comp) { - foreach (var slotDef in GetSlots(uid, comp)) + foreach (var slotDef in comp.Slots) { yield return slotDef.Name; } } - public struct ContainerSlotEnumerator + /// + /// Enumerator for iterating over an inventory's slot containers. Also has methods that skip empty containers. + /// It should be safe to add or remove items while enumerating. + /// + public struct InventorySlotEnumerator { - private readonly InventorySystem _inventorySystem; - private readonly EntityUid _uid; private readonly SlotDefinition[] _slots; + private readonly ContainerSlot[] _containers; private readonly SlotFlags _flags; private int _nextIdx = 0; + public static InventorySlotEnumerator Empty = new(Array.Empty(), Array.Empty()); - public ContainerSlotEnumerator(EntityUid uid, string prototypeId, IPrototypeManager prototypeManager, InventorySystem inventorySystem, SlotFlags flags = SlotFlags.All) + public InventorySlotEnumerator(InventoryComponent inventory, SlotFlags flags = SlotFlags.All) + : this(inventory.Slots, inventory.Containers, flags) { - _uid = uid; - _inventorySystem = inventorySystem; - _flags = flags; + } - if (prototypeManager.TryIndex(prototypeId, out var prototype)) - _slots = prototype.Slots; - else - _slots = Array.Empty(); + public InventorySlotEnumerator(SlotDefinition[] slots, ContainerSlot[] containers, SlotFlags flags = SlotFlags.All) + { + DebugTools.Assert(flags != SlotFlags.NONE); + DebugTools.AssertEqual(slots.Length, containers.Length); + _flags = flags; + _slots = slots; + _containers = containers; } public bool MoveNext([NotNullWhen(true)] out ContainerSlot? container) { + while (_nextIdx < _slots.Length) + { + var i = _nextIdx++; + var slot = _slots[i]; + + if ((slot.SlotFlags & _flags) == 0) + continue; + + container = _containers[i]; + return true; + } + container = null; + return false; + } + + public bool NextItem(out EntityUid item) + { + while (_nextIdx < _slots.Length) + { + var i = _nextIdx++; + var slot = _slots[i]; + if ((slot.SlotFlags & _flags) == 0) + continue; + + var container = _containers[i]; + if (container.ContainedEntity is { } uid) + { + item = uid; + return true; + } + } + + item = default; + return false; + } + + public bool NextItem(out EntityUid item, [NotNullWhen(true)] out SlotDefinition? slot) + { while (_nextIdx < _slots.Length) { - var slot = _slots[_nextIdx]; - _nextIdx++; + var i = _nextIdx++; + slot = _slots[i]; if ((slot.SlotFlags & _flags) == 0) continue; - if (_inventorySystem.TryGetSlotContainer(_uid, slot.Name, out container, out _)) + var container = _containers[i]; + if (container.ContainedEntity is { } uid) + { + item = uid; return true; + } } + item = default; + slot = null; return false; } } diff --git a/Content.Shared/Inventory/InventoryTemplatePrototype.cs b/Content.Shared/Inventory/InventoryTemplatePrototype.cs index fcbe5dcf30..a477969962 100644 --- a/Content.Shared/Inventory/InventoryTemplatePrototype.cs +++ b/Content.Shared/Inventory/InventoryTemplatePrototype.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Inventory; [Prototype("inventoryTemplate")] -public sealed class InventoryTemplatePrototype : IPrototype +public sealed partial class InventoryTemplatePrototype : IPrototype { [IdDataField] public string ID { get; } = string.Empty; diff --git a/Content.Shared/Item/HeldSpeedModifierComponent.cs b/Content.Shared/Item/HeldSpeedModifierComponent.cs new file mode 100644 index 0000000000..1fbe7437ea --- /dev/null +++ b/Content.Shared/Item/HeldSpeedModifierComponent.cs @@ -0,0 +1,34 @@ +using Content.Shared.Clothing; +using Robust.Shared.GameStates; + +namespace Content.Shared.Item; + +/// +/// This is used for items that change your speed when they are held. +/// +/// +/// This is separate from because things like boots increase/decrease speed when worn, but +/// shouldn't do that when just held in hand. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(HeldSpeedModifierSystem))] +public sealed partial class HeldSpeedModifierComponent : Component +{ + /// + /// A multiplier applied to the walk speed. + /// + [DataField] [ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public float WalkModifier = 1.0f; + + /// + /// A multiplier applied to the sprint speed. + /// + [DataField] [ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public float SprintModifier = 1.0f; + + /// + /// If true, values from will attempted to be used before the ones in this component. + /// + [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public bool MirrorClothingModifier = true; +} diff --git a/Content.Shared/Item/HeldSpeedModifierSystem.cs b/Content.Shared/Item/HeldSpeedModifierSystem.cs new file mode 100644 index 0000000000..d7afa8f40f --- /dev/null +++ b/Content.Shared/Item/HeldSpeedModifierSystem.cs @@ -0,0 +1,44 @@ +using Content.Shared.Clothing; +using Content.Shared.Hands; +using Content.Shared.Movement.Systems; + +namespace Content.Shared.Item; + +/// +/// This handles +/// +public sealed class HeldSpeedModifierSystem : EntitySystem +{ + [Dependency] private readonly MovementSpeedModifierSystem _movementSpeedModifier = default!; + + /// + public override void Initialize() + { + SubscribeLocalEvent(OnGotEquippedHand); + SubscribeLocalEvent(OnGotUnequippedHand); + SubscribeLocalEvent>(OnRefreshMovementSpeedModifiers); + } + + private void OnGotEquippedHand(Entity ent, ref GotEquippedHandEvent args) + { + _movementSpeedModifier.RefreshMovementSpeedModifiers(args.User); + } + + private void OnGotUnequippedHand(Entity ent, ref GotUnequippedHandEvent args) + { + _movementSpeedModifier.RefreshMovementSpeedModifiers(args.User); + } + + private void OnRefreshMovementSpeedModifiers(EntityUid uid, HeldSpeedModifierComponent component, HeldRelayedEvent args) + { + var walkMod = component.WalkModifier; + var sprintMod = component.SprintModifier; + if (component.MirrorClothingModifier && TryComp(uid, out var clothingSpeedModifier)) + { + walkMod = clothingSpeedModifier.WalkModifier; + sprintMod = clothingSpeedModifier.SprintModifier; + } + + args.Args.ModifySpeed(walkMod, sprintMod); + } +} diff --git a/Content.Shared/Kitchen/MicrowaveMealRecipePrototype.cs b/Content.Shared/Kitchen/MicrowaveMealRecipePrototype.cs index 3ee8e8ee4a..b0991b5460 100644 --- a/Content.Shared/Kitchen/MicrowaveMealRecipePrototype.cs +++ b/Content.Shared/Kitchen/MicrowaveMealRecipePrototype.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Kitchen /// A recipe for space microwaves. /// [Prototype("microwaveMealRecipe")] - public sealed class FoodRecipePrototype : IPrototype + public sealed partial class FoodRecipePrototype : IPrototype { [ViewVariables] [IdDataField] diff --git a/Content.Shared/Light/Components/LightBulbComponent.cs b/Content.Shared/Light/Components/LightBulbComponent.cs index 01b348d13a..35b04be897 100644 --- a/Content.Shared/Light/Components/LightBulbComponent.cs +++ b/Content.Shared/Light/Components/LightBulbComponent.cs @@ -71,7 +71,7 @@ public sealed partial class LightBulbComponent : Component /// [DataField("breakSound")] [ViewVariables(VVAccess.ReadWrite)] - public SoundSpecifier BreakSound = new SoundCollectionSpecifier("GlassBreak"); + public SoundSpecifier BreakSound = new SoundCollectionSpecifier("GlassBreak", AudioParams.Default.WithVolume(-6f)); #region Appearance diff --git a/Content.Shared/Light/SharedHandheldLightSystem.cs b/Content.Shared/Light/SharedHandheldLightSystem.cs index d530b07b18..2fa15800a3 100644 --- a/Content.Shared/Light/SharedHandheldLightSystem.cs +++ b/Content.Shared/Light/SharedHandheldLightSystem.cs @@ -3,6 +3,8 @@ using Content.Shared.Item; using Content.Shared.Light.Components; using Content.Shared.Toggleable; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.GameStates; namespace Content.Shared.Light; diff --git a/Content.Shared/Lock/LockComponent.cs b/Content.Shared/Lock/LockComponent.cs index 31187a96cb..174818c4e8 100644 --- a/Content.Shared/Lock/LockComponent.cs +++ b/Content.Shared/Lock/LockComponent.cs @@ -30,13 +30,19 @@ public sealed partial class LockComponent : Component /// The sound played when unlocked. /// [DataField("unlockingSound"), ViewVariables(VVAccess.ReadWrite)] - public SoundSpecifier UnlockSound = new SoundPathSpecifier("/Audio/Machines/door_lock_off.ogg"); + public SoundSpecifier UnlockSound = new SoundPathSpecifier("/Audio/Machines/door_lock_off.ogg") + { + Params = AudioParams.Default.WithVolume(-5f), + }; /// /// The sound played when locked. /// [DataField("lockingSound"), ViewVariables(VVAccess.ReadWrite)] - public SoundSpecifier LockSound = new SoundPathSpecifier("/Audio/Machines/door_lock_on.ogg"); + public SoundSpecifier LockSound = new SoundPathSpecifier("/Audio/Machines/door_lock_on.ogg") + { + Params = AudioParams.Default.WithVolume(-5f) + }; /// /// Whether or not an emag disables it. diff --git a/Content.Shared/Lock/LockSystem.cs b/Content.Shared/Lock/LockSystem.cs index 97baa28bf9..7babc6a9c0 100644 --- a/Content.Shared/Lock/LockSystem.cs +++ b/Content.Shared/Lock/LockSystem.cs @@ -11,6 +11,7 @@ using Content.Shared.Verbs; using JetBrains.Annotations; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Utility; namespace Content.Shared.Lock; @@ -102,11 +103,11 @@ public bool TryLock(EntityUid uid, EntityUid user, LockComponent? lockComp = nul _sharedPopupSystem.PopupClient(Loc.GetString("lock-comp-do-lock-success", ("entityName", Identity.Name(uid, EntityManager))), uid, user); - _audio.PlayPredicted(lockComp.LockSound, uid, user, AudioParams.Default.WithVolume(-5)); + _audio.PlayPredicted(lockComp.LockSound, uid, user); lockComp.Locked = true; _appearanceSystem.SetData(uid, StorageVisuals.Locked, true); - Dirty(lockComp); + Dirty(uid, lockComp); var ev = new LockToggledEvent(true); RaiseLocalEvent(uid, ref ev, true); @@ -130,11 +131,11 @@ public void Unlock(EntityUid uid, EntityUid? user, LockComponent? lockComp = nul ("entityName", Identity.Name(uid, EntityManager))), uid, user.Value); } - _audio.PlayPredicted(lockComp.UnlockSound, uid, user, AudioParams.Default.WithVolume(-5)); + _audio.PlayPredicted(lockComp.UnlockSound, uid, user); lockComp.Locked = false; _appearanceSystem.SetData(uid, StorageVisuals.Locked, false); - Dirty(lockComp); + Dirty(uid, lockComp); var ev = new LockToggledEvent(false); RaiseLocalEvent(uid, ref ev, true); @@ -213,7 +214,7 @@ private void OnEmagged(EntityUid uid, LockComponent component, ref GotEmaggedEve { if (!component.Locked || !component.BreakOnEmag) return; - _audio.PlayPredicted(component.UnlockSound, uid, null, AudioParams.Default.WithVolume(-5)); + _audio.PlayPredicted(component.UnlockSound, uid, null); _appearanceSystem.SetData(uid, StorageVisuals.Locked, false); RemComp(uid); //Literally destroys the lock as a tell it was emagged args.Handled = true; diff --git a/Content.Shared/MagicMirror/SharedMagicMirrorSystem.cs b/Content.Shared/MagicMirror/SharedMagicMirrorSystem.cs index 831beb06d6..7d389c90e0 100644 --- a/Content.Shared/MagicMirror/SharedMagicMirrorSystem.cs +++ b/Content.Shared/MagicMirror/SharedMagicMirrorSystem.cs @@ -1,3 +1,4 @@ +using Content.Shared.DoAfter; using Content.Shared.Humanoid.Markings; using Robust.Shared.Serialization; @@ -104,3 +105,51 @@ public MagicMirrorUiData(string species, List hair, int hairSlotTotal, public int FacialHairSlotTotal { get; } } + +[Serializable, NetSerializable] +public sealed partial class RemoveSlotDoAfterEvent : DoAfterEvent +{ + public MagicMirrorRemoveSlotMessage Message; + + public RemoveSlotDoAfterEvent(MagicMirrorRemoveSlotMessage message) + { + Message = message; + } + public override DoAfterEvent Clone() => this; +} + +[Serializable, NetSerializable] +public sealed partial class AddSlotDoAfterEvent : DoAfterEvent +{ + public MagicMirrorAddSlotMessage Message; + + public AddSlotDoAfterEvent(MagicMirrorAddSlotMessage message) + { + Message = message; + } + public override DoAfterEvent Clone() => this; +} + +[Serializable, NetSerializable] +public sealed partial class SelectDoAfterEvent : DoAfterEvent +{ + public MagicMirrorSelectMessage Message; + + public SelectDoAfterEvent(MagicMirrorSelectMessage message) + { + Message = message; + } + public override DoAfterEvent Clone() => this; +} + +[Serializable, NetSerializable] +public sealed partial class ChangeColorDoAfterEvent : DoAfterEvent +{ + public MagicMirrorChangeColorMessage Message; + + public ChangeColorDoAfterEvent(MagicMirrorChangeColorMessage message) + { + Message = message; + } + public override DoAfterEvent Clone() => this; +} diff --git a/Content.Shared/Maps/ContentTileDefinition.cs b/Content.Shared/Maps/ContentTileDefinition.cs index eab373a463..57b4159fc3 100644 --- a/Content.Shared/Maps/ContentTileDefinition.cs +++ b/Content.Shared/Maps/ContentTileDefinition.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Maps { [Prototype("tile")] - public sealed class ContentTileDefinition : IPrototype, IInheritingPrototype, ITileDefinition + public sealed partial class ContentTileDefinition : IPrototype, IInheritingPrototype, ITileDefinition { public const string SpaceID = "Space"; @@ -40,6 +40,10 @@ public sealed class ContentTileDefinition : IPrototype, IInheritingPrototype, IT [DataField("canCrowbar")] public bool CanCrowbar { get; private set; } + // Delta V + [DataField("canShovel")] public bool CanShovel { get; private set; } + //Delta V + /// /// Whether this tile can be pried by an advanced prying tool if not pryable otherwise. /// diff --git a/Content.Shared/Maps/TileSystem.cs b/Content.Shared/Maps/TileSystem.cs index 2c09375d59..dcd2338e34 100644 --- a/Content.Shared/Maps/TileSystem.cs +++ b/Content.Shared/Maps/TileSystem.cs @@ -85,7 +85,22 @@ public bool CutTile(TileRef tileRef) return DeconstructTile(tileRef); } + // Delta V + public bool DigTile(TileRef tileRef) + { + var tile = tileRef.Tile; + + if (tile.IsEmpty) + return false; + var tileDef = (ContentTileDefinition) _tileDefinitionManager[tile.TypeId]; + + if (!tileDef.CanShovel) + return false; + + return DeconstructTile(tileRef); + } + // Delta V public bool ReplaceTile(TileRef tileref, ContentTileDefinition replacementTile) { if (!TryComp(tileref.GridUid, out var grid)) diff --git a/Content.Shared/Materials/MaterialPrototype.cs b/Content.Shared/Materials/MaterialPrototype.cs index cf1159947b..905a2359d3 100644 --- a/Content.Shared/Materials/MaterialPrototype.cs +++ b/Content.Shared/Materials/MaterialPrototype.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Materials /// Properties should be intrinsic (or at least as much is necessary for game purposes). /// [Prototype("material")] - public sealed class MaterialPrototype : IPrototype, IInheritingPrototype + public sealed partial class MaterialPrototype : IPrototype, IInheritingPrototype { [ViewVariables] [ParentDataField(typeof(AbstractPrototypeIdArraySerializer))] diff --git a/Content.Shared/Materials/MaterialReclaimerComponent.cs b/Content.Shared/Materials/MaterialReclaimerComponent.cs index 761469f99a..eda5cc4058 100644 --- a/Content.Shared/Materials/MaterialReclaimerComponent.cs +++ b/Content.Shared/Materials/MaterialReclaimerComponent.cs @@ -126,7 +126,7 @@ public sealed partial class MaterialReclaimerComponent : Component [DataField] public TimeSpan SoundCooldown = TimeSpan.FromSeconds(0.8f); - public IPlayingAudioStream? Stream; + public EntityUid? Stream; /// /// A counter of how many items have been processed diff --git a/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs b/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs index c3c712b617..46d20c78d3 100644 --- a/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs +++ b/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs @@ -8,6 +8,8 @@ using Content.Shared.Examine; using Content.Shared.Mobs.Components; using Content.Shared.Stacks; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Physics.Events; using Robust.Shared.Timing; @@ -48,7 +50,7 @@ private void OnMapInit(EntityUid uid, MaterialReclaimerComponent component, MapI private void OnShutdown(EntityUid uid, MaterialReclaimerComponent component, ComponentShutdown args) { - component.Stream?.Stop(); + _audio.Stop(component.Stream); } private void OnUnpaused(EntityUid uid, MaterialReclaimerComponent component, ref EntityUnpausedEvent args) @@ -116,8 +118,7 @@ public bool TryStartProcessItem(EntityUid uid, EntityUid item, MaterialReclaimer if (Timing.CurTime > component.NextSound) { - component.Stream = _audio.PlayPredicted(component.Sound, uid, user); - + component.Stream = _audio.PlayPredicted(component.Sound, uid, user)?.Entity; component.NextSound = Timing.CurTime + component.SoundCooldown; } @@ -167,9 +168,11 @@ public virtual void Reclaim(EntityUid uid, component.ItemsProcessed++; if (component.CutOffSound) - component.Stream?.Stop(); + { + _audio.Stop(component.Stream); + } - Dirty(component); + Dirty(uid, component); } /// @@ -181,7 +184,7 @@ public void SetReclaimerEnabled(EntityUid uid, bool enabled, MaterialReclaimerCo return; component.Enabled = enabled; AmbientSound.SetAmbience(uid, enabled && component.Powered); - Dirty(component); + Dirty(uid, component); } /// @@ -202,10 +205,11 @@ public bool CanStart(EntityUid uid, MaterialReclaimerComponent component) /// public bool CanGib(EntityUid uid, EntityUid victim, MaterialReclaimerComponent component) { - return component.Powered && - component.Enabled && - HasComp(victim) && - HasComp(uid); + return false; // DeltaV - Kinda LRP + // return component.Powered && + // component.Enabled && + // HasComp(victim) && + // HasComp(uid); } /// diff --git a/Content.Shared/Mech/Components/MechComponent.cs b/Content.Shared/Mech/Components/MechComponent.cs index 9bf25f4164..ba380492bc 100644 --- a/Content.Shared/Mech/Components/MechComponent.cs +++ b/Content.Shared/Mech/Components/MechComponent.cs @@ -22,7 +22,7 @@ public sealed partial class MechComponent : Component /// /// The maximum amount of damage the mech can take. /// - [DataField, AutoNetworkedField] + [DataField, AutoNetworkedField, ViewVariables(VVAccess.ReadWrite)] public FixedPoint2 MaxIntegrity = 250; /// @@ -36,7 +36,7 @@ public sealed partial class MechComponent : Component /// The maximum amount of energy the mech can have. /// Derived from the currently inserted battery. /// - [DataField, AutoNetworkedField] + [DataField, AutoNetworkedField, ViewVariables(VVAccess.ReadWrite)] public FixedPoint2 MaxEnergy = 0; /// @@ -52,7 +52,7 @@ public sealed partial class MechComponent : Component /// A multiplier used to calculate how much of the damage done to a mech /// is transfered to the pilot /// - [DataField] + [DataField, ViewVariables(VVAccess.ReadWrite)] public float MechToPilotDamageMultiplier; /// @@ -80,7 +80,7 @@ public sealed partial class MechComponent : Component /// /// The maximum amount of equipment items that can be installed in the mech /// - [DataField("maxEquipmentAmount")] + [DataField("maxEquipmentAmount"), ViewVariables(VVAccess.ReadWrite)] public int MaxEquipmentAmount = 3; /// @@ -104,20 +104,20 @@ public sealed partial class MechComponent : Component /// /// How long it takes to enter the mech. /// - [DataField] + [DataField, ViewVariables(VVAccess.ReadWrite)] public float EntryDelay = 3; /// /// How long it takes to pull *another person* /// outside of the mech. You can exit instantly yourself. /// - [DataField] + [DataField, ViewVariables(VVAccess.ReadWrite)] public float ExitDelay = 3; /// /// How long it takes to pull out the battery. /// - [DataField] + [DataField, ViewVariables(VVAccess.ReadWrite)] public float BatteryRemovalDelay = 2; /// diff --git a/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs b/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs index 2af5ac6e0c..23f0ce8a7c 100644 --- a/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs +++ b/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs @@ -4,6 +4,7 @@ using Content.Shared.Actions; using Content.Shared.Destructible; using Content.Shared.DoAfter; +using Content.Shared.DragDrop; using Content.Shared.FixedPoint; using Content.Shared.Interaction; using Content.Shared.Interaction.Components; @@ -35,6 +36,7 @@ public abstract class SharedMechSystem : EntitySystem [Dependency] private readonly SharedInteractionSystem _interaction = default!; [Dependency] private readonly SharedMoverController _mover = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; /// public override void Initialize() @@ -45,6 +47,8 @@ public override void Initialize() SubscribeLocalEvent(OnStartup); SubscribeLocalEvent(OnDestruction); SubscribeLocalEvent(OnGetAdditionalAccess); + SubscribeLocalEvent(OnDragDrop); + SubscribeLocalEvent(OnCanDragDrop); SubscribeLocalEvent(OnGetMeleeWeapon); SubscribeLocalEvent(OnCanAttackFromContainer); @@ -420,6 +424,29 @@ private void UpdateAppearance(EntityUid uid, MechComponent? component = null, _appearance.SetData(uid, MechVisuals.Open, IsEmpty(component), appearance); _appearance.SetData(uid, MechVisuals.Broken, component.Broken, appearance); } + + private void OnDragDrop(EntityUid uid, MechComponent component, ref DragDropTargetEvent args) + { + if (args.Handled) + return; + + args.Handled = true; + + var doAfterEventArgs = new DoAfterArgs(EntityManager, args.Dragged, component.EntryDelay, new MechEntryEvent(), uid, target: uid) + { + BreakOnUserMove = true, + }; + + _doAfter.TryStartDoAfter(doAfterEventArgs); + } + + private void OnCanDragDrop(EntityUid uid, MechComponent component, ref CanDropTargetEvent args) + { + args.Handled = true; + + args.CanDrop |= !component.Broken && CanInsert(uid, args.Dragged, component); + } + } /// diff --git a/Content.Shared/Mech/Equipment/Systems/MechSoundboardSystem.cs b/Content.Shared/Mech/Equipment/Systems/MechSoundboardSystem.cs index b4254fe079..1440a6ef1f 100644 --- a/Content.Shared/Mech/Equipment/Systems/MechSoundboardSystem.cs +++ b/Content.Shared/Mech/Equipment/Systems/MechSoundboardSystem.cs @@ -4,6 +4,7 @@ using Content.Shared.Timing; using Robust.Shared.Audio; using System.Linq; +using Robust.Shared.Audio.Systems; namespace Content.Shared.Mech.Equipment.Systems; diff --git a/Content.Shared/Medical/CrewMonitoring/CrewMonitoringShared.cs b/Content.Shared/Medical/CrewMonitoring/CrewMonitoringShared.cs index 7e5c00558b..5b78839678 100644 --- a/Content.Shared/Medical/CrewMonitoring/CrewMonitoringShared.cs +++ b/Content.Shared/Medical/CrewMonitoring/CrewMonitoringShared.cs @@ -1,27 +1,21 @@ using Content.Shared.Medical.SuitSensor; using Robust.Shared.Serialization; -namespace Content.Shared.Medical.CrewMonitoring +namespace Content.Shared.Medical.CrewMonitoring; + +[Serializable, NetSerializable] +public enum CrewMonitoringUIKey { - [Serializable, NetSerializable] - public enum CrewMonitoringUIKey - { - Key - } + Key +} - [Serializable, NetSerializable] - public sealed class CrewMonitoringState : BoundUserInterfaceState - { - public List Sensors; - public readonly bool Snap; - public readonly float Precision; +[Serializable, NetSerializable] +public sealed class CrewMonitoringState : BoundUserInterfaceState +{ + public List Sensors; - public CrewMonitoringState(List sensors, bool snap, float precision) - { - Sensors = sensors; - Snap = snap; - Precision = precision; - } + public CrewMonitoringState(List sensors) + { + Sensors = sensors; } - } diff --git a/Content.Shared/Medical/SuitSensor/SharedSuitSensor.cs b/Content.Shared/Medical/SuitSensor/SharedSuitSensor.cs index 4e27959f89..07e0eca33b 100644 --- a/Content.Shared/Medical/SuitSensor/SharedSuitSensor.cs +++ b/Content.Shared/Medical/SuitSensor/SharedSuitSensor.cs @@ -1,61 +1,66 @@ using Robust.Shared.Map; using Robust.Shared.Serialization; -namespace Content.Shared.Medical.SuitSensor +namespace Content.Shared.Medical.SuitSensor; + +[Serializable, NetSerializable] +public sealed class SuitSensorStatus { - [Serializable, NetSerializable] - public sealed class SuitSensorStatus + public SuitSensorStatus(NetEntity suitSensorUid, string name, string job, string jobIcon, List jobDepartments) { - public SuitSensorStatus(NetEntity suitSensorUid, string name, string job) - { - SuitSensorUid = suitSensorUid; - Name = name; - Job = job; - } - - public TimeSpan Timestamp; - public NetEntity SuitSensorUid; - public string Name; - public string Job; - public bool IsAlive; - public int? TotalDamage; - public NetCoordinates? Coordinates; + SuitSensorUid = suitSensorUid; + Name = name; + Job = job; + JobIcon = jobIcon; + JobDepartments = jobDepartments; } - [Serializable, NetSerializable] - public enum SuitSensorMode : byte - { - /// - /// Sensor doesn't send any information about owner - /// - SensorOff = 0, - - /// - /// Sensor sends only binary status (alive/dead) - /// - SensorBinary = 1, - - /// - /// Sensor sends health vitals status - /// - SensorVitals = 2, - - /// - /// Sensor sends vitals status and GPS position - /// - SensorCords = 3 - } + public TimeSpan Timestamp; + public NetEntity SuitSensorUid; + public string Name; + public string Job; + public string JobIcon; + public List JobDepartments; + public bool IsAlive; + public int? TotalDamage; + public NetCoordinates? Coordinates; +} - public static class SuitSensorConstants - { - public const string NET_NAME = "name"; - public const string NET_JOB = "job"; - public const string NET_IS_ALIVE = "alive"; - public const string NET_TOTAL_DAMAGE = "vitals"; - public const string NET_COORDINATES = "coords"; - public const string NET_SUIT_SENSOR_UID = "uid"; - - ///Used by the CrewMonitoringServerSystem to send the status of all connected suit sensors to each crew monitor - public const string NET_STATUS_COLLECTION = "suit-status-collection"; - } +[Serializable, NetSerializable] +public enum SuitSensorMode : byte +{ + /// + /// Sensor doesn't send any information about owner + /// + SensorOff = 0, + + /// + /// Sensor sends only binary status (alive/dead) + /// + SensorBinary = 1, + + /// + /// Sensor sends health vitals status + /// + SensorVitals = 2, + + /// + /// Sensor sends vitals status and GPS position + /// + SensorCords = 3 +} + +public static class SuitSensorConstants +{ + public const string NET_NAME = "name"; + public const string NET_JOB = "job"; + public const string NET_JOB_ICON = "jobIcon"; + public const string NET_JOB_DEPARTMENTS = "jobDepartments"; + public const string NET_IS_ALIVE = "alive"; + public const string NET_TOTAL_DAMAGE = "vitals"; + public const string NET_COORDINATES = "coords"; + public const string NET_SUIT_SENSOR_UID = "uid"; + + ///Used by the CrewMonitoringServerSystem to send the status of all connected suit sensors to each crew monitor + public const string NET_STATUS_COLLECTION = "suit-status-collection"; } diff --git a/Content.Shared/Mind/MindComponent.cs b/Content.Shared/Mind/MindComponent.cs index b147a2dbbe..51a174c846 100644 --- a/Content.Shared/Mind/MindComponent.cs +++ b/Content.Shared/Mind/MindComponent.cs @@ -1,4 +1,5 @@ -using Content.Shared.GameTicking; +using Content.Shared.Actions; +using Content.Shared.GameTicking; using Content.Shared.Mind.Components; using Robust.Shared.GameStates; using Robust.Shared.Network; diff --git a/Content.Shared/Mindshield/Components/MindShieldComponent.cs b/Content.Shared/Mindshield/Components/MindShieldComponent.cs index 1cc21d14bd..235862ed02 100644 --- a/Content.Shared/Mindshield/Components/MindShieldComponent.cs +++ b/Content.Shared/Mindshield/Components/MindShieldComponent.cs @@ -1,5 +1,7 @@ using Content.Shared.Revolutionary; using Robust.Shared.GameStates; +using Content.Shared.StatusIcon; +using Robust.Shared.Prototypes; namespace Content.Shared.Mindshield.Components; @@ -9,4 +11,6 @@ namespace Content.Shared.Mindshield.Components; [RegisterComponent, NetworkedComponent, Access(typeof(SharedRevolutionarySystem))] public sealed partial class MindShieldComponent : Component { + [DataField, ViewVariables(VVAccess.ReadWrite)] + public ProtoId MindShieldStatusIcon = "MindShieldIcon"; } diff --git a/Content.Shared/Mining/OrePrototype.cs b/Content.Shared/Mining/OrePrototype.cs index ea15aead20..a4f8a40a6f 100644 --- a/Content.Shared/Mining/OrePrototype.cs +++ b/Content.Shared/Mining/OrePrototype.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Mining; /// This is a prototype for defining ores that generate in rock /// [Prototype("ore")] -public sealed class OrePrototype : IPrototype +public sealed partial class OrePrototype : IPrototype { /// [IdDataField] diff --git a/Content.Shared/Mobs/Systems/MobStateSystem.StateMachine.cs b/Content.Shared/Mobs/Systems/MobStateSystem.StateMachine.cs index 25b63d5b80..2fa522dea5 100644 --- a/Content.Shared/Mobs/Systems/MobStateSystem.StateMachine.cs +++ b/Content.Shared/Mobs/Systems/MobStateSystem.StateMachine.cs @@ -36,7 +36,8 @@ public void UpdateMobState(EntityUid entity, MobStateComponent? component = null } /// - /// Change the MobState and trigger MobState update events + /// Change the MobState without triggering UpdateMobState events. + /// WARNING: use this sparingly when you need to override other systems (MobThresholds) /// /// Target Entity we want to change the MobState of /// The new MobState we want to set @@ -48,9 +49,7 @@ public void ChangeMobState(EntityUid entity, MobState mobState, MobStateComponen if (!Resolve(entity, ref component)) return; - var ev = new UpdateMobStateEvent {Target = entity, Component = component, Origin = origin, State = mobState}; - RaiseLocalEvent(entity, ref ev); - ChangeState(entity, component, ev.State); + ChangeState(entity, component, mobState, origin: origin); } #endregion diff --git a/Content.Shared/Mobs/Systems/MobStateSystem.Subscribers.cs b/Content.Shared/Mobs/Systems/MobStateSystem.Subscribers.cs index 4442d87d88..1599932246 100644 --- a/Content.Shared/Mobs/Systems/MobStateSystem.Subscribers.cs +++ b/Content.Shared/Mobs/Systems/MobStateSystem.Subscribers.cs @@ -70,6 +70,11 @@ private void OnStateExitSubscribers(EntityUid target, MobStateComponent componen private void OnStateEnteredSubscribers(EntityUid target, MobStateComponent component, MobState state) { + // All of the state changes here should already be networked, so we do nothing if we are currently applying a + // server state. + if (_timing.ApplyingState) + return; + _blocker.UpdateCanMove(target); //update movement anytime a state changes switch (state) { diff --git a/Content.Shared/Mobs/Systems/MobStateSystem.cs b/Content.Shared/Mobs/Systems/MobStateSystem.cs index ad2de1c801..ff54c30aaf 100644 --- a/Content.Shared/Mobs/Systems/MobStateSystem.cs +++ b/Content.Shared/Mobs/Systems/MobStateSystem.cs @@ -4,6 +4,7 @@ using Content.Shared.Standing; using Robust.Shared.GameStates; using Robust.Shared.Physics.Systems; +using Robust.Shared.Timing; namespace Content.Shared.Mobs.Systems; @@ -16,6 +17,7 @@ public partial class MobStateSystem : EntitySystem [Dependency] private readonly StandingStateSystem _standing = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly ILogManager _logManager = default!; + [Dependency] private readonly IGameTiming _timing = default!; private ISawmill _sawmill = default!; public override void Initialize() diff --git a/Content.Shared/Mobs/Systems/MobThresholdSystem.cs b/Content.Shared/Mobs/Systems/MobThresholdSystem.cs index f34240d8fe..59d9fb4c23 100644 --- a/Content.Shared/Mobs/Systems/MobThresholdSystem.cs +++ b/Content.Shared/Mobs/Systems/MobThresholdSystem.cs @@ -22,6 +22,7 @@ public override void Initialize() SubscribeLocalEvent(MobThresholdStartup); SubscribeLocalEvent(OnDamaged); SubscribeLocalEvent(OnUpdateMobState); + SubscribeLocalEvent(OnThresholdsMobState); } private void OnGetState(EntityUid uid, MobThresholdsComponent component, ref ComponentGetState args) @@ -424,9 +425,7 @@ private void MobThresholdStartup(EntityUid target, MobThresholdsComponent thresh if (!TryComp(target, out var mobState) || !TryComp(target, out var damageable)) return; CheckThresholds(target, mobState, thresholds, damageable); - var ev = new MobThresholdChecked(target, mobState, thresholds, damageable); - RaiseLocalEvent(target, ref ev, true); - UpdateAlerts(target, mobState.CurrentState, thresholds, damageable); + UpdateAllEffects((target, thresholds, mobState, damageable), mobState.CurrentState); } private void MobThresholdShutdown(EntityUid target, MobThresholdsComponent component, ComponentShutdown args) @@ -447,6 +446,23 @@ private void OnUpdateMobState(EntityUid target, MobThresholdsComponent component } } + private void UpdateAllEffects(Entity ent, MobState currentState) + { + var (_, thresholds, mobState, damageable) = ent; + if (Resolve(ent, ref thresholds, ref mobState, ref damageable)) + { + var ev = new MobThresholdChecked(ent, mobState, thresholds, damageable); + RaiseLocalEvent(ent, ref ev, true); + } + + UpdateAlerts(ent, currentState, thresholds, damageable); + } + + private void OnThresholdsMobState(Entity ent, ref MobStateChangedEvent args) + { + UpdateAllEffects((ent, ent, null, null), args.NewMobState); + } + #endregion } diff --git a/Content.Shared/Movement/Components/BoundaryComponent.cs b/Content.Shared/Movement/Components/BoundaryComponent.cs new file mode 100644 index 0000000000..3618b1de52 --- /dev/null +++ b/Content.Shared/Movement/Components/BoundaryComponent.cs @@ -0,0 +1,13 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Movement.Components; + +/// +/// Represents a boundary that can bump someone back when touched. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class BoundaryComponent : Component +{ + [DataField, AutoNetworkedField] + public float Offset = 2f; +} diff --git a/Content.Shared/Movement/Components/FrictionContactsComponent.cs b/Content.Shared/Movement/Components/FrictionContactsComponent.cs new file mode 100644 index 0000000000..693ada49f7 --- /dev/null +++ b/Content.Shared/Movement/Components/FrictionContactsComponent.cs @@ -0,0 +1,31 @@ +using Content.Shared.Movement.Systems; +using Robust.Shared.GameStates; + +namespace Content.Shared.Movement.Components; + +[NetworkedComponent, RegisterComponent] +[AutoGenerateComponentState] +[Access(typeof(FrictionContactsSystem))] +public sealed partial class FrictionContactsComponent : Component +{ + /// + /// Modified mob friction while on FrictionContactsComponent + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + [AutoNetworkedField] + public float MobFriction = 0.5f; + + /// + /// Modified mob friction without input while on FrictionContactsComponent + /// + [AutoNetworkedField] + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float MobFrictionNoInput = 0.05f; + + /// + /// Modified mob acceleration while on FrictionContactsComponent + /// + [AutoNetworkedField] + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float MobAcceleration = 2.0f; +} diff --git a/Content.Shared/Movement/Components/MovementSpeedModifierComponent.cs b/Content.Shared/Movement/Components/MovementSpeedModifierComponent.cs index 7efc12a731..a0feab7052 100644 --- a/Content.Shared/Movement/Components/MovementSpeedModifierComponent.cs +++ b/Content.Shared/Movement/Components/MovementSpeedModifierComponent.cs @@ -87,19 +87,19 @@ private float _baseSprintSpeedVV /// /// The acceleration applied to mobs when moving. /// - [ViewVariables(VVAccess.ReadWrite), DataField] + [AutoNetworkedField, ViewVariables(VVAccess.ReadWrite), DataField] public float Acceleration = DefaultAcceleration; /// /// The negative velocity applied for friction. /// - [ViewVariables(VVAccess.ReadWrite), DataField] + [AutoNetworkedField, ViewVariables(VVAccess.ReadWrite), DataField] public float Friction = DefaultFriction; /// /// The negative velocity applied for friction. /// - [ViewVariables(VVAccess.ReadWrite), DataField] + [AutoNetworkedField, ViewVariables(VVAccess.ReadWrite), DataField] public float? FrictionNoInput; [ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField] diff --git a/Content.Shared/Movement/Systems/FrictionContactsSystem.cs b/Content.Shared/Movement/Systems/FrictionContactsSystem.cs new file mode 100644 index 0000000000..b104c549e6 --- /dev/null +++ b/Content.Shared/Movement/Systems/FrictionContactsSystem.cs @@ -0,0 +1,100 @@ +using Content.Shared.Movement.Components; +using Robust.Shared.Physics.Components; +using Robust.Shared.Physics.Events; +using Robust.Shared.Physics.Systems; + +namespace Content.Shared.Movement.Systems; + +public sealed class FrictionContactsSystem : EntitySystem +{ + [Dependency] private readonly SharedPhysicsSystem _physics = default!; + [Dependency] private readonly MovementSpeedModifierSystem _speedModifierSystem = default!; + + // Comment copied from "original" SlowContactsSystem.cs + // TODO full-game-save + // Either these need to be processed before a map is saved, or slowed/slowing entities need to update on init. + private HashSet _toUpdate = new(); + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnEntityEnter); + SubscribeLocalEvent(OnEntityExit); + SubscribeLocalEvent(OnShutdown); + + UpdatesAfter.Add(typeof(SharedPhysicsSystem)); + } + + private void OnEntityEnter(EntityUid uid, FrictionContactsComponent component, ref StartCollideEvent args) + { + var otherUid = args.OtherEntity; + + if (!HasComp(otherUid, typeof(MovementSpeedModifierComponent))) + return; + + _toUpdate.Add(otherUid); + } + + private void OnEntityExit(EntityUid uid, FrictionContactsComponent component, ref EndCollideEvent args) + { + var otherUid = args.OtherEntity; + + if (!HasComp(otherUid, typeof(MovementSpeedModifierComponent))) + return; + + _toUpdate.Add(otherUid); + } + + private void OnShutdown(EntityUid uid, FrictionContactsComponent component, ComponentShutdown args) + { + if (!TryComp(uid, out PhysicsComponent? phys)) + return; + + _toUpdate.UnionWith(_physics.GetContactingEntities(uid, phys)); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + foreach (var uid in _toUpdate) + { + ApplyFrictionChange(uid); + } + + _toUpdate.Clear(); + } + + private void ApplyFrictionChange(EntityUid uid) + { + if (!EntityManager.TryGetComponent(uid, out var physicsComponent)) + return; + + if (!TryComp(uid, out MovementSpeedModifierComponent? speedModifier)) + return; + + FrictionContactsComponent? frictionComponent = TouchesFrictionContactsComponent(uid, physicsComponent); + + if (frictionComponent == null) + { + _speedModifierSystem.ChangeFriction(uid, MovementSpeedModifierComponent.DefaultFriction, null, MovementSpeedModifierComponent.DefaultAcceleration, speedModifier); + } + else + { + _speedModifierSystem.ChangeFriction(uid, frictionComponent.MobFriction, frictionComponent.MobFrictionNoInput, frictionComponent.MobAcceleration, speedModifier); + } + } + + private FrictionContactsComponent? TouchesFrictionContactsComponent(EntityUid uid, PhysicsComponent physicsComponent) + { + foreach (var ent in _physics.GetContactingEntities(uid, physicsComponent)) + { + if (!TryComp(ent, out FrictionContactsComponent? frictionContacts)) + continue; + + return frictionContacts; + } + + return null; + } +} diff --git a/Content.Shared/Movement/Systems/MovementSpeedModifierSystem.cs b/Content.Shared/Movement/Systems/MovementSpeedModifierSystem.cs index c95ab379c6..7c793d5eb8 100644 --- a/Content.Shared/Movement/Systems/MovementSpeedModifierSystem.cs +++ b/Content.Shared/Movement/Systems/MovementSpeedModifierSystem.cs @@ -25,7 +25,7 @@ public void RefreshMovementSpeedModifiers(EntityUid uid, MovementSpeedModifierCo move.WalkSpeedModifier = ev.WalkSpeedModifier; move.SprintSpeedModifier = ev.SprintSpeedModifier; - Dirty(move); + Dirty(uid, move); } public void ChangeBaseSpeed(EntityUid uid, float baseWalkSpeed, float baseSprintSpeed, float acceleration, MovementSpeedModifierComponent? move = null) @@ -36,7 +36,19 @@ public void ChangeBaseSpeed(EntityUid uid, float baseWalkSpeed, float baseSprint move.BaseWalkSpeed = baseWalkSpeed; move.BaseSprintSpeed = baseSprintSpeed; move.Acceleration = acceleration; - Dirty(move); + Dirty(uid, move); + } + + // We might want to create separate RefreshMovementFrictionModifiersEvent and RefreshMovementFrictionModifiers function that will call it + public void ChangeFriction(EntityUid uid, float friction, float? frictionNoInput, float acceleration, MovementSpeedModifierComponent? move = null) + { + if (!Resolve(uid, ref move, false)) + return; + + move.Friction = friction; + move.FrictionNoInput = frictionNoInput; + move.Acceleration = acceleration; + Dirty(uid, move); } } diff --git a/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs b/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs index 4b81619fd0..207f14a258 100644 --- a/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs +++ b/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs @@ -28,7 +28,7 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(OnContentEyeStartup); SubscribeAllEvent(OnContentZoomRequest); - SubscribeAllEvent(OnRequestFov); + SubscribeAllEvent(OnRequestEye); CommandBinds.Builder .Bind(ContentKeyFunctions.ZoomIn, InputCmdHandler.FromDelegate(ZoomIn, handle:false)) @@ -89,7 +89,7 @@ private void OnContentZoomRequest(RequestTargetZoomEvent msg, EntitySessionEvent SetZoom(args.SenderSession.AttachedEntity.Value, msg.TargetZoom, ignoreLimit, eye: content); } - private void OnRequestFov(RequestFovEvent msg, EntitySessionEventArgs args) + private void OnRequestEye(RequestEyeEvent msg, EntitySessionEventArgs args) { if (args.SenderSession.AttachedEntity is not { } player) return; @@ -99,7 +99,8 @@ private void OnRequestFov(RequestFovEvent msg, EntitySessionEventArgs args) if (TryComp(player, out var eyeComp)) { - _eye.SetDrawFov(player, msg.Fov, eyeComp); + _eye.SetDrawFov(player, msg.DrawFov, eyeComp); + _eye.SetDrawLight((player, eyeComp), msg.DrawLight); } } @@ -108,7 +109,7 @@ private void OnContentEyeStartup(EntityUid uid, ContentEyeComponent component, C if (!TryComp(uid, out var eyeComp)) return; - component.TargetZoom = eyeComp.Zoom; + _eye.SetZoom(uid, component.TargetZoom, eyeComp); Dirty(uid, component); } @@ -141,8 +142,15 @@ public sealed class RequestTargetZoomEvent : EntityEventArgs /// Sendable from client to server to request changing fov. /// [Serializable, NetSerializable] - public sealed class RequestFovEvent : EntityEventArgs + public sealed class RequestEyeEvent : EntityEventArgs { - public bool Fov; + public readonly bool DrawFov; + public readonly bool DrawLight; + + public RequestEyeEvent(bool drawFov, bool drawLight) + { + DrawFov = drawFov; + DrawLight = drawLight; + } } } diff --git a/Content.Shared/Movement/Systems/SharedMoverController.cs b/Content.Shared/Movement/Systems/SharedMoverController.cs index af065d0dec..7d5e24a15b 100644 --- a/Content.Shared/Movement/Systems/SharedMoverController.cs +++ b/Content.Shared/Movement/Systems/SharedMoverController.cs @@ -12,9 +12,11 @@ using Content.Shared.Pulling.Components; using Content.Shared.Tag; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; using Robust.Shared.Containers; using Robust.Shared.Map; +using Robust.Shared.Map.Components; using Robust.Shared.Physics; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Controllers; @@ -189,8 +191,8 @@ protected void HandleMobMovement( // Don't bother getting the tiledef here if we're weightless or in-air // since no tile-based modifiers should be applying in that situation - if (_mapManager.TryFindGridAt(xform.MapPosition, out var grid, out var gridComp) - && _mapSystem.TryGetTileRef(grid, gridComp, xform.Coordinates, out var tile) + if (TryComp(xform.GridUid, out MapGridComponent? gridComp) + && _mapSystem.TryGetTileRef(xform.GridUid.Value, gridComp, xform.Coordinates, out var tile) && !(weightless || physicsComponent.BodyStatus == BodyStatus.InAir)) { tileDef = (ContentTileDefinition) _tileDefinitionManager[tile.Tile.TypeId]; diff --git a/Content.Shared/NameIdentifier/NameIdentifierGroupPrototype.cs b/Content.Shared/NameIdentifier/NameIdentifierGroupPrototype.cs index 82dce0cf3b..25c5616bad 100644 --- a/Content.Shared/NameIdentifier/NameIdentifierGroupPrototype.cs +++ b/Content.Shared/NameIdentifier/NameIdentifierGroupPrototype.cs @@ -3,7 +3,7 @@ namespace Content.Shared.NameIdentifier; [Prototype("nameIdentifierGroup")] -public sealed class NameIdentifierGroupPrototype : IPrototype +public sealed partial class NameIdentifierGroupPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Shared/Ninja/Components/StunProviderComponent.cs b/Content.Shared/Ninja/Components/StunProviderComponent.cs index e8eb25a1b6..37a27074a4 100644 --- a/Content.Shared/Ninja/Components/StunProviderComponent.cs +++ b/Content.Shared/Ninja/Components/StunProviderComponent.cs @@ -1,3 +1,4 @@ +using Content.Shared.Damage; using Content.Shared.Ninja.Systems; using Content.Shared.Whitelist; using Robust.Shared.Audio; @@ -17,49 +18,55 @@ public sealed partial class StunProviderComponent : Component /// The powercell entity to take power from. /// Determines whether stunning is possible. /// - [DataField("batteryUid"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] public EntityUid? BatteryUid; /// /// Sound played when stunning someone. /// - [DataField("sound"), ViewVariables(VVAccess.ReadWrite)] + [DataField, ViewVariables(VVAccess.ReadWrite)] public SoundSpecifier Sound = new SoundCollectionSpecifier("sparks"); /// /// Joules required in the battery to stun someone. Defaults to 10 uses on a small battery. /// - [DataField("stunCharge"), ViewVariables(VVAccess.ReadWrite)] - public float StunCharge = 36.0f; + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float StunCharge = 36f; /// - /// Shock damage dealt when stunning someone + /// Damage dealt when stunning someone /// - [DataField("stunDamage"), ViewVariables(VVAccess.ReadWrite)] - public int StunDamage = 5; + [DataField, ViewVariables(VVAccess.ReadWrite)] + public DamageSpecifier StunDamage = new() + { + DamageDict = new() + { + { "Shock", 5 } + } + }; /// /// Time that someone is stunned for, stacks if done multiple times. /// - [DataField("stunTime"), ViewVariables(VVAccess.ReadWrite)] + [DataField, ViewVariables(VVAccess.ReadWrite)] public TimeSpan StunTime = TimeSpan.FromSeconds(5); /// /// How long stunning is disabled after stunning something. /// - [DataField("cooldown"), ViewVariables(VVAccess.ReadWrite)] + [DataField, ViewVariables(VVAccess.ReadWrite)] public TimeSpan Cooldown = TimeSpan.FromSeconds(2); /// /// Locale string to popup when there is no power /// - [DataField("noPowerPopup", required: true), ViewVariables(VVAccess.ReadWrite)] + [DataField(required: true), ViewVariables(VVAccess.ReadWrite)] public string NoPowerPopup = string.Empty; /// /// Whitelist for what counts as a mob. /// - [DataField("whitelist")] + [DataField] public EntityWhitelist Whitelist = new() { Components = new[] {"Stamina"} @@ -69,6 +76,6 @@ public sealed partial class StunProviderComponent : Component /// When someone can next be stunned. /// Essentially a UseDelay unique to this component. /// - [DataField("nextStun", customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite)] + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite)] public TimeSpan NextStun = TimeSpan.Zero; } diff --git a/Content.Shared/Ninja/Systems/DashAbilitySystem.cs b/Content.Shared/Ninja/Systems/DashAbilitySystem.cs index d376d05724..f9e5d4a1f6 100644 --- a/Content.Shared/Ninja/Systems/DashAbilitySystem.cs +++ b/Content.Shared/Ninja/Systems/DashAbilitySystem.cs @@ -6,6 +6,7 @@ using Content.Shared.Ninja.Components; using Content.Shared.Physics; using Content.Shared.Popups; +using Robust.Shared.Audio.Systems; using Robust.Shared.Timing; namespace Content.Shared.Ninja.Systems; diff --git a/Content.Shared/Ninja/Systems/SharedNinjaSuitSystem.cs b/Content.Shared/Ninja/Systems/SharedNinjaSuitSystem.cs index 473e29cc94..224152a402 100644 --- a/Content.Shared/Ninja/Systems/SharedNinjaSuitSystem.cs +++ b/Content.Shared/Ninja/Systems/SharedNinjaSuitSystem.cs @@ -4,6 +4,7 @@ using Content.Shared.Inventory.Events; using Content.Shared.Ninja.Components; using Content.Shared.Timing; +using Robust.Shared.Audio.Systems; namespace Content.Shared.Ninja.Systems; diff --git a/Content.Shared/NukeOps/NukeOperativeComponent.cs b/Content.Shared/NukeOps/NukeOperativeComponent.cs new file mode 100644 index 0000000000..cdbefece9d --- /dev/null +++ b/Content.Shared/NukeOps/NukeOperativeComponent.cs @@ -0,0 +1,27 @@ +using Robust.Shared.Audio; +using Content.Shared.StatusIcon; +using Robust.Shared.Prototypes; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared.NukeOps; + +/// +/// This is used for tagging a mob as a nuke operative. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class NukeOperativeComponent : Component +{ + /// + /// Path to antagonist alert sound. + /// + [DataField("greetSoundNotification")] + public SoundSpecifier GreetSoundNotification = new SoundPathSpecifier("/Audio/Ambience/Antag/nukeops_start.ogg"); + + /// + /// + /// + [DataField("syndStatusIcon", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string SyndStatusIcon = "SyndicateFaction"; +} diff --git a/Content.Shared/Nutrition/Components/SmokableComponent.cs b/Content.Shared/Nutrition/Components/SmokableComponent.cs index 320b3dd31f..e5cbd27242 100644 --- a/Content.Shared/Nutrition/Components/SmokableComponent.cs +++ b/Content.Shared/Nutrition/Components/SmokableComponent.cs @@ -13,16 +13,16 @@ public sealed partial class SmokableComponent : Component /// /// Solution inhale amount per second. /// - [DataField("inhaleAmount")] + [DataField("inhaleAmount"), ViewVariables(VVAccess.ReadWrite)] public FixedPoint2 InhaleAmount { get; private set; } = FixedPoint2.New(0.05f); [DataField("state")] public SmokableState State { get; set; } = SmokableState.Unlit; - [DataField("exposeTemperature")] + [DataField("exposeTemperature"), ViewVariables(VVAccess.ReadWrite)] public float ExposeTemperature { get; set; } = 0; - [DataField("exposeVolume")] + [DataField("exposeVolume"), ViewVariables(VVAccess.ReadWrite)] public float ExposeVolume { get; set; } = 1f; // clothing prefixes diff --git a/Content.Shared/Nutrition/Components/ThirstComponent.cs b/Content.Shared/Nutrition/Components/ThirstComponent.cs index 1e3f139807..35eb4d2614 100644 --- a/Content.Shared/Nutrition/Components/ThirstComponent.cs +++ b/Content.Shared/Nutrition/Components/ThirstComponent.cs @@ -19,10 +19,10 @@ public sealed partial class ThirstComponent : Component [AutoNetworkedField] public float ActualDecayRate; - [DataField, AutoNetworkedField] + [DataField, AutoNetworkedField, ViewVariables(VVAccess.ReadWrite)] public ThirstThreshold CurrentThirstThreshold; - [DataField, AutoNetworkedField] + [DataField, AutoNetworkedField, ViewVariables(VVAccess.ReadWrite)] public ThirstThreshold LastThirstThreshold; [ViewVariables(VVAccess.ReadWrite)] diff --git a/Content.Shared/Nutrition/Flavor.cs b/Content.Shared/Nutrition/Flavor.cs index 051836a557..cb77ae7271 100644 --- a/Content.Shared/Nutrition/Flavor.cs +++ b/Content.Shared/Nutrition/Flavor.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Nutrition; [Prototype("flavor")] -public sealed class FlavorPrototype : IPrototype +public sealed partial class FlavorPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Shared/Nyanotrasen/Digging/DiggingEvents.cs b/Content.Shared/Nyanotrasen/Digging/DiggingEvents.cs new file mode 100644 index 0000000000..89565da4c8 --- /dev/null +++ b/Content.Shared/Nyanotrasen/Digging/DiggingEvents.cs @@ -0,0 +1,29 @@ +using Content.Shared.DoAfter; +using Robust.Shared.Map; +using Robust.Shared.Serialization; + +namespace Content.Shared.Nyanotrasen.Digging; + + +[Serializable, NetSerializable] +public sealed partial class EarthDiggingDoAfterEvent : DoAfterEvent +{ + public NetCoordinates Coordinates { get; set; } + + private EarthDiggingDoAfterEvent(){} + + public EarthDiggingDoAfterEvent(NetCoordinates coordinates) + { + Coordinates = coordinates; + } + public override DoAfterEvent Clone() + { + return this; + } +} + +[Serializable, NetSerializable] +public sealed class EarthDiggingCancelledEvent : EntityEventArgs +{ + public NetEntity Shovel; +} diff --git a/Content.Shared/Nyanotrasen/Digging/EarthDiggingComponent.cs b/Content.Shared/Nyanotrasen/Digging/EarthDiggingComponent.cs new file mode 100644 index 0000000000..65b6a1b6bf --- /dev/null +++ b/Content.Shared/Nyanotrasen/Digging/EarthDiggingComponent.cs @@ -0,0 +1,22 @@ +using System.Threading; +using Content.Shared.Tools; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared.Nyanotrasen.Digging; + +[RegisterComponent] +public sealed partial class EarthDiggingComponent : Component +{ + [ViewVariables] + [DataField("toolComponentNeeded")] + public bool ToolComponentNeeded = true; + + [ViewVariables] + [DataField("qualityNeeded", customTypeSerializer:typeof(PrototypeIdSerializer))] + public string QualityNeeded = "Digging"; + + [ViewVariables] + [DataField("delay")] + public float Delay = 2f; + +} diff --git a/Content.Server/Nyanotrasen/Item/PseudoItem/PseudoItemComponent.cs b/Content.Shared/Nyanotrasen/Item/Components/PseudoItemComponent.cs similarity index 88% rename from Content.Server/Nyanotrasen/Item/PseudoItem/PseudoItemComponent.cs rename to Content.Shared/Nyanotrasen/Item/Components/PseudoItemComponent.cs index ccc1342c81..3228258b2f 100644 --- a/Content.Server/Nyanotrasen/Item/PseudoItem/PseudoItemComponent.cs +++ b/Content.Shared/Nyanotrasen/Item/Components/PseudoItemComponent.cs @@ -1,5 +1,5 @@ -namespace Content.Server.Item.PseudoItem; +namespace Content.Shared.Item.PseudoItem; /// /// For entities that behave like an item under certain conditions, diff --git a/Content.Shared/Overlays/ShowSyndicateIconsComponent.cs b/Content.Shared/Overlays/ShowSyndicateIconsComponent.cs new file mode 100644 index 0000000000..74a67db694 --- /dev/null +++ b/Content.Shared/Overlays/ShowSyndicateIconsComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Overlays; + +/// +/// +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class ShowSyndicateIconsComponent : Component {} diff --git a/Content.Shared/PDA/PdaComponent.cs b/Content.Shared/PDA/PdaComponent.cs index 46c85ee39e..d81fa1532f 100644 --- a/Content.Shared/PDA/PdaComponent.cs +++ b/Content.Shared/PDA/PdaComponent.cs @@ -33,7 +33,7 @@ public sealed partial class PdaComponent : Component [ViewVariables] public EntityUid? ContainedId; [ViewVariables] public bool FlashlightOn; - [ViewVariables] public string? OwnerName; + [ViewVariables(VVAccess.ReadWrite)] public string? OwnerName; [ViewVariables] public string? StationName; [ViewVariables] public string? StationAlertLevel; [ViewVariables] public Color StationAlertColor = Color.White; diff --git a/Content.Shared/Parallax/Biomes/BiomeComponent.cs b/Content.Shared/Parallax/Biomes/BiomeComponent.cs index 0fe2182172..18aa55312c 100644 --- a/Content.Shared/Parallax/Biomes/BiomeComponent.cs +++ b/Content.Shared/Parallax/Biomes/BiomeComponent.cs @@ -2,6 +2,7 @@ using Content.Shared.Parallax.Biomes.Markers; using Robust.Shared.GameStates; using Robust.Shared.Noise; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Dictionary; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; @@ -11,8 +12,6 @@ namespace Content.Shared.Parallax.Biomes; [RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true), Access(typeof(SharedBiomeSystem))] public sealed partial class BiomeComponent : Component { - public FastNoiseLite Noise = new(); - [ViewVariables(VVAccess.ReadWrite), DataField("seed")] [AutoNetworkedField] public int Seed = -1; @@ -70,8 +69,14 @@ public sealed partial class BiomeComponent : Component [DataField("loadedMarkers", customTypeSerializer:typeof(PrototypeIdDictionarySerializer, BiomeMarkerLayerPrototype>))] public Dictionary> LoadedMarkers = new(); - [DataField("markerLayers", customTypeSerializer: typeof(PrototypeIdListSerializer))] - public List MarkerLayers = new(); + [DataField] + public HashSet> MarkerLayers = new(); + + /// + /// One-tick forcing of marker layers to bulldoze any entities in the way. + /// + [DataField] + public HashSet> ForcedMarkerLayers = new(); #endregion } diff --git a/Content.Shared/Parallax/Biomes/BiomeTemplatePrototype.cs b/Content.Shared/Parallax/Biomes/BiomeTemplatePrototype.cs index 74a98f67f0..b9fe40b1ba 100644 --- a/Content.Shared/Parallax/Biomes/BiomeTemplatePrototype.cs +++ b/Content.Shared/Parallax/Biomes/BiomeTemplatePrototype.cs @@ -1,5 +1,4 @@ using Content.Shared.Parallax.Biomes.Layers; -using Robust.Shared.Noise; using Robust.Shared.Prototypes; namespace Content.Shared.Parallax.Biomes; @@ -8,7 +7,7 @@ namespace Content.Shared.Parallax.Biomes; /// A preset group of biome layers to be used for a /// [Prototype("biomeTemplate")] -public sealed class BiomeTemplatePrototype : IPrototype +public sealed partial class BiomeTemplatePrototype : IPrototype { [IdDataField] public string ID { get; } = default!; diff --git a/Content.Shared/Parallax/Biomes/Markers/BiomeMarkerLayerPrototype.cs b/Content.Shared/Parallax/Biomes/Markers/BiomeMarkerLayerPrototype.cs index b2f55f46ed..683900c8ba 100644 --- a/Content.Shared/Parallax/Biomes/Markers/BiomeMarkerLayerPrototype.cs +++ b/Content.Shared/Parallax/Biomes/Markers/BiomeMarkerLayerPrototype.cs @@ -11,14 +11,17 @@ public sealed class BiomeMarkerLayerPrototype : IBiomeMarkerLayer { [IdDataField] public string ID { get; } = default!; - [DataField("proto", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] - public string Prototype { get; private set; } = string.Empty; - /// /// Checks for the relevant entity for the tile before spawning. Useful for substituting walls with ore veins for example. /// - [DataField("entityMask", customTypeSerializer:typeof(PrototypeIdSerializer))] - public string? EntityMask { get; private set; } + [DataField] + public Dictionary EntityMask { get; private set; } = new(); + + /// + /// Default prototype to spawn. If null will fall back to entity mask. + /// + [DataField] + public string? Prototype { get; } /// /// Minimum radius between 2 points @@ -33,10 +36,16 @@ public sealed class BiomeMarkerLayerPrototype : IBiomeMarkerLayer public int MaxCount = int.MaxValue; /// - /// How many mobs to spawn in one group. + /// Minimum entities to spawn in one group. + /// + [DataField] + public int MinGroupSize = 1; + + /// + /// Maximum entities to spawn in one group. /// - [DataField("groupCount")] - public int GroupCount = 1; + [DataField] + public int MaxGroupSize = 1; /// [DataField("size")] diff --git a/Content.Shared/Parallax/Biomes/Markers/IBiomeMarkerLayer.cs b/Content.Shared/Parallax/Biomes/Markers/IBiomeMarkerLayer.cs index f92aa68811..de2913bb09 100644 --- a/Content.Shared/Parallax/Biomes/Markers/IBiomeMarkerLayer.cs +++ b/Content.Shared/Parallax/Biomes/Markers/IBiomeMarkerLayer.cs @@ -11,9 +11,9 @@ public interface IBiomeMarkerLayer : IPrototype /// /// Biome template to use as a mask for this layer. /// - public string? EntityMask { get; } + public Dictionary EntityMask { get; } - public string Prototype { get; } + public string? Prototype { get; } /// /// How large the pre-generated points area is. diff --git a/Content.Shared/Parallax/Biomes/SharedBiomeSystem.cs b/Content.Shared/Parallax/Biomes/SharedBiomeSystem.cs index e22f009760..a65251a0f6 100644 --- a/Content.Shared/Parallax/Biomes/SharedBiomeSystem.cs +++ b/Content.Shared/Parallax/Biomes/SharedBiomeSystem.cs @@ -6,6 +6,7 @@ using Robust.Shared.Map.Components; using Robust.Shared.Noise; using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.Manager; using Robust.Shared.Utility; namespace Content.Shared.Parallax.Biomes; @@ -13,21 +14,11 @@ namespace Content.Shared.Parallax.Biomes; public abstract class SharedBiomeSystem : EntitySystem { [Dependency] protected readonly IPrototypeManager ProtoManager = default!; + [Dependency] private readonly ISerializationManager _serManager = default!; [Dependency] protected readonly ITileDefinitionManager TileDefManager = default!; protected const byte ChunkSize = 8; - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnBiomeAfterHandleState); - } - - private void OnBiomeAfterHandleState(EntityUid uid, BiomeComponent component, ref AfterAutoHandleStateEvent args) - { - component.Noise.SetSeed(component.Seed); - } - private T Pick(List collection, float value) { // Listen I don't need this exact and I'm too lazy to finetune just for random ent picking. @@ -89,13 +80,13 @@ public bool TryGetBiomeTile(EntityUid uid, MapGridComponent grid, Vector2i indic return false; } - return TryGetBiomeTile(indices, biome.Layers, biome.Noise, grid, out tile); + return TryGetBiomeTile(indices, biome.Layers, biome.Seed, grid, out tile); } /// /// Tries to get the tile, real or otherwise, for the specified indices. /// - public bool TryGetBiomeTile(Vector2i indices, List layers, FastNoiseLite noise, MapGridComponent? grid, [NotNullWhen(true)] out Tile? tile) + public bool TryGetBiomeTile(Vector2i indices, List layers, int seed, MapGridComponent? grid, [NotNullWhen(true)] out Tile? tile) { if (grid?.TryGetTileRef(indices, out var tileRef) == true && !tileRef.Tile.IsEmpty) { @@ -103,23 +94,23 @@ public bool TryGetBiomeTile(Vector2i indices, List layers, FastNois return true; } - var oldSeed = noise.GetSeed(); - for (var i = layers.Count - 1; i >= 0; i--) { var layer = layers[i]; + var noiseCopy = GetNoise(layer.Noise, seed); + + var invert = layer.Invert; + var value = noiseCopy.GetNoise(indices.X, indices.Y); + value = invert ? value * -1 : value; + + if (value < layer.Threshold) + continue; // Check if the tile is from meta layer, otherwise fall back to default layers. if (layer is BiomeMetaLayer meta) { - SetNoise(noise, oldSeed, layer.Noise); - var found = noise.GetNoise(indices.X, indices.Y); - found *= layer.Invert ? -1 : 1; - - if (found > layer.Threshold && TryGetBiomeTile(indices, ProtoManager.Index(meta.Template).Layers, noise, - grid, out tile)) + if (TryGetBiomeTile(indices, ProtoManager.Index(meta.Template).Layers, seed, grid, out tile)) { - noise.SetSeed(oldSeed); return true; } @@ -129,16 +120,12 @@ public bool TryGetBiomeTile(Vector2i indices, List layers, FastNois if (layer is not BiomeTileLayer tileLayer) continue; - SetNoise(noise, oldSeed, layer.Noise); - - if (TryGetTile(indices, noise, tileLayer.Invert, tileLayer.Threshold, ProtoManager.Index(tileLayer.Tile), tileLayer.Variants, out tile)) + if (TryGetTile(indices, noiseCopy, tileLayer.Invert, tileLayer.Threshold, ProtoManager.Index(tileLayer.Tile), tileLayer.Variants, out tile)) { - noise.SetSeed(oldSeed); return true; } } - noise.SetSeed(oldSeed); tile = null; return false; } @@ -146,9 +133,9 @@ public bool TryGetBiomeTile(Vector2i indices, List layers, FastNois /// /// Gets the underlying biome tile, ignoring any existing tile that may be there. /// - private bool TryGetTile(Vector2i indices, FastNoiseLite seed, bool invert, float threshold, ContentTileDefinition tileDef, List? variants, [NotNullWhen(true)] out Tile? tile) + private bool TryGetTile(Vector2i indices, FastNoiseLite noise, bool invert, float threshold, ContentTileDefinition tileDef, List? variants, [NotNullWhen(true)] out Tile? tile) { - var found = seed.GetNoise(indices.X, indices.Y); + var found = noise.GetNoise(indices.X, indices.Y); found = invert ? found * -1 : found; if (found < threshold) @@ -163,7 +150,7 @@ private bool TryGetTile(Vector2i indices, FastNoiseLite seed, bool invert, float // Pick a variant tile if they're available as well if (variantCount > 1) { - var variantValue = (seed.GetNoise(indices.X * 8, indices.Y * 8, variantCount) + 1f) / 2f; + var variantValue = (noise.GetNoise(indices.X * 8, indices.Y * 8, variantCount) + 1f) / 2f; variant = (byte) Pick(variantCount, variantValue); if (variants != null) @@ -179,23 +166,28 @@ private bool TryGetTile(Vector2i indices, FastNoiseLite seed, bool invert, float /// /// Tries to get the relevant entity for this tile. /// - protected bool TryGetEntity(Vector2i indices, List layers, FastNoiseLite noise, MapGridComponent grid, + public bool TryGetEntity(Vector2i indices, BiomeComponent component, MapGridComponent grid, [NotNullWhen(true)] out string? entity) { - if (!TryGetBiomeTile(indices, layers, noise, grid, out var tileRef)) + if (!TryGetBiomeTile(indices, component.Layers, component.Seed, grid, out var tile)) { entity = null; return false; } - var tileId = TileDefManager[tileRef.Value.TypeId].ID; - var oldSeed = noise.GetSeed(); + return TryGetEntity(indices, component.Layers, tile.Value, component.Seed, grid, out entity); + } + + + private bool TryGetEntity(Vector2i indices, List layers, Tile tileRef, int seed, MapGridComponent grid, + [NotNullWhen(true)] out string? entity) + { + var tileId = TileDefManager[tileRef.TypeId].ID; for (var i = layers.Count - 1; i >= 0; i--) { var layer = layers[i]; - // Decals might block entity so need to check if there's one in front of us. switch (layer) { case BiomeDummyLayer: @@ -211,9 +203,10 @@ protected bool TryGetEntity(Vector2i indices, List layers, FastNois continue; } - SetNoise(noise, oldSeed, layer.Noise); + var noiseCopy = GetNoise(layer.Noise, seed); + var invert = layer.Invert; - var value = noise.GetNoise(indices.X, indices.Y); + var value = noiseCopy.GetNoise(indices.X, indices.Y); value = invert ? value * -1 : value; if (value < layer.Threshold) @@ -221,29 +214,26 @@ protected bool TryGetEntity(Vector2i indices, List layers, FastNois if (layer is BiomeMetaLayer meta) { - if (TryGetEntity(indices, ProtoManager.Index(meta.Template).Layers, noise, grid, out entity)) + if (TryGetEntity(indices, ProtoManager.Index(meta.Template).Layers, tileRef, seed, grid, out entity)) { - noise.SetSeed(oldSeed); return true; } continue; } + // Decals might block entity so need to check if there's one in front of us. if (layer is not BiomeEntityLayer biomeLayer) { entity = null; - noise.SetSeed(oldSeed); return false; } - var noiseValue = noise.GetNoise(indices.X, indices.Y, i); + var noiseValue = noiseCopy.GetNoise(indices.X, indices.Y, i); entity = Pick(biomeLayer.Entities, (noiseValue + 1f) / 2f); - noise.SetSeed(oldSeed); return true; } - noise.SetSeed(oldSeed); entity = null; return false; } @@ -251,17 +241,16 @@ protected bool TryGetEntity(Vector2i indices, List layers, FastNois /// /// Tries to get the relevant decals for this tile. /// - public bool TryGetDecals(Vector2i indices, List layers, FastNoiseLite noise, MapGridComponent grid, + public bool TryGetDecals(Vector2i indices, List layers, int seed, MapGridComponent grid, [NotNullWhen(true)] out List<(string ID, Vector2 Position)>? decals) { - if (!TryGetBiomeTile(indices, layers, noise, grid, out var tileRef)) + if (!TryGetBiomeTile(indices, layers, seed, grid, out var tileRef)) { decals = null; return false; } var tileId = TileDefManager[tileRef.Value.TypeId].ID; - var oldSeed = noise.GetSeed(); for (var i = layers.Count - 1; i >= 0; i--) { @@ -283,17 +272,18 @@ public bool TryGetDecals(Vector2i indices, List layers, FastNoiseLi continue; } - SetNoise(noise, oldSeed, layer.Noise); var invert = layer.Invert; + var noiseCopy = GetNoise(layer.Noise, seed); + var value = noiseCopy.GetNoise(indices.X, indices.Y); + value = invert ? value * -1 : value; + + if (value < layer.Threshold) + continue; if (layer is BiomeMetaLayer meta) { - var found = noise.GetNoise(indices.X, indices.Y); - found *= layer.Invert ? -1 : 1; - - if (found > layer.Threshold && TryGetDecals(indices, ProtoManager.Index(meta.Template).Layers, noise, grid, out decals)) + if (TryGetDecals(indices, ProtoManager.Index(meta.Template).Layers, seed, grid, out decals)) { - noise.SetSeed(oldSeed); return true; } @@ -303,14 +293,7 @@ public bool TryGetDecals(Vector2i indices, List layers, FastNoiseLi // Check if the other layer should even render, if not then keep going. if (layer is not BiomeDecalLayer decalLayer) { - var value = noise.GetNoise(indices.X, indices.Y); - value = invert ? value * -1 : value; - - if (value < layer.Threshold) - continue; - decals = null; - noise.SetSeed(oldSeed); return false; } @@ -321,13 +304,13 @@ public bool TryGetDecals(Vector2i indices, List layers, FastNoiseLi for (var y = 0; y < decalLayer.Divisions; y++) { var index = new Vector2(indices.X + x * 1f / decalLayer.Divisions, indices.Y + y * 1f / decalLayer.Divisions); - var decalValue = noise.GetNoise(index.X, index.Y); + var decalValue = noiseCopy.GetNoise(index.X, index.Y); decalValue = invert ? decalValue * -1 : decalValue; if (decalValue < decalLayer.Threshold) continue; - decals.Add((Pick(decalLayer.Decals, (noise.GetNoise(indices.X, indices.Y, x + y * decalLayer.Divisions) + 1f) / 2f), index)); + decals.Add((Pick(decalLayer.Decals, (noiseCopy.GetNoise(indices.X, indices.Y, x + y * decalLayer.Divisions) + 1f) / 2f), index)); } } @@ -335,34 +318,20 @@ public bool TryGetDecals(Vector2i indices, List layers, FastNoiseLi if (decals.Count == 0) continue; - noise.SetSeed(oldSeed); return true; } - noise.SetSeed(oldSeed); decals = null; return false; } - private void SetNoise(FastNoiseLite noise, int oldSeed, FastNoiseLite data) + private FastNoiseLite GetNoise(FastNoiseLite seedNoise, int seed) { - // General - noise.SetSeed(oldSeed + data.GetSeed()); - noise.SetFrequency(data.GetFrequency()); - noise.SetNoiseType(data.GetNoiseType()); - - noise.GetRotationType3D(); - - // Fractal - noise.SetFractalType(data.GetFractalType()); - noise.SetFractalOctaves(data.GetFractalOctaves()); - noise.SetFractalLacunarity(data.GetFractalLacunarity()); - - // Cellular - noise.SetCellularDistanceFunction(data.GetCellularDistanceFunction()); - noise.SetCellularReturnType(data.GetCellularReturnType()); - noise.SetCellularJitter(data.GetCellularJitter()); - - // Domain warps require separate noise + var noiseCopy = new FastNoiseLite(); + _serManager.CopyTo(seedNoise, ref noiseCopy, notNullableOverride: true); + noiseCopy.SetSeed(noiseCopy.GetSeed() + seed); + // Ensure re-calculate is run. + noiseCopy.SetFractalOctaves(noiseCopy.GetFractalOctaves()); + return noiseCopy; } } diff --git a/Content.Shared/Physics/CollisionGroup.cs b/Content.Shared/Physics/CollisionGroup.cs index bde0573206..1c10fefd5d 100644 --- a/Content.Shared/Physics/CollisionGroup.cs +++ b/Content.Shared/Physics/CollisionGroup.cs @@ -22,6 +22,7 @@ public enum CollisionGroup GhostImpassable = 1 << 5, // 32 Things impassible by ghosts/observers, ie blessed tiles or forcefields BulletImpassable = 1 << 6, // 64 Can be hit by bullets InteractImpassable = 1 << 7, // 128 Blocks interaction/InRangeUnobstructed + DoorPassable = 1 << 8, // 256 Allows door to close over top, Like blast doors over conveyors for disposals rooms/cargo. MapGrid = MapGridHelpers.CollisionGroup, // Map grids, like shuttles. This is the actual grid itself, not the walls or other entities connected to the grid. @@ -45,6 +46,7 @@ public enum CollisionGroup // Machines, computers MachineMask = Impassable | MidImpassable | LowImpassable, MachineLayer = Opaque | MidImpassable | LowImpassable | BulletImpassable, + ConveyorMask = Impassable | MidImpassable | LowImpassable | DoorPassable, // Tables that SmallMobs can go under TableMask = Impassable | MidImpassable, diff --git a/Content.Shared/Placeable/ItemPlacerSystem.cs b/Content.Shared/Placeable/ItemPlacerSystem.cs index ec6ece671f..f2fe58adcb 100644 --- a/Content.Shared/Placeable/ItemPlacerSystem.cs +++ b/Content.Shared/Placeable/ItemPlacerSystem.cs @@ -26,8 +26,8 @@ private void OnStartCollide(EntityUid uid, ItemPlacerComponent comp, ref StartCo if (comp.Whitelist != null && !comp.Whitelist.IsValid(args.OtherEntity)) return; - if (TryComp(uid, out var wakeComp)) - _wake.SetEnabled(uid, false, wakeComp); + if (TryComp(args.OtherEntity, out var wakeComp)) + _wake.SetEnabled(args.OtherEntity, false, wakeComp); var count = comp.PlacedEntities.Count; if (comp.MaxEntities == 0 || count < comp.MaxEntities) @@ -47,8 +47,8 @@ private void OnStartCollide(EntityUid uid, ItemPlacerComponent comp, ref StartCo private void OnEndCollide(EntityUid uid, ItemPlacerComponent comp, ref EndCollideEvent args) { - if (TryComp(uid, out var wakeComp)) - _wake.SetEnabled(uid, true, wakeComp); + if (TryComp(args.OtherEntity, out var wakeComp)) + _wake.SetEnabled(args.OtherEntity, true, wakeComp); comp.PlacedEntities.Remove(args.OtherEntity); diff --git a/Content.Shared/Players/PlayTimeTracking/PlayTimeTrackerPrototype.cs b/Content.Shared/Players/PlayTimeTracking/PlayTimeTrackerPrototype.cs index 3b9aac97fd..d1cfc7f8d4 100644 --- a/Content.Shared/Players/PlayTimeTracking/PlayTimeTrackerPrototype.cs +++ b/Content.Shared/Players/PlayTimeTracking/PlayTimeTrackerPrototype.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Players.PlayTimeTracking; /// Given to a role to specify its ID for role-timer tracking purposes. That's it. /// [Prototype("playTimeTracker")] -public sealed class PlayTimeTrackerPrototype : IPrototype +public sealed partial class PlayTimeTrackerPrototype : IPrototype { [IdDataField] public string ID { get; } = default!; } diff --git a/Content.Server/PowerCell/PowerCellSlotEmptyEvent.cs b/Content.Shared/PowerCell/PowerCellSlotEmptyEvent.cs similarity index 83% rename from Content.Server/PowerCell/PowerCellSlotEmptyEvent.cs rename to Content.Shared/PowerCell/PowerCellSlotEmptyEvent.cs index b2930ee50f..e4075175ae 100644 --- a/Content.Server/PowerCell/PowerCellSlotEmptyEvent.cs +++ b/Content.Shared/PowerCell/PowerCellSlotEmptyEvent.cs @@ -1,4 +1,4 @@ -namespace Content.Server.PowerCell; +namespace Content.Shared.PowerCell; /// /// Raised directed on an entity when its active power cell has no more charge to supply. diff --git a/Content.Shared/PowerCell/SharedPowerCellSystem.cs b/Content.Shared/PowerCell/SharedPowerCellSystem.cs index 57af440360..508bfc85f0 100644 --- a/Content.Shared/PowerCell/SharedPowerCellSystem.cs +++ b/Content.Shared/PowerCell/SharedPowerCellSystem.cs @@ -2,24 +2,26 @@ using Content.Shared.PowerCell.Components; using Content.Shared.Rejuvenate; using Robust.Shared.Containers; +using Robust.Shared.Timing; namespace Content.Shared.PowerCell; public abstract class SharedPowerCellSystem : EntitySystem { + [Dependency] protected readonly IGameTiming Timing = default!; [Dependency] private readonly ItemSlotsSystem _itemSlots = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnRejuventate); + SubscribeLocalEvent(OnRejuvenate); SubscribeLocalEvent(OnCellInserted); SubscribeLocalEvent(OnCellRemoved); SubscribeLocalEvent(OnCellInsertAttempt); } - private void OnRejuventate(EntityUid uid, PowerCellSlotComponent component, RejuvenateEvent args) + private void OnRejuvenate(EntityUid uid, PowerCellSlotComponent component, RejuvenateEvent args) { if (!_itemSlots.TryGetSlot(uid, component.CellSlotId, out var itemSlot) || !itemSlot.Item.HasValue) return; @@ -60,4 +62,35 @@ protected virtual void OnCellRemoved(EntityUid uid, PowerCellSlotComponent compo _appearance.SetData(uid, PowerCellSlotVisuals.Enabled, false); RaiseLocalEvent(uid, new PowerCellChangedEvent(true), false); } + + public void SetPowerCellDrawEnabled(EntityUid uid, bool enabled, PowerCellDrawComponent? component = null) + { + if (!Resolve(uid, ref component, false) || enabled == component.Drawing) + return; + + component.Drawing = enabled; + component.NextUpdateTime = Timing.CurTime; + } + + /// + /// Returns whether the entity has a slotted battery and charge. + /// + /// + /// + /// + /// Popup to this user with the relevant detail if specified. + public abstract bool HasActivatableCharge( + EntityUid uid, + PowerCellDrawComponent? battery = null, + PowerCellSlotComponent? cell = null, + EntityUid? user = null); + + /// + /// Whether the power cell has any power at all for the draw rate. + /// + public abstract bool HasDrawCharge( + EntityUid uid, + PowerCellDrawComponent? battery = null, + PowerCellSlotComponent? cell = null, + EntityUid? user = null); } diff --git a/Content.Shared/Preferences/HumanoidCharacterProfile.cs b/Content.Shared/Preferences/HumanoidCharacterProfile.cs index de5ef76232..2fdb0b0f91 100644 --- a/Content.Shared/Preferences/HumanoidCharacterProfile.cs +++ b/Content.Shared/Preferences/HumanoidCharacterProfile.cs @@ -407,7 +407,16 @@ public void EnsureValid() var configManager = IoCManager.Resolve(); if (configManager.GetCVar(CCVars.RestrictedNames)) { - name = Regex.Replace(name, @"[^A-Z,a-z,0-9, -]", string.Empty); + name = Regex.Replace(name, @"[^\u0030-\u0039,\u0041-\u005A,\u0061-\u007A,\u00C0-\u00D6,\u00D8-\u00F6,\u00F8-\u00FF,\u0100-\u017F, '.,-]", string.Empty); + /* + * 0030-0039 Basic Latin: ASCII Digits + * 0041-005A Basic Latin: Uppercase Latin Alphabet + * 0061-007A Basic Latin: Lowercase Latin Alphabet + * 00C0-00D6 Latin-1 Supplement: Letters I + * 00D8-00F6 Latin-1 Supplement: Letters II + * 00F8-00FF Latin-1 Supplement: Letters III + * 0100-017F Latin Extended A: European Latin + */ } if (configManager.GetCVar(CCVars.ICNameCase)) diff --git a/Content.Shared/Preferences/MsgPreferencesAndSettings.cs b/Content.Shared/Preferences/MsgPreferencesAndSettings.cs index d9179e634a..c969c15f42 100644 --- a/Content.Shared/Preferences/MsgPreferencesAndSettings.cs +++ b/Content.Shared/Preferences/MsgPreferencesAndSettings.cs @@ -18,14 +18,17 @@ public sealed class MsgPreferencesAndSettings : NetMessage public override void ReadFromBuffer(NetIncomingMessage buffer, IRobustSerializer serializer) { var length = buffer.ReadVariableInt32(); - using (var stream = buffer.ReadAlignedMemory(length)) + + using (var stream = new MemoryStream()) { + buffer.ReadAlignedMemory(stream, length); serializer.DeserializeDirect(stream, out Preferences); } length = buffer.ReadVariableInt32(); - using (var stream = buffer.ReadAlignedMemory(length)) + using (var stream = new MemoryStream()) { + buffer.ReadAlignedMemory(stream, length); serializer.DeserializeDirect(stream, out Settings); } } diff --git a/Content.Shared/Preferences/MsgUpdateCharacter.cs b/Content.Shared/Preferences/MsgUpdateCharacter.cs index 1cc662908d..3c4af1833e 100644 --- a/Content.Shared/Preferences/MsgUpdateCharacter.cs +++ b/Content.Shared/Preferences/MsgUpdateCharacter.cs @@ -19,7 +19,8 @@ public override void ReadFromBuffer(NetIncomingMessage buffer, IRobustSerializer { Slot = buffer.ReadInt32(); var length = buffer.ReadVariableInt32(); - using var stream = buffer.ReadAlignedMemory(length); + using var stream = new MemoryStream(length); + buffer.ReadAlignedMemory(stream, length); Profile = serializer.Deserialize(stream); } diff --git a/Content.Shared/Procedural/DungeonConfigPrototype.cs b/Content.Shared/Procedural/DungeonConfigPrototype.cs index 02f2aad1d4..07a7000d63 100644 --- a/Content.Shared/Procedural/DungeonConfigPrototype.cs +++ b/Content.Shared/Procedural/DungeonConfigPrototype.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Procedural; [Prototype("dungeonConfig")] -public sealed class DungeonConfigPrototype : IPrototype +public sealed partial class DungeonConfigPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Shared/Procedural/DungeonPresetPrototype.cs b/Content.Shared/Procedural/DungeonPresetPrototype.cs index 29ae933be6..a143c3c8c0 100644 --- a/Content.Shared/Procedural/DungeonPresetPrototype.cs +++ b/Content.Shared/Procedural/DungeonPresetPrototype.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Procedural; [Prototype("dungeonPreset")] -public sealed class DungeonPresetPrototype : IPrototype +public sealed partial class DungeonPresetPrototype : IPrototype { [IdDataField] public string ID { get; } = default!; diff --git a/Content.Shared/Procedural/DungeonRoomPackPrototype.cs b/Content.Shared/Procedural/DungeonRoomPackPrototype.cs index 20332271e3..8cd129d30a 100644 --- a/Content.Shared/Procedural/DungeonRoomPackPrototype.cs +++ b/Content.Shared/Procedural/DungeonRoomPackPrototype.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Procedural; [Prototype("dungeonRoomPack")] -public sealed class DungeonRoomPackPrototype : IPrototype +public sealed partial class DungeonRoomPackPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = string.Empty; diff --git a/Content.Shared/Procedural/DungeonRoomPrototype.cs b/Content.Shared/Procedural/DungeonRoomPrototype.cs index 2fc2bcc880..74fa4b36e3 100644 --- a/Content.Shared/Procedural/DungeonRoomPrototype.cs +++ b/Content.Shared/Procedural/DungeonRoomPrototype.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Procedural; [Prototype("dungeonRoom")] -public sealed class DungeonRoomPrototype : IPrototype +public sealed partial class DungeonRoomPrototype : IPrototype { [IdDataField] public string ID { get; } = string.Empty; diff --git a/Content.Shared/Procedural/Loot/BiomeMarkerLoot.cs b/Content.Shared/Procedural/Loot/BiomeMarkerLoot.cs index 600685cab5..2eda4b059c 100644 --- a/Content.Shared/Procedural/Loot/BiomeMarkerLoot.cs +++ b/Content.Shared/Procedural/Loot/BiomeMarkerLoot.cs @@ -1,4 +1,5 @@ using Content.Shared.Parallax.Biomes.Markers; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Dictionary; @@ -9,7 +10,6 @@ namespace Content.Shared.Procedural.Loot; /// public sealed partial class BiomeMarkerLoot : IDungeonLoot { - [DataField("proto", required: true, - customTypeSerializer: typeof(PrototypeIdValueDictionarySerializer))] - public Dictionary Prototype = new(); + [DataField("proto", required: true)] + public ProtoId Prototype = new(); } diff --git a/Content.Shared/Procedural/Loot/RandomSpawnsLoot.cs b/Content.Shared/Procedural/Loot/RandomSpawnsLoot.cs index a9b71e7b61..e429eed402 100644 --- a/Content.Shared/Procedural/Loot/RandomSpawnsLoot.cs +++ b/Content.Shared/Procedural/Loot/RandomSpawnsLoot.cs @@ -14,7 +14,7 @@ public sealed partial class RandomSpawnsLoot : IDungeonLoot } [DataDefinition] -public partial record struct RandomSpawnLootEntry : IBudgetEntry +public partial record struct RandomSpawnLootEntry() : IBudgetEntry { [ViewVariables(VVAccess.ReadWrite), DataField("proto", required: true, customTypeSerializer:typeof(PrototypeIdSerializer))] public string Proto { get; set; } = string.Empty; diff --git a/Content.Shared/Procedural/Loot/SalvageLootPrototype.cs b/Content.Shared/Procedural/Loot/SalvageLootPrototype.cs index ba684dfe43..9e9c0d3e64 100644 --- a/Content.Shared/Procedural/Loot/SalvageLootPrototype.cs +++ b/Content.Shared/Procedural/Loot/SalvageLootPrototype.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Procedural.Loot; /// Spawned inside of a salvage mission. /// [Prototype("salvageLoot")] -public sealed class SalvageLootPrototype : IPrototype +public sealed partial class SalvageLootPrototype : IPrototype { [IdDataField] public string ID { get; } = default!; diff --git a/Content.Shared/Procedural/SalvageDifficultyPrototype.cs b/Content.Shared/Procedural/SalvageDifficultyPrototype.cs index 335bebde3f..6bf447fdc7 100644 --- a/Content.Shared/Procedural/SalvageDifficultyPrototype.cs +++ b/Content.Shared/Procedural/SalvageDifficultyPrototype.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Procedural; [Prototype("salvageDifficulty")] -public sealed class SalvageDifficultyPrototype : IPrototype +public sealed partial class SalvageDifficultyPrototype : IPrototype { [IdDataField] public string ID { get; } = string.Empty; diff --git a/Content.Shared/Projectiles/ProjectileComponent.cs b/Content.Shared/Projectiles/ProjectileComponent.cs index 276e0943e0..3b5cd33c79 100644 --- a/Content.Shared/Projectiles/ProjectileComponent.cs +++ b/Content.Shared/Projectiles/ProjectileComponent.cs @@ -33,6 +33,9 @@ public sealed partial class ProjectileComponent : Component [DataField("deleteOnCollide")] public bool DeleteOnCollide = true; + [DataField("canPenetrate")] + public bool CanPenetrate = false; + [DataField("ignoreResistances")] public bool IgnoreResistances = false; diff --git a/Content.Shared/Projectiles/SharedProjectileSystem.cs b/Content.Shared/Projectiles/SharedProjectileSystem.cs index 63b4cb13aa..e003764f92 100644 --- a/Content.Shared/Projectiles/SharedProjectileSystem.cs +++ b/Content.Shared/Projectiles/SharedProjectileSystem.cs @@ -1,9 +1,11 @@ using System.Numerics; +using Content.Shared.CombatMode.Pacification; using Content.Shared.Damage; using Content.Shared.DoAfter; using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction; using Content.Shared.Throwing; +using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Network; using Robust.Shared.Physics; @@ -34,6 +36,7 @@ public override void Initialize() SubscribeLocalEvent(OnEmbedThrowDoHit); SubscribeLocalEvent(OnEmbedActivate); SubscribeLocalEvent(OnEmbedRemove); + SubscribeLocalEvent(OnAttemptPacifiedThrow); } private void OnEmbedActivate(EntityUid uid, EmbeddableProjectileComponent component, ActivateInWorldEvent args) @@ -149,6 +152,14 @@ private sealed partial class RemoveEmbeddedProjectileEvent : DoAfterEvent { public override DoAfterEvent Clone() => this; } + + /// + /// Prevent players with the Pacified status effect from throwing embeddable projectiles. + /// + private void OnAttemptPacifiedThrow(Entity ent, ref AttemptPacifiedThrowEvent args) + { + args.Cancel("pacified-cannot-throw-embed"); + } } [Serializable, NetSerializable] diff --git a/Content.Shared/Prying/Systems/PryingSystem.cs b/Content.Shared/Prying/Systems/PryingSystem.cs index 5fd94c3438..bc37ab035a 100644 --- a/Content.Shared/Prying/Systems/PryingSystem.cs +++ b/Content.Shared/Prying/Systems/PryingSystem.cs @@ -8,6 +8,8 @@ using System.Diagnostics.CodeAnalysis; using Content.Shared.Interaction; using Content.Shared.Popups; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using PryUnpoweredComponent = Content.Shared.Prying.Components.PryUnpoweredComponent; namespace Content.Shared.Prying.Systems; diff --git a/Content.Shared/Pulling/Systems/SharedPullingStateManagementSystem.cs b/Content.Shared/Pulling/Systems/SharedPullingStateManagementSystem.cs index 974859a620..f2c7518ae2 100644 --- a/Content.Shared/Pulling/Systems/SharedPullingStateManagementSystem.cs +++ b/Content.Shared/Pulling/Systems/SharedPullingStateManagementSystem.cs @@ -210,5 +210,18 @@ public void ForceSetMovingTo(SharedPullableComponent pullable, EntityCoordinates RaiseLocalEvent(pullable.Owner, new PullableMoveMessage(), true); } } + + /// + /// Changes if the entity needs a hand in order to be able to pull objects. + /// + public void ChangeHandRequirement(EntityUid uid, bool needsHands, SharedPullerComponent? comp) + { + if (!Resolve(uid, ref comp, false)) + return; + + comp.NeedsHands = needsHands; + + Dirty(uid, comp); + } } } diff --git a/Content.Shared/RCD/Systems/RCDSystem.cs b/Content.Shared/RCD/Systems/RCDSystem.cs index ccc47a2fde..402b424fb6 100644 --- a/Content.Shared/RCD/Systems/RCDSystem.cs +++ b/Content.Shared/RCD/Systems/RCDSystem.cs @@ -13,6 +13,7 @@ using Content.Shared.Tag; using Content.Shared.Tiles; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Network; @@ -37,6 +38,7 @@ public sealed class RCDSystem : EntitySystem [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly TagSystem _tag = default!; [Dependency] private readonly TurfSystem _turf = default!; + [Dependency] private readonly IGameTiming _gameTiming = default!; private readonly int RcdModeCount = Enum.GetValues(typeof(RcdMode)).Length; @@ -109,7 +111,9 @@ private void OnAfterInteract(EntityUid uid, RCDComponent comp, AfterInteractEven }; args.Handled = true; - _doAfter.TryStartDoAfter(doAfterArgs); + + if (_doAfter.TryStartDoAfter(doAfterArgs) && _gameTiming.IsFirstTimePredicted) + Spawn("EffectRCDConstruction", location); } private void OnDoAfterAttempt(EntityUid uid, RCDComponent comp, DoAfterAttemptEvent args) diff --git a/Content.Shared/Radiation/Components/GeigerComponent.cs b/Content.Shared/Radiation/Components/GeigerComponent.cs index 585c1a51dc..71edb70b37 100644 --- a/Content.Shared/Radiation/Components/GeigerComponent.cs +++ b/Content.Shared/Radiation/Components/GeigerComponent.cs @@ -82,7 +82,7 @@ public sealed partial class GeigerComponent : Component /// Current stream of geiger counter audio. /// Played only for current user. /// - public IPlayingAudioStream? Stream; + public EntityUid? Stream; } [Serializable, NetSerializable] diff --git a/Content.Shared/Radiation/Components/RadiationSourceComponent.cs b/Content.Shared/Radiation/Components/RadiationSourceComponent.cs index 9d2106f993..874024a905 100644 --- a/Content.Shared/Radiation/Components/RadiationSourceComponent.cs +++ b/Content.Shared/Radiation/Components/RadiationSourceComponent.cs @@ -23,4 +23,7 @@ public sealed partial class RadiationSourceComponent : Component [ViewVariables(VVAccess.ReadWrite)] [DataField("slope")] public float Slope = 0.5f; + + [DataField, ViewVariables(VVAccess.ReadWrite)] + public bool Enabled = true; } diff --git a/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs b/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs index eb97fe4113..31856eefac 100644 --- a/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs +++ b/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs @@ -9,6 +9,8 @@ using Content.Shared.Tools; using Content.Shared.Tools.Components; using Content.Shared.Wires; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Network; using Robust.Shared.Prototypes; diff --git a/Content.Shared/Radio/RadioChannelPrototype.cs b/Content.Shared/Radio/RadioChannelPrototype.cs index b8b862f61f..cc65f88537 100644 --- a/Content.Shared/Radio/RadioChannelPrototype.cs +++ b/Content.Shared/Radio/RadioChannelPrototype.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Radio; [Prototype("radioChannel")] -public sealed class RadioChannelPrototype : IPrototype +public sealed partial class RadioChannelPrototype : IPrototype { /// /// Human-readable name for the channel. @@ -30,7 +30,7 @@ public sealed class RadioChannelPrototype : IPrototype public string ID { get; } = default!; /// - /// If channel is long range it doesn't require telecommunication server + /// If channel is long range it doesn't require telecommunication server /// and messages can be sent across different stations /// [DataField("longRange"), ViewVariables] diff --git a/Content.Shared/Random/RulesPrototype.cs b/Content.Shared/Random/RulesPrototype.cs index 3d1e1ab1a1..6bbc3a68f8 100644 --- a/Content.Shared/Random/RulesPrototype.cs +++ b/Content.Shared/Random/RulesPrototype.cs @@ -12,7 +12,7 @@ namespace Content.Shared.Random; /// e.g. "choose maintenance audio if 90% of tiles nearby are maintenance tiles" /// [Prototype("rules")] -public sealed class RulesPrototype : IPrototype +public sealed partial class RulesPrototype : IPrototype { [IdDataField] public string ID { get; } = string.Empty; diff --git a/Content.Shared/Random/WeightedRandomFillSolutionPrototype.cs b/Content.Shared/Random/WeightedRandomFillSolutionPrototype.cs index 8a6f133d09..48dc99799c 100644 --- a/Content.Shared/Random/WeightedRandomFillSolutionPrototype.cs +++ b/Content.Shared/Random/WeightedRandomFillSolutionPrototype.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Random; /// Random weighting dataset for solutions, able to specify reagents quantity. /// [Prototype("weightedRandomFillSolution")] -public sealed class WeightedRandomFillSolutionPrototype : IPrototype +public sealed partial class WeightedRandomFillSolutionPrototype : IPrototype { [IdDataField] public string ID { get; } = default!; diff --git a/Content.Shared/RatKing/RatKingComponent.cs b/Content.Shared/RatKing/RatKingComponent.cs index 43c2858de8..712d4ae3a1 100644 --- a/Content.Shared/RatKing/RatKingComponent.cs +++ b/Content.Shared/RatKing/RatKingComponent.cs @@ -46,10 +46,10 @@ public sealed partial class RatKingComponent : Component public float HungerPerDomainUse = 50f; /// - /// How many moles of Miasma are released after one us of Domain + /// How many moles of ammonia are released after one us of Domain /// - [DataField("molesMiasmaPerDomain"), ViewVariables(VVAccess.ReadWrite)] - public float MolesMiasmaPerDomain = 100f; + [DataField("molesAmmoniaPerDomain"), ViewVariables(VVAccess.ReadWrite)] + public float MolesAmmoniaPerDomain = 200f; /// /// The current order that the Rat King assigned. diff --git a/Content.Shared/RatKing/SharedRatKingSystem.cs b/Content.Shared/RatKing/SharedRatKingSystem.cs index 93293d09be..d7a8ee5460 100644 --- a/Content.Shared/RatKing/SharedRatKingSystem.cs +++ b/Content.Shared/RatKing/SharedRatKingSystem.cs @@ -3,6 +3,8 @@ using Content.Shared.Random; using Content.Shared.Random.Helpers; using Content.Shared.Verbs; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Network; using Robust.Shared.Prototypes; using Robust.Shared.Random; @@ -117,7 +119,8 @@ private void OnGetVerb(EntityUid uid, RatKingRummageableComponent component, Get { BlockDuplicate = true, BreakOnDamage = true, - BreakOnUserMove = true + BreakOnUserMove = true, + DistanceThreshold = 2f }); } }); diff --git a/Content.Shared/Research/Prototypes/LatheRecipePrototype.cs b/Content.Shared/Research/Prototypes/LatheRecipePrototype.cs index 8dafad3dc5..709a592cc1 100644 --- a/Content.Shared/Research/Prototypes/LatheRecipePrototype.cs +++ b/Content.Shared/Research/Prototypes/LatheRecipePrototype.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Research.Prototypes { [NetSerializable, Serializable, Prototype("latheRecipe")] - public sealed class LatheRecipePrototype : IPrototype + public sealed partial class LatheRecipePrototype : IPrototype { [ViewVariables] [IdDataField] diff --git a/Content.Shared/Research/Prototypes/TechDisciplinePrototype.cs b/Content.Shared/Research/Prototypes/TechDisciplinePrototype.cs index 76eb8092ad..b48d8256b7 100644 --- a/Content.Shared/Research/Prototypes/TechDisciplinePrototype.cs +++ b/Content.Shared/Research/Prototypes/TechDisciplinePrototype.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Research.Prototypes; /// that governs how s are unlocked. /// [Prototype("techDiscipline")] -public sealed class TechDisciplinePrototype : IPrototype +public sealed partial class TechDisciplinePrototype : IPrototype { /// [IdDataField] diff --git a/Content.Shared/Research/Prototypes/TechnologyPrototype.cs b/Content.Shared/Research/Prototypes/TechnologyPrototype.cs index 38000677a1..93b30772b5 100644 --- a/Content.Shared/Research/Prototypes/TechnologyPrototype.cs +++ b/Content.Shared/Research/Prototypes/TechnologyPrototype.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Research.Prototypes; /// This is a prototype for a technology that can be unlocked. /// [Prototype("technology")] -public sealed class TechnologyPrototype : IPrototype +public sealed partial class TechnologyPrototype : IPrototype { /// [IdDataField] diff --git a/Content.Shared/Revenant/Components/RevenantComponent.cs b/Content.Shared/Revenant/Components/RevenantComponent.cs index 9e92762b18..b3d47e22f9 100644 --- a/Content.Shared/Revenant/Components/RevenantComponent.cs +++ b/Content.Shared/Revenant/Components/RevenantComponent.cs @@ -1,6 +1,7 @@ using System.Numerics; using Content.Shared.FixedPoint; using Content.Shared.Store; +using Content.Shared.Whitelist; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; @@ -182,6 +183,19 @@ public sealed partial class RevenantComponent : Component ///
[ViewVariables(VVAccess.ReadWrite), DataField("malfunctionRadius")] public float MalfunctionRadius = 3.5f; + + /// + /// Whitelist for entities that can be emagged by malfunction. + /// Used to prevent ultra gamer things like ghost emagging chem or instantly launching the shuttle. + /// + [DataField] + public EntityWhitelist? MalfunctionWhitelist; + + /// + /// Whitelist for entities that can never be emagged by malfunction. + /// + [DataField] + public EntityWhitelist? MalfunctionBlacklist; #endregion #region Visualizer diff --git a/Content.Shared/Roles/AntagPrototype.cs b/Content.Shared/Roles/AntagPrototype.cs index 91cb94050f..c6acb9b757 100644 --- a/Content.Shared/Roles/AntagPrototype.cs +++ b/Content.Shared/Roles/AntagPrototype.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Roles; /// [Prototype("antag")] [Serializable, NetSerializable] -public sealed class AntagPrototype : IPrototype +public sealed partial class AntagPrototype : IPrototype { [ViewVariables] [IdDataField] diff --git a/Content.Shared/Roles/DepartmentPrototype.cs b/Content.Shared/Roles/DepartmentPrototype.cs index 55b20c4db4..f91d1a43fd 100644 --- a/Content.Shared/Roles/DepartmentPrototype.cs +++ b/Content.Shared/Roles/DepartmentPrototype.cs @@ -1,11 +1,10 @@ -using System.Linq; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; namespace Content.Shared.Roles; [Prototype("department")] -public sealed class DepartmentPrototype : IPrototype +public sealed partial class DepartmentPrototype : IPrototype { [IdDataField] public string ID { get; } = default!; diff --git a/Content.Shared/Roles/JobPrototype.cs b/Content.Shared/Roles/JobPrototype.cs index b4733d0679..54c10c995b 100644 --- a/Content.Shared/Roles/JobPrototype.cs +++ b/Content.Shared/Roles/JobPrototype.cs @@ -11,7 +11,7 @@ namespace Content.Shared.Roles /// Describes information for a single job on the station. /// [Prototype("job")] - public sealed class JobPrototype : IPrototype + public sealed partial class JobPrototype : IPrototype { [ViewVariables] [IdDataField] @@ -56,6 +56,12 @@ public sealed class JobPrototype : IPrototype [DataField("canBeAntag")] public bool CanBeAntag { get; private set; } = true; + /// + /// Nyano/DV: For e.g. prisoners, they'll never use their latejoin spawner. + /// + [DataField("alwaysUseSpawner")] + public bool AlwaysUseSpawner { get; } = false; + /// /// Whether this job is a head. /// The job system will try to pick heads before other jobs on the same priority level. diff --git a/Content.Shared/Roles/JobRequirements.cs b/Content.Shared/Roles/JobRequirements.cs index fbe607c7ce..ef07545ec4 100644 --- a/Content.Shared/Roles/JobRequirements.cs +++ b/Content.Shared/Roles/JobRequirements.cs @@ -134,7 +134,7 @@ public static bool TryRequirementMet( reason = FormattedMessage.FromMarkup(Loc.GetString( "role-timer-department-insufficient", - ("time", deptDiff), + ("time", Math.Ceiling(deptDiff)), ("department", Loc.GetString(deptRequirement.Department)), ("departmentColor", department.Color.ToHex()))); return false; @@ -163,7 +163,9 @@ public static bool TryRequirementMet( if (overallDiff <= 0 || overallTime >= overallRequirement.Time) return true; - reason = FormattedMessage.FromMarkup(Loc.GetString("role-timer-overall-insufficient", ("time", overallDiff))); + reason = FormattedMessage.FromMarkup(Loc.GetString( + "role-timer-overall-insufficient", + ("time", Math.Ceiling(overallDiff)))); return false; } else @@ -199,7 +201,7 @@ public static bool TryRequirementMet( reason = FormattedMessage.FromMarkup(Loc.GetString( "role-timer-role-insufficient", - ("time", roleDiff), + ("time", Math.Ceiling(roleDiff)), ("job", Loc.GetString(proto)), ("departmentColor", departmentColor.ToHex()))); return false; diff --git a/Content.Shared/Roles/Jobs/JobComponent.cs b/Content.Shared/Roles/Jobs/JobComponent.cs index c9053c1c6f..7191e8b397 100644 --- a/Content.Shared/Roles/Jobs/JobComponent.cs +++ b/Content.Shared/Roles/Jobs/JobComponent.cs @@ -1,13 +1,14 @@ -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; namespace Content.Shared.Roles.Jobs; /// /// Added to mind entities to hold the data for the player's current job. /// -[RegisterComponent] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class JobComponent : Component { - [DataField("prototype", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] - public string? PrototypeId; + [DataField(required: true), AutoNetworkedField] + public ProtoId? Prototype; } diff --git a/Content.Shared/Roles/Jobs/SharedJobSystem.cs b/Content.Shared/Roles/Jobs/SharedJobSystem.cs index af97ea1350..fe0f9d115b 100644 --- a/Content.Shared/Roles/Jobs/SharedJobSystem.cs +++ b/Content.Shared/Roles/Jobs/SharedJobSystem.cs @@ -22,19 +22,14 @@ public abstract class SharedJobSystem : EntitySystem public override void Initialize() { base.Initialize(); - _protoManager.PrototypesReloaded += OnProtoReload; + SubscribeLocalEvent(OnProtoReload); SetupTrackerLookup(); } - public override void Shutdown() - { - base.Shutdown(); - _protoManager.PrototypesReloaded -= OnProtoReload; - } - private void OnProtoReload(PrototypesReloadedEventArgs obj) { - SetupTrackerLookup(); + if (obj.WasModified()) + SetupTrackerLookup(); } private void SetupTrackerLookup() @@ -83,7 +78,7 @@ public bool TryGetDepartment(string jobProto, [NotNullWhen(true)] out Department public bool MindHasJobWithId(EntityUid? mindId, string prototypeId) { - return CompOrNull(mindId)?.PrototypeId == prototypeId; + return CompOrNull(mindId)?.Prototype == prototypeId; } public bool MindTryGetJob( @@ -95,8 +90,8 @@ public bool MindTryGetJob( prototype = null; return TryComp(mindId, out comp) && - comp.PrototypeId != null && - _prototypes.TryIndex(comp.PrototypeId, out prototype); + comp.Prototype != null && + _prototypes.TryIndex(comp.Prototype, out prototype); } /// diff --git a/Content.Shared/Roles/SharedRoleSystem.cs b/Content.Shared/Roles/SharedRoleSystem.cs index ebd6730bbe..05d6ab9f37 100644 --- a/Content.Shared/Roles/SharedRoleSystem.cs +++ b/Content.Shared/Roles/SharedRoleSystem.cs @@ -2,6 +2,8 @@ using Content.Shared.Database; using Content.Shared.Mind; using Content.Shared.Roles.Jobs; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Prototypes; namespace Content.Shared.Roles; @@ -10,6 +12,7 @@ public abstract class SharedRoleSystem : EntitySystem { [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly IPrototypeManager _prototypes = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedMindSystem _minds = default!; // TODO please lord make role entities @@ -25,7 +28,7 @@ private void OnJobGetAllRoles(EntityUid uid, JobComponent component, ref MindGet { var name = "game-ticker-unknown-role"; string? playTimeTracker = null; - if (component.PrototypeId != null && _prototypes.TryIndex(component.PrototypeId, out JobPrototype? job)) + if (component.Prototype != null && _prototypes.TryIndex(component.Prototype, out JobPrototype? job)) { name = job.Name; playTimeTracker = job.PlayTimeTracker; @@ -153,4 +156,14 @@ public bool IsAntagonistRole() { return _antagTypes.Contains(typeof(T)); } + + /// + /// Play a sound for the mind, if it has a session attached. + /// Use this for role greeting sounds. + /// + public void MindPlaySound(EntityUid mindId, SoundSpecifier? sound, MindComponent? mind = null) + { + if (Resolve(mindId, ref mind) && mind.Session != null) + _audio.PlayGlobal(sound, mind.Session); + } } diff --git a/Content.Shared/Roles/StartingGearPrototype.cs b/Content.Shared/Roles/StartingGearPrototype.cs index 98e20fe534..0d4122b646 100644 --- a/Content.Shared/Roles/StartingGearPrototype.cs +++ b/Content.Shared/Roles/StartingGearPrototype.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Roles { [Prototype("startingGear")] - public sealed class StartingGearPrototype : IPrototype + public sealed partial class StartingGearPrototype : IPrototype { [DataField] public Dictionary Equipment = new(); diff --git a/Content.Shared/Rounding/ContentHelpers.cs b/Content.Shared/Rounding/ContentHelpers.cs index 65fcb7e367..b1525ed4ee 100644 --- a/Content.Shared/Rounding/ContentHelpers.cs +++ b/Content.Shared/Rounding/ContentHelpers.cs @@ -48,7 +48,7 @@ public static int RoundToLevels(double actual, double max, int levels) } var preround = toOne * (levels - 1); - if (toOne <= threshold || levels <= 2) + if (toOne < threshold || levels <= 2) { return (int) Math.Ceiling(preround); } diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageAirMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageAirMod.cs index 717c21947b..c9f038e38f 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageAirMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageAirMod.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Salvage.Expeditions.Modifiers; /// Which one is selected depends on the mission difficulty, different weightedRandoms are picked from. /// [Prototype("salvageAirMod")] -public sealed class SalvageAirMod : IPrototype, IBiomeSpecificMod +public sealed partial class SalvageAirMod : IPrototype, IBiomeSpecificMod { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageBiomeModPrototype.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageBiomeModPrototype.cs index fe806f2cd3..1d4efbd18d 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageBiomeModPrototype.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageBiomeModPrototype.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Salvage.Expeditions.Modifiers; /// Affects the biome to be used for salvage. /// [Prototype("salvageBiomeMod")] -public sealed class SalvageBiomeModPrototype : IPrototype, ISalvageMod +public sealed partial class SalvageBiomeModPrototype : IPrototype, ISalvageMod { [IdDataField] public string ID { get; } = default!; diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageDungeonModPrototype.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageDungeonModPrototype.cs index f86f7cfd3b..ee3233c551 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageDungeonModPrototype.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageDungeonModPrototype.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Salvage.Expeditions.Modifiers; [Prototype("salvageDungeonMod")] -public sealed class SalvageDungeonModPrototype : IPrototype, IBiomeSpecificMod +public sealed partial class SalvageDungeonModPrototype : IPrototype, IBiomeSpecificMod { [IdDataField] public string ID { get; } = default!; diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageLightMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageLightMod.cs index cfdc6a2b76..a7c38b258d 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageLightMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageLightMod.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Salvage.Expeditions.Modifiers; [Prototype("salvageLightMod")] -public sealed class SalvageLightMod : IPrototype, IBiomeSpecificMod +public sealed partial class SalvageLightMod : IPrototype, IBiomeSpecificMod { [IdDataField] public string ID { get; } = default!; diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageMod.cs index 07c07b75c3..3cc4488684 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageMod.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Salvage.Expeditions.Modifiers; /// Generic modifiers with no additional data /// [Prototype("salvageMod")] -public sealed class SalvageMod : IPrototype, ISalvageMod +public sealed partial class SalvageMod : IPrototype, ISalvageMod { [IdDataField] public string ID { get; } = default!; diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTemperatureMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTemperatureMod.cs index bc3d5eb851..17e9af038f 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTemperatureMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTemperatureMod.cs @@ -1,11 +1,10 @@ using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; namespace Content.Shared.Salvage.Expeditions.Modifiers; [Prototype("salvageTemperatureMod")] -public sealed class SalvageTemperatureMod : IPrototype, IBiomeSpecificMod +public sealed partial class SalvageTemperatureMod : IPrototype, IBiomeSpecificMod { [IdDataField] public string ID { get; } = default!; diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageWeatherMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageWeatherMod.cs index 89fc84c416..1629d02b08 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageWeatherMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageWeatherMod.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Salvage.Expeditions.Modifiers; [Prototype("salvageWeatherMod")] -public sealed class SalvageWeatherMod : IPrototype, IBiomeSpecificMod +public sealed partial class SalvageWeatherMod : IPrototype, IBiomeSpecificMod { [IdDataField] public string ID { get; } = default!; diff --git a/Content.Shared/Salvage/Expeditions/SalvageFactionPrototype.cs b/Content.Shared/Salvage/Expeditions/SalvageFactionPrototype.cs index 9de6d5221b..4c594945f0 100644 --- a/Content.Shared/Salvage/Expeditions/SalvageFactionPrototype.cs +++ b/Content.Shared/Salvage/Expeditions/SalvageFactionPrototype.cs @@ -1,11 +1,9 @@ -using Content.Shared.Salvage.Expeditions.Modifiers; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Dictionary; namespace Content.Shared.Salvage.Expeditions; [Prototype("salvageFaction")] -public sealed class SalvageFactionPrototype : IPrototype +public sealed partial class SalvageFactionPrototype : IPrototype { [IdDataField] public string ID { get; } = default!; diff --git a/Content.Shared/Salvage/Fulton/SharedFultonSystem.cs b/Content.Shared/Salvage/Fulton/SharedFultonSystem.cs index cbc54c91e3..d678b14b92 100644 --- a/Content.Shared/Salvage/Fulton/SharedFultonSystem.cs +++ b/Content.Shared/Salvage/Fulton/SharedFultonSystem.cs @@ -6,6 +6,8 @@ using Content.Shared.Popups; using Content.Shared.Stacks; using Content.Shared.Verbs; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Map; using Robust.Shared.Prototypes; diff --git a/Content.Shared/Salvage/RestrictedRangeComponent.cs b/Content.Shared/Salvage/RestrictedRangeComponent.cs new file mode 100644 index 0000000000..92d3c3d392 --- /dev/null +++ b/Content.Shared/Salvage/RestrictedRangeComponent.cs @@ -0,0 +1,20 @@ +using System.Numerics; +using Robust.Shared.GameStates; + +namespace Content.Shared.Salvage; + +/// +/// Restricts entities to the specified range on the attached map entity. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class RestrictedRangeComponent : Component +{ + [DataField(required: true), AutoNetworkedField, ViewVariables(VVAccess.ReadWrite)] + public float Range = 78f; + + [DataField, AutoNetworkedField, ViewVariables(VVAccess.ReadWrite)] + public Vector2 Origin; + + [DataField] + public EntityUid BoundaryEntity; +} diff --git a/Content.Shared/Salvage/SharedRestrictedRangeSystem.cs b/Content.Shared/Salvage/SharedRestrictedRangeSystem.cs new file mode 100644 index 0000000000..115a97423b --- /dev/null +++ b/Content.Shared/Salvage/SharedRestrictedRangeSystem.cs @@ -0,0 +1,6 @@ +namespace Content.Shared.Salvage; + +public abstract class SharedRestrictedRangeSystem : EntitySystem +{ + +} diff --git a/Content.Shared/Silicons/Bots/EmaggableMedibotComponent.cs b/Content.Shared/Silicons/Bots/EmaggableMedibotComponent.cs index 47fb940786..73775aaf91 100644 --- a/Content.Shared/Silicons/Bots/EmaggableMedibotComponent.cs +++ b/Content.Shared/Silicons/Bots/EmaggableMedibotComponent.cs @@ -1,38 +1,28 @@ -using Content.Shared.Chemistry.Reagent; +using Content.Shared.Mobs; using Robust.Shared.Audio; using Robust.Shared.GameStates; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.Silicons.Bots; /// -/// Replaced the medibot's meds with these when emagged. Could be poison, could be fun. +/// Replaces the medibot's meds with these when emagged. Could be poison, could be fun. /// -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[RegisterComponent, NetworkedComponent] [Access(typeof(MedibotSystem))] public sealed partial class EmaggableMedibotComponent : Component { /// - /// Med the bot will inject when UNDER the standard med damage threshold. + /// Treatments to replace from the original set. /// - [DataField("standardMed", customTypeSerializer: typeof(PrototypeIdSerializer)), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public string StandardMed = "Tricordrazine"; - - [DataField("standardMedAmount"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public float StandardMedAmount = 15f; - - /// - /// Med the bot will inject when OVER the emergency med damage threshold. - /// - [DataField("emergencyMed", customTypeSerializer: typeof(PrototypeIdSerializer)), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public string EmergencyMed = "Inaprovaline"; - - [DataField("emergencyMedAmount"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public float EmergencyMedAmount = 15f; + [DataField(required: true), ViewVariables(VVAccess.ReadWrite)] + public Dictionary Replacements = new(); /// /// Sound to play when the bot has been emagged /// - [DataField("sparkSound")] - public SoundSpecifier SparkSound = new SoundCollectionSpecifier("sparks"); + [DataField] + public SoundSpecifier SparkSound = new SoundCollectionSpecifier("sparks") + { + Params = AudioParams.Default.WithVolume(8f) + }; } diff --git a/Content.Shared/Silicons/Bots/MedibotComponent.cs b/Content.Shared/Silicons/Bots/MedibotComponent.cs index 74d074ffd8..9bd45e9a6a 100644 --- a/Content.Shared/Silicons/Bots/MedibotComponent.cs +++ b/Content.Shared/Silicons/Bots/MedibotComponent.cs @@ -1,6 +1,8 @@ using Content.Shared.Chemistry.Reagent; +using Content.Shared.FixedPoint; +using Content.Shared.Mobs; using Robust.Shared.Audio; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Robust.Shared.Prototypes; namespace Content.Shared.Silicons.Bots; @@ -13,30 +15,56 @@ namespace Content.Shared.Silicons.Bots; public sealed partial class MedibotComponent : Component { /// - /// Med the bot will inject when UNDER the standard med damage threshold. + /// Treatments the bot will apply for each mob state. /// - [DataField("standardMed", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string StandardMed = "Tricordrazine"; + [DataField(required: true)] + public Dictionary Treatments = new(); - [DataField("standardMedAmount")] - public float StandardMedAmount = 30f; + /// + /// Sound played after injecting a patient. + /// + [DataField("injectSound")] + public SoundSpecifier InjectSound = new SoundPathSpecifier("/Audio/Items/hypospray.ogg"); +} +/// +/// An injection to treat the patient with. +/// +[DataDefinition] +public sealed partial class MedibotTreatment +{ /// - /// Med the bot will inject when OVER the emergency med damage threshold. + /// Reagent to inject into the patient. /// - [DataField("emergencyMed", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string EmergencyMed = "Inaprovaline"; + [DataField(required: true)] + public ProtoId Reagent = string.Empty; - [DataField("emergencyMedAmount")] - public float EmergencyMedAmount = 15f; + /// + /// How much of the reagent to inject. + /// + [DataField(required: true)] + public FixedPoint2 Quantity; /// - /// Sound played after injecting a patient. + /// Do nothing when the patient is at or below this total damage. + /// When null this will inject meds into completely healthy patients. /// - [DataField("injectSound")] - public SoundSpecifier InjectSound = new SoundPathSpecifier("/Audio/Items/hypospray.ogg"); + [DataField] + public FixedPoint2? MinDamage; - public const float StandardMedDamageThreshold = 0f; - public const float StandardMedDamageThresholdStop = 50f; - public const float EmergencyMedDamageThreshold = 100f; + /// + /// Do nothing when the patient is at or above this total damage. + /// Useful for tricordrazine which does nothing above 50 damage. + /// + [DataField] + public FixedPoint2? MaxDamage; + + /// + /// Returns whether the treatment will probably work for an amount of damage. + /// Doesn't account for specific damage types only total amount. + /// + public bool IsValid(FixedPoint2 damage) + { + return (MaxDamage == null || damage < MaxDamage) && (MinDamage == null || damage > MinDamage); + } } diff --git a/Content.Shared/Silicons/Bots/MedibotSystem.cs b/Content.Shared/Silicons/Bots/MedibotSystem.cs index fe88cbae5c..3ab73149c0 100644 --- a/Content.Shared/Silicons/Bots/MedibotSystem.cs +++ b/Content.Shared/Silicons/Bots/MedibotSystem.cs @@ -1,10 +1,12 @@ using Content.Shared.Emag.Systems; -using Robust.Shared.Audio; +using Content.Shared.Mobs; +using Robust.Shared.Audio.Systems; +using System.Diagnostics.CodeAnalysis; namespace Content.Shared.Silicons.Bots; /// -/// Handles emagging medibots +/// Handles emagging medibots and provides api. /// public sealed class MedibotSystem : EntitySystem { @@ -22,12 +24,24 @@ private void OnEmagged(EntityUid uid, EmaggableMedibotComponent comp, ref GotEma if (!TryComp(uid, out var medibot)) return; - _audio.PlayPredicted(comp.SparkSound, uid, args.UserUid, AudioParams.Default.WithVolume(8)); + _audio.PlayPredicted(comp.SparkSound, uid, args.UserUid); + + foreach (var (state, treatment) in comp.Replacements) + { + medibot.Treatments[state] = treatment; + } - medibot.StandardMed = comp.StandardMed; - medibot.StandardMedAmount = comp.StandardMedAmount; - medibot.EmergencyMed = comp.EmergencyMed; - medibot.EmergencyMedAmount = comp.EmergencyMedAmount; args.Handled = true; } + + /// + /// Get a treatment for a given mob state. + /// + /// + /// This only exists because allowing other execute would allow modifying the dictionary, and Read access does not cover TryGetValue. + /// + public bool TryGetTreatment(MedibotComponent comp, MobState state, [NotNullWhen(true)] out MedibotTreatment? treatment) + { + return comp.Treatments.TryGetValue(state, out treatment); + } } diff --git a/Content.Shared/Silicons/Laws/Components/EmagSiliconLawComponent.cs b/Content.Shared/Silicons/Laws/Components/EmagSiliconLawComponent.cs index f492db4d12..2155401062 100644 --- a/Content.Shared/Silicons/Laws/Components/EmagSiliconLawComponent.cs +++ b/Content.Shared/Silicons/Laws/Components/EmagSiliconLawComponent.cs @@ -1,6 +1,7 @@ -using Content.Shared.Roles; +using Content.Shared.Roles; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; +using Robust.Shared.Audio; namespace Content.Shared.Silicons.Laws.Components; @@ -48,4 +49,12 @@ public sealed partial class EmagSiliconLawComponent : Component /// [DataField] public ProtoId? AntagonistRole = "SubvertedSilicon"; + + /// + /// The sound that plays for the borg player + /// to let them know they've been emagged + /// + [DataField] + public SoundSpecifier EmaggedSound = new SoundPathSpecifier("/Audio/Ambience/Antag/emagged_borg.ogg"); + } diff --git a/Content.Shared/Singularity/Components/SingularityComponent.cs b/Content.Shared/Singularity/Components/SingularityComponent.cs index fe5cd0377f..3bab8d80b0 100644 --- a/Content.Shared/Singularity/Components/SingularityComponent.cs +++ b/Content.Shared/Singularity/Components/SingularityComponent.cs @@ -61,7 +61,7 @@ public sealed partial class SingularityComponent : Component /// The audio stream that plays the sound specified by on loop. /// [ViewVariables(VVAccess.ReadWrite)] - public IPlayingAudioStream? AmbientSoundStream = null; + public EntityUid? AmbientSoundStream = null; /// /// The sound that the singularity produces when it forms. diff --git a/Content.Shared/Slippery/SlipperySystem.cs b/Content.Shared/Slippery/SlipperySystem.cs index 00f023f9a3..60d53eb16f 100644 --- a/Content.Shared/Slippery/SlipperySystem.cs +++ b/Content.Shared/Slippery/SlipperySystem.cs @@ -5,6 +5,8 @@ using Content.Shared.StepTrigger.Systems; using Content.Shared.Stunnable; using JetBrains.Annotations; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; diff --git a/Content.Shared/Sound/SharedEmitSoundSystem.cs b/Content.Shared/Sound/SharedEmitSoundSystem.cs index ea42b4bff9..5e131a1355 100644 --- a/Content.Shared/Sound/SharedEmitSoundSystem.cs +++ b/Content.Shared/Sound/SharedEmitSoundSystem.cs @@ -7,6 +7,7 @@ using Content.Shared.Throwing; using JetBrains.Annotations; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Network; using Robust.Shared.Physics.Components; @@ -33,7 +34,7 @@ public abstract class SharedEmitSoundSystem : EntitySystem public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnEmitSpawnOnInit); + SubscribeLocalEvent(OnEmitSpawnOnInit); SubscribeLocalEvent(OnEmitSoundOnLand); SubscribeLocalEvent(OnEmitSoundOnUseInHand); SubscribeLocalEvent(OnEmitSoundOnThrown); @@ -45,7 +46,7 @@ public override void Initialize() SubscribeLocalEvent(OnEmitSoundOnCollide); } - private void OnEmitSpawnOnInit(EntityUid uid, EmitSoundOnSpawnComponent component, ComponentInit args) + private void OnEmitSpawnOnInit(EntityUid uid, EmitSoundOnSpawnComponent component, MapInitEvent args) { TryEmitSound(uid, component, predict: false); } @@ -78,7 +79,7 @@ private void OnEmitSoundOnUseInHand(EntityUid uid, EmitSoundOnUseComponent compo args.Handled = true; } - private void OnEmitSoundOnThrown(EntityUid uid, BaseEmitSoundComponent component, ThrownEvent args) + private void OnEmitSoundOnThrown(EntityUid uid, BaseEmitSoundComponent component, ref ThrownEvent args) { TryEmitSound(uid, component, args.User, false); } @@ -142,8 +143,11 @@ private void OnEmitSoundOnCollide(EntityUid uid, EmitSoundOnCollideComponent com var fraction = MathF.Min(1f, (physics.LinearVelocity.Length() - component.MinimumVelocity) / MaxVolumeVelocity); var volume = MinVolume + (MaxVolume - MinVolume) * fraction; component.NextSound = _timing.CurTime + EmitSoundOnCollideComponent.CollideCooldown; + var sound = component.Sound; - if (_netMan.IsServer) - _audioSystem.PlayPvs(component.Sound, uid, AudioParams.Default.WithVolume(volume)); + if (_netMan.IsServer && sound != null) + { + _audioSystem.PlayPvs(_audioSystem.GetSound(sound), uid, AudioParams.Default.WithVolume(volume)); + } } } diff --git a/Content.Shared/Speech/SpeechSoundsPrototype.cs b/Content.Shared/Speech/SpeechSoundsPrototype.cs index 4103e4dcb6..41cf0f8807 100644 --- a/Content.Shared/Speech/SpeechSoundsPrototype.cs +++ b/Content.Shared/Speech/SpeechSoundsPrototype.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Speech { [Prototype("speechSounds")] - public sealed class SpeechSoundsPrototype : IPrototype + public sealed partial class SpeechSoundsPrototype : IPrototype { [ViewVariables] [IdDataField] diff --git a/Content.Shared/Speech/SpeechVerbPrototype.cs b/Content.Shared/Speech/SpeechVerbPrototype.cs index cf468c44bc..7ed1705f11 100644 --- a/Content.Shared/Speech/SpeechVerbPrototype.cs +++ b/Content.Shared/Speech/SpeechVerbPrototype.cs @@ -1,5 +1,4 @@ using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.Speech; @@ -8,7 +7,7 @@ namespace Content.Shared.Speech; /// on punctuation or by directly overriding the prototype. /// [Prototype("speechVerb")] -public sealed class SpeechVerbPrototype : IPrototype +public sealed partial class SpeechVerbPrototype : IPrototype { [IdDataField] public string ID { get; } = default!; diff --git a/Content.Shared/SprayPainter/Prototypes/AirlockGroupPrototype.cs b/Content.Shared/SprayPainter/Prototypes/AirlockGroupPrototype.cs index 06cde83f90..24c28b8b7a 100644 --- a/Content.Shared/SprayPainter/Prototypes/AirlockGroupPrototype.cs +++ b/Content.Shared/SprayPainter/Prototypes/AirlockGroupPrototype.cs @@ -3,7 +3,7 @@ namespace Content.Shared.SprayPainter.Prototypes; [Prototype("AirlockGroup")] -public sealed class AirlockGroupPrototype : IPrototype +public sealed partial class AirlockGroupPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Shared/Spreader/EdgeSpreaderPrototype.cs b/Content.Shared/Spreader/EdgeSpreaderPrototype.cs index a1e31da3ca..fee8f93a6d 100644 --- a/Content.Shared/Spreader/EdgeSpreaderPrototype.cs +++ b/Content.Shared/Spreader/EdgeSpreaderPrototype.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Spreader; /// Adds this node group to for tick updates. /// [Prototype("edgeSpreader")] -public sealed class EdgeSpreaderPrototype : IPrototype +public sealed partial class EdgeSpreaderPrototype : IPrototype { [IdDataField] public string ID { get; } = string.Empty; [DataField(required:true)] public int UpdatesPerSecond; diff --git a/Content.Shared/Stacks/StackPrototype.cs b/Content.Shared/Stacks/StackPrototype.cs index 5d60364e20..28b7da8f2a 100644 --- a/Content.Shared/Stacks/StackPrototype.cs +++ b/Content.Shared/Stacks/StackPrototype.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Stacks; [Prototype("stack")] -public sealed class StackPrototype : IPrototype +public sealed partial class StackPrototype : IPrototype { [ViewVariables] [IdDataField] diff --git a/Content.Shared/Standing/StandingStateSystem.cs b/Content.Shared/Standing/StandingStateSystem.cs index bb74a088b3..517831b8a1 100644 --- a/Content.Shared/Standing/StandingStateSystem.cs +++ b/Content.Shared/Standing/StandingStateSystem.cs @@ -2,6 +2,7 @@ using Content.Shared.Physics; using Content.Shared.Rotation; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Physics; using Robust.Shared.Physics.Systems; @@ -81,7 +82,7 @@ public bool Down(EntityUid uid, bool playSound = true, bool dropHeldItems = true if (playSound) { - _audio.PlayPredicted(standingState.DownSound, uid, uid, AudioParams.Default.WithVariation(0.25f)); + _audio.PlayPredicted(standingState.DownSound, uid, uid); } return true; diff --git a/Content.Shared/StatusEffect/StatusEffectPrototype.cs b/Content.Shared/StatusEffect/StatusEffectPrototype.cs index 9e13f69d20..ae9e26879e 100644 --- a/Content.Shared/StatusEffect/StatusEffectPrototype.cs +++ b/Content.Shared/StatusEffect/StatusEffectPrototype.cs @@ -4,7 +4,7 @@ namespace Content.Shared.StatusEffect { [Prototype("statusEffect")] - public sealed class StatusEffectPrototype : IPrototype + public sealed partial class StatusEffectPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Shared/Stealth/Components/StealthComponent.cs b/Content.Shared/Stealth/Components/StealthComponent.cs index 58cf1cdde6..1a8a647768 100644 --- a/Content.Shared/Stealth/Components/StealthComponent.cs +++ b/Content.Shared/Stealth/Components/StealthComponent.cs @@ -19,6 +19,12 @@ public sealed partial class StealthComponent : Component [DataField("enabled")] public bool Enabled = true; + /// + /// The creature will continue invisible at death. + /// + [DataField("enabledOnDeath")] + public bool EnabledOnDeath = true; + /// /// Whether or not the entity previously had an interaction outline prior to cloaking. /// diff --git a/Content.Shared/Stealth/SharedStealthSystem.cs b/Content.Shared/Stealth/SharedStealthSystem.cs index 67858c1942..aeb42453ca 100644 --- a/Content.Shared/Stealth/SharedStealthSystem.cs +++ b/Content.Shared/Stealth/SharedStealthSystem.cs @@ -1,4 +1,6 @@ using Content.Shared.Examine; +using Content.Shared.Mobs; +using Content.Shared.Mobs.Systems; using Content.Shared.Stealth.Components; using Robust.Shared.GameStates; using Robust.Shared.Timing; @@ -8,6 +10,7 @@ namespace Content.Shared.Stealth; public abstract class SharedStealthSystem : EntitySystem { [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly MobStateSystem _mobState = default!; public override void Initialize() { @@ -22,6 +25,7 @@ public override void Initialize() SubscribeLocalEvent(OnInit); SubscribeLocalEvent(OnExamineAttempt); SubscribeLocalEvent(OnExamined); + SubscribeLocalEvent(OnMobStateChanged); } private void OnExamineAttempt(EntityUid uid, StealthComponent component, ExamineAttemptEvent args) @@ -55,20 +59,34 @@ public virtual void SetEnabled(EntityUid uid, bool value, StealthComponent? comp return; component.Enabled = value; - Dirty(component); + Dirty(uid, component); + } + + private void OnMobStateChanged(EntityUid uid, StealthComponent component, MobStateChangedEvent args) + { + if (args.NewMobState == MobState.Dead) + { + component.Enabled = component.EnabledOnDeath; + } + else + { + component.Enabled = true; + } + + Dirty(uid, component); } private void OnPaused(EntityUid uid, StealthComponent component, ref EntityPausedEvent args) { component.LastVisibility = GetVisibility(uid, component); component.LastUpdated = null; - Dirty(component); + Dirty(uid, component); } private void OnUnpaused(EntityUid uid, StealthComponent component, ref EntityUnpausedEvent args) { component.LastUpdated = _timing.CurTime; - Dirty(component); + Dirty(uid, component); } protected virtual void OnInit(EntityUid uid, StealthComponent component, ComponentInit args) @@ -128,7 +146,7 @@ public void ModifyVisibility(EntityUid uid, float delta, StealthComponent? compo } component.LastVisibility = Math.Clamp(component.LastVisibility + delta, component.MinVisibility, component.MaxVisibility); - Dirty(component); + Dirty(uid, component); } /// @@ -144,7 +162,7 @@ public void SetVisibility(EntityUid uid, float value, StealthComponent? componen if (component.LastUpdated != null) component.LastUpdated = _timing.CurTime; - Dirty(component); + Dirty(uid, component); } /// diff --git a/Content.Shared/Storage/Components/SharedEntityStorageComponent.cs b/Content.Shared/Storage/Components/SharedEntityStorageComponent.cs index 80f38188ea..b4cd18f4d5 100644 --- a/Content.Shared/Storage/Components/SharedEntityStorageComponent.cs +++ b/Content.Shared/Storage/Components/SharedEntityStorageComponent.cs @@ -1,4 +1,4 @@ -using System.Numerics; +using System.Numerics; using Content.Shared.Physics; using Content.Shared.Whitelist; using Robust.Shared.Audio; @@ -64,6 +64,12 @@ public abstract partial class SharedEntityStorageComponent : Component [DataField, ViewVariables(VVAccess.ReadWrite)] public float EnteringRange = 0.18f; + /// + /// If true, there may be mobs inside the container, even if the container is an Item + /// + [DataField] + public bool ItemCanStoreMobs = false; + /// /// Whether or not to show the contents when the storage is closed /// diff --git a/Content.Shared/Storage/EntitySystems/BinSystem.cs b/Content.Shared/Storage/EntitySystems/BinSystem.cs index 86726587f0..90bca4d933 100644 --- a/Content.Shared/Storage/EntitySystems/BinSystem.cs +++ b/Content.Shared/Storage/EntitySystems/BinSystem.cs @@ -1,10 +1,13 @@ using System.Linq; using Content.Shared.Administration.Logs; using Content.Shared.Database; +using Content.Shared.Examine; using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction; using Content.Shared.Storage.Components; +using Content.Shared.Verbs; using Robust.Shared.Containers; +using Robust.Shared.Map; using Robust.Shared.Network; using Robust.Shared.Timing; @@ -31,6 +34,13 @@ public override void Initialize() SubscribeLocalEvent(OnEntRemoved); SubscribeLocalEvent(OnInteractHand); SubscribeLocalEvent(OnAfterInteractUsing); + SubscribeLocalEvent>(OnAltInteractHand); + SubscribeLocalEvent(OnExamined); + } + + private void OnExamined(EntityUid uid, BinComponent component, ExaminedEvent args) + { + args.PushText(Loc.GetString("bin-component-on-examine-text", ("count", component.Items.Count))); } private void OnStartup(EntityUid uid, BinComponent component, ComponentStartup args) @@ -76,19 +86,38 @@ private void OnInteractHand(EntityUid uid, BinComponent component, InteractHandE args.Handled = true; } + /// + /// Alt interact acts the same as interacting with your hands normally, but allows fallback interaction if the item + /// has priority. E.g. a water cup on a water cooler fills itself on a normal click, + /// but you can use alternative interactions to restock the cup bin + /// + private void OnAltInteractHand(EntityUid uid, BinComponent component, GetVerbsEvent args) + { + if (args.Using != null) + { + var canReach = args.CanAccess && args.CanInteract; + InsertIntoBin(args.User, args.Target, (EntityUid) args.Using, component, false, canReach); + } + } + private void OnAfterInteractUsing(EntityUid uid, BinComponent component, AfterInteractUsingEvent args) { - if (args.Handled || !args.CanReach) + InsertIntoBin(args.User, uid, args.Used, component, args.Handled, args.CanReach); + args.Handled = true; + } + + private void InsertIntoBin(EntityUid user, EntityUid target, EntityUid itemInHand, BinComponent component, bool handled, bool canReach) + { + if (handled || !canReach) return; if (!_timing.IsFirstTimePredicted) return; - if (!TryInsertIntoBin(uid, args.Used, component)) + if (!TryInsertIntoBin(target, itemInHand, component)) return; - _admin.Add(LogType.Pickup, LogImpact.Low, $"{ToPrettyString(uid):player} inserted {ToPrettyString(args.User)} into bin {ToPrettyString(uid)}."); - args.Handled = true; + _admin.Add(LogType.Pickup, LogImpact.Low, $"{ToPrettyString(target):player} inserted {ToPrettyString(user)} into bin {ToPrettyString(target)}."); } /// diff --git a/Content.Shared/Storage/EntitySystems/DumpableSystem.cs b/Content.Shared/Storage/EntitySystems/DumpableSystem.cs index ad86a52665..cf548693f9 100644 --- a/Content.Shared/Storage/EntitySystems/DumpableSystem.cs +++ b/Content.Shared/Storage/EntitySystems/DumpableSystem.cs @@ -5,6 +5,7 @@ using Content.Shared.Placeable; using Content.Shared.Storage.Components; using Content.Shared.Verbs; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Random; using Robust.Shared.Utility; @@ -40,6 +41,12 @@ private void OnAfterInteract(EntityUid uid, DumpableComponent component, AfterIn if (!_disposalUnitSystem.HasDisposals(args.Target) && !HasComp(args.Target)) return; + if (!TryComp(uid, out var storage)) + return; + + if (!storage.Container.ContainedEntities.Any()) + return; + StartDoAfter(uid, args.Target.Value, args.User, component); args.Handled = true; } @@ -101,12 +108,12 @@ private void AddUtilityVerbs(EntityUid uid, DumpableComponent dumpable, GetVerbs } } - public void StartDoAfter(EntityUid storageUid, EntityUid? targetUid, EntityUid userUid, DumpableComponent dumpable) + private void StartDoAfter(EntityUid storageUid, EntityUid? targetUid, EntityUid userUid, DumpableComponent dumpable) { if (!TryComp(storageUid, out var storage)) return; - float delay = storage.Container.ContainedEntities.Count * (float) dumpable.DelayPerItem.TotalSeconds * dumpable.Multiplier; + var delay = storage.Container.ContainedEntities.Count * (float) dumpable.DelayPerItem.TotalSeconds * dumpable.Multiplier; _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, userUid, delay, new DumpableDoAfterEvent(), storageUid, target: targetUid, used: storageUid) { diff --git a/Content.Shared/Storage/EntitySystems/MagnetPickupSystem.cs b/Content.Shared/Storage/EntitySystems/MagnetPickupSystem.cs index 16657bdae4..b6f03f001b 100644 --- a/Content.Shared/Storage/EntitySystems/MagnetPickupSystem.cs +++ b/Content.Shared/Storage/EntitySystems/MagnetPickupSystem.cs @@ -45,10 +45,10 @@ private void OnMagnetMapInit(EntityUid uid, MagnetPickupComponent component, Map public override void Update(float frameTime) { base.Update(frameTime); - var query = EntityQueryEnumerator(); + var query = EntityQueryEnumerator(); var currentTime = _timing.CurTime; - while (query.MoveNext(out var uid, out var comp, out var storage, out var xform)) + while (query.MoveNext(out var uid, out var comp, out var storage, out var xform, out var meta)) { if (comp.NextScan > currentTime) continue; @@ -59,7 +59,7 @@ public override void Update(float frameTime) if (storage.StorageUsed >= storage.StorageCapacityMax) continue; - if (!_inventory.TryGetContainingSlot(uid, out var slotDef)) + if (!_inventory.TryGetContainingSlot((uid, xform, meta), out var slotDef)) continue; if ((slotDef.SlotFlags & comp.SlotFlags) == 0x0) diff --git a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs index 2d85f79e03..1e3320e7db 100644 --- a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs @@ -1,4 +1,4 @@ -using System.Diagnostics.CodeAnalysis; +using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Numerics; using Content.Shared.Body.Components; @@ -15,6 +15,8 @@ using Content.Shared.Tools.Systems; using Content.Shared.Verbs; using Content.Shared.Wall; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.GameStates; using Robust.Shared.Map; @@ -368,13 +370,9 @@ public bool AddToContents(EntityUid toAdd, EntityUid container, SharedEntityStor if (toAdd == container) return false; - if (TryComp(toAdd, out var phys)) - { - var aabb = _physics.GetWorldAABB(toAdd, body: phys); - - if (component.MaxSize < aabb.Size.X || component.MaxSize < aabb.Size.Y) - return false; - } + var aabb = _lookup.GetAABBNoContainer(toAdd, Vector2.Zero, 0); + if (component.MaxSize < aabb.Size.X || component.MaxSize < aabb.Size.Y) + return false; return Insert(toAdd, container, component); } @@ -417,6 +415,9 @@ private bool CanFit(EntityUid toInsert, EntityUid container, SharedEntityStorage var storeEv = new StoreMobInItemContainerAttemptEvent(); RaiseLocalEvent(container, ref storeEv); allowedToEat = storeEv is { Handled: true, Cancelled: false }; + + if (component.ItemCanStoreMobs) + allowedToEat = true; } } diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index 5faec99fd5..a58aff323a 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -1,6 +1,5 @@ using System.Linq; using Content.Shared.ActionBlocker; -using Content.Shared.CombatMode; using Content.Shared.Containers.ItemSlots; using Content.Shared.Destructible; using Content.Shared.DoAfter; @@ -10,6 +9,7 @@ using Content.Shared.Implants.Components; using Content.Shared.Interaction; using Content.Shared.Item; +using Content.Shared.Item.PseudoItem; using Content.Shared.Lock; using Content.Shared.Placeable; using Content.Shared.Popups; @@ -17,6 +17,8 @@ using Content.Shared.Storage.Components; using Content.Shared.Timing; using Content.Shared.Verbs; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Map; using Robust.Shared.Random; @@ -37,7 +39,6 @@ public abstract class SharedStorageSystem : EntitySystem [Dependency] private readonly ActionBlockerSystem _actionBlockerSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] protected readonly SharedAudioSystem Audio = default!; - [Dependency] private readonly SharedCombatModeSystem _combatMode = default!; [Dependency] protected readonly SharedTransformSystem _transform = default!; [Dependency] private readonly SharedStackSystem _stack = default!; [Dependency] protected readonly UseDelaySystem UseDelay = default!; @@ -153,7 +154,7 @@ private void OnInteractUsing(EntityUid uid, StorageComponent storageComp, Intera /// private void OnActivate(EntityUid uid, StorageComponent storageComp, ActivateInWorldEvent args) { - if (args.Handled || _combatMode.IsInCombatMode(args.User) || TryComp(uid, out LockComponent? lockComponent) && lockComponent.Locked) + if (args.Handled || TryComp(uid, out var lockComponent) && lockComponent.Locked) return; OpenStorageUI(uid, args.User, storageComp); @@ -439,6 +440,9 @@ public void TransferEntities(EntityUid source, EntityUid target, EntityUid? user foreach (var entity in entities.ToArray()) { + if (HasComp(entity)) // Nyanotrasen - They dont transfer properly + continue; + Insert(target, entity, out _, user: user, targetComp, playSound: false); } @@ -585,7 +589,7 @@ public bool PlayerInsertHeldEntity(EntityUid uid, EntityUid player, StorageCompo if (!_sharedHandsSystem.TryDrop(player, toInsert.Value, handsComp: hands)) { - _popupSystem.PopupClient(Loc.GetString("comp-storage-cant-drop"), uid, player); + _popupSystem.PopupClient(Loc.GetString("comp-storage-cant-drop", ("entity", toInsert.Value)), uid, player); return false; } diff --git a/Content.Shared/Storage/SharedStorageComponent.cs b/Content.Shared/Storage/SharedStorageComponent.cs deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/Content.Shared/Store/ListingPrototype.cs b/Content.Shared/Store/ListingPrototype.cs index 0adcbd4637..d80c5cf6c8 100644 --- a/Content.Shared/Store/ListingPrototype.cs +++ b/Content.Shared/Store/ListingPrototype.cs @@ -18,6 +18,10 @@ namespace Content.Shared.Store; [Virtual, DataDefinition] public partial class ListingData : IEquatable, ICloneable { + [ViewVariables] + [IdDataField] + public string ID { get; private set; } = default!; + /// /// The name of the listing. If empty, uses the entity's name (if present) /// @@ -131,6 +135,7 @@ public object Clone() { return new ListingData { + ID = ID, Name = Name, Description = Description, Categories = Categories, @@ -156,7 +161,5 @@ public object Clone() [DataDefinition] public sealed partial class ListingPrototype : ListingData, IPrototype { - [ViewVariables] - [IdDataField] - public string ID { get; private set; } = default!; + } diff --git a/Content.Shared/Stunnable/SharedStunSystem.cs b/Content.Shared/Stunnable/SharedStunSystem.cs index 4875f2f68f..c447f8c8bc 100644 --- a/Content.Shared/Stunnable/SharedStunSystem.cs +++ b/Content.Shared/Stunnable/SharedStunSystem.cs @@ -18,6 +18,7 @@ using Content.Shared.StatusEffect; using Content.Shared.Throwing; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.GameStates; using Robust.Shared.Player; diff --git a/Content.Shared/Tag/TagComponent.cs b/Content.Shared/Tag/TagComponent.cs index abb79be762..b5b8a48a44 100644 --- a/Content.Shared/Tag/TagComponent.cs +++ b/Content.Shared/Tag/TagComponent.cs @@ -1,8 +1,9 @@ -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set; namespace Content.Shared.Tag { - [RegisterComponent, Access(typeof(TagSystem))] + [RegisterComponent, NetworkedComponent, Access(typeof(TagSystem))] public sealed partial class TagComponent : Component { [DataField("tags", customTypeSerializer: typeof(PrototypeIdHashSetSerializer))] diff --git a/Content.Shared/Tag/TagPrototype.cs b/Content.Shared/Tag/TagPrototype.cs index b227cf82b5..2a06e22cf9 100644 --- a/Content.Shared/Tag/TagPrototype.cs +++ b/Content.Shared/Tag/TagPrototype.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Tag /// gets saved in TagComponent. /// [Prototype("Tag")] - public sealed class TagPrototype : IPrototype + public sealed partial class TagPrototype : IPrototype { [ViewVariables] [IdDataField] diff --git a/Content.Shared/Tag/TagSystem.cs b/Content.Shared/Tag/TagSystem.cs index 0f223afa4e..0628b892ed 100644 --- a/Content.Shared/Tag/TagSystem.cs +++ b/Content.Shared/Tag/TagSystem.cs @@ -188,6 +188,17 @@ public bool HasTag(EntityUid entity, string id, EntityQuery tagQue HasTag(component, id); } + /// + /// Checks if all of the given tags have been added to an entity. + /// + /// The entity to check. + /// The tags to check for. + /// true if they all exist, false otherwise. + /// + /// Thrown if one of the ids represents an unregistered . + /// + public bool HasAllTags(EntityUid entity, string id) => HasTag(entity, id); + /// /// Checks if all of the given tags have been added to an entity. /// @@ -197,7 +208,7 @@ public bool HasTag(EntityUid entity, string id, EntityQuery tagQue /// /// Thrown if one of the ids represents an unregistered . /// - public bool HasAllTags(EntityUid entity, params string[] ids) + public bool HasAllTags(EntityUid entity, List ids) { return TryComp(entity, out var component) && HasAllTags(component, ids); @@ -233,6 +244,32 @@ public bool HasAnyTag(EntityUid entity, params string[] ids) HasAnyTag(component, ids); } + /// + /// Checks if all of the given tags have been added to an entity. + /// + /// The entity to check. + /// The tag to check for. + /// true if any of them exist, false otherwise. + /// + /// Thrown if one of the ids represents an unregistered . + /// + public bool HasAnyTag(EntityUid entity, string id) => HasTag(entity, id); + + /// + /// Checks if all of the given tags have been added to an entity. + /// + /// The entity to check. + /// The tags to check for. + /// true if any of them exist, false otherwise. + /// + /// Thrown if one of the ids represents an unregistered . + /// + public bool HasAnyTag(EntityUid entity, List ids) + { + return TryComp(entity, out var component) && + HasAnyTag(component, ids); + } + /// /// Checks if all of the given tags have been added to an entity. /// @@ -388,6 +425,37 @@ public bool HasAllTags(TagComponent component, params string[] ids) return HasAllTags(component, ids.AsEnumerable()); } + /// + /// Checks if all of the given tags have been added. + /// + /// The tag to check for. + /// true if they all exist, false otherwise. + /// + /// Thrown if one of the ids represents an unregistered . + /// + public bool HasAllTags(TagComponent component, string id) => HasTag(component, id); + + /// + /// Checks if all of the given tags have been added. + /// + /// The tags to check for. + /// true if they all exist, false otherwise. + /// + /// Thrown if one of the ids represents an unregistered . + /// + public bool HasAllTags(TagComponent component, List ids) + { + foreach (var id in ids) + { + AssertValidTag(id); + + if (!component.Tags.Contains(id)) + return false; + } + + return true; + } + /// /// Checks if all of the given tags have been added. /// @@ -423,6 +491,40 @@ public bool HasAnyTag(TagComponent component, params string[] ids) return HasAnyTag(component, ids.AsEnumerable()); } + + /// + /// Checks if any of the given tags have been added. + /// + /// The tag to check for. + /// true if any of them exist, false otherwise. + /// + /// Thrown if one of the ids represents an unregistered . + /// + public bool HasAnyTag(TagComponent component, string id) => HasTag(component, id); + + /// + /// Checks if any of the given tags have been added. + /// + /// The tags to check for. + /// true if any of them exist, false otherwise. + /// + /// Thrown if one of the ids represents an unregistered . + /// + public bool HasAnyTag(TagComponent component, List ids) + { + foreach (var id in ids) + { + AssertValidTag(id); + + if (component.Tags.Contains(id)) + { + return true; + } + } + + return false; + } + /// /// Checks if any of the given tags have been added. /// diff --git a/Content.Shared/Teleportation/Components/LinkedEntityComponent.cs b/Content.Shared/Teleportation/Components/LinkedEntityComponent.cs index f9ad509d1f..b1df6f4ee7 100644 --- a/Content.Shared/Teleportation/Components/LinkedEntityComponent.cs +++ b/Content.Shared/Teleportation/Components/LinkedEntityComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Teleportation.Components; /// -/// Represents an entity which is linked to other entities (perhaps portals), and which can be walked through/ +/// Represents an entity which is linked to other entities (perhaps portals), and which can be walked through / /// thrown into to teleport an entity. /// [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] @@ -21,7 +21,7 @@ public sealed partial class LinkedEntityComponent : Component /// /// Should this entity be deleted if all of its links are removed? /// - [DataField] + [DataField, ViewVariables(VVAccess.ReadWrite)] public bool DeleteOnEmptyLinks; } diff --git a/Content.Shared/Teleportation/Components/PortalComponent.cs b/Content.Shared/Teleportation/Components/PortalComponent.cs index eb81070a1e..42fe8e5b70 100644 --- a/Content.Shared/Teleportation/Components/PortalComponent.cs +++ b/Content.Shared/Teleportation/Components/PortalComponent.cs @@ -26,7 +26,7 @@ public sealed partial class PortalComponent : Component /// /// If no portals are linked, the subject will be teleported a random distance at maximum this far away. /// - [DataField("maxRandomRadius")] + [DataField("maxRandomRadius"), ViewVariables(VVAccess.ReadWrite)] public float MaxRandomRadius = 7.0f; /// @@ -45,6 +45,12 @@ public sealed partial class PortalComponent : Component /// /// Obviously this should strictly be larger than (or null) /// - [DataField("maxTeleportRadius")] + [DataField("maxTeleportRadius"), ViewVariables(VVAccess.ReadWrite)] public float? MaxTeleportRadius; + + /// + /// Should we teleport randomly if nothing is linked. + /// + [DataField, AutoNetworkedField, ViewVariables(VVAccess.ReadWrite)] + public bool RandomTeleport = true; } diff --git a/Content.Shared/Teleportation/Systems/LinkedEntitySystem.cs b/Content.Shared/Teleportation/Systems/LinkedEntitySystem.cs index ed97975452..bf2d087c76 100644 --- a/Content.Shared/Teleportation/Systems/LinkedEntitySystem.cs +++ b/Content.Shared/Teleportation/Systems/LinkedEntitySystem.cs @@ -54,13 +54,29 @@ public bool TryLink(EntityUid first, EntityUid second, bool deleteOnEmptyLinks=f _appearance.SetData(first, LinkedEntityVisuals.HasAnyLinks, true); _appearance.SetData(second, LinkedEntityVisuals.HasAnyLinks, true); - Dirty(firstLink); - Dirty(secondLink); + Dirty(first, firstLink); + Dirty(second, secondLink); return firstLink.LinkedEntities.Add(second) && secondLink.LinkedEntities.Add(first); } + /// + /// Does a one-way link from source to target. + /// + /// Whether both entities should now delete once their links are removed + public bool OneWayLink(EntityUid source, EntityUid target, bool deleteOnEmptyLinks=false) + { + var firstLink = EnsureComp(source); + firstLink.DeleteOnEmptyLinks = deleteOnEmptyLinks; + + _appearance.SetData(source, LinkedEntityVisuals.HasAnyLinks, true); + + Dirty(source, firstLink); + + return firstLink.LinkedEntities.Add(target); + } + /// /// Unlinks two entities. Deletes either entity if /// was true and its links are now empty. Symmetrical, so order doesn't matter. diff --git a/Content.Shared/Teleportation/Systems/SharedPortalSystem.cs b/Content.Shared/Teleportation/Systems/SharedPortalSystem.cs index e614a2c040..ebd8362411 100644 --- a/Content.Shared/Teleportation/Systems/SharedPortalSystem.cs +++ b/Content.Shared/Teleportation/Systems/SharedPortalSystem.cs @@ -6,6 +6,8 @@ using Content.Shared.Pulling.Components; using Content.Shared.Teleportation.Components; using Content.Shared.Verbs; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Network; using Robust.Shared.Physics.Dynamics; @@ -131,7 +133,7 @@ private void OnCollide(EntityUid uid, PortalComponent component, ref StartCollid // if target is a portal, signal that they shouldn't be immediately portaled back var timeout = EnsureComp(subject); timeout.EnteredPortal = uid; - Dirty(timeout); + Dirty(subject, timeout); } TeleportEntity(uid, subject, Transform(target).Coordinates, target); @@ -142,7 +144,8 @@ private void OnCollide(EntityUid uid, PortalComponent component, ref StartCollid return; // no linked entity--teleport randomly - TeleportRandomly(uid, subject, component); + if (component.RandomTeleport) + TeleportRandomly(uid, subject, component); } private void OnEndCollide(EntityUid uid, PortalComponent component, ref EndCollideEvent args) diff --git a/Content.Shared/TextScreen/TextScreenVisuals.cs b/Content.Shared/TextScreen/TextScreenVisuals.cs index 76880d6c3f..605428632d 100644 --- a/Content.Shared/TextScreen/TextScreenVisuals.cs +++ b/Content.Shared/TextScreen/TextScreenVisuals.cs @@ -10,26 +10,16 @@ public enum TextScreenVisuals : byte /// Expects a . /// On, - /// - /// Is this a timer or a text-screen?
- /// Expects a . - ///
- Mode, + /// /// What text to show?
- /// Expects a . + /// Expects a . ///
ScreenText, + /// /// What is the target time?
/// Expects a . ///
TargetTime } - -[Serializable, NetSerializable] -public enum TextScreenMode : byte -{ - Text, - Timer -} diff --git a/Content.Shared/Throwing/BeforeThrowEvent.cs b/Content.Shared/Throwing/BeforeThrowEvent.cs index 546bf26d8e..36e7dd758b 100644 --- a/Content.Shared/Throwing/BeforeThrowEvent.cs +++ b/Content.Shared/Throwing/BeforeThrowEvent.cs @@ -1,20 +1,22 @@ using System.Numerics; -namespace Content.Shared.Throwing +namespace Content.Shared.Throwing; + +[ByRefEvent] +public struct BeforeThrowEvent { - public sealed class BeforeThrowEvent : HandledEntityEventArgs + public BeforeThrowEvent(EntityUid itemUid, Vector2 direction, float throwStrength, EntityUid playerUid) { - public BeforeThrowEvent(EntityUid itemUid, Vector2 direction, float throwStrength, EntityUid playerUid) - { - ItemUid = itemUid; - Direction = direction; - ThrowStrength = throwStrength; - PlayerUid = playerUid; - } - - public EntityUid ItemUid { get; set; } - public Vector2 Direction { get; } - public float ThrowStrength { get; set;} - public EntityUid PlayerUid { get; } + ItemUid = itemUid; + Direction = direction; + ThrowStrength = throwStrength; + PlayerUid = playerUid; } + + public EntityUid ItemUid { get; set; } + public Vector2 Direction { get; } + public float ThrowStrength { get; set;} + public EntityUid PlayerUid { get; } + + public bool Cancelled = false; } diff --git a/Content.Shared/Throwing/IThrown.cs b/Content.Shared/Throwing/IThrown.cs deleted file mode 100644 index 7946ac1903..0000000000 --- a/Content.Shared/Throwing/IThrown.cs +++ /dev/null @@ -1,27 +0,0 @@ -using JetBrains.Annotations; - -namespace Content.Shared.Throwing -{ - /// - /// Raised when throwing the entity in your hands. - /// - [PublicAPI] - public sealed class ThrownEvent : HandledEntityEventArgs - { - /// - /// Entity that threw the item. - /// - public EntityUid User { get; } - - /// - /// Item that was thrown. - /// - public EntityUid Thrown { get; } - - public ThrownEvent(EntityUid user, EntityUid thrown) - { - User = user; - Thrown = thrown; - } - } -} diff --git a/Content.Shared/Throwing/ThrowingSystem.cs b/Content.Shared/Throwing/ThrowingSystem.cs index e47cdd5acc..229d8a72b2 100644 --- a/Content.Shared/Throwing/ThrowingSystem.cs +++ b/Content.Shared/Throwing/ThrowingSystem.cs @@ -1,4 +1,6 @@ using System.Numerics; +using Content.Shared.Administration.Logs; +using Content.Shared.Database; using Content.Shared.Gravity; using Content.Shared.Interaction; using Content.Shared.Projectiles; @@ -25,10 +27,10 @@ public sealed class ThrowingSystem : EntitySystem [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly SharedGravitySystem _gravity = default!; - [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly ThrownItemSystem _thrownSystem = default!; + [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; public void TryThrow( EntityUid uid, @@ -135,8 +137,10 @@ public void TryThrow(EntityUid uid, _transform.SetLocalRotation(uid, angle + offset); } + var throwEvent = new ThrownEvent(user, uid); + RaiseLocalEvent(uid, ref throwEvent, true); if (user != null) - _interactionSystem.ThrownInteraction(user.Value, uid); + _adminLogger.Add(LogType.Throw, LogImpact.Low, $"{ToPrettyString(user.Value):user} threw {ToPrettyString(uid):entity}"); var impulseVector = direction.Normalized() * strength * physics.Mass; _physics.ApplyLinearImpulse(uid, impulseVector, body: physics); diff --git a/Content.Shared/Throwing/ThrownEvent.cs b/Content.Shared/Throwing/ThrownEvent.cs new file mode 100644 index 0000000000..70cb6ee43d --- /dev/null +++ b/Content.Shared/Throwing/ThrownEvent.cs @@ -0,0 +1,10 @@ +using JetBrains.Annotations; + +namespace Content.Shared.Throwing; + +/// +/// Raised on thrown entity. +/// +[PublicAPI] +[ByRefEvent] +public readonly record struct ThrownEvent(EntityUid? User, EntityUid Thrown); diff --git a/Content.Shared/Throwing/ThrownItemSystem.cs b/Content.Shared/Throwing/ThrownItemSystem.cs index 073252eb92..034dcf6d77 100644 --- a/Content.Shared/Throwing/ThrownItemSystem.cs +++ b/Content.Shared/Throwing/ThrownItemSystem.cs @@ -1,6 +1,7 @@ using System.Linq; using Content.Shared.Administration.Logs; using Content.Shared.Database; +using Content.Shared.Gravity; using Content.Shared.Physics; using Content.Shared.Physics.Pull; using Robust.Shared.Physics; @@ -21,6 +22,7 @@ public sealed class ThrownItemSystem : EntitySystem [Dependency] private readonly SharedBroadphaseSystem _broadphase = default!; [Dependency] private readonly FixtureSystem _fixtures = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; + [Dependency] private readonly SharedGravitySystem _gravity = default!; private const string ThrowingFixture = "throw-fixture"; @@ -41,7 +43,7 @@ private void OnMapInit(EntityUid uid, ThrownItemComponent component, MapInitEven component.ThrownTime ??= _gameTiming.CurTime; } - private void ThrowItem(EntityUid uid, ThrownItemComponent component, ThrownEvent args) + private void ThrowItem(EntityUid uid, ThrownItemComponent component, ref ThrownEvent @event) { if (!EntityManager.TryGetComponent(uid, out FixturesComponent? fixturesComponent) || fixturesComponent.Fixtures.Count != 1 || @@ -84,6 +86,7 @@ private void PreventCollision(EntityUid uid, ThrownItemComponent component, ref private void OnSleep(EntityUid uid, ThrownItemComponent thrownItem, ref PhysicsSleepEvent @event) { + @event.Cancelled = true; StopThrow(uid, thrownItem); } @@ -99,6 +102,7 @@ public void StopThrow(EntityUid uid, ThrownItemComponent thrownItemComponent) if (TryComp(uid, out var physics)) { _physics.SetBodyStatus(physics, BodyStatus.OnGround); + _broadphase.RegenerateContacts(uid, physics); } if (EntityManager.TryGetComponent(uid, out FixturesComponent? manager)) @@ -111,13 +115,13 @@ public void StopThrow(EntityUid uid, ThrownItemComponent thrownItemComponent) } } - EntityManager.EventBus.RaiseLocalEvent(uid, new StopThrowEvent {User = thrownItemComponent.Thrower}, true); + EntityManager.EventBus.RaiseLocalEvent(uid, new StopThrowEvent { User = thrownItemComponent.Thrower }, true); EntityManager.RemoveComponent(uid); } public void LandComponent(EntityUid uid, ThrownItemComponent thrownItem, PhysicsComponent physics, bool playSound) { - if (thrownItem.Landed || thrownItem.Deleted || Deleted(uid)) + if (thrownItem.Landed || thrownItem.Deleted || _gravity.IsWeightless(uid) || Deleted(uid)) return; thrownItem.Landed = true; diff --git a/Content.Shared/Tiles/FloorTileComponent.cs b/Content.Shared/Tiles/FloorTileComponent.cs index 6d497c003d..92208a76d4 100644 --- a/Content.Shared/Tiles/FloorTileComponent.cs +++ b/Content.Shared/Tiles/FloorTileComponent.cs @@ -15,7 +15,10 @@ public sealed partial class FloorTileComponent : Component [DataField("outputs", customTypeSerializer: typeof(PrototypeIdListSerializer))] public List? OutputTiles; - [DataField("placeTileSound")] - public SoundSpecifier PlaceTileSound = new SoundPathSpecifier("/Audio/Items/genhit.ogg"); + [DataField("placeTileSound")] public SoundSpecifier PlaceTileSound = + new SoundPathSpecifier("/Audio/Items/genhit.ogg") + { + Params = AudioParams.Default.WithVariation(0.125f), + }; } } diff --git a/Content.Shared/Tiles/FloorTileSystem.cs b/Content.Shared/Tiles/FloorTileSystem.cs index dcf914ccf8..21e21fa9e9 100644 --- a/Content.Shared/Tiles/FloorTileSystem.cs +++ b/Content.Shared/Tiles/FloorTileSystem.cs @@ -10,6 +10,7 @@ using Content.Shared.Popups; using Content.Shared.Stacks; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Network; @@ -178,7 +179,7 @@ private void PlaceAt(EntityUid user, EntityUid gridUid, MapGridComponent mapGrid var variant = (byte) (_timing.CurTick.Value % ((ContentTileDefinition) _tileDefinitionManager[tileId]).Variants); mapGrid.SetTile(location.Offset(new Vector2(offset, offset)), new Tile(tileId, 0, variant)); - _audio.PlayPredicted(placeSound, location, user, AudioHelpers.WithVariation(0.125f, _random)); + _audio.PlayPredicted(placeSound, location, user); } public bool CanPlaceTile(EntityUid gridUid, MapGridComponent component, [NotNullWhen(false)] out string? reason) diff --git a/Content.Shared/Tiles/RequiresTileSystem.cs b/Content.Shared/Tiles/RequiresTileSystem.cs deleted file mode 100644 index e34e6ffb18..0000000000 --- a/Content.Shared/Tiles/RequiresTileSystem.cs +++ /dev/null @@ -1,33 +0,0 @@ -using Robust.Shared.Map.Components; -using Robust.Shared.Map.Enumerators; - -namespace Content.Shared.Tiles; - -public sealed class RequiresTileSystem : EntitySystem -{ - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnTileChange); - } - - private void OnTileChange(ref TileChangedEvent ev) - { - if (!TryComp(ev.Entity, out var grid)) - return; - - var anchored = grid.GetAnchoredEntitiesEnumerator(ev.NewTile.GridIndices); - if (anchored.Equals(AnchoredEntitiesEnumerator.Empty)) - return; - - var query = GetEntityQuery(); - - while (anchored.MoveNext(out var ent)) - { - if (!query.HasComponent(ent.Value)) - continue; - - QueueDel(ent.Value); - } - } -} diff --git a/Content.Shared/Timing/UseDelaySystem.cs b/Content.Shared/Timing/UseDelaySystem.cs index 1d1d636b89..17a806f094 100644 --- a/Content.Shared/Timing/UseDelaySystem.cs +++ b/Content.Shared/Timing/UseDelaySystem.cs @@ -77,13 +77,20 @@ public override void Update(float frameTime) } } - public void BeginDelay(EntityUid uid, UseDelayComponent? component = null) + /// + /// Attempts tp start a use-delay for some entity. Returns true unless there is already an active delay. + /// + /// + /// Note that this will always return true if the entity does not have a use delay component, as in that case there + /// is no reason to block/prevent an interaction. + /// + public bool BeginDelay(EntityUid uid, UseDelayComponent? component = null) { if (!Resolve(uid, ref component, false)) - return; + return true; if (component.ActiveDelay) - return; + return false; DebugTools.Assert(!_activeDelays.Contains(component)); _activeDelays.Add(component); @@ -91,12 +98,12 @@ public void BeginDelay(EntityUid uid, UseDelayComponent? component = null) var currentTime = _gameTiming.CurTime; component.LastUseTime = currentTime; component.DelayEndTime = currentTime + component.Delay; - Dirty(component); + Dirty(uid, component); - // TODO just merge these components? - var cooldown = EnsureComp(component.Owner); + var cooldown = EnsureComp(uid); cooldown.CooldownStart = currentTime; cooldown.CooldownEnd = component.DelayEndTime; + return true; } public bool ActiveDelay(EntityUid uid, UseDelayComponent? component = null) diff --git a/Content.Shared/Tools/Systems/SharedToolSystem.cs b/Content.Shared/Tools/Systems/SharedToolSystem.cs index c1a2bdc2dd..91984d29e3 100644 --- a/Content.Shared/Tools/Systems/SharedToolSystem.cs +++ b/Content.Shared/Tools/Systems/SharedToolSystem.cs @@ -3,6 +3,8 @@ using Content.Shared.Interaction; using Content.Shared.Maps; using Content.Shared.Tools.Components; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Network; using Robust.Shared.Prototypes; @@ -52,7 +54,7 @@ public void PlayToolSound(EntityUid uid, ToolComponent tool, EntityUid? user) if (tool.UseSound == null) return; - _audioSystem.PlayPredicted(tool.UseSound, uid, user, tool.UseSound.Params.WithVariation(0.175f).AddVolume(-5f)); + _audioSystem.PlayPredicted(tool.UseSound, uid, user); } /// diff --git a/Content.Shared/Tools/ToolQualityPrototype.cs b/Content.Shared/Tools/ToolQualityPrototype.cs index 727a31738c..420644683e 100644 --- a/Content.Shared/Tools/ToolQualityPrototype.cs +++ b/Content.Shared/Tools/ToolQualityPrototype.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Tools { [Prototype("tool")] - public sealed class ToolQualityPrototype : IPrototype + public sealed partial class ToolQualityPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Shared/Traits/Assorted/ParacusiaComponent.cs b/Content.Shared/Traits/Assorted/ParacusiaComponent.cs index 51a7471f1e..1db698359b 100644 --- a/Content.Shared/Traits/Assorted/ParacusiaComponent.cs +++ b/Content.Shared/Traits/Assorted/ParacusiaComponent.cs @@ -43,5 +43,5 @@ public sealed partial class ParacusiaComponent : Component [DataField("timeBetweenIncidents", customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite)] public TimeSpan NextIncidentTime; - public IPlayingAudioStream? Stream; + public EntityUid? Stream; } diff --git a/Content.Shared/Traits/TraitPrototype.cs b/Content.Shared/Traits/TraitPrototype.cs index f7ae6f9c71..34feb8da22 100644 --- a/Content.Shared/Traits/TraitPrototype.cs +++ b/Content.Shared/Traits/TraitPrototype.cs @@ -1,7 +1,8 @@ using Content.Shared.Whitelist; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -using static Robust.Shared.Prototypes.EntityPrototype; // don't worry about it + +// don't worry about it namespace Content.Shared.Traits { @@ -9,7 +10,7 @@ namespace Content.Shared.Traits /// Describes a trait. /// [Prototype("trait")] - public sealed class TraitPrototype : IPrototype + public sealed partial class TraitPrototype : IPrototype { [ViewVariables] [IdDataField] diff --git a/Content.Shared/Vehicle/Components/VehicleComponent.cs b/Content.Shared/Vehicle/Components/VehicleComponent.cs index 509581cc32..a4a4d89a25 100644 --- a/Content.Shared/Vehicle/Components/VehicleComponent.cs +++ b/Content.Shared/Vehicle/Components/VehicleComponent.cs @@ -45,7 +45,7 @@ public sealed partial class VehicleComponent : Component }; [ViewVariables] - public IPlayingAudioStream? HonkPlayingStream; + public EntityUid? HonkPlayingStream; /// Use ambient sound component for the idle sound. diff --git a/Content.Shared/Vehicle/SharedVehicleSystem.cs b/Content.Shared/Vehicle/SharedVehicleSystem.cs index c211ec57f0..475675f22e 100644 --- a/Content.Shared/Vehicle/SharedVehicleSystem.cs +++ b/Content.Shared/Vehicle/SharedVehicleSystem.cs @@ -12,6 +12,8 @@ using Content.Shared.Popups; using Content.Shared.Tag; using Content.Shared.Vehicle.Components; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Network; using Robust.Shared.Physics.Systems; @@ -174,8 +176,7 @@ private void OnHonkAction(EntityUid uid, VehicleComponent vehicle, HonkActionEve // TODO: Need audio refactor maybe, just some way to null it when the stream is over. // For now better to just not loop to keep the code much cleaner. - vehicle.HonkPlayingStream?.Stop(); - vehicle.HonkPlayingStream = _audioSystem.PlayPredicted(vehicle.HornSound, uid, uid); + vehicle.HonkPlayingStream = _audioSystem.PlayPredicted(vehicle.HornSound, uid, uid)?.Entity; args.Handled = true; } diff --git a/Content.Shared/VendingMachines/SharedVendingMachineSystem.cs b/Content.Shared/VendingMachines/SharedVendingMachineSystem.cs index 522138eb8b..50803e8ee2 100644 --- a/Content.Shared/VendingMachines/SharedVendingMachineSystem.cs +++ b/Content.Shared/VendingMachines/SharedVendingMachineSystem.cs @@ -4,6 +4,8 @@ using Content.Shared.DoAfter; using Content.Shared.Interaction; using Content.Shared.Popups; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Network; namespace Content.Shared.VendingMachines; diff --git a/Content.Shared/VendingMachines/VendingMachineInventoryPrototype.cs b/Content.Shared/VendingMachines/VendingMachineInventoryPrototype.cs index 4869eae6de..b8f1e2b13f 100644 --- a/Content.Shared/VendingMachines/VendingMachineInventoryPrototype.cs +++ b/Content.Shared/VendingMachines/VendingMachineInventoryPrototype.cs @@ -5,7 +5,7 @@ namespace Content.Shared.VendingMachines { [Serializable, NetSerializable, Prototype("vendingMachineInventory")] - public sealed class VendingMachineInventoryPrototype : IPrototype + public sealed partial class VendingMachineInventoryPrototype : IPrototype { [ViewVariables] [IdDataField] diff --git a/Content.Shared/Verbs/SharedVerbSystem.cs b/Content.Shared/Verbs/SharedVerbSystem.cs index 40cb2d5002..e6286c47cc 100644 --- a/Content.Shared/Verbs/SharedVerbSystem.cs +++ b/Content.Shared/Verbs/SharedVerbSystem.cs @@ -24,16 +24,17 @@ private void HandleExecuteVerb(ExecuteVerbEvent args, EntitySessionEventArgs eve if (user == null) return; - var target = GetEntity(args.Target); + if (!TryGetEntity(args.Target, out var target)) + return; // It is possible that client-side prediction can cause this event to be raised after the target entity has // been deleted. So we need to check that the entity still exists. - if (Deleted(target) || Deleted(user)) + if (Deleted(user)) return; // Get the list of verbs. This effectively also checks that the requested verb is in fact a valid verb that // the user can perform. - var verbs = GetLocalVerbs(target, user.Value, args.RequestedVerb.GetType()); + var verbs = GetLocalVerbs(target.Value, user.Value, args.RequestedVerb.GetType()); // Note that GetLocalVerbs might waste time checking & preparing unrelated verbs even though we know // precisely which one we want to run. However, MOST entities will only have 1 or 2 verbs of a given type. @@ -41,7 +42,7 @@ private void HandleExecuteVerb(ExecuteVerbEvent args, EntitySessionEventArgs eve // Find the requested verb. if (verbs.TryGetValue(args.RequestedVerb, out var verb)) - ExecuteVerb(verb, user.Value, target); + ExecuteVerb(verb, user.Value, target.Value); } /// diff --git a/Content.Shared/Weapons/Marker/SharedDamageMarkerSystem.cs b/Content.Shared/Weapons/Marker/SharedDamageMarkerSystem.cs index 119b10218d..3a6afce363 100644 --- a/Content.Shared/Weapons/Marker/SharedDamageMarkerSystem.cs +++ b/Content.Shared/Weapons/Marker/SharedDamageMarkerSystem.cs @@ -1,6 +1,8 @@ using Content.Shared.Damage; using Content.Shared.Projectiles; using Content.Shared.Weapons.Melee.Events; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Network; using Robust.Shared.Physics.Events; using Robust.Shared.Timing; diff --git a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs index 62af6067d0..5eac283ef1 100644 --- a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs +++ b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs @@ -20,6 +20,7 @@ using Content.Shared.Weapons.Ranged.Events; using Content.Shared.Weapons.Ranged.Systems; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Physics; using Robust.Shared.Physics.Systems; diff --git a/Content.Shared/Weapons/Misc/BaseForceGunComponent.cs b/Content.Shared/Weapons/Misc/BaseForceGunComponent.cs index 61c84f7d3d..9ee705061a 100644 --- a/Content.Shared/Weapons/Misc/BaseForceGunComponent.cs +++ b/Content.Shared/Weapons/Misc/BaseForceGunComponent.cs @@ -52,5 +52,5 @@ public abstract partial class BaseForceGunComponent : Component Params = AudioParams.Default.WithLoop(true).WithVolume(-8f), }; - public IPlayingAudioStream? Stream; + public EntityUid? Stream; } diff --git a/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs b/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs index 7713c98955..3aa82c411c 100644 --- a/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs +++ b/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs @@ -9,6 +9,8 @@ using Content.Shared.Timing; using Content.Shared.Weapons.Ranged.Components; using Content.Shared.Weapons.Ranged.Systems; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Network; using Robust.Shared.Physics; using Robust.Shared.Physics.Components; @@ -61,13 +63,13 @@ private void OnGrapplingShot(EntityUid uid, GrapplingGunComponent component, ref // At least show the visuals. component.Projectile = shotUid.Value; - Dirty(component); + Dirty(uid, component); var visuals = EnsureComp(shotUid.Value); visuals.Sprite = new SpriteSpecifier.Rsi(new ResPath("Objects/Weapons/Guns/Launchers/grappling_gun.rsi"), "rope"); visuals.OffsetA = new Vector2(0f, 0.5f); visuals.Target = uid; - Dirty(visuals); + Dirty(shotUid.Value, visuals); } TryComp(uid, out var appearance); @@ -133,7 +135,7 @@ private void OnGunActivate(EntityUid uid, GrapplingGunComponent component, Activ } component.Projectile = null; - Dirty(component); + Dirty(uid, component); } } @@ -145,19 +147,18 @@ private void SetReeling(EntityUid uid, GrapplingGunComponent component, bool val if (value) { if (Timing.IsFirstTimePredicted) - component.Stream = _audio.PlayPredicted(component.ReelSound, uid, user); + component.Stream = _audio.PlayPredicted(component.ReelSound, uid, user)?.Entity; } else { if (Timing.IsFirstTimePredicted) { - component.Stream?.Stop(); - component.Stream = null; + component.Stream = _audio.Stop(component.Stream); } } component.Reeling = value; - Dirty(component); + Dirty(uid, component); } public override void Update(float frameTime) @@ -173,8 +174,7 @@ public override void Update(float frameTime) if (Timing.IsFirstTimePredicted) { // Just in case. - grappling.Stream?.Stop(); - grappling.Stream = null; + grappling.Stream = _audio.Stop(grappling.Stream); } continue; @@ -200,7 +200,7 @@ public override void Update(float frameTime) _physics.WakeBody(jointComp.Relay.Value); } - Dirty(jointComp); + Dirty(uid, jointComp); if (distance.MaxLength.Equals(distance.MinLength)) { @@ -221,7 +221,7 @@ private void OnGrappleCollide(EntityUid uid, GrapplingProjectileComponent compon joint.MinLength = 0.35f; // Setting velocity directly for mob movement fucks this so need to make them aware of it. // joint.Breakpoint = 4000f; - Dirty(jointComp); + Dirty(uid, jointComp); } [Serializable, NetSerializable] diff --git a/Content.Shared/Weapons/Misc/SharedTetherGunSystem.cs b/Content.Shared/Weapons/Misc/SharedTetherGunSystem.cs index 984ae832fb..177cb310d1 100644 --- a/Content.Shared/Weapons/Misc/SharedTetherGunSystem.cs +++ b/Content.Shared/Weapons/Misc/SharedTetherGunSystem.cs @@ -7,6 +7,8 @@ using Content.Shared.Movement.Events; using Content.Shared.Throwing; using Content.Shared.Toggleable; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Map; using Robust.Shared.Network; @@ -232,10 +234,10 @@ protected virtual void StartTether(EntityUid gunUid, BaseForceGunComponent compo // Sad... if (_netManager.IsServer && component.Stream == null) - component.Stream = _audio.PlayPredicted(component.Sound, gunUid, null); + component.Stream = _audio.PlayPredicted(component.Sound, gunUid, null)?.Entity; - Dirty(tethered); - Dirty(component); + Dirty(target, tethered); + Dirty(gunUid, component); } protected virtual void StopTether(EntityUid gunUid, BaseForceGunComponent component, bool land = true, bool transfer = false) @@ -269,7 +271,7 @@ protected virtual void StopTether(EntityUid gunUid, BaseForceGunComponent compon if (!transfer) { - component.Stream?.Stop(); + _audio.Stop(component.Stream); component.Stream = null; } diff --git a/Content.Shared/Weapons/Ranged/Components/BatteryAmmoProviderComponent.cs b/Content.Shared/Weapons/Ranged/Components/BatteryAmmoProviderComponent.cs index dfe2e9cf4f..605e169c38 100644 --- a/Content.Shared/Weapons/Ranged/Components/BatteryAmmoProviderComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/BatteryAmmoProviderComponent.cs @@ -5,14 +5,14 @@ public abstract partial class BatteryAmmoProviderComponent : AmmoProviderCompone /// /// How much battery it costs to fire once. /// - [DataField("fireCost")] + [DataField("fireCost"), ViewVariables(VVAccess.ReadWrite)] public float FireCost = 100; // Batteries aren't predicted which means we need to track the battery and manually count it ourselves woo! - [ViewVariables] + [ViewVariables(VVAccess.ReadWrite)] public int Shots; - [ViewVariables] + [ViewVariables(VVAccess.ReadWrite)] public int Capacity; } diff --git a/Content.Shared/Weapons/Ranged/Components/GrapplingGunComponent.cs b/Content.Shared/Weapons/Ranged/Components/GrapplingGunComponent.cs index 51f3e835b7..3ca52b2878 100644 --- a/Content.Shared/Weapons/Ranged/Components/GrapplingGunComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/GrapplingGunComponent.cs @@ -24,5 +24,5 @@ public sealed partial class GrapplingGunComponent : Component [ViewVariables(VVAccess.ReadWrite), DataField("cycleSound"), AutoNetworkedField] public SoundSpecifier? CycleSound = new SoundPathSpecifier("/Audio/Weapons/Guns/MagIn/kinetic_reload.ogg"); - public IPlayingAudioStream? Stream; + public EntityUid? Stream; } diff --git a/Content.Shared/Weapons/Ranged/Components/GunComponent.cs b/Content.Shared/Weapons/Ranged/Components/GunComponent.cs index 515582b51b..350dd85d69 100644 --- a/Content.Shared/Weapons/Ranged/Components/GunComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/GunComponent.cs @@ -1,7 +1,11 @@ +using Content.Shared.Damage; +using Content.Shared.Tag; using Robust.Shared.Audio; using Robust.Shared.GameStates; using Robust.Shared.Map; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; namespace Content.Shared.Weapons.Ranged.Components; @@ -110,6 +114,18 @@ public partial class GunComponent : Component [ViewVariables(VVAccess.ReadWrite), DataField("resetOnHandSelected")] public bool ResetOnHandSelected = true; + /// + /// Type of ammo the gun can work with + /// + [ViewVariables(VVAccess.ReadWrite), DataField("compatibleAmmo")] + public List>? CompatibleAmmo; + + /// + /// Damage the gun deals when used with wrong ammo + /// + [ViewVariables(VVAccess.ReadWrite), DataField("damageOnWrongAmmo")] + public DamageSpecifier? DamageOnWrongAmmo = null; + /// /// How fast the projectile moves. /// @@ -149,7 +165,7 @@ public partial class GunComponent : Component /// Whether or not someone with the /// clumsy trait can shoot this /// - [DataField("clumsyProof")] + [DataField("clumsyProof"), ViewVariables(VVAccess.ReadWrite)] public bool ClumsyProof = false; } diff --git a/Content.Shared/Weapons/Ranged/HitscanPrototype.cs b/Content.Shared/Weapons/Ranged/HitscanPrototype.cs index 121249752d..a5063e3ab5 100644 --- a/Content.Shared/Weapons/Ranged/HitscanPrototype.cs +++ b/Content.Shared/Weapons/Ranged/HitscanPrototype.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Weapons.Ranged; [Prototype("hitscan")] -public sealed class HitscanPrototype : IPrototype, IShootable +public sealed partial class HitscanPrototype : IPrototype, IShootable { [ViewVariables] [IdDataField] diff --git a/Content.Shared/Weapons/Ranged/Systems/RechargeBasicEntityAmmoSystem.cs b/Content.Shared/Weapons/Ranged/Systems/RechargeBasicEntityAmmoSystem.cs index ded4ce34a2..536f3da811 100644 --- a/Content.Shared/Weapons/Ranged/Systems/RechargeBasicEntityAmmoSystem.cs +++ b/Content.Shared/Weapons/Ranged/Systems/RechargeBasicEntityAmmoSystem.cs @@ -1,5 +1,7 @@ using Content.Shared.Examine; using Content.Shared.Weapons.Ranged.Components; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Network; using Robust.Shared.Player; using Robust.Shared.Timing; diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Clothing.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Clothing.cs index 0f2a631644..77ee419ac3 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Clothing.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Clothing.cs @@ -1,4 +1,4 @@ -using System.Diagnostics.CodeAnalysis; +using System.Diagnostics.CodeAnalysis; using Content.Shared.Inventory; using Content.Shared.Weapons.Ranged.Components; using Content.Shared.Weapons.Ranged.Events; @@ -32,24 +32,23 @@ private void OnClothingAmmoCount(EntityUid uid, ClothingSlotAmmoProviderComponen private bool TryGetClothingSlotEntity(EntityUid uid, ClothingSlotAmmoProviderComponent component, [NotNullWhen(true)] out EntityUid? slotEntity) { slotEntity = null; + if (!Containers.TryGetContainingContainer(uid, out var container)) return false; var user = container.Owner; - if (!TryComp(user, out var inventory)) + if (!_inventory.TryGetContainerSlotEnumerator(user, out var enumerator, component.TargetSlot)) return false; - var slots = _inventory.GetSlots(user, inventory); - foreach (var slot in slots) + + while (enumerator.NextItem(out var item)) { - if (slot.SlotFlags != component.TargetSlot) - continue; - if (!_inventory.TryGetSlotEntity(user, slot.Name, out var e, inventory)) + if (component.ProviderWhitelist == null || !component.ProviderWhitelist.IsValid(item, EntityManager)) continue; - if (component.ProviderWhitelist != null && !component.ProviderWhitelist.IsValid(e.Value, EntityManager)) - continue; - slotEntity = e; + + slotEntity = item; + return true; } - return slotEntity != null; + return false; } } diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs index 6f764bb9f4..fadaaf6804 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs @@ -10,6 +10,7 @@ using Content.Shared.Gravity; using Content.Shared.Hands; using Content.Shared.Hands.Components; +using Content.Shared.Item; // Delta-V: Felinids in duffelbags can't shoot. using Content.Shared.Popups; using Content.Shared.Projectiles; using Content.Shared.Tag; @@ -20,6 +21,7 @@ using Content.Shared.Weapons.Ranged.Components; using Content.Shared.Weapons.Ranged.Events; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Map; using Robust.Shared.Network; @@ -128,7 +130,8 @@ private void OnShootRequest(RequestShootEvent msg, EntitySessionEventArgs args) if (user == null || !_combatMode.IsInCombatMode(user) || - !TryGetGun(user.Value, out var ent, out var gun)) + !TryGetGun(user.Value, out var ent, out var gun) || + HasComp(user)) // Delta-V: Felinids in duffelbags can't shoot. { return; } diff --git a/Content.Shared/Weapons/Reflect/SharedReflectSystem.cs b/Content.Shared/Weapons/Reflect/SharedReflectSystem.cs index ffa8180e1a..b9dead8231 100644 --- a/Content.Shared/Weapons/Reflect/SharedReflectSystem.cs +++ b/Content.Shared/Weapons/Reflect/SharedReflectSystem.cs @@ -10,6 +10,8 @@ using Content.Shared.Projectiles; using Content.Shared.Weapons.Ranged.Components; using Content.Shared.Weapons.Ranged.Events; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Network; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; @@ -119,7 +121,7 @@ private bool TryReflectProjectile(EntityUid user, EntityUid reflector, EntityUid if (Resolve(projectile, ref projectileComp, false)) { - _adminLogger.Add(LogType.BulletHit, LogImpact.Medium, $"{ToPrettyString(user)} reflected {ToPrettyString(projectile)} from {ToPrettyString(projectileComp.Weapon!.Value)} shot by {projectileComp.Shooter!.Value}"); + _adminLogger.Add(LogType.BulletHit, LogImpact.Medium, $"{ToPrettyString(user)} reflected {ToPrettyString(projectile)} from {ToPrettyString(projectileComp.Weapon)} shot by {projectileComp.Shooter}"); projectileComp.Shooter = user; projectileComp.Weapon = user; diff --git a/Content.Shared/Weather/SharedWeatherSystem.cs b/Content.Shared/Weather/SharedWeatherSystem.cs index c7040515c8..c907137d84 100644 --- a/Content.Shared/Weather/SharedWeatherSystem.cs +++ b/Content.Shared/Weather/SharedWeatherSystem.cs @@ -1,4 +1,6 @@ using Content.Shared.Maps; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Physics.Components; @@ -15,13 +17,16 @@ public abstract class SharedWeatherSystem : EntitySystem [Dependency] protected readonly IPrototypeManager ProtoMan = default!; [Dependency] private readonly ITileDefinitionManager _tileDefManager = default!; [Dependency] private readonly MetaDataSystem _metadata = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; - protected ISawmill Sawmill = default!; + private EntityQuery _ignoreQuery; + private EntityQuery _physicsQuery; public override void Initialize() { base.Initialize(); - Sawmill = Logger.GetSawmill("weather"); + _ignoreQuery = GetEntityQuery(); + _physicsQuery = GetEntityQuery(); SubscribeLocalEvent(OnWeatherUnpaused); } @@ -38,9 +43,7 @@ private void OnWeatherUnpaused(EntityUid uid, WeatherComponent component, ref En public bool CanWeatherAffect( MapGridComponent grid, - TileRef tileRef, - EntityQuery weatherIgnoreQuery, - EntityQuery bodyQuery) + TileRef tileRef) { if (tileRef.Tile.IsEmpty) return true; @@ -54,8 +57,8 @@ public bool CanWeatherAffect( while (anchoredEnts.MoveNext(out var ent)) { - if (!weatherIgnoreQuery.HasComponent(ent.Value) && - bodyQuery.TryGetComponent(ent, out var body) && + if (!_ignoreQuery.HasComponent(ent.Value) && + _physicsQuery.TryGetComponent(ent, out var body) && body.Hard && body.CanCollide) { @@ -123,7 +126,7 @@ public override void Update(float frameTime) // Admin messed up or the likes. if (!ProtoMan.TryIndex(proto, out var weatherProto)) { - Sawmill.Error($"Unable to find weather prototype for {comp.Weather}, ending!"); + Log.Error($"Unable to find weather prototype for {comp.Weather}, ending!"); EndWeather(uid, comp, proto); continue; } @@ -156,7 +159,8 @@ public override void Update(float frameTime) ///
public void SetWeather(MapId mapId, WeatherPrototype? proto, TimeSpan? endTime) { - var weatherComp = EnsureComp(MapManager.GetMapEntityId(mapId)); + var mapUid = MapManager.GetMapEntityId(mapId); + var weatherComp = EnsureComp(mapUid); foreach (var (eProto, weather) in weatherComp.Weather) { @@ -168,7 +172,7 @@ public void SetWeather(MapId mapId, WeatherPrototype? proto, TimeSpan? endTime) if (weather.State == WeatherState.Ending) weather.State = WeatherState.Running; - Dirty(weatherComp); + Dirty(mapUid, weatherComp); continue; } @@ -178,7 +182,7 @@ public void SetWeather(MapId mapId, WeatherPrototype? proto, TimeSpan? endTime) if (weather.EndTime == null || weather.EndTime > end) { weather.EndTime = end; - Dirty(weatherComp); + Dirty(mapUid, weatherComp); } } @@ -211,10 +215,10 @@ protected virtual void EndWeather(EntityUid uid, WeatherComponent component, str if (!component.Weather.TryGetValue(proto, out var data)) return; - data.Stream?.Stop(); + _audio.Stop(data.Stream); data.Stream = null; component.Weather.Remove(proto); - Dirty(component); + Dirty(uid, component); } protected virtual bool SetState(WeatherState state, WeatherComponent component, WeatherData weather, WeatherPrototype weatherProto) diff --git a/Content.Shared/Weather/WeatherComponent.cs b/Content.Shared/Weather/WeatherComponent.cs index 6166ea0c64..df73109ac4 100644 --- a/Content.Shared/Weather/WeatherComponent.cs +++ b/Content.Shared/Weather/WeatherComponent.cs @@ -24,7 +24,7 @@ public sealed partial class WeatherData { // Client audio stream. [NonSerialized] - public IPlayingAudioStream? Stream; + public EntityUid? Stream; /// /// When the weather started if relevant. @@ -43,12 +43,6 @@ public sealed partial class WeatherData [DataField("state")] public WeatherState State = WeatherState.Invalid; - - [ViewVariables, NonSerialized] - public float LastAlpha; - - [ViewVariables, NonSerialized] - public float LastOcclusion; } public enum WeatherState : byte diff --git a/Content.Shared/Weather/WeatherPrototype.cs b/Content.Shared/Weather/WeatherPrototype.cs index e782d97e15..3803c37d4c 100644 --- a/Content.Shared/Weather/WeatherPrototype.cs +++ b/Content.Shared/Weather/WeatherPrototype.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Weather; [Prototype("weather")] -public sealed class WeatherPrototype : IPrototype +public sealed partial class WeatherPrototype : IPrototype { [IdDataField] public string ID { get; } = default!; diff --git a/Content.Shared/Wieldable/WieldableSystem.cs b/Content.Shared/Wieldable/WieldableSystem.cs index ba87d54aa2..399d9b5168 100644 --- a/Content.Shared/Wieldable/WieldableSystem.cs +++ b/Content.Shared/Wieldable/WieldableSystem.cs @@ -12,6 +12,8 @@ using Content.Shared.Weapons.Ranged.Components; using Content.Shared.Weapons.Ranged.Systems; using Content.Shared.Wieldable.Components; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Player; using Content.Shared.Timing; diff --git a/Content.Shared/Xenoarchaeology/Equipment/ArtifactCrusherComponent.cs b/Content.Shared/Xenoarchaeology/Equipment/ArtifactCrusherComponent.cs new file mode 100644 index 0000000000..6bfbe5d05e --- /dev/null +++ b/Content.Shared/Xenoarchaeology/Equipment/ArtifactCrusherComponent.cs @@ -0,0 +1,110 @@ +using Content.Shared.Damage; +using Content.Shared.Stacks; +using Content.Shared.Whitelist; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Components; +using Robust.Shared.Containers; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Shared.Xenoarchaeology.Equipment; + +/// +/// This is an entity storage that, when activated, crushes the artifact inside of it and gives artifact fragments. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(SharedArtifactCrusherSystem))] +public sealed partial class ArtifactCrusherComponent : Component +{ + /// + /// Whether or not the crusher is currently in the process of crushing something. + /// + [DataField, AutoNetworkedField] + public bool Crushing; + + /// + /// When the current crushing will end. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public TimeSpan CrushEndTime; + + /// + /// The next second. Used to apply damage over time. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public TimeSpan NextSecond; + + /// + /// The total duration of the crushing. + /// + [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public TimeSpan CrushDuration = TimeSpan.FromSeconds(10); + + /// + /// A whitelist specifying what items, when crushed, will give fragments. + /// + [DataField] + public EntityWhitelist CrushingWhitelist = new(); + + /// + /// The minimum amount of fragments spawned. + /// + [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public int MinFragments = 2; + + /// + /// The maximum amount of fragments spawned, non-inclusive. + /// + [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public int MaxFragments = 5; + + /// + /// The material for the fragments. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public ProtoId FragmentStackProtoId = "ArtifactFragment"; + + /// + /// A container used to hold fragments and gibs from crushing. + /// + [ViewVariables] + public Container OutputContainer; + + /// + /// The ID for + /// + [DataField] + public string OutputContainerName = "output_container"; + + /// + /// Damage dealt each second to entities inside while crushing. + /// + [DataField] + public DamageSpecifier CrushingDamage = new(); + + /// + /// Sound played at the end of a successful crush. + /// + [DataField, AutoNetworkedField] + public SoundSpecifier? CrushingCompleteSound = new SoundPathSpecifier("/Audio/Effects/metal_crunch.ogg"); + + /// + /// Sound played throughout the entire crushing. Cut off if ended early. + /// + [DataField, AutoNetworkedField] + public SoundSpecifier? CrushingSound = new SoundPathSpecifier("/Audio/Effects/hydraulic_press.ogg"); + + /// + /// Stores entity of to allow ending it early. + /// + [DataField] + public (EntityUid, AudioComponent)? CrushingSoundEntity; +} + +[Serializable, NetSerializable] +public enum ArtifactCrusherVisuals : byte +{ + Crushing +} diff --git a/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactCrusherSystem.cs b/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactCrusherSystem.cs new file mode 100644 index 0000000000..44e1b91a90 --- /dev/null +++ b/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactCrusherSystem.cs @@ -0,0 +1,54 @@ +using Content.Shared.Storage.Components; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Containers; + +namespace Content.Shared.Xenoarchaeology.Equipment; + +/// +/// This handles logic relating to +/// +public abstract class SharedArtifactCrusherSystem : EntitySystem +{ + [Dependency] protected readonly SharedAppearanceSystem Appearance = default!; + [Dependency] protected readonly SharedAudioSystem AudioSystem = default!; + [Dependency] protected readonly SharedContainerSystem ContainerSystem = default!; + + /// + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnStorageAfterOpen); + } + + private void OnInit(Entity ent, ref ComponentInit args) + { + ent.Comp.OutputContainer = ContainerSystem.EnsureContainer(ent, ent.Comp.OutputContainerName); + } + + private void OnStorageAfterOpen(Entity ent, ref StorageAfterOpenEvent args) + { + StopCrushing(ent); + ContainerSystem.EmptyContainer(ent.Comp.OutputContainer); + } + + public void StopCrushing(Entity ent, bool early = true) + { + var (_, crusher) = ent; + + if (!crusher.Crushing) + return; + + crusher.Crushing = false; + Appearance.SetData(ent, ArtifactCrusherVisuals.Crushing, false); + + if (early) + { + AudioSystem.Stop(crusher.CrushingSoundEntity?.Item1, crusher.CrushingSoundEntity?.Item2); + crusher.CrushingSoundEntity = null; + } + + Dirty(ent, ent.Comp); + } +} diff --git a/Pow3r/Pow3r.csproj b/Pow3r/Pow3r.csproj index 58feb40509..bb63f26921 100644 --- a/Pow3r/Pow3r.csproj +++ b/Pow3r/Pow3r.csproj @@ -15,6 +15,7 @@ + diff --git a/Pow3r/Program.Simulation.cs b/Pow3r/Program.Simulation.cs index 683ee0eb3e..7f7c4bb3e3 100644 --- a/Pow3r/Program.Simulation.cs +++ b/Pow3r/Program.Simulation.cs @@ -1,6 +1,8 @@ using System.Collections.Generic; using System.Diagnostics; using Content.Server.Power.Pow3r; +using Robust.Shared.Threading; +using Robust.UnitTesting; using static Content.Server.Power.Pow3r.PowerState; @@ -32,6 +34,8 @@ internal sealed partial class Program private readonly Queue _remQueue = new(); private readonly Stopwatch _simStopwatch = new Stopwatch(); + private IParallelManager _parallel = new TestingParallelManager(); + private void Tick(float frameTime) { if (_paused) @@ -45,7 +49,7 @@ private void RunSingleStep(float frameTime) _simStopwatch.Restart(); _tickDataIdx = (_tickDataIdx + 1) % MaxTickData; - _solvers[_currentSolver].Tick(frameTime, _state, 1); + _solvers[_currentSolver].Tick(frameTime, _state, _parallel); // Update tick history. foreach (var load in _state.Loads.Values) diff --git a/README.md b/README.md index 6309f18582..56ee0dd7ef 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Space Station 14 is a remake of SS13 that runs on [Robust Toolbox](https://githu ## Links #### DeltaV -[Website](https://delta-v.org/) | [Wiki](https://wiki.delta-v.org/view/Main_Page) | [Discord](https://discord.gg/BRCBAxw65X) +[Website](https://delta-v.org/) | [Wiki](https://wiki.delta-v.org/view/Main_Page) | [Discord](https://go.delta-v.org/AtDxv) #### Space Station 14 @@ -24,7 +24,7 @@ The [docs site](https://docs.spacestation14.io/) has documentation on SS14s cont We are happy to accept contributions from anybody. Get in Discord if you want to help. We've got a [list of issues](https://github.com/DeltaV-Station/Delta-v/issues) that need to be done and anybody can pick them up. Don't be afraid to ask for help either! -We are currently accepting translations of the game on our main repository. If you would like to translate the game into another language check the #localization channel in our [Discord](https://discord.gg/BRCBAxw65Xo) +We are currently accepting translations of the game on our main repository. If you would like to translate the game into another language check the #localization channel in our [Discord](https://go.delta-v.org/AtDxv) ## Building diff --git a/Resources/Audio/Ambience/Antag/attributions.yml b/Resources/Audio/Ambience/Antag/attributions.yml index 0a4a0479d1..25917a5da2 100644 --- a/Resources/Audio/Ambience/Antag/attributions.yml +++ b/Resources/Audio/Ambience/Antag/attributions.yml @@ -14,3 +14,7 @@ license: "CC0-1.0" copyright: "Made by https://www.youtube.com/@a-guy173" source: https://github.com/A-Guy173/Music/blob/main/revolution.mp3 +- files: ["emagged_borg.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Made by @ps3moira on github" + source: https://www.youtube.com/watch?v=4-R-_DiqiLo diff --git a/Resources/Audio/Ambience/Antag/emagged_borg.ogg b/Resources/Audio/Ambience/Antag/emagged_borg.ogg new file mode 100644 index 0000000000..4b5982314b Binary files /dev/null and b/Resources/Audio/Ambience/Antag/emagged_borg.ogg differ diff --git a/Resources/Audio/Ambience/attributions.yml b/Resources/Audio/Ambience/attributions.yml index 7f72253ddf..3716d5958a 100644 --- a/Resources/Audio/Ambience/attributions.yml +++ b/Resources/Audio/Ambience/attributions.yml @@ -3,63 +3,63 @@ copyright: "Created by Joao_Janz, edited and converted to Mono by EmoGarbage" source: "https://freesound.org/people/Joao_Janz/sounds/478472/" -- files: ["ambiatmos.ogg, - ambiatmos2.ogg, - ambicave.ogg, - ambicha1.ogg, - ambicha2.ogg, - ambicha3.ogg, - ambicha4.ogg, - ambidanger.ogg, - ambidanger2.ogg, - ambigen1.ogg, - ambigen2.ogg, - ambigen3.ogg, - ambigen4.ogg, - ambigen5.ogg, - ambigen6.ogg, - ambigen7.ogg, - ambigen8.ogg, - ambigen9.ogg, - ambigen10.ogg, - ambigen11.ogg, - ambigen12.ogg, - ambigen13.ogg, - ambigen14.ogg, - ambigen15.ogg, - ambiholy.ogg, - ambiholy2.ogg, - ambiholy3.ogg, - ambilava1.ogg, - ambilava2.ogg, - ambilava3.ogg, - ambimaint1.ogg, - ambimaint2.ogg, - ambimaint3.ogg, - ambimaint4.ogg, - ambimaint5.ogg, - ambimine.ogg, - ambimo1.ogg, - ambimo2.ogg, - ambimystery.ogg, - ambinice.ogg, - ambiodd.ogg, - ambireebe1.ogg, - ambireebe3.ogg, - ambiruin.ogg, - ambiruin2.ogg, - ambiruin3.ogg, - ambiruin4.ogg, - ambiruin5.ogg, - ambiruin6.ogg, - ambiruin7.ogg, - ambisin1.ogg, - ambisin2.ogg, - ambisin3.ogg, - ambisin4.ogg, - ambitech.ogg, - ambitech2.ogg, - ambitech3.ogg, +- files: ["ambiatmos.ogg, + ambiatmos2.ogg, + ambicave.ogg, + ambicha1.ogg, + ambicha2.ogg, + ambicha3.ogg, + ambicha4.ogg, + ambidanger.ogg, + ambidanger2.ogg, + ambigen1.ogg, + ambigen2.ogg, + ambigen3.ogg, + ambigen4.ogg, + ambigen5.ogg, + ambigen6.ogg, + ambigen7.ogg, + ambigen8.ogg, + ambigen9.ogg, + ambigen10.ogg, + ambigen11.ogg, + ambigen12.ogg, + ambigen13.ogg, + ambigen14.ogg, + ambigen15.ogg, + ambiholy.ogg, + ambiholy2.ogg, + ambiholy3.ogg, + ambilava1.ogg, + ambilava2.ogg, + ambilava3.ogg, + ambimaint1.ogg, + ambimaint2.ogg, + ambimaint3.ogg, + ambimaint4.ogg, + ambimaint5.ogg, + ambimine.ogg, + ambimo1.ogg, + ambimo2.ogg, + ambimystery.ogg, + ambinice.ogg, + ambiodd.ogg, + ambireebe1.ogg, + ambireebe3.ogg, + ambiruin.ogg, + ambiruin2.ogg, + ambiruin3.ogg, + ambiruin4.ogg, + ambiruin5.ogg, + ambiruin6.ogg, + ambiruin7.ogg, + ambisin1.ogg, + ambisin2.ogg, + ambisin3.ogg, + ambisin4.ogg, + ambitech.ogg, + ambitech2.ogg, + ambitech3.ogg, maintambience.ogg"] license: "CC-BY-SA-3.0" copyright: "Taken from tgstation" @@ -83,4 +83,9 @@ - files: ["drifting.ogg"] license: "CC-BY-SA-3.0" copyright: "Taken from BeeStation" - source: "https://github.com/BeeStation/BeeStation-Hornet/commit/cf8c667dcca196c0e81af37ed0c27b9bdee9c888" \ No newline at end of file + source: "https://github.com/BeeStation/BeeStation-Hornet/commit/cf8c667dcca196c0e81af37ed0c27b9bdee9c888" + +- files: ["voyage_neverending.ogg"] + license: "CC0-1.0" + copyright: "Created by Discord handle derflerp" + source: "https://discord.com/channels/310555209753690112/536955542913024015/1162982443645665371" diff --git a/Resources/Audio/Ambience/voyage_neverending.ogg b/Resources/Audio/Ambience/voyage_neverending.ogg new file mode 100644 index 0000000000..2ffa99ae87 Binary files /dev/null and b/Resources/Audio/Ambience/voyage_neverending.ogg differ diff --git a/Resources/Audio/Animals/attributions.yml b/Resources/Audio/Animals/attributions.yml new file mode 100644 index 0000000000..c9c20473c2 --- /dev/null +++ b/Resources/Audio/Animals/attributions.yml @@ -0,0 +1,134 @@ +- files: ["monkey_scream.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Taken from goonstation" + source: "https://github.com/goonstation/goonstation/blob/4059e4be90832b02b1228b1bee3db342094e4f1e/sound/voice/screams/monkey_scream.ogg" + +- files: ["cat_meow.ogg"] + license: "CC-BY-3.0" + copyright: "Modified from 'Meow 4.wav' by freesound user 'TRNGLE. The original audio was trimmed, split to mono, and converted from WAV to OGG format" + source: "https://freesound.org/people/TRNGLE/sounds/368006/" + +- files: ["cat_meow2.ogg"] + license: "CC-BY-3.0" + copyright: "Created by freesound user 'TRNGLE. The original audio split to mono, and converted from WAV to OGG format" + source: "https://freesound.org/people/TRNGLE/sounds/362652/" + +- files: ["cat_hiss.ogg"] + license: "CC0-1.0" + copyright: "Modified from 'Meow 4.wav' by freesound user 'TRNGLE'. The original audio was trimmed, split to mono, and converted from WAV to OGG format" + source: "https://freesound.org/people/Zabuhailo/sounds/146963/" + +- files: ["small_dog_bark_happy.ogg"] + license: "CC0-1.0" + copyright: "Modified from 'catHisses1.wav' by freesound user 'Zabuhailo. ' The original audio was trimmed and converted from WAV to OGG format" + source: "https://freesound.org/people/MisterTood/sounds/9032/" + +- files: ["duck_quack_happy.ogg"] + license: "CC0-1.0" + copyright: "Modified from 'Duck Quack - Sound Effect (HD).mp3' by freesound user 'Tabby+Gus.' The original audio was trimmed, looped, split to mono, and converted from MP3 to OGG format" + source: "https://freesound.org/people/Tabby+Gus./sounds/515408/" + +- files: ["chicken_cluck_happy.ogg"] + license: "CC0-1.0" + copyright: "Modified from 'Chicken Single Alarm Call' by freesound user 'Rudmer_Rotteveel'. The original audio was trimmed and converted from WAV to OGG format" + source: "https://freesound.org/people/Rudmer_Rotteveel/sounds/316920/" + +- files: ["ferret_happy.ogg"] + license: "CC-BY-3.0" + copyright: "Modified from 'Ferret' by freesound user 'J.Zazvurek'. The original audio was trimmed and converted from WAV to OGG format" + source: "https://freesound.org/people/J.Zazvurek/sounds/155115/" + +- files: ["mouse_squeak.ogg"] + license: "CC0-1.0" + copyright: "Modified from 'Cartoon - Bat / Mouse Squeak' by freesound user 'Breviceps'. The original audio was converted from WAV to OGG format" + source: "https://freesound.org/people/Breviceps/sounds/445958/" + +- files: ["sloth_squeak.ogg"] + license: "CC0-1.0" + copyright: "Modified from 'squeakfinal.wav' by freesound user 'Higgs01'. The original audio was converted from WAV to OFF format AND converted from stereo to mono" + source: "https://freesound.org/people/Higgs01/sounds/428114/" + +- files: ["parrot_raught.ogg"] + license: "CC-BY-3.0" + copyright: "Modified and used from 'Parrot 1 raught 2.wav' by freesound user 'Coral_Island_Studios'. The original audio was converted from WAV to OGG format" + source: "https://freesound.org/people/Coral_Island_Studios/sounds/432588/" + +- files: ["fox_squeak.ogg"] + license: "CC0-1.0" + copyright: "Modified from 'Video Game Squeak' by freesound user 'Breviceps'. The original audio was converted from WAV to OGG format" + source: "https://freesound.org/people/Breviceps/sounds/468442/" + +- files: ["frog_ribbit.ogg"] + license: "CC0-1.0" + copyright: "Modified from 'Video Game Squeak' by freesound user 'Breviceps'. The original audio was converted from WAV to OGG format" + source: "https://freesound.org/people/egomassive/sounds/536759/" + +- files: ["goose_honk.ogg"] + license: "CC0-1.0" + copyright: "Modified from ' Bird Honk - 1' by freesound user 'SpaceJoe'. The originial audio was converted from WAV to OGG format" + source: "https://freesound.org/people/SpaceJoe/sounds/510940/" + +- files: ["snake_his.ogg"] + license: "CC-BY-4.0" + copyright: "Modified from 'hissing snake sound effect' by freesound user 'Garuda1982'. The original audio was convertred from WAV to OGG format" + source: "https://freesound.org/people/Garuda1982/sounds/541656/" + +- files: ["pig_oink.ogg"] + license: "CC0-1.0" + copyright: "Modified from 'Pig Oink.wav' by freesound user 'qubodup'. The original audio was converted from WAV to OGG format" + source: "https://freesound.org/people/qubodup/sounds/442906/" + +- files: ["cerberus.ogg"] + license: "CC0-1.0" + copyright: "Modified from 'DogBARKING.wav' by freesound user 'ahill86'. The original audio was converted from WAV to OGG format, echoed, amplified and pitched down" + source: "https://freesound.org/people/ahill86/sounds/207124/" + +- files: ["space_dragon_roar.ogg"] + license: "CC-BY-3.0" + copyright: "Taken from tgstation" + source: "https://github.com/tgstation/tgstation/commit/d4f678a1772007ff8d7eddd21cf7218c8e07bfc0" + +- files: ["penguin_squawk.ogg"] + license: "CC-BY-3.0" + copyright: "Audio is recorded/created by youtube user 'ProSounds. The original audio was trimmed and converted from MP3 to OGG format" + source: "https://youtu.be/Anr35RbBL3Y" + +- files: ["raccoon_squeak.ogg"] + license: "CC-BY-3.0" + copyright: "Audio is recorded by youtube user 'jnargus'" + source: "https://youtu.be/BGjFP1CP7E0" + +- files: ["goat_bah.ogg"] + license: "CC-BY-3.0" + copyright: "Audio is created by youtube user 'Winry Marini'" + source: "https://youtu.be/QIhwzsk5bww" + +- files: ["lizard_happy.ogg"] + license: "CC-BY-3.0" + copyright: "Audio created by youtube user 'Nagaty Studio'" + source: "https://youtu.be/I7CX0AS8RNI" + +- files: ["bear.ogg"] + license: "CC-BY-3.0" + copyright: "Audio is recorded by 'Nagaty Studio'. The original audio was reverbed" + source: "https://www.youtube.com/watch?v=pz6eZbESlU8" + +- files: ["kangaroo_grunt.ogg"] + license: "CC-BY-4.0" + copyright: "Audio is recorded/created by Pfranzen 'FreeSound.org'. The original audio was trimmed and renamed" + source: "https://freesound.org/people/pfranzen/sounds/322744/" + +- files: ["dog_bark1.ogg"] + license: "CC0-1.0" + copyright: "Audio is recorded/created by KFerentchak 'FreeSound.org'. The original audio was trimmed and renamed" + source: "https://freesound.org/people/KFerentchak/sounds/235912/" + +- files: ["dog_bark2.ogg"] + license: "CC0-1.0" + copyright: "Audio is recorded/created by KFerentchak 'FreeSound.org'. The original audio was trimmed and renamed" + source: "https://freesound.org/people/KFerentchak/sounds/235912/" + +- files: ["dog_bark3.ogg"] + license: "CC0-1.0" + copyright: "Audio is recorded/created by KFerentchak 'FreeSound.org'. The original audio was trimmed and renamed" + source: "https://freesound.org/people/KFerentchak/sounds/235912/" \ No newline at end of file diff --git a/Resources/Audio/Animals/cat_meow2.ogg b/Resources/Audio/Animals/cat_meow2.ogg new file mode 100644 index 0000000000..7b854a983e Binary files /dev/null and b/Resources/Audio/Animals/cat_meow2.ogg differ diff --git a/Resources/Audio/Animals/dog_bark1.ogg b/Resources/Audio/Animals/dog_bark1.ogg new file mode 100644 index 0000000000..8e5b8ca26e Binary files /dev/null and b/Resources/Audio/Animals/dog_bark1.ogg differ diff --git a/Resources/Audio/Animals/dog_bark2.ogg b/Resources/Audio/Animals/dog_bark2.ogg new file mode 100644 index 0000000000..c0dbd32b19 Binary files /dev/null and b/Resources/Audio/Animals/dog_bark2.ogg differ diff --git a/Resources/Audio/Animals/dog_bark3.ogg b/Resources/Audio/Animals/dog_bark3.ogg new file mode 100644 index 0000000000..634c3e23bc Binary files /dev/null and b/Resources/Audio/Animals/dog_bark3.ogg differ diff --git a/Resources/Audio/Animals/license.txt b/Resources/Audio/Animals/license.txt deleted file mode 100644 index ea1ba5fbda..0000000000 --- a/Resources/Audio/Animals/license.txt +++ /dev/null @@ -1,53 +0,0 @@ -monkey_scream.ogg from -https://github.com/goonstation/goonstation/blob/4059e4be90832b02b1228b1bee3db342094e4f1e/sound/voice/screams/monkey_scream.ogg -licensed under CC BY-NC-SA 3.0 - -The following sounds were used from freesound: - - cat_meow.ogg: modified from "Meow 4.wav" by freesound user "TRNGLE" (https://freesound.org/people/TRNGLE/sounds/368006/) licensed under CCBY 3.0. The original audio was trimmed, split to mono, and converted from WAV to OGG format. - - cat_hiss.ogg: modified from "catHisses1.wav" by freesound user "Zabuhailo" (https://freesound.org/people/Zabuhailo/sounds/146963/) licensed under CC0 1.0 (public domain). The original audio was trimmed and converted from WAV to OGG format. - - small_dog_bark_happy.ogg: modified from "Dog bark2.wav" by freesound user "MisterTood" (https://freesound.org/people/MisterTood/sounds/9032/) licensed under CC0 1.0 (public domain). The original audio was trimmed and converted from WAV to OGG format. - - duck_quack_happy.ogg: modified from "Duck Quack - Sound Effect (HD).mp3" by freesound user "Tabby+Gus." (https://freesound.org/people/Tabby+Gus./sounds/515408/) licensed under CC0 1.0 (public domain). The original audio was trimmed, looped, split to mono, and converted from MP3 to OGG format. - - chicken_cluck_happy.ogg: modified from "Chicken Single Alarm Call" by freesound user "Rudmer_Rotteveel" (https://freesound.org/people/Rudmer_Rotteveel/sounds/316920/) licensed under CC0 1.0 (public domain). The original audio was trimmed and converted from WAV to OGG format. - - ferret_happy.ogg: modified from "Ferret" by freesound user "J.Zazvurek" (https://freesound.org/people/J.Zazvurek/sounds/155115/) licensed under CC BY 3.0. The original audio was trimmed and converted from WAV to OGG format. - - mouse_squeak.ogg: modified from "Cartoon - Bat / Mouse Squeak" by freesound user "Breviceps" (https://freesound.org/people/Breviceps/sounds/445958/) licensed under CC0 1.0 (public domain). The original audio was converted from WAV to OGG format. - - sloth_squeak.ogg: modified from "squeakfinal.wav" by freesound user "Higgs01" (https://freesound.org/people/Higgs01/sounds/428114/) licensed under CC0 1.0 (Public domain dedication). The original audio was converted from WAV to OFF format AND converted from stereo to mono. - - parrot_raught.ogg: modified and used from "Parrot 1 raught 2.wav" by freesound user "Coral_Island_Studios" (https://freesound.org/people/Coral_Island_Studios/sounds/432588/) licensed under CC BY 3.0. The original audio was converted from WAV to OGG format. - - fox_squeak.ogg: modified from "Video Game Squeak" by freesound user "Breviceps" (https://freesound.org/people/Breviceps/sounds/468442/) licensed under CC0 1.0. The original audio was converted from WAV to OGG format - - frog_ribbit.ogg: original audio created by freesound user "egomassive" (https://freesound.org/people/egomassive/sounds/536759/). licensed under licensed under CC0 1.0 - - goose_honk.ogg: modified from " Bird Honk - 1" by freesound user "SpaceJoe" (https://freesound.org/people/SpaceJoe/sounds/510940/) licensed under CC0 1.0. The originial audio was converted from WAV to OGG format. - - snake_hiss.ogg: modified from "hissing snake sound effect" by freesound user "Garuda1982" (https://freesound.org/people/Garuda1982/sounds/541656/) licensed under CC BY 4.0. The original audio was convertred from WAV to OGG format. - - pig_oink.ogg: modified from "Pig Oink.wav" by freesound user "qubodup" (https://freesound.org/people/qubodup/sounds/442906/) licensed under CC0 1.0 (public domain). The original audio was converted from WAV to OGG format. - - cerberus.ogg: modified from "DogBARKING.wav" by freesound user "ahill86" (https://freesound.org/people/ahill86/sounds/207124/) licensed under CCO 1.0 (Public domain dedication). The original audio was converted from WAV to OGG format, echoed, amplified and pitched down. - -The following sounds are taken from TGstation github (licensed under CC by 3.0): - - space_dragon_roar.ogg: taken at https://github.com/tgstation/tgstation/commit/d4f678a1772007ff8d7eddd21cf7218c8e07bfc0 - -The following sounds were used from youtube: - - penguin_squawk.ogg: audio is recorded/created by youtube user "ProSounds" (https://youtu.be/Anr35RbBL3Y) licensed under CC BY 3.0. The original audio was trimmed and converted from MP3 to OGG format. - - raccoon_squeak.ogg: audio is recorded by youtube user "jnargus" (https://youtu.be/BGjFP1CP7E0) licensed under CC by 3.0 - - goat_bah.ogg: audio is created by youtube user "Winry Marini" (https://youtu.be/QIhwzsk5bww) licensed under CC BY 3.0 - - lizard_happy.ogg: audio created by youtube user "Nagaty Studio" (https://youtu.be/I7CX0AS8RNI) licensed under CC by 3.0. - - bear.ogg: audio is recorded by "Nagaty Studio" (https://www.youtube.com/watch?v=pz6eZbESlU8) licensed under CC by 3.0. The original audio was reverbed. - - kangaroo_grunt.ogg: audio is recorded/created by Pfranzen "FreeSound.org" (https://freesound.org/people/pfranzen/sounds/322744/) licensed under CC BY 4.0. The original audio was trimmed and renamed. diff --git a/Resources/Audio/Announcements/attributions.yml b/Resources/Audio/Announcements/attributions.yml index b65f758615..879bfe7f60 100644 --- a/Resources/Audio/Announcements/attributions.yml +++ b/Resources/Audio/Announcements/attributions.yml @@ -2,3 +2,8 @@ license: "CC-BY-SA-3.0" copyright: "tgstation" source: "https://github.com/tgstation/tgstation/blob/b77fa8c2a2490b43bf9174271ebfad72c4782d98/sound/ai/default/ionstorm.ogg" + +- files: ["war.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Paradise, volume and pitch changed, merged with redalert.ogg" + source: "https://github.com/ParadiseSS13/Paradise/blob/07b26ee6b4a11a0607986d322ee007020569feae/sound/effects/siren.ogg" diff --git a/Resources/Audio/Announcements/license.txt b/Resources/Audio/Announcements/license.txt deleted file mode 100644 index f3806dea39..0000000000 --- a/Resources/Audio/Announcements/license.txt +++ /dev/null @@ -1 +0,0 @@ -war.ogg taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/07b26ee6b4a11a0607986d322ee007020569feae/sound/effects/siren.ogg used under CC-BY-SA-3.0, volume and pitch changed, merged with redalert.ogg diff --git a/Resources/Audio/DeltaV/Effects/crack1.ogg b/Resources/Audio/DeltaV/Effects/crack1.ogg new file mode 100644 index 0000000000..03393ea356 Binary files /dev/null and b/Resources/Audio/DeltaV/Effects/crack1.ogg differ diff --git a/Resources/Audio/DeltaV/Effects/license.txt b/Resources/Audio/DeltaV/Effects/license.txt new file mode 100644 index 0000000000..7a2e867609 --- /dev/null +++ b/Resources/Audio/DeltaV/Effects/license.txt @@ -0,0 +1,3 @@ +crack1.ogg taken from +https://github.com/tgstation/tgstation/blob/ebc2e02e59d36214aff1eff8250b70a7970ff43d/sound/effects/wounds/crack1.ogg +licensed under CC BY-NC-SA 3.0 diff --git a/Resources/Audio/DeltaV/Weapons/Guns/Empty/dry_fire.ogg b/Resources/Audio/DeltaV/Weapons/Guns/Empty/dry_fire.ogg new file mode 100644 index 0000000000..ca7374c308 Binary files /dev/null and b/Resources/Audio/DeltaV/Weapons/Guns/Empty/dry_fire.ogg differ diff --git a/Resources/Audio/DeltaV/Weapons/Guns/Gunshots/laser.ogg b/Resources/Audio/DeltaV/Weapons/Guns/Gunshots/laser.ogg new file mode 100644 index 0000000000..e50201e403 Binary files /dev/null and b/Resources/Audio/DeltaV/Weapons/Guns/Gunshots/laser.ogg differ diff --git a/Resources/Audio/DeltaV/license.txt b/Resources/Audio/DeltaV/license.txt index ff29d0e1be..6780d3afeb 100644 --- a/Resources/Audio/DeltaV/license.txt +++ b/Resources/Audio/DeltaV/license.txt @@ -2,3 +2,5 @@ typewriter.ogg is modified from https://www.freesoundslibrary.com/typewriter-sou axiom.ogg is modified from free sound effects from https://www.fesliyanstudios.com which are licensed under the CC0 1.0 License. This modified file follows the same license. jackdaw.ogg is modified from atreides.ogg which was taken from https://gitlab.com/cmdevs/colonial-warfare/-/tree/32cb5892413243cc74bb2d11df8e3085f8ef1164/sound/weapons which is licensed under the CC-BY-SA 3.0 License. This modified file follows the same license. universal.ogg is modified from free sound effects from https://www.fesliyanstudios.com which are licensed under the CC0 1.0 License. This modified file follows the same license. +dry_fire.ogg from tgstation at https://github.com/tgstation/tgstation/blob/master/sound/weapons/gun/general/dry_fire.ogg which is licensed under the CC-BY-SA 3.0 +laser.ogg from tgstation at https://github.com/tgstation/tgstation/blob/master/sound/weapons/laser.ogg which is licensed under the CC-BY-SA 3.0 diff --git a/Resources/Audio/Effects/Cargo/attributions.yml b/Resources/Audio/Effects/Cargo/attributions.yml new file mode 100644 index 0000000000..c3f950f9b5 --- /dev/null +++ b/Resources/Audio/Effects/Cargo/attributions.yml @@ -0,0 +1,7 @@ +- files: + - buzz_sigh.ogg + - buzz_two.ogg + - ping.ogg + copyright: '"buzz_sigh.ogg", "buzz_two.ogg", and "ping.ogg" by /tg/station' + license: CC-BY-SA-3.0 + source: https://github.com/tgstation/tgstation/tree/d6f15fb717e7c047f8befefabb4b7735b3c39a84/sound diff --git a/Resources/Audio/Effects/Cargo/licenses.txt b/Resources/Audio/Effects/Cargo/licenses.txt deleted file mode 100644 index 113b586912..0000000000 --- a/Resources/Audio/Effects/Cargo/licenses.txt +++ /dev/null @@ -1,7 +0,0 @@ -The following sounds are taken from TGstation github (licensed under CC by 3.0): - - buzz_sigh.ogg from https://github.com/tgstation/tgstation/tree/d6f15fb717e7c047f8befefabb4b7735b3c39a84/sound - - buzz_two.ogg from https://github.com/tgstation/tgstation/tree/d6f15fb717e7c047f8befefabb4b7735b3c39a84/sound - - ping.ogg from https://github.com/tgstation/tgstation/tree/d6f15fb717e7c047f8befefabb4b7735b3c39a84/sound diff --git a/Resources/Audio/Effects/Diseases/attributions.yml b/Resources/Audio/Effects/Diseases/attributions.yml new file mode 100644 index 0000000000..c9972feddf --- /dev/null +++ b/Resources/Audio/Effects/Diseases/attributions.yml @@ -0,0 +1,14 @@ +- files: [beepboop.ogg] + license: CC0-1.0 + copyright: '"beep boop.mp3" by Fidjo20 of Freesound.org' + source: https://freesound.org/people/Fidjo20/sounds/503526/ + +- files: [monkey1.ogg] + license: CC-BY-NC-4.0 + copyright: '"Howler Monkey - Single, Close, Costa Rica" by TRAVELcandies of Freesound.org' + source: https://freesound.org/people/TRAVELcandies/sounds/423396/ + +- files: [monkey2.ogg] + license: CC0-1.0 + copyright: '"Monkey screaming.wav" by Archeos of Freesound.org' + source: https://freesound.org/people/Archeos/sounds/325549/ diff --git a/Resources/Audio/Effects/Diseases/license.txt b/Resources/Audio/Effects/Diseases/license.txt deleted file mode 100644 index 412660da57..0000000000 --- a/Resources/Audio/Effects/Diseases/license.txt +++ /dev/null @@ -1,3 +0,0 @@ -beepboop.ogg taken from https://freesound.org/people/Fidjo20/sounds/503526/ -monkey1.ogg taken from https://freesound.org/people/TRAVELcandies/sounds/423396/ -monkey2.ogg taken from https://freesound.org/people/Archeos/sounds/325549/ diff --git a/Resources/Audio/Effects/Footsteps/attributions.yml b/Resources/Audio/Effects/Footsteps/attributions.yml index a6dea3f6ed..ef91a34d36 100644 --- a/Resources/Audio/Effects/Footsteps/attributions.yml +++ b/Resources/Audio/Effects/Footsteps/attributions.yml @@ -32,3 +32,21 @@ license: "CC-BY-SA-3.0" copyright: "Taken and modified from tgstation (clownstep 1 and 2) by brainfood1183 (github)" source: "https://github.com/tgstation/tgstation/tree/f8ee37afc00bce1ad421615eaa0e4cbddd5eea90/sound/effects" + +- files: + - snake1.ogg + - snake2.ogg + - snake3.ogg + license: "Custom" + copyright: "Taken from https://zvukipro.com/" + source: "https://zvukipro.com/jivotnie/21-zvuki-zmej.html" + +- files: + - bells1.ogg + - bells2.ogg + - bells3.ogg + - bells4.ogg + - bells5.ogg + license: "CC-BY-SA-4.0" + copyright: "Taken and modified from el1n freesound.org" + source: "https://freesound.org/people/el1n/sounds/442746/" diff --git a/Resources/Audio/Effects/Footsteps/bells1.ogg b/Resources/Audio/Effects/Footsteps/bells1.ogg new file mode 100644 index 0000000000..21638a00b0 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/bells1.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/bells2.ogg b/Resources/Audio/Effects/Footsteps/bells2.ogg new file mode 100644 index 0000000000..0cbeaa7ab7 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/bells2.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/bells3.ogg b/Resources/Audio/Effects/Footsteps/bells3.ogg new file mode 100644 index 0000000000..c2ed129bfa Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/bells3.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/bells4.ogg b/Resources/Audio/Effects/Footsteps/bells4.ogg new file mode 100644 index 0000000000..bb57c33f79 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/bells4.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/bells5.ogg b/Resources/Audio/Effects/Footsteps/bells5.ogg new file mode 100644 index 0000000000..b13dba1e43 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/bells5.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/snake1.ogg b/Resources/Audio/Effects/Footsteps/snake1.ogg new file mode 100644 index 0000000000..0304b356b4 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/snake1.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/snake2.ogg b/Resources/Audio/Effects/Footsteps/snake2.ogg new file mode 100644 index 0000000000..46f7ea5e58 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/snake2.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/snake3.ogg b/Resources/Audio/Effects/Footsteps/snake3.ogg new file mode 100644 index 0000000000..a1640b2be5 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/snake3.ogg differ diff --git a/Resources/Audio/Effects/Grenades/Supermatter/attributions.yml b/Resources/Audio/Effects/Grenades/Supermatter/attributions.yml new file mode 100644 index 0000000000..4da11cd84e --- /dev/null +++ b/Resources/Audio/Effects/Grenades/Supermatter/attributions.yml @@ -0,0 +1,10 @@ +- files: + - supermatter_end.ogg + - supermatter_loop.ogg + - supermatter_start.ogg + - whitehole_loop.ogg + - whitehole_start.ogg + - smbeep.ogg + license: CC-BY-SA-3.0 + source: https://soundcloud.com/alexmorgan3817 + copyright: AlexMorgan3817 diff --git a/Resources/Audio/Effects/Grenades/Supermatter/licenses.yml b/Resources/Audio/Effects/Grenades/Supermatter/licenses.yml deleted file mode 100644 index a4b80f3830..0000000000 --- a/Resources/Audio/Effects/Grenades/Supermatter/licenses.yml +++ /dev/null @@ -1,9 +0,0 @@ -- files: - - supermatter_end.ogg - - supermatter_loop.ogg - - supermatter_start.ogg - - whitehole_loop.ogg - - whitehole_start.ogg - - smbeep.ogg - license: "CC-BY-SA-3.0" - copyright: "Made by AlexMorgan3817 https://soundcloud.com/alexmorgan3817" diff --git a/Resources/Audio/Effects/Lightning/attributions.yml b/Resources/Audio/Effects/Lightning/attributions.yml new file mode 100644 index 0000000000..fa6cc9d165 --- /dev/null +++ b/Resources/Audio/Effects/Lightning/attributions.yml @@ -0,0 +1,4 @@ +- files: [LightningShock.ogg] + license: CC-BY-NC-SA-3.0 + copyright: Citadel Station 13 + source: https://github.com/Citadel-Station-13/Citadel-Station-13/commit/35a1723e98a60f375df590ca572cc90f1bb80bd5 diff --git a/Resources/Audio/Effects/Lightning/licenses.txt b/Resources/Audio/Effects/Lightning/licenses.txt deleted file mode 100644 index 65cf9df2dc..0000000000 --- a/Resources/Audio/Effects/Lightning/licenses.txt +++ /dev/null @@ -1,6 +0,0 @@ -LightningShock.ogg taken from Citadel Station at commit: https://github.com/Citadel-Station-13/Citadel-Station-13/commit/35a1723e98a60f375df590ca572cc90f1bb80bd5 - -- files: ["LightningShock.ogg"] - license: "CC-BY-NC-SA-3.0" - copyright: "LightningShock.ogg taken from Citadel Station." - source: "https://github.com/Citadel-Station-13/Citadel-Station-13/commit/35a1723e98a60f375df590ca572cc90f1bb80bd5" \ No newline at end of file diff --git a/Resources/Audio/Effects/PowerSink/attributions.yml b/Resources/Audio/Effects/PowerSink/attributions.yml new file mode 100644 index 0000000000..6248b982ff --- /dev/null +++ b/Resources/Audio/Effects/PowerSink/attributions.yml @@ -0,0 +1,9 @@ +- files: [electric.ogg] + license: CC0-1.0 + copyright: '"Electricity Shock 3 Full" by The-Sacha-Rush on Freesound.org' + source: https://freesound.org/people/The-Sacha-Rush/sounds/657802/ + +- files: [charge_fire.ogg] + license: CC-BY-3.0 + copyright: '"Electric Charge + Shot" by Teh_Bucket on Freesound.org. This is adapted from multiple works by dylanperitz, satanicupsman, CaptainGusterd, arightwizard, BigKahuna360, michael_grinnell, weaveofkev, MichelleGrobler, Alex_John73, sandyrb and breo2012 all of Freesound.org. The work by sandyrb is licensed under CC-BY-4.0.' + source: https://freesound.org/people/Teh_Bucket/sounds/518739/ diff --git a/Resources/Audio/Effects/PowerSink/licenses.txt b/Resources/Audio/Effects/PowerSink/licenses.txt deleted file mode 100644 index 52898e4710..0000000000 --- a/Resources/Audio/Effects/PowerSink/licenses.txt +++ /dev/null @@ -1,10 +0,0 @@ -- files: ["electric.ogg"] - license: "CC0 1.0" - copyright: "The-Sacha-Rush" - source: "https://freesound.org/people/The-Sacha-Rush/sounds/657802/" - -- files: ["charge_fire.ogg"] - license: "CC BY 3.0" - copyright: "Teh_Bucket, dylanperitz, satanicupsman, CaptainGusterd, arightwizard, BigKahuna360, michael_grinnell, weaveofkev, MichelleGrobler, Alex_John73, sandyrb, breo2012" - source: "https://freesound.org/people/Teh_Bucket/sounds/518739/" - diff --git a/Resources/Audio/Effects/Shuttle/attributions.yml b/Resources/Audio/Effects/Shuttle/attributions.yml new file mode 100644 index 0000000000..60a665c536 --- /dev/null +++ b/Resources/Audio/Effects/Shuttle/attributions.yml @@ -0,0 +1,11 @@ +- files: + - hyperspace_begin.ogg + - hyperspace_end.ogg + copyright: '"hyperspace_begin.ogg", and "hyperspace_end.ogg" by /tg/station' + license: CC-BY-SA-3.0 + source: https://github.com/tgstation/tgstation/tree/71a79f1f75902d2ccab27cbffb971b12b7ab042d/sound/runtime/hyperspace + +- files: [hyperspace_progress.ogg] + copyright: '"hyperspace_progress.ogg" by /tg/station. Modified for looping by metalgearsloth.' + license: CC-BY-SA-3.0 + source: https://github.com/tgstation/tgstation/tree/71a79f1f75902d2ccab27cbffb971b12b7ab042d/sound/runtime/hyperspace diff --git a/Resources/Audio/Effects/Shuttle/licenses.txt b/Resources/Audio/Effects/Shuttle/licenses.txt deleted file mode 100644 index d6b07f68e8..0000000000 --- a/Resources/Audio/Effects/Shuttle/licenses.txt +++ /dev/null @@ -1,7 +0,0 @@ -The following sounds are taken from TGstation github (licensed under CC by 3.0): - - hyperspace_begin.ogg taken from https://github.com/tgstation/tgstation/tree/71a79f1f75902d2ccab27cbffb971b12b7ab042d/sound/runtime/hyperspace - - hyperspace_end.ogg taken from https://github.com/tgstation/tgstation/tree/71a79f1f75902d2ccab27cbffb971b12b7ab042d/sound/runtime/hyperspace - - hyperspace_progress.ogg taken and modified for looping by metalgearsloth from https://github.com/tgstation/tgstation/tree/71a79f1f75902d2ccab27cbffb971b12b7ab042d/sound/runtime/hyperspace \ No newline at end of file diff --git a/Resources/Audio/Effects/Vehicle/attributions.yml b/Resources/Audio/Effects/Vehicle/attributions.yml new file mode 100644 index 0000000000..d6bd49a581 --- /dev/null +++ b/Resources/Audio/Effects/Vehicle/attributions.yml @@ -0,0 +1,21 @@ +- files: + - vehiclestartup.ogg + - vehicleengineindle.ogg + license: "CC-BY-4.0" + copyright: "InspectorJ (www.jshaw.co.uk) of Freesound.org" + source: "https://freesound.org/people/InspectorJ/sounds/338954/" + +- files: ["carhorn.ogg"] + license: "CC-BY-SA-3.0" + copyright: "/tg/station" + source: "https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a" + +- files: ["policesiren.ogg"] + source: "https://freesound.org/people/blukotek/sounds/431651/" + license: "CC0-1.0" + copyright: "Piotr Zaczek (blukotek) on freesound.org" + +- files: ["bicyclebell.ogg"] + source: "https://freesound.org/people/13gkopeckak/sounds/378911/" + license: "CC0-1.0" + copyright: "13gkopeckak on freesound.org" diff --git a/Resources/Audio/Effects/Vehicle/license.txt b/Resources/Audio/Effects/Vehicle/license.txt deleted file mode 100644 index 8c00db6aa0..0000000000 --- a/Resources/Audio/Effects/Vehicle/license.txt +++ /dev/null @@ -1,7 +0,0 @@ -vehiclestartup.ogg and vehicleengineidle.ogg taken from user InspectorJ at https://freesound.org/people/InspectorJ/sounds/338954/ - -carhorn.ogg taken from /tg/station at commit https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a - -policesiren.ogg taken from freesound user blukotek at https://freesound.org/people/blukotek/sounds/431651/ - -bicyclebell.ogg taken from freesound user 12gkopeckak at https://freesound.org/people/13gkopeckak/sounds/378911/ diff --git a/Resources/Audio/Effects/Weather/attributions.yml b/Resources/Audio/Effects/Weather/attributions.yml new file mode 100644 index 0000000000..4300228743 --- /dev/null +++ b/Resources/Audio/Effects/Weather/attributions.yml @@ -0,0 +1,23 @@ +- files: + - rain.ogg + - snowstorm.ogg + - snowstorm_weak.ogg + - wind_2_1.ogg + - wind_2_2.ogg + - wind_3_1.ogg + - wind_4_1.ogg + - wind_4_2.ogg + - wind_5_1.ogg + license: CC-BY-SA-3.0 + copyright: '"rain.ogg", "snowstorm.ogg", "snowstorm_weak.ogg", "wind_2_1.ogg", "wind_2_2.ogg", "wind_3_1.ogg", "wind_4_1.ogg", "wind_4_2.ogg", "wind_5_1.ogg" by Citadel Station 13. Modified for looping.' + source: https://github.com/Citadel-Station-13/Citadel-Station-13-RP/tree/28e11dee540e61b6c42fa293c1e1da087c1c2b0a + +- files: [rain2.wav] + copyright: '"Natural Environments" by Varazuvi of SONNISS.com. See https://sonniss.com/gdc-bundle-license/ for license.' + license: Custom + source: https://gdc.sonniss.com + +- files: [rain_heavy.ogg] + copyright: '"RATH - Rain Hard Loop 08s" of SONNISS.com. See https://sonniss.com/gdc-bundle-license/ for license.' + license: Custom + source: https://gdc.sonniss.com diff --git a/Resources/Audio/Effects/Weather/licenses.txt b/Resources/Audio/Effects/Weather/licenses.txt deleted file mode 100644 index 7588e276b8..0000000000 --- a/Resources/Audio/Effects/Weather/licenses.txt +++ /dev/null @@ -1,23 +0,0 @@ -- files: - - rain.ogg - - snowstorm.ogg - - snowstorm_weak.ogg - - wind_2_1.ogg - - wind_2_2.ogg - - wind_3_1.ogg - - wind_4_1.ogg - - wind_4_2.ogg - - wind_5_1.ogg - license: "CC-BY-SA-3.0" - copyright: "Taken from https://github.com/Citadel-Station-13/Citadel-Station-13-RP/tree/28e11dee540e61b6c42fa293c1e1da087c1c2b0a and looped" - source: "https://github.com/Citadel-Station-13/Citadel-Station-13-RP/tree/28e11dee540e61b6c42fa293c1e1da087c1c2b0a" - -- files: ["rain2.wav"] - license: "Royalty free" - copyright: "Varazuvi - Natural Environments" - source: "Taken from Soniss.com - GDC" - -- files: ["rain_heavy.ogg"] - license: "Royalty free" - copyright: "RATH - Rain Hard Loop 08" - source: "Taken from Soniss.com - GDC" diff --git a/Resources/Audio/Effects/attributions.yml b/Resources/Audio/Effects/attributions.yml index 7fd46a0241..aa5609ab3d 100644 --- a/Resources/Audio/Effects/attributions.yml +++ b/Resources/Audio/Effects/attributions.yml @@ -1,12 +1,12 @@ - files: ["balloon-pop"] license: "CC-BY-4.0" - copyright: "Taken from Aesterial-Arts on freesound.org and converted to mono by EmoGarbage404 (github)" + copyright: '"Balloon Pop" by Aesterial-Arts on Freesound.org. Cconverted to mono by EmoGarbage404 on GitHub.com' source: "https://freesound.org/people/Aesterial-Arts/sounds/633835/" - files: ["pill_insert.ogg", "pill_remove.ogg"] license: "CC-BY-NC-SA-3.0" copyright: "Amateur foley and audio editing by Bright0." - source: "https://github.com/Bright0" + source: "https://github.com/space-wizards/space-station-14/commit/26624f22f6329b1c8d3c122ddafff01da7277508" - files: ["teleport_arrival.ogg", "teleport_departure.ogg"] license: "CC-BY-SA-3.0" @@ -15,60 +15,164 @@ - files: ["sadtrombone.ogg"] license: "CC-BY-NC-SA-3.0" - copyright: "sadtrombone.ogg taken from Citadel Station." + copyright: "sadtrombone.ogg by Citadel Station 13" source: "https://github.com/Citadel-Station-13/Citadel-Station-13/commit/35a1723e98a60f375df590ca572cc90f1bb80bd5" - files: ["box_deploy.ogg"] license: "CC-BY-NC-SA-3.0" - copyright: "box_deploy.ogg taken from Citadel Station." + copyright: "box_deploy.ogg by Citadel Station 13" source: "https://github.com/Citadel-Station-13/Citadel-Station-13/commit/b604390f334343be80045d955705cf48ee056c61" - files: ["chime.ogg"] license: "CC-BY-NC-SA-3.0" - copyright: "chime.ogg taken from Citadel Station." + copyright: "chime.ogg by Citadel Station 13" source: "https://github.com/Citadel-Station-13/Citadel-Station-13/commit/b604390f334343be80045d955705cf48ee056c61" - files: ["tree_fell.ogg"] license: "CC0-1.0" - copyright: "Taken from felix.blume via freesound.org and cropped + mixed from stereo to mono." + copyright: '"Tree falls in a forest." by felix.blume of Freesound.org. Cropped and mixed from stereo to mono.' source: "https://freesound.org/people/felix.blume/sounds/414093/" - files: ["beep1.ogg"] license: "CC0-1.0" - copyright: "Taken from thisusernameis via freesound.org + mixed from stereo to mono." + copyright: '"beep1.wav" by thisusernameis of Freesound.org. Mixed from stereo to mono.' source: "https://freesound.org/people/thisusernameis/sounds/426891/" - files: ["hallelujah.ogg"] license: "CC-BY-SA-3.0" - copyright: "Composer: Georg Friedrich Händel; Performed by: MIT Concert Choir; Directed by William C. Cutter; + cropped and mixed from stereo to mono" + copyright: "Composer: Georg Friedrich Händel; Performed by: MIT Concert Choir; Directed by William C. Cutter; Cropped and mixed from stereo to mono." source: "https://en.wikipedia.org/wiki/File:Handel_-_messiah_-_44_hallelujah.ogg" - files: ["fence_rattle1.ogg", "fence_rattle2.ogg", "fence_rattle3.ogg"] license: "CC0-1.0" - copyright: "Taken from MWsfx via freesound.org and cropped + mixed from stereo to mono." + copyright: '"Chain Link Fence - Impacts.wav" by MWsfx of Freesound.org. Cropped and mixed from stereo to mono.' source: "https://freesound.org/people/MWsfx/sounds/575388/" - files: ["falling.ogg"] license: "CC0-1.0" - copyright: "Taken from MATRIXXX_ via freesound.org and mixed from stereo to mono." + copyright: '"Retro, Drop 02.wav" by MATRIXXX_ of Freesound.org. Mixed from stereo to mono.' source: "https://freesound.org/people/MATRIXXX_/sounds/415990/" - files: ["break_stone.ogg"] license: "CC-BY-SA-3.0" - copyright: "Taken from tgstation" + copyright: "tgstation" source: "https://github.com/tgstation/tgstation/blob/e3a835b96043fad1269ee7b0c3a6cb340a466f3a/sound/effects/break_stone.ogg" - files: ["waterswirl.ogg"] license: "CC-BY-4.0" - copyright: "Taken from InspectorJ via freesound.org and mixed from stereo to mono." + copyright: '"Water Swirl, Small, 16.wav" by InspectorJ (www.jshaw.co.uk) of Freesound.org. Mixed from stereo to mono.' source: "https://freesound.org/people/InspectorJ/sounds/398703/" - files: ["pop_high.ogg"] license: "CC-BY-4.0" - copyright: "Taken from InspectorJ via freesound.org and mixed from stereo to mono." + copyright: '"Pop, High, A (H1).wav" by InspectorJ (www.jshaw.co.uk) of Freesound.org. Mixed from stereo to mono.' source: "https://freesound.org/people/InspectorJ/sounds/411642/" - files: ["sizzle.ogg"] license: "CC-BY-SA-3.0" copyright: "Recorded by deltanedas for SS14" - source: "https://github.com/deltanedas" + source: "https://github.com/space-wizards/space-station-14/commit/0a4c16ca21e266c24243119d944cbff8084829dd" + +- files: ["drop.ogg"] + copyright: '"FS Concrete Soldier Crouch N02" in "Soldier Footsteps" by Levan Nadashvili of SONNISS.com. See https://sonniss.com/gdc-bundle-license/ for license. Mixed from stereo to mono.' + license: Custom + source: https://gdc.sonniss.com + +- files: ["wall_bonk.ogg"] + copyright: '"Nuts and Bolts" by 344 Audio of SONNISS.com. See https://sonniss.com/gdc-bundle-license/ for license.' + license: Custom + source: https://gdc.sonniss.com + +- files: ["pop.ogg"] + copyright: '"pop.ogg" by mirrorcult of GitHub.com' + license: "CC0-1.0" + source: "https://github.com/space-wizards/space-station-14/blob/9168fc629c555b8c395d695d291faea1eeda1db6/Resources/Audio/Effects/pop.ogg" + +- files: + - demon_attack1.ogg + - demon_consume.ogg + - demon_dies.ogg + - bite.ogg + copyright: '"demon_attack1.ogg", "demon_consume.ogg", "demon_dies.ogg", and "bite.ogg" by /tg/station' + license: "CC-BY-SA-3.0" + source: "https://github.com/tgstation/tgstation/commit/d4f678a1772007ff8d7eddd21cf7218c8e07bfc0" + +- files: ["bone_rattle.ogg"] + copyright: '"Rattling Bones.wav" by spookymodem of Freesound.org' + license: "CC0-1.0" + source: "https://freesound.org/people/spookymodem/sounds/202102/" + +- files: ["minibombcountdown.ogg"] + copyright: '"10 Second Countdown.wav" by Thomas Evdokimoff of Freesound.org' + license: "CC-BY-4.0" + source: "https://freesound.org/people/thomas_evdokimoff/sounds/202193/" + +- files: ["hydraulic_press.ogg"] + copyright: 'Created by chainsaw_dinner_party on Freesound.org. Extended and converted to MONO and .ogg by EmoGarbage404 (github)' + license: "CC0-1.0" + source: "https://freesound.org/people/chainsaw_dinner_party/sounds/403075/" + +- files: ["metal_crunch.ogg"] + copyright: 'Created by PNMCarrieRailfan on Freesound.org. Edited and exported to .ogg by EmoGarbage404 (github)' + license: "CC-BY-NC-4.0" + source: "https://freesound.org/people/PNMCarrieRailfan/sounds/682439/" + +- files: ["voteding.ogg"] + copyright: '"Bike, Bell Ding, Single, 01-01.wav" byInspectorJ (www.jshaw.co.uk) of Freesound.org; The volume has been reduced.' + license: "CC-BY-4.0" + source: "https://freesound.org/people/InspectorJ/sounds/484344/" + +- files: [smoke.ogg] + copyright: '"smoke.ogg" by /tg/station' + license: CC-BY-SA-3.0 + source: https://github.com/tgstation/tgstation/blob/a5d362ce84e4f0c61026236d5ec84d3c81553664/sound/effects/smoke.ogg + +- files: [double_beep.ogg] + copyright: '"Double Beep" by andersmmg of Freesound.org' + license: CC-BY-4.0 + source: https://freesound.org/people/andersmmg/sounds/511492/ + +- files: [saw.ogg] + copyright: '"01-1 Angle Grinder.wav" by domiscz of Freesound.org' + license: CC0-1.0 + source: https://freesound.org/people/domiscz/sounds/461728/ + +- files: [poster_being_set.ogg] + copyright: '"poster_being_created.ogg" by /tg/station' + license: CC-BY-SA-3.0 + source: https://github.com/tgstation/tgstation/blob/2834383245d2129a106acef3afd17b81e1e64777/sound/items/poster_being_created.ogg + +- files: [poster_broken.ogg] + copyright: '"poster_ripped.ogg" by /tg/station' + license: CC-BY-SA-3.0 + source: https://github.com/tgstation/tgstation/blob/2834383245d2129a106acef3afd17b81e1e64777/sound/items/poster_ripped.ogg + +- files: [internals.ogg] + copyright: '"internals.ogg" by CEV-Eris. Edited by metalgearsloth to amplify volume.' + license: CC-BY-SA-3.0 + source: https://github.com/discordia-space/CEV-Eris/blob/f02a6e2c29b41c28b1cf4d8f897cb8f090f43552/sound/effects/internals.ogg + +- files: [holy.ogg] + copyright: '"AHHHH" by random_intruder of Freesound.org. Edited' + license: CC0-1.0 + source: https://freesound.org/people/random_intruder/sounds/392172/ + +- files: [fire.ogg] + copyright: '"Cardboard burning 2" by raremess of Freesound.org. Edited' + license: CC0-1.0 + source: https://freesound.org/people/raremess/sounds/222557/ + +- files: [hith_kick.ogg] + copyright: Taira Komori. See https://taira-komori.jpn.org/freesounden.html for license. + license: Custom + source: https://taira-komori.jpn.org/freesounden.html + +- files: [adminhelp.ogg] + copyright: '"jumps from reason.3.Rev.wav" by martian of Freesound.org. Modified by reversing and altering volume.' + license: CC0-1.0 + source: https://freesound.org/people/martian/sounds/19261/ + +- files: ["explosion_small1.ogg", "explosion_small2.ogg", "explosion_small3.ogg", "explosion1.ogg", "explosion2.ogg", "explosion3.ogg", "explosion4.ogg", "explosion5.ogg", "explosion6.ogg", "explosionfar.ogg", "explosionsmallfar.ogg"] + copyright: "vgstation at c5edbfd7179288080f081e2b8ac2496b7e4455db" + license: CC-BY-SA-3.0 + source: https://github.com/vgstation-coders/vgstation13/tree/c5edbfd7179288080f081e2b8ac2496b7e4455db/sound/effects diff --git a/Resources/Audio/Effects/explosion_small1.ogg b/Resources/Audio/Effects/explosion_small1.ogg new file mode 100644 index 0000000000..929c318696 Binary files /dev/null and b/Resources/Audio/Effects/explosion_small1.ogg differ diff --git a/Resources/Audio/Effects/explosion_small2.ogg b/Resources/Audio/Effects/explosion_small2.ogg new file mode 100644 index 0000000000..018fe3da91 Binary files /dev/null and b/Resources/Audio/Effects/explosion_small2.ogg differ diff --git a/Resources/Audio/Effects/explosion_small3.ogg b/Resources/Audio/Effects/explosion_small3.ogg new file mode 100644 index 0000000000..154d695f71 Binary files /dev/null and b/Resources/Audio/Effects/explosion_small3.ogg differ diff --git a/Resources/Audio/Effects/explosionfar.ogg b/Resources/Audio/Effects/explosionfar.ogg new file mode 100644 index 0000000000..aecdd0aab1 Binary files /dev/null and b/Resources/Audio/Effects/explosionfar.ogg differ diff --git a/Resources/Audio/Effects/explosionsmallfar.ogg b/Resources/Audio/Effects/explosionsmallfar.ogg new file mode 100644 index 0000000000..1fa4039758 Binary files /dev/null and b/Resources/Audio/Effects/explosionsmallfar.ogg differ diff --git a/Resources/Audio/Effects/hallelujah.ogg b/Resources/Audio/Effects/hallelujah.ogg index 188a0b861f..3664f4324e 100644 Binary files a/Resources/Audio/Effects/hallelujah.ogg and b/Resources/Audio/Effects/hallelujah.ogg differ diff --git a/Resources/Audio/Effects/hydraulic_press.ogg b/Resources/Audio/Effects/hydraulic_press.ogg new file mode 100644 index 0000000000..0158384600 Binary files /dev/null and b/Resources/Audio/Effects/hydraulic_press.ogg differ diff --git a/Resources/Audio/Effects/licenses.txt b/Resources/Audio/Effects/licenses.txt deleted file mode 100644 index 719cc77cd1..0000000000 --- a/Resources/Audio/Effects/licenses.txt +++ /dev/null @@ -1,58 +0,0 @@ -adminhelp.ogg taken from https://github.com/tgstation/tgstation/blob/d775e1ac804eb9d0259573f5f29a18d320c97ef3/sound/effects/adminhelp.ogg - (available in master, therefore see master license: "All assets including icons and sound are under a Creative Commons 3.0 BY-SA license unless otherwise indicated.") - "Changed the adminhelpsound to some creative commons sound I pinched. Until somebody can get a better one. I'm sick of MAAAAAAAAOOOOOOW." - Actual source is https://freesound.org/people/martian/sounds/19261/ (CC0) - The sound had been reversed and the volume altered. - -hit_kick.ogg is made by Taira Komori -(https://taira-komori.jpn.org/freesounden.html) - -fire.ogg taken and edited from https://freesound.org/people/raremess/sounds/222557/ - -holy.ogg taken from https://freesound.org/people/random_intruder/sounds/392172/ and edited - -internals.ogg taken from CEV-Eris at https://github.com/discordia-space/CEV-Eris/blob/f02a6e2c29b41c28b1cf4d8f897cb8f090f43552/sound/effects/internals.ogg - Under license: CC BY-SA 3.0. Edited by metalgearsloth to amplify the volume - -poster_broken.ogg taken from https://github.com/tgstation/tgstation/blob/2834383245d2129a106acef3afd17b81e1e64777/sound/items/poster_ripped.ogg - -poster_being_set.ogg taken from https://github.com/tgstation/tgstation/blob/2834383245d2129a106acef3afd17b81e1e64777/sound/items/poster_ripped.ogg - -saw.ogg taken from https://freesound.org/people/domiscz/sounds/461728/ and clipped - CC0-1.0 -*It's actually an angle grinder - -double_beep.ogg taken from https://freesound.org/people/andersmmg/sounds/511492/ under CC BY 4.0 - -smoke.ogg taken from https://github.com/tgstation/tgstation/blob/a5d362ce84e4f0c61026236d5ec84d3c81553664/sound/effects/smoke.ogg - -voteding.ogg taken from "Bike, Bell Ding, Single, 01-01.wav" by InspectorJ (www.jshaw.co.uk) of Freesound.org at https://freesound.org/people/InspectorJ/sounds/484344/ under CC BY 3.0. The volume has been reduced. - -minibombcountdown.ogg taken from Thomas Evdokimoff at https://freesound.org/people/thomas_evdokimoff/sounds/202193/ - -bite.ogg take from https://github.com/tgstation/tgstation/commit/d4f678a1772007ff8d7eddd21cf7218c8e07bfc0 - -bone_rattle.ogg licensed under CC0 1.0 and taken from spookymodem at https://freesound.org/people/spookymodem/sounds/202102/ - -The following sounds are taken from TGstation github (licensed under CC by 3.0): - - demon_attack1.ogg: taken at https://github.com/tgstation/tgstation/commit/d4f678a1772007ff8d7eddd21cf7218c8e07bfc0 - - demon_consume.ogg: taken at https://github.com/tgstation/tgstation/commit/d4f678a1772007ff8d7eddd21cf7218c8e07bfc0 - - demon_dies.ogg: taken at https://github.com/tgstation/tgstation/commit/d4f678a1772007ff8d7eddd21cf7218c8e07bfc0 - -pop.ogg licensed under CC0 1.0 by mirrorcult - -box_deploy.ogg and chime.ogg taken from Citadel Station at commit: https://github.com/Citadel-Station-13/Citadel-Station-13/commit/b604390f334343be80045d955705cf48ee056c61 - - - - files: - - "drop.ogg" - license: "Royalty free" - copyright: "Sonniss.com - GDC 2016 - Game Audio Bundle - Levan Nadashvili - Soldier Footsteps - FS Concrete Soldier Crouch N02, mixed from stereo to mono" - -- files: - - "wall_bonk.ogg" - license: "Royalty free" - copyright: "Sonniss.com - GDC 2023 - Game Audio Bundle - 344 Audio - Nuts and Bolts" - -# Do not add to this list, I only did the above because yaml scheme validator doesn't like custom licenses. diff --git a/Resources/Audio/Effects/metal_crunch.ogg b/Resources/Audio/Effects/metal_crunch.ogg new file mode 100644 index 0000000000..a0973b765a Binary files /dev/null and b/Resources/Audio/Effects/metal_crunch.ogg differ diff --git a/Resources/Audio/Effects/metalbreak.ogg b/Resources/Audio/Effects/metalbreak.ogg index 0b447cc699..0864824075 100644 Binary files a/Resources/Audio/Effects/metalbreak.ogg and b/Resources/Audio/Effects/metalbreak.ogg differ diff --git a/Resources/Audio/Items/Handcuffs/attributions.yml b/Resources/Audio/Items/Handcuffs/attributions.yml new file mode 100644 index 0000000000..7ba93e57cd --- /dev/null +++ b/Resources/Audio/Items/Handcuffs/attributions.yml @@ -0,0 +1,4 @@ +- files: ["ziptie_end.ogg"] + license: "CC-BY-3.0" + copyright: "Taken from cable tie.wav by THE_bizniss on Freesound.org" + source: "https://freesound.org/people/THE_bizniss/sounds/39318/" \ No newline at end of file diff --git a/Resources/Audio/Items/Handcuffs/license.txt b/Resources/Audio/Items/Handcuffs/license.txt deleted file mode 100644 index 92b4438027..0000000000 --- a/Resources/Audio/Items/Handcuffs/license.txt +++ /dev/null @@ -1 +0,0 @@ -ziptie_end.ogg taken from "cable tie.wav" by THE_bizniss of Freesound.org at https://freesound.org/people/THE_bizniss/sounds/39318/ under CC BY 3.0. \ No newline at end of file diff --git a/Resources/Audio/Items/Medical/attributions.yml b/Resources/Audio/Items/Medical/attributions.yml new file mode 100644 index 0000000000..a6b352ef22 --- /dev/null +++ b/Resources/Audio/Items/Medical/attributions.yml @@ -0,0 +1,4 @@ +- files: ["healthscanner.ogg"] + license: "CC-BY-4.0" + copyright: "Taken from FM Synthesis on freesound.org" + source: "https://freesound.org/people/FreqMan/sounds/32683/" \ No newline at end of file diff --git a/Resources/Audio/Items/Medical/license.txt b/Resources/Audio/Items/Medical/license.txt deleted file mode 100644 index e9385756eb..0000000000 --- a/Resources/Audio/Items/Medical/license.txt +++ /dev/null @@ -1,11 +0,0 @@ -The following sounds were used from freesound: - -herbertboland - heavyskirtmovement.wav - CC BY 3.0 -vinrax - cloth-sounds.mp3 - CC BY-NC 3.0 -lordvanye - skintouching.wav - CC0 1.0 -FM Synthesis - healthscanner.ogg - CC BY 4.0 - -Additional sound effects from https://www.zapsplat.com - -foley-cloth-denim-rip-003.mp3 - -zapsplat_food_bottle_golden_syrup_cap_open_then_close.mp3 diff --git a/Resources/Audio/Items/Toys/attributions.yml b/Resources/Audio/Items/Toys/attributions.yml new file mode 100644 index 0000000000..4f9b558614 --- /dev/null +++ b/Resources/Audio/Items/Toys/attributions.yml @@ -0,0 +1,69 @@ +- files: ["beep.ogg"] + license: "CC0-1.0" + copyright: "Created by Pól, converted to OGG and Mono by EmoGarbage" + source: "https://freesound.org/people/P%C3%B3l/sounds/385927/" + +- files: ["locator_beep.ogg"] + license: "CC0-1.0" + copyright: "Created by MATRIXXX_, converted to OGG, shortened, sped up, and pitched up by EmoGarbage404 (github)" + source: "https://freesound.org/people/MATRIXXX_/sounds/657947/" + +- files: ["trayhit1.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Time immemorial" + source: "https://github.com/tgstation/tgstation/blob/172b533d0257fcc1f8a05406f1c9fad514c14d88/sound/items/trayhit1.ogg" + +- files: ["trayhit2.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Time immemorial" + source: "https://github.com/tgstation/tgstation/blob/172b533d0257fcc1f8a05406f1c9fad514c14d88/sound/items/trayhit2.ogg" + +- files: ["rped.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Created by Cuboos" + source: "https://github.com/tgstation/tgstation/blob/172b533d0257fcc1f8a05406f1c9fad514c14d88/sound/items/rped.ogg" + +- files: ["scary_horn.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Made by theOperand (github) for tgstation, modified by brainfood1183 (github) for ss14" + source: "https://github.com/tgstation/tgstation/blob/9a378933d2cfcb2c6692f5c60fbce979ac4e47c5/sound/spookoween/scary_horn.ogg" + +- files: ["airhorn.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from tgstation, modified by brainfood1183 (github) for ss14" + source: "https://github.com/tgstation/tgstation/blob/529d97cb1c105bcd548e95a9c9070bbf5253dd81/sound/items/AirHorn.ogg" + +- files: ["desk_bell_ring.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Created by SamKolber, shortened and converted to OGG and mono" + source: "https://freesound.org/people/SamKolber/sounds/210022/" + +- files: ["sitcom_laugh.ogg"] + license: "CC0-1.0" + copyright: "Created by Kinoton, clipped by github Henri215, turned into mono by github lapatison" + source: "https://freesound.org/people/Kinoton/sounds/371562/" + +- files: ["sitcom_laugh2.ogg"] + license: "CC0-1.0" + copyright: "Created by mrrap4food. clipped by Henri215" + source: "https://freesound.org/people/mrrap4food/sounds/618972/" + +- files: ["skates"] + license: "CC-BY-4.0" + copyright: "Created by PeteBarry, shortened by brainfood1183 (github)" + source: "https://freesound.org/people/PeteBarry/sounds/464857/" + +- files: ["weh.ogg", "muffled_weh.ogg"] + license: "CC0-1.0" + copyright: "Created by BlackMajor (github) for ss14, muffled_weh.ogg modified from weh.ogg by Slorkito (ss14 discord)" + source: "https://github.com/space-wizards/space-station-14/blob/master/Resources/Audio/Items/Toys/weh.ogg" + +- files: ["skub.ogg", "skub3.ogg"] + license: "CC0-1.0" + copyright: "Created by BlackMajor (github) for ss14" + source: "https://github.com/space-wizards/space-station-14/blob/master/Resources/Audio/Items/Toys/skub.ogg" + +- files: ["skub2.ogg"] + license: "CC0-1.0" + copyright: "Created by unusualcrow for ss14" + source: "https://github.com/space-wizards/space-station-14/blob/master/Resources/Audio/Items/Toys/skub2.ogg" diff --git a/Resources/Audio/Items/Toys/licensing.txt b/Resources/Audio/Items/Toys/licensing.txt deleted file mode 100644 index 8b68bfa553..0000000000 --- a/Resources/Audio/Items/Toys/licensing.txt +++ /dev/null @@ -1,4 +0,0 @@ -"weh" and "muffled_weh" are licensed under CC0. -"skub" is licensed under CC0. -"sitcom_laugh" taken from Kinoton at https://freesound.org/people/Kinoton/sounds/371562/ under CC0 1.0, clipped by github Henri215, turned into mono by github lapatison -"sitcom_laugh2" taken from mrrap4food at https://freesound.org/people/mrrap4food/sounds/618972/ under CC0 1.0, clipped by Henri215 diff --git a/Resources/Audio/Items/Toys/sitcom_laugh.ogg b/Resources/Audio/Items/Toys/sitcom_laugh.ogg index 381e39da8b..45746ffe18 100644 Binary files a/Resources/Audio/Items/Toys/sitcom_laugh.ogg and b/Resources/Audio/Items/Toys/sitcom_laugh.ogg differ diff --git a/Resources/Audio/Items/Toys/sitcom_laugh2.ogg b/Resources/Audio/Items/Toys/sitcom_laugh2.ogg index af35ec4d58..2880f2f6ae 100644 Binary files a/Resources/Audio/Items/Toys/sitcom_laugh2.ogg and b/Resources/Audio/Items/Toys/sitcom_laugh2.ogg differ diff --git a/Resources/Audio/Items/Toys/skates.ogg b/Resources/Audio/Items/Toys/skates.ogg new file mode 100644 index 0000000000..9ae127404a Binary files /dev/null and b/Resources/Audio/Items/Toys/skates.ogg differ diff --git a/Resources/Audio/Items/attributions.yml b/Resources/Audio/Items/attributions.yml index b69704ce69..7e186cc076 100644 --- a/Resources/Audio/Items/attributions.yml +++ b/Resources/Audio/Items/attributions.yml @@ -66,4 +66,24 @@ - files: ["bow_pull.ogg"] license: "CC-BY-3.0" copyright: "User jzdnvdoosj on freesound.org. Converted to ogg by mirrorcult" - source: "https://freesound.org/people/jzdnvdoosj/sounds/626262/" \ No newline at end of file + source: "https://freesound.org/people/jzdnvdoosj/sounds/626262/" + +- files: ["candle_blowing.ogg"] + license: "CC-BY-NC-3.0" + copyright: "Created by Bee09, converted to OGG, cropped and converted to mono by TheShuEd" + source: "https://freesound.org/people/Bee09/sounds/326561/" + +- files: ["pill.ogg"] + license: "CC-BY-NC-3.0" + copyright: "Combined from '437480__ruanza__swallowing.wav' by user RuanZA and part from '330657__diniunicorn__popping-pills.wav' by user diniunicorn. Sources are https://freesound.org/people/RuanZA/sounds/437480/ and https://freesound.org/people/diniunicorn/sounds/330657/ respectively" + source: "https://freesound.org/" + +- files: ["ring.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from /tg/station" + source: "https://github.com/tgstation/tgstation/commit/c61c452d78425d89920b41ed5f95fd190e733a3c" + +- files: ["scissors.ogg"] + license: "CC0-1.0" + copyright: "User Hanbaal on freesound.org. Converted to ogg by TheShuEd" + source: "https://freesound.org/people/Hanbaal/sounds/178669/" \ No newline at end of file diff --git a/Resources/Audio/Items/candle_blowing.ogg b/Resources/Audio/Items/candle_blowing.ogg new file mode 100644 index 0000000000..18d23323aa Binary files /dev/null and b/Resources/Audio/Items/candle_blowing.ogg differ diff --git a/Resources/Audio/Items/license.txt b/Resources/Audio/Items/license.txt deleted file mode 100644 index d23148322c..0000000000 --- a/Resources/Audio/Items/license.txt +++ /dev/null @@ -1,2 +0,0 @@ -pill.ogg contains audio from '437480__ruanza__swallowing.wav' by user RuanZA, used under CC BY-NC 3.0 (https://freesound.org/people/RuanZA/sounds/437480/), as well as part of '330657__diniunicorn__popping-pills.wav' by user diniunicorn, used under CC0 1.0 (https://freesound.org/people/diniunicorn/sounds/330657/). ring.ogg used under CC-BY-SA-3.0, taken from /tg/station commit https://github.com/tgstation/tgstation/commit/c61c452d78425d89920b41ed5f95fd190e733a3c. - diff --git a/Resources/Audio/Items/scissors.ogg b/Resources/Audio/Items/scissors.ogg new file mode 100644 index 0000000000..1031c426ac Binary files /dev/null and b/Resources/Audio/Items/scissors.ogg differ diff --git a/Resources/Audio/Machines/anomaly_sync_connect.ogg b/Resources/Audio/Machines/anomaly_sync_connect.ogg new file mode 100644 index 0000000000..c718eaf459 Binary files /dev/null and b/Resources/Audio/Machines/anomaly_sync_connect.ogg differ diff --git a/Resources/Audio/Machines/attributions.yml b/Resources/Audio/Machines/attributions.yml index bbf4ea9ac0..c7859e9ba1 100644 --- a/Resources/Audio/Machines/attributions.yml +++ b/Resources/Audio/Machines/attributions.yml @@ -8,6 +8,16 @@ copyright: "Created by dotY21." source: "https://freesound.org/people/dotY21/sounds/330726/" +- files: ["buzz_loop.ogg"] + license: "CC0-1.0" + copyright: "Created by Duasun, converted to OGG by EmoGarbage404 (github)." + source: "https://freesound.org/people/Duasun/sounds/712127/" + +- files: ["spinning.ogg"] + license: "CC0-1.0" + copyright: "Created by MrLindstrom, modified and converted to OGG by EmoGarbage404 (github)." + source: "https://freesound.org/people/MrLindstrom/sounds/543964/" + - files: ["vending_restock_start.ogg"] license: "CC0-1.0" copyright: "https://freesound.org/people/Defaultv/" @@ -46,4 +56,94 @@ - files: ["warning_buzzer.ogg"] license: "CC-BY-SA-3.0" copyright: "Taken from TG station." - source: "https://github.com/tgstation/tgstation/blob/d4f678a1772007ff8d7eddd21cf7218c8e07bfc0/sound/machines/warning-buzzer.ogg" \ No newline at end of file + source: "https://github.com/tgstation/tgstation/blob/d4f678a1772007ff8d7eddd21cf7218c8e07bfc0/sound/machines/warning-buzzer.ogg" + +- files: ["anomaly_sync_connect.ogg"] + license: "CC0-1.0" + copyright: "Created by newagesoup, convert to ogg mono by TheShuEd" + source: "https://freesound.org/people/newagesoup/sounds/341172/" + +- files: ["circuitprinter.ogg"] + license: "CC0-1.0" + copyright: "OroborosNZ on freesound.org" + source: "https://freesound.org/people/OroborosNZ/sounds/273649/" + +- files: ["circuitprinter.ogg"] + license: "CC-BY-NC-4.0" + copyright: "170048@virtualwindow.co.za on freesound.org" + source: "https://freesound.org/people/170048@virtualwindow.co.za/sounds/408041/" + +- files: ["diagnoser_printing.ogg"] + license: "CC0-1.0" + copyright: "RobSp1derp1g on freesound.org" + source: "https://freesound.org/people/RobSp1derp1g/sounds/615419/" + +- files: ["genetics.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Citadel Station 13" + source: "https://github.com/Citadel-Station-13/Citadel-Station-13-RP/blob/5307e56a25a53fe1b4d34e7f1401ae8dfaa44922/sound/effects/genetics.ogg" + +- files: ["uniformprinter.ogg"] + license: "CC0-1.0" + copyright: "sukaton on freesound.org" + source: "https://freesound.org/people/sukaton/sounds/60640/" + +- files: ["vaccinator_running.ogg"] + license: "CC0-1.0" + copyright: "Rutger Muller www.rutgermuller.nl" + source: "https://freesound.org/people/RutgerMuller/sounds/365413/" + +- files: ["vending_jingle.ogg"] + license: "CC-BY-3.0" + copyright: "hubismal on GitHub" + source: "https://github.com/space-wizards/space-station-14/commit/3421e4f4de2613df1e92a4169a778335bc9faac4" + +- files: ["lightswitch.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Skyrat-SS13" + source: "https://github.com/Skyrat-SS13/Skyrat-tg/blob/3f6099bbc3c2afdc609bf1991c2f06297a0f13c2/modular_skyrat/modules/aesthetics/lightswitch/sound/lightswitch.ogg" + +- files: ["reclaimer_startup.ogg"] + license: "CC0-1.0" + copyright: "cmorris035" + source: "https://freesound.org/people/cmorris035/sounds/319152/" + +- files: ["airlock_open.ogg", "airlock_close.ogg"] + license: "CC-BY-SA-3.0" + copyright: "/tg/station" + source: "https://github.com/tgstation/tgstation/tree/5f5002b21253354c20ea224be3f604d79299b37e/sound/machines" + +- files: ["machine_vend_hot_drink.ogg"] + license: "CC0-1.0" + copyright: "waxsocks on freesound.org" + source: "https://freesound.org/people/waxsocks/sounds/402603/" + +- files: ["scan_loop.ogg"] + license: "CC0-1.0" + copyright: "steaq on freesound.org" + source: "https://freesound.org/people/steaq/sounds/509249/" + +- files: ["scan_finish.ogg"] + license: "CC0-1.0" + copyright: "pan14 on freesound.org" + source: "https://freesound.org/people/steaq/sounds/509249/" + +- files: ["printer.ogg"] + license: "CC-BY-SA-3.0" + copyright: "/tg/station" + source: "https://github.com/tgstation/tgstation/blob/31c5aaf4b885a50c9d5a0777e2647af64e7193bf/sound/machines/printer.ogg" + +- files: ["hight_tech_confirm.ogg"] + license: "CC-BY-SA-3.0" + copyright: "/tg/station" + source: "https://github.com/tgstation/tgstation/blob/14aa5d2d8efca6370778d730e36ffcf258b9352e/sound/machines/high_tech_confirm.ogg" + +- files: ["tray_eject.ogg"] + license: "CC-BY-SA-3.0" + copyright: "/tg/station" + source: "https://github.com/tgstation/tgstation/blob/3eeba3899f22638595333c63b7b7433001f91bb2/sound/machines/eject.ogg" + +- files: ["scanning.ogg"] + license: "CC0-1.0" + copyright: "Samuel Gremaud on freesound.org" + source: "https://freesound.org/people/SamuelGremaud/sounds/455375/" diff --git a/Resources/Audio/Machines/buzz_loop.ogg b/Resources/Audio/Machines/buzz_loop.ogg new file mode 100644 index 0000000000..5893b2aac1 Binary files /dev/null and b/Resources/Audio/Machines/buzz_loop.ogg differ diff --git a/Resources/Audio/Machines/license.txt b/Resources/Audio/Machines/license.txt deleted file mode 100644 index 6a51ade8a9..0000000000 --- a/Resources/Audio/Machines/license.txt +++ /dev/null @@ -1,31 +0,0 @@ -circuitprinter.ogg taken from https://freesound.org/people/OroborosNZ/sounds/273649/ and https://freesound.org/people/170048@virtualwindow.co.za/sounds/408041/ and edited - -diagnoser_printing.ogg taken from https://freesound.org/people/RobSp1derp1g/sounds/615419/ and edited - -genetics.ogg taken from https://github.com/Citadel-Station-13/Citadel-Station-13-RP/blob/5307e56a25a53fe1b4d34e7f1401ae8dfaa44922/sound/effects/genetics.ogg under CC BY-SA 3.0 - -uniformprinter.ogg taken from https://freesound.org/people/sukaton/sounds/60640/ and edited - -vaccinator_running.ogg taken from https://freesound.org/people/RutgerMuller/sounds/365413/ and edited - -vending_jingle.ogg made by github.com/hubismal licensed under CC-BY-3.0 - -lightswitch.ogg taken from https://github.com/Skyrat-SS13/Skyrat-tg/blob/3f6099bbc3c2afdc609bf1991c2f06297a0f13c2/modular_skyrat/modules/aesthetics/lightswitch/sound/lightswitch.ogg under CC-BY-SA 3.0 - -reclaimer_startup.ogg - https://freesound.org/people/cmorris035/sounds/319152/, Woodchipper Start (heavy machine) 02.wav CC0 (by cmorris035) - -airlock_open.ogg and airlock_close.ogg are from: https://github.com/tgstation/tgstation/tree/5f5002b21253354c20ea224be3f604d79299b37e/sound/machines - -machine_vend_hot_drink.ogg original from https://freesound.org/people/waxsocks/sounds/402603/ CC0 (by waxsocks) and edited - -scan_loop.ogg from https://freesound.org/people/steaq/sounds/509249/ CC-0 by steaq - -scan_finish.ogg from https://freesound.org/people/pan14/sounds/263133/ CC-0 by pan14 - -printer.ogg from https://github.com/tgstation/tgstation/blob/31c5aaf4b885a50c9d5a0777e2647af64e7193bf/sound/machines/printer.ogg - -high_tech_confirm.ogg from https://github.com/tgstation/tgstation/blob/14aa5d2d8efca6370778d730e36ffcf258b9352e/sound/machines/high_tech_confirm.ogg - -tray_eject.ogg from https://github.com/tgstation/tgstation/blob/3eeba3899f22638595333c63b7b7433001f91bb2/sound/machines/eject.ogg - -scanning.ogg from https://freesound.org/people/SamuelGremaud/sounds/455375/ and edited \ No newline at end of file diff --git a/Resources/Audio/Machines/spinning.ogg b/Resources/Audio/Machines/spinning.ogg new file mode 100644 index 0000000000..e85d46f07d Binary files /dev/null and b/Resources/Audio/Machines/spinning.ogg differ diff --git a/Resources/Audio/Magic/attributions.yml b/Resources/Audio/Magic/attributions.yml new file mode 100644 index 0000000000..9efaf8ff91 --- /dev/null +++ b/Resources/Audio/Magic/attributions.yml @@ -0,0 +1,18 @@ +- files: [fireball.ogg] + copyright: '"fireball.ogg" by /tg/station' + license: CC-BY-SA-3.0 + source: https://github.com/tgstation/tgstation/commit/906fb0682bab6a0975b45036001c54f021f58ae7 + +- files: [disintegrate.ogg] + copyright: '"disintegrate.ogg" by /tg/station' + license: CC-BY-SA-3.0 + source: https://github.com/tgstation/tgstation/commit/6fde7a49fcd56d6edb844cd31a04ce026065de8b + +- files: + - forcewall.ogg + - knock.ogg + - blink.ogg + copyright: '"ForceWall.ogg", "Knock.ogg", and "blink.ogg" by Citadel Station 13' + license: CC-BY-SA-3.0 + source: https://github.com/Citadel-Station-13/Citadel-Station-13/commit/35a1723e98a60f375df590ca572cc90f1bb80bd5 + diff --git a/Resources/Audio/Magic/licenses.txt b/Resources/Audio/Magic/licenses.txt deleted file mode 100644 index c8e93f558b..0000000000 --- a/Resources/Audio/Magic/licenses.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://github.com/Citadel-Station-13/Citadel-Station-13/blob/master/sound/magic/ForceWall.ogg -https://github.com/Citadel-Station-13/Citadel-Station-13/blob/master/sound/magic/blink.ogg -https://github.com/Citadel-Station-13/Citadel-Station-13/blob/master/sound/magic/Knock.ogg - -fireball.ogg taken from /tg/station at https://github.com/tgstation/tgstation/commit/906fb0682bab6a0975b45036001c54f021f58ae7 -disintegrate.ogg from /tg/station at https://github.com/tgstation/tgstation/commit/6fde7a49fcd56d6edb844cd31a04ce026065de8b - -copyright: CC BY-SA 3.0 diff --git a/Resources/Audio/Misc/adminlarm.ogg b/Resources/Audio/Misc/adminlarm.ogg new file mode 100644 index 0000000000..7c75e20bdd Binary files /dev/null and b/Resources/Audio/Misc/adminlarm.ogg differ diff --git a/Resources/Audio/Misc/attributions.yml b/Resources/Audio/Misc/attributions.yml index fc70e1a9ca..29cab4382a 100644 --- a/Resources/Audio/Misc/attributions.yml +++ b/Resources/Audio/Misc/attributions.yml @@ -7,3 +7,28 @@ license: "CC-BY-SA-3.0" copyright: "Taken from TG station." source: "https://github.com/tgstation/tgstation/blob/b02b93ce2ab891164511a973493cdf951b4120f7/sound/effects/ninja_greeting.ogg" + +- files: ["narsie_rises.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from TG station." + source: "https://github.com/tgstation/tgstation/blob/b44fcdedfb7c7d8425bd75b9caf71644a86375d1/sound/creatures/narsie_rises.ogg" + +- files: ["epsilon.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Made by dj-34 (https://github.com/dj-34)" + source: "https://github.com/ss220-space/Paradise/blob/05043bcfb35c2e7bcf1efbdbfbf976e1a2504bc2/sound/effects/epsilon.ogg" + +- files: ["siren.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from Parsdise SS13" + source: "https://github.com/ParadiseSS13/Paradise/blob/master/sound/effects/new_siren.ogg" + +- files: ["redalert.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from Citadel Station 13" + source: "https://github.com/Skyrat-SS13/Skyrat13/commit/2d4f2d1b489590b559e4073f41b126cef56f4c50" + +- files: ["bluealert.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from Citadel Station 13" + source: "https://github.com/Skyrat-SS13/Skyrat13/commit/2d4f2d1b489590b559e4073f41b126cef56f4c50" diff --git a/Resources/Audio/Misc/license.txt b/Resources/Audio/Misc/license.txt deleted file mode 100644 index a4f5ac49e3..0000000000 --- a/Resources/Audio/Misc/license.txt +++ /dev/null @@ -1,7 +0,0 @@ -epsilon.ogg made by dj-34 (https://github.com/dj-34) taken from https://github.com/ss220-space/Paradise/blob/05043bcfb35c2e7bcf1efbdbfbf976e1a2504bc2/sound/effects/epsilon.ogg - -siren.ogg taken from https://github.com/ParadiseSS13/Paradise/blob/master/sound/effects/new_siren.ogg - -redalert.ogg was taken from: https://github.com/Skyrat-SS13/Skyrat13/commit/2d4f2d1b489590b559e4073f41b126cef56f4c50 - -bluealert.ogg was taken from: https://github.com/Skyrat-SS13/Skyrat13/commit/2d4f2d1b489590b559e4073f41b126cef56f4c50 \ No newline at end of file diff --git a/Resources/Audio/Misc/narsie_rises.ogg b/Resources/Audio/Misc/narsie_rises.ogg new file mode 100644 index 0000000000..ccd10cf115 Binary files /dev/null and b/Resources/Audio/Misc/narsie_rises.ogg differ diff --git a/Resources/Audio/Nyanotrasen/Items/attributions.yml b/Resources/Audio/Nyanotrasen/Items/attributions.yml new file mode 100644 index 0000000000..294cfe38bc --- /dev/null +++ b/Resources/Audio/Nyanotrasen/Items/attributions.yml @@ -0,0 +1,4 @@ +- files: ["shovel_dig.ogg"] + license: "CC-BY-3.0" + copyright: "https://freesound.org/people/cameronmusic/" + source: "https://freesound.org/people/cameronmusic/sounds/138411/" diff --git a/Resources/Audio/Nyanotrasen/Items/shovel_dig.ogg b/Resources/Audio/Nyanotrasen/Items/shovel_dig.ogg new file mode 100644 index 0000000000..16cf42eb9a Binary files /dev/null and b/Resources/Audio/Nyanotrasen/Items/shovel_dig.ogg differ diff --git a/Resources/Audio/Voice/Human/attributions.yml b/Resources/Audio/Voice/Human/attributions.yml index 42672b25ea..0f6f9af2a8 100644 --- a/Resources/Audio/Voice/Human/attributions.yml +++ b/Resources/Audio/Voice/Human/attributions.yml @@ -49,3 +49,66 @@ license: "CC-BY-NC-4.0" copyright: "Taken from https://freesound.org/. Convert from WAV to OGG, is divided into several parts." source: "https://freesound.org/people/Idalize/sounds/408211/" + +- files: + - femalescream_1.ogg + - femalescream_2.ogg + - femalescream_3.ogg + - femalescream_4.ogg + - femalescream_5.ogg + - malescream_1.ogg + - malescream_2.ogg + - malescream_3.ogg + - malescream_4.ogg + - malescream_5.ogg + - malescream_6.ogg + - manlaugh_1.ogg + - manlaugh_2.ogg + - wilhelm_scream.ogg + - womanlaugh.ogg + license: "CC-BY-SA-3.0" + copyright: "/tg/station" + source: "https://github.com/tgstation/tgstation/commit/3d049e69fe71a0be2133005e65ea469135d648c8" + +- files: ["female_cough_1.ogg"] + license: "CC0-1.0" + copyright: "Ashe Kirk" + source: "https://freesound.org/people/OwlStorm/sounds/151213/" + +- files: ["female_cough_2.ogg"] + license: "CC0-1.0" + copyright: "thatkellytrna on freesound.org" + source: "https://freesound.org/people/thatkellytrna/sounds/425777/" + +- files: ["male_cough_2.ogg"] + license: "CC0-1.0" + copyright: "Harris85 on freesound.org" + source: "https://freesound.org/people/Harris85/sounds/208761/" + +- files: ["female_sneeze_1.ogg"] + license: "CC0-1.0" + copyright: "sherby168 on freesound.org" + source: "https://freesound.org/people/sherby168/sounds/540771/" + +- files: ["male_sneeze_1.ogg"] + license: "CC-BY-4.0" + copyright: "InspectorJ (www.jshaw.co.uk) of Freesound.org" + source: "https://freesound.org/people/InspectorJ/sounds/352177/" + +- files: ["male_yawn_1.ogg"] + license: "CC-BY-4.0" + copyright: "ckvoiceover on freesound.org" + source: "https://freesound.org/people/ckvoiceover/sounds/401338/" + +- files: ["female_yawn_1.ogg"] + license: "CC0-1.0" + copyright: "Reitanna on freesound.org" + source: "https://freesound.org/people/Reitanna/sounds/252239/" + +- files: + - snore1.ogg + - snore2.ogg + - snore3.ogg + license: "CC0-1.0" + copyright: "mattyharm on freesound.org" + source: "https://freesound.org/people/mattyharm/sounds/432995/" diff --git a/Resources/Audio/Voice/Human/license.txt b/Resources/Audio/Voice/Human/license.txt index d24b2874e4..85f3faa394 100644 --- a/Resources/Audio/Voice/Human/license.txt +++ b/Resources/Audio/Voice/Human/license.txt @@ -1,25 +1 @@ -All below sounds taken from https://github.com/tgstation/tgstation/commit/3d049e69fe71a0be2133005e65ea469135d648c8 -femalescream_1 -femalescream_2 -femalescream_3 -femalescream_4 -femalescream_5 -malescream_1 -malescream_2 -malescream_3 -malescream_4 -malescream_5 -malescream_6 -manlaugh_1 -manlaugh_2 -wilhelm_scream -womanlaugh -female_cough_1.ogg taken from https://freesound.org/people/OwlStorm/sounds/151213/ -female_cough_2.ogg taken from https://freesound.org/people/thatkellytrna/sounds/425777/ and cropped male_cough_1.ogg taken from freesound (deleted user) -male_cough_2.ogg taken from https://freesound.org/people/Harris85/sounds/208761/ -female_sneeze_1.ogg taken from https://freesound.org/people/sherby168/sounds/540771/ -male_sneeze_1.ogg taken from https://freesound.org/people/InspectorJ/sounds/352177/ -male_yawn_1.ogg taken from https://freesound.org/people/ckvoiceover/sounds/401338/ user ckvoiceover CC-3.0 -female_yawn_1.ogg taken from https://freesound.org/people/Reitanna/sounds/252239/ user reitanna CC-0 -snore1, snore2, snore3.ogg taken from https://freesound.org/people/mattyharm/sounds/432995/ user mattyharm CC-0 diff --git a/Resources/Audio/Voice/Reptilian/attritbutions.yml b/Resources/Audio/Voice/Reptilian/attritbutions.yml new file mode 100644 index 0000000000..7e8b2a0ce3 --- /dev/null +++ b/Resources/Audio/Voice/Reptilian/attritbutions.yml @@ -0,0 +1,4 @@ +- files: [reptilian_scream.ogg] + copyright: '"scream_lizard.ogg" by Skyrat-SS13' + license: + source: https://github.com/Skyrat-SS13/Skyrat-tg/pull/892 diff --git a/Resources/Audio/Voice/Reptilian/license.txt b/Resources/Audio/Voice/Reptilian/license.txt deleted file mode 100644 index a38d32b6aa..0000000000 --- a/Resources/Audio/Voice/Reptilian/license.txt +++ /dev/null @@ -1,4 +0,0 @@ -The sounds are taken from skyrag/tgdownstream -https://github.com/Skyrat-SS13/Skyrat-tg/pull/892 - -reptilian_scream.ogg \ No newline at end of file diff --git a/Resources/Audio/Voice/Skeleton/attributions.yml b/Resources/Audio/Voice/Skeleton/attributions.yml new file mode 100644 index 0000000000..ae4da582ff --- /dev/null +++ b/Resources/Audio/Voice/Skeleton/attributions.yml @@ -0,0 +1,4 @@ +- files: ["skeleton_scream.ogg"] + license: "CC0-1.0" + copyright: "AntumDeluge on freesound.org" + source: "https://freesound.org/people/AntumDeluge/sounds/188034/" diff --git a/Resources/Audio/Voice/Skeleton/license.txt b/Resources/Audio/Voice/Skeleton/license.txt deleted file mode 100644 index b057ff96e3..0000000000 --- a/Resources/Audio/Voice/Skeleton/license.txt +++ /dev/null @@ -1 +0,0 @@ -skeleton_scream.ogg licensed under CC0 1.0 taken from AntumDeluge at https://freesound.org/people/AntumDeluge/sounds/188034/ diff --git a/Resources/Audio/Voice/Talk/attributions.yml b/Resources/Audio/Voice/Talk/attributions.yml index 4b3aab32db..d55b9737d0 100644 --- a/Resources/Audio/Voice/Talk/attributions.yml +++ b/Resources/Audio/Voice/Talk/attributions.yml @@ -2,3 +2,32 @@ license: "CC-BY-4.0" copyright: "Recorded by https://github.com/PixelTheKermit" source: "https://github.com/space-wizards/space-station-14/pull/13945" + +- files: ["pai.ogg", "pai_ask.ogg", "pai_exclaim.ogg"] + license: "CC-BY-3.0" + copyright: "hubismal on GitHub" + source: "https://github.com/space-wizards/space-station-14/commit/3421e4f4de2613df1e92a4169a778335bc9faac4" + +- files: [ + "speak_1_ask.ogg", + "speak_1_exclaim.ogg", + "speak_1.ogg", + "speak_2_ask.ogg", + "speak_2_exclaim.ogg", + "speak_2.ogg", + "speak_3_ask.ogg", + "speak_3_exclaim.ogg", + "speak_3.ogg", + "speak_4_ask.ogg", + "speak_4_exclaim.ogg", + "speak_4.ogg", + "lizard.ogg", + "lizard_ask.ogg", + "lizard_exclaim.ogg", + "slime.ogg", + "slime_ask.ogg", + "slime_exclaim.ogg", + ] + license: "CC-BY-NC-SA-3.0" + copyright: "Goonstation, Modified by Whisper" + source: "https://github.com/goonstation/goonstation/tree/eb3e7df6292d23f6af2f18b4372d3a8ba4b0fda7/sound/misc/talk" diff --git a/Resources/Audio/Voice/Talk/license.txt b/Resources/Audio/Voice/Talk/license.txt deleted file mode 100644 index 0914f3fb87..0000000000 --- a/Resources/Audio/Voice/Talk/license.txt +++ /dev/null @@ -1,25 +0,0 @@ -pai.ogg -pai_ask.ogg -pai_exclaim.ogg -all made by github.com/hubismal licensed under CC-BY-3.0 -speak_1_ask.ogg -speak_1_exclaim.ogg -speak_1.ogg -speak_2_ask.ogg -speak_2_exclaim.ogg -speak_2.ogg -speak_3_ask.ogg -speak_3_exclaim.ogg -speak_3.ogg -speak_4_ask.ogg -speak_4_exclaim.ogg -speak_4.ogg -lizard.ogg -lizard_ask.ogg -lizard_exclaim.ogg -buwoo.ogg (Rename to slime.ogg) -buwoo_ask.ogg (Renamed to slime_ask.ogg) -buwoo_exclaim (Renamed to slime_exclaim.ogg) -all taken from -https://github.com/goonstation/goonstation/tree/eb3e7df6292d23f6af2f18b4372d3a8ba4b0fda7/sound/misc/talk -licensed under CC BY-NC-SA 3.0 diff --git a/Resources/Audio/Voice/Talk/lizard.ogg b/Resources/Audio/Voice/Talk/lizard.ogg index 17dd7d8075..77423d10a0 100644 Binary files a/Resources/Audio/Voice/Talk/lizard.ogg and b/Resources/Audio/Voice/Talk/lizard.ogg differ diff --git a/Resources/Audio/Voice/Talk/lizard_ask.ogg b/Resources/Audio/Voice/Talk/lizard_ask.ogg index 642e3bc2ea..5eab3f8d3f 100644 Binary files a/Resources/Audio/Voice/Talk/lizard_ask.ogg and b/Resources/Audio/Voice/Talk/lizard_ask.ogg differ diff --git a/Resources/Audio/Voice/Talk/lizard_exclaim.ogg b/Resources/Audio/Voice/Talk/lizard_exclaim.ogg index 8106937a6c..8802887111 100644 Binary files a/Resources/Audio/Voice/Talk/lizard_exclaim.ogg and b/Resources/Audio/Voice/Talk/lizard_exclaim.ogg differ diff --git a/Resources/Audio/Weapons/Guns/Gunshots/attributions.yml b/Resources/Audio/Weapons/Guns/Gunshots/attributions.yml index 4864ba4f82..9431ededc2 100644 --- a/Resources/Audio/Weapons/Guns/Gunshots/attributions.yml +++ b/Resources/Audio/Weapons/Guns/Gunshots/attributions.yml @@ -12,3 +12,13 @@ license: "CC0-1.0" copyright: "Grappling hook by 16bitstudios. Converted to .OGG and MONO by metalgearsloth" source: "https://freesound.org/people/16bitstudios/sounds/541975/" + +- files: ["atreides.ogg", "c-20r.ogg", "flaregun.ogg", "mateba.ogg", "minigun.ogg", "mk58.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from CM-SS13" + source: "https://gitlab.com/cmdevs/colonial-warfare/-/tree/32cb5892413243cc74bb2d11df8e3085f8ef1164/sound/weapons" + +- files: ["rocket-launcher.ogg", "taser2.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from tgstation" + source: "https://github.com/tgstation/tgstation/tree/88d7dbfc105fbf40284d7b7c4587f8d23c0ac3ac" \ No newline at end of file diff --git a/Resources/Audio/Weapons/Guns/Gunshots/license.txt b/Resources/Audio/Weapons/Guns/Gunshots/license.txt deleted file mode 100644 index 6487f71076..0000000000 --- a/Resources/Audio/Weapons/Guns/Gunshots/license.txt +++ /dev/null @@ -1,5 +0,0 @@ -atreides.ogg, c-20r.ogg, flaregun.ogg, mateba.ogg, minigun.ogg, mk58.ogg were taken from https://gitlab.com/cmdevs/colonial-warfare/-/tree/32cb5892413243cc74bb2d11df8e3085f8ef1164/sound/weapons -They are licensed under CC-BY-SA 3.0 - -rocket_launcher.ogg and taser2.ogg and kinetic_accel.ogg were taken from https://github.com/tgstation/tgstation/tree/88d7dbfc105fbf40284d7b7c4587f8d23c0ac3ac -It is licensed under CC-BY-SA 3.0 \ No newline at end of file diff --git a/Resources/Audio/Weapons/Guns/Hits/attributions.yml b/Resources/Audio/Weapons/Guns/Hits/attributions.yml new file mode 100644 index 0000000000..297fc9dcf2 --- /dev/null +++ b/Resources/Audio/Weapons/Guns/Hits/attributions.yml @@ -0,0 +1,9 @@ +- files: ["bullet_meat1.ogg", "bullet_meat2.ogg", "bullet_meat3.ogg", "bullet_meat4.ogg", "energy_meat1.ogg", "energy_meat2.ogg", "energy_metal1.ogg", "energy_metal2.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from Citadel Station 13. Remixed to mono where it was stereo by metalgearsloth" + source: "https://github.com/Citadel-Station-13/Citadel-Station-13-RP/tree/cc701aedb633d83eae8339a8b3712ad8ad99cca0/sound" + +- files: ["ric1.ogg", "ric2.ogg", "ric3.ogg", "ric3.ogg", "ric5.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from tgstation" + source: "https://github.com/tgstation/tgstation/tree/7501504b0ea029d2cf1c0336d09db5c0959aa412/sound/weapons/effects" \ No newline at end of file diff --git a/Resources/Audio/Weapons/Guns/Hits/licenses.txt b/Resources/Audio/Weapons/Guns/Hits/licenses.txt deleted file mode 100644 index a7a335fb4a..0000000000 --- a/Resources/Audio/Weapons/Guns/Hits/licenses.txt +++ /dev/null @@ -1,16 +0,0 @@ -Taken from https://github.com/Citadel-Station-13/Citadel-Station-13-RP/tree/cc701aedb633d83eae8339a8b3712ad8ad99cca0/sound licensed under CC BY-SA 3.0. Remixed to mono where it was stereo by metalgearsloth: -- bullet_meat1.ogg -- bullet_meat2.ogg -- bullet_meat3.ogg -- bullet_meat4.ogg -- energy_meat1.ogg -- energy_meat2.ogg -- energy_metal1.ogg -- energy_metal2.ogg - -Taken from https://github.com/tgstation/tgstation/tree/7501504b0ea029d2cf1c0336d09db5c0959aa412/sound/weapons/effects CC BY-SA 3.0. -- ric1.ogg -- ric2.ogg -- ric3.ogg -- ric4.ogg -- ric5.ogg \ No newline at end of file diff --git a/Resources/Audio/Weapons/Guns/Misc/attributions.yml b/Resources/Audio/Weapons/Guns/Misc/attributions.yml index 066c26206e..dab5384b8d 100644 --- a/Resources/Audio/Weapons/Guns/Misc/attributions.yml +++ b/Resources/Audio/Weapons/Guns/Misc/attributions.yml @@ -1,4 +1,9 @@ - files: ["arrow_nock.ogg"] license: "CC-BY-NC-4.0" copyright: "Created by LiamG_SFX, converted to ogg by mirrorcult" - source: "https://freesound.org/people/LiamG_SFX/sounds/322224/" \ No newline at end of file + source: "https://freesound.org/people/LiamG_SFX/sounds/322224/" + +- files: ["selector.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Taken from tgstation" + source: "https://github.com/tgstation/TerraGov-Marine-Corps/blob/0d97ec86c49e2a89409bd3ddf0b7451b3f1c9a0e/sound/weapons/guns/interact/selector.ogg" \ No newline at end of file diff --git a/Resources/Audio/Weapons/Guns/Misc/licenses.txt b/Resources/Audio/Weapons/Guns/Misc/licenses.txt deleted file mode 100644 index 3eecf46587..0000000000 --- a/Resources/Audio/Weapons/Guns/Misc/licenses.txt +++ /dev/null @@ -1,2 +0,0 @@ -Taken from https://github.com/tgstation/TerraGov-Marine-Corps/blob/0d97ec86c49e2a89409bd3ddf0b7451b3f1c9a0e/sound/weapons/guns/interact/selector.ogg under CC-BY-NC-SA 3.0 -- selector.ogg \ No newline at end of file diff --git a/Resources/Audio/Weapons/Guns/Miss/attributions.yml b/Resources/Audio/Weapons/Guns/Miss/attributions.yml new file mode 100644 index 0000000000..7fd804b9d0 --- /dev/null +++ b/Resources/Audio/Weapons/Guns/Miss/attributions.yml @@ -0,0 +1,9 @@ +- files: ["bullet_miss1.ogg", "bullet_miss2.ogg", "bullet_miss3.ogg", "bullet_miss4.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from CM-SS13" + source: "https://github.com/cmss13-devs/cmss13/tree/0535055a7abcd3016123f2be2cd3db428c122dac/sound/bullets" + +- files: ["energy_miss1.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from CM-SS13" + source: "https://github.com/cmss13-devs/cmss13/tree/0535055a7abcd3016123f2be2cd3db428c122dac/sound/bullets" \ No newline at end of file diff --git a/Resources/Audio/Weapons/Guns/Miss/licenses.txt b/Resources/Audio/Weapons/Guns/Miss/licenses.txt deleted file mode 100644 index 1f6cdc1735..0000000000 --- a/Resources/Audio/Weapons/Guns/Miss/licenses.txt +++ /dev/null @@ -1,2 +0,0 @@ -bullet_miss oggs taken from https://github.com/cmss13-devs/cmss13/tree/0535055a7abcd3016123f2be2cd3db428c122dac/sound/bullets under CC BY-SA 3.0 -energy_miss ogg taken from https://github.com/cmss13-devs/cmss13/tree/0535055a7abcd3016123f2be2cd3db428c122dac/sound/bullets under CC BY-SA 3.0 \ No newline at end of file diff --git a/Resources/Audio/Weapons/Xeno/attributions.yml b/Resources/Audio/Weapons/Xeno/attributions.yml new file mode 100644 index 0000000000..a027105870 --- /dev/null +++ b/Resources/Audio/Weapons/Xeno/attributions.yml @@ -0,0 +1,9 @@ +- files: ["alien_claw_flesh1.ogg", "alien_claw_flesh2.ogg", "alien_claw_flesh3.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from CM-SS13" + source: "https://gitlab.com/cmdevs/colonial-warfare/-/tree/dev/sound/weapons" + +- files: ["alien_spitacid.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Taken from tgstation" + source: "https://github.com/tgstation/TerraGov-Marine-Corps/blob/233891d0e19a002d8307299bfe15206591172784/sound/voice/alien_spitacid.ogg" diff --git a/Resources/Audio/Weapons/Xeno/license.txt b/Resources/Audio/Weapons/Xeno/license.txt deleted file mode 100644 index bb082c7c07..0000000000 --- a/Resources/Audio/Weapons/Xeno/license.txt +++ /dev/null @@ -1,2 +0,0 @@ -alien_claw_flesh1, alien_claw_flesh2, alien_claw_flesh3 were taken from: https://gitlab.com/cmdevs/colonial-warfare/-/tree/dev/sound/weapons -alien_spitacid was taken from: https://github.com/tgstation/TerraGov-Marine-Corps/blob/233891d0e19a002d8307299bfe15206591172784/sound/voice/alien_spitacid.ogg \ No newline at end of file diff --git a/Resources/Audio/Weapons/attributions.yml b/Resources/Audio/Weapons/attributions.yml index a1e728b5d5..02b1c13d53 100644 --- a/Resources/Audio/Weapons/attributions.yml +++ b/Resources/Audio/Weapons/attributions.yml @@ -32,3 +32,48 @@ license: "CC-BY-SA-3.0" copyright: "User Nimfar11 on GitHub." source: "https://github.com/Nimfar11" + +- files: ["dodgeball.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from tgstation" + source: "https://github.com/tgstation/tgstation/blob/5d264fbea0124e5af511af3fed24203e196d108b/sound/items/dodgeball.ogg" + +- files: ["grille_hit.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from tgstation" + source: "https://github.com/tgstation/tgstation/blob/803ca4537df35cf252b056d8460d510be8a4f353/sound/effects/grillehit.ogg" + +- files: ["slash.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from tgstation" + source: "https://github.com/tgstation/tgstation/blob/5d264fbea0124e5af511af3fed24203e196d108b/sound/weapons/slash.ogg" + +- files: ["tap.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from tgstation" + source: "https://github.com/tgstation/tgstation/blob/803ca4537df35cf252b056d8460d510be8a4f353/sound/weapons/tap.ogg" + +- files: ["boxingpunch1.ogg", "boxingpunch2.ogg", "boxingpunch3.ogg"] + license: "CC-BY-3.0" + copyright: "Taken from Ryan Conway on freesound.org" + source: "https://freesound.org/people/ryanconway/sounds/260739/" + +- files: ["boxingbell.ogg"] + license: "CC0-1.0" + copyright: "Taken from Herkules92 on freesound.org" + source: "https://freesound.org/people/Herkules92/sounds/520998/" + +- files: ["block_metal1.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from Citadel Station 13" + source: "https://github.com/Citadel-Station-13/Citadel-Station-13/commit/31c5996a5db8cce0cb431cb1dc20d99cac83f268" + +- files: ["pierce.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from tgstation" + source: "https://github.com/tgstation/tgstation/commit/106cd26fc00851a51dd362f3131120318d848a53" + +- files: ["rubberhammer.ogg"] + license: "CC0-1.0" + copyright: "Taken from ScreamStudio on freesound.org" + source: "https://freesound.org/people/ScreamStudio/sounds/392617/" diff --git a/Resources/Audio/Weapons/licenses.txt b/Resources/Audio/Weapons/licenses.txt deleted file mode 100644 index 2485a85565..0000000000 --- a/Resources/Audio/Weapons/licenses.txt +++ /dev/null @@ -1,25 +0,0 @@ -dodgeball.ogg taken from https://github.com/tgstation/tgstation/blob/5d264fbea0124e5af511af3fed24203e196d108b/sound/items/dodgeball.ogg under CC BY-SA 3.0 - -grille_hit.ogg taken from https://github.com/tgstation/tgstation/blob/803ca4537df35cf252b056d8460d510be8a4f353/sound/effects/grillehit.ogg under CC BY-SA 3.0 - -slash.ogg taken from https://github.com/tgstation/tgstation/blob/5d264fbea0124e5af511af3fed24203e196d108b/sound/weapons/slash.ogg under CC BY-SA 3.0 - -tap.ogg taken from https://github.com/tgstation/tgstation/blob/803ca4537df35cf252b056d8460d510be8a4f353/sound/weapons/tap.ogg under CC BY-SA 3.0 - -BoxingPunch 1, 2, and 3 taken from Ryan Conway at https://freesound.org/people/ryanconway/sounds/260739/ under CC BY 3.0 - -boxingbell.ogg taken from Herkules92 at https://freesound.org/people/Herkules92/sounds/520998/ under CC0 1.0 - -block_metal1.ogg taken from https://github.com/Citadel-Station-13/Citadel-Station-13/commit/31c5996a5db8cce0cb431cb1dc20d99cac83f268 under CC BY-SA 3.0 - -pierce.ogg taken from: https://github.com/tgstation/tgstation/commit/106cd26fc00851a51dd362f3131120318d848a53 - -rubberhammer.ogg taken from https://freesound.org/people/ScreamStudio/sounds/392617/ under CC0 1.0 - -- files: ["weoweo.ogg"] - license: "SONNISS #GAMEAUDIOGDC BUNDLE LICENSING" - copyright: "Taken from Sonniss.com - GDC 2023 - Systematic Sound - TonalElements Obscurum - Dark Drones" - -- files: ["soup.ogg"] - license: "SONNISS #GAMEAUDIOGDC BUNDLE LICENSING" - copyright: "Taken from Sonniss.com - GDC 2023 - 344 AUdio - Epic Impacts Vol. 1" diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index e64e22317a..f8feb04fee 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -1,4 +1,4 @@ -Name: Admin +Name: Admin AdminOnly: true Order: 2 Entries: @@ -60,3 +60,29 @@ Entries: commands.', type: Tweak} id: 9 time: '2023-10-21T09:53:00.0000000+00:00' +- author: DrSmugleaf + changes: + - {message: 'Fixed the Erase verb not removing all chat messages from the player + in some cases.', type: Fix} + id: 9 + time: '2023-10-30T01:28:00.0000000+00:00' +- author: Vasilis + changes: + - {message: 'AME and PA make a sound effect when they are being overloaded. Similar to being sent a fax.', type: Add} + id: 10 + time: '2023-11-07T15:03:00.0000000+00:00' +- author: nikthechampiongr + changes: + - {message: 'The respawn verb now respawns the targeted player instead of the admin', type: Fix} + id: 11 + time: '2023-11-22T16:39:00.0000000+00:00' +- author: nikthechampiongr + changes: + - {message: 'The Super Bonk smite is now available. Targets will bonk their head on every single table.', type: Add} + id: 12 + time: '2023-12-12T11:54:00.0000000+00:00' +- author: DrSmugleaf + changes: + - {message: 'Fixed not being able to right click in AHelps and the players and objects tabs.', type: Fix} + id: 13 + time: '2023-12-21T06:34:00.0000000+00:00' diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 582795cb3c..22ef261108 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,2918 +1,3509 @@ Order: 1 Entries: -- author: DrSmugleaf - changes: - - {message: Fixed having to reopen ahelp and popped-out ahelp windows after round - start and end., type: Fix} - id: 4588 - time: '2023-08-14T21:03:35.0000000+00:00' -- author: DrSmugleaf - changes: - - {message: Faded admin notes now pop in when hovering over them., type: Tweak} - id: 4589 - time: '2023-08-14T21:03:53.0000000+00:00' -- author: DrSmugleaf - changes: - - {message: Fix editing an admin watchlist note making it temporarily appear as - a low severity note., type: Fix} - id: 4590 - time: '2023-08-14T21:05:47.0000000+00:00' -- author: Emisse - changes: - - {message: Operating table won't get you stuck in walls anymore, type: Fix} - id: 4591 - time: '2023-08-14T22:25:05.0000000+00:00' -- author: TheArturZh +- author: crazybrain changes: - - {message: Ritual chair no longer deletes mobs on disassembly, type: Fix} - id: 4592 - time: '2023-08-14T22:57:33.0000000+00:00' + - message: The omnitool (advanced tool cyborg module) can pry airlocks and firelocks + again. + type: Fix + id: 4951 + time: '2023-10-04T05:22:48.0000000+00:00' - author: EmoGarbage404 changes: - - {message: Using the EMAG on borgs now requires the panel to be open. It also need - to be open to tell if it has been EMAG'ed in the past., type: Tweak} - - {message: Fixed wiping PAIs and Positronic Brains not actually removing the player - from them., type: Fix} - id: 4593 - time: '2023-08-14T23:34:24.0000000+00:00' -- author: mhamster - changes: - - {message: 'Added plastic sheets recipe. Mix together 5u oil, 3u ash and 2u sulfuric - acid, heat it up to 374k and receive your homemade plastic sheet.', type: Add} - id: 4594 - time: '2023-08-14T23:40:48.0000000+00:00' -- author: Just_Art - changes: - - {message: Now a mini gravity generator can be constructed using a machine board - and deconstructed., type: Add} - - {message: 'The mini gravity generator can be improved by replacing capacitors, - which will increase the maximum charge of the generator.', type: Add} - - {message: 'The amount of damage required to destroy the mini gravity generator - has been changed, and now it is completely destroyed, but it can still be restored - by welding.', type: Tweak} - id: 4595 - time: '2023-08-15T00:23:40.0000000+00:00' -- author: DrSmugleaf - changes: - - {message: There is now a delay when disconnecting someone else's internals., type: Tweak} - id: 4596 - time: '2023-08-15T00:25:58.0000000+00:00' -- author: kalane15 - changes: - - {message: Energy swords don't reflect in pockets anymore., type: Fix} - id: 4597 - time: '2023-08-15T05:07:54.0000000+00:00' -- author: ElectroJr + - message: Cyborgs can toggle their flashlights again. + type: Fix + id: 4952 + time: '2023-10-04T14:30:11.0000000+00:00' +- author: nmajask changes: - - {message: Fixed replay playback a bug that could cause the damage overlay to stay - permanently active., type: Fix} - id: 4598 - time: '2023-08-15T05:10:56.0000000+00:00' -- author: deltanedas + - message: Clipboards are now available to the Head of Personnel and Quartermaster. + type: Add + id: 4953 + time: '2023-10-04T22:28:29.0000000+00:00' +- author: coolmankid12345 changes: - - {message: The Syndicate has stopped requesting ID card computer boards., type: Remove} - id: 4599 - time: '2023-08-15T14:07:56.0000000+00:00' -- author: mirrorcult + - message: Added the Revolutionaries gamemode. + type: Add + - message: Added Head Revolutionaries and conversion for the flash + type: Add + - message: Added Rev status icons. + type: Add + - message: Added Mindshields + type: Add + id: 4954 + time: '2023-10-05T01:47:33.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: Speech verbs will now change depending on the entity saying them and - from punctuation. Have fun chittering as a mothperson., type: Add} - - {message: Ending a message with '!!' will now bold the message., type: Add} - - {message: Mothpeople now have custom typing indicators., type: Add} - id: 4600 - time: '2023-08-15T20:03:06.0000000+00:00' -- author: Repo + - message: Fixed access while riding vehicles and mechs. + type: Fix + id: 4955 + time: '2023-10-05T09:12:41.0000000+00:00' +- author: brainfood1183 changes: - - {message: Nanotrasen no longer provides imitation head scrubs in the medical scrub - crate., type: Fix} - id: 4601 - time: '2023-08-15T20:22:28.0000000+00:00' -- author: EmoGarbage404 + - message: Rock anomalies have been detected by nanotrasen scientists. + type: Add + id: 4956 + time: '2023-10-05T19:53:54.0000000+00:00' +- author: notquitehadouken changes: - - {message: Radios no longer display a popup when messages fail to send., type: Remove} - id: 4602 - time: '2023-08-15T20:56:42.0000000+00:00' -- author: mirrorcult + - message: Slimes no longer rot again + type: Fix + id: 4957 + time: '2023-10-05T19:56:40.0000000+00:00' +- author: dahnte changes: - - {message: Portal sprites made less bad hopefully, type: Tweak} - - {message: Hand teleporter doafter reduced slightly, type: Tweak} - - {message: Portals can no longer teleport you to other maps, type: Fix} - - {message: Ghosts can now traverse linked portals silently using an altverb, type: Add} - - {message: Portals now snap to grid + show up properly in the entity menu, type: Fix} - id: 4603 - time: '2023-08-15T20:56:14.0000000+00:00' -- author: EmoGarbage404 + - message: Onion rings! + type: Add + id: 4958 + time: '2023-10-05T21:31:40.0000000+00:00' +- author: gusxyz changes: - - {message: Cyborgs can't get electrocuted anymore., type: Fix} - id: 4604 - time: '2023-08-15T22:37:34.0000000+00:00' -- author: Fahasor + - message: Monkey's now are able to equip gas masks. + type: Add + id: 4959 + time: '2023-10-05T21:34:37.0000000+00:00' +- author: TheShuEd changes: - - {message: Nanotrasen Department of Economics has reduced glue expenses in jug - production lines. Now labels from jugs can be deleted., type: Fix} - id: 4605 - time: '2023-08-15T22:41:10.0000000+00:00' -- author: EmoGarbage404 + - message: The trees and rocks are now rotating to follow the camera. + type: Tweak + id: 4960 + time: '2023-10-06T01:50:25.0000000+00:00' +- author: gusxyz changes: - - {message: Artifacts once again fit in artifact containers., type: Fix} - - {message: Brought crate capacity in line with other storage. (500 -> 30), type: Fix} - - {message: Hamlet's cage is now hamlet-sized and can only fit a single item., type: Fix} - id: 4606 - time: '2023-08-15T22:49:30.0000000+00:00' -- author: Velcroboy + - message: Syndicate bombs collide again. + type: Tweak + id: 4961 + time: '2023-10-06T06:29:58.0000000+00:00' +- author: Ubaser changes: - - {message: Added directional switches, type: Add} - id: 4607 - time: '2023-08-15T23:01:50.0000000+00:00' -- author: Tollhouse + - message: The Clothesmate now dispenses berets. + type: Tweak + id: 4962 + time: '2023-10-06T18:49:08.0000000+00:00' +- author: Lank changes: - - {message: Discount Dan has finalized a deal with NT chemistry and Shady Smokes - to bring you a new smoking sensation., type: Add} - id: 4608 - time: '2023-08-16T00:27:18.0000000+00:00' -- author: crazybrain + - message: Reptilians have received a minor rework. Notable features include a diet + restriction to only meat, fruit and pills, and the ability to pull objects using + their tail. + type: Tweak + id: 4963 + time: '2023-10-06T21:19:01.0000000+00:00' +- author: chromiumboy changes: - - {message: Syndicate pAI's are now equipped with radio transmitters., type: Tweak} - id: 4609 - time: '2023-08-16T06:59:42.0000000+00:00' -- author: Velcroboy + - message: Fixed wire panels on bombs and vending machines not opening correctly. + type: Fix + id: 4964 + time: '2023-10-06T21:26:02.0000000+00:00' +- author: TheShuEd changes: - - {message: Restructured cannabis!, type: Tweak} - id: 4610 - time: '2023-08-16T07:04:26.0000000+00:00' + - message: Beer anomaly added! And no, it's an anomaly of ominisine. Hmm. No. It + seems to be capable of producing ANY substance. + type: Add + id: 4965 + time: '2023-10-07T00:26:35.0000000+00:00' - author: DrSmugleaf changes: - - {message: Admin ghosts are now able to interact with user interfaces from any - range., type: Fix} - id: 4611 - time: '2023-08-16T08:03:42.0000000+00:00' -- author: EmoGarbage404 + - message: Fixed not being able to throw items into disposals from close up. + type: Fix + id: 4966 + time: '2023-10-07T00:43:54.0000000+00:00' +- author: Nimfar11 changes: - - {message: Lockers and crates work again., type: Fix} - id: 4612 - time: '2023-08-16T13:08:53.0000000+00:00' -- author: Ilya246 + - message: Now the Secret Doors can be welded shut. + type: Add + id: 4967 + time: '2023-10-07T00:45:12.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: 'Taxibots, cleanbots, and similar now have binary radio.', type: Add} - id: 4613 - time: '2023-08-16T13:18:57.0000000+00:00' -- author: DogZeroX - changes: - - {message: 'Reworked the loot table from salvage spawners, the stuff you can find - is more varied and valuable overall.', type: Add} - id: 4614 - time: '2023-08-16T19:11:02.0000000+00:00' -- author: DogZeroX - changes: - - {message: Higher rating stock parts are now cheaper to make. Print a bunch of - them and upgrade stuff!, type: Tweak} - id: 4615 - time: '2023-08-16T22:12:09.0000000+00:00' -- author: liltenhead + - message: Certain mobs will now fight back when provoked. Try not to get robusted. + type: Add + id: 4968 + time: '2023-10-07T00:56:18.0000000+00:00' +- author: HerCoyote23 changes: - - {message: Reduced freedom implanter cost from 8 -> 5 TC., type: Tweak} - id: 4616 - time: '2023-08-17T04:08:47.0000000+00:00' -- author: liltenhead + - message: Tarantulas now inject real toxins into victims and they can pass through + armour. + type: Tweak + id: 4969 + time: '2023-10-07T13:05:40.0000000+00:00' +- author: DrSmugleaf changes: - - {message: 'Increased crafting costs of the advanced laser, and laser cannon.', - type: Tweak} - id: 4617 - time: '2023-08-17T04:10:06.0000000+00:00' -- author: Ubaser + - message: Fixed not being able to sleep on a bed. + type: Fix + id: 4970 + time: '2023-10-07T19:11:03.0000000+00:00' +- author: JoeHammad changes: - - {message: New machine frame sprites, type: Tweak} - id: 4618 - time: '2023-08-17T04:16:13.0000000+00:00' -- author: hord-brayden - changes: - - {message: Whoopsie - Dan's Soaked Cigs finally hired some Quality Control. They've - resolved a small reagent solution in some of their swisher sweets., type: Fix} - id: 4619 - time: '2023-08-17T05:15:39.0000000+00:00' -- author: Equivocateur - changes: - - {message: 'Origin station now features ID Card computer''s in every Command member''s - office, drastically reducing the amount of bureaucracy.', type: Add} - id: 4620 - time: '2023-08-17T10:08:51.0000000+00:00' -- author: chromiumboy and PilgrimViis - changes: - - {message: Lathes and fabricators can now eject unused material sheets., type: Add} - id: 4621 - time: '2023-08-17T17:22:01.0000000+00:00' -- author: metalgearsloth + - message: traitor gamemode is rarer, nukies and revs are more common + type: Tweak + id: 4971 + time: '2023-10-07T19:15:57.0000000+00:00' +- author: Lank changes: - - {message: Fix emote sounds., type: Fix} - id: 4622 - time: '2023-08-17T20:40:10.0000000+00:00' -- author: OctoRocket + - message: Humanoid species now passively regenerate small bruises and burns. + type: Tweak + id: 4972 + time: '2023-10-07T19:34:32.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: You no longer yell uncontrollably when feeling joy., type: Tweak} - id: 4623 - time: '2023-08-17T22:00:13.0000000+00:00' -- author: Repo + - message: Kudzu has been reenabled. + type: Add + id: 4973 + time: '2023-10-07T19:59:39.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: 'Janitors have remembered how to wring a mop, mops can transfer chemicals - back to buckets etc again.', type: Fix} - id: 4624 - time: '2023-08-17T22:00:46.0000000+00:00' -- author: DogZeroX - changes: - - {message: Research point requirement has been reduced for a lot of techs., type: Tweak} - id: 4625 - time: '2023-08-18T01:41:53.0000000+00:00' -- author: DogZeroX - changes: - - {message: Added two reboot themes., type: Add} - id: 4626 - time: '2023-08-18T13:58:44.0000000+00:00' -- author: Partmedia - changes: - - {message: Added fun!, type: Add} - - {message: Removed fun!, type: Remove} - - {message: Changed fun!, type: Tweak} - - {message: Fixed fun!, type: Fix} - id: 4627 - time: '2023-08-18T17:22:00.0000000+00:00' -- author: crazybrain + - message: Diona now move at the same speed as other species. + type: Tweak + id: 4974 + time: '2023-10-08T21:02:46.0000000+00:00' +- author: DrSmugleaf changes: - - {message: More shortcuts to guide entries on various items., type: Tweak} - id: 4628 - time: '2023-08-18T23:53:45.0000000+00:00' -- author: Alekshhh + - message: Updated the PDA ringtone UI to have a small delay between sets. + type: Tweak + id: 4975 + time: '2023-10-08T21:25:08.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: The legendary John Barber came to Centcomm with a business proposal. - All human hairs have been cut with love!, type: Tweak} - id: 4629 - time: '2023-08-19T22:37:56.0000000+00:00' -- author: chromiumboy + - message: Brains now function properly when inserted into an MMI. + type: Fix + id: 4976 + time: '2023-10-09T04:49:20.0000000+00:00' +- author: gusxyz changes: - - {message: 'The C.H.I.M.P. handcannon now has an internal power pack, much like - a laser, and different firing modes for the different particle types.', type: Tweak} - - {message: Each anomalous particle type now has a unique color, type: Tweak} - - {message: An upgrade kit for C.H.I.M.P. handcannons was added for purchase to - syndicate scientist uplinks for 4 TC, type: Add} - - {message: All C.H.I.M.P. particle cartridges have been removed from the game, - type: Remove} - - {message: The omega particle cartridge box has been removed from the syndicate - uplink, type: Remove} - id: 4630 - time: '2023-08-19T22:54:53.0000000+00:00' -- author: deltanedas + - message: Using capital letter for your department specific radio channels will + work now! + type: Tweak + id: 4977 + time: '2023-10-09T05:07:54.0000000+00:00' +- author: nmajask changes: - - {message: 'Solar Flares can randomly disable up to 2 radio channels, rather than - just service. Syndicate and CentCom channels remain unaffected.', type: Tweak} - id: 4631 - time: '2023-08-19T23:39:36.0000000+00:00' -- author: Morb0 + - message: Added flannel jackets, find them at your local winterdrobe or dark maint + corridor. + type: Add + id: 4978 + time: '2023-10-09T15:22:57.0000000+00:00' +- author: Vasilis changes: - - {message: 'Roundstart nukeops greeting sound is back, now they''ll remember their - main objective.', type: Fix} - id: 4632 - time: '2023-08-20T01:07:09.0000000+00:00' -- author: mirrorcult + - message: Contributors are automatically updated now once a week in the credits + section. + type: Add + id: 4979 + time: '2023-10-09T23:42:53.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: Containment fields now have synced animations, type: Fix} - id: 4633 - time: '2023-08-20T05:33:49.0000000+00:00' -- author: Alekshhh + - message: Fixed kudzu, foam, smoke, and puddles spreading at extremely high rates. + type: Fix + id: 4980 + time: '2023-10-10T03:32:34.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: Fixed modern hair trongles, type: Fix} - id: 4634 - time: '2023-08-20T08:54:44.0000000+00:00' -- author: Errant + - message: Reenabled Kudzu (again) (for real this time) + type: Add + id: 4981 + time: '2023-10-10T03:34:41.0000000+00:00' +- author: GoodWheatley changes: - - {message: Pressing the "rack gun" key on a gun with an open bolt will now close - the bolt., type: Tweak} - - {message: Ghosts and animals without hands can no longer manipulate gun bolts., - type: Fix} - id: 4635 - time: '2023-08-20T11:42:36.0000000+00:00' -- author: CrigCrag + - message: Dionas are actually the same speed as other species now. + type: Fix + id: 4982 + time: '2023-10-10T14:03:20.0000000+00:00' +- author: Potato1234_x changes: - - {message: Loneops have grown impatient and may attack a bit earlier in the shift., - type: Tweak} - id: 4636 - time: '2023-08-20T12:12:28.0000000+00:00' -- author: kalane15 + - message: Added the CuraDrobe. + type: Add + - message: Added the sensible suit and skirt. + type: Add + - message: Fixed the librarian not having their own jumpskirt. + type: Fix + - message: Resprited the librarian jumpsuit. + type: Tweak + id: 4983 + time: '2023-10-10T16:55:31.0000000+00:00' +- author: Whisper changes: - - {message: 'Crusher can be used with one hand, but with less damage.', type: Tweak} - id: 4637 - time: '2023-08-20T12:13:45.0000000+00:00' + - message: Lizards can eat organs again! + type: Fix + - message: Organs now contain uncooked proteins instead of edible nutriment. Animals + will be able to consume this. + type: Tweak + id: 4984 + time: '2023-10-10T18:02:47.0000000+00:00' - author: metalgearsloth changes: - - {message: Buff sniper firerate and nerf damage. Nerf stamina damage a lot., type: Tweak} - id: 4638 - time: '2023-08-20T20:54:22.0000000+00:00' -- author: crazybrain - changes: - - {message: Explosive banana peels now need to be armed before they can be used., - type: Tweak} - id: 4639 - time: '2023-08-20T20:58:22.0000000+00:00' + - message: Fix shuttles sometimes clipping planet marker entities such as ore. + type: Fix + id: 4985 + time: '2023-10-10T21:33:04.0000000+00:00' - author: metalgearsloth changes: - - {message: Added sound upon breaking rocks., type: Add} - id: 4640 - time: '2023-08-20T21:05:43.0000000+00:00' -- author: EmoGarbage404 + - message: Fix expedition faction sometimes not aligning with the mission faction. + type: Fix + id: 4986 + time: '2023-10-10T21:33:18.0000000+00:00' +- author: metalgearsloth changes: - - {message: All of the emergency medkit cargo crates now only give a single kit - but are cheaper in return., type: Tweak} - id: 4641 - time: '2023-08-20T21:05:58.0000000+00:00' -- author: EmoGarbage404 + - message: Vaulting tables is now predicted. + type: Fix + - message: Fix buckle sound not playing. + type: Fix + - message: Buckling is now predicted. + type: Fix + id: 4987 + time: '2023-10-10T23:41:12.0000000+00:00' +- author: deltanedas changes: - - {message: Fixed diona always being tinted brown., type: Fix} - - {message: Diona can now customize their eye color and the color of their vines., - type: Add} - id: 4642 - time: '2023-08-21T01:02:12.0000000+00:00' -- author: liltenhead + - message: Ninja uncloak after attacking with melee weapons. + type: Tweak + id: 4988 + time: '2023-10-11T02:55:54.0000000+00:00' +- author: gusxyz changes: - - {message: Slowed the speed at which kudzu spreads., type: Tweak} - id: 4643 - time: '2023-08-21T01:03:50.0000000+00:00' -- author: Alekshhh - changes: - - {message: Changed botany locker contents, type: Tweak} - id: 4644 - time: '2023-08-21T01:04:11.0000000+00:00' -- author: Alekshhh - changes: - - {message: Changed salvage and QM locker contents, type: Tweak} - id: 4645 - time: '2023-08-21T01:04:43.0000000+00:00' -- author: EnDecc - changes: - - {message: 'Three "plastic crates" in cargo have now been given appropriate labels, - after Centcomm forgot to use tape on them. Disaster pizza crate, Softdrinks - crate, and Softdrinks bulk crate will now show up in orders appropriately.', - type: Fix} - id: 4646 - time: '2023-08-21T18:16:21.0000000+00:00' -- author: Errant-4 - changes: - - {message: 'Crit/Dead people that somehow end up holding a gun can no longer fire - them. The Gundead aren''t real, they can''t hurt you.', type: Fix} - id: 4647 - time: '2023-08-21T18:27:08.0000000+00:00' -- author: Verslebas - changes: - - {message: Changed admin ghost's hands order, type: Tweak} - id: 4648 - time: '2023-08-21T18:35:30.0000000+00:00' -- author: Potato1234_x + - message: Crabs will seek out food to eat now. + type: Add + id: 4989 + time: '2023-10-11T03:09:26.0000000+00:00' +- author: Vasilis changes: - - {message: Vending machines have been polished. Again., type: Tweak} - id: 4649 - time: '2023-08-21T18:45:54.0000000+00:00' -- author: Alekshhh + - message: Potentially fix (or hopefully at least reduce) electrical anomaly lagging + everyone on supercrit. + type: Fix + id: 4990 + time: '2023-10-11T03:11:46.0000000+00:00' +- author: ShadowCommander changes: - - {message: Changed medical locker contents, type: Tweak} - id: 4650 - time: '2023-08-21T18:49:22.0000000+00:00' + - message: Added toggleselfghost command, which toggles being able to see your own + ghost. + type: Add + - message: Added replay_toggle_screenshot_mode command, which toggles the HUD in + replay mode to look similar to ingame. + type: Add + id: 4991 + time: '2023-10-11T03:43:48.0000000+00:00' - author: deltanedas changes: - - {message: Air alarms now have output signal ports for each state., type: Tweak} - id: 4651 - time: '2023-08-21T21:18:30.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: Freshly spawned diona are no longer gray., type: Fix} - - {message: Skeletons are no longer extremely saturated in color., type: Fix} - id: 4652 - time: '2023-08-22T02:05:24.0000000+00:00' -- author: func_kenobi - changes: - - {message: "CentComm allowed the station architectors to place Schr\xF6dinger's\ - \ grilles.", type: Add} - id: 4653 - time: '2023-08-22T02:21:45.0000000+00:00' -- author: astriloqua - changes: - - {message: NanoTransen has hired professionals to teach people how to use toilets. - Employees can now properly sit on toilets., type: Tweak} - id: 4654 - time: '2023-08-22T04:21:51.0000000+00:00' -- author: kalane15 - changes: - - {message: Dropping item stops its examination, type: Fix} - id: 4655 - time: '2023-08-22T04:28:45.0000000+00:00' -- author: Interrobang01 - changes: - - {message: The word "i" is now automatically capitalized in IC chat! Your pinky's - structural integrity is now safe!, type: Add} - id: 4656 - time: '2023-08-22T04:43:37.0000000+00:00' -- author: Errant - changes: - - {message: 'Mutes no longer make a sound when they die, and can''t fake their death - while in crit. They can still summon up their remaining strength to whisper - their first-last words.', type: Tweak} - id: 4657 - time: '2023-08-22T06:05:16.0000000+00:00' -- author: tom-leys - changes: - - {message: 'To increase employee retention and new staff experience, we''ve installed - a short range teleporter on our Arrivals Shuttle. However we only had sufficient - budget to use it once per shift per staff member.', type: Add} - - {message: 'You might notice yourself adjusting as you step off the arrivals shuttle, - with our patented rotation acclimation system. It might make you dizzy, but - it helps the station make sense.', type: Tweak} - id: 4658 - time: '2023-08-22T10:46:50.0000000+00:00' -- author: onoira - changes: - - {message: Nanotrasen no longer uses disappearing ink for official books and documents. - These can now be modified., type: Fix} - - {message: New pen technology enables stylish ways of writing. See the guidebook - for more info., type: Add} - id: 4659 - time: '2023-08-22T11:50:04.0000000+00:00' -- author: Whisper - changes: - - {message: Smile the Slime now has unique ghost role text rather than standard - slimes., type: Add} - id: 4660 - time: '2023-08-22T12:00:20.0000000+00:00' -- author: Alekshhh + - message: Rehargers can be examined to show the charge of the battery or weapon + inside. + type: Tweak + id: 4992 + time: '2023-10-11T09:22:09.0000000+00:00' +- author: Skarletto changes: - - {message: Changed various head locker contents., type: Tweak} - id: 4661 - time: '2023-08-22T14:49:53.0000000+00:00' -- author: Doru991 + - message: Changed unary devices such as scrubbers and vents to not be able to stack + with each other + type: Tweak + id: 4993 + time: '2023-10-11T15:20:21.0000000+00:00' +- author: ElectroJr changes: - - {message: Zombies' eyes turn red the way they were supposed to., type: Fix} - - {message: 'When a zombie is cloned, the cloned person''s eyes are visible again.', - type: Fix} - id: 4662 - time: '2023-08-23T04:52:00.0000000+00:00' -- author: deltanedas + - message: Fixed explosion resistance from clothing/equipment not being applied. + type: Fix + id: 4994 + time: '2023-10-11T16:31:10.0000000+00:00' +- author: JoeHammad changes: - - {message: 'R&D has developed the construction cyborg module for engineering cyborgs, - now they can construct anything with steel glass or rods.', type: Add} - id: 4663 - time: '2023-08-23T21:34:39.0000000+00:00' -- author: Nairodian + - message: The nukie ship now has syndicate access airlocks + type: Add + id: 4995 + time: '2023-10-11T16:47:25.0000000+00:00' +- author: notafet changes: - - {message: 'Added several new Arachnid markings, including appendage stripes, chest - designs, chelicerae and an overlay.', type: Add} - id: 4664 - time: '2023-08-23T21:37:42.0000000+00:00' -- author: crazybrain + - message: Carbon dioxide poisoning is now more deadly. Victims of carbon dioxide + poisoning now gasp visibly. + type: Tweak + id: 4996 + time: '2023-10-12T07:35:31.0000000+00:00' +- author: Ubaser changes: - - {message: 'The dead body examine text is more accurate for dead, disconnected - players.', type: Tweak} - id: 4665 - time: '2023-08-23T21:41:54.0000000+00:00' -- author: Potato1234_x + - message: Revamped the Paramedic Void Suit sprite. + type: Tweak + id: 4997 + time: '2023-10-12T22:20:24.0000000+00:00' +- author: pigeonpeas changes: - - {message: Changed shape of short hair to be like the old one., type: Tweak} - id: 4666 - time: '2023-08-23T21:42:33.0000000+00:00' -- author: Potato1234_x + - message: Reptilians can now choose to have floppy kobold ears. + type: Add + id: 4998 + time: '2023-10-13T01:30:31.0000000+00:00' +- author: TheShuEd changes: - - {message: Changed the contents of the snack vendor to better fit snacks., type: Tweak} - - {message: 'Added C&Ds, Bob''s sunflower seeds and Sweetie''s pistachios.', type: Add} - id: 4667 - time: '2023-08-23T21:49:25.0000000+00:00' -- author: Lank + - message: Animals now give cute hearts when you pet them. + type: Add + id: 4999 + time: '2023-10-13T17:34:18.0000000+00:00' +- author: chromiumboy changes: - - {message: 'The Syndicate EMAG now provides cyborgs with an updated lawset on use, - making typical laws only apply to the user and preventing your new "friend" - from outing your activities, in addition to stunning the cyborg for a short - time.', type: Tweak} - id: 4668 - time: '2023-08-23T23:55:00.0000000+00:00' -- author: lapatison - changes: - - {message: 'Gardening cyborg module has been splitted into harvesting (scythe, - hatchet, plant bag* (New!) ) and gardening modules (hoe, spade, clippers, bucket* - (New!)', type: Tweak} - - {message: Book bag has been added to cybord literacy module, type: Tweak} - - {message: Book bag content now can be dumped on, type: Tweak} - id: 4669 - time: '2023-08-24T00:12:05.0000000+00:00' + - message: The radiation collector has been updated to provide better visual feedback + on its status. + type: Tweak + id: 5000 + time: '2023-10-13T23:08:00.0000000+00:00' - author: liltenhead changes: - - {message: Reduced both the damage and health of giant spiders., type: Tweak} - id: 4670 - time: '2023-08-24T01:20:53.0000000+00:00' -- author: Ilya246 - changes: - - {message: Heaters and freezers now work faster. TEGs now have their power output - adjusted., type: Tweak} - id: 4671 - time: '2023-08-24T02:18:48.0000000+00:00' -- author: crazybrain + - message: Increased containment field duration after power loss. + type: Tweak + id: 5001 + time: '2023-10-13T23:41:43.0000000+00:00' +- author: liltenhead changes: - - {message: Secret doors can be manually rotated again (at least until a dynamic - solution is found)., type: Fix} - id: 4672 - time: '2023-08-24T16:23:11.0000000+00:00' + - message: Increased the stability of the AME, it now takes about three minutes + for the AME to overload. + type: Tweak + id: 5002 + time: '2023-10-13T23:42:46.0000000+00:00' - author: deltanedas changes: - - {message: All plates can now be made in the autolathe., type: Tweak} - id: 4673 - time: '2023-08-24T18:01:14.0000000+00:00' + - message: Added the igniter for sparking flames, can be found in the vendomat and + robotics vendor or produced by science. + type: Add + id: 5003 + time: '2023-10-14T07:11:50.0000000+00:00' - author: DrSmugleaf changes: - - {message: Added pinging a Discord role when the round ends., type: Add} - id: 4674 - time: '2023-08-24T21:50:08.0000000+00:00' -- author: EmoGarbage404 + - message: Fixed librarians, lawyers, ninjas and nukeops having their starting in-hand + items dropped on the floor. + type: Fix + id: 5004 + time: '2023-10-14T17:28:52.0000000+00:00' +- author: liltenhead changes: - - {message: 'Fixed the chemical guidebook sometimes missing one of the conditions, - effects, or damage types for a chemical.', type: Fix} - id: 4675 - time: '2023-08-25T02:14:54.0000000+00:00' -- author: metalgearsloth + - message: Reduced the bombsuit helmet's explosive resistance. + type: Tweak + id: 5005 + time: '2023-10-14T17:34:58.0000000+00:00' +- author: JoeHammad changes: - - {message: Fix some minor quirks around reflection chances and also fixed reflect - vest reflecting every projectile., type: Fix} - id: 4676 - time: '2023-08-25T02:48:27.0000000+00:00' -- author: EmoGarbage404 + - message: mindshields to meta station armory + type: Add + id: 5006 + time: '2023-10-14T21:50:44.0000000+00:00' +- author: JoeHammad changes: - - {message: Solid plasma now comes in special plasma containment crates., type: Tweak} - id: 4677 - time: '2023-08-25T02:50:41.0000000+00:00' -- author: chromiumboy + - message: chem dispensers to barratry, you can stop crying now + type: Add + id: 5007 + time: '2023-10-14T21:51:33.0000000+00:00' +- author: ike709 changes: - - {message: Cyborgs can now state individual laws with the push of a button, type: Add} - id: 4678 - time: '2023-08-25T02:56:02.0000000+00:00' -- author: OctoRocket + - message: All non-high-security airlocks can now be pried open by hand when unpowered, + albeit much slower than using a crowbar + type: Tweak + id: 5008 + time: '2023-10-15T22:17:45.0000000+00:00' +- author: iacore changes: - - {message: 'Changed nutriment color, it is now green.', type: Tweak} - id: 4679 - time: '2023-08-25T03:11:24.0000000+00:00' -- author: Whisper + - message: Secure crates are now weldable! + type: Fix + id: 5009 + time: '2023-10-16T05:27:23.0000000+00:00' +- author: brainfood1183 changes: - - {message: 'The nuclear operative medic has returned to using the standard Syndicate - gas mask, which offers flash immunity.', type: Tweak} - id: 4680 - time: '2023-08-25T03:15:40.0000000+00:00' -- author: crazybrain + - message: Behonkers are fixed (in combat use right click to fire laser) + type: Fix + id: 5010 + time: '2023-10-16T05:29:14.0000000+00:00' +- author: ShadowCommander changes: - - {message: CentCom official costume no longer has AA., type: Fix} - - {message: CentCom official costume items are more CentCom themed., type: Tweak} - id: 4681 - time: '2023-08-25T03:20:57.0000000+00:00' -- author: Whisper + - message: Fixed material reclaimer sound error when processing something. + type: Fix + - message: Fixed duplicate gib sound when the material reclaimer processes a mob. + type: Fix + id: 5011 + time: '2023-10-16T05:30:35.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: The Detective's gun has been moved to their holster from their cabinet. - It comes with one speedloader each of the standard rubber and lethal bullets - of officers., type: Tweak} - - {message: The Detective's scanner and pad were moved to their backpack from their - pockets., type: Tweak} - - {message: Detective no longer spawns with a pistol magazine., type: Remove} - id: 4682 - time: '2023-08-25T03:36:44.0000000+00:00' -- author: Flareguy + - message: Fixed being permanently cuffed if you transformed into a zombie with + cuffs on. + type: Fix + id: 5012 + time: '2023-10-16T05:31:04.0000000+00:00' +- author: Lomcastar changes: - - {message: 'Asteroid floor, snow, and snow tiles are now varied in a more organic - way.', type: Tweak} - - {message: Removed asteroid coarse sand., type: Remove} - id: 4683 - time: '2023-08-25T03:40:04.0000000+00:00' -- author: PJB3005 + - message: Uranium crabs are more radioactive! + type: Tweak + id: 5013 + time: '2023-10-16T05:34:18.0000000+00:00' +- author: JoeHammad changes: - - {message: The particle accelerator now uses an MV power wire instead of HV. You - might need to manually connect it up before the maps get fixed., type: Tweak} - id: 4684 - time: '2023-08-25T03:42:23.0000000+00:00' + - message: Stun batons now take three hits to stun and have had their battery use + dropped by half + type: Tweak + id: 5014 + time: '2023-10-16T11:39:06.0000000+00:00' - author: metalgearsloth changes: - - {message: Fix eye zoom not lerping properly so it looks like it's 30fps., type: Fix} - id: 4685 - time: '2023-08-25T04:41:04.0000000+00:00' -- author: PJB3005 + - message: Fix item drops mispredicting. + type: Fix + id: 5015 + time: '2023-10-16T11:49:41.0000000+00:00' +- author: Vasilis changes: - - {message: Portable generators have been reworked., type: Tweak} - - {message: Portable generators now use a better sprite from Baystation12., type: Tweak} - - {message: 'Portable generators have been renamed to P.A.C.M.A.N. & friends, to - match the classic SS13 names.', type: Tweak} - - {message: 'Added the J.R.P.A.C.M.A.N.: it runs off welding fuel, will be easy - to find in maintenance, and can directly power rooms (connecting to LV cables).', - type: Add} - - {message: Portable generators now need a bit of *effort* to start., type: Add} - - {message: You can now eject fuel from portable generators., type: Add} - - {message: The (S.U.P.E.R.)P.A.C.M.A.N. can now have its output switched between - HV and MV output., type: Tweak} - - {message: Rebalanced power values and efficiency curves for portable generators., - type: Tweak} - - {message: The (J.R.)P.A.C.M.A.N. now exhausts hot CO2 gas. Use in a properly ventilated - room!, type: Tweak} - id: 4686 - time: '2023-08-25T18:40:42.0000000+00:00' -- author: DrSmugleaf + - message: Pneumatic Cannons can no longer shoot arrows. + type: Tweak + id: 5016 + time: '2023-10-17T22:58:05.0000000+00:00' +- author: Vasilis changes: - - {message: Fixed NPCs not working., type: Fix} - id: 4687 - time: '2023-08-25T21:52:23.0000000+00:00' -- author: liltenhead + - message: Spears and arrows can now only hold up to 2u of liquids instead of 5u. + type: Tweak + id: 5017 + time: '2023-10-17T23:01:25.0000000+00:00' +- author: notquitehadouken changes: - - {message: Ore bags can now pick up artifact fragments., type: Tweak} - id: 4688 - time: '2023-08-26T11:33:55.0000000+00:00' -- author: Potato1234_x + - message: The grey stick that shows up when you wide swing a weapon now looks like + the weapon used. + type: Tweak + id: 5018 + time: '2023-10-18T01:12:00.0000000+00:00' +- author: metalgearsloth changes: - - {message: Made bananas peelable., type: Tweak} - id: 4689 - time: '2023-08-26T16:31:14.0000000+00:00' -- author: HerCoyote23 + - message: Fix vaulting mispredict. + type: Fix + id: 5019 + time: '2023-10-18T05:11:33.0000000+00:00' +- author: daerSeebaer changes: - - {message: The Syndicate's Holoparasite have taken to yelling catchphrases as they - fight., type: Add} - id: 4690 - time: '2023-08-26T21:26:28.0000000+00:00' -- author: qwerltaz + - message: The AME controller now shows the current load and maximum capacity. + type: Add + id: 5020 + time: '2023-10-18T17:46:33.0000000+00:00' +- author: Errant changes: - - {message: Fixed wallmount devices being unable to be deconstructed., type: Fix} - id: 4691 - time: '2023-08-26T22:25:23.0000000+00:00' -- author: PJB3005 + - message: Temperature alerts are now more accurate for different species. + type: Fix + id: 5021 + time: '2023-10-18T18:05:15.0000000+00:00' +- author: Phunny changes: - - {message: 'Objects with interfaces now correctly respect interaction range, so - green outline really means you can open them.', type: Fix} - id: 4692 - time: '2023-08-27T08:27:43.0000000+00:00' -- author: HerCoyote23 + - message: Added Tortilla doughs and variants. + type: Add + - message: Added Taco shells and recipe + type: Add + - message: Added various types of Tacos + type: Add + - message: Changed naming of the original taco to soft shell taco + type: Tweak + id: 5022 + time: '2023-10-18T21:03:23.0000000+00:00' +- author: TemporalOroboros changes: - - {message: Northstar gloves have been tuned down a bit., type: Tweak} - id: 4693 - time: '2023-08-27T14:01:44.0000000+00:00' -- author: EmoGarbage404 + - message: Electric shocks now scale with the amount of power in the cables instead + of the type of cable. + type: Tweak + id: 5023 + time: '2023-10-18T21:04:47.0000000+00:00' +- author: Doru991 changes: - - {message: The recycler now recycles items off conveyor belts properly., type: Fix} - id: 4694 - time: '2023-08-27T23:01:54.0000000+00:00' -- author: Nairodian + - message: Being gibbed through normal means will no longer delete all items on + the body. + type: Fix + id: 5024 + time: '2023-10-18T21:15:17.0000000+00:00' +- author: KingFroozy changes: - - {message: Fixed Sec HUD icons overlapping with speech indicators., type: Fix} - id: 4695 - time: '2023-08-28T06:19:59.0000000+00:00' -- author: Alekshhh + - message: Atmospheric technician's casual jumpsuit was resprited. + type: Tweak + id: 5025 + time: '2023-10-19T03:44:58.0000000+00:00' +- author: Vasilis changes: - - {message: Cables now require less steel to print., type: Tweak} - id: 4696 - time: '2023-08-28T18:53:02.0000000+00:00' -- author: ItsMeThom + - message: You will no longer be picked as a head revolutionary if you have not + checked it in the antag picker. Note you can still become a revolutionary if + someone converts you. + type: Fix + id: 5026 + time: '2023-10-19T03:48:56.0000000+00:00' +- author: TheShuEd changes: - - {message: Changed Lathe UI to two column layout to improve readability of materials - currently loaded., type: Tweak} - id: 4697 - time: '2023-08-29T00:36:07.0000000+00:00' -- author: Ubaser + - message: Added dart game! + type: Add + id: 5027 + time: '2023-10-19T03:55:30.0000000+00:00' +- author: BurninDreamer changes: - - {message: 'Nanotrasen has decided to purchase their blood packs from a different - company, so they now contain real blood.', type: Tweak} - id: 4698 - time: '2023-08-29T04:30:10.0000000+00:00' -- author: DrSmugleaf + - message: C4 now costs 2 TC instead of 4TC, the bundle costs 12TC instead of 20TC + type: Tweak + id: 5028 + time: '2023-10-19T15:19:33.0000000+00:00' +- author: IntegerTempest + changes: + - message: Added lathe printing for rollerbed & wheelchairs. + type: Add + id: 5029 + time: '2023-10-20T05:46:33.0000000+00:00' +- author: deltanedas changes: - - {message: Fixed not showing the name of the fellow traitor that you have to keep - alive., type: Fix} - id: 4699 - time: '2023-08-29T06:23:20.0000000+00:00' + - message: Meats now cook based on internal temperature. Don't make steak in a plasma + fire unless you want to scorch the outside before the inside can even cook. + type: Tweak + id: 5030 + time: '2023-10-20T20:21:49.0000000+00:00' - author: metalgearsloth changes: - - {message: Added fultons for salvagers., type: Add} - id: 4700 - time: '2023-08-29T06:34:06.0000000+00:00' + - message: Fix replays not starting. + type: Fix + id: 5031 + time: '2023-10-20T22:37:02.0000000+00:00' - author: DrSmugleaf changes: - - {message: Fixed not tracking job playtime., type: Fix} - id: 4701 - time: '2023-08-29T20:39:18.0000000+00:00' -- author: DrSmugleaf + - message: Fixed not being able to run server commands without >. + type: Fix + - message: Fixed not being able to use the help command to see another command's + help text. + type: Fix + id: 5032 + time: '2023-10-21T10:58:57.0000000+00:00' +- author: 27alaing changes: - - {message: Fixed players not getting their round start message telling them their - supervisors., type: Add} - id: 4702 - time: '2023-08-29T22:50:23.0000000+00:00' -- author: Flareguy + - message: 'Common internet slang now gets replaced in IC chat. (example: brb --> + be right back)' + type: Add + id: 5033 + time: '2023-10-21T19:43:11.0000000+00:00' +- author: Vasilis changes: - - {message: Ported steel chair sprites from Paradise Station & Shiptest., type: Tweak} - id: 4703 - time: '2023-08-29T23:32:32.0000000+00:00' -- author: Morb0 + - message: Added a s-social anxiety trait that m-makes you st-stutter your w-words + when you t-talk. + type: Add + id: 5034 + time: '2023-10-21T20:09:54.0000000+00:00' +- author: DrSmugleaf changes: - - {message: Flavor text now disabled if identity hidden, type: Tweak} - id: 4704 - time: '2023-08-29T23:38:16.0000000+00:00' -- author: metalgearsloth + - message: Fixed shuttle thrusters and gyroscopes being disabled by default. + type: Fix + id: 5035 + time: '2023-10-21T21:33:49.0000000+00:00' +- author: DrSmugleaf changes: - - {message: Water and lava will now partially occlude your sprite., type: Add} - id: 4705 - time: '2023-08-30T02:32:36.0000000+00:00' -- author: Alekshhh + - message: Fixed the expeditions console not showing any expeditions. + type: Fix + id: 5036 + time: '2023-10-21T21:34:00.0000000+00:00' +- author: nikthechampiongr changes: - - {message: 'Added ears to monkeys, also Pun Pun starts with a service headset', - type: Add} - id: 4706 - time: '2023-08-30T06:07:23.0000000+00:00' -- author: metalgearsloth + - message: Players can no longer telekinetically pry open doors while they are + not under the effects of gravity. + type: Fix + id: 5037 + time: '2023-10-22T05:49:56.0000000+00:00' +- author: deltanedas changes: - - {message: Fix trading post not spawning., type: Fix} - id: 4707 - time: '2023-08-30T11:02:58.0000000+00:00' -- author: Flareguy + - message: Emitters now destroy rocks in 1 hit like crushers and PKAs, you can use + them for laser mining. + type: Tweak + id: 5038 + time: '2023-10-22T05:51:01.0000000+00:00' +- author: metalgearsloth changes: - - {message: Slightly improved the steel monotile sprites., type: Tweak} - id: 4708 - time: '2023-08-31T01:02:35.0000000+00:00' -- author: EmoGarbage404 + - message: Fix tile placement mispredicting and flickering. + type: Fix + id: 5039 + time: '2023-10-22T05:53:39.0000000+00:00' +- author: ElectroJr changes: - - {message: Added the Deathmatch game mode! Brawl it out with other players and - try and be the first to 31 kills., type: Add} - id: 4709 - time: '2023-08-31T01:06:16.0000000+00:00' -- author: liltenhead + - message: Fixed a bug that caused items to get stuck to vehicles when unequipping + clothing. + type: Fix + id: 5040 + time: '2023-10-22T05:54:30.0000000+00:00' +- author: Endecc changes: - - {message: Updated traitor guidebook section., type: Tweak} - id: 4710 - time: '2023-08-31T01:07:18.0000000+00:00' -- author: Alekshhh + - message: Added the Requisition Digi-board, a wireless cargo computer (and high-capacity + clipboard) for the Quartermaster's Locker. + type: Add + - message: Added a new Steal objective for traitors, as this new fancy clipboard + has access to most of Nanotrasen's accounting details! + type: Add + id: 5041 + time: '2023-10-22T07:34:06.0000000+00:00' +- author: stopbreaking changes: - - {message: Changed revenant siphon damage from poison to cold, type: Tweak} - id: 4711 - time: '2023-08-31T01:07:26.0000000+00:00' + - message: Replaced wielding do_after with an interaction cooldown. + type: Tweak + id: 5042 + time: '2023-10-22T13:53:14.0000000+00:00' - author: metalgearsloth changes: - - {message: Foldable items are now predicted., type: Add} - id: 4712 - time: '2023-08-31T01:56:13.0000000+00:00' -- author: Equivocateur + - message: Tile-prying do_after is now predicted. + type: Tweak + id: 5043 + time: '2023-10-23T13:20:33.0000000+00:00' +- author: Tryded changes: - - {message: Overdosing on Robust might have unintended effects on plant-based sentient - lifeforms., type: Tweak} - id: 4713 - time: '2023-08-31T02:01:56.0000000+00:00' -- author: deltanedas + - message: Changed the damage of the double bladed energy sword to 17 heat + 17 + Slash (The Double Bladed energy sword use to deal as much damage as an energy + dagger.) + type: Tweak + id: 5044 + time: '2023-10-23T14:35:33.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: Eating some foods no longer creates a plate out of thin air., type: Tweak} - id: 4714 - time: '2023-08-31T02:14:54.0000000+00:00' -- author: potato1234x + - message: Fixed activating artifacts with magboots. + type: Fix + id: 5045 + time: '2023-10-24T06:18:46.0000000+00:00' +- author: Stray-Pyramid changes: - - {message: Cap now spawns with laceup shoes instead of sneakers, type: Tweak} - id: 4715 - time: '2023-08-31T02:33:40.0000000+00:00' -- author: deltanedas + - message: Ore bags now pickup artifact fragments as well as ores + type: Fix + id: 5046 + time: '2023-10-24T06:20:46.0000000+00:00' +- author: Morb0 changes: - - {message: Dehydrated space carp's price has been lowered back to 2 telecrystals., - type: Tweak} - id: 4716 - time: '2023-08-31T12:41:35.0000000+00:00' -- author: metalgearsloth + - message: Syndicate have issued a new challenge objective for traitors with shuttle + hijacking + type: Add + id: 5047 + time: '2023-10-24T07:55:47.0000000+00:00' +- author: VasilisThePikachu changes: - - {message: Fix horizontal cut shader not compiling on some systems., type: Fix} - id: 4717 - time: '2023-08-31T13:26:40.0000000+00:00' -- author: mirrorcult + - message: Stuttering trait stutters less common. + type: Fix + id: 5048 + time: '2023-10-24T09:28:31.0000000+00:00' +- author: metalgearsloth changes: - - {message: 'Snow planets can now spawn with ice, which gives you very floaty movement!', - type: Add} - - {message: 'The nukie planet now spawns with some ice, and a mini rink to let off - some steam', type: Add} - - {message: Snow now has tile edge support like grass, type: Add} - id: 4718 - time: '2023-08-31T21:31:23.0000000+00:00' -- author: EmoGarbage404 + - message: Fix climbing in the same position (e.g. exiting from medical scanners) + sending you to the farplanes. + type: Fix + id: 5049 + time: '2023-10-24T10:44:09.0000000+00:00' +- author: liltenhead changes: - - {message: Committing suicide no longer makes your body disappear., type: Fix} - id: 4719 - time: '2023-09-01T00:46:05.0000000+00:00' -- author: mirrorcult + - message: Fixed the "examine" trigger for artifacts not having a hint. + type: Fix + id: 5050 + time: '2023-10-24T20:37:16.0000000+00:00' +- author: Stealthbomber16 changes: - - {message: Borgs now have robotic speech verbs, type: Fix} - id: 4720 - time: '2023-09-01T02:12:04.0000000+00:00' -- author: metalgearsloth + - message: You can actually grind corn into cornmeal now. + type: Fix + id: 5051 + time: '2023-10-24T20:38:43.0000000+00:00' +- author: Myakot changes: - - {message: Fix item drops mispredicting., type: Fix} - id: 4721 - time: '2023-09-01T02:30:29.0000000+00:00' -- author: EmoGarbage404 + - message: Skeletons can now heal by pouring milk over themselves + type: Add + id: 5052 + time: '2023-10-24T20:58:34.0000000+00:00' +- author: TemporalOroboros changes: - - {message: 'Foldable objects (folding chairs, bodybags, wheelchairs) now function - again.', type: Fix} - id: 4722 - time: '2023-09-01T02:30:40.0000000+00:00' -- author: mirrorcult + - message: Fixed anomaly locators frantically beeping when they first enter detection + range for an anomaly. + type: Fix + id: 5053 + time: '2023-10-24T21:00:23.0000000+00:00' +- author: 27alaing changes: - - {message: Spears now have a non-blunt melee sound, type: Fix} - id: 4723 - time: '2023-09-01T03:08:02.0000000+00:00' -- author: mirrorcult + - message: The anti-slang system allows for more leeway with certain phrases now. + type: Tweak + - message: The supply radio channel can be used with ":u" again. + type: Fix + id: 5054 + time: '2023-10-25T00:56:19.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: 'Animal parts & organs now have sprites. They aren''t, like, accurate, - but it''s better than being invisible', type: Fix} - id: 4724 - time: '2023-09-01T03:09:22.0000000+00:00' -- author: Nairodian + - message: Medical cyborgs' stethoscopes can no longer be fed to moths to obtain + a free hand. + type: Fix + id: 5055 + time: '2023-10-25T04:51:32.0000000+00:00' +- author: deltanedas changes: - - {message: 'Added two new types of speech verbs, mumbling and stuttering. Add the - suffix ''..'' or ''-'' respectfully, to the end of your sentences to use them.', - type: Add} - - {message: Added several more species specific speech verbs. And grants them to - a whole slew of new mobs., type: Add} - id: 4725 - time: '2023-09-01T03:15:32.0000000+00:00' + - message: Roundstart borg jobs get funny names. + type: Tweak + id: 5056 + time: '2023-10-25T13:00:09.0000000+00:00' - author: EmoGarbage404 changes: - - {message: Lathes now display material quantity in number of sheets., type: Tweak} - - {message: Ejecting materials from lathes now automatically stacks them., type: Tweak} - id: 4726 - time: '2023-09-01T05:28:08.0000000+00:00' -- author: DrSmugleaf + - message: The search bar in vending machines now works. + type: Fix + id: 5057 + time: '2023-10-25T13:01:16.0000000+00:00' +- author: deltanedas changes: - - {message: Fixed nukeops being able to buy job restricted items., type: Fix} - id: 4727 - time: '2023-09-01T07:24:37.0000000+00:00' -- author: carteblanche4me + - message: The Syndicate's chefs are now offering snack boxes for only 1 tc. Usually + contains a toy, drinks and food. + type: Add + id: 5058 + time: '2023-10-25T13:26:27.0000000+00:00' +- author: metalgearsloth changes: - - {message: Hardsuits could toggle on/off not only helmets but different pieces., - type: Tweak} - id: 4728 - time: '2023-09-01T11:13:00.0000000+00:00' -- author: Varen + - message: Fix docking UI not showing other grids. + type: Fix + id: 5059 + time: '2023-10-25T13:28:34.0000000+00:00' +- author: Doru991 changes: - - {message: Examining an item now shows its size., type: Add} - id: 4729 - time: '2023-09-01T15:09:59.0000000+00:00' + - message: Potato batteries can be built by crew. + type: Add + - message: New compact AI chips may be powered via potato batteries. + type: Add + id: 5060 + time: '2023-10-25T13:52:50.0000000+00:00' - author: EmoGarbage404 changes: - - {message: 'The hot potato now does more damage over time, has a shorter timer, - and has a larger explosion.', type: Tweak} - id: 4730 - time: '2023-09-02T00:08:25.0000000+00:00' -- author: ficcialfaint - changes: - - {message: Dumping into disposals no longer drops items onto the ground., type: Fix} - id: 4731 - time: '2023-09-02T04:02:36.0000000+00:00' -- author: ThunderBear2006 - changes: - - {message: The signal button now has new sprites, type: Tweak} - id: 4732 - time: '2023-09-02T13:58:40.0000000+00:00' -- author: Gotimanga + - message: Storage now functions based on slots and sizes, rather than numerical + values. + type: Tweak + id: 5061 + time: '2023-10-25T22:53:39.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: Winter coats now have hoods, type: Add} - id: 4733 - time: '2023-09-02T17:10:19.0000000+00:00' + - message: Adjusted the sizes of space suits and belts. + type: Tweak + - message: Reduced the slot count in the ore bag. + type: Tweak + - message: Fixed not being to create pills at the ChemMaster 5000. + type: Fix + id: 5062 + time: '2023-10-26T02:47:45.0000000+00:00' - author: metalgearsloth changes: - - {message: Fix context menu not opening if you toggled combat mode immediately - prior., type: Fix} - id: 4734 - time: '2023-09-02T20:16:34.0000000+00:00' -- author: DrSmugleaf + - message: Reverted storage to function with numerical values again, instead of + slots and sizes. + type: Tweak + id: 5063 + time: '2023-10-26T08:28:16.776154+00:00' +- author: nmajask changes: - - {message: Fixed devouring as a dragon showing multiple popups., type: Fix} - id: 4735 - time: '2023-09-03T01:59:36.0000000+00:00' -- author: Lank + - message: Bacon burgers require 1 bacon instead of 3 cutlets + type: Tweak + - message: Ghost burgers require 1 ectoplasm instead of 1 ghost sheet + type: Tweak + - message: Tofu creation no longer consumes the enzyme + type: Tweak + - message: Ribs and Mcribs now give back skewers when eaten + type: Fix + id: 5064 + time: '2023-10-27T02:12:35.0000000+00:00' +- author: JoeHammad changes: - - {message: Technology Disks now sell for considerably less., type: Tweak} - id: 4736 - time: '2023-09-03T02:31:53.0000000+00:00' -- author: EmoGarbage404 + - message: Headrevs now have their own music on spawn, credits to A-Guy on youtube + type: Add + id: 5065 + time: '2023-10-27T02:19:35.0000000+00:00' +- author: crazybrain changes: - - {message: 'Microwaves now become bloodstained if you microwave animals inside - of them. Who was doing this?', type: Add} - id: 4737 - time: '2023-09-03T04:03:05.0000000+00:00' + - message: Bodies of dead players who have taken a ghost role now show as "departed + and moved on". + type: Fix + id: 5066 + time: '2023-10-27T02:27:36.0000000+00:00' - author: deltanedas changes: - - {message: The HAMTR and Vim now have builtin scrubbers to remove the risk of carbon - dioxide poisoning., type: Tweak} - id: 4738 - time: '2023-09-03T06:30:26.0000000+00:00' -- author: metalgearsloth - changes: - - {message: 'Fix fulton parenting, also fix it not checking if the target is reachable.', - type: Fix} - - {message: Added fultons to salvage vendor., type: Add} - - {message: Make fultons easy to craft temporarily to get better feedback on it - for expeditions., type: Tweak} - id: 4739 - time: '2023-09-03T12:18:09.0000000+00:00' -- author: lzk228 + - message: Fixed being able to give pAIs implants. + type: Fix + id: 5067 + time: '2023-10-27T02:34:03.0000000+00:00' +- author: deltanedas changes: - - {message: Added spoons and forks to the dinnerware vendor!, type: Add} - id: 4740 - time: '2023-09-03T14:22:28.0000000+00:00' -- author: Diebek + - message: Ion storms have appeared and are causing malfunctions in cyborg law modules. + type: Add + id: 5068 + time: '2023-10-27T02:40:13.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: Updated Taxibot sprites., type: Tweak} - id: 4741 - time: '2023-09-03T14:31:24.0000000+00:00' -- author: metalgearsloth + - message: Foam and smoke can now transfer chemicals when inhaled. Wear internals + to avoid this. + type: Add + - message: Fixed foam dissolution animation. + type: Fix + id: 5069 + time: '2023-10-27T02:52:11.0000000+00:00' +- author: Whisper changes: - - {message: Portable generators no longer rotate with the camera., type: Tweak} - id: 4742 - time: '2023-09-03T17:55:42.0000000+00:00' -- author: Jark255 + - message: Increased funding in an undisclosed NT Operative Squad. + type: Add + - message: CentComm staff will have their proper ID icons on security's sechud. + type: Add + - message: CentComm staff will have undying loyalty to Nanotrasen. + type: Add + - message: ERT funding has been improved. Expect specialized ERT units to be able + to provide more assistance related to their role. + type: Tweak + - message: Cut funding from ERT weaponry. They'll likely be seen using standard + security-level weapons. + type: Remove + - message: Cut funding from ERT uniforms, they no longer have built in armor. + type: Fix + - message: The medical ERT members have had their hardsuits refitted with proper + armor. + type: Fix + - message: Updated the localization files. + type: Fix + id: 5070 + time: '2023-10-27T13:54:43.0000000+00:00' +- author: ficcialfaint changes: - - {message: The firmware bug that wiped critical system parts of pAI alongside the - module itself is now fixed., type: Fix} - id: 4743 - time: '2023-09-03T18:32:41.0000000+00:00' -- author: KingFroozy + - message: Fixed nuclear operatives sound not being played at round start + type: Fix + id: 5071 + time: '2023-10-28T02:28:21.0000000+00:00' +- author: Arteben changes: - - {message: Added Chief Engineer's Turtleneck. You can find it in their locker or - sew it at the Uniform Printer!, type: Add} - id: 4744 - time: '2023-09-03T18:38:28.0000000+00:00' -- author: FinnishPaladin + - message: Nanotrasen improved the health analyzer UI! + type: Tweak + id: 5072 + time: '2023-10-28T05:54:18.0000000+00:00' +- author: Repo changes: - - {message: The station's bardrobes have been stocked with new darker coloured aprons!, - type: Add} - id: 4745 - time: '2023-09-03T21:27:19.0000000+00:00' -- author: Flareguy + - message: Stats menu on Character setup for total and role playtime. + type: Add + id: 5073 + time: '2023-10-28T12:01:11.0000000+00:00' +- author: TemporalOroboros changes: - - {message: Changed a bunch of events to be more common., type: Tweak} - id: 4746 - time: '2023-09-04T03:38:23.0000000+00:00' -- author: qwerltaz + - message: The space lube recipe now produces slightly more lube, but can overflow + its container. + type: Tweak + id: 5074 + time: '2023-10-28T16:46:59.0000000+00:00' +- author: Ubaser changes: - - {message: Air vents and scrubbers can be welded to stop gas flow., type: Add} - id: 4747 - time: '2023-09-04T04:23:39.0000000+00:00' + - message: The bee plush can now be worn on your head. + type: Add + id: 5075 + time: '2023-10-29T03:55:15.0000000+00:00' - author: metalgearsloth changes: - - {message: Fix crusher showing popups on 1-handed swings., type: Fix} - id: 4748 - time: '2023-09-04T04:24:32.0000000+00:00' -- author: metalgearsloth + - message: Audio rework is in which fixes a lot of audio bugs but may also introduce + new ones. + type: Tweak + - message: Grid audio will now attenuate properly over distance and won't be ear + rupturingly loud. + type: Fix + - message: FTL sound should no longer persist as it's attached to the shuttle instead + of being global. + type: Fix + - message: Audio can now start at an offset so if an audio source comes into range + it won't play from the start. + type: Fix + - message: Changed audio attenuation from InverseDistanceClamped to LinearDistanceClamped + so it's smoother. You may need to adjust your master audio volume. + type: Tweak + id: 5076 + time: '2023-10-29T03:58:23.0000000+00:00' +- author: Simyon264 changes: - - {message: Fix NPCs not juking properly if you stand on top of them., type: Fix} - id: 4749 - time: '2023-09-04T04:34:20.0000000+00:00' -- author: lzk228 + - message: The PDA will now ring again, when a new station article gets published. + Reporters rejoice! + type: Fix + id: 5077 + time: '2023-10-29T10:37:40.0000000+00:00' +- author: Subversionary changes: - - {message: Fixed steel stack sprite, type: Fix} - id: 4750 - time: '2023-09-04T04:48:00.0000000+00:00' -- author: deltanedas + - message: Bolas no longer deal stamina damage if you're already ensnared. + type: Tweak + - message: Returned old bola recipe + type: Tweak + - message: Nerfed bola stamina damage from 80 to 55 + type: Tweak + - message: You can break out of bolas while moving. + type: Tweak + id: 5078 + time: '2023-10-29T22:27:44.0000000+00:00' +- author: nmajask changes: - - {message: Refilling magazines is now done automatically rather than spam clicking - each bullet., type: Tweak} - id: 4751 - time: '2023-09-04T04:49:49.0000000+00:00' -- author: qwerltaz + - message: Flannel jackets now keep you warm. + type: Tweak + id: 5079 + time: '2023-10-30T00:08:06.0000000+00:00' +- author: metalgearsloth changes: - - {message: Anomalies and artifacts cannot push observers anymore., type: Fix} - id: 4752 - time: '2023-09-04T04:52:11.0000000+00:00' -- author: deltanedas + - message: Made thindows slightly thicker (0.03m to 0.13m) to reduce instances of + tunneling through them at high speeds. This only affects the outer edge so you + can still move through two parallel thindows on the same tile. + type: Tweak + id: 5080 + time: '2023-10-30T11:48:12.0000000+00:00' +- author: Vasilis changes: - - {message: The Syndicate is now offering carp suit bundles to its operatives to - improve morale., type: Add} - id: 4753 - time: '2023-09-04T05:16:36.0000000+00:00' -- author: AlexMorgan3817 - changes: - - {message: Fixed gravitational wells of supermatter and whitehole grenade, type: Fix} - id: 4754 - time: '2023-09-04T12:23:49.0000000+00:00' -- author: JustTNE - changes: - - {message: The ChemMaster 4000 has been upgraded to allow drag-and-drop insertion - of reagents!, type: Tweak} - id: 4755 - time: '2023-09-04T12:53:13.0000000+00:00' -- author: liltenhead + - message: Fixed the issue where mice were cannibalizing fallen brethren. + type: Fix + id: 5081 + time: '2023-10-31T01:49:05.0000000+00:00' +- author: notquitehadouken changes: - - {message: 'Rebalanced the conversion rates of gold, silver, uranium, and bananium - ores.', type: Tweak} - id: 4756 - time: '2023-09-04T12:57:52.0000000+00:00' -- author: chromiumboy + - message: Despite being just as effective as the head, you no longer hit people + with the handle of fire axes. + type: Fix + id: 5082 + time: '2023-10-31T03:30:59.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: 'Radiation collectors now need an inserted gas tank filled with plasma - to function. The plasma gas will turn into tritium over time, so replace it - with fresh plasma as needed.', type: Tweak} - id: 4757 - time: '2023-09-04T13:11:58.0000000+00:00' -- author: deltanedas + - message: Skeletal crewmates have arrived on the station for Halloween only. + type: Add + id: 5083 + time: '2023-10-31T03:40:12.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: Emagging disposal units both works again and makes them silent., type: Tweak} - id: 4758 - time: '2023-09-04T14:11:35.0000000+00:00' -- author: deltanedas + - message: Storage containers can now block large items from being inserted into + them, regardless of the space available. + type: Add + - message: Belts now function on a slot based storage system rather than a volume + based one. + type: Add + - message: Standardized item sizes into regular categories. + type: Tweak + id: 5084 + time: '2023-10-31T03:55:56.0000000+00:00' +- author: Daemon changes: - - {message: Armed nuclear bombs now have warning lights. Set off a nuke and watch - the light spin!!!, type: Tweak} - id: 4759 - time: '2023-09-04T14:14:10.0000000+00:00' -- author: deltanedas + - message: Add pea plants. + type: Add + id: 5085 + time: '2023-10-31T04:09:13.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: A fracture in bluespace is now causing spacemen that hitchhike on shuttles - to be gibbed before and after FTL travel. Keep legs inside the vehicle at all - times., type: Tweak} - id: 4760 - time: '2023-09-04T14:16:10.0000000+00:00' -- author: lzk228 + - message: Smoke now properly transfers reagents when inhaled. + type: Fix + id: 5086 + time: '2023-10-31T12:43:18.0000000+00:00' +- author: Lank changes: - - {message: All bots now uses robot typing indicator, type: Tweak} - id: 4761 - time: '2023-09-04T14:21:53.0000000+00:00' -- author: DrTeaSpoon - changes: - - {message: Plant mutations can now alter plant gas and chemical production., type: Add} - id: 4762 - time: '2023-09-04T16:24:39.0000000+00:00' -- author: router - changes: - - {message: Shuttles no longer go hog wild whenever they're above their former maximum - velocity of 20., type: Fix} - - {message: 'Upgraded thrusters now contribute to a direction-specific thrust factor, - calculated by dividing total thrust over thrust if every thruster was T1. The - maximum speed with T4 parts is 67.5.', type: Add} - id: 4763 - time: '2023-09-04T19:33:47.0000000+00:00' -- author: PixelTK + - message: Slimes are fully immune to Nitrous Oxide again. + type: Fix + id: 5087 + time: '2023-10-31T12:57:27.0000000+00:00' +- author: potato1234x changes: - - {message: Arachnids no longer have two additional hands as well as their damage - modifiers., type: Remove} - - {message: 'Arachnids can now craft more structures, unique clothes, and cloth - using their webs.', type: Add} - - {message: Arachnids now get more hungry when spinning webs., type: Tweak} - - {message: Moths can now eat silk., type: Tweak} - id: 4764 - time: '2023-09-04T20:02:54.0000000+00:00' -- author: Doru991 + - message: Added cockroaches. Expect to see these mapped into maints soon. + type: Add + - message: Added the glockroach admeme. + type: Add + id: 5088 + time: '2023-10-31T20:28:43.0000000+00:00' +- author: Psychpsyo changes: - - {message: Genetically damaged plants can now be repaired with small amounts of - phalanximine., type: Add} - id: 4765 - time: '2023-09-04T20:11:41.0000000+00:00' -- author: Fromoriss + - message: Soap and water now makes soapy water which can clean dirt off of floors. + Also please don't eat the soap, it's not good for you. + type: Add + id: 5089 + time: '2023-10-31T20:39:12.0000000+00:00' +- author: brainfood1183 changes: - - {message: Added cute and fluffy moth plushie!, type: Add} - id: 4766 - time: '2023-09-04T20:18:03.0000000+00:00' -- author: DrSmugleaf + - message: Arachnid and other Blue (hemocyanin) blooded creatures now require copper + to treat bloodloss instead of iron and brute medkits contain 2 copper pills + and 1 less iron pill. + type: Add + id: 5090 + time: '2023-10-31T20:41:26.0000000+00:00' +- author: TheShuEd changes: - - {message: Fix deployable barriers., type: Fix} - id: 4767 - time: '2023-09-04T22:33:40.0000000+00:00' -- author: Endecc + - message: When the anomaly explodes, a very expensive core falls from it. Be sure + to sell it in 10 minutes before it becomes useless. + type: Add + id: 5091 + time: '2023-10-31T23:20:52.0000000+00:00' +- author: Vasilis changes: - - {message: 'Added the luxury mining hardsuit, a lighter and more versatile mining - hardsuit styled after the Quartermaster.', type: Add} - - {message: 'Added luxury mining hardsuit cargo order, because this ELITE cargo - suit is too expensive to stock on every station.', type: Add} - id: 4768 - time: '2023-09-05T03:42:09.0000000+00:00' -- author: deltanedas + - message: Getting turned into a rev will now play the rev antag sound effect. + type: Add + id: 5092 + time: '2023-11-01T03:11:09.0000000+00:00' +- author: Titian3 changes: - - {message: 'Magnets can no longer be deconstructed while active, preventing a few - bugs.', type: Fix} - id: 4769 - time: '2023-09-05T16:20:55.0000000+00:00' -- author: Slava0135 + - message: No more skeletal crewmates. + type: Remove + id: 5093 + time: '2023-11-01T21:47:56.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: 'Gas tanks now have valves, which can be used to vent their contents.', - type: Add} - id: 4770 - time: '2023-09-05T17:20:05.0000000+00:00' -- author: deltanedas + - message: Many items have had their sizes adjusted. + type: Tweak + - message: Survival boxes and medkits can no longer hold more items than their size + would suggest. + type: Tweak + - message: Fixed missing max size text in storage UIs + type: Fix + - message: Fixed the ore bag being unable to collect items when there is still room. + type: Fix + - message: Fixed the food cart not being able to hold anything. + type: Fix + id: 5094 + time: '2023-11-01T23:19:41.0000000+00:00' +- author: liltenhead changes: - - {message: Constructed hydroponics trays now start empty., type: Tweak} - id: 4771 - time: '2023-09-05T20:15:06.0000000+00:00' -- author: metalgearsloth + - message: Fixed nukie medics not spawning with their hypospray. + type: Fix + id: 5095 + time: '2023-11-02T19:35:56.0000000+00:00' +- author: TemporalOroboros changes: - - {message: Revert 25% click attack buff., type: Tweak} - id: 4772 - time: '2023-09-06T08:30:23.0000000+00:00' + - message: Thieving gloves now hide the entire pickpocketing action from other players, + not just the popup. + type: Tweak + id: 5096 + time: '2023-11-03T02:10:59.0000000+00:00' +- author: themias + changes: + - message: Tank pressure can no longer be set below zero + type: Fix + id: 5097 + time: '2023-11-03T02:14:57.0000000+00:00' - author: deltanedas changes: - - {message: Fixes crates requiring to be welded to deconstruct them., type: Fix} - id: 4773 - time: '2023-09-06T18:18:14.0000000+00:00' -- author: potato1234x + - message: Increased the capacity of Bags of holding. + type: Tweak + id: 5098 + time: '2023-11-03T11:31:03.0000000+00:00' +- author: Tunguso4ka changes: - - {message: Added back the old glass tiles while keeping the new ones as a fancier - alternative., type: Add} - id: 4774 - time: '2023-09-06T21:41:53.0000000+00:00' -- author: Endecc + - message: Reptilians can now eat rat kebabs. + type: Fix + id: 5099 + time: '2023-11-03T17:50:32.0000000+00:00' +- author: photonicDog + changes: + - message: Moth Head (Moonfly) marking texture is no longer rotated incorrectly, + causing it to appear offset from the player + type: Fix + id: 5100 + time: '2023-11-03T20:37:26.0000000+00:00' +- author: TheShuEd changes: - - {message: Secure crates are now craftable with 5 steel and 2 LV cable, type: Add} - id: 4775 - time: '2023-09-07T00:25:25.0000000+00:00' -- author: lzk228 + - message: Candles can now be found in PietyVend. + type: Add + id: 5101 + time: '2023-11-04T05:53:52.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: Grog recipe now requires sugar., type: Tweak} - id: 4776 - time: '2023-09-07T00:32:24.0000000+00:00' -- author: Velcroboy + - message: Fixed being able to sell the same bounty multiple times. + type: Fix + id: 5102 + time: '2023-11-04T13:19:24.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: Chef Velcroboy has been in the kitchen messin around with the botanicals. - New recipes have been developed for some extra "special" brownies. Careful with - these..., type: Add} - id: 4777 - time: '2023-09-07T01:21:14.0000000+00:00' -- author: Varen - changes: - - {message: 'FTL transit on damaged shuttles is not lethal anymore, but passengers - should still hold on tight and remain inside the vehicle.', type: Tweak} - id: 4778 - time: '2023-09-07T02:13:32.0000000+00:00' -- author: Vasilis + - message: Fixed needing to manually deselect to switch between borg modules. + type: Fix + id: 5103 + time: '2023-11-04T13:29:19.0000000+00:00' +- author: TheEmber changes: - - {message: Hyposprays can inject their solutions back into beakers/jugs/whatever - can hold the solution., type: Tweak} - id: 4779 - time: '2023-09-07T16:49:02.0000000+00:00' -- author: deltanedas + - message: Changed vomit probability for soap to 20% and soapy water to 10%. + type: Tweak + id: 5104 + time: '2023-11-04T15:19:30.0000000+00:00' +- author: Ubaser changes: - - {message: Bananium's radiation intensity increases in large stacks now., type: Tweak} - id: 4780 - time: '2023-09-07T21:59:08.0000000+00:00' -- author: notafet + - message: The senior physician now spawns with a medical beret. + type: Tweak + id: 5105 + time: '2023-11-04T15:20:09.0000000+00:00' +- author: themias changes: - - {message: Security techfabs now produce magazines instead of individual cartridges., - type: Tweak} - id: 4781 - time: '2023-09-08T02:16:20.0000000+00:00' -- author: deltanedas + - message: You can now drag and drop to enter mechs. + type: Tweak + id: 5106 + time: '2023-11-04T15:23:46.0000000+00:00' +- author: daerSeebaer changes: - - {message: Advanced Laser Guns are now in the Tier 3 Portable Microfusion Weaponry - research., type: Tweak} - id: 4782 - time: '2023-09-08T02:25:05.0000000+00:00' -- author: SonicHDC + - message: Radiation Shutters (and some other things) are now better at keeping + out radiation. + type: Tweak + id: 5107 + time: '2023-11-04T15:25:56.0000000+00:00' +- author: themias + changes: + - message: Critical vaccinated crew no longer immune to zombie fists + type: Fix + id: 5108 + time: '2023-11-04T17:57:21.0000000+00:00' +- author: themias + changes: + - message: Fixed accidental crayon graffiti when writing on paper + type: Fix + id: 5109 + time: '2023-11-04T22:44:10.0000000+00:00' +- author: crazybrain changes: - - {message: Added steel bench!, type: Add} - - {message: Fixed some sprites rotations!, type: Fix} - id: 4783 - time: '2023-09-09T12:56:11.0000000+00:00' + - message: Mice no longer eat soap. + type: Fix + id: 5110 + time: '2023-11-05T23:47:19.0000000+00:00' - author: deltanedas changes: - - {message: Gauze is now more effective at treating slash and piercing damage., - type: Tweak} - id: 4784 - time: '2023-09-09T18:32:00.0000000+00:00' -- author: JoeHammad + - message: Chemistry bags had their storage rebalanced and can now hold beakers. + type: Tweak + id: 5111 + time: '2023-11-05T23:49:29.0000000+00:00' +- author: deltanedas changes: - - {message: Fingerless gloves are now available in the SecDrobe, type: Add} - id: 4785 - time: '2023-09-09T18:59:03.0000000+00:00' -- author: DrTeaSpoon + - message: Fixed hotplates and some other devices not working. + type: Fix + id: 5112 + time: '2023-11-05T23:49:59.0000000+00:00' +- author: RiceMar + changes: + - message: Paper is now lathable from the sheet-meister 2000. + type: Add + - message: Crates of paper can now be purchased from the cargo request computer. + type: Add + - message: The sheet-meister 2000 research unlock has moved from the civilian services + tree to the industrial tree. + type: Tweak + id: 5113 + time: '2023-11-06T02:14:03.0000000+00:00' +- author: IProduceWidgets + changes: + - message: Vomit, so much vomit. Now vomiting chems are less awful. + type: Remove + id: 5114 + time: '2023-11-06T02:16:56.0000000+00:00' +- author: themias + changes: + - message: Bicaridine, Dylovene and Crytobiolin now metabolize at the same rate + for all species. + type: Fix + id: 5115 + time: '2023-11-06T02:18:21.0000000+00:00' +- author: Tunguso4ka changes: - - {message: Crossing plants may now combine their produced chemicals., type: Tweak} - id: 4786 - time: '2023-09-09T21:54:37.0000000+00:00' -- author: DrSmugleaf + - message: CentCom allocated funds for the purchase of notice boards for kitchens + type: Add + id: 5116 + time: '2023-11-06T02:18:39.0000000+00:00' +- author: Ubaser changes: - - {message: Fixed action ordering., type: Fix} - - {message: Fixed not being able to wake up., type: Fix} - - {message: Fixed zombies not being able to toggle combat mode., type: Fix} - - {message: Fixed getting duplicate crit actions., type: Fix} - - {message: Fixed the mime not getting the invisible wall action., type: Fix} - id: 4787 - time: '2023-09-09T23:14:17.0000000+00:00' -- author: DrSmugleaf + - message: The access configurator now has a proper sprite. + type: Tweak + id: 5117 + time: '2023-11-06T02:21:41.0000000+00:00' +- author: Nimfar11 changes: - - {message: Fixed not being able to use vehicle horns., type: Fix} - id: 4788 - time: '2023-09-09T23:39:29.0000000+00:00' + - message: Adds three new mobs from the Living Light family + type: Add + id: 5118 + time: '2023-11-06T02:24:15.0000000+00:00' +- author: IProduceWidgets + changes: + - message: Livestock crates are no longer airtight. + type: Tweak + id: 5119 + time: '2023-11-06T02:27:48.0000000+00:00' +- author: IntegerTempest + changes: + - message: Added syndicate hud and syndicate visor for nuclear operatives + type: Add + id: 5120 + time: '2023-11-06T02:36:08.0000000+00:00' +- author: JoeHammad + changes: + - message: Aspid station has had its cargo department expanded. + type: Tweak + id: 5121 + time: '2023-11-06T02:36:46.0000000+00:00' +- author: ChrisThirtle + changes: + - message: Fixed certain objects not fitting into crates and lockers due to the + angle of space itself. + type: Fix + id: 5122 + time: '2023-11-06T02:40:25.0000000+00:00' - author: deltanedas changes: - - {message: Monkeys can now bump doors open and strip mobs like people can., type: Tweak} - id: 4789 - time: '2023-09-10T02:51:51.0000000+00:00' + - message: Microreactor powercells can be researched under the Tier 3 Portable Fission + technology, they slowly recharge on their own. + type: Add + id: 5123 + time: '2023-11-06T03:00:12.0000000+00:00' - author: deltanedas changes: - - {message: 'Ian/Old Ian/Lisa yield corgi hide when butchered, which can be worn - as a hat or crafted into an ian suit.', type: Add} - id: 4790 - time: '2023-09-10T03:04:33.0000000+00:00' -- author: Flareguy + - message: IEDs can be crafted in desperate times to make a small explosion. + type: Add + id: 5124 + time: '2023-11-06T03:04:48.0000000+00:00' +- author: Whisper changes: - - {message: Added cobweb decorations for mappers to utilize., type: Add} - id: 4791 - time: '2023-09-10T03:37:56.0000000+00:00' -- author: arimah + - message: Blood when consumed metabolizes into uncooked proteins, and sates thirst + of non-humans + type: Add + - message: Non-humans will have a small amount of hunger sated when consuming uncooked + proteins. + type: Add + - message: Humans will take poison damage with a chance to vomit when metabolizing + uncooked protein. + type: Tweak + - message: Humans take less damage from uncooked proteins (2->1) + type: Tweak + - message: Humans will "feel sick" when they metabolize uncooked proteins. + type: Add + id: 5125 + time: '2023-11-06T03:51:33.0000000+00:00' +- author: TheShuEd changes: - - {message: Particle Accelerators can now be constructed again, type: Fix} - id: 4792 - time: '2023-09-10T03:42:42.0000000+00:00' -- author: metalgearsloth + - message: Added anomaly synchronizer! It allows you to link anomaly activity to + triggers on different devices. + type: Add + id: 5126 + time: '2023-11-06T04:02:03.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: Revert a PR causing container issues., type: Fix} - id: 4793 - time: '2023-09-10T11:46:36.0000000+00:00' -- author: ElectroJr + - message: Fixed a few items with invalid sizes. + type: Fix + id: 5127 + time: '2023-11-06T07:20:50.0000000+00:00' +- author: Tunguso4ka changes: - - {message: Replays now record ghost chat., type: Fix} - id: 4794 - time: '2023-09-10T11:49:45.0000000+00:00' -- author: Interrobang01 + - message: NT found clown and mime lockers in its stockpiles. + type: Add + id: 5128 + time: '2023-11-07T23:38:18.0000000+00:00' +- author: VasilisThePikachu changes: - - {message: Cognizine now works on monkeys., type: Fix} - - {message: Fixed Cognizine not working on player-controlled animals., type: Fix} - id: 4795 - time: '2023-09-10T20:21:54.0000000+00:00' + - message: Janibots and medibots cant bleed oil anymore + type: Remove + - message: Janibots and medibots health status on the inspection menu uses proper + "robot" terms (will say they are dented etc) + type: Fix + id: 5129 + time: '2023-11-08T01:24:05.0000000+00:00' - author: Vasilis changes: - - {message: All pda's with built in medical scanners now take one second to scan., - type: Tweak} - id: 4796 - time: '2023-09-10T23:01:05.0000000+00:00' -- author: metalgearsloth - changes: - - {message: Made tooltips open faster and anchor bottom-left to mouse cursor instead - of top-left., type: Tweak} - id: 4797 - time: '2023-09-11T03:53:36.0000000+00:00' -- author: ElectroJr + - message: The cloning pod and medical scanner can now fit through vertical doors. + type: Fix + id: 5130 + time: '2023-11-08T01:24:25.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: Fix handheld crew monitor., type: Fix} - id: 4798 - time: '2023-09-11T05:01:54.0000000+00:00' -- author: metalgearsloth + - message: Added speed boots! When powered, this research tech allows you to run + significantly faster. + type: Add + id: 5131 + time: '2023-11-08T01:25:44.0000000+00:00' +- author: Vasilis changes: - - {message: Fix ghost warps., type: Fix} - id: 4799 - time: '2023-09-11T05:43:25.0000000+00:00' -- author: metalgearsloth + - message: Characters with the pacifist trait will get their pacifist trait removed + as soon as they turn into a zombie. + type: Fix + id: 5132 + time: '2023-11-08T01:27:50.0000000+00:00' +- author: FluidRock + changes: + - message: Lizards rediscovered their hunger for crayons. + type: Tweak + id: 5133 + time: '2023-11-08T01:28:37.0000000+00:00' +- author: Darkie + changes: + - message: Added directional window cracks when damaged. + type: Add + id: 5134 + time: '2023-11-08T01:31:45.0000000+00:00' +- author: PixelTK changes: - - {message: Make the role timer tooltip look much nicer., type: Tweak} - id: 4800 - time: '2023-09-11T05:44:22.0000000+00:00' -- author: Morb0 + - message: Arachnids can now weave a simple shield made out of silk. + type: Add + - message: Arachnids now have two additional pocket slots. In exchange, they no + longer have slower hunger. + type: Tweak + - message: Arachnids are now the only species that can craft with silk. + type: Tweak + - message: Arachnids now produce silk more efficiently. + type: Tweak + id: 5135 + time: '2023-11-08T20:18:53.0000000+00:00' +- author: Brandon_H + changes: + - message: Fixed a spelling mistake in the description of the emergency medipen. + type: Fix + id: 5136 + time: '2023-11-08T20:23:58.0000000+00:00' +- author: ps3moira + changes: + - message: Changed electric grill sprites + type: Tweak + id: 5137 + time: '2023-11-08T20:24:36.0000000+00:00' +- author: KingFroozy changes: - - {message: Added indicator near SSD players, type: Add} - id: 4801 - time: '2023-09-11T05:52:56.0000000+00:00' -- author: mirrorcult + - message: Nitrile gloves have got their own sprite. + type: Add + id: 5138 + time: '2023-11-08T20:31:24.0000000+00:00' +- author: themias + changes: + - message: Reduced clicks needed to dispense vending machine items + type: Tweak + id: 5139 + time: '2023-11-09T01:42:07.0000000+00:00' +- author: themias + changes: + - message: Fixed issue getting stuck while vaulting in space + type: Fix + id: 5140 + time: '2023-11-09T01:43:43.0000000+00:00' +- author: eddiedd + changes: + - message: cotton seeds are now available from the MegaSeed Servitor. + type: Add + id: 5141 + time: '2023-11-09T01:54:07.0000000+00:00' +- author: Vasilis changes: - - {message: 'Jetpacks, being weightless, and flying mobs can now pass over lava - & chasms unharmed (as well as other obstacles)', type: Add} - - {message: Observers are no longer affected by ice physics, type: Fix} - - {message: 'Step trigger (slipping, shards, etc) now by default won''t trigger - if the stepping entity is weightless or set as in air', type: Tweak} - id: 4802 - time: '2023-09-11T06:03:17.0000000+00:00' -- author: DrTeaSpoon - changes: - - {message: 'Fixed Tomatoes, Eggs, Watermelons and Flourbags not leaving puddles - based on what they actually contain.', type: Fix} - id: 4803 - time: '2023-09-11T08:16:27.0000000+00:00' -- author: DrSmugleaf + - message: LOOC messages will appear on top of your head to be more noticeable. + type: Add + - message: For anyone who does not like LOOC messages appearing above people's heads, + just disable it in settings! + type: Add + id: 5142 + time: '2023-11-09T09:18:59.0000000+00:00' +- author: ravage123321 + changes: + - message: Kitten was added + type: Add + - message: Cats now deals piercing damage istead of blunt + type: Tweak + id: 5143 + time: '2023-11-09T12:24:00.0000000+00:00' +- author: Emisse changes: - - {message: Fixed error when equipping the energy katana as a space ninja., type: Fix} - id: 4804 - time: '2023-09-11T09:04:03.0000000+00:00' -- author: metalgearsloth + - message: Borgs have had a QOL pass, they are access locked now and the department + specific ones start with applicable tools. + type: Tweak + id: 5144 + time: '2023-11-09T22:22:50.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: Storage (e.g. backpacks) is now predicted and using FancyWindow., type: Fix} - id: 4805 - time: '2023-09-11T11:20:47.0000000+00:00' -- author: chromiumboy + - message: Cyborgs are much more resilient and no longer crumble immediately upon + death. + type: Tweak + id: 5145 + time: '2023-11-09T23:14:06.0000000+00:00' +- author: PixelTK changes: - - {message: Artifact containers now heavily suppress the radioactivity of any irradiated - alien artifacts that they contain, type: Add} - id: 4806 - time: '2023-09-11T19:58:26.0000000+00:00' -- author: DrSmugleaf + - message: Fixed the strip menu for Arachnids. + type: Fix + id: 5146 + time: '2023-11-09T23:42:16.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: Fixed "failed to insert into storage" messages being broken., type: Fix} - id: 4807 - time: '2023-09-11T22:57:27.0000000+00:00' -- author: metalgearsloth + - message: Reduced material costs for cyborg limbs, MMIs, positronic brains, and + cyborg modules. + type: Tweak + id: 5147 + time: '2023-11-10T01:31:04.0000000+00:00' +- author: Vasilis changes: - - {message: Added automatic area pickups to ore bags., type: Add} - - {message: Fix stackable items not playing the pickup animation on pickup., type: Fix} - id: 4808 - time: '2023-09-12T12:34:04.0000000+00:00' -- author: metalgearsloth + - message: Made stasis beds actually buildable now. They require 2 steel, 3 wires, + a capacitor and manipulator (and of course the board). + type: Tweak + - message: Fixed a bug where the stasis bed getting deconstructed would delete the + player laying on it. + type: Fix + - message: Microwave contents will be ejected on deconstruct. + type: Fix + id: 5148 + time: '2023-11-11T06:42:59.0000000+00:00' +- author: Doru991 changes: - - {message: Fix lights not always updating., type: Fix} - id: 4809 - time: '2023-09-12T14:35:08.0000000+00:00' -- author: JoeHammad + - message: Entry-level cyborg modules for each chassis are now craftable by default. + type: Tweak + id: 5149 + time: '2023-11-11T06:43:13.0000000+00:00' +- author: ElectroJr changes: - - {message: 'Nukies now start with a microbomb implant in their backpack, remember - to communicate if you''re gonna use it!', type: Add} - - {message: The microbomb implanter has been removed from the nukie uplink, type: Remove} - id: 4810 - time: '2023-09-12T15:09:33.0000000+00:00' -- author: deltanedas + - message: Fixed spectating a player in a replay not following the spectated player + when they become a ghost. + type: Fix + id: 5150 + time: '2023-11-11T06:45:47.0000000+00:00' +- author: Brandon_H + changes: + - message: Plants can no longer grow without sufficient water and nutrients. + type: Fix + id: 5151 + time: '2023-11-11T19:12:13.0000000+00:00' +- author: Vasilis changes: - - {message: Fixed ninja suit not having any actions., type: Fix} - id: 4811 - time: '2023-09-12T20:54:19.0000000+00:00' -- author: AndrewEyeke + - message: Bees can no longer turn into zombies. + type: Fix + id: 5152 + time: '2023-11-11T19:15:59.0000000+00:00' +- author: Slava0135 changes: - - {message: Nuclear Operatives will be able to buy carps. They are limited to 10 - per operative., type: Add} - id: 4812 - time: '2023-09-12T21:50:03.0000000+00:00' -- author: metalgearsloth + - message: Fixed radiation interrupting actions. + type: Fix + id: 5153 + time: '2023-11-12T18:02:39.0000000+00:00' +- author: ElectroJr changes: - - {message: Fix eye not updating correctly when stopping riding (e.g. leaving vehicles)., - type: Fix} - id: 4813 - time: '2023-09-13T04:25:35.0000000+00:00' -- author: Doru991 + - message: Fixed FOV & light rendering not being re-enabled when players stop spectating + as a ghost. + type: Fix + id: 5154 + time: '2023-11-12T18:36:00.0000000+00:00' +- author: eddiedd + changes: + - message: Fresh harvested corn can actually be ground for cornmeal now. + type: Fix + id: 5155 + time: '2023-11-12T23:05:32.0000000+00:00' +- author: deltanedas changes: - - {message: Welders can be toggled off again., type: Fix} - id: 4814 - time: '2023-09-13T04:35:05.0000000+00:00' -- author: metalgearsloth + - message: Raw eggs are no longer safe to eat, you have to make a dish or boil them + first. + type: Tweak + id: 5156 + time: '2023-11-12T23:18:48.0000000+00:00' +- author: VasilisThePikachu changes: - - {message: Fix fultons being toggleable by any entity., type: Fix} - id: 4815 - time: '2023-09-13T08:01:22.0000000+00:00' -- author: Nairodian + - message: Added a Puppy Ian, Awww. + type: Add + - message: Puppy Ian can be randomly chosen to be hop's pet along with the other + corgis. + type: Add + - message: Added a puppy corgi crate, it contains a single puppy for hard times. + It can be order by cargo. + type: Add + id: 5157 + time: '2023-11-12T23:24:07.0000000+00:00' +- author: ElectroJr changes: - - {message: Security Barriers can now be ordered by cargo., type: Tweak} - id: 4816 - time: '2023-09-13T08:56:16.0000000+00:00' -- author: metalgearsloth + - message: Fixed being unable to re-add the storage implant action to the actions + bar once it has been removed. + type: Fix + id: 5158 + time: '2023-11-12T23:29:46.0000000+00:00' +- author: TheShuEd changes: - - {message: Fix shuttles docking with planetmaps., type: Fix} - id: 4817 - time: '2023-09-13T12:06:15.0000000+00:00' -- author: deltanedas + - message: New Thief figurine! New void cloak! + type: Add + id: 5159 + time: '2023-11-12T23:41:45.0000000+00:00' +- author: Nimfar11 changes: - - {message: Training bombs are now available for purchase at cargo., type: Add} - id: 4818 - time: '2023-09-13T16:54:48.0000000+00:00' -- author: deltanedas + - message: Added space sharkminnow from the carp family. + type: Add + - message: Added Bloodsucker's animal organs to heal by drinking blood. + type: Add + id: 5160 + time: '2023-11-13T00:42:48.0000000+00:00' +- author: themias + changes: + - message: The round end summary screen now lists the syndies in custody. (Cuffed + on the shuttle) + type: Add + id: 5161 + time: '2023-11-13T10:04:33.0000000+00:00' +- author: metalgearsloth changes: - - {message: 'Ninjas can spawn from 30 mins in, instead of 45.', type: Tweak} - id: 4819 - time: '2023-09-13T22:02:33.0000000+00:00' + - message: Make space ambient music more likely to play by reducing the required + space range. + type: Tweak + id: 5162 + time: '2023-11-13T11:10:56.0000000+00:00' - author: metalgearsloth changes: - - {message: Fix storage windows not closing upon gamestate change., type: Fix} - id: 4820 - time: '2023-09-13T22:03:45.0000000+00:00' + - message: Expedition timer bumped from 7 minutes to 11 minutes. + type: Tweak + id: 5163 + time: '2023-11-13T22:39:34.0000000+00:00' +- author: Simyon + changes: + - message: Muting the station news notification on your PDA now works again. + type: Fix + id: 5164 + time: '2023-11-13T22:43:09.0000000+00:00' - author: deltanedas changes: - - {message: Fixed microbomb implanters not spawning in nukie duffelbags., type: Fix} - id: 4821 - time: '2023-09-14T00:21:33.0000000+00:00' -- author: Flareguy + - message: Explosions now damage items in containers like backpacks or equipped + items. + type: Tweak + id: 5165 + time: '2023-11-13T22:57:52.0000000+00:00' +- author: TheShuEd changes: - - {message: The syndicate bomb now has a unique beeping sound., type: Add} - - {message: The training bomb now has the same amount of wires as the real deal., - type: Tweak} - - {message: The syndicate bomb's minimum timer setting is now 120 seconds (30 seconds - longer then before.), type: Tweak} - - {message: Fixed the syndicate bomb's name & description in the uplink showing - up incorrectly., type: Fix} - id: 4822 - time: '2023-09-14T00:26:58.0000000+00:00' -- author: Nimfar11 + - message: 'Now chefs can make a cake cat. You will need: 1 Cake plain, 1 raisin + snack, 1 animal heart, 5u cognizine, 15u milk, 15 second in microwave. And new + sweet ghost role CAK is created!' + type: Add + id: 5166 + time: '2023-11-13T23:23:03.0000000+00:00' +- author: TheShuEd changes: - - {message: "Added a telescopi\u0441 shield to the Advanced Riot Control Technology.", - type: Add} - id: 4823 - time: '2023-09-14T01:03:13.0000000+00:00' -- author: notafet + - message: Animal carriers can now be found in the maintenance or bought in cargo. + They are useful for carrying someone heavy in your arms. + type: Add + id: 5167 + time: '2023-11-13T23:55:48.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: Cryogenic gas cylinders are now available for purchase from cargo., - type: Add} - id: 4824 - time: '2023-09-14T03:37:13.0000000+00:00' -- author: Whisper + - message: The action bar now dynamically expands to the amount of actions present. + type: Tweak + - message: The action bar is now positioned along the top of the screen in the separated + UI mode. + type: Tweak + - message: Fixed the action bar not displaying the correct hotkeys for actions. + type: Fix + id: 5168 + time: '2023-11-14T03:27:14.0000000+00:00' +- author: ElectroJr changes: - - {message: 'Guardians (holo, holoclown) have AI control before a ghost takes over - the role, and after a player ghosts from it.', type: Add} - - {message: Guardians can be summoned without a player in the role., type: Tweak} - id: 4825 - time: '2023-09-14T03:51:10.0000000+00:00' -- author: Doru991 + - message: Fixed candle in-hand sprites not updating when the candle is extinguished. + type: Fix + - message: Fixed flammable object collisions being processed twice. This may affect + how fires spread. + type: Fix + id: 5169 + time: '2023-11-14T11:55:45.0000000+00:00' +- author: Chubbygummibear + changes: + - message: Fixed thrown entities physics being set to sleep if the throw was stopped + by colliding with something + type: Fix + id: 5170 + time: '2023-11-14T12:54:35.0000000+00:00' +- author: themias + changes: + - message: Science built cyborgs can now emote + type: Fix + id: 5171 + time: '2023-11-14T23:27:27.0000000+00:00' +- author: Sirionaut + changes: + - message: cloth can be crafted from cotton (made from cotton bols) + type: Add + id: 5172 + time: '2023-11-14T23:27:56.0000000+00:00' +- author: deltanedas changes: - - {message: 'When mutated, some plants have been observed to occasionally transform - into entirely different species.', type: Add} - id: 4826 - time: '2023-09-14T04:56:24.0000000+00:00' -- author: Psychpsyo + - message: Added the disposal signal router which is controlled by signals instead + of tags. + type: Add + id: 5173 + time: '2023-11-14T23:30:43.0000000+00:00' +- author: Slava0135 changes: - - {message: Janitors can now take the shark plushie for a walk in their bucket., - type: Add} - id: 4827 - time: '2023-09-14T07:17:45.0000000+00:00' -- author: DrSmugleaf + - message: Traversing through disposal system now deals some blunt damage on every + turn. Be advised! + type: Tweak + - message: Fixed clang sound not playing when traversing through disposal system. + type: Fix + id: 5174 + time: '2023-11-15T00:52:43.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: Fixed some missing localization., type: Fix} - id: 4828 - time: '2023-09-14T10:08:03.0000000+00:00' -- author: Nairodian + - message: Artifacts now have a chance to spit out both medicinal and poisonous + foam. + type: Add + id: 5175 + time: '2023-11-15T01:34:43.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: Holobarrier projectors can now be researched and produced in the security - techfab., type: Tweak} - id: 4829 - time: '2023-09-14T23:34:43.0000000+00:00' -- author: Lank + - message: Fixed actions sometimes gaining phantom cooldown graphics. + type: Fix + - message: Fixed an issue where clicking an action would interrupt hovering, making + it awkward to click multiple times. + type: Fix + id: 5176 + time: '2023-11-15T01:35:43.0000000+00:00' +- author: metalgearsloth changes: - - {message: Training bombs are now unable to space tiles., type: Tweak} - id: 4830 - time: '2023-09-14T23:51:47.0000000+00:00' -- author: kseandi + - message: Added 5 minute initial timer to gateway + bump new portal generation + from 45 minutes to 75 minutes. + type: Tweak + id: 5177 + time: '2023-11-15T06:23:53.0000000+00:00' +- author: liltenhead changes: - - {message: HUD theme selection is now works!, type: Fix} - id: 4831 - time: '2023-09-15T02:05:56.0000000+00:00' -- author: Morb0 + - message: Removed the ability to link IEDs to a remote signal. + type: Remove + id: 5178 + time: '2023-11-15T10:02:37.0000000+00:00' +- author: TsjipTsjip changes: - - {message: NPS no longer have an SSD indicator, type: Fix} - id: 4832 - time: '2023-09-15T02:15:26.0000000+00:00' -- author: Doru991 + - message: Kettle's exterior airlocks are now far less likely to end up bolted, + but must be configured manually now. + type: Tweak + id: 5179 + time: '2023-11-15T20:56:13.0000000+00:00' +- author: Vasilis changes: - - {message: It is now easier to tell how damaged cyborgs are., type: Tweak} - id: 4833 - time: '2023-09-15T03:14:47.0000000+00:00' + - message: Made it so you can unbuckle players from Vehicles IF they are in incapacitated + (crit or dead). + type: Tweak + - message: You can no longer unbuckle yourself while you are incapacitated. + type: Fix + id: 5180 + time: '2023-11-16T02:39:04.0000000+00:00' - author: EmoGarbage404 changes: - - {message: Swapping between guns now has a small delay before you can fire., type: Tweak} - id: 4834 - time: '2023-09-15T04:15:43.0000000+00:00' -- author: EmoGarbage404 + - message: Clicking actions in the HUD no longer triggers them multiple times. + type: Fix + - message: Fixed action bar overlapping vote box in separated HUD. + type: Fix + - message: Dragging actions to the action bar now shows an empty slot where they + can be added. + type: Tweak + id: 5181 + time: '2023-11-16T05:12:47.0000000+00:00' +- author: metalgearsloth changes: - - {message: Fixed succumb and last words actions not appearing, type: Fix} - id: 4835 - time: '2023-09-15T20:52:49.0000000+00:00' -- author: Slava0135 + - message: Added another mining song by Derflerp, Voyage Neverending. + type: Add + id: 5182 + time: '2023-11-16T13:28:07.0000000+00:00' +- author: liltenhead changes: - - {message: Entity velocity now resets when buckling., type: Tweak} - id: 4836 - time: '2023-09-16T04:15:06.0000000+00:00' -- author: Psychpsyo + - message: Reduced IED's damage from 90 -> 45 + type: Tweak + id: 5183 + time: '2023-11-16T16:13:23.0000000+00:00' +- author: RaiIsNotYourGuy + changes: + - message: Shuttle Call Time reduced to 3 minutes from 10 minutes for NukeOps gamerule + type: Tweak + id: 5184 + time: '2023-11-16T21:01:06.0000000+00:00' +- author: 2013HORSEMEATSCANDAL + changes: + - message: Cybersun has begun naming their operations to make them easier to remember. + type: Add + id: 5185 + time: '2023-11-16T21:04:50.0000000+00:00' +- author: metalgearsloth changes: - - {message: 'The janitor''s advanced mop can now be wielded, just like the regular - mop.', type: Add} - id: 4837 - time: '2023-09-16T04:33:01.0000000+00:00' + - message: Tweak biome generation on planets to make floors more varied and add + stalagmites to caves. + type: Tweak + id: 5186 + time: '2023-11-16T21:22:06.0000000+00:00' - author: deltanedas changes: - - {message: 'Some Syndicate objectives have been tweaked to have higher difficulties, - notably stealing the nuke disk.', type: Tweak} - id: 4838 - time: '2023-09-16T06:18:11.0000000+00:00' -- author: metalgearsloth + - message: Atlas Station is back for lowpop rounds! + type: Add + id: 5187 + time: '2023-11-16T22:35:33.0000000+00:00' +- author: deltanedas changes: - - {message: Added beacons to station maps., type: Add} - id: 4839 - time: '2023-09-16T08:11:48.0000000+00:00' + - message: Goats now grow wool which moths can eat. + type: Add + id: 5188 + time: '2023-11-17T08:51:51.0000000+00:00' - author: deltanedas changes: - - {message: Fixed objectives not being given in some cases., type: Fix} - id: 4840 - time: '2023-09-16T12:10:06.0000000+00:00' -- author: Flareguy + - message: Fixed artifact crafting requiring separate stacks and wasting fragments. + type: Fix + id: 5189 + time: '2023-11-18T04:31:50.0000000+00:00' +- author: lzk228 changes: - - {message: 'Added several new types of barricades for mappers to use, all using - sprites from /vg/station. The regular, full-tile barricade has also received - a new sprite from /vg/station.', type: Add} - - {message: Barricades are now slightly stronger & cheaper to make., type: Tweak} - id: 4841 - time: '2023-09-16T12:50:48.0000000+00:00' -- author: DrSmugleaf + - message: Moths can no longer eat welding masks. + type: Fix + id: 5190 + time: '2023-11-18T04:32:17.0000000+00:00' +- author: Jrpl changes: - - {message: Resized the non-admin Ahelp window to be taller and less wide., type: Tweak} - id: 4842 - time: '2023-09-17T09:04:20.0000000+00:00' -- author: ElectroJr + - message: Borgs no longer take structural damage. + type: Tweak + id: 5191 + time: '2023-11-19T06:44:22.0000000+00:00' +- author: metalgearsloth changes: - - {message: Fixed light animations not working., type: Fix} - id: 4843 - time: '2023-09-17T17:57:50.0000000+00:00' -- author: Henry12116 + - message: Align windoor collision bounds with thindow collision bounds. + type: Fix + id: 5192 + time: '2023-11-19T06:44:36.0000000+00:00' +- author: Slava0135 changes: - - {message: You can now eat most organs. Bon appetit!, type: Add} - id: 4844 - time: '2023-09-18T00:20:11.0000000+00:00' -- author: DrSmugleaf + - message: Disposal traversal damage is disabled for now. + type: Tweak + id: 5193 + time: '2023-11-19T10:25:02.0000000+00:00' +- author: deltanedas changes: - - {message: Fixed fultons losing their beacon when the stack is split., type: Fix} - id: 4845 - time: '2023-09-18T00:22:26.0000000+00:00' -- author: Psychpsyo + - message: Fixed explosions deleting bodyparts and organs inside of people. + type: Fix + id: 5194 + time: '2023-11-19T17:44:42.0000000+00:00' +- author: nikthechampiongr changes: - - {message: The advanced mop no longer looks boring when attached to the janitorial - trolley., type: Tweak} - id: 4846 - time: '2023-09-18T00:23:35.0000000+00:00' -- author: lapatison + - message: Zombified mice and other small animals no longer spread zombification. + type: Tweak + id: 5195 + time: '2023-11-19T22:28:05.0000000+00:00' +- author: Kadeo64 changes: - - {message: 'Now you can light matches with certain types (combat, work, merc, explorer) - of boots like a cool dude.', type: Add} - id: 4847 - time: '2023-09-18T00:26:21.0000000+00:00' -- author: JoeHammad + - message: The Ripley APLU is now Tier 1 Industrial. + type: Tweak + id: 5196 + time: '2023-11-20T00:58:07.0000000+00:00' +- author: Velcroboy changes: - - {message: 'security now has access to its own beret, fancy!', type: Add} - id: 4848 - time: '2023-09-18T00:30:31.0000000+00:00' -- author: peptron1 + - message: Shuttle walls and windows can now be constructed. + type: Tweak + id: 5197 + time: '2023-11-21T01:20:24.0000000+00:00' +- author: metalgearsloth changes: - - {message: 'The chaplain hoodie now comes with its hood as an action, similar to - winter coats', type: Tweak} - id: 4849 - time: '2023-09-18T01:10:44.0000000+00:00' -- author: Nairodian + - message: Fix being unable to FTL dock to planets. + type: Fix + id: 5198 + time: '2023-11-22T01:02:02.0000000+00:00' +- author: Feluk6174 + changes: + - message: Bananadine is now a psychedelic that can be obtained by grinding baked + banana peels, which can be obtained by microwaving banana peels. + type: Add + id: 5199 + time: '2023-11-22T01:08:53.0000000+00:00' +- author: Gotimanga + changes: + - message: The reagent "egg" is now known as "cooked egg" + type: Tweak + id: 5200 + time: '2023-11-22T04:32:35.0000000+00:00' +- author: themias + changes: + - message: You must now unlock a cyborg's panel to access it + type: Fix + id: 5201 + time: '2023-11-22T17:16:03.0000000+00:00' +- author: Nyranu + changes: + - message: The ability to put a cakecat on your head. + type: Add + id: 5202 + time: '2023-11-23T00:41:48.0000000+00:00' +- author: metalgearsloth + changes: + - message: Audio rework got re-merged, the changelog has been re-posted here for + brevity. + type: Add + - message: Grid audio will now attenuate properly over distance and won't be ear + rupturingly loud. + type: Fix + - message: FTL sound should no longer persist as it's attached to the shuttle instead + of being global. + type: Fix + - message: Audio can now start at an offset so if an audio source comes into range + so it won't play from the start. + type: Fix + - message: Changed audio attenuation from InverseDistanceClamped to LinearDistanceClamped + so it's smoother. You may need to adjust your master audio volume. + type: Tweak + id: 5203 + time: '2023-11-27T11:21:23.0000000+00:00' +- author: metalgearsloth changes: - - {message: Fixed Holobarriers being unable to be destroyed., type: Fix} - id: 4850 - time: '2023-09-18T01:22:39.0000000+00:00' + - message: Fix ahelp audio. + type: Fix + id: 5204 + time: '2023-11-27T13:42:04.0000000+00:00' - author: Ilya246 changes: - - {message: Blood-red magboots' jetpack now works again., type: Fix} - id: 4851 - time: '2023-09-18T06:13:12.0000000+00:00' -- author: JoeHammad + - message: Refrigerators are now nearly immune to explosions and even nukes. + type: Tweak + id: 5205 + time: '2023-11-27T21:24:43.0000000+00:00' +- author: lzk228 + changes: + - message: Moth accent added! Buzzz!!! + type: Add + id: 5206 + time: '2023-11-27T21:28:43.0000000+00:00' +- author: BurninDreamer changes: - - {message: The syndicate have started using cheaper materials in the manufacture - of their over ear headsets, type: Add} - id: 4852 - time: '2023-09-18T19:18:56.0000000+00:00' -- author: PursuitinAshes + - message: The Captain's Carapace no longer has a 10% movement speed penalty. + type: Tweak + id: 5207 + time: '2023-11-27T21:29:30.0000000+00:00' +- author: Rainfey changes: - - {message: Nanotrasen now properly supplies its captains with appropriate headgear - in all of their lockers., type: Fix} - id: 4853 - time: '2023-09-18T19:20:10.0000000+00:00' + - message: Chameleon functionality to Agent and Nukie ID cards + type: Add + id: 5208 + time: '2023-11-27T21:34:30.0000000+00:00' - author: deltanedas changes: - - {message: The Syndicate has cracked the binary radio channel's encryption and - is offering keys for 4 TC., type: Add} - id: 4854 - time: '2023-09-18T19:20:56.0000000+00:00' -- author: liltenhead + - message: Revenants can no longer emag evac to instantly launch the shuttle. + type: Fix + id: 5209 + time: '2023-11-27T21:39:30.0000000+00:00' +- author: Flareguy changes: - - {message: Increased the amount of barotrauma damage you receive., type: Tweak} - id: 4855 - time: '2023-09-18T19:21:36.0000000+00:00' -- author: HerCoyote23 + - message: Disabled space wind & atmos tile ripping. + type: Remove + id: 5210 + time: '2023-11-27T21:42:29.0000000+00:00' +- author: Vasilis changes: - - {message: 'The Syndicate has grown tired of losing overconfident "Loud" agents, - and has reduced their stealth gear prices to encourage a more sneaky approach.', - type: Tweak} - id: 4856 - time: '2023-09-18T21:07:00.0000000+00:00' -- author: Doru991 + - message: Gibbed mothroaches wont drop all normal moth species parts, just animal + organs. + type: Fix + id: 5211 + time: '2023-11-27T21:42:53.0000000+00:00' +- author: deltanedas changes: - - {message: Berry seeds are now available from the MegaSeed Servitor., type: Add} - - {message: Seeds for the bungo fruit are included in the exotic seed crate., type: Add} - id: 4857 - time: '2023-09-19T03:29:28.0000000+00:00' -- author: EmoGarbage404 + - message: When Revolution rounds end each headrev has their number of converted + people shown. + type: Tweak + id: 5212 + time: '2023-11-27T21:43:49.0000000+00:00' +- author: Velcroboy changes: - - {message: Skeletons have been reported in the closets of various station officials. - And maintenance., type: Add} - - {message: Skeletons can no longer have a pitch-black coloration., type: Tweak} - id: 4858 - time: '2023-09-19T05:05:18.0000000+00:00' + - message: Fixed janitorial items (wet floor signs, spray bottles, light replacers, + and plungers) not fitting in the janitor's trolley. + type: Fix + id: 5213 + time: '2023-11-27T22:16:17.0000000+00:00' - author: metalgearsloth changes: - - {message: 'Expeditions have been massively tweaked. Timer is 7 minutes, loot count - is significantly up, added significantly more loot to the loot table, mob count - is significantly up, and mobs overall have been nerfed (no more 15 damage carps - ending you). It also has a flat 13 minute cooldown. Better bring your fultons - if you expect to bring stuff back.', type: Tweak} - id: 4859 - time: '2023-09-19T12:52:01.0000000+00:00' -- author: Repo + - message: Fix ambient audio not playing. + type: Fix + id: 5214 + time: '2023-11-28T03:09:26.0000000+00:00' +- author: M3739 changes: - - {message: Time out for particular uplink items for balancing. Syndicate Bomb can - only be purchased after 30min., type: Add} - id: 4860 - time: '2023-09-19T23:51:15.0000000+00:00' -- author: liltenhead + - message: An entry regarding cyborgs has been added to the guidebook. + type: Add + id: 5215 + time: '2023-11-28T03:18:22.0000000+00:00' +- author: Ubaser changes: - - {message: Reduced the crafting costs of the buckler and makeshift shield., type: Tweak} - id: 4861 - time: '2023-09-20T04:49:43.0000000+00:00' -- author: dahnte + - message: Remove the Captain's spare gloves from his locker. + type: Remove + id: 5216 + time: '2023-11-28T05:45:56.0000000+00:00' +- author: Ubaser changes: - - {message: Added frontal lisp as a character trait for all species!, type: Add} - id: 4862 - time: '2023-09-20T04:51:50.0000000+00:00' -- author: Alekshhh - changes: - - {message: Changed most medkit fills, type: Tweak} - id: 4863 - time: '2023-09-20T07:50:19.0000000+00:00' -- author: Alekshhh - changes: - - {message: Added U-shaped rails, type: Add} - id: 4864 - time: '2023-09-20T08:26:17.0000000+00:00' -- author: Just_Art - changes: - - {message: Added corn in butter., type: Add} - - {message: Increased popcorn cooking time., type: Tweak} - id: 4865 - time: '2023-09-20T09:51:09.0000000+00:00' + - message: The HoP now starts with a pair of papercut-proof gloves. + type: Add + id: 5217 + time: '2023-11-28T06:21:06.0000000+00:00' +- author: themias + changes: + - message: Fixed riot shield audio and popup spam + type: Fix + id: 5218 + time: '2023-11-28T07:06:38.0000000+00:00' +- author: UbaserB + changes: + - message: Blood now has a sprite when placed in metamorphic glasses. + type: Add + id: 5219 + time: '2023-11-28T07:09:56.0000000+00:00' - author: metalgearsloth changes: - - {message: 'Fix some do_afters mispredicting, e.g. removing encryption keys from - headsets.', type: Fix} - id: 4866 - time: '2023-09-20T12:01:54.0000000+00:00' -- author: ike709 - changes: - - {message: Added a search filter to vending machines, type: Add} - id: 4867 - time: '2023-09-20T19:40:41.0000000+00:00' -- author: waylon531 - changes: - - {message: Centcomm is tired of the crew drunkenly wandering the station and starting - brawls. Many mixed drinks now have half as much alcohol., type: Tweak} - id: 4868 - time: '2023-09-21T00:58:57.0000000+00:00' + - message: Fix global audio not being global. + type: Fix + - message: Update MIDI audio every frame rather than every 1/10 seconds to fix positioning + and occlusion weirdness. + type: Tweak + id: 5220 + time: '2023-11-28T09:48:18.0000000+00:00' - author: metalgearsloth changes: - - {message: Fix xeno ghost roles showing up for expeditions., type: Fix} - id: 4869 - time: '2023-09-21T13:21:43.0000000+00:00' -- author: mirrorcult - changes: - - {message: 'Added improvised bows & arrows to construction, have fun embedding - people with arrows', type: Add} - - {message: Added quivers as random maint loot drops, type: Add} - id: 4870 - time: '2023-09-22T09:45:21.0000000+00:00' -- author: Vasilis + - message: Fix audio not playing during weather. + type: Fix + id: 5221 + time: '2023-11-28T12:35:38.0000000+00:00' +- author: metalgearsloth changes: - - {message: The guidebook now has a pop-out button. This will turn it into a system - window that you can drag wherever is convenient such as a second monitor., type: Add} - - {message: 'The Steam overlay has been disabled due to conflicts with pop-out windows. - Due to a bug with Steam, the game''s graphics will corrupt when overlay is enabled - and a popout window is opened.', type: Remove} - id: 4871 - time: '2023-09-22T19:52:31.0000000+00:00' -- author: TheArturZh - changes: - - {message: Station records console works properly again, type: Fix} - id: 4872 - time: '2023-09-22T19:57:06.0000000+00:00' -- author: EmoGarbage404 + - message: Fix some sound sources not playing positionally (e.g. glass breaking). + type: Fix + id: 5222 + time: '2023-11-28T23:19:23.0000000+00:00' +- author: metalgearsloth changes: - - {message: 'The rat king can now rummage through disposal units to get trash, cheese, - or gold.', type: Add} - - {message: 'The rat king now can command its servants to do various actions. They - can sit, follow, attack a target, or go buck-wild, all at the King''s command', - type: Add} - - {message: Rat servants are no longer ghost roles., type: Remove} - id: 4873 - time: '2023-09-22T20:01:05.0000000+00:00' -- author: waylon531 - changes: - - {message: The surgeons at Centcomm have made it so drinking too much alcohol will - now cause liver failure instead of heart failure. Alcoholics rejoice!, type: Fix} - id: 4874 - time: '2023-09-22T20:01:42.0000000+00:00' -- author: dahnte + - message: Removed artifact spam on roundend due to the ensuing lag. + type: Remove + id: 5223 + time: '2023-11-29T03:39:16.0000000+00:00' +- author: metalgearsloth changes: - - {message: Improved lisp letter matching and clarity., type: Fix} - id: 4875 - time: '2023-09-23T05:39:47.0000000+00:00' -- author: EmoGarbage404 + - message: Fix doppler effect on shuttles by also setting player's velocity in the + audio API. + type: Fix + - message: Fix left-right ear weirdness caused by floating-point imprecision on + audio positioning. + type: Fix + id: 5224 + time: '2023-11-29T05:44:45.0000000+00:00' +- author: metalgearsloth changes: - - {message: Skeletons no longer asphyxiate due to their lack of lungs., type: Fix} - id: 4876 - time: '2023-09-23T08:24:58.0000000+00:00' -- author: PrPleGoo - changes: - - {message: Added onion goggles for the chef. It displays hunger icons for hungry/overfed - mobs. Can also be eaten., type: Add} - - {message: The beer goggles now display thirst icons for thirsty/overhydrated mobs., - type: Tweak} - id: 4877 - time: '2023-09-23T13:14:06.0000000+00:00' -- author: ElectroJr + - message: Fix getting stuck between tables. + type: Fix + id: 5225 + time: '2023-11-29T13:23:21.0000000+00:00' +- author: metalgearsloth changes: - - {message: Fixed spellbooks not granting spell actions., type: Fix} - id: 4878 - time: '2023-09-23T16:33:39.0000000+00:00' -- author: deltanedas + - message: Fix remaining audio left-right transitioning too quickly. + type: Fix + id: 5226 + time: '2023-11-30T00:56:08.0000000+00:00' +- author: lzk228 changes: - - {message: Armed nuclear explosives can be seen on station maps., type: Tweak} - id: 4879 - time: '2023-09-23T19:15:05.0000000+00:00' -- author: Repo + - message: Skeletons are zombie immune now. + type: Tweak + id: 5227 + time: '2023-11-30T02:40:39.0000000+00:00' +- author: MACMAN2003 changes: - - {message: Nukies can declare war again., type: Fix} - id: 4880 - time: '2023-09-23T20:00:13.0000000+00:00' -- author: Doru991 + - message: Added a green central command cap like the captain's blue one. + type: Add + id: 5228 + time: '2023-11-30T07:20:45.0000000+00:00' +- author: Ubaser changes: - - {message: Trash spawns correctly after food is eaten., type: Fix} - id: 4881 - time: '2023-09-24T17:20:03.0000000+00:00' -- author: DrTeaSpoon + - message: Core has been reworked and added back into the map pool. + type: Add + id: 5229 + time: '2023-11-30T08:13:13.0000000+00:00' +- author: Ubaser changes: - - {message: Arrows can now be doped with chemicals., type: Tweak} - - {message: Spears now correctly transfares chemicals when thrown., type: Fix} - id: 4882 - time: '2023-09-24T19:46:16.0000000+00:00' -- author: mirrorcult + - message: Nuclear operative agents now spawn with a PDA that can scan for injuries. + type: Add + id: 5230 + time: '2023-11-30T21:39:08.0000000+00:00' +- author: Rainfey + changes: + - message: Agent ID not longer resets name when changing its appearance + type: Fix + id: 5231 + time: '2023-11-30T21:42:44.0000000+00:00' +- author: eddiedd + changes: + - message: Lemon has been discovered a mutation species, lemoon, which could be + grind for milk + type: Add + id: 5232 + time: '2023-11-30T21:44:23.0000000+00:00' +- author: Ubaser changes: - - {message: You can now pick up items (and dead pickupable mobs) in combat mode, - type: Add} - id: 4883 - time: '2023-09-24T19:47:42.0000000+00:00' -- author: Slava0135 + - message: The senior physician beret now matches their outfit more. + type: Tweak + id: 5233 + time: '2023-12-01T08:34:08.0000000+00:00' +- author: enumerate0 changes: - - {message: Fixed people getting too thirsty., type: Fix} - id: 4884 - time: '2023-09-24T19:50:41.0000000+00:00' -- author: PixelTK + - message: Recognizable solutions now appear sorted by volume first, then by name + type: Tweak + id: 5234 + time: '2023-12-01T08:35:51.0000000+00:00' +- author: Whisper changes: - - {message: Arachnids have one new back marking., type: Add} - id: 4885 - time: '2023-09-24T19:54:39.0000000+00:00' -- author: Slava0135 + - message: Added the Death Acidifier, an implant that destroys your body and equipment + without harming allies. + type: Add + - message: Added the microbomb implanter back to nukie uplinks. + type: Add + - message: Nukies have exchanged microbomb implants for Death Acidifiers. + type: Tweak + id: 5235 + time: '2023-12-01T20:14:45.0000000+00:00' +- author: Vasilis changes: - - {message: Syndicate agents can no longer buy hot potatoes because of food safety - regulations, type: Remove} - id: 4886 - time: '2023-09-24T19:56:07.0000000+00:00' -- author: Tunguso4ka + - message: Tacos can be eaten by Lizards now. It's fricken Taco Tuesday! + type: Fix + id: 5236 + time: '2023-12-01T22:27:09.0000000+00:00' +- author: Rainbeon changes: - - {message: Added gladiator`s helmet and uniform for both the station and planet - gladiators., type: Add} - - {message: Added bone armor and spear to please our lava planet habitats., type: Add} - id: 4887 - time: '2023-09-24T19:57:10.0000000+00:00' -- author: liltenhead + - message: Cyborgs can now speak while in a Critical state. + type: Tweak + id: 5237 + time: '2023-12-02T00:25:20.0000000+00:00' +- author: metalgearsloth changes: - - {message: Lowered the maximum explosion range of canister bombs., type: Tweak} - id: 4888 - time: '2023-09-24T19:59:05.0000000+00:00' -- author: CaptainSqrBeard + - message: Potentially fix audio filters. + type: Fix + id: 5238 + time: '2023-12-02T08:47:41.0000000+00:00' +- author: EEASAS + changes: + - message: Mothroaches have been vaccinated to be weaker and slower. Also, they + are more valuable! + type: Tweak + - message: Mothroaches and rats cannot pull items anymore. + type: Tweak + id: 5239 + time: '2023-12-02T16:45:07.0000000+00:00' +- author: Moomoobeef + changes: + - message: Added sodium polyacrylate, an industrial desiccant. You probably should + not consume this. + type: Add + id: 5240 + time: '2023-12-02T16:58:34.0000000+00:00' +- author: Doru991 changes: - - {message: 'Now after killing all nuclear operatives, the emergency shuttle will - be called instead of instant round end. Shuttle arrives in 10 minutes and you - can recall it.', type: Tweak} - id: 4889 - time: '2023-09-24T20:16:33.0000000+00:00' -- author: mirrorcult + - message: Ambrosia Deus and Koibeans's chemical amounts have been reduced. + type: Tweak + - message: Plant chemical mutations can no longer produce any reagent in the game. + type: Tweak + id: 5241 + time: '2023-12-02T17:01:58.0000000+00:00' +- author: Cohnway + changes: + - message: Remilia's sprite made larger and more detailed + type: Tweak + id: 5242 + time: '2023-12-02T17:12:32.0000000+00:00' +- author: Minty642 + changes: + - message: Ash can now be created by burning oil. + type: Add + id: 5243 + time: '2023-12-02T17:15:12.0000000+00:00' +- author: enumerate0 + changes: + - message: Added sound effects for throwing/inserting into disposals, and when missing + a throw. + type: Add + id: 5244 + time: '2023-12-02T17:19:32.0000000+00:00' +- author: deltanedas changes: - - {message: Ghosts can now toggle whether they hear out-of-range local messages - using an action, type: Add} - id: 4890 - time: '2023-09-24T20:34:09.0000000+00:00' -- author: daerSeebaer + - message: Fixed ninja calling in a dragon not actually spawning a dragon. + type: Fix + id: 5245 + time: '2023-12-02T20:41:36.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: The AME now shuts down when the inserted fuel jar is empty, type: Add} - - {message: The AME no longer makes sounds if no fuel was injected, type: Tweak} - id: 4891 - time: '2023-09-24T20:39:49.0000000+00:00' -- author: gusxyz + - message: Improvised explosive devices now have unreliable timers that can take + anywhere from 0 to 60 seconds to explode. + type: Add + id: 5246 + time: '2023-12-03T02:21:51.0000000+00:00' +- author: liltenhead changes: - - {message: Empty ore boxes are now orderable from cargo., type: Add} - id: 4892 - time: '2023-09-24T20:52:07.0000000+00:00' -- author: mirrorcult + - message: Replaced the Engivend's individual inflatables with the boxed version. + type: Tweak + id: 5247 + time: '2023-12-03T03:54:00.0000000+00:00' +- author: Doru991 changes: - - {message: Your character will now rotate in the direction of your mouse cursor - while in combat mode, type: Add} - id: 4893 - time: '2023-09-24T21:22:45.0000000+00:00' -- author: TK-A369 - changes: - - {message: 'After several complaints from chemists, Nanotrasen decided to update - their Chemistry Guidebook to include information about environment required - by reaction to occur.', type: Add} - id: 4894 - time: '2023-09-24T21:33:25.0000000+00:00' + - message: Skeletons now regain more health when coming in contact with milk. + type: Tweak + id: 5248 + time: '2023-12-04T02:32:05.0000000+00:00' +- author: joshepvodka + changes: + - message: CentCom officers now finally have a jumpsuit that matches the ever stylish + green hue of CentCom equipment. + type: Tweak + id: 5249 + time: '2023-12-04T02:32:45.0000000+00:00' - author: EmoGarbage404 changes: - - {message: Fire extinguishers now use less fluid per burst and launch the user - farther in low-gravity., type: Tweak} - id: 4895 - time: '2023-09-25T01:33:29.0000000+00:00' -- author: Psychpsyo - changes: - - {message: 'People and animals no longer have two hearts, livers, sets of lungs - or kidneys. You probably didn''t need the extra pair anyways.', type: Fix} - id: 4896 - time: '2023-09-25T06:53:04.0000000+00:00' -- author: Nimfar11 + - message: Roller skates are slower and have less friction and acceleration. + type: Tweak + - message: Speed boots give a much more pronounced speed boost. Research them today! + type: Tweak + id: 5250 + time: '2023-12-04T04:31:11.0000000+00:00' +- author: Slava0135 changes: - - {message: Adds a new sprite for Syndicate implanters., type: Add} - id: 4897 - time: '2023-09-26T00:04:03.0000000+00:00' -- author: Ubaser + - message: Gas tanks now deal damage when thrown. Be sure to hold them when opening + valve... or not. + type: Tweak + id: 5251 + time: '2023-12-04T06:32:18.0000000+00:00' +- author: Chronophylos + changes: + - message: Included missing damage type localization for armor examination. + type: Fix + id: 5252 + time: '2023-12-04T12:57:29.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: Added four new lizard horn markings!, type: Add} - id: 4898 - time: '2023-09-26T02:24:09.0000000+00:00' -- author: Whisper + - message: Storage now uses a grid-based system. You can drag around items in your + bag, left click to remove them, and use right click to rotate them while dragging. + type: Add + - message: The storage window is now a fixed singleton above the hands. You can + make it moveable by toggling "Static storage UI" in the controls menu. + type: Add + id: 5253 + time: '2023-12-04T23:04:39.0000000+00:00' +- author: qwerltaz changes: - - {message: The health analyzer no longer shows zero-damage groups., type: Fix} - id: 4899 - time: '2023-09-26T04:37:23.0000000+00:00' -- author: waylon531 + - message: When ghosting from a critical state, the ghost command now kills with + damage relative to current health instead of flat 200. + type: Fix + id: 5254 + time: '2023-12-04T23:06:11.0000000+00:00' +- author: MACMAN2003 + changes: + - message: Autolathes can now print the snazzy orange "sodium" and blue "exterior" + light tubes. + type: Tweak + id: 5255 + time: '2023-12-04T23:06:30.0000000+00:00' +- author: MACMAN2003 + changes: + - message: The jaws of life can now fit inside of regular toolbelts. + type: Fix + id: 5256 + time: '2023-12-04T23:06:46.0000000+00:00' +- author: Repo changes: - - {message: Nocturine and welder blindness work again., type: Fix} - id: 4900 - time: '2023-09-26T17:46:14.0000000+00:00' -- author: gusxyz + - message: Doors can close over conveyor belts. + type: Fix + id: 5257 + time: '2023-12-04T23:07:48.0000000+00:00' +- author: 27alaing changes: - - {message: Syndicate bomb no longer has anomalous properties., type: Tweak} - id: 4901 - time: '2023-09-26T22:05:46.0000000+00:00' + - message: Pun Pun can become a revolutionary again + type: Tweak + id: 5258 + time: '2023-12-04T23:09:36.0000000+00:00' - author: Bhijn and Myr changes: - - {message: 'Interaction outlines have been slightly reworked, and feature finer - artistic control. Edge cases no longer result in interaction outlines being - faintly visible in pitch black areas, out-of-range outlines are far less visible - in dim conditions, outlines now properly fade when over a fullbright backdrop - like parallax, and outlines now do a much better job at fading with penumbras.', - type: Tweak} - id: 4902 - time: '2023-09-27T09:22:32.0000000+00:00' -- author: DrSmugleaf - changes: - - {message: Fixed there being no confirmation for role bans., type: Fix} - id: 4903 - time: '2023-09-27T15:27:08.0000000+00:00' -- author: c0rigin + - message: Speech bubbles now display the name of whatever or whoever spoke them! + The options menu has a setting to disable this outright, or add a background + to the name for the sake of accessibility, for anyone who would like those options. + type: Add + - message: The bubbles associated with emotes and LOOC now display exactly what + the associated message prints in your chatbox. + type: Tweak + id: 5259 + time: '2023-12-04T23:10:49.0000000+00:00' +- author: brainfood1183 changes: - - {message: What moths consider as food is now more consistent., type: Tweak} - id: 4904 - time: '2023-09-27T16:50:59.0000000+00:00' -- author: DrSmugleaf + - message: Clowns can now craft the Banana Clown outfit. + type: Add + id: 5260 + time: '2023-12-04T23:12:02.0000000+00:00' +- author: enumerate0 changes: - - {message: Fixed getting moved briefly when closing a crematorium that you are - standing over., type: Fix} - id: 4905 - time: '2023-09-27T23:41:07.0000000+00:00' -- author: Psychpsyo + - message: Fixed Christmas tree bounding box + type: Fix + id: 5261 + time: '2023-12-05T06:20:54.0000000+00:00' +- author: JoeHammad changes: - - {message: 'You can now pet Runtime instead of petting >the< Runtime. Also, Smile - is now a girl.', type: Fix} - id: 4906 - time: '2023-09-28T04:05:50.0000000+00:00' -- author: Psychpsyo + - message: Paramedics are now available on barratry + type: Add + id: 5262 + time: '2023-12-05T07:35:36.0000000+00:00' +- author: JoeHammad changes: - - {message: Bingus is no longer fuzzy., type: Fix} - id: 4907 - time: '2023-09-28T04:06:13.0000000+00:00' -- author: Psychpsyo + - message: Paramedics are now available on marathon + type: Add + id: 5263 + time: '2023-12-05T07:36:58.0000000+00:00' +- author: Whisper changes: - - {message: The wet floor sign can now be worn as an outer clothing. This now gives - syndicate janitors access to a suicide vest in form the wet floor sign mine., - type: Add} - id: 4908 - time: '2023-09-28T04:09:45.0000000+00:00' -- author: LEVELcat + - message: Chloral Hydrate sleep effect will start at 11 units, down from 16. + type: Tweak + id: 5264 + time: '2023-12-05T08:52:47.0000000+00:00' +- author: DangerRevolution + changes: + - message: Added Emergency Nitrogen Tanks + type: Add + - message: Added Nitrogen Tanks to Emergency Closets + type: Add + id: 5265 + time: '2023-12-05T09:41:39.0000000+00:00' +- author: Lazzi0706 + changes: + - message: Added a new stomach for mice and "hunger thresholds" in mice's prototype + type: Add + - message: Fixed inadequate hunger in mice + type: Fix + id: 5266 + time: '2023-12-05T10:39:09.0000000+00:00' +- author: JoeHammad changes: - - {message: Eyeglass are now available from the ClothesMate., type: Add} - id: 4909 - time: '2023-09-28T10:52:05.0000000+00:00' -- author: Repo + - message: Removed the spare paramedic clothes and EVA suit from the medidrobe + type: Remove + - message: added medical doctor jumpsuits and skirts to the medidrobe + type: Add + id: 5267 + time: '2023-12-05T10:39:54.0000000+00:00' +- author: ForestNoises + changes: + - message: The rejuvenate command/verb resets all action cooldowns. + type: Add + id: 5268 + time: '2023-12-05T21:00:03.0000000+00:00' +- author: themias + changes: + - message: Empty hot cocoa can go in trash bags + type: Fix + id: 5269 + time: '2023-12-05T21:39:26.0000000+00:00' +- author: Bhijn and Myr changes: - - {message: Pun Pun now showing on crew monitoring., type: Fix} - id: 4910 - time: '2023-09-28T10:53:54.0000000+00:00' -- author: nikthechampiongr + - message: Ghosts now have speech bubbles again + type: Fix + id: 5270 + time: '2023-12-05T21:40:03.0000000+00:00' +- author: tgrkzus changes: - - {message: Mappers can now place airlocks that can be pried open while unpowered - without tools., type: Add} - id: 4911 - time: '2023-09-28T11:34:22.0000000+00:00' -- author: Doru991 + - message: Paper cups are now available at water coolers. + type: Add + id: 5271 + time: '2023-12-05T21:47:21.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: Arcade machine maintenance panels can be opened again., type: Fix} - id: 4912 - time: '2023-09-28T14:00:19.0000000+00:00' + - message: You can now make the storage window opaque with the "enable opaque storage + window" toggle in the graphics menu. + type: Add + id: 5272 + time: '2023-12-05T23:38:10.0000000+00:00' - author: EmoGarbage404 changes: - - {message: The health alerts now have text to help discern how gravely injured - you are., type: Tweak} - id: 4913 - time: '2023-09-28T14:05:42.0000000+00:00' -- author: NULL882 - changes: - - {message: Added Necropolis Wall., type: Add} - - {message: Added Mine Wall., type: Add} - - {message: Added Sings for Mine Wall., type: Add} - id: 4914 - time: '2023-09-28T17:07:13.0000000+00:00' -- author: lunarcomets - changes: - - {message: 'Tweaked archaic issues to fix capitalization issues, and removed the - replacement for ''request'' for consistency.', type: Tweak} - id: 4915 - time: '2023-09-28T19:19:58.0000000+00:00' -- author: DrSmugleaf + - message: Reverted duffel bags to their original storage capacity. + type: Fix + id: 5273 + time: '2023-12-06T03:11:01.0000000+00:00' +- author: metalgearsloth changes: - - {message: Changed the player actions panel to ask for confirmation when kicking - and respawning players., type: Tweak} - id: 4916 - time: '2023-09-28T22:46:07.0000000+00:00' -- author: DrSmugleaf + - message: Predict helmet toggling. + type: Fix + id: 5274 + time: '2023-12-06T06:59:31.0000000+00:00' +- author: deltanedas changes: - - {message: Fixed not being able to choose a role that you were unbanned from in - the same round without reconnecting., type: Fix} - id: 4917 - time: '2023-09-28T23:46:39.0000000+00:00' -- author: Micr0byte + - message: Fixed emagged medibots not injecting healthy people with chloral hydrate. + type: Fix + id: 5275 + time: '2023-12-06T21:30:32.0000000+00:00' +- author: metalgearsloth changes: - - {message: Pressing F11 now toggles between full-screen and windowed modes., type: Add} - id: 4918 - time: '2023-09-28T23:55:10.0000000+00:00' -- author: DrSmugleaf + - message: Fix toggleable clothing still being interactable e.g. hardsuit helmets. + type: Fix + id: 5276 + time: '2023-12-06T21:56:03.0000000+00:00' +- author: deltanedas changes: - - {message: Fixed everyone being bald., type: Fix} - id: 4919 - time: '2023-09-29T00:44:47.0000000+00:00' -- author: DrSmugleaf + - message: Combat boots and friends use a slot for sidearms instead of a storage + window. + type: Tweak + id: 5277 + time: '2023-12-06T21:58:25.0000000+00:00' +- author: Bhijn and Myr changes: - - {message: Fixed the HoP's id card computer not opening., type: Fix} - id: 4920 - time: '2023-09-29T00:59:14.0000000+00:00' -- author: mirrorcult + - message: Speech bubbles for the living now again have names when fancy speech + bubbles are enabled + type: Fix + id: 5278 + time: '2023-12-06T21:58:53.0000000+00:00' +- author: TemporalOroboros changes: - - {message: 'Being damaged, being stunned, or going into crit will now force you - to send whatever message you were typing, if it was in local/whisper/radio. - You''ll sometimes find yours-AUGH', type: Add} - id: 4921 - time: '2023-09-29T01:05:37.0000000+00:00' -- author: DrSmugleaf + - message: Pickaxes have a more accurate shape in storage. + type: Tweak + id: 5279 + time: '2023-12-07T00:52:57.0000000+00:00' +- author: Nairodian changes: - - {message: Fixed AHelp progressively gaining more panels., type: Fix} - id: 4922 - time: '2023-09-29T01:46:16.0000000+00:00' -- author: EmoGarbage404 + - message: Added a new lizard chest marking, an underbelly. + type: Add + id: 5280 + time: '2023-12-07T01:05:43.0000000+00:00' +- author: Nimfar11 changes: - - {message: Fixed skeletons spawning in folded containers., type: Fix} - id: 4923 - time: '2023-09-29T03:55:29.0000000+00:00' -- author: casperr04 + - message: Adds Space Cobras, invisible at rest and venom blind. + type: Add + - message: Adds snake meat and fancy snakeskin boots. + type: Add + - message: The too weak space spider has been strengthened. + type: Tweak + id: 5281 + time: '2023-12-07T01:25:57.0000000+00:00' +- author: CrigCrag changes: - - {message: Fixed the true name of disguised players being shown when electrocuted., - type: Fix} - id: 4924 - time: '2023-09-29T15:01:19.0000000+00:00' -- author: TsjipTsjip - changes: - - {message: Kettle's medical ward was reworked., type: Tweak} - id: 4925 - time: '2023-09-29T19:14:53.0000000+00:00' -- author: daerSeebaer - changes: - - {message: Volumetric pumps now indicate if they can't pump., type: Add} - id: 4926 - time: '2023-09-30T03:35:23.0000000+00:00' -- author: deltanedas - changes: - - {message: Fixed cognizine not creating ghost roles., type: Fix} - id: 4927 - time: '2023-09-30T17:53:22.0000000+00:00' + - message: Added three new specialized brute healing chemicals and a guidebook entry + on how to safely use them. + type: Add + - message: Added Razorium, which is basically liquid razor blades. + type: Add + id: 5282 + time: '2023-12-07T03:05:29.0000000+00:00' - author: EmoGarbage404 changes: - - {message: Holofans can now be destroyed by explosions., type: Fix} - id: 4928 - time: '2023-09-30T19:08:09.0000000+00:00' + - message: Speed penalties for duffels and hardsuits now apply when held, not just + when worn. + type: Add + id: 5283 + time: '2023-12-07T03:41:29.0000000+00:00' - author: deltanedas changes: - - {message: 'Space dragons get a proper greentext in the round end summary, along - with objectives in the character menu.', type: Tweak} - id: 4929 - time: '2023-09-30T20:18:02.0000000+00:00' -- author: Ubaser + - message: Fixed explosion resistance being ignored. + type: Fix + id: 5284 + time: '2023-12-07T18:51:46.0000000+00:00' +- author: Aexxie changes: - - {message: Winter Boots are now available in the Winterdrobe., type: Add} - id: 4930 - time: '2023-10-01T14:28:14.0000000+00:00' -- author: Ubaser + - message: Paramed no longer has external access. + type: Remove + id: 5285 + time: '2023-12-07T23:27:18.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: 'QM now has a mantle, available at HoP''s uniform printer.', type: Add} - id: 4931 - time: '2023-10-01T14:28:47.0000000+00:00' + - message: Hovering over an item in storage now shows a tooltip with the name. + type: Add + id: 5286 + time: '2023-12-08T02:38:07.0000000+00:00' - author: Nimfar11 changes: - - {message: Added new sprites for slime organs, type: Add} - - {message: Slimes now breathe nitrogen too., type: Tweak} - id: 4932 - time: '2023-10-01T14:34:29.0000000+00:00' -- author: casperr04 + - message: Adds a bed for the psychologist's office. + type: Add + id: 5287 + time: '2023-12-08T05:24:35.0000000+00:00' +- author: Emisse changes: - - {message: Space ninjas now have random appearance., type: Tweak} - id: 4933 - time: '2023-10-01T14:51:35.0000000+00:00' -- author: TomCruize + - message: Chemical explosions are powerful again. + type: Tweak + id: 5288 + time: '2023-12-08T10:58:25.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: Made Space Cats lungs ROBUST (They now don't suffocate in space), type: Fix} - id: 4934 - time: '2023-10-01T14:55:59.0000000+00:00' -- author: TheShuEd + - message: V and shift-V can now be used to open the bag and belt, respectively. + type: Add + - message: Interacting with a storage item now has context-sensitive logic based + on whether or not the window is open or focused. + type: Fix + id: 5289 + time: '2023-12-08T18:43:37.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: Added wide-spectrum anomaly locator., type: Add} - id: 4935 - time: '2023-10-01T16:41:32.0000000+00:00' -- author: michaelcu + - message: When viewing a storage container, the item that will be removed via smart-equip + is now marked with a small star icon. + type: Add + id: 5290 + time: '2023-12-08T18:43:58.0000000+00:00' +- author: Whisper + changes: + - message: Rat king and his servants properly heal from miasma. + type: Fix + - message: Rat king no longer rummages from an infinite distance. + type: Fix + - message: Rat king generates more miasma to fill larger rooms. + type: Tweak + id: 5291 + time: '2023-12-08T18:46:28.0000000+00:00' +- author: Emisse changes: - - {message: Telescopic Shield no longer glows in the dark when deployed., type: Fix} - id: 4936 - time: '2023-10-01T17:16:54.0000000+00:00' + - message: Command staff has brig access. + type: Tweak + id: 5292 + time: '2023-12-08T18:50:07.0000000+00:00' - author: EmoGarbage404 changes: - - {message: Nuclear Operative medics now come with a custom hardsuit., type: Add} - id: 4937 - time: '2023-10-01T17:36:20.0000000+00:00' -- author: DrTeaSpoon + - message: Removed upgrades from the anomaly vessel. + type: Remove + - message: Added the experimental anomaly vessel, which researches twice as fast + at the cost of being radioactive. + type: Add + id: 5293 + time: '2023-12-08T18:50:41.0000000+00:00' +- author: PJB3005 + changes: + - message: Opening the chat channel selector works again. + type: Fix + id: 5294 + time: '2023-12-09T02:15:07.0000000+00:00' +- author: JoeHammad changes: - - {message: Plant species mutation no longer resets other mutations., type: Fix} - id: 4938 - time: '2023-10-01T17:52:45.0000000+00:00' -- author: Nairodian + - message: Some knives now deal some damage when thrown + type: Add + id: 5295 + time: '2023-12-09T02:16:31.0000000+00:00' +- author: metalgearsloth changes: - - {message: Science can now research practice ammunition for security., type: Add} - id: 4939 - time: '2023-10-01T20:18:05.0000000+00:00' -- author: Nimfar11 + - message: Fixed a bug where the audio slider can get saved at 50% audio with no + sound. Unfortunately this means your audio sliders will reset. + type: Fix + - message: Fix crash on options menu while game sim not running. + type: Fix + id: 5296 + time: '2023-12-09T03:03:08.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: Adds Advanced treatment cyborg module to the medical borg., type: Add} - - {message: Adds two new medical tools for the borg. Borghypo and Borgdropper., - type: Add} - id: 4940 - time: '2023-10-01T20:45:17.0000000+00:00' -- author: Velcroboy + - message: Radiation now works again. + type: Fix + id: 5297 + time: '2023-12-09T04:10:01.0000000+00:00' +- author: metalgearsloth changes: - - {message: Nanotrasen suppliers now carry restocks for ChefVends and popular condiments. - Get them at your nearest cargo depot., type: Add} - id: 4941 - time: '2023-10-01T20:49:10.0000000+00:00' + - message: Reduced MIDI audio range so it's easier to reduce the volume to a comfortable + level. + type: Tweak + id: 5298 + time: '2023-12-09T04:18:15.0000000+00:00' +- author: nok-ko + changes: + - message: Entities without hands (like mice and mothroaches) are now forbidden + from operating Syndicate Bombs, C4, and other timed explosives. + type: Fix + id: 5299 + time: '2023-12-10T03:13:00.0000000+00:00' - author: chromiumboy changes: - - {message: Fix praying door hacking protections., type: Fix} - id: 4942 - time: '2023-10-01T21:08:03.0000000+00:00' + - message: Updated the crew monitoring console user interface + type: Tweak + id: 5300 + time: '2023-12-10T05:38:51.0000000+00:00' +- author: ElectroJr + changes: + - message: Add color picker to color selection, e.g. for character colors. + type: Add + - message: Fix drag-drop interaction outline not updating properly. + type: Fix + id: 5301 + time: '2023-12-10T10:43:06.0000000+00:00' +- author: metalgearsloth + changes: + - message: Removed gas tank throwing damage. + type: Remove + id: 5302 + time: '2023-12-10T14:11:26.0000000+00:00' - author: Nairodian changes: - - {message: Small firearms now fit in boots., type: Tweak} - id: 4943 - time: '2023-10-01T21:23:41.0000000+00:00' -- author: deltanedas + - message: Adjusted welder blindness to be much less forgiving. + type: Tweak + id: 5303 + time: '2023-12-10T23:10:07.0000000+00:00' +- author: KittenColony + changes: + - message: Added various gauze wraps to most species in the form of markings + type: Add + id: 5304 + time: '2023-12-10T23:16:38.0000000+00:00' +- author: Simyon + changes: + - message: Moths that are turned into zombies will now prefer cloth instead of brains. + type: Tweak + id: 5305 + time: '2023-12-11T03:17:55.0000000+00:00' +- author: TheKilk + changes: + - message: Added 7 new winter boots textures! + type: Add + id: 5306 + time: '2023-12-11T03:19:28.0000000+00:00' +- author: Sirionaut + changes: + - message: Animals now require a more reasonable amount of satiation before producing + eggs, milk, or wool (unless they are undead) + type: Fix + id: 5307 + time: '2023-12-11T03:20:41.0000000+00:00' +- author: notafet changes: - - {message: 'Added the Electric Grill for cooking steaks quickly, research food - service to make it.', type: Add} - id: 4944 - time: '2023-10-02T00:17:50.0000000+00:00' -- author: Pigeonpeas + - message: Pipes now leak their contents when destroyed. Make sure to drain pipes + before removing them. + type: Tweak + id: 5308 + time: '2023-12-11T07:51:45.0000000+00:00' +- author: Ubaser changes: - - {message: 'Added a new lizard horn marking for the head, kobold ears!', type: Add} - id: 4945 - time: '2023-10-02T07:08:20.0000000+00:00' -- author: JoeHammad + - message: Janitors can now buy their own bomb suit for cleaning chemical spills. + type: Add + id: 5309 + time: '2023-12-11T08:41:54.0000000+00:00' +- author: nok-ko changes: - - {message: 'the north star gloves have had their damage changed back to 8, as was - originally intended', type: Tweak} - id: 4946 - time: '2023-10-02T15:34:22.0000000+00:00' -- author: Vasilis + - message: "Fixed taking damage mid-sentence not activating \u201Cglorfcode\u201D" + type: Fix + id: 5310 + time: '2023-12-11T08:53:10.0000000+00:00' +- author: Ubaser + changes: + - message: Added two eye scar markings for humans and dwarves. + type: Add + id: 5311 + time: '2023-12-11T09:18:20.0000000+00:00' +- author: Whisper + changes: + - message: Added black gloves to the clothesmate + type: Add + id: 5312 + time: '2023-12-11T09:23:51.0000000+00:00' +- author: mirrorcult + changes: + - message: Emergency lights no longer make sound + type: Remove + - message: Emergency light radius and energy is now much lower + type: Tweak + id: 5313 + time: '2023-12-11T09:24:10.0000000+00:00' +- author: Ubaser and Pigeonpeas + changes: + - message: The kobold ear marking has received a new sprite. + type: Tweak + id: 5314 + time: '2023-12-11T09:25:55.0000000+00:00' +- author: Rainfey + changes: + - message: Hardsuit helmets added to chameleon menu + type: Add + id: 5315 + time: '2023-12-11T09:27:36.0000000+00:00' +- author: Flareguy changes: - - {message: The immovable rod gibs you instead of deleting your character again., - type: Fix} - id: 4947 - time: '2023-10-02T18:30:51.0000000+00:00' + - message: 'Added 4 new HUD themes: Plasmafire, Slimecore, Clockwork, and Retro.' + type: Add + - message: The default HUD theme is now Classic. The old default HUD theme still + exists under the name "Minimalist." + type: Tweak + - message: The modernized HUD theme has been renamed to "Eris." + type: Tweak + id: 5316 + time: '2023-12-11T09:28:17.0000000+00:00' +- author: metalgearsloth + changes: + - message: Arrivals is now stationed on a planet. + type: Add + id: 5317 + time: '2023-12-11T09:34:19.0000000+00:00' +- author: Whisper + changes: + - message: Added cosmetic sunglasses to the clothesmate. + type: Add + - message: Musician and Bartender now have cosmetic sunglasses. + type: Tweak + id: 5318 + time: '2023-12-11T09:35:51.0000000+00:00' - author: deltanedas changes: - - {message: Pizza recipes now require flat dough. Get a rolling pin from the dinnerware - vendor., type: Add} - id: 4948 - time: '2023-10-02T19:21:15.0000000+00:00' -- author: VigersRay + - message: Syndicate duffel bags heavily protect their items from explosions, and + regular bags have minor protection. + type: Tweak + id: 5319 + time: '2023-12-11T09:43:00.0000000+00:00' +- author: metalgearsloth changes: - - {message: The syndicate has begun to recruit more experienced people into the - ranks of nuclear operatives., type: Tweak} - id: 4949 - time: '2023-10-02T21:20:09.0000000+00:00' -- author: Doru991 + - message: Fix game audio persisting to lobby. + type: Fix + id: 5320 + time: '2023-12-11T10:26:56.0000000+00:00' +- author: Whisper changes: - - {message: Plant species mutations correctly mutate reagents., type: Fix} - id: 4950 - time: '2023-10-03T23:07:29.0000000+00:00' -- author: crazybrain + - message: Beer goggles can now scan solutions. + type: Add + id: 5321 + time: '2023-12-11T11:35:11.0000000+00:00' +- author: MACMAN2003 + changes: + - message: Added yellow tinted jensen glasses that may show up in maints from time + to time + type: Add + id: 5322 + time: '2023-12-11T11:36:19.0000000+00:00' +- author: ninruB + changes: + - message: Familiar Garbs may now appear as maintenance loot. + type: Add + id: 5324 + time: '2023-12-11T13:04:56.0000000+00:00' +- author: Errant changes: - - {message: The omnitool (advanced tool cyborg module) can pry airlocks and firelocks - again., type: Fix} - id: 4951 - time: '2023-10-04T05:22:48.0000000+00:00' + - message: Incapacitated mobs can no longer be shoved for a speed boost. + type: Fix + id: 5325 + time: '2023-12-11T13:05:14.0000000+00:00' +- author: willicassi + changes: + - message: Added info to botany guidebook entry + type: Add + id: 5326 + time: '2023-12-11T17:42:22.0000000+00:00' - author: EmoGarbage404 changes: - - {message: Cyborgs can toggle their flashlights again., type: Fix} - id: 4952 - time: '2023-10-04T14:30:11.0000000+00:00' -- author: nmajask + - message: Removed the Handheld Electrical Propulsion technology and its associated + item, tasers, from research. + type: Remove + id: 5327 + time: '2023-12-11T22:33:29.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: Clipboards are now available to the Head of Personnel and Quartermaster., - type: Add} - id: 4953 - time: '2023-10-04T22:28:29.0000000+00:00' -- author: coolmankid12345 + - message: Added the artifact crusher to research! Crush things today! + type: Add + id: 5328 + time: '2023-12-11T23:15:47.0000000+00:00' +- author: notafet changes: - - {message: Added the Revolutionaries gamemode., type: Add} - - {message: Added Head Revolutionaries and conversion for the flash, type: Add} - - {message: Added Rev status icons., type: Add} - - {message: Added Mindshields, type: Add} - id: 4954 - time: '2023-10-05T01:47:33.0000000+00:00' + - message: Stations no longer produce limitless plasma. Plasma refills can now be + ordered at cargo. + type: Tweak + id: 5329 + time: '2023-12-11T23:21:25.0000000+00:00' +- author: nok-ko + changes: + - message: Pacified players can no longer throw dangerous objects such as spears, + bolas, and bottles. + type: Tweak + id: 5330 + time: '2023-12-11T23:40:23.0000000+00:00' +- author: notafet + changes: + - message: Pumps, vents, scrubbers, and heaters now work faster. + type: Tweak + id: 5331 + time: '2023-12-11T23:59:47.0000000+00:00' - author: EmoGarbage404 changes: - - {message: Fixed access while riding vehicles and mechs., type: Fix} - id: 4955 - time: '2023-10-05T09:12:41.0000000+00:00' -- author: brainfood1183 + - message: Removed Senior Researcher, Senior Engineer, Senior Physician, and Senior + Officer. + type: Remove + id: 5332 + time: '2023-12-12T02:37:06.0000000+00:00' +- author: Avalon + changes: + - message: CentCom has begun unceremoniously plucking Mothroaches out of Maintenance + and selling them to nearby Space Stations after the discovery that they make + decent pets. + type: Add + id: 5333 + time: '2023-12-12T04:46:41.0000000+00:00' +- author: notafet changes: - - {message: Rock anomalies have been detected by nanotrasen scientists., type: Add} - id: 4956 - time: '2023-10-05T19:53:54.0000000+00:00' -- author: notquitehadouken + - message: Tritium and frezon can once again be sold for profit. + type: Tweak + id: 5334 + time: '2023-12-12T07:48:34.0000000+00:00' +- author: IProduceWidgets changes: - - {message: Slimes no longer rot again, type: Fix} - id: 4957 - time: '2023-10-05T19:56:40.0000000+00:00' -- author: dahnte + - message: Mayo Jar is bigger (50u) + type: Tweak + id: 5335 + time: '2023-12-12T07:48:52.0000000+00:00' +- author: EmoGarbage404 changes: - - {message: Onion rings!, type: Add} - id: 4958 - time: '2023-10-05T21:31:40.0000000+00:00' -- author: gusxyz + - message: Fixed the quick-remove star in the inventory sometimes not appearing. + type: Fix + - message: You can drag items out of the inventory window to drop them on the ground. + type: Add + id: 5336 + time: '2023-12-12T07:49:37.0000000+00:00' +- author: IProduceWidgets + changes: + - message: Pill canisters are slightly better than cig packs, go talk to the chemists. + type: Tweak + id: 5337 + time: '2023-12-12T07:51:38.0000000+00:00' +- author: IProduceWidgets + changes: + - message: Sec belt holds sidearms and sidearm ammo. + type: Tweak + id: 5338 + time: '2023-12-12T07:52:26.0000000+00:00' +- author: IProduceWidgets + changes: + - message: The syndie holster now holds the guns you always wanted it to. + type: Tweak + id: 5339 + time: '2023-12-12T07:53:00.0000000+00:00' +- author: IProduceWidgets + changes: + - message: Jar now fills. + type: Tweak + id: 5340 + time: '2023-12-12T07:54:15.0000000+00:00' +- author: IProduceWidgets + changes: + - message: Cig Cartons are slightly smaller. + type: Tweak + id: 5341 + time: '2023-12-12T07:55:56.0000000+00:00' +- author: IProduceWidgets + changes: + - message: Cigar cases can now hold Small items. + type: Tweak + id: 5342 + time: '2023-12-12T07:56:19.0000000+00:00' +- author: IProduceWidgets + changes: + - message: Pipes now have slightly bigger bowls! (30u) + type: Tweak + id: 5343 + time: '2023-12-12T07:56:44.0000000+00:00' +- author: IProduceWidgets + changes: + - message: Long guns are now actually long. + type: Tweak + id: 5344 + time: '2023-12-12T07:59:43.0000000+00:00' +- author: IProduceWidgets + changes: + - message: syndicate pens now come in suitably sized discarding boxes. + type: Tweak + id: 5345 + time: '2023-12-12T08:01:33.0000000+00:00' +- author: IProduceWidgets + changes: + - message: Mops are now larger! + type: Tweak + - message: Defibs are now larger! + type: Tweak + id: 5346 + time: '2023-12-12T08:02:44.0000000+00:00' +- author: metalgearsloth changes: - - {message: Monkey's now are able to equip gas masks., type: Add} - id: 4959 - time: '2023-10-05T21:34:37.0000000+00:00' -- author: TheShuEd + - message: Fix arrivals fog not actually blocking, no more free roaming. + type: Fix + id: 5347 + time: '2023-12-12T09:20:33.0000000+00:00' +- author: themias + changes: + - message: Added fill visuals to Hot Chocolate + type: Tweak + id: 5348 + time: '2023-12-13T00:01:24.0000000+00:00' +- author: themias + changes: + - message: Fixed secret doors not requiring metal rods + type: Fix + id: 5349 + time: '2023-12-13T00:01:51.0000000+00:00' +- author: Vasilis changes: - - {message: The trees and rocks are now rotating to follow the camera., type: Tweak} - id: 4960 - time: '2023-10-06T01:50:25.0000000+00:00' -- author: gusxyz + - message: Added a General settings tab, and moved a bunch of options into it. + type: Add + - message: Added the ability to toggle on and off the Discord Rich Presence. + type: Add + id: 5350 + time: '2023-12-13T01:58:20.0000000+00:00' +- author: Ubaser changes: - - {message: Syndicate bombs collide again., type: Tweak} - id: 4961 - time: '2023-10-06T06:29:58.0000000+00:00' + - message: RD now has a custom-made lab coat. + type: Add + id: 5351 + time: '2023-12-13T08:51:00.0000000+00:00' - author: Ubaser changes: - - {message: The Clothesmate now dispenses berets., type: Tweak} - id: 4962 - time: '2023-10-06T18:49:08.0000000+00:00' -- author: Lank + - message: Some jetpacks can be now worn in more slots. + type: Tweak + id: 5352 + time: '2023-12-13T08:51:09.0000000+00:00' +- author: Ubaser changes: - - {message: 'Reptilians have received a minor rework. Notable features include a - diet restriction to only meat, fruit and pills, and the ability to pull objects - using their tail.', type: Tweak} - id: 4963 - time: '2023-10-06T21:19:01.0000000+00:00' -- author: chromiumboy + - message: Ninjas and Nukies now get new sprites for their pinpointers. + type: Add + id: 5353 + time: '2023-12-13T08:53:05.0000000+00:00' +- author: Errant changes: - - {message: Fixed wire panels on bombs and vending machines not opening correctly., - type: Fix} - id: 4964 - time: '2023-10-06T21:26:02.0000000+00:00' -- author: TheShuEd + - message: A dying person's Last Words can no longer be sent to radio channels. + type: Fix + id: 5354 + time: '2023-12-13T21:20:38.0000000+00:00' +- author: deltanedas changes: - - {message: 'Beer anomaly added! And no, it''s an anomaly of ominisine. Hmm. No. - It seems to be capable of producing ANY substance.', type: Add} - id: 4965 - time: '2023-10-07T00:26:35.0000000+00:00' -- author: DrSmugleaf + - message: Cybersun and centcom pens can now edit stamped paper. + type: Tweak + id: 5355 + time: '2023-12-13T21:33:32.0000000+00:00' +- author: Ubaser changes: - - {message: Fixed not being able to throw items into disposals from close up., type: Fix} - id: 4966 - time: '2023-10-07T00:43:54.0000000+00:00' -- author: Nimfar11 + - message: Added a new "uneven" hair style. + type: Add + id: 5356 + time: '2023-12-13T21:34:28.0000000+00:00' +- author: notafet changes: - - {message: Now the Secret Doors can be welded shut., type: Add} - id: 4967 - time: '2023-10-07T00:45:12.0000000+00:00' + - message: Plasma and tritium fires spread more slowly and are now more survivable. + type: Tweak + id: 5357 + time: '2023-12-14T02:39:38.0000000+00:00' +- author: Dygon + changes: + - message: 'A new type of grenade has been developed, these grenades release a spray + of bullets instead of exploding: Shrapnel grenade, Stinger grenade and Incendiary + grenade.' + type: Add + - message: Stinger grenades and ClusterBangs are now available in the sectech. + type: Add + - message: Incendiary grenades, Shrapnel grenades, Cluster grenades and the Slipocalypse + ClusterSoap are now available in the syndicate uplink, clowns also get a Clusterbanana + in their uplink. + type: Add + - message: Explosive banana peels are now more dangerous. + type: Tweak + id: 5358 + time: '2023-12-14T03:30:43.0000000+00:00' - author: EmoGarbage404 changes: - - {message: Certain mobs will now fight back when provoked. Try not to get robusted., - type: Add} - id: 4968 - time: '2023-10-07T00:56:18.0000000+00:00' -- author: HerCoyote23 + - message: Added gas condensers. These machines are available at the circuit imprinter + and can convert gases into liquids. Tasty! + type: Add + id: 5359 + time: '2023-12-14T03:35:44.0000000+00:00' +- author: DangerRevolution + changes: + - message: Extended emergency nitrogen tanks can now be found on the station. + type: Add + id: 5360 + time: '2023-12-14T04:35:39.0000000+00:00' +- author: SlamBamActionman + changes: + - message: Discord bot Changelog now includes hyperlinks to the PRs. + type: Add + id: 5361 + time: '2023-12-14T18:19:25.0000000+00:00' +- author: themias + changes: + - message: Fixed spray nozzle not getting ammo from the back pack tank + type: Fix + id: 5362 + time: '2023-12-14T20:49:40.0000000+00:00' +- author: Ubaser changes: - - {message: Tarantulas now inject real toxins into victims and they can pass through - armour., type: Tweak} - id: 4969 - time: '2023-10-07T13:05:40.0000000+00:00' -- author: DrSmugleaf + - message: Mothroach crates are now twice as expensive + type: Tweak + id: 5363 + time: '2023-12-14T20:58:38.0000000+00:00' +- author: deltanedas changes: - - {message: Fixed not being able to sleep on a bed., type: Fix} - id: 4970 - time: '2023-10-07T19:11:03.0000000+00:00' -- author: JoeHammad + - message: Crusher Glaives can be made with the Salvage Weapons technology. + type: Add + id: 5364 + time: '2023-12-15T01:34:37.0000000+00:00' +- author: brainfood1183 changes: - - {message: 'traitor gamemode is rarer, nukies and revs are more common', type: Tweak} - id: 4971 - time: '2023-10-07T19:15:57.0000000+00:00' -- author: Lank + - message: Acidifier now has a sprite effect. + type: Tweak + id: 5365 + time: '2023-12-15T01:56:42.0000000+00:00' +- author: Ubaser changes: - - {message: Humanoid species now passively regenerate small bruises and burns., - type: Tweak} - id: 4972 - time: '2023-10-07T19:34:32.0000000+00:00' -- author: EmoGarbage404 + - message: Mercury poisoning now causes stuttering. + type: Tweak + id: 5366 + time: '2023-12-15T09:28:13.0000000+00:00' +- author: ninruB + changes: + - message: Reptilians no longer innately take 30% less heat damage. + type: Tweak + id: 5367 + time: '2023-12-15T09:37:05.0000000+00:00' +- author: keronshb + changes: + - message: Added the Action Upgrade System - used to upgrade specific actions! + type: Add + - message: Added commands to upgrade actions. + type: Add + - message: Added Charges information to action tooltips for actions with charges + type: Add + id: 5368 + time: '2023-12-15T09:41:44.0000000+00:00' +- author: Ubaser changes: - - {message: Kudzu has been reenabled., type: Add} - id: 4973 - time: '2023-10-07T19:59:39.0000000+00:00' + - message: Chaplains can smack their bible on water to create holy water. + type: Add + id: 5369 + time: '2023-12-15T09:52:21.0000000+00:00' - author: EmoGarbage404 changes: - - {message: Diona now move at the same speed as other species., type: Tweak} - id: 4974 - time: '2023-10-08T21:02:46.0000000+00:00' -- author: DrSmugleaf + - message: Added the electrolysis unit and the centrifuge. These will be used for + chemistry in the future. + type: Add + id: 5370 + time: '2023-12-15T09:52:46.0000000+00:00' +- author: themias + changes: + - message: Gibbed body parts contain their victim's DNA + type: Tweak + - message: Implanters, syringes, hyposprays, medipens, and cigarettes transfer DNA + type: Tweak + - message: Melee weapons that deal blunt/slash/pierce damage transfer DNA + type: Tweak + - message: Soap and rags can be used to clean evidence off of items, but leave evidence + of their own + type: Tweak + id: 5371 + time: '2023-12-15T09:52:56.0000000+00:00' +- author: TheShuEd changes: - - {message: Updated the PDA ringtone UI to have a small delay between sets., type: Tweak} - id: 4975 - time: '2023-10-08T21:25:08.0000000+00:00' -- author: EmoGarbage404 + - message: Added hypodart into uplink. It is capable of piercing armor and injecting + up to 7u reagents. + type: Add + id: 5372 + time: '2023-12-15T09:55:57.0000000+00:00' +- author: tgrkzus + changes: + - message: Open tanks will no longer make noise at very low release pressure. + type: Tweak + id: 5373 + time: '2023-12-15T09:56:17.0000000+00:00' +- author: MendaxxDev + changes: + - message: The flare gun now explodes, damages and stuns the player when used with + wrong ammo + type: Tweak + id: 5374 + time: '2023-12-15T09:57:59.0000000+00:00' +- author: TheShuEd changes: - - {message: Brains now function properly when inserted into an MMI., type: Fix} - id: 4976 - time: '2023-10-09T04:49:20.0000000+00:00' -- author: gusxyz + - message: 'Added 2 new artifact effect: attraction and repulsion' + type: Add + id: 5375 + time: '2023-12-15T15:39:25.0000000+00:00' +- author: mirrorcult changes: - - {message: Using capital letter for your department specific radio channels will - work now!, type: Tweak} - id: 4977 - time: '2023-10-09T05:07:54.0000000+00:00' -- author: nmajask + - message: Explosion visuals now last slightly longer + type: Add + - message: You will now hear a reverbed explosion sound effect for explosions that + are far away from you + type: Add + - message: Smaller explosions now make a distinct sound compared to larger ones + type: Add + id: 5376 + time: '2023-12-15T16:57:46.0000000+00:00' +- author: Ubaser changes: - - {message: 'Added flannel jackets, find them at your local winterdrobe or dark - maint corridor.', type: Add} - id: 4978 - time: '2023-10-09T15:22:57.0000000+00:00' -- author: Vasilis + - message: Artistic toolboxes now have a filled variant that can be found in maintenance + occasionally. + type: Tweak + id: 5377 + time: '2023-12-15T20:44:42.0000000+00:00' +- author: Ilya246 changes: - - {message: Contributors are automatically updated now once a week in the credits - section., type: Add} - id: 4979 - time: '2023-10-09T23:42:53.0000000+00:00' -- author: EmoGarbage404 + - message: Cyborg jobs now start with a positronic brain. + type: Tweak + id: 5378 + time: '2023-12-15T20:45:31.0000000+00:00' +- author: deltanedas changes: - - {message: 'Fixed kudzu, foam, smoke, and puddles spreading at extremely high rates.', - type: Fix} - id: 4980 - time: '2023-10-10T03:32:34.0000000+00:00' + - message: Borgs can wear hats now. Time to get festive! + type: Tweak + id: 5379 + time: '2023-12-15T22:33:52.0000000+00:00' +- author: mirrorcult + changes: + - message: Chasms no longer spawn on lava expeditions + type: Tweak + id: 5380 + time: '2023-12-15T22:34:09.0000000+00:00' - author: EmoGarbage404 changes: - - {message: Reenabled Kudzu (again) (for real this time), type: Add} - id: 4981 - time: '2023-10-10T03:34:41.0000000+00:00' -- author: GoodWheatley + - message: The guidebook now shows you if a chemical's recipe needs an alternative + mixing method, such as a chaplain's blessing or electrolysis. + type: Fix + id: 5381 + time: '2023-12-15T23:59:54.0000000+00:00' +- author: deltanedas changes: - - {message: Dionas are actually the same speed as other species now., type: Fix} - id: 4982 - time: '2023-10-10T14:03:20.0000000+00:00' -- author: Potato1234_x + - message: Added smoke grenades to the syndicate uplink for 1 TC, they create a + large smoke cloud to provide cover for your heinous activites. + type: Add + - message: Added tear gas grenades to the SecTech and security belts, use them to + control riots. + type: Add + id: 5382 + time: '2023-12-16T01:49:30.0000000+00:00' +- author: metalgearsloth changes: - - {message: Added the CuraDrobe., type: Add} - - {message: Added the sensible suit and skirt., type: Add} - - {message: Fixed the librarian not having their own jumpskirt., type: Fix} - - {message: Resprited the librarian jumpsuit., type: Tweak} - id: 4983 - time: '2023-10-10T16:55:31.0000000+00:00' -- author: Whisper + - message: Fix map boundaries not pushing you back. + type: Fix + id: 5383 + time: '2023-12-16T02:19:54.0000000+00:00' +- author: Ubaser changes: - - {message: Lizards can eat organs again!, type: Fix} - - {message: Organs now contain uncooked proteins instead of edible nutriment. Animals - will be able to consume this., type: Tweak} - id: 4984 - time: '2023-10-10T18:02:47.0000000+00:00' -- author: metalgearsloth + - message: Crayons boxes now hold a white crayon. + type: Tweak + id: 5384 + time: '2023-12-16T03:20:40.0000000+00:00' +- author: Ubaser changes: - - {message: Fix shuttles sometimes clipping planet marker entities such as ore., - type: Fix} - id: 4985 - time: '2023-10-10T21:33:04.0000000+00:00' -- author: metalgearsloth + - message: Chefs get black pepper packets in their lockers. + type: Tweak + id: 5385 + time: '2023-12-16T03:20:51.0000000+00:00' +- author: Flareguy changes: - - {message: Fix expedition faction sometimes not aligning with the mission faction., - type: Fix} - id: 4986 - time: '2023-10-10T21:33:18.0000000+00:00' -- author: metalgearsloth + - message: Resprited the Kammerer, Double-Barrel, and Enforcer shotguns using sprites + courtesy of /tg/station. + type: Tweak + id: 5386 + time: '2023-12-16T04:23:57.0000000+00:00' +- author: mirrorcult changes: - - {message: Vaulting tables is now predicted., type: Fix} - - {message: Fix buckle sound not playing., type: Fix} - - {message: Buckling is now predicted., type: Fix} - id: 4987 - time: '2023-10-10T23:41:12.0000000+00:00' -- author: deltanedas + - message: Scientists can now fabricate faux grass planet and ice tiles with a tier + 2 civilian services research! They're just as good as the real thing, while + being removable. + type: Add + id: 5387 + time: '2023-12-16T08:20:57.0000000+00:00' +- author: Ubaser changes: - - {message: Ninja uncloak after attacking with melee weapons., type: Tweak} - id: 4988 - time: '2023-10-11T02:55:54.0000000+00:00' -- author: gusxyz + - message: Lawyers, librarians and reporters now spawn with a luxury pen in their + PDA. + type: Add + id: 5388 + time: '2023-12-16T08:21:24.0000000+00:00' +- author: TheShuEd changes: - - {message: Crabs will seek out food to eat now., type: Add} - id: 4989 - time: '2023-10-11T03:09:26.0000000+00:00' + - message: Added 9 new cargo bounties! + type: Add + id: 5389 + time: '2023-12-16T08:23:35.0000000+00:00' +- author: mirrorcult + changes: + - message: Everyone can toggle fire alarms now, not just atmos + type: Tweak + id: 5390 + time: '2023-12-16T08:24:00.0000000+00:00' +- author: EmoGarbage404 + changes: + - message: A variety of chemicals can now be decomposed via electrolysis or centrifugal + force. + type: Add + id: 5391 + time: '2023-12-16T08:26:12.0000000+00:00' +- author: mirrorcult + changes: + - message: Ejecting a tank from a canister will now try to put it in your hand first + type: Fix + id: 5392 + time: '2023-12-16T08:28:28.0000000+00:00' +- author: TheShuEd + changes: + - message: Added brother of cak - bread dog! 5 cognizine, sausage bread, animal + heart, cooked spaceshrooms and 15 second in microwave = bread dog. + type: Add + id: 5393 + time: '2023-12-16T08:30:20.0000000+00:00' +- author: Ubaser + changes: + - message: Chemistry now has vials, similar to bottles but are much more durable. + type: Add + id: 5394 + time: '2023-12-16T14:29:54.0000000+00:00' - author: Vasilis changes: - - {message: Potentially fix (or hopefully at least reduce) electrical anomaly lagging - everyone on supercrit., type: Fix} - id: 4990 - time: '2023-10-11T03:11:46.0000000+00:00' -- author: ShadowCommander + - message: Added Poppy the Safety Opposum! + type: Add + - message: Opossums have received some new sprites. Old sprites are still available + to be spawned in by admins. + type: Tweak + id: 5395 + time: '2023-12-16T14:34:54.0000000+00:00' +- author: deltanedas changes: - - {message: 'Added toggleselfghost command, which toggles being able to see your - own ghost.', type: Add} - - {message: 'Added replay_toggle_screenshot_mode command, which toggles the HUD - in replay mode to look similar to ingame.', type: Add} - id: 4991 - time: '2023-10-11T03:43:48.0000000+00:00' + - message: Fixed explosion resistance from bags being applied to the wearer. + type: Fix + id: 5396 + time: '2023-12-16T17:17:09.0000000+00:00' - author: deltanedas changes: - - {message: Rehargers can be examined to show the charge of the battery or weapon - inside., type: Tweak} - id: 4992 - time: '2023-10-11T09:22:09.0000000+00:00' -- author: Skarletto + - message: Added the power sensor for checking power stats in logic circuits. + type: Add + id: 5397 + time: '2023-12-16T18:32:42.0000000+00:00' +- author: Flareguy changes: - - {message: Changed unary devices such as scrubbers and vents to not be able to - stack with each other, type: Tweak} - id: 4993 - time: '2023-10-11T15:20:21.0000000+00:00' -- author: ElectroJr + - message: Standardized all material sheets to 10u of total reagents when grinded. + Alloys are still worth the sum of their parts. + type: Tweak + - message: You can now grind plastic into oil and phosphorous. + type: Tweak + - message: Steel sheets no longer contain trace amounts of lead in them. + type: Tweak + id: 5398 + time: '2023-12-16T20:52:11.0000000+00:00' +- author: SlamBamActionman + changes: + - message: Discord bot Changelog now includes hyperlinks to the PRs. + type: Add + id: 5399 + time: '2023-12-16T21:00:59.0000000+00:00' + url: null +- author: brainfood1183 changes: - - {message: Fixed explosion resistance from clothing/equipment not being applied., - type: Fix} - id: 4994 - time: '2023-10-11T16:31:10.0000000+00:00' -- author: JoeHammad + - message: Crystals now drop crystal shards, you can use them to craft colored light + tubes. + type: Add + id: 5400 + time: '2023-12-16T22:20:14.0000000+00:00' + url: null +- author: Ilya246 changes: - - {message: The nukie ship now has syndicate access airlocks, type: Add} - id: 4995 - time: '2023-10-11T16:47:25.0000000+00:00' -- author: notafet + - message: Pens now embed and deal damage on throw like spears. + type: Add + id: 5401 + time: '2023-12-16T22:23:08.0000000+00:00' + url: null +- author: Emisse changes: - - {message: Carbon dioxide poisoning is now more deadly. Victims of carbon dioxide - poisoning now gasp visibly., type: Tweak} - id: 4996 - time: '2023-10-12T07:35:31.0000000+00:00' + - message: Svalinn Laser Pistol and accompanying T3 tech. + type: Add + id: 5402 + time: '2023-12-17T03:43:50.0000000+00:00' + url: null +- author: mirrorcult + changes: + - message: You can now pet the recycler + type: Add + id: 5403 + time: '2023-12-17T07:44:37.0000000+00:00' + url: null - author: Ubaser changes: - - {message: Revamped the Paramedic Void Suit sprite., type: Tweak} - id: 4997 - time: '2023-10-12T22:20:24.0000000+00:00' -- author: pigeonpeas + - message: Mindbreaker is now hallucinogenic. + type: Tweak + id: 5404 + time: '2023-12-17T07:44:54.0000000+00:00' + url: null +- author: JoeHammad changes: - - {message: Reptilians can now choose to have floppy kobold ears., type: Add} - id: 4998 - time: '2023-10-13T01:30:31.0000000+00:00' + - message: Paramedics now have a rollerbed in their bag by default + type: Add + id: 5405 + time: '2023-12-17T09:55:29.0000000+00:00' + url: null +- author: Ilya246 + changes: + - message: Large cardboard boxes and stealth boxes now inherit their mover's access. + type: Fix + id: 5406 + time: '2023-12-17T09:55:40.0000000+00:00' + url: null - author: TheShuEd changes: - - {message: Animals now give cute hearts when you pet them., type: Add} - id: 4999 - time: '2023-10-13T17:34:18.0000000+00:00' -- author: chromiumboy + - message: Changed hypodart cost from 3 to 2 tc + type: Tweak + id: 5407 + time: '2023-12-17T16:08:11.0000000+00:00' + url: null +- author: yathxyz + changes: + - message: Fixed nix devShell + type: Fix + id: 5408 + time: '2023-12-17T16:55:37.0000000+00:00' + url: null +- author: Ubaser changes: - - {message: The radiation collector has been updated to provide better visual feedback - on its status., type: Tweak} - id: 5000 - time: '2023-10-13T23:08:00.0000000+00:00' -- author: liltenhead + - message: HoS parade uniforms are available at the uniform printer. + type: Add + id: 5409 + time: '2023-12-17T23:20:04.0000000+00:00' + url: null +- author: Alzore + changes: + - message: Security zipties are now tiny and easier to store. + type: Tweak + id: 5410 + time: '2023-12-17T23:27:01.0000000+00:00' + url: null +- author: Aexxie + changes: + - message: Added RCDs to all engineering lockers. + type: Add + id: 5411 + time: '2023-12-18T02:38:37.0000000+00:00' + url: null +- author: Ubaser changes: - - {message: Increased containment field duration after power loss., type: Tweak} - id: 5001 - time: '2023-10-13T23:41:43.0000000+00:00' -- author: liltenhead + - message: Traitors and Nukies can now purchase a Chemical Synthesis Kit for 4TC + which contains Vestine. + type: Add + - message: Nocturine, Tazinide, Stimulants, Lexorin and Mute Toxin are now locked + behind Vestine. + type: Tweak + - message: Lexorin and Heartbreaker toxin are buffed, while Licoxide is nerfed. + type: Tweak + - message: You can no longer purchase Nocturine through the uplink. + type: Remove + id: 5412 + time: '2023-12-18T02:40:28.0000000+00:00' + url: null +- author: Ubaser changes: - - {message: 'Increased the stability of the AME, it now takes about three minutes - for the AME to overload.', type: Tweak} - id: 5002 - time: '2023-10-13T23:42:46.0000000+00:00' -- author: deltanedas + - message: Janitors now get rubber gloves for cleaning. + type: Add + id: 5413 + time: '2023-12-18T03:11:19.0000000+00:00' + url: null +- author: Velcroboy changes: - - {message: 'Added the igniter for sparking flames, can be found in the vendomat - and robotics vendor or produced by science.', type: Add} - id: 5003 - time: '2023-10-14T07:11:50.0000000+00:00' -- author: DrSmugleaf - changes: - - {message: 'Fixed librarians, lawyers, ninjas and nukeops having their starting - in-hand items dropped on the floor.', type: Fix} - id: 5004 - time: '2023-10-14T17:28:52.0000000+00:00' -- author: liltenhead - changes: - - {message: Reduced the bombsuit helmet's explosive resistance., type: Tweak} - id: 5005 - time: '2023-10-14T17:34:58.0000000+00:00' -- author: JoeHammad - changes: - - {message: mindshields to meta station armory, type: Add} - id: 5006 - time: '2023-10-14T21:50:44.0000000+00:00' -- author: JoeHammad - changes: - - {message: 'chem dispensers to barratry, you can stop crying now', type: Add} - id: 5007 - time: '2023-10-14T21:51:33.0000000+00:00' -- author: ike709 + - message: Added coal. Coal has been added to the steel recipe in the Ore Processor. + Coal can be ground up for Carbon and other elements. Coal can be mined or received + as a gift if you've been naughty. + type: Add + id: 5414 + time: '2023-12-18T19:38:12.0000000+00:00' + url: null +- author: Flareguy changes: - - {message: 'All non-high-security airlocks can now be pried open by hand when unpowered, - albeit much slower than using a crowbar', type: Tweak} - id: 5008 - time: '2023-10-15T22:17:45.0000000+00:00' + - message: You can now walk into external and shuttle airlocks to open them, like + all other airlocks. + type: Tweak + id: 5415 + time: '2023-12-18T19:44:50.0000000+00:00' + url: null - author: iacore changes: - - {message: Secure crates are now weldable!, type: Fix} - id: 5009 - time: '2023-10-16T05:27:23.0000000+00:00' -- author: brainfood1183 - changes: - - {message: Behonkers are fixed (in combat use right click to fire laser), type: Fix} - id: 5010 - time: '2023-10-16T05:29:14.0000000+00:00' -- author: ShadowCommander + - message: normal closets can now be constructed and deconstructed + type: Add + id: 5416 + time: '2023-12-18T19:46:16.0000000+00:00' + url: null +- author: Emisse changes: - - {message: Fixed material reclaimer sound error when processing something., type: Fix} - - {message: Fixed duplicate gib sound when the material reclaimer processes a mob., - type: Fix} - id: 5011 - time: '2023-10-16T05:30:35.0000000+00:00' + - message: Walls are stronger and windows are weaker. + type: Tweak + - message: Secure crates and lockers are a lot stronger. + type: Tweak + - message: Melee weapons are now more balanced within a closer range of damage. + type: Tweak + - message: Double energy sword and fireaxe are now unavailable in uplink. + type: Tweak + id: 5417 + time: '2023-12-19T02:38:49.0000000+00:00' + url: null - author: EmoGarbage404 changes: - - {message: Fixed being permanently cuffed if you transformed into a zombie with - cuffs on., type: Fix} - id: 5012 - time: '2023-10-16T05:31:04.0000000+00:00' -- author: Lomcastar - changes: - - {message: Uranium crabs are more radioactive!, type: Tweak} - id: 5013 - time: '2023-10-16T05:34:18.0000000+00:00' -- author: JoeHammad - changes: - - {message: Stun batons now take three hits to stun and have had their battery use - dropped by half, type: Tweak} - id: 5014 - time: '2023-10-16T11:39:06.0000000+00:00' -- author: metalgearsloth - changes: - - {message: Fix item drops mispredicting., type: Fix} - id: 5015 - time: '2023-10-16T11:49:41.0000000+00:00' -- author: Vasilis - changes: - - {message: Pneumatic Cannons can no longer shoot arrows., type: Tweak} - id: 5016 - time: '2023-10-17T22:58:05.0000000+00:00' -- author: Vasilis - changes: - - {message: Spears and arrows can now only hold up to 2u of liquids instead of 5u., - type: Tweak} - id: 5017 - time: '2023-10-17T23:01:25.0000000+00:00' -- author: notquitehadouken - changes: - - {message: The grey stick that shows up when you wide swing a weapon now looks - like the weapon used., type: Tweak} - id: 5018 - time: '2023-10-18T01:12:00.0000000+00:00' -- author: metalgearsloth - changes: - - {message: Fix vaulting mispredict., type: Fix} - id: 5019 - time: '2023-10-18T05:11:33.0000000+00:00' -- author: daerSeebaer - changes: - - {message: The AME controller now shows the current load and maximum capacity., - type: Add} - id: 5020 - time: '2023-10-18T17:46:33.0000000+00:00' -- author: Errant - changes: - - {message: Temperature alerts are now more accurate for different species., type: Fix} - id: 5021 - time: '2023-10-18T18:05:15.0000000+00:00' -- author: Phunny - changes: - - {message: Added Tortilla doughs and variants., type: Add} - - {message: Added Taco shells and recipe, type: Add} - - {message: Added various types of Tacos, type: Add} - - {message: Changed naming of the original taco to soft shell taco, type: Tweak} - id: 5022 - time: '2023-10-18T21:03:23.0000000+00:00' -- author: TemporalOroboros - changes: - - {message: Electric shocks now scale with the amount of power in the cables instead - of the type of cable., type: Tweak} - id: 5023 - time: '2023-10-18T21:04:47.0000000+00:00' -- author: Doru991 - changes: - - {message: Being gibbed through normal means will no longer delete all items on - the body., type: Fix} - id: 5024 - time: '2023-10-18T21:15:17.0000000+00:00' -- author: KingFroozy - changes: - - {message: Atmospheric technician's casual jumpsuit was resprited., type: Tweak} - id: 5025 - time: '2023-10-19T03:44:58.0000000+00:00' -- author: Vasilis - changes: - - {message: You will no longer be picked as a head revolutionary if you have not - checked it in the antag picker. Note you can still become a revolutionary if - someone converts you., type: Fix} - id: 5026 - time: '2023-10-19T03:48:56.0000000+00:00' -- author: TheShuEd - changes: - - {message: Added dart game!, type: Add} - id: 5027 - time: '2023-10-19T03:55:30.0000000+00:00' -- author: BurninDreamer - changes: - - {message: 'C4 now costs 2 TC instead of 4TC, the bundle costs 12TC instead of - 20TC', type: Tweak} - id: 5028 - time: '2023-10-19T15:19:33.0000000+00:00' -- author: IntegerTempest - changes: - - {message: Added lathe printing for rollerbed & wheelchairs., type: Add} - id: 5029 - time: '2023-10-20T05:46:33.0000000+00:00' -- author: deltanedas - changes: - - {message: Meats now cook based on internal temperature. Don't make steak in a - plasma fire unless you want to scorch the outside before the inside can even - cook., type: Tweak} - id: 5030 - time: '2023-10-20T20:21:49.0000000+00:00' -- author: metalgearsloth - changes: - - {message: Fix replays not starting., type: Fix} - id: 5031 - time: '2023-10-20T22:37:02.0000000+00:00' -- author: DrSmugleaf - changes: - - {message: Fixed not being able to run server commands without >., type: Fix} - - {message: Fixed not being able to use the help command to see another command's - help text., type: Fix} - id: 5032 - time: '2023-10-21T10:58:57.0000000+00:00' -- author: 27alaing - changes: - - {message: 'Common internet slang now gets replaced in IC chat. (example: brb --> - be right back)', type: Add} - id: 5033 - time: '2023-10-21T19:43:11.0000000+00:00' -- author: Vasilis - changes: - - {message: Added a s-social anxiety trait that m-makes you st-stutter your w-words - when you t-talk., type: Add} - id: 5034 - time: '2023-10-21T20:09:54.0000000+00:00' -- author: DrSmugleaf - changes: - - {message: Fixed shuttle thrusters and gyroscopes being disabled by default., type: Fix} - id: 5035 - time: '2023-10-21T21:33:49.0000000+00:00' -- author: DrSmugleaf - changes: - - {message: Fixed the expeditions console not showing any expeditions., type: Fix} - id: 5036 - time: '2023-10-21T21:34:00.0000000+00:00' -- author: nikthechampiongr - changes: - - {message: Players can no longer telekinetically pry open doors while they are - not under the effects of gravity., type: Fix} - id: 5037 - time: '2023-10-22T05:49:56.0000000+00:00' -- author: deltanedas - changes: - - {message: 'Emitters now destroy rocks in 1 hit like crushers and PKAs, you can - use them for laser mining.', type: Tweak} - id: 5038 - time: '2023-10-22T05:51:01.0000000+00:00' -- author: metalgearsloth - changes: - - {message: Fix tile placement mispredicting and flickering., type: Fix} - id: 5039 - time: '2023-10-22T05:53:39.0000000+00:00' + - message: Added the RCD and RCD ammo crates to cargo. + type: Add + id: 5418 + time: '2023-12-19T02:40:55.0000000+00:00' + url: null - author: ElectroJr changes: - - {message: Fixed a bug that caused items to get stuck to vehicles when unequipping - clothing., type: Fix} - id: 5040 - time: '2023-10-22T05:54:30.0000000+00:00' -- author: Endecc - changes: - - {message: 'Added the Requisition Digi-board, a wireless cargo computer (and high-capacity - clipboard) for the Quartermaster''s Locker.', type: Add} - - {message: 'Added a new Steal objective for traitors, as this new fancy clipboard - has access to most of Nanotrasen''s accounting details!', type: Add} - id: 5041 - time: '2023-10-22T07:34:06.0000000+00:00' -- author: stopbreaking - changes: - - {message: Replaced wielding do_after with an interaction cooldown., type: Tweak} - id: 5042 - time: '2023-10-22T13:53:14.0000000+00:00' -- author: metalgearsloth - changes: - - {message: Tile-prying do_after is now predicted., type: Tweak} - id: 5043 - time: '2023-10-23T13:20:33.0000000+00:00' -- author: Tryded - changes: - - {message: Changed the damage of the double bladed energy sword to 17 heat + 17 - Slash (The Double Bladed energy sword use to deal as much damage as an energy - dagger.), type: Tweak} - id: 5044 - time: '2023-10-23T14:35:33.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: Fixed activating artifacts with magboots., type: Fix} - id: 5045 - time: '2023-10-24T06:18:46.0000000+00:00' -- author: Stray-Pyramid - changes: - - {message: Ore bags now pickup artifact fragments as well as ores, type: Fix} - id: 5046 - time: '2023-10-24T06:20:46.0000000+00:00' -- author: Morb0 - changes: - - {message: Syndicate have issued a new challenge objective for traitors with shuttle - hijacking, type: Add} - id: 5047 - time: '2023-10-24T07:55:47.0000000+00:00' -- author: VasilisThePikachu - changes: - - {message: Stuttering trait stutters less common., type: Fix} - id: 5048 - time: '2023-10-24T09:28:31.0000000+00:00' -- author: metalgearsloth - changes: - - {message: Fix climbing in the same position (e.g. exiting from medical scanners) - sending you to the farplanes., type: Fix} - id: 5049 - time: '2023-10-24T10:44:09.0000000+00:00' -- author: liltenhead - changes: - - {message: Fixed the "examine" trigger for artifacts not having a hint., type: Fix} - id: 5050 - time: '2023-10-24T20:37:16.0000000+00:00' -- author: Stealthbomber16 - changes: - - {message: You can actually grind corn into cornmeal now., type: Fix} - id: 5051 - time: '2023-10-24T20:38:43.0000000+00:00' -- author: Myakot - changes: - - {message: Skeletons can now heal by pouring milk over themselves, type: Add} - id: 5052 - time: '2023-10-24T20:58:34.0000000+00:00' -- author: TemporalOroboros - changes: - - {message: Fixed anomaly locators frantically beeping when they first enter detection - range for an anomaly., type: Fix} - id: 5053 - time: '2023-10-24T21:00:23.0000000+00:00' -- author: 27alaing - changes: - - {message: The anti-slang system allows for more leeway with certain phrases now., - type: Tweak} - - {message: 'The supply radio channel can be used with ":u" again.', type: Fix} - id: 5054 - time: '2023-10-25T00:56:19.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: Medical cyborgs' stethoscopes can no longer be fed to moths to obtain - a free hand., type: Fix} - id: 5055 - time: '2023-10-25T04:51:32.0000000+00:00' -- author: deltanedas - changes: - - {message: Roundstart borg jobs get funny names., type: Tweak} - id: 5056 - time: '2023-10-25T13:00:09.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: The search bar in vending machines now works., type: Fix} - id: 5057 - time: '2023-10-25T13:01:16.0000000+00:00' -- author: deltanedas - changes: - - {message: 'The Syndicate''s chefs are now offering snack boxes for only 1 tc. - Usually contains a toy, drinks and food.', type: Add} - id: 5058 - time: '2023-10-25T13:26:27.0000000+00:00' -- author: metalgearsloth - changes: - - {message: Fix docking UI not showing other grids., type: Fix} - id: 5059 - time: '2023-10-25T13:28:34.0000000+00:00' -- author: Doru991 - changes: - - {message: Potato batteries can be built by crew., type: Add} - - {message: New compact AI chips may be powered via potato batteries., type: Add} - id: 5060 - time: '2023-10-25T13:52:50.0000000+00:00' -- author: EmoGarbage404 + - message: The fireaxe can now fight fires (melee hits reduce fire stacks). + type: Tweak + id: 5419 + time: '2023-12-19T02:41:33.0000000+00:00' + url: null +- author: SapphicOverload + changes: + - message: EVA and hardsuit helmets now allow breathing from gas tanks without a + mask. + type: Tweak + id: 5420 + time: '2023-12-19T02:50:06.0000000+00:00' + url: null +- author: RiceMar + changes: + - message: Station department exteriors now feature janitorial service lights for + directing janitors to the big messes they cant see! + type: Add + id: 5421 + time: '2023-12-19T04:21:12.0000000+00:00' + url: null +- author: SlamBamActionman + changes: + - message: Fixed compatability with old changelog format. + type: Fix + id: 5422 + time: '2023-12-19T05:22:24.0000000+00:00' + url: null +- author: notafet changes: - - {message: 'Storage now functions based on slots and sizes, rather than numerical - values.', type: Tweak} - id: 5061 - time: '2023-10-25T22:53:39.0000000+00:00' -- author: EmoGarbage404 + - message: Security sunglasses, researchable from arsenal technology, now display + the security HUD. + type: Tweak + id: 5423 + time: '2023-12-19T08:29:07.0000000+00:00' + url: null +- author: Emisse changes: - - {message: Adjusted the sizes of space suits and belts., type: Tweak} - - {message: Reduced the slot count in the ore bag., type: Tweak} - - {message: Fixed not being to create pills at the ChemMaster 5000., type: Fix} - id: 5062 - time: '2023-10-26T02:47:45.0000000+00:00' -- author: metalgearsloth + - message: Captain clothing items have been resprited + type: Tweak + id: 5424 + time: '2023-12-19T20:36:36.0000000+00:00' + url: null +- author: Stanislav4ix + changes: + - message: Added ore bag of holding! + type: Add + id: 5425 + time: '2023-12-19T22:28:56.0000000+00:00' + url: null +- author: TGODiamond + changes: + - message: Item size cannot be misinterpreted now. + type: Fix + id: 5426 + time: '2023-12-20T00:31:39.0000000+00:00' + url: null +- author: Veritius + changes: + - message: Ethylredoxrazine is more effective at treating drunkness. + type: Tweak + id: 5427 + time: '2023-12-20T02:20:04.0000000+00:00' + url: null +- author: Errant changes: - - {message: 'Reverted storage to function with numerical values again, instead of - slots and sizes.', type: Tweak} - id: 5063 - time: '2023-10-26T08:28:16.776154+00:00' -- author: nmajask + - message: HUD elements no longer violate the Geneva Conventions. + type: Fix + id: 5428 + time: '2023-12-20T04:28:03.0000000+00:00' + url: null +- author: ERORR404V1 + changes: + - message: NanoTrasen botanists have bred a new blinking plant + type: Add + id: 5429 + time: '2023-12-20T04:57:02.0000000+00:00' + url: null +- author: qwerltaz changes: - - {message: Bacon burgers require 1 bacon instead of 3 cutlets, type: Tweak} - - {message: Ghost burgers require 1 ectoplasm instead of 1 ghost sheet, type: Tweak} - - {message: Tofu creation no longer consumes the enzyme, type: Tweak} - - {message: Ribs and Mcribs now give back skewers when eaten, type: Fix} - id: 5064 - time: '2023-10-27T02:12:35.0000000+00:00' + - message: Improve the gas analyzer interface. + type: Tweak + id: 5430 + time: '2023-12-20T17:56:57.0000000+00:00' + url: null - author: JoeHammad changes: - - {message: 'Headrevs now have their own music on spawn, credits to A-Guy on youtube', - type: Add} - id: 5065 - time: '2023-10-27T02:19:35.0000000+00:00' -- author: crazybrain + - message: Fland now has its own shuttle, ported from ss13 + type: Add + id: 5431 + time: '2023-12-20T23:26:07.0000000+00:00' + url: null +- author: joshepvodka + changes: + - message: CentCom bureaucrats are now twice as powerful with their new custom-made + clipboards and folders. + type: Add + id: 5432 + time: '2023-12-20T23:29:35.0000000+00:00' + url: null +- author: PJB3005 changes: - - {message: Bodies of dead players who have taken a ghost role now show as "departed - and moved on"., type: Fix} - id: 5066 - time: '2023-10-27T02:27:36.0000000+00:00' -- author: deltanedas + - message: Fix starting to follow a moving player as a ghost causing your camera + to keep jumping around anymore. + type: Fix + id: 5433 + time: '2023-12-20T23:33:00.0000000+00:00' + url: null +- author: Velcroboy changes: - - {message: Fixed being able to give pAIs implants., type: Fix} - id: 5067 - time: '2023-10-27T02:34:03.0000000+00:00' -- author: deltanedas + - message: Fixed coal not generating! + type: Fix + id: 5434 + time: '2023-12-20T23:46:20.0000000+00:00' + url: null +- author: whateverusername0 + changes: + - message: "Miasma now reacts with oxygen at 50\xB0C to produce nitrous oxide and\ + \ water vapor." + type: Add + id: 5435 + time: '2023-12-21T00:14:59.0000000+00:00' + url: null +- author: whateverusername0 + changes: + - message: Nitrous oxide now decomposes at high temperatures. + type: Add + id: 5436 + time: '2023-12-21T01:33:08.0000000+00:00' + url: null +- author: Emisse changes: - - {message: Ion storms have appeared and are causing malfunctions in cyborg law - modules., type: Add} - id: 5068 - time: '2023-10-27T02:40:13.0000000+00:00' -- author: EmoGarbage404 + - message: Crates and lockers are slightly easier to bust open but still harder + than before. + type: Tweak + - message: Solid walls are easier to break but reinforced are the same. + type: Tweak + id: 5437 + time: '2023-12-21T03:03:06.0000000+00:00' + url: null +- author: mirrorcult changes: - - {message: Foam and smoke can now transfer chemicals when inhaled. Wear internals - to avoid this., type: Add} - - {message: Fixed foam dissolution animation., type: Fix} - id: 5069 - time: '2023-10-27T02:52:11.0000000+00:00' -- author: Whisper + - message: Miasma has been renamed to Ammonia + type: Add + - message: Miasmic subsumation reaction has been removed + type: Remove + id: 5438 + time: '2023-12-21T04:19:50.0000000+00:00' + url: null +- author: joshepvodka + changes: + - message: NanoTrasen updated the designs for their emergency medipens. Space medipens + are now magenta colored and epi pens have a green band on them. + type: Tweak + id: 5439 + time: '2023-12-21T05:30:58.0000000+00:00' + url: null +- author: Hqlle + changes: + - message: Resprited carpet sprites. + type: Add + id: 5440 + time: '2023-12-21T05:32:38.0000000+00:00' + url: null +- author: CrigCrag changes: - - {message: Increased funding in an undisclosed NT Operative Squad., type: Add} - - {message: CentComm staff will have their proper ID icons on security's sechud., - type: Add} - - {message: CentComm staff will have undying loyalty to Nanotrasen., type: Add} - - {message: ERT funding has been improved. Expect specialized ERT units to be able - to provide more assistance related to their role., type: Tweak} - - {message: Cut funding from ERT weaponry. They'll likely be seen using standard - security-level weapons., type: Remove} - - {message: 'Cut funding from ERT uniforms, they no longer have built in armor.', - type: Fix} - - {message: The medical ERT members have had their hardsuits refitted with proper - armor., type: Fix} - - {message: Updated the localization files., type: Fix} - id: 5070 - time: '2023-10-27T13:54:43.0000000+00:00' -- author: ficcialfaint + - message: Added Fresium, a military grade coolant that you SHOULD NOT INGEST OR + SPLASH ON YOUR FRIENDS! + type: Add + id: 5441 + time: '2023-12-21T05:35:22.0000000+00:00' + url: null +- author: RiceMar + changes: + - message: Energy swords and double energy swords now look as long as they seem + to be in your hand. + type: Tweak + id: 5442 + time: '2023-12-21T06:32:11.0000000+00:00' + url: null +- author: Emisse changes: - - {message: Fixed nuclear operatives sound not being played at round start, type: Fix} - id: 5071 - time: '2023-10-28T02:28:21.0000000+00:00' -- author: Arteben + - message: Borgs now see who is crew + type: Tweak + id: 5443 + time: '2023-12-21T07:09:53.0000000+00:00' + url: null +- author: KittenColony + changes: + - message: Rotated fireaxe 'icon' 45 degrees + type: Tweak + id: 5444 + time: '2023-12-21T08:03:52.0000000+00:00' + url: null +- author: themias + changes: + - message: Damp rags can mop puddles again + type: Fix + - message: Syndie soap cleans evidence a little faster than other soap + type: Tweak + id: 5445 + time: '2023-12-21T08:54:52.0000000+00:00' + url: null +- author: Emisse changes: - - {message: Nanotrasen improved the health analyzer UI!, type: Tweak} - id: 5072 - time: '2023-10-28T05:54:18.0000000+00:00' + - message: Nukies don't start with agent ID anymore + type: Tweak + id: 5446 + time: '2023-12-21T09:59:06.0000000+00:00' + url: null - author: Repo changes: - - {message: Stats menu on Character setup for total and role playtime., type: Add} - id: 5073 - time: '2023-10-28T12:01:11.0000000+00:00' -- author: TemporalOroboros - changes: - - {message: 'The space lube recipe now produces slightly more lube, but can overflow - its container.', type: Tweak} - id: 5074 - time: '2023-10-28T16:46:59.0000000+00:00' -- author: Ubaser - changes: - - {message: The bee plush can now be worn on your head., type: Add} - id: 5075 - time: '2023-10-29T03:55:15.0000000+00:00' -- author: metalgearsloth - changes: - - {message: Audio rework is in which fixes a lot of audio bugs but may also introduce - new ones., type: Tweak} - - {message: Grid audio will now attenuate properly over distance and won't be ear - rupturingly loud., type: Fix} - - {message: FTL sound should no longer persist as it's attached to the shuttle instead - of being global., type: Fix} - - {message: Audio can now start at an offset so if an audio source comes into range - it won't play from the start., type: Fix} - - {message: Changed audio attenuation from InverseDistanceClamped to LinearDistanceClamped - so it's smoother. You may need to adjust your master audio volume., type: Tweak} - id: 5076 - time: '2023-10-29T03:58:23.0000000+00:00' -- author: Simyon264 - changes: - - {message: 'The PDA will now ring again, when a new station article gets published. - Reporters rejoice!', type: Fix} - id: 5077 - time: '2023-10-29T10:37:40.0000000+00:00' -- author: Subversionary - changes: - - {message: Bolas no longer deal stamina damage if you're already ensnared., type: Tweak} - - {message: Returned old bola recipe, type: Tweak} - - {message: Nerfed bola stamina damage from 80 to 55, type: Tweak} - - {message: You can break out of bolas while moving., type: Tweak} - id: 5078 - time: '2023-10-29T22:27:44.0000000+00:00' -- author: nmajask - changes: - - {message: Flannel jackets now keep you warm., type: Tweak} - id: 5079 - time: '2023-10-30T00:08:06.0000000+00:00' -- author: metalgearsloth - changes: - - {message: Made thindows slightly thicker (0.03m to 0.13m) to reduce instances - of tunneling through them at high speeds. This only affects the outer edge so - you can still move through two parallel thindows on the same tile., type: Tweak} - id: 5080 - time: '2023-10-30T11:48:12.0000000+00:00' -- author: Vasilis - changes: - - {message: Fixed the issue where mice were cannibalizing fallen brethren., type: Fix} - id: 5081 - time: '2023-10-31T01:49:05.0000000+00:00' -- author: notquitehadouken - changes: - - {message: 'Despite being just as effective as the head, you no longer hit people - with the handle of fire axes.', type: Fix} - id: 5082 - time: '2023-10-31T03:30:59.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: Skeletal crewmates have arrived on the station for Halloween only., - type: Add} - id: 5083 - time: '2023-10-31T03:40:12.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: DELTAV - Revert storage update, changelog entries only present to prevent conflicts., type: Remove} - - {message: 'Storage containers can now block large items from being inserted into - them, regardless of the space available.', type: Add} - - {message: Belts now function on a slot based storage system rather than a volume - based one., type: Add} - - {message: Standardized item sizes into regular categories., type: Tweak} - id: 5084 - time: '2023-10-31T03:55:56.0000000+00:00' -- author: Daemon - changes: - - {message: Add pea plants., type: Add} - id: 5085 - time: '2023-10-31T04:09:13.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: Smoke now properly transfers reagents when inhaled., type: Fix} - id: 5086 - time: '2023-10-31T12:43:18.0000000+00:00' -- author: Lank + - message: Mice can no longer spill containers. + type: Tweak + id: 5447 + time: '2023-12-21T10:23:01.0000000+00:00' + url: null +- author: Lukasz825700516 + changes: + - message: Gas tanks no longer predict insertion of random items. + type: Fix + id: 5448 + time: '2023-12-21T10:37:35.0000000+00:00' + url: null +- author: mirrorcult changes: - - {message: Slimes are fully immune to Nitrous Oxide again., type: Fix} - id: 5087 - time: '2023-10-31T12:57:27.0000000+00:00' + - message: Smart equipping now works with item slots + type: Add + - message: Smart equipping is now predicted + type: Tweak + id: 5449 + time: '2023-12-21T14:17:09.0000000+00:00' + url: null +- author: DrMelon + changes: + - message: Mice and other small creatures can no longer hurt Pun Pun or the Clown + by smashing them into tables. + type: Fix + id: 5450 + time: '2023-12-21T15:18:26.0000000+00:00' + url: null +- author: Boaz1111 + changes: + - message: Added uranium munitions, a new T1 arsenal research. + type: Add + - message: Made practice munitions and weapons roundstart + type: Tweak + id: 5451 + time: '2023-12-21T17:19:45.0000000+00:00' + url: https://api.github.com/repos/space-wizards/space-station-14/pulls/22824 diff --git a/Resources/Changelog/DeltaVChangelog.yml b/Resources/Changelog/DeltaVChangelog.yml index 722db24e62..20e412204e 100644 --- a/Resources/Changelog/DeltaVChangelog.yml +++ b/Resources/Changelog/DeltaVChangelog.yml @@ -868,3 +868,500 @@ Entries: message: Reskinned the Glimmer Prober and Glimmer Drain. id: 131 time: '2023-11-08T22:44:38.0000000+00:00' +- author: Colin-Tel + changes: + - type: Fix + message: Brought back the custom round end sounds. Collect them all! + id: 132 + time: '2023-11-09T04:22:23.0000000+00:00' +- author: VMSolidus + changes: + - type: Tweak + message: >- + Laika has discovered how to press airlock buttons, now no evildoers are + safe. + id: 133 + time: '2023-11-09T19:01:30.0000000+00:00' +- author: Samsterious + changes: + - type: Tweak + message: Character name restrictions are more permissive. + id: 134 + time: '2023-11-10T15:08:02.0000000+00:00' +- author: Colin-Tel + changes: + - type: Tweak + message: Revolutionaries are now fewer in number. + id: 135 + time: '2023-11-10T15:08:26.0000000+00:00' +- author: Colin-Tel + changes: + - type: Add + message: >- + Head lockers now contain their respective head's spare ID card where + they didn't already. + id: 136 + time: '2023-11-11T01:25:33.0000000+00:00' +- author: Velcroboy + changes: + - type: Add + message: The Hive is Alive! + id: 137 + time: '2023-11-11T16:37:11.0000000+00:00' +- author: FluffiestFloof + changes: + - type: Tweak + message: Glimmer Prober and Drainer are craftable once again. + - type: Fix + message: Fix Probers not making sounds depending on the glimmer levels. + - type: Add + message: Adds back the Psionic guidebook. + id: 138 + time: '2023-11-11T17:39:37.0000000+00:00' +- author: Colin-Tel + changes: + - type: Fix + message: Fixed The Hive's AI room losing power. + id: 139 + time: '2023-11-13T00:42:17.0000000+00:00' +- author: luringens + changes: + - type: Add + message: >- + Syndicate harpies can now purchase bionic syrinx implants to further + enchance their mimicry skills. It's like a voice mask for your throat! + id: 140 + time: '2023-11-13T22:42:09.0000000+00:00' +- author: Adrian16199 + changes: + - type: Add + message: Added Shoukou from Nyanotrasen and hopefully improved it. + id: 141 + time: '2023-11-15T01:00:27.0000000+00:00' +- author: FluffiestFloof + changes: + - type: Add + message: Added the X-01 MultiPhase Energy Gun for the HoS. + id: 142 + time: '2023-11-15T18:41:01.0000000+00:00' +- author: Colin-Tel + changes: + - type: Tweak + message: Slightly adjusted gamemode weights. + id: 143 + time: '2023-11-16T09:49:24.0000000+00:00' +- author: Colin-Tel + changes: + - type: Fix + message: Head of Personnel now has the access that lawyers have. + id: 144 + time: '2023-11-17T23:56:56.0000000+00:00' +- author: Colin-Tel + changes: + - type: Tweak + message: Adjusted Asterisk and Shoukou's min/max population to 0/60. + id: 145 + time: '2023-11-19T06:10:32.0000000+00:00' +- author: IamVelcroboy + changes: + - type: Add + message: >- + Salvage has been rebased. New but strangely familiar space debris will + be pulled in by the salvage magnet. Caution is recommended. + id: 146 + time: '2023-11-22T16:13:12.0000000+00:00' +- author: tryded + changes: + - type: Add + message: Added double bladed energy swords to Nuclear Operative Uplinks + id: 147 + time: '2023-11-25T14:38:20.0000000+00:00' +- author: TJohnson + changes: + - type: Tweak + message: Seclites now robust as advertised in item description. + id: 148 + time: '2023-11-26T00:36:54.0000000+00:00' +- author: Colin-Tel + changes: + - type: Tweak + message: >- + Asterisk Station is now protected by additional meteor netting and is + also more resistant to movement. Please relay thanks to your local + engineers! + id: 149 + time: '2023-11-26T00:38:30.0000000+00:00' +- author: Tryded + changes: + - type: Tweak + message: >- + Tweaked recipes of bluespace items to require bluespace crystals in + exchange of needing less materials + id: 150 + time: '2023-11-26T00:51:27.0000000+00:00' +- author: Colin-Tel + changes: + - type: Tweak + message: >- + Corpsmen start with a few autoinjectors in their packs, and gain + chemistry access on low-pop rounds. + id: 151 + time: '2023-11-26T01:21:47.0000000+00:00' +- author: Tryded + changes: + - type: Add + message: >- + Nanotrasen has recently introduced their miniature energy pistols and + energy guns to the market and developed experimental research into the + IK-60 laser carbine and the PDW-9 Energy Pistol. They can be researched + by science. + id: 152 + time: '2023-11-27T22:42:27.0000000+00:00' +- author: DebugOk + changes: + - type: Tweak + message: >- + Mindshields are now made with significantly cheaper components, and they + dont fuse properly anymore. Meaning they can be removed with a little + effort. + id: 153 + time: '2023-12-03T00:48:41.0000000+00:00' +- author: Velcroboy + changes: + - type: Fix + message: Fixed air chamber in The Hive's atmos not having a vacuum. + id: 154 + time: '2023-12-05T19:16:18.0000000+00:00' +- author: FluffiestFloof + changes: + - type: Tweak + message: Vulpkanin now have a decent amount of special helmet and mask sprites. + id: 155 + time: '2023-12-06T08:16:15.0000000+00:00' +- author: luringens + changes: + - type: Add + message: Prisoners are back! + - type: Fix + message: >- + Gladiators, prisoners and prison guards start the shift at their + predesignated locations. + id: 156 + time: '2023-12-06T15:54:37.0000000+00:00' +- author: Tryded + changes: + - type: Add + message: Added energy guns to dynamic protolathe emagable recipes. + id: 157 + time: '2023-12-06T15:57:01.0000000+00:00' +- author: Ygg01 + changes: + - type: Add + message: Digging dirt. + id: 158 + time: '2023-12-06T15:58:00.0000000+00:00' +- author: Velcroboy + changes: + - type: Tweak + message: Buffed Food Cart storage. Get out there and slang some burgers, chefs! + id: 159 + time: '2023-12-06T15:58:43.0000000+00:00' +- author: ps3moira + changes: + - type: Add + message: >- + Added mouse operative reinforcements, which can be bought from the + Syndicate uplink + id: 160 + time: '2023-12-06T16:03:07.0000000+00:00' +- author: evilexecutive + changes: + - type: Add + message: Harpies now have a visual indication when they're playing a Midi. + - type: Tweak + message: >- + Harpies have been re-balanced so that they now actually have a numerical + positive. + id: 161 + time: '2023-12-06T20:10:49.0000000+00:00' +- author: DebugOk + changes: + - type: Tweak + message: Due to abuse, prisoners now require whitelist to play. + id: 162 + time: '2023-12-07T13:22:03.0000000+00:00' +- author: ps3moira + changes: + - type: Remove + message: Removed bionic syrinx implanter from surplus crate. + id: 163 + time: '2023-12-11T23:11:41.0000000+00:00' +- author: ps3moira + changes: + - type: Remove + message: Removed Carpotoxin from Sashimi, now they are sushi-grade! + id: 164 + time: '2023-12-13T20:12:46.0000000+00:00' +- author: Adrian16199 + changes: + - type: Add + message: Crew has learned how to make a straw hat out of wheat bushels! + id: 165 + time: '2023-12-13T20:13:45.0000000+00:00' +- author: IamVelcroboy + changes: + - type: Add + message: Added Yule! Happy Holidays! + id: 166 + time: '2023-12-13T20:21:34.0000000+00:00' +- author: ps3moira + changes: + - type: Add + message: Added Fish n' Chips. Thank the British! + id: 167 + time: '2023-12-13T20:32:51.0000000+00:00' +- author: Adrian16199 + changes: + - type: Tweak + message: Felinids now meow out their words. They can also sigh now. + id: 168 + time: '2023-12-13T21:28:39.0000000+00:00' +- author: VMSolidus + changes: + - type: Fix + message: Harpies no longer choke on completely breathable air + id: 169 + time: '2023-12-14T05:13:43.0000000+00:00' +- author: UnicornOnLSD + changes: + - type: Tweak + message: Changed bags of holding cost to be more consistent. + id: 170 + time: '2023-12-14T09:17:35.0000000+00:00' +- author: Adrian16199 + changes: + - type: Fix + message: Fixed non-wizden species not having markings. + id: 171 + time: '2023-12-17T21:59:15.0000000+00:00' +- author: Adrian16199 + changes: + - type: Add + message: Vulpkanins can sigh now. + id: 172 + time: '2023-12-17T22:00:12.0000000+00:00' +- author: luringens + changes: + - type: Tweak + message: >- + Chaplain now gets a glimmer monitor app on their PDA like the rest of + epistemics. + id: 173 + time: '2023-12-19T16:19:34.0000000+00:00' +- author: leonardo-dabepis + changes: + - type: Remove + message: >- + the clown has received medical treatment for his chronic snoring. No + more HONK mimimimimi + id: 174 + time: '2023-12-20T03:01:27.0000000+00:00' +- author: deltanedas + changes: + - type: Add + message: >- + The fishops advanced user manual is now available in all finer + bookstores near you. + id: 175 + time: '2023-12-21T02:08:37.0000000+00:00' +- author: Velcroboy and Kilk + changes: + - type: Add + message: Added departmental winter boots! + id: 176 + time: '2023-12-21T02:12:04.0000000+00:00' +- author: Loonessia + changes: + - type: Fix + message: Deep fried burned food items should now have a description + id: 177 + time: '2023-12-21T02:15:30.0000000+00:00' +- author: Adrian16199 + changes: + - type: Add + message: Head of personel has gotten back their armoured coat. + id: 178 + time: '2023-12-21T02:17:25.0000000+00:00' +- author: DebugOk + changes: + - type: Add + message: Merged wizden. The upstream changelog may contain incorrect entries. + - type: Fix + message: The random client freezes/crashes should be mostly gone. + id: 179 + time: '2023-12-22T23:46:32.0000000+00:00' +- author: ps3moira + changes: + - type: Tweak + message: Reverted in-hand E-Sword sprites. + id: 180 + time: '2023-12-24T02:56:01.0000000+00:00' +- author: deltanedas + changes: + - type: Tweak + message: Ore Bags of Holding now use bluespace crystals instead of uranium. + id: 181 + time: '2023-12-24T19:58:23.0000000+00:00' +- author: Adrian16199 + changes: + - type: Fix + message: Fixes cyborgs spawning with nearsighted trait. + id: 182 + time: '2023-12-27T17:55:07.0000000+00:00' +- author: Adrian16199 + changes: + - type: Add + message: 'Added 3 classic hairstyles: Long hair, Long hair 2, Long hair 3.' + id: 183 + time: '2023-12-27T18:23:39.0000000+00:00' +- author: BramvanZijp + changes: + - type: Tweak + message: >- + Security dogs now can wear an id card and radio, are able to drag + things, and have received additional combat training. + id: 184 + time: '2023-12-28T09:32:10.0000000+00:00' +- author: Adrian16199 + changes: + - type: Fix + message: Gives shoukou an oxygen miner until air actualy works. + id: 185 + time: '2023-12-28T21:38:57.0000000+00:00' +- author: Master2112 + changes: + - type: Add + message: >- + Crime Assist program to Security and Lawyer PDA's, to help identify a + crime with a simple yes/no question tree. + id: 186 + time: '2023-12-29T19:34:56.0000000+00:00' +- author: ps3moira + changes: + - type: Add + message: Added Scottish Trait. + - type: Add + message: Added Kilt to Theatervend. + id: 187 + time: '2023-12-29T19:44:44.0000000+00:00' +- author: deltanedas + changes: + - type: Tweak + message: Mail no longer has throwing damage. + id: 188 + time: '2023-12-29T19:53:10.0000000+00:00' +- author: Velcroboy + changes: + - type: Remove + message: Space winter is officially over! + id: 189 + time: '2023-12-30T14:15:42.0000000+00:00' +- author: Master2112 + changes: + - type: Fix + message: Fixed incorrect reference to ftl in crimeassist yaml + id: 190 + time: '2023-12-30T22:03:53.0000000+00:00' +- author: Adrian16199 + changes: + - type: Add + message: Added a fluffy tail for the felinids. + id: 191 + time: '2023-12-30T22:05:52.0000000+00:00' +- author: DarkenedSynergy + changes: + - type: Fix + message: Fixed logistics airlocks looking like engineering airlocks when opened. + id: 192 + time: '2023-12-31T16:23:10.0000000+00:00' +- author: DangerRevolution and VMSolidus + changes: + - type: Add + message: >- + Rumours say that Syndicate Agents have cracked encoded communications! + Added the Syndicate Listening Post to the Syndicate's arsenal of + espionage! + id: 193 + time: '2023-12-31T16:48:27.0000000+00:00' +- author: VMSolidus and DangerRevolution + changes: + - type: Tweak + message: >- + The Listening Outpost has received several tweaks and balance changes. + It should spawn less often now. + id: 194 + time: '2024-01-01T21:33:58.0000000+00:00' +- author: ps3moira + changes: + - type: Tweak + message: Reverted Shotgun sprites + id: 195 + time: '2024-01-01T21:48:08.0000000+00:00' +- author: Velcroboy + changes: + - type: Add + message: Added BB guns! Don't shoot your eye out. + id: 196 + time: '2024-01-02T22:03:49.0000000+00:00' +- author: deltanedas + changes: + - type: Tweak + message: On very high pop revolution rounds, there can be 2 head revolutionaries. + id: 197 + time: '2024-01-02T22:06:22.0000000+00:00' +- author: VMSolidus + changes: + - type: Fix + message: There should only ever be one Listening Outpost spawning at a time + id: 198 + time: '2024-01-02T23:05:25.0000000+00:00' +- author: Adrian16199 + changes: + - type: Add + message: 'Added maiden outfits into janidrobe. ' + id: 199 + time: '2024-01-07T14:57:38.0000000+00:00' +- author: Adrian16199 + changes: + - type: Fix + message: >- + Prison guards are now mindshielded and have a security playtime + requirement. + id: 200 + time: '2024-01-07T18:20:45.0000000+00:00' +- author: DebugOk + changes: + - type: Fix + message: Atmos hopefully shouldn't break anymore + id: 201 + time: '2024-01-07T22:10:36.0000000+00:00' +- author: Bribrooo + changes: + - type: Add + message: 'added a ChemVend inside of Chemistry on Pebble Station ' + id: 202 + time: '2024-01-11T06:14:27.0000000+00:00' +- author: Adrian + changes: + - type: Tweak + message: Shoukou has maintenance now in logistics and in security + id: 203 + time: '2024-01-12T22:08:47.0000000+00:00' +- author: DebugOk + changes: + - type: Add + message: Added the spare ID safe + - type: Remove + message: The captain's locker no longer starts with a spare ID card + id: 204 + time: '2024-01-14T23:48:30.0000000+00:00' diff --git a/Resources/ConfigPresets/Build/development.toml b/Resources/ConfigPresets/Build/development.toml index 82833fe2d5..da3a413026 100644 --- a/Resources/ConfigPresets/Build/development.toml +++ b/Resources/ConfigPresets/Build/development.toml @@ -5,6 +5,9 @@ lobbyenabled = false map = "Dev" role_timers = false +[gateway] +generator_enabled = false + [physics] # Makes mapping annoying grid_splitting = false diff --git a/Resources/ConfigPresets/DeltaV/deltav.toml b/Resources/ConfigPresets/DeltaV/deltav.toml index 6525d27fb0..dfc90d70aa 100644 --- a/Resources/ConfigPresets/DeltaV/deltav.toml +++ b/Resources/ConfigPresets/DeltaV/deltav.toml @@ -5,7 +5,7 @@ lobbyduration = 240 round_end_pacifist = true [infolinks] -discord = "https://discord.gg/deltav" +discord = "https://go.delta-v.org/sxzqj" github = "https://github.com/DeltaV-Station/Delta-v" website = "https://www.delta-v.org/" wiki = "https://wiki.delta-v.org/view/Main_Page" diff --git a/Resources/ConfigPresets/WizardsDen/salamander.toml b/Resources/ConfigPresets/WizardsDen/salamander.toml index 5a2d9796f4..89e725c5a2 100644 --- a/Resources/ConfigPresets/WizardsDen/salamander.toml +++ b/Resources/ConfigPresets/WizardsDen/salamander.toml @@ -3,7 +3,6 @@ [game] desc = "Official English Space Station 14 servers. Roleplay required, you must be whitelisted through Discord to play if there are more than 15 online players." hostname = "[EN] Wizard's Den Salamander [US West RP]" -artifact_round_end_timer = 0.0 [server] rules_file = "RP_Rules.txt" diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index 43e7254163..548175f46c 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -08A, 0x6273, 13spacemen, 20kdc, 4dplanner, 612git, 778b, aaronmell, Ablankmann, abregado, Absolute-Potato, Acruid, actioninja, adamsong, aeosynth, Aerocrux, Aexxie, Ahion, AJCM-git, AjexRose, aklos, Alainx277, AlbertSnows, Alekshhh, AlexMorgan3817, Alithsko, AlmondFlour, ALMv1, AlphaQwerty, Altoids1, amylizzle, ancientpower, Andre19926, AndrewEyeke, areitpog, Arendian, arimah, artak10t, Arteben, ArthurMousatov, AruMoon, as334, AsikKEsel, asperger-sind, astriloqua, avghdev, AzzyIsNotHere, BananaFlambe, BasedUser, benev0, BGare, bhespiritu, BingoJohnson-zz, BismarckShuffle, Bixkitts, BobdaBiscuit, BobTheSleder, brainfood1183, Bright0, brndd, BubblegumBlue, c4llv07e, CakeQ, Capnsockless, CaptainSqrBeard, Carbonhell, Carou02, CatTheSystem, Centronias, chairbender, Charlese2, Cheackraze, cheesePizza2, Chief-Engineer, ChilbroBaggins, chromiumboy, civilCornball, clement-or, Clyybber, ColdAutumnRain, collinlunn, ComicIronic, corentt, CormosLemming, crazybrain23, creadth, CrigCrag, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, DamianX, daniel-cr, DawBla, dch-GH, Deahaka, DEATHB4DEFEAT, DeathCamel58, deathride58, DebugOk, Decappi, deepy, Delete69, DelleVelleD, deltanedas, DerbyX, Dezandor, DjfjdfofdjfjD, DmitriyMX, DmitriyZodiak, DocNITE, DoctorBeard, DogZeroX, dontbetank, Doru991, drongood12, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, DukeVanity, Dynexust, Easypoller, eclips_e, EEASAS, Efruit, efzapa, ElectroSR, elthundercloud, Emisse, EmoGarbage404, Endecc, eoineoineoin, Equivocateur, Errant-4, estacaoespacialpirata, exp111, FacePluslll, Fahasor, ficcialfaint, Fiftyllama, FillerVK, FinnishPaladin, FirinMaLazors, Fishfish458, Flareguy, FluffiestFloof, FluidRock, Fogapod, FoLoKe, fooberticus, forthbridge, Fortune117, freeman2651, Fromoriss, GalacticChimp, Gaxeer, gbasood, Geekyhobo, Genkail, Git-Nivrak, gituhabu, GoodWheatley, Gotimanga, greenrock64, GTRsound, gusxyz, h3half, Hardly3D, harikattar, Hebiman, Henry12116, HerCoyote23, HoidC, HoofedEar, hord-brayden, hsagerer, hubismal, Hugal31, Hyenh, iczero, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, Injazz, InquisitivePenguin, Insineer, Interrobang01, IProduceWidgets, ItsMeThom, j-giebel, Jackal298, Jackrost, jacksonzck, Jackw2As, jamessimo, janekvap, Jark255, Jaskanbe, JasperJRoth, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, JoeHammad1844, joelhed, JohnGinnane, johnku1, jproads, juliangiebel, JupiterFive, JustArt1m, JustCone14, JustinTether, JustinTrotter, KaiShibaa, kalane15, kalanosh, KEEYNy, Keikiru, keronshb, KIBORG04, Kimpes, KingFroozy, kira-er, Kirillcas, Kistras, Kit0vras, Klaypexx, Kmc2000, kognise, komunre, kxvvv, lajolico, Lamrr, LankLTE, lapatison, Leander-0, Level10Cybermancer, lever1209, LightVillet, liltenhead, LittleBuilderJane, Lomcastar, LordEclipse, LudwigVonChesterfield, lvvova1, lzimann, lzk228, Macoron, MagnusCrowe, ManelNavola, matthst, Matz05, McFck, MehimoNemo, MeltedPixel, MemeProof, Menshin, Mervill, metalgearsloth, mhamsterr, MilenVolf, minism, Mirino97, mirrorcult, MishaUnity, MisterMecky, Mith-randalf, ModeratelyAware, Moneyl, moony, Morb0, Mr0maks, Myakot, Myctai, N3X15, Nails-n-Tape, Nairodian, Naive817, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, notafet, notquitehadouken, noudoit, noverd, nuke-haus, NULL882, nullarmo, Nylux, och-och, OctoRocket, OldDanceJacket, onoira, Owai-Seek, pali6, Pangogie, patrikturi, PaulRitter, Peptide90, peptron1, Phantom-Lily, Phill101, PixelTheKermit, PJB3005, pofitlo, pointer-to-null, potato1234x, ProfanedBane, ProPandaBear, PrPleGoo, Psychpsyo, psykzz, PuroSlavKing, Putnam3145, QuietlyWhisper, qwerltaz, Radosvik, Radrark, Raitononai, Rane, Ranger6012, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, remove32, RemTim, rene-descartes2021, renodubois, RiceMar1244, RIKELOLDABOSS, Rinkashikachi, Rinzii, Rockdtben, rok-povsic, rolfero, Saakra, SadAways, Samsterious, SamV522, SaphireLattice, ScalyChimp, scrato, Scribbles0, ScumbagDog, Serkket, SethLafuente, ShadowCommander, Shadowtheprotogen546, shaeone, SignalWalker, SirDragooon, siyengar04, Skarletto, Skrauz, Skyedra, Slava0135, Snowni, SonicHDC, SoulSloth, Soupstraw, SpaceManiac, spoogemonster, ssdaniel24, Stealthbomber16, StrawberryMoses, SweptWasTaken, Szunti, TaralGit, TekuNut, Telyonok, TemporalOroboros, tentekal, thatrandomcanadianguy, TheArturZh, theashtronaut, thedraccx, themias, Theomund, theOperand, ThunderBear2006, timothyteakettle, TimrodDX, Titian3, TK-A369, tkdrg, tmtmtl30, tom-leys, tomasalves8, Tomeno, tosatur, TsjipTsjip, Tunguso4ka, Tyler-IN, Tyzemol, UbaserB, UKNOWH, UnderscoreX5, UristMcDorf, Vaaankas, Varen, VasilisThePikachu, veliebm, Veritius, Verslebas, VigersRay, Visne, volundr-, Vordenburg, vulppine, weaversam8, Willhelm53, Wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, WTCWR68, xRiriq, Ygg01, YotaXP, youarereadingthis, zach-hill, Zandario, ZelteHonor, zerorulez, ZeWaka, zionnBE, zlodo, ZNixian, ZoldorfTheWizard, Zth--, Zumorica, Zymem +08A, 0x6273, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 4dplanner, 612git, 778b, aaronmell, Ablankmann, abregado, Absolute-Potato, Acruid, actioninja, adamsong, Adrian16199, Aerocrux, Aexxie, Ahion, AJCM-git, AjexRose, aklos, Alainx277, AlbertSnows, Alekshhh, AlexMorgan3817, Alithsko, AlmondFlour, ALMv1, AlphaQwerty, Altoids1, amylizzle, ancientpower, Andre19926, AndrewEyeke, areitpog, Arendian, arimah, artak10t, Arteben, ArthurMousatov, AruMoon, as334, AsikKEsel, asperger-sind, astriloqua, avghdev, AzzyIsNotHere, BananaFlambe, BasedUser, benev0, BGare, bhespiritu, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Bloody2372, Boaz1111, BobdaBiscuit, BobTheSleder, brainfood1183, Brandon-Huu, Bright0, brndd, BubblegumBlue, BYONDFuckery, c0rigin, c4llv07e, CakeQ, CaptainSqrBeard, Carbonhell, Carou02, CatTheSystem, Centronias, chairbender, Charlese2, Cheackraze, cheesePizza2, Chief-Engineer, ChrisThirtle, chromiumboy, Chronophylos, civilCornball, clement-or, Clyybber, CMDR-Piboy314, ColdAutumnRain, collinlunn, ComicIronic, coolmankid12345, corentt, crazybrain23, creadth, CrigCrag, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, Daemon, daerSeebaer, dahnte, DamianX, DangerRevolution, daniel-cr, DawBla, dch-GH, Deahaka, DEATHB4DEFEAT, DeathCamel58, deathride58, DebugOk, Decappi, deepy, Delete69, DelleVelleD, deltanedas, DerbyX, Dezandor, DmitriyMX, DoctorBeard, DogZeroX, dontbetank, Doru991, DoubleRiceEddiedd, drongood12, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, Dutch-VanDerLinde, Easypoller, eclips_e, EEASAS, Efruit, efzapa, ElectroSR, elthundercloud, Emisse, EmoGarbage404, Endecc, enumerate0, eoineoineoin, Errant-4, estacaoespacialpirata, exp111, Fahasor, ficcialfaint, FillerVK, Fishfish458, Flareguy, FluffiestFloof, FluidRock, FoLoKe, fooberticus, forthbridge, Fortune117, freeman2651, Fromoriss, GalacticChimp, gbasood, Geekyhobo, Genkail, Git-Nivrak, gituhabu, GoodWheatley, Gotimanga, graevy, gusxyz, h3half, Hardly3D, harikattar, Hebiman, Henry12116, HerCoyote23, HoofedEar, hord-brayden, hubismal, Hugal31, Hyenh, iacore, IamVelcroboy, iczero, igorsaux, ike709, illersaver, Illiux, Ilya246, Injazz, InquisitivePenguin, Insineer, IntegerTempest, Interrobang01, IProduceWidgets, ItsMeThom, j-giebel, Jackal298, Jackrost, jamessimo, janekvap, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JoeHammad1844, joelhed, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, JustinTether, JustinTrotter, KaiShibaa, kalane15, kalanosh, KEEYNy, Keikiru, Kelrak, kerisargit, keronshb, KIBORG04, KingFroozy, kira-er, Kit0vras, Klaypexx, Kmc2000, komunre, kxvvv, lajolico, Lamrr, LankLTE, laok233, lapatison, Leander-0, Level10Cybermancer, lever1209, LightVillet, liltenhead, LittleBuilderJane, Lomcastar, LordEclipse, LudwigVonChesterfield, Lukasz825700516, luringens, lvvova1, lzimann, lzk228, M3739, MACMAN2003, Macoron, MagnusCrowe, ManelNavola, matthst, Matz05, MehimoNemo, MeltedPixel, MemeProof, Menshin, Mervill, metalgearsloth, mhamsterr, MilenVolf, Minty642, Mirino97, mirrorcult, MishaUnity, MisterMecky, Mith-randalf, ModeratelyAware, Moneyl, moony, Morb0, Mr0maks, Myakot, Myctai, N3X15, Nails-n-Tape, Nairodian, Naive817, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, nok-ko, notafet, notquitehadouken, noudoit, noverd, nuke-haus, NULL882, Nylux, och-och, OctoRocket, OldDanceJacket, OliverOtter, onoira, Owai-Seek, pali6, Pangogie, patrikturi, PaulRitter, Peptide90, peptron1, pewter-wiz, Phantom-Lily, Phill101, PixelTheKermit, PJB3005, pofitlo, pointer-to-null, potato1234x, ProfanedBane, ProPandaBear, PrPleGoo, Psychpsyo, psykzz, PuroSlavKing, PursuitInAshes, Putnam3145, QuietlyWhisper, qwerltaz, Radosvik, Radrark, Rainfey, Rane, Ranger6012, ravage123321, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, remove32, RemTim, rene-descartes2021, renodubois, RiceMar1244, RieBi, RIKELOLDABOSS, Rinkashikachi, Rockdtben, rok-povsic, rolfero, Saakra, SadAways, Samsterious, SamV522, SaphireLattice, ScalyChimp, scrato, Scribbles0, ScumbagDog, Serkket, SethLafuente, ShadowCommander, Shadowtheprotogen546, shaeone, SignalWalker, Simyon264, SirDragooon, Sirionaut, siyengar04, Skarletto, Skrauz, Skyedra, SlamBamActionman, Slava0135, Snowni, SonicHDC, SoulSloth, SpaceManiac, spoogemonster, ssdaniel24, Stealthbomber16, StrawberryMoses, Subversionary, SweptWasTaken, Szunti, TaralGit, TekuNut, TemporalOroboros, tentekal, tgrkzus, thatrandomcanadianguy, TheArturZh, theashtronaut, thedraccx, themias, Theomund, theOperand, TheShuEd, ThunderBear2006, timothyteakettle, TimrodDX, Titian3, TK-A369, tkdrg, tmtmtl30, tom-leys, tomasalves8, Tomeno, tosatur, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, Tyler-IN, Tyzemol, UbaserB, UKNOWH, UnderscoreX5, Uriende, UristMcDorf, Vaaankas, Varen, VasilisThePikachu, veliebm, Veritius, Verslebas, VigersRay, Visne, volundr-, Vordenburg, vulppine, waylon531, weaversam8, Willhelm53, Wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, WTCWR68, xRiriq, Ygg01, YotaXP, youarereadingthis, zach-hill, Zandario, ZelteHonor, zerorulez, ZeWaka, zionnBE, zlodo, ZNixian, ZoldorfTheWizard, Zth--, Zumorica, Zymem diff --git a/Resources/Credits/Patrons.yml b/Resources/Credits/Patrons.yml index 9b8752a5e8..e20ebbd5ec 100644 --- a/Resources/Credits/Patrons.yml +++ b/Resources/Credits/Patrons.yml @@ -44,8 +44,6 @@ Tier: Revolutionary - Name: "Austin Nelson" Tier: Syndicate Agent -- Name: "John Edward Hamilton Barchard" - Tier: Revolutionary - Name: "Cormos Lemming" Tier: Nuclear Operative - Name: "Hamcha" @@ -66,8 +64,6 @@ Tier: Revolutionary - Name: "Brandon Campbell" Tier: Nuclear Operative -- Name: "KevKev" - Tier: Revolutionary - Name: "Jacob Schramm" Tier: Revolutionary - Name: "Matouš Hrdlička" @@ -80,8 +76,6 @@ Tier: Syndicate Agent - Name: "Scott MacCombie" Tier: Nuclear Operative -- Name: "Gaxeer" - Tier: Syndicate Agent - Name: "Tamora Droppa" Tier: Revolutionary - Name: "Gavin Simmons" @@ -108,14 +102,12 @@ Tier: Syndicate Agent - Name: "tomhendo" Tier: Syndicate Agent -- Name: "Odin The Wanderer" +- Name: "Odin7heWanderer" Tier: Revolutionary - Name: "tokie" Tier: Nuclear Operative - Name: "Wallace Megas" Tier: Revolutionary -- Name: "Vandell" - Tier: Revolutionary - Name: "Enricoc3l" Tier: Revolutionary - Name: "DadNotTheBelt" @@ -126,8 +118,6 @@ Tier: Syndicate Agent - Name: "Tim Foley" Tier: Syndicate Agent -- Name: "Blight" - Tier: Syndicate Agent - Name: "Katarn" Tier: Revolutionary - Name: "eric156" @@ -159,7 +149,7 @@ - Name: "Malachi Housewright" Tier: Revolutionary - Name: "Petalmeat" - Tier: Syndicate Agent + Tier: Revolutionary - Name: "Jakub Kędziora" Tier: Syndicate Agent - Name: "Adam Smedstad" @@ -186,6 +176,8 @@ Tier: Revolutionary - Name: "François Desautels" Tier: Revolutionary +- Name: "Christian Hicks" + Tier: Syndicate Agent - Name: "MasterFurret" Tier: Revolutionary - Name: "tapohuy" @@ -198,7 +190,7 @@ Tier: Revolutionary - Name: "Graded" Tier: Syndicate Agent -- Name: "Christian Hodel" +- Name: "Indri" Tier: Revolutionary - Name: "IceStorm theDragon" Tier: Revolutionary @@ -210,3 +202,33 @@ Tier: Nuclear Operative - Name: "Aiden Baker" Tier: Revolutionary +- Name: "Zakory L Holbrook" + Tier: Revolutionary +- Name: "Beans" + Tier: Revolutionary +- Name: "ThoranTW" + Tier: Revolutionary +- Name: "David Gee" + Tier: Nuclear Operative +- Name: "Crabby Arts" + Tier: Revolutionary +- Name: "W Geertsma" + Tier: Syndicate Agent +- Name: "以迪 黃" + Tier: Syndicate Agent +- Name: "Taber" + Tier: Revolutionary +- Name: "Nicholi" + Tier: Syndicate Agent +- Name: "blitz gaming" + Tier: Revolutionary +- Name: "MrGloopy" + Tier: Revolutionary +- Name: "Swindel_" + Tier: Syndicate Agent +- Name: "Alex Nordlund" + Tier: Revolutionary +- Name: "Thomas Mcintosh" + Tier: Revolutionary +- Name: "krberryy" + Tier: Revolutionary diff --git a/Resources/Locale/en-US/accent/accents.ftl b/Resources/Locale/en-US/accent/accents.ftl index a414294b2c..4a3430b0bf 100644 --- a/Resources/Locale/en-US/accent/accents.ftl +++ b/Resources/Locale/en-US/accent/accents.ftl @@ -52,6 +52,14 @@ accent-words-zombie-8 = Braughhh... accent-words-zombie-9 = Breshhhh... accent-words-zombie-10 = Graaaaaa... +# Moth Zombie +accent-words-zombie-moth-1 = Clothessss... +accent-words-zombie-moth-2 = Shooooesss... +accent-words-zombie-moth-3 = Liiiiight... +accent-words-zombie-moth-4 = Laaamps... +accent-words-zombie-moth-5 = Haaaatsss... Hatttssss... +accent-words-zombie-moth-6 = Scarffsss... + # Generic Aggressive accent-words-generic-aggressive-1 = Grr! accent-words-generic-aggressive-2 = Rrrr! @@ -88,3 +96,6 @@ accent-words-slimes-2 = Blimpuf? accent-words-slimes-3 = Blump! accent-words-slimes-4 = Bluuump... accent-words-slimes-5 = Blabl blump! + +# Mothroach +accent-words-mothroach-1 = Chirp! diff --git a/Resources/Locale/en-US/accent/dwarf.ftl b/Resources/Locale/en-US/accent/dwarf.ftl index e0e36265a6..09e3120493 100644 --- a/Resources/Locale/en-US/accent/dwarf.ftl +++ b/Resources/Locale/en-US/accent/dwarf.ftl @@ -195,9 +195,6 @@ accent-dwarf-words-replace-63 = be accent-dwarf-words-64 = am accent-dwarf-words-replace-64 = be -accent-dwarf-words-65 = beer -accent-dwarf-words-replace-65 = booze - accent-dwarf-words-66 = food accent-dwarf-words-replace-66 = grub @@ -205,7 +202,7 @@ accent-dwarf-words-67 = have accent-dwarf-words-replace-67 = hae accent-dwarf-words-68 = hey -accent-dwarf-words-replace-68 = oye +accent-dwarf-words-replace-68 = oi accent-dwarf-words-69 = what accent-dwarf-words-replace-69 = wot @@ -267,9 +264,6 @@ accent-dwarf-words-replace-87 = babee accent-dwarf-words-88 = after accent-dwarf-words-replace-88 = efter -accent-dwarf-words-89 = for -accent-dwarf-words-replace-89 = fer - accent-dwarf-words-90 = gonna accent-dwarf-words-replace-90 = gaun'ae @@ -330,9 +324,6 @@ accent-dwarf-words-replace-108 = hou'er accent-dwarf-words-109 = think accent-dwarf-words-replace-109 = reckon -accent-dwarf-words-110 = thinking -accent-dwarf-words-replace-110 = fer - accent-dwarf-words-111 = hamlet accent-dwarf-words-replace-111 = hammy @@ -351,18 +342,6 @@ accent-dwarf-words-replace-115 = reddie accent-dwarf-words-116 = nuclear agent accent-dwarf-words-replace-116 = reddie -accent-dwarf-words-117 = antag -accent-dwarf-words-replace-117 = baddie - -accent-dwarf-words-118 = syndicate -accent-dwarf-words-replace-118 = baddie - -accent-dwarf-words-119 = syndi -accent-dwarf-words-replace-119 = baddie - -accent-dwarf-words-120 = syndie -accent-dwarf-words-replace-120 = baddie - accent-dwarf-words-121 = more accent-dwarf-words-replace-121 = maer @@ -372,9 +351,6 @@ accent-dwarf-words-replace-122 = maero'er accent-dwarf-words-123 = over accent-dwarf-words-replace-123 = o'er -accent-dwarf-words-124 = shuttle -accent-dwarf-words-replace-124 = molly - accent-dwarf-words-125 = human accent-dwarf-words-replace-125 = humi diff --git a/Resources/Locale/en-US/accessories/human-hair.ftl b/Resources/Locale/en-US/accessories/human-hair.ftl index 2c1268f821..de3eea73b3 100644 --- a/Resources/Locale/en-US/accessories/human-hair.ftl +++ b/Resources/Locale/en-US/accessories/human-hair.ftl @@ -39,7 +39,9 @@ marking-HumanHairBuzzcut = Buzzcut marking-HumanHairCia = CIA marking-HumanHairClassicAfro = Classic Afro marking-HumanHairClassicBigAfro = Classic Big Afro +marking-HumanHairClassicBusiness = Classic Business Hair marking-HumanHairClassicCia = Classic CIA +marking-HumanHairClassicCornrows2 = Classic Cornrows 2 marking-HumanHairClassicFloorlengthBedhead = Classic Floorlength Bedhead marking-HumanHairClassicModern = Classic Modern marking-HumanHairClassicMulder = Classic Mulder @@ -181,3 +183,4 @@ marking-HumanHairVeryshortovereyealternate = Very Short Over Eye marking-HumanHairVlongfringe = Very Long with Fringe marking-HumanHairVolaju = Volaju marking-HumanHairWisp = Wisp +marking-HumanHairUneven = Uneven diff --git a/Resources/Locale/en-US/actions/actions/actions-commands.ftl b/Resources/Locale/en-US/actions/actions/actions-commands.ftl new file mode 100644 index 0000000000..c0cd59cdac --- /dev/null +++ b/Resources/Locale/en-US/actions/actions/actions-commands.ftl @@ -0,0 +1,12 @@ +## Actions Commands loc + +## Upgradeaction command loc +upgradeaction-command-need-one-argument = upgradeaction needs at least one argument, the action entity uid. The second optional argument is a specified level. +upgradeaction-command-max-two-arguments = upgradeaction has a maximum of two arguments, the action entity uid and the (optional) level to set. +upgradeaction-command-second-argument-not-number = upgradeaction's second argument can only be a number. +upgradeaction-command-less-than-required-level = upgradeaction cannot accept a level of 0 or lower. +upgradeaction-command-incorrect-entityuid-format = You must use a valid entityuid format for upgradeaction. +upgradeaction-command-entity-does-not-exist = This entity does not exist, a valid entity is required for upgradeaction. +upgradeaction-command-entity-is-not-action = This entity doesn't have the action upgrade component, so this action cannot be leveled. +upgradeaction-command-cannot-level-up = The action cannot be leveled up. +upgradeaction-command-description = Upgrades an action by one level, or to the specified level, if applicable. diff --git a/Resources/Locale/en-US/administration/commands/custom-vote-command.ftl b/Resources/Locale/en-US/administration/commands/custom-vote-command.ftl new file mode 100644 index 0000000000..b8d64d2634 --- /dev/null +++ b/Resources/Locale/en-US/administration/commands/custom-vote-command.ftl @@ -0,0 +1 @@ +custom-vote-webhook-name = Custom Vote Held \ No newline at end of file diff --git a/Resources/Locale/en-US/administration/smites.ftl b/Resources/Locale/en-US/administration/smites.ftl index e8f9dcded5..e6b0f92b7a 100644 --- a/Resources/Locale/en-US/administration/smites.ftl +++ b/Resources/Locale/en-US/administration/smites.ftl @@ -55,7 +55,8 @@ admin-smite-lung-removal-description = Removes their lungs, drowning them. admin-smite-remove-hand-description = Removes only one of their hands instead of all of them. admin-smite-disarm-prone-description = Makes them get disarmed 100% of the time and cuffed instantly. admin-smite-garbage-can-description = Turn them into a garbage bin to emphasize what they remind you of. - +admin-smite-super-bonk-description = Slams them on every single table on the Station and beyond. +admin-smite-super-bonk-lite-description= Slams them on every single table on the Station and beyond. Stops when the target is dead. ## Tricks descriptions diff --git a/Resources/Locale/en-US/administration/ui/actions.ftl b/Resources/Locale/en-US/administration/ui/actions.ftl index 86a5e15039..0433a724c1 100644 --- a/Resources/Locale/en-US/administration/ui/actions.ftl +++ b/Resources/Locale/en-US/administration/ui/actions.ftl @@ -4,5 +4,9 @@ admin-player-actions-kick = Kick admin-player-actions-ban = Ban admin-player-actions-ahelp = AHelp admin-player-actions-respawn = Respawn +admin-player-actions-spawn = Spawn here +admin-player-spawn-failed = Failed to find valid coordinates + +admin-player-actions-clone = Clone admin-player-actions-teleport = Teleport To admin-player-actions-confirm = Are you sure? diff --git a/Resources/Locale/en-US/animals/rat-king/rat-king.ftl b/Resources/Locale/en-US/animals/rat-king/rat-king.ftl index f6235a2708..bc06ab2ddd 100644 --- a/Resources/Locale/en-US/animals/rat-king/rat-king.ftl +++ b/Resources/Locale/en-US/animals/rat-king/rat-king.ftl @@ -1,4 +1,4 @@ -rat-king-domain-popup = A cloud of miasma is released into the air! +rat-king-domain-popup = A cloud of ammonia is released into the air! rat-king-too-hungry = You are too hungry to use this ability! diff --git a/Resources/Locale/en-US/anomaly/anomaly.ftl b/Resources/Locale/en-US/anomaly/anomaly.ftl index 29d5169694..8452725e5e 100644 --- a/Resources/Locale/en-US/anomaly/anomaly.ftl +++ b/Resources/Locale/en-US/anomaly/anomaly.ftl @@ -25,6 +25,14 @@ anomaly-scanner-particle-unstable = - [color=plum]Unstable type:[/color] {$type} anomaly-scanner-particle-containment = - [color=goldenrod]Containment type:[/color] {$type} anomaly-scanner-pulse-timer = Time until next pulse: [color=gray]{$time}[/color] +anomaly-sync-connected = Anomaly successfully attached +anomaly-sync-disconnected = The connection to the anomaly has been lost! +anomaly-sync-no-anomaly = No anomaly in range. +anomaly-sync-examine-connected = It is [color=darkgreen]attached[/color] to an anomaly. +anomaly-sync-examine-not-connected = It is [color=darkred]not attached[/color] to an anomaly. +anomaly-sync-connect-verb-text = Attach anomaly +anomaly-sync-connect-verb-message = Attach a nearby anomaly to {THE($machine)}. + anomaly-generator-ui-title = Anomaly Generator anomaly-generator-fuel-display = Fuel: anomaly-generator-cooldown = Cooldown: [color=gray]{$time}[/color] diff --git a/Resources/Locale/en-US/armor/armor-examine.ftl b/Resources/Locale/en-US/armor/armor-examine.ftl index 376871fd81..d49a1373f2 100644 --- a/Resources/Locale/en-US/armor/armor-examine.ftl +++ b/Resources/Locale/en-US/armor/armor-examine.ftl @@ -4,3 +4,16 @@ armor-examinable-verb-message = Examine the armor values. armor-examine = It provides the following protection: armor-coefficient-value = - [color=yellow]{$type}[/color] damage reduced by [color=lightblue]{$value}%[/color]. armor-reduction-value = - [color=yellow]{$type}[/color] damage reduced by [color=lightblue]{$value}[/color]. +armor-damage-type-blunt = Blunt +armor-damage-type-slash = Slash +armor-damage-type-piercing = Piercing +armor-damage-type-heat = Heat +armor-damage-type-radiation = Radiation +armor-damage-type-caustic = Caustic +armor-damage-type-bloodloss = Bloodloss +armor-damage-type-asphyxiation = Asphyxiation +armor-damage-type-cellular = Cellular +armor-damage-type-cold = Cold +armor-damage-type-poison = Poison +armor-damage-type-shock = Shock +armor-damage-type-structural = Structural diff --git a/Resources/Locale/en-US/atmos/gas-analyzer-component.ftl b/Resources/Locale/en-US/atmos/gas-analyzer-component.ftl index 888e1bdf41..03a920cb64 100644 --- a/Resources/Locale/en-US/atmos/gas-analyzer-component.ftl +++ b/Resources/Locale/en-US/atmos/gas-analyzer-component.ftl @@ -16,7 +16,11 @@ gas-analyzer-window-pressure-text = Pressure: gas-analyzer-window-pressure-val-text = {$pressure} kPa gas-analyzer-window-temperature-text = Temperature: gas-analyzer-window-temperature-val-text = {$tempK}K ({$tempC}°C) -gas-analyzer-window-molarity-text = {$mol} mol ({$percentage}%) +gas-analyzer-window-gas-column-name = Gas +gas-analyzer-window-molarity-column-name = mol +gas-analyzer-window-percentage-column-name = % +gas-analyzer-window-molarity-text = {$mol} +gas-analyzer-window-percentage-text = {$percentage} gas-analyzer-window-molarity-percentage-text = {$gasName}: {$amount} mol ({$percentage}%) # Used for GasEntry.ToString() diff --git a/Resources/Locale/en-US/candle/extinguish-on-interact-component.ftl b/Resources/Locale/en-US/candle/extinguish-on-interact-component.ftl new file mode 100644 index 0000000000..7db519c870 --- /dev/null +++ b/Resources/Locale/en-US/candle/extinguish-on-interact-component.ftl @@ -0,0 +1 @@ +candle-extinguish-failed = The flame flickers, but it doesn't go out \ No newline at end of file diff --git a/Resources/Locale/en-US/cargo/bounties.ftl b/Resources/Locale/en-US/cargo/bounties.ftl index 235ec45e2f..7008718c13 100644 --- a/Resources/Locale/en-US/cargo/bounties.ftl +++ b/Resources/Locale/en-US/cargo/bounties.ftl @@ -41,6 +41,15 @@ bounty-item-syringe = Syringe bounty-item-toolbox = Toolbox bounty-item-tech-disk = Technology disk bounty-item-trash = Trash +bounty-item-anomaly-core = Anomaly core +bounty-item-borg-module = Cyborg module +bounty-item-artifact-fragment = Artifact fragment +bounty-item-organs = Organ +bounty-item-labeler = Hand labeler +bounty-item-warm-cloth = Warm clothes +bounty-item-battery = Battery +bounty-lasergun = Laser gun +bounty-food = Meat food bounty-description-artifact = NanoTrasen is in some hot water for stealing artifacts from non-spacefaring planets. Return one and we'll compensate you for it. bounty-description-baseball-bat = Baseball fever is going on at CentCom! Be a dear and ship them some baseball bats, so that management can live out their childhood dream. @@ -84,3 +93,12 @@ bounty-description-syringe = The NT anti-drug task force is in need of some syri bounty-description-toolbox = There's an absence of robustness at Central Command. Hurry up and ship some toolboxes as a solution. bounty-description-tech-disk = The new research assistant on Station 13 spilled a soda on the RND server. Send them some technology disks so they can build up their recipes. bounty-description-trash = Recently a group of janitors have run out of trash to clean up, without any trash Centcom wants to fire them to cut costs. Send a shipment of trash to keep them employed, and they'll give you a small compensation. +bounty-description-anomaly-core = Suddenly we've run out of anomaly cores, including inert nuclei. Send us any anomaly cores so that we can continue to observe their final decay process. +bounty-description-borg-module = Scientists at the neighboring station have only studied Borg production, not module production. They are stuck in the research process and need references to work from. Send any Borg modules to inspire your colleagues. +bounty-description-artifact-fragment = Scientists at a nearby station are requesting artifact fragments for microxenoarchaeology studies. Ordinary artifacts are too large for their micro research platforms. Send some of the artifact fragments your sector is rich in. +bounty-description-organs = Arachnid settlement orders a large supply of organs. The official reason is "a thorough study of the similarities and differences of the humanoid races." +bounty-description-labeler = Due to a bureaucratic error, our sorting center almost sent hundreds of crates of carrots to the Unathi settlement. We urgently need additional labelers to restore order in the warehouse as a matter of urgency. +bounty-description-warm-cloth = The Unath construction crew freezes and is unable to restore power to their station. They need to be sent a set of any clothing to protect them from the cold. +bounty-description-battery = As the Arachnid settlement prepares for a solar flare, they are requesting a large shipment of power batteries. We're sending out a request for delivery. +bounty-description-lasergun = The Salvage Caravan requests a large shipment of laser weapons to mop up a hive of xenomorphs. +bounty-description-food = After the rat king invasion, a neighboring unathi station was left completely without food. A large meat food shipment is needed. \ No newline at end of file diff --git a/Resources/Locale/en-US/chat/managers/chat-manager.ftl b/Resources/Locale/en-US/chat/managers/chat-manager.ftl index 82f598fb4e..3869ac1eab 100644 --- a/Resources/Locale/en-US/chat/managers/chat-manager.ftl +++ b/Resources/Locale/en-US/chat/managers/chat-manager.ftl @@ -21,11 +21,11 @@ chat-manager-whisper-headset-on-message = You can't whisper on the radio! chat-manager-server-wrap-message = [bold]{$message}[/bold] chat-manager-sender-announcement-wrap-message = [font size=14][bold]{$sender} Announcement:[/font][font size=12] {$message}[/bold][/font] -chat-manager-entity-say-wrap-message = {$entityName} {$verb}, [font={$fontType} size={$fontSize}]"{$message}"[/font] -chat-manager-entity-say-bold-wrap-message = {$entityName} {$verb}, [font={$fontType} size={$fontSize}][bold]"{$message}"[/bold][/font] +chat-manager-entity-say-wrap-message = [BubbleHeader]{$entityName}[/BubbleHeader] {$verb}, [font={$fontType} size={$fontSize}]"[BubbleContent]{$message}[/BubbleContent]"[/font] +chat-manager-entity-say-bold-wrap-message = [BubbleHeader]{$entityName}[/BubbleHeader] {$verb}, [font={$fontType} size={$fontSize}]"[BubbleContent][bold]{$message}[/bold][/BubbleContent]"[/font] -chat-manager-entity-whisper-wrap-message = [font size=11][italic]{$entityName} whispers, "{$message}"[/italic][/font] -chat-manager-entity-whisper-unknown-wrap-message = [font size=11][italic]Someone whispers, "{$message}"[/italic][/font] +chat-manager-entity-whisper-wrap-message = [font size=11][italic][BubbleHeader]{$entityName}[/BubbleHeader] whispers,"[BubbleContent]{$message}[/BubbleContent]"[/italic][/font] +chat-manager-entity-whisper-unknown-wrap-message = [font size=11][italic][BubbleHeader]Someone[/BubbleHeader] whispers, "[BubbleContent]{$message}[/BubbleContent]"[/italic][/font] # THE() is not used here because the entity and its name can technically be disconnected if a nameOverride is passed... chat-manager-entity-me-wrap-message = [italic]{ PROPER($entity) -> @@ -37,16 +37,19 @@ chat-manager-entity-looc-wrap-message = LOOC: {$entityName}: {$message} chat-manager-send-ooc-wrap-message = OOC: {$playerName}: {$message} chat-manager-send-ooc-patron-wrap-message = OOC: [color={$patronColor}]{$playerName}[/color]: {$message} -chat-manager-send-dead-chat-wrap-message = {$deadChannelName}: {$playerName}: {$message} -chat-manager-send-admin-dead-chat-wrap-message = {$adminChannelName}: ({$userName}): {$message} +chat-manager-send-dead-chat-wrap-message = {$deadChannelName}: [BubbleHeader]{$playerName}[/BubbleHeader]: [BubbleContent]{$message}[/BubbleContent] +chat-manager-send-admin-dead-chat-wrap-message = {$adminChannelName}: ([BubbleHeader]{$userName}[/BubbleHeader]): [BubbleContent]{$message}[/BubbleContent] chat-manager-send-admin-chat-wrap-message = {$adminChannelName}: {$playerName}: {$message} -chat-manager-send-admin-announcement-wrap-message = {$adminChannelName}: {$message} +chat-manager-send-admin-announcement-wrap-message = [bold]{$adminChannelName}: {$message}[/bold] chat-manager-send-hook-ooc-wrap-message = OOC: (D){$senderName}: {$message} chat-manager-dead-channel-name = DEAD chat-manager-admin-channel-name = ADMIN +chat-manager-rate-limited = You are sending messages too quickly! +chat-manager-rate-limit-admin-announcement = Player { $player } breached chat rate limits. Watch them if this is a regular occurence. + ## Speech verbs for chat chat-speech-verb-suffix-exclamation = ! diff --git a/Resources/Locale/en-US/chat/ui/chat-box.ftl b/Resources/Locale/en-US/chat/ui/chat-box.ftl index ddf52d8be8..797b029f8e 100644 --- a/Resources/Locale/en-US/chat/ui/chat-box.ftl +++ b/Resources/Locale/en-US/chat/ui/chat-box.ftl @@ -1,4 +1,7 @@ hud-chatbox-info = {$talk-key} to talk, {$cycle-key} to cycle channels. +hud-chatbox-info-talk = {$talk-key} to talk. +hud-chatbox-info-cycle = Click here to talk, {$cycle-key} to cycle channels. +hud-chatbox-info-unbound = Click here to talk. hud-chatbox-select-name-prefixed = {$prefix} {$name} hud-chatbox-select-channel-Admin = Admin diff --git a/Resources/Locale/en-US/chemistry/components/mixing-component.ftl b/Resources/Locale/en-US/chemistry/components/mixing-component.ftl index 2abe5644f5..1ad9958804 100644 --- a/Resources/Locale/en-US/chemistry/components/mixing-component.ftl +++ b/Resources/Locale/en-US/chemistry/components/mixing-component.ftl @@ -1,3 +1,8 @@ +# Types +mixing-verb-centrifuge = centrifugation +mixing-verb-electrolysis = electrolyze +mixing-verb-holy = bless + ## Entity default-mixing-success = You mix the {$mixed} with the {$mixer} diff --git a/Resources/Locale/en-US/chemistry/components/solution-container-mixer-component.ftl b/Resources/Locale/en-US/chemistry/components/solution-container-mixer-component.ftl new file mode 100644 index 0000000000..9402903477 --- /dev/null +++ b/Resources/Locale/en-US/chemistry/components/solution-container-mixer-component.ftl @@ -0,0 +1,3 @@ +solution-container-mixer-activate = Activate +solution-container-mixer-no-power = No power! +solution-container-mixer-popup-nothing-to-mix = Nothing inside! diff --git a/Resources/Locale/en-US/clothing/belts.ftl b/Resources/Locale/en-US/clothing/belts.ftl new file mode 100644 index 0000000000..c0281b9fec --- /dev/null +++ b/Resources/Locale/en-US/clothing/belts.ftl @@ -0,0 +1,2 @@ +sheath-insert-verb = Sheathe +sheath-eject-verb = Unsheathe \ No newline at end of file diff --git a/Resources/Locale/en-US/clothing/boots.ftl b/Resources/Locale/en-US/clothing/boots.ftl new file mode 100644 index 0000000000..05322d612a --- /dev/null +++ b/Resources/Locale/en-US/clothing/boots.ftl @@ -0,0 +1 @@ +clothing-military-boots-sidearm = Sidearm diff --git a/Resources/Locale/en-US/clothing/components/toggleable-clothing-component.ftl b/Resources/Locale/en-US/clothing/components/toggleable-clothing-component.ftl index eb342d028d..746eea4a28 100644 --- a/Resources/Locale/en-US/clothing/components/toggleable-clothing-component.ftl +++ b/Resources/Locale/en-US/clothing/components/toggleable-clothing-component.ftl @@ -1,2 +1,3 @@ +toggle-clothing-verb-text = Toggle {CAPITALIZE($entity)} -toggleable-clothing-remove-first = You have to unequip {$entity} first. \ No newline at end of file +toggleable-clothing-remove-first = You have to unequip {$entity} first. diff --git a/Resources/Locale/en-US/connection-messages.ftl b/Resources/Locale/en-US/connection-messages.ftl index b9eccda3ec..7f4afce8b9 100644 --- a/Resources/Locale/en-US/connection-messages.ftl +++ b/Resources/Locale/en-US/connection-messages.ftl @@ -35,7 +35,7 @@ ban-banned-2 = The ban reason is: "{$reason}" ban-banned-3 = Attempts to circumvent this ban such as creating a new account will be logged. soft-player-cap-full = The server is full! -panic-bunker-account-denied = This server is in panic bunker mode. New connections are not being accepted at this time. Try again later -panic-bunker-account-denied-reason = This server is in panic bunker mode and you were rejected. Reason: "{$reason}" -panic-bunker-account-reason-account = The account's age must be older than {$minutes} minutes -panic-bunker-account-reason-overall = The account's overall playtime must be greater than {$hours} hours +panic-bunker-account-denied = This server is in panic bunker mode, often enabled as a precaution against raids. New connections by accounts not meeting certain requirements are temporarily not accepted. Try again later +panic-bunker-account-denied-reason = This server is in panic bunker mode, often enabled as a precaution against raids. New connections by accounts not meeting certain requirements are temporarily not accepted. Try again later. Reason: "{$reason}" +panic-bunker-account-reason-account = Your Space Station 14 account is too new. It must be older than {$minutes} minutes +panic-bunker-account-reason-overall = Your overall playtime on the server must be greater than {$hours} hours diff --git a/Resources/Locale/en-US/construction/components/construction-component.ftl b/Resources/Locale/en-US/construction/components/construction-component.ftl index 85276a45aa..9c781e679a 100644 --- a/Resources/Locale/en-US/construction/components/construction-component.ftl +++ b/Resources/Locale/en-US/construction/components/construction-component.ftl @@ -1 +1,2 @@ -construction-component-to-create-header = To create {$targetName}... \ No newline at end of file +construction-component-to-create-header = To create {$targetName}... +deconstruction-header-text = To deconstruct... diff --git a/Resources/Locale/en-US/construction/conditions/crafter-whitelist.ftl b/Resources/Locale/en-US/construction/conditions/crafter-whitelist.ftl deleted file mode 100644 index 646d89ca5e..0000000000 --- a/Resources/Locale/en-US/construction/conditions/crafter-whitelist.ftl +++ /dev/null @@ -1 +0,0 @@ -construction-step-condition-crafter-whitelist = You need to meet certain requirements. diff --git a/Resources/Locale/en-US/construction/conditions/min-solution.ftl b/Resources/Locale/en-US/construction/conditions/min-solution.ftl new file mode 100644 index 0000000000..884a351998 --- /dev/null +++ b/Resources/Locale/en-US/construction/conditions/min-solution.ftl @@ -0,0 +1,2 @@ +construction-examine-condition-min-solution = First, add {$quantity}u of {$reagent}. +construction-guide-condition-min-solution = Add {$quantity}u of {$reagent} diff --git a/Resources/Locale/en-US/construction/conditions/solution-empty.ftl b/Resources/Locale/en-US/construction/conditions/solution-empty.ftl new file mode 100644 index 0000000000..0fd577a0f5 --- /dev/null +++ b/Resources/Locale/en-US/construction/conditions/solution-empty.ftl @@ -0,0 +1,3 @@ +# SolutionEmpty +construction-examine-condition-solution-empty = First, empty the contents. +construction-guide-condition-solution-empty = Empty the contents. diff --git a/Resources/Locale/en-US/construction/construction-system.ftl b/Resources/Locale/en-US/construction/construction-system.ftl index 6ba8ae7813..81be8c4ab2 100644 --- a/Resources/Locale/en-US/construction/construction-system.ftl +++ b/Resources/Locale/en-US/construction/construction-system.ftl @@ -4,3 +4,4 @@ construction-system-construct-cannot-start-another-construction = You can't star construction-system-construct-no-materials = You don't have the materials to build that! construction-system-already-building = You are already building that! construction-system-inside-container = You can't build while you're there! +construction-system-cannot-start = You cannot craft this! diff --git a/Resources/Locale/en-US/corvax/station-goal/station-goal-command.ftl b/Resources/Locale/en-US/corvax/station-goal/station-goal-command.ftl new file mode 100644 index 0000000000..82ed4d5c8a --- /dev/null +++ b/Resources/Locale/en-US/corvax/station-goal/station-goal-command.ftl @@ -0,0 +1,6 @@ +send-station-goal-command-description = Sends the selected station target to all faxes that can receive it +send-station-goal-command-help-text = Usage: { $command } +send-station-goal-command-arg-id = Goal Prototype ID + +send-station-goal-command-error-no-goal-proto = No station goal found with ID {$id} +send-station-goal-command-error-couldnt-fax = Couldn't send station goal, probably due to a lack of fax machines that are able to recieve it diff --git a/Resources/Locale/en-US/corvax/station-goal/station-goals.ftl b/Resources/Locale/en-US/corvax/station-goal/station-goals.ftl new file mode 100644 index 0000000000..6a2c95e07a --- /dev/null +++ b/Resources/Locale/en-US/corvax/station-goal/station-goals.ftl @@ -0,0 +1,224 @@ +station-goal-fax-paper-name = Station Goal + +station-goal-fax-paper-header = + ███╗░░██╗████████╗ + ████╗░██║╚══██╔══╝ Form NT-No.{$station}-CC + ██╔██╗██║░░░██║░░░ Target Order + ██║╚████║░░░██║░░░ Date: {$date} + ██║░╚███║░░░██║░░░ + ╚═╝░░╚══╝░░░╚═╝░░░ + ════════════════════════════════════════ + {$content} + ════════════════════════════════════════ + + +station-goal-xeno= + Dear station Command, the purpose of your shift is to build a xenobiology lab and then study exotic life forms. + Two containment chambers must be constructed according to the following requirements: + 1. Must be reinforced well; + 2. At least one of the chambers must be equipped with a gas supply system; + 3. The entrance should be a cycling airlock system to prevent contamination. + + Get salvage crew to capture at least 2 representatives of life forms (e.g. space carp) and transport them to the above-described chambers. + + Capture requirements: + 1. Exotic fauna should not have critical injuries at the time of placement in the research department; + 2. When captured fauna dies, you are required to catch another, cloning is strictly prohibited. + + Once you collect the required fauna, you must study them and write a report on their properties. + The report must be stamped by the head of the department and faxed to Central Command. + + Experience Requirements: + 1. Experience should be documented in detail; + 2. Test activities may include: working with gases, smoke, foam, or injecting experimental reagents (e.g. Cognizine) into captured fauna. + +station-goal-museum= + Dear command of the station, the purpose of your shift is to build a museum, the exhibits for which will be unique objects collected from the station. + + Below are the requirements for the design of the museum: + 1. The museum must be structurally connected to the station by a space-protected corridor, or be located within it; + 2. The premises must be of a size that allows them to easily receive a large number of visitors; + 3. The premises must be provided with a standard atmosphere, ventilation and stable power supply; + 4. Room decoration should be visually pleasing; + 5. Exhibits must be reinforced accordingly to what is contained in them. + + Exhibit requirements: + 1. Exhibits must be unique in their kind; + 2. Each department must provide at least 2 exhibits for the museum fund; + 3. The total number of exhibits must be at least 20. + + Exhibits may include: + 1. Exotic drinks and dishes that require an extraordinary method of production and/or non-standard ingredients; + 2. Exotic matter/substance; + 3. Works of art (e.g. statues, paintings); + 4. Fully studied and documented artifacts (optionally provide a copy of the document); + 5. High-tech devices or tools; + 6. High-tech or high-power weapons; + 7. Robotic entities (e.g. Mechs, Cyborgs, Drones); + 8. Mutated biological organisms; + 9. Domesticated wild animals or intelligent non-humanoid life forms; + 10. Found treasures or items not available on the market. + + Upon completion of the museum, it is required to provide the crew with at least 20 minutes of free time from work so that they can visit the museum. + +station-goal-area= + Dear station Command, the goal of your shift is to increase the effective use of space at the station. + + It is required to bring the abandoned premises into proper form and find a use for them. + Each department must equip and effectively use the area of adjacent maintenance tunnels. + Sufficiently spacious maintenance tunnels need to be converted into residential areas. + The remaining tunnels should be provided with floor coverings and adequate lighting. + In addition, it is necessary to provide a public, well-lit corridor connecting all the restored compartments and new bedrooms. + +station-goal-bureaucratic-error = + ACCESS TO THIS DOCUMENT IS PROHIBITED FOR PERSONS WHO DO NOT HAVE LEGAL IMMUNITY + + Dear station Command, we inform you that the purpose of your shift was lost as a result of a bureaucratic error. + With this news, Central Command gives you the opportunity to independently assign a new goal for the station. + + New goal requirements: + 1. Relevance: The goal must be relevant and relevant to the current situation; + 2. Engagement: The goal should require the cooperation of as many departments as possible in the plans; + 3. Scope: The goal should involve sufficient, but not excessive, amounts of work to ensure the effective completion of the task. + + Please note that distribution of the contents of this document to persons who do not have legal immunity is strictly prohibited due to the possibility of discrediting the management of the Corporation. + Therefore, in order to present a new goal to the crew, the command staff must contact Central Command for approval of your ideas. + +station-goal-anomalies= + Dear station Command, the purpose of your shift is to provide new information about anomalies to NanoTrasen. + + It is necessary to conduct experimental studies aimed at testing the consequences of the collapse of at least 4 unique anomalies. + During or after the experiments, it is necessary to isolate and document the aforementioned anomalies. + + Document requirements: + 1. The official name of the anomaly; + 2. Physical description; + 3. Passive properties; + 4. Reaction of the anomaly to different particles; + 5. Consequences of the collapse; + 6. Location of the anomaly. + + The document must be certified by the stamp of the supervisor and faxed to Central Command. + +station-goal-combat= + Dear station Command, due to the increase in attacks of pirate ships in this sector, the purpose of your shift is to raise the overall combat readiness of the station. + + Required: + 1. Organize an inspection of every sentient being and cargo arriving at or leaving the station. + 2. Build or modify an existing security checkpoint at arrivals and departures. The checkpoint must be able to completely block the ports from the main part of the station. + Each of the above checkpoints must have at least one cell for the temporary detention of detainees. + 3. Organize a spare weapons storage in the opposite part of the station from the brig. + The vault arsenal should have enough weapons and equipment to fully equip all security personnel. + 4. Organize the recruitment of a new combat subdepartment of security. + Squad members must be recruited from the station's crew. + Recruitment should be carried out on a voluntary-compulsory basis. + Composition of the squad: + 1 field medic; + 1 field engineer; + 3 combat operatives. + All members of the squad must be trained in all the necessary skills to conduct combat and fulfill their role. + 5. Open a public shooting range. + The shooting range should present all available types of weapons or their training counterparts. + Avoid providing lethal weaponry to unauthorized personnel. + 6. Encourage the use of the station boxing ring. + If there is no boxing ring, you must create one. + +station-goal-shuttle= + Dear station Command, the purpose of your shift is to build a space shuttle capable of being piloted. + + Shuttle requirements: + 1. The shuttle must have a locked bridge; + a medical room with the necessary medical supplies and chemical equipment; + a supply store surrounded by reinforced material; + a crew room with at least 12 seats. + 2. There must be an intermediate room between the docking airlock and the main rooms to prevent possible depressurization. + 3. The shuttle must have a standard atmosphere, and also have several air gas containers to maintain it. + 4. The shuttle must be able to move in all directions (forward, backward, sideways) and turn reasonably well. + + Upon completion, the shuttle crew must be recruited from the station personnel. + The shuttle crew must include: + 1 pilot; + 2 engineers; + 1 medic/chemist; + 1 security officer. + + The shuttle should take on board all the station Command representatives as passengers and, in parallel with the evacuation shuttle, go to the Central Command station. + +station-goal-singularity= + Dear station Command, the goal of your shift is to build a generator based on the gravitational singularity. + + The design requirements are: + 1. The structure must be located at a significant distance from the station. + 2. The structure must be protected from meteorites and space debris. + 3. The containment field must be able to prevent the loss of a class 3 singularity. + +station-goal-solar-panels= + Dear station Command, the purpose of your shift is to organize a backup power system. + + The following work is required: + 1. Build two new branches of solar panels. + 2. Allocate an area for a compartment with spare batteries. + This compartment should accommodate at least 3 fully charged SMES', which should not be connected to the main power system of the station unless needed. + +station-goal-artifacts= + Dear station Command, the purpose of your shift is to provide new information about alien artifacts to NanoTrasen. + + It is required to organize the work of salvagers to search for and deliver artifacts from the wreckage around the station or expeditions. + After the delivery of the artifacts, they must be transferred to a special container to the research department. + It is necessary to deliver at least 2 fully studied and documented artifacts on the evacuation shuttle in special containment units. + + Recommended information for the document: + 1. Name of the artifact. + 2. Physical description. + 3. Properties of the object. + 4. Location of where the artifact was found. + 5. Additional notes. + + The document must be certified by the stamp of the supervisor. + +station-goal-storage= + Dear station Command, the purpose of your shift is to build an orbital storage facility with supplies and technology. + + The storage should be placed in space separately from the main station, make sure its design is strong, a random meteorite should not damage it. + + 4 boxes must be placed in the storage containing the following respectively: + - Advanced medicines; + - Stocks of the best seeds; + - Refrigerator box of food with a high nutritional value; + - Valuable, but not unique boards. + + Monitor the safety of the contents in the storage until the end of the shift, a cleanup crew will come retrieve the contents as they prepare the station. + +station-goal-zoo= + Dear station Command, the purpose of your shift is to improve the recreational value of the personnel at the station. + + It is necessary to build a zoo with at least 5 enclosures containing different types of animals ordered from the supply department. + Provide animals with food, at least one cleaning robot in each enclosure, and everything necessary for life, depending on the type of animal. + It is also necessary to build a bathhouse for the animals, water vapor must be supplied by Atmospheric Technicians. + + Upon completion of the zoo, it is required to provide the crew with at least 20 minutes of free time from work so that they can visit the new zoo. + +station-goal-labor= + Dear station Command, the purpose of your shift is to increase the motivation of the personnel for the growth of labor productivity. + + This requires that each of the heads during the shift closely monitors the performance of the duties of their employees and evaluates them. + After the time set by Command for evaluation, in each of the departments, the best, in the opinion of the head, employee should be selected, who will be invited to a dinner, where the Command staff will be obliged to award them a medal and a prize. + The heads must provide a report indicating the employee's position and merits for the shift. + Drinks and meals should be prepared for the dinner, as well as, if possible, several entertainment events that allow the presence of actors and musicians. + For the duration of the celebration, the dining room or other place chosen for the event must be inaccessible to the rest of the crew. + + The duration of the shift for a more accurate assessment of the work of the personnel should be set by the Command staff. + After the dinner someone must announce the end of the shift and call the evacuation shuttle. + +station-goal-lectures= + Dear station Command, the purpose of your shift is to carry out a number of events within the framework of the Corporation's plan to increase the knowledge of its employees. + + The Command staff are instructed to organize a platform for public lectures, if none exists, create one nearby the bridge entry. + The venue should be equipped with a large enough stage for speakers in the middle, a podium for the presenter to one side of it, plenty of seating for guests, and a special counter/table for brochures at the entrance. + A host/organizer of the event must also be selected. + Each department is required to present a group of employees consisting of at least 2 people. + Selected employees, under the supervision of the head of the department, should prepare a short lecture/presentation on a specific topic within their specialization (e.g. the harm of drugs and their reason for their criminalization, the effect of smoking on the body, acting, product pricing, cooking etc.), preferably with demonstration materials, and at least 10 brochures, on which the abstracts of the lecture should be indicated. + At the time indicated by the Command staff, the crew must be assembled on the site for the event, where lectures will be read. + There may be breaks between lectures to allow guests to read brochures and catch their breath. + + After the end of the event someone must announce the end of the shift and call the evacuation shuttle. diff --git a/Resources/Locale/en-US/deltav/accent/scottish.ftl b/Resources/Locale/en-US/deltav/accent/scottish.ftl new file mode 100644 index 0000000000..2394730816 --- /dev/null +++ b/Resources/Locale/en-US/deltav/accent/scottish.ftl @@ -0,0 +1,469 @@ +# these specifically mostly come from examples of specific scottish-english (not necessarily scots) verbiage +# https://en.wikipedia.org/wiki/Scotticism +# https://en.wikipedia.org/wiki/Scottish_English +# https://www.cs.stir.ac.uk/~kjt/general/scots.html + +accent-scottish-words-1 = girl +accent-scottish-words-replace-1 = lassie + +accent-scottish-words-2 = boy +accent-scottish-words-replace-2 = laddie + +accent-scottish-words-3 = man +accent-scottish-words-replace-3 = lad + +accent-scottish-words-4 = woman +accent-scottish-words-replace-4 = lass + +accent-scottish-words-5 = do +accent-scottish-words-replace-5 = dae + +accent-scottish-words-6 = don't +accent-scottish-words-replace-6 = dinnae + +accent-scottish-words-7 = dont +accent-scottish-words-replace-7 = dinnae + +accent-scottish-words-8 = i'm +accent-scottish-words-replace-8 = A'm + +accent-scottish-words-9 = im +accent-scottish-words-replace-9 = am + +accent-scottish-words-10 = going +accent-scottish-words-replace-10 = gaun + +accent-scottish-words-11 = know +accent-scottish-words-replace-11 = ken + +accent-scottish-words-12 = i +accent-scottish-words-replace-12 = Ah + +accent-scottish-words-13 = you're +accent-scottish-words-replace-13 = ye're + +accent-scottish-words-14 = youre +accent-scottish-words-replace-14 = yere + +accent-scottish-words-15 = you +accent-scottish-words-replace-15 = ya + +accent-scottish-words-16 = i'll +accent-scottish-words-replace-16 = A'll + +accent-scottish-words-17 = ill +accent-scottish-words-replace-17 = all + +accent-scottish-words-18 = of +accent-scottish-words-replace-18 = ae + +accent-scottish-words-19 = was +accent-scottish-words-replace-19 = wis + +accent-scottish-words-20 = can't +accent-scottish-words-replace-20 = cannae + +accent-scottish-words-21 = cant +accent-scottish-words-replace-21 = cannae + +accent-scottish-words-22 = yourself +accent-scottish-words-replace-22 = yarsel + +accent-scottish-words-23 = where +accent-scottish-words-replace-23 = whaur + +accent-scottish-words-24 = oh +accent-scottish-words-replace-24 = ach + +accent-scottish-words-25 = little +accent-scottish-words-replace-25 = wee + +accent-scottish-words-26 = small +accent-scottish-words-replace-26 = wee + +accent-scottish-words-27 = shit +accent-scottish-words-replace-27 = shite + +accent-scottish-words-28 = yeah +accent-scottish-words-replace-28 = aye + +accent-scottish-words-29 = yea +accent-scottish-words-replace-29 = aye + +accent-scottish-words-30 = yes +accent-scottish-words-replace-30 = aye + +accent-scottish-words-31 = too +accent-scottish-words-replace-31 = tae + +accent-scottish-words-32 = my +accent-scottish-words-replace-32 = me + +accent-scottish-words-33 = not +accent-scottish-words-replace-33 = nae + +accent-scottish-words-34 = dad +accent-scottish-words-replace-34 = da + +accent-scottish-words-35 = mom +accent-scottish-words-replace-35 = maw + +accent-scottish-words-36 = newbie +accent-scottish-words-replace-36 = greenbeard + +accent-scottish-words-37 = noob +accent-scottish-words-replace-37 = greenbeard + +accent-scottish-words-38 = noobie +accent-scottish-words-replace-38 = greenbeard + +accent-scottish-words-39 = professional +accent-scottish-words-replace-39 = greybeard + +accent-scottish-words-40 = veteran +accent-scottish-words-replace-40 = greybeard + +accent-scottish-words-41 = fuck +accent-scottish-words-replace-41 = feck + +accent-scottish-words-42 = would +accent-scottish-words-replace-42 = wou + +accent-scottish-words-43 = should +accent-scottish-words-replace-43 = shou + +accent-scottish-words-44 = could +accent-scottish-words-replace-44 = cou + +accent-scottish-words-45 = would've +accent-scottish-words-replace-45 = wou'hae + +accent-scottish-words-46 = should've +accent-scottish-words-replace-46 = shou'hae + +accent-scottish-words-47 = could've +accent-scottish-words-replace-47 = cou'hae + +accent-scottish-words-48 = wouldve +accent-scottish-words-replace-48 = wouhae + +accent-scottish-words-49 = shouldve +accent-scottish-words-replace-49 = shouhae + +accent-scottish-words-50 = couldve +accent-scottish-words-replace-50 = couhae + +accent-scottish-words-51 = would'nt +accent-scottish-words-replace-51 = wou'nae + +accent-scottish-words-52 = should'nt +accent-scottish-words-replace-52 = shou'nae + +accent-scottish-words-53 = could'nt +accent-scottish-words-replace-53 = cou'nae + +accent-scottish-words-54 = wouldnt +accent-scottish-words-replace-54 = wounae + +accent-scottish-words-55 = shouldnt +accent-scottish-words-replace-55 = shounae + +accent-scottish-words-56 = couldnt +accent-scottish-words-replace-56 = counae + +accent-scottish-words-57 = have +accent-scottish-words-replace-57 = hae + +accent-scottish-words-58 = no +accent-scottish-words-replace-58 = nae + +accent-scottish-words-59 = to +accent-scottish-words-replace-59 = tae + +accent-scottish-words-60 = the +accent-scottish-words-replace-60 = tha + +accent-scottish-words-61 = have +accent-scottish-words-replace-61 = hae + +accent-scottish-words-62 = are +accent-scottish-words-replace-62 = be + +accent-scottish-words-63 = is +accent-scottish-words-replace-63 = be + +accent-scottish-words-64 = am +accent-scottish-words-replace-64 = be + +accent-scottish-words-66 = food +accent-scottish-words-replace-66 = grub + +accent-scottish-words-67 = have +accent-scottish-words-replace-67 = hae + +accent-scottish-words-68 = hey +accent-scottish-words-replace-68 = oi + +accent-scottish-words-69 = what +accent-scottish-words-replace-69 = wot + +accent-scottish-words-70 = where +accent-scottish-words-replace-70 = whaur + +accent-scottish-words-71 = when +accent-scottish-words-replace-71 = wen + +accent-scottish-words-72 = myself +accent-scottish-words-replace-72 = mesel + +accent-scottish-words-73 = himself +accent-scottish-words-replace-73 = hesel + +accent-scottish-words-74 = herself +accent-scottish-words-replace-74 = shesel + +accent-scottish-words-75 = move +accent-scottish-words-replace-75 = moev + +accent-scottish-words-76 = moving +accent-scottish-words-replace-76 = moeven + +accent-scottish-words-77 = wasn't +accent-scottish-words-replace-77 = wis'nae + +accent-scottish-words-78 = wasnt +accent-scottish-words-replace-78 = wisnae + +accent-scottish-words-79 = wizard +accent-scottish-words-replace-79 = wizer + +accent-scottish-words-80 = fool +accent-scottish-words-replace-80 = wazzok + +accent-scottish-words-81 = have +accent-scottish-words-replace-81 = hae + +accent-scottish-words-82 = for +accent-scottish-words-replace-82 = fer + +accent-scottish-words-83 = about +accent-scottish-words-replace-83 = aboot + +accent-scottish-words-84 = ow +accent-scottish-words-replace-84 = och + +accent-scottish-words-85 = small +accent-scottish-words-replace-85 = wee + +accent-scottish-words-86 = tiny +accent-scottish-words-replace-86 = tinnae + +accent-scottish-words-87 = baby +accent-scottish-words-replace-87 = babee + +accent-scottish-words-88 = after +accent-scottish-words-replace-88 = efter + +accent-scottish-words-90 = gonna +accent-scottish-words-replace-90 = gaun'ae + +accent-scottish-words-91 = going to +accent-scottish-words-replace-91 = gaun'ae + +accent-scottish-words-92 = gone +accent-scottish-words-replace-92 = gaun + +accent-scottish-words-93 = talk +accent-scottish-words-replace-93 = blather + +accent-scottish-words-94 = talking +accent-scottish-words-replace-94 = blatherin' + +accent-scottish-words-95 = now +accent-scottish-words-replace-95 = nou + +accent-scottish-words-96 = talked +accent-scottish-words-replace-96 = blathered + +accent-scottish-words-97 = give +accent-scottish-words-replace-97 = gie + +accent-scottish-words-98 = gimme +accent-scottish-words-replace-98 = gie's + +accent-scottish-words-99 = give me +accent-scottish-words-replace-99 = gie's + +accent-scottish-words-100 = do you +accent-scottish-words-replace-100 = d'ya + +accent-scottish-words-101 = with +accent-scottish-words-replace-101 = wi + +accent-scottish-words-102 = without +accent-scottish-words-replace-102 = wi'ou + +accent-scottish-words-103 = whether +accent-scottish-words-replace-103 = we'er + +accent-scottish-words-104 = ever +accent-scottish-words-replace-104 = e'er + +accent-scottish-words-105 = whenever +accent-scottish-words-replace-105 = wen'er + +accent-scottish-words-106 = whatever +accent-scottish-words-replace-106 = wot'er + +accent-scottish-words-107 = how +accent-scottish-words-replace-107 = hou + +accent-scottish-words-108 = however +accent-scottish-words-replace-108 = hou'er + +accent-scottish-words-109 = think +accent-scottish-words-replace-109 = reckon + +accent-scottish-words-111 = hamlet +accent-scottish-words-replace-111 = hammy + +accent-scottish-words-112 = hampster +accent-scottish-words-replace-112 = hammy + +accent-scottish-words-113 = nukie +accent-scottish-words-replace-113 = reddie + +accent-scottish-words-114 = nuclear op +accent-scottish-words-replace-114 = reddie + +accent-scottish-words-115 = nuclear operative +accent-scottish-words-replace-115 = reddie + +accent-scottish-words-116 = nuclear agent +accent-scottish-words-replace-116 = reddie + +accent-scottish-words-121 = more +accent-scottish-words-replace-121 = maer + +accent-scottish-words-122 = moreover +accent-scottish-words-replace-122 = maero'er + +accent-scottish-words-123 = over +accent-scottish-words-replace-123 = o'er + +accent-scottish-words-125 = human +accent-scottish-words-replace-125 = hyooman + +accent-scottish-words-126 = dwarf +accent-scottish-words-replace-126 = dorf + +accent-scottish-words-127 = slime +accent-scottish-words-replace-127 = oozi + +accent-scottish-words-128 = rat +accent-scottish-words-replace-128 = raki + +accent-scottish-words-129 = arachnid +accent-scottish-words-replace-129 = aranaki + +accent-scottish-words-130 = spider +accent-scottish-words-replace-130 = hisser + +accent-scottish-words-131 = isn't +accent-scottish-words-replace-131 = be'nae + +accent-scottish-words-132 = aren't +accent-scottish-words-replace-132 = be'nae + +accent-scottish-words-133 = ain't +accent-scottish-words-replace-133 = be'nae + +accent-scottish-words-134 = isnt +accent-scottish-words-replace-134 = benae + +accent-scottish-words-135 = arent +accent-scottish-words-replace-135 = benae + +accent-scottish-words-136 = aint +accent-scottish-words-replace-136 = benae + +accent-scottish-words-137 = zombie +accent-scottish-words-replace-137 = rotter + +accent-scottish-words-138 = zomb +accent-scottish-words-replace-138 = rotter + +accent-scottish-words-139 = clown +accent-scottish-words-replace-139 = honki + +accent-scottish-words-140 = cluwn +accent-scottish-words-replace-140 = hunki + +accent-scottish-words-141 = carp +accent-scottish-words-replace-141 = fin + +accent-scottish-words-142 = crusher +accent-scottish-words-replace-142 = axe + +accent-scottish-words-143 = coward +accent-scottish-words-replace-143 = leaflover + +accent-scottish-words-144 = idiot +accent-scottish-words-replace-144 = eejit + +accent-scottish-words-145 = stupid +accent-scottish-words-replace-145 = diteit + +accent-scottish-words-146 = officer +accent-scottish-words-replace-146 = bobby + +accent-scottish-words-147 = seccie +accent-scottish-words-replace-147 = bobby + +accent-scottish-words-148 = a +accent-scottish-words-replace-148 = ae + +accent-scottish-words-149 = certain +accent-scottish-words-replace-149 = cocksure + +accent-scottish-words-150 = to all +accent-scottish-words-replace-150 = t'all + +accent-scottish-words-151 = old +accent-scottish-words-replace-151 = ol' + +accent-scottish-words-152 = filthy +accent-scottish-words-replace-152 = manky + +accent-scottish-words-153 = i do not know +accent-scottish-words-replace-153 = ah dinnae ken + +accent-scottish-words-154 = dumbass +accent-scottish-words-replace-154 = bampot + +accent-scottish-words-155 = there +accent-scottish-words-replace-155 = thare + +accent-scottish-words-156 = from +accent-scottish-words-replace-156 = frae + +accent-scottish-words-157 = highland +accent-scottish-words-replace-157 = hielan + +accent-scottish-words-158 = high +accent-scottish-words-replace-158 = hie + +accent-scottish-words-159 = syndicate agent +accent-scottish-words-replace-159 = snakey bastard + +accent-scottish-words-160 = syndicate +accent-scottish-words-replace-160 = snake + +accent-scottish-words-161 = syndicates +accent-scottish-words-replace-161 = snakes + +accent-scottish-words-162 = nukies +accent-scottish-words-replace-162 = reddies + +accent-scottish-words-163 = syndicate agents +accent-scottish-words-replace-163 = snakey bastards \ No newline at end of file diff --git a/Resources/Locale/en-US/deltav/accessories/hair.ftl b/Resources/Locale/en-US/deltav/accessories/hair.ftl index 6579016713..7fbfc78629 100644 --- a/Resources/Locale/en-US/deltav/accessories/hair.ftl +++ b/Resources/Locale/en-US/deltav/accessories/hair.ftl @@ -7,3 +7,6 @@ marking-HumanHairClassicLowFade = Fade (Low, Classic) marking-HumanHairClassicMedFade = Fade (Medium, Classic) marking-HumanHairClassicOmbre = Ombre Classic marking-HumanHairClassicCrewcut = Crewcut Classic +marking-HumanHairClassicLong = Long 1 (Classic) +marking-HumanHairClassicLong2 = Long 2 (Classic) +marking-HumanHairClassicLong3 = Long 3 (Classic) diff --git a/Resources/Locale/en-US/deltav/cartridge-loader/cartridges.ftl b/Resources/Locale/en-US/deltav/cartridge-loader/cartridges.ftl new file mode 100644 index 0000000000..9b4c59d001 --- /dev/null +++ b/Resources/Locale/en-US/deltav/cartridge-loader/cartridges.ftl @@ -0,0 +1,120 @@ +crime-assist-program-name = Crime Assist +crime-assist-yes-button = Yes +crime-assist-no-button = No +crime-assist-crimetype-innocent = Innocent +crime-assist-crimetype-misdemeanour = Misdemeanour +crime-assist-crimetype-felony = Felony +crime-assist-crimetype-capital = Capital +crime-assist-crime-innocent = No crime was committed +crime-assist-crime-animalcruelty = Code 101: Animal Cruelty +crime-assist-crime-theft = Code 102: Theft +crime-assist-crime-trespass = Code 110: Trespass +crime-assist-crime-vandalism = Code 111: Vandalism +crime-assist-crime-hooliganism = Code 112: Hooliganism +crime-assist-crime-manslaughter = Code 201: Manslaughter +crime-assist-crime-grandtheft = Code 202: Grand Theft +crime-assist-crime-blackmarketeering = Code 203: Black Marketeering +crime-assist-crime-sabotage = Code 204: Sabotage +crime-assist-crime-mindbreaking = Code 205: Mindbreaking +crime-assist-crime-assault = Code 206: Assault +crime-assist-crime-abuseofpower = Code 207: Abuse of Power +crime-assist-crime-possession = Code 208: Possession +crime-assist-crime-endangerment = Code 209: Endangerment +crime-assist-crime-breakingandentering = Code 210: Breaking and Entering +crime-assist-crime-rioting = Code 211: Rioting +crime-assist-crime-contemptofcourt = Code 212: Contempt of Court +crime-assist-crime-perjuryfalsereport = Code 213: Perjury or False Report +crime-assist-crime-obstructionofjustice = Code 214: Obstruction of Justice +crime-assist-crime-murder = Code 301: Murder +crime-assist-crime-terrorism = Code 303: Terrorism +crime-assist-crime-grandsabotage = Code 304: Grand Sabotage +crime-assist-crime-decorporealisation = Code 305: Decorporealisation +crime-assist-crime-kidnapping = Code 309: Kidnapping +crime-assist-crime-sedition = Code 311: Sedition +crime-assist-crime-sexualharassment = Code 314: Sexual Harassment +crime-assist-mainmenu = Welcome to Crime Assist! +crime-assist-question-isitterrorism = Did the suspect hold hostages, cause many deaths or major destruction to force compliance from the crew? +crime-assist-question-wassomeoneattacked = Was an entity attacked? +crime-assist-question-wasitsophont = Was the victim in question a sophont? +crime-assist-question-didvictimdie = Did the victim die as a result to the attack? +crime-assist-question-isvictimremovedfrombody = Is the victim alive, but intentionally and permanently removed from the body? +crime-assist-question-wasdeathintentional = Did the suspect attack the victim with intent to kill? +crime-assist-question-forcedmindbreakertoxin = Was the victim forced to take Mindbreaker Toxin? +crime-assist-question-hadillicititem = Did the suspect have an illicit or controlled item, substance or entity? +crime-assist-question-wasitaperson = Did the suspect hold another sophont against its will? +crime-assist-question-wassuspectselling = Was the suspect selling or distributing the illicit items? +crime-assist-question-wassuspectseentaking = Can it be proven that the suspect took the item knowing that it was illegal for the suspect to possess the item? +crime-assist-question-isitemextremelydangerous = Is the item in question dangerous to other sophonts or the station as a whole? +crime-assist-question-wassuspectinarestrictedlocation = Was the suspect in a restricted location, or anywhere the suspect did not have legal access to? +crime-assist-question-wasentrancelocked = Did the suspect force through a locked access point to get to the location? +crime-assist-question-didsuspectbreaksomething = Did the suspect break something? +crime-assist-question-weretheremanysuspects = Were there many suspects in a group causing a disturbance? +crime-assist-question-wasdamagesmall = Was the damage minor, or easily undone? +crime-assist-question-wasdestroyeditemimportanttostation = Was the damaged or destroyed item important to the functioning of the station? +crime-assist-question-islargepartofstationdestroyed = Was a large part of the station destroyed or made uninhabitable? +crime-assist-question-wascrimesexualinnature = Was the crime sexual in nature? +crime-assist-question-wassuspectanuisance = Was the suspect being a nuisance to other sophonts? +crime-assist-question-falselyreportingtosecurity = Has the suspect made a report, in person or through radio channels, to security that was proven to be intentionally false? +crime-assist-question-happenincourt = Was the suspect a nuisance in court? +crime-assist-question-duringactiveinvestigation = Was the suspect a nuisance during an active investigation, and hindered the investigation as a result? +crime-assist-question-tocommandstaff = Did the suspect overthrow or compromise a lawfully established Chain of Command, or attempt to do so? +crime-assist-question-wasitcommanditself = Was a command staff or department head abusing authority over another sophont? +crime-assist-crimedetail-innocent = Crime could not be determined. Use your best judgement to resolve the situation. +crime-assist-crimedetail-animalcruelty = To inflict unnecessary suffering on a sapient being with malicious intent. +crime-assist-crimedetail-theft = To unlawfully take property or items without consent. +crime-assist-crimedetail-trespass = To enter into an area where one is not authorised nor invited. +crime-assist-crimedetail-vandalism = To deface or superficially damage public property, or property belonging to another person. +crime-assist-crimedetail-hooliganism = To intentionally and maliciously engage in disruptive conduct, where one refuses to cease. +crime-assist-crimedetail-manslaughter = To effect violence upon a sophont, resulting in their death, without the apparent intent to kill them. +crime-assist-crimedetail-grandtheft = To unlawfully take highly restricted, dangerous, valuable, or highly sensitive property or items without consent. +crime-assist-crimedetail-blackmarketeering = To sell, distribute, or otherwise circulate restricted items or substances to unauthorised sophonts or entities. +crime-assist-crimedetail-sabotage = To engage in malicious actions that directly or indirectly hinder the operation of a vessel or its part, modify and/or damage technology one is not authorised to access, or endanger multiple sophonts. +crime-assist-crimedetail-mindbreaking = To unlawfully and maliciously rid a psionic sophont of their powers. +crime-assist-crimedetail-assault = To cause physical harm or to effect unwanted physical contact on a sophont, without the apparent intent to kill them, or to threaten such actions with both capability and intent to do so. +crime-assist-crimedetail-abuseofpower = To intentionally misuse or wrongfully exercise one’s own authority, influence, or control, resulting in harm, unjust treatment, or demonstrable loss to a separate party due to violation of ethical and professional standards. +crime-assist-crimedetail-possession = To be in unauthorised possession of restricted items or items of particular danger. +crime-assist-crimedetail-endangerment = To recklessly abandon obligations involving the continued wellbeing and/or protection of life and property, through malpractice, action, or inaction. +crime-assist-crimedetail-breakingandentering = To break and enter into a high security area where one is not authorised nor invited, with intent to commit a crime within. +crime-assist-crimedetail-rioting = To partake in an unauthorised riotous, tumultuous, and disruptive public assembly that refuses to disperse after warning. +crime-assist-crimedetail-contemptofcourt = To conduct oneself disruptively and disrespectfully before the court. +crime-assist-crimedetail-perjuryfalsereport = To wilfully and maliciously tell an untruth either in court or in the process of making an actionable report to law enforcement. +crime-assist-crimedetail-obstructionofjustice = To wilfully disobey, interfere with, or refuse a decree of the court, warrant, or arrest. +crime-assist-crimedetail-murder = To kill a sophont with malicious intent and premeditation. +crime-assist-crimedetail-terrorism = To commit an act with the intent to cause injury or death, or to take hostages, in order to provoke a state of terror in, intimidate, or compel a group of sophonts to do or to abstain from doing any act. +crime-assist-crimedetail-grandsabotage = To engage in malicious actions that directly or indirectly make uninhabitable or inoperable a vessel or its part, or irreversibly modify and/or damage technology one is not authorised to access, causing severe bodily harm or death to multiple sophonts. +crime-assist-crimedetail-decorporealisation = To unlawfully, maliciously, and permanently strip a sophont’s mind from their body. +crime-assist-crimedetail-kidnapping = To unlawfully confine or restrict the free movement of a sophont against their will. +crime-assist-crimedetail-sedition = To act to overthrow a lawfully established Chain of Command or governing body without lawful or legitimate cause. +crime-assist-crimedetail-sexualharassment = To sexually harass, attempt to coerce into sexual relations, or effect unwanted sexual contact with an unwilling sophont. +crime-assist-crimepunishment-innocent = No punishment may be necessary +crime-assist-crimepunishment-animalcruelty = Punishment: 3 minutes +crime-assist-crimepunishment-theft = Punishment: 2 minutes +crime-assist-crimepunishment-trespass = Punishment: 2 minutes +crime-assist-crimepunishment-vandalism = Punishment: 2 minutes +crime-assist-crimepunishment-hooliganism = Punishment: As necessary +crime-assist-crimepunishment-manslaughter = Punishment: 8 minutes +crime-assist-crimepunishment-grandtheft = Punishment: 8 minutes +crime-assist-crimepunishment-blackmarketeering = Punishment: 6 minutes +crime-assist-crimepunishment-sabotage = Punishment: 6 minutes +crime-assist-crimepunishment-mindbreaking = Punishment: 5 minutes +crime-assist-crimepunishment-assault = Punishment: 5 minutes +crime-assist-crimepunishment-abuseofpower = Punishment: 5 minutes +crime-assist-crimepunishment-possession = Punishment: Up to 5 minutes +crime-assist-crimepunishment-endangerment = Punishment: 4 minutes +crime-assist-crimepunishment-breakingandentering = Punishment: 4 minutes +crime-assist-crimepunishment-rioting = Punishment: 4 minutes +crime-assist-crimepunishment-contemptofcourt = Punishment: 4 minutes +crime-assist-crimepunishment-perjuryfalsereport = Punishment: 3 minutes +crime-assist-crimepunishment-obstructionofjustice = Punishment: 2 minutes +crime-assist-crimepunishment-murder = Punishment: Capital +crime-assist-crimepunishment-terrorism = Punishment: Capital +crime-assist-crimepunishment-grandsabotage = Punishment: Capital +crime-assist-crimepunishment-decorporealisation = Punishment: Capital +crime-assist-crimepunishment-kidnapping = Punishment: Capital +crime-assist-crimepunishment-sedition = Punishment: Capital +crime-assist-crimepunishment-sexualharassment = Punishment: Capital +crime-assist-sophont-explanation = A sophont is described as any entity with the capacity to display the following attributes: + • [bold]Sapience[/bold]: the entity possesses basic logic and problem-solving skills, or at a minimum some level of significant intelligence. + • [bold]Sentience[/bold]: the entity has the capacity to process an emotion or lack thereof, or at a minimum the ability to recognise its own pain. + • [bold]Self-awareness[/bold]: the entity is capable of altering its behaviour in a reasonable fashion as a result of stimuli, or at a minimum is capable of recognising its own sapience and sentience. + Any sophont is considered a legal person, regardless of origin or prior cognitive status. Much like any other intelligent organic, a sophont may press charges against crew and be tried for crimes. diff --git a/Resources/Locale/en-US/deltav/chat/managers/chat_manager.ftl b/Resources/Locale/en-US/deltav/chat/managers/chat_manager.ftl index ceb1862bfa..bd8719fd56 100644 --- a/Resources/Locale/en-US/deltav/chat/managers/chat_manager.ftl +++ b/Resources/Locale/en-US/deltav/chat/managers/chat_manager.ftl @@ -2,3 +2,8 @@ chat-speech-verb-vulpkanin-1 = rawrs chat-speech-verb-vulpkanin-2 = barks chat-speech-verb-vulpkanin-3 = rurs chat-speech-verb-vulpkanin-4 = yaps + +chat-speech-verb-felinid-1 = mraows +chat-speech-verb-felinid-2 = mews +chat-speech-verb-felinid-3 = meows +chat-speech-verb-felinid-4 = purrs out diff --git a/Resources/Locale/en-US/deltav/ghost/roles/ghost-role-component.ftl b/Resources/Locale/en-US/deltav/ghost/roles/ghost-role-component.ftl new file mode 100644 index 0000000000..f2e9238dfb --- /dev/null +++ b/Resources/Locale/en-US/deltav/ghost/roles/ghost-role-component.ftl @@ -0,0 +1,8 @@ +ghost-role-information-nukie-mouse-name = Nuclear Operative Mouse +ghost-role-information-nukie-mouse-description = A Nuclear Operative reinforcement for the Syndicate. +ghost-role-information-nukie-mouse-rules = Normal syndicate antagonist rules apply. Work with whoever called you in, and don't harm them. + The crew is allowed to kill you without warning. + You are allowed to attack the crew and destroy the station without provocation. +ghost-role-information-listeningop-name = Listening Post Operative +ghost-role-information-listeningop-description = You are a Listening Post operative. Get into range, observe the station, intercept communications and assist any operatives in the area! +ghost-role-information-listeningop-rules = You are a Syndicate Operative tasked with the continuous reporting and monitoring of the station and its activities, as well as assisting any fellow operatives who may be aboard the station. As an antagonist, do whatever is required for you to complete this task. Make sure your station doesn't fall into enemy hands and DO NOT abandon your station! Hide your existence at any cost! diff --git a/Resources/Locale/en-US/deltav/interaction/interaction-popup-component.ftl b/Resources/Locale/en-US/deltav/interaction/interaction-popup-component.ftl new file mode 100644 index 0000000000..3842219567 --- /dev/null +++ b/Resources/Locale/en-US/deltav/interaction/interaction-popup-component.ftl @@ -0,0 +1,6 @@ +### Interaction Popup component + +## Petting animals + +petting-success-nukie-mouse = You pet {THE($target)} on {POSS-ADJ($target)} little blood-red syndicate mouse head. +petting-failure-nukie-mouse = You reach out to pet {THE($target)}, but {SUBJECT($target)} attempts to slice your finger with a mouse-sized e-dagger and only your quick reflexes save you from an almost fatal injury. \ No newline at end of file diff --git a/Resources/Locale/en-US/deltav/markings/felinid.ftl b/Resources/Locale/en-US/deltav/markings/felinid.ftl new file mode 100644 index 0000000000..89f4d43bd4 --- /dev/null +++ b/Resources/Locale/en-US/deltav/markings/felinid.ftl @@ -0,0 +1,5 @@ +marking-FelinidFluffyTail-Felinid_fluffy_tail_full = Fluffy Tail +marking-FelinidFluffyTailRings-Felinid_fluffy_tail_full = Fluffy tail +marking-FelinidFluffyTailRings-felinid_fluffy_tail_rings = Fluffy Tail Rings +marking-FelinidFluffyTail = Fluffy Tail +marking-FelinidFluffyTailRings = Fluffy Tail with rings diff --git a/Resources/Locale/en-US/deltav/materials/units.ftl b/Resources/Locale/en-US/deltav/materials/units.ftl new file mode 100644 index 0000000000..f862a88923 --- /dev/null +++ b/Resources/Locale/en-US/deltav/materials/units.ftl @@ -0,0 +1,2 @@ +# crystals of bluespace +materials-unit-crystal = crystal diff --git a/Resources/Locale/en-US/deltav/misc/biscuits.ftl b/Resources/Locale/en-US/deltav/misc/biscuits.ftl new file mode 100644 index 0000000000..233a32bf20 --- /dev/null +++ b/Resources/Locale/en-US/deltav/misc/biscuits.ftl @@ -0,0 +1 @@ +biscuit-verb-crack = Crack diff --git a/Resources/Locale/en-US/deltav/prototypes/catalog/cargo/cargo-armory.ftl b/Resources/Locale/en-US/deltav/prototypes/catalog/cargo/cargo-armory.ftl index f3fcba063c..9199e1b250 100644 --- a/Resources/Locale/en-US/deltav/prototypes/catalog/cargo/cargo-armory.ftl +++ b/Resources/Locale/en-US/deltav/prototypes/catalog/cargo/cargo-armory.ftl @@ -6,3 +6,9 @@ ent-ArmoryUniversal = { ent-CrateArmoryUniversal } ent-ArmoryAdjutant = { ent-CrateArmoryAdjutant } .desc = { ent-CrateArmoryAdjutant.desc } + +ent-ArmoryEnergyGun = { ent-CrateArmoryEnergyGun } + .desc = { ent-CrateArmoryEnergyGun.desc } + +ent-ArmoryEnergyGunMini = { ent-CrateArmoryEnergyGunMini } + .desc = { ent-CrateArmoryEnergyGunMini.desc } diff --git a/Resources/Locale/en-US/deltav/prototypes/catalog/cargo/cargo-fun.ftl b/Resources/Locale/en-US/deltav/prototypes/catalog/cargo/cargo-fun.ftl new file mode 100644 index 0000000000..32d3ab61c3 --- /dev/null +++ b/Resources/Locale/en-US/deltav/prototypes/catalog/cargo/cargo-fun.ftl @@ -0,0 +1,2 @@ +ent-CrateFunBBGun = { ent-CrateFunBBGun } + .desc = { ent-CrateFunBBGun.desc } diff --git a/Resources/Locale/en-US/deltav/prototypes/catalog/fills/crates/armory-crates.ftl b/Resources/Locale/en-US/deltav/prototypes/catalog/fills/crates/armory-crates.ftl index 3613b6ecc2..f68f05dd8b 100644 --- a/Resources/Locale/en-US/deltav/prototypes/catalog/fills/crates/armory-crates.ftl +++ b/Resources/Locale/en-US/deltav/prototypes/catalog/fills/crates/armory-crates.ftl @@ -6,3 +6,9 @@ ent-CrateArmoryUniversal = Universal crate ent-CrateArmoryAdjutant = Adjutant crate .desc = Contains two Adjutant shotguns with 3 ammo boxes. Requires Armory access to open. + +ent-CrateArmoryEnergyGun = Energy Gun Crate + .desc = Contains three Energy Guns. Requires Armory access to open. + +ent-CrateArmoryEnergyGunMini = Miniature Energy Gun Crate + .desc = Contains three Miniature Energy Guns. Requires Armory access to open. diff --git a/Resources/Locale/en-US/deltav/prototypes/catalog/fills/crates/fun-crates.ftl b/Resources/Locale/en-US/deltav/prototypes/catalog/fills/crates/fun-crates.ftl new file mode 100644 index 0000000000..13291e9539 --- /dev/null +++ b/Resources/Locale/en-US/deltav/prototypes/catalog/fills/crates/fun-crates.ftl @@ -0,0 +1,2 @@ +ent-CrateFunBBGun = BB gun crate + .desc = Contains 1 BB gun and 2 boxes of BBs. diff --git a/Resources/Locale/en-US/deltav/research/technologies.ftl b/Resources/Locale/en-US/deltav/research/technologies.ftl index ab4286cafe..9c391a3696 100644 --- a/Resources/Locale/en-US/deltav/research/technologies.ftl +++ b/Resources/Locale/en-US/deltav/research/technologies.ftl @@ -1 +1,7 @@ research-technology-exotic-ammunition = Exotic Ammunition + +research-technology-energy-gun = Energy Guns + +research-technology-energy-gun-advance = Advanced Energy Manipulation + +research-technology-advance-laser = Advanced Laser Manipulation \ No newline at end of file diff --git a/Resources/Locale/en-US/deltav/store/uplink-catalog.ftl b/Resources/Locale/en-US/deltav/store/uplink-catalog.ftl new file mode 100644 index 0000000000..ca5d0f8e74 --- /dev/null +++ b/Resources/Locale/en-US/deltav/store/uplink-catalog.ftl @@ -0,0 +1,6 @@ +# Utility +uplink-reinforcement-radio-nukie-mouse-name = Mouse Operative Reinforcement Teleporter +uplink-reinforcement-radio-nukie-mouse-desc = Calls in a specially trained mouse operative to assist you. +# Implants +uplink-bionic-syrinx-implanter-name = Bionic Syrinx Implanter +uplink-bionic-syrinx-implanter-desc = An implant that enhances a harpy's natural talent for mimicry to let you adjust your voice to whoever you can think of. diff --git a/Resources/Locale/en-US/deltav/traits/traits.ftl b/Resources/Locale/en-US/deltav/traits/traits.ftl new file mode 100644 index 0000000000..4bcbbc21bd --- /dev/null +++ b/Resources/Locale/en-US/deltav/traits/traits.ftl @@ -0,0 +1,2 @@ +trait-scottish-accent-name = Scottish Accent +trait-scottish-accent-desc = Fer tha folk who come frae Hielan clan. \ No newline at end of file diff --git a/Resources/Locale/en-US/deltav/weapons/ranged/energygun.ftl b/Resources/Locale/en-US/deltav/weapons/ranged/energygun.ftl new file mode 100644 index 0000000000..6a831a46db --- /dev/null +++ b/Resources/Locale/en-US/deltav/weapons/ranged/energygun.ftl @@ -0,0 +1 @@ +energygun-examine-fire-mode = The firemode is set to {$mode} diff --git a/Resources/Locale/en-US/disease/miasma.ftl b/Resources/Locale/en-US/disease/miasma.ftl index ecb162683e..cc0c4117e5 100644 --- a/Resources/Locale/en-US/disease/miasma.ftl +++ b/Resources/Locale/en-US/disease/miasma.ftl @@ -1,4 +1,4 @@ -miasma-smell = Something smells foul! -miasma-rotting = [color=orange]It's rotting![/color] -miasma-bloated = [color=orangered]It's bloated![/color] -miasma-extremely-bloated = [color=red]It's extremely bloated![/color] +ammonia-smell = Something smells pungent! +rotting-rotting = [color=orange]It's rotting![/color] +rotting-bloated = [color=orangered]It's bloated![/color] +rotting-extremely-bloated = [color=red]It's extremely bloated![/color] diff --git a/Resources/Locale/en-US/entity-systems/bin/bin-system.ftl b/Resources/Locale/en-US/entity-systems/bin/bin-system.ftl new file mode 100644 index 0000000000..eb0f6a35b0 --- /dev/null +++ b/Resources/Locale/en-US/entity-systems/bin/bin-system.ftl @@ -0,0 +1 @@ +bin-component-on-examine-text = Looks like there's {$count} items left. 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 5540b6609b..65e477b2e2 100644 --- a/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl +++ b/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl @@ -5,11 +5,20 @@ ui-options-tab-graphics = Graphics ui-options-tab-controls = Controls ui-options-tab-audio = Audio ui-options-tab-network = Network +ui-options-tab-misc = General ui-options-apply = Apply ui-options-reset-all = Reset All ui-options-default = Default +# Misc/General menu + +ui-options-discordrich = Enable Discord Rich Presence +ui-options-general-discord = Discord +ui-options-general-cursor = Cursor +ui-options-general-speech = Speech +ui-options-general-storage = Storage + ## Audio menu ui-options-master-volume = Master Volume: @@ -27,8 +36,11 @@ ui-options-volume-percent = { TOSTRING($volume, "P0") } ## Graphics menu -ui-options-show-held-item = Show held item next to cursor? -ui-options-show-combat-mode-indicators = Show combat mode indicators with cursor? +ui-options-show-held-item = Show held item next to cursor +ui-options-show-combat-mode-indicators = Show combat mode indicators with cursor +ui-options-show-looc-on-head = Show LOOC chat above characters head +ui-options-fancy-speech = Show names in speech bubbles +ui-options-fancy-name-background = Add background to speech bubble names ui-options-vsync = VSync ui-options-fullscreen = Fullscreen ui-options-lighting-label = Lighting Quality: @@ -46,8 +58,12 @@ ui-options-scale-175 = 175% ui-options-scale-200 = 200% ui-options-hud-theme = HUD Theme: ui-options-hud-theme-default = Default -ui-options-hud-theme-modernized = Modernized -ui-options-hud-theme-classic = Classic +ui-options-hud-theme-plasmafire = Plasmafire +ui-options-hud-theme-slimecore = Slimecore +ui-options-hud-theme-clockwork = Clockwork +ui-options-hud-theme-retro = Retro +ui-options-hud-theme-minimalist = Minimalist +ui-options-hud-theme-eris = Eris ui-options-vp-stretch = Stretch viewport to fit game window ui-options-vp-scale = Fixed viewport scale: x{ $scale } ui-options-vp-integer-scaling = Prefer integer scaling (might cause black bars/clipping) diff --git a/Resources/Locale/en-US/explosions/explosion-resistance.ftl b/Resources/Locale/en-US/explosions/explosion-resistance.ftl index 26fb74346d..6ebb406b9a 100644 --- a/Resources/Locale/en-US/explosions/explosion-resistance.ftl +++ b/Resources/Locale/en-US/explosions/explosion-resistance.ftl @@ -1 +1,2 @@ explosion-resistance-coefficient-value = - [color=orange]Explosion[/color] damage reduced by [color=lightblue]{$value}%[/color]. +explosion-resistance-contents-coefficient-value = - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]{$value}%[/color]. diff --git a/Resources/Locale/en-US/flavors/flavor-profiles.ftl b/Resources/Locale/en-US/flavors/flavor-profiles.ftl index 2a0c39a0e4..d1954ababf 100644 --- a/Resources/Locale/en-US/flavors/flavor-profiles.ftl +++ b/Resources/Locale/en-US/flavors/flavor-profiles.ftl @@ -43,6 +43,7 @@ flavor-base-piquant = piquant flavor-base-sharp = sharp flavor-base-syrupy = syrupy flavor-base-spaceshroom = mysterious +flavor-base-clean = clean # lmao flavor-base-terrible = terrible @@ -70,6 +71,7 @@ flavor-complex-bread = like bread flavor-complex-batter = like batter flavor-complex-butter = like butter flavor-complex-egg = like egg +flavor-complex-raw-egg = like raw egg flavor-complex-bacon = like bacon flavor-complex-chicken = like chicken flavor-complex-duck = like duck @@ -84,6 +86,7 @@ flavor-complex-dough = like dough flavor-complex-sweet-dough = like sweet dough flavor-complex-tofu = like tofu flavor-complex-miso = like miso +flavor-complex-lemoon = like laurel flavor-complex-muffin = like a muffin flavor-complex-peas = like peas flavor-complex-pineapple = like pineapple @@ -98,6 +101,7 @@ flavor-complex-tomato = like tomatoes flavor-complex-corn = like corn flavor-complex-banana = like bananas flavor-complex-apple = like apples +flavor-complex-cotton = like cottons flavor-complex-bungo = like bungo flavor-complex-raisins = like dried grapes flavor-complex-orange = like oranges @@ -213,3 +217,4 @@ flavor-complex-carpet = like a handful of fur flavor-complex-bee = unbeelievable flavor-complex-sax = like jazz flavor-complex-bottledlightning = like lightning in a bottle +flavor-complex-punishment = like punishment diff --git a/Resources/Locale/en-US/forensics/fibers.ftl b/Resources/Locale/en-US/forensics/fibers.ftl index c12bcf5b13..c95b292c96 100644 --- a/Resources/Locale/en-US/forensics/fibers.ftl +++ b/Resources/Locale/en-US/forensics/fibers.ftl @@ -9,6 +9,7 @@ fibers-latex = latex fibers-nitrile = nitrile fibers-nanomachines = insulative nanomachine fibers-chameleon = holographic chameleon +fibers-rubber = rubber fibers-purple = purple fibers-red = red diff --git a/Resources/Locale/en-US/forensics/forensics.ftl b/Resources/Locale/en-US/forensics/forensics.ftl index 88494820ec..957cc444a8 100644 --- a/Resources/Locale/en-US/forensics/forensics.ftl +++ b/Resources/Locale/en-US/forensics/forensics.ftl @@ -2,6 +2,7 @@ forensic-scanner-interface-title = Forensic scanner forensic-scanner-interface-fingerprints = Fingerprints forensic-scanner-interface-fibers = Fibers forensic-scanner-interface-dnas = DNAs +forensic-scanner-interface-residues = Residues forensic-scanner-interface-no-data = No scan data available forensic-scanner-interface-print = Print forensic-scanner-interface-clear = Clear @@ -23,3 +24,5 @@ forensic-scanner-verb-message = Perform a forensic scan forensic-pad-fingerprint-name = {$entity}'s fingerprints forensic-pad-gloves-name = fibers from {$entity} + +forensics-cleaning = You begin cleaning the evidence off of {THE($target)}... \ No newline at end of file diff --git a/Resources/Locale/en-US/forensics/residues.ftl b/Resources/Locale/en-US/forensics/residues.ftl new file mode 100644 index 0000000000..3c5fe3c96d --- /dev/null +++ b/Resources/Locale/en-US/forensics/residues.ftl @@ -0,0 +1,11 @@ +forensic-residue = {LOC($adjective)} residue +forensic-residue-colored = {LOC($adjective)} {LOC($color)} residue + +residue-unknown = unknown +residue-slippery = slippery + +residue-green = green +residue-blue = blue +residue-red = red +residue-grey = grey +residue-brown = brown \ No newline at end of file diff --git a/Resources/Locale/en-US/game-ticking/game-presets/preset-nukeops.ftl b/Resources/Locale/en-US/game-ticking/game-presets/preset-nukeops.ftl index 6864688157..1a4fcafbf8 100644 --- a/Resources/Locale/en-US/game-ticking/game-presets/preset-nukeops.ftl +++ b/Resources/Locale/en-US/game-ticking/game-presets/preset-nukeops.ftl @@ -3,7 +3,7 @@ nukeops-description = Nuclear operatives have targeted the station. Try to keep nukeops-welcome = You are a nuclear operative. Your goal is to blow up {$station}, and ensure that it is nothing but a pile of rubble. Your bosses, the Syndicate, have provided you with the tools you'll need for the task. - Death to Nanotrasen! + Operation {$name} is a go ! Death to Nanotrasen! nukeops-opsmajor = [color=crimson]Syndicate major victory![/color] nukeops-opsminor = [color=crimson]Syndicate minor victory![/color] diff --git a/Resources/Locale/en-US/game-ticking/game-presets/preset-revolutionary.ftl b/Resources/Locale/en-US/game-ticking/game-presets/preset-revolutionary.ftl index c6e925d0c4..ba2e3e554a 100644 --- a/Resources/Locale/en-US/game-ticking/game-presets/preset-revolutionary.ftl +++ b/Resources/Locale/en-US/game-ticking/game-presets/preset-revolutionary.ftl @@ -14,14 +14,6 @@ head-rev-briefing = Use flashes to convert people to your cause. Kill all heads to take over the station. -head-rev-initial-name = [color=#5e9cff]{$name}[/color] was one of the Head Revolutionaries. -head-rev-initial-name-user = [color=#5e9cff]{$name}[/color] ([color=gray]{$username}[/color]) was one of the Head Revolutionaries. - -head-rev-initial-count = {$initialCount -> - [one] There was one Head Revolutionary: - *[other] There were {$initialCount} Head Revolutionaries: -} - head-rev-break-mindshield = The Mindshield was destroyed! ## Rev @@ -58,4 +50,12 @@ rev-stalemate = All of the Head Revs and Command died. It's a draw. rev-reverse-stalemate = Both Command and Head Revs survived. +rev-headrev-count = {$initialCount -> + [one] There was one Head Revolutionary: + *[other] There were {$initialCount} Head Revolutionaries: +} +rev-headrev-player = {$title} converted {$count} {$count -> + [one] person + *[other] people +}. diff --git a/Resources/Locale/en-US/gases/gases.ftl b/Resources/Locale/en-US/gases/gases.ftl index 3166cd059b..e41aa4fc99 100644 --- a/Resources/Locale/en-US/gases/gases.ftl +++ b/Resources/Locale/en-US/gases/gases.ftl @@ -4,6 +4,6 @@ gases-co2 = Carbon Dioxide gases-plasma = Plasma gases-tritium = Tritium gases-water-vapor = Water Vapor -gases-miasma = Miasma +gases-ammonia = Ammonia gases-n2o = Nitrous Oxide gases-frezon = Frezon diff --git a/Resources/Locale/en-US/gateway/gateway.ftl b/Resources/Locale/en-US/gateway/gateway.ftl index bebc82b60f..675d0fb873 100644 --- a/Resources/Locale/en-US/gateway/gateway.ftl +++ b/Resources/Locale/en-US/gateway/gateway.ftl @@ -1,10 +1,9 @@ gateway-window-title = Gateway -gateway-window-ready = Ready! -gateway-window-ready-in = Ready in: {$time}s -gateway-window-already-active = Already active gateway-window-open-portal = Open Portal gateway-window-no-destinations = No destinations found. -gateway-window-portal-closing = Portal closing +gateway-window-portal-cooldown = Cooldown +gateway-window-portal-unlock = Next unlock +gateway-window-locked = Locked gateway-access-denied = Access denied! gateway-close-portal = Close Portal diff --git a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl index ef469e5089..be07fb839b 100644 --- a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl +++ b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl @@ -17,6 +17,9 @@ deltav-ghost-role-information-salvageantag-rules = You are a salvage mob. ghost-role-information-mouse-name = Mouse ghost-role-information-mouse-description = A hungry and mischievous mouse. +ghost-role-information-mothroach-name = Mothroach +ghost-role-information-mothroach-description = A cute but mischievous mothroach. + ghost-role-information-giant-spider-name = Giant spider ghost-role-information-giant-spider-description = Wreak havoc on the station's inhabitants! @@ -34,6 +37,7 @@ ghost-role-information-angry-slimes-description = Everything around you irritate ghost-role-information-smile-name = Smile the Slime ghost-role-information-smile-description = The sweetest creature in the world. Smile Slime! +ghost-role-information-smile-rules = You are a crew-aligned pet. You can defend yourself and even attack threats to the station, but you generally should not attack the station's crew nor destroy their property. ghost-role-information-punpun-name = Pun Pun ghost-role-information-punpun-description = An honorable member of the monkey society in charge of the bar and helping the bartenders in any way he can. @@ -68,6 +72,9 @@ ghost-role-information-salvage-carp-description = Defend the loot inside the sal ghost-role-information-sentient-carp-name = Sentient Carp ghost-role-information-sentient-carp-description = Help the dragon flood the station with carps! +ghost-role-information-salvage-shark-name = Space sharkminnow on salvage wreck +ghost-role-information-salvage-shark-description = Help the younger fellow carp protect their prey. Smell the blood! + ghost-role-information-willow-name = Willow the kangaroo ghost-role-information-willow-description = You're a kangaroo named willow! willow likes to box. @@ -110,6 +117,12 @@ ghost-role-information-space-spider-description = Space spiders are just as agg ghost-role-information-salvage-spider-name = Space spider on salvage wreck ghost-role-information-salvage-spider-description = Space spiders are just as aggressive as regular spiders, feed. +ghost-role-information-space-cobra-name = Space cobra +ghost-role-information-space-cobra-description = Space cobras really don't like guests, and will always snack on a visitor. + +ghost-role-information-salvage-cobra-name = Space cobra on salvage wreck +ghost-role-information-salvage-cobra-description = Space cobras really don't like guests, and will always snack on a visitor. + ghost-role-information-guardian-name = Guardian ghost-role-information-guardian-description = Listen to your owner. Don't tank damage. Punch people hard. @@ -181,8 +194,16 @@ ghost-role-information-behonker-name = Behonker ghost-role-information-behonker-description = You are an antagonist, bring death and honks to those who do not follow the honkmother. ghost-role-information-Death-Squad-name = Death Squad Operative -ghost-role-information-Death-Squad-description = Prepare for an all-out offensive on the station. As a heavily armed operative, your mission is to obliterate all life in your path. No witnesses. +ghost-role-information-Death-Squad-description = One of Nanotrasen's top internal affairs agents. Await orders from CentComm or an official. ghost-role-information-Shiva-name = Shiva ghost-role-information-Shiva-description = Shiva, the stations first defender. Help the Head of Security in their work ghost-role-information-Shiva-rules = Protect security staff and the crew from danger. Stay with Security staff or around the Security department, try to disable criminals and not kill them if the situation allows for it. + +ghost-role-information-Cak-name = Cak +ghost-role-information-Cak-description = You are the chef's favorite child. You're a living cake cat. +ghost-role-information-Cak-rules = You are a living edible sweet cat. Your task is to find your place in this world where everything wants to eat you. + +ghost-role-information-BreadDog-name = BreadDog +ghost-role-information-BreadDog-description = You are the chef's favorite child. You're a living bread dog. +ghost-role-information-BreadDog-rules = You're an edible dog made of bread. Your task is to find your place in this world where everything wants to eat you. diff --git a/Resources/Locale/en-US/guidebook/chemistry/core.ftl b/Resources/Locale/en-US/guidebook/chemistry/core.ftl index c9d1db332d..7b39a63175 100644 --- a/Resources/Locale/en-US/guidebook/chemistry/core.ftl +++ b/Resources/Locale/en-US/guidebook/chemistry/core.ftl @@ -11,7 +11,16 @@ guidebook-reagent-name = [bold][color={$color}]{CAPITALIZE($name)}[/color][/bold guidebook-reagent-recipes-header = Recipe guidebook-reagent-recipes-reagent-display = [bold]{$reagent}[/bold] \[{$ratio}\] guidebook-reagent-recipes-mix = Mix -guidebook-reagent-recipes-mix-and-heat = Mix at above {$temperature}K guidebook-reagent-effects-header = Effects guidebook-reagent-effects-metabolism-group-rate = [bold]{$group}[/bold] [color=gray]({$rate} units per second)[/color] -guidebook-reagent-physical-description = Seems to be {$description}. +guidebook-reagent-physical-description = [italic]Seems to be {$description}.[/italic] +guidebook-reagent-recipes-mix-info = {$minTemp -> + [0] {$hasMax -> + [true] {$verb} below {$maxTemp}K + *[false] {$verb} + } + *[other] {$verb} {$hasMax -> + [true] between {$minTemp}K and {$maxTemp}K + *[false] above {$minTemp}K + } +} diff --git a/Resources/Locale/en-US/guidebook/chemistry/statuseffects.ftl b/Resources/Locale/en-US/guidebook/chemistry/statuseffects.ftl index f00921b831..3db8a3c5b0 100644 --- a/Resources/Locale/en-US/guidebook/chemistry/statuseffects.ftl +++ b/Resources/Locale/en-US/guidebook/chemistry/statuseffects.ftl @@ -10,3 +10,4 @@ reagent-effect-status-effect-Drunk = drunkness reagent-effect-status-effect-PressureImmunity = pressure immunity reagent-effect-status-effect-Pacified = combat pacification reagent-effect-status-effect-RatvarianLanguage = ratvarian language patterns +reagent-effect-status-effect-StaminaModifier = modified stamina diff --git a/Resources/Locale/en-US/guidebook/guides.ftl b/Resources/Locale/en-US/guidebook/guides.ftl index 225a382d7e..c2667141d0 100644 --- a/Resources/Locale/en-US/guidebook/guides.ftl +++ b/Resources/Locale/en-US/guidebook/guides.ftl @@ -30,6 +30,7 @@ guide-entry-medical = Medical guide-entry-medicaldoctor = Medical Doctor guide-entry-chemist = Chemist guide-entry-medicine = Medicine +guide-entry-brute = Advanced Brute Medication guide-entry-botanicals = Botanicals guide-entry-cloning = Cloning guide-entry-cryogenics = Cryogenics @@ -43,6 +44,7 @@ guide-entry-artifact-reports = Artifact Reports guide-entry-traversal-distorter = Traversal Distorter guide-entry-machine-upgrading = Machine Upgrading guide-entry-robotics = Robotics +guide-entry-cyborgs = Cyborgs guide-entry-security = Security guide-entry-dna = DNA guide-entry-defusal = Large Bomb Defusal @@ -56,3 +58,4 @@ guide-entry-minor-antagonists = Minor Antagonists guide-entry-space-ninja = Space Ninja guide-entry-writing = Writing +guide-entry-glossary = Glossary diff --git a/Resources/Locale/en-US/headset/headset-component.ftl b/Resources/Locale/en-US/headset/headset-component.ftl index 8537de0795..a220737f18 100644 --- a/Resources/Locale/en-US/headset/headset-component.ftl +++ b/Resources/Locale/en-US/headset/headset-component.ftl @@ -14,6 +14,7 @@ chat-radio-security = Security chat-radio-service = Service chat-radio-supply = Logistics chat-radio-syndicate = Syndicate +chat-radio-freelance = Freelance # not headset but whatever chat-radio-handheld = Handheld diff --git a/Resources/Locale/en-US/interaction/interaction-popup-component.ftl b/Resources/Locale/en-US/interaction/interaction-popup-component.ftl index 02cbd97364..3f2a23d30d 100644 --- a/Resources/Locale/en-US/interaction/interaction-popup-component.ftl +++ b/Resources/Locale/en-US/interaction/interaction-popup-component.ftl @@ -7,6 +7,7 @@ petting-success-soft-floofy = You pet {THE($target)} on {POSS-ADJ($target)} soft petting-success-bingus = You pet {THE($target)} on {POSS-ADJ($target)} wrinkly little head. petting-success-bird = You pet {THE($target)} on {POSS-ADJ($target)} cute feathery head. +petting-success-carp = You pet {THE($target)} on {POSS-ADJ($target)} fishy little head. petting-success-cat = You pet {THE($target)} on {POSS-ADJ($target)} fuzzy little head. petting-success-corrupted-corgi = In an act of hubris, you pet {THE($target)} on {POSS-ADJ($target)} cursed little head. petting-success-crab = You pet {THE($target)} on {POSS-ADJ($target)} smooth little head. @@ -28,10 +29,12 @@ petting-success-dragon = Dodging teeth, claws, and flames, you pet {THE($target) petting-success-hamster = You pet {THE($target)} on {POSS-ADJ($target)} fluffy little head. petting-success-bear = You reluctantly pet {THE($target)} on {POSS-ADJ($target)} mystical head. petting-success-slimes = You pet {THE($target)} on {POSS-ADJ($target)} mucous surface. +petting-success-snake = You pet {THE($target)} on {POSS-ADJ($target)} scaly large head. petting-failure-generic = You reach out to pet {THE($target)}, but {SUBJECT($target)} {CONJUGATE-BE($target)} aloof towards you. petting-failure-bat = You reach out to pet {THE($target)}, but {SUBJECT($target)} {CONJUGATE-BE($target)} too hard to catch! +petting-failure-carp = You reach out to pet {THE($target)}, but {POSS_ADJ($target)} sharp teeth make you think twice. petting-failure-corrupted-corgi = You reach out to pet {THE($target)}, but think better of it. petting-failure-crab = You reach out to pet {THE($target)}, but {SUBJECT($target)} snaps {POSS-ADJ($target)} claws in your general direction! petting-failure-dehydrated-carp = You pet {THE($target)} on {POSS-ADJ($target)} dry little head. @@ -39,7 +42,7 @@ petting-failure-goat = You reach out to pet {THE($target)}, but {SUBJECT($target petting-failure-goose = You reach out to pet {THE($target)}, but {SUBJECT($target)} {CONJUGATE-BE($target)} too horrible! petting-failure-goose = You reach out to pet {THE($target)}, but {SUBJECT($target)} {CONJUGATE-BE($target)} too australian! petting-failure-possum = You reach out to pet {THE($target)}, but are met with hisses and snarls! -petting-success-pig = You reach out to pet {THE($target)}, but are met with irritated oinks and squeals! +petting-failure-pig = You reach out to pet {THE($target)}, but are met with irritated oinks and squeals! petting-failure-raccoon = You reach out to pet {THE($target)}, but {THE($target)} is busy raccooning around. petting-failure-sloth = You reach out to pet {THE($target)}, but {SUBJECT($target)} somehow dodge with ludicrous speed! petting-failure-holo = You reach out to pet {THE($target)}, but {POSS-ADJ($target)} spikes almost impale your hand! diff --git a/Resources/Locale/en-US/job/job-description.ftl b/Resources/Locale/en-US/job/job-description.ftl index d383f06a18..5e3a84e098 100644 --- a/Resources/Locale/en-US/job/job-description.ftl +++ b/Resources/Locale/en-US/job/job-description.ftl @@ -3,15 +3,15 @@ job-description-atmostech = Optimize the station's atmospherics setup, and synth job-description-bartender = Manage the bar and keep it lively, give out drinks, and listen to the crew's stories. job-description-botanist = Grow food for the chef, drugs for medbay, and other plants to keep yourself entertained. job-description-borg = Half-human, Half-machine. Follow your laws, serve the crew, and hound the epistemics team for upgrades. -job-description-boxer = Fight your way to the top! Challenge the head of personnel and get brigged when you win. Currently available on Edge, Pebble and Tortuga. -job-description-brigmedic = Fight in the rear of the security service, for the lives of your comrades! You are the first and last hope of your squad. Hippocrates bless you. Currently unavailable. +job-description-boxer = Fight your way to the top! Challenge the head of personnel and get brigged when you win. Currently available on Edge, Hive, Pebble and Tortuga. +job-description-brigmedic = Fight in the rear of the security service, for the lives of your comrades! You are the first and last hope of your squad. Hippocrates bless you. job-description-cadet = Learn the basics of arresting criminals and managing the brig. job-description-captain = Keep the station running, delegate work to the other heads of staff, and exert your will. job-description-cargotech = Deal with requisitions and deliveries for emergencies, pilot the cargo shuttle, and work with others to make ludicrous amounts of cash. job-description-ce = Manage the engineering department to ensure power, atmospherics, and the hull are in perfect shape. job-description-centcomoff = Act as an ambassador to the newest state-of-the-art space station in Nanotrasen's fleet. job-description-chaplain = Preach the good word of your deity and religion, and conduct spiritual healing. -job-description-chef = Keep the station fed with a variety of food items, butcher dead animals to ensure miasma doesn't leak, and help keep the bar lively. +job-description-chef = Keep the station fed with a variety of food items, butcher dead animals to ensure ammonia doesn't leak, and help keep the bar lively. job-description-chemist = Produce medicinal drugs for the doctors to use, research ethically dubious rare chemicals, and produce weapons of war when enemies of the station arrive. job-description-clown = Entertain the crew through elaborate slapstick routines or terrible jokes. job-description-cmo = Manage the resources and personnel of the medical department to keep the crew alive. @@ -33,11 +33,11 @@ job-description-librarian = Manage the library, give out knowledge to any who se job-description-mime = Entertain the crew through non-vocal means, and engage with light rivalry with the clown. job-description-musician = Entertain the crew with your unique musical talent, and acquire new instruments to mess around with. job-description-passenger = Enjoy your stay aboard the station with no obligations! -job-description-psychologist = Provide emotional support to traumatized crew. Currently available on Arena, Edge and Tortuga. +job-description-psychologist = Provide emotional support to traumatized crew. Currently available on Arena, Edge, Hive and Tortuga. job-description-qm = Manage the supplies of the station & the logistics department, keep the salvage specialists working, make sure all orders are fulfilled, and keep the money flowing. job-description-rd = Manage the epistemics department, unlocking technologies, acquiring & researching artifacts, and performing experiments. job-description-research-assistant = Learn the basics of how to research various artifacts and anomalies. -job-description-reporter = Entertain & inform the crew with your vibrant journalism through wireless cameras and the radio. Currently available on Arena, Edge and Tortuga. +job-description-reporter = Entertain & inform the crew with your vibrant journalism through wireless cameras and the radio. job-description-salvagespec = Use the salvage magnet to draw in derelicts & asteroids to loot and enrich the station, and fight off any space fauna along the way. job-description-scientist = Research alien artifacts, unlock new technologies, upgrade machines around the station, and make everything run more efficiently. job-description-security = Catch criminals and enemies of the station, enforce the law, and ensure that the station does not fall into disarray. diff --git a/Resources/Locale/en-US/lathe/ui/lathe-menu.ftl b/Resources/Locale/en-US/lathe/ui/lathe-menu.ftl index 914bb64b4f..3ccdb2b0eb 100644 --- a/Resources/Locale/en-US/lathe/ui/lathe-menu.ftl +++ b/Resources/Locale/en-US/lathe/ui/lathe-menu.ftl @@ -7,6 +7,7 @@ lathe-menu-search-filter = Filter lathe-menu-amount = Amount: lathe-menu-material-display = {$material} ({$amount}) lathe-menu-tooltip-display = {$amount} of {$material} +lathe-menu-description-display = {$description} lathe-menu-material-amount = { $amount -> [1] {NATURALFIXED($amount, 2)} {$unit} *[other] {NATURALFIXED($amount, 2)} {MAKEPLURAL($unit)} diff --git a/Resources/Locale/en-US/light/components/expendable-light-component.ftl b/Resources/Locale/en-US/light/components/expendable-light-component.ftl index 7b68f5dc90..4cd07599b9 100644 --- a/Resources/Locale/en-US/light/components/expendable-light-component.ftl +++ b/Resources/Locale/en-US/light/components/expendable-light-component.ftl @@ -11,4 +11,4 @@ expendable-light-spent-red-glowstick-name = spent red glowstick expendable-light-spent-purple-glowstick-name = spent purple glowstick expendable-light-spent-yellow-glowstick-name = spent purple glowstick expendable-light-spent-blue-glowstick-name = spent blue glowstick -expendable-light-spent-glowstick-desc = It looks like this glowstick has stopped glowing. How tragic. +expendable-light-spent-glowstick-desc = It looks like this glowstick has stopped glowing. How tragic. \ No newline at end of file diff --git a/Resources/Locale/en-US/logic-gates/logic-gates.ftl b/Resources/Locale/en-US/logic-gates/logic-gates.ftl index 1195670e7f..17346aae6e 100644 --- a/Resources/Locale/en-US/logic-gates/logic-gates.ftl +++ b/Resources/Locale/en-US/logic-gates/logic-gates.ftl @@ -1,3 +1,15 @@ logic-gate-examine = It is currently {INDEFINITE($gate)} {$gate} gate. logic-gate-cycle = Switched to {INDEFINITE($gate)} {$gate} gate + +power-sensor-examine = It is currently checking the network's {$output -> + [true] output + *[false] input +} battery. +power-sensor-voltage-examine = It is checking the {$voltage} power network. + +power-sensor-switch = Switched to checking the network's {$output -> + [true] output + *[false] input +} battery. +power-sensor-voltage-switch = Switched network to {$voltage}! diff --git a/Resources/Locale/en-US/machine-linking/transmitter_ports.ftl b/Resources/Locale/en-US/machine-linking/transmitter_ports.ftl index 154f20eee7..c685cc8fb7 100644 --- a/Resources/Locale/en-US/machine-linking/transmitter_ports.ftl +++ b/Resources/Locale/en-US/machine-linking/transmitter_ports.ftl @@ -45,3 +45,24 @@ signal-port-description-air-warning = This port is invoked with HIGH when in war signal-port-name-air-normal = Normal signal-port-description-air-normal = This port is invoked with HIGH when in normal mode and LOW when not. + +signal-port-name-decaying = Decaying +signal-port-description-decaying = This port is invoked when a bound anomaly starts to decay. + +signal-port-name-stabilize = Stabilize +signal-port-description-stabilize = This port is invoked when a bound anomaly is normalized. + +signal-port-name-growing = Growing +signal-port-description-growing = This port is invoked when a bound anomaly starts to grow. + +signal-port-name-pulse = Pulse +signal-port-description-pulse = This port is invoked when a bound anomaly is pulsing. + +signal-port-name-supercrit = Supercritical +signal-port-description-supercrit = This port is invoked when a bound anomaly explode after supercrit state. + +signal-port-name-power-charging = Charging +signal-port-description-power-charging = This port is invoked with HIGH when the battery is gaining charge and LOW when not. + +signal-port-name-power-discharging = Discharging +signal-port-description-power-discharging = This port is invoked with HIGH when the battery is losing charge and LOW when not. diff --git a/Resources/Locale/en-US/machine/machine.ftl b/Resources/Locale/en-US/machine/machine.ftl index e23c9791cd..458e783059 100644 --- a/Resources/Locale/en-US/machine/machine.ftl +++ b/Resources/Locale/en-US/machine/machine.ftl @@ -22,4 +22,6 @@ two-way-lever-left = push left two-way-lever-right = push right two-way-lever-cant = can't push the lever that way! -recycler-count-items = Recycled {$items} objects. \ No newline at end of file +recycler-count-items = Recycled {$items} objects. + +machine-already-in-use = {CAPITALIZE(THE($machine))} is already in use. \ No newline at end of file diff --git a/Resources/Locale/en-US/markings/gauze.ftl b/Resources/Locale/en-US/markings/gauze.ftl new file mode 100644 index 0000000000..9a45a0a2fa --- /dev/null +++ b/Resources/Locale/en-US/markings/gauze.ftl @@ -0,0 +1,62 @@ +marking-GauzeLefteyePatch-gauze_lefteye_2 = Gauze eyepatch (Left) +marking-GauzeLefteyePatch = Gauze eyepatch (Left) + +marking-GauzeLefteyeTape-gauze_lefteye_1 = Gauze eyepad (Left) +marking-GauzeLefteyeTape = Gauze eyepad (Left) + +marking-GauzeRighteyePatch-gauze_righteye_2 = Gauze eyepatch (Right) +marking-GauzeRighteyePatch = Gauze eyepatch (Right) + +marking-GauzeRighteyeTape-gauze_righteye_1 = Gauze eyepad (Right) +marking-GauzeRighteyeTape = Gauze eyepad (Right) + +marking-GauzeShoulder-gauze_shoulder = Gauze Shoulder +marking-GauzeShoulder = Gauze Shoulder + +marking-GauzeStomach-gauze_abdomen = Gauze Stomach Wrap +marking-GauzeStomach = Gauze Stomach Wrap + +marking-GauzeUpperArmRight-gauze_upperarm_r = Gauze Forearm Wrap (Right) +marking-GauzeUpperArmRight = Gauze Forearm Wrap (Right) + +marking-GauzeLowerArmRight-gauze_lowerarm_r = Gauze Wrist Wrap (Right) +marking-GauzeLowerArmRight = Gauze Wrist Wrap (Right) + +marking-GauzeLeftArm-gauze_leftarm = Gauze Arm Wrap (Left) +marking-GauzeLeftArm = Gauze Arm Wrap (Left) + +marking-GauzeLowerLegLeft-gauze_lowerleg_l = Gauze Ankle Wrap (Left) +marking-GauzeLowerLegLeft = Gauze Ankle Wrap (Left) + +marking-GauzeBoxerWrapLeft-gauze_boxerwrap_l = Gauze Handwrap (Left) +marking-GauzeBoxerWrapLeft = Gauze Handwrap (Left) + +marking-GauzeBoxerWrapRight-gauze_boxerwrap_r = Gauze Handwrap (Right) +marking-GauzeBoxerWrapRight = Gauze Handwrap (Right) + +marking-GauzeUpperLegLeft-gauze_upperleg_l = Gauze Thigh Wrap (Left) +marking-GauzeUpperLegLeft = Gauze Thigh Wrap (Left) + +marking-GauzeLowerLegRight-gauze_lowerleg_r = Gauze Ankle Wrap (Right) +marking-GauzeLowerLegRight = Gauze Ankle Wrap (Right) + +marking-GauzeUpperLegRight-gauze_upperleg_r = Gauze Thigh Wrap (Right) +marking-GauzeUpperLegRight = Gauze Thigh Wrap (Right) + +marking-GauzeBlindfold-gauze_blindfold = Gauze Blindfold +marking-GauzeBlindfold = Gauze Blindfold + +marking-GauzeLizardBlindfold-gauze_lizardblindfold = Gauze Blindfold +marking-GauzeLizardBlindfold = Gauze Blindfold + +marking-GauzeLizardFootRight-gauze_lizardfoot_r = Gauze Foot Wrap (Right) +marking-GauzeLizardFootRight = Gauze Foot Wrap (Right) + +marking-GauzeLizardFootLeft-gauze_lizardfoot_l = Gauze Foot Wrap (Left) +marking-GauzeLizardFootLeft = Gauze Foot Wrap (Left) + +marking-GauzeLizardLefteyePatch-gauze_lizardlefteye = Adjusted Gauze eyepatch (Left) +marking-GauzeLizardLefteyePatch = Adjusted Gauze eyepatch (Left) + +marking-GauzeLizardRighteyePatch-gauze_lizardrighteye = Adjusted Gauze eyepatch (Right) +marking-GauzeLizardRighteyePatch = Adjusted Gauze Eyepatch (Right) \ No newline at end of file diff --git a/Resources/Locale/en-US/markings/reptilian.ftl b/Resources/Locale/en-US/markings/reptilian.ftl index e7a68c49ea..4a6ca59099 100644 --- a/Resources/Locale/en-US/markings/reptilian.ftl +++ b/Resources/Locale/en-US/markings/reptilian.ftl @@ -90,3 +90,6 @@ marking-LizardHornsKoboldEars = Lizard Ears (Kobold) marking-LizardHornsFloppyKoboldEars-horns_floppy_kobold_ears = Lizard Ears (Floppy Kobold) marking-LizardHornsFloppyKoboldEars = Lizard Ears (Floppy Kobold) + +marking-LizardChestUnderbelly-body_underbelly = Lizard Chest (Underbelly) +marking-LizardChestUnderbelly = Lizard Chest (Underbelly) diff --git a/Resources/Locale/en-US/markings/scars.ftl b/Resources/Locale/en-US/markings/scars.ftl new file mode 100644 index 0000000000..201131b3b2 --- /dev/null +++ b/Resources/Locale/en-US/markings/scars.ftl @@ -0,0 +1,8 @@ +marking-ScarEyeRight-eyescarright = Eye scar (Right) +marking-ScarEyeRight = Eye Scar (Right) + +marking-ScarEyeLeft-eyescarleft = Eye scar (Left) +marking-ScarEyeLeft = Eye Scar (Left) + +marking-ScarTopSurgeryShort = Top Surgery Scar (Short) +marking-ScarTopSurgeryLong = Top Surgery Scar (Long) diff --git a/Resources/Locale/en-US/materials/materials.ftl b/Resources/Locale/en-US/materials/materials.ftl index abd61d1065..a25cf2da14 100644 --- a/Resources/Locale/en-US/materials/materials.ftl +++ b/Resources/Locale/en-US/materials/materials.ftl @@ -18,11 +18,13 @@ materials-durathread = durathread materials-plasma = plasma materials-plastic = plastic materials-wood = wood +materials-paper = paper materials-uranium = uranium materials-bananium = bananium materials-meat = meat materials-web = silk materials-bones = bone +materials-coal = coal # Material Reclaimer material-reclaimer-upgrade-process-rate = process rate diff --git a/Resources/Locale/en-US/medical/components/crew-monitoring-component.ftl b/Resources/Locale/en-US/medical/components/crew-monitoring-component.ftl index e089b09234..f77f334c7e 100644 --- a/Resources/Locale/en-US/medical/components/crew-monitoring-component.ftl +++ b/Resources/Locale/en-US/medical/components/crew-monitoring-component.ftl @@ -1,6 +1,6 @@ ## UI -crew-monitoring-user-interface-title = Crew Monitoring +crew-monitoring-user-interface-title = Crew Monitoring Console crew-monitoring-user-interface-name = Name crew-monitoring-user-interface-job = Job @@ -12,3 +12,8 @@ crew-monitoring-user-interface-dead = Dead crew-monitoring-user-interface-no-info = N/A crew-monitoring-user-interface-no-server = Server not found + +crew-monitoring-user-interface-no-department = Unknown + +crew-monitoring-user-interface-flavor-left = In case of an emergancy, contact station medical staff immediately +crew-monitoring-user-interface-flavor-right = v1.7 \ No newline at end of file diff --git a/Resources/Locale/en-US/narsie/narsie.ftl b/Resources/Locale/en-US/narsie/narsie.ftl new file mode 100644 index 0000000000..dc4ed810f6 --- /dev/null +++ b/Resources/Locale/en-US/narsie/narsie.ftl @@ -0,0 +1,2 @@ +narsie-has-risen = NAR'SIE HAS RISEN +narsie-has-risen-sender = ??? diff --git a/Resources/Locale/en-US/nutrition/components/food-component.ftl b/Resources/Locale/en-US/nutrition/components/food-component.ftl index 4a6b6cf986..1d8a793d4d 100644 --- a/Resources/Locale/en-US/nutrition/components/food-component.ftl +++ b/Resources/Locale/en-US/nutrition/components/food-component.ftl @@ -16,7 +16,7 @@ food-system-remove-mask = You need to take off the {$entity} first. food-system-you-cannot-eat-any-more = You can't eat any more! food-system-you-cannot-eat-any-more-other = They can't eat any more! food-system-try-use-food-is-empty = {CAPITALIZE(THE($entity))} is empty! -food-system-wrong-utensil = You can't eat {THE($food)} with {INDEFINITE($utensil)}. +food-system-wrong-utensil = You can't eat {THE($food)} with {INDEFINITE($utensil)} {$utensil}. food-system-cant-digest = You can't digest {THE($entity)}! food-system-cant-digest-other = They can't digest {THE($entity)}! diff --git a/Resources/Locale/en-US/nyanotrasen/ghost/roles/ghost-role-component.ftl b/Resources/Locale/en-US/nyanotrasen/ghost/roles/ghost-role-component.ftl index d4d2a5767e..b999392b58 100644 --- a/Resources/Locale/en-US/nyanotrasen/ghost/roles/ghost-role-component.ftl +++ b/Resources/Locale/en-US/nyanotrasen/ghost/roles/ghost-role-component.ftl @@ -1,6 +1,3 @@ -ghost-role-information-mothroach-name = Mothroach -ghost-role-information-mothroach-description = A cute but mischievous mothroach. - ghost-role-information-giant-spider-vampire-name = Oneirophage ghost-role-information-giant-spider-vampire-description = Nest. Lure. Ambush. Consume. diff --git a/Resources/Locale/en-US/nyanotrasen/guidebook/guides.ftl b/Resources/Locale/en-US/nyanotrasen/guidebook/guides.ftl index 407621b6e4..60166b8259 100644 --- a/Resources/Locale/en-US/nyanotrasen/guidebook/guides.ftl +++ b/Resources/Locale/en-US/nyanotrasen/guidebook/guides.ftl @@ -1 +1,3 @@ +guide-entry-altars-golemancy = Altars and Golemancy +guide-entry-psionics = Psionics guide-entry-reverse-engineering = Reverse Engineering diff --git a/Resources/Locale/en-US/nyanotrasen/job/job-description.ftl b/Resources/Locale/en-US/nyanotrasen/job/job-description.ftl index dbcd92a582..3b9bc86e6f 100644 --- a/Resources/Locale/en-US/nyanotrasen/job/job-description.ftl +++ b/Resources/Locale/en-US/nyanotrasen/job/job-description.ftl @@ -1,6 +1,6 @@ job-description-gladiator = Put on a combat spectacle for the crew. Fight for your freedom, glory, and honor. Currently available on Arena. job-description-guard = Keep track of prisoners and make sure they have their basic needs. job-description-mail-carrier = Deliver mail and other packages from and to logistics. Avoid dogs. -job-description-martialartist = Be honorable and disciplined, spar in the dojo, challenge security to CQC. Currently unavailable. -job-description-prisoner = Sit in prison. Gamble with your cellmates. Talk to the warden. Write your memoirs. Currently unavailable. +job-description-martialartist = Be honorable and disciplined, spar in the dojo, challenge security to CQC. Currently available on Shōkō. +job-description-prisoner = Sit in prison. Gamble with your cellmates. Talk to the warden. Write your memoirs. job-description-mantis = Solve mysteries from the nature of the universe to the meaning of life. Be the main person to deal with Psionic beings. diff --git a/Resources/Locale/en-US/nyanotrasen/reagents/meta/consumable/drink/drink.ftl b/Resources/Locale/en-US/nyanotrasen/reagents/meta/consumable/drink/drink.ftl index 94ec13877e..e9d04bd951 100644 --- a/Resources/Locale/en-US/nyanotrasen/reagents/meta/consumable/drink/drink.ftl +++ b/Resources/Locale/en-US/nyanotrasen/reagents/meta/consumable/drink/drink.ftl @@ -12,3 +12,6 @@ reagent-desc-the-martinez = The edgerunner legend. Remembered by a drink, Forgo reagent-name-holywater = holy water reagent-desc-holywater = Water blessed by some otherworldly powers. + +reagent-name-lean = lean +reagent-desc-lean = A disgusting mixture of soda, booze, and cough syrup. diff --git a/Resources/Locale/en-US/nyanotrasen/reagents/meta/consumable/food/ingredients.ftl b/Resources/Locale/en-US/nyanotrasen/reagents/meta/consumable/food/ingredients.ftl new file mode 100644 index 0000000000..eadf6dde20 --- /dev/null +++ b/Resources/Locale/en-US/nyanotrasen/reagents/meta/consumable/food/ingredients.ftl @@ -0,0 +1,2 @@ +reagent-name-nausium = nausium +reagent-desc-nausium = Sickening. diff --git a/Resources/Locale/en-US/nyanotrasen/reagents/psionic.ftl b/Resources/Locale/en-US/nyanotrasen/reagents/psionic.ftl index f1213fecf1..6743c66ada 100644 --- a/Resources/Locale/en-US/nyanotrasen/reagents/psionic.ftl +++ b/Resources/Locale/en-US/nyanotrasen/reagents/psionic.ftl @@ -3,3 +3,6 @@ psionic-regeneration-begin = {CAPITALIZE($entity)}'s eyes twitch under a wave of psionic-regeneration-essence-sweat = {CAPITALIZE($entity)} sweats profusely. psionic-regeneration-essence-veins = {CAPITALIZE($entity)}'s veins pulse. psionic-regeneration-essence-breath = {CAPITALIZE($entity)} breathes rapidly. + +reagent-name-prometheum = prometheum +reagent-desc-prometheum = A complex superdrug our bodies could produce if we could only unlock our potential. diff --git a/Resources/Locale/en-US/nyanotrasen/reagents/toxins.ftl b/Resources/Locale/en-US/nyanotrasen/reagents/toxins.ftl index 27ce8c7ae1..43e35c191c 100644 --- a/Resources/Locale/en-US/nyanotrasen/reagents/toxins.ftl +++ b/Resources/Locale/en-US/nyanotrasen/reagents/toxins.ftl @@ -3,3 +3,6 @@ reagent-desc-soulbreaker-toxin = An anti-psionic about 4 times as powerful as mi reagent-name-lotophagoi-oil = lotophagoi oil reagent-desc-lotophagoi-oil = A super potent drug that is much better at inducing psionics than normal hallucinogens, but with worse side effects. + +reagent-name-ectoplasm = ectoplasm +reagent-desc-ectoplasm = The physical component of semi-corporeal spirits. diff --git a/Resources/Locale/en-US/nyanotrasen/tools/tool-qualities.ftl b/Resources/Locale/en-US/nyanotrasen/tools/tool-qualities.ftl new file mode 100644 index 0000000000..c3c4e6ad2f --- /dev/null +++ b/Resources/Locale/en-US/nyanotrasen/tools/tool-qualities.ftl @@ -0,0 +1,2 @@ +tool-quality-digging-name = Digging +tool-quality-digging-tool-name = Shovel diff --git a/Resources/Locale/en-US/objectives/round-end.ftl b/Resources/Locale/en-US/objectives/round-end.ftl index 4c0e5884ca..129d809823 100644 --- a/Resources/Locale/en-US/objectives/round-end.ftl +++ b/Resources/Locale/en-US/objectives/round-end.ftl @@ -3,12 +3,16 @@ objectives-round-end-result = {$count -> *[other] There were {$count} {MAKEPLURAL($agent)}. } +objectives-round-end-result-in-custody = {$custody} out of {$count} {MAKEPLURAL($agent)} were in custody. + objectives-player-user-named = [color=White]{$name}[/color] ([color=gray]{$user}[/color]) objectives-player-user = [color=gray]{$user}[/color] objectives-player-named = [color=White]{$name}[/color] -objectives-no-objectives = {$title} was a {$agent}. -objectives-with-objectives = {$title} was a {$agent} who had the following objectives: +objectives-no-objectives = [bold][color=red]{$custody}[/color]{$title} was a {$agent}. +objectives-with-objectives = [bold][color=red]{$custody}[/color]{$title} was a {$agent} who had the following objectives: objectives-objective-success = {$objective} | [color={$markupColor}]Success![/color] objectives-objective-fail = {$objective} | [color={$markupColor}]Failure![/color] ({$progress}%) + +objectives-in-custody = | IN CUSTODY | \ No newline at end of file diff --git a/Resources/Locale/en-US/pacified/pacified.ftl b/Resources/Locale/en-US/pacified/pacified.ftl new file mode 100644 index 0000000000..4d45f13bd3 --- /dev/null +++ b/Resources/Locale/en-US/pacified/pacified.ftl @@ -0,0 +1,11 @@ + +## Messages shown to Pacified players when they try to do violence: + +# With projectiles: +pacified-cannot-throw = You can't bring yourself to throw { THE($projectile) }, that could hurt someone! +# With embedding projectiles: +pacified-cannot-throw-embed = No way you can throw { THE($projectile) }, that could get lodged inside someone! +# With liquid-spilling projectiles: +pacified-cannot-throw-spill = You can't possibly throw { THE($projectile) }, that could spill nasty stuff on someone! +# With bolas and snares: +pacified-cannot-throw-snare = You can't throw { THE($projectile) }, what if someone trips?! diff --git a/Resources/Locale/en-US/paper/book-salvage.ftl b/Resources/Locale/en-US/paper/book-salvage.ftl index 17a1791a6a..93209ff966 100644 --- a/Resources/Locale/en-US/paper/book-salvage.ftl +++ b/Resources/Locale/en-US/paper/book-salvage.ftl @@ -77,6 +77,42 @@ book-text-fishing = When I grow up, I want to be one of the harvesters of the sp - Sgt. John Baker Aclopoly +book-text-fishops = FISHOPS ADVANCED USER MANUAL FIRST EDITION + + ----------------------------------------------------------------------------- + + fishops (v.) + Summoning many carp on someone. + "I got fishopsed!" (said post revival as the subject died) + fishops (n.) + The act of war in which the majority of a nuclear task force's budget is put towards fishopsing the station. + Alternatively it can be used to refer to the operatives doing fishops. + "We are doing fishops." + "It's the dreaded fishops!" + + This manual will teach you the mechanics of both kinds of fishops. + + CHAPTER 1: The Old Man and the Fish + What is a carp? A carp is a space creature that only has one desire: to attack the enemy. Once it finds a suitable target, it will home in and viciously attack. The manner in which it attacks is fairly simple: it will move in, bite the target, then move back out. This is referred to as kiting. + This makes a single fish challenging to fight, let alone a group of them. A carp does not need food or water, it attacks for pleasure alone. Unfortunately it will not attack past critical condition, a single carp will refuse to finish off a target. Many carp however will, around 20 will instantly kill just about anything. + + CHAPTER 2: Under the Sea + Knowing what a carp is good and all, but how does one summon a carp on command? The dehydrated space carp, found rarely on wreckages in space or supplied by the syndicate to its agents and operatives. It is a simple thing: once water is sprayed or poured on it, it will turn into a real space carp. Slipping in a puddle of water will instantly hydrate all the dehydrated carp in your inventory, which can be lucrative for instant "fishbombing". + + CHAPTER 3: Best Friends Forever + Summoning a carp that attacks you is rarely useful, so there is a way to make them friendly to you. Before hydration, you stroke the dehydrated carp's head like petting a cat. Once hydrated, it will never attack you. This applies to any number of people that do it, so you can have a whole group of people that the carps are friendly towards. Before this was a thing operatives would remotely detonate literal carp bombs: a locker containing carp, a c4 to blow the locker open and a water foam grenade to hydrate the carp. Once at a safe distance, the c4 and grenade are triggered to unleash the carp. + + CHAPTER 4: Fish Petting Pipeline + Without an optimal pipeline, not everyone on a team will pet all the fish perfectly. This is where a fish petting pipeline comes in. Each member of the team is only allowed to pet fish in their own pipeline. After everyone has purchased carp, they are put in one large pile. The first member starts petting, putting the petted fish in a second pile. This repeats until there is a pile at the end which everyone has pet at some point. This pile can then be bagged for use. + + CHAPTER 5: Deployment + Fishbombs, slipping and other methods are powerful but require large setup. A much easier way to hydrate them is to have a bottle of water. Any bottle stores 100u of liquids so simply empty it and fill it from a sink. Once you see someone that should be attacked, or are in an area that should be secured from the enemy, simply pour a single unit of water onto each carp. A single bottle will have enough for 100 carp, so you can even take a drink if you get thirsty. + Each member in a fishops squad should carry a bottle and some fish, as there will be far more than just one member can carry. + + CHAPTER 6: Fish War + In the event of fish war there will be double the fish, more than could possibly be carried. A reinforcement or two will be required to carry the surplus fish. A fish war has never happened in recorded history, so it is currently purely theoretical. Its destructive power would rival several neutronium bombs. + + book-text-detective = CHAPTER 1: SMALL ADVENTURES IN A BIG STATION This station is filled with crime and grime... diff --git a/Resources/Locale/en-US/pda/pda-component.ftl b/Resources/Locale/en-US/pda/pda-component.ftl index 551ff29e55..85a3c94c41 100644 --- a/Resources/Locale/en-US/pda/pda-component.ftl +++ b/Resources/Locale/en-US/pda/pda-component.ftl @@ -24,6 +24,8 @@ pda-bound-user-interface-lock-uplink-description = Prevent anyone from accessing comp-pda-ui-menu-title = PDA +comp-pda-ui-footer = Personal Digital Assistant + comp-pda-ui-station = Station: [color=white]{$station}[/color] comp-pda-ui-station-alert-level = Alert Level: [color={ $color }]{ $level }[/color] diff --git a/Resources/Locale/en-US/prayers/prayers.ftl b/Resources/Locale/en-US/prayers/prayers.ftl index 1a8518bdd8..07713bc821 100644 --- a/Resources/Locale/en-US/prayers/prayers.ftl +++ b/Resources/Locale/en-US/prayers/prayers.ftl @@ -4,10 +4,12 @@ prayer-verbs-call = Call prayer-chat-notify-pray = PRAYER prayer-chat-notify-honkmother = HONKMOTHER prayer-chat-notify-centcom = CENTCOM +prayer-chat-notify-syndicate = SYNDICATE prayer-popup-subtle-default = You hear a voice in your head... prayer-popup-notify-honkmother-sent = You left a voicemail message for the Honkmother... prayer-popup-notify-centcom-sent = You left a voicemail message for Central Command... +prayer-popup-notify-syndicate-sent = You left a voicemail message for Syndicate High Command... prayer-popup-notify-pray-sent = Your message has been sent to the gods... prayer-popup-notify-pray-locked = You don't feel worthy enough... diff --git a/Resources/Locale/en-US/prototypes/access/accesses.ftl b/Resources/Locale/en-US/prototypes/access/accesses.ftl index 17f7a7fb05..901a4b77bb 100644 --- a/Resources/Locale/en-US/prototypes/access/accesses.ftl +++ b/Resources/Locale/en-US/prototypes/access/accesses.ftl @@ -19,18 +19,27 @@ id-card-access-level-chief-medical-officer = Chief Medical Officer id-card-access-level-medical = Medical id-card-access-level-chemistry = Chemistry id-card-access-level-paramedic = Paramedic +id-card-access-level-psychologist = Psychologist id-card-access-level-quartermaster = Logistics Officer id-card-access-level-cargo = Logistics id-card-access-level-salvage = Salvage id-card-access-level-bar = Bar +id-card-access-level-boxer = Boxer +id-card-access-level-clown = Clown id-card-access-level-kitchen = Kitchen id-card-access-level-hydroponics = Hydroponics id-card-access-level-service = Service id-card-access-level-janitor = Janitor +id-card-access-level-library = Library +id-card-access-level-mime = Mime +id-card-access-level-musician = Musician id-card-access-level-theatre = Theatre id-card-access-level-chapel = Chapel +id-card-access-level-lawyer = Lawyer +id-card-access-level-reporter = Reporter +id-card-access-level-zookeeper = Zookeeper id-card-access-level-maintenance = Maintenance @@ -38,3 +47,5 @@ id-card-access-level-external = External id-card-access-level-nuclear-operative = Nuclear Operative id-card-access-level-syndicate-agent = Syndicate Agent + +id-card-access-level-unused = You shouldn't see this diff --git a/Resources/Locale/en-US/prototypes/catalog/cargo/cargo-materials.ftl b/Resources/Locale/en-US/prototypes/catalog/cargo/cargo-materials.ftl index 802b71eda9..88e58b647e 100644 --- a/Resources/Locale/en-US/prototypes/catalog/cargo/cargo-materials.ftl +++ b/Resources/Locale/en-US/prototypes/catalog/cargo/cargo-materials.ftl @@ -19,6 +19,9 @@ ent-MaterialPlasma = { ent-CrateMaterialPlasma } ent-CardboardMaterial = { ent-CrateMaterialCardboard } .desc = { ent-CrateMaterialCardboard.desc } +ent-PaperMaterial = { ent-CrateMaterialPaper } + .desc = { ent-CrateMaterialPaper.desc } + ent-MaterialFuelTank = { ent-WeldingFuelTankFull } .desc = { ent-WeldingFuelTankFull.desc } diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/engineering-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/engineering-crates.ftl index 9c1c182497..61bcd424a2 100644 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/engineering-crates.ftl +++ b/Resources/Locale/en-US/prototypes/catalog/fills/crates/engineering-crates.ftl @@ -33,3 +33,9 @@ ent-CrateAirlockKit = Airlock kit ent-CrateEvaKit = EVA kit .desc = A set consisting of two prestigious EVA suits and helmets. + +ent-CrateRCDAmmo = RCD ammo crate + .desc = 3 RCD ammo, each restoring 5 charges. + +ent-CrateRCD = RCD crate + .desc = A crate containing a single Rapid Construction Device. diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/livestock-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/livestock-crates.ftl index 9742b83b34..2d223e9337 100644 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/livestock-crates.ftl +++ b/Resources/Locale/en-US/prototypes/catalog/fills/crates/livestock-crates.ftl @@ -19,6 +19,9 @@ ent-CrateNPCDuck = Duck crate ent-CrateNPCCorgi = Corgi crate .desc = A crate containing a single corgi. +ent-CrateNPCPuppyCorgi = Puppy Corgi crate + .desc = A crate containing a single puppy corgi. Awww. + ent-CrateNPCCow = Cow crate .desc = A crate containing a single cow. @@ -43,6 +46,9 @@ ent-CrateNPCParrot = Parrot crate ent-CrateNPCPenguin = Penguin crate .desc = A crate containing two penguins. +ent-CrateNPCMothroach = Crate of mothroaches + .desc = A crate containing six mothroaches. + ent-CrateNPCPig = Pig crate .desc = A crate containing a single pig. @@ -53,4 +59,4 @@ ent-CrateNPCLizard = Lizard crate .desc = A crate containing a lizard. ent-CrateNPCKangaroo = Kangaroo crate - .desc = A crate containing a kangaroo. \ No newline at end of file + .desc = A crate containing a kangaroo. diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/materials-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/materials-crates.ftl index 505220730f..c204215474 100644 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/materials-crates.ftl +++ b/Resources/Locale/en-US/prototypes/catalog/fills/crates/materials-crates.ftl @@ -21,3 +21,6 @@ ent-CrateMaterialPlasma = Solid plasma crate ent-CrateMaterialCardboard = Cardboard crate .desc = 60 pieces of cardboard. + +ent-CrateMaterialPaper = Paper crate + .desc = 90 sheets of paper. diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/medical-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/medical-crates.ftl index 6036bf557c..45bc73deae 100644 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/medical-crates.ftl +++ b/Resources/Locale/en-US/prototypes/catalog/fills/crates/medical-crates.ftl @@ -4,6 +4,9 @@ ent-CrateMedicalSupplies = Medical supplies crate ent-CrateChemistrySupplies = Chemistry supplies crate .desc = Basic chemistry supplies. +ent-CrateChemistryVials = Vial supply crate + .desc = Crate filled with a box of vials. + ent-CrateMindShieldImplants = MindShield implant crate .desc = Crate filled with 3 MindShield implants. diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/service-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/service-crates.ftl index 4eba21b79b..d44be5e979 100644 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/service-crates.ftl +++ b/Resources/Locale/en-US/prototypes/catalog/fills/crates/service-crates.ftl @@ -32,4 +32,7 @@ ent-CrateJanitorBiosuit = Janitor bio suit crate .desc = Contains 2 biohazard suits to ensure that no disease will distract you from cleaning. ent-CrateServiceTheatre = Theatrical performances crate - .desc = Contains a moth cloak, maid uniform, clown and mime attributes, and other performance charms. + .desc = Contains a moth cloak, barber scissors, maid uniform, clown and mime attributes, and other performance charms. + +ent-CrateJanitorExplosive = Janitorial bomb suit crate + .desc = Supplies a bomb suit for cleaning up any explosive compounds, buy one today! diff --git a/Resources/Locale/en-US/prototypes/entities/structures/storage/canisters/gas-canisters.ftl b/Resources/Locale/en-US/prototypes/entities/structures/storage/canisters/gas-canisters.ftl index 43358e3e6c..a07dda9676 100644 --- a/Resources/Locale/en-US/prototypes/entities/structures/storage/canisters/gas-canisters.ftl +++ b/Resources/Locale/en-US/prototypes/entities/structures/storage/canisters/gas-canisters.ftl @@ -34,8 +34,8 @@ ent-TritiumCanister = Tritium canister ent-WaterVaporCanister = Water vapor canister .desc = A canister that can contain any type of gas. This one is supposed to contain water vapor. It can be attached to connector ports using a wrench. -ent-MiasmaCanister = Miasma canister - .desc = A canister that can contain any type of gas. This one is supposed to contain miasma. It can be attached to connector ports using a wrench. +ent-AmmoniaCanister = Ammonia canister + .desc = A canister that can contain any type of gas. This one is supposed to contain ammonia. It can be attached to connector ports using a wrench. ent-NitrousOxideCanister = Nitrous oxide canister .desc = A canister that can contain any type of gas. This one is supposed to contain nitrous oxide. It can be attached to connector ports using a wrench. @@ -70,7 +70,7 @@ ent-TritiumCanisterBroken = { ent-GasCanisterBrokenBase } ent-WaterVaporCanisterBroken = { ent-GasCanisterBrokenBase } .desc = { ent-GasCanisterBrokenBase.desc } -ent-MiasmaCanisterBroken = { ent-GasCanisterBrokenBase } +ent-AmmoniaCanisterBroken = { ent-GasCanisterBrokenBase } .desc = { ent-GasCanisterBrokenBase.desc } ent-NitrousOxideCanisterBroken = { ent-GasCanisterBrokenBase } diff --git a/Resources/Locale/en-US/prototypes/entities/structures/storage/tanks/tanks.ftl b/Resources/Locale/en-US/prototypes/entities/structures/storage/tanks/tanks.ftl index 49ffcdae55..309d29ca43 100644 --- a/Resources/Locale/en-US/prototypes/entities/structures/storage/tanks/tanks.ftl +++ b/Resources/Locale/en-US/prototypes/entities/structures/storage/tanks/tanks.ftl @@ -14,7 +14,7 @@ ent-WaterTankFull = { ent-WaterTank } .desc = { ent-WaterTank.desc } ent-WaterCooler = water cooler - .desc = Seems like a good place to stand and waste time. + .desc = Seems like a good place to stand and waste time. It has a stock of paper cups on the side. ent-WaterTankHighCapacity = high-capacity water tank .desc = A highly pressurized water tank made to hold gargantuan amounts of water. diff --git a/Resources/Locale/en-US/reagents/fresium.ftl b/Resources/Locale/en-US/reagents/fresium.ftl new file mode 100644 index 0000000000..f73865d6a1 --- /dev/null +++ b/Resources/Locale/en-US/reagents/fresium.ftl @@ -0,0 +1,3 @@ +fresium-effect-freeze-insides = You feel your insides freezing up! +fresium-effect-frozen = Your legs have completely frozen up! +fresium-effect-slow = Your legs buckle and struggle to move! diff --git a/Resources/Locale/en-US/reagents/generic.ftl b/Resources/Locale/en-US/reagents/generic.ftl index d41b3ff585..5d4f754ef8 100644 --- a/Resources/Locale/en-US/reagents/generic.ftl +++ b/Resources/Locale/en-US/reagents/generic.ftl @@ -1,4 +1,4 @@ -### Messages that can be utilized by multiple reagents. +### Messages that can be utilized by multiple reagents. generic-reagent-effect-burning-insides = You feel your insides burning up! generic-reagent-effect-burning-eyes = Your eyes begin to slightly burn. @@ -7,3 +7,5 @@ generic-reagent-effect-tearing-up = Your eyes start to tear up. generic-reagent-effect-nauseous = You feel nauseous. generic-reagent-effect-parched = You feel parched. generic-reagent-effect-thirsty = You feel thirsty. +generic-reagent-effect-sick = You feel sick after consuming that... +generic-reagent-effect-slicing-insides = You feel an incredibly sharp pain in your gut! diff --git a/Resources/Locale/en-US/reagents/meta/biological.ftl b/Resources/Locale/en-US/reagents/meta/biological.ftl index 48f6604ef1..2efb3eba4c 100644 --- a/Resources/Locale/en-US/reagents/meta/biological.ftl +++ b/Resources/Locale/en-US/reagents/meta/biological.ftl @@ -4,8 +4,8 @@ reagent-desc-blood = I hope this is ketchup. reagent-name-slime = slime reagent-desc-slime = You thought this was gradient blood at first, but you were mistaken. -reagent-name-spider-blood = blue blood -reagent-desc-spider-blood = Doesn't taste like blueberry juice. +reagent-name-hemocyanin-blood = blue blood +reagent-desc-hemocyanin-blood = Contains copper as opposed to iron which gives it a distinct blue color. reagent-name-zombie-blood = zombie blood reagent-desc-zombie-blood = Would not advise eating. Can be used to create an inoculation against the infection. @@ -17,4 +17,4 @@ reagent-name-fat = fat reagent-desc-fat = No matter how it was obtained, its application is important. reagent-name-vomit = vomit -reagent-desc-vomit = You can see a few chunks of someones last meal in it. +reagent-desc-vomit = You can see a few chunks of someone's last meal in it. \ No newline at end of file diff --git a/Resources/Locale/en-US/reagents/meta/chemicals.ftl b/Resources/Locale/en-US/reagents/meta/chemicals.ftl index 976c122f8a..17866c7641 100644 --- a/Resources/Locale/en-US/reagents/meta/chemicals.ftl +++ b/Resources/Locale/en-US/reagents/meta/chemicals.ftl @@ -4,8 +4,14 @@ reagent-desc-acetone = A slick, slightly carcinogenic liquid. Has a multitude of reagent-name-phenol = phenol reagent-desc-phenol = An aromatic ring of carbon with a hydroxyl group. A useful precursor to some medicines, but has no healing properties on its own. -reagent-name-sodium-carbonate = Sodium Carbonate +reagent-name-sodium-carbonate = sodium carbonate reagent-desc-sodium-carbonate = A white, odorless, water-soluble salt that yields an alkaline solution in water. Also known as soda ash. reagent-name-artifexium = artifexium reagent-desc-artifexium = A lavender mixture of microscopic artifact fragments and a strong acid. It has the ability to activate artifacts. + +reagent-name-sodium-polyacrylate = sodium polyacrylate +reagent-desc-sodium-polyacrylate = A super-absorbent polymer with assorted industrial uses. + +reagent-name-cellulose = cellulose fibers +reagent-desc-cellulose = A crystaline polydextrose polymer, plants swear by this stuff. diff --git a/Resources/Locale/en-US/reagents/meta/cleaning.ftl b/Resources/Locale/en-US/reagents/meta/cleaning.ftl index 4c1ec87ddd..e770594956 100644 --- a/Resources/Locale/en-US/reagents/meta/cleaning.ftl +++ b/Resources/Locale/en-US/reagents/meta/cleaning.ftl @@ -4,6 +4,12 @@ reagent-desc-bleach = Heavy duty cleaner that can clean tiles the same as Space reagent-name-space-cleaner = space cleaner reagent-desc-space-cleaner = This is able to clean almost all surfaces of almost anything that may dirty them. The janitor is likely to appreciate refills. +reagent-name-soap = soap +reagent-desc-soap = Soap can be used to make soapy water. + +reagent-name-soapy-water = soapy water +reagent-desc-soapy-water = It's just soap and water. Good for cleaning gunk off of surfaces and also slippier than regular water. + reagent-name-space-lube = space lube reagent-desc-space-lube = Space Lube is a high performance lubricant intended for maintenance of extremely complex mechanical equipment (and certainly not used to make people slip). diff --git a/Resources/Locale/en-US/reagents/meta/consumable/drink/drinks.ftl b/Resources/Locale/en-US/reagents/meta/consumable/drink/drinks.ftl index 5153d7f9a0..00091ad9fe 100644 --- a/Resources/Locale/en-US/reagents/meta/consumable/drink/drinks.ftl +++ b/Resources/Locale/en-US/reagents/meta/consumable/drink/drinks.ftl @@ -46,6 +46,9 @@ reagent-desc-nothing = Absolutely nothing. reagent-name-nuclear-cola = nuclear cola reagent-desc-nuclear-cola = Cola, cola never changes. +reagent-name-hot-cocoa = hot cocoa +reagent-desc-hot-cocoa = Smells like the holidays! + reagent-name-soda-water = soda water reagent-desc-soda-water = A container of club soda. Why not make a scotch and soda? @@ -80,4 +83,4 @@ reagent-name-the-martinez = The Martinez reagent-desc-the-martinez = The edgerunner legend. Remembered by a drink, forgotten by a drunk. reagent-name-white-gilgamesh = white gilgamesh -reagent-desc-white-gilgamesh = A sickening mixture of milk and beer. Makes you feel like you're made of wood. \ No newline at end of file +reagent-desc-white-gilgamesh = A sickening mixture of milk and beer. Makes you feel like you're made of wood. diff --git a/Resources/Locale/en-US/reagents/meta/consumable/food/food.ftl b/Resources/Locale/en-US/reagents/meta/consumable/food/food.ftl index 01c716787e..85d46ff6c8 100644 --- a/Resources/Locale/en-US/reagents/meta/consumable/food/food.ftl +++ b/Resources/Locale/en-US/reagents/meta/consumable/food/food.ftl @@ -13,5 +13,8 @@ reagent-desc-protein = Found in certain meals, good for bodily health. reagent-name-cocoapowder = сocoa powder reagent-desc-cocoapowder = From the best varieties of cocoa beans +reagent-name-butter = butter +reagent-desc-butter = You can believe it! + reagent-name-pumpkin-flesh = pumpkin flesh -reagent-desc-pumpkin-flesh = The mushy, sweet remains of a pumpkin. \ No newline at end of file +reagent-desc-pumpkin-flesh = The mushy, sweet remains of a pumpkin. diff --git a/Resources/Locale/en-US/reagents/meta/consumable/food/ingredients.ftl b/Resources/Locale/en-US/reagents/meta/consumable/food/ingredients.ftl index 445e0b3114..4f5c5ae782 100644 --- a/Resources/Locale/en-US/reagents/meta/consumable/food/ingredients.ftl +++ b/Resources/Locale/en-US/reagents/meta/consumable/food/ingredients.ftl @@ -10,8 +10,11 @@ reagent-desc-oats = Used for a variety of tasty purposes. reagent-name-enzyme = universal enzyme reagent-desc-enzyme = Used in cooking various dishes. -reagent-name-egg = egg -reagent-desc-egg = Used for baking. +reagent-name-egg = cooked egg +reagent-desc-egg = Cooked chicken embryo, delicious. + +reagent-name-raw-egg = raw egg +reagent-desc-raw-egg = Used for baking. reagent-name-sugar = sugar reagent-desc-sugar = Tasty spacey sugar! diff --git a/Resources/Locale/en-US/reagents/meta/fun.ftl b/Resources/Locale/en-US/reagents/meta/fun.ftl index e62550290f..510d9d084a 100644 --- a/Resources/Locale/en-US/reagents/meta/fun.ftl +++ b/Resources/Locale/en-US/reagents/meta/fun.ftl @@ -4,14 +4,20 @@ reagent-desc-carpetium = A mystical chemical, usually outsourced from the Clown reagent-name-fiber = fiber reagent-desc-fiber = A raw material, usually extracted from wool or other fabric products. -reagent-name-buzzochloric-bees = Buzzochloric Bees +reagent-name-buzzochloric-bees = buzzochloric bees reagent-desc-buzzochloric-bees = Liquid bees. Oh god it's LIQUID BEES NO- -reagent-name-ground-bee = Ground Bee +reagent-name-ground-bee = ground Bee reagent-desc-ground-bee = Bee grounds. Gross. -reagent-name-saxoite = Saxoite +reagent-name-saxoite = saxoite reagent-desc-saxoite = Smells like jazz. -reagent-name-licoxide = Licoxide +reagent-name-licoxide = licoxide reagent-desc-licoxide = A synthetic battery acid. It looks... electrifying. + +reagent-name-razorium = razorium +reagent-desc-razorium = A strange, non-newtonian chemical. It is produced when two conflicting brute medications are combined. When force is applied to it, it temporarily hardens creating millions of tiny, sharp edges. Very painful. + +reagent-name-fresium = Fresium +reagent-desc-fresium = A mysterious compound that slows the vibration of atoms and molecules... somehow. In layman's terms, it makes things cold... REALLY cold. Can cause long-lasting movement issues if ingested. diff --git a/Resources/Locale/en-US/reagents/meta/gases.ftl b/Resources/Locale/en-US/reagents/meta/gases.ftl index f003da6d2d..5460757be7 100644 --- a/Resources/Locale/en-US/reagents/meta/gases.ftl +++ b/Resources/Locale/en-US/reagents/meta/gases.ftl @@ -13,9 +13,6 @@ reagent-desc-carbon-dioxide = You have genuinely no idea what this is. reagent-name-nitrogen = nitrogen reagent-desc-nitrogen = A colorless, odorless unreactive gas. Highly stable. -reagent-name-miasma = miasma -reagent-desc-miasma = Uh oh, stinky! - reagent-name-nitrous-oxide = nitrous oxide reagent-desc-nitrous-oxide = You know how everything seems funnier when you're tired? Well... diff --git a/Resources/Locale/en-US/reagents/meta/medicine.ftl b/Resources/Locale/en-US/reagents/meta/medicine.ftl index 15b4572ea1..2587b7ad86 100644 --- a/Resources/Locale/en-US/reagents/meta/medicine.ftl +++ b/Resources/Locale/en-US/reagents/meta/medicine.ftl @@ -26,10 +26,10 @@ reagent-name-dexalin = dexalin reagent-desc-dexalin = Used for treating minor oxygen deprivation. A required reagent for dexalin plus. reagent-name-dexalin-plus = dexalin plus -reagent-desc-dexalin-plus = Used in treatment of extreme cases of oxygen deprivation and bloodloss. Flushes lexorin out the blood stream. +reagent-desc-dexalin-plus = Used in treatment of extreme cases of oxygen deprivation and bloodloss. Flushes heartbreaker toxin out of the blood stream. reagent-name-epinephrine = epinephrine -reagent-desc-epinephrine = An effective stabilizing chemical used to keep a critical person from dying to asphyxiation while patching up minor damage during crit. Flushes lexorin out the blood stream at the cost of more epinephrine, but may add histamine. Helps reduce stun time. Commonly found in the form of emergency medipens. +reagent-desc-epinephrine = An effective stabilizing chemical used to keep a critical person from dying to asphyxiation while patching up minor damage during crit. Flushes heartbreaker toxin out the blood stream at the cost of more epinephrine, but may add histamine. Helps reduce stun time. Commonly found in the form of emergency medipens. reagent-name-hyronalin = hyronalin reagent-desc-hyronalin = A weak treatment for radiation damage. A precursor to arithrazine and phalanximine. Can cause vomitting. @@ -105,3 +105,12 @@ reagent-desc-sigynate = A thick pink syrup useful for neutralizing acids and soo reagent-name-saline = saline reagent-desc-saline = "A mixture of salt and water. Commonly used to treat dehydration or low fluid presence in blood." + +reagent-name-lacerinol = lacerinol +reagent-desc-lacerinol = A fairly unreactive chemical that boosts collagen sythesis to incredible levels, healing slash trauma. + +reagent-name-puncturase = puncturase +reagent-desc-puncturase = A fizzy chemical that helps rebuild trauma caused by piercing damage, leaving a slight amount of tissue damage behind. + +reagent-name-bruizine = bruizine +reagent-desc-bruizine = Originally developed as a cough medicine, it turns out this chemical is wildly effective at treating blunt force trauma. diff --git a/Resources/Locale/en-US/reagents/meta/narcotics.ftl b/Resources/Locale/en-US/reagents/meta/narcotics.ftl index e4b905bd3e..ea115bf962 100644 --- a/Resources/Locale/en-US/reagents/meta/narcotics.ftl +++ b/Resources/Locale/en-US/reagents/meta/narcotics.ftl @@ -16,7 +16,10 @@ reagent-desc-thc = The main psychoactive compound in cannabis. reagent-name-thc-oil = THC oil reagent-desc-thc-oil = Pure THC oil, extracted from the leaves of the cannabis plant. Much stronger than its natural form and can be used to numb chronic pain in patients. -reagent-name-nicotine = Nicotine +reagent-name-bananadine = bananadine +reagent-desc-bananadine = A mild psychedelic that is found in small traces in banana peels. + +reagent-name-nicotine = nicotine reagent-desc-nicotine = Dangerous and highly addictive, but that's what the propaganda says. reagent-name-impedrezene = impedrezene @@ -33,3 +36,6 @@ reagent-desc-mute-toxin = A thick chemical that coats the vocal cords, making th reagent-name-norepinephric-acid = norepinephric acid reagent-desc-norepinephric-acid = A smooth chemical that blocks the optical receptors, rendering the user blind during metabolization. + +reagent-name-tear-gas = tear gas +reagent-desc-tear-gas = A chemical that causes severe irritation and crying, commonly used in riot control. diff --git a/Resources/Locale/en-US/reagents/meta/physical-desc.ftl b/Resources/Locale/en-US/reagents/meta/physical-desc.ftl index 9093e54810..b62103f67b 100644 --- a/Resources/Locale/en-US/reagents/meta/physical-desc.ftl +++ b/Resources/Locale/en-US/reagents/meta/physical-desc.ftl @@ -63,6 +63,7 @@ reagent-physical-desc-sticky = sticky reagent-physical-desc-bubbly = bubbly reagent-physical-desc-rocky = rocky reagent-physical-desc-lemony-fresh = lemony fresh +reagent-physical-desc-soapy = soapy reagent-physical-desc-crisp = crisp reagent-physical-desc-citric = citric reagent-physical-desc-acidic = acidic @@ -85,6 +86,10 @@ reagent-physical-desc-volatile = volatile reagent-physical-desc-inky = inky reagent-physical-desc-enigmatic = enigmatic reagent-physical-desc-exotic-smelling = exotic smelling +reagent-physical-desc-ethereal = ethereal +reagent-physical-desc-glittery = glittery reagent-physical-desc-energizing = energizing reagent-physical-desc-exhilarating = exhilarating reagent-physical-desc-vibrant = vibrant +reagent-physical-desc-fluffy = fluffy +reagent-physical-desc-reflective = reflective diff --git a/Resources/Locale/en-US/reagents/meta/toxins.ftl b/Resources/Locale/en-US/reagents/meta/toxins.ftl index 370e85d0ca..9709c17464 100644 --- a/Resources/Locale/en-US/reagents/meta/toxins.ftl +++ b/Resources/Locale/en-US/reagents/meta/toxins.ftl @@ -66,3 +66,9 @@ reagent-desc-lead = A slow-acting but incredibly lethal toxin found in steel, al reagent-name-bungotoxin = bungotoxin reagent-desc-bungotoxin = A moderately slow-acting poison found within the pit of the bungo fruit. + +reagent-name-vestine = vestine +reagent-desc-vestine = Has an adverse reaction within the body causing major jittering. While not particularly useful on it's own, it can be used to produce a small variety of chemicals. + +reagent-name-tazinide = tazinide +reagent-desc-tazinide = A highly dangerous metallic mixture which can interfere with most movement through an electrifying current. diff --git a/Resources/Locale/en-US/research/components/research-console-component.ftl b/Resources/Locale/en-US/research/components/research-console-component.ftl index 196983efcd..33070480e5 100644 --- a/Resources/Locale/en-US/research/components/research-console-component.ftl +++ b/Resources/Locale/en-US/research/components/research-console-component.ftl @@ -18,3 +18,4 @@ research-console-prereqs-list-start = Requires: research-console-prereqs-list-entry = - [color=orchid]{$text}[/color] research-console-no-access-popup = No access! +research-console-unlock-technology-radio-broadcast = Unlocked [bold]{$technology}[/bold] for [bold]{$amount}[/bold] research. diff --git a/Resources/Locale/en-US/research/technologies.ftl b/Resources/Locale/en-US/research/technologies.ftl index cb4f30de6a..52f0fa34d2 100644 --- a/Resources/Locale/en-US/research/technologies.ftl +++ b/Resources/Locale/en-US/research/technologies.ftl @@ -12,13 +12,13 @@ research-technology-compact-power = Compact Power research-technology-industrial-engineering = Industrial Engineering research-technology-power-generation = Power Generation research-technology-atmospheric-tech = Atmospherics -research-technology-rapid-construction = Rapid Construction research-technology-shuttlecraft = Shuttlecraft research-technology-ripley-aplu = Ripley APLU research-technology-advanced-atmospherics = Advanced Atmospherics research-technology-advanced-tools = Advanced Tools research-technology-super-powercells = Super Powercells research-technology-bluespace-storage = Bluespace Storage +research-technology-portable-fission = Portable Fission research-technology-chemistry = Chemistry research-technology-surgical-tools = Surgical Tools @@ -33,6 +33,7 @@ research-technology-cloning = Cloning research-technology-salvage-weapons = Salvage Weapons research-technology-draconic-munitions = Draconic Munitions +research-technology-uranium-munitions = Uranium Munitions research-technology-explosive-technology = Explosive Technology research-technology-weaponized-laser-manipulation = Weaponized Laser Manipulation research-technology-nonlethal-ammunition = Nonlethal Ammunition @@ -40,7 +41,6 @@ research-technology-practice-ammunition = Practice Ammunition research-technology-concentrated-laser-weaponry = Concentrated Laser Weaponry research-technology-wave-particle-harnessing = Wave Particle Harnessing research-technology-advanced-riot-control = Advanced Riot Control -research-technology-handheld-electrical-propulsion = Handheld Electrical Propulsion research-technology-portable-microfusion-weaponry = Portable Microfusion Weaponry research-technology-basic-robotics = Basic Robotics @@ -52,7 +52,7 @@ research-technology-advanced-parts = Advanced Parts research-technology-grappling = Grappling research-technology-abnormal-artifact-manipulation = Abnormal Artifact Manipulation research-technology-gravity-manipulation = Gravity Manipulation -research-technology-mobile-anomaly-tech = Mobile Anomaly Tech +research-technology-advanced-anomaly-research = Advanced Anomaly Research research-technology-rped = Rapid Part Exchange research-technology-super-parts = Super Parts @@ -63,9 +63,11 @@ research-technology-critter-mechs = Critter Mechs research-technology-food-service = Food Service research-technology-advanced-entertainment = Advanced Entertainment research-technology-audio-visual-communication = A/V Communication +research-technology-faux-astro-tiles = Faux Astro-Tiles research-technology-robotic-cleanliness = Robotic Cleanliness research-technology-advanced-cleaning = Advanced Cleaning research-technology-meat-manipulation = Meat Manipulation research-technology-honk-mech = H.O.N.K. Mech research-technology-advanced-spray = Advanced Spray research-technology-bluespace-cargo-transport = Bluespace Cargo Transport +research-technology-quantum-fiber-weaving = Quantum Fiber Weaving diff --git a/Resources/Locale/en-US/seeds/seeds.ftl b/Resources/Locale/en-US/seeds/seeds.ftl index 890d292660..f4c136e295 100644 --- a/Resources/Locale/en-US/seeds/seeds.ftl +++ b/Resources/Locale/en-US/seeds/seeds.ftl @@ -19,6 +19,8 @@ seeds-garlic-name = garlic head seeds-garlic-display-name = garlic heads seeds-lemon-name = lemon seeds-lemon-display-name = lemon trees +seeds-lemoon-name = lemoon +seeds-lemoon-display-name = lemoon trees seeds-lime-name = lime seeds-lime-display-name = lime trees seeds-orange-name = orange @@ -101,3 +103,5 @@ seeds-pea-name = pea seeds-pea-display-name = pea vines seeds-pumpkin-name = pumpkin seeds-pumpkin-display-name = pumpkins +seeds-cotton-name = cotton +seeds-cotton-display-name = cotton plant diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/misc/paper.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/misc/paper.ftl new file mode 100644 index 0000000000..e07620b95f --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/misc/paper.ftl @@ -0,0 +1,2 @@ +ent-StationGoalPaper = station goal centcomm message + .desc = It looks like you have a lot of work to do. diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl index b85fd29c9d..184fa11a20 100644 --- a/Resources/Locale/en-US/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/store/uplink-catalog.ftl @@ -28,11 +28,14 @@ uplink-gloves-north-star-desc = A pair of gloves that reduce your punching coold # Explosives uplink-explosive-grenade-name = Explosive Grenade -uplink-explosive-grenade-desc = A simplistic grenade with a ten-second fuse that is geared towards injuring personnel. Causes minimal hull damage. +uplink-explosive-grenade-desc = A simplistic grenade with a three-and-a-half-second long fuse that is geared towards injuring personnel. Causes minimal hull damage. uplink-flash-grenade-name = Flashbang uplink-flash-grenade-desc = A standard-issue flashbang, capable of blinding and slowing down anyone without proper protection. This, of course, includes you; make sure you're properly equipped before using it. +uplink-smoke-grenade-name = Smoke Grenade +uplink-smoke-grenade-desc = A grenade that releases a huge cloud of smoke, perfect for killing someone in the shadows or making a sneaky getaway. + uplink-mini-bomb-name = Minibomb uplink-mini-bomb-desc = A low-yield, high-impact precision sabotage explosive with a five-second long fuse. Perfect for quickly destroying a machine, dead body, or whatever else needs to go. @@ -63,6 +66,15 @@ uplink-exploding-pen-desc = A class IV explosive device contained within a stand uplink-exploding-syndicate-bomb-name = Syndicate Bomb uplink-exploding-syndicate-bomb-desc = A big, anchored bomb that can create a huge explosion if not defused in time. Useful as a distraction. Has an adjustable timer with a minimum setting of 120 seconds. +uplink-cluster-grenade-name = Cluster Grenade +uplink-cluster-grenade-desc = Three explosive grenades bundled together, the grenades get launched after the 3.5 second timer runs out. + +uplink-incendiary-grenade-name = Incendiary Grenade +uplink-incendiary-grenade-desc = Releases a spray of incendiary fragments, igniting anyone near the detonation area. + +uplink-shrapnel-grenade-name = Shrapnel Grenade +uplink-shrapnel-grenade-desc = Launches a spray of sharp fragments dealing great damage against unarmored targets. + # Ammo uplink-pistol-magazine-name = Pistol Magazine (.35 auto) uplink-pistol-magazine-desc = Pistol magazine with 10 catridges. Compatible with the Viper. @@ -138,12 +150,11 @@ uplink-freedom-implanter-name = Freedom Implanter uplink-freedom-implanter-desc = Get away from those nasty sec officers with this three use implant! uplink-dna-scrambler-implanter-name = DNA Scrambler Implanter -uplink-dna-scrambler-implanter-desc = A single use implant that can be activated to modify your DNA and give you a completely new look, also has the function of undoing the change. Unable to scramble already scrambled DNA. +uplink-dna-scrambler-implanter-desc = A single use implant that can be activated to modify your DNA and give you a completely new look. uplink-emp-implanter-name = EMP Implanter uplink-emp-implanter-desc = Detonates a small EMP pulse on activation that drains nearby electronics of their power, can be used three times before the internal battery runs out. - uplink-macro-bomb-implanter-name = Macro Bomb Implanter uplink-macro-bomb-implanter-desc = Inject this and on death you'll create a large explosion. Huge team casualty cost, use at own risk. Replaces internal micro bomb. @@ -153,10 +164,19 @@ uplink-uplink-implanter-desc = Stealthily order equipment without the need for a uplink-deathrattle-implant-name = Box Of Deathrattle Implants uplink-deathrattle-implant-desc = A box containing enough deathrattle implants for the whole squad. Relays a message containing your position to the syndicate channel when you go into a critical state or die. +uplink-death-acidifier-implant-name = Death Acidifier Implant +uplink-death-acidifier-implant-desc = Completely melts the user and their equipment on use or death. + +uplink-micro-bomb-implanter-name = Micro Bomb Implanter +uplink-micro-bomb-implanter-desc = Explode on death or manual activation with this implant. Destroys the body with all equipment. + # Bundles uplink-emp-kit-name = Electrical Disruptor Kit uplink-emp-kit-desc = The ultimate reversal on energy-based weaponry: Disables disablers, stuns stunbatons, discharges laser guns! Contains 3 EMP grenades and an EMP implanter. Note: Does not disrupt actual firearms. +uplink-chemistry-kit-name = Chemical Synthesis Kit +uplink-chemistry-kit-desc = A starter kit for the aspiring chemist, includes toxin and vestine for all your criminal needs! + uplink-meds-bundle-name = Medical Bundle uplink-meds-bundle-desc = All you need to get your comrades back in the fight: mainly a combat medkit, a defibrillator and three combat medipens. @@ -234,6 +254,9 @@ uplink-proximity-mine-desc = A mine disguised as a wet floor sign. uplink-disposable-turret-name = Disposable Ballistic Turret uplink-disposable-turret-desc = Looks and functions like a normal electrical toolbox. Upon hitting the toolbox it will transform into a ballistic turret, theoretically shooting at anyone except members of the syndicate. Can be turned back into a toolbox using a screwdriver and repaired using a wrench. +uplink-cluster-banana-peel-name = Cluster Banana +uplink-cluster-banana-peel-desc = Splits into 6 explosive banana peels after being thrown, the peels detonate automatically after 20 seconds if nobody slips on them. + # Armor uplink-chameleon-name = Chameleon Kit uplink-chameleon-desc = A backpack full of items that contain chameleon technology allowing you to disguise as pretty much anything on the station, and more! @@ -261,7 +284,7 @@ uplink-clothing-outer-hardsuit-juggernaut-desc = Hyper resilient armor made of m # Misc uplink-cyberpen-name = Cybersun Pen -uplink-cyberpen-desc = Cybersun's legal department pen. Smells vaguely of hard-light and war profiteering. +uplink-cyberpen-desc = Cybersun's legal department pen, invaluable for forging documents and escaping prisons. Smells vaguely of hard-light and war profiteering. uplink-decoy-disk-name = Decoy Nuclear Disk uplink-decoy-disk-desc = A piece of plastic with a lenticular printing, made to look like a nuclear auth disk. @@ -281,15 +304,15 @@ uplink-soap-desc = An untrustworthy bar of soap. Smells of fear. uplink-ultrabright-lantern-name = Extra-Bright Lantern uplink-ultrabright-lantern-desc = It can be used to blind people like a flash. -uplink-nocturine-chemistry-bottle-name = Nocturine Bottle -uplink-nocturine-chemistry-bottle-desc = A chemical that makes it very hard for your target to stand up. - uplink-combat-medkit-name = Combat Medical Kit uplink-combat-medkit-desc = A medkit made for fixing combat injuries. uplink-combat-medipen-name = Combat Medipen uplink-combat-medipen-desc = A single-use medipen containing chemicals that regenerate most types of damage. +uplink-nocturine-chemistry-bottle-name = Nocturine Bottle +uplink-nocturine-chemistry-bottle-desc = A chemical that makes it very hard for your target to stand up. + uplink-stimpack-name = Stimpack uplink-stimpack-desc = The legendary chemical produced by Donk Co. for the Syndicate. Injecting yourself with this will increase your run speed and let you recover from stuns faster for 30 seconds. @@ -302,6 +325,9 @@ uplink-syndicate-segway-crate-desc = Be an enemy of the corporation, in style! uplink-syndicate-sponge-box-name = Syndicate Sponge Box uplink-syndicate-sponge-box-desc = A box containing 6 syndicate sponges disguised as monkey cubes, these cubes turn into a variety of angry wildlife after coming into contact with water. +uplink-slipocalypse-clustersoap-name = Slipocalypse Clustersoap +uplink-slipocalypse-clustersoap-desc = Scatters arounds small pieces of syndicate-brand soap after being thrown, these pieces of soap evaporate after 60 seconds. + # Pointless uplink-revolver-cap-gun-name = Cap Gun uplink-revolver-cap-gun-desc = Looks almost like the real thing! Ages 8 and up. @@ -347,3 +373,6 @@ uplink-syndicate-pai-desc = A Syndicate variant of the pAI with access to the Sy uplink-bribe-name = Lobbying Bundle uplink-bribe-desc = A heartfelt gift that can help you sway someone's opinion. Real or counterfeit? Yes. + +uplink-hypodart-name = Hypodart +uplink-hypodart-desc = A seemingly unremarkable dart with an enlarged reservoir for chemicals. It can store up to 7u reagents in itself, and instantly inject when it hits the target. Starts empty. \ No newline at end of file diff --git a/Resources/Locale/en-US/tiles/tiles.ftl b/Resources/Locale/en-US/tiles/tiles.ftl index 508c3378e1..293b6cd7fa 100644 --- a/Resources/Locale/en-US/tiles/tiles.ftl +++ b/Resources/Locale/en-US/tiles/tiles.ftl @@ -44,8 +44,12 @@ tiles-elevator-shaft = elevator shaft tiles-diamond-plate-floor = diamond plate floor tiles-rock-floor = rock floor tiles-blue-tile = blue tile +tiles-mining-tile = mining tile +tiles-mining-dark-tile = dark mining tile +tiles-mining-light-tile = light mining tile tiles-freezer = freezer -tiles-showroom-floor = showroom floor +tiles-showroom-floor = showroom +tiles-lime-floor = lime floor tiles-hydro-floor = hydro floor tiles-bar-floor = bar floor tiles-clown-floor = clown floor @@ -110,4 +114,6 @@ tiles-wood3 = wood broken floor tiles-hull = exterior hull plating tiles-hull-reinforced = exterior reinforced hull plating tiles-web = web tile -tiles-chromite = chromite \ No newline at end of file +tiles-chromite = chromite +tiles-astro-grass = astro-grass +tiles-astro-ice = astro-ice diff --git a/Resources/Locale/en-US/ui/navmap.ftl b/Resources/Locale/en-US/ui/navmap.ftl new file mode 100644 index 0000000000..e600e7a1f2 --- /dev/null +++ b/Resources/Locale/en-US/ui/navmap.ftl @@ -0,0 +1,3 @@ +navmap-zoom = Zoom: {$value}% +navmap-recenter = Recenter +navmap-toggle-beacons = Show departments \ No newline at end of file diff --git a/Resources/Locale/en-US/weapons/ranged/gun.ftl b/Resources/Locale/en-US/weapons/ranged/gun.ftl index fe60f3eed1..3fbf5f77e7 100644 --- a/Resources/Locale/en-US/weapons/ranged/gun.ftl +++ b/Resources/Locale/en-US/weapons/ranged/gun.ftl @@ -6,6 +6,7 @@ gun-selected-mode = Selected {$mode} gun-disabled = You can't use guns! gun-clumsy = The gun blows up in your face! gun-set-fire-mode = Set to {$mode} +gun-component-wrong-ammo = Wrong ammo! # SelectiveFire gun-SemiAuto = semi-auto diff --git a/Resources/Locale/en-US/wires/wire-names.ftl b/Resources/Locale/en-US/wires/wire-names.ftl index 04bbca104e..4a94dc9ac6 100644 --- a/Resources/Locale/en-US/wires/wire-names.ftl +++ b/Resources/Locale/en-US/wires/wire-names.ftl @@ -3,9 +3,11 @@ wires-board-name-default = Wires wires-board-name-booze = BoozeDispenser wires-board-name-soda = SodaDispenser wires-board-name-thermomachine = Thermomachine +wires-board-name-condenser = Condenser wires-board-name-pa = Mk2 Particle Accelerator wires-board-name-highsec = HighSec Control wires-board-name-vessel = Vessel +wires-board-name-crusher = Crusher wires-board-name-smes = SMES wires-board-name-substation = Substation wires-board-name-apc = APC diff --git a/Resources/Locale/en-US/xenoarchaeology/artifact-crusher.ftl b/Resources/Locale/en-US/xenoarchaeology/artifact-crusher.ftl new file mode 100644 index 0000000000..d16918bb95 --- /dev/null +++ b/Resources/Locale/en-US/xenoarchaeology/artifact-crusher.ftl @@ -0,0 +1 @@ +artifact-crusher-verb-start-crushing = Start crushing diff --git a/Resources/Locale/en-US/xenoarchaeology/artifact-hints.ftl b/Resources/Locale/en-US/xenoarchaeology/artifact-hints.ftl index 3b63271996..960a84e746 100644 --- a/Resources/Locale/en-US/xenoarchaeology/artifact-hints.ftl +++ b/Resources/Locale/en-US/xenoarchaeology/artifact-hints.ftl @@ -19,6 +19,7 @@ artifact-effect-hint-communication = Long-distance communication artifact-effect-hint-phasing = Structural phasing artifact-effect-hint-sentience = Neurological activity artifact-effect-hint-polymorph = Transmogrificational activity +artifact-effect-hint-magnet = Magnetic waves # the triggers should be more obvious than the effects # gives people an idea of what to do: don't be too specific (i.e. no "welders") diff --git a/Resources/Maps/Dungeon/experiment.yml b/Resources/Maps/Dungeon/experiment.yml index a1d0e9daf3..09be434eb2 100644 --- a/Resources/Maps/Dungeon/experiment.yml +++ b/Resources/Maps/Dungeon/experiment.yml @@ -6801,9 +6801,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - uid: 1606 components: - rot: 3.141592653589793 rad @@ -6812,9 +6809,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - uid: 1607 components: - rot: 3.141592653589793 rad @@ -6823,9 +6817,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - proto: ExplosivePayload entities: - uid: 1104 diff --git a/Resources/Maps/Dungeon/lava_brig.yml b/Resources/Maps/Dungeon/lava_brig.yml index 9a4ecc5ecc..4aea24b1c7 100644 --- a/Resources/Maps/Dungeon/lava_brig.yml +++ b/Resources/Maps/Dungeon/lava_brig.yml @@ -7968,9 +7968,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - uid: 1717 components: - pos: 21.5,10.5 @@ -7978,9 +7975,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - uid: 1718 components: - pos: 30.5,4.5 @@ -7988,9 +7982,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - uid: 1719 components: - rot: 3.141592653589793 rad @@ -7999,9 +7990,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1720 components: - rot: 3.141592653589793 rad @@ -8010,9 +7999,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1721 components: - rot: 3.141592653589793 rad @@ -8021,9 +8008,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1722 components: - pos: 18.5,16.5 @@ -8031,9 +8016,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1723 components: - pos: 31.5,22.5 @@ -8041,9 +8024,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1724 components: - rot: -1.5707963267948966 rad @@ -8052,9 +8033,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1726 components: - rot: -1.5707963267948966 rad @@ -8063,9 +8042,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1727 components: - rot: -1.5707963267948966 rad @@ -8074,9 +8051,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1728 components: - rot: 1.5707963267948966 rad @@ -8085,9 +8060,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1729 components: - rot: -1.5707963267948966 rad @@ -8096,9 +8069,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1730 components: - rot: 1.5707963267948966 rad @@ -8107,9 +8078,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1731 components: - rot: 1.5707963267948966 rad @@ -8118,9 +8087,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1732 components: - rot: -1.5707963267948966 rad @@ -8129,9 +8096,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1733 components: - rot: 1.5707963267948966 rad @@ -8140,9 +8105,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1734 components: - pos: 1.5,24.5 @@ -8150,9 +8113,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1735 components: - rot: 3.141592653589793 rad @@ -8161,9 +8122,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1736 components: - pos: 11.5,32.5 @@ -8171,9 +8130,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1737 components: - rot: -1.5707963267948966 rad @@ -8182,9 +8139,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1738 components: - rot: 1.5707963267948966 rad @@ -8193,9 +8148,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1739 components: - rot: 3.141592653589793 rad @@ -8204,9 +8157,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1740 components: - rot: 1.5707963267948966 rad @@ -8215,9 +8166,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1742 components: - rot: -1.5707963267948966 rad @@ -8226,9 +8175,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1744 components: - rot: 3.141592653589793 rad @@ -8237,9 +8184,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1745 components: - rot: 3.141592653589793 rad @@ -8248,9 +8193,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1746 components: - rot: 3.141592653589793 rad @@ -8259,9 +8202,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1747 components: - rot: 3.141592653589793 rad @@ -8270,9 +8211,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1748 components: - rot: -1.5707963267948966 rad @@ -8281,9 +8220,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1749 components: - rot: 1.5707963267948966 rad @@ -8292,9 +8229,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1750 components: - rot: -1.5707963267948966 rad @@ -8303,9 +8238,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1751 components: - pos: 30.5,6.5 @@ -8313,9 +8246,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1752 components: - rot: 3.141592653589793 rad @@ -8324,9 +8255,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 1832 components: - rot: -1.5707963267948966 rad @@ -8335,9 +8264,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - proto: EmergencyRollerBed entities: - uid: 1141 diff --git a/Resources/Maps/Misc/terminal.yml b/Resources/Maps/Misc/terminal.yml index 034b248eeb..86939d465f 100644 --- a/Resources/Maps/Misc/terminal.yml +++ b/Resources/Maps/Misc/terminal.yml @@ -1,58 +1,53 @@ meta: - format: 5 + format: 6 postmapinit: false tilemap: 0: Space - 10: FloorAsteroidSand - 23: FloorDark - 32: FloorDarkPlastic - 41: FloorGrass - 58: FloorRGlass - 59: FloorReinforced - 69: FloorSteel - 79: FloorTechMaint - 80: FloorTechMaint2 - 94: Lattice - 95: Plating + 7: FloorAsteroidSand + 27: FloorDark + 36: FloorDarkPlastic + 45: FloorGrass + 71: FloorRGlass + 72: FloorReinforced + 84: FloorSteel + 96: FloorTechMaint + 97: FloorTechMaint2 + 112: Lattice + 113: Plating entities: - proto: "" entities: - - uid: 1 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree - - type: LoadedMap - - type: GridTree - - type: MovedGrids - uid: 818 components: - name: NT-EM Terminal type: MetaData - - parent: 1 + - parent: invalid type: Transform - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAF8AAAAXAAAARQAAABcAAAMKAAAAFwAAAUUAAAIXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAUUAAAMXAAAACgAAABcAAABFAAADFwAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAFFAAACFwAAAwoAAAAXAAABRQAAAxcAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAACRQAAABcAAAAKAAAAFwAAAUUAAAAXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAANFAAACRQAAA0UAAAJFAAACXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAAARQAAAzoAAABFAAADRQAAAV8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAEUAAAJFAAAARQAAAEUAAANfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAANFAAACOgAAAEUAAANFAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAADRQAAAkUAAABFAAAARQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAkUAAAA6AAAARQAAAkUAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAADRQAAAEUAAAJFAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAA0UAAABFAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAACRQAAAUUAAAJFAAACRQAAAUUAAAFFAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAUUAAABFAAAAOgAAAEUAAAJFAAACRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAABcAAAFFAAAARQAAAkUAAABFAAAARQAAAUUAAANFAAADRQAAA0UAAAFFAAABRQAAAUUAAANFAAABAAAAAF8AAAAXAAABRQAAAUUAAAE6AAAARQAAADoAAABFAAACRQAAAkUAAAJFAAAARQAAAUUAAAJFAAAARQAAAw== + tiles: AAAAAAAAcQAAAAAAGwAAAAAAVAAAAAAAGwAAAAADBwAAAAAAGwAAAAABVAAAAAACGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABVAAAAAADGwAAAAAABwAAAAAAGwAAAAAAVAAAAAADGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABVAAAAAACGwAAAAADBwAAAAAAGwAAAAABVAAAAAADGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACVAAAAAAAGwAAAAAABwAAAAAAGwAAAAABVAAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADRwAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAACRwAAAAAAVAAAAAADVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAAARwAAAAAAVAAAAAACVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABVAAAAAAAVAAAAAAARwAAAAAAVAAAAAACVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAGwAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAABAAAAAAAAcQAAAAAAGwAAAAABVAAAAAABVAAAAAABRwAAAAAAVAAAAAAARwAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAAD + version: 6 0,0: ind: 0,0 - tiles: RQAAA0UAAANFAAACRQAAAEUAAANFAAAARQAAAUUAAAFFAAACRQAAAEUAAAFFAAADRQAAAV8AAAAAAAAAAAAAAEUAAAJFAAACRQAAAUUAAAFFAAAAXwAAAEUAAAFFAAACRQAAAkUAAABFAAAARQAAA0UAAAJfAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAARQAAAkUAAANFAAAARQAAAEUAAAFfAAAAXwAAAAAAAAAAAAAAKQAAACkAAABfAAAAUAAAAF8AAABeAAAAXwAAAEUAAABFAAACRQAAA0UAAABFAAACXwAAAAAAAAAAAAAAAAAAACkAAAApAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAARQAAAUUAAAJFAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAApAAAAKQAAAF8AAABfAAAAXwAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAAOwAAAE8AAABPAAAAUAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: VAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAALQAAAAAALQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAALQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAALQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAASAAAAAAAYAAAAAAAYAAAAAAAYQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAA0UAAAEXAAAACgAAABcAAAFFAAACFwAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAJFAAACFwAAAAoAAAAXAAACRQAAAxcAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAAARQAAARcAAAMKAAAAFwAAAUUAAAAXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAA0UAAAMXAAACCgAAABcAAANFAAACFwAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAAARQAAA0UAAAFFAAADRQAAAV8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAUUAAAI6AAAARQAAAkUAAAJfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAANFAAABXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAABRQAAADoAAABFAAABRQAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAkUAAABFAAAARQAAAkUAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAJFAAAAOgAAAEUAAANFAAADXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAABRQAAAkUAAABFAAAARQAAAl8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAAFFAAADRQAAA18AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAUUAAAJFAAACRQAAAUUAAABFAAADRQAAAl8AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAABRQAAA0UAAABFAAADRQAAAEUAAAJfAAAAAAAAAAAAAABFAAABRQAAA0UAAANFAAAARQAAAEUAAABFAAADRQAAAEUAAAJFAAAARQAAA0UAAAJFAAADXwAAAAAAAAAAAAAARQAAA0UAAANFAAABRQAAAEUAAABFAAADRQAAA0UAAABFAAABRQAAAEUAAABFAAAARQAAAl8AAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADVAAAAAABGwAAAAAABwAAAAAAGwAAAAABVAAAAAACGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACVAAAAAACGwAAAAAABwAAAAAAGwAAAAACVAAAAAADGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAVAAAAAABGwAAAAADBwAAAAAAGwAAAAABVAAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADVAAAAAADGwAAAAACBwAAAAAAGwAAAAADVAAAAAACGwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACRwAAAAAAVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAAARwAAAAAAVAAAAAABVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAAARwAAAAAAVAAAAAADVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,0: ind: -1,0 - tiles: AAAAAF8AAAAXAAACRQAAAUUAAAFFAAADRQAAAEUAAABFAAACRQAAAEUAAABFAAABRQAAAEUAAAJFAAACRQAAAwAAAABfAAAAFwAAAxcAAAMXAAACFwAAAxcAAAIXAAABFwAAAl8AAABFAAADRQAAAEUAAABFAAADRQAAA0UAAAAAAAAAXwAAAF8AAAAgAAAAIAAAACAAAAAgAAAAIAAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAgAAAAXgAAAF8AAABfAAAAXwAAACkAAAApAAAAKQAAAAAAAAAAAAAAIAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAAF4AAABfAAAAXwAAAF8AAAApAAAAKQAAACkAAAAAAAAAAAAAAAAAAAAgAAAAIAAAACAAAAAgAAAAIAAAAAAAAABeAAAAXwAAAF8AAABfAAAAKQAAACkAAAApAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAcQAAAAAAGwAAAAACVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAADAAAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAADGwAAAAACGwAAAAABGwAAAAACcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAEUAAAJFAAADRQAAAV8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAANFAAAAOgAAAEUAAANFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAACRQAAAUUAAABFAAADRQAAA18AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAA0UAAAM6AAAARQAAA0UAAAFfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAAFFAAABRQAAA0UAAAFFAAACXwAAAF8AAABfAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAAARwAAAAAAVAAAAAADVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADRwAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAA + version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAARQAAAUUAAABFAAACXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAAE6AAAARQAAA0UAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAAJFAAABRQAAAEUAAAFFAAABXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAADRQAAAToAAABFAAABRQAAAl8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAkUAAANFAAADRQAAA0UAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABRwAAAAAAVAAAAAADVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABRwAAAAAAVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 type: MapGrid - type: Broadphase - bodyStatus: InAir @@ -1128,6 +1123,28 @@ entities: - pos: 2.5,3.5 parent: 818 type: Transform +- proto: ArrivalsShuttleTimer + entities: + - uid: 597 + components: + - pos: -7.5,-5.5 + parent: 818 + type: Transform + - uid: 633 + components: + - pos: 6.5,-5.5 + parent: 818 + type: Transform + - uid: 928 + components: + - pos: -6.5,-14.5 + parent: 818 + type: Transform + - uid: 929 + components: + - pos: 5.5,-14.5 + parent: 818 + type: Transform - proto: AtmosDeviceFanTiny entities: - uid: 296 @@ -1222,29 +1239,21 @@ entities: - pos: 1.5,6.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 208 components: - pos: -3.5,7.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 218 components: - pos: -4.5,4.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 402 components: - pos: -4.5,7.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 404 components: - pos: 2.5,1.5 @@ -1260,43 +1269,31 @@ entities: - pos: 3.5,5.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 412 components: - pos: 3.5,4.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 426 components: - pos: -2.5,7.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 427 components: - pos: -1.5,7.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 428 components: - pos: -0.5,7.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 429 components: - pos: 0.5,7.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 430 components: - pos: 1.5,-0.5 @@ -1367,8 +1364,6 @@ entities: - pos: -13.5,2.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 448 components: - pos: -13.5,1.5 @@ -1474,8 +1469,6 @@ entities: - pos: -13.5,-11.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 469 components: - pos: -12.5,-11.5 @@ -1551,15 +1544,11 @@ entities: - pos: -13.5,-17.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 484 components: - pos: -14.5,-17.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 485 components: - pos: -9.5,-17.5 @@ -1575,15 +1564,11 @@ entities: - pos: -7.5,-17.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 488 components: - pos: -6.5,-17.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 489 components: - pos: -10.5,-10.5 @@ -1604,15 +1589,11 @@ entities: - pos: -7.5,-10.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 493 components: - pos: -6.5,-10.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 494 components: - pos: -12.5,-10.5 @@ -1623,15 +1604,11 @@ entities: - pos: -13.5,-10.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 496 components: - pos: -14.5,-10.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 497 components: - pos: -11.5,-14.5 @@ -1677,8 +1654,6 @@ entities: - pos: 6.5,-11.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 506 components: - pos: 7.5,-11.5 @@ -1694,15 +1669,11 @@ entities: - pos: 6.5,-10.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 509 components: - pos: 5.5,-10.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 510 components: - pos: 8.5,-11.5 @@ -1733,15 +1704,11 @@ entities: - pos: 12.5,-10.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 516 components: - pos: 13.5,-10.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 517 components: - pos: 8.5,-16.5 @@ -1802,15 +1769,11 @@ entities: - pos: 6.5,-17.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 529 components: - pos: 5.5,-17.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 530 components: - pos: 10.5,-17.5 @@ -1826,15 +1789,11 @@ entities: - pos: 12.5,-17.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 533 components: - pos: 13.5,-17.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 534 components: - pos: 8.5,-14.5 @@ -1880,8 +1839,6 @@ entities: - pos: 6.5,2.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 543 components: - pos: 6.5,1.5 @@ -1987,29 +1944,21 @@ entities: - pos: 1.5,7.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 564 components: - pos: 2.5,7.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 565 components: - pos: 3.5,7.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 566 components: - pos: 3.5,6.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 579 components: - pos: 2.5,0.5 @@ -2020,15 +1969,11 @@ entities: - pos: -4.5,6.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 601 components: - pos: -4.5,5.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 651 components: - pos: 10.5,-11.5 @@ -2084,8 +2029,6 @@ entities: - pos: 2.5,3.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - proto: CableHV entities: - uid: 413 @@ -2093,36 +2036,26 @@ entities: - pos: -3.5,8.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 415 components: - pos: -4.5,8.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 416 components: - pos: -2.5,8.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 734 components: - pos: -0.5,8.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 735 components: - pos: -1.5,8.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - proto: CableMV entities: - uid: 177 @@ -2165,8 +2098,6 @@ entities: - pos: 6.5,2.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 227 components: - pos: 8.5,-0.5 @@ -2202,8 +2133,6 @@ entities: - pos: 1.5,6.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 356 components: - pos: 9.5,-7.5 @@ -2269,8 +2198,6 @@ entities: - pos: 6.5,-11.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 369 components: - pos: 0.5,-0.5 @@ -2361,8 +2288,6 @@ entities: - pos: -13.5,2.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 387 components: - pos: -10.5,-1.5 @@ -2433,8 +2358,6 @@ entities: - pos: -13.5,-11.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 418 components: - pos: 3.5,1.5 @@ -2450,64 +2373,46 @@ entities: - pos: -0.5,7.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 422 components: - pos: 0.5,7.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 423 components: - pos: 1.5,7.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 424 components: - pos: 2.5,7.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 425 components: - pos: 3.5,7.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 567 components: - pos: 3.5,4.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 568 components: - pos: 3.5,5.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 569 components: - pos: 3.5,6.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 570 components: - pos: -0.5,8.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - uid: 803 components: - pos: 3.5,0.5 @@ -2518,8 +2423,6 @@ entities: - pos: 2.5,3.5 parent: 818 type: Transform - - enabled: True - type: AmbientSound - proto: CableTerminal entities: - uid: 417 @@ -4090,117 +3993,87 @@ entities: pos: -8.5,-5.5 parent: 818 type: Transform - - enabled: False - type: AmbientSound - uid: 188 components: - rot: -1.5707963267948966 rad pos: 11.5,2.5 parent: 818 type: Transform - - enabled: False - type: AmbientSound - uid: 195 components: - rot: 3.141592653589793 rad pos: -2.5,-1.5 parent: 818 type: Transform - - enabled: False - type: AmbientSound - uid: 209 components: - rot: 1.5707963267948966 rad pos: 7.5,-5.5 parent: 818 type: Transform - - enabled: False - type: AmbientSound - uid: 341 components: - rot: 3.141592653589793 rad pos: 1.5,-1.5 parent: 818 type: Transform - - enabled: False - type: AmbientSound - uid: 634 components: - pos: 9.5,-16.5 parent: 818 type: Transform - - enabled: False - type: AmbientSound - uid: 636 components: - rot: 3.141592653589793 rad pos: 9.5,-11.5 parent: 818 type: Transform - - enabled: False - type: AmbientSound - uid: 649 components: - rot: 3.141592653589793 rad pos: -10.5,-11.5 parent: 818 type: Transform - - enabled: False - type: AmbientSound - uid: 650 components: - pos: -10.5,-16.5 parent: 818 type: Transform - - enabled: False - type: AmbientSound - uid: 687 components: - rot: 1.5707963267948966 rad pos: -13.5,1.5 parent: 818 type: Transform - - enabled: False - type: AmbientSound - uid: 701 components: - rot: 3.141592653589793 rad pos: -6.5,3.5 parent: 818 type: Transform - - enabled: False - type: AmbientSound - uid: 702 components: - rot: 3.141592653589793 rad pos: 5.5,3.5 parent: 818 type: Transform - - enabled: False - type: AmbientSound - uid: 715 components: - pos: -0.5,5.5 parent: 818 type: Transform - - enabled: False - type: AmbientSound - uid: 717 components: - rot: -1.5707963267948966 rad pos: -7.5,-3.5 parent: 818 type: Transform - - enabled: False - type: AmbientSound - uid: 742 components: - rot: 1.5707963267948966 rad pos: 6.5,-3.5 parent: 818 type: Transform - - enabled: False - type: AmbientSound - proto: RandomSpawner entities: - uid: 895 @@ -5187,12 +5060,6 @@ entities: pos: -11.5,4.5 parent: 818 type: Transform - - uid: 761 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,4.5 - parent: 818 - type: Transform - uid: 796 components: - rot: -1.5707963267948966 rad diff --git a/Resources/Maps/Salvage/DeltaV/DV-animalfarm.yml b/Resources/Maps/Salvage/DeltaV/DV-animalfarm.yml new file mode 100644 index 0000000000..9c319cf34f --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-animalfarm.yml @@ -0,0 +1,1200 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 14: FloorBlue + 36: FloorDarkPlastic + 45: FloorGrass + 48: FloorGrassLight + 110: FloorWood + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + - pos: 1.1427457,-1.3721282 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: bgAAAAAAbgAAAAAAcQAAAAAADgAAAAAADgAAAAAADgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAcQAAAAAADgAAAAAADgAAAAAADgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADgAAAAAADgAAAAAADgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAcQAAAAAAcQAAAAAADgAAAAAADgAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAAAcQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAcQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAAAJAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAJAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAAAcQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAcQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADgAAAAAAcQAAAAAADgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAADgAAAAAADgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAcQAAAAAADgAAAAAADgAAAAAADgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Busha1 + decals: + 0: -0.8682401,7.969157 + - node: + color: '#FFFFFFFF' + id: Busha3 + decals: + 1: 1.1942599,6.719157 + 4: 4.2984257,7.219157 + - node: + color: '#FFFFFFFF' + id: Bushb1 + decals: + 9: 8.920118,6.385824 + - node: + color: '#FFFFFFFF' + id: Bushb2 + decals: + 7: 7.3784523,7.885824 + - node: + color: '#FFFFFFFF' + id: Bushc1 + decals: + 2: -0.7015741,6.198324 + - node: + color: '#FFFFFFFF' + id: Bushc3 + decals: + 8: 7.1492853,6.260824 + - node: + color: '#FFFFFFFF' + id: Bushd1 + decals: + 5: 4.8400927,6.094157 + - node: + color: '#FFFFFFFF' + id: Bushe1 + decals: + 10: 0.7617028,7.734724 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 27: 1,4 + 28: 0,3 + 29: 2,3 + 30: 4,4 + 31: 7,4 + 32: 6,3 + 33: 5,1 + 34: 6,-1 + 35: 8,0 + 36: 4,-1 + 37: 4,-2 + 38: 5,-2 + 39: 5,0 + 40: 4,1 + 41: 4,2 + 42: 4,3 + 43: 3,1 + 44: 3,1 + 45: 3,-1 + 46: 3,-1 + 47: 3,-2 + 48: 4,-3 + 49: 3,-3 + 50: -2,4 + 51: 0,0 + 52: 1,-1 + 53: 0,-2 + 54: -1,-2 + 55: -1,-1 + 56: 6,-4 + 57: 4,-4 + 58: 8,4 + 59: 4,4 + 60: 4,4 + 61: 8,4 + 62: 8,4 + 63: 4,5 + 64: 3,6 + - node: + color: '#9FED58FF' + id: MiniTileSteelLineE + decals: + 97: 5,1 + 98: 5,0 + 99: 5,-2 + 100: 5,-3 + - node: + color: '#9FED5896' + id: MiniTileSteelLineN + decals: + 67: 1,4 + 68: 2,4 + 69: 3,4 + 70: 5,4 + 71: 6,4 + 72: 7,4 + - node: + color: '#9FED58FF' + id: MiniTileSteelLineN + decals: + 83: 1,4 + 84: 2,4 + 85: 3,4 + 86: 5,4 + 87: 6,4 + 88: 7,4 + - node: + color: '#9FED5896' + id: MiniTileSteelLineS + decals: + 73: -1,3 + 74: 0,3 + 75: 1,3 + 76: 2,3 + - node: + color: '#9FED58FF' + id: MiniTileSteelLineS + decals: + 89: -1,3 + 90: 0,3 + 91: 1,3 + 92: 2,3 + - node: + color: '#9FED5896' + id: MiniTileSteelLineW + decals: + 77: 3,2 + 78: 3,1 + - node: + color: '#9FED58FF' + id: MiniTileSteelLineW + decals: + 93: 3,2 + 94: 3,1 + 95: 3,-1 + 96: 3,-3 + - node: + color: '#9FED58FF' + id: MiniTileWhiteLineE + decals: + 101: 5,-1 + - node: + color: '#9FED5896' + id: MiniTileWhiteLineN + decals: + 65: 4,4 + 66: 8,4 + - node: + color: '#9FED58FF' + id: MiniTileWhiteLineN + decals: + 80: 0,4 + 81: 4,4 + 82: 8,4 + - node: + color: '#9FED58FF' + id: MiniTileWhiteLineW + decals: + 79: 3,0 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 11: 10,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 13: 6,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 12: 10,-3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 14: 6,-3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 24: 10,0 + 25: 10,-1 + 26: 10,-2 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 15: 7,1 + 16: 8,1 + 17: 9,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 18: 10,-3 + 19: 9,-3 + 20: 8,-3 + 21: 7,-3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 22: 6,0 + 23: 6,-2 + - node: + color: '#FFFFFFFF' + id: grasssnowb1 + decals: + 3: 3.090093,7.86499 + - node: + color: '#FFFFFFFF' + id: grasssnowb3 + decals: + 6: 7.9617853,6.864991 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 60652 + -1,0: + 0: 52974 + 0,-1: + 0: 65535 + 0,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 767 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 1535 + 2,0: + 0: 65535 + 2,1: + 0: 32767 + 2,2: + 0: 1919 + -1,1: + 0: 52974 + -1,2: + 0: 3310 + 1,-1: + 0: 65535 + 2,-1: + 0: 65535 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: RadiationGridResistance + - type: SpreaderGrid + - type: GasTileOverlay +- proto: AirlockHydroGlassLocked + entities: + - uid: 56 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 130 + components: + - pos: 6.5,5.5 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 131 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 132 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 133 + components: + - pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 134 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 135 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 136 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 137 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 138 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 139 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 140 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 141 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 142 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 143 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 144 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform + - uid: 145 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 146 + components: + - pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 147 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 148 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 149 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 150 + components: + - pos: 10.5,2.5 + parent: 1 + type: Transform + - uid: 151 + components: + - pos: 11.5,2.5 + parent: 1 + type: Transform + - uid: 152 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 153 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 154 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 155 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform +- proto: ChairWood + entities: + - uid: 103 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesLeather + entities: + - uid: 104 + components: + - pos: 0.5969213,1.6526971 + parent: 1 + type: Transform +- proto: CrateFilledSpawner + entities: + - uid: 68 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform +- proto: Girder + entities: + - uid: 20 + components: + - pos: 10.5,9.5 + parent: 1 + type: Transform + - uid: 28 + components: + - pos: 10.5,5.5 + parent: 1 + type: Transform + - uid: 74 + components: + - pos: 11.5,-2.5 + parent: 1 + type: Transform + - uid: 75 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 77 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 78 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 107 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 109 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 112 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 125 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 29 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 30 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 31 + components: + - pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 32 + components: + - pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 33 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 34 + components: + - pos: 9.5,5.5 + parent: 1 + type: Transform + - uid: 35 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 36 + components: + - pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 37 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform +- proto: hydroponicsSoil + entities: + - uid: 84 + components: + - pos: 10.5,1.5 + parent: 1 + type: Transform + - uid: 85 + components: + - pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 86 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 87 + components: + - pos: 7.5,1.5 + parent: 1 + type: Transform + - uid: 88 + components: + - pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 89 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - uid: 90 + components: + - pos: 9.5,-1.5 + parent: 1 + type: Transform + - uid: 91 + components: + - pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 92 + components: + - pos: 7.5,-1.5 + parent: 1 + type: Transform + - uid: 93 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform +- proto: HydroponicsToolScythe + entities: + - uid: 105 + components: + - pos: 8.181337,-0.36813593 + parent: 1 + type: Transform +- proto: hydroponicsTray + entities: + - uid: 94 + components: + - pos: 10.5,0.5 + parent: 1 + type: Transform + - uid: 95 + components: + - pos: 10.5,-0.5 + parent: 1 + type: Transform +- proto: Poweredlight + entities: + - uid: 5 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 126 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 127 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 128 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 129 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: Railing + entities: + - uid: 58 + components: + - pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 59 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 60 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 61 + components: + - pos: 10.5,2.5 + parent: 1 + type: Transform + - uid: 62 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 79 + components: + - pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 80 + components: + - pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 81 + components: + - pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 82 + components: + - pos: 7.5,-2.5 + parent: 1 + type: Transform + - uid: 83 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform +- proto: RandomAnimalSpawner + entities: + - uid: 122 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 123 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 124 + components: + - pos: 8.5,7.5 + parent: 1 + type: Transform +- proto: RandomArtifactSpawner20 + entities: + - uid: 110 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform +- proto: RandomDrinkBottle + entities: + - uid: 111 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform +- proto: RandomFoodBakedWhole + entities: + - uid: 49 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform +- proto: ReinforcedPlasmaWindow + entities: + - uid: 44 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 45 + components: + - pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 46 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 38 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 39 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 40 + components: + - pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 41 + components: + - pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 42 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 43 + components: + - pos: 9.5,5.5 + parent: 1 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 53 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform +- proto: SalvageMobSpawner75 + entities: + - uid: 76 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 113 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 158 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform +- proto: SalvageSeedSpawnerLow + entities: + - uid: 99 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 100 + components: + - pos: 7.5,-1.5 + parent: 1 + type: Transform + - uid: 114 + components: + - pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 115 + components: + - pos: 9.5,-1.5 + parent: 1 + type: Transform + - uid: 116 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - uid: 117 + components: + - pos: 10.5,1.5 + parent: 1 + type: Transform + - uid: 118 + components: + - pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 119 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 120 + components: + - pos: 7.5,1.5 + parent: 1 + type: Transform + - uid: 121 + components: + - pos: 6.5,1.5 + parent: 1 + type: Transform +- proto: SpaceTickSpawner + entities: + - uid: 54 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 71 + components: + - pos: 9.5,0.5 + parent: 1 + type: Transform +- proto: TableWood + entities: + - uid: 101 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 102 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform +- proto: TrashBananaPeel + entities: + - uid: 97 + components: + - pos: 2.4676776,0.43280387 + parent: 1 + type: Transform +- proto: WallSolid + entities: + - uid: 4 + components: + - pos: 6.5,8.5 + parent: 1 + type: Transform + - uid: 6 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 9 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 10 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 11 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 13 + components: + - pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 14 + components: + - pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 16 + components: + - pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 17 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 18 + components: + - pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 19 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 21 + components: + - pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 23 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 24 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 25 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 55 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 57 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 63 + components: + - pos: 11.5,-1.5 + parent: 1 + type: Transform + - uid: 64 + components: + - pos: 11.5,-0.5 + parent: 1 + type: Transform + - uid: 65 + components: + - pos: 11.5,1.5 + parent: 1 + type: Transform + - uid: 66 + components: + - pos: 11.5,2.5 + parent: 1 + type: Transform + - uid: 67 + components: + - pos: 11.5,0.5 + parent: 1 + type: Transform + - uid: 69 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 70 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 72 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 73 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform +- proto: WallSolidRust + entities: + - uid: 2 + components: + - pos: 9.5,9.5 + parent: 1 + type: Transform + - uid: 8 + components: + - pos: 3.5,9.5 + parent: 1 + type: Transform + - uid: 12 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 15 + components: + - pos: 10.5,8.5 + parent: 1 + type: Transform + - uid: 22 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 26 + components: + - pos: 10.5,6.5 + parent: 1 + type: Transform + - uid: 27 + components: + - pos: 10.5,7.5 + parent: 1 + type: Transform + - uid: 50 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 51 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 52 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 106 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 108 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform +- proto: WheatBushel + entities: + - uid: 96 + components: + - pos: 9.249662,-0.5899117 + parent: 1 + type: Transform + - uid: 98 + components: + - pos: 6.8538284,0.4725883 + parent: 1 + type: Transform +- proto: WindoorSecure + entities: + - uid: 3 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 47 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 48 + components: + - pos: 8.5,5.5 + parent: 1 + type: Transform +- proto: Window + entities: + - uid: 156 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 157 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,7.5 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-asteroid-base.yml b/Resources/Maps/Salvage/DeltaV/DV-asteroid-base.yml new file mode 100644 index 0000000000..5b2971a362 --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-asteroid-base.yml @@ -0,0 +1,2560 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand + 8: FloorAsteroidSandDug + 11: FloorAsteroidTile + 42: FloorFreezer + 43: FloorGlass + 96: FloorTechMaint + 98: FloorTechMaint3 + 110: FloorWood + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 407 + components: + - type: MetaData + - parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAKgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAKwAAAAAAKwAAAAAAbgAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcQAAAAAABwAAAAAAbgAAAAACKwAAAAAAKwAAAAAAbgAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcQAAAAAABwAAAAAABwAAAAAAbgAAAAAAbgAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAABwAAAAAAbgAAAAABbgAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAACAAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAACcQAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAACcQAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAABwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYgAAAAAACwAAAAAACwAAAAAACwAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 0: -5,6 + 1: -4,6 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 5: 4,3 + 6: 8,8 + 10: 6,-8 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 2: -5,5 + 7: 7,8 + 8: 6,5 + 9: 9,-6 + 14: 9,-11 + 15: 12,-12 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 3: 5,9 + 4: 6,4 + 11: 7,-6 + 12: 12,-7 + 13: 7,-10 + 16: 12,-10 + 17: 13,-11 + 18: 10,-10 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale + decals: + 21: 7,-6 + 22: 8,-6 + 30: 8,-10 + 31: 9,-10 + 32: 10,-10 + 33: 11,-10 + 34: 12,-10 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + decals: + 25: 7,-8 + 26: 8,-8 + 27: 9,-12 + 28: 10,-12 + 29: 11,-12 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + decals: + 24: 6,-7 + 39: 6,-8 + 40: 6,-6 + 43: 7,-11 + 44: 7,-10 + 45: 8,-12 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale90 + decals: + 23: 9,-7 + 35: 9,-6 + 36: 9,-8 + 46: 13,-10 + 47: 13,-11 + 48: 12,-12 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale + decals: + 37: 9,-6 + 49: 13,-10 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + decals: + 42: 6,-8 + 51: 7,-11 + 52: 12,-11 + 56: 8,-12 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + decals: + 38: 9,-8 + 53: 8,-11 + 54: 13,-11 + 55: 12,-12 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale90 + decals: + 41: 6,-6 + 50: 7,-10 + - node: + color: '#FFFFFFFF' + id: WarnCorner + decals: + 19: 7,-5 + - node: + color: '#FFFFFFFF' + id: WarnCornerFlipped + decals: + 20: 8,-5 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 70: -8,-10 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 69: -5,-10 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 67: -8,-9 + 68: -8,-8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 63: -7,-10 + 64: -6,-10 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 57: -5,-10 + 58: -6,-10 + 59: -7,-10 + 60: -8,-10 + 61: -7,-7 + 62: -6,-7 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 65: -5,-9 + 66: -5,-8 + type: DecalGrid + - version: 2 + data: + tiles: + -3,-1: + 0: 50376 + -2,-1: + 0: 61446 + -1,-1: + 0: 61440 + -3,-3: + 0: 65472 + -3,-2: + 0: 35055 + -2,-3: + 0: 65527 + -2,-2: + 0: 65535 + -1,-3: + 0: 7952 + -1,-2: + 0: 61457 + -3,0: + 0: 65516 + -3,1: + 0: 35943 + -2,0: + 0: 25360 + -2,1: + 0: 65260 + -2,2: + 0: 3311 + -1,1: + 0: 14199 + -1,2: + 0: 31 + 0,-3: + 0: 50672 + 0,-2: + 0: 62668 + 1,-3: + 0: 65276 + 1,-2: + 0: 29491 + 1: 36044 + 1,-1: + 0: 19596 + 1,-4: + 0: 32768 + 2,-4: + 0: 61440 + 2,-3: + 0: 65535 + 2,-2: + 1: 4915 + 0: 58436 + 2: 2184 + 2,-1: + 0: 3 + 3,-4: + 0: 12288 + 3,-3: + 0: 30583 + 3,-2: + 2: 17 + 0: 4898 + 0,2: + 0: 143 + 0,0: + 0: 60928 + 0,1: + 0: 61166 + 1,0: + 0: 65318 + 1,1: + 0: 65535 + 1,2: + 0: 4095 + 2,0: + 0: 4096 + 2,1: + 0: 12305 + 2,2: + 0: 307 + 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.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 5000 + moles: + - 6666.982 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: OccluderTree + - type: Shuttle + - type: RadiationGridResistance + - type: GasTileOverlay + - type: SpreaderGrid + - type: GridPathfinding +- proto: AirlockCommandLocked + entities: + - uid: 85 + components: + - pos: -8.5,-8.5 + parent: 407 + type: Transform +- proto: AirlockEngineeringLocked + entities: + - uid: 83 + components: + - pos: 5.5,7.5 + parent: 407 + type: Transform +- proto: AirlockExternalAtmosphericsLocked + entities: + - uid: 265 + components: + - pos: 3.5,-7.5 + parent: 407 + type: Transform +- proto: AirlockExternalGlass + entities: + - uid: 86 + components: + - pos: 6.5,10.5 + parent: 407 + type: Transform +- proto: AirlockExternalGlassLocked + entities: + - uid: 84 + components: + - pos: -9.5,-6.5 + parent: 407 + type: Transform + - state: Welded + type: Door + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight +- proto: AirlockScienceGlassLocked + entities: + - uid: 381 + components: + - pos: 8.5,-8.5 + parent: 407 + type: Transform +- proto: AirlockScienceLocked + entities: + - uid: 87 + components: + - pos: 5.5,-7.5 + parent: 407 + type: Transform + - uid: 184 + components: + - pos: 10.5,-6.5 + parent: 407 + type: Transform +- proto: APCBasic + entities: + - uid: 228 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,8.5 + parent: 407 + type: Transform + - uid: 229 + components: + - pos: 10.5,-8.5 + parent: 407 + type: Transform + - uid: 230 + components: + - pos: -7.5,-6.5 + parent: 407 + type: Transform +- proto: AsteroidAltRockMining + entities: + - uid: 22 + components: + - pos: 3.5,7.5 + parent: 407 + type: Transform + - uid: 23 + components: + - pos: 3.5,9.5 + parent: 407 + type: Transform + - uid: 24 + components: + - pos: 4.5,9.5 + parent: 407 + type: Transform + - uid: 30 + components: + - pos: 4.5,10.5 + parent: 407 + type: Transform + - uid: 31 + components: + - pos: 5.5,10.5 + parent: 407 + type: Transform + - uid: 32 + components: + - pos: 7.5,10.5 + parent: 407 + type: Transform + - uid: 33 + components: + - pos: 8.5,10.5 + parent: 407 + type: Transform + - uid: 34 + components: + - pos: 9.5,9.5 + parent: 407 + type: Transform + - uid: 35 + components: + - pos: 8.5,9.5 + parent: 407 + type: Transform + - uid: 36 + components: + - pos: 9.5,8.5 + parent: 407 + type: Transform + - uid: 37 + components: + - pos: 9.5,7.5 + parent: 407 + type: Transform + - uid: 38 + components: + - pos: 8.5,7.5 + parent: 407 + type: Transform + - uid: 39 + components: + - pos: 7.5,7.5 + parent: 407 + type: Transform + - uid: 40 + components: + - pos: 7.5,5.5 + parent: 407 + type: Transform + - uid: 41 + components: + - pos: 8.5,5.5 + parent: 407 + type: Transform + - uid: 42 + components: + - pos: 8.5,4.5 + parent: 407 + type: Transform + - uid: 43 + components: + - pos: 8.5,3.5 + parent: 407 + type: Transform + - uid: 44 + components: + - pos: 7.5,3.5 + parent: 407 + type: Transform + - uid: 45 + components: + - pos: 7.5,2.5 + parent: 407 + type: Transform + - uid: 46 + components: + - pos: 6.5,2.5 + parent: 407 + type: Transform + - uid: 47 + components: + - pos: 4.5,2.5 + parent: 407 + type: Transform + - uid: 48 + components: + - pos: 3.5,2.5 + parent: 407 + type: Transform + - uid: 54 + components: + - pos: -3.5,8.5 + parent: 407 + type: Transform + - uid: 55 + components: + - pos: -4.5,8.5 + parent: 407 + type: Transform + - uid: 57 + components: + - pos: -6.5,6.5 + parent: 407 + type: Transform + - uid: 58 + components: + - pos: -6.5,7.5 + parent: 407 + type: Transform + - uid: 59 + components: + - pos: -6.5,8.5 + parent: 407 + type: Transform + - uid: 60 + components: + - pos: -7.5,8.5 + parent: 407 + type: Transform + - uid: 61 + components: + - pos: -6.5,5.5 + parent: 407 + type: Transform + - uid: 90 + components: + - pos: -5.5,-3.5 + parent: 407 + type: Transform + - uid: 91 + components: + - pos: -6.5,-3.5 + parent: 407 + type: Transform + - uid: 92 + components: + - pos: -5.5,-4.5 + parent: 407 + type: Transform + - uid: 93 + components: + - pos: -6.5,-4.5 + parent: 407 + type: Transform + - uid: 94 + components: + - pos: -7.5,-4.5 + parent: 407 + type: Transform + - uid: 95 + components: + - pos: -7.5,-5.5 + parent: 407 + type: Transform + - uid: 96 + components: + - pos: -7.5,-6.5 + parent: 407 + type: Transform + - uid: 97 + components: + - pos: -8.5,-6.5 + parent: 407 + type: Transform + - uid: 98 + components: + - pos: -8.5,-7.5 + parent: 407 + type: Transform + - uid: 99 + components: + - pos: -10.5,-7.5 + parent: 407 + type: Transform + - uid: 100 + components: + - pos: -10.5,-6.5 + parent: 407 + type: Transform + - uid: 101 + components: + - pos: -11.5,-7.5 + parent: 407 + type: Transform + - uid: 102 + components: + - pos: -11.5,-8.5 + parent: 407 + type: Transform + - uid: 103 + components: + - pos: -11.5,-9.5 + parent: 407 + type: Transform + - uid: 104 + components: + - pos: -10.5,-9.5 + parent: 407 + type: Transform + - uid: 105 + components: + - pos: -9.5,-9.5 + parent: 407 + type: Transform + - uid: 106 + components: + - pos: -8.5,-9.5 + parent: 407 + type: Transform + - uid: 107 + components: + - pos: -9.5,-10.5 + parent: 407 + type: Transform + - uid: 108 + components: + - pos: -8.5,-10.5 + parent: 407 + type: Transform + - uid: 109 + components: + - pos: -7.5,-10.5 + parent: 407 + type: Transform + - uid: 110 + components: + - pos: -7.5,-11.5 + parent: 407 + type: Transform + - uid: 111 + components: + - pos: -6.5,-11.5 + parent: 407 + type: Transform + - uid: 112 + components: + - pos: -5.5,-11.5 + parent: 407 + type: Transform + - uid: 113 + components: + - pos: -5.5,-10.5 + parent: 407 + type: Transform + - uid: 114 + components: + - pos: -4.5,-10.5 + parent: 407 + type: Transform + - uid: 115 + components: + - pos: -3.5,-10.5 + parent: 407 + type: Transform + - uid: 116 + components: + - pos: -3.5,-6.5 + parent: 407 + type: Transform + - uid: 117 + components: + - pos: -4.5,-6.5 + parent: 407 + type: Transform + - uid: 118 + components: + - pos: -4.5,-5.5 + parent: 407 + type: Transform + - uid: 119 + components: + - pos: 3.5,-6.5 + parent: 407 + type: Transform + - uid: 120 + components: + - pos: 4.5,-6.5 + parent: 407 + type: Transform + - uid: 121 + components: + - pos: 5.5,-6.5 + parent: 407 + type: Transform + - uid: 122 + components: + - pos: 4.5,-5.5 + parent: 407 + type: Transform + - uid: 123 + components: + - pos: 5.5,-5.5 + parent: 407 + type: Transform + - uid: 124 + components: + - pos: 5.5,-4.5 + parent: 407 + type: Transform + - uid: 125 + components: + - pos: 6.5,-4.5 + parent: 407 + type: Transform + - uid: 126 + components: + - pos: 6.5,-3.5 + parent: 407 + type: Transform + - uid: 127 + components: + - pos: 8.5,-3.5 + parent: 407 + type: Transform + - uid: 128 + components: + - pos: 9.5,-3.5 + parent: 407 + type: Transform + - uid: 129 + components: + - pos: 9.5,-4.5 + parent: 407 + type: Transform + - uid: 130 + components: + - pos: 10.5,-4.5 + parent: 407 + type: Transform + - uid: 131 + components: + - pos: 11.5,-4.5 + parent: 407 + type: Transform + - uid: 132 + components: + - pos: 12.5,-4.5 + parent: 407 + type: Transform + - uid: 133 + components: + - pos: 10.5,-5.5 + parent: 407 + type: Transform + - uid: 134 + components: + - pos: 12.5,-5.5 + parent: 407 + type: Transform + - uid: 135 + components: + - pos: 13.5,-5.5 + parent: 407 + type: Transform + - uid: 137 + components: + - pos: 13.5,-7.5 + parent: 407 + type: Transform + - uid: 138 + components: + - pos: 13.5,-8.5 + parent: 407 + type: Transform + - uid: 141 + components: + - pos: 10.5,-8.5 + parent: 407 + type: Transform + - uid: 142 + components: + - pos: 9.5,-8.5 + parent: 407 + type: Transform + - uid: 143 + components: + - pos: 10.5,-7.5 + parent: 407 + type: Transform + - uid: 144 + components: + - pos: 7.5,-8.5 + parent: 407 + type: Transform + - uid: 145 + components: + - pos: 6.5,-8.5 + parent: 407 + type: Transform + - uid: 146 + components: + - pos: 5.5,-8.5 + parent: 407 + type: Transform + - uid: 147 + components: + - pos: 4.5,-8.5 + parent: 407 + type: Transform + - uid: 148 + components: + - pos: 3.5,-8.5 + parent: 407 + type: Transform + - uid: 149 + components: + - pos: 5.5,-9.5 + parent: 407 + type: Transform + - uid: 150 + components: + - pos: 6.5,-9.5 + parent: 407 + type: Transform + - uid: 151 + components: + - pos: 6.5,-10.5 + parent: 407 + type: Transform + - uid: 152 + components: + - pos: 6.5,-11.5 + parent: 407 + type: Transform + - uid: 153 + components: + - pos: 7.5,-11.5 + parent: 407 + type: Transform + - uid: 154 + components: + - pos: 7.5,-12.5 + parent: 407 + type: Transform + - uid: 155 + components: + - pos: 13.5,-12.5 + parent: 407 + type: Transform + - uid: 156 + components: + - pos: 13.5,-11.5 + parent: 407 + type: Transform + - uid: 157 + components: + - pos: 14.5,-11.5 + parent: 407 + type: Transform + - uid: 158 + components: + - pos: 14.5,-10.5 + parent: 407 + type: Transform + - uid: 159 + components: + - pos: 14.5,-9.5 + parent: 407 + type: Transform + - uid: 160 + components: + - pos: 14.5,-8.5 + parent: 407 + type: Transform + - uid: 177 + components: + - pos: -11.5,2.5 + parent: 407 + type: Transform + - uid: 178 + components: + - pos: -6.5,9.5 + parent: 407 + type: Transform + - uid: 179 + components: + - pos: -5.5,9.5 + parent: 407 + type: Transform + - uid: 180 + components: + - pos: -4.5,9.5 + parent: 407 + type: Transform + - uid: 181 + components: + - pos: -3.5,9.5 + parent: 407 + type: Transform + - uid: 182 + components: + - pos: -4.5,10.5 + parent: 407 + type: Transform + - uid: 183 + components: + - pos: -5.5,10.5 + parent: 407 + type: Transform + - uid: 213 + components: + - pos: 4.5,7.5 + parent: 407 + type: Transform + - uid: 214 + components: + - pos: 6.5,7.5 + parent: 407 + type: Transform + - uid: 340 + components: + - pos: -11.5,3.5 + parent: 407 + type: Transform + - uid: 343 + components: + - pos: -11.5,4.5 + parent: 407 + type: Transform + - uid: 344 + components: + - pos: -9.5,4.5 + parent: 407 + type: Transform + - uid: 345 + components: + - pos: -10.5,2.5 + parent: 407 + type: Transform + - uid: 346 + components: + - pos: -10.5,1.5 + parent: 407 + type: Transform + - uid: 347 + components: + - pos: -10.5,3.5 + parent: 407 + type: Transform + - uid: 348 + components: + - pos: -9.5,3.5 + parent: 407 + type: Transform + - uid: 349 + components: + - pos: -8.5,3.5 + parent: 407 + type: Transform + - uid: 350 + components: + - pos: -9.5,1.5 + parent: 407 + type: Transform +- proto: AtmosFixInstantPlasmaFireMarker + entities: + - uid: 373 + components: + - pos: 11.5,-7.5 + parent: 407 + type: Transform + - uid: 374 + components: + - pos: 11.5,-6.5 + parent: 407 + type: Transform + - uid: 375 + components: + - pos: 12.5,-7.5 + parent: 407 + type: Transform + - uid: 376 + components: + - pos: 12.5,-6.5 + parent: 407 + type: Transform + - uid: 377 + components: + - pos: 11.5,-5.5 + parent: 407 + type: Transform +- proto: AtmosFixPlasmaMarker + entities: + - uid: 358 + components: + - pos: 8.5,-4.5 + parent: 407 + type: Transform + - uid: 359 + components: + - pos: 7.5,-4.5 + parent: 407 + type: Transform + - uid: 360 + components: + - pos: 9.5,-6.5 + parent: 407 + type: Transform + - uid: 361 + components: + - pos: 9.5,-5.5 + parent: 407 + type: Transform + - uid: 362 + components: + - pos: 8.5,-5.5 + parent: 407 + type: Transform + - uid: 364 + components: + - pos: 9.5,-7.5 + parent: 407 + type: Transform + - uid: 365 + components: + - pos: 6.5,-7.5 + parent: 407 + type: Transform + - uid: 366 + components: + - pos: 6.5,-5.5 + parent: 407 + type: Transform + - uid: 367 + components: + - pos: 8.5,-7.5 + parent: 407 + type: Transform + - uid: 368 + components: + - pos: 6.5,-6.5 + parent: 407 + type: Transform + - uid: 369 + components: + - pos: 7.5,-7.5 + parent: 407 + type: Transform + - uid: 370 + components: + - pos: 8.5,-6.5 + parent: 407 + type: Transform + - uid: 371 + components: + - pos: 7.5,-5.5 + parent: 407 + type: Transform + - uid: 372 + components: + - pos: 7.5,-6.5 + parent: 407 + type: Transform +- proto: Bed + entities: + - uid: 172 + components: + - pos: -4.5,-8.5 + parent: 407 + type: Transform +- proto: BedsheetNT + entities: + - uid: 173 + components: + - pos: -4.5,-8.5 + parent: 407 + type: Transform +- proto: BlastDoor + entities: + - uid: 136 + components: + - pos: 13.5,-6.5 + parent: 407 + type: Transform + - links: + - 380 + type: DeviceLinkSink +- proto: BookRandom + entities: + - uid: 335 + components: + - pos: -7.600169,-7.3133793 + parent: 407 + type: Transform +- proto: BookshelfFilled + entities: + - uid: 163 + components: + - pos: -6.5,-5.5 + parent: 407 + type: Transform + - uid: 164 + components: + - pos: -5.5,-5.5 + parent: 407 + type: Transform +- proto: CableApcExtension + entities: + - uid: 288 + components: + - pos: -7.5,-6.5 + parent: 407 + type: Transform + - uid: 289 + components: + - pos: -7.5,-7.5 + parent: 407 + type: Transform + - uid: 290 + components: + - pos: -7.5,-8.5 + parent: 407 + type: Transform + - uid: 291 + components: + - pos: -8.5,-8.5 + parent: 407 + type: Transform + - uid: 292 + components: + - pos: -9.5,-8.5 + parent: 407 + type: Transform + - uid: 293 + components: + - pos: -6.5,-8.5 + parent: 407 + type: Transform + - uid: 294 + components: + - pos: -5.5,-8.5 + parent: 407 + type: Transform + - uid: 295 + components: + - pos: -4.5,-8.5 + parent: 407 + type: Transform + - uid: 296 + components: + - pos: -4.5,-9.5 + parent: 407 + type: Transform + - uid: 297 + components: + - pos: 10.5,-8.5 + parent: 407 + type: Transform + - uid: 298 + components: + - pos: 10.5,-10.5 + parent: 407 + type: Transform + - uid: 299 + components: + - pos: 10.5,-11.5 + parent: 407 + type: Transform + - uid: 300 + components: + - pos: 10.5,-9.5 + parent: 407 + type: Transform + - uid: 301 + components: + - pos: 10.5,-12.5 + parent: 407 + type: Transform + - uid: 302 + components: + - pos: 9.5,-9.5 + parent: 407 + type: Transform + - uid: 303 + components: + - pos: 8.5,-9.5 + parent: 407 + type: Transform + - uid: 304 + components: + - pos: 8.5,-8.5 + parent: 407 + type: Transform + - uid: 305 + components: + - pos: 8.5,-7.5 + parent: 407 + type: Transform + - uid: 306 + components: + - pos: 8.5,-6.5 + parent: 407 + type: Transform + - uid: 307 + components: + - pos: 8.5,-5.5 + parent: 407 + type: Transform + - uid: 308 + components: + - pos: 9.5,-6.5 + parent: 407 + type: Transform + - uid: 309 + components: + - pos: 10.5,-6.5 + parent: 407 + type: Transform + - uid: 310 + components: + - pos: 11.5,-6.5 + parent: 407 + type: Transform + - uid: 311 + components: + - pos: 7.5,-7.5 + parent: 407 + type: Transform + - uid: 312 + components: + - pos: 6.5,-7.5 + parent: 407 + type: Transform + - uid: 313 + components: + - pos: 5.5,-7.5 + parent: 407 + type: Transform + - uid: 314 + components: + - pos: 4.5,-7.5 + parent: 407 + type: Transform + - uid: 315 + components: + - pos: 3.5,8.5 + parent: 407 + type: Transform + - uid: 316 + components: + - pos: 4.5,8.5 + parent: 407 + type: Transform + - uid: 317 + components: + - pos: 5.5,8.5 + parent: 407 + type: Transform + - uid: 318 + components: + - pos: 5.5,7.5 + parent: 407 + type: Transform + - uid: 319 + components: + - pos: 5.5,6.5 + parent: 407 + type: Transform + - uid: 320 + components: + - pos: 5.5,5.5 + parent: 407 + type: Transform + - uid: 321 + components: + - pos: 5.5,4.5 + parent: 407 + type: Transform + - uid: 322 + components: + - pos: 5.5,3.5 + parent: 407 + type: Transform + - uid: 323 + components: + - pos: 6.5,7.5 + parent: 407 + type: Transform + - uid: 324 + components: + - pos: 4.5,4.5 + parent: 407 + type: Transform + - uid: 325 + components: + - pos: 3.5,4.5 + parent: 407 + type: Transform +- proto: CableHV + entities: + - uid: 223 + components: + - pos: 2.5,3.5 + parent: 407 + type: Transform + - uid: 224 + components: + - pos: 2.5,4.5 + parent: 407 + type: Transform + - uid: 225 + components: + - pos: 2.5,5.5 + parent: 407 + type: Transform + - uid: 226 + components: + - pos: 2.5,6.5 + parent: 407 + type: Transform + - uid: 237 + components: + - pos: 3.5,3.5 + parent: 407 + type: Transform + - uid: 238 + components: + - pos: 4.5,3.5 + parent: 407 + type: Transform + - uid: 239 + components: + - pos: 5.5,3.5 + parent: 407 + type: Transform + - uid: 240 + components: + - pos: 5.5,2.5 + parent: 407 + type: Transform +- proto: CableMV + entities: + - uid: 25 + components: + - pos: 5.5,1.5 + parent: 407 + type: Transform + - uid: 232 + components: + - pos: 5.5,6.5 + parent: 407 + type: Transform + - uid: 233 + components: + - pos: 5.5,5.5 + parent: 407 + type: Transform + - uid: 234 + components: + - pos: 5.5,4.5 + parent: 407 + type: Transform + - uid: 235 + components: + - pos: 5.5,3.5 + parent: 407 + type: Transform + - uid: 236 + components: + - pos: 5.5,2.5 + parent: 407 + type: Transform + - uid: 241 + components: + - pos: 5.5,7.5 + parent: 407 + type: Transform + - uid: 242 + components: + - pos: 5.5,8.5 + parent: 407 + type: Transform + - uid: 243 + components: + - pos: 4.5,8.5 + parent: 407 + type: Transform + - uid: 244 + components: + - pos: 3.5,8.5 + parent: 407 + type: Transform + - uid: 245 + components: + - pos: 5.5,0.5 + parent: 407 + type: Transform + - uid: 246 + components: + - pos: 6.5,0.5 + parent: 407 + type: Transform + - uid: 247 + components: + - pos: 6.5,-0.5 + parent: 407 + type: Transform + - uid: 248 + components: + - pos: 6.5,-1.5 + parent: 407 + type: Transform + - uid: 249 + components: + - pos: 7.5,-1.5 + parent: 407 + type: Transform + - uid: 250 + components: + - pos: 7.5,-2.5 + parent: 407 + type: Transform + - uid: 252 + components: + - pos: 7.5,-3.5 + parent: 407 + type: Transform + - uid: 253 + components: + - pos: 7.5,-4.5 + parent: 407 + type: Transform + - uid: 254 + components: + - pos: 7.5,-5.5 + parent: 407 + type: Transform + - uid: 255 + components: + - pos: 7.5,-6.5 + parent: 407 + type: Transform + - uid: 256 + components: + - pos: 7.5,-7.5 + parent: 407 + type: Transform + - uid: 257 + components: + - pos: 8.5,-7.5 + parent: 407 + type: Transform + - uid: 258 + components: + - pos: 8.5,-8.5 + parent: 407 + type: Transform + - uid: 259 + components: + - pos: 8.5,-9.5 + parent: 407 + type: Transform + - uid: 260 + components: + - pos: 9.5,-9.5 + parent: 407 + type: Transform + - uid: 261 + components: + - pos: 10.5,-9.5 + parent: 407 + type: Transform + - uid: 262 + components: + - pos: 10.5,-8.5 + parent: 407 + type: Transform + - uid: 266 + components: + - pos: 6.5,-7.5 + parent: 407 + type: Transform + - uid: 267 + components: + - pos: 5.5,-7.5 + parent: 407 + type: Transform + - uid: 268 + components: + - pos: 4.5,-7.5 + parent: 407 + type: Transform + - uid: 269 + components: + - pos: 3.5,-7.5 + parent: 407 + type: Transform + - uid: 270 + components: + - pos: 2.5,-7.5 + parent: 407 + type: Transform + - uid: 271 + components: + - pos: 2.5,-8.5 + parent: 407 + type: Transform + - uid: 272 + components: + - pos: 2.5,-9.5 + parent: 407 + type: Transform + - uid: 273 + components: + - pos: 2.5,-10.5 + parent: 407 + type: Transform + - uid: 274 + components: + - pos: 1.5,-10.5 + parent: 407 + type: Transform + - uid: 275 + components: + - pos: 0.5,-10.5 + parent: 407 + type: Transform + - uid: 276 + components: + - pos: 0.5,-9.5 + parent: 407 + type: Transform + - uid: 277 + components: + - pos: -0.5,-9.5 + parent: 407 + type: Transform + - uid: 278 + components: + - pos: -1.5,-9.5 + parent: 407 + type: Transform + - uid: 279 + components: + - pos: -2.5,-9.5 + parent: 407 + type: Transform + - uid: 280 + components: + - pos: -3.5,-9.5 + parent: 407 + type: Transform + - uid: 281 + components: + - pos: -4.5,-9.5 + parent: 407 + type: Transform + - uid: 282 + components: + - pos: -5.5,-9.5 + parent: 407 + type: Transform + - uid: 283 + components: + - pos: -6.5,-9.5 + parent: 407 + type: Transform + - uid: 284 + components: + - pos: -7.5,-9.5 + parent: 407 + type: Transform + - uid: 285 + components: + - pos: -7.5,-8.5 + parent: 407 + type: Transform + - uid: 286 + components: + - pos: -7.5,-7.5 + parent: 407 + type: Transform + - uid: 287 + components: + - pos: -7.5,-6.5 + parent: 407 + type: Transform +- proto: CableTerminal + entities: + - uid: 231 + components: + - pos: 2.5,4.5 + parent: 407 + type: Transform +- proto: CarpetSBlue + entities: + - uid: 175 + components: + - pos: -6.5,-7.5 + parent: 407 + type: Transform + - uid: 176 + components: + - pos: -6.5,-8.5 + parent: 407 + type: Transform + - uid: 215 + components: + - pos: -5.5,-7.5 + parent: 407 + type: Transform + - uid: 326 + components: + - pos: -5.5,-8.5 + parent: 407 + type: Transform +- proto: Catwalk + entities: + - uid: 62 + components: + - pos: -2.5,6.5 + parent: 407 + type: Transform + - uid: 63 + components: + - pos: -2.5,5.5 + parent: 407 + type: Transform + - uid: 64 + components: + - pos: -2.5,4.5 + parent: 407 + type: Transform + - uid: 65 + components: + - pos: -1.5,6.5 + parent: 407 + type: Transform + - uid: 66 + components: + - pos: -1.5,5.5 + parent: 407 + type: Transform + - uid: 67 + components: + - pos: -1.5,4.5 + parent: 407 + type: Transform + - uid: 68 + components: + - pos: -3.5,4.5 + parent: 407 + type: Transform + - uid: 251 + components: + - pos: 2.5,-8.5 + parent: 407 + type: Transform + - uid: 263 + components: + - pos: 2.5,-7.5 + parent: 407 + type: Transform + - uid: 264 + components: + - pos: 2.5,-6.5 + parent: 407 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 205 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-10.5 + parent: 407 + type: Transform + - uid: 206 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-10.5 + parent: 407 + type: Transform +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 161 + components: + - pos: -10.5,-8.5 + parent: 407 + type: Transform +- proto: ClosetL3ScienceFilled + entities: + - uid: 354 + components: + - pos: 7.5,-9.5 + parent: 407 + type: Transform +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 196 + components: + - pos: 7.5,4.5 + parent: 407 + type: Transform +- proto: ClothingHeadHelmetAncient + entities: + - uid: 212 + components: + - pos: -7.681996,-9.518968 + parent: 407 + type: Transform +- proto: ClothingOuterHardsuitAncientEVA + entities: + - uid: 211 + components: + - pos: -7.353871,-9.425218 + parent: 407 + type: Transform +- proto: ClothingUniformJumpsuitEngineeringHazard + entities: + - uid: 356 + components: + - pos: 4.4933925,8.497718 + parent: 407 + type: Transform +- proto: ComfyChair + entities: + - uid: 333 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 407 + type: Transform +- proto: ComputerAnalysisConsole + entities: + - uid: 352 + components: + - pos: 11.5,-9.5 + parent: 407 + type: Transform +- proto: CrateAirlockKit + entities: + - uid: 357 + components: + - pos: 3.5,3.5 + parent: 407 + type: Transform +- proto: CrateFilledSpawner + entities: + - uid: 88 + components: + - pos: -4.5,6.5 + parent: 407 + type: Transform + - uid: 89 + components: + - pos: -3.5,6.5 + parent: 407 + type: Transform +- proto: d4Dice + entities: + - uid: 398 + components: + - pos: -6.5109205,-8.608973 + parent: 407 + type: Transform +- proto: Dresser + entities: + - uid: 174 + components: + - pos: -4.5,-7.5 + parent: 407 + type: Transform +- proto: GravityGeneratorMini + entities: + - uid: 191 + components: + - pos: 5.5,3.5 + parent: 407 + type: Transform +- proto: Grille + entities: + - uid: 20 + components: + - pos: 1.5,5.5 + parent: 407 + type: Transform + - uid: 21 + components: + - pos: 1.5,4.5 + parent: 407 + type: Transform + - uid: 26 + components: + - pos: 1.5,6.5 + parent: 407 + type: Transform + - uid: 27 + components: + - pos: 7.5,6.5 + parent: 407 + type: Transform + - uid: 28 + components: + - pos: 1.5,7.5 + parent: 407 + type: Transform + - uid: 50 + components: + - pos: 2.5,2.5 + parent: 407 + type: Transform + - uid: 51 + components: + - pos: 1.5,2.5 + parent: 407 + type: Transform + - uid: 52 + components: + - pos: 1.5,3.5 + parent: 407 + type: Transform + - uid: 53 + components: + - pos: 2.5,7.5 + parent: 407 + type: Transform + - uid: 69 + components: + - pos: -3.5,-7.5 + parent: 407 + type: Transform + - uid: 70 + components: + - pos: -3.5,-8.5 + parent: 407 + type: Transform + - uid: 73 + components: + - pos: 8.5,-12.5 + parent: 407 + type: Transform + - uid: 74 + components: + - pos: 9.5,-12.5 + parent: 407 + type: Transform + - uid: 75 + components: + - pos: 10.5,-12.5 + parent: 407 + type: Transform + - uid: 77 + components: + - pos: 12.5,-12.5 + parent: 407 + type: Transform + - uid: 78 + components: + - pos: 11.5,-12.5 + parent: 407 + type: Transform + - uid: 139 + components: + - pos: 12.5,-8.5 + parent: 407 + type: Transform + - uid: 378 + components: + - pos: 5.5,5.5 + parent: 407 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 328 + components: + - pos: -6.5,-10.5 + parent: 407 + type: Transform +- proto: LockerChemistryFilled + entities: + - uid: 195 + components: + - pos: 11.5,-5.5 + parent: 407 + type: Transform +- proto: MachineAPE + entities: + - uid: 399 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 407 + type: Transform +- proto: Pickaxe + entities: + - uid: 355 + components: + - pos: 8.530472,8.534576 + parent: 407 + type: Transform +- proto: PlasmaOre1 + entities: + - uid: 397 + components: + - pos: -9.462246,2.5242848 + parent: 407 + type: Transform +- proto: PlasmaTankFilled + entities: + - uid: 396 + components: + - pos: 13.16939,-9.55732 + parent: 407 + type: Transform +- proto: PlasmaWindow + entities: + - uid: 76 + components: + - pos: 10.5,-12.5 + parent: 407 + type: Transform + - uid: 79 + components: + - pos: 9.5,-12.5 + parent: 407 + type: Transform + - uid: 80 + components: + - pos: 12.5,-12.5 + parent: 407 + type: Transform + - uid: 81 + components: + - pos: 8.5,-12.5 + parent: 407 + type: Transform + - uid: 82 + components: + - pos: 11.5,-12.5 + parent: 407 + type: Transform +- proto: PlushieLamp + entities: + - uid: 330 + components: + - pos: -4.4913177,-9.236341 + parent: 407 + type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 208 + components: + - pos: 2.5,6.5 + parent: 407 + type: Transform +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 341 + components: + - pos: -3.5,-9.5 + parent: 407 + type: Transform +- proto: PoweredlightExterior + entities: + - uid: 165 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-4.5 + parent: 407 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredlightSodium + entities: + - uid: 216 + components: + - pos: 5.5,1.5 + parent: 407 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLight + entities: + - uid: 162 + components: + - pos: 11.5,-9.5 + parent: 407 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 167 + components: + - pos: 4.5,6.5 + parent: 407 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 168 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-7.5 + parent: 407 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 170 + components: + - rot: 3.141592653589793 rad + pos: 6.5,8.5 + parent: 407 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 171 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-9.5 + parent: 407 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: Rack + entities: + - uid: 189 + components: + - pos: 4.5,8.5 + parent: 407 + type: Transform + - uid: 192 + components: + - pos: -7.5,-9.5 + parent: 407 + type: Transform + - uid: 193 + components: + - pos: 8.5,8.5 + parent: 407 + type: Transform + - uid: 209 + components: + - pos: 6.5,-5.5 + parent: 407 + type: Transform + - uid: 210 + components: + - pos: 6.5,-6.5 + parent: 407 + type: Transform +- proto: RandomArtifactSpawner + entities: + - uid: 353 + components: + - pos: 10.5,-11.5 + parent: 407 + type: Transform +- proto: ReinforcedPlasmaWindow + entities: + - uid: 185 + components: + - pos: 12.5,-8.5 + parent: 407 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 71 + components: + - pos: -3.5,-7.5 + parent: 407 + type: Transform + - uid: 72 + components: + - pos: -3.5,-8.5 + parent: 407 + type: Transform +- proto: SalvageCanisterSpawner + entities: + - uid: 197 + components: + - pos: 7.5,9.5 + parent: 407 + type: Transform + - uid: 201 + components: + - pos: 12.5,-6.5 + parent: 407 + type: Transform + - uid: 202 + components: + - pos: 12.5,-7.5 + parent: 407 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 198 + components: + - pos: 4.5,3.5 + parent: 407 + type: Transform + - uid: 199 + components: + - pos: 7.5,-4.5 + parent: 407 + type: Transform + - uid: 200 + components: + - pos: 8.5,-4.5 + parent: 407 + type: Transform + - uid: 203 + components: + - pos: 7.5,-10.5 + parent: 407 + type: Transform +- proto: SalvageMobSpawner + entities: + - uid: 186 + components: + - pos: -2.5,5.5 + parent: 407 + type: Transform + - uid: 187 + components: + - pos: -4.5,4.5 + parent: 407 + type: Transform +- proto: SalvageMobSpawner75 + entities: + - uid: 56 + components: + - pos: -8.5,2.5 + parent: 407 + type: Transform + - uid: 404 + components: + - pos: 10.5,-10.5 + parent: 407 + type: Transform + - uid: 405 + components: + - pos: 6.5,8.5 + parent: 407 + type: Transform +- proto: SalvagePartsSpawnerMid + entities: + - uid: 337 + components: + - pos: 6.5,-5.5 + parent: 407 + type: Transform +- proto: SalvagePartsSpawnerSubSpace + entities: + - uid: 338 + components: + - pos: 6.5,-6.5 + parent: 407 + type: Transform +- proto: SalvagePartsT3T4Spawner + entities: + - uid: 336 + components: + - pos: 11.5,-7.5 + parent: 407 + type: Transform +- proto: SheetPlasma + entities: + - uid: 166 + components: + - pos: -5.5267916,8.533299 + parent: 407 + type: Transform +- proto: SheetPlasma1 + entities: + - uid: 384 + components: + - pos: 6.479499,3.526761 + parent: 407 + type: Transform + - uid: 385 + components: + - pos: 6.479499,3.526761 + parent: 407 + type: Transform + - uid: 386 + components: + - pos: 6.479499,3.526761 + parent: 407 + type: Transform + - uid: 387 + components: + - pos: 6.479499,3.526761 + parent: 407 + type: Transform + - uid: 388 + components: + - pos: 6.479499,3.526761 + parent: 407 + type: Transform +- proto: SheetRPGlass1 + entities: + - uid: 389 + components: + - pos: 13.522866,-9.46357 + parent: 407 + type: Transform + - uid: 390 + components: + - pos: 13.522866,-9.46357 + parent: 407 + type: Transform + - uid: 391 + components: + - pos: 13.522866,-9.46357 + parent: 407 + type: Transform + - uid: 392 + components: + - pos: 13.522866,-9.46357 + parent: 407 + type: Transform + - uid: 393 + components: + - pos: 13.522866,-9.46357 + parent: 407 + type: Transform + - uid: 394 + components: + - pos: 13.522866,-9.46357 + parent: 407 + type: Transform +- proto: SignalButton + entities: + - uid: 380 + components: + - pos: 12.5,-9.5 + parent: 407 + type: Transform + - linkedPorts: + 136: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignSecureSmall + entities: + - uid: 382 + components: + - pos: -8.5,-5.5 + parent: 407 + type: Transform + - uid: 383 + components: + - pos: 7.5,-3.5 + parent: 407 + type: Transform +- proto: SMESBasic + entities: + - uid: 49 + components: + - pos: 2.5,3.5 + parent: 407 + type: Transform +- proto: SmokingPipeFilledTobacco + entities: + - uid: 334 + components: + - pos: -7.365794,-7.4852543 + parent: 407 + type: Transform +- proto: SpaceTickSpawner + entities: + - uid: 400 + components: + - pos: -5.5,-6.5 + parent: 407 + type: Transform + - uid: 401 + components: + - pos: -6.5,-9.5 + parent: 407 + type: Transform + - uid: 402 + components: + - pos: 9.5,-10.5 + parent: 407 + type: Transform + - uid: 403 + components: + - pos: 12.5,-10.5 + parent: 407 + type: Transform +- proto: SubstationWallBasic + entities: + - uid: 227 + components: + - pos: 5.5,2.5 + parent: 407 + type: Transform +- proto: Table + entities: + - uid: 169 + components: + - pos: 6.5,6.5 + parent: 407 + type: Transform + - uid: 190 + components: + - pos: 10.5,-9.5 + parent: 407 + type: Transform + - uid: 194 + components: + - pos: 13.5,-9.5 + parent: 407 + type: Transform +- proto: TableCarpet + entities: + - uid: 329 + components: + - pos: -4.5,-9.5 + parent: 407 + type: Transform +- proto: TableGlass + entities: + - uid: 342 + components: + - pos: -7.5,-7.5 + parent: 407 + type: Transform +- proto: ToiletEmpty + entities: + - uid: 327 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 407 + type: Transform +- proto: TrashBananaPeel + entities: + - uid: 379 + components: + - pos: 5.535487,6.4609785 + parent: 407 + type: Transform +- proto: WallSolid + entities: + - uid: 1 + components: + - pos: -9.5,0.5 + parent: 407 + type: Transform + - uid: 2 + components: + - pos: -7.5,2.5 + parent: 407 + type: Transform + - uid: 3 + components: + - pos: -10.5,4.5 + parent: 407 + type: Transform + - uid: 4 + components: + - pos: -5.5,4.5 + parent: 407 + type: Transform + - uid: 5 + components: + - pos: -5.5,5.5 + parent: 407 + type: Transform + - uid: 6 + components: + - pos: -5.5,6.5 + parent: 407 + type: Transform + - uid: 7 + components: + - pos: -5.5,7.5 + parent: 407 + type: Transform + - uid: 8 + components: + - pos: -4.5,7.5 + parent: 407 + type: Transform + - uid: 9 + components: + - pos: -3.5,7.5 + parent: 407 + type: Transform + - uid: 10 + components: + - pos: -7.5,7.5 + parent: 407 + type: Transform + - uid: 11 + components: + - pos: -2.5,8.5 + parent: 407 + type: Transform + - uid: 12 + components: + - pos: -2.5,7.5 + parent: 407 + type: Transform + - uid: 13 + components: + - pos: 3.5,8.5 + parent: 407 + type: Transform + - uid: 14 + components: + - pos: -4.5,-4.5 + parent: 407 + type: Transform + - uid: 15 + components: + - pos: 4.5,-4.5 + parent: 407 + type: Transform + - uid: 16 + components: + - pos: 7.5,-3.5 + parent: 407 + type: Transform + - uid: 17 + components: + - pos: -8.5,-5.5 + parent: 407 + type: Transform + - uid: 18 + components: + - pos: 5.5,-10.5 + parent: 407 + type: Transform + - uid: 19 + components: + - pos: -3.5,-9.5 + parent: 407 + type: Transform + - uid: 29 + components: + - pos: 5.5,2.5 + parent: 407 + type: Transform + - uid: 140 + components: + - pos: 11.5,-8.5 + parent: 407 + type: Transform +- proto: WarningPlasma + entities: + - uid: 395 + components: + - pos: 11.5,-8.5 + parent: 407 + type: Transform +- proto: WeaponCapacitorRecharger + entities: + - uid: 351 + components: + - pos: 10.5,-9.5 + parent: 407 + type: Transform +- proto: WelderIndustrial + entities: + - uid: 331 + components: + - pos: 6.535128,6.4838986 + parent: 407 + type: Transform +- proto: WeldingFuelTankFull + entities: + - uid: 332 + components: + - pos: 5.5,9.5 + parent: 407 + type: Transform +- proto: Window + entities: + - uid: 188 + components: + - pos: 1.5,2.5 + parent: 407 + type: Transform + - uid: 204 + components: + - pos: 2.5,2.5 + parent: 407 + type: Transform + - uid: 207 + components: + - pos: 7.5,6.5 + parent: 407 + type: Transform + - uid: 217 + components: + - pos: 1.5,3.5 + parent: 407 + type: Transform + - uid: 218 + components: + - pos: 1.5,4.5 + parent: 407 + type: Transform + - uid: 219 + components: + - pos: 1.5,5.5 + parent: 407 + type: Transform + - uid: 220 + components: + - pos: 1.5,6.5 + parent: 407 + type: Transform + - uid: 221 + components: + - pos: 1.5,7.5 + parent: 407 + type: Transform + - uid: 222 + components: + - pos: 2.5,7.5 + parent: 407 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-asteroid-large-01.yml b/Resources/Maps/Salvage/DeltaV/DV-asteroid-large-01.yml new file mode 100644 index 0000000000..3371f803dd --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-asteroid-large-01.yml @@ -0,0 +1,4136 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand + 105: FloorWhiteMono + 109: FloorWhitePlastic +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + - pos: 0.5167553,0.5923884 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: [] + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 65535 + 0,-1: + 0: 65535 + -1,0: + 0: 65535 + 0,0: + 0: 65535 + -4,-2: + 0: 61166 + -4,-1: + 0: 61166 + -4,-3: + 0: 52424 + -4,-4: + 0: 32768 + -3,-4: + 0: 65472 + -3,-3: + 0: 65535 + -3,-2: + 0: 65535 + -3,-1: + 0: 65535 + -2,-4: + 0: 65534 + -2,-3: + 0: 65535 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-4: + 0: 65535 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + 0,-4: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 1,-4: + 0: 65523 + 1,-3: + 0: 65535 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-4: + 0: 63248 + 2,-3: + 0: 65535 + 2,-2: + 0: 65535 + 2,-1: + 0: 65535 + 3,-3: + 0: 4368 + 3,-2: + 0: 13107 + 3,-1: + 0: 13107 + -4,0: + 0: 61166 + -4,1: + 0: 52430 + -4,2: + 0: 136 + -3,0: + 0: 65535 + -3,1: + 0: 65535 + -3,2: + 0: 53247 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 65535 + -2,3: + 0: 14 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -1,3: + 0: 15 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 15 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 65535 + 1,3: + 0: 3 + 2,0: + 0: 65535 + 2,1: + 0: 65535 + 2,2: + 0: 6143 + 3,0: + 0: 13107 + 3,1: + 0: 4371 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - type: SpreaderGrid +- proto: AirlockScienceLocked + entities: + - uid: 280 + components: + - pos: -7.5,2.5 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 613 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 1 + type: Transform +- proto: AsteroidAltRock + entities: + - uid: 2 + components: + - pos: -5.5,-14.5 + parent: 1 + type: Transform + - uid: 3 + components: + - pos: 8.5,11.5 + parent: 1 + type: Transform + - uid: 4 + components: + - pos: 7.5,11.5 + parent: 1 + type: Transform + - uid: 5 + components: + - pos: 6.5,11.5 + parent: 1 + type: Transform + - uid: 6 + components: + - pos: 5.5,12.5 + parent: 1 + type: Transform + - uid: 7 + components: + - pos: 4.5,12.5 + parent: 1 + type: Transform + - uid: 8 + components: + - pos: 3.5,12.5 + parent: 1 + type: Transform + - uid: 9 + components: + - pos: -13.5,3.5 + parent: 1 + type: Transform + - uid: 10 + components: + - pos: -8.5,11.5 + parent: 1 + type: Transform + - uid: 11 + components: + - pos: -9.5,11.5 + parent: 1 + type: Transform + - uid: 12 + components: + - pos: -10.5,10.5 + parent: 1 + type: Transform + - uid: 13 + components: + - pos: -11.5,10.5 + parent: 1 + type: Transform + - uid: 14 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 15 + components: + - pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 16 + components: + - pos: -4.5,12.5 + parent: 1 + type: Transform + - uid: 17 + components: + - pos: -5.5,12.5 + parent: 1 + type: Transform + - uid: 18 + components: + - pos: -13.5,-6.5 + parent: 1 + type: Transform + - uid: 19 + components: + - pos: -13.5,-7.5 + parent: 1 + type: Transform + - uid: 20 + components: + - pos: -3.5,-15.5 + parent: 1 + type: Transform + - uid: 21 + components: + - pos: -2.5,-15.5 + parent: 1 + type: Transform + - uid: 22 + components: + - pos: 4.5,-15.5 + parent: 1 + type: Transform + - uid: 23 + components: + - pos: 7.5,-14.5 + parent: 1 + type: Transform + - uid: 24 + components: + - pos: 0.5,-15.5 + parent: 1 + type: Transform + - uid: 25 + components: + - pos: 1.5,-15.5 + parent: 1 + type: Transform + - uid: 26 + components: + - pos: 10.5,-13.5 + parent: 1 + type: Transform + - uid: 27 + components: + - pos: 11.5,-12.5 + parent: 1 + type: Transform + - uid: 28 + components: + - pos: 13.5,-7.5 + parent: 1 + type: Transform + - uid: 29 + components: + - pos: 13.5,-6.5 + parent: 1 + type: Transform + - uid: 30 + components: + - pos: 13.5,-1.5 + parent: 1 + type: Transform + - uid: 31 + components: + - pos: 13.5,1.5 + parent: 1 + type: Transform + - uid: 32 + components: + - pos: 13.5,3.5 + parent: 1 + type: Transform + - uid: 33 + components: + - pos: 13.5,4.5 + parent: 1 + type: Transform + - uid: 34 + components: + - pos: -6.5,-15.5 + parent: 1 + type: Transform + - uid: 35 + components: + - pos: -5.5,-15.5 + parent: 1 + type: Transform + - uid: 36 + components: + - pos: -4.5,-15.5 + parent: 1 + type: Transform + - uid: 37 + components: + - pos: -14.5,0.5 + parent: 1 + type: Transform + - uid: 38 + components: + - pos: -14.5,-0.5 + parent: 1 + type: Transform + - uid: 39 + components: + - pos: -14.5,-1.5 + parent: 1 + type: Transform + - uid: 40 + components: + - pos: -14.5,-2.5 + parent: 1 + type: Transform + - uid: 41 + components: + - pos: -14.5,-3.5 + parent: 1 + type: Transform + - uid: 42 + components: + - pos: -14.5,4.5 + parent: 1 + type: Transform + - uid: 43 + components: + - pos: -14.5,3.5 + parent: 1 + type: Transform + - uid: 44 + components: + - pos: -14.5,2.5 + parent: 1 + type: Transform + - uid: 45 + components: + - pos: -14.5,1.5 + parent: 1 + type: Transform + - uid: 46 + components: + - pos: -12.5,8.5 + parent: 1 + type: Transform + - uid: 47 + components: + - pos: -13.5,7.5 + parent: 1 + type: Transform + - uid: 48 + components: + - pos: -13.5,6.5 + parent: 1 + type: Transform + - uid: 49 + components: + - pos: -13.5,5.5 + parent: 1 + type: Transform + - uid: 50 + components: + - pos: -13.5,4.5 + parent: 1 + type: Transform + - uid: 51 + components: + - pos: -13.5,2.5 + parent: 1 + type: Transform + - uid: 52 + components: + - pos: -13.5,1.5 + parent: 1 + type: Transform + - uid: 53 + components: + - pos: 2.5,12.5 + parent: 1 + type: Transform + - uid: 54 + components: + - pos: 1.5,12.5 + parent: 1 + type: Transform + - uid: 55 + components: + - pos: 0.5,12.5 + parent: 1 + type: Transform + - uid: 56 + components: + - pos: -12.5,9.5 + parent: 1 + type: Transform + - uid: 57 + components: + - pos: -2.5,12.5 + parent: 1 + type: Transform + - uid: 58 + components: + - pos: -3.5,12.5 + parent: 1 + type: Transform + - uid: 59 + components: + - pos: -6.5,12.5 + parent: 1 + type: Transform + - uid: 60 + components: + - pos: -7.5,11.5 + parent: 1 + type: Transform + - uid: 61 + components: + - pos: -12.5,-8.5 + parent: 1 + type: Transform + - uid: 62 + components: + - pos: -12.5,-9.5 + parent: 1 + type: Transform + - uid: 63 + components: + - pos: -1.5,-15.5 + parent: 1 + type: Transform + - uid: 64 + components: + - pos: -0.5,-15.5 + parent: 1 + type: Transform + - uid: 65 + components: + - pos: 5.5,-15.5 + parent: 1 + type: Transform + - uid: 66 + components: + - pos: 8.5,-14.5 + parent: 1 + type: Transform + - uid: 67 + components: + - pos: 2.5,-15.5 + parent: 1 + type: Transform + - uid: 68 + components: + - pos: 11.5,-11.5 + parent: 1 + type: Transform + - uid: 69 + components: + - pos: 12.5,-10.5 + parent: 1 + type: Transform + - uid: 70 + components: + - pos: 13.5,-5.5 + parent: 1 + type: Transform + - uid: 71 + components: + - pos: 13.5,-4.5 + parent: 1 + type: Transform + - uid: 72 + components: + - pos: 13.5,-0.5 + parent: 1 + type: Transform + - uid: 73 + components: + - pos: 13.5,2.5 + parent: 1 + type: Transform + - uid: 74 + components: + - pos: 12.5,5.5 + parent: 1 + type: Transform + - uid: 75 + components: + - pos: 12.5,6.5 + parent: 1 + type: Transform + - uid: 76 + components: + - pos: 11.5,8.5 + parent: 1 + type: Transform + - uid: 77 + components: + - pos: 11.5,9.5 + parent: 1 + type: Transform + - uid: 78 + components: + - pos: -14.5,-4.5 + parent: 1 + type: Transform + - uid: 79 + components: + - pos: -14.5,-5.5 + parent: 1 + type: Transform + - uid: 80 + components: + - pos: -12.5,-11.5 + parent: 1 + type: Transform + - uid: 81 + components: + - pos: -12.5,-12.5 + parent: 1 + type: Transform + - uid: 82 + components: + - pos: -9.5,-14.5 + parent: 1 + type: Transform + - uid: 83 + components: + - pos: -8.5,-14.5 + parent: 1 + type: Transform + - uid: 84 + components: + - pos: -13.5,-8.5 + parent: 1 + type: Transform + - uid: 85 + components: + - pos: -13.5,-9.5 + parent: 1 + type: Transform + - uid: 86 + components: + - pos: -10.5,-12.5 + parent: 1 + type: Transform + - uid: 87 + components: + - pos: -9.5,-13.5 + parent: 1 + type: Transform + - uid: 88 + components: + - pos: -8.5,-13.5 + parent: 1 + type: Transform + - uid: 89 + components: + - pos: -7.5,-13.5 + parent: 1 + type: Transform + - uid: 90 + components: + - pos: -6.5,-14.5 + parent: 1 + type: Transform + - uid: 91 + components: + - pos: -13.5,0.5 + parent: 1 + type: Transform + - uid: 92 + components: + - pos: -13.5,-0.5 + parent: 1 + type: Transform + - uid: 93 + components: + - pos: -13.5,-1.5 + parent: 1 + type: Transform + - uid: 94 + components: + - pos: -13.5,-2.5 + parent: 1 + type: Transform + - uid: 95 + components: + - pos: -13.5,-3.5 + parent: 1 + type: Transform + - uid: 96 + components: + - pos: -13.5,-4.5 + parent: 1 + type: Transform + - uid: 97 + components: + - pos: -13.5,-5.5 + parent: 1 + type: Transform + - uid: 98 + components: + - pos: -12.5,-10.5 + parent: 1 + type: Transform + - uid: 99 + components: + - pos: -11.5,-11.5 + parent: 1 + type: Transform + - uid: 100 + components: + - pos: -11.5,-12.5 + parent: 1 + type: Transform + - uid: 101 + components: + - pos: 6.5,-14.5 + parent: 1 + type: Transform + - uid: 102 + components: + - pos: 9.5,-13.5 + parent: 1 + type: Transform + - uid: 103 + components: + - pos: 3.5,-15.5 + parent: 1 + type: Transform + - uid: 104 + components: + - pos: 12.5,-9.5 + parent: 1 + type: Transform + - uid: 105 + components: + - pos: 12.5,-8.5 + parent: 1 + type: Transform + - uid: 106 + components: + - pos: 13.5,-3.5 + parent: 1 + type: Transform + - uid: 107 + components: + - pos: 13.5,-2.5 + parent: 1 + type: Transform + - uid: 108 + components: + - pos: 13.5,0.5 + parent: 1 + type: Transform + - uid: 109 + components: + - pos: 12.5,7.5 + parent: 1 + type: Transform + - uid: 110 + components: + - pos: 10.5,10.5 + parent: 1 + type: Transform + - uid: 111 + components: + - pos: 9.5,10.5 + parent: 1 + type: Transform + - uid: 112 + components: + - pos: -14.5,-6.5 + parent: 1 + type: Transform + - uid: 113 + components: + - pos: -14.5,-7.5 + parent: 1 + type: Transform + - uid: 114 + components: + - pos: -11.5,-13.5 + parent: 1 + type: Transform + - uid: 115 + components: + - pos: -10.5,-13.5 + parent: 1 + type: Transform + - uid: 116 + components: + - pos: -7.5,-14.5 + parent: 1 + type: Transform + - uid: 117 + components: + - pos: -13.5,-10.5 + parent: 1 + type: Transform + - uid: 118 + components: + - pos: -4.5,-14.5 + parent: 1 + type: Transform + - uid: 119 + components: + - pos: -3.5,-14.5 + parent: 1 + type: Transform + - uid: 120 + components: + - pos: -2.5,-14.5 + parent: 1 + type: Transform + - uid: 121 + components: + - pos: -1.5,-14.5 + parent: 1 + type: Transform + - uid: 122 + components: + - pos: -0.5,-14.5 + parent: 1 + type: Transform + - uid: 123 + components: + - pos: 0.5,-14.5 + parent: 1 + type: Transform + - uid: 124 + components: + - pos: 1.5,-14.5 + parent: 1 + type: Transform + - uid: 125 + components: + - pos: 2.5,-14.5 + parent: 1 + type: Transform + - uid: 126 + components: + - pos: 3.5,-14.5 + parent: 1 + type: Transform + - uid: 127 + components: + - pos: 4.5,-14.5 + parent: 1 + type: Transform + - uid: 128 + components: + - pos: 5.5,-14.5 + parent: 1 + type: Transform + - uid: 129 + components: + - pos: 6.5,-13.5 + parent: 1 + type: Transform + - uid: 130 + components: + - pos: 7.5,-13.5 + parent: 1 + type: Transform + - uid: 131 + components: + - pos: 8.5,-13.5 + parent: 1 + type: Transform + - uid: 132 + components: + - pos: 9.5,-12.5 + parent: 1 + type: Transform + - uid: 133 + components: + - pos: 10.5,-12.5 + parent: 1 + type: Transform + - uid: 134 + components: + - pos: 10.5,-11.5 + parent: 1 + type: Transform + - uid: 135 + components: + - pos: 11.5,-10.5 + parent: 1 + type: Transform + - uid: 136 + components: + - pos: 11.5,-9.5 + parent: 1 + type: Transform + - uid: 137 + components: + - pos: 11.5,-8.5 + parent: 1 + type: Transform + - uid: 138 + components: + - pos: 12.5,-7.5 + parent: 1 + type: Transform + - uid: 139 + components: + - pos: 12.5,-6.5 + parent: 1 + type: Transform + - uid: 140 + components: + - pos: 12.5,-5.5 + parent: 1 + type: Transform + - uid: 141 + components: + - pos: 12.5,-4.5 + parent: 1 + type: Transform + - uid: 142 + components: + - pos: 12.5,-3.5 + parent: 1 + type: Transform + - uid: 143 + components: + - pos: 12.5,-2.5 + parent: 1 + type: Transform + - uid: 144 + components: + - pos: 12.5,-1.5 + parent: 1 + type: Transform + - uid: 145 + components: + - pos: 12.5,-0.5 + parent: 1 + type: Transform + - uid: 146 + components: + - pos: 12.5,0.5 + parent: 1 + type: Transform + - uid: 147 + components: + - pos: 12.5,1.5 + parent: 1 + type: Transform + - uid: 148 + components: + - pos: 12.5,2.5 + parent: 1 + type: Transform + - uid: 149 + components: + - pos: 12.5,3.5 + parent: 1 + type: Transform + - uid: 150 + components: + - pos: 12.5,4.5 + parent: 1 + type: Transform + - uid: 151 + components: + - pos: 11.5,5.5 + parent: 1 + type: Transform + - uid: 152 + components: + - pos: 11.5,6.5 + parent: 1 + type: Transform + - uid: 153 + components: + - pos: 11.5,7.5 + parent: 1 + type: Transform + - uid: 154 + components: + - pos: 10.5,8.5 + parent: 1 + type: Transform + - uid: 155 + components: + - pos: 10.5,9.5 + parent: 1 + type: Transform + - uid: 156 + components: + - pos: 9.5,9.5 + parent: 1 + type: Transform + - uid: 157 + components: + - pos: 8.5,10.5 + parent: 1 + type: Transform + - uid: 158 + components: + - pos: 7.5,10.5 + parent: 1 + type: Transform + - uid: 159 + components: + - pos: 6.5,10.5 + parent: 1 + type: Transform + - uid: 160 + components: + - pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 161 + components: + - pos: 4.5,11.5 + parent: 1 + type: Transform + - uid: 162 + components: + - pos: 3.5,11.5 + parent: 1 + type: Transform + - uid: 163 + components: + - pos: 2.5,11.5 + parent: 1 + type: Transform + - uid: 164 + components: + - pos: 1.5,11.5 + parent: 1 + type: Transform + - uid: 165 + components: + - pos: 0.5,11.5 + parent: 1 + type: Transform + - uid: 166 + components: + - pos: -0.5,11.5 + parent: 1 + type: Transform + - uid: 167 + components: + - pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 168 + components: + - pos: -2.5,11.5 + parent: 1 + type: Transform + - uid: 169 + components: + - pos: -3.5,11.5 + parent: 1 + type: Transform + - uid: 170 + components: + - pos: -4.5,11.5 + parent: 1 + type: Transform + - uid: 171 + components: + - pos: -5.5,11.5 + parent: 1 + type: Transform + - uid: 172 + components: + - pos: -6.5,11.5 + parent: 1 + type: Transform + - uid: 173 + components: + - pos: -7.5,10.5 + parent: 1 + type: Transform + - uid: 174 + components: + - pos: -8.5,10.5 + parent: 1 + type: Transform + - uid: 175 + components: + - pos: -9.5,10.5 + parent: 1 + type: Transform + - uid: 176 + components: + - pos: -10.5,9.5 + parent: 1 + type: Transform + - uid: 177 + components: + - pos: -11.5,9.5 + parent: 1 + type: Transform + - uid: 178 + components: + - pos: -11.5,8.5 + parent: 1 + type: Transform + - uid: 179 + components: + - pos: -12.5,7.5 + parent: 1 + type: Transform + - uid: 180 + components: + - pos: -12.5,6.5 + parent: 1 + type: Transform + - uid: 181 + components: + - pos: -12.5,5.5 + parent: 1 + type: Transform +- proto: AsteroidAltRockMining + entities: + - uid: 182 + components: + - pos: -12.5,4.5 + parent: 1 + type: Transform + - uid: 183 + components: + - pos: -12.5,3.5 + parent: 1 + type: Transform + - uid: 184 + components: + - pos: -12.5,2.5 + parent: 1 + type: Transform + - uid: 185 + components: + - pos: -12.5,1.5 + parent: 1 + type: Transform + - uid: 186 + components: + - pos: -12.5,0.5 + parent: 1 + type: Transform + - uid: 187 + components: + - pos: -12.5,-0.5 + parent: 1 + type: Transform + - uid: 188 + components: + - pos: -12.5,-1.5 + parent: 1 + type: Transform + - uid: 189 + components: + - pos: -12.5,-2.5 + parent: 1 + type: Transform + - uid: 190 + components: + - pos: -12.5,-3.5 + parent: 1 + type: Transform + - uid: 191 + components: + - pos: -12.5,-4.5 + parent: 1 + type: Transform + - uid: 192 + components: + - pos: -12.5,-5.5 + parent: 1 + type: Transform + - uid: 193 + components: + - pos: -12.5,-6.5 + parent: 1 + type: Transform + - uid: 194 + components: + - pos: -12.5,-7.5 + parent: 1 + type: Transform + - uid: 195 + components: + - pos: -11.5,-8.5 + parent: 1 + type: Transform + - uid: 196 + components: + - pos: -11.5,-9.5 + parent: 1 + type: Transform + - uid: 197 + components: + - pos: -11.5,-10.5 + parent: 1 + type: Transform + - uid: 198 + components: + - pos: -10.5,-11.5 + parent: 1 + type: Transform + - uid: 199 + components: + - pos: -9.5,-12.5 + parent: 1 + type: Transform + - uid: 200 + components: + - pos: -8.5,-12.5 + parent: 1 + type: Transform + - uid: 201 + components: + - pos: -7.5,-12.5 + parent: 1 + type: Transform + - uid: 202 + components: + - pos: -6.5,-13.5 + parent: 1 + type: Transform + - uid: 203 + components: + - pos: -5.5,-13.5 + parent: 1 + type: Transform + - uid: 204 + components: + - pos: -4.5,-13.5 + parent: 1 + type: Transform + - uid: 205 + components: + - pos: -3.5,-13.5 + parent: 1 + type: Transform + - uid: 206 + components: + - pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 207 + components: + - pos: -1.5,-13.5 + parent: 1 + type: Transform + - uid: 208 + components: + - pos: -0.5,-13.5 + parent: 1 + type: Transform + - uid: 209 + components: + - pos: 0.5,-13.5 + parent: 1 + type: Transform + - uid: 210 + components: + - pos: 1.5,-13.5 + parent: 1 + type: Transform + - uid: 211 + components: + - pos: 2.5,-13.5 + parent: 1 + type: Transform + - uid: 212 + components: + - pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 213 + components: + - pos: 4.5,-13.5 + parent: 1 + type: Transform + - uid: 214 + components: + - pos: 5.5,-13.5 + parent: 1 + type: Transform + - uid: 215 + components: + - pos: 6.5,-12.5 + parent: 1 + type: Transform + - uid: 216 + components: + - pos: 7.5,-12.5 + parent: 1 + type: Transform + - uid: 217 + components: + - pos: 8.5,-12.5 + parent: 1 + type: Transform + - uid: 218 + components: + - pos: 9.5,-11.5 + parent: 1 + type: Transform + - uid: 219 + components: + - pos: 10.5,-10.5 + parent: 1 + type: Transform + - uid: 220 + components: + - pos: 10.5,-9.5 + parent: 1 + type: Transform + - uid: 221 + components: + - pos: 10.5,-8.5 + parent: 1 + type: Transform + - uid: 222 + components: + - pos: 11.5,-7.5 + parent: 1 + type: Transform + - uid: 223 + components: + - pos: 11.5,-6.5 + parent: 1 + type: Transform + - uid: 224 + components: + - pos: 11.5,-5.5 + parent: 1 + type: Transform + - uid: 225 + components: + - pos: 11.5,-4.5 + parent: 1 + type: Transform + - uid: 226 + components: + - pos: 11.5,-3.5 + parent: 1 + type: Transform + - uid: 227 + components: + - pos: 11.5,-2.5 + parent: 1 + type: Transform + - uid: 228 + components: + - pos: 11.5,-1.5 + parent: 1 + type: Transform + - uid: 229 + components: + - pos: 11.5,-0.5 + parent: 1 + type: Transform + - uid: 230 + components: + - pos: 11.5,0.5 + parent: 1 + type: Transform + - uid: 231 + components: + - pos: 11.5,1.5 + parent: 1 + type: Transform + - uid: 232 + components: + - pos: 11.5,2.5 + parent: 1 + type: Transform + - uid: 233 + components: + - pos: 11.5,3.5 + parent: 1 + type: Transform + - uid: 234 + components: + - pos: 11.5,4.5 + parent: 1 + type: Transform + - uid: 235 + components: + - pos: 10.5,5.5 + parent: 1 + type: Transform + - uid: 236 + components: + - pos: 10.5,6.5 + parent: 1 + type: Transform + - uid: 237 + components: + - pos: 10.5,7.5 + parent: 1 + type: Transform + - uid: 238 + components: + - pos: 9.5,8.5 + parent: 1 + type: Transform + - uid: 239 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 240 + components: + - pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 241 + components: + - pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 242 + components: + - pos: 5.5,10.5 + parent: 1 + type: Transform + - uid: 243 + components: + - pos: 4.5,10.5 + parent: 1 + type: Transform + - uid: 244 + components: + - pos: 3.5,10.5 + parent: 1 + type: Transform + - uid: 245 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 246 + components: + - pos: 1.5,10.5 + parent: 1 + type: Transform + - uid: 247 + components: + - pos: 0.5,10.5 + parent: 1 + type: Transform + - uid: 248 + components: + - pos: -0.5,10.5 + parent: 1 + type: Transform + - uid: 249 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 250 + components: + - pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 251 + components: + - pos: -3.5,10.5 + parent: 1 + type: Transform + - uid: 252 + components: + - pos: -4.5,10.5 + parent: 1 + type: Transform + - uid: 253 + components: + - pos: -5.5,10.5 + parent: 1 + type: Transform + - uid: 254 + components: + - pos: -6.5,10.5 + parent: 1 + type: Transform + - uid: 255 + components: + - pos: -7.5,9.5 + parent: 1 + type: Transform + - uid: 256 + components: + - pos: -8.5,9.5 + parent: 1 + type: Transform + - uid: 257 + components: + - pos: -9.5,9.5 + parent: 1 + type: Transform + - uid: 258 + components: + - pos: -10.5,8.5 + parent: 1 + type: Transform + - uid: 259 + components: + - pos: -11.5,7.5 + parent: 1 + type: Transform + - uid: 260 + components: + - pos: -11.5,6.5 + parent: 1 + type: Transform + - uid: 261 + components: + - pos: -11.5,5.5 + parent: 1 + type: Transform + - uid: 267 + components: + - pos: -11.5,4.5 + parent: 1 + type: Transform + - uid: 362 + components: + - pos: -10.5,-10.5 + parent: 1 + type: Transform + - uid: 398 + components: + - pos: -10.5,-9.5 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 717 + components: + - pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 718 + components: + - pos: -6.5,3.5 + parent: 1 + type: Transform + - uid: 719 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 720 + components: + - pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 721 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 722 + components: + - pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 723 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 724 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 725 + components: + - pos: -8.5,3.5 + parent: 1 + type: Transform +- proto: ChairOfficeLight + entities: + - uid: 526 + components: + - rot: 1.5707963267948966 rad + pos: -4.101814,4.400777 + parent: 1 + type: Transform +- proto: CrateSurgery + entities: + - uid: 524 + components: + - pos: -6.5,1.5 + parent: 1 + type: Transform +- proto: FloraRockSolid01 + entities: + - uid: 266 + components: + - pos: -8.5,3.5 + parent: 1 + type: Transform +- proto: FloraRockSolid02 + entities: + - uid: 268 + components: + - pos: -9.5,1.5 + parent: 1 + type: Transform +- proto: FloraRockSolid03 + entities: + - uid: 401 + components: + - pos: -8.5,1.5 + parent: 1 + type: Transform + - uid: 541 + components: + - pos: -9.5,3.5 + parent: 1 + type: Transform +- proto: FoodCakeBrainSlice + entities: + - uid: 522 + components: + - pos: -3.5805638,3.6253192 + parent: 1 + type: Transform +- proto: GasPipeBend + entities: + - uid: 734 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + type: Transform +- proto: GasPipeHalf + entities: + - uid: 732 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,1.5 + parent: 1 + type: Transform +- proto: GasPipeStraight + entities: + - uid: 729 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,2.5 + parent: 1 + type: Transform + - uid: 730 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 731 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + type: Transform + - uid: 733 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,2.5 + parent: 1 + type: Transform + - uid: 767 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + type: Transform +- proto: GasVentPump + entities: + - uid: 727 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform +- proto: GasVentScrubber + entities: + - uid: 728 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + type: Transform +- proto: HeadHuman + entities: + - uid: 531 + components: + - rot: -1.5707963267948966 rad + pos: -3.6434805,1.346572 + parent: 1 + type: Transform +- proto: MaintenanceFluffSpawner + entities: + - uid: 763 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 764 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform +- proto: MaintenanceToolSpawner + entities: + - uid: 704 + components: + - pos: -8.5,7.5 + parent: 1 + type: Transform + - uid: 760 + components: + - pos: 1.5,-4.5 + parent: 1 + type: Transform + - uid: 761 + components: + - pos: 8.5,-2.5 + parent: 1 + type: Transform +- proto: MaintenanceWeaponSpawner + entities: + - uid: 754 + components: + - pos: -9.5,2.5 + parent: 1 + type: Transform + - uid: 762 + components: + - pos: 2.5,-11.5 + parent: 1 + type: Transform +- proto: OperatingTable + entities: + - uid: 520 + components: + - pos: -4.5,1.5 + parent: 1 + type: Transform +- proto: OrganHumanKidneys + entities: + - uid: 533 + components: + - rot: -1.5707963267948966 rad + pos: -4.036476,3.6085594 + parent: 1 + type: Transform +- proto: OrganHumanLiver + entities: + - uid: 534 + components: + - pos: -5.6406426,0.5022352 + parent: 1 + type: Transform +- proto: Poweredlight + entities: + - uid: 758 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 759 + components: + - rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredlightExterior + entities: + - uid: 726 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,3.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PuddleTomato + entities: + - uid: 535 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 536 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 537 + components: + - pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 538 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 539 + components: + - pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 540 + components: + - pos: -5.5,0.5 + parent: 1 + type: Transform +- proto: Rack + entities: + - uid: 523 + components: + - pos: -6.5,0.5 + parent: 1 + type: Transform +- proto: RandomArtifactSpawner20 + entities: + - uid: 686 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 743 + components: + - pos: -2.5,-8.5 + parent: 1 + type: Transform + - uid: 744 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform +- proto: RandomItem + entities: + - uid: 317 + components: + - pos: 7.5,-10.5 + parent: 1 + type: Transform + - uid: 405 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 422 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 574 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 644 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 747 + components: + - pos: 2.5,-10.5 + parent: 1 + type: Transform + - uid: 748 + components: + - pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 749 + components: + - pos: -4.5,-9.5 + parent: 1 + type: Transform + - uid: 750 + components: + - pos: -10.5,-2.5 + parent: 1 + type: Transform + - uid: 751 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 752 + components: + - pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 753 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 755 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform +- proto: RandomRockSpawner + entities: + - uid: 262 + components: + - pos: -10.5,-7.5 + parent: 1 + type: Transform + - uid: 263 + components: + - pos: -10.5,-6.5 + parent: 1 + type: Transform + - uid: 264 + components: + - pos: -10.5,-5.5 + parent: 1 + type: Transform + - uid: 265 + components: + - pos: -10.5,-4.5 + parent: 1 + type: Transform + - uid: 269 + components: + - pos: -9.5,-1.5 + parent: 1 + type: Transform + - uid: 271 + components: + - pos: -9.5,-4.5 + parent: 1 + type: Transform + - uid: 272 + components: + - pos: -8.5,-3.5 + parent: 1 + type: Transform + - uid: 273 + components: + - pos: -8.5,0.5 + parent: 1 + type: Transform + - uid: 274 + components: + - pos: -8.5,-1.5 + parent: 1 + type: Transform + - uid: 275 + components: + - pos: -8.5,-2.5 + parent: 1 + type: Transform + - uid: 276 + components: + - pos: -9.5,-5.5 + parent: 1 + type: Transform + - uid: 278 + components: + - pos: 8.5,-9.5 + parent: 1 + type: Transform + - uid: 282 + components: + - pos: 8.5,-8.5 + parent: 1 + type: Transform + - uid: 284 + components: + - pos: 8.5,-10.5 + parent: 1 + type: Transform + - uid: 285 + components: + - pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 286 + components: + - pos: 8.5,-7.5 + parent: 1 + type: Transform + - uid: 287 + components: + - pos: 8.5,-6.5 + parent: 1 + type: Transform + - uid: 288 + components: + - pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 289 + components: + - pos: 7.5,-7.5 + parent: 1 + type: Transform + - uid: 290 + components: + - pos: 7.5,-6.5 + parent: 1 + type: Transform + - uid: 291 + components: + - pos: 9.5,-10.5 + parent: 1 + type: Transform + - uid: 292 + components: + - pos: 9.5,-9.5 + parent: 1 + type: Transform + - uid: 293 + components: + - pos: 9.5,-8.5 + parent: 1 + type: Transform + - uid: 294 + components: + - pos: 9.5,-7.5 + parent: 1 + type: Transform + - uid: 295 + components: + - pos: 9.5,-6.5 + parent: 1 + type: Transform + - uid: 297 + components: + - pos: 9.5,-5.5 + parent: 1 + type: Transform + - uid: 298 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 299 + components: + - pos: -7.5,-5.5 + parent: 1 + type: Transform + - uid: 300 + components: + - pos: -7.5,-4.5 + parent: 1 + type: Transform + - uid: 301 + components: + - pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 302 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 303 + components: + - pos: 2.5,-12.5 + parent: 1 + type: Transform + - uid: 304 + components: + - pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 305 + components: + - pos: 6.5,-7.5 + parent: 1 + type: Transform + - uid: 306 + components: + - pos: -7.5,-1.5 + parent: 1 + type: Transform + - uid: 307 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 308 + components: + - pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 309 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 310 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 311 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 312 + components: + - pos: 7.5,-11.5 + parent: 1 + type: Transform + - uid: 313 + components: + - pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 314 + components: + - pos: -7.5,-7.5 + parent: 1 + type: Transform + - uid: 315 + components: + - pos: 5.5,-4.5 + parent: 1 + type: Transform + - uid: 316 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 318 + components: + - pos: 0.5,-9.5 + parent: 1 + type: Transform + - uid: 319 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 320 + components: + - pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 321 + components: + - pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 322 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 324 + components: + - pos: 1.5,-8.5 + parent: 1 + type: Transform + - uid: 325 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 326 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 327 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 328 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 329 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 330 + components: + - pos: -7.5,-6.5 + parent: 1 + type: Transform + - uid: 331 + components: + - pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 332 + components: + - pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 333 + components: + - pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 334 + components: + - pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 335 + components: + - pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 336 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 337 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 338 + components: + - pos: -2.5,-2.5 + parent: 1 + type: Transform + - uid: 339 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 341 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 342 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 343 + components: + - pos: -0.5,-12.5 + parent: 1 + type: Transform + - uid: 345 + components: + - pos: -4.5,-2.5 + parent: 1 + type: Transform + - uid: 346 + components: + - pos: -4.5,-1.5 + parent: 1 + type: Transform + - uid: 347 + components: + - pos: -4.5,-5.5 + parent: 1 + type: Transform + - uid: 348 + components: + - pos: -4.5,-4.5 + parent: 1 + type: Transform + - uid: 349 + components: + - pos: -0.5,-9.5 + parent: 1 + type: Transform + - uid: 350 + components: + - pos: -5.5,-6.5 + parent: 1 + type: Transform + - uid: 351 + components: + - pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 352 + components: + - pos: -7.5,-9.5 + parent: 1 + type: Transform + - uid: 353 + components: + - pos: -6.5,-6.5 + parent: 1 + type: Transform + - uid: 354 + components: + - pos: -8.5,-10.5 + parent: 1 + type: Transform + - uid: 355 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 356 + components: + - pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 357 + components: + - pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 358 + components: + - pos: -5.5,-12.5 + parent: 1 + type: Transform + - uid: 359 + components: + - pos: -5.5,-10.5 + parent: 1 + type: Transform + - uid: 360 + components: + - pos: -1.5,-11.5 + parent: 1 + type: Transform + - uid: 361 + components: + - pos: -6.5,-9.5 + parent: 1 + type: Transform + - uid: 363 + components: + - pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 364 + components: + - pos: -9.5,-9.5 + parent: 1 + type: Transform + - uid: 365 + components: + - pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 366 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 367 + components: + - pos: -9.5,-11.5 + parent: 1 + type: Transform + - uid: 368 + components: + - pos: -10.5,2.5 + parent: 1 + type: Transform + - uid: 369 + components: + - pos: -10.5,1.5 + parent: 1 + type: Transform + - uid: 371 + components: + - pos: -9.5,-0.5 + parent: 1 + type: Transform + - uid: 372 + components: + - pos: -8.5,-11.5 + parent: 1 + type: Transform + - uid: 373 + components: + - pos: -7.5,-8.5 + parent: 1 + type: Transform + - uid: 374 + components: + - pos: -9.5,-6.5 + parent: 1 + type: Transform + - uid: 375 + components: + - pos: -8.5,-7.5 + parent: 1 + type: Transform + - uid: 376 + components: + - pos: -9.5,-7.5 + parent: 1 + type: Transform + - uid: 377 + components: + - pos: -4.5,-12.5 + parent: 1 + type: Transform + - uid: 378 + components: + - pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 379 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 380 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 389 + components: + - pos: 3.5,-8.5 + parent: 1 + type: Transform + - uid: 390 + components: + - pos: 0.5,-12.5 + parent: 1 + type: Transform + - uid: 391 + components: + - pos: 6.5,-11.5 + parent: 1 + type: Transform + - uid: 392 + components: + - pos: 6.5,-10.5 + parent: 1 + type: Transform + - uid: 393 + components: + - pos: 6.5,-9.5 + parent: 1 + type: Transform + - uid: 394 + components: + - pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 395 + components: + - pos: 5.5,-12.5 + parent: 1 + type: Transform + - uid: 396 + components: + - pos: -0.5,-8.5 + parent: 1 + type: Transform + - uid: 397 + components: + - pos: 2.5,-9.5 + parent: 1 + type: Transform + - uid: 399 + components: + - pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 400 + components: + - pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 402 + components: + - pos: -11.5,2.5 + parent: 1 + type: Transform + - uid: 403 + components: + - pos: -9.5,-8.5 + parent: 1 + type: Transform + - uid: 404 + components: + - pos: -0.5,-6.5 + parent: 1 + type: Transform + - uid: 406 + components: + - pos: 7.5,-2.5 + parent: 1 + type: Transform + - uid: 407 + components: + - pos: -11.5,3.5 + parent: 1 + type: Transform + - uid: 408 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 409 + components: + - pos: -9.5,0.5 + parent: 1 + type: Transform + - uid: 410 + components: + - pos: -11.5,3.5 + parent: 1 + type: Transform + - uid: 411 + components: + - pos: -10.5,-8.5 + parent: 1 + type: Transform + - uid: 412 + components: + - pos: -3.5,-10.5 + parent: 1 + type: Transform + - uid: 413 + components: + - pos: -3.5,-11.5 + parent: 1 + type: Transform + - uid: 414 + components: + - pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 415 + components: + - pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 416 + components: + - pos: 8.5,-11.5 + parent: 1 + type: Transform + - uid: 417 + components: + - pos: 7.5,-1.5 + parent: 1 + type: Transform + - uid: 419 + components: + - pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 420 + components: + - pos: -10.5,3.5 + parent: 1 + type: Transform + - uid: 421 + components: + - pos: -11.5,-0.5 + parent: 1 + type: Transform + - uid: 423 + components: + - pos: 7.5,-9.5 + parent: 1 + type: Transform + - uid: 424 + components: + - pos: 9.5,-4.5 + parent: 1 + type: Transform + - uid: 425 + components: + - pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 426 + components: + - pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 427 + components: + - pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 429 + components: + - pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 430 + components: + - pos: -5.5,-11.5 + parent: 1 + type: Transform + - uid: 431 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 432 + components: + - pos: -2.5,-12.5 + parent: 1 + type: Transform + - uid: 433 + components: + - pos: -5.5,-2.5 + parent: 1 + type: Transform + - uid: 434 + components: + - pos: -11.5,-2.5 + parent: 1 + type: Transform + - uid: 435 + components: + - pos: -11.5,-1.5 + parent: 1 + type: Transform + - uid: 436 + components: + - pos: -10.5,-0.5 + parent: 1 + type: Transform + - uid: 437 + components: + - pos: -8.5,-9.5 + parent: 1 + type: Transform + - uid: 438 + components: + - pos: -6.5,-7.5 + parent: 1 + type: Transform + - uid: 440 + components: + - pos: -8.5,-8.5 + parent: 1 + type: Transform + - uid: 441 + components: + - pos: -5.5,-3.5 + parent: 1 + type: Transform + - uid: 442 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 443 + components: + - pos: -2.5,-9.5 + parent: 1 + type: Transform + - uid: 444 + components: + - pos: -2.5,-4.5 + parent: 1 + type: Transform + - uid: 447 + components: + - pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 448 + components: + - pos: -4.5,-11.5 + parent: 1 + type: Transform + - uid: 449 + components: + - pos: -8.5,-0.5 + parent: 1 + type: Transform + - uid: 450 + components: + - pos: 3.5,-11.5 + parent: 1 + type: Transform + - uid: 452 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 453 + components: + - pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 454 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 455 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 456 + components: + - pos: 3.5,-12.5 + parent: 1 + type: Transform + - uid: 457 + components: + - pos: -0.5,-11.5 + parent: 1 + type: Transform + - uid: 458 + components: + - pos: -1.5,-10.5 + parent: 1 + type: Transform + - uid: 459 + components: + - pos: -1.5,-9.5 + parent: 1 + type: Transform + - uid: 460 + components: + - pos: -3.5,-12.5 + parent: 1 + type: Transform + - uid: 461 + components: + - pos: -1.5,-8.5 + parent: 1 + type: Transform + - uid: 462 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 463 + components: + - pos: -1.5,-6.5 + parent: 1 + type: Transform + - uid: 464 + components: + - pos: -0.5,-10.5 + parent: 1 + type: Transform + - uid: 465 + components: + - pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 466 + components: + - pos: -2.5,-1.5 + parent: 1 + type: Transform + - uid: 467 + components: + - pos: -1.5,-12.5 + parent: 1 + type: Transform + - uid: 468 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 469 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform + - uid: 470 + components: + - pos: -2.5,-10.5 + parent: 1 + type: Transform + - uid: 471 + components: + - pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 472 + components: + - pos: -11.5,-3.5 + parent: 1 + type: Transform + - uid: 473 + components: + - pos: -10.5,-3.5 + parent: 1 + type: Transform + - uid: 474 + components: + - pos: -11.5,-6.5 + parent: 1 + type: Transform + - uid: 475 + components: + - pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 476 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform + - uid: 477 + components: + - pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 478 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 479 + components: + - pos: 7.5,-8.5 + parent: 1 + type: Transform + - uid: 480 + components: + - pos: 9.5,-3.5 + parent: 1 + type: Transform + - uid: 481 + components: + - pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 482 + components: + - pos: 4.5,-10.5 + parent: 1 + type: Transform + - uid: 485 + components: + - pos: 4.5,-11.5 + parent: 1 + type: Transform + - uid: 486 + components: + - pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 487 + components: + - pos: -11.5,-7.5 + parent: 1 + type: Transform + - uid: 488 + components: + - pos: -11.5,1.5 + parent: 1 + type: Transform + - uid: 489 + components: + - pos: -11.5,-4.5 + parent: 1 + type: Transform + - uid: 490 + components: + - pos: -10.5,0.5 + parent: 1 + type: Transform + - uid: 491 + components: + - pos: -11.5,0.5 + parent: 1 + type: Transform + - uid: 492 + components: + - pos: -10.5,-1.5 + parent: 1 + type: Transform + - uid: 493 + components: + - pos: -11.5,-5.5 + parent: 1 + type: Transform + - uid: 494 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 495 + components: + - pos: -7.5,-10.5 + parent: 1 + type: Transform + - uid: 496 + components: + - pos: -9.5,-10.5 + parent: 1 + type: Transform + - uid: 497 + components: + - pos: -7.5,-11.5 + parent: 1 + type: Transform + - uid: 500 + components: + - pos: -6.5,-12.5 + parent: 1 + type: Transform + - uid: 501 + components: + - pos: -6.5,-11.5 + parent: 1 + type: Transform + - uid: 502 + components: + - pos: -6.5,-10.5 + parent: 1 + type: Transform + - uid: 503 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 504 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 506 + components: + - pos: 1.5,-12.5 + parent: 1 + type: Transform + - uid: 507 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 509 + components: + - pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 510 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 511 + components: + - pos: 1.5,-6.5 + parent: 1 + type: Transform + - uid: 512 + components: + - pos: 1.5,-9.5 + parent: 1 + type: Transform + - uid: 513 + components: + - pos: -8.5,-4.5 + parent: 1 + type: Transform + - uid: 542 + components: + - pos: -8.5,-6.5 + parent: 1 + type: Transform + - uid: 543 + components: + - pos: 5.5,-11.5 + parent: 1 + type: Transform + - uid: 544 + components: + - pos: 5.5,-10.5 + parent: 1 + type: Transform + - uid: 545 + components: + - pos: 5.5,-9.5 + parent: 1 + type: Transform + - uid: 546 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 547 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 548 + components: + - pos: 4.5,-12.5 + parent: 1 + type: Transform + - uid: 550 + components: + - pos: 9.5,-1.5 + parent: 1 + type: Transform + - uid: 551 + components: + - pos: 9.5,-0.5 + parent: 1 + type: Transform + - uid: 552 + components: + - pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 553 + components: + - pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 554 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 555 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 556 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform + - uid: 560 + components: + - pos: 10.5,-7.5 + parent: 1 + type: Transform + - uid: 561 + components: + - pos: 10.5,-6.5 + parent: 1 + type: Transform + - uid: 562 + components: + - pos: 10.5,-5.5 + parent: 1 + type: Transform + - uid: 563 + components: + - pos: 10.5,-4.5 + parent: 1 + type: Transform + - uid: 564 + components: + - pos: 10.5,-3.5 + parent: 1 + type: Transform + - uid: 565 + components: + - pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 566 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - uid: 567 + components: + - pos: 10.5,-0.5 + parent: 1 + type: Transform + - uid: 568 + components: + - pos: 10.5,0.5 + parent: 1 + type: Transform + - uid: 569 + components: + - pos: 10.5,1.5 + parent: 1 + type: Transform + - uid: 570 + components: + - pos: 10.5,2.5 + parent: 1 + type: Transform + - uid: 571 + components: + - pos: 10.5,3.5 + parent: 1 + type: Transform + - uid: 572 + components: + - pos: 10.5,4.5 + parent: 1 + type: Transform + - uid: 573 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 575 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 576 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 577 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 578 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 579 + components: + - pos: 8.5,5.5 + parent: 1 + type: Transform + - uid: 580 + components: + - pos: 8.5,6.5 + parent: 1 + type: Transform + - uid: 581 + components: + - pos: 8.5,7.5 + parent: 1 + type: Transform + - uid: 582 + components: + - pos: 8.5,8.5 + parent: 1 + type: Transform + - uid: 583 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 584 + components: + - pos: 7.5,0.5 + parent: 1 + type: Transform + - uid: 585 + components: + - pos: 7.5,1.5 + parent: 1 + type: Transform + - uid: 586 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 587 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 588 + components: + - pos: 7.5,7.5 + parent: 1 + type: Transform + - uid: 589 + components: + - pos: 7.5,8.5 + parent: 1 + type: Transform + - uid: 590 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 591 + components: + - pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 592 + components: + - pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 593 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 594 + components: + - pos: 6.5,7.5 + parent: 1 + type: Transform + - uid: 595 + components: + - pos: 6.5,8.5 + parent: 1 + type: Transform + - uid: 596 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 597 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 598 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 599 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 600 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 601 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 602 + components: + - pos: 5.5,8.5 + parent: 1 + type: Transform + - uid: 603 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 604 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 605 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 606 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 607 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 608 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 609 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 610 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 611 + components: + - pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 614 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 615 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 616 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 617 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 618 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 619 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 622 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 623 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 624 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 625 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 626 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 627 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 628 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 629 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 630 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 631 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 632 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 633 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 634 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 635 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 636 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 637 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 638 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 639 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 640 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 641 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 642 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 645 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 646 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 647 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 648 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 649 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 650 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 651 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 655 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 656 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 657 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 658 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 659 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 660 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 661 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 662 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 663 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 664 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 665 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 666 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 667 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 668 + components: + - pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 669 + components: + - pos: 9.5,5.5 + parent: 1 + type: Transform + - uid: 670 + components: + - pos: 9.5,6.5 + parent: 1 + type: Transform + - uid: 671 + components: + - pos: 9.5,7.5 + parent: 1 + type: Transform + - uid: 672 + components: + - pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 673 + components: + - pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 674 + components: + - pos: 3.5,9.5 + parent: 1 + type: Transform + - uid: 675 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 676 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 677 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 678 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 679 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 680 + components: + - pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 681 + components: + - pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 682 + components: + - pos: -4.5,9.5 + parent: 1 + type: Transform + - uid: 683 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 684 + components: + - pos: -6.5,9.5 + parent: 1 + type: Transform + - uid: 685 + components: + - pos: -2.5,8.5 + parent: 1 + type: Transform + - uid: 687 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 688 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 690 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 691 + components: + - pos: -4.5,8.5 + parent: 1 + type: Transform + - uid: 692 + components: + - pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 693 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 694 + components: + - pos: -5.5,8.5 + parent: 1 + type: Transform + - uid: 695 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 696 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 697 + components: + - pos: -6.5,8.5 + parent: 1 + type: Transform + - uid: 698 + components: + - pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 699 + components: + - pos: -6.5,6.5 + parent: 1 + type: Transform + - uid: 700 + components: + - pos: -7.5,8.5 + parent: 1 + type: Transform + - uid: 701 + components: + - pos: -7.5,7.5 + parent: 1 + type: Transform + - uid: 702 + components: + - pos: -7.5,6.5 + parent: 1 + type: Transform + - uid: 703 + components: + - pos: -8.5,8.5 + parent: 1 + type: Transform + - uid: 705 + components: + - pos: -8.5,6.5 + parent: 1 + type: Transform + - uid: 706 + components: + - pos: -9.5,8.5 + parent: 1 + type: Transform + - uid: 707 + components: + - pos: -9.5,7.5 + parent: 1 + type: Transform + - uid: 708 + components: + - pos: -9.5,6.5 + parent: 1 + type: Transform + - uid: 709 + components: + - pos: -10.5,7.5 + parent: 1 + type: Transform + - uid: 710 + components: + - pos: -10.5,6.5 + parent: 1 + type: Transform + - uid: 711 + components: + - pos: -10.5,5.5 + parent: 1 + type: Transform + - uid: 712 + components: + - pos: -10.5,4.5 + parent: 1 + type: Transform + - uid: 713 + components: + - pos: -9.5,5.5 + parent: 1 + type: Transform + - uid: 714 + components: + - pos: -9.5,4.5 + parent: 1 + type: Transform + - uid: 715 + components: + - pos: -8.5,5.5 + parent: 1 + type: Transform + - uid: 716 + components: + - pos: -8.5,4.5 + parent: 1 + type: Transform +- proto: SalvageCanisterSpawner + entities: + - uid: 737 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 735 + components: + - pos: -4.5,-8.5 + parent: 1 + type: Transform +- proto: SalvageMobSpawner + entities: + - uid: 559 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 765 + components: + - pos: 7.5,-10.5 + parent: 1 + type: Transform + - uid: 766 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform +- proto: SalvageMobSpawner75 + entities: + - uid: 270 + components: + - pos: 4.5,-9.5 + parent: 1 + type: Transform + - uid: 323 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 381 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 382 + components: + - pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 388 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 428 + components: + - pos: -3.5,-9.5 + parent: 1 + type: Transform + - uid: 451 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 483 + components: + - pos: 1.5,-11.5 + parent: 1 + type: Transform + - uid: 484 + components: + - pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 508 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 549 + components: + - pos: -5.5,-9.5 + parent: 1 + type: Transform + - uid: 557 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 558 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 612 + components: + - pos: -9.5,-2.5 + parent: 1 + type: Transform + - uid: 620 + components: + - pos: -5.5,-7.5 + parent: 1 + type: Transform + - uid: 621 + components: + - pos: -3.5,-7.5 + parent: 1 + type: Transform +- proto: SalvagePartsSpawnerLow + entities: + - uid: 344 + components: + - pos: -4.5,-3.5 + parent: 1 + type: Transform + - uid: 370 + components: + - pos: -8.5,-5.5 + parent: 1 + type: Transform + - uid: 689 + components: + - pos: -6.5,-8.5 + parent: 1 + type: Transform + - uid: 738 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 739 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 740 + components: + - pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 741 + components: + - pos: 1.5,-10.5 + parent: 1 + type: Transform + - uid: 742 + components: + - pos: 3.5,-10.5 + parent: 1 + type: Transform + - uid: 745 + components: + - pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 746 + components: + - pos: -4.5,-10.5 + parent: 1 + type: Transform +- proto: SalvagePartsSpawnerMid + entities: + - uid: 340 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 529 + components: + - pos: -6.5,3.5 + parent: 1 + type: Transform + - uid: 530 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform + - uid: 652 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 736 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform +- proto: SalvagePartsSpawnerSubSpace + entities: + - uid: 654 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform +- proto: Scalpel + entities: + - uid: 521 + components: + - pos: -4.4945064,3.4964664 + parent: 1 + type: Transform +- proto: SignSurgery + entities: + - uid: 525 + components: + - pos: -7.5,1.5 + parent: 1 + type: Transform +- proto: SnakeMobMundane25 + entities: + - uid: 643 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 653 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 756 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 757 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform +- proto: TableCounterMetal + entities: + - uid: 527 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform + - uid: 528 + components: + - pos: -6.5,3.5 + parent: 1 + type: Transform +- proto: TableReinforcedGlass + entities: + - uid: 518 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 519 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform +- proto: TorsoHuman + entities: + - uid: 532 + components: + - rot: 1.5707963267948966 rad + pos: -4.682309,0.6273222 + parent: 1 + type: Transform +- proto: WallSolid + entities: + - uid: 277 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 279 + components: + - pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 281 + components: + - pos: -7.5,1.5 + parent: 1 + type: Transform + - uid: 283 + components: + - pos: -7.5,0.5 + parent: 1 + type: Transform + - uid: 296 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 383 + components: + - pos: -4.5,-0.5 + parent: 1 + type: Transform + - uid: 384 + components: + - pos: -4.5,5.5 + parent: 1 + type: Transform + - uid: 386 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 387 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 418 + components: + - pos: -7.5,-0.5 + parent: 1 + type: Transform + - uid: 439 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 445 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 446 + components: + - pos: -6.5,-0.5 + parent: 1 + type: Transform + - uid: 499 + components: + - pos: -5.5,5.5 + parent: 1 + type: Transform + - uid: 505 + components: + - pos: -7.5,5.5 + parent: 1 + type: Transform + - uid: 516 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform +- proto: WallSolidRust + entities: + - uid: 385 + components: + - pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 498 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform + - uid: 514 + components: + - pos: -7.5,4.5 + parent: 1 + type: Transform + - uid: 515 + components: + - pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 517 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-asteroid-large-02.yml b/Resources/Maps/Salvage/DeltaV/DV-asteroid-large-02.yml new file mode 100644 index 0000000000..232163c367 --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-asteroid-large-02.yml @@ -0,0 +1,4157 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand + 56: FloorHydro + 96: FloorTechMaint + 113: Plating +entities: +- proto: "" + entities: + - uid: 770 + components: + - type: MetaData + - pos: 0.5167553,0.5923884 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: BwAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: [] + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 65535 + 0,-1: + 0: 65535 + -1,0: + 0: 65535 + 0,0: + 0: 65535 + -4,-2: + 0: 61166 + -4,-1: + 0: 61166 + -4,-3: + 0: 52424 + -4,-4: + 0: 32768 + -3,-4: + 0: 65472 + -3,-3: + 0: 65535 + -3,-2: + 0: 65535 + -3,-1: + 0: 65535 + -2,-4: + 0: 65534 + -2,-3: + 0: 65535 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-4: + 0: 65535 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + 0,-4: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 1,-4: + 0: 65523 + 1,-3: + 0: 65535 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-4: + 0: 63248 + 2,-3: + 0: 65535 + 2,-2: + 0: 65535 + 2,-1: + 0: 65535 + 3,-3: + 0: 4368 + 3,-2: + 0: 13107 + 3,-1: + 0: 13107 + -4,0: + 0: 61166 + -4,1: + 0: 52430 + -4,2: + 0: 136 + -3,0: + 0: 65535 + -3,1: + 0: 65535 + -3,2: + 0: 53247 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 65535 + -2,3: + 0: 14 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -1,3: + 0: 15 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 15 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 65535 + 1,3: + 0: 3 + 2,0: + 0: 65535 + 2,1: + 0: 65535 + 2,2: + 0: 6143 + 3,0: + 0: 13107 + 3,1: + 0: 4371 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - type: SpreaderGrid +- proto: AirlockHydroponicsLocked + entities: + - uid: 283 + components: + - pos: 3.5,-0.5 + parent: 770 + type: Transform +- proto: APCBasic + entities: + - uid: 626 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 770 + type: Transform +- proto: AsteroidAltRock + entities: + - uid: 1 + components: + - pos: -5.5,-14.5 + parent: 770 + type: Transform + - uid: 2 + components: + - pos: 8.5,11.5 + parent: 770 + type: Transform + - uid: 3 + components: + - pos: 7.5,11.5 + parent: 770 + type: Transform + - uid: 4 + components: + - pos: 6.5,11.5 + parent: 770 + type: Transform + - uid: 5 + components: + - pos: 5.5,12.5 + parent: 770 + type: Transform + - uid: 6 + components: + - pos: 4.5,12.5 + parent: 770 + type: Transform + - uid: 7 + components: + - pos: 3.5,12.5 + parent: 770 + type: Transform + - uid: 8 + components: + - pos: -13.5,3.5 + parent: 770 + type: Transform + - uid: 9 + components: + - pos: -8.5,11.5 + parent: 770 + type: Transform + - uid: 10 + components: + - pos: -9.5,11.5 + parent: 770 + type: Transform + - uid: 11 + components: + - pos: -10.5,10.5 + parent: 770 + type: Transform + - uid: 12 + components: + - pos: -11.5,10.5 + parent: 770 + type: Transform + - uid: 13 + components: + - pos: -0.5,12.5 + parent: 770 + type: Transform + - uid: 14 + components: + - pos: -1.5,12.5 + parent: 770 + type: Transform + - uid: 15 + components: + - pos: -4.5,12.5 + parent: 770 + type: Transform + - uid: 16 + components: + - pos: -5.5,12.5 + parent: 770 + type: Transform + - uid: 17 + components: + - pos: -13.5,-6.5 + parent: 770 + type: Transform + - uid: 18 + components: + - pos: -13.5,-7.5 + parent: 770 + type: Transform + - uid: 19 + components: + - pos: -3.5,-15.5 + parent: 770 + type: Transform + - uid: 20 + components: + - pos: -2.5,-15.5 + parent: 770 + type: Transform + - uid: 21 + components: + - pos: 4.5,-15.5 + parent: 770 + type: Transform + - uid: 22 + components: + - pos: 7.5,-14.5 + parent: 770 + type: Transform + - uid: 23 + components: + - pos: 0.5,-15.5 + parent: 770 + type: Transform + - uid: 24 + components: + - pos: 1.5,-15.5 + parent: 770 + type: Transform + - uid: 25 + components: + - pos: 10.5,-13.5 + parent: 770 + type: Transform + - uid: 26 + components: + - pos: 11.5,-12.5 + parent: 770 + type: Transform + - uid: 27 + components: + - pos: 13.5,-7.5 + parent: 770 + type: Transform + - uid: 28 + components: + - pos: 13.5,-6.5 + parent: 770 + type: Transform + - uid: 29 + components: + - pos: 13.5,-1.5 + parent: 770 + type: Transform + - uid: 30 + components: + - pos: 13.5,1.5 + parent: 770 + type: Transform + - uid: 31 + components: + - pos: 13.5,3.5 + parent: 770 + type: Transform + - uid: 32 + components: + - pos: 13.5,4.5 + parent: 770 + type: Transform + - uid: 33 + components: + - pos: -6.5,-15.5 + parent: 770 + type: Transform + - uid: 34 + components: + - pos: -5.5,-15.5 + parent: 770 + type: Transform + - uid: 35 + components: + - pos: -4.5,-15.5 + parent: 770 + type: Transform + - uid: 36 + components: + - pos: -14.5,0.5 + parent: 770 + type: Transform + - uid: 37 + components: + - pos: -14.5,-0.5 + parent: 770 + type: Transform + - uid: 38 + components: + - pos: -14.5,-1.5 + parent: 770 + type: Transform + - uid: 39 + components: + - pos: -14.5,-2.5 + parent: 770 + type: Transform + - uid: 40 + components: + - pos: -14.5,-3.5 + parent: 770 + type: Transform + - uid: 41 + components: + - pos: -14.5,4.5 + parent: 770 + type: Transform + - uid: 42 + components: + - pos: -14.5,3.5 + parent: 770 + type: Transform + - uid: 43 + components: + - pos: -14.5,2.5 + parent: 770 + type: Transform + - uid: 44 + components: + - pos: -14.5,1.5 + parent: 770 + type: Transform + - uid: 45 + components: + - pos: -12.5,8.5 + parent: 770 + type: Transform + - uid: 46 + components: + - pos: -13.5,7.5 + parent: 770 + type: Transform + - uid: 47 + components: + - pos: -13.5,6.5 + parent: 770 + type: Transform + - uid: 48 + components: + - pos: -13.5,5.5 + parent: 770 + type: Transform + - uid: 49 + components: + - pos: -13.5,4.5 + parent: 770 + type: Transform + - uid: 50 + components: + - pos: -13.5,2.5 + parent: 770 + type: Transform + - uid: 51 + components: + - pos: -13.5,1.5 + parent: 770 + type: Transform + - uid: 52 + components: + - pos: 2.5,12.5 + parent: 770 + type: Transform + - uid: 53 + components: + - pos: 1.5,12.5 + parent: 770 + type: Transform + - uid: 54 + components: + - pos: 0.5,12.5 + parent: 770 + type: Transform + - uid: 55 + components: + - pos: -12.5,9.5 + parent: 770 + type: Transform + - uid: 56 + components: + - pos: -2.5,12.5 + parent: 770 + type: Transform + - uid: 57 + components: + - pos: -3.5,12.5 + parent: 770 + type: Transform + - uid: 58 + components: + - pos: -6.5,12.5 + parent: 770 + type: Transform + - uid: 59 + components: + - pos: -7.5,11.5 + parent: 770 + type: Transform + - uid: 60 + components: + - pos: -12.5,-8.5 + parent: 770 + type: Transform + - uid: 61 + components: + - pos: -12.5,-9.5 + parent: 770 + type: Transform + - uid: 62 + components: + - pos: -1.5,-15.5 + parent: 770 + type: Transform + - uid: 63 + components: + - pos: -0.5,-15.5 + parent: 770 + type: Transform + - uid: 64 + components: + - pos: 5.5,-15.5 + parent: 770 + type: Transform + - uid: 65 + components: + - pos: 8.5,-14.5 + parent: 770 + type: Transform + - uid: 66 + components: + - pos: 2.5,-15.5 + parent: 770 + type: Transform + - uid: 67 + components: + - pos: 11.5,-11.5 + parent: 770 + type: Transform + - uid: 68 + components: + - pos: 12.5,-10.5 + parent: 770 + type: Transform + - uid: 69 + components: + - pos: 13.5,-5.5 + parent: 770 + type: Transform + - uid: 70 + components: + - pos: 13.5,-4.5 + parent: 770 + type: Transform + - uid: 71 + components: + - pos: 13.5,-0.5 + parent: 770 + type: Transform + - uid: 72 + components: + - pos: 13.5,2.5 + parent: 770 + type: Transform + - uid: 73 + components: + - pos: 12.5,5.5 + parent: 770 + type: Transform + - uid: 74 + components: + - pos: 12.5,6.5 + parent: 770 + type: Transform + - uid: 75 + components: + - pos: 11.5,8.5 + parent: 770 + type: Transform + - uid: 76 + components: + - pos: 11.5,9.5 + parent: 770 + type: Transform + - uid: 77 + components: + - pos: -14.5,-4.5 + parent: 770 + type: Transform + - uid: 78 + components: + - pos: -14.5,-5.5 + parent: 770 + type: Transform + - uid: 79 + components: + - pos: -12.5,-11.5 + parent: 770 + type: Transform + - uid: 80 + components: + - pos: -12.5,-12.5 + parent: 770 + type: Transform + - uid: 81 + components: + - pos: -9.5,-14.5 + parent: 770 + type: Transform + - uid: 82 + components: + - pos: -8.5,-14.5 + parent: 770 + type: Transform + - uid: 83 + components: + - pos: -13.5,-8.5 + parent: 770 + type: Transform + - uid: 84 + components: + - pos: -13.5,-9.5 + parent: 770 + type: Transform + - uid: 85 + components: + - pos: -10.5,-12.5 + parent: 770 + type: Transform + - uid: 86 + components: + - pos: -9.5,-13.5 + parent: 770 + type: Transform + - uid: 87 + components: + - pos: -8.5,-13.5 + parent: 770 + type: Transform + - uid: 88 + components: + - pos: -7.5,-13.5 + parent: 770 + type: Transform + - uid: 89 + components: + - pos: -6.5,-14.5 + parent: 770 + type: Transform + - uid: 90 + components: + - pos: -13.5,0.5 + parent: 770 + type: Transform + - uid: 91 + components: + - pos: -13.5,-0.5 + parent: 770 + type: Transform + - uid: 92 + components: + - pos: -13.5,-1.5 + parent: 770 + type: Transform + - uid: 93 + components: + - pos: -13.5,-2.5 + parent: 770 + type: Transform + - uid: 94 + components: + - pos: -13.5,-3.5 + parent: 770 + type: Transform + - uid: 95 + components: + - pos: -13.5,-4.5 + parent: 770 + type: Transform + - uid: 96 + components: + - pos: -13.5,-5.5 + parent: 770 + type: Transform + - uid: 97 + components: + - pos: -12.5,-10.5 + parent: 770 + type: Transform + - uid: 98 + components: + - pos: -11.5,-11.5 + parent: 770 + type: Transform + - uid: 99 + components: + - pos: -11.5,-12.5 + parent: 770 + type: Transform + - uid: 100 + components: + - pos: 6.5,-14.5 + parent: 770 + type: Transform + - uid: 101 + components: + - pos: 9.5,-13.5 + parent: 770 + type: Transform + - uid: 102 + components: + - pos: 3.5,-15.5 + parent: 770 + type: Transform + - uid: 103 + components: + - pos: 12.5,-9.5 + parent: 770 + type: Transform + - uid: 104 + components: + - pos: 12.5,-8.5 + parent: 770 + type: Transform + - uid: 105 + components: + - pos: 13.5,-3.5 + parent: 770 + type: Transform + - uid: 106 + components: + - pos: 13.5,-2.5 + parent: 770 + type: Transform + - uid: 107 + components: + - pos: 13.5,0.5 + parent: 770 + type: Transform + - uid: 108 + components: + - pos: 12.5,7.5 + parent: 770 + type: Transform + - uid: 109 + components: + - pos: 10.5,10.5 + parent: 770 + type: Transform + - uid: 110 + components: + - pos: 9.5,10.5 + parent: 770 + type: Transform + - uid: 111 + components: + - pos: -14.5,-6.5 + parent: 770 + type: Transform + - uid: 112 + components: + - pos: -14.5,-7.5 + parent: 770 + type: Transform + - uid: 113 + components: + - pos: -11.5,-13.5 + parent: 770 + type: Transform + - uid: 114 + components: + - pos: -10.5,-13.5 + parent: 770 + type: Transform + - uid: 115 + components: + - pos: -7.5,-14.5 + parent: 770 + type: Transform + - uid: 116 + components: + - pos: -13.5,-10.5 + parent: 770 + type: Transform + - uid: 117 + components: + - pos: -4.5,-14.5 + parent: 770 + type: Transform + - uid: 118 + components: + - pos: -3.5,-14.5 + parent: 770 + type: Transform + - uid: 119 + components: + - pos: -2.5,-14.5 + parent: 770 + type: Transform + - uid: 120 + components: + - pos: -1.5,-14.5 + parent: 770 + type: Transform + - uid: 121 + components: + - pos: -0.5,-14.5 + parent: 770 + type: Transform + - uid: 122 + components: + - pos: 0.5,-14.5 + parent: 770 + type: Transform + - uid: 123 + components: + - pos: 1.5,-14.5 + parent: 770 + type: Transform + - uid: 124 + components: + - pos: 2.5,-14.5 + parent: 770 + type: Transform + - uid: 125 + components: + - pos: 3.5,-14.5 + parent: 770 + type: Transform + - uid: 126 + components: + - pos: 4.5,-14.5 + parent: 770 + type: Transform + - uid: 127 + components: + - pos: 5.5,-14.5 + parent: 770 + type: Transform + - uid: 128 + components: + - pos: 6.5,-13.5 + parent: 770 + type: Transform + - uid: 129 + components: + - pos: 7.5,-13.5 + parent: 770 + type: Transform + - uid: 130 + components: + - pos: 8.5,-13.5 + parent: 770 + type: Transform + - uid: 131 + components: + - pos: 9.5,-12.5 + parent: 770 + type: Transform + - uid: 132 + components: + - pos: 10.5,-12.5 + parent: 770 + type: Transform + - uid: 133 + components: + - pos: 10.5,-11.5 + parent: 770 + type: Transform + - uid: 134 + components: + - pos: 11.5,-10.5 + parent: 770 + type: Transform + - uid: 135 + components: + - pos: 11.5,-9.5 + parent: 770 + type: Transform + - uid: 136 + components: + - pos: 11.5,-8.5 + parent: 770 + type: Transform + - uid: 137 + components: + - pos: 12.5,-7.5 + parent: 770 + type: Transform + - uid: 138 + components: + - pos: 12.5,-6.5 + parent: 770 + type: Transform + - uid: 139 + components: + - pos: 12.5,-5.5 + parent: 770 + type: Transform + - uid: 140 + components: + - pos: 12.5,-4.5 + parent: 770 + type: Transform + - uid: 141 + components: + - pos: 12.5,-3.5 + parent: 770 + type: Transform + - uid: 142 + components: + - pos: 12.5,-2.5 + parent: 770 + type: Transform + - uid: 143 + components: + - pos: 12.5,-1.5 + parent: 770 + type: Transform + - uid: 144 + components: + - pos: 12.5,-0.5 + parent: 770 + type: Transform + - uid: 145 + components: + - pos: 12.5,0.5 + parent: 770 + type: Transform + - uid: 146 + components: + - pos: 12.5,1.5 + parent: 770 + type: Transform + - uid: 147 + components: + - pos: 12.5,2.5 + parent: 770 + type: Transform + - uid: 148 + components: + - pos: 12.5,3.5 + parent: 770 + type: Transform + - uid: 149 + components: + - pos: 12.5,4.5 + parent: 770 + type: Transform + - uid: 150 + components: + - pos: 11.5,5.5 + parent: 770 + type: Transform + - uid: 151 + components: + - pos: 11.5,6.5 + parent: 770 + type: Transform + - uid: 152 + components: + - pos: 11.5,7.5 + parent: 770 + type: Transform + - uid: 153 + components: + - pos: 10.5,8.5 + parent: 770 + type: Transform + - uid: 154 + components: + - pos: 10.5,9.5 + parent: 770 + type: Transform + - uid: 155 + components: + - pos: 9.5,9.5 + parent: 770 + type: Transform + - uid: 156 + components: + - pos: 8.5,10.5 + parent: 770 + type: Transform + - uid: 157 + components: + - pos: 7.5,10.5 + parent: 770 + type: Transform + - uid: 158 + components: + - pos: 6.5,10.5 + parent: 770 + type: Transform + - uid: 159 + components: + - pos: 5.5,11.5 + parent: 770 + type: Transform + - uid: 160 + components: + - pos: 4.5,11.5 + parent: 770 + type: Transform + - uid: 161 + components: + - pos: 3.5,11.5 + parent: 770 + type: Transform + - uid: 162 + components: + - pos: 2.5,11.5 + parent: 770 + type: Transform + - uid: 163 + components: + - pos: 1.5,11.5 + parent: 770 + type: Transform + - uid: 164 + components: + - pos: 0.5,11.5 + parent: 770 + type: Transform + - uid: 165 + components: + - pos: -0.5,11.5 + parent: 770 + type: Transform + - uid: 166 + components: + - pos: -1.5,11.5 + parent: 770 + type: Transform + - uid: 167 + components: + - pos: -2.5,11.5 + parent: 770 + type: Transform + - uid: 168 + components: + - pos: -3.5,11.5 + parent: 770 + type: Transform + - uid: 169 + components: + - pos: -4.5,11.5 + parent: 770 + type: Transform + - uid: 170 + components: + - pos: -5.5,11.5 + parent: 770 + type: Transform + - uid: 171 + components: + - pos: -6.5,11.5 + parent: 770 + type: Transform + - uid: 172 + components: + - pos: -7.5,10.5 + parent: 770 + type: Transform + - uid: 173 + components: + - pos: -8.5,10.5 + parent: 770 + type: Transform + - uid: 174 + components: + - pos: -9.5,10.5 + parent: 770 + type: Transform + - uid: 175 + components: + - pos: -10.5,9.5 + parent: 770 + type: Transform + - uid: 176 + components: + - pos: -11.5,9.5 + parent: 770 + type: Transform + - uid: 177 + components: + - pos: -11.5,8.5 + parent: 770 + type: Transform + - uid: 178 + components: + - pos: -12.5,7.5 + parent: 770 + type: Transform + - uid: 179 + components: + - pos: -12.5,6.5 + parent: 770 + type: Transform + - uid: 180 + components: + - pos: -12.5,5.5 + parent: 770 + type: Transform +- proto: AsteroidAltRockMining + entities: + - uid: 181 + components: + - pos: -12.5,4.5 + parent: 770 + type: Transform + - uid: 182 + components: + - pos: -12.5,3.5 + parent: 770 + type: Transform + - uid: 183 + components: + - pos: -12.5,2.5 + parent: 770 + type: Transform + - uid: 184 + components: + - pos: -12.5,1.5 + parent: 770 + type: Transform + - uid: 185 + components: + - pos: -12.5,0.5 + parent: 770 + type: Transform + - uid: 186 + components: + - pos: -12.5,-0.5 + parent: 770 + type: Transform + - uid: 187 + components: + - pos: -12.5,-1.5 + parent: 770 + type: Transform + - uid: 188 + components: + - pos: -12.5,-2.5 + parent: 770 + type: Transform + - uid: 189 + components: + - pos: -12.5,-3.5 + parent: 770 + type: Transform + - uid: 190 + components: + - pos: -12.5,-4.5 + parent: 770 + type: Transform + - uid: 191 + components: + - pos: -12.5,-5.5 + parent: 770 + type: Transform + - uid: 192 + components: + - pos: -12.5,-6.5 + parent: 770 + type: Transform + - uid: 193 + components: + - pos: -12.5,-7.5 + parent: 770 + type: Transform + - uid: 194 + components: + - pos: -11.5,-8.5 + parent: 770 + type: Transform + - uid: 195 + components: + - pos: -11.5,-9.5 + parent: 770 + type: Transform + - uid: 196 + components: + - pos: -11.5,-10.5 + parent: 770 + type: Transform + - uid: 197 + components: + - pos: -10.5,-11.5 + parent: 770 + type: Transform + - uid: 198 + components: + - pos: -9.5,-12.5 + parent: 770 + type: Transform + - uid: 199 + components: + - pos: -8.5,-12.5 + parent: 770 + type: Transform + - uid: 200 + components: + - pos: -7.5,-12.5 + parent: 770 + type: Transform + - uid: 201 + components: + - pos: -6.5,-13.5 + parent: 770 + type: Transform + - uid: 202 + components: + - pos: -5.5,-13.5 + parent: 770 + type: Transform + - uid: 203 + components: + - pos: -4.5,-13.5 + parent: 770 + type: Transform + - uid: 204 + components: + - pos: -3.5,-13.5 + parent: 770 + type: Transform + - uid: 205 + components: + - pos: -2.5,-13.5 + parent: 770 + type: Transform + - uid: 206 + components: + - pos: -1.5,-13.5 + parent: 770 + type: Transform + - uid: 207 + components: + - pos: -0.5,-13.5 + parent: 770 + type: Transform + - uid: 208 + components: + - pos: 0.5,-13.5 + parent: 770 + type: Transform + - uid: 209 + components: + - pos: 1.5,-13.5 + parent: 770 + type: Transform + - uid: 210 + components: + - pos: 2.5,-13.5 + parent: 770 + type: Transform + - uid: 211 + components: + - pos: 3.5,-13.5 + parent: 770 + type: Transform + - uid: 212 + components: + - pos: 4.5,-13.5 + parent: 770 + type: Transform + - uid: 213 + components: + - pos: 5.5,-13.5 + parent: 770 + type: Transform + - uid: 214 + components: + - pos: 6.5,-12.5 + parent: 770 + type: Transform + - uid: 215 + components: + - pos: 7.5,-12.5 + parent: 770 + type: Transform + - uid: 216 + components: + - pos: 8.5,-12.5 + parent: 770 + type: Transform + - uid: 217 + components: + - pos: 9.5,-11.5 + parent: 770 + type: Transform + - uid: 218 + components: + - pos: 10.5,-10.5 + parent: 770 + type: Transform + - uid: 219 + components: + - pos: 10.5,-9.5 + parent: 770 + type: Transform + - uid: 220 + components: + - pos: 10.5,-8.5 + parent: 770 + type: Transform + - uid: 221 + components: + - pos: 11.5,-7.5 + parent: 770 + type: Transform + - uid: 222 + components: + - pos: 11.5,-6.5 + parent: 770 + type: Transform + - uid: 223 + components: + - pos: 11.5,-5.5 + parent: 770 + type: Transform + - uid: 224 + components: + - pos: 11.5,-4.5 + parent: 770 + type: Transform + - uid: 225 + components: + - pos: 11.5,-3.5 + parent: 770 + type: Transform + - uid: 226 + components: + - pos: 11.5,-2.5 + parent: 770 + type: Transform + - uid: 227 + components: + - pos: 11.5,-1.5 + parent: 770 + type: Transform + - uid: 228 + components: + - pos: 11.5,-0.5 + parent: 770 + type: Transform + - uid: 229 + components: + - pos: 11.5,0.5 + parent: 770 + type: Transform + - uid: 230 + components: + - pos: 11.5,1.5 + parent: 770 + type: Transform + - uid: 231 + components: + - pos: 11.5,2.5 + parent: 770 + type: Transform + - uid: 232 + components: + - pos: 11.5,3.5 + parent: 770 + type: Transform + - uid: 233 + components: + - pos: 11.5,4.5 + parent: 770 + type: Transform + - uid: 234 + components: + - pos: 10.5,5.5 + parent: 770 + type: Transform + - uid: 235 + components: + - pos: 10.5,6.5 + parent: 770 + type: Transform + - uid: 236 + components: + - pos: 10.5,7.5 + parent: 770 + type: Transform + - uid: 237 + components: + - pos: 9.5,8.5 + parent: 770 + type: Transform + - uid: 238 + components: + - pos: 8.5,9.5 + parent: 770 + type: Transform + - uid: 239 + components: + - pos: 7.5,9.5 + parent: 770 + type: Transform + - uid: 240 + components: + - pos: 6.5,9.5 + parent: 770 + type: Transform + - uid: 241 + components: + - pos: 5.5,10.5 + parent: 770 + type: Transform + - uid: 242 + components: + - pos: 4.5,10.5 + parent: 770 + type: Transform + - uid: 243 + components: + - pos: 3.5,10.5 + parent: 770 + type: Transform + - uid: 244 + components: + - pos: 2.5,10.5 + parent: 770 + type: Transform + - uid: 245 + components: + - pos: 1.5,10.5 + parent: 770 + type: Transform + - uid: 246 + components: + - pos: 0.5,10.5 + parent: 770 + type: Transform + - uid: 247 + components: + - pos: -0.5,10.5 + parent: 770 + type: Transform + - uid: 248 + components: + - pos: -1.5,10.5 + parent: 770 + type: Transform + - uid: 249 + components: + - pos: -2.5,10.5 + parent: 770 + type: Transform + - uid: 250 + components: + - pos: -3.5,10.5 + parent: 770 + type: Transform + - uid: 251 + components: + - pos: -4.5,10.5 + parent: 770 + type: Transform + - uid: 252 + components: + - pos: -5.5,10.5 + parent: 770 + type: Transform + - uid: 253 + components: + - pos: -6.5,10.5 + parent: 770 + type: Transform + - uid: 254 + components: + - pos: -7.5,9.5 + parent: 770 + type: Transform + - uid: 255 + components: + - pos: -8.5,9.5 + parent: 770 + type: Transform + - uid: 256 + components: + - pos: -9.5,9.5 + parent: 770 + type: Transform + - uid: 257 + components: + - pos: -10.5,8.5 + parent: 770 + type: Transform + - uid: 258 + components: + - pos: -11.5,7.5 + parent: 770 + type: Transform + - uid: 259 + components: + - pos: -11.5,6.5 + parent: 770 + type: Transform + - uid: 260 + components: + - pos: -11.5,5.5 + parent: 770 + type: Transform +- proto: BookBotanicalTextbook + entities: + - uid: 769 + components: + - pos: 3.0740623,4.6673994 + parent: 770 + type: Transform +- proto: CableApcExtension + entities: + - uid: 582 + components: + - pos: 3.5,1.5 + parent: 770 + type: Transform + - uid: 592 + components: + - pos: 3.5,2.5 + parent: 770 + type: Transform + - uid: 593 + components: + - pos: 3.5,3.5 + parent: 770 + type: Transform + - uid: 602 + components: + - pos: 2.5,2.5 + parent: 770 + type: Transform + - uid: 603 + components: + - pos: 4.5,1.5 + parent: 770 + type: Transform + - uid: 604 + components: + - pos: 4.5,3.5 + parent: 770 + type: Transform + - uid: 614 + components: + - pos: 1.5,2.5 + parent: 770 + type: Transform + - uid: 615 + components: + - pos: 5.5,1.5 + parent: 770 + type: Transform + - uid: 756 + components: + - pos: 5.5,3.5 + parent: 770 + type: Transform + - uid: 757 + components: + - pos: 3.5,0.5 + parent: 770 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 298 + components: + - rot: 3.141592653589793 rad + pos: 3.4057462,3.7589977 + parent: 770 + type: Transform +- proto: ChemistryEmptyBottle03 + entities: + - uid: 301 + components: + - rot: 1.5707963267948966 rad + pos: 2.7651212,2.852116 + parent: 770 + type: Transform + - uid: 302 + components: + - pos: 2.1869962,2.9459329 + parent: 770 + type: Transform +- proto: ClothingBackpackDuffelHydroponics + entities: + - uid: 306 + components: + - pos: 2.3901212,2.2110467 + parent: 770 + type: Transform +- proto: CrateHydroponics + entities: + - uid: 304 + components: + - pos: 2.5,0.5 + parent: 770 + type: Transform +- proto: CrateHydroponicsTools + entities: + - uid: 288 + components: + - pos: 2.5,1.5 + parent: 770 + type: Transform +- proto: Dropper + entities: + - uid: 299 + components: + - pos: 2.4682462,3.8528125 + parent: 770 + type: Transform +- proto: FloraRockSolid01 + entities: + - uid: 766 + components: + - pos: 4.5,-1.5 + parent: 770 + type: Transform +- proto: FloraRockSolid02 + entities: + - uid: 767 + components: + - pos: 2.5,-1.5 + parent: 770 + type: Transform +- proto: GasPipeBend + entities: + - uid: 763 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 770 + type: Transform +- proto: GasPipeStraight + entities: + - uid: 758 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 770 + type: Transform + - uid: 759 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 770 + type: Transform + - uid: 760 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 770 + type: Transform + - uid: 761 + components: + - rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 770 + type: Transform + - uid: 762 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 770 + type: Transform +- proto: GasVentPump + entities: + - uid: 765 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 770 + type: Transform +- proto: GasVentScrubber + entities: + - uid: 764 + components: + - pos: 3.5,1.5 + parent: 770 + type: Transform +- proto: GeneratorWallmountBasic + entities: + - uid: 505 + components: + - pos: 1.5,1.5 + parent: 770 + type: Transform +- proto: hydroponicsTray + entities: + - uid: 284 + components: + - pos: 5.5,0.5 + parent: 770 + type: Transform + - uid: 285 + components: + - pos: 4.5,0.5 + parent: 770 + type: Transform + - uid: 286 + components: + - pos: 4.5,2.5 + parent: 770 + type: Transform + - uid: 287 + components: + - pos: 5.5,2.5 + parent: 770 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 297 + components: + - pos: 2.5,4.5 + parent: 770 + type: Transform +- proto: LockerBotanistLoot + entities: + - uid: 296 + components: + - pos: 4.5,4.5 + parent: 770 + type: Transform +- proto: MaintenanceToolSpawner + entities: + - uid: 334 + components: + - pos: -8.5,-8.5 + parent: 770 + type: Transform + - uid: 631 + components: + - pos: 9.5,1.5 + parent: 770 + type: Transform +- proto: MaintenanceWeaponSpawner + entities: + - uid: 687 + components: + - pos: 2.5,-2.5 + parent: 770 + type: Transform +- proto: Poweredlight + entities: + - uid: 514 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 770 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 525 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 770 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredlightExterior + entities: + - uid: 512 + components: + - pos: 2.5,-1.5 + parent: 770 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredLightPostSmall + entities: + - uid: 515 + components: + - pos: 1.5,-1.5 + parent: 770 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: RandomArtifactSpawner20 + entities: + - uid: 493 + components: + - pos: -1.5,4.5 + parent: 770 + type: Transform + - uid: 535 + components: + - pos: -4.5,-5.5 + parent: 770 + type: Transform +- proto: RandomItem + entities: + - uid: 330 + components: + - pos: -5.5,-11.5 + parent: 770 + type: Transform + - uid: 429 + components: + - pos: -10.5,-1.5 + parent: 770 + type: Transform + - uid: 563 + components: + - pos: -6.5,3.5 + parent: 770 + type: Transform + - uid: 573 + components: + - pos: -7.5,7.5 + parent: 770 + type: Transform + - uid: 574 + components: + - pos: -1.5,6.5 + parent: 770 + type: Transform + - uid: 620 + components: + - pos: 9.5,-3.5 + parent: 770 + type: Transform + - uid: 630 + components: + - pos: -4.5,-6.5 + parent: 770 + type: Transform + - uid: 632 + components: + - pos: 7.5,-7.5 + parent: 770 + type: Transform + - uid: 694 + components: + - pos: 0.5,-10.5 + parent: 770 + type: Transform + - uid: 701 + components: + - pos: 4.5,-11.5 + parent: 770 + type: Transform +- proto: RandomRockSpawner + entities: + - uid: 311 + components: + - pos: -6.5,9.5 + parent: 770 + type: Transform + - uid: 313 + components: + - pos: -6.5,8.5 + parent: 770 + type: Transform + - uid: 314 + components: + - pos: -6.5,7.5 + parent: 770 + type: Transform + - uid: 315 + components: + - pos: -6.5,6.5 + parent: 770 + type: Transform + - uid: 316 + components: + - pos: -5.5,9.5 + parent: 770 + type: Transform + - uid: 317 + components: + - pos: -5.5,8.5 + parent: 770 + type: Transform + - uid: 318 + components: + - pos: -5.5,7.5 + parent: 770 + type: Transform + - uid: 319 + components: + - pos: -5.5,6.5 + parent: 770 + type: Transform + - uid: 320 + components: + - pos: -4.5,9.5 + parent: 770 + type: Transform + - uid: 321 + components: + - pos: -4.5,8.5 + parent: 770 + type: Transform + - uid: 322 + components: + - pos: -4.5,7.5 + parent: 770 + type: Transform + - uid: 323 + components: + - pos: -4.5,6.5 + parent: 770 + type: Transform + - uid: 324 + components: + - pos: -3.5,9.5 + parent: 770 + type: Transform + - uid: 325 + components: + - pos: -3.5,8.5 + parent: 770 + type: Transform + - uid: 326 + components: + - pos: -3.5,7.5 + parent: 770 + type: Transform + - uid: 327 + components: + - pos: -3.5,6.5 + parent: 770 + type: Transform + - uid: 328 + components: + - pos: -2.5,9.5 + parent: 770 + type: Transform + - uid: 329 + components: + - pos: -2.5,8.5 + parent: 770 + type: Transform + - uid: 332 + components: + - pos: -1.5,9.5 + parent: 770 + type: Transform + - uid: 333 + components: + - pos: -1.5,8.5 + parent: 770 + type: Transform + - uid: 336 + components: + - pos: -0.5,9.5 + parent: 770 + type: Transform + - uid: 337 + components: + - pos: -0.5,8.5 + parent: 770 + type: Transform + - uid: 338 + components: + - pos: -0.5,7.5 + parent: 770 + type: Transform + - uid: 339 + components: + - pos: -0.5,6.5 + parent: 770 + type: Transform + - uid: 340 + components: + - pos: 0.5,9.5 + parent: 770 + type: Transform + - uid: 341 + components: + - pos: 0.5,8.5 + parent: 770 + type: Transform + - uid: 342 + components: + - pos: 0.5,7.5 + parent: 770 + type: Transform + - uid: 343 + components: + - pos: 0.5,6.5 + parent: 770 + type: Transform + - uid: 344 + components: + - pos: 1.5,9.5 + parent: 770 + type: Transform + - uid: 345 + components: + - pos: 1.5,8.5 + parent: 770 + type: Transform + - uid: 346 + components: + - pos: 1.5,7.5 + parent: 770 + type: Transform + - uid: 347 + components: + - pos: 1.5,6.5 + parent: 770 + type: Transform + - uid: 348 + components: + - pos: 2.5,9.5 + parent: 770 + type: Transform + - uid: 349 + components: + - pos: 2.5,8.5 + parent: 770 + type: Transform + - uid: 350 + components: + - pos: 2.5,7.5 + parent: 770 + type: Transform + - uid: 351 + components: + - pos: 2.5,6.5 + parent: 770 + type: Transform + - uid: 352 + components: + - pos: 3.5,9.5 + parent: 770 + type: Transform + - uid: 353 + components: + - pos: 3.5,8.5 + parent: 770 + type: Transform + - uid: 354 + components: + - pos: 3.5,7.5 + parent: 770 + type: Transform + - uid: 355 + components: + - pos: 3.5,6.5 + parent: 770 + type: Transform + - uid: 356 + components: + - pos: 4.5,9.5 + parent: 770 + type: Transform + - uid: 357 + components: + - pos: 4.5,8.5 + parent: 770 + type: Transform + - uid: 359 + components: + - pos: 4.5,6.5 + parent: 770 + type: Transform + - uid: 360 + components: + - pos: 5.5,9.5 + parent: 770 + type: Transform + - uid: 361 + components: + - pos: 5.5,8.5 + parent: 770 + type: Transform + - uid: 363 + components: + - pos: 5.5,6.5 + parent: 770 + type: Transform + - uid: 364 + components: + - pos: 6.5,8.5 + parent: 770 + type: Transform + - uid: 365 + components: + - pos: 6.5,7.5 + parent: 770 + type: Transform + - uid: 366 + components: + - pos: 6.5,6.5 + parent: 770 + type: Transform + - uid: 367 + components: + - pos: 7.5,8.5 + parent: 770 + type: Transform + - uid: 368 + components: + - pos: 7.5,7.5 + parent: 770 + type: Transform + - uid: 369 + components: + - pos: 7.5,6.5 + parent: 770 + type: Transform + - uid: 370 + components: + - pos: 8.5,8.5 + parent: 770 + type: Transform + - uid: 371 + components: + - pos: 8.5,7.5 + parent: 770 + type: Transform + - uid: 372 + components: + - pos: 8.5,6.5 + parent: 770 + type: Transform + - uid: 373 + components: + - pos: 9.5,7.5 + parent: 770 + type: Transform + - uid: 374 + components: + - pos: 9.5,6.5 + parent: 770 + type: Transform + - uid: 375 + components: + - pos: 7.5,5.5 + parent: 770 + type: Transform + - uid: 376 + components: + - pos: 8.5,5.5 + parent: 770 + type: Transform + - uid: 377 + components: + - pos: 9.5,5.5 + parent: 770 + type: Transform + - uid: 378 + components: + - pos: 10.5,4.5 + parent: 770 + type: Transform + - uid: 379 + components: + - pos: 10.5,3.5 + parent: 770 + type: Transform + - uid: 380 + components: + - pos: 10.5,2.5 + parent: 770 + type: Transform + - uid: 381 + components: + - pos: 10.5,1.5 + parent: 770 + type: Transform + - uid: 382 + components: + - pos: 10.5,0.5 + parent: 770 + type: Transform + - uid: 383 + components: + - pos: 10.5,-0.5 + parent: 770 + type: Transform + - uid: 384 + components: + - pos: 10.5,-1.5 + parent: 770 + type: Transform + - uid: 385 + components: + - pos: 10.5,-2.5 + parent: 770 + type: Transform + - uid: 386 + components: + - pos: 10.5,-3.5 + parent: 770 + type: Transform + - uid: 387 + components: + - pos: 10.5,-4.5 + parent: 770 + type: Transform + - uid: 388 + components: + - pos: 10.5,-5.5 + parent: 770 + type: Transform + - uid: 389 + components: + - pos: 10.5,-6.5 + parent: 770 + type: Transform + - uid: 390 + components: + - pos: 10.5,-7.5 + parent: 770 + type: Transform + - uid: 391 + components: + - pos: 9.5,4.5 + parent: 770 + type: Transform + - uid: 392 + components: + - pos: 9.5,3.5 + parent: 770 + type: Transform + - uid: 393 + components: + - pos: 9.5,2.5 + parent: 770 + type: Transform + - uid: 395 + components: + - pos: 9.5,0.5 + parent: 770 + type: Transform + - uid: 396 + components: + - pos: 9.5,-0.5 + parent: 770 + type: Transform + - uid: 397 + components: + - pos: 9.5,-1.5 + parent: 770 + type: Transform + - uid: 398 + components: + - pos: 9.5,-2.5 + parent: 770 + type: Transform + - uid: 400 + components: + - pos: 9.5,-4.5 + parent: 770 + type: Transform + - uid: 401 + components: + - pos: 9.5,-5.5 + parent: 770 + type: Transform + - uid: 402 + components: + - pos: 9.5,-6.5 + parent: 770 + type: Transform + - uid: 403 + components: + - pos: 9.5,-7.5 + parent: 770 + type: Transform + - uid: 404 + components: + - pos: 8.5,4.5 + parent: 770 + type: Transform + - uid: 405 + components: + - pos: 8.5,3.5 + parent: 770 + type: Transform + - uid: 406 + components: + - pos: 8.5,2.5 + parent: 770 + type: Transform + - uid: 407 + components: + - pos: 8.5,1.5 + parent: 770 + type: Transform + - uid: 408 + components: + - pos: 8.5,0.5 + parent: 770 + type: Transform + - uid: 409 + components: + - pos: 8.5,-0.5 + parent: 770 + type: Transform + - uid: 410 + components: + - pos: 8.5,-1.5 + parent: 770 + type: Transform + - uid: 411 + components: + - pos: 8.5,-2.5 + parent: 770 + type: Transform + - uid: 412 + components: + - pos: 8.5,-3.5 + parent: 770 + type: Transform + - uid: 413 + components: + - pos: 8.5,-4.5 + parent: 770 + type: Transform + - uid: 414 + components: + - pos: 8.5,-5.5 + parent: 770 + type: Transform + - uid: 415 + components: + - pos: 8.5,-6.5 + parent: 770 + type: Transform + - uid: 416 + components: + - pos: 8.5,-7.5 + parent: 770 + type: Transform + - uid: 417 + components: + - pos: 7.5,4.5 + parent: 770 + type: Transform + - uid: 418 + components: + - pos: 7.5,3.5 + parent: 770 + type: Transform + - uid: 419 + components: + - pos: 7.5,2.5 + parent: 770 + type: Transform + - uid: 420 + components: + - pos: 7.5,1.5 + parent: 770 + type: Transform + - uid: 421 + components: + - pos: 7.5,0.5 + parent: 770 + type: Transform + - uid: 422 + components: + - pos: 7.5,-0.5 + parent: 770 + type: Transform + - uid: 423 + components: + - pos: 7.5,-1.5 + parent: 770 + type: Transform + - uid: 424 + components: + - pos: 7.5,-2.5 + parent: 770 + type: Transform + - uid: 425 + components: + - pos: 7.5,-3.5 + parent: 770 + type: Transform + - uid: 426 + components: + - pos: 7.5,-4.5 + parent: 770 + type: Transform + - uid: 427 + components: + - pos: 7.5,-5.5 + parent: 770 + type: Transform + - uid: 428 + components: + - pos: 7.5,-6.5 + parent: 770 + type: Transform + - uid: 430 + components: + - pos: 9.5,-8.5 + parent: 770 + type: Transform + - uid: 431 + components: + - pos: 9.5,-9.5 + parent: 770 + type: Transform + - uid: 432 + components: + - pos: 9.5,-10.5 + parent: 770 + type: Transform + - uid: 433 + components: + - pos: 8.5,-11.5 + parent: 770 + type: Transform + - uid: 434 + components: + - pos: 8.5,-10.5 + parent: 770 + type: Transform + - uid: 435 + components: + - pos: 8.5,-9.5 + parent: 770 + type: Transform + - uid: 436 + components: + - pos: 8.5,-8.5 + parent: 770 + type: Transform + - uid: 437 + components: + - pos: 7.5,-11.5 + parent: 770 + type: Transform + - uid: 438 + components: + - pos: 7.5,-10.5 + parent: 770 + type: Transform + - uid: 439 + components: + - pos: 7.5,-9.5 + parent: 770 + type: Transform + - uid: 440 + components: + - pos: 7.5,-8.5 + parent: 770 + type: Transform + - uid: 441 + components: + - pos: 5.5,-12.5 + parent: 770 + type: Transform + - uid: 442 + components: + - pos: 4.5,-12.5 + parent: 770 + type: Transform + - uid: 443 + components: + - pos: 3.5,-12.5 + parent: 770 + type: Transform + - uid: 444 + components: + - pos: 2.5,-12.5 + parent: 770 + type: Transform + - uid: 445 + components: + - pos: 1.5,-12.5 + parent: 770 + type: Transform + - uid: 446 + components: + - pos: 0.5,-12.5 + parent: 770 + type: Transform + - uid: 447 + components: + - pos: -0.5,-12.5 + parent: 770 + type: Transform + - uid: 448 + components: + - pos: -1.5,-12.5 + parent: 770 + type: Transform + - uid: 449 + components: + - pos: -2.5,-12.5 + parent: 770 + type: Transform + - uid: 450 + components: + - pos: -3.5,-12.5 + parent: 770 + type: Transform + - uid: 451 + components: + - pos: -4.5,-12.5 + parent: 770 + type: Transform + - uid: 452 + components: + - pos: -5.5,-12.5 + parent: 770 + type: Transform + - uid: 453 + components: + - pos: -6.5,-12.5 + parent: 770 + type: Transform + - uid: 454 + components: + - pos: -9.5,-11.5 + parent: 770 + type: Transform + - uid: 455 + components: + - pos: -9.5,-10.5 + parent: 770 + type: Transform + - uid: 456 + components: + - pos: -9.5,-9.5 + parent: 770 + type: Transform + - uid: 457 + components: + - pos: -9.5,-8.5 + parent: 770 + type: Transform + - uid: 458 + components: + - pos: -9.5,-7.5 + parent: 770 + type: Transform + - uid: 459 + components: + - pos: -9.5,-6.5 + parent: 770 + type: Transform + - uid: 460 + components: + - pos: -9.5,-5.5 + parent: 770 + type: Transform + - uid: 461 + components: + - pos: -9.5,-4.5 + parent: 770 + type: Transform + - uid: 462 + components: + - pos: -9.5,-3.5 + parent: 770 + type: Transform + - uid: 463 + components: + - pos: -9.5,-2.5 + parent: 770 + type: Transform + - uid: 465 + components: + - pos: -8.5,-11.5 + parent: 770 + type: Transform + - uid: 466 + components: + - pos: -8.5,-10.5 + parent: 770 + type: Transform + - uid: 467 + components: + - pos: -8.5,-9.5 + parent: 770 + type: Transform + - uid: 469 + components: + - pos: -8.5,-7.5 + parent: 770 + type: Transform + - uid: 470 + components: + - pos: -8.5,-6.5 + parent: 770 + type: Transform + - uid: 471 + components: + - pos: -8.5,-5.5 + parent: 770 + type: Transform + - uid: 472 + components: + - pos: -8.5,-4.5 + parent: 770 + type: Transform + - uid: 473 + components: + - pos: -8.5,-3.5 + parent: 770 + type: Transform + - uid: 474 + components: + - pos: -8.5,-2.5 + parent: 770 + type: Transform + - uid: 475 + components: + - pos: -8.5,-1.5 + parent: 770 + type: Transform + - uid: 476 + components: + - pos: -7.5,-11.5 + parent: 770 + type: Transform + - uid: 477 + components: + - pos: -7.5,-10.5 + parent: 770 + type: Transform + - uid: 478 + components: + - pos: -7.5,-9.5 + parent: 770 + type: Transform + - uid: 479 + components: + - pos: -7.5,-8.5 + parent: 770 + type: Transform + - uid: 480 + components: + - pos: -7.5,-7.5 + parent: 770 + type: Transform + - uid: 481 + components: + - pos: -7.5,-6.5 + parent: 770 + type: Transform + - uid: 482 + components: + - pos: -7.5,-5.5 + parent: 770 + type: Transform + - uid: 483 + components: + - pos: -7.5,-4.5 + parent: 770 + type: Transform + - uid: 484 + components: + - pos: -7.5,-3.5 + parent: 770 + type: Transform + - uid: 485 + components: + - pos: -7.5,-2.5 + parent: 770 + type: Transform + - uid: 486 + components: + - pos: -7.5,-1.5 + parent: 770 + type: Transform + - uid: 487 + components: + - pos: -6.5,-11.5 + parent: 770 + type: Transform + - uid: 488 + components: + - pos: -6.5,-10.5 + parent: 770 + type: Transform + - uid: 489 + components: + - pos: -6.5,-9.5 + parent: 770 + type: Transform + - uid: 490 + components: + - pos: -6.5,-8.5 + parent: 770 + type: Transform + - uid: 491 + components: + - pos: -6.5,-7.5 + parent: 770 + type: Transform + - uid: 492 + components: + - pos: -6.5,-6.5 + parent: 770 + type: Transform + - uid: 494 + components: + - pos: -6.5,-4.5 + parent: 770 + type: Transform + - uid: 495 + components: + - pos: -6.5,-3.5 + parent: 770 + type: Transform + - uid: 496 + components: + - pos: -6.5,-2.5 + parent: 770 + type: Transform + - uid: 497 + components: + - pos: -6.5,-1.5 + parent: 770 + type: Transform + - uid: 499 + components: + - pos: -5.5,-10.5 + parent: 770 + type: Transform + - uid: 500 + components: + - pos: -5.5,-9.5 + parent: 770 + type: Transform + - uid: 501 + components: + - pos: -5.5,-8.5 + parent: 770 + type: Transform + - uid: 502 + components: + - pos: -5.5,-7.5 + parent: 770 + type: Transform + - uid: 506 + components: + - pos: -5.5,-2.5 + parent: 770 + type: Transform + - uid: 507 + components: + - pos: -5.5,-1.5 + parent: 770 + type: Transform + - uid: 508 + components: + - pos: -4.5,-11.5 + parent: 770 + type: Transform + - uid: 509 + components: + - pos: -4.5,-10.5 + parent: 770 + type: Transform + - uid: 510 + components: + - pos: -4.5,-9.5 + parent: 770 + type: Transform + - uid: 511 + components: + - pos: -4.5,-8.5 + parent: 770 + type: Transform + - uid: 516 + components: + - pos: -4.5,-1.5 + parent: 770 + type: Transform + - uid: 517 + components: + - pos: -3.5,-11.5 + parent: 770 + type: Transform + - uid: 518 + components: + - pos: -3.5,-10.5 + parent: 770 + type: Transform + - uid: 519 + components: + - pos: -3.5,-9.5 + parent: 770 + type: Transform + - uid: 520 + components: + - pos: -3.5,-8.5 + parent: 770 + type: Transform + - uid: 521 + components: + - pos: -3.5,-7.5 + parent: 770 + type: Transform + - uid: 526 + components: + - pos: -3.5,-2.5 + parent: 770 + type: Transform + - uid: 527 + components: + - pos: -3.5,-1.5 + parent: 770 + type: Transform + - uid: 528 + components: + - pos: -2.5,-11.5 + parent: 770 + type: Transform + - uid: 529 + components: + - pos: -2.5,-10.5 + parent: 770 + type: Transform + - uid: 530 + components: + - pos: -2.5,-9.5 + parent: 770 + type: Transform + - uid: 531 + components: + - pos: -2.5,-8.5 + parent: 770 + type: Transform + - uid: 532 + components: + - pos: -2.5,-7.5 + parent: 770 + type: Transform + - uid: 533 + components: + - pos: -2.5,-6.5 + parent: 770 + type: Transform + - uid: 534 + components: + - pos: -2.5,-5.5 + parent: 770 + type: Transform + - uid: 536 + components: + - pos: -2.5,-3.5 + parent: 770 + type: Transform + - uid: 537 + components: + - pos: -2.5,-2.5 + parent: 770 + type: Transform + - uid: 538 + components: + - pos: -2.5,-1.5 + parent: 770 + type: Transform + - uid: 539 + components: + - pos: -1.5,-11.5 + parent: 770 + type: Transform + - uid: 540 + components: + - pos: -1.5,-10.5 + parent: 770 + type: Transform + - uid: 541 + components: + - pos: -1.5,-9.5 + parent: 770 + type: Transform + - uid: 542 + components: + - pos: -1.5,-8.5 + parent: 770 + type: Transform + - uid: 543 + components: + - pos: -1.5,-7.5 + parent: 770 + type: Transform + - uid: 544 + components: + - pos: -1.5,-6.5 + parent: 770 + type: Transform + - uid: 545 + components: + - pos: -1.5,-5.5 + parent: 770 + type: Transform + - uid: 546 + components: + - pos: -1.5,-4.5 + parent: 770 + type: Transform + - uid: 547 + components: + - pos: -1.5,-3.5 + parent: 770 + type: Transform + - uid: 549 + components: + - pos: -1.5,-1.5 + parent: 770 + type: Transform + - uid: 551 + components: + - pos: -0.5,-10.5 + parent: 770 + type: Transform + - uid: 552 + components: + - pos: -0.5,-9.5 + parent: 770 + type: Transform + - uid: 553 + components: + - pos: -0.5,-8.5 + parent: 770 + type: Transform + - uid: 554 + components: + - pos: -0.5,-7.5 + parent: 770 + type: Transform + - uid: 555 + components: + - pos: -0.5,-6.5 + parent: 770 + type: Transform + - uid: 556 + components: + - pos: -0.5,-5.5 + parent: 770 + type: Transform + - uid: 557 + components: + - pos: -0.5,-4.5 + parent: 770 + type: Transform + - uid: 558 + components: + - pos: -0.5,-3.5 + parent: 770 + type: Transform + - uid: 559 + components: + - pos: -0.5,-2.5 + parent: 770 + type: Transform + - uid: 560 + components: + - pos: -0.5,-1.5 + parent: 770 + type: Transform + - uid: 564 + components: + - pos: 0.5,-8.5 + parent: 770 + type: Transform + - uid: 565 + components: + - pos: 0.5,-7.5 + parent: 770 + type: Transform + - uid: 566 + components: + - pos: 0.5,-6.5 + parent: 770 + type: Transform + - uid: 568 + components: + - pos: 0.5,-4.5 + parent: 770 + type: Transform + - uid: 569 + components: + - pos: 0.5,-3.5 + parent: 770 + type: Transform + - uid: 570 + components: + - pos: 0.5,-2.5 + parent: 770 + type: Transform + - uid: 571 + components: + - pos: 0.5,-1.5 + parent: 770 + type: Transform + - uid: 572 + components: + - pos: 1.5,-11.5 + parent: 770 + type: Transform + - uid: 575 + components: + - pos: 1.5,-8.5 + parent: 770 + type: Transform + - uid: 576 + components: + - pos: 1.5,-7.5 + parent: 770 + type: Transform + - uid: 579 + components: + - pos: 1.5,-4.5 + parent: 770 + type: Transform + - uid: 580 + components: + - pos: 1.5,-3.5 + parent: 770 + type: Transform + - uid: 581 + components: + - pos: 1.5,-2.5 + parent: 770 + type: Transform + - uid: 583 + components: + - pos: 2.5,-11.5 + parent: 770 + type: Transform + - uid: 584 + components: + - pos: 2.5,-10.5 + parent: 770 + type: Transform + - uid: 585 + components: + - pos: 2.5,-9.5 + parent: 770 + type: Transform + - uid: 586 + components: + - pos: 2.5,-8.5 + parent: 770 + type: Transform + - uid: 587 + components: + - pos: 2.5,-7.5 + parent: 770 + type: Transform + - uid: 588 + components: + - pos: 2.5,-6.5 + parent: 770 + type: Transform + - uid: 589 + components: + - pos: 2.5,-5.5 + parent: 770 + type: Transform + - uid: 590 + components: + - pos: 2.5,-4.5 + parent: 770 + type: Transform + - uid: 591 + components: + - pos: 2.5,-3.5 + parent: 770 + type: Transform + - uid: 594 + components: + - pos: 3.5,-11.5 + parent: 770 + type: Transform + - uid: 595 + components: + - pos: 3.5,-10.5 + parent: 770 + type: Transform + - uid: 596 + components: + - pos: 3.5,-9.5 + parent: 770 + type: Transform + - uid: 597 + components: + - pos: 3.5,-8.5 + parent: 770 + type: Transform + - uid: 598 + components: + - pos: 3.5,-7.5 + parent: 770 + type: Transform + - uid: 599 + components: + - pos: 3.5,-6.5 + parent: 770 + type: Transform + - uid: 600 + components: + - pos: 3.5,-5.5 + parent: 770 + type: Transform + - uid: 601 + components: + - pos: 3.5,-4.5 + parent: 770 + type: Transform + - uid: 606 + components: + - pos: 4.5,-10.5 + parent: 770 + type: Transform + - uid: 607 + components: + - pos: 4.5,-9.5 + parent: 770 + type: Transform + - uid: 608 + components: + - pos: 4.5,-8.5 + parent: 770 + type: Transform + - uid: 609 + components: + - pos: 4.5,-7.5 + parent: 770 + type: Transform + - uid: 610 + components: + - pos: 4.5,-6.5 + parent: 770 + type: Transform + - uid: 611 + components: + - pos: 4.5,-5.5 + parent: 770 + type: Transform + - uid: 612 + components: + - pos: 4.5,-4.5 + parent: 770 + type: Transform + - uid: 613 + components: + - pos: 4.5,-3.5 + parent: 770 + type: Transform + - uid: 616 + components: + - pos: 5.5,-11.5 + parent: 770 + type: Transform + - uid: 617 + components: + - pos: 5.5,-10.5 + parent: 770 + type: Transform + - uid: 618 + components: + - pos: 5.5,-9.5 + parent: 770 + type: Transform + - uid: 619 + components: + - pos: 5.5,-8.5 + parent: 770 + type: Transform + - uid: 621 + components: + - pos: 5.5,-6.5 + parent: 770 + type: Transform + - uid: 622 + components: + - pos: 5.5,-5.5 + parent: 770 + type: Transform + - uid: 623 + components: + - pos: 5.5,-4.5 + parent: 770 + type: Transform + - uid: 624 + components: + - pos: 5.5,-3.5 + parent: 770 + type: Transform + - uid: 625 + components: + - pos: 5.5,-2.5 + parent: 770 + type: Transform + - uid: 627 + components: + - pos: 6.5,-11.5 + parent: 770 + type: Transform + - uid: 628 + components: + - pos: 6.5,-10.5 + parent: 770 + type: Transform + - uid: 629 + components: + - pos: 6.5,-9.5 + parent: 770 + type: Transform + - uid: 633 + components: + - pos: 6.5,-5.5 + parent: 770 + type: Transform + - uid: 634 + components: + - pos: 6.5,-4.5 + parent: 770 + type: Transform + - uid: 635 + components: + - pos: 6.5,-3.5 + parent: 770 + type: Transform + - uid: 636 + components: + - pos: 6.5,-2.5 + parent: 770 + type: Transform + - uid: 637 + components: + - pos: 6.5,-1.5 + parent: 770 + type: Transform + - uid: 638 + components: + - pos: -10.5,-10.5 + parent: 770 + type: Transform + - uid: 639 + components: + - pos: -10.5,-9.5 + parent: 770 + type: Transform + - uid: 640 + components: + - pos: -10.5,-8.5 + parent: 770 + type: Transform + - uid: 641 + components: + - pos: -10.5,-7.5 + parent: 770 + type: Transform + - uid: 642 + components: + - pos: -10.5,-6.5 + parent: 770 + type: Transform + - uid: 643 + components: + - pos: -10.5,-5.5 + parent: 770 + type: Transform + - uid: 644 + components: + - pos: -10.5,-4.5 + parent: 770 + type: Transform + - uid: 645 + components: + - pos: -10.5,-3.5 + parent: 770 + type: Transform + - uid: 648 + components: + - pos: -10.5,-0.5 + parent: 770 + type: Transform + - uid: 649 + components: + - pos: -10.5,0.5 + parent: 770 + type: Transform + - uid: 650 + components: + - pos: -10.5,1.5 + parent: 770 + type: Transform + - uid: 651 + components: + - pos: -10.5,2.5 + parent: 770 + type: Transform + - uid: 652 + components: + - pos: -10.5,3.5 + parent: 770 + type: Transform + - uid: 653 + components: + - pos: -10.5,4.5 + parent: 770 + type: Transform + - uid: 654 + components: + - pos: -11.5,-7.5 + parent: 770 + type: Transform + - uid: 655 + components: + - pos: -11.5,-6.5 + parent: 770 + type: Transform + - uid: 656 + components: + - pos: -11.5,-5.5 + parent: 770 + type: Transform + - uid: 657 + components: + - pos: -11.5,-4.5 + parent: 770 + type: Transform + - uid: 658 + components: + - pos: -11.5,-3.5 + parent: 770 + type: Transform + - uid: 660 + components: + - pos: -11.5,-1.5 + parent: 770 + type: Transform + - uid: 661 + components: + - pos: -11.5,-0.5 + parent: 770 + type: Transform + - uid: 662 + components: + - pos: -11.5,0.5 + parent: 770 + type: Transform + - uid: 663 + components: + - pos: -11.5,1.5 + parent: 770 + type: Transform + - uid: 664 + components: + - pos: -11.5,2.5 + parent: 770 + type: Transform + - uid: 665 + components: + - pos: -11.5,3.5 + parent: 770 + type: Transform + - uid: 666 + components: + - pos: -11.5,4.5 + parent: 770 + type: Transform + - uid: 667 + components: + - pos: -9.5,8.5 + parent: 770 + type: Transform + - uid: 668 + components: + - pos: -8.5,8.5 + parent: 770 + type: Transform + - uid: 669 + components: + - pos: -7.5,8.5 + parent: 770 + type: Transform + - uid: 670 + components: + - pos: -10.5,7.5 + parent: 770 + type: Transform + - uid: 671 + components: + - pos: -10.5,6.5 + parent: 770 + type: Transform + - uid: 672 + components: + - pos: -10.5,5.5 + parent: 770 + type: Transform + - uid: 673 + components: + - pos: -9.5,7.5 + parent: 770 + type: Transform + - uid: 674 + components: + - pos: -9.5,6.5 + parent: 770 + type: Transform + - uid: 675 + components: + - pos: -8.5,7.5 + parent: 770 + type: Transform + - uid: 676 + components: + - pos: -8.5,6.5 + parent: 770 + type: Transform + - uid: 678 + components: + - pos: -7.5,6.5 + parent: 770 + type: Transform + - uid: 679 + components: + - pos: -9.5,5.5 + parent: 770 + type: Transform + - uid: 680 + components: + - pos: -9.5,4.5 + parent: 770 + type: Transform + - uid: 681 + components: + - pos: -9.5,3.5 + parent: 770 + type: Transform + - uid: 682 + components: + - pos: -9.5,2.5 + parent: 770 + type: Transform + - uid: 683 + components: + - pos: -9.5,1.5 + parent: 770 + type: Transform + - uid: 684 + components: + - pos: -9.5,0.5 + parent: 770 + type: Transform + - uid: 685 + components: + - pos: -9.5,-0.5 + parent: 770 + type: Transform + - uid: 686 + components: + - pos: -8.5,5.5 + parent: 770 + type: Transform + - uid: 688 + components: + - pos: -8.5,3.5 + parent: 770 + type: Transform + - uid: 689 + components: + - pos: -8.5,2.5 + parent: 770 + type: Transform + - uid: 690 + components: + - pos: -8.5,1.5 + parent: 770 + type: Transform + - uid: 691 + components: + - pos: -8.5,0.5 + parent: 770 + type: Transform + - uid: 692 + components: + - pos: -8.5,-0.5 + parent: 770 + type: Transform + - uid: 693 + components: + - pos: -7.5,5.5 + parent: 770 + type: Transform + - uid: 696 + components: + - pos: -7.5,2.5 + parent: 770 + type: Transform + - uid: 697 + components: + - pos: -7.5,1.5 + parent: 770 + type: Transform + - uid: 698 + components: + - pos: -7.5,0.5 + parent: 770 + type: Transform + - uid: 699 + components: + - pos: -7.5,-0.5 + parent: 770 + type: Transform + - uid: 700 + components: + - pos: -6.5,5.5 + parent: 770 + type: Transform + - uid: 703 + components: + - pos: -6.5,2.5 + parent: 770 + type: Transform + - uid: 704 + components: + - pos: -6.5,1.5 + parent: 770 + type: Transform + - uid: 706 + components: + - pos: -6.5,-0.5 + parent: 770 + type: Transform + - uid: 707 + components: + - pos: -5.5,5.5 + parent: 770 + type: Transform + - uid: 708 + components: + - pos: -5.5,4.5 + parent: 770 + type: Transform + - uid: 710 + components: + - pos: -5.5,2.5 + parent: 770 + type: Transform + - uid: 711 + components: + - pos: -5.5,1.5 + parent: 770 + type: Transform + - uid: 712 + components: + - pos: -5.5,0.5 + parent: 770 + type: Transform + - uid: 713 + components: + - pos: -5.5,-0.5 + parent: 770 + type: Transform + - uid: 714 + components: + - pos: -4.5,5.5 + parent: 770 + type: Transform + - uid: 715 + components: + - pos: -4.5,4.5 + parent: 770 + type: Transform + - uid: 716 + components: + - pos: -4.5,3.5 + parent: 770 + type: Transform + - uid: 717 + components: + - pos: -4.5,2.5 + parent: 770 + type: Transform + - uid: 718 + components: + - pos: -4.5,1.5 + parent: 770 + type: Transform + - uid: 719 + components: + - pos: -4.5,0.5 + parent: 770 + type: Transform + - uid: 720 + components: + - pos: -4.5,-0.5 + parent: 770 + type: Transform + - uid: 721 + components: + - pos: -3.5,5.5 + parent: 770 + type: Transform + - uid: 722 + components: + - pos: -3.5,4.5 + parent: 770 + type: Transform + - uid: 723 + components: + - pos: -3.5,3.5 + parent: 770 + type: Transform + - uid: 724 + components: + - pos: -3.5,2.5 + parent: 770 + type: Transform + - uid: 725 + components: + - pos: -3.5,1.5 + parent: 770 + type: Transform + - uid: 726 + components: + - pos: -3.5,0.5 + parent: 770 + type: Transform + - uid: 727 + components: + - pos: -3.5,-0.5 + parent: 770 + type: Transform + - uid: 728 + components: + - pos: -2.5,5.5 + parent: 770 + type: Transform + - uid: 729 + components: + - pos: -2.5,4.5 + parent: 770 + type: Transform + - uid: 730 + components: + - pos: -2.5,3.5 + parent: 770 + type: Transform + - uid: 731 + components: + - pos: -2.5,2.5 + parent: 770 + type: Transform + - uid: 732 + components: + - pos: -2.5,1.5 + parent: 770 + type: Transform + - uid: 733 + components: + - pos: -2.5,0.5 + parent: 770 + type: Transform + - uid: 737 + components: + - pos: -1.5,3.5 + parent: 770 + type: Transform + - uid: 738 + components: + - pos: -1.5,2.5 + parent: 770 + type: Transform + - uid: 739 + components: + - pos: -1.5,1.5 + parent: 770 + type: Transform + - uid: 740 + components: + - pos: -1.5,0.5 + parent: 770 + type: Transform + - uid: 741 + components: + - pos: -1.5,-0.5 + parent: 770 + type: Transform + - uid: 742 + components: + - pos: -0.5,5.5 + parent: 770 + type: Transform + - uid: 743 + components: + - pos: -0.5,4.5 + parent: 770 + type: Transform + - uid: 744 + components: + - pos: -0.5,3.5 + parent: 770 + type: Transform + - uid: 745 + components: + - pos: -0.5,2.5 + parent: 770 + type: Transform + - uid: 746 + components: + - pos: -0.5,1.5 + parent: 770 + type: Transform + - uid: 747 + components: + - pos: -0.5,0.5 + parent: 770 + type: Transform + - uid: 748 + components: + - pos: -0.5,-0.5 + parent: 770 + type: Transform + - uid: 749 + components: + - pos: 0.5,5.5 + parent: 770 + type: Transform + - uid: 750 + components: + - pos: 0.5,4.5 + parent: 770 + type: Transform + - uid: 751 + components: + - pos: 0.5,3.5 + parent: 770 + type: Transform + - uid: 752 + components: + - pos: 0.5,2.5 + parent: 770 + type: Transform + - uid: 753 + components: + - pos: 0.5,1.5 + parent: 770 + type: Transform + - uid: 754 + components: + - pos: 0.5,0.5 + parent: 770 + type: Transform + - uid: 755 + components: + - pos: 0.5,-0.5 + parent: 770 + type: Transform +- proto: RobustHarvestChemistryBottle + entities: + - uid: 300 + components: + - pos: 2.5776212,3.7277248 + parent: 770 + type: Transform +- proto: SalvageCanisterSpawner + entities: + - uid: 399 + components: + - pos: -7.5,3.5 + parent: 770 + type: Transform + - uid: 702 + components: + - pos: 0.5,-9.5 + parent: 770 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 578 + components: + - pos: -4.5,-4.5 + parent: 770 + type: Transform + - uid: 735 + components: + - pos: 5.5,-7.5 + parent: 770 + type: Transform +- proto: SalvageMobSpawner + entities: + - uid: 503 + components: + - pos: -1.5,5.5 + parent: 770 + type: Transform + - uid: 504 + components: + - pos: 4.5,-11.5 + parent: 770 + type: Transform + - uid: 513 + components: + - pos: 9.5,-3.5 + parent: 770 + type: Transform + - uid: 522 + components: + - pos: -2.5,7.5 + parent: 770 + type: Transform + - uid: 524 + components: + - pos: -7.5,7.5 + parent: 770 + type: Transform + - uid: 647 + components: + - pos: 5.5,7.5 + parent: 770 + type: Transform + - uid: 695 + components: + - pos: -0.5,-11.5 + parent: 770 + type: Transform + - uid: 736 + components: + - pos: 6.5,-8.5 + parent: 770 + type: Transform +- proto: SalvageMobSpawner75 + entities: + - uid: 335 + components: + - pos: -10.5,-2.5 + parent: 770 + type: Transform + - uid: 394 + components: + - pos: 0.5,-5.5 + parent: 770 + type: Transform + - uid: 498 + components: + - pos: -3.5,-6.5 + parent: 770 + type: Transform + - uid: 561 + components: + - pos: -8.5,4.5 + parent: 770 + type: Transform + - uid: 562 + components: + - pos: -5.5,3.5 + parent: 770 + type: Transform + - uid: 577 + components: + - pos: -3.5,-5.5 + parent: 770 + type: Transform + - uid: 659 + components: + - pos: 6.5,-6.5 + parent: 770 + type: Transform + - uid: 705 + components: + - pos: -5.5,-3.5 + parent: 770 + type: Transform + - uid: 709 + components: + - pos: 1.5,-9.5 + parent: 770 + type: Transform +- proto: SalvagePartsSpawnerLow + entities: + - uid: 307 + components: + - pos: 2.5,2.5 + parent: 770 + type: Transform + - uid: 331 + components: + - pos: -9.5,-1.5 + parent: 770 + type: Transform + - uid: 464 + components: + - pos: -4.5,-7.5 + parent: 770 + type: Transform + - uid: 468 + components: + - pos: -4.5,-2.5 + parent: 770 + type: Transform + - uid: 646 + components: + - pos: -6.5,0.5 + parent: 770 + type: Transform + - uid: 677 + components: + - pos: -6.5,-5.5 + parent: 770 + type: Transform +- proto: SalvagePartsSpawnerMid + entities: + - uid: 358 + components: + - pos: 4.5,7.5 + parent: 770 + type: Transform + - uid: 362 + components: + - pos: 1.5,-5.5 + parent: 770 + type: Transform + - uid: 550 + components: + - pos: -2.5,-0.5 + parent: 770 + type: Transform + - uid: 734 + components: + - pos: -2.5,-4.5 + parent: 770 + type: Transform + - uid: 768 + components: + - pos: 3.5,4.5 + parent: 770 + type: Transform +- proto: SalvagePartsSpawnerSubSpace + entities: + - uid: 548 + components: + - pos: -1.5,-2.5 + parent: 770 + type: Transform +- proto: SalvageSeedSpawnerLow + entities: + - uid: 289 + components: + - pos: 3.5,0.5 + parent: 770 + type: Transform + - uid: 290 + components: + - pos: 4.5,1.5 + parent: 770 + type: Transform + - uid: 291 + components: + - pos: 3.5,2.5 + parent: 770 + type: Transform + - uid: 292 + components: + - pos: 5.5,1.5 + parent: 770 + type: Transform +- proto: SignHydro1 + entities: + - uid: 274 + components: + - pos: 2.5,-0.5 + parent: 770 + type: Transform +- proto: SnakeMobMundane + entities: + - uid: 308 + components: + - pos: 4.5,3.5 + parent: 770 + type: Transform + - uid: 309 + components: + - pos: 3.5,1.5 + parent: 770 + type: Transform + - uid: 310 + components: + - pos: 5.5,3.5 + parent: 770 + type: Transform + - uid: 567 + components: + - pos: -5.5,-6.5 + parent: 770 + type: Transform +- proto: SnakeMobMundane25 + entities: + - uid: 312 + components: + - pos: 5.5,1.5 + parent: 770 + type: Transform + - uid: 523 + components: + - pos: -1.5,-2.5 + parent: 770 + type: Transform +- proto: SpawnMobBearSalvage + entities: + - uid: 605 + components: + - pos: -3.5,-3.5 + parent: 770 + type: Transform +- proto: TableCounterMetal + entities: + - uid: 293 + components: + - pos: 2.5,3.5 + parent: 770 + type: Transform + - uid: 294 + components: + - pos: 2.5,4.5 + parent: 770 + type: Transform + - uid: 295 + components: + - pos: 3.5,4.5 + parent: 770 + type: Transform +- proto: UnstableMutagenChemistryBottle + entities: + - uid: 303 + components: + - pos: 2.3588712,3.5870025 + parent: 770 + type: Transform +- proto: VendingMachineSeeds + entities: + - uid: 305 + components: + - flags: SessionSpecific + type: MetaData + - pos: 5.5,4.5 + parent: 770 + type: Transform +- proto: WallSolid + entities: + - uid: 261 + components: + - pos: 2.5,5.5 + parent: 770 + type: Transform + - uid: 262 + components: + - pos: 3.5,5.5 + parent: 770 + type: Transform + - uid: 263 + components: + - pos: 4.5,5.5 + parent: 770 + type: Transform + - uid: 264 + components: + - pos: 5.5,5.5 + parent: 770 + type: Transform + - uid: 265 + components: + - pos: 6.5,5.5 + parent: 770 + type: Transform + - uid: 266 + components: + - pos: 6.5,4.5 + parent: 770 + type: Transform + - uid: 267 + components: + - pos: 6.5,3.5 + parent: 770 + type: Transform + - uid: 268 + components: + - pos: 6.5,2.5 + parent: 770 + type: Transform + - uid: 269 + components: + - pos: 6.5,1.5 + parent: 770 + type: Transform + - uid: 270 + components: + - pos: 6.5,0.5 + parent: 770 + type: Transform + - uid: 271 + components: + - pos: 6.5,-0.5 + parent: 770 + type: Transform + - uid: 272 + components: + - pos: 5.5,-0.5 + parent: 770 + type: Transform + - uid: 273 + components: + - pos: 4.5,-0.5 + parent: 770 + type: Transform + - uid: 275 + components: + - pos: 2.5,-0.5 + parent: 770 + type: Transform + - uid: 276 + components: + - pos: 1.5,-0.5 + parent: 770 + type: Transform + - uid: 277 + components: + - pos: 1.5,0.5 + parent: 770 + type: Transform + - uid: 278 + components: + - pos: 1.5,1.5 + parent: 770 + type: Transform + - uid: 279 + components: + - pos: 1.5,2.5 + parent: 770 + type: Transform + - uid: 280 + components: + - pos: 1.5,3.5 + parent: 770 + type: Transform + - uid: 281 + components: + - pos: 1.5,4.5 + parent: 770 + type: Transform + - uid: 282 + components: + - pos: 1.5,5.5 + parent: 770 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-asteroid-large-03.yml b/Resources/Maps/Salvage/DeltaV/DV-asteroid-large-03.yml new file mode 100644 index 0000000000..1a374c4abc --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-asteroid-large-03.yml @@ -0,0 +1,4209 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand + 31: FloorDarkMini + 62: FloorMetalDiamond + 72: FloorReinforced + 113: Plating +entities: +- proto: "" + entities: + - uid: 778 + components: + - type: MetaData + - pos: 0.5167553,0.5923884 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAHwAAAAAAcQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAHwAAAAAAcQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAASAAAAAAAPgAAAAAASAAAAAAAHwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnBox + decals: + 0: -5,-3 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 65535 + 0,-1: + 0: 65535 + -1,0: + 0: 65535 + 0,0: + 0: 65535 + -4,-2: + 0: 61166 + -4,-1: + 0: 61166 + -4,-3: + 0: 52424 + -4,-4: + 0: 32768 + -3,-4: + 0: 65472 + -3,-3: + 0: 65535 + -3,-2: + 0: 65535 + -3,-1: + 0: 65535 + -2,-4: + 0: 65534 + -2,-3: + 0: 65535 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-4: + 0: 65535 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + 0,-4: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 1,-4: + 0: 65523 + 1,-3: + 0: 65535 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-4: + 0: 63248 + 2,-3: + 0: 65535 + 2,-2: + 0: 65535 + 2,-1: + 0: 65535 + 3,-3: + 0: 4368 + 3,-2: + 0: 13107 + 3,-1: + 0: 13107 + -4,0: + 0: 61166 + -4,1: + 0: 52430 + -4,2: + 0: 136 + -3,0: + 0: 65535 + -3,1: + 0: 65535 + -3,2: + 0: 53247 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 65535 + -2,3: + 0: 14 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -1,3: + 0: 15 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 15 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 65535 + 1,3: + 0: 3 + 2,0: + 0: 65535 + 2,1: + 0: 65535 + 2,2: + 0: 6143 + 3,0: + 0: 13107 + 3,1: + 0: 4371 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - type: SpreaderGrid +- proto: AirlockScienceLocked + entities: + - uid: 263 + components: + - pos: 0.5,-4.5 + parent: 778 + type: Transform +- proto: APCBasic + entities: + - uid: 294 + components: + - pos: -0.5,-2.5 + parent: 778 + type: Transform +- proto: AsteroidAltRock + entities: + - uid: 1 + components: + - pos: -5.5,-14.5 + parent: 778 + type: Transform + - uid: 2 + components: + - pos: 8.5,11.5 + parent: 778 + type: Transform + - uid: 3 + components: + - pos: 7.5,11.5 + parent: 778 + type: Transform + - uid: 4 + components: + - pos: 6.5,11.5 + parent: 778 + type: Transform + - uid: 5 + components: + - pos: 5.5,12.5 + parent: 778 + type: Transform + - uid: 6 + components: + - pos: 4.5,12.5 + parent: 778 + type: Transform + - uid: 7 + components: + - pos: 3.5,12.5 + parent: 778 + type: Transform + - uid: 8 + components: + - pos: -13.5,3.5 + parent: 778 + type: Transform + - uid: 9 + components: + - pos: -8.5,11.5 + parent: 778 + type: Transform + - uid: 10 + components: + - pos: -9.5,11.5 + parent: 778 + type: Transform + - uid: 11 + components: + - pos: -10.5,10.5 + parent: 778 + type: Transform + - uid: 12 + components: + - pos: -11.5,10.5 + parent: 778 + type: Transform + - uid: 13 + components: + - pos: -0.5,12.5 + parent: 778 + type: Transform + - uid: 14 + components: + - pos: -1.5,12.5 + parent: 778 + type: Transform + - uid: 15 + components: + - pos: -4.5,12.5 + parent: 778 + type: Transform + - uid: 16 + components: + - pos: -5.5,12.5 + parent: 778 + type: Transform + - uid: 17 + components: + - pos: -13.5,-6.5 + parent: 778 + type: Transform + - uid: 18 + components: + - pos: -13.5,-7.5 + parent: 778 + type: Transform + - uid: 19 + components: + - pos: -3.5,-15.5 + parent: 778 + type: Transform + - uid: 20 + components: + - pos: -2.5,-15.5 + parent: 778 + type: Transform + - uid: 21 + components: + - pos: 4.5,-15.5 + parent: 778 + type: Transform + - uid: 22 + components: + - pos: 7.5,-14.5 + parent: 778 + type: Transform + - uid: 23 + components: + - pos: 0.5,-15.5 + parent: 778 + type: Transform + - uid: 24 + components: + - pos: 1.5,-15.5 + parent: 778 + type: Transform + - uid: 25 + components: + - pos: 10.5,-13.5 + parent: 778 + type: Transform + - uid: 26 + components: + - pos: 11.5,-12.5 + parent: 778 + type: Transform + - uid: 27 + components: + - pos: 13.5,-7.5 + parent: 778 + type: Transform + - uid: 28 + components: + - pos: 13.5,-6.5 + parent: 778 + type: Transform + - uid: 29 + components: + - pos: 13.5,-1.5 + parent: 778 + type: Transform + - uid: 30 + components: + - pos: 13.5,1.5 + parent: 778 + type: Transform + - uid: 31 + components: + - pos: 13.5,3.5 + parent: 778 + type: Transform + - uid: 32 + components: + - pos: 13.5,4.5 + parent: 778 + type: Transform + - uid: 33 + components: + - pos: -6.5,-15.5 + parent: 778 + type: Transform + - uid: 34 + components: + - pos: -5.5,-15.5 + parent: 778 + type: Transform + - uid: 35 + components: + - pos: -4.5,-15.5 + parent: 778 + type: Transform + - uid: 36 + components: + - pos: -14.5,0.5 + parent: 778 + type: Transform + - uid: 37 + components: + - pos: -14.5,-0.5 + parent: 778 + type: Transform + - uid: 38 + components: + - pos: -14.5,-1.5 + parent: 778 + type: Transform + - uid: 39 + components: + - pos: -14.5,-2.5 + parent: 778 + type: Transform + - uid: 40 + components: + - pos: -14.5,-3.5 + parent: 778 + type: Transform + - uid: 41 + components: + - pos: -14.5,4.5 + parent: 778 + type: Transform + - uid: 42 + components: + - pos: -14.5,3.5 + parent: 778 + type: Transform + - uid: 43 + components: + - pos: -14.5,2.5 + parent: 778 + type: Transform + - uid: 44 + components: + - pos: -14.5,1.5 + parent: 778 + type: Transform + - uid: 45 + components: + - pos: -12.5,8.5 + parent: 778 + type: Transform + - uid: 46 + components: + - pos: -13.5,7.5 + parent: 778 + type: Transform + - uid: 47 + components: + - pos: -13.5,6.5 + parent: 778 + type: Transform + - uid: 48 + components: + - pos: -13.5,5.5 + parent: 778 + type: Transform + - uid: 49 + components: + - pos: -13.5,4.5 + parent: 778 + type: Transform + - uid: 50 + components: + - pos: -13.5,2.5 + parent: 778 + type: Transform + - uid: 51 + components: + - pos: -13.5,1.5 + parent: 778 + type: Transform + - uid: 52 + components: + - pos: 2.5,12.5 + parent: 778 + type: Transform + - uid: 53 + components: + - pos: 1.5,12.5 + parent: 778 + type: Transform + - uid: 54 + components: + - pos: 0.5,12.5 + parent: 778 + type: Transform + - uid: 55 + components: + - pos: -12.5,9.5 + parent: 778 + type: Transform + - uid: 56 + components: + - pos: -2.5,12.5 + parent: 778 + type: Transform + - uid: 57 + components: + - pos: -3.5,12.5 + parent: 778 + type: Transform + - uid: 58 + components: + - pos: -6.5,12.5 + parent: 778 + type: Transform + - uid: 59 + components: + - pos: -7.5,11.5 + parent: 778 + type: Transform + - uid: 60 + components: + - pos: -12.5,-8.5 + parent: 778 + type: Transform + - uid: 61 + components: + - pos: -12.5,-9.5 + parent: 778 + type: Transform + - uid: 62 + components: + - pos: -1.5,-15.5 + parent: 778 + type: Transform + - uid: 63 + components: + - pos: -0.5,-15.5 + parent: 778 + type: Transform + - uid: 64 + components: + - pos: 5.5,-15.5 + parent: 778 + type: Transform + - uid: 65 + components: + - pos: 8.5,-14.5 + parent: 778 + type: Transform + - uid: 66 + components: + - pos: 2.5,-15.5 + parent: 778 + type: Transform + - uid: 67 + components: + - pos: 11.5,-11.5 + parent: 778 + type: Transform + - uid: 68 + components: + - pos: 12.5,-10.5 + parent: 778 + type: Transform + - uid: 69 + components: + - pos: 13.5,-5.5 + parent: 778 + type: Transform + - uid: 70 + components: + - pos: 13.5,-4.5 + parent: 778 + type: Transform + - uid: 71 + components: + - pos: 13.5,-0.5 + parent: 778 + type: Transform + - uid: 72 + components: + - pos: 13.5,2.5 + parent: 778 + type: Transform + - uid: 73 + components: + - pos: 12.5,5.5 + parent: 778 + type: Transform + - uid: 74 + components: + - pos: 12.5,6.5 + parent: 778 + type: Transform + - uid: 75 + components: + - pos: 11.5,8.5 + parent: 778 + type: Transform + - uid: 76 + components: + - pos: 11.5,9.5 + parent: 778 + type: Transform + - uid: 77 + components: + - pos: -14.5,-4.5 + parent: 778 + type: Transform + - uid: 78 + components: + - pos: -14.5,-5.5 + parent: 778 + type: Transform + - uid: 79 + components: + - pos: -12.5,-11.5 + parent: 778 + type: Transform + - uid: 80 + components: + - pos: -12.5,-12.5 + parent: 778 + type: Transform + - uid: 81 + components: + - pos: -9.5,-14.5 + parent: 778 + type: Transform + - uid: 82 + components: + - pos: -8.5,-14.5 + parent: 778 + type: Transform + - uid: 83 + components: + - pos: -13.5,-8.5 + parent: 778 + type: Transform + - uid: 84 + components: + - pos: -13.5,-9.5 + parent: 778 + type: Transform + - uid: 85 + components: + - pos: -10.5,-12.5 + parent: 778 + type: Transform + - uid: 86 + components: + - pos: -9.5,-13.5 + parent: 778 + type: Transform + - uid: 87 + components: + - pos: -8.5,-13.5 + parent: 778 + type: Transform + - uid: 88 + components: + - pos: -7.5,-13.5 + parent: 778 + type: Transform + - uid: 89 + components: + - pos: -6.5,-14.5 + parent: 778 + type: Transform + - uid: 90 + components: + - pos: -13.5,0.5 + parent: 778 + type: Transform + - uid: 91 + components: + - pos: -13.5,-0.5 + parent: 778 + type: Transform + - uid: 92 + components: + - pos: -13.5,-1.5 + parent: 778 + type: Transform + - uid: 93 + components: + - pos: -13.5,-2.5 + parent: 778 + type: Transform + - uid: 94 + components: + - pos: -13.5,-3.5 + parent: 778 + type: Transform + - uid: 95 + components: + - pos: -13.5,-4.5 + parent: 778 + type: Transform + - uid: 96 + components: + - pos: -13.5,-5.5 + parent: 778 + type: Transform + - uid: 97 + components: + - pos: -12.5,-10.5 + parent: 778 + type: Transform + - uid: 98 + components: + - pos: -11.5,-11.5 + parent: 778 + type: Transform + - uid: 99 + components: + - pos: -11.5,-12.5 + parent: 778 + type: Transform + - uid: 100 + components: + - pos: 6.5,-14.5 + parent: 778 + type: Transform + - uid: 101 + components: + - pos: 9.5,-13.5 + parent: 778 + type: Transform + - uid: 102 + components: + - pos: 3.5,-15.5 + parent: 778 + type: Transform + - uid: 103 + components: + - pos: 12.5,-9.5 + parent: 778 + type: Transform + - uid: 104 + components: + - pos: 12.5,-8.5 + parent: 778 + type: Transform + - uid: 105 + components: + - pos: 13.5,-3.5 + parent: 778 + type: Transform + - uid: 106 + components: + - pos: 13.5,-2.5 + parent: 778 + type: Transform + - uid: 107 + components: + - pos: 13.5,0.5 + parent: 778 + type: Transform + - uid: 108 + components: + - pos: 12.5,7.5 + parent: 778 + type: Transform + - uid: 109 + components: + - pos: 10.5,10.5 + parent: 778 + type: Transform + - uid: 110 + components: + - pos: 9.5,10.5 + parent: 778 + type: Transform + - uid: 111 + components: + - pos: -14.5,-6.5 + parent: 778 + type: Transform + - uid: 112 + components: + - pos: -14.5,-7.5 + parent: 778 + type: Transform + - uid: 113 + components: + - pos: -11.5,-13.5 + parent: 778 + type: Transform + - uid: 114 + components: + - pos: -10.5,-13.5 + parent: 778 + type: Transform + - uid: 115 + components: + - pos: -7.5,-14.5 + parent: 778 + type: Transform + - uid: 116 + components: + - pos: -13.5,-10.5 + parent: 778 + type: Transform + - uid: 117 + components: + - pos: -4.5,-14.5 + parent: 778 + type: Transform + - uid: 118 + components: + - pos: -3.5,-14.5 + parent: 778 + type: Transform + - uid: 119 + components: + - pos: -2.5,-14.5 + parent: 778 + type: Transform + - uid: 120 + components: + - pos: -1.5,-14.5 + parent: 778 + type: Transform + - uid: 121 + components: + - pos: -0.5,-14.5 + parent: 778 + type: Transform + - uid: 122 + components: + - pos: 0.5,-14.5 + parent: 778 + type: Transform + - uid: 123 + components: + - pos: 1.5,-14.5 + parent: 778 + type: Transform + - uid: 124 + components: + - pos: 2.5,-14.5 + parent: 778 + type: Transform + - uid: 125 + components: + - pos: 3.5,-14.5 + parent: 778 + type: Transform + - uid: 126 + components: + - pos: 4.5,-14.5 + parent: 778 + type: Transform + - uid: 127 + components: + - pos: 5.5,-14.5 + parent: 778 + type: Transform + - uid: 128 + components: + - pos: 6.5,-13.5 + parent: 778 + type: Transform + - uid: 129 + components: + - pos: 7.5,-13.5 + parent: 778 + type: Transform + - uid: 130 + components: + - pos: 8.5,-13.5 + parent: 778 + type: Transform + - uid: 131 + components: + - pos: 9.5,-12.5 + parent: 778 + type: Transform + - uid: 132 + components: + - pos: 10.5,-12.5 + parent: 778 + type: Transform + - uid: 133 + components: + - pos: 10.5,-11.5 + parent: 778 + type: Transform + - uid: 134 + components: + - pos: 11.5,-10.5 + parent: 778 + type: Transform + - uid: 135 + components: + - pos: 11.5,-9.5 + parent: 778 + type: Transform + - uid: 136 + components: + - pos: 11.5,-8.5 + parent: 778 + type: Transform + - uid: 137 + components: + - pos: 12.5,-7.5 + parent: 778 + type: Transform + - uid: 138 + components: + - pos: 12.5,-6.5 + parent: 778 + type: Transform + - uid: 139 + components: + - pos: 12.5,-5.5 + parent: 778 + type: Transform + - uid: 140 + components: + - pos: 12.5,-4.5 + parent: 778 + type: Transform + - uid: 141 + components: + - pos: 12.5,-3.5 + parent: 778 + type: Transform + - uid: 142 + components: + - pos: 12.5,-2.5 + parent: 778 + type: Transform + - uid: 143 + components: + - pos: 12.5,-1.5 + parent: 778 + type: Transform + - uid: 144 + components: + - pos: 12.5,-0.5 + parent: 778 + type: Transform + - uid: 145 + components: + - pos: 12.5,0.5 + parent: 778 + type: Transform + - uid: 146 + components: + - pos: 12.5,1.5 + parent: 778 + type: Transform + - uid: 147 + components: + - pos: 12.5,2.5 + parent: 778 + type: Transform + - uid: 148 + components: + - pos: 12.5,3.5 + parent: 778 + type: Transform + - uid: 149 + components: + - pos: 12.5,4.5 + parent: 778 + type: Transform + - uid: 150 + components: + - pos: 11.5,5.5 + parent: 778 + type: Transform + - uid: 151 + components: + - pos: 11.5,6.5 + parent: 778 + type: Transform + - uid: 152 + components: + - pos: 11.5,7.5 + parent: 778 + type: Transform + - uid: 153 + components: + - pos: 10.5,8.5 + parent: 778 + type: Transform + - uid: 154 + components: + - pos: 10.5,9.5 + parent: 778 + type: Transform + - uid: 155 + components: + - pos: 9.5,9.5 + parent: 778 + type: Transform + - uid: 156 + components: + - pos: 8.5,10.5 + parent: 778 + type: Transform + - uid: 157 + components: + - pos: 7.5,10.5 + parent: 778 + type: Transform + - uid: 158 + components: + - pos: 6.5,10.5 + parent: 778 + type: Transform + - uid: 159 + components: + - pos: 5.5,11.5 + parent: 778 + type: Transform + - uid: 160 + components: + - pos: 4.5,11.5 + parent: 778 + type: Transform + - uid: 161 + components: + - pos: 3.5,11.5 + parent: 778 + type: Transform + - uid: 162 + components: + - pos: 2.5,11.5 + parent: 778 + type: Transform + - uid: 163 + components: + - pos: 1.5,11.5 + parent: 778 + type: Transform + - uid: 164 + components: + - pos: 0.5,11.5 + parent: 778 + type: Transform + - uid: 165 + components: + - pos: -0.5,11.5 + parent: 778 + type: Transform + - uid: 166 + components: + - pos: -1.5,11.5 + parent: 778 + type: Transform + - uid: 167 + components: + - pos: -2.5,11.5 + parent: 778 + type: Transform + - uid: 168 + components: + - pos: -3.5,11.5 + parent: 778 + type: Transform + - uid: 169 + components: + - pos: -4.5,11.5 + parent: 778 + type: Transform + - uid: 170 + components: + - pos: -5.5,11.5 + parent: 778 + type: Transform + - uid: 171 + components: + - pos: -6.5,11.5 + parent: 778 + type: Transform + - uid: 172 + components: + - pos: -7.5,10.5 + parent: 778 + type: Transform + - uid: 173 + components: + - pos: -8.5,10.5 + parent: 778 + type: Transform + - uid: 174 + components: + - pos: -9.5,10.5 + parent: 778 + type: Transform + - uid: 175 + components: + - pos: -10.5,9.5 + parent: 778 + type: Transform + - uid: 176 + components: + - pos: -11.5,9.5 + parent: 778 + type: Transform + - uid: 177 + components: + - pos: -11.5,8.5 + parent: 778 + type: Transform + - uid: 178 + components: + - pos: -12.5,7.5 + parent: 778 + type: Transform + - uid: 179 + components: + - pos: -12.5,6.5 + parent: 778 + type: Transform + - uid: 180 + components: + - pos: -12.5,5.5 + parent: 778 + type: Transform +- proto: AsteroidAltRockMining + entities: + - uid: 181 + components: + - pos: -12.5,4.5 + parent: 778 + type: Transform + - uid: 182 + components: + - pos: -12.5,3.5 + parent: 778 + type: Transform + - uid: 183 + components: + - pos: -12.5,2.5 + parent: 778 + type: Transform + - uid: 184 + components: + - pos: -12.5,1.5 + parent: 778 + type: Transform + - uid: 185 + components: + - pos: -12.5,0.5 + parent: 778 + type: Transform + - uid: 186 + components: + - pos: -12.5,-0.5 + parent: 778 + type: Transform + - uid: 187 + components: + - pos: -12.5,-1.5 + parent: 778 + type: Transform + - uid: 188 + components: + - pos: -12.5,-2.5 + parent: 778 + type: Transform + - uid: 189 + components: + - pos: -12.5,-3.5 + parent: 778 + type: Transform + - uid: 190 + components: + - pos: -12.5,-4.5 + parent: 778 + type: Transform + - uid: 191 + components: + - pos: -12.5,-5.5 + parent: 778 + type: Transform + - uid: 192 + components: + - pos: -12.5,-6.5 + parent: 778 + type: Transform + - uid: 193 + components: + - pos: -12.5,-7.5 + parent: 778 + type: Transform + - uid: 194 + components: + - pos: -11.5,-8.5 + parent: 778 + type: Transform + - uid: 195 + components: + - pos: -11.5,-9.5 + parent: 778 + type: Transform + - uid: 196 + components: + - pos: -11.5,-10.5 + parent: 778 + type: Transform + - uid: 197 + components: + - pos: -10.5,-11.5 + parent: 778 + type: Transform + - uid: 198 + components: + - pos: -9.5,-12.5 + parent: 778 + type: Transform + - uid: 199 + components: + - pos: -8.5,-12.5 + parent: 778 + type: Transform + - uid: 200 + components: + - pos: -7.5,-12.5 + parent: 778 + type: Transform + - uid: 201 + components: + - pos: -6.5,-13.5 + parent: 778 + type: Transform + - uid: 202 + components: + - pos: -5.5,-13.5 + parent: 778 + type: Transform + - uid: 203 + components: + - pos: -4.5,-13.5 + parent: 778 + type: Transform + - uid: 204 + components: + - pos: -3.5,-13.5 + parent: 778 + type: Transform + - uid: 205 + components: + - pos: -2.5,-13.5 + parent: 778 + type: Transform + - uid: 206 + components: + - pos: -1.5,-13.5 + parent: 778 + type: Transform + - uid: 207 + components: + - pos: -0.5,-13.5 + parent: 778 + type: Transform + - uid: 208 + components: + - pos: 0.5,-13.5 + parent: 778 + type: Transform + - uid: 209 + components: + - pos: 1.5,-13.5 + parent: 778 + type: Transform + - uid: 210 + components: + - pos: 2.5,-13.5 + parent: 778 + type: Transform + - uid: 211 + components: + - pos: 3.5,-13.5 + parent: 778 + type: Transform + - uid: 212 + components: + - pos: 4.5,-13.5 + parent: 778 + type: Transform + - uid: 213 + components: + - pos: 5.5,-13.5 + parent: 778 + type: Transform + - uid: 214 + components: + - pos: 6.5,-12.5 + parent: 778 + type: Transform + - uid: 215 + components: + - pos: 7.5,-12.5 + parent: 778 + type: Transform + - uid: 216 + components: + - pos: 8.5,-12.5 + parent: 778 + type: Transform + - uid: 217 + components: + - pos: 9.5,-11.5 + parent: 778 + type: Transform + - uid: 218 + components: + - pos: 10.5,-10.5 + parent: 778 + type: Transform + - uid: 219 + components: + - pos: 10.5,-9.5 + parent: 778 + type: Transform + - uid: 220 + components: + - pos: 10.5,-8.5 + parent: 778 + type: Transform + - uid: 221 + components: + - pos: 11.5,-7.5 + parent: 778 + type: Transform + - uid: 222 + components: + - pos: 11.5,-6.5 + parent: 778 + type: Transform + - uid: 223 + components: + - pos: 11.5,-5.5 + parent: 778 + type: Transform + - uid: 224 + components: + - pos: 11.5,-4.5 + parent: 778 + type: Transform + - uid: 225 + components: + - pos: 11.5,-3.5 + parent: 778 + type: Transform + - uid: 226 + components: + - pos: 11.5,-2.5 + parent: 778 + type: Transform + - uid: 227 + components: + - pos: 11.5,-1.5 + parent: 778 + type: Transform + - uid: 228 + components: + - pos: 11.5,-0.5 + parent: 778 + type: Transform + - uid: 229 + components: + - pos: 11.5,0.5 + parent: 778 + type: Transform + - uid: 230 + components: + - pos: 11.5,1.5 + parent: 778 + type: Transform + - uid: 231 + components: + - pos: 11.5,2.5 + parent: 778 + type: Transform + - uid: 232 + components: + - pos: 11.5,3.5 + parent: 778 + type: Transform + - uid: 233 + components: + - pos: 11.5,4.5 + parent: 778 + type: Transform + - uid: 234 + components: + - pos: 10.5,5.5 + parent: 778 + type: Transform + - uid: 235 + components: + - pos: 10.5,6.5 + parent: 778 + type: Transform + - uid: 236 + components: + - pos: 10.5,7.5 + parent: 778 + type: Transform + - uid: 237 + components: + - pos: 9.5,8.5 + parent: 778 + type: Transform + - uid: 238 + components: + - pos: 8.5,9.5 + parent: 778 + type: Transform + - uid: 239 + components: + - pos: 7.5,9.5 + parent: 778 + type: Transform + - uid: 240 + components: + - pos: 6.5,9.5 + parent: 778 + type: Transform + - uid: 241 + components: + - pos: 5.5,10.5 + parent: 778 + type: Transform + - uid: 242 + components: + - pos: 4.5,10.5 + parent: 778 + type: Transform + - uid: 243 + components: + - pos: 3.5,10.5 + parent: 778 + type: Transform + - uid: 244 + components: + - pos: 2.5,10.5 + parent: 778 + type: Transform + - uid: 245 + components: + - pos: 1.5,10.5 + parent: 778 + type: Transform + - uid: 246 + components: + - pos: 0.5,10.5 + parent: 778 + type: Transform + - uid: 247 + components: + - pos: -0.5,10.5 + parent: 778 + type: Transform + - uid: 248 + components: + - pos: -1.5,10.5 + parent: 778 + type: Transform + - uid: 249 + components: + - pos: -2.5,10.5 + parent: 778 + type: Transform + - uid: 250 + components: + - pos: -3.5,10.5 + parent: 778 + type: Transform + - uid: 251 + components: + - pos: -4.5,10.5 + parent: 778 + type: Transform + - uid: 252 + components: + - pos: -5.5,10.5 + parent: 778 + type: Transform + - uid: 253 + components: + - pos: -6.5,10.5 + parent: 778 + type: Transform + - uid: 254 + components: + - pos: -7.5,9.5 + parent: 778 + type: Transform + - uid: 255 + components: + - pos: -8.5,9.5 + parent: 778 + type: Transform + - uid: 256 + components: + - pos: -9.5,9.5 + parent: 778 + type: Transform + - uid: 257 + components: + - pos: -10.5,8.5 + parent: 778 + type: Transform + - uid: 258 + components: + - pos: -11.5,7.5 + parent: 778 + type: Transform + - uid: 259 + components: + - pos: -11.5,6.5 + parent: 778 + type: Transform + - uid: 260 + components: + - pos: -11.5,5.5 + parent: 778 + type: Transform +- proto: CableApcExtension + entities: + - uid: 299 + components: + - pos: -0.5,-3.5 + parent: 778 + type: Transform + - uid: 300 + components: + - pos: -0.5,-2.5 + parent: 778 + type: Transform + - uid: 301 + components: + - pos: -0.5,-4.5 + parent: 778 + type: Transform + - uid: 302 + components: + - pos: -1.5,-4.5 + parent: 778 + type: Transform + - uid: 303 + components: + - pos: -2.5,-4.5 + parent: 778 + type: Transform + - uid: 304 + components: + - pos: -3.5,-4.5 + parent: 778 + type: Transform + - uid: 305 + components: + - pos: -4.5,-4.5 + parent: 778 + type: Transform + - uid: 306 + components: + - pos: -4.5,-3.5 + parent: 778 + type: Transform + - uid: 307 + components: + - pos: -4.5,-5.5 + parent: 778 + type: Transform + - uid: 308 + components: + - pos: -0.5,-5.5 + parent: 778 + type: Transform +- proto: CableHV + entities: + - uid: 295 + components: + - pos: -2.5,-2.5 + parent: 778 + type: Transform + - uid: 296 + components: + - pos: -1.5,-2.5 + parent: 778 + type: Transform +- proto: CableMV + entities: + - uid: 297 + components: + - pos: -1.5,-2.5 + parent: 778 + type: Transform + - uid: 298 + components: + - pos: -0.5,-2.5 + parent: 778 + type: Transform +- proto: Catwalk + entities: + - uid: 316 + components: + - pos: -4.5,-4.5 + parent: 778 + type: Transform + - uid: 317 + components: + - pos: -4.5,-5.5 + parent: 778 + type: Transform + - uid: 776 + components: + - pos: 0.5,-4.5 + parent: 778 + type: Transform +- proto: ComputerBroken + entities: + - uid: 311 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 778 + type: Transform +- proto: FloraRockSolid03 + entities: + - uid: 705 + components: + - pos: 1.5,-6.5 + parent: 778 + type: Transform + - uid: 707 + components: + - pos: 1.5,-2.5 + parent: 778 + type: Transform +- proto: GasOutletInjector + entities: + - uid: 314 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 778 + type: Transform +- proto: GasPassiveVent + entities: + - uid: 315 + components: + - pos: -4.5,-3.5 + parent: 778 + type: Transform +- proto: GasPipeBend + entities: + - uid: 322 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 778 + type: Transform + - uid: 719 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 778 + type: Transform + - uid: 720 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 778 + type: Transform +- proto: GasPipeStraight + entities: + - uid: 323 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 778 + type: Transform + - uid: 706 + components: + - pos: -3.5,-5.5 + parent: 778 + type: Transform + - uid: 716 + components: + - pos: -3.5,-6.5 + parent: 778 + type: Transform + - uid: 717 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 778 + type: Transform +- proto: GasPort + entities: + - uid: 320 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 778 + type: Transform + - uid: 321 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 778 + type: Transform +- proto: GasPressurePump + entities: + - uid: 318 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 778 + type: Transform + - uid: 319 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 778 + type: Transform +- proto: GasVentPump + entities: + - uid: 718 + components: + - pos: -0.5,-3.5 + parent: 778 + type: Transform +- proto: GasVentScrubber + entities: + - uid: 775 + components: + - pos: -3.5,-4.5 + parent: 778 + type: Transform +- proto: MaintenanceFluffSpawner + entities: + - uid: 662 + components: + - pos: -0.5,3.5 + parent: 778 + type: Transform +- proto: MaintenanceToolSpawner + entities: + - uid: 616 + components: + - pos: 7.5,5.5 + parent: 778 + type: Transform + - uid: 642 + components: + - pos: 6.5,6.5 + parent: 778 + type: Transform + - uid: 658 + components: + - pos: 7.5,0.5 + parent: 778 + type: Transform + - uid: 663 + components: + - pos: -8.5,-10.5 + parent: 778 + type: Transform +- proto: MaintenanceWeaponSpawner + entities: + - uid: 622 + components: + - pos: -8.5,1.5 + parent: 778 + type: Transform + - uid: 637 + components: + - pos: 1.5,-4.5 + parent: 778 + type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 284 + components: + - pos: -2.5,-2.5 + parent: 778 + type: Transform +- proto: Poweredlight + entities: + - uid: 377 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 778 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 378 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 778 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredLightPostSmall + entities: + - uid: 360 + components: + - pos: 1.5,-3.5 + parent: 778 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLight + entities: + - uid: 361 + components: + - pos: -4.5,-2.5 + parent: 778 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: RandomArtifactSpawner + entities: + - uid: 274 + components: + - pos: -4.5,-2.5 + parent: 778 + type: Transform +- proto: RandomArtifactSpawner20 + entities: + - uid: 490 + components: + - pos: -1.5,5.5 + parent: 778 + type: Transform +- proto: RandomItem + entities: + - uid: 332 + components: + - pos: -3.5,-4.5 + parent: 778 + type: Transform + - uid: 333 + components: + - pos: -1.5,-4.5 + parent: 778 + type: Transform + - uid: 398 + components: + - pos: 8.5,0.5 + parent: 778 + type: Transform + - uid: 478 + components: + - pos: -10.5,-6.5 + parent: 778 + type: Transform + - uid: 486 + components: + - pos: -1.5,3.5 + parent: 778 + type: Transform + - uid: 489 + components: + - pos: -10.5,-5.5 + parent: 778 + type: Transform + - uid: 497 + components: + - pos: 0.5,6.5 + parent: 778 + type: Transform + - uid: 498 + components: + - pos: -0.5,4.5 + parent: 778 + type: Transform + - uid: 507 + components: + - pos: 3.5,7.5 + parent: 778 + type: Transform + - uid: 508 + components: + - pos: 6.5,4.5 + parent: 778 + type: Transform + - uid: 713 + components: + - pos: 9.5,-3.5 + parent: 778 + type: Transform + - uid: 753 + components: + - pos: -4.5,-11.5 + parent: 778 + type: Transform + - uid: 760 + components: + - pos: 2.5,-11.5 + parent: 778 + type: Transform + - uid: 765 + components: + - pos: 5.5,-9.5 + parent: 778 + type: Transform +- proto: RandomRockSpawner + entities: + - uid: 334 + components: + - pos: -11.5,4.5 + parent: 778 + type: Transform + - uid: 335 + components: + - pos: -11.5,3.5 + parent: 778 + type: Transform + - uid: 336 + components: + - pos: -11.5,2.5 + parent: 778 + type: Transform + - uid: 337 + components: + - pos: -11.5,1.5 + parent: 778 + type: Transform + - uid: 338 + components: + - pos: -11.5,0.5 + parent: 778 + type: Transform + - uid: 339 + components: + - pos: -11.5,-0.5 + parent: 778 + type: Transform + - uid: 340 + components: + - pos: -11.5,-1.5 + parent: 778 + type: Transform + - uid: 341 + components: + - pos: -11.5,-2.5 + parent: 778 + type: Transform + - uid: 342 + components: + - pos: -11.5,-3.5 + parent: 778 + type: Transform + - uid: 343 + components: + - pos: -11.5,-4.5 + parent: 778 + type: Transform + - uid: 344 + components: + - pos: -11.5,-5.5 + parent: 778 + type: Transform + - uid: 345 + components: + - pos: -11.5,-6.5 + parent: 778 + type: Transform + - uid: 346 + components: + - pos: -11.5,-7.5 + parent: 778 + type: Transform + - uid: 347 + components: + - pos: -10.5,7.5 + parent: 778 + type: Transform + - uid: 348 + components: + - pos: -10.5,6.5 + parent: 778 + type: Transform + - uid: 349 + components: + - pos: -10.5,5.5 + parent: 778 + type: Transform + - uid: 351 + components: + - pos: -10.5,3.5 + parent: 778 + type: Transform + - uid: 352 + components: + - pos: -10.5,2.5 + parent: 778 + type: Transform + - uid: 353 + components: + - pos: -10.5,1.5 + parent: 778 + type: Transform + - uid: 354 + components: + - pos: -10.5,0.5 + parent: 778 + type: Transform + - uid: 355 + components: + - pos: -10.5,-0.5 + parent: 778 + type: Transform + - uid: 356 + components: + - pos: -10.5,-1.5 + parent: 778 + type: Transform + - uid: 357 + components: + - pos: -10.5,-2.5 + parent: 778 + type: Transform + - uid: 358 + components: + - pos: -10.5,-3.5 + parent: 778 + type: Transform + - uid: 359 + components: + - pos: -10.5,-4.5 + parent: 778 + type: Transform + - uid: 362 + components: + - pos: -10.5,-7.5 + parent: 778 + type: Transform + - uid: 363 + components: + - pos: -10.5,-8.5 + parent: 778 + type: Transform + - uid: 364 + components: + - pos: -10.5,-9.5 + parent: 778 + type: Transform + - uid: 365 + components: + - pos: -10.5,-10.5 + parent: 778 + type: Transform + - uid: 366 + components: + - pos: -9.5,-11.5 + parent: 778 + type: Transform + - uid: 367 + components: + - pos: -9.5,-10.5 + parent: 778 + type: Transform + - uid: 368 + components: + - pos: -9.5,-9.5 + parent: 778 + type: Transform + - uid: 369 + components: + - pos: -9.5,-8.5 + parent: 778 + type: Transform + - uid: 370 + components: + - pos: -9.5,-7.5 + parent: 778 + type: Transform + - uid: 371 + components: + - pos: -9.5,-5.5 + parent: 778 + type: Transform + - uid: 372 + components: + - pos: -9.5,-4.5 + parent: 778 + type: Transform + - uid: 373 + components: + - pos: 2.5,1.5 + parent: 778 + type: Transform + - uid: 374 + components: + - pos: -9.5,-2.5 + parent: 778 + type: Transform + - uid: 375 + components: + - pos: -9.5,-1.5 + parent: 778 + type: Transform + - uid: 376 + components: + - pos: -9.5,-0.5 + parent: 778 + type: Transform + - uid: 379 + components: + - pos: -9.5,2.5 + parent: 778 + type: Transform + - uid: 380 + components: + - pos: -9.5,3.5 + parent: 778 + type: Transform + - uid: 381 + components: + - pos: -9.5,4.5 + parent: 778 + type: Transform + - uid: 382 + components: + - pos: -9.5,5.5 + parent: 778 + type: Transform + - uid: 383 + components: + - pos: -9.5,6.5 + parent: 778 + type: Transform + - uid: 384 + components: + - pos: -9.5,7.5 + parent: 778 + type: Transform + - uid: 385 + components: + - pos: -9.5,8.5 + parent: 778 + type: Transform + - uid: 386 + components: + - pos: -8.5,-11.5 + parent: 778 + type: Transform + - uid: 387 + components: + - pos: -8.5,-9.5 + parent: 778 + type: Transform + - uid: 388 + components: + - pos: -8.5,-8.5 + parent: 778 + type: Transform + - uid: 389 + components: + - pos: -8.5,-7.5 + parent: 778 + type: Transform + - uid: 390 + components: + - pos: -8.5,-6.5 + parent: 778 + type: Transform + - uid: 391 + components: + - pos: -8.5,-5.5 + parent: 778 + type: Transform + - uid: 392 + components: + - pos: -8.5,-4.5 + parent: 778 + type: Transform + - uid: 393 + components: + - pos: -8.5,-3.5 + parent: 778 + type: Transform + - uid: 394 + components: + - pos: -8.5,-2.5 + parent: 778 + type: Transform + - uid: 395 + components: + - pos: -8.5,-1.5 + parent: 778 + type: Transform + - uid: 396 + components: + - pos: -8.5,-0.5 + parent: 778 + type: Transform + - uid: 400 + components: + - pos: -8.5,3.5 + parent: 778 + type: Transform + - uid: 401 + components: + - pos: -8.5,4.5 + parent: 778 + type: Transform + - uid: 402 + components: + - pos: -8.5,5.5 + parent: 778 + type: Transform + - uid: 403 + components: + - pos: -8.5,6.5 + parent: 778 + type: Transform + - uid: 404 + components: + - pos: -8.5,7.5 + parent: 778 + type: Transform + - uid: 405 + components: + - pos: -8.5,8.5 + parent: 778 + type: Transform + - uid: 406 + components: + - pos: -7.5,-11.5 + parent: 778 + type: Transform + - uid: 407 + components: + - pos: -7.5,-10.5 + parent: 778 + type: Transform + - uid: 408 + components: + - pos: -7.5,-9.5 + parent: 778 + type: Transform + - uid: 409 + components: + - pos: -7.5,-8.5 + parent: 778 + type: Transform + - uid: 410 + components: + - pos: -7.5,-7.5 + parent: 778 + type: Transform + - uid: 411 + components: + - pos: -7.5,-6.5 + parent: 778 + type: Transform + - uid: 412 + components: + - pos: -7.5,-5.5 + parent: 778 + type: Transform + - uid: 413 + components: + - pos: -7.5,-4.5 + parent: 778 + type: Transform + - uid: 414 + components: + - pos: -7.5,-3.5 + parent: 778 + type: Transform + - uid: 415 + components: + - pos: -7.5,-2.5 + parent: 778 + type: Transform + - uid: 416 + components: + - pos: -7.5,-1.5 + parent: 778 + type: Transform + - uid: 417 + components: + - pos: -7.5,-0.5 + parent: 778 + type: Transform + - uid: 418 + components: + - pos: -7.5,0.5 + parent: 778 + type: Transform + - uid: 421 + components: + - pos: -7.5,3.5 + parent: 778 + type: Transform + - uid: 422 + components: + - pos: -7.5,4.5 + parent: 778 + type: Transform + - uid: 423 + components: + - pos: -7.5,5.5 + parent: 778 + type: Transform + - uid: 426 + components: + - pos: -7.5,8.5 + parent: 778 + type: Transform + - uid: 427 + components: + - pos: -6.5,9.5 + parent: 778 + type: Transform + - uid: 428 + components: + - pos: -6.5,8.5 + parent: 778 + type: Transform + - uid: 431 + components: + - pos: -6.5,5.5 + parent: 778 + type: Transform + - uid: 432 + components: + - pos: -6.5,4.5 + parent: 778 + type: Transform + - uid: 433 + components: + - pos: -6.5,3.5 + parent: 778 + type: Transform + - uid: 434 + components: + - pos: -6.5,2.5 + parent: 778 + type: Transform + - uid: 435 + components: + - pos: -6.5,1.5 + parent: 778 + type: Transform + - uid: 436 + components: + - pos: -6.5,0.5 + parent: 778 + type: Transform + - uid: 437 + components: + - pos: -6.5,-0.5 + parent: 778 + type: Transform + - uid: 438 + components: + - pos: -5.5,9.5 + parent: 778 + type: Transform + - uid: 439 + components: + - pos: -5.5,8.5 + parent: 778 + type: Transform + - uid: 440 + components: + - pos: -5.5,7.5 + parent: 778 + type: Transform + - uid: 441 + components: + - pos: -5.5,6.5 + parent: 778 + type: Transform + - uid: 442 + components: + - pos: -5.5,5.5 + parent: 778 + type: Transform + - uid: 443 + components: + - pos: -5.5,4.5 + parent: 778 + type: Transform + - uid: 444 + components: + - pos: -5.5,3.5 + parent: 778 + type: Transform + - uid: 445 + components: + - pos: -5.5,2.5 + parent: 778 + type: Transform + - uid: 446 + components: + - pos: -5.5,1.5 + parent: 778 + type: Transform + - uid: 447 + components: + - pos: -5.5,0.5 + parent: 778 + type: Transform + - uid: 448 + components: + - pos: -5.5,-0.5 + parent: 778 + type: Transform + - uid: 449 + components: + - pos: -4.5,9.5 + parent: 778 + type: Transform + - uid: 450 + components: + - pos: -4.5,8.5 + parent: 778 + type: Transform + - uid: 451 + components: + - pos: -4.5,7.5 + parent: 778 + type: Transform + - uid: 452 + components: + - pos: -4.5,6.5 + parent: 778 + type: Transform + - uid: 453 + components: + - pos: -4.5,5.5 + parent: 778 + type: Transform + - uid: 454 + components: + - pos: -4.5,4.5 + parent: 778 + type: Transform + - uid: 455 + components: + - pos: -4.5,3.5 + parent: 778 + type: Transform + - uid: 456 + components: + - pos: -4.5,2.5 + parent: 778 + type: Transform + - uid: 457 + components: + - pos: -4.5,1.5 + parent: 778 + type: Transform + - uid: 458 + components: + - pos: -4.5,0.5 + parent: 778 + type: Transform + - uid: 459 + components: + - pos: -4.5,-0.5 + parent: 778 + type: Transform + - uid: 460 + components: + - pos: -3.5,9.5 + parent: 778 + type: Transform + - uid: 461 + components: + - pos: -3.5,8.5 + parent: 778 + type: Transform + - uid: 462 + components: + - pos: -3.5,7.5 + parent: 778 + type: Transform + - uid: 463 + components: + - pos: -3.5,6.5 + parent: 778 + type: Transform + - uid: 464 + components: + - pos: -3.5,5.5 + parent: 778 + type: Transform + - uid: 465 + components: + - pos: -3.5,4.5 + parent: 778 + type: Transform + - uid: 466 + components: + - pos: -3.5,3.5 + parent: 778 + type: Transform + - uid: 467 + components: + - pos: -3.5,2.5 + parent: 778 + type: Transform + - uid: 468 + components: + - pos: -3.5,1.5 + parent: 778 + type: Transform + - uid: 469 + components: + - pos: -3.5,0.5 + parent: 778 + type: Transform + - uid: 470 + components: + - pos: -3.5,-0.5 + parent: 778 + type: Transform + - uid: 471 + components: + - pos: -2.5,9.5 + parent: 778 + type: Transform + - uid: 472 + components: + - pos: -2.5,8.5 + parent: 778 + type: Transform + - uid: 473 + components: + - pos: -2.5,7.5 + parent: 778 + type: Transform + - uid: 474 + components: + - pos: -2.5,6.5 + parent: 778 + type: Transform + - uid: 475 + components: + - pos: -2.5,5.5 + parent: 778 + type: Transform + - uid: 479 + components: + - pos: -2.5,1.5 + parent: 778 + type: Transform + - uid: 480 + components: + - pos: -2.5,0.5 + parent: 778 + type: Transform + - uid: 481 + components: + - pos: -2.5,-0.5 + parent: 778 + type: Transform + - uid: 482 + components: + - pos: -1.5,9.5 + parent: 778 + type: Transform + - uid: 483 + components: + - pos: -1.5,8.5 + parent: 778 + type: Transform + - uid: 484 + components: + - pos: -1.5,7.5 + parent: 778 + type: Transform + - uid: 485 + components: + - pos: -1.5,6.5 + parent: 778 + type: Transform + - uid: 491 + components: + - pos: -1.5,0.5 + parent: 778 + type: Transform + - uid: 492 + components: + - pos: -1.5,-0.5 + parent: 778 + type: Transform + - uid: 493 + components: + - pos: -0.5,9.5 + parent: 778 + type: Transform + - uid: 494 + components: + - pos: -0.5,8.5 + parent: 778 + type: Transform + - uid: 495 + components: + - pos: -0.5,7.5 + parent: 778 + type: Transform + - uid: 502 + components: + - pos: -0.5,0.5 + parent: 778 + type: Transform + - uid: 503 + components: + - pos: -0.5,-0.5 + parent: 778 + type: Transform + - uid: 504 + components: + - pos: 0.5,9.5 + parent: 778 + type: Transform + - uid: 505 + components: + - pos: 0.5,8.5 + parent: 778 + type: Transform + - uid: 509 + components: + - pos: 0.5,4.5 + parent: 778 + type: Transform + - uid: 512 + components: + - pos: 0.5,1.5 + parent: 778 + type: Transform + - uid: 513 + components: + - pos: 0.5,0.5 + parent: 778 + type: Transform + - uid: 514 + components: + - pos: 0.5,-0.5 + parent: 778 + type: Transform + - uid: 515 + components: + - pos: 1.5,9.5 + parent: 778 + type: Transform + - uid: 516 + components: + - pos: 1.5,8.5 + parent: 778 + type: Transform + - uid: 517 + components: + - pos: 1.5,7.5 + parent: 778 + type: Transform + - uid: 518 + components: + - pos: 1.5,6.5 + parent: 778 + type: Transform + - uid: 519 + components: + - pos: 1.5,5.5 + parent: 778 + type: Transform + - uid: 520 + components: + - pos: 1.5,4.5 + parent: 778 + type: Transform + - uid: 521 + components: + - pos: 1.5,3.5 + parent: 778 + type: Transform + - uid: 522 + components: + - pos: 1.5,2.5 + parent: 778 + type: Transform + - uid: 523 + components: + - pos: 1.5,1.5 + parent: 778 + type: Transform + - uid: 524 + components: + - pos: 1.5,0.5 + parent: 778 + type: Transform + - uid: 525 + components: + - pos: 1.5,-0.5 + parent: 778 + type: Transform + - uid: 526 + components: + - pos: 2.5,9.5 + parent: 778 + type: Transform + - uid: 527 + components: + - pos: 2.5,8.5 + parent: 778 + type: Transform + - uid: 528 + components: + - pos: 2.5,7.5 + parent: 778 + type: Transform + - uid: 529 + components: + - pos: 2.5,6.5 + parent: 778 + type: Transform + - uid: 530 + components: + - pos: 2.5,5.5 + parent: 778 + type: Transform + - uid: 531 + components: + - pos: 2.5,4.5 + parent: 778 + type: Transform + - uid: 532 + components: + - pos: 2.5,3.5 + parent: 778 + type: Transform + - uid: 533 + components: + - pos: 2.5,2.5 + parent: 778 + type: Transform + - uid: 535 + components: + - pos: 2.5,0.5 + parent: 778 + type: Transform + - uid: 537 + components: + - pos: 3.5,9.5 + parent: 778 + type: Transform + - uid: 538 + components: + - pos: 3.5,8.5 + parent: 778 + type: Transform + - uid: 540 + components: + - pos: 3.5,6.5 + parent: 778 + type: Transform + - uid: 541 + components: + - pos: 3.5,5.5 + parent: 778 + type: Transform + - uid: 542 + components: + - pos: 3.5,4.5 + parent: 778 + type: Transform + - uid: 543 + components: + - pos: 3.5,3.5 + parent: 778 + type: Transform + - uid: 544 + components: + - pos: 3.5,2.5 + parent: 778 + type: Transform + - uid: 545 + components: + - pos: 3.5,1.5 + parent: 778 + type: Transform + - uid: 546 + components: + - pos: 3.5,0.5 + parent: 778 + type: Transform + - uid: 547 + components: + - pos: 3.5,-0.5 + parent: 778 + type: Transform + - uid: 548 + components: + - pos: 4.5,9.5 + parent: 778 + type: Transform + - uid: 549 + components: + - pos: 4.5,8.5 + parent: 778 + type: Transform + - uid: 550 + components: + - pos: 4.5,7.5 + parent: 778 + type: Transform + - uid: 551 + components: + - pos: 4.5,6.5 + parent: 778 + type: Transform + - uid: 552 + components: + - pos: 4.5,5.5 + parent: 778 + type: Transform + - uid: 553 + components: + - pos: 4.5,4.5 + parent: 778 + type: Transform + - uid: 555 + components: + - pos: 4.5,2.5 + parent: 778 + type: Transform + - uid: 556 + components: + - pos: 4.5,1.5 + parent: 778 + type: Transform + - uid: 557 + components: + - pos: 4.5,0.5 + parent: 778 + type: Transform + - uid: 558 + components: + - pos: 4.5,-0.5 + parent: 778 + type: Transform + - uid: 559 + components: + - pos: 5.5,9.5 + parent: 778 + type: Transform + - uid: 560 + components: + - pos: 5.5,8.5 + parent: 778 + type: Transform + - uid: 561 + components: + - pos: 5.5,7.5 + parent: 778 + type: Transform + - uid: 562 + components: + - pos: 5.5,6.5 + parent: 778 + type: Transform + - uid: 563 + components: + - pos: 5.5,5.5 + parent: 778 + type: Transform + - uid: 564 + components: + - pos: 5.5,4.5 + parent: 778 + type: Transform + - uid: 565 + components: + - pos: 5.5,3.5 + parent: 778 + type: Transform + - uid: 566 + components: + - pos: 5.5,2.5 + parent: 778 + type: Transform + - uid: 567 + components: + - pos: 5.5,1.5 + parent: 778 + type: Transform + - uid: 568 + components: + - pos: 5.5,0.5 + parent: 778 + type: Transform + - uid: 569 + components: + - pos: 5.5,-0.5 + parent: 778 + type: Transform + - uid: 570 + components: + - pos: -0.5,-1.5 + parent: 778 + type: Transform + - uid: 571 + components: + - pos: 0.5,-1.5 + parent: 778 + type: Transform + - uid: 572 + components: + - pos: 9.5,7.5 + parent: 778 + type: Transform + - uid: 573 + components: + - pos: 9.5,6.5 + parent: 778 + type: Transform + - uid: 574 + components: + - pos: 9.5,5.5 + parent: 778 + type: Transform + - uid: 575 + components: + - pos: 10.5,4.5 + parent: 778 + type: Transform + - uid: 576 + components: + - pos: 10.5,3.5 + parent: 778 + type: Transform + - uid: 577 + components: + - pos: 10.5,2.5 + parent: 778 + type: Transform + - uid: 578 + components: + - pos: 10.5,1.5 + parent: 778 + type: Transform + - uid: 579 + components: + - pos: 10.5,0.5 + parent: 778 + type: Transform + - uid: 580 + components: + - pos: 10.5,-0.5 + parent: 778 + type: Transform + - uid: 581 + components: + - pos: 10.5,-1.5 + parent: 778 + type: Transform + - uid: 582 + components: + - pos: 10.5,-2.5 + parent: 778 + type: Transform + - uid: 583 + components: + - pos: 10.5,-3.5 + parent: 778 + type: Transform + - uid: 584 + components: + - pos: 10.5,-4.5 + parent: 778 + type: Transform + - uid: 585 + components: + - pos: 10.5,-5.5 + parent: 778 + type: Transform + - uid: 586 + components: + - pos: 10.5,-6.5 + parent: 778 + type: Transform + - uid: 587 + components: + - pos: 10.5,-7.5 + parent: 778 + type: Transform + - uid: 588 + components: + - pos: 9.5,4.5 + parent: 778 + type: Transform + - uid: 589 + components: + - pos: 9.5,3.5 + parent: 778 + type: Transform + - uid: 590 + components: + - pos: 9.5,2.5 + parent: 778 + type: Transform + - uid: 591 + components: + - pos: 9.5,1.5 + parent: 778 + type: Transform + - uid: 592 + components: + - pos: 9.5,0.5 + parent: 778 + type: Transform + - uid: 593 + components: + - pos: 9.5,-0.5 + parent: 778 + type: Transform + - uid: 594 + components: + - pos: 9.5,-1.5 + parent: 778 + type: Transform + - uid: 595 + components: + - pos: 9.5,-2.5 + parent: 778 + type: Transform + - uid: 597 + components: + - pos: 9.5,-4.5 + parent: 778 + type: Transform + - uid: 598 + components: + - pos: 9.5,-5.5 + parent: 778 + type: Transform + - uid: 599 + components: + - pos: 9.5,-6.5 + parent: 778 + type: Transform + - uid: 600 + components: + - pos: 9.5,-7.5 + parent: 778 + type: Transform + - uid: 601 + components: + - pos: 9.5,-8.5 + parent: 778 + type: Transform + - uid: 602 + components: + - pos: 9.5,-9.5 + parent: 778 + type: Transform + - uid: 603 + components: + - pos: 9.5,-10.5 + parent: 778 + type: Transform + - uid: 604 + components: + - pos: 8.5,-11.5 + parent: 778 + type: Transform + - uid: 605 + components: + - pos: 8.5,-10.5 + parent: 778 + type: Transform + - uid: 606 + components: + - pos: 8.5,-9.5 + parent: 778 + type: Transform + - uid: 607 + components: + - pos: 8.5,-8.5 + parent: 778 + type: Transform + - uid: 608 + components: + - pos: 8.5,-7.5 + parent: 778 + type: Transform + - uid: 610 + components: + - pos: 8.5,-5.5 + parent: 778 + type: Transform + - uid: 611 + components: + - pos: 8.5,-4.5 + parent: 778 + type: Transform + - uid: 612 + components: + - pos: 8.5,-3.5 + parent: 778 + type: Transform + - uid: 613 + components: + - pos: 8.5,-2.5 + parent: 778 + type: Transform + - uid: 614 + components: + - pos: 8.5,-1.5 + parent: 778 + type: Transform + - uid: 615 + components: + - pos: 8.5,-0.5 + parent: 778 + type: Transform + - uid: 617 + components: + - pos: 8.5,1.5 + parent: 778 + type: Transform + - uid: 618 + components: + - pos: 8.5,2.5 + parent: 778 + type: Transform + - uid: 619 + components: + - pos: 8.5,3.5 + parent: 778 + type: Transform + - uid: 620 + components: + - pos: 8.5,4.5 + parent: 778 + type: Transform + - uid: 621 + components: + - pos: 8.5,5.5 + parent: 778 + type: Transform + - uid: 623 + components: + - pos: 8.5,7.5 + parent: 778 + type: Transform + - uid: 624 + components: + - pos: 8.5,8.5 + parent: 778 + type: Transform + - uid: 625 + components: + - pos: 7.5,-11.5 + parent: 778 + type: Transform + - uid: 626 + components: + - pos: 7.5,-10.5 + parent: 778 + type: Transform + - uid: 627 + components: + - pos: 7.5,-9.5 + parent: 778 + type: Transform + - uid: 628 + components: + - pos: 7.5,-8.5 + parent: 778 + type: Transform + - uid: 629 + components: + - pos: 7.5,-7.5 + parent: 778 + type: Transform + - uid: 630 + components: + - pos: 7.5,-6.5 + parent: 778 + type: Transform + - uid: 631 + components: + - pos: 7.5,-5.5 + parent: 778 + type: Transform + - uid: 632 + components: + - pos: 7.5,-4.5 + parent: 778 + type: Transform + - uid: 633 + components: + - pos: 7.5,-3.5 + parent: 778 + type: Transform + - uid: 634 + components: + - pos: 7.5,-2.5 + parent: 778 + type: Transform + - uid: 635 + components: + - pos: 7.5,-1.5 + parent: 778 + type: Transform + - uid: 638 + components: + - pos: 7.5,1.5 + parent: 778 + type: Transform + - uid: 639 + components: + - pos: 7.5,2.5 + parent: 778 + type: Transform + - uid: 640 + components: + - pos: 7.5,3.5 + parent: 778 + type: Transform + - uid: 641 + components: + - pos: 7.5,4.5 + parent: 778 + type: Transform + - uid: 644 + components: + - pos: 7.5,7.5 + parent: 778 + type: Transform + - uid: 645 + components: + - pos: 7.5,8.5 + parent: 778 + type: Transform + - uid: 646 + components: + - pos: 6.5,-11.5 + parent: 778 + type: Transform + - uid: 647 + components: + - pos: 6.5,-10.5 + parent: 778 + type: Transform + - uid: 648 + components: + - pos: 6.5,-9.5 + parent: 778 + type: Transform + - uid: 649 + components: + - pos: 6.5,-8.5 + parent: 778 + type: Transform + - uid: 650 + components: + - pos: 6.5,-7.5 + parent: 778 + type: Transform + - uid: 651 + components: + - pos: 6.5,-6.5 + parent: 778 + type: Transform + - uid: 652 + components: + - pos: 6.5,-5.5 + parent: 778 + type: Transform + - uid: 653 + components: + - pos: 6.5,-4.5 + parent: 778 + type: Transform + - uid: 654 + components: + - pos: 6.5,-3.5 + parent: 778 + type: Transform + - uid: 655 + components: + - pos: 6.5,-2.5 + parent: 778 + type: Transform + - uid: 656 + components: + - pos: 6.5,-1.5 + parent: 778 + type: Transform + - uid: 657 + components: + - pos: 6.5,-0.5 + parent: 778 + type: Transform + - uid: 659 + components: + - pos: 6.5,1.5 + parent: 778 + type: Transform + - uid: 660 + components: + - pos: 6.5,2.5 + parent: 778 + type: Transform + - uid: 661 + components: + - pos: 6.5,3.5 + parent: 778 + type: Transform + - uid: 665 + components: + - pos: 6.5,7.5 + parent: 778 + type: Transform + - uid: 666 + components: + - pos: 6.5,8.5 + parent: 778 + type: Transform + - uid: 667 + components: + - pos: 5.5,-1.5 + parent: 778 + type: Transform + - uid: 668 + components: + - pos: 5.5,-2.5 + parent: 778 + type: Transform + - uid: 670 + components: + - pos: 5.5,-4.5 + parent: 778 + type: Transform + - uid: 671 + components: + - pos: 5.5,-5.5 + parent: 778 + type: Transform + - uid: 672 + components: + - pos: 5.5,-6.5 + parent: 778 + type: Transform + - uid: 673 + components: + - pos: 5.5,-7.5 + parent: 778 + type: Transform + - uid: 676 + components: + - pos: 5.5,-10.5 + parent: 778 + type: Transform + - uid: 677 + components: + - pos: 5.5,-11.5 + parent: 778 + type: Transform + - uid: 678 + components: + - pos: 5.5,-12.5 + parent: 778 + type: Transform + - uid: 679 + components: + - pos: 4.5,-1.5 + parent: 778 + type: Transform + - uid: 680 + components: + - pos: 4.5,-2.5 + parent: 778 + type: Transform + - uid: 681 + components: + - pos: 4.5,-3.5 + parent: 778 + type: Transform + - uid: 682 + components: + - pos: 4.5,-4.5 + parent: 778 + type: Transform + - uid: 683 + components: + - pos: 4.5,-5.5 + parent: 778 + type: Transform + - uid: 684 + components: + - pos: 4.5,-6.5 + parent: 778 + type: Transform + - uid: 685 + components: + - pos: 4.5,-7.5 + parent: 778 + type: Transform + - uid: 686 + components: + - pos: 4.5,-8.5 + parent: 778 + type: Transform + - uid: 687 + components: + - pos: 4.5,-9.5 + parent: 778 + type: Transform + - uid: 688 + components: + - pos: 4.5,-10.5 + parent: 778 + type: Transform + - uid: 689 + components: + - pos: 4.5,-11.5 + parent: 778 + type: Transform + - uid: 690 + components: + - pos: 4.5,-12.5 + parent: 778 + type: Transform + - uid: 691 + components: + - pos: 3.5,-1.5 + parent: 778 + type: Transform + - uid: 692 + components: + - pos: 3.5,-2.5 + parent: 778 + type: Transform + - uid: 693 + components: + - pos: 3.5,-3.5 + parent: 778 + type: Transform + - uid: 694 + components: + - pos: 3.5,-4.5 + parent: 778 + type: Transform + - uid: 695 + components: + - pos: 3.5,-5.5 + parent: 778 + type: Transform + - uid: 696 + components: + - pos: 3.5,-6.5 + parent: 778 + type: Transform + - uid: 697 + components: + - pos: 3.5,-7.5 + parent: 778 + type: Transform + - uid: 698 + components: + - pos: 3.5,-8.5 + parent: 778 + type: Transform + - uid: 699 + components: + - pos: 3.5,-9.5 + parent: 778 + type: Transform + - uid: 700 + components: + - pos: 3.5,-10.5 + parent: 778 + type: Transform + - uid: 701 + components: + - pos: 3.5,-11.5 + parent: 778 + type: Transform + - uid: 702 + components: + - pos: 3.5,-12.5 + parent: 778 + type: Transform + - uid: 703 + components: + - pos: 2.5,-1.5 + parent: 778 + type: Transform + - uid: 704 + components: + - pos: 2.5,-2.5 + parent: 778 + type: Transform + - uid: 708 + components: + - pos: 2.5,-6.5 + parent: 778 + type: Transform + - uid: 709 + components: + - pos: 2.5,-7.5 + parent: 778 + type: Transform + - uid: 710 + components: + - pos: 2.5,-8.5 + parent: 778 + type: Transform + - uid: 711 + components: + - pos: 2.5,-9.5 + parent: 778 + type: Transform + - uid: 712 + components: + - pos: 2.5,-10.5 + parent: 778 + type: Transform + - uid: 715 + components: + - pos: 1.5,-1.5 + parent: 778 + type: Transform + - uid: 721 + components: + - pos: 1.5,-7.5 + parent: 778 + type: Transform + - uid: 722 + components: + - pos: 1.5,-8.5 + parent: 778 + type: Transform + - uid: 723 + components: + - pos: 1.5,-9.5 + parent: 778 + type: Transform + - uid: 726 + components: + - pos: 1.5,-12.5 + parent: 778 + type: Transform + - uid: 727 + components: + - pos: 0.5,-12.5 + parent: 778 + type: Transform + - uid: 728 + components: + - pos: 0.5,-11.5 + parent: 778 + type: Transform + - uid: 729 + components: + - pos: 0.5,-10.5 + parent: 778 + type: Transform + - uid: 730 + components: + - pos: 0.5,-9.5 + parent: 778 + type: Transform + - uid: 731 + components: + - pos: 0.5,-8.5 + parent: 778 + type: Transform + - uid: 732 + components: + - pos: 0.5,-7.5 + parent: 778 + type: Transform + - uid: 733 + components: + - pos: -0.5,-12.5 + parent: 778 + type: Transform + - uid: 734 + components: + - pos: -0.5,-11.5 + parent: 778 + type: Transform + - uid: 735 + components: + - pos: -0.5,-10.5 + parent: 778 + type: Transform + - uid: 736 + components: + - pos: -0.5,-9.5 + parent: 778 + type: Transform + - uid: 738 + components: + - pos: -0.5,-7.5 + parent: 778 + type: Transform + - uid: 739 + components: + - pos: -1.5,-12.5 + parent: 778 + type: Transform + - uid: 740 + components: + - pos: -1.5,-11.5 + parent: 778 + type: Transform + - uid: 741 + components: + - pos: -1.5,-10.5 + parent: 778 + type: Transform + - uid: 742 + components: + - pos: -1.5,-9.5 + parent: 778 + type: Transform + - uid: 743 + components: + - pos: -1.5,-8.5 + parent: 778 + type: Transform + - uid: 744 + components: + - pos: -1.5,-7.5 + parent: 778 + type: Transform + - uid: 745 + components: + - pos: -2.5,-12.5 + parent: 778 + type: Transform + - uid: 746 + components: + - pos: -2.5,-11.5 + parent: 778 + type: Transform + - uid: 747 + components: + - pos: -2.5,-10.5 + parent: 778 + type: Transform + - uid: 748 + components: + - pos: -2.5,-9.5 + parent: 778 + type: Transform + - uid: 749 + components: + - pos: -2.5,-8.5 + parent: 778 + type: Transform + - uid: 750 + components: + - pos: -2.5,-7.5 + parent: 778 + type: Transform + - uid: 751 + components: + - pos: -3.5,-12.5 + parent: 778 + type: Transform + - uid: 752 + components: + - pos: -3.5,-11.5 + parent: 778 + type: Transform + - uid: 754 + components: + - pos: -3.5,-9.5 + parent: 778 + type: Transform + - uid: 755 + components: + - pos: -3.5,-8.5 + parent: 778 + type: Transform + - uid: 756 + components: + - pos: -3.5,-7.5 + parent: 778 + type: Transform + - uid: 757 + components: + - pos: -4.5,-12.5 + parent: 778 + type: Transform + - uid: 761 + components: + - pos: -4.5,-8.5 + parent: 778 + type: Transform + - uid: 762 + components: + - pos: -4.5,-7.5 + parent: 778 + type: Transform + - uid: 763 + components: + - pos: -5.5,-12.5 + parent: 778 + type: Transform + - uid: 764 + components: + - pos: -5.5,-11.5 + parent: 778 + type: Transform + - uid: 767 + components: + - pos: -5.5,-8.5 + parent: 778 + type: Transform + - uid: 768 + components: + - pos: -5.5,-7.5 + parent: 778 + type: Transform + - uid: 769 + components: + - pos: -6.5,-12.5 + parent: 778 + type: Transform + - uid: 770 + components: + - pos: -6.5,-11.5 + parent: 778 + type: Transform + - uid: 771 + components: + - pos: -6.5,-10.5 + parent: 778 + type: Transform + - uid: 772 + components: + - pos: -6.5,-9.5 + parent: 778 + type: Transform + - uid: 773 + components: + - pos: -6.5,-8.5 + parent: 778 + type: Transform + - uid: 774 + components: + - pos: -6.5,-7.5 + parent: 778 + type: Transform +- proto: SalvageCanisterSpawner + entities: + - uid: 324 + components: + - pos: -1.5,-3.5 + parent: 778 + type: Transform + - uid: 609 + components: + - pos: -5.5,-9.5 + parent: 778 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 534 + components: + - pos: -2.5,2.5 + parent: 778 + type: Transform +- proto: SalvageMobSpawner + entities: + - uid: 399 + components: + - pos: 7.5,-0.5 + parent: 778 + type: Transform + - uid: 420 + components: + - pos: 6.5,0.5 + parent: 778 + type: Transform + - uid: 477 + components: + - pos: 4.5,3.5 + parent: 778 + type: Transform + - uid: 496 + components: + - pos: -9.5,-3.5 + parent: 778 + type: Transform + - uid: 501 + components: + - pos: -10.5,4.5 + parent: 778 + type: Transform + - uid: 674 + components: + - pos: -3.5,-10.5 + parent: 778 + type: Transform + - uid: 675 + components: + - pos: -5.5,-10.5 + parent: 778 + type: Transform +- proto: SalvageMobSpawner75 + entities: + - uid: 476 + components: + - pos: 6.5,5.5 + parent: 778 + type: Transform + - uid: 487 + components: + - pos: 7.5,6.5 + parent: 778 + type: Transform + - uid: 488 + components: + - pos: -9.5,-6.5 + parent: 778 + type: Transform + - uid: 539 + components: + - pos: -2.5,3.5 + parent: 778 + type: Transform + - uid: 596 + components: + - pos: 0.5,3.5 + parent: 778 + type: Transform + - uid: 643 + components: + - pos: -8.5,2.5 + parent: 778 + type: Transform + - uid: 664 + components: + - pos: -8.5,0.5 + parent: 778 + type: Transform + - uid: 669 + components: + - pos: -1.5,1.5 + parent: 778 + type: Transform + - uid: 737 + components: + - pos: -0.5,6.5 + parent: 778 + type: Transform + - uid: 758 + components: + - pos: 1.5,-11.5 + parent: 778 + type: Transform +- proto: SalvagePartsSpawnerLow + entities: + - uid: 331 + components: + - pos: -0.5,-3.5 + parent: 778 + type: Transform + - uid: 419 + components: + - pos: -0.5,5.5 + parent: 778 + type: Transform + - uid: 424 + components: + - pos: -0.5,1.5 + parent: 778 + type: Transform + - uid: 499 + components: + - pos: -9.5,-3.5 + parent: 778 + type: Transform + - uid: 500 + components: + - pos: -7.5,2.5 + parent: 778 + type: Transform + - uid: 510 + components: + - pos: -9.5,0.5 + parent: 778 + type: Transform + - uid: 511 + components: + - pos: -10.5,4.5 + parent: 778 + type: Transform + - uid: 554 + components: + - pos: 4.5,3.5 + parent: 778 + type: Transform + - uid: 636 + components: + - pos: 5.5,-3.5 + parent: 778 + type: Transform + - uid: 725 + components: + - pos: 8.5,-6.5 + parent: 778 + type: Transform + - uid: 766 + components: + - pos: -4.5,-9.5 + parent: 778 + type: Transform +- proto: SalvagePartsSpawnerMid + entities: + - uid: 329 + components: + - pos: -5.5,-4.5 + parent: 778 + type: Transform + - uid: 330 + components: + - pos: -1.5,-5.5 + parent: 778 + type: Transform + - uid: 429 + components: + - pos: -6.5,6.5 + parent: 778 + type: Transform + - uid: 506 + components: + - pos: -7.5,7.5 + parent: 778 + type: Transform +- proto: SalvagePartsSpawnerSubSpace + entities: + - uid: 350 + components: + - pos: -0.5,-8.5 + parent: 778 + type: Transform + - uid: 536 + components: + - pos: 2.5,-0.5 + parent: 778 + type: Transform +- proto: SheetPlasma + entities: + - uid: 313 + components: + - pos: -0.5885119,-5.4896755 + parent: 778 + type: Transform +- proto: SignAnomaly + entities: + - uid: 291 + components: + - pos: 0.5,-3.5 + parent: 778 + type: Transform +- proto: SnakeMobMundane + entities: + - uid: 326 + components: + - pos: -4.5,-5.5 + parent: 778 + type: Transform + - uid: 327 + components: + - pos: -2.5,-3.5 + parent: 778 + type: Transform + - uid: 328 + components: + - pos: -5.5,-2.5 + parent: 778 + type: Transform +- proto: SnakeMobMundane25 + entities: + - uid: 397 + components: + - pos: 2.5,-0.5 + parent: 778 + type: Transform + - uid: 714 + components: + - pos: 8.5,-6.5 + parent: 778 + type: Transform + - uid: 724 + components: + - pos: 2.5,-5.5 + parent: 778 + type: Transform + - uid: 759 + components: + - pos: 5.5,-8.5 + parent: 778 + type: Transform +- proto: SpaceTickSpawner + entities: + - uid: 425 + components: + - pos: -6.5,7.5 + parent: 778 + type: Transform +- proto: SpawnMobBearSalvage + entities: + - uid: 430 + components: + - pos: -7.5,6.5 + parent: 778 + type: Transform +- proto: StorageCanister + entities: + - uid: 325 + components: + - pos: -2.5,-5.5 + parent: 778 + type: Transform +- proto: SubstationWallBasic + entities: + - uid: 293 + components: + - pos: -1.5,-2.5 + parent: 778 + type: Transform +- proto: TableCounterMetal + entities: + - uid: 309 + components: + - pos: -0.5,-5.5 + parent: 778 + type: Transform + - uid: 310 + components: + - pos: -1.5,-5.5 + parent: 778 + type: Transform + - uid: 312 + components: + - pos: -5.5,-4.5 + parent: 778 + type: Transform +- proto: ToolboxMechanicalFilled + entities: + - uid: 777 + components: + - pos: -3.7890096,-5.7185097 + parent: 778 + type: Transform +- proto: WallSolid + entities: + - uid: 261 + components: + - pos: -2.5,-1.5 + parent: 778 + type: Transform + - uid: 265 + components: + - pos: -6.5,-3.5 + parent: 778 + type: Transform + - uid: 266 + components: + - pos: -6.5,-4.5 + parent: 778 + type: Transform + - uid: 267 + components: + - pos: -6.5,-5.5 + parent: 778 + type: Transform + - uid: 268 + components: + - pos: -6.5,-6.5 + parent: 778 + type: Transform + - uid: 269 + components: + - pos: -5.5,-6.5 + parent: 778 + type: Transform + - uid: 270 + components: + - pos: -4.5,-6.5 + parent: 778 + type: Transform + - uid: 271 + components: + - pos: -3.5,-6.5 + parent: 778 + type: Transform + - uid: 272 + components: + - pos: -2.5,-6.5 + parent: 778 + type: Transform + - uid: 273 + components: + - pos: -1.5,-6.5 + parent: 778 + type: Transform + - uid: 275 + components: + - pos: -4.5,-1.5 + parent: 778 + type: Transform + - uid: 276 + components: + - pos: -5.5,-1.5 + parent: 778 + type: Transform + - uid: 277 + components: + - pos: -3.5,-1.5 + parent: 778 + type: Transform + - uid: 278 + components: + - pos: -6.5,-1.5 + parent: 778 + type: Transform + - uid: 279 + components: + - pos: -0.5,-6.5 + parent: 778 + type: Transform + - uid: 280 + components: + - pos: -1.5,-1.5 + parent: 778 + type: Transform + - uid: 281 + components: + - pos: -6.5,-2.5 + parent: 778 + type: Transform + - uid: 285 + components: + - pos: -1.5,-2.5 + parent: 778 + type: Transform + - uid: 286 + components: + - pos: -0.5,-2.5 + parent: 778 + type: Transform + - uid: 287 + components: + - pos: 0.5,-2.5 + parent: 778 + type: Transform + - uid: 288 + components: + - pos: 0.5,-3.5 + parent: 778 + type: Transform + - uid: 289 + components: + - pos: 0.5,-6.5 + parent: 778 + type: Transform + - uid: 290 + components: + - pos: 0.5,-5.5 + parent: 778 + type: Transform +- proto: WindoorSecureScienceLocked + entities: + - uid: 283 + components: + - pos: -4.5,-3.5 + parent: 778 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 262 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 778 + type: Transform + - uid: 264 + components: + - pos: -3.5,-3.5 + parent: 778 + type: Transform + - uid: 282 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 778 + type: Transform + - uid: 292 + components: + - pos: -5.5,-3.5 + parent: 778 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-asteroid-mining-chemlab.yml b/Resources/Maps/Salvage/DeltaV/DV-asteroid-mining-chemlab.yml new file mode 100644 index 0000000000..dd27c1a016 --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-asteroid-mining-chemlab.yml @@ -0,0 +1,5921 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 9: FloorAsteroidSandRed + 54: FloorHull + 55: FloorHullReinforced + 58: FloorKitchen + 72: FloorReinforced + 75: FloorShowroom + 85: FloorSteelCheckerDark + 89: FloorSteelDirty + 92: FloorSteelMono + 96: FloorTechMaint + 110: FloorWood + 113: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: grid + type: MetaData + - pos: -0.5,-0.51563644 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: NgAAAAAANgAAAAAANwAAAAAANwAAAAAANwAAAAAANgAAAAAANgAAAAAAcQAAAAAAXAAAAAACXAAAAAADXAAAAAADcQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAANgAAAAAANgAAAAAANwAAAAAANwAAAAAANwAAAAAANgAAAAAANgAAAAAAXAAAAAAAXAAAAAABXAAAAAADXAAAAAADcQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAANgAAAAAANgAAAAAANwAAAAAANwAAAAAANwAAAAAANgAAAAAANgAAAAAAcQAAAAAAXAAAAAAAXAAAAAADXAAAAAADcQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAANgAAAAAANgAAAAAANwAAAAAANwAAAAAANwAAAAAANgAAAAAANgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAANgAAAAAANgAAAAAANwAAAAAANwAAAAAANwAAAAAANgAAAAAANgAAAAAAcQAAAAAAbgAAAAAAbgAAAAABcQAAAAAACQAAAAAACQAAAAAACQAAAAAGCQAAAAAACQAAAAAANgAAAAAANgAAAAAANwAAAAAANwAAAAAANwAAAAAANgAAAAAANgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAcQAAAAAACQAAAAAACQAAAAAACQAAAAAKCQAAAAAACQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAcQAAAAAAbgAAAAABbgAAAAADcQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAASwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAACQAAAAAJCQAAAAAACQAAAAAACQAAAAAACQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAASwAAAAAASwAAAAAAcQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAJCQAAAAAACQAAAAAIYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAASwAAAAAAcQAAAAAACQAAAAAKCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAFCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAACQAAAAAKCQAAAAAACQAAAAAECQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAALCQAAAAAACQAAAAAACQAAAAAACQAAAAAHCQAAAAAACQAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAGCQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAICQAAAAAACQAAAAALCQAAAAAECQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAKCQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAICQAAAAAACQAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAGCQAAAAAJCQAAAAAJCQAAAAAACQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAAFCQAAAAAACQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAJCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAIcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAACQAAAAAICQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAHCQAAAAAKCQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAACQAAAAAGCQAAAAAACQAAAAAACQAAAAAJCQAAAAAACQAAAAAACQAAAAAACQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAICQAAAAAHcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAFCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAABCQAAAAAKCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAcQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAACVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAICQAAAAAAcQAAAAAAVQAAAAACVQAAAAADVQAAAAACVQAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAALCQAAAAAAcQAAAAAAVQAAAAACVQAAAAAAVQAAAAABVQAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAHCQAAAAAACQAAAAAACQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAGcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAADCQAAAAAFCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAKCQAAAAAACQAAAAAACQAAAAAACQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAJCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAALCQAAAAAACQAAAAAACQAAAAAJcQAAAAAASAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAACCQAAAAAACQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAECQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAFCQAAAAAGCQAAAAAFcQAAAAAASAAAAAAAWQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAACCQAAAAAACQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAMCQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAHCQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAHCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAMCQAAAAAACQAAAAAAAAAAAAAACQAAAAAACQAAAAAHCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAICQAAAAAACQAAAAAHCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAECQAAAAAHCQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAKCQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAALCQAAAAAKCQAAAAAACQAAAAAHCQAAAAABCQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAFCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAHCQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: [] + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 4371 + 0,1: + 0: 4369 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirlockMedicalScienceGlassLocked + entities: + - uid: 160 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 315 + components: + - pos: -2.5,-1.5 + parent: 1 + type: Transform + - uid: 316 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 317 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform +- proto: AirlockMedicalScienceLocked + entities: + - uid: 32 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 189 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 190 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 303 + components: + - pos: 7.5,8.5 + parent: 1 + type: Transform + - uid: 796 + components: + - pos: 1.5,10.5 + parent: 1 + type: Transform +- proto: APCHyperCapacity + entities: + - uid: 200 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform +- proto: Ash + entities: + - uid: 368 + components: + - pos: 2.8313768,4.6841235 + parent: 1 + type: Transform + - uid: 370 + components: + - pos: 1.4069422,0.15229446 + parent: 1 + type: Transform + - uid: 371 + components: + - pos: 8.500692,1.5182867 + parent: 1 + type: Transform +- proto: AtmosFixInstantPlasmaFireMarker + entities: + - uid: 338 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 339 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 340 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 341 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform +- proto: AtmosFixNitrogenMarker + entities: + - uid: 794 + components: + - pos: -0.5,11.5 + parent: 1 + type: Transform + - uid: 795 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform +- proto: AtmosFixOxygenMarker + entities: + - uid: 792 + components: + - pos: -0.5,14.5 + parent: 1 + type: Transform + - uid: 793 + components: + - pos: -0.5,15.5 + parent: 1 + type: Transform +- proto: AtmosFixPlasmaMarker + entities: + - uid: 342 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 343 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 344 + components: + - pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 345 + components: + - pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 346 + components: + - pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 347 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 348 + components: + - pos: 5.5,-4.5 + parent: 1 + type: Transform + - uid: 349 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform + - uid: 350 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 351 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 352 + components: + - pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 353 + components: + - pos: 6.5,-5.5 + parent: 1 + type: Transform +- proto: Barricade + entities: + - uid: 778 + components: + - pos: -1.5,-10.5 + parent: 1 + type: Transform + - uid: 779 + components: + - pos: -1.5,-9.5 + parent: 1 + type: Transform +- proto: BaseComputer + entities: + - uid: 125 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 320 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + type: Transform +- proto: Beaker + entities: + - uid: 103 + components: + - pos: 3.9578352,3.8375459 + parent: 1 + type: Transform + - solutions: + beaker: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 50 + reagents: + - data: null + ReagentId: Lipozine + Quantity: 30 + type: SolutionContainerManager + - uid: 104 + components: + - pos: 4.187002,3.597796 + parent: 1 + type: Transform + - solutions: + beaker: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 50 + reagents: + - data: null + ReagentId: PulpedBananaPeel + Quantity: 40 + type: SolutionContainerManager + - uid: 105 + components: + - pos: 3.5724187,5.807664 + parent: 1 + type: Transform + - solutions: + beaker: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 50 + reagents: + - data: null + ReagentId: Nocturine + Quantity: 10 + type: SolutionContainerManager + - enabled: False + type: CollisionWake +- proto: Bed + entities: + - uid: 181 + components: + - pos: 9.5,6.5 + parent: 1 + type: Transform + - uid: 182 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform +- proto: BedsheetSpawner + entities: + - uid: 185 + components: + - pos: 9.5,6.5 + parent: 1 + type: Transform + - uid: 186 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform +- proto: BlastDoor + entities: + - uid: 73 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - links: + - 236 + type: DeviceLinkSink + - uid: 122 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform + - links: + - 237 + type: DeviceLinkSink +- proto: BookChemistryInsane + entities: + - uid: 179 + components: + - rot: 3.141592653589793 rad + pos: 3.1743674,-0.42917657 + parent: 1 + type: Transform +- proto: BoxBeaker + entities: + - uid: 175 + components: + - pos: 8.609987,2.7375457 + parent: 1 + type: Transform +- proto: BoxFolderBlack + entities: + - uid: 132 + components: + - pos: 4.3060846,5.638433 + parent: 1 + type: Transform +- proto: BoxFolderBlue + entities: + - uid: 332 + components: + - rot: 3.141592653589793 rad + pos: -2.3749285,1.6121897 + parent: 1 + type: Transform +- proto: BoxFolderWhite + entities: + - uid: 331 + components: + - rot: 3.141592653589793 rad + pos: -2.354095,1.5392221 + parent: 1 + type: Transform +- proto: BoxLatexGloves + entities: + - uid: 177 + components: + - pos: 9.59957,2.7166977 + parent: 1 + type: Transform +- proto: BoxSterileMask + entities: + - uid: 176 + components: + - pos: 9.44332,2.7375457 + parent: 1 + type: Transform +- proto: BoxSyringe + entities: + - uid: 174 + components: + - pos: 8.526653,2.7479694 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 858 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 859 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 860 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 861 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 862 + components: + - pos: 1.5,10.5 + parent: 1 + type: Transform + - uid: 863 + components: + - pos: 1.5,11.5 + parent: 1 + type: Transform + - uid: 864 + components: + - pos: 1.5,12.5 + parent: 1 + type: Transform + - uid: 865 + components: + - pos: 1.5,13.5 + parent: 1 + type: Transform + - uid: 874 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 875 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 876 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 877 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 878 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 879 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 880 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 881 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 882 + components: + - pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 883 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 884 + components: + - pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 885 + components: + - pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 886 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 887 + components: + - pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 888 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 889 + components: + - pos: 5.5,8.5 + parent: 1 + type: Transform + - uid: 890 + components: + - pos: 6.5,8.5 + parent: 1 + type: Transform + - uid: 891 + components: + - pos: 7.5,8.5 + parent: 1 + type: Transform + - uid: 893 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 894 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 895 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 896 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 897 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 898 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 899 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 900 + components: + - pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 901 + components: + - pos: 7.5,1.5 + parent: 1 + type: Transform + - uid: 902 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 903 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 904 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 905 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 906 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 907 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 908 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 909 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 910 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 911 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 912 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 913 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 914 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 205 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 212 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 213 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 214 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 215 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 216 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 217 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 218 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform +- proto: CableTerminal + entities: + - uid: 211 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,9.5 + parent: 1 + type: Transform +- proto: Candle + entities: + - uid: 497 + components: + - pos: 11.4923525,4.234111 + parent: 1 + type: Transform +- proto: ChairFolding + entities: + - uid: 322 + components: + - rot: 1.5707963267948966 rad + pos: -3.5832615,0.6010704 + parent: 1 + type: Transform + - uid: 323 + components: + - rot: 1.5707963267948966 rad + pos: -3.635345,-0.19114625 + parent: 1 + type: Transform + - uid: 994 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform +- proto: ChairOfficeLight + entities: + - uid: 87 + components: + - pos: 2.678675,0.42619833 + parent: 1 + type: Transform + - uid: 88 + components: + - pos: 3.397425,0.436622 + parent: 1 + type: Transform + - uid: 89 + components: + - pos: 4.3245087,2.4797072 + parent: 1 + type: Transform + - uid: 90 + components: + - rot: -1.5707963267948966 rad + pos: 4.1682587,4.3872824 + parent: 1 + type: Transform + - uid: 91 + components: + - rot: 3.141592653589793 rad + pos: 3.5640917,5.004447 + parent: 1 + type: Transform + - uid: 321 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform +- proto: ChairWood + entities: + - uid: 359 + components: + - pos: 4.52111,9.383862 + parent: 1 + type: Transform +- proto: ChemistryHotplate + entities: + - uid: 2 + components: + - pos: 3.5,5.5 + parent: 1 + type: Transform + - placedEntities: + - 105 + type: ItemPlacer + - isPlaceable: False + type: PlaceableSurface + - uid: 22 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - placedEntities: + - 133 + type: ItemPlacer + - isPlaceable: False + type: PlaceableSurface +- proto: CigaretteMold + entities: + - uid: 369 + components: + - rot: -1.5707963267948966 rad + pos: 12.041122,4.306038 + parent: 1 + type: Transform +- proto: ClothingOuterWinterChem + entities: + - uid: 178 + components: + - pos: 10.393118,2.635452 + parent: 1 + type: Transform + - uid: 180 + components: + - pos: 10.611868,2.614604 + parent: 1 + type: Transform +- proto: CryoxadoneBeakerSmall + entities: + - uid: 107 + components: + - pos: 4.6974187,5.8285117 + parent: 1 + type: Transform +- proto: DiagnosisReportPaper + entities: + - uid: 128 + components: + - pos: 3.0144181,4.106118 + parent: 1 + type: Transform +- proto: DonkpocketBoxSpawner + entities: + - uid: 360 + components: + - pos: 5.5,10.5 + parent: 1 + type: Transform +- proto: DresserFilled + entities: + - uid: 183 + components: + - pos: 8.5,6.5 + parent: 1 + type: Transform + - uid: 184 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform +- proto: DrinkBottleBeer + entities: + - uid: 995 + components: + - rot: -1.5707963267948966 rad + pos: -1.3758049,8.80171 + parent: 1 + type: Transform + - uid: 996 + components: + - rot: 3.141592653589793 rad + pos: -1.4383049,8.436873 + parent: 1 + type: Transform +- proto: DrinkHotCoffee + entities: + - uid: 133 + components: + - pos: 4.539176,1.6981958 + parent: 1 + type: Transform + - enabled: False + type: CollisionWake +- proto: DrinkSpaceGlue + entities: + - uid: 221 + components: + - pos: 6.408321,4.7129297 + parent: 1 + type: Transform +- proto: DrinkSpaceLube + entities: + - uid: 220 + components: + - pos: 6.658321,4.681658 + parent: 1 + type: Transform +- proto: DrinkWaterCup + entities: + - uid: 158 + components: + - pos: 4.2640057,8.753794 + parent: 1 + type: Transform + - uid: 162 + components: + - pos: -0.6734946,4.730166 + parent: 1 + type: Transform +- proto: Dropper + entities: + - uid: 354 + components: + - rot: -1.5707963267948966 rad + pos: 3.812307,5.677805 + parent: 1 + type: Transform + - uid: 355 + components: + - rot: 3.141592653589793 rad + pos: 3.7289734,3.4470892 + parent: 1 + type: Transform + - uid: 356 + components: + - rot: 1.5707963267948966 rad + pos: 4.1768904,1.6124816 + parent: 1 + type: Transform +- proto: EmptyFlashlightLantern + entities: + - uid: 1002 + components: + - pos: 6.588108,12.752335 + parent: 1 + type: Transform +- proto: FaxMachineBase + entities: + - uid: 333 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - name: Delta-Lab + type: FaxMachine +- proto: filingCabinetDrawerRandom + entities: + - uid: 3 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 4 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 5 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform +- proto: Floodlight + entities: + - uid: 1000 + components: + - pos: -5.655805,-2.727866 + parent: 1 + type: Transform + - uid: 1001 + components: + - pos: -5.2078886,-3.311605 + parent: 1 + type: Transform +- proto: FloorDrain + entities: + - uid: 60 + components: + - pos: 8.5,8.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 202 + components: + - pos: 5.5,-4.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 204 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures +- proto: FoodBanana + entities: + - uid: 95 + components: + - pos: -0.5797446,4.6155033 + parent: 1 + type: Transform + - uid: 135 + components: + - pos: -0.4964111,4.5633836 + parent: 1 + type: Transform + - uid: 157 + components: + - pos: -1.3709384,6.1338487 + parent: 1 + type: Transform + - uid: 159 + components: + - rot: -1.5707963267948966 rad + pos: -4.7361307,5.959911 + parent: 1 + type: Transform + - uid: 163 + components: + - pos: -0.36099458,4.4695683 + parent: 1 + type: Transform +- proto: FoodBreadBaguette + entities: + - uid: 197 + components: + - flags: InContainer + type: MetaData + - parent: 192 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 198 + components: + - flags: InContainer + type: MetaData + - parent: 192 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodCheeseSlice + entities: + - uid: 193 + components: + - flags: InContainer + type: MetaData + - parent: 192 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 194 + components: + - flags: InContainer + type: MetaData + - parent: 192 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 195 + components: + - flags: InContainer + type: MetaData + - parent: 192 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodMeatSalami + entities: + - uid: 196 + components: + - flags: InContainer + type: MetaData + - parent: 192 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodMothHerbyCheese + entities: + - uid: 199 + components: + - flags: InContainer + type: MetaData + - parent: 192 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: GasMinerNitrogen + entities: + - uid: 649 + components: + - pos: -0.5,11.5 + parent: 1 + type: Transform +- proto: GasMinerOxygen + entities: + - uid: 301 + components: + - pos: -0.5,15.5 + parent: 1 + type: Transform +- proto: GasMixer + entities: + - uid: 787 + components: + - pos: 1.5,12.5 + parent: 1 + type: Transform + - inletTwoConcentration: 0.79 + inletOneConcentration: 0.21 + enabled: True + type: GasMixer + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasMixerFlipped + entities: + - uid: 108 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 1 + type: Transform +- proto: GasOutletInjector + entities: + - uid: 92 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 113 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform +- proto: GasPassiveVent + entities: + - uid: 238 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 242 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 502 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 503 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,14.5 + parent: 1 + type: Transform +- proto: GasPipeBend + entities: + - uid: 111 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 114 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 788 + components: + - pos: 1.5,14.5 + parent: 1 + type: Transform + - uid: 800 + components: + - rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 801 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 817 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 831 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 839 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 840 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 241 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 112 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 124 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 239 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 243 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 244 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 245 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 246 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 247 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 248 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 249 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 250 + components: + - rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 789 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,14.5 + parent: 1 + type: Transform + - uid: 790 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,12.5 + parent: 1 + type: Transform + - uid: 791 + components: + - rot: 3.141592653589793 rad + pos: 1.5,13.5 + parent: 1 + type: Transform + - uid: 797 + components: + - pos: 1.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 798 + components: + - pos: 1.5,10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 799 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 802 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 814 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 815 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 816 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 818 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 819 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 820 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 821 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 822 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 823 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 824 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 825 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 826 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 827 + components: + - rot: 3.141592653589793 rad + pos: 5.5,7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 828 + components: + - rot: 3.141592653589793 rad + pos: 5.5,8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 835 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 836 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 837 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 838 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 844 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 845 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 846 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 847 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 848 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 849 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 850 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 851 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 852 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 853 + components: + - rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 854 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 855 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 856 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 857 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 803 + components: + - rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 804 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 805 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 806 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 807 + components: + - rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 833 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 841 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 842 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 109 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 110 + components: + - pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 123 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform +- proto: GasPressurePump + entities: + - uid: 240 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 808 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 809 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 810 + components: + - rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 811 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 812 + components: + - pos: 5.5,9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 813 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 829 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 830 + components: + - rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 832 + components: + - rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 834 + components: + - pos: 4.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 843 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasVolumePump + entities: + - uid: 115 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform +- proto: GeneratorBasic + entities: + - uid: 203 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 19 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 30 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 69 + components: + - pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 70 + components: + - pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 96 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 118 + components: + - pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 120 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 121 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 276 + components: + - pos: 0.5,14.5 + parent: 1 + type: Transform + - uid: 277 + components: + - pos: 0.5,12.5 + parent: 1 + type: Transform + - uid: 278 + components: + - pos: 0.5,11.5 + parent: 1 + type: Transform + - uid: 311 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 312 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 453 + components: + - pos: 0.5,13.5 + parent: 1 + type: Transform + - uid: 456 + components: + - pos: 0.5,15.5 + parent: 1 + type: Transform + - uid: 457 + components: + - pos: -0.5,13.5 + parent: 1 + type: Transform +- proto: Jug + entities: + - uid: 222 + components: + - pos: 6.438479,3.8058417 + parent: 1 + type: Transform + - solutions: + beaker: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 200 + reagents: + - data: null + ReagentId: SpaceCleaner + Quantity: 100 + type: SolutionContainerManager + - uid: 223 + components: + - pos: 6.5530624,3.628635 + parent: 1 + type: Transform + - solutions: + beaker: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 200 + reagents: + - data: null + ReagentId: Artifexium + Quantity: 50 + type: SolutionContainerManager + - uid: 224 + components: + - pos: 6.438479,2.805146 + parent: 1 + type: Transform + - solutions: + beaker: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 200 + reagents: + - data: null + ReagentId: Hotsauce + Quantity: 150 + type: SolutionContainerManager + - uid: 225 + components: + - pos: 6.5426455,2.5966685 + parent: 1 + type: Transform + - solutions: + beaker: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 75 + reagents: + - data: null + ReagentId: BuzzochloricBees + Quantity: 75 + type: SolutionContainerManager +- proto: KitchenMicrowave + entities: + - uid: 357 + components: + - pos: 6.5,10.5 + parent: 1 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 23 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform +- proto: LargeBeaker + entities: + - uid: 101 + components: + - rot: 1.5707963267948966 rad + pos: 3.843252,2.8681226 + parent: 1 + type: Transform + - uid: 102 + components: + - pos: 4.530752,3.576948 + parent: 1 + type: Transform + - solutions: + beaker: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 100 + reagents: + - data: null + ReagentId: LotophagoiOil + Quantity: 20 + type: SolutionContainerManager + - uid: 106 + components: + - pos: 3.8849187,1.7423406 + parent: 1 + type: Transform + - solutions: + beaker: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 100 + reagents: + - data: null + ReagentId: Diphenhydramine + Quantity: 45 + type: SolutionContainerManager +- proto: LockerFreezerBase + entities: + - uid: 192 + components: + - pos: 4.5,10.5 + parent: 1 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 193 + - 194 + - 195 + - 196 + - 197 + - 198 + - 199 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: MaintenancePlantSpawner + entities: + - uid: 919 + components: + - pos: -5.5,8.5 + parent: 1 + type: Transform + - uid: 920 + components: + - pos: 8.5,11.5 + parent: 1 + type: Transform + - uid: 921 + components: + - pos: 13.5,-2.5 + parent: 1 + type: Transform +- proto: MaintenanceToolSpawner + entities: + - uid: 917 + components: + - pos: 8.5,17.5 + parent: 1 + type: Transform + - uid: 918 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform + - uid: 998 + components: + - pos: -0.5,19.5 + parent: 1 + type: Transform +- proto: MaintenanceWeaponSpawner + entities: + - uid: 916 + components: + - pos: 6.5,14.5 + parent: 1 + type: Transform +- proto: Matchbox + entities: + - uid: 498 + components: + - pos: 11.324441,4.8402147 + parent: 1 + type: Transform +- proto: MountainRockMining + entities: + - uid: 251 + components: + - pos: 13.5,3.5 + parent: 1 + type: Transform + - uid: 252 + components: + - pos: 13.5,2.5 + parent: 1 + type: Transform + - uid: 253 + components: + - pos: 13.5,1.5 + parent: 1 + type: Transform + - uid: 254 + components: + - pos: 13.5,0.5 + parent: 1 + type: Transform + - uid: 255 + components: + - pos: 12.5,0.5 + parent: 1 + type: Transform + - uid: 256 + components: + - pos: 13.5,4.5 + parent: 1 + type: Transform + - uid: 257 + components: + - pos: 13.5,5.5 + parent: 1 + type: Transform + - uid: 258 + components: + - pos: 13.5,6.5 + parent: 1 + type: Transform + - uid: 259 + components: + - pos: 13.5,7.5 + parent: 1 + type: Transform + - uid: 260 + components: + - pos: 13.5,8.5 + parent: 1 + type: Transform + - uid: 261 + components: + - pos: 13.5,9.5 + parent: 1 + type: Transform + - uid: 262 + components: + - pos: 12.5,9.5 + parent: 1 + type: Transform + - uid: 263 + components: + - pos: 11.5,9.5 + parent: 1 + type: Transform + - uid: 280 + components: + - pos: -3.5,16.5 + parent: 1 + type: Transform + - uid: 281 + components: + - pos: -3.5,14.5 + parent: 1 + type: Transform + - uid: 282 + components: + - pos: -3.5,13.5 + parent: 1 + type: Transform + - uid: 283 + components: + - pos: -3.5,10.5 + parent: 1 + type: Transform + - uid: 284 + components: + - pos: -3.5,11.5 + parent: 1 + type: Transform + - uid: 285 + components: + - pos: -4.5,9.5 + parent: 1 + type: Transform + - uid: 286 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 287 + components: + - pos: -6.5,9.5 + parent: 1 + type: Transform + - uid: 288 + components: + - pos: -7.5,9.5 + parent: 1 + type: Transform + - uid: 289 + components: + - pos: -7.5,8.5 + parent: 1 + type: Transform + - uid: 290 + components: + - pos: -7.5,7.5 + parent: 1 + type: Transform + - uid: 291 + components: + - pos: -7.5,6.5 + parent: 1 + type: Transform + - uid: 292 + components: + - pos: -7.5,5.5 + parent: 1 + type: Transform + - uid: 293 + components: + - pos: -7.5,4.5 + parent: 1 + type: Transform + - uid: 294 + components: + - pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 295 + components: + - pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 296 + components: + - pos: -7.5,1.5 + parent: 1 + type: Transform + - uid: 297 + components: + - pos: -7.5,0.5 + parent: 1 + type: Transform + - uid: 300 + components: + - pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 365 + components: + - pos: -7.5,-1.5 + parent: 1 + type: Transform + - uid: 366 + components: + - pos: -7.5,-0.5 + parent: 1 + type: Transform + - uid: 367 + components: + - pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 373 + components: + - pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 374 + components: + - pos: -6.5,-0.5 + parent: 1 + type: Transform + - uid: 375 + components: + - pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 376 + components: + - pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 377 + components: + - pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 378 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 379 + components: + - pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 380 + components: + - pos: -6.5,-6.5 + parent: 1 + type: Transform + - uid: 381 + components: + - pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 382 + components: + - pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 383 + components: + - pos: -5.5,-6.5 + parent: 1 + type: Transform + - uid: 384 + components: + - pos: -4.5,-4.5 + parent: 1 + type: Transform + - uid: 385 + components: + - pos: -4.5,-5.5 + parent: 1 + type: Transform + - uid: 386 + components: + - pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 387 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 388 + components: + - pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 389 + components: + - pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 390 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 391 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 392 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 393 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 394 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 395 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 396 + components: + - pos: -0.5,-6.5 + parent: 1 + type: Transform + - uid: 442 + components: + - pos: -3.5,12.5 + parent: 1 + type: Transform + - uid: 443 + components: + - pos: -3.5,15.5 + parent: 1 + type: Transform + - uid: 459 + components: + - pos: -3.5,17.5 + parent: 1 + type: Transform + - uid: 464 + components: + - pos: 5.5,14.5 + parent: 1 + type: Transform + - uid: 465 + components: + - pos: 5.5,15.5 + parent: 1 + type: Transform + - uid: 467 + components: + - pos: 5.5,17.5 + parent: 1 + type: Transform + - uid: 468 + components: + - pos: 5.5,16.5 + parent: 1 + type: Transform + - uid: 470 + components: + - pos: 5.5,18.5 + parent: 1 + type: Transform + - uid: 471 + components: + - pos: 4.5,18.5 + parent: 1 + type: Transform + - uid: 472 + components: + - pos: -0.5,18.5 + parent: 1 + type: Transform + - uid: 473 + components: + - pos: 1.5,18.5 + parent: 1 + type: Transform + - uid: 474 + components: + - pos: 3.5,18.5 + parent: 1 + type: Transform + - uid: 475 + components: + - pos: -1.5,18.5 + parent: 1 + type: Transform + - uid: 476 + components: + - pos: 0.5,18.5 + parent: 1 + type: Transform + - uid: 477 + components: + - pos: 2.5,18.5 + parent: 1 + type: Transform + - uid: 486 + components: + - pos: -3.5,18.5 + parent: 1 + type: Transform + - uid: 487 + components: + - pos: 6.5,13.5 + parent: 1 + type: Transform + - uid: 488 + components: + - pos: 7.5,13.5 + parent: 1 + type: Transform + - uid: 489 + components: + - pos: 8.5,13.5 + parent: 1 + type: Transform + - uid: 490 + components: + - pos: 9.5,13.5 + parent: 1 + type: Transform + - uid: 491 + components: + - pos: 10.5,13.5 + parent: 1 + type: Transform + - uid: 492 + components: + - pos: 11.5,13.5 + parent: 1 + type: Transform + - uid: 493 + components: + - pos: 11.5,12.5 + parent: 1 + type: Transform + - uid: 494 + components: + - pos: 11.5,11.5 + parent: 1 + type: Transform + - uid: 495 + components: + - pos: 11.5,10.5 + parent: 1 + type: Transform + - uid: 500 + components: + - pos: -2.5,18.5 + parent: 1 + type: Transform + - uid: 501 + components: + - pos: 5.5,13.5 + parent: 1 + type: Transform +- proto: Paper + entities: + - uid: 325 + components: + - rot: 3.141592653589793 rad + pos: -2.9686785,1.6538849 + parent: 1 + type: Transform + - uid: 326 + components: + - rot: 3.141592653589793 rad + pos: -2.9686785,1.6538849 + parent: 1 + type: Transform + - uid: 327 + components: + - rot: 3.141592653589793 rad + pos: -2.9686785,1.6538849 + parent: 1 + type: Transform + - uid: 328 + components: + - rot: 3.141592653589793 rad + pos: -2.7186785,1.5392221 + parent: 1 + type: Transform + - uid: 329 + components: + - rot: 3.141592653589793 rad + pos: -2.7186785,1.5392221 + parent: 1 + type: Transform + - uid: 330 + components: + - rot: 3.141592653589793 rad + pos: -2.7186785,1.5392221 + parent: 1 + type: Transform +- proto: PaperArtifactAnalyzer + entities: + - uid: 126 + components: + - pos: 2.5665014,2.678043 + parent: 1 + type: Transform + - uid: 127 + components: + - pos: 1.5352514,2.2089672 + parent: 1 + type: Transform +- proto: PaperOffice + entities: + - uid: 129 + components: + - pos: 4.014418,5.6697044 + parent: 1 + type: Transform + - uid: 130 + components: + - pos: 4.1290016,5.52377 + parent: 1 + type: Transform + - uid: 131 + components: + - rot: 3.141592653589793 rad + pos: 3.4310846,1.562685 + parent: 1 + type: Transform +- proto: PillCanister + entities: + - uid: 173 + components: + - rot: -1.5707963267948966 rad + pos: 3.618677,-0.506825 + parent: 1 + type: Transform +- proto: PottedPlantRandom + entities: + - uid: 324 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform +- proto: Poweredlight + entities: + - uid: 867 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + type: Transform + - uid: 868 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 869 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 870 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 871 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 872 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,1.5 + parent: 1 + type: Transform + - uid: 873 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 892 + components: + - pos: 5.5,10.5 + parent: 1 + type: Transform +- proto: PoweredlightSodium + entities: + - uid: 866 + components: + - pos: 1.5,15.5 + parent: 1 + type: Transform +- proto: PoweredSmallLight + entities: + - uid: 33 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 187 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 1 + type: Transform + - links: + - 188 + type: DeviceLinkSink + - uid: 219 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform +- proto: Puddle + entities: + - uid: 134 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - solutions: + puddle: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 1000 + reagents: + - data: null + ReagentId: Cognizine + Quantity: 20 + type: SolutionContainerManager + - active: False + type: StepTrigger +- proto: Rack + entities: + - uid: 80 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 81 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 82 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 167 + components: + - rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 168 + components: + - rot: 3.141592653589793 rad + pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 169 + components: + - rot: 3.141592653589793 rad + pos: 10.5,2.5 + parent: 1 + type: Transform +- proto: RagItem + entities: + - uid: 499 + components: + - pos: 5.9439816,10.709156 + parent: 1 + type: Transform +- proto: RandomArtifactSpawner + entities: + - uid: 226 + components: + - pos: 10.5,1.5 + parent: 1 + type: Transform +- proto: RandomArtifactSpawner20 + entities: + - uid: 590 + components: + - pos: 9.5,-2.5 + parent: 1 + type: Transform +- proto: RandomBoards + entities: + - uid: 642 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform +- proto: RandomBook + entities: + - uid: 57 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,8.5 + parent: 1 + type: Transform +- proto: RandomBox + entities: + - uid: 643 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 648 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 709 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform +- proto: RandomFoodSingle + entities: + - uid: 364 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform +- proto: RandomItem + entities: + - uid: 684 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform +- proto: RandomPosterContraband + entities: + - uid: 997 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform +- proto: RandomRockSpawner + entities: + - uid: 397 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 398 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 399 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 400 + components: + - pos: -8.5,6.5 + parent: 1 + type: Transform + - uid: 401 + components: + - pos: -8.5,5.5 + parent: 1 + type: Transform + - uid: 402 + components: + - pos: -8.5,4.5 + parent: 1 + type: Transform + - uid: 403 + components: + - pos: -8.5,3.5 + parent: 1 + type: Transform + - uid: 404 + components: + - pos: -8.5,2.5 + parent: 1 + type: Transform + - uid: 405 + components: + - pos: -8.5,1.5 + parent: 1 + type: Transform + - uid: 406 + components: + - pos: -8.5,0.5 + parent: 1 + type: Transform + - uid: 407 + components: + - pos: -9.5,6.5 + parent: 1 + type: Transform + - uid: 408 + components: + - pos: -9.5,5.5 + parent: 1 + type: Transform + - uid: 409 + components: + - pos: -9.5,4.5 + parent: 1 + type: Transform + - uid: 411 + components: + - pos: -9.5,2.5 + parent: 1 + type: Transform + - uid: 412 + components: + - pos: -9.5,1.5 + parent: 1 + type: Transform + - uid: 413 + components: + - pos: -9.5,0.5 + parent: 1 + type: Transform + - uid: 414 + components: + - pos: -10.5,6.5 + parent: 1 + type: Transform + - uid: 415 + components: + - pos: -10.5,5.5 + parent: 1 + type: Transform + - uid: 416 + components: + - pos: -10.5,4.5 + parent: 1 + type: Transform + - uid: 417 + components: + - pos: -10.5,3.5 + parent: 1 + type: Transform + - uid: 418 + components: + - pos: -10.5,2.5 + parent: 1 + type: Transform + - uid: 419 + components: + - pos: -10.5,1.5 + parent: 1 + type: Transform + - uid: 420 + components: + - pos: -10.5,0.5 + parent: 1 + type: Transform + - uid: 421 + components: + - pos: -11.5,6.5 + parent: 1 + type: Transform + - uid: 422 + components: + - pos: -11.5,5.5 + parent: 1 + type: Transform + - uid: 423 + components: + - pos: -11.5,4.5 + parent: 1 + type: Transform + - uid: 424 + components: + - pos: -11.5,3.5 + parent: 1 + type: Transform + - uid: 425 + components: + - pos: -11.5,2.5 + parent: 1 + type: Transform + - uid: 426 + components: + - pos: -11.5,1.5 + parent: 1 + type: Transform + - uid: 427 + components: + - pos: -11.5,0.5 + parent: 1 + type: Transform + - uid: 428 + components: + - pos: -9.5,7.5 + parent: 1 + type: Transform + - uid: 429 + components: + - pos: -9.5,8.5 + parent: 1 + type: Transform + - uid: 430 + components: + - pos: -9.5,9.5 + parent: 1 + type: Transform + - uid: 431 + components: + - pos: -8.5,7.5 + parent: 1 + type: Transform + - uid: 432 + components: + - pos: -8.5,8.5 + parent: 1 + type: Transform + - uid: 433 + components: + - pos: -8.5,9.5 + parent: 1 + type: Transform + - uid: 434 + components: + - pos: -7.5,10.5 + parent: 1 + type: Transform + - uid: 435 + components: + - pos: -7.5,11.5 + parent: 1 + type: Transform + - uid: 436 + components: + - pos: -6.5,10.5 + parent: 1 + type: Transform + - uid: 437 + components: + - pos: -6.5,11.5 + parent: 1 + type: Transform + - uid: 438 + components: + - pos: -5.5,10.5 + parent: 1 + type: Transform + - uid: 439 + components: + - pos: -5.5,11.5 + parent: 1 + type: Transform + - uid: 440 + components: + - pos: -4.5,10.5 + parent: 1 + type: Transform + - uid: 441 + components: + - pos: -4.5,11.5 + parent: 1 + type: Transform + - uid: 478 + components: + - pos: 6.5,16.5 + parent: 1 + type: Transform + - uid: 479 + components: + - pos: 6.5,17.5 + parent: 1 + type: Transform + - uid: 480 + components: + - pos: 6.5,18.5 + parent: 1 + type: Transform + - uid: 481 + components: + - pos: 7.5,16.5 + parent: 1 + type: Transform + - uid: 482 + components: + - pos: 7.5,17.5 + parent: 1 + type: Transform + - uid: 483 + components: + - pos: 7.5,18.5 + parent: 1 + type: Transform + - uid: 484 + components: + - pos: 4.5,19.5 + parent: 1 + type: Transform + - uid: 485 + components: + - pos: 5.5,19.5 + parent: 1 + type: Transform + - uid: 504 + components: + - pos: 6.5,15.5 + parent: 1 + type: Transform + - uid: 506 + components: + - pos: 7.5,15.5 + parent: 1 + type: Transform + - uid: 507 + components: + - pos: 7.5,14.5 + parent: 1 + type: Transform + - uid: 508 + components: + - pos: 8.5,15.5 + parent: 1 + type: Transform + - uid: 509 + components: + - pos: 8.5,14.5 + parent: 1 + type: Transform + - uid: 510 + components: + - pos: 9.5,15.5 + parent: 1 + type: Transform + - uid: 511 + components: + - pos: 9.5,14.5 + parent: 1 + type: Transform + - uid: 512 + components: + - pos: 10.5,15.5 + parent: 1 + type: Transform + - uid: 513 + components: + - pos: 10.5,14.5 + parent: 1 + type: Transform + - uid: 515 + components: + - pos: 11.5,14.5 + parent: 1 + type: Transform + - uid: 516 + components: + - pos: 12.5,15.5 + parent: 1 + type: Transform + - uid: 517 + components: + - pos: 12.5,14.5 + parent: 1 + type: Transform + - uid: 518 + components: + - pos: 13.5,15.5 + parent: 1 + type: Transform + - uid: 519 + components: + - pos: 13.5,14.5 + parent: 1 + type: Transform + - uid: 520 + components: + - pos: 14.5,15.5 + parent: 1 + type: Transform + - uid: 521 + components: + - pos: 14.5,14.5 + parent: 1 + type: Transform + - uid: 522 + components: + - pos: 9.5,17.5 + parent: 1 + type: Transform + - uid: 523 + components: + - pos: 9.5,16.5 + parent: 1 + type: Transform + - uid: 524 + components: + - pos: 10.5,17.5 + parent: 1 + type: Transform + - uid: 525 + components: + - pos: 10.5,16.5 + parent: 1 + type: Transform + - uid: 526 + components: + - pos: 8.5,16.5 + parent: 1 + type: Transform + - uid: 527 + components: + - pos: 12.5,16.5 + parent: 1 + type: Transform + - uid: 528 + components: + - pos: 13.5,16.5 + parent: 1 + type: Transform + - uid: 529 + components: + - pos: 12.5,13.5 + parent: 1 + type: Transform + - uid: 530 + components: + - pos: 12.5,13.5 + parent: 1 + type: Transform + - uid: 531 + components: + - pos: 12.5,12.5 + parent: 1 + type: Transform + - uid: 532 + components: + - pos: 12.5,11.5 + parent: 1 + type: Transform + - uid: 533 + components: + - pos: 12.5,10.5 + parent: 1 + type: Transform + - uid: 534 + components: + - pos: 13.5,13.5 + parent: 1 + type: Transform + - uid: 535 + components: + - pos: 13.5,12.5 + parent: 1 + type: Transform + - uid: 536 + components: + - pos: 13.5,11.5 + parent: 1 + type: Transform + - uid: 537 + components: + - pos: 13.5,10.5 + parent: 1 + type: Transform + - uid: 538 + components: + - pos: 14.5,13.5 + parent: 1 + type: Transform + - uid: 539 + components: + - pos: 14.5,12.5 + parent: 1 + type: Transform + - uid: 540 + components: + - pos: 14.5,11.5 + parent: 1 + type: Transform + - uid: 541 + components: + - pos: 14.5,10.5 + parent: 1 + type: Transform + - uid: 542 + components: + - pos: 15.5,13.5 + parent: 1 + type: Transform + - uid: 543 + components: + - pos: 15.5,12.5 + parent: 1 + type: Transform + - uid: 544 + components: + - pos: 15.5,11.5 + parent: 1 + type: Transform + - uid: 545 + components: + - pos: 15.5,10.5 + parent: 1 + type: Transform + - uid: 546 + components: + - pos: 16.5,13.5 + parent: 1 + type: Transform + - uid: 547 + components: + - pos: 16.5,12.5 + parent: 1 + type: Transform + - uid: 548 + components: + - pos: 16.5,11.5 + parent: 1 + type: Transform + - uid: 549 + components: + - pos: 16.5,10.5 + parent: 1 + type: Transform + - uid: 550 + components: + - pos: 14.5,9.5 + parent: 1 + type: Transform + - uid: 551 + components: + - pos: 14.5,9.5 + parent: 1 + type: Transform + - uid: 552 + components: + - pos: 14.5,8.5 + parent: 1 + type: Transform + - uid: 554 + components: + - pos: 14.5,6.5 + parent: 1 + type: Transform + - uid: 555 + components: + - pos: 14.5,5.5 + parent: 1 + type: Transform + - uid: 556 + components: + - pos: 14.5,4.5 + parent: 1 + type: Transform + - uid: 557 + components: + - pos: 14.5,3.5 + parent: 1 + type: Transform + - uid: 558 + components: + - pos: 14.5,2.5 + parent: 1 + type: Transform + - uid: 559 + components: + - pos: 14.5,1.5 + parent: 1 + type: Transform + - uid: 560 + components: + - pos: 14.5,0.5 + parent: 1 + type: Transform + - uid: 561 + components: + - pos: 14.5,-0.5 + parent: 1 + type: Transform + - uid: 562 + components: + - pos: 14.5,-1.5 + parent: 1 + type: Transform + - uid: 563 + components: + - pos: 14.5,-2.5 + parent: 1 + type: Transform + - uid: 564 + components: + - pos: 14.5,-3.5 + parent: 1 + type: Transform + - uid: 565 + components: + - pos: 14.5,-4.5 + parent: 1 + type: Transform + - uid: 566 + components: + - pos: 15.5,9.5 + parent: 1 + type: Transform + - uid: 567 + components: + - pos: 15.5,8.5 + parent: 1 + type: Transform + - uid: 570 + components: + - pos: 15.5,5.5 + parent: 1 + type: Transform + - uid: 571 + components: + - pos: 15.5,4.5 + parent: 1 + type: Transform + - uid: 572 + components: + - pos: 15.5,3.5 + parent: 1 + type: Transform + - uid: 573 + components: + - pos: 15.5,2.5 + parent: 1 + type: Transform + - uid: 574 + components: + - pos: 15.5,1.5 + parent: 1 + type: Transform + - uid: 575 + components: + - pos: 15.5,0.5 + parent: 1 + type: Transform + - uid: 576 + components: + - pos: 15.5,-0.5 + parent: 1 + type: Transform + - uid: 577 + components: + - pos: 15.5,-1.5 + parent: 1 + type: Transform + - uid: 578 + components: + - pos: 15.5,-2.5 + parent: 1 + type: Transform + - uid: 579 + components: + - pos: 15.5,-3.5 + parent: 1 + type: Transform + - uid: 580 + components: + - pos: 15.5,-4.5 + parent: 1 + type: Transform + - uid: 581 + components: + - pos: 16.5,9.5 + parent: 1 + type: Transform + - uid: 582 + components: + - pos: 16.5,8.5 + parent: 1 + type: Transform + - uid: 583 + components: + - pos: 16.5,7.5 + parent: 1 + type: Transform + - uid: 586 + components: + - pos: 16.5,4.5 + parent: 1 + type: Transform + - uid: 587 + components: + - pos: 16.5,3.5 + parent: 1 + type: Transform + - uid: 588 + components: + - pos: 16.5,2.5 + parent: 1 + type: Transform + - uid: 589 + components: + - pos: 16.5,1.5 + parent: 1 + type: Transform + - uid: 592 + components: + - pos: 16.5,-1.5 + parent: 1 + type: Transform + - uid: 593 + components: + - pos: 16.5,-2.5 + parent: 1 + type: Transform + - uid: 594 + components: + - pos: 16.5,-3.5 + parent: 1 + type: Transform + - uid: 595 + components: + - pos: 16.5,-4.5 + parent: 1 + type: Transform + - uid: 596 + components: + - pos: 17.5,9.5 + parent: 1 + type: Transform + - uid: 597 + components: + - pos: 17.5,8.5 + parent: 1 + type: Transform + - uid: 598 + components: + - pos: 17.5,7.5 + parent: 1 + type: Transform + - uid: 599 + components: + - pos: 17.5,6.5 + parent: 1 + type: Transform + - uid: 600 + components: + - pos: 17.5,5.5 + parent: 1 + type: Transform + - uid: 601 + components: + - pos: 17.5,4.5 + parent: 1 + type: Transform + - uid: 602 + components: + - pos: 17.5,3.5 + parent: 1 + type: Transform + - uid: 603 + components: + - pos: 17.5,2.5 + parent: 1 + type: Transform + - uid: 604 + components: + - pos: 17.5,1.5 + parent: 1 + type: Transform + - uid: 605 + components: + - pos: 17.5,0.5 + parent: 1 + type: Transform + - uid: 606 + components: + - pos: 17.5,-0.5 + parent: 1 + type: Transform + - uid: 607 + components: + - pos: 17.5,-1.5 + parent: 1 + type: Transform + - uid: 608 + components: + - pos: 17.5,-2.5 + parent: 1 + type: Transform + - uid: 609 + components: + - pos: 17.5,-3.5 + parent: 1 + type: Transform + - uid: 610 + components: + - pos: 17.5,-4.5 + parent: 1 + type: Transform + - uid: 611 + components: + - pos: 18.5,9.5 + parent: 1 + type: Transform + - uid: 612 + components: + - pos: 18.5,8.5 + parent: 1 + type: Transform + - uid: 613 + components: + - pos: 18.5,7.5 + parent: 1 + type: Transform + - uid: 614 + components: + - pos: 18.5,6.5 + parent: 1 + type: Transform + - uid: 615 + components: + - pos: 18.5,5.5 + parent: 1 + type: Transform + - uid: 616 + components: + - pos: 18.5,4.5 + parent: 1 + type: Transform + - uid: 617 + components: + - pos: 18.5,3.5 + parent: 1 + type: Transform + - uid: 618 + components: + - pos: 18.5,2.5 + parent: 1 + type: Transform + - uid: 619 + components: + - pos: 18.5,1.5 + parent: 1 + type: Transform + - uid: 620 + components: + - pos: 18.5,0.5 + parent: 1 + type: Transform + - uid: 621 + components: + - pos: 18.5,-0.5 + parent: 1 + type: Transform + - uid: 622 + components: + - pos: 18.5,-1.5 + parent: 1 + type: Transform + - uid: 623 + components: + - pos: 18.5,-2.5 + parent: 1 + type: Transform + - uid: 624 + components: + - pos: 18.5,-3.5 + parent: 1 + type: Transform + - uid: 625 + components: + - pos: 18.5,-4.5 + parent: 1 + type: Transform + - uid: 626 + components: + - pos: 19.5,0.5 + parent: 1 + type: Transform + - uid: 627 + components: + - pos: 19.5,1.5 + parent: 1 + type: Transform + - uid: 628 + components: + - pos: 19.5,2.5 + parent: 1 + type: Transform + - uid: 629 + components: + - pos: 19.5,3.5 + parent: 1 + type: Transform + - uid: 630 + components: + - pos: 19.5,4.5 + parent: 1 + type: Transform + - uid: 631 + components: + - pos: 19.5,5.5 + parent: 1 + type: Transform + - uid: 632 + components: + - pos: 19.5,6.5 + parent: 1 + type: Transform + - uid: 633 + components: + - pos: 20.5,5.5 + parent: 1 + type: Transform + - uid: 634 + components: + - pos: 20.5,4.5 + parent: 1 + type: Transform + - uid: 635 + components: + - pos: 20.5,3.5 + parent: 1 + type: Transform + - uid: 636 + components: + - pos: 20.5,2.5 + parent: 1 + type: Transform + - uid: 637 + components: + - pos: 20.5,1.5 + parent: 1 + type: Transform + - uid: 638 + components: + - pos: 13.5,-0.5 + parent: 1 + type: Transform + - uid: 639 + components: + - pos: 13.5,-0.5 + parent: 1 + type: Transform + - uid: 640 + components: + - pos: 13.5,-1.5 + parent: 1 + type: Transform + - uid: 644 + components: + - pos: 12.5,-0.5 + parent: 1 + type: Transform + - uid: 645 + components: + - pos: 12.5,-1.5 + parent: 1 + type: Transform + - uid: 646 + components: + - pos: 12.5,-2.5 + parent: 1 + type: Transform + - uid: 651 + components: + - pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 652 + components: + - pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 653 + components: + - pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 654 + components: + - pos: 8.5,-6.5 + parent: 1 + type: Transform + - uid: 655 + components: + - pos: 8.5,-7.5 + parent: 1 + type: Transform + - uid: 656 + components: + - pos: 8.5,-8.5 + parent: 1 + type: Transform + - uid: 659 + components: + - pos: 9.5,-3.5 + parent: 1 + type: Transform + - uid: 660 + components: + - pos: 9.5,-4.5 + parent: 1 + type: Transform + - uid: 661 + components: + - pos: 9.5,-5.5 + parent: 1 + type: Transform + - uid: 662 + components: + - pos: 9.5,-6.5 + parent: 1 + type: Transform + - uid: 663 + components: + - pos: 9.5,-7.5 + parent: 1 + type: Transform + - uid: 664 + components: + - pos: 9.5,-8.5 + parent: 1 + type: Transform + - uid: 665 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - uid: 666 + components: + - pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 667 + components: + - pos: 10.5,-3.5 + parent: 1 + type: Transform + - uid: 668 + components: + - pos: 10.5,-4.5 + parent: 1 + type: Transform + - uid: 669 + components: + - pos: 10.5,-5.5 + parent: 1 + type: Transform + - uid: 670 + components: + - pos: 10.5,-6.5 + parent: 1 + type: Transform + - uid: 671 + components: + - pos: 10.5,-7.5 + parent: 1 + type: Transform + - uid: 672 + components: + - pos: 10.5,-8.5 + parent: 1 + type: Transform + - uid: 673 + components: + - pos: 11.5,-1.5 + parent: 1 + type: Transform + - uid: 674 + components: + - pos: 11.5,-2.5 + parent: 1 + type: Transform + - uid: 675 + components: + - pos: 11.5,-3.5 + parent: 1 + type: Transform + - uid: 676 + components: + - pos: 11.5,-4.5 + parent: 1 + type: Transform + - uid: 677 + components: + - pos: 11.5,-5.5 + parent: 1 + type: Transform + - uid: 678 + components: + - pos: 11.5,-6.5 + parent: 1 + type: Transform + - uid: 679 + components: + - pos: 11.5,-7.5 + parent: 1 + type: Transform + - uid: 680 + components: + - pos: 11.5,-8.5 + parent: 1 + type: Transform + - uid: 681 + components: + - pos: 12.5,-1.5 + parent: 1 + type: Transform + - uid: 682 + components: + - pos: 12.5,-2.5 + parent: 1 + type: Transform + - uid: 685 + components: + - pos: 12.5,-5.5 + parent: 1 + type: Transform + - uid: 686 + components: + - pos: 12.5,-6.5 + parent: 1 + type: Transform + - uid: 687 + components: + - pos: 12.5,-7.5 + parent: 1 + type: Transform + - uid: 688 + components: + - pos: 12.5,-8.5 + parent: 1 + type: Transform + - uid: 689 + components: + - pos: 13.5,-5.5 + parent: 1 + type: Transform + - uid: 690 + components: + - pos: 13.5,-5.5 + parent: 1 + type: Transform + - uid: 691 + components: + - pos: 13.5,-6.5 + parent: 1 + type: Transform + - uid: 692 + components: + - pos: 13.5,-7.5 + parent: 1 + type: Transform + - uid: 693 + components: + - pos: 13.5,-8.5 + parent: 1 + type: Transform + - uid: 694 + components: + - pos: 14.5,-5.5 + parent: 1 + type: Transform + - uid: 695 + components: + - pos: 14.5,-6.5 + parent: 1 + type: Transform + - uid: 696 + components: + - pos: 14.5,-7.5 + parent: 1 + type: Transform + - uid: 697 + components: + - pos: 14.5,-8.5 + parent: 1 + type: Transform + - uid: 698 + components: + - pos: 15.5,-5.5 + parent: 1 + type: Transform + - uid: 699 + components: + - pos: 15.5,-6.5 + parent: 1 + type: Transform + - uid: 700 + components: + - pos: 15.5,-7.5 + parent: 1 + type: Transform + - uid: 701 + components: + - pos: 15.5,-8.5 + parent: 1 + type: Transform + - uid: 702 + components: + - pos: 14.5,-9.5 + parent: 1 + type: Transform + - uid: 703 + components: + - pos: 13.5,-9.5 + parent: 1 + type: Transform + - uid: 704 + components: + - pos: 12.5,-9.5 + parent: 1 + type: Transform + - uid: 705 + components: + - pos: 11.5,-9.5 + parent: 1 + type: Transform + - uid: 706 + components: + - pos: 10.5,-9.5 + parent: 1 + type: Transform + - uid: 707 + components: + - pos: 9.5,-9.5 + parent: 1 + type: Transform + - uid: 708 + components: + - pos: 8.5,-9.5 + parent: 1 + type: Transform + - uid: 710 + components: + - pos: 8.5,-11.5 + parent: 1 + type: Transform + - uid: 711 + components: + - pos: 8.5,-12.5 + parent: 1 + type: Transform + - uid: 714 + components: + - pos: 7.5,-11.5 + parent: 1 + type: Transform + - uid: 715 + components: + - pos: 7.5,-12.5 + parent: 1 + type: Transform + - uid: 716 + components: + - pos: 6.5,-9.5 + parent: 1 + type: Transform + - uid: 717 + components: + - pos: 6.5,-10.5 + parent: 1 + type: Transform + - uid: 718 + components: + - pos: 6.5,-11.5 + parent: 1 + type: Transform + - uid: 719 + components: + - pos: 6.5,-12.5 + parent: 1 + type: Transform + - uid: 720 + components: + - pos: 5.5,-9.5 + parent: 1 + type: Transform + - uid: 721 + components: + - pos: 5.5,-10.5 + parent: 1 + type: Transform + - uid: 722 + components: + - pos: 5.5,-11.5 + parent: 1 + type: Transform + - uid: 723 + components: + - pos: 5.5,-12.5 + parent: 1 + type: Transform + - uid: 724 + components: + - pos: 7.5,-13.5 + parent: 1 + type: Transform + - uid: 725 + components: + - pos: 6.5,-13.5 + parent: 1 + type: Transform + - uid: 726 + components: + - pos: 5.5,-13.5 + parent: 1 + type: Transform + - uid: 727 + components: + - pos: 4.5,-13.5 + parent: 1 + type: Transform + - uid: 728 + components: + - pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 729 + components: + - pos: 2.5,-13.5 + parent: 1 + type: Transform + - uid: 730 + components: + - pos: 4.5,-12.5 + parent: 1 + type: Transform + - uid: 731 + components: + - pos: 4.5,-11.5 + parent: 1 + type: Transform + - uid: 732 + components: + - pos: 4.5,-10.5 + parent: 1 + type: Transform + - uid: 733 + components: + - pos: 4.5,-9.5 + parent: 1 + type: Transform + - uid: 734 + components: + - pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 735 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 736 + components: + - pos: 3.5,-12.5 + parent: 1 + type: Transform + - uid: 737 + components: + - pos: 3.5,-11.5 + parent: 1 + type: Transform + - uid: 738 + components: + - pos: 3.5,-10.5 + parent: 1 + type: Transform + - uid: 739 + components: + - pos: 3.5,-9.5 + parent: 1 + type: Transform + - uid: 740 + components: + - pos: 3.5,-8.5 + parent: 1 + type: Transform + - uid: 741 + components: + - pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 742 + components: + - pos: 2.5,-12.5 + parent: 1 + type: Transform + - uid: 743 + components: + - pos: 2.5,-11.5 + parent: 1 + type: Transform + - uid: 744 + components: + - pos: 2.5,-10.5 + parent: 1 + type: Transform + - uid: 745 + components: + - pos: 2.5,-9.5 + parent: 1 + type: Transform + - uid: 746 + components: + - pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 747 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 748 + components: + - pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 749 + components: + - pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 750 + components: + - pos: 6.5,-7.5 + parent: 1 + type: Transform + - uid: 751 + components: + - pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 752 + components: + - pos: 7.5,-7.5 + parent: 1 + type: Transform + - uid: 753 + components: + - pos: 7.5,-8.5 + parent: 1 + type: Transform + - uid: 754 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 755 + components: + - pos: 1.5,-8.5 + parent: 1 + type: Transform + - uid: 756 + components: + - pos: 1.5,-9.5 + parent: 1 + type: Transform + - uid: 757 + components: + - pos: 1.5,-10.5 + parent: 1 + type: Transform + - uid: 758 + components: + - pos: 1.5,-11.5 + parent: 1 + type: Transform + - uid: 759 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 760 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 761 + components: + - pos: 0.5,-9.5 + parent: 1 + type: Transform + - uid: 762 + components: + - pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 763 + components: + - pos: 0.5,-11.5 + parent: 1 + type: Transform + - uid: 764 + components: + - pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 765 + components: + - pos: -0.5,-8.5 + parent: 1 + type: Transform + - uid: 766 + components: + - pos: -0.5,-9.5 + parent: 1 + type: Transform + - uid: 767 + components: + - pos: -0.5,-10.5 + parent: 1 + type: Transform + - uid: 768 + components: + - pos: -0.5,-11.5 + parent: 1 + type: Transform + - uid: 769 + components: + - pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 770 + components: + - pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 771 + components: + - pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 772 + components: + - pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 773 + components: + - pos: -2.5,-8.5 + parent: 1 + type: Transform + - uid: 774 + components: + - pos: -2.5,-9.5 + parent: 1 + type: Transform + - uid: 775 + components: + - pos: -2.5,-10.5 + parent: 1 + type: Transform + - uid: 776 + components: + - pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 782 + components: + - pos: -8.5,-0.5 + parent: 1 + type: Transform + - uid: 783 + components: + - pos: -8.5,-1.5 + parent: 1 + type: Transform + - uid: 784 + components: + - pos: -8.5,-2.5 + parent: 1 + type: Transform + - uid: 785 + components: + - pos: -8.5,-3.5 + parent: 1 + type: Transform + - uid: 926 + components: + - pos: -1.5,19.5 + parent: 1 + type: Transform + - uid: 927 + components: + - pos: -1.5,20.5 + parent: 1 + type: Transform + - uid: 928 + components: + - pos: -1.5,21.5 + parent: 1 + type: Transform + - uid: 929 + components: + - pos: -0.5,21.5 + parent: 1 + type: Transform + - uid: 930 + components: + - pos: 0.5,21.5 + parent: 1 + type: Transform + - uid: 931 + components: + - pos: 1.5,21.5 + parent: 1 + type: Transform + - uid: 932 + components: + - pos: 1.5,20.5 + parent: 1 + type: Transform + - uid: 933 + components: + - pos: 1.5,19.5 + parent: 1 + type: Transform + - uid: 934 + components: + - pos: 0.5,19.5 + parent: 1 + type: Transform + - uid: 935 + components: + - pos: 2.5,19.5 + parent: 1 + type: Transform + - uid: 936 + components: + - pos: 2.5,20.5 + parent: 1 + type: Transform + - uid: 937 + components: + - pos: 2.5,21.5 + parent: 1 + type: Transform + - uid: 938 + components: + - pos: 2.5,22.5 + parent: 1 + type: Transform + - uid: 939 + components: + - pos: 2.5,23.5 + parent: 1 + type: Transform + - uid: 940 + components: + - pos: 3.5,19.5 + parent: 1 + type: Transform + - uid: 941 + components: + - pos: 3.5,20.5 + parent: 1 + type: Transform + - uid: 942 + components: + - pos: 3.5,21.5 + parent: 1 + type: Transform + - uid: 943 + components: + - pos: 3.5,22.5 + parent: 1 + type: Transform + - uid: 944 + components: + - pos: 3.5,23.5 + parent: 1 + type: Transform + - uid: 945 + components: + - pos: 4.5,21.5 + parent: 1 + type: Transform + - uid: 946 + components: + - pos: 4.5,20.5 + parent: 1 + type: Transform + - uid: 947 + components: + - pos: 5.5,21.5 + parent: 1 + type: Transform + - uid: 948 + components: + - pos: 5.5,20.5 + parent: 1 + type: Transform + - uid: 949 + components: + - pos: 6.5,20.5 + parent: 1 + type: Transform + - uid: 950 + components: + - pos: 6.5,19.5 + parent: 1 + type: Transform + - uid: 951 + components: + - pos: 1.5,22.5 + parent: 1 + type: Transform + - uid: 952 + components: + - pos: 0.5,22.5 + parent: 1 + type: Transform + - uid: 953 + components: + - pos: -0.5,22.5 + parent: 1 + type: Transform + - uid: 954 + components: + - pos: -0.5,23.5 + parent: 1 + type: Transform + - uid: 955 + components: + - pos: -1.5,22.5 + parent: 1 + type: Transform + - uid: 956 + components: + - pos: -1.5,23.5 + parent: 1 + type: Transform + - uid: 957 + components: + - pos: -2.5,22.5 + parent: 1 + type: Transform + - uid: 958 + components: + - pos: -2.5,23.5 + parent: 1 + type: Transform + - uid: 959 + components: + - pos: -3.5,22.5 + parent: 1 + type: Transform + - uid: 960 + components: + - pos: -3.5,23.5 + parent: 1 + type: Transform + - uid: 961 + components: + - pos: -2.5,21.5 + parent: 1 + type: Transform + - uid: 962 + components: + - pos: -2.5,20.5 + parent: 1 + type: Transform + - uid: 963 + components: + - pos: -2.5,19.5 + parent: 1 + type: Transform + - uid: 964 + components: + - pos: -3.5,21.5 + parent: 1 + type: Transform + - uid: 965 + components: + - pos: -3.5,20.5 + parent: 1 + type: Transform + - uid: 966 + components: + - pos: -3.5,19.5 + parent: 1 + type: Transform + - uid: 967 + components: + - pos: -4.5,21.5 + parent: 1 + type: Transform + - uid: 968 + components: + - pos: -4.5,20.5 + parent: 1 + type: Transform + - uid: 969 + components: + - pos: -4.5,19.5 + parent: 1 + type: Transform + - uid: 970 + components: + - pos: -5.5,20.5 + parent: 1 + type: Transform + - uid: 971 + components: + - pos: -5.5,19.5 + parent: 1 + type: Transform + - uid: 972 + components: + - pos: -6.5,17.5 + parent: 1 + type: Transform + - uid: 973 + components: + - pos: -6.5,16.5 + parent: 1 + type: Transform + - uid: 974 + components: + - pos: -6.5,15.5 + parent: 1 + type: Transform + - uid: 975 + components: + - pos: -6.5,14.5 + parent: 1 + type: Transform + - uid: 976 + components: + - pos: -5.5,17.5 + parent: 1 + type: Transform + - uid: 977 + components: + - pos: -5.5,16.5 + parent: 1 + type: Transform + - uid: 978 + components: + - pos: -5.5,15.5 + parent: 1 + type: Transform + - uid: 979 + components: + - pos: -5.5,14.5 + parent: 1 + type: Transform + - uid: 980 + components: + - pos: -4.5,17.5 + parent: 1 + type: Transform + - uid: 981 + components: + - pos: -4.5,16.5 + parent: 1 + type: Transform + - uid: 982 + components: + - pos: -4.5,15.5 + parent: 1 + type: Transform + - uid: 983 + components: + - pos: -4.5,14.5 + parent: 1 + type: Transform + - uid: 984 + components: + - pos: -6.5,13.5 + parent: 1 + type: Transform + - uid: 985 + components: + - pos: -6.5,12.5 + parent: 1 + type: Transform + - uid: 986 + components: + - pos: -7.5,12.5 + parent: 1 + type: Transform + - uid: 987 + components: + - pos: -7.5,13.5 + parent: 1 + type: Transform + - uid: 988 + components: + - pos: -7.5,14.5 + parent: 1 + type: Transform + - uid: 989 + components: + - pos: -7.5,15.5 + parent: 1 + type: Transform + - uid: 990 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - uid: 991 + components: + - pos: -4.5,18.5 + parent: 1 + type: Transform + - uid: 992 + components: + - pos: -5.5,18.5 + parent: 1 + type: Transform + - uid: 993 + components: + - pos: -6.5,18.5 + parent: 1 + type: Transform +- proto: RandomSpawner + entities: + - uid: 568 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,6.5 + parent: 1 + type: Transform +- proto: ReinforcedPlasmaWindow + entities: + - uid: 71 + components: + - pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 72 + components: + - pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 83 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 84 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 116 + components: + - pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 117 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 119 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 94 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 313 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 314 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 448 + components: + - pos: 0.5,13.5 + parent: 1 + type: Transform + - uid: 450 + components: + - pos: 0.5,12.5 + parent: 1 + type: Transform + - uid: 451 + components: + - pos: 0.5,11.5 + parent: 1 + type: Transform + - uid: 452 + components: + - pos: 0.5,15.5 + parent: 1 + type: Transform + - uid: 454 + components: + - pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 462 + components: + - pos: 0.5,14.5 + parent: 1 + type: Transform +- proto: SalvageCanisterSpawner + entities: + - uid: 170 + components: + - pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 171 + components: + - pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 172 + components: + - pos: 10.5,0.5 + parent: 1 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 999 + components: + - pos: -4.5,-3.5 + parent: 1 + type: Transform +- proto: SalvagePartsSpawnerSubSpace + entities: + - uid: 641 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform +- proto: ShardGlass + entities: + - uid: 372 + components: + - pos: 4.942702,6.5246396 + parent: 1 + type: Transform +- proto: ShuttersNormal + entities: + - uid: 235 + components: + - pos: 7.5,1.5 + parent: 1 + type: Transform + - links: + - 234 + type: DeviceLinkSink +- proto: SignalSwitchDirectional + entities: + - uid: 188 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,5.5 + parent: 1 + type: Transform + - linkedPorts: + 187: + - On: On + - Off: Off + type: DeviceLinkSource + - uid: 234 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + type: Transform + - linkedPorts: + 235: + - On: Open + - Off: Close + type: DeviceLinkSource + - uid: 236 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + type: Transform + - linkedPorts: + 73: + - On: Open + - Off: Close + type: DeviceLinkSource + - uid: 237 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + type: Transform + - linkedPorts: + 122: + - On: Open + - Off: Close + type: DeviceLinkSource +- proto: SignChem + entities: + - uid: 569 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 1 + type: Transform + - uid: 584 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + type: Transform +- proto: SignCorrosives + entities: + - uid: 233 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,2.5 + parent: 1 + type: Transform +- proto: SignNosmoking + entities: + - uid: 231 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 232 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,3.5 + parent: 1 + type: Transform +- proto: Sink + entities: + - uid: 59 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,8.5 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 209 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform +- proto: SpaceTickSpawner + entities: + - uid: 585 + components: + - pos: 5.5,12.5 + parent: 1 + type: Transform + - uid: 650 + components: + - pos: 9.5,-1.5 + parent: 1 + type: Transform + - uid: 657 + components: + - pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 658 + components: + - pos: 8.5,-2.5 + parent: 1 + type: Transform +- proto: SpawnMobMonkey + entities: + - uid: 149 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 150 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 151 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 152 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 153 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform +- proto: SpawnMobOreCrab + entities: + - uid: 410 + components: + - pos: -9.5,3.5 + parent: 1 + type: Transform + - uid: 505 + components: + - pos: -8.5,10.5 + parent: 1 + type: Transform + - uid: 514 + components: + - pos: 11.5,15.5 + parent: 1 + type: Transform + - uid: 553 + components: + - pos: 15.5,7.5 + parent: 1 + type: Transform + - uid: 591 + components: + - pos: 16.5,0.5 + parent: 1 + type: Transform + - uid: 647 + components: + - pos: 1.5,-12.5 + parent: 1 + type: Transform + - uid: 683 + components: + - pos: 13.5,-4.5 + parent: 1 + type: Transform + - uid: 713 + components: + - pos: 7.5,-9.5 + parent: 1 + type: Transform + - uid: 786 + components: + - pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 915 + components: + - pos: 0.5,20.5 + parent: 1 + type: Transform +- proto: StorageCanister + entities: + - uid: 712 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform +- proto: StrangePill + entities: + - uid: 228 + components: + - name: pill + type: MetaData + - pos: -3.2912984,4.308861 + parent: 1 + type: Transform + - uid: 229 + components: + - name: pill + type: MetaData + - rot: -1.5707963267948966 rad + pos: 3.6357849,-0.31935334 + parent: 1 + type: Transform + - uid: 230 + components: + - name: pill + type: MetaData + - rot: -1.5707963267948966 rad + pos: 3.6982849,-0.31935334 + parent: 1 + type: Transform +- proto: SubstationBasic + entities: + - uid: 210 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform +- proto: Syringe + entities: + - uid: 164 + components: + - rot: -1.5707963267948966 rad + pos: 3.5681775,1.5237143 + parent: 1 + type: Transform + - tags: + - Syringe + type: Tag + - solutions: + injector: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 15 + reagents: + - data: null + ReagentId: Oculine + Quantity: 10 + type: SolutionContainerManager + - uid: 165 + components: + - rot: 3.141592653589793 rad + pos: 2.6202607,-0.44640398 + parent: 1 + type: Transform + - tags: + - Syringe + type: Tag + - solutions: + injector: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 15 + reagents: + - data: null + ReagentId: Radium + Quantity: 15 + type: SolutionContainerManager +- proto: TableCounterMetal + entities: + - uid: 161 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform +- proto: TableGlass + entities: + - uid: 358 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1 + type: Transform +- proto: TableReinforcedGlass + entities: + - uid: 74 + components: + - pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 75 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 76 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 77 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 78 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 79 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 85 + components: + - pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 86 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform +- proto: TableStone + entities: + - uid: 191 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,10.5 + parent: 1 + type: Transform + - uid: 201 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,10.5 + parent: 1 + type: Transform +- proto: TableWoodReinforced + entities: + - uid: 318 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 319 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform +- proto: ToiletEmpty + entities: + - uid: 58 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform +- proto: ToolboxElectricalTurretFilled + entities: + - uid: 334 + components: + - pos: 1.254399,8.996422 + parent: 1 + type: Transform +- proto: ToolboxMechanicalFilled + entities: + - uid: 335 + components: + - pos: 1.5877323,8.548194 + parent: 1 + type: Transform +- proto: ToySpawner + entities: + - uid: 227 + components: + - pos: 9.5,6.5 + parent: 1 + type: Transform +- proto: TrashBananaPeel + entities: + - uid: 154 + components: + - pos: -1.5902975,4.4484444 + parent: 1 + type: Transform + - uid: 155 + components: + - pos: -2.4548807,5.9807587 + parent: 1 + type: Transform + - uid: 156 + components: + - pos: -4.663214,5.1781178 + parent: 1 + type: Transform +- proto: VendingMachineChemicals + entities: + - uid: 166 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform +- proto: WallMining + entities: + - uid: 6 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 7 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 9 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 10 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 12 + components: + - pos: 6.5,7.5 + parent: 1 + type: Transform + - uid: 13 + components: + - pos: 7.5,7.5 + parent: 1 + type: Transform + - uid: 14 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 16 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 17 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 18 + components: + - pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 20 + components: + - pos: 7.5,0.5 + parent: 1 + type: Transform + - uid: 21 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 24 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 34 + components: + - pos: 0.5,10.5 + parent: 1 + type: Transform + - uid: 36 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 37 + components: + - pos: 3.5,10.5 + parent: 1 + type: Transform + - uid: 38 + components: + - pos: 3.5,9.5 + parent: 1 + type: Transform + - uid: 39 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 40 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 41 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 42 + components: + - pos: 10.5,3.5 + parent: 1 + type: Transform + - uid: 43 + components: + - pos: 11.5,3.5 + parent: 1 + type: Transform + - uid: 44 + components: + - pos: 11.5,2.5 + parent: 1 + type: Transform + - uid: 45 + components: + - pos: 11.5,1.5 + parent: 1 + type: Transform + - uid: 46 + components: + - pos: 11.5,0.5 + parent: 1 + type: Transform + - uid: 47 + components: + - pos: 11.5,-0.5 + parent: 1 + type: Transform + - uid: 48 + components: + - pos: 10.5,-0.5 + parent: 1 + type: Transform + - uid: 49 + components: + - pos: 9.5,-0.5 + parent: 1 + type: Transform + - uid: 50 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 51 + components: + - pos: 10.5,4.5 + parent: 1 + type: Transform + - uid: 52 + components: + - pos: 10.5,5.5 + parent: 1 + type: Transform + - uid: 53 + components: + - pos: 10.5,6.5 + parent: 1 + type: Transform + - uid: 54 + components: + - pos: 10.5,7.5 + parent: 1 + type: Transform + - uid: 55 + components: + - pos: 9.5,7.5 + parent: 1 + type: Transform + - uid: 56 + components: + - pos: 8.5,7.5 + parent: 1 + type: Transform + - uid: 93 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 97 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 98 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 99 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 100 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 136 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 137 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 138 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 139 + components: + - pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 140 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 141 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 142 + components: + - pos: -5.5,5.5 + parent: 1 + type: Transform + - uid: 143 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 144 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 145 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 146 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 147 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 148 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 206 + components: + - pos: -0.5,10.5 + parent: 1 + type: Transform + - uid: 207 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 208 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 265 + components: + - pos: 8.5,10.5 + parent: 1 + type: Transform + - uid: 266 + components: + - pos: 9.5,8.5 + parent: 1 + type: Transform + - uid: 267 + components: + - pos: 9.5,9.5 + parent: 1 + type: Transform + - uid: 268 + components: + - pos: 9.5,10.5 + parent: 1 + type: Transform + - uid: 269 + components: + - pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 270 + components: + - pos: 7.5,10.5 + parent: 1 + type: Transform + - uid: 271 + components: + - pos: 7.5,11.5 + parent: 1 + type: Transform + - uid: 272 + components: + - pos: 6.5,11.5 + parent: 1 + type: Transform + - uid: 273 + components: + - pos: 4.5,11.5 + parent: 1 + type: Transform + - uid: 302 + components: + - pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 306 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 307 + components: + - pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 308 + components: + - pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 309 + components: + - pos: -4.5,-0.5 + parent: 1 + type: Transform + - uid: 310 + components: + - pos: -4.5,-1.5 + parent: 1 + type: Transform +- proto: WallPlastitanium + entities: + - uid: 8 + components: + - pos: 7.5,-2.5 + parent: 1 + type: Transform + - uid: 11 + components: + - pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 15 + components: + - pos: 7.5,-1.5 + parent: 1 + type: Transform + - uid: 25 + components: + - pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 26 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 27 + components: + - pos: 1.5,-6.5 + parent: 1 + type: Transform + - uid: 28 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 29 + components: + - pos: 1.5,-4.5 + parent: 1 + type: Transform + - uid: 31 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 35 + components: + - pos: 3.5,13.5 + parent: 1 + type: Transform + - uid: 61 + components: + - pos: 7.5,-4.5 + parent: 1 + type: Transform + - uid: 62 + components: + - pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 63 + components: + - pos: 7.5,-6.5 + parent: 1 + type: Transform + - uid: 64 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 65 + components: + - pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 66 + components: + - pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 67 + components: + - pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 68 + components: + - pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 274 + components: + - pos: 3.5,11.5 + parent: 1 + type: Transform + - uid: 275 + components: + - pos: 3.5,15.5 + parent: 1 + type: Transform + - uid: 279 + components: + - pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 444 + components: + - pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 445 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 446 + components: + - pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 447 + components: + - pos: -1.5,14.5 + parent: 1 + type: Transform + - uid: 449 + components: + - pos: 3.5,12.5 + parent: 1 + type: Transform + - uid: 455 + components: + - pos: -1.5,15.5 + parent: 1 + type: Transform + - uid: 458 + components: + - pos: -1.5,16.5 + parent: 1 + type: Transform + - uid: 460 + components: + - pos: 0.5,16.5 + parent: 1 + type: Transform + - uid: 461 + components: + - pos: -0.5,16.5 + parent: 1 + type: Transform + - uid: 463 + components: + - pos: 3.5,16.5 + parent: 1 + type: Transform + - uid: 466 + components: + - pos: 2.5,16.5 + parent: 1 + type: Transform + - uid: 469 + components: + - pos: 1.5,16.5 + parent: 1 + type: Transform + - uid: 496 + components: + - pos: 3.5,14.5 + parent: 1 + type: Transform +- proto: WatcherAISpawner + entities: + - uid: 336 + components: + - pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 337 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform +- proto: WaterCooler + entities: + - uid: 361 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform +- proto: Windoor + entities: + - uid: 362 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + type: Transform +- proto: WindoorSecureScienceLocked + entities: + - uid: 363 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + type: Transform +- proto: WoodenSupportBeam + entities: + - uid: 264 + components: + - pos: 10.5,9.5 + parent: 1 + type: Transform + - uid: 298 + components: + - pos: -6.5,3.5 + parent: 1 + type: Transform + - uid: 299 + components: + - pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 304 + components: + - pos: 7.5,12.5 + parent: 1 + type: Transform + - uid: 305 + components: + - pos: 12.5,3.5 + parent: 1 + type: Transform + - uid: 777 + components: + - pos: -1.5,-11.5 + parent: 1 + type: Transform + - uid: 781 + components: + - pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 922 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 923 + components: + - pos: -2.5,11.5 + parent: 1 + type: Transform + - uid: 924 + components: + - pos: -2.5,16.5 + parent: 1 + type: Transform + - uid: 925 + components: + - pos: 3.5,17.5 + parent: 1 + type: Transform +- proto: WoodenSupportWall + entities: + - uid: 780 + components: + - pos: -1.5,-8.5 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-atlas-atmos.yml b/Resources/Maps/Salvage/DeltaV/DV-atlas-atmos.yml new file mode 100644 index 0000000000..374019fa0c --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-atlas-atmos.yml @@ -0,0 +1,4080 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 27: FloorDark + 72: FloorReinforced + 84: FloorSteel + 96: FloorTechMaint + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 612 + components: + - type: MetaData + - pos: 0.5208333,0.28630954 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAABGwAAAAACVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABVAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABVAAAAAACAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAADVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAC + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: cQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAABVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAAGwAAAAACGwAAAAABGwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAADcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAADcQAAAAAAGwAAAAACGwAAAAAAGwAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAACcQAAAAAAGwAAAAAAGwAAAAADGwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAACcQAAAAAAGwAAAAAAGwAAAAADGwAAAAADAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAABcQAAAAAAGwAAAAACGwAAAAADGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAGwAAAAACGwAAAAACGwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Bot + decals: + 18: -5,2 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 19: -5,1 + 20: -4,2 + 21: -5,3 + 22: -6,2 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: BotLeft + decals: + 23: -4,3 + 24: -6,1 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: BotRight + decals: + 25: -6,3 + 26: -4,1 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Box + decals: + 0: -1,-4 + 1: -1,-6 + 2: 0,-4 + 3: 0,-3 + 4: 0,-5 + 5: -1,-5 + 6: 0,-6 + 7: 0,-7 + 8: 1,-7 + 9: 2,-7 + 10: 2,-6 + 11: 1,-6 + 12: 1,-5 + 13: 2,-5 + 14: 2,-4 + 15: 1,-4 + 16: 1,-3 + 17: 2,-3 + - node: + color: '#EFB34196' + id: CheckerNWSE + decals: + 60: -2,3 + 61: -1,3 + 62: -1,2 + 63: -2,2 + 64: -2,1 + 65: -1,1 + 66: 4,-1 + 67: 5,-1 + 68: 6,-1 + 69: 6,-2 + 70: 6,-3 + 71: 6,-4 + 72: 6,-5 + 73: 6,-6 + 74: 6,-7 + 75: 6,-8 + 76: 6,-9 + 77: 5,-9 + 78: 4,-9 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 133: -2,3 + 134: -1,3 + 135: -1,2 + 136: -1,1 + 137: 1,1 + 138: 1,2 + 139: 2,3 + 140: 2,3 + 141: 5,2 + 142: 5,1 + 143: 5,-2 + 144: 5,-3 + 145: 6,-1 + 146: 6,-2 + 147: 6,-3 + 148: 6,-5 + 149: 6,-7 + 150: 4,-7 + 151: 5,-8 + 152: 5,-9 + 153: 4,-9 + 154: 2,-9 + 155: 0,-9 + 156: -2,-9 + 157: -4,-9 + 158: 0,-7 + 159: 1,-7 + 160: 2,-6 + 161: 2,-4 + 162: 1,-3 + 163: 1,-2 + 164: 1,-1 + 165: -1,-1 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 93: 1,2 + 94: 1,3 + 95: 2,3 + 96: 2,2 + 97: 2,1 + 98: 3,2 + 99: 5,1 + 113: -5,-9 + 114: 6,-5 + 115: 6,-4 + 116: 6,-3 + 117: 6,-2 + 118: 6,-6 + 119: 6,-8 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 103: 1,-1 + 104: 0,-1 + 105: 0,-1 + 106: 1,-1 + 107: -1,-1 + 108: -1,-1 + 109: 2,-8 + 110: 2,-8 + 120: 5,-9 + 121: 5,-8 + 122: 5,-7 + 123: 5,-6 + 124: 4,-6 + 125: 4,-6 + 126: 4,-5 + 127: 4,-4 + 128: 4,-3 + 129: 5,-2 + 130: 4,-1 + 131: 5,3 + 132: 4,3 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 100: -2,2 + 101: -1,2 + 102: 2,-1 + 111: 2,-9 + 112: 1,-9 + - node: + color: '#EFB34196' + id: FullTileOverlayGreyscale + decals: + 79: 4,-8 + 80: 5,-8 + 81: 5,-7 + 82: 4,-7 + 83: 4,-6 + 84: 5,-6 + 85: 5,-5 + 86: 4,-5 + 87: 4,-4 + 88: 5,-4 + 89: 5,-3 + 90: 4,-3 + 91: 5,-2 + 92: 4,-2 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale + decals: + 55: 1,3 + 56: 2,3 + 57: 3,3 + 58: 4,3 + 59: 5,3 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + decals: + 39: -6,-9 + 40: -5,-9 + 41: -4,-9 + 42: -3,-9 + 43: -2,-9 + 44: -1,-9 + 45: 0,-9 + 46: 1,-9 + 50: 1,1 + 51: 2,1 + 52: 3,1 + 53: 4,1 + 54: 5,1 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale90 + decals: + 47: 2,-8 + 48: 2,-2 + 49: 2,-1 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 38: 2,-9 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 28: -3,-3 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 27: -3,-7 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 29: -3,-6 + 30: -3,-5 + 31: -3,-4 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 35: -6,-7 + 36: -5,-7 + 37: -4,-7 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 32: -6,-3 + 33: -5,-3 + 34: -4,-3 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 65535 + -1,0: + 1: 65535 + 0,0: + 1: 65535 + 1,0: + 1: 30719 + -4,-2: + 1: 52360 + -4,-1: + 1: 34956 + -4,-3: + 1: 32768 + -3,-3: + 1: 65024 + -3,-2: + 1: 62463 + 2: 3072 + -3,-1: + 1: 65523 + 3: 12 + -2,-3: + 1: 16254 + 0: 49152 + -2,-2: + 1: 12851 + 2: 256 + 0: 52428 + -2,-1: + 3: 1 + 1: 13106 + 0: 52428 + -1,-3: + 1: 3940 + 0: 61440 + -1,-2: + 0: 65535 + -3,0: + 1: 61183 + -3,1: + 1: 4 + -2,0: + 1: 65535 + -2,1: + 1: 206 + -1,1: + 1: 319 + 0,1: + 1: 3327 + 1,1: + 1: 23 + 2,0: + 1: 1 + 0,-3: + 1: 36608 + 0: 28672 + 0,-2: + 0: 30583 + 1: 34952 + 0,-1: + 0: 30583 + 1: 34952 + 1,-3: + 1: 65392 + 1,-2: + 1: 65535 + 1,-1: + 1: 63359 + 2,-3: + 1: 12544 + 2,-2: + 1: 17 + 2,-1: + 1: 17 + uniqueMixes: + - volume: 2500 + temperature: 5000 + moles: + - 6666.982 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 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 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - type: SpreaderGrid +- proto: AirAlarm + entities: + - uid: 497 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-2.5 + parent: 612 + type: Transform +- proto: AirlockChiefEngineerGlassLocked + entities: + - uid: 16 + components: + - pos: 0.5,2.5 + parent: 612 + type: Transform +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 42 + components: + - pos: 5.5,0.5 + parent: 612 + type: Transform + - uid: 117 + components: + - pos: 5.5,-9.5 + parent: 612 + type: Transform + - uid: 128 + components: + - pos: 7.5,-4.5 + parent: 612 + type: Transform +- proto: AirlockEngineeringLocked + entities: + - uid: 41 + components: + - pos: 2.5,0.5 + parent: 612 + type: Transform + - uid: 102 + components: + - pos: 2.5,-9.5 + parent: 612 + type: Transform +- proto: AirlockExternalGlassLocked + entities: + - uid: 199 + components: + - pos: -10.5,-0.5 + parent: 612 + type: Transform + - uid: 200 + components: + - pos: -10.5,-8.5 + parent: 612 + type: Transform +- proto: AirlockExternalLocked + entities: + - uid: 198 + components: + - pos: -10.5,1.5 + parent: 612 + type: Transform +- proto: AirlockMaintAtmoLocked + entities: + - uid: 43 + components: + - pos: -6.5,-1.5 + parent: 612 + type: Transform + - uid: 44 + components: + - pos: -6.5,-7.5 + parent: 612 + type: Transform +- proto: APCBasic + entities: + - uid: 320 + components: + - pos: 4.5,0.5 + parent: 612 + type: Transform + - uid: 321 + components: + - pos: -5.5,0.5 + parent: 612 + type: Transform +- proto: AtmosFixInstantPlasmaFireMarker + entities: + - uid: 517 + components: + - pos: -5.5,-0.5 + parent: 612 + type: Transform + - uid: 518 + components: + - pos: -5.5,-1.5 + parent: 612 + type: Transform + - uid: 519 + components: + - pos: -5.5,-2.5 + parent: 612 + type: Transform + - uid: 520 + components: + - pos: -5.5,-3.5 + parent: 612 + type: Transform + - uid: 521 + components: + - pos: -5.5,-4.5 + parent: 612 + type: Transform + - uid: 522 + components: + - pos: -5.5,-5.5 + parent: 612 + type: Transform + - uid: 523 + components: + - pos: -5.5,-6.5 + parent: 612 + type: Transform + - uid: 524 + components: + - pos: -5.5,-7.5 + parent: 612 + type: Transform + - uid: 525 + components: + - pos: -5.5,-8.5 + parent: 612 + type: Transform + - uid: 526 + components: + - pos: -4.5,-0.5 + parent: 612 + type: Transform + - uid: 527 + components: + - pos: -4.5,-1.5 + parent: 612 + type: Transform + - uid: 528 + components: + - pos: -4.5,-2.5 + parent: 612 + type: Transform + - uid: 529 + components: + - pos: -4.5,-3.5 + parent: 612 + type: Transform + - uid: 530 + components: + - pos: -4.5,-4.5 + parent: 612 + type: Transform + - uid: 531 + components: + - pos: -4.5,-5.5 + parent: 612 + type: Transform + - uid: 532 + components: + - pos: -4.5,-6.5 + parent: 612 + type: Transform + - uid: 533 + components: + - pos: -4.5,-7.5 + parent: 612 + type: Transform + - uid: 534 + components: + - pos: -4.5,-8.5 + parent: 612 + type: Transform + - uid: 535 + components: + - pos: -3.5,-0.5 + parent: 612 + type: Transform + - uid: 536 + components: + - pos: -3.5,-1.5 + parent: 612 + type: Transform + - uid: 537 + components: + - pos: -3.5,-2.5 + parent: 612 + type: Transform + - uid: 538 + components: + - pos: -3.5,-3.5 + parent: 612 + type: Transform + - uid: 539 + components: + - pos: -3.5,-4.5 + parent: 612 + type: Transform + - uid: 540 + components: + - pos: -3.5,-5.5 + parent: 612 + type: Transform + - uid: 541 + components: + - pos: -3.5,-6.5 + parent: 612 + type: Transform + - uid: 542 + components: + - pos: -3.5,-7.5 + parent: 612 + type: Transform + - uid: 543 + components: + - pos: -3.5,-8.5 + parent: 612 + type: Transform + - uid: 544 + components: + - pos: -2.5,-0.5 + parent: 612 + type: Transform + - uid: 545 + components: + - pos: -2.5,-1.5 + parent: 612 + type: Transform + - uid: 546 + components: + - pos: -2.5,-2.5 + parent: 612 + type: Transform + - uid: 547 + components: + - pos: -2.5,-3.5 + parent: 612 + type: Transform + - uid: 548 + components: + - pos: -2.5,-4.5 + parent: 612 + type: Transform + - uid: 549 + components: + - pos: -2.5,-5.5 + parent: 612 + type: Transform + - uid: 550 + components: + - pos: -2.5,-6.5 + parent: 612 + type: Transform + - uid: 551 + components: + - pos: -2.5,-7.5 + parent: 612 + type: Transform + - uid: 552 + components: + - pos: -2.5,-8.5 + parent: 612 + type: Transform + - uid: 553 + components: + - pos: -1.5,-0.5 + parent: 612 + type: Transform + - uid: 554 + components: + - pos: -1.5,-1.5 + parent: 612 + type: Transform + - uid: 555 + components: + - pos: -1.5,-2.5 + parent: 612 + type: Transform + - uid: 556 + components: + - pos: -1.5,-3.5 + parent: 612 + type: Transform + - uid: 557 + components: + - pos: -1.5,-4.5 + parent: 612 + type: Transform + - uid: 558 + components: + - pos: -1.5,-5.5 + parent: 612 + type: Transform + - uid: 559 + components: + - pos: -1.5,-6.5 + parent: 612 + type: Transform + - uid: 560 + components: + - pos: -1.5,-7.5 + parent: 612 + type: Transform + - uid: 561 + components: + - pos: -1.5,-8.5 + parent: 612 + type: Transform + - uid: 562 + components: + - pos: -0.5,-0.5 + parent: 612 + type: Transform + - uid: 563 + components: + - pos: -0.5,-1.5 + parent: 612 + type: Transform + - uid: 564 + components: + - pos: -0.5,-2.5 + parent: 612 + type: Transform + - uid: 565 + components: + - pos: -0.5,-3.5 + parent: 612 + type: Transform + - uid: 566 + components: + - pos: -0.5,-4.5 + parent: 612 + type: Transform + - uid: 567 + components: + - pos: -0.5,-5.5 + parent: 612 + type: Transform + - uid: 568 + components: + - pos: -0.5,-6.5 + parent: 612 + type: Transform + - uid: 569 + components: + - pos: -0.5,-7.5 + parent: 612 + type: Transform + - uid: 570 + components: + - pos: -0.5,-8.5 + parent: 612 + type: Transform + - uid: 571 + components: + - pos: 0.5,-0.5 + parent: 612 + type: Transform + - uid: 572 + components: + - pos: 0.5,-1.5 + parent: 612 + type: Transform + - uid: 573 + components: + - pos: 0.5,-2.5 + parent: 612 + type: Transform + - uid: 574 + components: + - pos: 0.5,-3.5 + parent: 612 + type: Transform + - uid: 575 + components: + - pos: 0.5,-4.5 + parent: 612 + type: Transform + - uid: 576 + components: + - pos: 0.5,-5.5 + parent: 612 + type: Transform + - uid: 577 + components: + - pos: 0.5,-6.5 + parent: 612 + type: Transform + - uid: 578 + components: + - pos: 0.5,-7.5 + parent: 612 + type: Transform + - uid: 579 + components: + - pos: 0.5,-8.5 + parent: 612 + type: Transform + - uid: 580 + components: + - pos: 1.5,-0.5 + parent: 612 + type: Transform + - uid: 581 + components: + - pos: 1.5,-1.5 + parent: 612 + type: Transform + - uid: 582 + components: + - pos: 1.5,-2.5 + parent: 612 + type: Transform + - uid: 583 + components: + - pos: 1.5,-3.5 + parent: 612 + type: Transform + - uid: 584 + components: + - pos: 1.5,-4.5 + parent: 612 + type: Transform + - uid: 585 + components: + - pos: 1.5,-5.5 + parent: 612 + type: Transform + - uid: 586 + components: + - pos: 1.5,-6.5 + parent: 612 + type: Transform + - uid: 587 + components: + - pos: 1.5,-7.5 + parent: 612 + type: Transform + - uid: 588 + components: + - pos: 1.5,-8.5 + parent: 612 + type: Transform + - uid: 589 + components: + - pos: 2.5,-0.5 + parent: 612 + type: Transform + - uid: 590 + components: + - pos: 2.5,-1.5 + parent: 612 + type: Transform + - uid: 591 + components: + - pos: 2.5,-2.5 + parent: 612 + type: Transform + - uid: 592 + components: + - pos: 2.5,-3.5 + parent: 612 + type: Transform + - uid: 593 + components: + - pos: 2.5,-4.5 + parent: 612 + type: Transform + - uid: 594 + components: + - pos: 2.5,-5.5 + parent: 612 + type: Transform + - uid: 595 + components: + - pos: 2.5,-6.5 + parent: 612 + type: Transform + - uid: 596 + components: + - pos: 2.5,-7.5 + parent: 612 + type: Transform + - uid: 597 + components: + - pos: 2.5,-8.5 + parent: 612 + type: Transform +- proto: AtmosFixNitrogenMarker + entities: + - uid: 229 + components: + - pos: -8.5,-3.5 + parent: 612 + type: Transform + - uid: 230 + components: + - pos: -9.5,-3.5 + parent: 612 + type: Transform + - uid: 233 + components: + - pos: -7.5,-3.5 + parent: 612 + type: Transform +- proto: AtmosFixOxygenMarker + entities: + - uid: 231 + components: + - pos: -8.5,-5.5 + parent: 612 + type: Transform + - uid: 232 + components: + - pos: -9.5,-5.5 + parent: 612 + type: Transform + - uid: 234 + components: + - pos: -7.5,-5.5 + parent: 612 + type: Transform +- proto: BlastDoor + entities: + - uid: 201 + components: + - pos: -12.5,-5.5 + parent: 612 + type: Transform + - links: + - 496 + type: DeviceLinkSink + - uid: 202 + components: + - pos: -12.5,-4.5 + parent: 612 + type: Transform + - links: + - 496 + type: DeviceLinkSink + - uid: 203 + components: + - pos: -12.5,-3.5 + parent: 612 + type: Transform + - links: + - 496 + type: DeviceLinkSink + - uid: 204 + components: + - pos: -10.5,-3.5 + parent: 612 + type: Transform + - links: + - 496 + type: DeviceLinkSink + - uid: 205 + components: + - pos: -10.5,-5.5 + parent: 612 + type: Transform + - links: + - 496 + type: DeviceLinkSink +- proto: BlastDoorOpen + entities: + - uid: 470 + components: + - pos: -11.5,-2.5 + parent: 612 + type: Transform + - links: + - 496 + type: DeviceLinkSink + - uid: 471 + components: + - pos: -11.5,-6.5 + parent: 612 + type: Transform + - links: + - 496 + type: DeviceLinkSink +- proto: CableApcExtension + entities: + - uid: 381 + components: + - pos: -5.5,3.5 + parent: 612 + type: Transform + - uid: 382 + components: + - pos: -5.5,2.5 + parent: 612 + type: Transform + - uid: 383 + components: + - pos: -4.5,2.5 + parent: 612 + type: Transform + - uid: 384 + components: + - pos: -3.5,2.5 + parent: 612 + type: Transform + - uid: 385 + components: + - pos: -2.5,2.5 + parent: 612 + type: Transform + - uid: 386 + components: + - pos: -1.5,2.5 + parent: 612 + type: Transform + - uid: 387 + components: + - pos: -0.5,2.5 + parent: 612 + type: Transform + - uid: 388 + components: + - pos: 0.5,2.5 + parent: 612 + type: Transform + - uid: 389 + components: + - pos: 1.5,2.5 + parent: 612 + type: Transform + - uid: 390 + components: + - pos: 2.5,2.5 + parent: 612 + type: Transform + - uid: 391 + components: + - pos: 3.5,2.5 + parent: 612 + type: Transform + - uid: 392 + components: + - pos: 4.5,2.5 + parent: 612 + type: Transform + - uid: 393 + components: + - pos: 4.5,1.5 + parent: 612 + type: Transform + - uid: 394 + components: + - pos: 4.5,0.5 + parent: 612 + type: Transform + - uid: 395 + components: + - pos: 4.5,-0.5 + parent: 612 + type: Transform + - uid: 396 + components: + - pos: 5.5,-0.5 + parent: 612 + type: Transform + - uid: 397 + components: + - pos: 5.5,-1.5 + parent: 612 + type: Transform + - uid: 398 + components: + - pos: 5.5,-2.5 + parent: 612 + type: Transform + - uid: 399 + components: + - pos: 5.5,-3.5 + parent: 612 + type: Transform + - uid: 400 + components: + - pos: 5.5,-4.5 + parent: 612 + type: Transform + - uid: 401 + components: + - pos: 5.5,-5.5 + parent: 612 + type: Transform + - uid: 402 + components: + - pos: 5.5,-6.5 + parent: 612 + type: Transform + - uid: 403 + components: + - pos: 5.5,-7.5 + parent: 612 + type: Transform + - uid: 404 + components: + - pos: 5.5,-8.5 + parent: 612 + type: Transform + - uid: 405 + components: + - pos: 5.5,-9.5 + parent: 612 + type: Transform + - uid: 406 + components: + - pos: 4.5,-7.5 + parent: 612 + type: Transform + - uid: 407 + components: + - pos: 6.5,-7.5 + parent: 612 + type: Transform + - uid: 408 + components: + - pos: 6.5,-4.5 + parent: 612 + type: Transform + - uid: 409 + components: + - pos: 7.5,-4.5 + parent: 612 + type: Transform + - uid: 410 + components: + - pos: 4.5,-2.5 + parent: 612 + type: Transform + - uid: 411 + components: + - pos: 6.5,-2.5 + parent: 612 + type: Transform + - uid: 412 + components: + - pos: -5.5,0.5 + parent: 612 + type: Transform + - uid: 413 + components: + - pos: -5.5,-0.5 + parent: 612 + type: Transform + - uid: 414 + components: + - pos: -5.5,-1.5 + parent: 612 + type: Transform + - uid: 415 + components: + - pos: -4.5,-1.5 + parent: 612 + type: Transform + - uid: 416 + components: + - pos: -3.5,-1.5 + parent: 612 + type: Transform + - uid: 417 + components: + - pos: -2.5,-1.5 + parent: 612 + type: Transform + - uid: 418 + components: + - pos: -1.5,-1.5 + parent: 612 + type: Transform + - uid: 419 + components: + - pos: -0.5,-1.5 + parent: 612 + type: Transform + - uid: 420 + components: + - pos: 0.5,-1.5 + parent: 612 + type: Transform + - uid: 421 + components: + - pos: 1.5,-1.5 + parent: 612 + type: Transform + - uid: 422 + components: + - pos: -5.5,-2.5 + parent: 612 + type: Transform + - uid: 423 + components: + - pos: -5.5,-3.5 + parent: 612 + type: Transform + - uid: 424 + components: + - pos: -4.5,-3.5 + parent: 612 + type: Transform + - uid: 425 + components: + - pos: -3.5,-3.5 + parent: 612 + type: Transform + - uid: 426 + components: + - pos: -2.5,-3.5 + parent: 612 + type: Transform + - uid: 427 + components: + - pos: -1.5,-3.5 + parent: 612 + type: Transform + - uid: 428 + components: + - pos: -0.5,-3.5 + parent: 612 + type: Transform + - uid: 429 + components: + - pos: 0.5,-3.5 + parent: 612 + type: Transform + - uid: 430 + components: + - pos: 1.5,-3.5 + parent: 612 + type: Transform + - uid: 431 + components: + - pos: -5.5,-4.5 + parent: 612 + type: Transform + - uid: 432 + components: + - pos: -5.5,-5.5 + parent: 612 + type: Transform + - uid: 433 + components: + - pos: -5.5,-6.5 + parent: 612 + type: Transform + - uid: 434 + components: + - pos: -5.5,-7.5 + parent: 612 + type: Transform + - uid: 435 + components: + - pos: -4.5,-7.5 + parent: 612 + type: Transform + - uid: 436 + components: + - pos: -3.5,-7.5 + parent: 612 + type: Transform + - uid: 437 + components: + - pos: -2.5,-7.5 + parent: 612 + type: Transform + - uid: 438 + components: + - pos: -1.5,-7.5 + parent: 612 + type: Transform + - uid: 439 + components: + - pos: -0.5,-7.5 + parent: 612 + type: Transform + - uid: 440 + components: + - pos: 0.5,-7.5 + parent: 612 + type: Transform + - uid: 441 + components: + - pos: 1.5,-7.5 + parent: 612 + type: Transform + - uid: 442 + components: + - pos: 2.5,-7.5 + parent: 612 + type: Transform + - uid: 443 + components: + - pos: 2.5,-8.5 + parent: 612 + type: Transform + - uid: 444 + components: + - pos: -6.5,-7.5 + parent: 612 + type: Transform + - uid: 445 + components: + - pos: -7.5,-7.5 + parent: 612 + type: Transform + - uid: 446 + components: + - pos: -8.5,-7.5 + parent: 612 + type: Transform + - uid: 447 + components: + - pos: -9.5,-7.5 + parent: 612 + type: Transform + - uid: 448 + components: + - pos: -10.5,-7.5 + parent: 612 + type: Transform + - uid: 449 + components: + - pos: -11.5,-7.5 + parent: 612 + type: Transform + - uid: 450 + components: + - pos: -7.5,-8.5 + parent: 612 + type: Transform + - uid: 451 + components: + - pos: -7.5,-9.5 + parent: 612 + type: Transform + - uid: 452 + components: + - pos: -11.5,-6.5 + parent: 612 + type: Transform + - uid: 453 + components: + - pos: -11.5,-5.5 + parent: 612 + type: Transform + - uid: 454 + components: + - pos: -11.5,-4.5 + parent: 612 + type: Transform + - uid: 455 + components: + - pos: -11.5,-3.5 + parent: 612 + type: Transform + - uid: 456 + components: + - pos: -11.5,-2.5 + parent: 612 + type: Transform + - uid: 457 + components: + - pos: -11.5,-1.5 + parent: 612 + type: Transform + - uid: 458 + components: + - pos: -10.5,-1.5 + parent: 612 + type: Transform + - uid: 459 + components: + - pos: -9.5,-1.5 + parent: 612 + type: Transform + - uid: 460 + components: + - pos: -8.5,-1.5 + parent: 612 + type: Transform + - uid: 461 + components: + - pos: -7.5,-1.5 + parent: 612 + type: Transform + - uid: 462 + components: + - pos: -6.5,-1.5 + parent: 612 + type: Transform + - uid: 463 + components: + - pos: -8.5,-0.5 + parent: 612 + type: Transform + - uid: 464 + components: + - pos: -8.5,0.5 + parent: 612 + type: Transform + - uid: 465 + components: + - pos: -8.5,1.5 + parent: 612 + type: Transform + - uid: 466 + components: + - pos: -8.5,2.5 + parent: 612 + type: Transform + - uid: 467 + components: + - pos: -7.5,2.5 + parent: 612 + type: Transform + - uid: 502 + components: + - pos: -7.5,3.5 + parent: 612 + type: Transform +- proto: CableApcStack + entities: + - uid: 164 + components: + - pos: 4.5852456,-7.0833073 + parent: 612 + type: Transform +- proto: CableHV + entities: + - uid: 352 + components: + - pos: 0.5,-1.5 + parent: 612 + type: Transform + - uid: 353 + components: + - pos: 0.5,-2.5 + parent: 612 + type: Transform + - uid: 354 + components: + - pos: 0.5,-3.5 + parent: 612 + type: Transform + - uid: 355 + components: + - pos: 0.5,-4.5 + parent: 612 + type: Transform + - uid: 356 + components: + - pos: 0.5,-5.5 + parent: 612 + type: Transform + - uid: 357 + components: + - pos: 0.5,-6.5 + parent: 612 + type: Transform + - uid: 358 + components: + - pos: 0.5,-7.5 + parent: 612 + type: Transform + - uid: 359 + components: + - pos: 0.5,-8.5 + parent: 612 + type: Transform + - uid: 360 + components: + - pos: 1.5,-8.5 + parent: 612 + type: Transform + - uid: 361 + components: + - pos: 2.5,-8.5 + parent: 612 + type: Transform + - uid: 362 + components: + - pos: 2.5,-9.5 + parent: 612 + type: Transform + - uid: 363 + components: + - pos: 5.5,-9.5 + parent: 612 + type: Transform + - uid: 364 + components: + - pos: 5.5,-8.5 + parent: 612 + type: Transform + - uid: 365 + components: + - pos: 5.5,-7.5 + parent: 612 + type: Transform + - uid: 366 + components: + - pos: 5.5,-6.5 + parent: 612 + type: Transform + - uid: 367 + components: + - pos: 5.5,-5.5 + parent: 612 + type: Transform + - uid: 368 + components: + - pos: 5.5,-4.5 + parent: 612 + type: Transform + - uid: 369 + components: + - pos: 5.5,-3.5 + parent: 612 + type: Transform + - uid: 370 + components: + - pos: 5.5,-2.5 + parent: 612 + type: Transform + - uid: 371 + components: + - pos: 5.5,-1.5 + parent: 612 + type: Transform + - uid: 372 + components: + - pos: 5.5,-0.5 + parent: 612 + type: Transform + - uid: 373 + components: + - pos: 5.5,0.5 + parent: 612 + type: Transform + - uid: 374 + components: + - pos: 5.5,1.5 + parent: 612 + type: Transform + - uid: 375 + components: + - pos: 5.5,2.5 + parent: 612 + type: Transform + - uid: 376 + components: + - pos: 5.5,3.5 + parent: 612 + type: Transform + - uid: 377 + components: + - pos: 5.5,4.5 + parent: 612 + type: Transform + - uid: 378 + components: + - pos: 4.5,-4.5 + parent: 612 + type: Transform + - uid: 379 + components: + - pos: 6.5,-4.5 + parent: 612 + type: Transform + - uid: 380 + components: + - pos: 7.5,-4.5 + parent: 612 + type: Transform +- proto: CableHVStack + entities: + - uid: 163 + components: + - pos: 4.3039956,-6.9269485 + parent: 612 + type: Transform +- proto: CableMV + entities: + - uid: 322 + components: + - pos: -5.5,0.5 + parent: 612 + type: Transform + - uid: 323 + components: + - pos: -5.5,-0.5 + parent: 612 + type: Transform + - uid: 324 + components: + - pos: -4.5,-0.5 + parent: 612 + type: Transform + - uid: 325 + components: + - pos: -3.5,-0.5 + parent: 612 + type: Transform + - uid: 326 + components: + - pos: -2.5,-0.5 + parent: 612 + type: Transform + - uid: 327 + components: + - pos: -1.5,-0.5 + parent: 612 + type: Transform + - uid: 328 + components: + - pos: -0.5,-0.5 + parent: 612 + type: Transform + - uid: 329 + components: + - pos: 0.5,-0.5 + parent: 612 + type: Transform + - uid: 330 + components: + - pos: 1.5,-0.5 + parent: 612 + type: Transform + - uid: 331 + components: + - pos: 2.5,-0.5 + parent: 612 + type: Transform + - uid: 332 + components: + - pos: 2.5,0.5 + parent: 612 + type: Transform + - uid: 333 + components: + - pos: 2.5,1.5 + parent: 612 + type: Transform + - uid: 334 + components: + - pos: 3.5,1.5 + parent: 612 + type: Transform + - uid: 335 + components: + - pos: 4.5,1.5 + parent: 612 + type: Transform + - uid: 336 + components: + - pos: 5.5,1.5 + parent: 612 + type: Transform + - uid: 337 + components: + - pos: 5.5,0.5 + parent: 612 + type: Transform + - uid: 338 + components: + - pos: 5.5,-0.5 + parent: 612 + type: Transform + - uid: 339 + components: + - pos: 4.5,-0.5 + parent: 612 + type: Transform + - uid: 340 + components: + - pos: 4.5,0.5 + parent: 612 + type: Transform + - uid: 341 + components: + - pos: 5.5,-1.5 + parent: 612 + type: Transform + - uid: 342 + components: + - pos: 5.5,-2.5 + parent: 612 + type: Transform + - uid: 343 + components: + - pos: 5.5,-3.5 + parent: 612 + type: Transform + - uid: 344 + components: + - pos: 5.5,-4.5 + parent: 612 + type: Transform + - uid: 345 + components: + - pos: 6.5,-4.5 + parent: 612 + type: Transform + - uid: 346 + components: + - pos: 7.5,-4.5 + parent: 612 + type: Transform + - uid: 347 + components: + - pos: 3.5,2.5 + parent: 612 + type: Transform + - uid: 348 + components: + - pos: 3.5,3.5 + parent: 612 + type: Transform + - uid: 349 + components: + - pos: 4.5,3.5 + parent: 612 + type: Transform + - uid: 350 + components: + - pos: 5.5,3.5 + parent: 612 + type: Transform + - uid: 351 + components: + - pos: 5.5,4.5 + parent: 612 + type: Transform +- proto: CableMVStack + entities: + - uid: 165 + components: + - pos: 4.3664956,-7.229242 + parent: 612 + type: Transform +- proto: Catwalk + entities: + - uid: 472 + components: + - pos: -11.5,-3.5 + parent: 612 + type: Transform + - uid: 473 + components: + - pos: -11.5,-4.5 + parent: 612 + type: Transform + - uid: 474 + components: + - pos: -11.5,-5.5 + parent: 612 + type: Transform + - uid: 475 + components: + - pos: 0.5,-1.5 + parent: 612 + type: Transform + - uid: 476 + components: + - pos: 0.5,-2.5 + parent: 612 + type: Transform + - uid: 477 + components: + - pos: 0.5,-3.5 + parent: 612 + type: Transform + - uid: 478 + components: + - pos: 0.5,-4.5 + parent: 612 + type: Transform + - uid: 479 + components: + - pos: 0.5,-5.5 + parent: 612 + type: Transform + - uid: 480 + components: + - pos: 0.5,-6.5 + parent: 612 + type: Transform + - uid: 481 + components: + - pos: 0.5,-7.5 + parent: 612 + type: Transform + - uid: 482 + components: + - pos: -0.5,-4.5 + parent: 612 + type: Transform + - uid: 483 + components: + - pos: -1.5,-4.5 + parent: 612 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 130 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 612 + type: Transform + - uid: 146 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 612 + type: Transform + - uid: 484 + components: + - pos: -4.5,-1.5 + parent: 612 + type: Transform + - uid: 485 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 612 + type: Transform +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 491 + components: + - pos: -7.5,0.5 + parent: 612 + type: Transform +- proto: ClosetFireFilled + entities: + - uid: 173 + components: + - pos: -5.5,-0.5 + parent: 612 + type: Transform +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 17 + components: + - pos: -1.5,3.5 + parent: 612 + type: Transform +- proto: ClosetToolFilled + entities: + - uid: 60 + components: + - pos: -8.5,-9.5 + parent: 612 + type: Transform +- proto: ClothingBeltUtilityFilled + entities: + - uid: 145 + components: + - pos: 4.5204754,-2.3702211 + parent: 612 + type: Transform +- proto: ClothingEyesGlassesMeson + entities: + - uid: 155 + components: + - pos: 6.353809,-8.186761 + parent: 612 + type: Transform + - uid: 156 + components: + - pos: 5.1767254,-8.687108 + parent: 612 + type: Transform +- proto: ClothingEyesGlassesThermal + entities: + - uid: 157 + components: + - pos: 5.905892,-8.801771 + parent: 612 + type: Transform +- proto: ClothingUnderSocksCoder + entities: + - uid: 486 + components: + - rot: 3.141592653589793 rad + pos: -4.494397,1.3420193 + parent: 612 + type: Transform +- proto: ComfyChair + entities: + - uid: 35 + components: + - rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 612 + type: Transform +- proto: ComputerBroken + entities: + - uid: 139 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 612 + type: Transform + - uid: 140 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 612 + type: Transform + - uid: 141 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 612 + type: Transform +- proto: CrateEngineeringAMEJar + entities: + - uid: 214 + components: + - pos: -0.5,-0.5 + parent: 612 + type: Transform +- proto: CrateEngineeringElectricalSupplies + entities: + - uid: 182 + components: + - pos: -4.5,-8.5 + parent: 612 + type: Transform +- proto: CrateEngineeringGear + entities: + - uid: 191 + components: + - pos: 0.5,-8.5 + parent: 612 + type: Transform +- proto: CrateEngineeringGenerator + entities: + - uid: 89 + components: + - pos: -4.5,2.5 + parent: 612 + type: Transform +- proto: DisposalBend + entities: + - uid: 606 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 612 + type: Transform +- proto: DisposalPipe + entities: + - uid: 607 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 612 + type: Transform + - uid: 608 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 612 + type: Transform + - uid: 609 + components: + - pos: 4.5,-5.5 + parent: 612 + type: Transform + - uid: 610 + components: + - pos: 4.5,-6.5 + parent: 612 + type: Transform + - uid: 611 + components: + - pos: 4.5,-7.5 + parent: 612 + type: Transform +- proto: DisposalPipeBroken + entities: + - uid: 605 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 612 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 604 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 612 + type: Transform +- proto: DisposalUnit + entities: + - uid: 142 + components: + - pos: 4.5,-8.5 + parent: 612 + type: Transform +- proto: DrinkGlass + entities: + - uid: 39 + components: + - pos: -0.6310378,1.7508905 + parent: 612 + type: Transform +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 38 + components: + - pos: -0.26645428,1.9280965 + parent: 612 + type: Transform +- proto: FireAxeCabinetOpen + entities: + - uid: 216 + components: + - pos: -0.5,0.5 + parent: 612 + type: Transform +- proto: Firelock + entities: + - uid: 206 + components: + - pos: -9.5,-1.5 + parent: 612 + type: Transform + - uid: 207 + components: + - pos: -9.5,-7.5 + parent: 612 + type: Transform +- proto: Floodlight + entities: + - uid: 147 + components: + - rot: -1.5707963267948966 rad + pos: 6.187142,-2.495308 + parent: 612 + type: Transform + - uid: 148 + components: + - rot: 1.5707963267948966 rad + pos: 5.1454754,-1.0776565 + parent: 612 + type: Transform +- proto: FloodlightBroken + entities: + - uid: 149 + components: + - rot: 1.5707963267948966 rad + pos: 5.760059,-0.6294287 + parent: 612 + type: Transform + - uid: 150 + components: + - pos: 5.3017254,-2.4119167 + parent: 612 + type: Transform +- proto: GasAnalyzer + entities: + - uid: 212 + components: + - pos: -2.904473,-0.44135267 + parent: 612 + type: Transform +- proto: GasFilterFlipped + entities: + - uid: 251 + components: + - pos: -3.5,-2.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 260 + components: + - pos: -3.5,-4.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasMinerNitrogen + entities: + - uid: 236 + components: + - pos: -8.5,-3.5 + parent: 612 + type: Transform +- proto: GasMinerOxygen + entities: + - uid: 235 + components: + - pos: -8.5,-5.5 + parent: 612 + type: Transform +- proto: GasMixer + entities: + - uid: 267 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 612 + type: Transform +- proto: GasOutletInjector + entities: + - uid: 225 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-3.5 + parent: 612 + type: Transform + - uid: 226 + components: + - pos: -9.5,-5.5 + parent: 612 + type: Transform +- proto: GasPassiveVent + entities: + - uid: 227 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 612 + type: Transform + - uid: 228 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 612 + type: Transform + - uid: 237 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-4.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 239 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-4.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 240 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 250 + components: + - pos: -3.5,-1.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 252 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 612 + type: Transform + - uid: 261 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-4.5 + parent: 612 + type: Transform + - uid: 268 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 612 + type: Transform + - uid: 281 + components: + - pos: -2.5,-3.5 + parent: 612 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 282 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 612 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 305 + components: + - pos: 5.5,2.5 + parent: 612 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 1 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 238 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-4.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 241 + components: + - pos: -11.5,-3.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 242 + components: + - pos: -11.5,-2.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 243 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 244 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-1.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 245 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 246 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 247 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 248 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 249 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 253 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 612 + type: Transform + - uid: 254 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 612 + type: Transform + - uid: 255 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 612 + type: Transform + - uid: 256 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 612 + type: Transform + - uid: 257 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 612 + type: Transform + - uid: 258 + components: + - pos: -3.5,-3.5 + parent: 612 + type: Transform + - uid: 259 + components: + - pos: -3.5,-5.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 262 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-4.5 + parent: 612 + type: Transform + - uid: 263 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 612 + type: Transform + - uid: 264 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 612 + type: Transform + - uid: 265 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 612 + type: Transform + - uid: 266 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 612 + type: Transform + - uid: 269 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 612 + type: Transform + - uid: 270 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 612 + type: Transform + - uid: 271 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 612 + type: Transform + - uid: 272 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 612 + type: Transform + - uid: 273 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 612 + type: Transform + - uid: 283 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 612 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 284 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 289 + components: + - pos: 1.5,0.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 290 + components: + - pos: 1.5,-0.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 291 + components: + - pos: 1.5,-1.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 292 + components: + - pos: 1.5,-2.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 293 + components: + - pos: 1.5,-3.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 294 + components: + - pos: 1.5,-4.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 295 + components: + - pos: 1.5,-5.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 296 + components: + - pos: -0.5,-3.5 + parent: 612 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 297 + components: + - pos: -0.5,-2.5 + parent: 612 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 298 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 299 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 300 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 301 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 302 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 303 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 307 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 612 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 308 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 612 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 309 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 612 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 310 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 612 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 311 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 612 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 312 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 612 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 313 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 612 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 314 + components: + - pos: 5.5,-3.5 + parent: 612 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 315 + components: + - pos: 5.5,-2.5 + parent: 612 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 316 + components: + - pos: 5.5,-1.5 + parent: 612 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 317 + components: + - pos: 5.5,-0.5 + parent: 612 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 318 + components: + - pos: 5.5,0.5 + parent: 612 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 319 + components: + - pos: 5.5,1.5 + parent: 612 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 276 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 277 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-6.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 280 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 612 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 286 + components: + - pos: -0.5,-6.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 287 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 306 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 612 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 275 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 278 + components: + - pos: -2.5,-5.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPressurePump + entities: + - uid: 274 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 612 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 279 + components: + - pos: -0.5,-1.5 + parent: 612 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 304 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 612 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 285 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 288 + components: + - pos: 1.5,1.5 + parent: 612 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: Grille + entities: + - uid: 10 + components: + - pos: -1.5,0.5 + parent: 612 + type: Transform + - uid: 14 + components: + - pos: 0.5,1.5 + parent: 612 + type: Transform + - uid: 15 + components: + - pos: 0.5,3.5 + parent: 612 + type: Transform + - uid: 90 + components: + - pos: -6.5,-3.5 + parent: 612 + type: Transform + - uid: 91 + components: + - pos: -6.5,-5.5 + parent: 612 + type: Transform + - uid: 103 + components: + - pos: 3.5,-4.5 + parent: 612 + type: Transform + - uid: 104 + components: + - pos: 3.5,-2.5 + parent: 612 + type: Transform + - uid: 105 + components: + - pos: 3.5,-6.5 + parent: 612 + type: Transform + - uid: 125 + components: + - pos: 7.5,-7.5 + parent: 612 + type: Transform +- proto: HighSecCommandLocked + entities: + - uid: 9 + components: + - pos: -2.5,2.5 + parent: 612 + type: Transform + - uid: 80 + components: + - pos: -6.5,2.5 + parent: 612 + type: Transform +- proto: InflatableDoorStack + entities: + - uid: 186 + components: + - pos: -4.3489604,-0.4996856 + parent: 612 + type: Transform +- proto: InflatableWallStack + entities: + - uid: 185 + components: + - pos: -4.4739604,-0.27035934 + parent: 612 + type: Transform +- proto: LockerAtmospherics + entities: + - uid: 18 + components: + - pos: 1.5,4.5 + parent: 612 + type: Transform + - uid: 22 + components: + - pos: 1.5,1.5 + parent: 612 + type: Transform +- proto: LockerEngineer + entities: + - uid: 19 + components: + - pos: 4.5,4.5 + parent: 612 + type: Transform + - uid: 20 + components: + - pos: 2.5,4.5 + parent: 612 + type: Transform +- proto: LockerEngineerFilled + entities: + - uid: 21 + components: + - pos: 3.5,4.5 + parent: 612 + type: Transform +- proto: MachineFrame + entities: + - uid: 36 + components: + - pos: -0.5,3.5 + parent: 612 + type: Transform + - uid: 179 + components: + - pos: -0.5,-8.5 + parent: 612 + type: Transform +- proto: MachineFrameDestroyed + entities: + - uid: 136 + components: + - pos: 4.5,-1.5 + parent: 612 + type: Transform + - uid: 137 + components: + - pos: 4.5,-0.5 + parent: 612 + type: Transform + - uid: 138 + components: + - pos: 6.5,-0.5 + parent: 612 + type: Transform +- proto: MaintenanceFluffSpawner + entities: + - uid: 489 + components: + - pos: -7.5,1.5 + parent: 612 + type: Transform +- proto: MaintenanceToolSpawner + entities: + - uid: 151 + components: + - pos: 4.5,-6.5 + parent: 612 + type: Transform + - uid: 152 + components: + - pos: 4.5,-6.5 + parent: 612 + type: Transform + - uid: 153 + components: + - pos: 6.5,-8.5 + parent: 612 + type: Transform + - uid: 154 + components: + - pos: 6.5,-8.5 + parent: 612 + type: Transform + - uid: 166 + components: + - pos: 5.5,-7.5 + parent: 612 + type: Transform + - uid: 167 + components: + - pos: 5.5,-5.5 + parent: 612 + type: Transform + - uid: 213 + components: + - pos: -2.5,-0.5 + parent: 612 + type: Transform + - uid: 490 + components: + - pos: -7.5,-0.5 + parent: 612 + type: Transform +- proto: Multitool + entities: + - uid: 158 + components: + - pos: 6.749642,-8.009555 + parent: 612 + type: Transform +- proto: NitrogenCanister + entities: + - uid: 193 + components: + - pos: -5.5,-2.5 + parent: 612 + type: Transform +- proto: OxygenCanister + entities: + - uid: 194 + components: + - pos: -5.5,-4.5 + parent: 612 + type: Transform +- proto: PartRodMetal + entities: + - uid: 190 + components: + - pos: -1.4843771,-8.390582 + parent: 612 + type: Transform +- proto: PlaqueAtmos + entities: + - uid: 217 + components: + - pos: -2.5,0.5 + parent: 612 + type: Transform +- proto: PortableGeneratorSuperPacman + entities: + - uid: 184 + components: + - pos: -3.5,-8.5 + parent: 612 + type: Transform +- proto: PortableScrubber + entities: + - uid: 195 + components: + - pos: -5.5,-6.5 + parent: 612 + type: Transform +- proto: PosterContrabandHighEffectEngineering + entities: + - uid: 215 + components: + - pos: 0.5,0.5 + parent: 612 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 143 + components: + - pos: 6.5,-7.5 + parent: 612 + type: Transform + - uid: 144 + components: + - pos: 4.5,-6.5 + parent: 612 + type: Transform +- proto: Poweredlight + entities: + - uid: 504 + components: + - pos: -1.5,3.5 + parent: 612 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 505 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 612 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 506 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 612 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 507 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 612 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 508 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 612 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 509 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 612 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 510 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 612 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 511 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 612 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 512 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 612 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 513 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 612 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 514 + components: + - pos: -8.5,-3.5 + parent: 612 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 515 + components: + - pos: -8.5,-5.5 + parent: 612 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLight + entities: + - uid: 498 + components: + - pos: -10.5,-7.5 + parent: 612 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 499 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-1.5 + parent: 612 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 500 + components: + - pos: -8.5,2.5 + parent: 612 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 503 + components: + - pos: -4.5,3.5 + parent: 612 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 516 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-4.5 + parent: 612 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: Rack + entities: + - uid: 487 + components: + - pos: -7.5,1.5 + parent: 612 + type: Transform +- proto: RandomAmmoBox + entities: + - uid: 40 + components: + - pos: -0.5,1.5 + parent: 612 + type: Transform +- proto: RandomBoards + entities: + - uid: 601 + components: + - pos: 4.5,-2.5 + parent: 612 + type: Transform + - uid: 602 + components: + - pos: 4.5,-1.5 + parent: 612 + type: Transform + - uid: 603 + components: + - pos: 4.5,-0.5 + parent: 612 + type: Transform +- proto: RandomEngineerCorpseSpawner + entities: + - uid: 613 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 612 + type: Transform + - uid: 614 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 612 + type: Transform +- proto: RandomPosterContraband + entities: + - uid: 224 + components: + - pos: -1.5,-9.5 + parent: 612 + type: Transform +- proto: ReinforcedPlasmaWindow + entities: + - uid: 196 + components: + - pos: -6.5,-5.5 + parent: 612 + type: Transform + - uid: 197 + components: + - pos: -6.5,-3.5 + parent: 612 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 11 + components: + - pos: -1.5,0.5 + parent: 612 + type: Transform + - uid: 12 + components: + - pos: 0.5,1.5 + parent: 612 + type: Transform + - uid: 13 + components: + - pos: 0.5,3.5 + parent: 612 + type: Transform + - uid: 106 + components: + - pos: 3.5,-6.5 + parent: 612 + type: Transform + - uid: 107 + components: + - pos: 3.5,-4.5 + parent: 612 + type: Transform + - uid: 108 + components: + - pos: 3.5,-2.5 + parent: 612 + type: Transform + - uid: 126 + components: + - pos: 7.5,-7.5 + parent: 612 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 192 + components: + - pos: 1.5,-8.5 + parent: 612 + type: Transform +- proto: SalvagePartsSpawnerLow + entities: + - uid: 159 + components: + - pos: 4.5,-7.5 + parent: 612 + type: Transform + - uid: 160 + components: + - pos: 6.5,-7.5 + parent: 612 + type: Transform +- proto: SalvagePartsSpawnerMid + entities: + - uid: 161 + components: + - pos: 5.5,-8.5 + parent: 612 + type: Transform +- proto: SalvagePartsSpawnerSubSpace + entities: + - uid: 162 + components: + - pos: -5.5,1.5 + parent: 612 + type: Transform +- proto: SalvagePartsT2Spawner + entities: + - uid: 37 + components: + - pos: -5.5,3.5 + parent: 612 + type: Transform +- proto: SheetGlass + entities: + - uid: 189 + components: + - pos: -2.1406271,-8.390582 + parent: 612 + type: Transform +- proto: SheetPlasma + entities: + - uid: 181 + components: + - pos: -5.5989604,-8.453126 + parent: 612 + type: Transform +- proto: SheetSteel + entities: + - uid: 187 + components: + - pos: -3.6093771,-0.41629392 + parent: 612 + type: Transform + - uid: 188 + components: + - pos: -2.401044,-8.401007 + parent: 612 + type: Transform +- proto: SignAtmosMinsky + entities: + - uid: 211 + components: + - pos: -6.5,-0.5 + parent: 612 + type: Transform +- proto: SignDirectionalEng + entities: + - uid: 223 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 612 + type: Transform +- proto: SignDirectionalSalvage + entities: + - uid: 222 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-0.5 + parent: 612 + type: Transform +- proto: SignElectricalMed + entities: + - uid: 219 + components: + - pos: 3.5,-0.5 + parent: 612 + type: Transform +- proto: SignEngineering + entities: + - uid: 123 + components: + - pos: 7.5,-3.5 + parent: 612 + type: Transform +- proto: SignFire + entities: + - uid: 208 + components: + - pos: -10.5,-4.5 + parent: 612 + type: Transform +- proto: SignGravity + entities: + - uid: 221 + components: + - pos: -2.5,3.5 + parent: 612 + type: Transform +- proto: SignNosmoking + entities: + - uid: 218 + components: + - pos: -3.5,0.5 + parent: 612 + type: Transform +- proto: SignSecureMed + entities: + - uid: 220 + components: + - pos: 3.5,-8.5 + parent: 612 + type: Transform +- proto: SignSpace + entities: + - uid: 468 + components: + - pos: -11.5,-0.5 + parent: 612 + type: Transform + - uid: 469 + components: + - pos: -11.5,-8.5 + parent: 612 + type: Transform +- proto: SnakeMobMundane + entities: + - uid: 172 + components: + - pos: -4.5,3.5 + parent: 612 + type: Transform +- proto: SpaceTickSpawner + entities: + - uid: 168 + components: + - pos: 5.5,-3.5 + parent: 612 + type: Transform + - uid: 169 + components: + - pos: 6.5,-4.5 + parent: 612 + type: Transform + - uid: 170 + components: + - pos: 5.5,-6.5 + parent: 612 + type: Transform + - uid: 171 + components: + - pos: 6.5,-5.5 + parent: 612 + type: Transform + - uid: 598 + components: + - pos: -11.5,-1.5 + parent: 612 + type: Transform + - uid: 599 + components: + - pos: -11.5,-7.5 + parent: 612 + type: Transform + - uid: 600 + components: + - pos: -8.5,2.5 + parent: 612 + type: Transform +- proto: SubstationBasicEmpty + entities: + - uid: 32 + components: + - pos: 5.5,4.5 + parent: 612 + type: Transform +- proto: SurveillanceCameraConstructed + entities: + - uid: 492 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 612 + type: Transform + - uid: 493 + components: + - rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 612 + type: Transform + - uid: 494 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,2.5 + parent: 612 + type: Transform + - uid: 495 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 612 + type: Transform +- proto: Table + entities: + - uid: 34 + components: + - pos: -0.5,1.5 + parent: 612 + type: Transform + - uid: 131 + components: + - pos: 6.5,-8.5 + parent: 612 + type: Transform + - uid: 132 + components: + - pos: 6.5,-7.5 + parent: 612 + type: Transform + - uid: 133 + components: + - pos: 4.5,-7.5 + parent: 612 + type: Transform + - uid: 134 + components: + - pos: 4.5,-6.5 + parent: 612 + type: Transform + - uid: 135 + components: + - pos: 4.5,-2.5 + parent: 612 + type: Transform + - uid: 174 + components: + - pos: -4.5,-0.5 + parent: 612 + type: Transform + - uid: 175 + components: + - pos: -3.5,-0.5 + parent: 612 + type: Transform + - uid: 176 + components: + - pos: -2.5,-0.5 + parent: 612 + type: Transform + - uid: 177 + components: + - pos: -2.5,-8.5 + parent: 612 + type: Transform + - uid: 178 + components: + - pos: -1.5,-8.5 + parent: 612 + type: Transform + - uid: 180 + components: + - pos: -5.5,-8.5 + parent: 612 + type: Transform + - uid: 488 + components: + - pos: -7.5,-0.5 + parent: 612 + type: Transform +- proto: TableCounterMetal + entities: + - uid: 129 + components: + - pos: 7.5,-6.5 + parent: 612 + type: Transform +- proto: TwoWayLever + entities: + - uid: 496 + components: + - pos: -3.5,-5.5 + parent: 612 + type: Transform + - linkedPorts: + 204: + - Left: Open + - Right: Open + - Middle: Close + 205: + - Left: Open + - Right: Open + - Middle: Close + 471: + - Left: Open + - Right: Open + - Middle: Close + 470: + - Left: Open + - Right: Open + - Middle: Close + 203: + - Left: Open + - Right: Open + - Middle: Close + 202: + - Left: Open + - Right: Open + - Middle: Close + 201: + - Left: Open + - Right: Open + - Middle: Close + type: DeviceLinkSource +- proto: VendingMachineEngivend + entities: + - uid: 33 + components: + - flags: SessionSpecific + type: MetaData + - pos: 3.5,1.5 + parent: 612 + type: Transform +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 183 + components: + - flags: SessionSpecific + type: MetaData + - pos: -1.5,-0.5 + parent: 612 + type: Transform +- proto: VendingMachineYouTool + entities: + - uid: 23 + components: + - flags: SessionSpecific + type: MetaData + - pos: 4.5,1.5 + parent: 612 + type: Transform +- proto: WallReinforced + entities: + - uid: 2 + components: + - pos: 0.5,4.5 + parent: 612 + type: Transform + - uid: 3 + components: + - pos: -0.5,4.5 + parent: 612 + type: Transform + - uid: 4 + components: + - pos: -1.5,4.5 + parent: 612 + type: Transform + - uid: 5 + components: + - pos: -2.5,4.5 + parent: 612 + type: Transform + - uid: 6 + components: + - pos: -2.5,3.5 + parent: 612 + type: Transform + - uid: 7 + components: + - pos: -2.5,1.5 + parent: 612 + type: Transform + - uid: 8 + components: + - pos: -2.5,0.5 + parent: 612 + type: Transform + - uid: 29 + components: + - pos: 6.5,0.5 + parent: 612 + type: Transform + - uid: 30 + components: + - pos: 6.5,1.5 + parent: 612 + type: Transform + - uid: 31 + components: + - pos: 6.5,2.5 + parent: 612 + type: Transform + - uid: 45 + components: + - pos: -6.5,-6.5 + parent: 612 + type: Transform + - uid: 46 + components: + - pos: -7.5,-6.5 + parent: 612 + type: Transform + - uid: 47 + components: + - pos: -8.5,-6.5 + parent: 612 + type: Transform + - uid: 48 + components: + - pos: -9.5,-6.5 + parent: 612 + type: Transform + - uid: 49 + components: + - pos: -10.5,-6.5 + parent: 612 + type: Transform + - uid: 50 + components: + - pos: -10.5,-4.5 + parent: 612 + type: Transform + - uid: 51 + components: + - pos: -9.5,-4.5 + parent: 612 + type: Transform + - uid: 52 + components: + - pos: -8.5,-4.5 + parent: 612 + type: Transform + - uid: 53 + components: + - pos: -7.5,-4.5 + parent: 612 + type: Transform + - uid: 54 + components: + - pos: -6.5,-4.5 + parent: 612 + type: Transform + - uid: 55 + components: + - pos: -6.5,-2.5 + parent: 612 + type: Transform + - uid: 56 + components: + - pos: -7.5,-2.5 + parent: 612 + type: Transform + - uid: 57 + components: + - pos: -8.5,-2.5 + parent: 612 + type: Transform + - uid: 58 + components: + - pos: -9.5,-2.5 + parent: 612 + type: Transform + - uid: 59 + components: + - pos: -10.5,-2.5 + parent: 612 + type: Transform + - uid: 61 + components: + - pos: -9.5,-8.5 + parent: 612 + type: Transform + - uid: 62 + components: + - pos: -11.5,-8.5 + parent: 612 + type: Transform + - uid: 63 + components: + - pos: -12.5,-8.5 + parent: 612 + type: Transform + - uid: 64 + components: + - pos: -12.5,-7.5 + parent: 612 + type: Transform + - uid: 65 + components: + - pos: -12.5,-6.5 + parent: 612 + type: Transform + - uid: 66 + components: + - pos: -12.5,-2.5 + parent: 612 + type: Transform + - uid: 67 + components: + - pos: -12.5,-1.5 + parent: 612 + type: Transform + - uid: 68 + components: + - pos: -12.5,-0.5 + parent: 612 + type: Transform + - uid: 69 + components: + - pos: -11.5,-0.5 + parent: 612 + type: Transform + - uid: 70 + components: + - pos: -11.5,0.5 + parent: 612 + type: Transform + - uid: 71 + components: + - pos: -11.5,1.5 + parent: 612 + type: Transform + - uid: 72 + components: + - pos: -9.5,-0.5 + parent: 612 + type: Transform + - uid: 73 + components: + - pos: -9.5,0.5 + parent: 612 + type: Transform + - uid: 74 + components: + - pos: -9.5,1.5 + parent: 612 + type: Transform + - uid: 75 + components: + - pos: -9.5,2.5 + parent: 612 + type: Transform + - uid: 76 + components: + - pos: -9.5,3.5 + parent: 612 + type: Transform + - uid: 77 + components: + - pos: -6.5,-0.5 + parent: 612 + type: Transform + - uid: 78 + components: + - pos: -6.5,0.5 + parent: 612 + type: Transform + - uid: 79 + components: + - pos: -6.5,1.5 + parent: 612 + type: Transform + - uid: 81 + components: + - pos: -6.5,3.5 + parent: 612 + type: Transform + - uid: 82 + components: + - pos: -6.5,4.5 + parent: 612 + type: Transform + - uid: 83 + components: + - pos: -5.5,4.5 + parent: 612 + type: Transform + - uid: 84 + components: + - pos: -4.5,4.5 + parent: 612 + type: Transform + - uid: 85 + components: + - pos: -3.5,4.5 + parent: 612 + type: Transform + - uid: 86 + components: + - pos: -3.5,0.5 + parent: 612 + type: Transform + - uid: 87 + components: + - pos: -4.5,0.5 + parent: 612 + type: Transform + - uid: 88 + components: + - pos: -5.5,0.5 + parent: 612 + type: Transform + - uid: 92 + components: + - pos: -6.5,-8.5 + parent: 612 + type: Transform + - uid: 93 + components: + - pos: -6.5,-9.5 + parent: 612 + type: Transform + - uid: 94 + components: + - pos: -5.5,-9.5 + parent: 612 + type: Transform + - uid: 95 + components: + - pos: -4.5,-9.5 + parent: 612 + type: Transform + - uid: 96 + components: + - pos: -3.5,-9.5 + parent: 612 + type: Transform + - uid: 97 + components: + - pos: -2.5,-9.5 + parent: 612 + type: Transform + - uid: 98 + components: + - pos: -1.5,-9.5 + parent: 612 + type: Transform + - uid: 99 + components: + - pos: -0.5,-9.5 + parent: 612 + type: Transform + - uid: 100 + components: + - pos: 0.5,-9.5 + parent: 612 + type: Transform + - uid: 101 + components: + - pos: 1.5,-9.5 + parent: 612 + type: Transform + - uid: 118 + components: + - pos: 6.5,-9.5 + parent: 612 + type: Transform + - uid: 119 + components: + - pos: 7.5,-9.5 + parent: 612 + type: Transform + - uid: 120 + components: + - pos: 7.5,-8.5 + parent: 612 + type: Transform + - uid: 121 + components: + - pos: 7.5,-5.5 + parent: 612 + type: Transform + - uid: 122 + components: + - pos: 7.5,-3.5 + parent: 612 + type: Transform + - uid: 501 + components: + - pos: -8.5,3.5 + parent: 612 + type: Transform +- proto: WallSolid + entities: + - uid: 24 + components: + - pos: -0.5,0.5 + parent: 612 + type: Transform + - uid: 25 + components: + - pos: 0.5,0.5 + parent: 612 + type: Transform + - uid: 26 + components: + - pos: 1.5,0.5 + parent: 612 + type: Transform + - uid: 27 + components: + - pos: 3.5,0.5 + parent: 612 + type: Transform + - uid: 28 + components: + - pos: 4.5,0.5 + parent: 612 + type: Transform + - uid: 109 + components: + - pos: 3.5,-0.5 + parent: 612 + type: Transform + - uid: 110 + components: + - pos: 3.5,-1.5 + parent: 612 + type: Transform + - uid: 111 + components: + - pos: 3.5,-3.5 + parent: 612 + type: Transform + - uid: 112 + components: + - pos: 3.5,-5.5 + parent: 612 + type: Transform + - uid: 113 + components: + - pos: 3.5,-7.5 + parent: 612 + type: Transform + - uid: 114 + components: + - pos: 3.5,-8.5 + parent: 612 + type: Transform + - uid: 115 + components: + - pos: 3.5,-9.5 + parent: 612 + type: Transform + - uid: 116 + components: + - pos: 4.5,-9.5 + parent: 612 + type: Transform +- proto: WarningN2 + entities: + - uid: 209 + components: + - pos: -6.5,-2.5 + parent: 612 + type: Transform +- proto: WarningO2 + entities: + - uid: 210 + components: + - pos: -6.5,-4.5 + parent: 612 + type: Transform +- proto: Windoor + entities: + - uid: 127 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 612 + type: Transform +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 124 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 612 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-atlas-cargo.yml b/Resources/Maps/Salvage/DeltaV/DV-atlas-cargo.yml new file mode 100644 index 0000000000..8a2c92a7f4 --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-atlas-cargo.yml @@ -0,0 +1,3562 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 18: FloorCarpetClown + 39: FloorEighties + 63: FloorMime + 84: FloorSteel + 100: FloorWhite + 110: FloorWood + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 509 + components: + - type: MetaData + - pos: 0.425,0.3311325 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAACcQAAAAAAVAAAAAADVAAAAAADVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAACVAAAAAACVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACcAAAAAAAVAAAAAAB + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAABZAAAAAAAZAAAAAACZAAAAAAAZAAAAAACZAAAAAAAVAAAAAACcAAAAAAAcAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAAAZAAAAAACZAAAAAADZAAAAAAAZAAAAAAAZAAAAAABcAAAAAAAcAAAAAAAVAAAAAADVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAADZAAAAAABZAAAAAACZAAAAAAAZAAAAAADAAAAAAAAcAAAAAAAVAAAAAADVAAAAAABVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: VAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAADVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAACVAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAACcQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAVAAAAAACVAAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAACcQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAJwAAAAAAJwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAACbgAAAAACcQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAJwAAAAAAJwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbgAAAAACbgAAAAABbgAAAAADcQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAJwAAAAAAJwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAEgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 12: -11,-3 + - node: + color: '#5E7C16FF' + id: CheckerNWSE + decals: + 13: -6,2 + 14: -7,2 + 15: -8,2 + 16: -9,2 + 17: -10,2 + 18: -10,1 + 19: -10,0 + 20: -9,0 + 21: -9,1 + 22: -8,1 + 23: -8,0 + 24: -7,0 + 25: -7,1 + 26: -6,1 + 27: -6,0 + 28: -5,0 + 29: -5,1 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 8: 1,1 + 9: 0,1 + 10: 2,1 + 11: -10,-3 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 82: -11,-2 + 83: -10,-2 + 84: -10,-3 + 85: -10,-4 + 86: -8,-4 + 87: -8,-5 + 88: -7,-5 + 89: -6,-5 + 90: -6,-4 + 91: -7,-7 + 92: -8,-7 + 93: -6,-8 + 94: -5,-8 + 95: -4,-8 + 96: -3,-8 + 97: -1,-8 + 98: 4,-5 + 99: 4,-6 + 100: 4,-6 + 101: 4,-5 + 102: 3,-5 + 103: 6,-6 + 104: 7,-7 + 105: 7,-8 + 106: 9,-8 + 107: 10,-8 + 108: 4,0 + 109: 3,1 + 110: 3,2 + 111: 2,4 + 112: 2,2 + 113: 2,1 + 114: 1,0 + 115: 1,0 + 116: 0,4 + 117: 0,3 + 118: 1,2 + 119: 1,1 + 120: 0,0 + 121: -1,-1 + 122: -2,2 + 123: -6,1 + 124: -9,1 + 125: -11,1 + 126: -8,0 + 127: -4,0 + 128: -3,-2 + 129: -2,-3 + 130: -3,-5 + 131: -3,-5 + 132: -4,0 + 133: -5,1 + 134: -6,1 + 135: -6,2 + 136: -8,2 + 137: -9,2 + 138: -10,2 + 139: -10,1 + 140: -10,0 + 141: -8,0 + 142: -7,0 + 143: -7,0 + 144: -6,0 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 63: -1,3 + 64: -1,2 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 65: -2,3 + 66: -2,3 + 67: -2,2 + 68: -2,2 + 69: 0,2 + 70: 0,2 + 80: -8,-5 + 81: -8,-3 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 71: -1,1 + 72: 3,-1 + 73: 4,-1 + 74: -4,-1 + 75: -4,-1 + 76: -3,-3 + 77: -3,-5 + 78: -3,-5 + 79: -3,-5 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale + decals: + 52: -9,-7 + 53: -8,-7 + 54: -7,-7 + 55: -6,-7 + 56: -5,-8 + 57: -4,-8 + 58: -3,-8 + 59: -2,-8 + 60: -1,-8 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale180 + decals: + 47: 1,-1 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale180 + decals: + 61: -3,-6 + 62: -2,-6 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + decals: + 30: -4,0 + 31: -4,-1 + 32: -4,-2 + 33: -4,-3 + 34: -4,-4 + 35: -4,-5 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale90 + decals: + 36: -10,-2 + 37: -10,-4 + 38: -6,-2 + 39: -6,-3 + 40: -6,-4 + 41: -6,-5 + 42: 3,3 + 43: 3,2 + 44: 4,0 + 45: 4,-1 + 46: 4,-5 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 6: 1,2 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 7: -3,2 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale90 + decals: + 48: 3,1 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 50: 4,-6 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 51: -4,-6 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 49: 4,1 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 0: -3,4 + 1: -2,4 + 2: -1,4 + 3: 0,4 + 4: 1,4 + 5: 2,4 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 65535 + -1,0: + 0: 65535 + -1,1: + 0: 65535 + -3,-1: + 0: 65518 + -3,-2: + 0: 60556 + -3,-3: + 0: 32768 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -2,-3: + 0: 51200 + -1,-2: + 0: 65535 + -1,-3: + 0: 32768 + -3,0: + 0: 65262 + -2,0: + 0: 6143 + -2,1: + 0: 136 + 0,0: + 0: 65535 + 0,1: + 0: 4407 + 1,0: + 0: 62335 + 2,0: + 0: 1 + 0,-3: + 0: 12288 + 0,-2: + 0: 36640 + 0,-1: + 0: 65516 + 1,-2: + 0: 65530 + 1,-1: + 0: 65535 + 1,-3: + 0: 32768 + 2,-2: + 0: 65535 + 2,-1: + 0: 2047 + 2,-3: + 0: 34816 + 3,-3: + 0: 4096 + 3,-2: + 0: 273 + 3,-1: + 0: 16 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - type: SpreaderGrid +- proto: AirlockCargoGlassLocked + entities: + - uid: 128 + components: + - pos: -4.5,-1.5 + parent: 509 + type: Transform + - uid: 129 + components: + - pos: -4.5,-2.5 + parent: 509 + type: Transform + - uid: 130 + components: + - pos: -6.5,-5.5 + parent: 509 + type: Transform + - uid: 131 + components: + - pos: -8.5,-4.5 + parent: 509 + type: Transform +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 86 + components: + - pos: -1.5,5.5 + parent: 509 + type: Transform + - uid: 87 + components: + - pos: 0.5,5.5 + parent: 509 + type: Transform +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 97 + components: + - rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 509 + type: Transform +- proto: AirlockGlass + entities: + - uid: 154 + components: + - pos: 7.5,-7.5 + parent: 509 + type: Transform +- proto: AirlockHeadOfPersonnelLocked + entities: + - uid: 40 + components: + - pos: 1.5,-1.5 + parent: 509 + type: Transform +- proto: AirlockMaintTheatreLocked + entities: + - uid: 156 + components: + - pos: 6.5,-1.5 + parent: 509 + type: Transform +- proto: AirlockTheatreLocked + entities: + - uid: 155 + components: + - pos: 9.5,-6.5 + parent: 509 + type: Transform +- proto: APCBasic + entities: + - uid: 280 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 509 + type: Transform + - uid: 310 + components: + - pos: 7.5,-1.5 + parent: 509 + type: Transform + - uid: 340 + components: + - pos: -10.5,-0.5 + parent: 509 + type: Transform +- proto: ArgocyteAISpawner + entities: + - uid: 510 + components: + - pos: -0.5,2.5 + parent: 509 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 412 + components: + - pos: -1.5,7.5 + parent: 509 + type: Transform +- proto: BlastDoor + entities: + - uid: 73 + components: + - pos: -2.5,7.5 + parent: 509 + type: Transform + - links: + - 75 + type: DeviceLinkSink + - uid: 74 + components: + - pos: -2.5,5.5 + parent: 509 + type: Transform + - links: + - 75 + type: DeviceLinkSink +- proto: BoxFolderBase + entities: + - uid: 293 + components: + - rot: 3.141592653589793 rad + pos: 2.366233,-3.2464783 + parent: 509 + type: Transform + - uid: 294 + components: + - rot: 3.141592653589793 rad + pos: 2.666233,-3.5091605 + parent: 509 + type: Transform + - uid: 295 + components: + - rot: 1.5707963267948966 rad + pos: 3.841233,-5.022712 + parent: 509 + type: Transform + - uid: 296 + components: + - rot: 1.5707963267948966 rad + pos: 4.2037325,-2.6585693 + parent: 509 + type: Transform +- proto: BrbSign + entities: + - uid: 136 + components: + - pos: 3.1269004,-3.481177 + parent: 509 + type: Transform +- proto: CableApcExtension + entities: + - uid: 338 + components: + - pos: -4.5,-0.5 + parent: 509 + type: Transform + - uid: 341 + components: + - pos: -1.5,6.5 + parent: 509 + type: Transform + - uid: 342 + components: + - pos: -1.5,5.5 + parent: 509 + type: Transform + - uid: 343 + components: + - pos: -1.5,4.5 + parent: 509 + type: Transform + - uid: 344 + components: + - pos: -1.5,3.5 + parent: 509 + type: Transform + - uid: 345 + components: + - pos: -0.5,3.5 + parent: 509 + type: Transform + - uid: 346 + components: + - pos: 0.5,6.5 + parent: 509 + type: Transform + - uid: 347 + components: + - pos: 0.5,5.5 + parent: 509 + type: Transform + - uid: 348 + components: + - pos: 0.5,4.5 + parent: 509 + type: Transform + - uid: 349 + components: + - pos: 0.5,3.5 + parent: 509 + type: Transform + - uid: 350 + components: + - pos: 0.5,2.5 + parent: 509 + type: Transform + - uid: 351 + components: + - pos: 0.5,1.5 + parent: 509 + type: Transform + - uid: 352 + components: + - pos: 0.5,0.5 + parent: 509 + type: Transform + - uid: 353 + components: + - pos: 0.5,-0.5 + parent: 509 + type: Transform + - uid: 354 + components: + - pos: -0.5,1.5 + parent: 509 + type: Transform + - uid: 355 + components: + - pos: -1.5,1.5 + parent: 509 + type: Transform + - uid: 356 + components: + - pos: 1.5,-0.5 + parent: 509 + type: Transform + - uid: 357 + components: + - pos: 2.5,-0.5 + parent: 509 + type: Transform + - uid: 358 + components: + - pos: 3.5,-0.5 + parent: 509 + type: Transform + - uid: 359 + components: + - pos: 3.5,0.5 + parent: 509 + type: Transform + - uid: 360 + components: + - pos: 3.5,1.5 + parent: 509 + type: Transform + - uid: 361 + components: + - pos: 3.5,2.5 + parent: 509 + type: Transform + - uid: 362 + components: + - pos: 3.5,3.5 + parent: 509 + type: Transform + - uid: 363 + components: + - pos: 2.5,3.5 + parent: 509 + type: Transform + - uid: 364 + components: + - pos: 6.5,1.5 + parent: 509 + type: Transform + - uid: 365 + components: + - pos: 6.5,0.5 + parent: 509 + type: Transform + - uid: 366 + components: + - pos: 6.5,-0.5 + parent: 509 + type: Transform + - uid: 367 + components: + - pos: 7.5,-0.5 + parent: 509 + type: Transform + - uid: 368 + components: + - pos: 7.5,-1.5 + parent: 509 + type: Transform + - uid: 369 + components: + - pos: 7.5,-2.5 + parent: 509 + type: Transform + - uid: 370 + components: + - pos: 7.5,-3.5 + parent: 509 + type: Transform + - uid: 371 + components: + - pos: 7.5,-4.5 + parent: 509 + type: Transform + - uid: 372 + components: + - pos: 7.5,-5.5 + parent: 509 + type: Transform + - uid: 373 + components: + - pos: 6.5,-3.5 + parent: 509 + type: Transform + - uid: 374 + components: + - pos: 8.5,-3.5 + parent: 509 + type: Transform + - uid: 375 + components: + - pos: 9.5,-3.5 + parent: 509 + type: Transform + - uid: 376 + components: + - pos: 10.5,-3.5 + parent: 509 + type: Transform + - uid: 377 + components: + - pos: 9.5,-5.5 + parent: 509 + type: Transform + - uid: 378 + components: + - pos: 9.5,-4.5 + parent: 509 + type: Transform + - uid: 379 + components: + - pos: 3.5,-1.5 + parent: 509 + type: Transform + - uid: 380 + components: + - pos: 3.5,-2.5 + parent: 509 + type: Transform + - uid: 381 + components: + - pos: 3.5,-3.5 + parent: 509 + type: Transform + - uid: 382 + components: + - pos: 3.5,-4.5 + parent: 509 + type: Transform + - uid: 383 + components: + - pos: 2.5,-2.5 + parent: 509 + type: Transform + - uid: 384 + components: + - pos: -4.5,1.5 + parent: 509 + type: Transform + - uid: 385 + components: + - pos: -5.5,1.5 + parent: 509 + type: Transform + - uid: 386 + components: + - pos: -6.5,1.5 + parent: 509 + type: Transform + - uid: 387 + components: + - pos: -7.5,1.5 + parent: 509 + type: Transform + - uid: 388 + components: + - pos: -3.5,-0.5 + parent: 509 + type: Transform + - uid: 389 + components: + - pos: -2.5,-0.5 + parent: 509 + type: Transform + - uid: 390 + components: + - pos: -2.5,-1.5 + parent: 509 + type: Transform + - uid: 391 + components: + - pos: -2.5,-2.5 + parent: 509 + type: Transform + - uid: 392 + components: + - pos: -2.5,-3.5 + parent: 509 + type: Transform + - uid: 393 + components: + - pos: -2.5,-4.5 + parent: 509 + type: Transform + - uid: 394 + components: + - pos: -2.5,-5.5 + parent: 509 + type: Transform + - uid: 395 + components: + - pos: -1.5,-5.5 + parent: 509 + type: Transform + - uid: 396 + components: + - pos: -3.5,-2.5 + parent: 509 + type: Transform + - uid: 397 + components: + - pos: -4.5,-2.5 + parent: 509 + type: Transform + - uid: 398 + components: + - pos: -5.5,-2.5 + parent: 509 + type: Transform + - uid: 399 + components: + - pos: -6.5,-2.5 + parent: 509 + type: Transform + - uid: 400 + components: + - pos: -6.5,-3.5 + parent: 509 + type: Transform + - uid: 401 + components: + - pos: -6.5,-4.5 + parent: 509 + type: Transform + - uid: 402 + components: + - pos: -6.5,-5.5 + parent: 509 + type: Transform + - uid: 403 + components: + - pos: -6.5,-6.5 + parent: 509 + type: Transform + - uid: 404 + components: + - pos: -10.5,-0.5 + parent: 509 + type: Transform + - uid: 405 + components: + - pos: -10.5,-1.5 + parent: 509 + type: Transform + - uid: 406 + components: + - pos: -10.5,-2.5 + parent: 509 + type: Transform + - uid: 407 + components: + - pos: -9.5,-2.5 + parent: 509 + type: Transform + - uid: 408 + components: + - pos: -9.5,-3.5 + parent: 509 + type: Transform +- proto: CableHV + entities: + - uid: 104 + components: + - pos: 9.5,-4.5 + parent: 509 + type: Transform + - uid: 200 + components: + - pos: 4.5,2.5 + parent: 509 + type: Transform + - uid: 201 + components: + - pos: 4.5,1.5 + parent: 509 + type: Transform + - uid: 202 + components: + - pos: 4.5,0.5 + parent: 509 + type: Transform + - uid: 203 + components: + - pos: 4.5,-0.5 + parent: 509 + type: Transform + - uid: 204 + components: + - pos: 4.5,-1.5 + parent: 509 + type: Transform + - uid: 205 + components: + - pos: 4.5,-2.5 + parent: 509 + type: Transform + - uid: 206 + components: + - pos: 4.5,-3.5 + parent: 509 + type: Transform + - uid: 207 + components: + - pos: 4.5,-4.5 + parent: 509 + type: Transform + - uid: 208 + components: + - pos: 4.5,-5.5 + parent: 509 + type: Transform + - uid: 209 + components: + - pos: 5.5,1.5 + parent: 509 + type: Transform + - uid: 210 + components: + - pos: 6.5,0.5 + parent: 509 + type: Transform + - uid: 211 + components: + - pos: 6.5,-0.5 + parent: 509 + type: Transform + - uid: 212 + components: + - pos: 7.5,-0.5 + parent: 509 + type: Transform + - uid: 213 + components: + - pos: 6.5,-1.5 + parent: 509 + type: Transform + - uid: 214 + components: + - pos: 6.5,-2.5 + parent: 509 + type: Transform + - uid: 215 + components: + - pos: 6.5,-3.5 + parent: 509 + type: Transform + - uid: 216 + components: + - pos: 6.5,-4.5 + parent: 509 + type: Transform + - uid: 217 + components: + - pos: 7.5,-4.5 + parent: 509 + type: Transform + - uid: 218 + components: + - pos: 8.5,-4.5 + parent: 509 + type: Transform + - uid: 219 + components: + - pos: 9.5,-5.5 + parent: 509 + type: Transform + - uid: 220 + components: + - pos: 9.5,-6.5 + parent: 509 + type: Transform + - uid: 221 + components: + - pos: 9.5,-7.5 + parent: 509 + type: Transform + - uid: 223 + components: + - pos: -0.5,-7.5 + parent: 509 + type: Transform + - uid: 224 + components: + - pos: -1.5,-7.5 + parent: 509 + type: Transform + - uid: 225 + components: + - pos: -2.5,-7.5 + parent: 509 + type: Transform + - uid: 226 + components: + - pos: -3.5,-7.5 + parent: 509 + type: Transform + - uid: 227 + components: + - pos: -4.5,-7.5 + parent: 509 + type: Transform + - uid: 228 + components: + - pos: -5.5,-7.5 + parent: 509 + type: Transform + - uid: 229 + components: + - pos: -6.5,-7.5 + parent: 509 + type: Transform + - uid: 230 + components: + - pos: -7.5,-7.5 + parent: 509 + type: Transform + - uid: 231 + components: + - pos: -8.5,-7.5 + parent: 509 + type: Transform +- proto: CableMV + entities: + - uid: 321 + components: + - pos: 7.5,-1.5 + parent: 509 + type: Transform + - uid: 326 + components: + - pos: 4.5,2.5 + parent: 509 + type: Transform + - uid: 327 + components: + - pos: 4.5,1.5 + parent: 509 + type: Transform + - uid: 328 + components: + - pos: 3.5,1.5 + parent: 509 + type: Transform + - uid: 329 + components: + - pos: 2.5,1.5 + parent: 509 + type: Transform + - uid: 330 + components: + - pos: 1.5,1.5 + parent: 509 + type: Transform + - uid: 331 + components: + - pos: 0.5,1.5 + parent: 509 + type: Transform + - uid: 332 + components: + - pos: -0.5,1.5 + parent: 509 + type: Transform + - uid: 333 + components: + - pos: -1.5,1.5 + parent: 509 + type: Transform + - uid: 334 + components: + - pos: 7.5,-0.5 + parent: 509 + type: Transform + - uid: 335 + components: + - pos: -4.5,-0.5 + parent: 509 + type: Transform + - uid: 336 + components: + - pos: -3.5,-0.5 + parent: 509 + type: Transform + - uid: 337 + components: + - pos: -3.5,0.5 + parent: 509 + type: Transform + - uid: 339 + components: + - pos: -10.5,-0.5 + parent: 509 + type: Transform +- proto: CarpetBlue + entities: + - uid: 274 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 509 + type: Transform + - uid: 275 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 509 + type: Transform + - uid: 276 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 509 + type: Transform + - uid: 277 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 509 + type: Transform + - uid: 278 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 509 + type: Transform + - uid: 279 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 509 + type: Transform +- proto: Catwalk + entities: + - uid: 499 + components: + - pos: 6.5,0.5 + parent: 509 + type: Transform + - uid: 500 + components: + - pos: 5.5,-0.5 + parent: 509 + type: Transform +- proto: Chair + entities: + - uid: 498 + components: + - pos: -10.5,-1.5 + parent: 509 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 168 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 509 + type: Transform + - uid: 172 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 509 + type: Transform + - uid: 320 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 509 + type: Transform +- proto: ChairOfficeLight + entities: + - uid: 171 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 509 + type: Transform + - uid: 318 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 509 + type: Transform +- proto: ChairWood + entities: + - uid: 37 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 509 + type: Transform + - uid: 170 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,0.5 + parent: 509 + type: Transform + - uid: 319 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-3.5 + parent: 509 + type: Transform +- proto: ComfyChair + entities: + - uid: 101 + components: + - pos: 3.5,-2.5 + parent: 509 + type: Transform +- proto: ComputerBroken + entities: + - uid: 85 + components: + - pos: -0.5,4.5 + parent: 509 + type: Transform + - uid: 96 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 509 + type: Transform + - uid: 126 + components: + - pos: -7.5,-1.5 + parent: 509 + type: Transform +- proto: ConveyorBelt + entities: + - uid: 76 + components: + - rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 509 + type: Transform + - links: + - 83 + type: DeviceLinkSink + - uid: 77 + components: + - rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 509 + type: Transform + - links: + - 83 + type: DeviceLinkSink + - uid: 78 + components: + - rot: 3.141592653589793 rad + pos: -2.5,6.5 + parent: 509 + type: Transform + - links: + - 83 + type: DeviceLinkSink + - uid: 79 + components: + - rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 509 + type: Transform + - links: + - 83 + type: DeviceLinkSink + - uid: 80 + components: + - rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 509 + type: Transform + - links: + - 83 + type: DeviceLinkSink + - uid: 81 + components: + - pos: 1.5,4.5 + parent: 509 + type: Transform + - links: + - 84 + type: DeviceLinkSink + - uid: 82 + components: + - pos: 1.5,3.5 + parent: 509 + type: Transform + - links: + - 84 + type: DeviceLinkSink +- proto: CrateFilledSpawner + entities: + - uid: 28 + components: + - pos: 1.5,1.5 + parent: 509 + type: Transform + - uid: 91 + components: + - pos: 2.5,1.5 + parent: 509 + type: Transform + - uid: 92 + components: + - pos: 4.5,-0.5 + parent: 509 + type: Transform +- proto: CrayonBlack + entities: + - uid: 290 + components: + - rot: 1.5707963267948966 rad + pos: 7.4912324,-5.7357073 + parent: 509 + type: Transform +- proto: CrayonBox + entities: + - uid: 291 + components: + - pos: 9.941233,-5.7482157 + parent: 509 + type: Transform +- proto: DogBed + entities: + - uid: 102 + components: + - pos: 2.5,-2.5 + parent: 509 + type: Transform +- proto: DrinkBeerBottleFull + entities: + - uid: 185 + components: + - rot: -1.5707963267948966 rad + pos: -7.0024137,2.741239 + parent: 509 + type: Transform + - uid: 186 + components: + - rot: -1.5707963267948966 rad + pos: -7.3899136,3.30413 + parent: 509 + type: Transform + - uid: 187 + components: + - pos: -8.652413,0.76486635 + parent: 509 + type: Transform +- proto: DrinkBottleBeer + entities: + - uid: 188 + components: + - rot: -1.5707963267948966 rad + pos: -8.189913,0.8274095 + parent: 509 + type: Transform + - uid: 189 + components: + - rot: -1.5707963267948966 rad + pos: -8.102413,0.5897448 + parent: 509 + type: Transform + - uid: 190 + components: + - rot: -1.5707963267948966 rad + pos: -5.8024135,1.052566 + parent: 509 + type: Transform + - uid: 191 + components: + - rot: -1.5707963267948966 rad + pos: -6.4024134,2.4035048 + parent: 509 + type: Transform + - uid: 192 + components: + - pos: -6.8899136,2.703713 + parent: 509 + type: Transform + - uid: 193 + components: + - rot: 1.5707963267948966 rad + pos: -6.7024136,2.6536784 + parent: 509 + type: Transform + - uid: 194 + components: + - pos: -5.477413,0.6898141 + parent: 509 + type: Transform +- proto: DrinkBottleOfNothingFull + entities: + - uid: 317 + components: + - rot: 3.141592653589793 rad + pos: 8.6871805,-5.564559 + parent: 509 + type: Transform +- proto: DrinkRootBeerCan + entities: + - uid: 195 + components: + - rot: -1.5707963267948966 rad + pos: -9.114913,1.8531221 + parent: 509 + type: Transform +- proto: DrinkSoyMilkCarton + entities: + - uid: 134 + components: + - pos: 4.7019,-3.2560208 + parent: 509 + type: Transform +- proto: EmergencyLight + entities: + - uid: 242 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 509 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight +- proto: ExtinguisherCabinet + entities: + - uid: 281 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 509 + type: Transform +- proto: ExtinguisherCabinetFilledOpen + entities: + - uid: 165 + components: + - pos: -10.5,1.5 + parent: 509 + type: Transform +- proto: filingCabinetRandom + entities: + - uid: 112 + components: + - pos: 4.5,-2.5 + parent: 509 + type: Transform +- proto: FirelockEdge + entities: + - uid: 232 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 509 + type: Transform +- proto: FirelockGlass + entities: + - uid: 157 + components: + - pos: 9.5,-6.5 + parent: 509 + type: Transform + - uid: 158 + components: + - pos: 7.5,-7.5 + parent: 509 + type: Transform + - uid: 159 + components: + - pos: -6.5,-5.5 + parent: 509 + type: Transform + - uid: 160 + components: + - pos: -8.5,-4.5 + parent: 509 + type: Transform + - uid: 161 + components: + - pos: -8.5,-2.5 + parent: 509 + type: Transform + - uid: 162 + components: + - pos: -1.5,-7.5 + parent: 509 + type: Transform +- proto: FoodDonkpocketBerry + entities: + - uid: 196 + components: + - rot: -1.5707963267948966 rad + pos: -7.8899136,0.4896753 + parent: 509 + type: Transform +- proto: FoodPieBananaCream + entities: + - uid: 138 + components: + - pos: 8.385428,-2.1677647 + parent: 509 + type: Transform + - uid: 139 + components: + - pos: 8.660428,-2.1802738 + parent: 509 + type: Transform + - uid: 140 + components: + - pos: 8.747928,-2.5054998 + parent: 509 + type: Transform +- proto: FoodPizzaMoldySlice + entities: + - uid: 90 + components: + - rot: 1.5707963267948966 rad + pos: -6.8999395,0.8562821 + parent: 509 + type: Transform + - uid: 502 + components: + - pos: -3.5999393,1.0939468 + parent: 509 + type: Transform +- proto: FoodPlate + entities: + - uid: 246 + components: + - rot: 3.141592653589793 rad + pos: -9.0364895,1.0751556 + parent: 509 + type: Transform +- proto: FoodPlateTrash + entities: + - uid: 243 + components: + - rot: 3.141592653589793 rad + pos: -8.123989,1.2252601 + parent: 509 + type: Transform + - uid: 244 + components: + - rot: 3.141592653589793 rad + pos: -7.0864897,1.0626472 + parent: 509 + type: Transform +- proto: GasPipeBend + entities: + - uid: 418 + components: + - rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 419 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 444 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 445 + components: + - pos: -9.5,-2.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 472 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 509 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 473 + components: + - pos: -1.5,1.5 + parent: 509 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 416 + components: + - pos: 11.5,-8.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 420 + components: + - rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 421 + components: + - rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 422 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 423 + components: + - pos: 0.5,3.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 424 + components: + - pos: 0.5,2.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 425 + components: + - pos: 0.5,1.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 426 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 427 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 428 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 430 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 433 + components: + - pos: -6.5,-3.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 434 + components: + - pos: -6.5,-4.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 435 + components: + - pos: -6.5,-5.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 436 + components: + - pos: -6.5,-6.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 438 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 439 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 440 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 441 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 442 + components: + - pos: -3.5,-1.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 443 + components: + - pos: -3.5,-0.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 446 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 447 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-3.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 449 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-4.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 450 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 451 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 452 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 453 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 454 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 455 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 456 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 457 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 458 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-7.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 461 + components: + - pos: 10.5,-6.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 462 + components: + - pos: 10.5,-5.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 469 + components: + - pos: 8.5,-5.5 + parent: 509 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 470 + components: + - pos: 8.5,-6.5 + parent: 509 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 471 + components: + - pos: 8.5,-7.5 + parent: 509 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 474 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 509 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 475 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 509 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 476 + components: + - rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 509 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 478 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 509 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 479 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 509 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 480 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 509 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 481 + components: + - pos: -1.5,-1.5 + parent: 509 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 482 + components: + - pos: -1.5,-2.5 + parent: 509 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 485 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 509 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 486 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 509 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 487 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 509 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 488 + components: + - pos: -5.5,-4.5 + parent: 509 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 489 + components: + - pos: -5.5,-5.5 + parent: 509 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 490 + components: + - pos: -5.5,-6.5 + parent: 509 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 491 + components: + - pos: -5.5,-7.5 + parent: 509 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 492 + components: + - pos: -5.5,-8.5 + parent: 509 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 417 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 429 + components: + - pos: -3.5,0.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 431 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 432 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 437 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-7.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 448 + components: + - pos: -4.5,-7.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 459 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-7.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 460 + components: + - pos: 11.5,-7.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 477 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 509 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 483 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 509 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 484 + components: + - pos: -5.5,-3.5 + parent: 509 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 409 + components: + - pos: 10.5,-4.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 410 + components: + - pos: -1.5,6.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 411 + components: + - pos: 0.5,6.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 413 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 414 + components: + - pos: -2.5,-1.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 415 + components: + - pos: -6.5,-1.5 + parent: 509 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 464 + components: + - pos: 2.5,0.5 + parent: 509 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 465 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 509 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 466 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 509 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 467 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 509 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 468 + components: + - pos: 8.5,-4.5 + parent: 509 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: Grille + entities: + - uid: 2 + components: + - pos: -9.5,3.5 + parent: 509 + type: Transform + - uid: 3 + components: + - pos: -8.5,3.5 + parent: 509 + type: Transform + - uid: 13 + components: + - pos: 8.5,-6.5 + parent: 509 + type: Transform + - uid: 14 + components: + - pos: 10.5,-6.5 + parent: 509 + type: Transform + - uid: 41 + components: + - pos: -3.5,4.5 + parent: 509 + type: Transform + - uid: 42 + components: + - pos: -3.5,5.5 + parent: 509 + type: Transform + - uid: 43 + components: + - pos: -3.5,6.5 + parent: 509 + type: Transform + - uid: 44 + components: + - pos: -3.5,7.5 + parent: 509 + type: Transform + - uid: 45 + components: + - pos: -0.5,5.5 + parent: 509 + type: Transform + - uid: 46 + components: + - pos: -0.5,6.5 + parent: 509 + type: Transform + - uid: 47 + components: + - pos: -0.5,7.5 + parent: 509 + type: Transform + - uid: 48 + components: + - pos: -6.5,-0.5 + parent: 509 + type: Transform + - uid: 49 + components: + - pos: -7.5,-0.5 + parent: 509 + type: Transform + - uid: 50 + components: + - pos: -8.5,-1.5 + parent: 509 + type: Transform + - uid: 51 + components: + - pos: -8.5,-3.5 + parent: 509 + type: Transform + - uid: 52 + components: + - pos: -5.5,-5.5 + parent: 509 + type: Transform + - uid: 53 + components: + - pos: -3.5,-6.5 + parent: 509 + type: Transform + - uid: 54 + components: + - pos: -2.5,-6.5 + parent: 509 + type: Transform + - uid: 88 + components: + - pos: 5.5,0.5 + parent: 509 + type: Transform +- proto: Joint + entities: + - uid: 311 + components: + - pos: 10.487181,-3.9291153 + parent: 509 + type: Transform + - uid: 312 + components: + - rot: -1.5707963267948966 rad + pos: 11.049681,-5.192493 + parent: 509 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 166 + components: + - pos: -9.5,2.5 + parent: 509 + type: Transform +- proto: Lamp + entities: + - uid: 137 + components: + - pos: 2.8144004,-2.9057775 + parent: 509 + type: Transform + - uid: 145 + components: + - pos: 6.410428,-4.131629 + parent: 509 + type: Transform +- proto: LampBanana + entities: + - uid: 141 + components: + - pos: 8.035428,-1.9926435 + parent: 509 + type: Transform +- proto: LeavesCannabisDried + entities: + - uid: 313 + components: + - rot: 3.141592653589793 rad + pos: 10.737181,-3.9791503 + parent: 509 + type: Transform + - uid: 314 + components: + - rot: 3.141592653589793 rad + pos: 11.537181,-3.391243 + parent: 509 + type: Transform + - uid: 315 + components: + - rot: 3.141592653589793 rad + pos: 11.5621805,-2.728282 + parent: 509 + type: Transform + - uid: 316 + components: + - rot: 3.141592653589793 rad + pos: 9.212181,-5.9305053 + parent: 509 + type: Transform +- proto: MachineFrameDestroyed + entities: + - uid: 94 + components: + - pos: 2.5,-0.5 + parent: 509 + type: Transform + - uid: 95 + components: + - pos: 0.5,-0.5 + parent: 509 + type: Transform + - uid: 103 + components: + - pos: 4.5,-4.5 + parent: 509 + type: Transform +- proto: MaintenanceFluffSpawner + entities: + - uid: 181 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 509 + type: Transform +- proto: MaintenanceToolSpawner + entities: + - uid: 173 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 509 + type: Transform + - uid: 174 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 509 + type: Transform + - uid: 175 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 509 + type: Transform + - uid: 176 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 509 + type: Transform + - uid: 177 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 509 + type: Transform + - uid: 178 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 509 + type: Transform + - uid: 504 + components: + - pos: -9.5,-3.5 + parent: 509 + type: Transform + - uid: 505 + components: + - pos: -10.5,-3.5 + parent: 509 + type: Transform +- proto: MaintenanceWeaponSpawner + entities: + - uid: 503 + components: + - pos: -5.5,-4.5 + parent: 509 + type: Transform +- proto: MaterialWoodPlank1 + entities: + - uid: 271 + components: + - pos: 0.5151257,-5.3720956 + parent: 509 + type: Transform + - uid: 273 + components: + - rot: -1.5707963267948966 rad + pos: 3.5151258,-5.6347785 + parent: 509 + type: Transform +- proto: Multitool + entities: + - uid: 167 + components: + - pos: -5.2994995,-4.3739514 + parent: 509 + type: Transform +- proto: Paper + entities: + - uid: 282 + components: + - rot: 3.141592653589793 rad + pos: 6.6287327,-4.8726077 + parent: 509 + type: Transform + - uid: 283 + components: + - rot: 3.141592653589793 rad + pos: 6.403733,-5.1978335 + parent: 509 + type: Transform + - uid: 284 + components: + - rot: 3.141592653589793 rad + pos: 6.5412326,-5.6231284 + parent: 509 + type: Transform + - uid: 285 + components: + - rot: 3.141592653589793 rad + pos: 6.6912327,-5.7982507 + parent: 509 + type: Transform + - uid: 286 + components: + - rot: 3.141592653589793 rad + pos: 7.8162327,-5.4980416 + parent: 509 + type: Transform + - uid: 287 + components: + - rot: 3.141592653589793 rad + pos: 8.291233,-5.5355678 + parent: 509 + type: Transform + - uid: 288 + components: + - rot: 1.5707963267948966 rad + pos: 8.191233,-4.7475204 + parent: 509 + type: Transform + - uid: 289 + components: + - rot: 1.5707963267948966 rad + pos: 8.241233,-3.5466866 + parent: 509 + type: Transform + - uid: 297 + components: + - pos: 3.016233,-2.5710092 + parent: 509 + type: Transform + - uid: 298 + components: + - pos: 4.2662325,-2.9712868 + parent: 509 + type: Transform + - uid: 299 + components: + - pos: 4.3287325,-5.210342 + parent: 509 + type: Transform + - uid: 300 + components: + - pos: 4.6662326,-5.8232675 + parent: 509 + type: Transform + - uid: 301 + components: + - pos: 4.8787327,-6.6988754 + parent: 509 + type: Transform + - uid: 302 + components: + - pos: 5.6162324,-6.8614883 + parent: 509 + type: Transform + - uid: 303 + components: + - pos: 1.903733,-5.61062 + parent: 509 + type: Transform +- proto: PartRodMetal1 + entities: + - uid: 254 + components: + - rot: 3.141592653589793 rad + pos: -7.5364895,3.6394367 + parent: 509 + type: Transform + - uid: 255 + components: + - rot: 1.5707963267948966 rad + pos: -5.7489896,2.2884989 + parent: 509 + type: Transform + - uid: 256 + components: + - rot: 1.5707963267948966 rad + pos: -5.273989,1.6505555 + parent: 509 + type: Transform + - uid: 257 + components: + - pos: -4.8114896,0.549791 + parent: 509 + type: Transform + - uid: 258 + components: + - pos: -4.336489,1.387873 + parent: 509 + type: Transform + - uid: 259 + components: + - pos: -3.748989,2.876407 + parent: 509 + type: Transform + - uid: 260 + components: + - rot: -1.5707963267948966 rad + pos: -3.2114892,3.6394367 + parent: 509 + type: Transform + - uid: 261 + components: + - rot: -1.5707963267948966 rad + pos: -2.5739892,2.4260943 + parent: 509 + type: Transform + - uid: 262 + components: + - rot: -1.5707963267948966 rad + pos: -1.048989,1.5129601 + parent: 509 + type: Transform + - uid: 263 + components: + - rot: 3.141592653589793 rad + pos: -0.6614893,0.3371437 + parent: 509 + type: Transform + - uid: 264 + components: + - rot: 3.141592653589793 rad + pos: -1.4739892,-0.5509735 + parent: 509 + type: Transform + - uid: 265 + components: + - rot: 3.141592653589793 rad + pos: -2.6364892,0.3746697 + parent: 509 + type: Transform + - uid: 266 + components: + - rot: 1.5707963267948966 rad + pos: -3.186489,1.337838 + parent: 509 + type: Transform + - uid: 267 + components: + - rot: 1.5707963267948966 rad + pos: 1.451011,-2.477311 + parent: 509 + type: Transform + - uid: 268 + components: + - pos: 3.5260112,-5.554448 + parent: 509 + type: Transform + - uid: 269 + components: + - pos: 1.101011,-5.817131 + parent: 509 + type: Transform +- proto: Pen + entities: + - uid: 304 + components: + - pos: 5.324955,-5.833787 + parent: 509 + type: Transform +- proto: PlasticFlapsAirtightClear + entities: + - uid: 197 + components: + - pos: -4.5,-3.5 + parent: 509 + type: Transform +- proto: PlasticFlapsAirtightOpaque + entities: + - uid: 501 + components: + - pos: 5.5,-0.5 + parent: 509 + type: Transform +- proto: PosterContrabandBeachStarYamamoto + entities: + - uid: 309 + components: + - pos: 8.5,-1.5 + parent: 509 + type: Transform +- proto: PosterContrabandClown + entities: + - uid: 153 + components: + - pos: 7.5,-6.5 + parent: 509 + type: Transform +- proto: PosterContrabandTools + entities: + - uid: 463 + components: + - pos: 5.5,-3.5 + parent: 509 + type: Transform +- proto: PosterLegitBlessThisSpess + entities: + - uid: 493 + components: + - pos: 5.5,-4.5 + parent: 509 + type: Transform +- proto: PottedPlantRandomPlastic + entities: + - uid: 308 + components: + - pos: -5.5,0.5 + parent: 509 + type: Transform +- proto: PottedPlantRD + entities: + - uid: 169 + components: + - pos: -9.5,-1.5 + parent: 509 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 133 + components: + - pos: -5.5,-4.5 + parent: 509 + type: Transform +- proto: Poweredlight + entities: + - uid: 238 + components: + - pos: -5.5,-1.5 + parent: 509 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 239 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 509 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 240 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,1.5 + parent: 509 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 241 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 509 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredlightEmpty + entities: + - uid: 235 + components: + - pos: 2.5,-2.5 + parent: 509 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 236 + components: + - pos: 11.5,-7.5 + parent: 509 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 237 + components: + - pos: -4.5,-7.5 + parent: 509 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLight + entities: + - uid: 233 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 509 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLightEmpty + entities: + - uid: 234 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,6.5 + parent: 509 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: Rack + entities: + - uid: 113 + components: + - pos: -1.5,-5.5 + parent: 509 + type: Transform +- proto: RandomBoards + entities: + - uid: 323 + components: + - pos: 3.5,-3.5 + parent: 509 + type: Transform +- proto: RandomCargoCorpseSpawner + entities: + - uid: 511 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 509 + type: Transform + - uid: 512 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,1.5 + parent: 509 + type: Transform +- proto: RandomDrinkBottle + entities: + - uid: 182 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 509 + type: Transform +- proto: RandomDrinkGlass + entities: + - uid: 183 + components: + - pos: -8.5,2.5 + parent: 509 + type: Transform + - uid: 184 + components: + - pos: -7.5,2.5 + parent: 509 + type: Transform +- proto: RandomInstruments + entities: + - uid: 146 + components: + - pos: 9.5,-2.5 + parent: 509 + type: Transform + - uid: 147 + components: + - pos: 9.5,-3.5 + parent: 509 + type: Transform + - uid: 148 + components: + - pos: 10.5,-3.5 + parent: 509 + type: Transform + - uid: 149 + components: + - pos: 10.5,-4.5 + parent: 509 + type: Transform + - uid: 150 + components: + - pos: 7.5,-2.5 + parent: 509 + type: Transform + - uid: 151 + components: + - pos: 7.5,-4.5 + parent: 509 + type: Transform +- proto: RandomItem + entities: + - uid: 305 + components: + - pos: 11.5,-8.5 + parent: 509 + type: Transform + - uid: 306 + components: + - pos: 7.5,0.5 + parent: 509 + type: Transform + - uid: 307 + components: + - pos: -9.5,-5.5 + parent: 509 + type: Transform +- proto: RandomSnacks + entities: + - uid: 180 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 509 + type: Transform +- proto: RandomSpawner + entities: + - uid: 506 + components: + - pos: -5.5,-6.5 + parent: 509 + type: Transform + - uid: 507 + components: + - pos: -8.5,-8.5 + parent: 509 + type: Transform + - uid: 508 + components: + - pos: 12.5,-2.5 + parent: 509 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 59 + components: + - pos: -0.5,5.5 + parent: 509 + type: Transform + - uid: 60 + components: + - pos: -0.5,6.5 + parent: 509 + type: Transform + - uid: 61 + components: + - pos: -0.5,7.5 + parent: 509 + type: Transform + - uid: 62 + components: + - pos: -3.5,7.5 + parent: 509 + type: Transform + - uid: 63 + components: + - pos: -3.5,6.5 + parent: 509 + type: Transform + - uid: 64 + components: + - pos: -3.5,5.5 + parent: 509 + type: Transform + - uid: 65 + components: + - pos: -3.5,4.5 + parent: 509 + type: Transform + - uid: 66 + components: + - pos: -8.5,3.5 + parent: 509 + type: Transform + - uid: 67 + components: + - pos: -9.5,3.5 + parent: 509 + type: Transform + - uid: 68 + components: + - pos: -8.5,-1.5 + parent: 509 + type: Transform + - uid: 69 + components: + - pos: -8.5,-3.5 + parent: 509 + type: Transform + - uid: 70 + components: + - pos: -5.5,-5.5 + parent: 509 + type: Transform + - uid: 71 + components: + - pos: -3.5,-6.5 + parent: 509 + type: Transform + - uid: 72 + components: + - pos: -2.5,-6.5 + parent: 509 + type: Transform + - uid: 89 + components: + - pos: 5.5,0.5 + parent: 509 + type: Transform +- proto: RevolverCapGun + entities: + - uid: 292 + components: + - rot: -1.5707963267948966 rad + pos: 9.7662325,-4.522364 + parent: 509 + type: Transform +- proto: SalvageCanisterSpawner + entities: + - uid: 325 + components: + - pos: -6.5,-1.5 + parent: 509 + type: Transform +- proto: SalvageLorePaperGamingSpawner + entities: + - uid: 222 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 509 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 27 + components: + - pos: 1.5,3.5 + parent: 509 + type: Transform + - uid: 324 + components: + - pos: -2.5,-2.5 + parent: 509 + type: Transform +- proto: SalvagePartsSpawnerLow + entities: + - uid: 322 + components: + - pos: -8.5,-2.5 + parent: 509 + type: Transform +- proto: ShardGlass + entities: + - uid: 245 + components: + - rot: 3.141592653589793 rad + pos: -5.211489,2.7763376 + parent: 509 + type: Transform + - uid: 247 + components: + - rot: 3.141592653589793 rad + pos: -4.836489,1.425399 + parent: 509 + type: Transform + - uid: 248 + components: + - rot: 3.141592653589793 rad + pos: -4.461489,0.6623695 + parent: 509 + type: Transform + - uid: 249 + components: + - rot: 3.141592653589793 rad + pos: -5.6614895,0.26209107 + parent: 509 + type: Transform + - uid: 250 + components: + - rot: 3.141592653589793 rad + pos: -9.373989,1.3003122 + parent: 509 + type: Transform +- proto: ShardGlassReinforced + entities: + - uid: 251 + components: + - rot: 3.141592653589793 rad + pos: -7.6239896,3.0890546 + parent: 509 + type: Transform + - uid: 252 + components: + - rot: 3.141592653589793 rad + pos: -1.3864892,2.2634814 + parent: 509 + type: Transform + - uid: 253 + components: + - rot: 3.141592653589793 rad + pos: -2.5739892,3.0890546 + parent: 509 + type: Transform + - uid: 270 + components: + - pos: 1.5788875,-8.488186 + parent: 509 + type: Transform + - uid: 272 + components: + - pos: 11.276991,-7.63089 + parent: 509 + type: Transform +- proto: Shovel + entities: + - uid: 179 + components: + - pos: -1.5399132,-5.4519515 + parent: 509 + type: Transform +- proto: SignalSwitchDirectional + entities: + - uid: 75 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,6.5 + parent: 509 + type: Transform + - linkedPorts: + 73: + - On: Open + - Off: Close + 74: + - On: Open + - Off: Close + type: DeviceLinkSource +- proto: SignCargo + entities: + - uid: 164 + components: + - pos: -8.5,-5.5 + parent: 509 + type: Transform +- proto: SignDirectionalBar + entities: + - uid: 496 + components: + - pos: -4.484888,-6.7899384 + parent: 509 + type: Transform +- proto: SignDirectionalSalvage + entities: + - uid: 494 + components: + - rot: -1.5707963267948966 rad + pos: -4.484888,-6.3020997 + parent: 509 + type: Transform +- proto: SignDirectionalSupply + entities: + - uid: 495 + components: + - rot: -1.5707963267948966 rad + pos: -4.484888,-6.5397644 + parent: 509 + type: Transform +- proto: SignMail + entities: + - uid: 163 + components: + - pos: -1.5,-6.5 + parent: 509 + type: Transform +- proto: SurveillanceCameraConstructed + entities: + - uid: 198 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 509 + type: Transform + - uid: 199 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 509 + type: Transform + - uid: 497 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-1.5 + parent: 509 + type: Transform +- proto: Table + entities: + - uid: 119 + components: + - pos: -5.5,-4.5 + parent: 509 + type: Transform +- proto: TableCarpet + entities: + - uid: 124 + components: + - pos: -7.5,0.5 + parent: 509 + type: Transform + - uid: 125 + components: + - pos: -8.5,0.5 + parent: 509 + type: Transform +- proto: TableCounterMetal + entities: + - uid: 120 + components: + - pos: -9.5,2.5 + parent: 509 + type: Transform + - uid: 121 + components: + - pos: -8.5,2.5 + parent: 509 + type: Transform + - uid: 122 + components: + - pos: -7.5,2.5 + parent: 509 + type: Transform + - uid: 123 + components: + - pos: -6.5,2.5 + parent: 509 + type: Transform + - uid: 127 + components: + - pos: -8.5,-2.5 + parent: 509 + type: Transform +- proto: TableGlass + entities: + - uid: 107 + components: + - pos: 6.5,-5.5 + parent: 509 + type: Transform + - uid: 108 + components: + - pos: 6.5,-4.5 + parent: 509 + type: Transform +- proto: TableReinforced + entities: + - uid: 114 + components: + - pos: -3.5,-5.5 + parent: 509 + type: Transform + - uid: 115 + components: + - pos: -3.5,-4.5 + parent: 509 + type: Transform + - uid: 116 + components: + - pos: -1.5,-3.5 + parent: 509 + type: Transform + - uid: 117 + components: + - pos: -1.5,-2.5 + parent: 509 + type: Transform + - uid: 118 + components: + - pos: -1.5,-1.5 + parent: 509 + type: Transform +- proto: TableWood + entities: + - uid: 105 + components: + - pos: 8.5,-2.5 + parent: 509 + type: Transform + - uid: 106 + components: + - pos: 7.5,-2.5 + parent: 509 + type: Transform + - uid: 109 + components: + - pos: 10.5,-4.5 + parent: 509 + type: Transform + - uid: 110 + components: + - pos: 10.5,-3.5 + parent: 509 + type: Transform +- proto: TableWoodReinforced + entities: + - uid: 98 + components: + - pos: 4.5,-3.5 + parent: 509 + type: Transform + - uid: 99 + components: + - pos: 3.5,-3.5 + parent: 509 + type: Transform + - uid: 100 + components: + - pos: 2.5,-3.5 + parent: 509 + type: Transform +- proto: ToyIan + entities: + - uid: 135 + components: + - pos: 4.1769004,-3.143443 + parent: 509 + type: Transform +- proto: TrashBananaPeel + entities: + - uid: 142 + components: + - pos: 6.672928,-1.842539 + parent: 509 + type: Transform + - uid: 143 + components: + - pos: 7.097928,-3.055882 + parent: 509 + type: Transform + - uid: 144 + components: + - pos: 8.447928,-3.718842 + parent: 509 + type: Transform +- proto: TwoWayLever + entities: + - uid: 83 + components: + - pos: -1.5,3.5 + parent: 509 + type: Transform + - linkedPorts: + 79: + - Left: Forward + - Right: Reverse + - Middle: Off + 78: + - Left: Forward + - Right: Reverse + - Middle: Off + 77: + - Left: Forward + - Right: Reverse + - Middle: Off + 76: + - Left: Forward + - Right: Reverse + - Middle: Off + 80: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 84 + components: + - pos: 2.5,3.5 + parent: 509 + type: Transform + - linkedPorts: + 81: + - Left: Forward + - Right: Reverse + - Middle: Off + 82: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource +- proto: VendingMachineTheater + entities: + - uid: 111 + components: + - flags: SessionSpecific + type: MetaData + - pos: 10.5,-5.5 + parent: 509 + type: Transform +- proto: WallReinforced + entities: + - uid: 1 + components: + - pos: -10.5,3.5 + parent: 509 + type: Transform + - uid: 20 + components: + - pos: 5.5,-1.5 + parent: 509 + type: Transform + - uid: 21 + components: + - pos: 5.5,-2.5 + parent: 509 + type: Transform + - uid: 22 + components: + - pos: 5.5,-3.5 + parent: 509 + type: Transform + - uid: 23 + components: + - pos: 5.5,-4.5 + parent: 509 + type: Transform + - uid: 24 + components: + - pos: 4.5,-1.5 + parent: 509 + type: Transform + - uid: 25 + components: + - pos: 3.5,-1.5 + parent: 509 + type: Transform + - uid: 26 + components: + - pos: 2.5,-1.5 + parent: 509 + type: Transform + - uid: 29 + components: + - pos: -0.5,-2.5 + parent: 509 + type: Transform + - uid: 30 + components: + - pos: -0.5,-3.5 + parent: 509 + type: Transform + - uid: 31 + components: + - pos: -0.5,-4.5 + parent: 509 + type: Transform + - uid: 32 + components: + - pos: -0.5,-5.5 + parent: 509 + type: Transform + - uid: 33 + components: + - pos: -0.5,-6.5 + parent: 509 + type: Transform +- proto: WallSolid + entities: + - uid: 4 + components: + - pos: -10.5,2.5 + parent: 509 + type: Transform + - uid: 5 + components: + - pos: -10.5,1.5 + parent: 509 + type: Transform + - uid: 6 + components: + - pos: -10.5,0.5 + parent: 509 + type: Transform + - uid: 7 + components: + - pos: -10.5,-0.5 + parent: 509 + type: Transform + - uid: 8 + components: + - pos: -9.5,-0.5 + parent: 509 + type: Transform + - uid: 9 + components: + - pos: -8.5,-0.5 + parent: 509 + type: Transform + - uid: 10 + components: + - pos: -5.5,-0.5 + parent: 509 + type: Transform + - uid: 11 + components: + - pos: -4.5,-0.5 + parent: 509 + type: Transform + - uid: 12 + components: + - pos: -1.5,-6.5 + parent: 509 + type: Transform + - uid: 15 + components: + - pos: 11.5,-6.5 + parent: 509 + type: Transform + - uid: 16 + components: + - pos: 11.5,-5.5 + parent: 509 + type: Transform + - uid: 17 + components: + - pos: 11.5,-4.5 + parent: 509 + type: Transform + - uid: 18 + components: + - pos: 8.5,-1.5 + parent: 509 + type: Transform + - uid: 19 + components: + - pos: 7.5,-1.5 + parent: 509 + type: Transform + - uid: 34 + components: + - pos: -4.5,-6.5 + parent: 509 + type: Transform + - uid: 35 + components: + - pos: -4.5,-5.5 + parent: 509 + type: Transform + - uid: 36 + components: + - pos: -4.5,-4.5 + parent: 509 + type: Transform + - uid: 38 + components: + - pos: -7.5,-5.5 + parent: 509 + type: Transform + - uid: 39 + components: + - pos: -8.5,-5.5 + parent: 509 + type: Transform + - uid: 152 + components: + - pos: 7.5,-6.5 + parent: 509 + type: Transform +- proto: WeldingFuelTankFull + entities: + - uid: 93 + components: + - pos: 3.5,3.5 + parent: 509 + type: Transform +- proto: WindoorSecureCargoLocked + entities: + - uid: 132 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 509 + type: Transform +- proto: Window + entities: + - uid: 55 + components: + - pos: 8.5,-6.5 + parent: 509 + type: Transform + - uid: 56 + components: + - pos: 10.5,-6.5 + parent: 509 + type: Transform + - uid: 57 + components: + - pos: -7.5,-0.5 + parent: 509 + type: Transform + - uid: 58 + components: + - pos: -6.5,-0.5 + parent: 509 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-atlas-conference-room.yml b/Resources/Maps/Salvage/DeltaV/DV-atlas-conference-room.yml new file mode 100644 index 0000000000..95986b8b16 --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-atlas-conference-room.yml @@ -0,0 +1,3868 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 27: FloorDark + 42: FloorFreezer + 56: FloorHydro + 60: FloorLino + 84: FloorSteel + 96: FloorTechMaint + 110: FloorWood + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 576 + components: + - type: MetaData + - pos: 0.5625,0.34364063 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGwAAAAADOAAAAAAAGwAAAAADcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABOAAAAAAAGwAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAVAAAAAABGwAAAAAAGwAAAAACOAAAAAAAGwAAAAADcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAVAAAAAABVAAAAAAAGwAAAAADGwAAAAACOAAAAAAAGwAAAAACGwAAAAACYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVAAAAAACVAAAAAABcQAAAAAAGwAAAAADOAAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAADcQAAAAAAGwAAAAAAOAAAAAAAGwAAAAADcQAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAGwAAAAADOAAAAAAAGwAAAAACcQAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVAAAAAADVAAAAAABcQAAAAAAGwAAAAACGwAAAAABGwAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAACVAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAPAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: cQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAACGwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAABGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAbgAAAAABbgAAAAACbgAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAbgAAAAAAbgAAAAACbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAbgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAbgAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAVAAAAAABVAAAAAADcQAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAACcQAAAAAAGwAAAAACGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAGwAAAAABGwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVAAAAAACVAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVAAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: cQAAAAAAcQAAAAAAGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 76: -1,4 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 73: -4,3 + 74: -3,3 + 75: -2,3 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 77: -1,3 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 23: -8,10 + 24: -8,9 + 25: -8,8 + 26: -8,8 + 27: -8,6 + 28: -8,6 + 29: -8,5 + 30: -8,3 + 31: -7,5 + 32: -7,2 + 33: -7,1 + 34: -7,0 + 35: -7,-4 + 36: -7,-4 + 37: -8,-5 + 38: -8,-7 + 39: -7,-8 + 40: -7,-9 + 41: -4,-13 + 42: -5,-12 + 43: -6,-11 + 44: 1,-14 + 45: 2,-13 + 46: 2,-12 + 47: 2,-11 + 48: 1,-11 + 49: -1,-10 + 50: 0,-10 + 51: 1,-10 + 52: 5,-3 + 53: 5,-3 + 54: 6,-4 + 55: 5,-4 + 56: 5,-4 + 57: 5,-5 + 58: -3,4 + 59: -3,5 + 60: -1,4 + 61: -1,4 + 62: -1,3 + 63: -1,2 + 64: -2,2 + 65: -2,2 + 66: -2,3 + 67: -3,4 + 68: -3,3 + 69: -4,3 + 70: -5,2 + 71: -5,2 + 72: -5,2 + 78: -1,3 + 79: -2,3 + 80: -3,3 + 81: -4,3 + 82: -1,4 + - node: + color: '#334E6DC8' + id: FullTileOverlayGreyscale + decals: + 9: 0,1 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale + decals: + 17: -4,0 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale180 + decals: + 10: 2,0 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale180 + decals: + 18: -4,-3 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + decals: + 14: -5,-2 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale90 + decals: + 15: -3,-2 + 16: -3,-1 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale180 + decals: + 4: -5,2 + 5: -4,2 + 6: -3,2 + 7: -2,2 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale180 + decals: + 11: -7,-2 + 12: -7,-1 + 13: -7,0 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale90 + decals: + 0: -5,4 + 1: -4,4 + 2: -3,4 + 3: -2,4 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale + decals: + 20: -5,0 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 21: -3,-3 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 8: -1,1 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 22: -5,-3 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 19: -3,0 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 65535 + 0,-1: + 0: 65535 + -3,-3: + 0: 51200 + -3,-2: + 0: 32776 + -3,-1: + 0: 2184 + -2,-3: + 0: 65486 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -2,-4: + 0: 32768 + -1,-4: + 0: 65256 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + 0,-4: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 1,-3: + 0: 273 + 1,-2: + 0: 65521 + 1,-1: + 0: 30071 + 2,-2: + 0: 256 + -3,0: + 0: 3072 + -3,2: + 0: 2188 + -3,1: + 0: 8 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 895 + -1,0: + 0: 65535 + -1,1: + 0: 12671 + -1,2: + 0: 1 + 0,0: + 0: 823 + 0,1: + 0: 3 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - type: SpreaderGrid +- proto: AirlockCommandGlassLocked + entities: + - uid: 91 + components: + - pos: -3.5,5.5 + parent: 576 + type: Transform + - uid: 92 + components: + - pos: 0.5,1.5 + parent: 576 + type: Transform + - uid: 93 + components: + - pos: 2.5,-4.5 + parent: 576 + type: Transform +- proto: AirlockGlass + entities: + - uid: 87 + components: + - pos: -5.5,3.5 + parent: 576 + type: Transform + - uid: 88 + components: + - pos: -5.5,-9.5 + parent: 576 + type: Transform + - uid: 89 + components: + - pos: -5.5,-8.5 + parent: 576 + type: Transform + - uid: 297 + components: + - pos: -6.5,-5.5 + parent: 576 + type: Transform + - uid: 298 + components: + - pos: -7.5,-5.5 + parent: 576 + type: Transform +- proto: AirlockJanitorLocked + entities: + - uid: 90 + components: + - pos: -5.5,-0.5 + parent: 576 + type: Transform +- proto: AirlockMaint + entities: + - uid: 203 + components: + - pos: -1.5,-8.5 + parent: 576 + type: Transform +- proto: AirlockMaintCommandLocked + entities: + - uid: 94 + components: + - pos: 0.5,-7.5 + parent: 576 + type: Transform +- proto: APCBasic + entities: + - uid: 141 + components: + - pos: 0.5,0.5 + parent: 576 + type: Transform +- proto: BaseBallBat + entities: + - uid: 165 + components: + - pos: -2.3389993,-2.4703228 + parent: 576 + type: Transform +- proto: Bed + entities: + - uid: 183 + components: + - pos: 6.5,-4.5 + parent: 576 + type: Transform +- proto: BedsheetIan + entities: + - uid: 184 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 576 + type: Transform +- proto: BlastDoor + entities: + - uid: 95 + components: + - pos: 0.5,-15.5 + parent: 576 + type: Transform +- proto: BoxFolderBase + entities: + - uid: 138 + components: + - rot: 1.5707963267948966 rad + pos: 1.4318342,-1.3653882 + parent: 576 + type: Transform +- proto: BoxLightMixed + entities: + - uid: 150 + components: + - pos: -4.380666,-2.6371067 + parent: 576 + type: Transform +- proto: CableApcExtension + entities: + - uid: 300 + components: + - pos: 2.5,-9.5 + parent: 576 + type: Transform + - uid: 371 + components: + - pos: 5.5,-4.5 + parent: 576 + type: Transform + - uid: 372 + components: + - pos: 5.5,-3.5 + parent: 576 + type: Transform + - uid: 373 + components: + - pos: 5.5,-2.5 + parent: 576 + type: Transform + - uid: 374 + components: + - pos: 2.5,-10.5 + parent: 576 + type: Transform + - uid: 375 + components: + - pos: 2.5,-11.5 + parent: 576 + type: Transform + - uid: 376 + components: + - pos: 2.5,-12.5 + parent: 576 + type: Transform + - uid: 377 + components: + - pos: 2.5,-13.5 + parent: 576 + type: Transform + - uid: 378 + components: + - pos: 1.5,-13.5 + parent: 576 + type: Transform + - uid: 379 + components: + - pos: 0.5,-13.5 + parent: 576 + type: Transform + - uid: 380 + components: + - pos: 0.5,-12.5 + parent: 576 + type: Transform + - uid: 381 + components: + - pos: 0.5,-11.5 + parent: 576 + type: Transform + - uid: 382 + components: + - pos: 0.5,-10.5 + parent: 576 + type: Transform + - uid: 383 + components: + - pos: 0.5,-9.5 + parent: 576 + type: Transform + - uid: 384 + components: + - pos: -0.5,-10.5 + parent: 576 + type: Transform + - uid: 385 + components: + - pos: 2.5,-5.5 + parent: 576 + type: Transform + - uid: 386 + components: + - pos: -0.5,-6.5 + parent: 576 + type: Transform + - uid: 387 + components: + - pos: 0.5,-6.5 + parent: 576 + type: Transform + - uid: 388 + components: + - pos: 1.5,-6.5 + parent: 576 + type: Transform + - uid: 389 + components: + - pos: 2.5,-6.5 + parent: 576 + type: Transform + - uid: 390 + components: + - pos: 2.5,-4.5 + parent: 576 + type: Transform + - uid: 391 + components: + - pos: 2.5,-3.5 + parent: 576 + type: Transform + - uid: 392 + components: + - pos: 2.5,-2.5 + parent: 576 + type: Transform + - uid: 393 + components: + - pos: 2.5,-1.5 + parent: 576 + type: Transform + - uid: 394 + components: + - pos: 2.5,-0.5 + parent: 576 + type: Transform + - uid: 396 + components: + - pos: 0.5,0.5 + parent: 576 + type: Transform + - uid: 397 + components: + - pos: 0.5,-0.5 + parent: 576 + type: Transform + - uid: 398 + components: + - pos: 1.5,-0.5 + parent: 576 + type: Transform + - uid: 399 + components: + - pos: -0.5,-0.5 + parent: 576 + type: Transform + - uid: 400 + components: + - pos: -0.5,-1.5 + parent: 576 + type: Transform + - uid: 401 + components: + - pos: -0.5,-2.5 + parent: 576 + type: Transform + - uid: 402 + components: + - pos: -0.5,-3.5 + parent: 576 + type: Transform + - uid: 403 + components: + - pos: 0.5,-3.5 + parent: 576 + type: Transform + - uid: 404 + components: + - pos: 1.5,-3.5 + parent: 576 + type: Transform + - uid: 406 + components: + - pos: -0.5,1.5 + parent: 576 + type: Transform + - uid: 407 + components: + - pos: -0.5,2.5 + parent: 576 + type: Transform + - uid: 408 + components: + - pos: -0.5,3.5 + parent: 576 + type: Transform + - uid: 409 + components: + - pos: -1.5,3.5 + parent: 576 + type: Transform + - uid: 410 + components: + - pos: -2.5,3.5 + parent: 576 + type: Transform + - uid: 411 + components: + - pos: -3.5,3.5 + parent: 576 + type: Transform + - uid: 412 + components: + - pos: -4.5,3.5 + parent: 576 + type: Transform + - uid: 413 + components: + - pos: -3.5,2.5 + parent: 576 + type: Transform + - uid: 414 + components: + - pos: -1.5,4.5 + parent: 576 + type: Transform + - uid: 415 + components: + - pos: -3.5,4.5 + parent: 576 + type: Transform + - uid: 416 + components: + - pos: -3.5,5.5 + parent: 576 + type: Transform + - uid: 417 + components: + - pos: -3.5,6.5 + parent: 576 + type: Transform + - uid: 418 + components: + - pos: -3.5,7.5 + parent: 576 + type: Transform + - uid: 419 + components: + - pos: -7.5,9.5 + parent: 576 + type: Transform + - uid: 420 + components: + - pos: -7.5,8.5 + parent: 576 + type: Transform + - uid: 421 + components: + - pos: -7.5,7.5 + parent: 576 + type: Transform + - uid: 422 + components: + - pos: -7.5,6.5 + parent: 576 + type: Transform + - uid: 423 + components: + - pos: -7.5,5.5 + parent: 576 + type: Transform + - uid: 424 + components: + - pos: -7.5,4.5 + parent: 576 + type: Transform + - uid: 425 + components: + - pos: -6.5,4.5 + parent: 576 + type: Transform + - uid: 426 + components: + - pos: -7.5,3.5 + parent: 576 + type: Transform + - uid: 427 + components: + - pos: -7.5,1.5 + parent: 576 + type: Transform + - uid: 428 + components: + - pos: -7.5,0.5 + parent: 576 + type: Transform + - uid: 429 + components: + - pos: -7.5,-0.5 + parent: 576 + type: Transform + - uid: 430 + components: + - pos: -7.5,-1.5 + parent: 576 + type: Transform + - uid: 431 + components: + - pos: -7.5,-2.5 + parent: 576 + type: Transform + - uid: 432 + components: + - pos: -7.5,-3.5 + parent: 576 + type: Transform + - uid: 433 + components: + - pos: -7.5,-4.5 + parent: 576 + type: Transform + - uid: 434 + components: + - pos: -7.5,-5.5 + parent: 576 + type: Transform + - uid: 435 + components: + - pos: -7.5,-6.5 + parent: 576 + type: Transform + - uid: 436 + components: + - pos: -7.5,-7.5 + parent: 576 + type: Transform + - uid: 437 + components: + - pos: -7.5,-8.5 + parent: 576 + type: Transform + - uid: 438 + components: + - pos: -6.5,-8.5 + parent: 576 + type: Transform + - uid: 439 + components: + - pos: -5.5,-8.5 + parent: 576 + type: Transform + - uid: 440 + components: + - pos: -4.5,-8.5 + parent: 576 + type: Transform + - uid: 441 + components: + - pos: -3.5,-8.5 + parent: 576 + type: Transform + - uid: 442 + components: + - pos: -3.5,-7.5 + parent: 576 + type: Transform + - uid: 443 + components: + - pos: -3.5,-6.5 + parent: 576 + type: Transform + - uid: 444 + components: + - pos: -3.5,-5.5 + parent: 576 + type: Transform + - uid: 445 + components: + - pos: -3.5,-4.5 + parent: 576 + type: Transform + - uid: 446 + components: + - pos: -3.5,-9.5 + parent: 576 + type: Transform + - uid: 447 + components: + - pos: -3.5,-10.5 + parent: 576 + type: Transform + - uid: 448 + components: + - pos: -3.5,-11.5 + parent: 576 + type: Transform + - uid: 449 + components: + - pos: -3.5,-12.5 + parent: 576 + type: Transform + - uid: 450 + components: + - pos: -6.5,-0.5 + parent: 576 + type: Transform + - uid: 451 + components: + - pos: -5.5,-0.5 + parent: 576 + type: Transform + - uid: 452 + components: + - pos: -4.5,-0.5 + parent: 576 + type: Transform + - uid: 453 + components: + - pos: -3.5,-0.5 + parent: 576 + type: Transform + - uid: 454 + components: + - pos: -3.5,0.5 + parent: 576 + type: Transform + - uid: 455 + components: + - pos: -2.5,-0.5 + parent: 576 + type: Transform + - uid: 456 + components: + - pos: -3.5,-1.5 + parent: 576 + type: Transform +- proto: CableHV + entities: + - uid: 305 + components: + - pos: 0.5,-15.5 + parent: 576 + type: Transform + - uid: 306 + components: + - pos: 0.5,-14.5 + parent: 576 + type: Transform + - uid: 307 + components: + - pos: 0.5,-13.5 + parent: 576 + type: Transform + - uid: 308 + components: + - pos: 0.5,-12.5 + parent: 576 + type: Transform + - uid: 309 + components: + - pos: 0.5,-11.5 + parent: 576 + type: Transform + - uid: 310 + components: + - pos: 0.5,-10.5 + parent: 576 + type: Transform + - uid: 311 + components: + - pos: 0.5,-9.5 + parent: 576 + type: Transform + - uid: 312 + components: + - pos: 0.5,-8.5 + parent: 576 + type: Transform + - uid: 313 + components: + - pos: 0.5,-7.5 + parent: 576 + type: Transform + - uid: 314 + components: + - pos: 0.5,-6.5 + parent: 576 + type: Transform + - uid: 315 + components: + - pos: 1.5,-6.5 + parent: 576 + type: Transform + - uid: 316 + components: + - pos: 2.5,-6.5 + parent: 576 + type: Transform + - uid: 317 + components: + - pos: 2.5,-5.5 + parent: 576 + type: Transform + - uid: 318 + components: + - pos: 2.5,-4.5 + parent: 576 + type: Transform + - uid: 319 + components: + - pos: 2.5,-3.5 + parent: 576 + type: Transform + - uid: 320 + components: + - pos: 2.5,-2.5 + parent: 576 + type: Transform + - uid: 321 + components: + - pos: 2.5,-1.5 + parent: 576 + type: Transform + - uid: 322 + components: + - pos: 2.5,-0.5 + parent: 576 + type: Transform + - uid: 323 + components: + - pos: 2.5,0.5 + parent: 576 + type: Transform + - uid: 324 + components: + - pos: 1.5,4.5 + parent: 576 + type: Transform + - uid: 325 + components: + - pos: 0.5,4.5 + parent: 576 + type: Transform + - uid: 326 + components: + - pos: -0.5,4.5 + parent: 576 + type: Transform + - uid: 327 + components: + - pos: -1.5,4.5 + parent: 576 + type: Transform + - uid: 328 + components: + - pos: -2.5,4.5 + parent: 576 + type: Transform + - uid: 329 + components: + - pos: -3.5,4.5 + parent: 576 + type: Transform + - uid: 330 + components: + - pos: -4.5,4.5 + parent: 576 + type: Transform + - uid: 331 + components: + - pos: -5.5,4.5 + parent: 576 + type: Transform + - uid: 332 + components: + - pos: -6.5,4.5 + parent: 576 + type: Transform + - uid: 333 + components: + - pos: -6.5,3.5 + parent: 576 + type: Transform + - uid: 334 + components: + - pos: -6.5,2.5 + parent: 576 + type: Transform + - uid: 335 + components: + - pos: -6.5,1.5 + parent: 576 + type: Transform + - uid: 336 + components: + - pos: -6.5,0.5 + parent: 576 + type: Transform + - uid: 337 + components: + - pos: -6.5,-0.5 + parent: 576 + type: Transform + - uid: 338 + components: + - pos: -6.5,-1.5 + parent: 576 + type: Transform + - uid: 339 + components: + - pos: -6.5,-2.5 + parent: 576 + type: Transform + - uid: 340 + components: + - pos: -6.5,-3.5 + parent: 576 + type: Transform + - uid: 341 + components: + - pos: -6.5,-4.5 + parent: 576 + type: Transform + - uid: 342 + components: + - pos: -6.5,-5.5 + parent: 576 + type: Transform + - uid: 343 + components: + - pos: -6.5,-6.5 + parent: 576 + type: Transform + - uid: 344 + components: + - pos: -6.5,-7.5 + parent: 576 + type: Transform + - uid: 345 + components: + - pos: -6.5,-8.5 + parent: 576 + type: Transform + - uid: 346 + components: + - pos: -5.5,-8.5 + parent: 576 + type: Transform + - uid: 347 + components: + - pos: -6.5,-9.5 + parent: 576 + type: Transform +- proto: CableMV + entities: + - uid: 348 + components: + - pos: -7.5,-1.5 + parent: 576 + type: Transform + - uid: 349 + components: + - pos: -7.5,-2.5 + parent: 576 + type: Transform + - uid: 350 + components: + - pos: -7.5,-3.5 + parent: 576 + type: Transform + - uid: 351 + components: + - pos: -7.5,4.5 + parent: 576 + type: Transform + - uid: 352 + components: + - pos: -7.5,5.5 + parent: 576 + type: Transform + - uid: 353 + components: + - pos: -7.5,6.5 + parent: 576 + type: Transform + - uid: 354 + components: + - pos: -7.5,7.5 + parent: 576 + type: Transform + - uid: 355 + components: + - pos: -7.5,8.5 + parent: 576 + type: Transform + - uid: 356 + components: + - pos: -7.5,9.5 + parent: 576 + type: Transform + - uid: 357 + components: + - pos: -7.5,10.5 + parent: 576 + type: Transform + - uid: 358 + components: + - pos: 0.5,2.5 + parent: 576 + type: Transform + - uid: 359 + components: + - pos: 0.5,1.5 + parent: 576 + type: Transform + - uid: 360 + components: + - pos: 1.5,1.5 + parent: 576 + type: Transform + - uid: 361 + components: + - pos: 0.5,0.5 + parent: 576 + type: Transform + - uid: 362 + components: + - pos: 0.5,-0.5 + parent: 576 + type: Transform + - uid: 363 + components: + - pos: 1.5,-0.5 + parent: 576 + type: Transform + - uid: 364 + components: + - pos: 2.5,-0.5 + parent: 576 + type: Transform + - uid: 365 + components: + - pos: 4.5,-5.5 + parent: 576 + type: Transform + - uid: 366 + components: + - pos: 5.5,-5.5 + parent: 576 + type: Transform + - uid: 367 + components: + - pos: 6.5,-5.5 + parent: 576 + type: Transform + - uid: 368 + components: + - pos: 5.5,-4.5 + parent: 576 + type: Transform + - uid: 369 + components: + - pos: 5.5,-3.5 + parent: 576 + type: Transform + - uid: 370 + components: + - pos: 5.5,-2.5 + parent: 576 + type: Transform + - uid: 395 + components: + - pos: 2.5,0.5 + parent: 576 + type: Transform +- proto: CarpetBlack + entities: + - uid: 126 + components: + - pos: 0.5,-1.5 + parent: 576 + type: Transform + - uid: 127 + components: + - pos: 0.5,-2.5 + parent: 576 + type: Transform + - uid: 128 + components: + - pos: 1.5,-1.5 + parent: 576 + type: Transform + - uid: 129 + components: + - pos: 1.5,-2.5 + parent: 576 + type: Transform +- proto: Catwalk + entities: + - uid: 241 + components: + - pos: -0.5,-14.5 + parent: 576 + type: Transform + - uid: 242 + components: + - pos: 0.5,-14.5 + parent: 576 + type: Transform +- proto: Chair + entities: + - uid: 174 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 576 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 131 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 576 + type: Transform + - uid: 132 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 576 + type: Transform + - uid: 133 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 576 + type: Transform + - uid: 134 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 576 + type: Transform + - uid: 135 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 576 + type: Transform + - uid: 136 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 576 + type: Transform + - uid: 176 + components: + - pos: -3.5,-4.5 + parent: 576 + type: Transform + - uid: 177 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 576 + type: Transform + - uid: 178 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 576 + type: Transform + - uid: 179 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 576 + type: Transform + - uid: 180 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 576 + type: Transform + - uid: 181 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 576 + type: Transform + - uid: 182 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 576 + type: Transform +- proto: ClosetL3JanitorFilled + entities: + - uid: 145 + components: + - pos: -2.5,0.5 + parent: 576 + type: Transform +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 217 + components: + - pos: 2.5,-8.5 + parent: 576 + type: Transform +- proto: ClothingHeadHatCone + entities: + - uid: 105 + components: + - pos: 0.05683422,-14.616683 + parent: 576 + type: Transform + - uid: 106 + components: + - pos: 0.6818342,-14.053792 + parent: 576 + type: Transform +- proto: ClothingHeadHatFez + entities: + - uid: 205 + components: + - pos: -2.2916667,-11.118345 + parent: 576 + type: Transform +- proto: ClothingHeadHelmetEVA + entities: + - uid: 112 + components: + - pos: -4.547333,7.515779 + parent: 576 + type: Transform + - uid: 216 + components: + - pos: -1.5,-13.392467 + parent: 576 + type: Transform +- proto: ClothingNeckBling + entities: + - uid: 199 + components: + - pos: -3.5208335,-6.9696307 + parent: 576 + type: Transform +- proto: ClothingNeckHeadphones + entities: + - uid: 200 + components: + - pos: -3.3333335,-6.302501 + parent: 576 + type: Transform +- proto: ClothingOuterCoatBomber + entities: + - uid: 204 + components: + - pos: -2.4583335,-11.472758 + parent: 576 + type: Transform +- proto: ClothingOuterHardsuitEVA + entities: + - uid: 109 + components: + - pos: -4.547333,7.658138 + parent: 576 + type: Transform + - uid: 215 + components: + - pos: -1.5208334,-13.288228 + parent: 576 + type: Transform +- proto: ComfyChair + entities: + - uid: 130 + components: + - pos: 1.5,-0.5 + parent: 576 + type: Transform + - uid: 175 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-11.5 + parent: 576 + type: Transform +- proto: ConveyorBelt + entities: + - uid: 96 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 576 + type: Transform + - links: + - 104 + type: DeviceLinkSink + - uid: 97 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 576 + type: Transform + - links: + - 104 + type: DeviceLinkSink + - uid: 98 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 576 + type: Transform + - links: + - 104 + type: DeviceLinkSink + - uid: 99 + components: + - pos: 2.5,-10.5 + parent: 576 + type: Transform + - links: + - 104 + type: DeviceLinkSink + - uid: 100 + components: + - pos: 2.5,-11.5 + parent: 576 + type: Transform + - links: + - 104 + type: DeviceLinkSink + - uid: 102 + components: + - pos: 2.5,-12.5 + parent: 576 + type: Transform + - links: + - 104 + type: DeviceLinkSink + - uid: 103 + components: + - pos: 2.5,-13.5 + parent: 576 + type: Transform + - links: + - 104 + type: DeviceLinkSink +- proto: CrateFilledSpawner + entities: + - uid: 110 + components: + - pos: 1.5,-8.5 + parent: 576 + type: Transform + - uid: 111 + components: + - pos: -0.5,-8.5 + parent: 576 + type: Transform +- proto: d6Dice + entities: + - uid: 196 + components: + - pos: -3.6041667,-5.4268923 + parent: 576 + type: Transform + - uid: 197 + components: + - pos: -3.4583335,-5.593676 + parent: 576 + type: Transform + - uid: 198 + components: + - pos: -3.4583335,-5.8230014 + parent: 576 + type: Transform +- proto: DisposalBend + entities: + - uid: 233 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 576 + type: Transform + - uid: 234 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 576 + type: Transform + - uid: 235 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 576 + type: Transform + - uid: 274 + components: + - pos: -3.5,-0.5 + parent: 576 + type: Transform +- proto: DisposalJunction + entities: + - uid: 244 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 576 + type: Transform + - uid: 248 + components: + - pos: -6.5,4.5 + parent: 576 + type: Transform + - uid: 259 + components: + - pos: -6.5,-1.5 + parent: 576 + type: Transform +- proto: DisposalJunctionFlipped + entities: + - uid: 247 + components: + - pos: -6.5,3.5 + parent: 576 + type: Transform + - uid: 258 + components: + - pos: -6.5,-0.5 + parent: 576 + type: Transform +- proto: DisposalPipe + entities: + - uid: 71 + components: + - rot: 3.141592653589793 rad + pos: -6.5,5.5 + parent: 576 + type: Transform + - uid: 237 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 576 + type: Transform + - uid: 238 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-14.5 + parent: 576 + type: Transform + - uid: 239 + components: + - pos: 0.5,-13.5 + parent: 576 + type: Transform + - uid: 240 + components: + - pos: 0.5,-12.5 + parent: 576 + type: Transform + - uid: 251 + components: + - pos: -6.5,-8.5 + parent: 576 + type: Transform + - uid: 252 + components: + - pos: -6.5,-7.5 + parent: 576 + type: Transform + - uid: 253 + components: + - pos: -6.5,-6.5 + parent: 576 + type: Transform + - uid: 254 + components: + - pos: -6.5,-5.5 + parent: 576 + type: Transform + - uid: 255 + components: + - pos: -6.5,-4.5 + parent: 576 + type: Transform + - uid: 256 + components: + - pos: -6.5,-3.5 + parent: 576 + type: Transform + - uid: 257 + components: + - pos: -6.5,-2.5 + parent: 576 + type: Transform + - uid: 260 + components: + - pos: -6.5,0.5 + parent: 576 + type: Transform + - uid: 261 + components: + - pos: -6.5,1.5 + parent: 576 + type: Transform + - uid: 262 + components: + - pos: -6.5,2.5 + parent: 576 + type: Transform + - uid: 263 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 576 + type: Transform + - uid: 264 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,3.5 + parent: 576 + type: Transform + - uid: 265 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,3.5 + parent: 576 + type: Transform + - uid: 266 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 576 + type: Transform + - uid: 267 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 576 + type: Transform + - uid: 268 + components: + - rot: 3.141592653589793 rad + pos: -6.5,6.5 + parent: 576 + type: Transform + - uid: 269 + components: + - rot: 3.141592653589793 rad + pos: -6.5,7.5 + parent: 576 + type: Transform + - uid: 270 + components: + - rot: 3.141592653589793 rad + pos: -6.5,8.5 + parent: 576 + type: Transform + - uid: 273 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 576 + type: Transform + - uid: 275 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 576 + type: Transform + - uid: 276 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 576 + type: Transform + - uid: 277 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 576 + type: Transform +- proto: DisposalPipeBroken + entities: + - uid: 236 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-14.5 + parent: 576 + type: Transform + - uid: 245 + components: + - pos: -0.5,4.5 + parent: 576 + type: Transform + - uid: 246 + components: + - pos: -6.5,9.5 + parent: 576 + type: Transform + - uid: 249 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,4.5 + parent: 576 + type: Transform + - uid: 250 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-9.5 + parent: 576 + type: Transform + - uid: 272 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 576 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 232 + components: + - pos: 1.5,-10.5 + parent: 576 + type: Transform + - uid: 243 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 576 + type: Transform +- proto: DisposalUnit + entities: + - uid: 147 + components: + - pos: -3.5,-2.5 + parent: 576 + type: Transform +- proto: DogBed + entities: + - uid: 194 + components: + - pos: 5.5,-4.5 + parent: 576 + type: Transform +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 1 + components: + - pos: -2.6219928,7.531747 + parent: 576 + type: Transform +- proto: EmergencyLight + entities: + - uid: 271 + components: + - rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 576 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 279 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 576 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 280 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 576 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight +- proto: FirelockEdge + entities: + - uid: 303 + components: + - pos: -6.5,-4.5 + parent: 576 + type: Transform + - uid: 304 + components: + - pos: -7.5,-4.5 + parent: 576 + type: Transform +- proto: FirelockGlass + entities: + - uid: 287 + components: + - pos: -7.5,10.5 + parent: 576 + type: Transform + - uid: 299 + components: + - pos: -5.5,3.5 + parent: 576 + type: Transform + - uid: 301 + components: + - pos: -5.5,-9.5 + parent: 576 + type: Transform + - uid: 302 + components: + - pos: -5.5,-8.5 + parent: 576 + type: Transform +- proto: Fireplace + entities: + - uid: 193 + components: + - pos: 4.5,-3.5 + parent: 576 + type: Transform +- proto: FloorDrain + entities: + - uid: 146 + components: + - pos: -4.5,-0.5 + parent: 576 + type: Transform + - fixtures: {} + type: Fixtures +- proto: FoodBoxDonut + entities: + - uid: 195 + components: + - pos: 0.5208334,-5.447741 + parent: 576 + type: Transform +- proto: GasPipeBend + entities: + - uid: 517 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-13.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 518 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 519 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 531 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 532 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 405 + components: + - pos: -7.5,2.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 465 + components: + - pos: -7.5,-1.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 526 + components: + - pos: -6.5,-0.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 527 + components: + - pos: -6.5,4.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 471 + components: + - rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 472 + components: + - rot: 3.141592653589793 rad + pos: -7.5,4.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 473 + components: + - rot: 3.141592653589793 rad + pos: -7.5,5.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 474 + components: + - rot: 3.141592653589793 rad + pos: -7.5,7.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 475 + components: + - rot: 3.141592653589793 rad + pos: -7.5,8.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 476 + components: + - rot: 3.141592653589793 rad + pos: -7.5,9.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 477 + components: + - rot: 3.141592653589793 rad + pos: -7.5,10.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 478 + components: + - rot: 3.141592653589793 rad + pos: -3.5,6.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 479 + components: + - rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 480 + components: + - rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 481 + components: + - rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 482 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 483 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 484 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 485 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 486 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 487 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 488 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 489 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,2.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 490 + components: + - pos: -7.5,1.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 491 + components: + - pos: -7.5,-0.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 492 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 493 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 494 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 495 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 496 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 497 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-3.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 498 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 499 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-5.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 500 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-6.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 501 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-7.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 502 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-8.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 503 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 504 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 505 + components: + - pos: 2.5,-0.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 506 + components: + - pos: 2.5,0.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 520 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-14.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 521 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 533 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 534 + components: + - rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 535 + components: + - rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 536 + components: + - rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 537 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 538 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 540 + components: + - rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 541 + components: + - rot: 3.141592653589793 rad + pos: -6.5,9.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 542 + components: + - rot: 3.141592653589793 rad + pos: -6.5,10.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 543 + components: + - rot: 3.141592653589793 rad + pos: -6.5,7.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 544 + components: + - rot: 3.141592653589793 rad + pos: -6.5,6.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 545 + components: + - rot: 3.141592653589793 rad + pos: -6.5,5.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 546 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,4.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 547 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,4.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 548 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,4.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 549 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 550 + components: + - rot: 3.141592653589793 rad + pos: -6.5,3.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 551 + components: + - rot: 3.141592653589793 rad + pos: -6.5,2.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 552 + components: + - rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 553 + components: + - rot: 3.141592653589793 rad + pos: -6.5,0.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 554 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 555 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 556 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 557 + components: + - pos: -6.5,-1.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 558 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 559 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-4.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 560 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-5.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 561 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-6.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 562 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-7.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 563 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 466 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 467 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,6.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 468 + components: + - rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 469 + components: + - rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 470 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 516 + components: + - pos: 0.5,-13.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 523 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-8.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 524 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 525 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 528 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,8.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 529 + components: + - pos: -1.5,4.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 530 + components: + - rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 539 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 507 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,8.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 508 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 509 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 510 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 511 + components: + - rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 512 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 513 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 514 + components: + - pos: -0.5,-12.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 515 + components: + - pos: 1.5,-12.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 522 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-8.5 + parent: 576 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 457 + components: + - pos: -3.5,7.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 458 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,6.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 459 + components: + - pos: -2.5,3.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 460 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 461 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 462 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 463 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 464 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-9.5 + parent: 576 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: Grille + entities: + - uid: 2 + components: + - pos: 1.5,-15.5 + parent: 576 + type: Transform + - uid: 3 + components: + - pos: 1.5,-14.5 + parent: 576 + type: Transform + - uid: 4 + components: + - pos: 2.5,-14.5 + parent: 576 + type: Transform + - uid: 5 + components: + - pos: 3.5,-14.5 + parent: 576 + type: Transform + - uid: 6 + components: + - pos: 3.5,-13.5 + parent: 576 + type: Transform + - uid: 7 + components: + - pos: 3.5,-12.5 + parent: 576 + type: Transform + - uid: 8 + components: + - pos: -5.5,-7.5 + parent: 576 + type: Transform + - uid: 9 + components: + - pos: 3.5,-6.5 + parent: 576 + type: Transform + - uid: 10 + components: + - pos: 4.5,-5.5 + parent: 576 + type: Transform + - uid: 11 + components: + - pos: 5.5,-5.5 + parent: 576 + type: Transform + - uid: 12 + components: + - pos: 6.5,-5.5 + parent: 576 + type: Transform + - uid: 13 + components: + - pos: -0.5,-4.5 + parent: 576 + type: Transform + - uid: 14 + components: + - pos: 0.5,-4.5 + parent: 576 + type: Transform + - uid: 15 + components: + - pos: 1.5,-4.5 + parent: 576 + type: Transform + - uid: 16 + components: + - pos: -0.5,0.5 + parent: 576 + type: Transform + - uid: 17 + components: + - pos: -5.5,-1.5 + parent: 576 + type: Transform + - uid: 18 + components: + - pos: -5.5,2.5 + parent: 576 + type: Transform + - uid: 19 + components: + - pos: -5.5,4.5 + parent: 576 + type: Transform +- proto: JanitorialTrolley + entities: + - uid: 144 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 576 + type: Transform +- proto: JetpackMiniFilled + entities: + - uid: 113 + components: + - pos: -4.4639993,7.7659535 + parent: 576 + type: Transform + - uid: 114 + components: + - pos: -4.505666,7.5783234 + parent: 576 + type: Transform +- proto: Lamp + entities: + - uid: 137 + components: + - rot: 1.5707963267948966 rad + pos: 0.8276675,-1.3445408 + parent: 576 + type: Transform +- proto: LightReplacer + entities: + - uid: 161 + components: + - pos: -2.4431658,-1.990823 + parent: 576 + type: Transform +- proto: MachineFrame + entities: + - uid: 564 + components: + - pos: 4.5,-11.5 + parent: 576 + type: Transform + - uid: 565 + components: + - pos: 4.5,-10.5 + parent: 576 + type: Transform + - uid: 566 + components: + - pos: 4.5,-9.5 + parent: 576 + type: Transform +- proto: MaterialDurathread + entities: + - uid: 192 + components: + - rot: 3.141592653589793 rad + pos: 4.4375,-1.5283515 + parent: 576 + type: Transform +- proto: MopBucket + entities: + - uid: 148 + components: + - pos: -4.5889993,-1.9699743 + parent: 576 + type: Transform + - uid: 149 + components: + - pos: -4.755666,-1.1986058 + parent: 576 + type: Transform +- proto: MopItem + entities: + - uid: 164 + components: + - pos: -2.6098325,-2.3035405 + parent: 576 + type: Transform +- proto: OxygenCanister + entities: + - uid: 115 + components: + - pos: -4.5,6.5 + parent: 576 + type: Transform +- proto: PaintingEmpty + entities: + - uid: 142 + components: + - pos: -3.5,-3.5 + parent: 576 + type: Transform +- proto: Pen + entities: + - uid: 139 + components: + - rot: 1.5707963267948966 rad + pos: 1.2026675,-1.949127 + parent: 576 + type: Transform +- proto: PosterLegitCleanliness + entities: + - uid: 120 + components: + - pos: -5.5,0.5 + parent: 576 + type: Transform +- proto: PosterLegitIan + entities: + - uid: 121 + components: + - pos: 3.5,-1.5 + parent: 576 + type: Transform +- proto: PottedPlantRD + entities: + - uid: 219 + components: + - pos: -4.5,-10.5 + parent: 576 + type: Transform +- proto: Poweredlight + entities: + - uid: 278 + components: + - pos: -3.5,0.5 + parent: 576 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 288 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 576 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 289 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 576 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 290 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 576 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredlightEmpty + entities: + - uid: 285 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 576 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 286 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 576 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 291 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 576 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLight + entities: + - uid: 281 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 576 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 282 + components: + - pos: 1.5,-8.5 + parent: 576 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 283 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 576 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 284 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 576 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: Rack + entities: + - uid: 108 + components: + - pos: -4.5,7.5 + parent: 576 + type: Transform + - uid: 214 + components: + - pos: -1.5,-13.5 + parent: 576 + type: Transform +- proto: RandomAmmoBox + entities: + - uid: 575 + components: + - pos: 0.5,-5.5 + parent: 576 + type: Transform +- proto: RandomBoards + entities: + - uid: 220 + components: + - pos: 0.5,-2.5 + parent: 576 + type: Transform + - uid: 221 + components: + - pos: 1.5,-2.5 + parent: 576 + type: Transform +- proto: RandomBox + entities: + - uid: 572 + components: + - pos: -4.5,4.5 + parent: 576 + type: Transform + - uid: 573 + components: + - pos: -3.5,2.5 + parent: 576 + type: Transform + - uid: 574 + components: + - pos: 1.5,-9.5 + parent: 576 + type: Transform +- proto: RandomCommandCorpseSpawner + entities: + - uid: 577 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 576 + type: Transform +- proto: RandomItem + entities: + - uid: 206 + components: + - pos: -2.5,-11.5 + parent: 576 + type: Transform + - uid: 207 + components: + - pos: -3.5,-6.5 + parent: 576 + type: Transform + - uid: 208 + components: + - pos: -4.5,-4.5 + parent: 576 + type: Transform + - uid: 209 + components: + - pos: 1.5,-11.5 + parent: 576 + type: Transform + - uid: 571 + components: + - pos: -8.5,-8.5 + parent: 576 + type: Transform +- proto: RandomPosterLegit + entities: + - uid: 218 + components: + - pos: -5.5,-2.5 + parent: 576 + type: Transform +- proto: RandomSoap + entities: + - uid: 153 + components: + - pos: -4.5,-0.5 + parent: 576 + type: Transform +- proto: RandomSpawner + entities: + - uid: 210 + components: + - pos: 0.5,-10.5 + parent: 576 + type: Transform + - uid: 211 + components: + - pos: 0.5,-10.5 + parent: 576 + type: Transform + - uid: 212 + components: + - pos: 1.5,-10.5 + parent: 576 + type: Transform + - uid: 213 + components: + - pos: 2.5,-9.5 + parent: 576 + type: Transform + - uid: 569 + components: + - pos: -7.5,-1.5 + parent: 576 + type: Transform + - uid: 570 + components: + - pos: -6.5,8.5 + parent: 576 + type: Transform +- proto: RandomVending + entities: + - uid: 201 + components: + - pos: -2.5,-10.5 + parent: 576 + type: Transform + - uid: 202 + components: + - pos: -2.5,-9.5 + parent: 576 + type: Transform +- proto: Recycler + entities: + - uid: 101 + components: + - pos: 2.5,-13.5 + parent: 576 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 22 + components: + - pos: -5.5,4.5 + parent: 576 + type: Transform + - uid: 23 + components: + - pos: -5.5,2.5 + parent: 576 + type: Transform + - uid: 24 + components: + - pos: -0.5,0.5 + parent: 576 + type: Transform + - uid: 25 + components: + - pos: -0.5,-4.5 + parent: 576 + type: Transform + - uid: 26 + components: + - pos: 0.5,-4.5 + parent: 576 + type: Transform + - uid: 27 + components: + - pos: 1.5,-4.5 + parent: 576 + type: Transform + - uid: 28 + components: + - pos: 3.5,-6.5 + parent: 576 + type: Transform + - uid: 29 + components: + - pos: 4.5,-5.5 + parent: 576 + type: Transform + - uid: 30 + components: + - pos: 5.5,-5.5 + parent: 576 + type: Transform + - uid: 31 + components: + - pos: 6.5,-5.5 + parent: 576 + type: Transform + - uid: 32 + components: + - pos: 3.5,-12.5 + parent: 576 + type: Transform + - uid: 33 + components: + - pos: 3.5,-13.5 + parent: 576 + type: Transform + - uid: 34 + components: + - pos: 3.5,-14.5 + parent: 576 + type: Transform + - uid: 35 + components: + - pos: 2.5,-14.5 + parent: 576 + type: Transform + - uid: 36 + components: + - pos: 1.5,-14.5 + parent: 576 + type: Transform + - uid: 37 + components: + - pos: 1.5,-15.5 + parent: 576 + type: Transform +- proto: SalvageCanisterSpawner + entities: + - uid: 568 + components: + - pos: 8.5,-5.5 + parent: 576 + type: Transform +- proto: SalvageLorePaperGamingSpawner + entities: + - uid: 107 + components: + - pos: -1.5,-13.5 + parent: 576 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 567 + components: + - pos: -0.5,-9.5 + parent: 576 + type: Transform +- proto: SalvagePartsSpawnerMid + entities: + - uid: 222 + components: + - pos: 0.5,-1.5 + parent: 576 + type: Transform +- proto: SalvagePartsSpawnerSubSpace + entities: + - uid: 223 + components: + - pos: 1.5,-1.5 + parent: 576 + type: Transform +- proto: ShardGlass + entities: + - uid: 292 + components: + - rot: 1.5707963267948966 rad + pos: 4.4058695,-1.8579483 + parent: 576 + type: Transform + - uid: 293 + components: + - rot: 1.5707963267948966 rad + pos: -6.419131,-7.1038833 + parent: 576 + type: Transform + - uid: 294 + components: + - rot: 1.5707963267948966 rad + pos: -6.344131,0.8442363 + parent: 576 + type: Transform + - uid: 295 + components: + - rot: 1.5707963267948966 rad + pos: -7.319131,9.599416 + parent: 576 + type: Transform + - uid: 296 + components: + - rot: 1.5707963267948966 rad + pos: -6.3316307,7.773146 + parent: 576 + type: Transform +- proto: SignBridge + entities: + - uid: 117 + components: + - pos: -5.5,5.5 + parent: 576 + type: Transform +- proto: SignConference + entities: + - uid: 140 + components: + - pos: 1.5,0.5 + parent: 576 + type: Transform +- proto: SignDirectionalEvac + entities: + - uid: 118 + components: + - pos: -5.5,6.5 + parent: 576 + type: Transform + - uid: 119 + components: + - pos: -5.5,1.5 + parent: 576 + type: Transform +- proto: SignEVA + entities: + - uid: 116 + components: + - pos: -4.5,5.5 + parent: 576 + type: Transform +- proto: SnakeMobMundane + entities: + - uid: 224 + components: + - pos: -0.5,-0.5 + parent: 576 + type: Transform + - uid: 225 + components: + - pos: 2.5,-3.5 + parent: 576 + type: Transform + - uid: 226 + components: + - pos: 0.5,-8.5 + parent: 576 + type: Transform + - uid: 227 + components: + - pos: 0.5,-11.5 + parent: 576 + type: Transform + - uid: 228 + components: + - pos: -6.5,9.5 + parent: 576 + type: Transform + - uid: 229 + components: + - pos: -6.5,4.5 + parent: 576 + type: Transform + - uid: 230 + components: + - pos: -6.5,-0.5 + parent: 576 + type: Transform + - uid: 231 + components: + - pos: -6.5,-6.5 + parent: 576 + type: Transform +- proto: SpawnVehicleJanicart + entities: + - uid: 151 + components: + - pos: -3.5,-1.5 + parent: 576 + type: Transform + - uid: 152 + components: + - pos: -3.5,-0.5 + parent: 576 + type: Transform +- proto: SprayBottleSpaceCleaner + entities: + - uid: 158 + components: + - pos: -2.5681658,-1.6572583 + parent: 576 + type: Transform + - uid: 159 + components: + - pos: -2.2556658,-1.6572583 + parent: 576 + type: Transform + - uid: 160 + components: + - pos: -2.4639993,-1.844888 + parent: 576 + type: Transform +- proto: SurveillanceCameraConstructed + entities: + - uid: 190 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 576 + type: Transform + - uid: 191 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 576 + type: Transform +- proto: Table + entities: + - uid: 154 + components: + - pos: -2.5,-2.5 + parent: 576 + type: Transform + - uid: 155 + components: + - pos: -2.5,-1.5 + parent: 576 + type: Transform + - uid: 171 + components: + - pos: 0.5,-5.5 + parent: 576 + type: Transform +- proto: TableCarpet + entities: + - uid: 167 + components: + - pos: -3.5,-5.5 + parent: 576 + type: Transform + - uid: 168 + components: + - pos: -3.5,-6.5 + parent: 576 + type: Transform + - uid: 169 + components: + - pos: -3.5,-7.5 + parent: 576 + type: Transform +- proto: TableWood + entities: + - uid: 122 + components: + - pos: 0.5,-1.5 + parent: 576 + type: Transform + - uid: 123 + components: + - pos: 0.5,-2.5 + parent: 576 + type: Transform + - uid: 124 + components: + - pos: 1.5,-1.5 + parent: 576 + type: Transform + - uid: 125 + components: + - pos: 1.5,-2.5 + parent: 576 + type: Transform + - uid: 166 + components: + - pos: 4.5,-1.5 + parent: 576 + type: Transform + - uid: 170 + components: + - pos: -2.5,-11.5 + parent: 576 + type: Transform +- proto: TrashBag + entities: + - uid: 162 + components: + - pos: -2.6098325,-2.1993015 + parent: 576 + type: Transform + - uid: 163 + components: + - pos: -2.3806658,-2.3243878 + parent: 576 + type: Transform +- proto: TwoWayLever + entities: + - uid: 104 + components: + - pos: -0.5,-11.5 + parent: 576 + type: Transform + - linkedPorts: + 96: + - Left: Forward + - Right: Reverse + - Middle: Off + 97: + - Left: Forward + - Right: Reverse + - Middle: Off + 98: + - Left: Forward + - Right: Reverse + - Middle: Off + 99: + - Left: Forward + - Right: Reverse + - Middle: Off + 100: + - Left: Forward + - Right: Reverse + - Middle: Off + 102: + - Left: Forward + - Right: Reverse + - Middle: Off + 103: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource +- proto: VehicleKeyJanicart + entities: + - uid: 156 + components: + - pos: -2.5889993,-1.3028448 + parent: 576 + type: Transform + - uid: 157 + components: + - pos: -2.6098325,-1.5113232 + parent: 576 + type: Transform +- proto: VendingMachineCoffee + entities: + - uid: 172 + components: + - flags: SessionSpecific + type: MetaData + - pos: -0.5,-5.5 + parent: 576 + type: Transform +- proto: VendingMachineJaniDrobe + entities: + - uid: 143 + components: + - flags: SessionSpecific + type: MetaData + - pos: -4.5,0.5 + parent: 576 + type: Transform +- proto: WallReinforced + entities: + - uid: 38 + components: + - pos: 3.5,-11.5 + parent: 576 + type: Transform + - uid: 39 + components: + - pos: 3.5,-10.5 + parent: 576 + type: Transform + - uid: 40 + components: + - pos: 3.5,-9.5 + parent: 576 + type: Transform + - uid: 41 + components: + - pos: 3.5,-8.5 + parent: 576 + type: Transform + - uid: 42 + components: + - pos: 3.5,-7.5 + parent: 576 + type: Transform + - uid: 43 + components: + - pos: 2.5,-7.5 + parent: 576 + type: Transform + - uid: 44 + components: + - pos: 1.5,-7.5 + parent: 576 + type: Transform + - uid: 45 + components: + - pos: -0.5,-7.5 + parent: 576 + type: Transform + - uid: 46 + components: + - pos: -1.5,-7.5 + parent: 576 + type: Transform + - uid: 47 + components: + - pos: -1.5,-6.5 + parent: 576 + type: Transform + - uid: 48 + components: + - pos: -1.5,-5.5 + parent: 576 + type: Transform + - uid: 49 + components: + - pos: -1.5,-4.5 + parent: 576 + type: Transform + - uid: 50 + components: + - pos: -1.5,-3.5 + parent: 576 + type: Transform + - uid: 51 + components: + - pos: -1.5,-2.5 + parent: 576 + type: Transform + - uid: 52 + components: + - pos: -1.5,-1.5 + parent: 576 + type: Transform + - uid: 53 + components: + - pos: -1.5,-0.5 + parent: 576 + type: Transform + - uid: 54 + components: + - pos: -1.5,0.5 + parent: 576 + type: Transform + - uid: 55 + components: + - pos: -1.5,1.5 + parent: 576 + type: Transform + - uid: 56 + components: + - pos: 3.5,-5.5 + parent: 576 + type: Transform + - uid: 57 + components: + - pos: 3.5,-4.5 + parent: 576 + type: Transform + - uid: 58 + components: + - pos: 3.5,-3.5 + parent: 576 + type: Transform + - uid: 59 + components: + - pos: 3.5,-2.5 + parent: 576 + type: Transform + - uid: 60 + components: + - pos: 3.5,-1.5 + parent: 576 + type: Transform + - uid: 61 + components: + - pos: 1.5,0.5 + parent: 576 + type: Transform + - uid: 62 + components: + - pos: 0.5,0.5 + parent: 576 + type: Transform + - uid: 63 + components: + - pos: -5.5,1.5 + parent: 576 + type: Transform + - uid: 64 + components: + - pos: -4.5,1.5 + parent: 576 + type: Transform + - uid: 65 + components: + - pos: -3.5,1.5 + parent: 576 + type: Transform + - uid: 66 + components: + - pos: -2.5,1.5 + parent: 576 + type: Transform + - uid: 67 + components: + - pos: -4.5,5.5 + parent: 576 + type: Transform + - uid: 68 + components: + - pos: -5.5,5.5 + parent: 576 + type: Transform + - uid: 69 + components: + - pos: -5.5,6.5 + parent: 576 + type: Transform + - uid: 70 + components: + - pos: -5.5,7.5 + parent: 576 + type: Transform + - uid: 185 + components: + - pos: 7.5,-5.5 + parent: 576 + type: Transform +- proto: WallSolid + entities: + - uid: 72 + components: + - pos: -5.5,0.5 + parent: 576 + type: Transform + - uid: 73 + components: + - pos: -5.5,-2.5 + parent: 576 + type: Transform + - uid: 74 + components: + - pos: -5.5,-3.5 + parent: 576 + type: Transform + - uid: 75 + components: + - pos: -4.5,-3.5 + parent: 576 + type: Transform + - uid: 76 + components: + - pos: -3.5,-3.5 + parent: 576 + type: Transform + - uid: 77 + components: + - pos: -2.5,-3.5 + parent: 576 + type: Transform + - uid: 78 + components: + - pos: -5.5,-4.5 + parent: 576 + type: Transform + - uid: 79 + components: + - pos: -5.5,-5.5 + parent: 576 + type: Transform + - uid: 80 + components: + - pos: -5.5,-6.5 + parent: 576 + type: Transform + - uid: 81 + components: + - pos: 4.5,-2.5 + parent: 576 + type: Transform + - uid: 82 + components: + - pos: -1.5,-9.5 + parent: 576 + type: Transform + - uid: 83 + components: + - pos: -1.5,-10.5 + parent: 576 + type: Transform + - uid: 84 + components: + - pos: -1.5,-11.5 + parent: 576 + type: Transform + - uid: 85 + components: + - pos: -1.5,-12.5 + parent: 576 + type: Transform + - uid: 86 + components: + - pos: -2.5,-12.5 + parent: 576 + type: Transform +- proto: WaterCooler + entities: + - uid: 173 + components: + - pos: 1.5,-5.5 + parent: 576 + type: Transform +- proto: Window + entities: + - uid: 20 + components: + - pos: -5.5,-1.5 + parent: 576 + type: Transform + - uid: 21 + components: + - pos: -5.5,-7.5 + parent: 576 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 186 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 576 + type: Transform + - uid: 187 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 576 + type: Transform + - uid: 188 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 576 + type: Transform + - uid: 189 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 576 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-atlas-dorms.yml b/Resources/Maps/Salvage/DeltaV/DV-atlas-dorms.yml new file mode 100644 index 0000000000..586a6c217a --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-atlas-dorms.yml @@ -0,0 +1,2511 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 27: FloorDark + 45: FloorGrass + 59: FloorLaundry + 84: FloorSteel + 96: FloorTechMaint + 110: FloorWood + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 377 + components: + - type: MetaData + - pos: 0.484375,0.4452734 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAALQAAAAAALQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAcQAAAAAALQAAAAAALQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAADcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAVAAAAAADVAAAAAACVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAADcQAAAAAAcQAAAAAAbgAAAAADbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABcQAAAAAAcQAAAAAAbgAAAAACbgAAAAABcQAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADcQAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAACcQAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: YAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: cQAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Basalt1 + decals: + 10: 9.781679,-13.056608 + - node: + color: '#FFFFFFFF' + id: Basalt8 + decals: + 9: 11.562929,-13.979124 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 11: 12,-7 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 20: 17,0 + 21: 17,-1 + 22: 16,-2 + 23: 16,-3 + 24: 15,-5 + 25: 17,-4 + 26: 14,-5 + 27: 13,-5 + 28: 12,-8 + 29: 11,-8 + 30: 11,-8 + 31: 11,-11 + 32: 10,-12 + 33: 10,-12 + 34: 10,-11 + 35: 8,-11 + 36: 6,-11 + 37: 4,-11 + 38: 3,-11 + 39: 3,-9 + 40: 7,-8 + 41: 7,-9 + 42: 7,-13 + 43: 7,-13 + 44: 4,-14 + 45: 4,-14 + 46: 3,-14 + 47: 3,-13 + 48: 2,-13 + 49: 5,-1 + 50: 11,-1 + 51: 13,-1 + 52: 13,-2 + 53: 12,-11 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 8: 11.141054,-13.27551 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 7: 10.062929,-14.166754 + - node: + color: '#FFFFFFFF' + id: Flowersy1 + decals: + 5: 10.516054,-13.259874 + 6: 10.984804,-13.869673 + - node: + color: '#FFFFFFFF' + id: Grassd2 + decals: + 0: 10,-13 + 1: 11,-14 + 2: 10,-14 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 3: 11.031679,-13.134788 + 4: 10.578554,-13.431869 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale + decals: + 12: 11,-1 + 13: 12,-1 + 14: 14,-1 + 15: 13,-1 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + decals: + 16: 16,-1 + 17: 16,-2 + 18: 16,-3 + 19: 16,-4 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 52360 + 0,-1: + 0: 65535 + 0,0: + 0: 11 + -1,-2: + 0: 34944 + 0,-4: + 0: 61390 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 1,-4: + 0: 65522 + 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: 13073 + 3,-3: + 0: 14335 + 3,-2: + 0: 65459 + 3,-1: + 0: 65535 + 1,0: + 0: 43 + 2,0: + 0: 1 + 3,0: + 0: 237 + -1,0: + 0: 1262 + 0,-5: + 0: 34944 + 1,-5: + 0: 8752 + 2,-5: + 0: 16384 + 4,-3: + 0: 1 + 4,-2: + 0: 12544 + 4,-1: + 0: 14195 + 4,0: + 0: 3 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - type: SpreaderGrid +- proto: AirAlarm + entities: + - uid: 219 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 377 + type: Transform +- proto: AirlockExternalLocked + entities: + - uid: 45 + components: + - pos: -1.5,0.5 + parent: 377 + type: Transform +- proto: AirlockGlass + entities: + - uid: 165 + components: + - pos: 13.5,-7.5 + parent: 377 + type: Transform +- proto: AirlockMaint + entities: + - uid: 193 + components: + - pos: 12.5,-4.5 + parent: 377 + type: Transform +- proto: APCBasic + entities: + - uid: 220 + components: + - pos: 12.5,-5.5 + parent: 377 + type: Transform +- proto: Barricade + entities: + - uid: 19 + components: + - pos: 8.5,-3.5 + parent: 377 + type: Transform + - uid: 20 + components: + - pos: 9.5,-2.5 + parent: 377 + type: Transform +- proto: Bed + entities: + - uid: 134 + components: + - pos: 2.5,-8.5 + parent: 377 + type: Transform + - uid: 135 + components: + - pos: 4.5,-7.5 + parent: 377 + type: Transform + - uid: 136 + components: + - pos: 6.5,-8.5 + parent: 377 + type: Transform + - uid: 137 + components: + - pos: 8.5,-8.5 + parent: 377 + type: Transform + - uid: 138 + components: + - pos: 8.5,-13.5 + parent: 377 + type: Transform + - uid: 139 + components: + - pos: 6.5,-13.5 + parent: 377 + type: Transform +- proto: BedsheetSpawner + entities: + - uid: 140 + components: + - pos: 2.5,-8.5 + parent: 377 + type: Transform + - uid: 141 + components: + - pos: 4.5,-7.5 + parent: 377 + type: Transform + - uid: 142 + components: + - pos: 6.5,-8.5 + parent: 377 + type: Transform + - uid: 143 + components: + - pos: 8.5,-8.5 + parent: 377 + type: Transform + - uid: 144 + components: + - pos: 8.5,-13.5 + parent: 377 + type: Transform + - uid: 145 + components: + - pos: 6.5,-13.5 + parent: 377 + type: Transform +- proto: BoozeDispenser + entities: + - uid: 30 + components: + - pos: 4.5,-0.5 + parent: 377 + type: Transform +- proto: Bucket + entities: + - uid: 126 + components: + - pos: 4.4170074,-13.68239 + parent: 377 + type: Transform +- proto: CableApcExtension + entities: + - uid: 302 + components: + - pos: 11.5,-0.5 + parent: 377 + type: Transform + - uid: 303 + components: + - pos: 11.5,-1.5 + parent: 377 + type: Transform + - uid: 304 + components: + - pos: 12.5,-1.5 + parent: 377 + type: Transform + - uid: 305 + components: + - pos: 13.5,-1.5 + parent: 377 + type: Transform + - uid: 306 + components: + - pos: 14.5,-1.5 + parent: 377 + type: Transform + - uid: 307 + components: + - pos: 14.5,-0.5 + parent: 377 + type: Transform + - uid: 308 + components: + - pos: 17.5,-0.5 + parent: 377 + type: Transform + - uid: 309 + components: + - pos: 17.5,-1.5 + parent: 377 + type: Transform + - uid: 310 + components: + - pos: 17.5,-4.5 + parent: 377 + type: Transform + - uid: 311 + components: + - pos: 16.5,-4.5 + parent: 377 + type: Transform + - uid: 312 + components: + - pos: 15.5,-4.5 + parent: 377 + type: Transform + - uid: 313 + components: + - pos: 14.5,-4.5 + parent: 377 + type: Transform + - uid: 314 + components: + - pos: 13.5,-4.5 + parent: 377 + type: Transform + - uid: 315 + components: + - pos: 12.5,-4.5 + parent: 377 + type: Transform + - uid: 316 + components: + - pos: 11.5,-4.5 + parent: 377 + type: Transform + - uid: 317 + components: + - pos: 10.5,-4.5 + parent: 377 + type: Transform + - uid: 318 + components: + - pos: 9.5,-4.5 + parent: 377 + type: Transform + - uid: 319 + components: + - pos: 8.5,-4.5 + parent: 377 + type: Transform + - uid: 320 + components: + - pos: 8.5,-3.5 + parent: 377 + type: Transform + - uid: 321 + components: + - pos: 8.5,-2.5 + parent: 377 + type: Transform + - uid: 322 + components: + - pos: 8.5,-1.5 + parent: 377 + type: Transform + - uid: 323 + components: + - pos: 7.5,-1.5 + parent: 377 + type: Transform + - uid: 324 + components: + - pos: 6.5,-1.5 + parent: 377 + type: Transform + - uid: 325 + components: + - pos: 5.5,-1.5 + parent: 377 + type: Transform + - uid: 326 + components: + - pos: 4.5,-1.5 + parent: 377 + type: Transform + - uid: 327 + components: + - pos: 7.5,-4.5 + parent: 377 + type: Transform + - uid: 328 + components: + - pos: 7.5,-5.5 + parent: 377 + type: Transform + - uid: 329 + components: + - pos: 6.5,-5.5 + parent: 377 + type: Transform + - uid: 330 + components: + - pos: 5.5,-5.5 + parent: 377 + type: Transform + - uid: 331 + components: + - pos: 4.5,-5.5 + parent: 377 + type: Transform + - uid: 332 + components: + - pos: 4.5,-4.5 + parent: 377 + type: Transform + - uid: 333 + components: + - pos: 3.5,-4.5 + parent: 377 + type: Transform + - uid: 334 + components: + - pos: 2.5,-4.5 + parent: 377 + type: Transform + - uid: 335 + components: + - pos: 1.5,-4.5 + parent: 377 + type: Transform + - uid: 336 + components: + - pos: 1.5,-3.5 + parent: 377 + type: Transform + - uid: 337 + components: + - pos: 1.5,-2.5 + parent: 377 + type: Transform + - uid: 338 + components: + - pos: 1.5,-1.5 + parent: 377 + type: Transform + - uid: 339 + components: + - pos: 1.5,-0.5 + parent: 377 + type: Transform + - uid: 340 + components: + - pos: 1.5,0.5 + parent: 377 + type: Transform + - uid: 341 + components: + - pos: 12.5,-5.5 + parent: 377 + type: Transform + - uid: 342 + components: + - pos: 12.5,-6.5 + parent: 377 + type: Transform + - uid: 343 + components: + - pos: 12.5,-7.5 + parent: 377 + type: Transform + - uid: 344 + components: + - pos: 12.5,-8.5 + parent: 377 + type: Transform + - uid: 345 + components: + - pos: 12.5,-9.5 + parent: 377 + type: Transform + - uid: 346 + components: + - pos: 12.5,-10.5 + parent: 377 + type: Transform + - uid: 347 + components: + - pos: 13.5,-7.5 + parent: 377 + type: Transform + - uid: 348 + components: + - pos: 11.5,-10.5 + parent: 377 + type: Transform + - uid: 349 + components: + - pos: 10.5,-10.5 + parent: 377 + type: Transform + - uid: 350 + components: + - pos: 9.5,-10.5 + parent: 377 + type: Transform + - uid: 351 + components: + - pos: 8.5,-10.5 + parent: 377 + type: Transform + - uid: 352 + components: + - pos: 7.5,-10.5 + parent: 377 + type: Transform + - uid: 353 + components: + - pos: 6.5,-10.5 + parent: 377 + type: Transform + - uid: 354 + components: + - pos: 5.5,-10.5 + parent: 377 + type: Transform + - uid: 355 + components: + - pos: 4.5,-10.5 + parent: 377 + type: Transform + - uid: 356 + components: + - pos: 3.5,-10.5 + parent: 377 + type: Transform + - uid: 357 + components: + - pos: 2.5,-10.5 + parent: 377 + type: Transform + - uid: 358 + components: + - pos: 2.5,-9.5 + parent: 377 + type: Transform + - uid: 359 + components: + - pos: 2.5,-8.5 + parent: 377 + type: Transform + - uid: 360 + components: + - pos: 2.5,-7.5 + parent: 377 + type: Transform + - uid: 361 + components: + - pos: 3.5,-11.5 + parent: 377 + type: Transform + - uid: 362 + components: + - pos: 3.5,-12.5 + parent: 377 + type: Transform + - uid: 363 + components: + - pos: 4.5,-9.5 + parent: 377 + type: Transform + - uid: 364 + components: + - pos: 4.5,-8.5 + parent: 377 + type: Transform + - uid: 365 + components: + - pos: 4.5,-7.5 + parent: 377 + type: Transform + - uid: 366 + components: + - pos: 6.5,-11.5 + parent: 377 + type: Transform + - uid: 367 + components: + - pos: 6.5,-12.5 + parent: 377 + type: Transform + - uid: 368 + components: + - pos: 6.5,-13.5 + parent: 377 + type: Transform + - uid: 369 + components: + - pos: 7.5,-9.5 + parent: 377 + type: Transform + - uid: 370 + components: + - pos: 7.5,-8.5 + parent: 377 + type: Transform + - uid: 371 + components: + - pos: 7.5,-7.5 + parent: 377 + type: Transform + - uid: 372 + components: + - pos: 10.5,-11.5 + parent: 377 + type: Transform + - uid: 373 + components: + - pos: 10.5,-12.5 + parent: 377 + type: Transform + - uid: 374 + components: + - pos: 10.5,-13.5 + parent: 377 + type: Transform +- proto: CableHV + entities: + - uid: 282 + components: + - pos: 12.5,-1.5 + parent: 377 + type: Transform + - uid: 283 + components: + - pos: 11.5,-1.5 + parent: 377 + type: Transform + - uid: 284 + components: + - pos: 11.5,-0.5 + parent: 377 + type: Transform + - uid: 285 + components: + - pos: 14.5,-0.5 + parent: 377 + type: Transform + - uid: 286 + components: + - pos: 14.5,-1.5 + parent: 377 + type: Transform + - uid: 287 + components: + - pos: 14.5,-2.5 + parent: 377 + type: Transform + - uid: 288 + components: + - pos: 13.5,-2.5 + parent: 377 + type: Transform + - uid: 289 + components: + - pos: 12.5,-2.5 + parent: 377 + type: Transform + - uid: 290 + components: + - pos: 11.5,-2.5 + parent: 377 + type: Transform + - uid: 291 + components: + - pos: 13.5,-3.5 + parent: 377 + type: Transform + - uid: 292 + components: + - pos: 13.5,-4.5 + parent: 377 + type: Transform + - uid: 293 + components: + - pos: 14.5,-4.5 + parent: 377 + type: Transform + - uid: 294 + components: + - pos: 15.5,-4.5 + parent: 377 + type: Transform + - uid: 295 + components: + - pos: 16.5,-4.5 + parent: 377 + type: Transform + - uid: 296 + components: + - pos: 17.5,-4.5 + parent: 377 + type: Transform + - uid: 297 + components: + - pos: 17.5,-3.5 + parent: 377 + type: Transform + - uid: 298 + components: + - pos: 17.5,-2.5 + parent: 377 + type: Transform + - uid: 299 + components: + - pos: 17.5,-1.5 + parent: 377 + type: Transform + - uid: 300 + components: + - pos: 17.5,-0.5 + parent: 377 + type: Transform + - uid: 301 + components: + - pos: 17.5,0.5 + parent: 377 + type: Transform +- proto: CableTerminal + entities: + - uid: 184 + components: + - pos: 11.5,-1.5 + parent: 377 + type: Transform + - uid: 185 + components: + - pos: 12.5,-1.5 + parent: 377 + type: Transform +- proto: Chair + entities: + - uid: 190 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-1.5 + parent: 377 + type: Transform +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 198 + components: + - pos: 3.5,-5.5 + parent: 377 + type: Transform +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 186 + components: + - pos: 13.488369,-2.4992185 + parent: 377 + type: Transform +- proto: ClothingHeadHatUshanka + entities: + - uid: 195 + components: + - pos: 6.550869,-5.4856668 + parent: 377 + type: Transform +- proto: ClothingHeadHatWeldingMaskFlame + entities: + - uid: 202 + components: + - pos: 0.644619,-0.46655655 + parent: 377 + type: Transform +- proto: ClothingMaskMuzzle + entities: + - uid: 155 + components: + - pos: 2.4795074,-7.162236 + parent: 377 + type: Transform +- proto: ClothingNeckScarfStripedGreen + entities: + - uid: 191 + components: + - rot: 1.5707963267948966 rad + pos: 6.566494,-1.607974 + parent: 377 + type: Transform +- proto: ComfyChair + entities: + - uid: 161 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-8.5 + parent: 377 + type: Transform + - uid: 162 + components: + - pos: 10.5,-6.5 + parent: 377 + type: Transform +- proto: ComputerTelevision + entities: + - uid: 25 + components: + - pos: 9.5,-1.5 + parent: 377 + type: Transform +- proto: DisposalBend + entities: + - uid: 207 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-7.5 + parent: 377 + type: Transform +- proto: DisposalPipe + entities: + - uid: 213 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-4.5 + parent: 377 + type: Transform + - uid: 214 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-4.5 + parent: 377 + type: Transform + - uid: 215 + components: + - pos: 17.5,-2.5 + parent: 377 + type: Transform + - uid: 216 + components: + - pos: 17.5,-1.5 + parent: 377 + type: Transform + - uid: 217 + components: + - pos: 17.5,-0.5 + parent: 377 + type: Transform +- proto: DisposalPipeBroken + entities: + - uid: 208 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-7.5 + parent: 377 + type: Transform + - uid: 209 + components: + - pos: 17.5,0.5 + parent: 377 + type: Transform + - uid: 210 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-3.5 + parent: 377 + type: Transform + - uid: 211 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-4.5 + parent: 377 + type: Transform + - uid: 212 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-4.5 + parent: 377 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 206 + components: + - pos: 12.5,-6.5 + parent: 377 + type: Transform +- proto: DisposalUnit + entities: + - uid: 204 + components: + - pos: 12.5,-6.5 + parent: 377 + type: Transform +- proto: Dresser + entities: + - uid: 128 + components: + - pos: 2.5,-7.5 + parent: 377 + type: Transform + - uid: 129 + components: + - pos: 4.5,-8.5 + parent: 377 + type: Transform + - uid: 130 + components: + - pos: 6.5,-7.5 + parent: 377 + type: Transform + - uid: 131 + components: + - pos: 8.5,-7.5 + parent: 377 + type: Transform + - uid: 132 + components: + - pos: 6.5,-12.5 + parent: 377 + type: Transform + - uid: 133 + components: + - pos: 8.5,-12.5 + parent: 377 + type: Transform +- proto: DrinkBottleVodka + entities: + - uid: 148 + components: + - rot: 1.5707963267948966 rad + pos: 7.9951324,-13.182042 + parent: 377 + type: Transform + - uid: 149 + components: + - rot: -1.5707963267948966 rad + pos: 7.5420074,-13.76057 + parent: 377 + type: Transform +- proto: DrinkVodkaBottleFull + entities: + - uid: 147 + components: + - pos: 8.557632,-12.838054 + parent: 377 + type: Transform +- proto: EmergencyLight + entities: + - uid: 235 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-3.5 + parent: 377 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 236 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 377 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight +- proto: Firelock + entities: + - uid: 33 + components: + - pos: 1.5,-3.5 + parent: 377 + type: Transform +- proto: FirelockGlass + entities: + - uid: 157 + components: + - pos: 9.5,-10.5 + parent: 377 + type: Transform +- proto: Floodlight + entities: + - uid: 237 + components: + - rot: -1.5707963267948966 rad + pos: 11.488369,-1.1643763 + parent: 377 + type: Transform +- proto: FloodlightBroken + entities: + - uid: 238 + components: + - rot: -1.5707963267948966 rad + pos: 12.144619,-1.4145498 + parent: 377 + type: Transform +- proto: FloorDrain + entities: + - uid: 125 + components: + - pos: 4.5,-13.5 + parent: 377 + type: Transform + - fixtures: {} + type: Fixtures +- proto: FoodCondimentBottleBBQ + entities: + - uid: 146 + components: + - pos: 6.3232574,-11.931173 + parent: 377 + type: Transform +- proto: FoodPizzaMoldySlice + entities: + - uid: 150 + components: + - pos: 8.463882,-7.115329 + parent: 377 + type: Transform +- proto: GasPipeBend + entities: + - uid: 249 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-10.5 + parent: 377 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 250 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-6.5 + parent: 377 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 260 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-4.5 + parent: 377 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 269 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 377 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 281 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-4.5 + parent: 377 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 251 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-6.5 + parent: 377 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 252 + components: + - pos: 12.5,-7.5 + parent: 377 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 253 + components: + - pos: 12.5,-8.5 + parent: 377 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 254 + components: + - pos: 12.5,-9.5 + parent: 377 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 255 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-10.5 + parent: 377 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 256 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 377 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 257 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 377 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 258 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 377 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 262 + components: + - pos: 17.5,-2.5 + parent: 377 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 263 + components: + - pos: 17.5,-1.5 + parent: 377 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 264 + components: + - pos: 17.5,-0.5 + parent: 377 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 265 + components: + - pos: 17.5,0.5 + parent: 377 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 266 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-4.5 + parent: 377 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 267 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-4.5 + parent: 377 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 271 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-9.5 + parent: 377 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 272 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 377 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 273 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 377 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 274 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 377 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 275 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 377 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 276 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 377 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 277 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 377 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 278 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-8.5 + parent: 377 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 279 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-8.5 + parent: 377 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 248 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-10.5 + parent: 377 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 259 + components: + - pos: 14.5,-4.5 + parent: 377 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 261 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-3.5 + parent: 377 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 268 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-8.5 + parent: 377 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 270 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 377 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 280 + components: + - pos: 10.5,-7.5 + parent: 377 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 245 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-4.5 + parent: 377 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 246 + components: + - pos: 11.5,-9.5 + parent: 377 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 247 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 377 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: Grille + entities: + - uid: 11 + components: + - pos: 2.5,-1.5 + parent: 377 + type: Transform + - uid: 12 + components: + - pos: 4.5,-3.5 + parent: 377 + type: Transform + - uid: 13 + components: + - pos: 5.5,-3.5 + parent: 377 + type: Transform + - uid: 14 + components: + - pos: 6.5,-3.5 + parent: 377 + type: Transform + - uid: 90 + components: + - pos: 13.5,-8.5 + parent: 377 + type: Transform + - uid: 91 + components: + - pos: 13.5,-6.5 + parent: 377 + type: Transform + - uid: 92 + components: + - pos: 10.5,-14.5 + parent: 377 + type: Transform + - uid: 93 + components: + - pos: 11.5,-14.5 + parent: 377 + type: Transform + - uid: 94 + components: + - pos: 7.5,-14.5 + parent: 377 + type: Transform + - uid: 95 + components: + - pos: 6.5,-14.5 + parent: 377 + type: Transform + - uid: 169 + components: + - pos: 13.5,-5.5 + parent: 377 + type: Transform +- proto: HatSpawner + entities: + - uid: 375 + components: + - pos: 17.5,-4.5 + parent: 377 + type: Transform +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 183 + components: + - pos: 14.5,-2.5 + parent: 377 + type: Transform +- proto: MaintenanceWeaponSpawner + entities: + - uid: 203 + components: + - pos: 0.5,0.5 + parent: 377 + type: Transform +- proto: MaterialWoodPlank + entities: + - uid: 32 + components: + - pos: 6.4870443,-2.2461634 + parent: 377 + type: Transform +- proto: MinimoogInstrument + entities: + - uid: 26 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 377 + type: Transform +- proto: PlushieSpaceLizard + entities: + - uid: 113 + components: + - pos: 10.417007,-13.04132 + parent: 377 + type: Transform +- proto: PosterContrabandCommunistState + entities: + - uid: 159 + components: + - pos: 8.5,-14.5 + parent: 377 + type: Transform +- proto: PosterLegitCleanliness + entities: + - uid: 117 + components: + - pos: 4.5,-11.5 + parent: 377 + type: Transform +- proto: PottedPlantRandom + entities: + - uid: 158 + components: + - pos: 2.5,-10.5 + parent: 377 + type: Transform +- proto: Poweredlight + entities: + - uid: 230 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-12.5 + parent: 377 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 231 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-9.5 + parent: 377 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredlightEmpty + entities: + - uid: 232 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 377 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 233 + components: + - pos: 12.5,-6.5 + parent: 377 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 234 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,0.5 + parent: 377 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLight + entities: + - uid: 223 + components: + - pos: 10.5,-4.5 + parent: 377 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 224 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 377 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 225 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 377 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 226 + components: + - pos: 3.5,-7.5 + parent: 377 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 227 + components: + - pos: 7.5,-7.5 + parent: 377 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 228 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-13.5 + parent: 377 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 229 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-13.5 + parent: 377 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: Rack + entities: + - uid: 34 + components: + - pos: 0.5,-0.5 + parent: 377 + type: Transform + - uid: 35 + components: + - pos: 0.5,0.5 + parent: 377 + type: Transform +- proto: Railing + entities: + - uid: 112 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-12.5 + parent: 377 + type: Transform + - uid: 114 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-12.5 + parent: 377 + type: Transform +- proto: RandomItem + entities: + - uid: 243 + components: + - pos: 10.5,-7.5 + parent: 377 + type: Transform +- proto: RandomPosterContraband + entities: + - uid: 218 + components: + - pos: 2.5,-0.5 + parent: 377 + type: Transform +- proto: RandomPosterLegit + entities: + - uid: 221 + components: + - pos: 16.5,0.5 + parent: 377 + type: Transform +- proto: RandomSnacks + entities: + - uid: 152 + components: + - pos: 6.5,-7.5 + parent: 377 + type: Transform +- proto: RandomSoap + entities: + - uid: 124 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-13.5 + parent: 377 + type: Transform +- proto: RandomVending + entities: + - uid: 188 + components: + - pos: 16.5,-0.5 + parent: 377 + type: Transform + - uid: 189 + components: + - pos: 16.5,-2.5 + parent: 377 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 15 + components: + - pos: 2.5,-1.5 + parent: 377 + type: Transform + - uid: 16 + components: + - pos: 4.5,-3.5 + parent: 377 + type: Transform + - uid: 17 + components: + - pos: 6.5,-3.5 + parent: 377 + type: Transform + - uid: 18 + components: + - pos: 5.5,-3.5 + parent: 377 + type: Transform + - uid: 96 + components: + - pos: 7.5,-14.5 + parent: 377 + type: Transform + - uid: 97 + components: + - pos: 6.5,-14.5 + parent: 377 + type: Transform + - uid: 98 + components: + - pos: 10.5,-14.5 + parent: 377 + type: Transform + - uid: 99 + components: + - pos: 11.5,-14.5 + parent: 377 + type: Transform + - uid: 100 + components: + - pos: 13.5,-8.5 + parent: 377 + type: Transform + - uid: 101 + components: + - pos: 13.5,-6.5 + parent: 377 + type: Transform + - uid: 170 + components: + - pos: 13.5,-5.5 + parent: 377 + type: Transform +- proto: SalvageCanisterSpawner + entities: + - uid: 199 + components: + - pos: 2.5,-5.5 + parent: 377 + type: Transform +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 379 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 377 + type: Transform +- proto: SalvageLorePaperGamingSpawner + entities: + - uid: 222 + components: + - pos: 5.5,-2.5 + parent: 377 + type: Transform +- proto: SchoolgirlUniformSpawner + entities: + - uid: 151 + components: + - pos: 7.5,-7.5 + parent: 377 + type: Transform + - uid: 153 + components: + - pos: 3.5,-7.5 + parent: 377 + type: Transform +- proto: ShardGlass + entities: + - uid: 239 + components: + - rot: -1.5707963267948966 rad + pos: 14.207119,-1.4927292 + parent: 377 + type: Transform + - uid: 240 + components: + - rot: -1.5707963267948966 rad + pos: 17.597744,-0.022958755 + parent: 377 + type: Transform + - uid: 241 + components: + - rot: -1.5707963267948966 rad + pos: 12.410244,-6.9652796 + parent: 377 + type: Transform + - uid: 242 + components: + - rot: -1.5707963267948966 rad + pos: 2.613369,-10.248811 + parent: 377 + type: Transform +- proto: SignBar + entities: + - uid: 192 + components: + - pos: 10.5,-3.5 + parent: 377 + type: Transform +- proto: SignDirectionalDorms + entities: + - uid: 205 + components: + - pos: 14.5,-3.5 + parent: 377 + type: Transform +- proto: SinkEmpty + entities: + - uid: 116 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 377 + type: Transform +- proto: SMESBasicEmpty + entities: + - uid: 180 + components: + - pos: 11.5,-2.5 + parent: 377 + type: Transform + - uid: 181 + components: + - pos: 12.5,-2.5 + parent: 377 + type: Transform +- proto: soda_dispenser + entities: + - uid: 31 + components: + - pos: 3.5,-0.5 + parent: 377 + type: Transform +- proto: SpawnMobBearSalvage + entities: + - uid: 244 + components: + - pos: 3.5,-10.5 + parent: 377 + type: Transform +- proto: SpawnMobCarp + entities: + - uid: 378 + components: + - pos: 8.5,-5.5 + parent: 377 + type: Transform +- proto: SprayBottleSpaceCleaner + entities: + - uid: 127 + components: + - pos: 4.8701324,-13.400945 + parent: 377 + type: Transform +- proto: StoolBar + entities: + - uid: 27 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 377 + type: Transform + - uid: 28 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 377 + type: Transform + - uid: 196 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 377 + type: Transform + - uid: 197 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 377 + type: Transform +- proto: Table + entities: + - uid: 182 + components: + - pos: 13.5,-2.5 + parent: 377 + type: Transform +- proto: TableWood + entities: + - uid: 21 + components: + - pos: 3.5,-0.5 + parent: 377 + type: Transform + - uid: 22 + components: + - pos: 4.5,-0.5 + parent: 377 + type: Transform + - uid: 23 + components: + - pos: 6.5,-2.5 + parent: 377 + type: Transform + - uid: 24 + components: + - pos: 6.5,-1.5 + parent: 377 + type: Transform + - uid: 163 + components: + - pos: 10.5,-7.5 + parent: 377 + type: Transform + - uid: 194 + components: + - pos: 6.5,-5.5 + parent: 377 + type: Transform +- proto: ToiletDirtyWater + entities: + - uid: 115 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 377 + type: Transform +- proto: ToolboxElectricalFilled + entities: + - uid: 187 + components: + - pos: 13.535244,-2.202137 + parent: 377 + type: Transform +- proto: ToyMouse + entities: + - uid: 156 + components: + - pos: 2.5263824,-7.8658504 + parent: 377 + type: Transform +- proto: VendingMachineBooze + entities: + - uid: 29 + components: + - flags: SessionSpecific + type: MetaData + - pos: 3.5,-2.5 + parent: 377 + type: Transform +- proto: VendingMachineGames + entities: + - uid: 160 + components: + - flags: SessionSpecific + type: MetaData + - pos: 12.5,-11.5 + parent: 377 + type: Transform +- proto: WallReinforced + entities: + - uid: 1 + components: + - pos: 10.5,-0.5 + parent: 377 + type: Transform + - uid: 2 + components: + - pos: 10.5,-1.5 + parent: 377 + type: Transform + - uid: 3 + components: + - pos: 10.5,-2.5 + parent: 377 + type: Transform + - uid: 4 + components: + - pos: 10.5,-3.5 + parent: 377 + type: Transform + - uid: 36 + components: + - pos: 0.5,-6.5 + parent: 377 + type: Transform + - uid: 37 + components: + - pos: 0.5,-5.5 + parent: 377 + type: Transform + - uid: 38 + components: + - pos: 0.5,-4.5 + parent: 377 + type: Transform + - uid: 39 + components: + - pos: 0.5,-3.5 + parent: 377 + type: Transform + - uid: 40 + components: + - pos: 0.5,-2.5 + parent: 377 + type: Transform + - uid: 41 + components: + - pos: 0.5,-1.5 + parent: 377 + type: Transform + - uid: 42 + components: + - pos: -0.5,-1.5 + parent: 377 + type: Transform + - uid: 43 + components: + - pos: -0.5,-0.5 + parent: 377 + type: Transform + - uid: 44 + components: + - pos: -0.5,0.5 + parent: 377 + type: Transform + - uid: 46 + components: + - pos: -2.5,0.5 + parent: 377 + type: Transform + - uid: 47 + components: + - pos: -2.5,1.5 + parent: 377 + type: Transform + - uid: 48 + components: + - pos: -0.5,1.5 + parent: 377 + type: Transform + - uid: 58 + components: + - pos: 1.5,-6.5 + parent: 377 + type: Transform + - uid: 59 + components: + - pos: 1.5,-7.5 + parent: 377 + type: Transform + - uid: 60 + components: + - pos: 1.5,-8.5 + parent: 377 + type: Transform + - uid: 61 + components: + - pos: 1.5,-9.5 + parent: 377 + type: Transform + - uid: 62 + components: + - pos: 1.5,-10.5 + parent: 377 + type: Transform + - uid: 63 + components: + - pos: 1.5,-11.5 + parent: 377 + type: Transform + - uid: 64 + components: + - pos: 1.5,-12.5 + parent: 377 + type: Transform + - uid: 65 + components: + - pos: 1.5,-13.5 + parent: 377 + type: Transform + - uid: 66 + components: + - pos: 2.5,-13.5 + parent: 377 + type: Transform + - uid: 67 + components: + - pos: 2.5,-14.5 + parent: 377 + type: Transform + - uid: 68 + components: + - pos: 3.5,-14.5 + parent: 377 + type: Transform + - uid: 69 + components: + - pos: 4.5,-14.5 + parent: 377 + type: Transform + - uid: 70 + components: + - pos: 5.5,-14.5 + parent: 377 + type: Transform + - uid: 71 + components: + - pos: 12.5,-14.5 + parent: 377 + type: Transform + - uid: 72 + components: + - pos: 8.5,-14.5 + parent: 377 + type: Transform + - uid: 73 + components: + - pos: 9.5,-14.5 + parent: 377 + type: Transform + - uid: 164 + components: + - pos: 11.5,-3.5 + parent: 377 + type: Transform + - uid: 171 + components: + - pos: 12.5,-3.5 + parent: 377 + type: Transform + - uid: 172 + components: + - pos: 13.5,-3.5 + parent: 377 + type: Transform + - uid: 173 + components: + - pos: 14.5,-3.5 + parent: 377 + type: Transform + - uid: 174 + components: + - pos: 15.5,-3.5 + parent: 377 + type: Transform + - uid: 175 + components: + - pos: 15.5,-2.5 + parent: 377 + type: Transform + - uid: 176 + components: + - pos: 15.5,-1.5 + parent: 377 + type: Transform + - uid: 177 + components: + - pos: 15.5,-0.5 + parent: 377 + type: Transform + - uid: 178 + components: + - pos: 15.5,0.5 + parent: 377 + type: Transform + - uid: 179 + components: + - pos: 16.5,0.5 + parent: 377 + type: Transform +- proto: WallSolid + entities: + - uid: 5 + components: + - pos: 9.5,-3.5 + parent: 377 + type: Transform + - uid: 6 + components: + - pos: 7.5,-3.5 + parent: 377 + type: Transform + - uid: 7 + components: + - pos: 3.5,-3.5 + parent: 377 + type: Transform + - uid: 8 + components: + - pos: 2.5,-3.5 + parent: 377 + type: Transform + - uid: 9 + components: + - pos: 2.5,-2.5 + parent: 377 + type: Transform + - uid: 10 + components: + - pos: 2.5,-0.5 + parent: 377 + type: Transform + - uid: 49 + components: + - pos: 2.5,-6.5 + parent: 377 + type: Transform + - uid: 50 + components: + - pos: 3.5,-6.5 + parent: 377 + type: Transform + - uid: 51 + components: + - pos: 4.5,-6.5 + parent: 377 + type: Transform + - uid: 52 + components: + - pos: 5.5,-6.5 + parent: 377 + type: Transform + - uid: 53 + components: + - pos: 6.5,-6.5 + parent: 377 + type: Transform + - uid: 54 + components: + - pos: 7.5,-6.5 + parent: 377 + type: Transform + - uid: 55 + components: + - pos: 8.5,-6.5 + parent: 377 + type: Transform + - uid: 56 + components: + - pos: 9.5,-6.5 + parent: 377 + type: Transform + - uid: 57 + components: + - pos: 9.5,-5.5 + parent: 377 + type: Transform + - uid: 74 + components: + - pos: 5.5,-7.5 + parent: 377 + type: Transform + - uid: 75 + components: + - pos: 5.5,-8.5 + parent: 377 + type: Transform + - uid: 76 + components: + - pos: 5.5,-9.5 + parent: 377 + type: Transform + - uid: 77 + components: + - pos: 2.5,-9.5 + parent: 377 + type: Transform + - uid: 78 + components: + - pos: 4.5,-9.5 + parent: 377 + type: Transform + - uid: 79 + components: + - pos: 6.5,-9.5 + parent: 377 + type: Transform + - uid: 80 + components: + - pos: 8.5,-9.5 + parent: 377 + type: Transform + - uid: 81 + components: + - pos: 9.5,-9.5 + parent: 377 + type: Transform + - uid: 82 + components: + - pos: 9.5,-8.5 + parent: 377 + type: Transform + - uid: 83 + components: + - pos: 9.5,-7.5 + parent: 377 + type: Transform + - uid: 84 + components: + - pos: 12.5,-13.5 + parent: 377 + type: Transform + - uid: 85 + components: + - pos: 12.5,-12.5 + parent: 377 + type: Transform + - uid: 86 + components: + - pos: 13.5,-12.5 + parent: 377 + type: Transform + - uid: 87 + components: + - pos: 13.5,-11.5 + parent: 377 + type: Transform + - uid: 88 + components: + - pos: 13.5,-10.5 + parent: 377 + type: Transform + - uid: 89 + components: + - pos: 13.5,-9.5 + parent: 377 + type: Transform + - uid: 102 + components: + - pos: 2.5,-11.5 + parent: 377 + type: Transform + - uid: 103 + components: + - pos: 4.5,-11.5 + parent: 377 + type: Transform + - uid: 104 + components: + - pos: 5.5,-11.5 + parent: 377 + type: Transform + - uid: 105 + components: + - pos: 6.5,-11.5 + parent: 377 + type: Transform + - uid: 106 + components: + - pos: 5.5,-12.5 + parent: 377 + type: Transform + - uid: 107 + components: + - pos: 5.5,-13.5 + parent: 377 + type: Transform + - uid: 108 + components: + - pos: 8.5,-11.5 + parent: 377 + type: Transform + - uid: 109 + components: + - pos: 9.5,-11.5 + parent: 377 + type: Transform + - uid: 110 + components: + - pos: 9.5,-12.5 + parent: 377 + type: Transform + - uid: 111 + components: + - pos: 9.5,-13.5 + parent: 377 + type: Transform + - uid: 166 + components: + - pos: 10.5,-5.5 + parent: 377 + type: Transform + - uid: 167 + components: + - pos: 11.5,-5.5 + parent: 377 + type: Transform + - uid: 168 + components: + - pos: 12.5,-5.5 + parent: 377 + type: Transform +- proto: WaterTankFull + entities: + - uid: 200 + components: + - pos: 1.5,-5.5 + parent: 377 + type: Transform +- proto: Welder + entities: + - uid: 201 + components: + - pos: 0.566494,-0.41964865 + parent: 377 + type: Transform +- proto: Windoor + entities: + - uid: 123 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-13.5 + parent: 377 + type: Transform + - uid: 376 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 377 + type: Transform +- proto: WindowDirectional + entities: + - uid: 122 + components: + - pos: 4.5,-12.5 + parent: 377 + type: Transform +- proto: WoodDoor + entities: + - uid: 118 + components: + - pos: 3.5,-9.5 + parent: 377 + type: Transform + - uid: 119 + components: + - pos: 7.5,-9.5 + parent: 377 + type: Transform + - uid: 120 + components: + - pos: 7.5,-11.5 + parent: 377 + type: Transform + - uid: 121 + components: + - pos: 3.5,-11.5 + parent: 377 + type: Transform +- proto: Zipties + entities: + - uid: 154 + components: + - pos: 2.3545074,-8.538192 + parent: 377 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-atlas-epi.yml b/Resources/Maps/Salvage/DeltaV/DV-atlas-epi.yml new file mode 100644 index 0000000000..4b4214edfe --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-atlas-epi.yml @@ -0,0 +1,3720 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 27: FloorDark + 45: FloorGrass + 72: FloorReinforced + 84: FloorSteel + 96: FloorTechMaint + 100: FloorWhite + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 550 + components: + - type: MetaData + - pos: 0.6875,0.5390892 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGwAAAAAC + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGwAAAAACGwAAAAACGwAAAAABSAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAABGwAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGwAAAAADGwAAAAAAGwAAAAABVAAAAAADVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAACGwAAAAABGwAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAABcQAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAADGwAAAAADcQAAAAAAZAAAAAACZAAAAAACZAAAAAABGwAAAAACGwAAAAACGwAAAAACGwAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAABGwAAAAACGwAAAAADGwAAAAAAGwAAAAADGwAAAAACZAAAAAADZAAAAAACZAAAAAADGwAAAAACGwAAAAADGwAAAAAAGwAAAAACGwAAAAACGwAAAAABcQAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAAAGwAAAAACcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAABGwAAAAABcQAAAAAAZAAAAAACGwAAAAACGwAAAAADcQAAAAAAGwAAAAAAZAAAAAACZAAAAAABZAAAAAADZAAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAABGwAAAAABcQAAAAAAZAAAAAABGwAAAAAAGwAAAAADcQAAAAAAGwAAAAAAZAAAAAACZAAAAAAAZAAAAAADZAAAAAACcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZAAAAAABGwAAAAAC + version: 6 + 0,0: + ind: 0,0 + tiles: cQAAAAAAGwAAAAAAZAAAAAACZAAAAAADZAAAAAABZAAAAAADcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAALQAAAAAAcQAAAAAAZAAAAAACZAAAAAADGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAADLQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: GwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 84: 13,-3 + - node: + color: '#8932B8FF' + id: CheckerNWSE + decals: + 0: 2,0 + 1: 3,0 + 2: 4,0 + 3: 5,0 + 4: 5,-1 + 5: 4,-1 + 6: 3,-1 + 7: 2,-1 + 8: 2,-2 + 9: 3,-2 + 10: 4,-2 + 11: 5,-2 + 12: 3,-3 + - node: + color: '#D381C996' + id: CheckerNWSE + decals: + 13: 13,-5 + 14: 14,-5 + 15: 15,-5 + 16: 16,-5 + 17: 16,-6 + 18: 15,-6 + 19: 14,-6 + 20: 13,-6 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 90: 2,-10 + 91: 4,-11 + 92: 4,-12 + 93: 7,-11 + 94: 6,-11 + 95: 5,-10 + 96: 16,-8 + 97: 15,-8 + 98: 15,-8 + 99: 14,-8 + 100: 3,-8 + 101: 2,-8 + 102: 2,-6 + 103: 2,-4 + 104: 1,-4 + 105: 1,-4 + 106: -1,-3 + 107: -1,-2 + 108: -1,2 + 109: 0,2 + 110: 1,2 + 111: -1,2 + 112: -1,2 + 113: 6,2 + 114: 7,2 + 115: 9,2 + 116: 10,2 + 117: 11,2 + 118: 10,1 + 119: 9,0 + 120: 8,0 + 121: 8,1 + 122: 8,1 + 123: 8,-1 + 124: 8,-3 + 125: 8,-4 + 126: 14,-6 + 127: 15,-6 + 128: 16,-6 + 129: 16,-6 + 130: 16,-6 + 131: 15,-6 + 132: 15,-5 + 133: 16,-5 + 134: 16,-5 + 135: 15,-5 + 136: 14,-5 + 137: 13,-6 + 138: 13,-6 + 139: 11,-5 + 140: 11,-5 + 141: 10,-5 + 142: 8,-6 + 143: 7,-6 + 144: 5,-6 + 145: 4,-5 + 146: 4,-5 + 147: 3,-4 + 148: 14,0 + 149: 14,0 + 150: 13,0 + 151: 14,2 + 152: 15,2 + 153: 16,2 + 154: 16,2 + 155: 15,2 + 156: 12,2 + 157: 11,2 + 158: 9,1 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 88: 11.104581,0.0055737495 + 89: 11.151456,0.7717309 + - node: + color: '#FFFFFFFF' + id: Grassd2 + decals: + 87: 11.057706,0.52155733 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 85: 11,1 + 86: 11,0 + - node: + color: '#FFFFFFFF' + id: HalfTileOverlayGreyscale + decals: + 50: 4,-10 + 51: 3,-10 + 52: 2,-10 + 53: 1,-10 + 54: 4,-4 + 55: 3,-4 + 56: 2,-4 + 57: 1,-4 + 58: 0,-4 + 59: 8,-2 + 60: 9,-2 + 61: 10,-2 + - node: + color: '#FFFFFFFF' + id: HalfTileOverlayGreyscale180 + decals: + 41: 16,2 + 42: 2,-6 + 43: 3,-6 + 44: 4,-6 + 45: 8,-6 + 46: 9,-6 + 47: 10,-6 + 48: 4,-13 + 49: 3,-13 + - node: + color: '#FFFFFFFF' + id: HalfTileOverlayGreyscale270 + decals: + 68: 7,-4 + 69: 7,-3 + - node: + color: '#FFFFFFFF' + id: HalfTileOverlayGreyscale90 + decals: + 62: -1,-3 + 63: -1,-2 + 64: -1,-1 + 66: 11,-4 + 67: 11,-3 + - node: + color: '#1D1D21FF' + id: QuarterTileOverlayGreyscale + decals: + 21: 13,0 + 22: 14,0 + 23: 14,-1 + 24: 13,-1 + 25: 13,-2 + 26: 13,-3 + - node: + color: '#FFFFFFFF' + id: QuarterTileOverlayGreyscale180 + decals: + 34: 2,2 + 35: 1,2 + 36: 0,2 + 38: 13,2 + 39: 14,2 + 40: 15,2 + - node: + color: '#FFFFFFFF' + id: QuarterTileOverlayGreyscale270 + decals: + 27: 10,0 + 28: 9,0 + 29: 7,0 + 30: 7,1 + 31: 6,2 + 32: 5,2 + 33: 4,2 + 37: -1,1 + - node: + color: '#FFFFFFFF' + id: QuarterTileOverlayGreyscale90 + decals: + 65: -1,-4 + - node: + color: '#FFFFFFFF' + id: ThreeQuarterTileOverlayGreyscale + decals: + 70: 7,-2 + - node: + color: '#FFFFFFFF' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 72: 11,-6 + 75: 5,-6 + - node: + color: '#FFFFFFFF' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 73: 7,-6 + - node: + color: '#FFFFFFFF' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 71: 11,-2 + 74: 5,-4 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 80: 5,-10 + 81: 5,-11 + 82: 7,-10 + 83: 7,-11 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 76: 5,-10 + 77: 5,-11 + 78: 7,-10 + 79: 7,-11 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-2: + 0: 51200 + -1,-1: + 0: 51336 + 0,-2: + 0: 65228 + 0,-1: + 0: 65535 + -1,-3: + 0: 8 + 0,-3: + 0: 61167 + 0,-4: + 0: 51328 + 1,-4: + 0: 13300 + 1: 52224 + 1,-3: + 0: 65535 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-4: + 0: 61055 + 1: 4352 + 2,-3: + 0: 65535 + 2,-2: + 0: 65535 + 2,-1: + 0: 65535 + 3,-4: + 0: 24335 + 3,-3: + 0: 13685 + 3,-2: + 0: 65535 + 3,-1: + 0: 65535 + 0,0: + 0: 8191 + 1,0: + 0: 36863 + 2,0: + 0: 12287 + 3,0: + 0: 28671 + 3,1: + 0: 3 + 4,0: + 0: 881 + 4,-2: + 0: 5937 + 4,-1: + 0: 12563 + -1,0: + 0: 51340 + -1,1: + 0: 4 + 1,-5: + 0: 17408 + 2,-5: + 0: 4352 + 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.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - type: SpreaderGrid +- proto: AirAlarm + entities: + - uid: 272 + components: + - pos: 10.5,-6.5 + parent: 550 + type: Transform +- proto: AirlockEngineeringLocked + entities: + - uid: 187 + components: + - pos: 11.5,-8.5 + parent: 550 + type: Transform +- proto: AirlockGlass + entities: + - uid: 41 + components: + - pos: 16.5,1.5 + parent: 550 + type: Transform + - uid: 103 + components: + - pos: 12.5,2.5 + parent: 550 + type: Transform +- proto: AirlockMaint + entities: + - uid: 186 + components: + - pos: 4.5,-7.5 + parent: 550 + type: Transform +- proto: AirlockMaintRnDLocked + entities: + - uid: 95 + components: + - pos: 14.5,-6.5 + parent: 550 + type: Transform +- proto: AirlockResearchDirectorGlassLocked + entities: + - uid: 83 + components: + - pos: 3.5,-2.5 + parent: 550 + type: Transform +- proto: AirlockScienceGlassLocked + entities: + - uid: 91 + components: + - pos: 2.5,-6.5 + parent: 550 + type: Transform + - uid: 92 + components: + - pos: 6.5,-4.5 + parent: 550 + type: Transform + - uid: 93 + components: + - pos: 12.5,-4.5 + parent: 550 + type: Transform + - uid: 94 + components: + - pos: 14.5,-3.5 + parent: 550 + type: Transform + - uid: 184 + components: + - pos: 5.5,-12.5 + parent: 550 + type: Transform + - uid: 185 + components: + - pos: 2.5,-8.5 + parent: 550 + type: Transform +- proto: AltarSpawner + entities: + - uid: 122 + components: + - pos: 16.5,-2.5 + parent: 550 + type: Transform +- proto: APCBasic + entities: + - uid: 100 + components: + - pos: 0.5,-2.5 + parent: 550 + type: Transform +- proto: AtmosFixPlasmaMarker + entities: + - uid: 249 + components: + - pos: 6.5,-12.5 + parent: 550 + type: Transform + - uid: 250 + components: + - pos: 6.5,-13.5 + parent: 550 + type: Transform + - uid: 251 + components: + - pos: 7.5,-12.5 + parent: 550 + type: Transform + - uid: 252 + components: + - pos: 7.5,-13.5 + parent: 550 + type: Transform + - uid: 253 + components: + - pos: 8.5,-12.5 + parent: 550 + type: Transform + - uid: 254 + components: + - pos: 8.5,-13.5 + parent: 550 + type: Transform +- proto: BlastDoor + entities: + - uid: 183 + components: + - pos: 7.5,-14.5 + parent: 550 + type: Transform + - links: + - 260 + type: DeviceLinkSink +- proto: BluespaceBeaker + entities: + - uid: 139 + components: + - pos: 1.3931751,-0.3905487 + parent: 550 + type: Transform +- proto: CableApcExtension + entities: + - uid: 330 + components: + - pos: -0.5,-2.5 + parent: 550 + type: Transform + - uid: 331 + components: + - pos: 0.5,-2.5 + parent: 550 + type: Transform + - uid: 332 + components: + - pos: 0.5,-3.5 + parent: 550 + type: Transform + - uid: 333 + components: + - pos: -0.5,-3.5 + parent: 550 + type: Transform + - uid: 334 + components: + - pos: 0.5,-4.5 + parent: 550 + type: Transform + - uid: 335 + components: + - pos: 1.5,-4.5 + parent: 550 + type: Transform + - uid: 336 + components: + - pos: 2.5,-4.5 + parent: 550 + type: Transform + - uid: 337 + components: + - pos: 3.5,-4.5 + parent: 550 + type: Transform + - uid: 338 + components: + - pos: 4.5,-4.5 + parent: 550 + type: Transform + - uid: 339 + components: + - pos: 5.5,-4.5 + parent: 550 + type: Transform + - uid: 340 + components: + - pos: 6.5,-4.5 + parent: 550 + type: Transform + - uid: 341 + components: + - pos: 7.5,-4.5 + parent: 550 + type: Transform + - uid: 342 + components: + - pos: 8.5,-4.5 + parent: 550 + type: Transform + - uid: 343 + components: + - pos: 9.5,-4.5 + parent: 550 + type: Transform + - uid: 344 + components: + - pos: 10.5,-4.5 + parent: 550 + type: Transform + - uid: 345 + components: + - pos: 11.5,-4.5 + parent: 550 + type: Transform + - uid: 346 + components: + - pos: 3.5,-3.5 + parent: 550 + type: Transform + - uid: 347 + components: + - pos: 3.5,-2.5 + parent: 550 + type: Transform + - uid: 348 + components: + - pos: 3.5,-1.5 + parent: 550 + type: Transform + - uid: 349 + components: + - pos: 3.5,-0.5 + parent: 550 + type: Transform + - uid: 350 + components: + - pos: 3.5,0.5 + parent: 550 + type: Transform + - uid: 351 + components: + - pos: 2.5,-0.5 + parent: 550 + type: Transform + - uid: 352 + components: + - pos: 1.5,-0.5 + parent: 550 + type: Transform + - uid: 353 + components: + - pos: 4.5,-0.5 + parent: 550 + type: Transform + - uid: 354 + components: + - pos: 5.5,-0.5 + parent: 550 + type: Transform + - uid: 355 + components: + - pos: 9.5,-3.5 + parent: 550 + type: Transform + - uid: 356 + components: + - pos: 9.5,-2.5 + parent: 550 + type: Transform + - uid: 357 + components: + - pos: 9.5,-1.5 + parent: 550 + type: Transform + - uid: 358 + components: + - pos: 10.5,0.5 + parent: 550 + type: Transform + - uid: 359 + components: + - pos: 8.5,-2.5 + parent: 550 + type: Transform + - uid: 360 + components: + - pos: 7.5,-2.5 + parent: 550 + type: Transform + - uid: 361 + components: + - pos: 9.5,0.5 + parent: 550 + type: Transform + - uid: 362 + components: + - pos: 8.5,0.5 + parent: 550 + type: Transform + - uid: 363 + components: + - pos: 8.5,1.5 + parent: 550 + type: Transform + - uid: 364 + components: + - pos: 8.5,2.5 + parent: 550 + type: Transform + - uid: 365 + components: + - pos: 9.5,2.5 + parent: 550 + type: Transform + - uid: 367 + components: + - pos: 7.5,2.5 + parent: 550 + type: Transform + - uid: 368 + components: + - pos: 6.5,2.5 + parent: 550 + type: Transform + - uid: 369 + components: + - pos: 5.5,2.5 + parent: 550 + type: Transform + - uid: 370 + components: + - pos: 4.5,2.5 + parent: 550 + type: Transform + - uid: 371 + components: + - pos: 3.5,2.5 + parent: 550 + type: Transform + - uid: 372 + components: + - pos: 2.5,2.5 + parent: 550 + type: Transform + - uid: 373 + components: + - pos: 1.5,2.5 + parent: 550 + type: Transform + - uid: 374 + components: + - pos: 0.5,2.5 + parent: 550 + type: Transform + - uid: 375 + components: + - pos: -0.5,2.5 + parent: 550 + type: Transform + - uid: 376 + components: + - pos: 16.5,2.5 + parent: 550 + type: Transform + - uid: 377 + components: + - pos: 16.5,1.5 + parent: 550 + type: Transform + - uid: 378 + components: + - pos: 16.5,0.5 + parent: 550 + type: Transform + - uid: 379 + components: + - pos: 15.5,0.5 + parent: 550 + type: Transform + - uid: 380 + components: + - pos: 14.5,0.5 + parent: 550 + type: Transform + - uid: 381 + components: + - pos: 13.5,0.5 + parent: 550 + type: Transform + - uid: 382 + components: + - pos: 14.5,-0.5 + parent: 550 + type: Transform + - uid: 383 + components: + - pos: 14.5,-1.5 + parent: 550 + type: Transform + - uid: 384 + components: + - pos: 14.5,-2.5 + parent: 550 + type: Transform + - uid: 385 + components: + - pos: 14.5,-4.5 + parent: 550 + type: Transform + - uid: 386 + components: + - pos: 14.5,-5.5 + parent: 550 + type: Transform + - uid: 387 + components: + - pos: 14.5,-6.5 + parent: 550 + type: Transform + - uid: 388 + components: + - pos: 14.5,-7.5 + parent: 550 + type: Transform + - uid: 389 + components: + - pos: 15.5,-7.5 + parent: 550 + type: Transform + - uid: 390 + components: + - pos: 16.5,-7.5 + parent: 550 + type: Transform + - uid: 391 + components: + - pos: 13.5,-7.5 + parent: 550 + type: Transform + - uid: 392 + components: + - pos: 11.5,-11.5 + parent: 550 + type: Transform + - uid: 393 + components: + - pos: 11.5,-10.5 + parent: 550 + type: Transform + - uid: 394 + components: + - pos: 11.5,-9.5 + parent: 550 + type: Transform + - uid: 395 + components: + - pos: 11.5,-8.5 + parent: 550 + type: Transform + - uid: 396 + components: + - pos: 11.5,-7.5 + parent: 550 + type: Transform + - uid: 397 + components: + - pos: 10.5,-7.5 + parent: 550 + type: Transform + - uid: 398 + components: + - pos: 9.5,-7.5 + parent: 550 + type: Transform + - uid: 399 + components: + - pos: 8.5,-7.5 + parent: 550 + type: Transform + - uid: 400 + components: + - pos: 7.5,-7.5 + parent: 550 + type: Transform + - uid: 401 + components: + - pos: 6.5,-7.5 + parent: 550 + type: Transform + - uid: 402 + components: + - pos: 5.5,-7.5 + parent: 550 + type: Transform + - uid: 403 + components: + - pos: 4.5,-7.5 + parent: 550 + type: Transform + - uid: 404 + components: + - pos: 3.5,-7.5 + parent: 550 + type: Transform + - uid: 405 + components: + - pos: 2.5,-7.5 + parent: 550 + type: Transform + - uid: 406 + components: + - pos: 2.5,-8.5 + parent: 550 + type: Transform + - uid: 407 + components: + - pos: 2.5,-9.5 + parent: 550 + type: Transform + - uid: 408 + components: + - pos: 1.5,-9.5 + parent: 550 + type: Transform + - uid: 409 + components: + - pos: 2.5,-10.5 + parent: 550 + type: Transform + - uid: 410 + components: + - pos: 3.5,-12.5 + parent: 550 + type: Transform + - uid: 411 + components: + - pos: 4.5,-12.5 + parent: 550 + type: Transform + - uid: 412 + components: + - pos: 5.5,-12.5 + parent: 550 + type: Transform + - uid: 413 + components: + - pos: 6.5,-12.5 + parent: 550 + type: Transform + - uid: 414 + components: + - pos: 7.5,-12.5 + parent: 550 + type: Transform + - uid: 415 + components: + - pos: 8.5,-12.5 + parent: 550 + type: Transform + - uid: 416 + components: + - pos: 8.5,-13.5 + parent: 550 + type: Transform + - uid: 471 + components: + - pos: 10.5,2.5 + parent: 550 + type: Transform +- proto: CableHV + entities: + - uid: 199 + components: + - pos: 11.5,-15.5 + parent: 550 + type: Transform + - uid: 200 + components: + - pos: 12.5,-15.5 + parent: 550 + type: Transform + - uid: 201 + components: + - pos: 13.5,-15.5 + parent: 550 + type: Transform + - uid: 202 + components: + - pos: 14.5,-15.5 + parent: 550 + type: Transform + - uid: 203 + components: + - pos: 15.5,-15.5 + parent: 550 + type: Transform + - uid: 204 + components: + - pos: 10.5,-13.5 + parent: 550 + type: Transform + - uid: 205 + components: + - pos: 11.5,-13.5 + parent: 550 + type: Transform + - uid: 206 + components: + - pos: 12.5,-13.5 + parent: 550 + type: Transform + - uid: 207 + components: + - pos: 13.5,-13.5 + parent: 550 + type: Transform + - uid: 208 + components: + - pos: 14.5,-13.5 + parent: 550 + type: Transform + - uid: 209 + components: + - pos: 15.5,-13.5 + parent: 550 + type: Transform + - uid: 210 + components: + - pos: 11.5,-10.5 + parent: 550 + type: Transform + - uid: 211 + components: + - pos: 12.5,-10.5 + parent: 550 + type: Transform + - uid: 212 + components: + - pos: 13.5,-10.5 + parent: 550 + type: Transform + - uid: 213 + components: + - pos: 14.5,-12.5 + parent: 550 + type: Transform + - uid: 214 + components: + - pos: 14.5,-11.5 + parent: 550 + type: Transform + - uid: 215 + components: + - pos: 14.5,-10.5 + parent: 550 + type: Transform + - uid: 222 + components: + - pos: 10.5,-10.5 + parent: 550 + type: Transform + - uid: 223 + components: + - pos: 10.5,-9.5 + parent: 550 + type: Transform + - uid: 224 + components: + - pos: 10.5,-8.5 + parent: 550 + type: Transform + - uid: 225 + components: + - pos: 11.5,-8.5 + parent: 550 + type: Transform + - uid: 226 + components: + - pos: 11.5,-7.5 + parent: 550 + type: Transform + - uid: 227 + components: + - pos: 12.5,-7.5 + parent: 550 + type: Transform + - uid: 228 + components: + - pos: 13.5,-7.5 + parent: 550 + type: Transform + - uid: 229 + components: + - pos: 14.5,-7.5 + parent: 550 + type: Transform + - uid: 230 + components: + - pos: 15.5,-7.5 + parent: 550 + type: Transform + - uid: 231 + components: + - pos: 16.5,-7.5 + parent: 550 + type: Transform + - uid: 232 + components: + - pos: 10.5,-7.5 + parent: 550 + type: Transform + - uid: 233 + components: + - pos: 9.5,-7.5 + parent: 550 + type: Transform + - uid: 234 + components: + - pos: 8.5,-7.5 + parent: 550 + type: Transform + - uid: 235 + components: + - pos: 7.5,-7.5 + parent: 550 + type: Transform + - uid: 236 + components: + - pos: 6.5,-7.5 + parent: 550 + type: Transform + - uid: 237 + components: + - pos: 5.5,-7.5 + parent: 550 + type: Transform + - uid: 238 + components: + - pos: 4.5,-7.5 + parent: 550 + type: Transform + - uid: 239 + components: + - pos: 3.5,-7.5 + parent: 550 + type: Transform + - uid: 240 + components: + - pos: 2.5,-7.5 + parent: 550 + type: Transform + - uid: 433 + components: + - pos: 16.5,2.5 + parent: 550 + type: Transform + - uid: 434 + components: + - pos: 16.5,1.5 + parent: 550 + type: Transform + - uid: 435 + components: + - pos: 16.5,0.5 + parent: 550 + type: Transform + - uid: 436 + components: + - pos: 16.5,-0.5 + parent: 550 + type: Transform + - uid: 437 + components: + - pos: 16.5,-1.5 + parent: 550 + type: Transform + - uid: 438 + components: + - pos: 16.5,-2.5 + parent: 550 + type: Transform +- proto: CableMV + entities: + - uid: 322 + components: + - pos: 0.5,-2.5 + parent: 550 + type: Transform + - uid: 323 + components: + - pos: 0.5,-3.5 + parent: 550 + type: Transform + - uid: 324 + components: + - pos: 0.5,-4.5 + parent: 550 + type: Transform + - uid: 325 + components: + - pos: 1.5,-4.5 + parent: 550 + type: Transform + - uid: 326 + components: + - pos: 2.5,-4.5 + parent: 550 + type: Transform + - uid: 327 + components: + - pos: 2.5,-5.5 + parent: 550 + type: Transform + - uid: 328 + components: + - pos: 2.5,-6.5 + parent: 550 + type: Transform + - uid: 329 + components: + - pos: 2.5,-7.5 + parent: 550 + type: Transform +- proto: CableTerminal + entities: + - uid: 217 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-10.5 + parent: 550 + type: Transform +- proto: CarpetPurple + entities: + - uid: 525 + components: + - rot: 3.141592653589793 rad + pos: 15.5,0.5 + parent: 550 + type: Transform + - uid: 526 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-0.5 + parent: 550 + type: Transform + - uid: 527 + components: + - rot: 3.141592653589793 rad + pos: 16.5,0.5 + parent: 550 + type: Transform + - uid: 528 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-0.5 + parent: 550 + type: Transform + - uid: 529 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-1.5 + parent: 550 + type: Transform + - uid: 530 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-2.5 + parent: 550 + type: Transform + - uid: 531 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-1.5 + parent: 550 + type: Transform + - uid: 532 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-2.5 + parent: 550 + type: Transform + - uid: 533 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-1.5 + parent: 550 + type: Transform + - uid: 534 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-2.5 + parent: 550 + type: Transform +- proto: Catwalk + entities: + - uid: 273 + components: + - pos: 5.5,-7.5 + parent: 550 + type: Transform + - uid: 274 + components: + - pos: 6.5,-7.5 + parent: 550 + type: Transform + - uid: 275 + components: + - pos: 7.5,-7.5 + parent: 550 + type: Transform + - uid: 276 + components: + - pos: 8.5,-7.5 + parent: 550 + type: Transform + - uid: 277 + components: + - pos: 11.5,-7.5 + parent: 550 + type: Transform +- proto: Chair + entities: + - uid: 84 + components: + - pos: 2.5,-3.5 + parent: 550 + type: Transform + - uid: 85 + components: + - pos: 1.5,-3.5 + parent: 550 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 80 + components: + - pos: 4.5,0.5 + parent: 550 + type: Transform + - uid: 81 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 550 + type: Transform + - uid: 128 + components: + - pos: 8.5,-1.5 + parent: 550 + type: Transform + - uid: 129 + components: + - pos: 9.5,-4.5 + parent: 550 + type: Transform + - uid: 220 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-11.5 + parent: 550 + type: Transform +- proto: ChairWood + entities: + - uid: 123 + components: + - pos: 14.5,0.5 + parent: 550 + type: Transform + - uid: 124 + components: + - pos: 14.5,-0.5 + parent: 550 + type: Transform + - uid: 125 + components: + - pos: 15.5,-0.5 + parent: 550 + type: Transform + - uid: 126 + components: + - pos: 15.5,0.5 + parent: 550 + type: Transform + - uid: 127 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-5.5 + parent: 550 + type: Transform +- proto: CircuitImprinter + entities: + - uid: 110 + components: + - pos: 11.5,-3.5 + parent: 550 + type: Transform +- proto: ClosetRadiationSuitFilled + entities: + - uid: 257 + components: + - pos: 1.5,-9.5 + parent: 550 + type: Transform +- proto: ClothingBeltUtilityFilled + entities: + - uid: 137 + components: + - pos: 11.56505,-5.4409313 + parent: 550 + type: Transform +- proto: ClothingEyesGlasses + entities: + - uid: 149 + components: + - pos: 10.143175,-5.3783894 + parent: 550 + type: Transform +- proto: ComputerBroken + entities: + - uid: 74 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 550 + type: Transform + - uid: 109 + components: + - pos: 7.5,-1.5 + parent: 550 + type: Transform +- proto: ComputerPowerMonitoring + entities: + - uid: 219 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-11.5 + parent: 550 + type: Transform +- proto: CrateEmptySpawner + entities: + - uid: 544 + components: + - pos: 10.5,-2.5 + parent: 550 + type: Transform + - uid: 545 + components: + - pos: 10.5,-3.5 + parent: 550 + type: Transform +- proto: CrateEngineeringSolar + entities: + - uid: 218 + components: + - pos: 10.5,-9.5 + parent: 550 + type: Transform +- proto: DisposalBend + entities: + - uid: 284 + components: + - pos: 7.5,-4.5 + parent: 550 + type: Transform + - uid: 286 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 550 + type: Transform +- proto: DisposalJunction + entities: + - uid: 285 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 550 + type: Transform + - uid: 290 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,2.5 + parent: 550 + type: Transform +- proto: DisposalPipe + entities: + - uid: 291 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 550 + type: Transform + - uid: 292 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 550 + type: Transform + - uid: 293 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 550 + type: Transform + - uid: 294 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 550 + type: Transform + - uid: 295 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 550 + type: Transform + - uid: 296 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 550 + type: Transform + - uid: 297 + components: + - pos: -0.5,-3.5 + parent: 550 + type: Transform + - uid: 298 + components: + - pos: -0.5,-2.5 + parent: 550 + type: Transform + - uid: 299 + components: + - pos: -0.5,-1.5 + parent: 550 + type: Transform + - uid: 300 + components: + - pos: -0.5,-0.5 + parent: 550 + type: Transform + - uid: 301 + components: + - pos: -0.5,0.5 + parent: 550 + type: Transform + - uid: 302 + components: + - pos: -0.5,1.5 + parent: 550 + type: Transform + - uid: 303 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 550 + type: Transform + - uid: 304 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 550 + type: Transform + - uid: 305 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,2.5 + parent: 550 + type: Transform + - uid: 306 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 550 + type: Transform + - uid: 307 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 550 + type: Transform + - uid: 308 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,2.5 + parent: 550 + type: Transform + - uid: 309 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 550 + type: Transform + - uid: 310 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,2.5 + parent: 550 + type: Transform + - uid: 311 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,2.5 + parent: 550 + type: Transform + - uid: 312 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,2.5 + parent: 550 + type: Transform + - uid: 313 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 550 + type: Transform + - uid: 314 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 550 + type: Transform + - uid: 315 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 550 + type: Transform + - uid: 316 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,2.5 + parent: 550 + type: Transform + - uid: 317 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,2.5 + parent: 550 + type: Transform + - uid: 318 + components: + - pos: 13.5,1.5 + parent: 550 + type: Transform + - uid: 319 + components: + - pos: 13.5,0.5 + parent: 550 + type: Transform + - uid: 320 + components: + - pos: 13.5,-0.5 + parent: 550 + type: Transform + - uid: 321 + components: + - pos: 13.5,-1.5 + parent: 550 + type: Transform +- proto: DisposalPipeBroken + entities: + - uid: 287 + components: + - pos: -0.5,2.5 + parent: 550 + type: Transform + - uid: 288 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 550 + type: Transform + - uid: 289 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,2.5 + parent: 550 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 281 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-5.5 + parent: 550 + type: Transform + - uid: 282 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-2.5 + parent: 550 + type: Transform + - uid: 283 + components: + - pos: 0.5,-3.5 + parent: 550 + type: Transform +- proto: DisposalUnit + entities: + - uid: 86 + components: + - pos: 0.5,-3.5 + parent: 550 + type: Transform + - uid: 107 + components: + - pos: 7.5,-5.5 + parent: 550 + type: Transform + - uid: 108 + components: + - pos: 13.5,-2.5 + parent: 550 + type: Transform +- proto: DonkpocketBoxSpawner + entities: + - uid: 515 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-5.5 + parent: 550 + type: Transform +- proto: ExtinguisherCabinetFilled + entities: + - uid: 99 + components: + - pos: 0.5,-1.5 + parent: 550 + type: Transform +- proto: ExtinguisherCabinetOpen + entities: + - uid: 241 + components: + - pos: 5.5,-8.5 + parent: 550 + type: Transform +- proto: Firelock + entities: + - uid: 278 + components: + - pos: 9.5,-7.5 + parent: 550 + type: Transform +- proto: FirelockGlass + entities: + - uid: 101 + components: + - pos: 3.5,2.5 + parent: 550 + type: Transform + - uid: 102 + components: + - pos: 12.5,2.5 + parent: 550 + type: Transform + - uid: 104 + components: + - pos: 16.5,1.5 + parent: 550 + type: Transform + - uid: 279 + components: + - pos: 2.5,-6.5 + parent: 550 + type: Transform + - uid: 280 + components: + - pos: 2.5,-8.5 + parent: 550 + type: Transform +- proto: GasPassiveVent + entities: + - uid: 264 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-12.5 + parent: 550 + type: Transform + - uid: 265 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-12.5 + parent: 550 + type: Transform +- proto: GasPipeBend + entities: + - uid: 417 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 418 + components: + - rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 426 + components: + - rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 442 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,0.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 443 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-5.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 464 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 467 + components: + - pos: 2.5,-3.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 268 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-11.5 + parent: 550 + type: Transform + - uid: 269 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-11.5 + parent: 550 + type: Transform + - uid: 366 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,2.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 419 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 420 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 421 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,2.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 440 + components: + - rot: 3.141592653589793 rad + pos: 14.5,1.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 441 + components: + - rot: 3.141592653589793 rad + pos: 14.5,2.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 445 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-4.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 446 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-4.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 447 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-4.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 448 + components: + - pos: 13.5,-3.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 449 + components: + - pos: 13.5,-2.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 450 + components: + - pos: 13.5,-1.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 451 + components: + - pos: 13.5,-0.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 454 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 455 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 456 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 457 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 458 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 459 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 460 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 461 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 462 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 463 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 465 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 466 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 473 + components: + - pos: 2.5,-9.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 474 + components: + - pos: 2.5,-8.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 475 + components: + - pos: 2.5,-7.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 476 + components: + - pos: 2.5,-6.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 477 + components: + - pos: 2.5,-5.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 478 + components: + - pos: 2.5,-4.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 479 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 480 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 481 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 482 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 483 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 484 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 485 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 486 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 487 + components: + - pos: -0.5,-2.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 488 + components: + - pos: -0.5,-1.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 489 + components: + - pos: -0.5,-0.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 490 + components: + - pos: -0.5,0.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 491 + components: + - pos: -0.5,1.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 492 + components: + - pos: -0.5,2.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 494 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,2.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 495 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,2.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 496 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,2.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 497 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,2.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 498 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,2.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 499 + components: + - rot: 3.141592653589793 rad + pos: 16.5,1.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 501 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-0.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 502 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-1.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 503 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-2.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 504 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-3.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 439 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,0.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 444 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-4.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 452 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 453 + components: + - pos: 0.5,-4.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 468 + components: + - pos: 1.5,-3.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 469 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 472 + components: + - pos: 16.5,2.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 493 + components: + - rot: 3.141592653589793 rad + pos: 10.5,2.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 500 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,0.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 262 + components: + - pos: 6.5,-9.5 + parent: 550 + type: Transform + - uid: 263 + components: + - pos: 8.5,-9.5 + parent: 550 + type: Transform +- proto: GasPressurePump + entities: + - uid: 266 + components: + - pos: 6.5,-10.5 + parent: 550 + type: Transform + - uid: 267 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-10.5 + parent: 550 + type: Transform +- proto: GasVentPump + entities: + - uid: 428 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 429 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 430 + components: + - pos: 2.5,-0.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 431 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 432 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-4.5 + parent: 550 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 422 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-5.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 423 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-0.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 424 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 425 + components: + - pos: 3.5,-0.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 427 + components: + - pos: 4.5,-9.5 + parent: 550 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 470 + components: + - rot: 3.141592653589793 rad + pos: 7.5,2.5 + parent: 550 + type: Transform +- proto: Grille + entities: + - uid: 38 + components: + - pos: 15.5,1.5 + parent: 550 + type: Transform + - uid: 39 + components: + - pos: 14.5,1.5 + parent: 550 + type: Transform + - uid: 40 + components: + - pos: 13.5,1.5 + parent: 550 + type: Transform + - uid: 42 + components: + - pos: 9.5,-0.5 + parent: 550 + type: Transform + - uid: 43 + components: + - pos: 7.5,-0.5 + parent: 550 + type: Transform + - uid: 44 + components: + - pos: 6.5,-0.5 + parent: 550 + type: Transform + - uid: 45 + components: + - pos: 6.5,0.5 + parent: 550 + type: Transform + - uid: 46 + components: + - pos: 5.5,1.5 + parent: 550 + type: Transform + - uid: 47 + components: + - pos: 4.5,1.5 + parent: 550 + type: Transform + - uid: 48 + components: + - pos: 2.5,1.5 + parent: 550 + type: Transform + - uid: 49 + components: + - pos: 1.5,1.5 + parent: 550 + type: Transform + - uid: 50 + components: + - pos: 0.5,0.5 + parent: 550 + type: Transform + - uid: 51 + components: + - pos: 0.5,-0.5 + parent: 550 + type: Transform + - uid: 52 + components: + - pos: -0.5,0.5 + parent: 550 + type: Transform + - uid: 53 + components: + - pos: 12.5,-5.5 + parent: 550 + type: Transform + - uid: 188 + components: + - pos: 12.5,-10.5 + parent: 550 + type: Transform + - uid: 243 + components: + - pos: 6.5,-11.5 + parent: 550 + type: Transform + - uid: 244 + components: + - pos: 7.5,-11.5 + parent: 550 + type: Transform + - uid: 245 + components: + - pos: 8.5,-11.5 + parent: 550 + type: Transform + - uid: 546 + components: + - pos: 4.5,-13.5 + parent: 550 + type: Transform + - uid: 547 + components: + - pos: 3.5,-13.5 + parent: 550 + type: Transform +- proto: HatSpawner + entities: + - uid: 221 + components: + - pos: 14.5,-9.5 + parent: 550 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 154 + components: + - pos: 13.5,-5.5 + parent: 550 + type: Transform +- proto: LockerResearchDirector + entities: + - uid: 79 + components: + - pos: 2.5,0.5 + parent: 550 + type: Transform +- proto: LockerScientist + entities: + - uid: 87 + components: + - pos: 5.5,-5.5 + parent: 550 + type: Transform + - uid: 88 + components: + - pos: 4.5,-5.5 + parent: 550 + type: Transform +- proto: MachineFrameDestroyed + entities: + - uid: 72 + components: + - pos: 1.5,-1.5 + parent: 550 + type: Transform + - uid: 73 + components: + - pos: 1.5,0.5 + parent: 550 + type: Transform + - uid: 89 + components: + - pos: 5.5,-3.5 + parent: 550 + type: Transform + - uid: 90 + components: + - pos: 4.5,-3.5 + parent: 550 + type: Transform + - uid: 130 + components: + - pos: 7.5,-2.5 + parent: 550 + type: Transform +- proto: MaintenanceToolSpawner + entities: + - uid: 140 + components: + - pos: 5.5,-0.5 + parent: 550 + type: Transform + - uid: 150 + components: + - pos: 9.5,-5.5 + parent: 550 + type: Transform + - uid: 151 + components: + - pos: 10.5,-5.5 + parent: 550 + type: Transform + - uid: 152 + components: + - pos: 11.5,-5.5 + parent: 550 + type: Transform + - uid: 153 + components: + - pos: 11.5,-1.5 + parent: 550 + type: Transform +- proto: Multitool + entities: + - uid: 148 + components: + - pos: 9.611925,-1.3912439 + parent: 550 + type: Transform +- proto: PosterContrabandLamarr + entities: + - uid: 98 + components: + - pos: 6.5,-1.5 + parent: 550 + type: Transform +- proto: PosterLegitSafetyReport + entities: + - uid: 132 + components: + - pos: 12.5,-2.5 + parent: 550 + type: Transform +- proto: PottedPlantRD + entities: + - uid: 82 + components: + - pos: 5.5,-1.5 + parent: 550 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 138 + components: + - pos: 11.5,-1.5 + parent: 550 + type: Transform +- proto: Poweredlight + entities: + - uid: 511 + components: + - rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 550 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 512 + components: + - rot: 3.141592653589793 rad + pos: 10.5,0.5 + parent: 550 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 513 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 550 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 517 + components: + - pos: 3.5,0.5 + parent: 550 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 518 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 550 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 519 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 550 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 522 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-13.5 + parent: 550 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredlightEmpty + entities: + - uid: 520 + components: + - pos: 1.5,-3.5 + parent: 550 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 521 + components: + - pos: 5.5,-3.5 + parent: 550 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLight + entities: + - uid: 507 + components: + - pos: 11.5,-7.5 + parent: 550 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 508 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-10.5 + parent: 550 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLightEmpty + entities: + - uid: 509 + components: + - pos: 5.5,-7.5 + parent: 550 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 523 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-5.5 + parent: 550 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: Railing + entities: + - uid: 506 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,0.5 + parent: 550 + type: Transform +- proto: RailingCorner + entities: + - uid: 505 + components: + - rot: 3.141592653589793 rad + pos: 11.5,1.5 + parent: 550 + type: Transform +- proto: RandomArtifactSpawner20 + entities: + - uid: 535 + components: + - pos: 7.5,-12.5 + parent: 550 + type: Transform + - uid: 536 + components: + - pos: 9.5,-3.5 + parent: 550 + type: Transform +- proto: RandomBoards + entities: + - uid: 145 + components: + - pos: 10.5,-5.5 + parent: 550 + type: Transform + - uid: 146 + components: + - pos: 4.5,-0.5 + parent: 550 + type: Transform +- proto: RandomItem + entities: + - uid: 541 + components: + - pos: 15.5,-2.5 + parent: 550 + type: Transform +- proto: RandomScienceCorpseSpawner + entities: + - uid: 551 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 550 + type: Transform +- proto: RandomSpawner + entities: + - uid: 542 + components: + - pos: 4.5,2.5 + parent: 550 + type: Transform + - uid: 543 + components: + - pos: 14.5,2.5 + parent: 550 + type: Transform +- proto: ReinforcedPlasmaWindow + entities: + - uid: 246 + components: + - pos: 6.5,-11.5 + parent: 550 + type: Transform + - uid: 247 + components: + - pos: 7.5,-11.5 + parent: 550 + type: Transform + - uid: 248 + components: + - pos: 8.5,-11.5 + parent: 550 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 54 + components: + - pos: -0.5,0.5 + parent: 550 + type: Transform + - uid: 55 + components: + - pos: 7.5,-0.5 + parent: 550 + type: Transform + - uid: 56 + components: + - pos: 9.5,-0.5 + parent: 550 + type: Transform + - uid: 57 + components: + - pos: 12.5,-5.5 + parent: 550 + type: Transform + - uid: 189 + components: + - pos: 12.5,-10.5 + parent: 550 + type: Transform + - uid: 548 + components: + - pos: 4.5,-13.5 + parent: 550 + type: Transform + - uid: 549 + components: + - pos: 3.5,-13.5 + parent: 550 + type: Transform +- proto: SalvageCanisterSpawner + entities: + - uid: 255 + components: + - pos: 3.5,-12.5 + parent: 550 + type: Transform + - uid: 256 + components: + - pos: 7.5,-9.5 + parent: 550 + type: Transform +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 112 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-2.5 + parent: 550 + type: Transform +- proto: SalvagePartsSpawnerLow + entities: + - uid: 143 + components: + - pos: 11.5,-2.5 + parent: 550 + type: Transform + - uid: 144 + components: + - pos: 11.5,-5.5 + parent: 550 + type: Transform +- proto: SalvagePartsSpawnerMid + entities: + - uid: 142 + components: + - pos: 5.5,-0.5 + parent: 550 + type: Transform +- proto: SalvagePartsSpawnerSubSpace + entities: + - uid: 141 + components: + - pos: 4.5,-0.5 + parent: 550 + type: Transform +- proto: ShardGlassReinforced + entities: + - uid: 77 + components: + - pos: 4.580675,-0.3280058 + parent: 550 + type: Transform + - uid: 78 + components: + - pos: 5.174425,-0.6563587 + parent: 550 + type: Transform +- proto: SheetGlass + entities: + - uid: 134 + components: + - pos: 9.12755,-5.362753 + parent: 550 + type: Transform +- proto: SheetPlastic + entities: + - uid: 136 + components: + - pos: 9.56505,-5.394024 + parent: 550 + type: Transform +- proto: SheetSteel + entities: + - uid: 135 + components: + - pos: 8.549425,-5.456568 + parent: 550 + type: Transform +- proto: SignalSwitchDirectional + entities: + - uid: 260 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 550 + type: Transform + - linkedPorts: + 183: + - On: Open + - Off: Close + type: DeviceLinkSource +- proto: SignDirectionalFood + entities: + - uid: 133 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,1.5 + parent: 550 + type: Transform +- proto: SignFire + entities: + - uid: 270 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-14.5 + parent: 550 + type: Transform +- proto: SignFlammableMed + entities: + - uid: 259 + components: + - pos: 3.5,-8.5 + parent: 550 + type: Transform +- proto: SignRadiationMed + entities: + - uid: 258 + components: + - pos: 1.5,-8.5 + parent: 550 + type: Transform +- proto: SignRND + entities: + - uid: 131 + components: + - pos: 6.5,-3.5 + parent: 550 + type: Transform +- proto: SignScience + entities: + - uid: 97 + components: + - pos: 0.5,1.5 + parent: 550 + type: Transform +- proto: SignScience2 + entities: + - uid: 96 + components: + - pos: 6.5,1.5 + parent: 550 + type: Transform +- proto: SignToxins + entities: + - uid: 242 + components: + - pos: 4.5,-8.5 + parent: 550 + type: Transform +- proto: SMESBasicEmpty + entities: + - uid: 216 + components: + - pos: 10.5,-10.5 + parent: 550 + type: Transform +- proto: SnakeMobMundane + entities: + - uid: 537 + components: + - pos: 8.5,-10.5 + parent: 550 + type: Transform + - uid: 538 + components: + - pos: 13.5,-4.5 + parent: 550 + type: Transform + - uid: 539 + components: + - pos: 9.5,0.5 + parent: 550 + type: Transform + - uid: 540 + components: + - pos: 5.5,-4.5 + parent: 550 + type: Transform +- proto: SolarPanel + entities: + - uid: 195 + components: + - pos: 10.5,-13.5 + parent: 550 + type: Transform + - uid: 196 + components: + - pos: 11.5,-13.5 + parent: 550 + type: Transform + - uid: 197 + components: + - pos: 12.5,-13.5 + parent: 550 + type: Transform +- proto: SolarPanelBroken + entities: + - uid: 191 + components: + - pos: 12.5,-15.5 + parent: 550 + type: Transform + - uid: 192 + components: + - pos: 13.5,-15.5 + parent: 550 + type: Transform + - uid: 193 + components: + - pos: 14.5,-15.5 + parent: 550 + type: Transform + - uid: 194 + components: + - pos: 15.5,-15.5 + parent: 550 + type: Transform + - uid: 198 + components: + - pos: 13.5,-13.5 + parent: 550 + type: Transform +- proto: SolarTracker + entities: + - uid: 190 + components: + - pos: 11.5,-15.5 + parent: 550 + type: Transform +- proto: StatueVenusBlue + entities: + - uid: 155 + components: + - pos: 13.5,-1.5 + parent: 550 + type: Transform +- proto: SurveillanceCameraConstructed + entities: + - uid: 261 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 550 + type: Transform + - uid: 510 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 550 + type: Transform + - uid: 514 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-1.5 + parent: 550 + type: Transform + - uid: 516 + components: + - rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 550 + type: Transform + - uid: 524 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 550 + type: Transform +- proto: Table + entities: + - uid: 113 + components: + - pos: 11.5,-2.5 + parent: 550 + type: Transform + - uid: 114 + components: + - pos: 11.5,-1.5 + parent: 550 + type: Transform + - uid: 115 + components: + - pos: 11.5,-5.5 + parent: 550 + type: Transform + - uid: 116 + components: + - pos: 10.5,-5.5 + parent: 550 + type: Transform + - uid: 117 + components: + - pos: 9.5,-5.5 + parent: 550 + type: Transform + - uid: 118 + components: + - pos: 8.5,-5.5 + parent: 550 + type: Transform + - uid: 147 + components: + - pos: 9.5,-1.5 + parent: 550 + type: Transform +- proto: TableCounterMetal + entities: + - uid: 105 + components: + - pos: 8.5,-0.5 + parent: 550 + type: Transform +- proto: TableFrame + entities: + - uid: 75 + components: + - pos: 4.5,-0.5 + parent: 550 + type: Transform + - uid: 76 + components: + - pos: 5.5,-0.5 + parent: 550 + type: Transform +- proto: TableGlass + entities: + - uid: 119 + components: + - pos: 13.5,-5.5 + parent: 550 + type: Transform + - uid: 120 + components: + - pos: 16.5,-5.5 + parent: 550 + type: Transform +- proto: TableWood + entities: + - uid: 121 + components: + - pos: 15.5,-2.5 + parent: 550 + type: Transform +- proto: TintedWindow + entities: + - uid: 61 + components: + - pos: 0.5,-0.5 + parent: 550 + type: Transform + - uid: 62 + components: + - pos: 0.5,0.5 + parent: 550 + type: Transform + - uid: 63 + components: + - pos: 1.5,1.5 + parent: 550 + type: Transform + - uid: 64 + components: + - pos: 2.5,1.5 + parent: 550 + type: Transform + - uid: 65 + components: + - pos: 4.5,1.5 + parent: 550 + type: Transform + - uid: 66 + components: + - pos: 5.5,1.5 + parent: 550 + type: Transform + - uid: 67 + components: + - pos: 6.5,0.5 + parent: 550 + type: Transform + - uid: 68 + components: + - pos: 6.5,-0.5 + parent: 550 + type: Transform +- proto: WallReinforced + entities: + - uid: 1 + components: + - pos: 6.5,-6.5 + parent: 550 + type: Transform + - uid: 2 + components: + - pos: 6.5,-5.5 + parent: 550 + type: Transform + - uid: 3 + components: + - pos: 7.5,-6.5 + parent: 550 + type: Transform + - uid: 4 + components: + - pos: 8.5,-6.5 + parent: 550 + type: Transform + - uid: 5 + components: + - pos: 9.5,-6.5 + parent: 550 + type: Transform + - uid: 6 + components: + - pos: 10.5,-6.5 + parent: 550 + type: Transform + - uid: 7 + components: + - pos: 11.5,-6.5 + parent: 550 + type: Transform + - uid: 8 + components: + - pos: 12.5,-6.5 + parent: 550 + type: Transform + - uid: 9 + components: + - pos: 12.5,-3.5 + parent: 550 + type: Transform + - uid: 10 + components: + - pos: 12.5,-2.5 + parent: 550 + type: Transform + - uid: 11 + components: + - pos: 12.5,-1.5 + parent: 550 + type: Transform + - uid: 12 + components: + - pos: 12.5,-0.5 + parent: 550 + type: Transform + - uid: 13 + components: + - pos: 11.5,-0.5 + parent: 550 + type: Transform + - uid: 14 + components: + - pos: 10.5,-0.5 + parent: 550 + type: Transform + - uid: 15 + components: + - pos: 6.5,-3.5 + parent: 550 + type: Transform + - uid: 16 + components: + - pos: 6.5,-2.5 + parent: 550 + type: Transform + - uid: 17 + components: + - pos: 6.5,-1.5 + parent: 550 + type: Transform + - uid: 18 + components: + - pos: 5.5,-2.5 + parent: 550 + type: Transform + - uid: 19 + components: + - pos: 4.5,-2.5 + parent: 550 + type: Transform + - uid: 20 + components: + - pos: 2.5,-2.5 + parent: 550 + type: Transform + - uid: 21 + components: + - pos: 1.5,-2.5 + parent: 550 + type: Transform + - uid: 22 + components: + - pos: 0.5,-2.5 + parent: 550 + type: Transform + - uid: 23 + components: + - pos: 0.5,-1.5 + parent: 550 + type: Transform + - uid: 24 + components: + - pos: 0.5,1.5 + parent: 550 + type: Transform + - uid: 25 + components: + - pos: 3.5,1.5 + parent: 550 + type: Transform + - uid: 26 + components: + - pos: 6.5,1.5 + parent: 550 + type: Transform + - uid: 163 + components: + - pos: 9.5,-8.5 + parent: 550 + type: Transform + - uid: 164 + components: + - pos: 9.5,-9.5 + parent: 550 + type: Transform + - uid: 165 + components: + - pos: 9.5,-10.5 + parent: 550 + type: Transform + - uid: 166 + components: + - pos: 9.5,-11.5 + parent: 550 + type: Transform + - uid: 167 + components: + - pos: 9.5,-12.5 + parent: 550 + type: Transform + - uid: 168 + components: + - pos: 9.5,-13.5 + parent: 550 + type: Transform + - uid: 169 + components: + - pos: 9.5,-14.5 + parent: 550 + type: Transform + - uid: 170 + components: + - pos: 10.5,-12.5 + parent: 550 + type: Transform + - uid: 171 + components: + - pos: 11.5,-12.5 + parent: 550 + type: Transform + - uid: 172 + components: + - pos: 12.5,-12.5 + parent: 550 + type: Transform + - uid: 173 + components: + - pos: 12.5,-11.5 + parent: 550 + type: Transform + - uid: 174 + components: + - pos: 12.5,-9.5 + parent: 550 + type: Transform + - uid: 175 + components: + - pos: 12.5,-8.5 + parent: 550 + type: Transform + - uid: 176 + components: + - pos: 13.5,-8.5 + parent: 550 + type: Transform + - uid: 177 + components: + - pos: 10.5,-8.5 + parent: 550 + type: Transform + - uid: 178 + components: + - pos: 5.5,-11.5 + parent: 550 + type: Transform + - uid: 179 + components: + - pos: 5.5,-13.5 + parent: 550 + type: Transform + - uid: 180 + components: + - pos: 5.5,-14.5 + parent: 550 + type: Transform + - uid: 181 + components: + - pos: 6.5,-14.5 + parent: 550 + type: Transform + - uid: 182 + components: + - pos: 8.5,-14.5 + parent: 550 + type: Transform +- proto: WallSolid + entities: + - uid: 27 + components: + - pos: 3.5,-6.5 + parent: 550 + type: Transform + - uid: 28 + components: + - pos: 4.5,-6.5 + parent: 550 + type: Transform + - uid: 29 + components: + - pos: 5.5,-6.5 + parent: 550 + type: Transform + - uid: 30 + components: + - pos: 13.5,-6.5 + parent: 550 + type: Transform + - uid: 31 + components: + - pos: 15.5,-6.5 + parent: 550 + type: Transform + - uid: 32 + components: + - pos: 16.5,-6.5 + parent: 550 + type: Transform + - uid: 33 + components: + - pos: 13.5,-3.5 + parent: 550 + type: Transform + - uid: 34 + components: + - pos: 15.5,-3.5 + parent: 550 + type: Transform + - uid: 35 + components: + - pos: 16.5,-3.5 + parent: 550 + type: Transform + - uid: 36 + components: + - pos: 12.5,0.5 + parent: 550 + type: Transform + - uid: 37 + components: + - pos: 12.5,1.5 + parent: 550 + type: Transform + - uid: 156 + components: + - pos: 1.5,-8.5 + parent: 550 + type: Transform + - uid: 157 + components: + - pos: 3.5,-8.5 + parent: 550 + type: Transform + - uid: 158 + components: + - pos: 4.5,-8.5 + parent: 550 + type: Transform + - uid: 159 + components: + - pos: 5.5,-8.5 + parent: 550 + type: Transform + - uid: 160 + components: + - pos: 6.5,-8.5 + parent: 550 + type: Transform + - uid: 161 + components: + - pos: 7.5,-8.5 + parent: 550 + type: Transform + - uid: 162 + components: + - pos: 8.5,-8.5 + parent: 550 + type: Transform +- proto: WarningWaste + entities: + - uid: 271 + components: + - pos: 6.5,-14.5 + parent: 550 + type: Transform +- proto: WatcherAISpawner + entities: + - uid: 111 + components: + - pos: 3.5,0.5 + parent: 550 + type: Transform +- proto: WindoorSecureScienceLocked + entities: + - uid: 71 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 550 + type: Transform + - uid: 106 + components: + - pos: 8.5,-0.5 + parent: 550 + type: Transform +- proto: Window + entities: + - uid: 58 + components: + - pos: 13.5,1.5 + parent: 550 + type: Transform + - uid: 59 + components: + - pos: 14.5,1.5 + parent: 550 + type: Transform + - uid: 60 + components: + - pos: 15.5,1.5 + parent: 550 + type: Transform +- proto: WindowDirectional + entities: + - uid: 69 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 550 + type: Transform + - uid: 70 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 550 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-atlas-jailcells.yml b/Resources/Maps/Salvage/DeltaV/DV-atlas-jailcells.yml new file mode 100644 index 0000000000..55790a70b1 --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-atlas-jailcells.yml @@ -0,0 +1,2810 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 27: FloorDark + 45: FloorGrass + 60: FloorLino + 84: FloorSteel + 110: FloorWood + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 369 + components: + - type: MetaData + - pos: 0.5104167,0.48436356 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPAAAAAAAcQAAAAAAVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAD + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAACbgAAAAADVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGwAAAAACbgAAAAACbgAAAAADbgAAAAADbgAAAAADbgAAAAADcQAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAGwAAAAABGwAAAAADbgAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAABcQAAAAAAVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGwAAAAADGwAAAAACGwAAAAABbgAAAAADbgAAAAABbgAAAAADbgAAAAABbgAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAACbgAAAAABbgAAAAADbgAAAAAAbgAAAAACGwAAAAABGwAAAAABVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAACcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAVAAAAAABVAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABcQAAAAAAVAAAAAADVAAAAAAAcQAAAAAAVAAAAAABVAAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAcQAAAAAAVAAAAAADVAAAAAACcQAAAAAAVAAAAAABVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: VAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAAAVAAAAAADLQAAAAAALQAAAAAAVAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Busha3 + decals: + 39: 0.05792576,-6.9228697 + - node: + color: '#FFFFFFFF' + id: Bushc3 + decals: + 37: 1.0329256,-6.960395 + - node: + color: '#FFFFFFFF' + id: Bushi4 + decals: + 36: 5.0079265,-6.860325 + 38: 1.8704257,-6.9103603 + - node: + color: '#FFFFFFFF' + id: Bushj1 + decals: + 35: 2.4704258,-6.797782 + - node: + color: '#FFFFFFFF' + id: Bushj2 + decals: + 32: 0.22042567,-6.760257 + 40: 0.22042567,-6.760257 + - node: + color: '#FFFFFFFF' + id: Bushj3 + decals: + 33: 4.220426,-6.7477474 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 64: -1,5 + 65: -1,5 + 66: -1,5 + 67: 0,3 + 68: 1,3 + 69: 1,1 + 70: 3,0 + 71: 3,0 + 72: 4,0 + 73: 4,0 + 74: 6,-1 + 75: 4,-1 + 76: 0,-1 + 77: -1,4 + 78: -1,2 + 79: -1,0 + 80: -1,-1 + 81: 0,-6 + 82: 2,-6 + 83: 4,-7 + 84: 6,-7 + 85: 7,-7 + 86: 7,-6 + 87: 7,-6 + 88: 5,-6 + 89: 6,-4 + 90: 6,-3 + 91: 5,-3 + 92: 3,-3 + 93: 2,-3 + 94: 0,-4 + 95: -1,-4 + 96: 0,-2 + 97: 3,-2 + 98: 6,-2 + 99: 6,-2 + 100: 6,-2 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 63: -1,-6 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 43: -1,-4 + 44: -1,-3 + 45: -1,-3 + 46: -1,-4 + 47: 2,-3 + 48: 3,-3 + 49: 3,-3 + 50: 6,-3 + 51: 6,-3 + 52: 6,-4 + 53: 5,-1 + 54: 4,0 + 55: 1,0 + 56: -1,1 + 57: 0,3 + 58: 0,4 + 59: 7,1 + 60: 7,0 + 61: 5,-6 + 62: 6,-6 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 41: 5.0079265,0.9701128 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 42: 5.8079257,0.9701128 + - node: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + decals: + 21: 0,-2 + 22: 3,-2 + 23: 6,-2 + - node: + color: '#FFFFFFFF' + id: Grassa3 + decals: + 25: 1,-7 + - node: + color: '#FFFFFFFF' + id: Grassa4 + decals: + 26: 4,-7 + - node: + color: '#FFFFFFFF' + id: Grassb5 + decals: + 27: 5,-7 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 28: 3,-7 + 29: 2,-7 + 30: 5,1 + 31: 6,1 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + decals: + 5: 0,-1 + 6: 1,-1 + 7: 2,-1 + 8: 3,-1 + 9: 4,-1 + 10: 5,-1 + 11: 6,-1 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + decals: + 0: -1,4 + 1: -1,3 + 2: -1,2 + 3: -1,1 + 4: -1,0 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + decals: + 12: -1,-6 + 13: 0,-6 + 14: 1,-6 + 15: 2,-6 + 16: 3,-6 + 17: 4,-6 + 18: 5,-6 + 19: 6,-6 + 20: 7,-6 + - node: + color: '#FFFFFFFF' + id: Rock04 + decals: + 34: 3.2454255,-6.9729033 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 24: -1,-1 + type: DecalGrid + - version: 2 + data: + tiles: + -2,-1: + 0: 59616 + -1,-1: + 0: 65535 + -1,0: + 0: 65535 + -1,-2: + 0: 59520 + -3,0: + 0: 60032 + -3,1: + 0: 52974 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -1,1: + 0: 5119 + 0,-2: + 0: 65526 + 0,-1: + 0: 65535 + 1,-2: + 0: 65528 + 1,-1: + 0: 65535 + 2,-2: + 0: 4113 + 2,-1: + 0: 257 + 0,0: + 0: 65535 + 0,1: + 0: 21 + 1,0: + 0: 29183 + 1,1: + 0: 2 + 2,0: + 0: 16 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - type: SpreaderGrid +- proto: AirlockBrigGlassLocked + entities: + - uid: 105 + components: + - pos: -3.5,-0.5 + parent: 369 + type: Transform +- proto: AirlockBrigLocked + entities: + - uid: 106 + components: + - pos: -1.5,0.5 + parent: 369 + type: Transform +- proto: AirlockMaintLocked + entities: + - uid: 124 + components: + - pos: -9.5,5.5 + parent: 369 + type: Transform +- proto: AirlockSecurityGlassLocked + entities: + - uid: 109 + components: + - pos: -5.5,7.5 + parent: 369 + type: Transform +- proto: AirlockSecurityLocked + entities: + - uid: 107 + components: + - pos: -1.5,4.5 + parent: 369 + type: Transform + - uid: 108 + components: + - pos: -5.5,5.5 + parent: 369 + type: Transform +- proto: APCBasic + entities: + - uid: 224 + components: + - pos: -8.5,5.5 + parent: 369 + type: Transform + - uid: 225 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 369 + type: Transform +- proto: Bed + entities: + - uid: 75 + components: + - pos: 0.5,-3.5 + parent: 369 + type: Transform + - uid: 76 + components: + - pos: 3.5,-3.5 + parent: 369 + type: Transform + - uid: 77 + components: + - pos: 6.5,-3.5 + parent: 369 + type: Transform +- proto: BedsheetOrange + entities: + - uid: 78 + components: + - pos: 0.5,-3.5 + parent: 369 + type: Transform + - uid: 79 + components: + - pos: 3.5,-3.5 + parent: 369 + type: Transform + - uid: 80 + components: + - pos: 6.5,-3.5 + parent: 369 + type: Transform +- proto: BoxFolderBase + entities: + - uid: 171 + components: + - rot: 1.5707963267948966 rad + pos: -5.317245,3.6554594 + parent: 369 + type: Transform + - uid: 172 + components: + - pos: -6.015162,1.591526 + parent: 369 + type: Transform + - uid: 173 + components: + - pos: -2.7234952,0.6325269 + parent: 369 + type: Transform +- proto: BoxMagazineShotgunIncendiary + entities: + - uid: 62 + components: + - flags: InContainer + type: MetaData + - parent: 61 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: CableApcExtension + entities: + - uid: 244 + components: + - pos: 7.5,-1.5 + parent: 369 + type: Transform + - uid: 245 + components: + - pos: 6.5,-1.5 + parent: 369 + type: Transform + - uid: 246 + components: + - pos: 5.5,-1.5 + parent: 369 + type: Transform + - uid: 247 + components: + - pos: 6.5,-2.5 + parent: 369 + type: Transform + - uid: 248 + components: + - pos: 6.5,-3.5 + parent: 369 + type: Transform + - uid: 249 + components: + - pos: 6.5,-0.5 + parent: 369 + type: Transform + - uid: 250 + components: + - pos: 5.5,-0.5 + parent: 369 + type: Transform + - uid: 251 + components: + - pos: 4.5,-0.5 + parent: 369 + type: Transform + - uid: 252 + components: + - pos: 3.5,-0.5 + parent: 369 + type: Transform + - uid: 253 + components: + - pos: 2.5,-0.5 + parent: 369 + type: Transform + - uid: 254 + components: + - pos: 1.5,-0.5 + parent: 369 + type: Transform + - uid: 255 + components: + - pos: 0.5,-0.5 + parent: 369 + type: Transform + - uid: 256 + components: + - pos: 0.5,-1.5 + parent: 369 + type: Transform + - uid: 257 + components: + - pos: -0.5,-1.5 + parent: 369 + type: Transform + - uid: 258 + components: + - pos: 0.5,-2.5 + parent: 369 + type: Transform + - uid: 259 + components: + - pos: 0.5,-3.5 + parent: 369 + type: Transform + - uid: 260 + components: + - pos: 3.5,-1.5 + parent: 369 + type: Transform + - uid: 261 + components: + - pos: 2.5,-1.5 + parent: 369 + type: Transform + - uid: 262 + components: + - pos: 3.5,-2.5 + parent: 369 + type: Transform + - uid: 263 + components: + - pos: 3.5,-3.5 + parent: 369 + type: Transform + - uid: 264 + components: + - pos: 7.5,-6.5 + parent: 369 + type: Transform + - uid: 265 + components: + - pos: 6.5,-6.5 + parent: 369 + type: Transform + - uid: 266 + components: + - pos: 5.5,-6.5 + parent: 369 + type: Transform + - uid: 267 + components: + - pos: -0.5,-5.5 + parent: 369 + type: Transform + - uid: 268 + components: + - pos: 0.5,-5.5 + parent: 369 + type: Transform + - uid: 269 + components: + - pos: 0.5,-6.5 + parent: 369 + type: Transform + - uid: 270 + components: + - pos: 1.5,-6.5 + parent: 369 + type: Transform + - uid: 271 + components: + - pos: 2.5,-6.5 + parent: 369 + type: Transform +- proto: CableMV + entities: + - uid: 239 + components: + - pos: -8.5,5.5 + parent: 369 + type: Transform + - uid: 240 + components: + - pos: -9.5,5.5 + parent: 369 + type: Transform + - uid: 241 + components: + - pos: -9.5,6.5 + parent: 369 + type: Transform + - uid: 242 + components: + - pos: -9.5,7.5 + parent: 369 + type: Transform + - uid: 243 + components: + - pos: 7.5,-1.5 + parent: 369 + type: Transform +- proto: CannabisSeeds + entities: + - uid: 67 + components: + - flags: InContainer + type: MetaData + - parent: 63 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: Carpet + entities: + - uid: 160 + components: + - pos: -5.5,3.5 + parent: 369 + type: Transform + - uid: 161 + components: + - pos: -5.5,4.5 + parent: 369 + type: Transform + - uid: 162 + components: + - pos: -6.5,3.5 + parent: 369 + type: Transform + - uid: 163 + components: + - pos: -6.5,4.5 + parent: 369 + type: Transform +- proto: CarpetBlue + entities: + - uid: 151 + components: + - pos: -5.5,0.5 + parent: 369 + type: Transform + - uid: 152 + components: + - pos: -5.5,1.5 + parent: 369 + type: Transform + - uid: 153 + components: + - pos: -6.5,1.5 + parent: 369 + type: Transform +- proto: CarpetGreen + entities: + - uid: 154 + components: + - pos: -3.5,3.5 + parent: 369 + type: Transform + - uid: 155 + components: + - pos: -3.5,2.5 + parent: 369 + type: Transform + - uid: 156 + components: + - pos: -3.5,1.5 + parent: 369 + type: Transform + - uid: 157 + components: + - pos: -2.5,3.5 + parent: 369 + type: Transform + - uid: 158 + components: + - pos: -2.5,2.5 + parent: 369 + type: Transform + - uid: 159 + components: + - pos: -2.5,1.5 + parent: 369 + type: Transform +- proto: Chair + entities: + - uid: 87 + components: + - rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 369 + type: Transform + - uid: 90 + components: + - rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 369 + type: Transform + - uid: 91 + components: + - pos: 2.5,3.5 + parent: 369 + type: Transform + - uid: 92 + components: + - pos: 3.5,3.5 + parent: 369 + type: Transform + - uid: 135 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,4.5 + parent: 369 + type: Transform + - uid: 136 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,3.5 + parent: 369 + type: Transform + - uid: 137 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,4.5 + parent: 369 + type: Transform + - uid: 138 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,3.5 + parent: 369 + type: Transform + - uid: 215 + components: + - pos: -2.5,4.5 + parent: 369 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 139 + components: + - pos: -6.5,4.5 + parent: 369 + type: Transform + - uid: 140 + components: + - pos: -5.5,4.5 + parent: 369 + type: Transform + - uid: 141 + components: + - rot: 3.141592653589793 rad + pos: -6.5,0.5 + parent: 369 + type: Transform + - uid: 142 + components: + - rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 369 + type: Transform +- proto: CigCartonBlue + entities: + - uid: 74 + components: + - flags: InContainer + type: MetaData + - parent: 73 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 196 + components: + - pos: -7.5,6.5 + parent: 369 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 197 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 198 + components: + - pos: -6.5,6.5 + parent: 369 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 199 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: ClothingHeadHatPwig + entities: + - uid: 214 + components: + - pos: -3.5006683,2.576106 + parent: 369 + type: Transform +- proto: ClothingMaskGasSecurity + entities: + - uid: 99 + components: + - rot: 3.141592653589793 rad + pos: 2.5133097,2.819632 + parent: 369 + type: Transform +- proto: ClothingOuterRobesJudge + entities: + - uid: 213 + components: + - pos: -3.3860848,2.284237 + parent: 369 + type: Transform +- proto: ClothingShoesSlippers + entities: + - uid: 70 + components: + - flags: InContainer + type: MetaData + - parent: 69 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ComfyChair + entities: + - uid: 143 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 369 + type: Transform +- proto: DeployableBarrier + entities: + - uid: 167 + components: + - pos: -0.5,2.5 + parent: 369 + type: Transform + - uid: 168 + components: + - pos: -0.5,1.5 + parent: 369 + type: Transform +- proto: DisposalPipe + entities: + - uid: 274 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 369 + type: Transform + - uid: 275 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 369 + type: Transform + - uid: 276 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 369 + type: Transform + - uid: 277 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 369 + type: Transform + - uid: 278 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 369 + type: Transform + - uid: 279 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 369 + type: Transform + - uid: 280 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 369 + type: Transform + - uid: 281 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 369 + type: Transform +- proto: DisposalPipeBroken + entities: + - uid: 85 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 369 + type: Transform + - uid: 273 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 369 + type: Transform +- proto: DrinkMugOne + entities: + - uid: 170 + components: + - rot: 1.5707963267948966 rad + pos: -2.5672452,1.8000042 + parent: 369 + type: Transform +- proto: filingCabinetDrawerRandom + entities: + - uid: 101 + components: + - pos: -2.5,-1.5 + parent: 369 + type: Transform + - uid: 102 + components: + - pos: -2.5,-2.5 + parent: 369 + type: Transform +- proto: FirelockEdge + entities: + - uid: 53 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 369 + type: Transform + - uid: 54 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 369 + type: Transform + - uid: 55 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 369 + type: Transform + - uid: 56 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 369 + type: Transform + - uid: 57 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 369 + type: Transform + - uid: 58 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 369 + type: Transform +- proto: FirelockGlass + entities: + - uid: 59 + components: + - pos: 7.5,0.5 + parent: 369 + type: Transform + - uid: 60 + components: + - pos: 7.5,1.5 + parent: 369 + type: Transform +- proto: Floodlight + entities: + - uid: 165 + components: + - rot: 3.141592653589793 rad + pos: -0.7859952,3.1134167 + parent: 369 + type: Transform +- proto: FloodlightBroken + entities: + - uid: 166 + components: + - rot: 1.5707963267948966 rad + pos: -0.49432844,3.384438 + parent: 369 + type: Transform +- proto: FoodBreadMoldySlice + entities: + - uid: 95 + components: + - pos: 2.9924765,2.6215782 + parent: 369 + type: Transform + - uid: 96 + components: + - pos: 3.4820597,2.8300564 + parent: 369 + type: Transform +- proto: GasPipeBend + entities: + - uid: 299 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 303 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 328 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,4.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 304 + components: + - rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 305 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 306 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 307 + components: + - pos: 6.5,-0.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 308 + components: + - pos: 6.5,-1.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 309 + components: + - pos: 6.5,-2.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 310 + components: + - pos: 3.5,-0.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 311 + components: + - pos: 3.5,-1.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 312 + components: + - pos: 3.5,-2.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 313 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 314 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 315 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 316 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 317 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 318 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 319 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,0.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 321 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,6.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 322 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,6.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 323 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,6.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 325 + components: + - rot: 3.141592653589793 rad + pos: -5.5,7.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 326 + components: + - rot: 3.141592653589793 rad + pos: -5.5,5.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 329 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,4.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 330 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,4.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 331 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,4.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 333 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,3.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 334 + components: + - pos: -3.5,-3.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 340 + components: + - pos: -0.5,-1.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 341 + components: + - pos: -0.5,-0.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 342 + components: + - pos: -0.5,0.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 343 + components: + - pos: -0.5,2.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 344 + components: + - pos: -0.5,3.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 345 + components: + - pos: -0.5,4.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 346 + components: + - pos: -0.5,5.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 347 + components: + - pos: 1.5,2.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 348 + components: + - pos: 1.5,3.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 349 + components: + - pos: 2.5,0.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 350 + components: + - pos: 2.5,-0.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 351 + components: + - pos: 2.5,-1.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 352 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 353 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 354 + components: + - rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 355 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 356 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 357 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,1.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 358 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,1.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 359 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,1.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 360 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 361 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 362 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 363 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 364 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 365 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 366 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 367 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 368 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 286 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-7.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 300 + components: + - pos: 3.5,0.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 301 + components: + - rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 302 + components: + - pos: 6.5,0.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 320 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 324 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 327 + components: + - rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 332 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,3.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 335 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 336 + components: + - rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 337 + components: + - rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 338 + components: + - pos: 2.5,1.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 339 + components: + - pos: 5.5,1.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 217 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,6.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 292 + components: + - pos: -3.5,-2.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 293 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,3.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 294 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,4.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 295 + components: + - pos: 0.5,2.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 296 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 297 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 298 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 369 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 282 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 283 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 284 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 285 + components: + - pos: 7.5,-6.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 287 + components: + - pos: 4.5,1.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 288 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 289 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 290 + components: + - pos: -7.5,1.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 291 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,6.5 + parent: 369 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: Grille + entities: + - uid: 2 + components: + - pos: -0.5,-1.5 + parent: 369 + type: Transform + - uid: 6 + components: + - pos: -1.5,1.5 + parent: 369 + type: Transform + - uid: 19 + components: + - pos: -0.5,-4.5 + parent: 369 + type: Transform + - uid: 20 + components: + - pos: 0.5,-4.5 + parent: 369 + type: Transform + - uid: 21 + components: + - pos: 1.5,-3.5 + parent: 369 + type: Transform + - uid: 22 + components: + - pos: 1.5,-2.5 + parent: 369 + type: Transform + - uid: 23 + components: + - pos: 2.5,-1.5 + parent: 369 + type: Transform + - uid: 24 + components: + - pos: 2.5,-4.5 + parent: 369 + type: Transform + - uid: 25 + components: + - pos: 3.5,-4.5 + parent: 369 + type: Transform + - uid: 26 + components: + - pos: 6.5,-4.5 + parent: 369 + type: Transform + - uid: 27 + components: + - pos: 5.5,-4.5 + parent: 369 + type: Transform + - uid: 28 + components: + - pos: 4.5,-3.5 + parent: 369 + type: Transform + - uid: 29 + components: + - pos: 4.5,-2.5 + parent: 369 + type: Transform + - uid: 30 + components: + - pos: 5.5,-1.5 + parent: 369 + type: Transform + - uid: 125 + components: + - pos: -1.5,2.5 + parent: 369 + type: Transform + - uid: 126 + components: + - pos: -1.5,3.5 + parent: 369 + type: Transform +- proto: HeadSkeleton + entities: + - uid: 216 + components: + - flags: SessionSpecific + type: MetaData + - pos: -2.4381683,4.608768 + parent: 369 + type: Transform +- proto: Lamp + entities: + - uid: 169 + components: + - rot: 1.5707963267948966 rad + pos: -3.5255787,3.2489274 + parent: 369 + type: Transform +- proto: LockerEvidence + entities: + - uid: 61 + components: + - pos: -0.5,-0.5 + parent: 369 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 62 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 63 + components: + - pos: 2.5,-0.5 + parent: 369 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 64 + - 65 + - 66 + - 67 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 68 + components: + - pos: 5.5,-0.5 + parent: 369 + type: Transform +- proto: MachineFrameDestroyed + entities: + - uid: 100 + components: + - pos: -2.5,-3.5 + parent: 369 + type: Transform +- proto: MaintenanceWeaponSpawner + entities: + - uid: 195 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,6.5 + parent: 369 + type: Transform +- proto: Paper + entities: + - uid: 174 + components: + - rot: 3.141592653589793 rad + pos: -5.952662,3.5824919 + parent: 369 + type: Transform + - uid: 175 + components: + - rot: 3.141592653589793 rad + pos: -6.004745,4.32259 + parent: 369 + type: Transform + - uid: 176 + components: + - rot: 1.5707963267948966 rad + pos: -4.765162,4.0515676 + parent: 369 + type: Transform + - uid: 177 + components: + - pos: -5.348495,2.2690797 + parent: 369 + type: Transform + - uid: 178 + components: + - pos: -4.285995,0.79930925 + parent: 369 + type: Transform + - uid: 179 + components: + - rot: -1.5707963267948966 rad + pos: -3.6505787,0.6221026 + parent: 369 + type: Transform + - uid: 180 + components: + - rot: 1.5707963267948966 rad + pos: -3.7130787,2.0501778 + parent: 369 + type: Transform + - uid: 181 + components: + - rot: 1.5707963267948966 rad + pos: -3.4109952,1.351776 + parent: 369 + type: Transform + - uid: 182 + components: + - rot: 1.5707963267948966 rad + pos: -3.2547452,0.4657439 + parent: 369 + type: Transform + - uid: 183 + components: + - rot: 1.5707963267948966 rad + pos: -2.733912,0.2781136 + parent: 369 + type: Transform + - uid: 184 + components: + - pos: -2.6297452,3.0091774 + parent: 369 + type: Transform + - uid: 185 + components: + - pos: -5.317245,1.5498307 + parent: 369 + type: Transform + - uid: 186 + components: + - pos: -6.733912,1.6853414 + parent: 369 + type: Transform + - uid: 187 + components: + - rot: -1.5707963267948966 rad + pos: -5.0255785,0.6637986 + parent: 369 + type: Transform + - uid: 188 + components: + - rot: 3.141592653589793 rad + pos: -6.015162,0.44489658 + parent: 369 + type: Transform + - uid: 189 + components: + - rot: 3.141592653589793 rad + pos: -6.046412,0.42404866 + parent: 369 + type: Transform +- proto: PartRodMetal1 + entities: + - uid: 205 + components: + - rot: 1.5707963267948966 rad + pos: -10.6112995,3.5415835 + parent: 369 + type: Transform + - uid: 206 + components: + - pos: -6.279277,-0.2531286 + parent: 369 + type: Transform + - uid: 207 + components: + - pos: -5.9459434,-0.52415013 + parent: 369 + type: Transform + - uid: 208 + components: + - rot: -1.5707963267948966 rad + pos: -5.9459434,-0.5345738 + parent: 369 + type: Transform + - uid: 209 + components: + - rot: -1.5707963267948966 rad + pos: -2.1504626,-4.4344277 + parent: 369 + type: Transform + - uid: 210 + components: + - rot: -1.5707963267948966 rad + pos: -1.327546,-4.6637535 + parent: 369 + type: Transform + - uid: 211 + components: + - rot: -1.5707963267948966 rad + pos: 1.8951652,-7.4848723 + parent: 369 + type: Transform + - uid: 212 + components: + - rot: 3.141592653589793 rad + pos: 1.5722487,-7.422329 + parent: 369 + type: Transform +- proto: PillSpaceDrugs + entities: + - uid: 65 + components: + - flags: InContainer + type: MetaData + - parent: 63 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 66 + components: + - flags: InContainer + type: MetaData + - parent: 63 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 227 + components: + - pos: -4.5,-0.5 + parent: 369 + type: Transform +- proto: PosterLegitReportCrimes + entities: + - uid: 226 + components: + - pos: 7.5,-4.5 + parent: 369 + type: Transform +- proto: PowerCellHyperPrinted + entities: + - uid: 197 + components: + - flags: InContainer + type: MetaData + - parent: 196 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: Poweredlight + entities: + - uid: 218 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 369 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 221 + components: + - pos: -4.5,4.5 + parent: 369 + type: Transform + - uid: 222 + components: + - pos: -8.5,4.5 + parent: 369 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredlightEmpty + entities: + - uid: 1 + components: + - pos: 7.5,-5.5 + parent: 369 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 220 + components: + - rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 369 + type: Transform +- proto: PoweredSmallLight + entities: + - uid: 81 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 369 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 83 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 369 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 223 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,6.5 + parent: 369 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLightEmpty + entities: + - uid: 82 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 369 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 219 + components: + - pos: -4.5,-1.5 + parent: 369 + type: Transform +- proto: RailingCorner + entities: + - uid: 86 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 369 + type: Transform + - uid: 88 + components: + - pos: 6.5,1.5 + parent: 369 + type: Transform +- proto: RandomAmmoBox + entities: + - uid: 98 + components: + - pos: 3.5,2.5 + parent: 369 + type: Transform +- proto: RandomBoards + entities: + - uid: 237 + components: + - pos: -2.5,-3.5 + parent: 369 + type: Transform +- proto: RandomItem + entities: + - uid: 238 + components: + - pos: 3.5,-5.5 + parent: 369 + type: Transform +- proto: RandomPainting + entities: + - uid: 229 + components: + - pos: -10.5,5.5 + parent: 369 + type: Transform +- proto: RandomSnacks + entities: + - uid: 191 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 369 + type: Transform +- proto: RandomSpawner + entities: + - uid: 192 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,2.5 + parent: 369 + type: Transform + - uid: 193 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 369 + type: Transform + - uid: 194 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 369 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 3 + components: + - pos: -0.5,-1.5 + parent: 369 + type: Transform + - uid: 7 + components: + - pos: -1.5,1.5 + parent: 369 + type: Transform + - uid: 31 + components: + - pos: 2.5,-1.5 + parent: 369 + type: Transform + - uid: 33 + components: + - pos: 4.5,-2.5 + parent: 369 + type: Transform + - uid: 34 + components: + - pos: 4.5,-3.5 + parent: 369 + type: Transform + - uid: 35 + components: + - pos: 5.5,-4.5 + parent: 369 + type: Transform + - uid: 36 + components: + - pos: 6.5,-4.5 + parent: 369 + type: Transform + - uid: 37 + components: + - pos: 3.5,-4.5 + parent: 369 + type: Transform + - uid: 38 + components: + - pos: 2.5,-4.5 + parent: 369 + type: Transform + - uid: 39 + components: + - pos: 1.5,-3.5 + parent: 369 + type: Transform + - uid: 40 + components: + - pos: 1.5,-2.5 + parent: 369 + type: Transform + - uid: 41 + components: + - pos: 0.5,-4.5 + parent: 369 + type: Transform + - uid: 42 + components: + - pos: -0.5,-4.5 + parent: 369 + type: Transform + - uid: 127 + components: + - pos: -1.5,2.5 + parent: 369 + type: Transform + - uid: 128 + components: + - pos: -1.5,3.5 + parent: 369 + type: Transform +- proto: SalvageLorePaperGamingSpawner + entities: + - uid: 190 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 369 + type: Transform +- proto: SalvagePartsSpawnerLow + entities: + - uid: 236 + components: + - pos: -0.5,-6.5 + parent: 369 + type: Transform +- proto: ScalpelShiv + entities: + - uid: 72 + components: + - flags: InContainer + type: MetaData + - parent: 71 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ShardGlassReinforced + entities: + - uid: 32 + components: + - rot: 1.5707963267948966 rad + pos: 6.0053363,-0.8137096 + parent: 369 + type: Transform + - uid: 84 + components: + - rot: 1.5707963267948966 rad + pos: 6.4011693,-1.7622849 + parent: 369 + type: Transform + - uid: 200 + components: + - rot: 1.5707963267948966 rad + pos: 5.6119466,3.5703096 + parent: 369 + type: Transform + - uid: 201 + components: + - rot: 1.5707963267948966 rad + pos: 4.466113,2.8406365 + parent: 369 + type: Transform + - uid: 202 + components: + - rot: 1.5707963267948966 rad + pos: 6.7473636,0.65161633 + parent: 369 + type: Transform + - uid: 203 + components: + - rot: 1.5707963267948966 rad + pos: 7.6327796,-6.462995 + parent: 369 + type: Transform + - uid: 204 + components: + - rot: 1.5707963267948966 rad + pos: 8.174446,-7.1926684 + parent: 369 + type: Transform +- proto: ShuttersNormalOpen + entities: + - uid: 46 + components: + - pos: -0.5,-4.5 + parent: 369 + type: Transform + - links: + - 52 + type: DeviceLinkSink + - uid: 47 + components: + - pos: 0.5,-4.5 + parent: 369 + type: Transform + - links: + - 52 + type: DeviceLinkSink + - uid: 48 + components: + - pos: 2.5,-4.5 + parent: 369 + type: Transform + - links: + - 52 + type: DeviceLinkSink + - uid: 49 + components: + - pos: 3.5,-4.5 + parent: 369 + type: Transform + - links: + - 52 + type: DeviceLinkSink + - uid: 50 + components: + - pos: 5.5,-4.5 + parent: 369 + type: Transform + - links: + - 52 + type: DeviceLinkSink + - uid: 51 + components: + - pos: 6.5,-4.5 + parent: 369 + type: Transform + - links: + - 52 + type: DeviceLinkSink +- proto: SignalSwitchDirectional + entities: + - uid: 52 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 369 + type: Transform + - linkedPorts: + 51: + - On: Open + - Off: Close + 50: + - On: Open + - Off: Close + 49: + - On: Open + - Off: Close + 48: + - On: Open + - Off: Close + 47: + - On: Open + - Off: Close + 46: + - On: Open + - Off: Close + type: DeviceLinkSource +- proto: SignDirectionalBrig + entities: + - uid: 228 + components: + - rot: 3.141592653589793 rad + pos: -6.5,5.5 + parent: 369 + type: Transform +- proto: SmokingPipeFilledCannabis + entities: + - uid: 64 + components: + - flags: InContainer + type: MetaData + - parent: 63 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: SpawnMobBearSalvage + entities: + - uid: 231 + components: + - pos: 0.5,-2.5 + parent: 369 + type: Transform + - uid: 232 + components: + - pos: 2.5,3.5 + parent: 369 + type: Transform +- proto: SpawnMobKangaroo + entities: + - uid: 234 + components: + - rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 369 + type: Transform +- proto: SpawnMobKangarooSalvage + entities: + - uid: 230 + components: + - pos: -5.5,4.5 + parent: 369 + type: Transform + - uid: 233 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 369 + type: Transform +- proto: SurveillanceCameraConstructed + entities: + - uid: 164 + components: + - rot: 3.141592653589793 rad + pos: -4.5,4.5 + parent: 369 + type: Transform + - uid: 272 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 369 + type: Transform +- proto: Table + entities: + - uid: 93 + components: + - pos: 2.5,2.5 + parent: 369 + type: Transform + - uid: 94 + components: + - pos: 3.5,2.5 + parent: 369 + type: Transform +- proto: TableWood + entities: + - uid: 144 + components: + - pos: -6.5,3.5 + parent: 369 + type: Transform + - uid: 145 + components: + - pos: -5.5,3.5 + parent: 369 + type: Transform + - uid: 146 + components: + - pos: -6.5,1.5 + parent: 369 + type: Transform + - uid: 147 + components: + - pos: -5.5,1.5 + parent: 369 + type: Transform + - uid: 148 + components: + - pos: -3.5,2.5 + parent: 369 + type: Transform + - uid: 149 + components: + - pos: -3.5,3.5 + parent: 369 + type: Transform + - uid: 150 + components: + - pos: -3.5,1.5 + parent: 369 + type: Transform +- proto: VendingMachineDonut + entities: + - uid: 89 + components: + - flags: SessionSpecific + type: MetaData + - pos: 4.5,1.5 + parent: 369 + type: Transform +- proto: WallReinforced + entities: + - uid: 4 + components: + - pos: -1.5,-1.5 + parent: 369 + type: Transform + - uid: 5 + components: + - pos: -1.5,-0.5 + parent: 369 + type: Transform + - uid: 8 + components: + - pos: -1.5,-2.5 + parent: 369 + type: Transform + - uid: 9 + components: + - pos: -1.5,-3.5 + parent: 369 + type: Transform + - uid: 10 + components: + - pos: 7.5,-0.5 + parent: 369 + type: Transform + - uid: 11 + components: + - pos: 7.5,-1.5 + parent: 369 + type: Transform + - uid: 12 + components: + - pos: 7.5,-2.5 + parent: 369 + type: Transform + - uid: 13 + components: + - pos: 7.5,-3.5 + parent: 369 + type: Transform + - uid: 14 + components: + - pos: 7.5,-4.5 + parent: 369 + type: Transform + - uid: 15 + components: + - pos: 4.5,-4.5 + parent: 369 + type: Transform + - uid: 16 + components: + - pos: 4.5,-1.5 + parent: 369 + type: Transform + - uid: 17 + components: + - pos: 1.5,-4.5 + parent: 369 + type: Transform + - uid: 18 + components: + - pos: 1.5,-1.5 + parent: 369 + type: Transform + - uid: 110 + components: + - pos: -1.5,5.5 + parent: 369 + type: Transform + - uid: 111 + components: + - pos: -2.5,5.5 + parent: 369 + type: Transform + - uid: 112 + components: + - pos: -3.5,5.5 + parent: 369 + type: Transform + - uid: 113 + components: + - pos: -4.5,5.5 + parent: 369 + type: Transform + - uid: 114 + components: + - pos: -4.5,6.5 + parent: 369 + type: Transform + - uid: 115 + components: + - pos: -4.5,7.5 + parent: 369 + type: Transform + - uid: 116 + components: + - pos: -6.5,7.5 + parent: 369 + type: Transform + - uid: 117 + components: + - pos: -7.5,7.5 + parent: 369 + type: Transform + - uid: 118 + components: + - pos: -8.5,7.5 + parent: 369 + type: Transform + - uid: 119 + components: + - pos: -8.5,6.5 + parent: 369 + type: Transform + - uid: 120 + components: + - pos: -8.5,5.5 + parent: 369 + type: Transform + - uid: 121 + components: + - pos: -7.5,5.5 + parent: 369 + type: Transform + - uid: 122 + components: + - pos: -6.5,5.5 + parent: 369 + type: Transform +- proto: WallSolid + entities: + - uid: 103 + components: + - pos: -2.5,-0.5 + parent: 369 + type: Transform + - uid: 104 + components: + - pos: -4.5,-0.5 + parent: 369 + type: Transform + - uid: 123 + components: + - pos: -10.5,5.5 + parent: 369 + type: Transform +- proto: WardrobePrison + entities: + - uid: 73 + components: + - pos: 2.5,-3.5 + parent: 369 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 74 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: WardrobePrisonFilled + entities: + - uid: 69 + components: + - pos: -0.5,-3.5 + parent: 369 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 70 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 71 + components: + - pos: 5.5,-3.5 + parent: 369 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 72 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: WeaponCapacitorRecharger + entities: + - uid: 97 + components: + - pos: 2.5,2.5 + parent: 369 + type: Transform +- proto: WeaponDisabler + entities: + - uid: 199 + components: + - flags: InContainer + type: MetaData + - parent: 198 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: WindoorSecureSecurityLocked + entities: + - uid: 43 + components: + - pos: 0.5,-1.5 + parent: 369 + type: Transform + - uid: 44 + components: + - pos: 3.5,-1.5 + parent: 369 + type: Transform + - uid: 45 + components: + - pos: 6.5,-1.5 + parent: 369 + type: Transform + - uid: 133 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 369 + type: Transform + - uid: 134 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 369 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 129 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,4.5 + parent: 369 + type: Transform + - uid: 130 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 369 + type: Transform + - uid: 131 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 369 + type: Transform + - uid: 132 + components: + - rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 369 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-atlas-medical.yml b/Resources/Maps/Salvage/DeltaV/DV-atlas-medical.yml new file mode 100644 index 0000000000..711b09fb3d --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-atlas-medical.yml @@ -0,0 +1,3898 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 27: FloorDark + 72: FloorReinforced + 96: FloorTechMaint + 100: FloorWhite + 110: FloorWood + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 549 + components: + - type: MetaData + - pos: 0.55,0.38116685 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAZAAAAAABZAAAAAAASAAAAAAAZAAAAAAAZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAZAAAAAACZAAAAAACZAAAAAADZAAAAAACZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAAAbgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAADbgAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACSAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAZAAAAAABZAAAAAAAZAAAAAABZAAAAAAAZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAACZAAAAAABZAAAAAABZAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAACZAAAAAADZAAAAAACSAAAAAAAZAAAAAAAZAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAAAZAAAAAACZAAAAAACZAAAAAAAZAAAAAADZAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAZAAAAAABZAAAAAACZAAAAAADZAAAAAABZAAAAAABZAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAZAAAAAADZAAAAAACZAAAAAADZAAAAAABZAAAAAAAZAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAZAAAAAABZAAAAAACZAAAAAAASAAAAAAAZAAAAAABZAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: ZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAADZAAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAACZAAAAAAAZAAAAAADZAAAAAABZAAAAAACSAAAAAAAZAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAABZAAAAAACZAAAAAAAZAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAZAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAABZAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAABZAAAAAACZAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADZAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAZAAAAAACSAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAZAAAAAABZAAAAAABSAAAAAAAZAAAAAADZAAAAAAC + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#52B4E996' + id: CheckerNWSE + decals: + 24: -5,-7 + 25: -5,-8 + 26: -4,-8 + 27: -4,-7 + 28: -3,-7 + 29: -3,-8 + 30: -2,-8 + 31: -2,-7 + - node: + color: '#9FED5896' + id: CheckerNWSE + decals: + 0: -5,-15 + 1: -4,-15 + 2: -3,-15 + 3: -2,-15 + 4: -1,-15 + 5: 0,-15 + 6: 1,-15 + 7: 0,-16 + 8: -1,-16 + 9: -2,-16 + 10: -4,-16 + 11: -5,-16 + 12: -5,-17 + 13: -4,-17 + 14: -2,-17 + 15: -1,-17 + 16: 0,-17 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 72: -6,0 + 73: -6,-1 + 74: -6,-2 + 75: -5,0 + 76: -5,-1 + 77: -5,-2 + 78: -6,-1 + 79: -5,-3 + 80: -5,-4 + 81: -4,-2 + 82: -4,-4 + 83: -4,-5 + 84: -2,-3 + 85: -2,-1 + 86: -1,-2 + 87: 1,-3 + 88: 2,-4 + 89: 3,-5 + 90: 5,-7 + 91: 4,-7 + 92: 2,-7 + 93: 4,-8 + 94: 3,-8 + 95: 2,-8 + 96: 1,-8 + 97: 3,-7 + 98: 3,-7 + 99: 1,-8 + 100: 7,-9 + 101: 6,-8 + 102: 6,-8 + 103: -1,-1 + 104: -1,-1 + 105: -1,-1 + 106: 2,-4 + 107: 1,-3 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 42: 5,-7 + 43: 3,-6 + 44: -1,-8 + - node: + color: '#F9801D7F' + id: FullTileOverlayGreyscale + decals: + 58: -6,0 + 59: -5,0 + 60: -4,0 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + decals: + 37: 0,-7 + 38: 1,-7 + 39: 2,-7 + 40: 3,-7 + 41: 4,-7 + 55: 0,-2 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 45: 3,-5 + 46: 2,-5 + 47: 1,-5 + 48: 0,-5 + 49: -1,-5 + 56: 0,-3 + 57: 1,-3 + - node: + color: '#F9801D7F' + id: HalfTileOverlayGreyscale180 + decals: + 71: -5,-5 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + decals: + 18: 0,-12 + 19: 0,-11 + 20: 0,-10 + 51: -2,-4 + 52: -2,-3 + 53: -2,-2 + 54: -2,-1 + - node: + color: '#F9801D7F' + id: HalfTileOverlayGreyscale270 + decals: + 65: -6,-4 + 66: -6,-3 + 67: -6,-2 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + decals: + 21: 3,-10 + 22: 3,-11 + 23: 3,-12 + - node: + color: '#F9801D7F' + id: HalfTileOverlayGreyscale90 + decals: + 68: -4,-2 + 69: -4,-3 + 70: -4,-4 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 32: 0,-8 + 33: 1,-8 + 34: 2,-8 + 35: 3,-8 + 36: 4,-8 + - node: + color: '#F9801D7F' + id: ThreeQuarterTileOverlayGreyscale + decals: + 64: -6,-1 + - node: + color: '#F9801D7F' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 62: -4,-5 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 50: -2,-5 + - node: + color: '#F9801D7F' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 63: -6,-5 + - node: + color: '#F9801D7F' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 61: -4,-1 + - node: + color: '#FFFFFFFF' + id: WarnBox + decals: + 17: 2,-15 + - node: + color: '#DE3A3A96' + id: splatter + decals: + 108: 2,-13 + 109: -6,-13 + 110: 1,-4 + 111: 1,-4 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 65535 + 0,-1: + 0: 311 + -3,-4: + 0: 61028 + -3,-3: + 0: 140 + -2,-4: + 0: 65484 + -2,-3: + 0: 60671 + -2,-2: + 0: 61390 + -2,-1: + 0: 61166 + -1,-4: + 0: 65535 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + 0,-4: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 1,-4: + 0: 30704 + 1,-3: + 0: 65535 + 1,-2: + 0: 311 + 2,-4: + 0: 16 + 2,-3: + 0: 311 + -2,0: + 0: 2798 + -1,0: + 0: 567 + 0,-5: + 0: 29440 + -3,-5: + 0: 28192 + -2,-5: + 0: 52992 + -1,-5: + 0: 65280 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - type: SpreaderGrid +- proto: AirlockChemistryLocked + entities: + - uid: 118 + components: + - pos: -2.5,-2.5 + parent: 549 + type: Transform +- proto: AirlockChiefMedicalOfficerGlassLocked + entities: + - uid: 116 + components: + - pos: -0.5,-7.5 + parent: 549 + type: Transform +- proto: AirlockChiefMedicalOfficerLocked + entities: + - uid: 113 + components: + - pos: -2.5,-8.5 + parent: 549 + type: Transform +- proto: AirlockEngineeringLocked + entities: + - uid: 126 + components: + - pos: 6.5,-12.5 + parent: 549 + type: Transform +- proto: AirlockMaintMedLocked + entities: + - uid: 115 + components: + - pos: -0.5,-12.5 + parent: 549 + type: Transform +- proto: AirlockMedicalGlassLocked + entities: + - uid: 117 + components: + - pos: 3.5,-5.5 + parent: 549 + type: Transform +- proto: AirlockMedicalLocked + entities: + - uid: 114 + components: + - pos: 1.5,-8.5 + parent: 549 + type: Transform +- proto: AirlockVirologyGlassLocked + entities: + - uid: 110 + components: + - pos: 2.5,-13.5 + parent: 549 + type: Transform + - uid: 112 + components: + - pos: -2.5,-14.5 + parent: 549 + type: Transform + - uid: 325 + components: + - pos: 1.5,-14.5 + parent: 549 + type: Transform +- proto: APCBasic + entities: + - uid: 329 + components: + - pos: 0.5,-5.5 + parent: 549 + type: Transform +- proto: Ash + entities: + - uid: 315 + components: + - flags: InContainer + type: MetaData + - parent: 314 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: BedsheetGreen + entities: + - uid: 184 + components: + - pos: -3.5,-16.5 + parent: 549 + type: Transform + - uid: 185 + components: + - pos: -3.5,-15.5 + parent: 549 + type: Transform +- proto: BedsheetMedical + entities: + - uid: 186 + components: + - pos: -1.5,-10.5 + parent: 549 + type: Transform + - uid: 187 + components: + - pos: 0.5,-2.5 + parent: 549 + type: Transform + - uid: 188 + components: + - pos: 0.5,-1.5 + parent: 549 + type: Transform +- proto: BoxBodyBag + entities: + - uid: 157 + components: + - pos: 3.4562814,-12.205579 + parent: 549 + type: Transform +- proto: BoxBottle + entities: + - uid: 227 + components: + - pos: -5.3847823,-2.3420405 + parent: 549 + type: Transform +- proto: BoxFolderBase + entities: + - uid: 331 + components: + - pos: -2.5804827,-6.490317 + parent: 549 + type: Transform +- proto: BoxMouthSwab + entities: + - uid: 310 + components: + - pos: -1.7,-15.168971 + parent: 549 + type: Transform +- proto: BoxPillCanister + entities: + - uid: 222 + components: + - pos: -5.6347823,-2.279497 + parent: 549 + type: Transform +- proto: BoxSterileMask + entities: + - uid: 311 + components: + - pos: -1.6375,-15.442259 + parent: 549 + type: Transform +- proto: CableApcExtension + entities: + - uid: 1 + components: + - pos: 1.5,-7.5 + parent: 549 + type: Transform + - uid: 462 + components: + - pos: 0.5,-5.5 + parent: 549 + type: Transform + - uid: 463 + components: + - pos: 0.5,-4.5 + parent: 549 + type: Transform + - uid: 464 + components: + - pos: 1.5,-4.5 + parent: 549 + type: Transform + - uid: 465 + components: + - pos: 2.5,-4.5 + parent: 549 + type: Transform + - uid: 466 + components: + - pos: 3.5,-4.5 + parent: 549 + type: Transform + - uid: 467 + components: + - pos: -0.5,-4.5 + parent: 549 + type: Transform + - uid: 468 + components: + - pos: -0.5,-3.5 + parent: 549 + type: Transform + - uid: 469 + components: + - pos: -0.5,-2.5 + parent: 549 + type: Transform + - uid: 470 + components: + - pos: -0.5,-1.5 + parent: 549 + type: Transform + - uid: 471 + components: + - pos: -0.5,-0.5 + parent: 549 + type: Transform + - uid: 473 + components: + - pos: 0.5,-2.5 + parent: 549 + type: Transform + - uid: 474 + components: + - pos: -1.5,-3.5 + parent: 549 + type: Transform + - uid: 475 + components: + - pos: -2.5,-3.5 + parent: 549 + type: Transform + - uid: 476 + components: + - pos: -3.5,-3.5 + parent: 549 + type: Transform + - uid: 477 + components: + - pos: -4.5,-3.5 + parent: 549 + type: Transform + - uid: 478 + components: + - pos: -4.5,-2.5 + parent: 549 + type: Transform + - uid: 479 + components: + - pos: -4.5,-1.5 + parent: 549 + type: Transform + - uid: 480 + components: + - pos: -5.5,-1.5 + parent: 549 + type: Transform + - uid: 481 + components: + - pos: -5.5,-0.5 + parent: 549 + type: Transform + - uid: 482 + components: + - pos: -4.5,-0.5 + parent: 549 + type: Transform + - uid: 483 + components: + - pos: -6.5,-1.5 + parent: 549 + type: Transform + - uid: 484 + components: + - pos: -4.5,0.5 + parent: 549 + type: Transform + - uid: 485 + components: + - pos: -3.5,0.5 + parent: 549 + type: Transform + - uid: 486 + components: + - pos: -3.5,-0.5 + parent: 549 + type: Transform + - uid: 487 + components: + - pos: -4.5,1.5 + parent: 549 + type: Transform + - uid: 488 + components: + - pos: -4.5,2.5 + parent: 549 + type: Transform + - uid: 489 + components: + - pos: -2.5,0.5 + parent: 549 + type: Transform + - uid: 490 + components: + - pos: -2.5,-0.5 + parent: 549 + type: Transform + - uid: 491 + components: + - pos: -2.5,-1.5 + parent: 549 + type: Transform + - uid: 492 + components: + - pos: -2.5,-2.5 + parent: 549 + type: Transform + - uid: 493 + components: + - pos: -1.5,-0.5 + parent: 549 + type: Transform + - uid: 494 + components: + - pos: 0.5,-6.5 + parent: 549 + type: Transform + - uid: 495 + components: + - pos: -0.5,-6.5 + parent: 549 + type: Transform + - uid: 496 + components: + - pos: -0.5,-7.5 + parent: 549 + type: Transform + - uid: 497 + components: + - pos: 0.5,-7.5 + parent: 549 + type: Transform + - uid: 498 + components: + - pos: -1.5,-7.5 + parent: 549 + type: Transform + - uid: 499 + components: + - pos: -2.5,-7.5 + parent: 549 + type: Transform + - uid: 500 + components: + - pos: -2.5,-8.5 + parent: 549 + type: Transform + - uid: 501 + components: + - pos: -2.5,-9.5 + parent: 549 + type: Transform + - uid: 502 + components: + - pos: -2.5,-10.5 + parent: 549 + type: Transform + - uid: 503 + components: + - pos: 1.5,-8.5 + parent: 549 + type: Transform + - uid: 504 + components: + - pos: 1.5,-9.5 + parent: 549 + type: Transform + - uid: 505 + components: + - pos: 1.5,-10.5 + parent: 549 + type: Transform + - uid: 506 + components: + - pos: 3.5,-10.5 + parent: 549 + type: Transform + - uid: 507 + components: + - pos: 3.5,-9.5 + parent: 549 + type: Transform + - uid: 508 + components: + - pos: 3.5,-8.5 + parent: 549 + type: Transform + - uid: 509 + components: + - pos: 3.5,-7.5 + parent: 549 + type: Transform + - uid: 510 + components: + - pos: 2.5,-7.5 + parent: 549 + type: Transform + - uid: 511 + components: + - pos: 6.5,-12.5 + parent: 549 + type: Transform + - uid: 512 + components: + - pos: 5.5,-12.5 + parent: 549 + type: Transform + - uid: 513 + components: + - pos: 5.5,-11.5 + parent: 549 + type: Transform + - uid: 514 + components: + - pos: 5.5,-10.5 + parent: 549 + type: Transform + - uid: 515 + components: + - pos: 6.5,-10.5 + parent: 549 + type: Transform + - uid: 516 + components: + - pos: 7.5,-10.5 + parent: 549 + type: Transform + - uid: 517 + components: + - pos: 8.5,-10.5 + parent: 549 + type: Transform + - uid: 518 + components: + - pos: 9.5,-10.5 + parent: 549 + type: Transform + - uid: 519 + components: + - pos: 4.5,-12.5 + parent: 549 + type: Transform + - uid: 520 + components: + - pos: 3.5,-12.5 + parent: 549 + type: Transform + - uid: 521 + components: + - pos: 2.5,-12.5 + parent: 549 + type: Transform + - uid: 522 + components: + - pos: 1.5,-12.5 + parent: 549 + type: Transform + - uid: 523 + components: + - pos: 0.5,-12.5 + parent: 549 + type: Transform + - uid: 524 + components: + - pos: -0.5,-12.5 + parent: 549 + type: Transform + - uid: 525 + components: + - pos: -1.5,-12.5 + parent: 549 + type: Transform + - uid: 526 + components: + - pos: -2.5,-12.5 + parent: 549 + type: Transform + - uid: 527 + components: + - pos: -3.5,-12.5 + parent: 549 + type: Transform + - uid: 528 + components: + - pos: -4.5,-12.5 + parent: 549 + type: Transform + - uid: 529 + components: + - pos: -5.5,-12.5 + parent: 549 + type: Transform + - uid: 530 + components: + - pos: -5.5,-11.5 + parent: 549 + type: Transform + - uid: 531 + components: + - pos: -6.5,-11.5 + parent: 549 + type: Transform + - uid: 532 + components: + - pos: -7.5,-11.5 + parent: 549 + type: Transform + - uid: 533 + components: + - pos: -8.5,-11.5 + parent: 549 + type: Transform + - uid: 534 + components: + - pos: -9.5,-11.5 + parent: 549 + type: Transform + - uid: 535 + components: + - pos: -8.5,-10.5 + parent: 549 + type: Transform + - uid: 536 + components: + - pos: -10.5,-12.5 + parent: 549 + type: Transform + - uid: 537 + components: + - pos: -10.5,-13.5 + parent: 549 + type: Transform + - uid: 538 + components: + - pos: -10.5,-14.5 + parent: 549 + type: Transform + - uid: 539 + components: + - pos: 2.5,-13.5 + parent: 549 + type: Transform + - uid: 540 + components: + - pos: 2.5,-14.5 + parent: 549 + type: Transform + - uid: 541 + components: + - pos: 1.5,-14.5 + parent: 549 + type: Transform + - uid: 542 + components: + - pos: 0.5,-14.5 + parent: 549 + type: Transform + - uid: 543 + components: + - pos: -0.5,-14.5 + parent: 549 + type: Transform + - uid: 544 + components: + - pos: -0.5,-15.5 + parent: 549 + type: Transform + - uid: 545 + components: + - pos: -1.5,-15.5 + parent: 549 + type: Transform + - uid: 546 + components: + - pos: -2.5,-15.5 + parent: 549 + type: Transform + - uid: 547 + components: + - pos: -3.5,-15.5 + parent: 549 + type: Transform +- proto: CableHV + entities: + - uid: 6 + components: + - pos: -6.5,-17.5 + parent: 549 + type: Transform + - uid: 7 + components: + - pos: -7.5,-17.5 + parent: 549 + type: Transform + - uid: 72 + components: + - pos: -8.5,-17.5 + parent: 549 + type: Transform + - uid: 78 + components: + - pos: -9.5,-17.5 + parent: 549 + type: Transform + - uid: 248 + components: + - pos: -10.5,-17.5 + parent: 549 + type: Transform + - uid: 249 + components: + - pos: -10.5,-18.5 + parent: 549 + type: Transform + - uid: 250 + components: + - pos: -9.5,-11.5 + parent: 549 + type: Transform + - uid: 251 + components: + - pos: -8.5,-11.5 + parent: 549 + type: Transform + - uid: 256 + components: + - pos: -7.5,-11.5 + parent: 549 + type: Transform + - uid: 257 + components: + - pos: -6.5,-11.5 + parent: 549 + type: Transform + - uid: 258 + components: + - pos: -5.5,-11.5 + parent: 549 + type: Transform + - uid: 259 + components: + - pos: -8.5,-10.5 + parent: 549 + type: Transform + - uid: 260 + components: + - pos: -5.5,-12.5 + parent: 549 + type: Transform + - uid: 261 + components: + - pos: -4.5,-12.5 + parent: 549 + type: Transform + - uid: 262 + components: + - pos: -3.5,-12.5 + parent: 549 + type: Transform + - uid: 263 + components: + - pos: -2.5,-12.5 + parent: 549 + type: Transform + - uid: 264 + components: + - pos: -1.5,-12.5 + parent: 549 + type: Transform + - uid: 265 + components: + - pos: -0.5,-12.5 + parent: 549 + type: Transform + - uid: 266 + components: + - pos: 0.5,-12.5 + parent: 549 + type: Transform + - uid: 267 + components: + - pos: 1.5,-12.5 + parent: 549 + type: Transform + - uid: 268 + components: + - pos: 2.5,-12.5 + parent: 549 + type: Transform + - uid: 269 + components: + - pos: 3.5,-12.5 + parent: 549 + type: Transform + - uid: 270 + components: + - pos: 4.5,-12.5 + parent: 549 + type: Transform + - uid: 271 + components: + - pos: 5.5,-12.5 + parent: 549 + type: Transform + - uid: 272 + components: + - pos: 6.5,-12.5 + parent: 549 + type: Transform + - uid: 273 + components: + - pos: 5.5,-11.5 + parent: 549 + type: Transform + - uid: 274 + components: + - pos: 5.5,-10.5 + parent: 549 + type: Transform + - uid: 275 + components: + - pos: 6.5,-10.5 + parent: 549 + type: Transform + - uid: 276 + components: + - pos: 7.5,-10.5 + parent: 549 + type: Transform + - uid: 277 + components: + - pos: 8.5,-10.5 + parent: 549 + type: Transform + - uid: 278 + components: + - pos: 9.5,-10.5 + parent: 549 + type: Transform +- proto: CableMV + entities: + - uid: 442 + components: + - pos: 0.5,-5.5 + parent: 549 + type: Transform + - uid: 443 + components: + - pos: 0.5,-6.5 + parent: 549 + type: Transform + - uid: 444 + components: + - pos: -0.5,-6.5 + parent: 549 + type: Transform + - uid: 445 + components: + - pos: -0.5,-7.5 + parent: 549 + type: Transform + - uid: 446 + components: + - pos: 0.5,-7.5 + parent: 549 + type: Transform + - uid: 447 + components: + - pos: 1.5,-7.5 + parent: 549 + type: Transform + - uid: 448 + components: + - pos: 2.5,-7.5 + parent: 549 + type: Transform + - uid: 449 + components: + - pos: 3.5,-7.5 + parent: 549 + type: Transform + - uid: 450 + components: + - pos: 4.5,-7.5 + parent: 549 + type: Transform + - uid: 451 + components: + - pos: 5.5,-7.5 + parent: 549 + type: Transform + - uid: 452 + components: + - pos: 5.5,-8.5 + parent: 549 + type: Transform + - uid: 453 + components: + - pos: 5.5,-9.5 + parent: 549 + type: Transform + - uid: 454 + components: + - pos: 5.5,-10.5 + parent: 549 + type: Transform + - uid: 455 + components: + - pos: 6.5,-10.5 + parent: 549 + type: Transform + - uid: 456 + components: + - pos: 7.5,-10.5 + parent: 549 + type: Transform + - uid: 457 + components: + - pos: 8.5,-10.5 + parent: 549 + type: Transform + - uid: 458 + components: + - pos: 9.5,-10.5 + parent: 549 + type: Transform + - uid: 459 + components: + - pos: 5.5,-11.5 + parent: 549 + type: Transform + - uid: 460 + components: + - pos: 5.5,-12.5 + parent: 549 + type: Transform + - uid: 461 + components: + - pos: 6.5,-12.5 + parent: 549 + type: Transform +- proto: CarpetSBlue + entities: + - uid: 195 + components: + - pos: -2.5,-9.5 + parent: 549 + type: Transform + - uid: 196 + components: + - pos: -2.5,-10.5 + parent: 549 + type: Transform + - uid: 197 + components: + - pos: -1.5,-9.5 + parent: 549 + type: Transform + - uid: 198 + components: + - pos: -1.5,-10.5 + parent: 549 + type: Transform +- proto: Catwalk + entities: + - uid: 2 + components: + - pos: -10.5,-16.5 + parent: 549 + type: Transform + - uid: 74 + components: + - pos: -10.5,-17.5 + parent: 549 + type: Transform + - uid: 80 + components: + - pos: -10.5,-18.5 + parent: 549 + type: Transform + - uid: 127 + components: + - pos: 5.5,-12.5 + parent: 549 + type: Transform + - uid: 128 + components: + - pos: 5.5,-10.5 + parent: 549 + type: Transform + - uid: 129 + components: + - pos: 7.5,-10.5 + parent: 549 + type: Transform + - uid: 130 + components: + - pos: 8.5,-10.5 + parent: 549 + type: Transform +- proto: Chair + entities: + - uid: 163 + components: + - pos: 1.5,-6.5 + parent: 549 + type: Transform + - uid: 165 + components: + - pos: 2.5,-6.5 + parent: 549 + type: Transform + - uid: 172 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 549 + type: Transform +- proto: ChairOfficeLight + entities: + - uid: 175 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 549 + type: Transform + - uid: 176 + components: + - pos: -2.5,-9.5 + parent: 549 + type: Transform + - uid: 228 + components: + - pos: -4.5,-3.5 + parent: 549 + type: Transform + - uid: 229 + components: + - rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 549 + type: Transform + - uid: 472 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 549 + type: Transform +- proto: chem_master + entities: + - uid: 213 + components: + - pos: -4.5,-4.5 + parent: 549 + type: Transform +- proto: ChemDispenser + entities: + - uid: 214 + components: + - pos: -3.5,-4.5 + parent: 549 + type: Transform +- proto: ClosetL3VirologyFilled + entities: + - uid: 305 + components: + - pos: -1.5,-16.5 + parent: 549 + type: Transform +- proto: ClothingBeltMilitaryWebbing + entities: + - uid: 162 + components: + - pos: 4.479266,-14.418463 + parent: 549 + type: Transform +- proto: ClothingEyesHudMedical + entities: + - uid: 292 + components: + - pos: 1.6500001,-4.5277977 + parent: 549 + type: Transform +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 308 + components: + - pos: -1.5,-15.544232 + parent: 549 + type: Transform +- proto: ClothingHeadHatPlaguedoctor + entities: + - uid: 294 + components: + - pos: 0.77500004,-4.290133 + parent: 549 + type: Transform +- proto: ClothingMaskPlague + entities: + - uid: 295 + components: + - pos: -0.024999976,-4.540307 + parent: 549 + type: Transform +- proto: ClothingNeckCloakHerald + entities: + - uid: 134 + components: + - pos: 5.5354137,-9.420292 + parent: 549 + type: Transform +- proto: ClothingOuterPlagueSuit + entities: + - uid: 309 + components: + - pos: -1.25,-15.331584 + parent: 549 + type: Transform +- proto: ClothingOuterWinterRobo + entities: + - uid: 133 + components: + - pos: 5.522914,-9.332731 + parent: 549 + type: Transform +- proto: ComputerBroken + entities: + - uid: 171 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-8.5 + parent: 549 + type: Transform + - uid: 173 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 549 + type: Transform + - uid: 244 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 549 + type: Transform +- proto: CrateChemistrySupplies + entities: + - uid: 155 + components: + - pos: 4.5,-7.5 + parent: 549 + type: Transform +- proto: Crematorium + entities: + - uid: 314 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 549 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 315 + type: ContainerContainer +- proto: DisposalBend + entities: + - uid: 352 + components: + - pos: -0.5,-4.5 + parent: 549 + type: Transform + - uid: 353 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 549 + type: Transform + - uid: 361 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 549 + type: Transform +- proto: DisposalJunctionFlipped + entities: + - uid: 358 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-6.5 + parent: 549 + type: Transform +- proto: DisposalPipe + entities: + - uid: 354 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 549 + type: Transform + - uid: 355 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 549 + type: Transform + - uid: 356 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 549 + type: Transform + - uid: 357 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 549 + type: Transform + - uid: 360 + components: + - pos: 3.5,-5.5 + parent: 549 + type: Transform + - uid: 363 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 549 + type: Transform + - uid: 364 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 549 + type: Transform +- proto: DisposalPipeBroken + entities: + - uid: 359 + components: + - pos: 3.5,-4.5 + parent: 549 + type: Transform + - uid: 362 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 549 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 351 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 549 + type: Transform +- proto: DisposalUnit + entities: + - uid: 205 + components: + - pos: -1.5,-4.5 + parent: 549 + type: Transform +- proto: DrinkDoctorsDelightGlass + entities: + - uid: 192 + components: + - pos: -3.7222817,-9.922518 + parent: 549 + type: Transform +- proto: Dropper + entities: + - uid: 225 + components: + - pos: -5.547282,-4.280887 + parent: 549 + type: Transform + - uid: 226 + components: + - pos: -5.297282,-4.518553 + parent: 549 + type: Transform +- proto: EmergencyMedipen + entities: + - uid: 289 + components: + - pos: 1.5500002,-4.215081 + parent: 549 + type: Transform + - uid: 290 + components: + - pos: 1.4375,-4.3902016 + parent: 549 + type: Transform +- proto: Firelock + entities: + - uid: 131 + components: + - pos: 6.5,-10.5 + parent: 549 + type: Transform +- proto: FirelockEdge + entities: + - uid: 282 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 549 + type: Transform + - uid: 283 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 549 + type: Transform +- proto: FirelockGlass + entities: + - uid: 326 + components: + - pos: -4.5,1.5 + parent: 549 + type: Transform + - uid: 327 + components: + - pos: -2.5,-1.5 + parent: 549 + type: Transform + - uid: 328 + components: + - pos: -2.5,-2.5 + parent: 549 + type: Transform +- proto: FloorDrain + entities: + - uid: 159 + components: + - pos: 1.5,-11.5 + parent: 549 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 246 + components: + - pos: -4.5,-1.5 + parent: 549 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 247 + components: + - pos: -3.5,-2.5 + parent: 549 + type: Transform + - fixtures: {} + type: Fixtures +- proto: FoodBakedCannabisBrownie + entities: + - uid: 143 + components: + - flags: InContainer + type: MetaData + - parent: 142 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodBakedWaffleRoffle + entities: + - uid: 151 + components: + - flags: InContainer + type: MetaData + - parent: 150 + type: Transform + - solutions: + food: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 20 + reagents: + - data: null + ReagentId: Nutriment + Quantity: 8 + - data: null + ReagentId: Vitamin + Quantity: 2 + - data: null + ReagentId: Toxin + Quantity: 5 + type: SolutionContainerManager + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: GasPassiveVent + entities: + - uid: 371 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-16.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 373 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-16.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 379 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-3.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 409 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-14.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 411 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-14.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 412 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 413 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 420 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 421 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 383 + components: + - pos: 1.5,-7.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 374 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-16.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 375 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-16.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 376 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-16.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 377 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 378 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 384 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 385 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 386 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 387 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 388 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 389 + components: + - pos: 1.5,-8.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 390 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 391 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 392 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-6.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 393 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 394 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 395 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 396 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 397 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 398 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 399 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 400 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 401 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 422 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 423 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 424 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 425 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 426 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 427 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 428 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 429 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 431 + components: + - pos: 4.5,-5.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 432 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 433 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 434 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 435 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 436 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-10.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 437 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-13.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 438 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-14.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 439 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 440 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 441 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-14.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 372 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-16.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 380 + components: + - pos: -1.5,-3.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 381 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 382 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-7.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 410 + components: + - pos: -0.5,-14.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 414 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 415 + components: + - pos: 3.5,-6.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 416 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 417 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 418 + components: + - pos: -0.5,-2.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 419 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 430 + components: + - pos: 2.5,-6.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 402 + components: + - pos: -3.5,-1.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 403 + components: + - pos: -1.5,-1.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 404 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 405 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 406 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 407 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-15.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 408 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-15.5 + parent: 549 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 346 + components: + - pos: -4.5,-2.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 347 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 348 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 349 + components: + - pos: 1.5,-6.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 350 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-9.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 369 + components: + - pos: -4.5,-15.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 370 + components: + - pos: 0.5,-15.5 + parent: 549 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: Grille + entities: + - uid: 31 + components: + - pos: -8.5,-12.5 + parent: 549 + type: Transform + - uid: 33 + components: + - pos: -9.5,-12.5 + parent: 549 + type: Transform + - uid: 34 + components: + - pos: -9.5,-13.5 + parent: 549 + type: Transform + - uid: 35 + components: + - pos: -9.5,-14.5 + parent: 549 + type: Transform + - uid: 36 + components: + - pos: -9.5,-15.5 + parent: 549 + type: Transform + - uid: 37 + components: + - pos: -9.5,-16.5 + parent: 549 + type: Transform + - uid: 67 + components: + - pos: 2.5,-5.5 + parent: 549 + type: Transform + - uid: 68 + components: + - pos: -0.5,-6.5 + parent: 549 + type: Transform + - uid: 69 + components: + - pos: -1.5,-5.5 + parent: 549 + type: Transform + - uid: 70 + components: + - pos: -2.5,-4.5 + parent: 549 + type: Transform + - uid: 71 + components: + - pos: -3.5,-5.5 + parent: 549 + type: Transform + - uid: 75 + components: + - pos: -5.5,1.5 + parent: 549 + type: Transform + - uid: 76 + components: + - pos: -3.5,1.5 + parent: 549 + type: Transform + - uid: 77 + components: + - pos: -2.5,-0.5 + parent: 549 + type: Transform + - uid: 90 + components: + - pos: -1.5,-8.5 + parent: 549 + type: Transform + - uid: 104 + components: + - pos: -5.5,-16.5 + parent: 549 + type: Transform + - uid: 105 + components: + - pos: -5.5,-15.5 + parent: 549 + type: Transform + - uid: 106 + components: + - pos: -5.5,-14.5 + parent: 549 + type: Transform + - uid: 107 + components: + - pos: -3.5,-17.5 + parent: 549 + type: Transform + - uid: 108 + components: + - pos: -4.5,-17.5 + parent: 549 + type: Transform + - uid: 109 + components: + - pos: -0.5,-17.5 + parent: 549 + type: Transform + - uid: 111 + components: + - pos: -1.5,-17.5 + parent: 549 + type: Transform + - uid: 153 + components: + - pos: 5.5,-7.5 + parent: 549 + type: Transform + - uid: 299 + components: + - pos: -2.5,-16.5 + parent: 549 + type: Transform + - uid: 300 + components: + - pos: -2.5,-15.5 + parent: 549 + type: Transform +- proto: HandheldGPSBasic + entities: + - uid: 168 + components: + - pos: 6.286941,-7.3879266 + parent: 549 + type: Transform +- proto: HandheldHealthAnalyzer + entities: + - uid: 193 + components: + - pos: -3.422282,-10.497917 + parent: 549 + type: Transform + - uid: 298 + components: + - pos: -0.6,-4.240098 + parent: 549 + type: Transform +- proto: HandLabeler + entities: + - uid: 224 + components: + - pos: -5.522282,-3.9681704 + parent: 549 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 218 + components: + - pos: -5.5,-3.5 + parent: 549 + type: Transform +- proto: Lamp + entities: + - uid: 189 + components: + - pos: -3.484782,-9.13447 + parent: 549 + type: Transform +- proto: LockerChemistryFilled + entities: + - uid: 221 + components: + - pos: -5.5,-1.5 + parent: 549 + type: Transform +- proto: LockerChiefMedicalOfficer + entities: + - uid: 194 + components: + - pos: -1.5,-9.5 + parent: 549 + type: Transform +- proto: MachineFrame + entities: + - uid: 279 + components: + - pos: 5.5,-14.5 + parent: 549 + type: Transform + - uid: 280 + components: + - pos: 6.5,-14.5 + parent: 549 + type: Transform + - uid: 281 + components: + - pos: 7.5,-14.5 + parent: 549 + type: Transform +- proto: MachineFrameDestroyed + entities: + - uid: 158 + components: + - pos: 0.5,-11.5 + parent: 549 + type: Transform + - uid: 174 + components: + - pos: -4.5,-6.5 + parent: 549 + type: Transform + - uid: 219 + components: + - pos: -5.5,-0.5 + parent: 549 + type: Transform + - uid: 220 + components: + - pos: -3.5,0.5 + parent: 549 + type: Transform + - uid: 306 + components: + - pos: 0.5,-16.5 + parent: 549 + type: Transform + - uid: 307 + components: + - pos: 0.5,-15.5 + parent: 549 + type: Transform +- proto: MaintenanceFluffSpawner + entities: + - uid: 548 + components: + - pos: -7.5,-5.5 + parent: 549 + type: Transform +- proto: MaintenanceWeaponSpawner + entities: + - uid: 136 + components: + - pos: 5.5,-9.5 + parent: 549 + type: Transform + - uid: 140 + components: + - pos: 5.5,-9.5 + parent: 549 + type: Transform +- proto: MaterialBiomass + entities: + - uid: 160 + components: + - pos: 3.7687814,-12.29314 + parent: 549 + type: Transform +- proto: MaterialWoodPlank + entities: + - uid: 135 + components: + - pos: 5.4729137,-12.447393 + parent: 549 + type: Transform +- proto: MedicalBed + entities: + - uid: 179 + components: + - pos: -1.5,-10.5 + parent: 549 + type: Transform + - uid: 180 + components: + - pos: 0.5,-1.5 + parent: 549 + type: Transform + - uid: 181 + components: + - pos: 0.5,-2.5 + parent: 549 + type: Transform + - uid: 182 + components: + - pos: -3.5,-15.5 + parent: 549 + type: Transform + - uid: 183 + components: + - pos: -3.5,-16.5 + parent: 549 + type: Transform +- proto: MedkitAdvancedFilled + entities: + - uid: 169 + components: + - pos: 6.499441,-7.2378225 + parent: 549 + type: Transform +- proto: MedkitCombatFilled + entities: + - uid: 170 + components: + - pos: 6.5369415,-7.412944 + parent: 549 + type: Transform + - uid: 190 + components: + - pos: -3.459782,-9.784922 + parent: 549 + type: Transform +- proto: MonkeyCube + entities: + - uid: 161 + components: + - pos: 3.7292664,-12.554667 + parent: 549 + type: Transform +- proto: MonkeyCubeWrapped + entities: + - uid: 296 + components: + - pos: 0.3,-4.5277977 + parent: 549 + type: Transform + - uid: 332 + components: + - pos: -2.3679829,-6.252652 + parent: 549 + type: Transform +- proto: Morgue + entities: + - uid: 142 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 549 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1497 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 143 + type: ContainerContainer + - uid: 144 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 549 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1497 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 145 + type: ContainerContainer + - uid: 146 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 549 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1497 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 147 + type: ContainerContainer + - uid: 148 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 549 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1497 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 149 + type: ContainerContainer + - uid: 150 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 549 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1497 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 151 + type: ContainerContainer +- proto: PillCanister + entities: + - uid: 232 + components: + - pos: -4.609782,-1.3663629 + parent: 549 + type: Transform + - storageUsed: 1 + type: Storage + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 233 + type: ContainerContainer + - uid: 234 + components: + - pos: -4.172282,-1.4038893 + parent: 549 + type: Transform + - storageUsed: 5 + type: Storage + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 235 + - 236 + - 237 + - 238 + - 239 + type: ContainerContainer + - uid: 240 + components: + - pos: -3.634782,-1.4289063 + parent: 549 + type: Transform + - storageUsed: 3 + type: Storage + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 241 + - 242 + - 243 + type: ContainerContainer +- proto: PillDexalin + entities: + - uid: 241 + components: + - flags: InContainer + type: MetaData + - parent: 240 + type: Transform + - canCollide: False + type: Physics + - uid: 242 + components: + - flags: InContainer + type: MetaData + - parent: 240 + type: Transform + - canCollide: False + type: Physics + - uid: 243 + components: + - flags: InContainer + type: MetaData + - parent: 240 + type: Transform + - canCollide: False + type: Physics +- proto: PillKelotane + entities: + - uid: 235 + components: + - flags: InContainer + type: MetaData + - parent: 234 + type: Transform + - canCollide: False + type: Physics + - uid: 236 + components: + - flags: InContainer + type: MetaData + - parent: 234 + type: Transform + - canCollide: False + type: Physics + - uid: 237 + components: + - flags: InContainer + type: MetaData + - parent: 234 + type: Transform + - canCollide: False + type: Physics + - uid: 238 + components: + - flags: InContainer + type: MetaData + - parent: 234 + type: Transform + - canCollide: False + type: Physics + - uid: 239 + components: + - flags: InContainer + type: MetaData + - parent: 234 + type: Transform + - canCollide: False + type: Physics +- proto: PillRomerol + entities: + - uid: 233 + components: + - flags: InContainer + type: MetaData + - parent: 232 + type: Transform + - canCollide: False + type: Physics +- proto: PillTricordrazine + entities: + - uid: 253 + components: + - pos: -2.5069673,-1.2948756 + parent: 549 + type: Transform + - uid: 254 + components: + - pos: -2.4194672,-1.4074534 + parent: 549 + type: Transform + - uid: 255 + components: + - pos: -2.3694673,-1.5325402 + parent: 549 + type: Transform +- proto: PottedPlantRD + entities: + - uid: 154 + components: + - pos: 0.5,-6.5 + parent: 549 + type: Transform +- proto: Poweredlight + entities: + - uid: 320 + components: + - pos: -2.5,-6.5 + parent: 549 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 321 + components: + - pos: 1.5,-6.5 + parent: 549 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 323 + components: + - pos: -4.5,-14.5 + parent: 549 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 324 + components: + - pos: 0.5,-14.5 + parent: 549 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredlightEmpty + entities: + - uid: 319 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 549 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLight + entities: + - uid: 312 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 549 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 313 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-12.5 + parent: 549 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 322 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-10.5 + parent: 549 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: Rack + entities: + - uid: 132 + components: + - pos: 5.5,-9.5 + parent: 549 + type: Transform + - uid: 167 + components: + - pos: 6.5,-7.5 + parent: 549 + type: Transform +- proto: RandomBoards + entities: + - uid: 333 + components: + - pos: -4.5,-6.5 + parent: 549 + type: Transform + - uid: 334 + components: + - pos: -3.5,0.5 + parent: 549 + type: Transform + - uid: 335 + components: + - pos: -5.5,-0.5 + parent: 549 + type: Transform + - uid: 336 + components: + - pos: 0.5,-16.5 + parent: 549 + type: Transform + - uid: 337 + components: + - pos: 0.5,-15.5 + parent: 549 + type: Transform +- proto: RandomItem + entities: + - uid: 367 + components: + - pos: -2.5,2.5 + parent: 549 + type: Transform + - uid: 368 + components: + - pos: -5.5,-11.5 + parent: 549 + type: Transform +- proto: RandomMedicCorpseSpawner + entities: + - uid: 550 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-12.5 + parent: 549 + type: Transform + - uid: 553 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 549 + type: Transform +- proto: ReagentSlimeSpawner + entities: + - uid: 551 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-7.5 + parent: 549 + type: Transform +- proto: ReinforcedPlasmaWindow + entities: + - uid: 301 + components: + - pos: -2.5,-16.5 + parent: 549 + type: Transform + - uid: 302 + components: + - pos: -2.5,-15.5 + parent: 549 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 81 + components: + - pos: -5.5,1.5 + parent: 549 + type: Transform + - uid: 82 + components: + - pos: -3.5,1.5 + parent: 549 + type: Transform + - uid: 83 + components: + - pos: -2.5,-0.5 + parent: 549 + type: Transform + - uid: 84 + components: + - pos: -2.5,-4.5 + parent: 549 + type: Transform + - uid: 85 + components: + - pos: -3.5,-5.5 + parent: 549 + type: Transform + - uid: 86 + components: + - pos: -1.5,-5.5 + parent: 549 + type: Transform + - uid: 87 + components: + - pos: -0.5,-6.5 + parent: 549 + type: Transform + - uid: 88 + components: + - pos: 2.5,-5.5 + parent: 549 + type: Transform + - uid: 89 + components: + - pos: -1.5,-8.5 + parent: 549 + type: Transform + - uid: 91 + components: + - pos: -8.5,-12.5 + parent: 549 + type: Transform + - uid: 92 + components: + - pos: -9.5,-12.5 + parent: 549 + type: Transform + - uid: 93 + components: + - pos: -9.5,-13.5 + parent: 549 + type: Transform + - uid: 94 + components: + - pos: -9.5,-14.5 + parent: 549 + type: Transform + - uid: 95 + components: + - pos: -9.5,-15.5 + parent: 549 + type: Transform + - uid: 96 + components: + - pos: -9.5,-16.5 + parent: 549 + type: Transform + - uid: 97 + components: + - pos: -5.5,-14.5 + parent: 549 + type: Transform + - uid: 98 + components: + - pos: -5.5,-15.5 + parent: 549 + type: Transform + - uid: 99 + components: + - pos: -5.5,-16.5 + parent: 549 + type: Transform + - uid: 100 + components: + - pos: -3.5,-17.5 + parent: 549 + type: Transform + - uid: 101 + components: + - pos: -4.5,-17.5 + parent: 549 + type: Transform + - uid: 102 + components: + - pos: -1.5,-17.5 + parent: 549 + type: Transform + - uid: 103 + components: + - pos: -0.5,-17.5 + parent: 549 + type: Transform + - uid: 166 + components: + - pos: 5.5,-7.5 + parent: 549 + type: Transform +- proto: RollerBed + entities: + - uid: 200 + components: + - pos: 2.540218,-4.4812393 + parent: 549 + type: Transform + - uid: 201 + components: + - pos: 2.4902184,-3.955874 + parent: 549 + type: Transform +- proto: SalvageLorePaperGamingSpawner + entities: + - uid: 252 + components: + - pos: -4.5,-0.5 + parent: 549 + type: Transform +- proto: SalvageMobSpawner75 + entities: + - uid: 339 + components: + - pos: -3.5,-0.5 + parent: 549 + type: Transform + - uid: 340 + components: + - pos: -3.5,-3.5 + parent: 549 + type: Transform + - uid: 341 + components: + - pos: 0.5,-3.5 + parent: 549 + type: Transform + - uid: 342 + components: + - pos: 0.5,-7.5 + parent: 549 + type: Transform + - uid: 343 + components: + - pos: 5.5,-11.5 + parent: 549 + type: Transform +- proto: SalvagePartsSpawnerLow + entities: + - uid: 366 + components: + - pos: 5.5,-9.5 + parent: 549 + type: Transform +- proto: SawElectric + entities: + - uid: 164 + components: + - pos: 3.5167663,-12.542159 + parent: 549 + type: Transform +- proto: ShardGlass + entities: + - uid: 231 + components: + - pos: -5.334782,0.38485345 + parent: 549 + type: Transform +- proto: SheetPlasma + entities: + - uid: 223 + components: + - pos: -5.747282,-2.8548968 + parent: 549 + type: Transform +- proto: SignMorgue + entities: + - uid: 141 + components: + - pos: 2.5,-8.5 + parent: 549 + type: Transform +- proto: SinkStemless + entities: + - uid: 245 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-4.5 + parent: 549 + type: Transform +- proto: SolarPanel + entities: + - uid: 73 + components: + - pos: -8.5,-17.5 + parent: 549 + type: Transform + - uid: 79 + components: + - pos: -7.5,-17.5 + parent: 549 + type: Transform +- proto: SolarPanelBroken + entities: + - uid: 4 + components: + - pos: -9.5,-17.5 + parent: 549 + type: Transform + - uid: 5 + components: + - pos: -6.5,-17.5 + parent: 549 + type: Transform +- proto: SpaceMedipen + entities: + - uid: 291 + components: + - pos: 1.3,-4.252607 + parent: 549 + type: Transform +- proto: SpaceTickSpawner + entities: + - uid: 344 + components: + - pos: -8.5,-13.5 + parent: 549 + type: Transform + - uid: 345 + components: + - pos: -7.5,-13.5 + parent: 549 + type: Transform +- proto: SpawnMobBearSalvage + entities: + - uid: 338 + components: + - pos: -1.5,-12.5 + parent: 549 + type: Transform + - uid: 365 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-12.5 + parent: 549 + type: Transform +- proto: SpawnMobRaccoonMorticia + entities: + - uid: 152 + components: + - pos: 1.5,-12.5 + parent: 549 + type: Transform +- proto: SpawnVehicleWheelchair + entities: + - uid: 552 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 549 + type: Transform +- proto: SurveillanceCameraConstructed + entities: + - uid: 199 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-6.5 + parent: 549 + type: Transform + - uid: 303 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-14.5 + parent: 549 + type: Transform +- proto: Syringe + entities: + - uid: 293 + components: + - rot: -1.5707963267948966 rad + pos: 0.47499996,-4.465254 + parent: 549 + type: Transform + - tags: [] + type: Tag + - solutions: + injector: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 15 + reagents: + - data: null + ReagentId: Spaceacillin + Quantity: 10 + type: SolutionContainerManager + - uid: 297 + components: + - pos: -0.25,-4.377694 + parent: 549 + type: Transform + - tags: [] + type: Tag + - solutions: + injector: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 15 + reagents: + - data: null + ReagentId: BananaHonk + Quantity: 15 + type: SolutionContainerManager +- proto: SyringeEphedrine + entities: + - uid: 191 + components: + - pos: -3.397282,-10.222726 + parent: 549 + type: Transform +- proto: Table + entities: + - uid: 156 + components: + - pos: 3.5,-12.5 + parent: 549 + type: Transform +- proto: TableCounterMetal + entities: + - uid: 207 + components: + - pos: -2.5,-1.5 + parent: 549 + type: Transform + - uid: 210 + components: + - pos: -4.5,1.5 + parent: 549 + type: Transform +- proto: TableFrame + entities: + - uid: 230 + components: + - pos: -5.5,0.5 + parent: 549 + type: Transform +- proto: TableGlass + entities: + - uid: 177 + components: + - pos: -3.5,-9.5 + parent: 549 + type: Transform + - uid: 178 + components: + - pos: -3.5,-10.5 + parent: 549 + type: Transform + - uid: 202 + components: + - pos: -0.5,-4.5 + parent: 549 + type: Transform + - uid: 203 + components: + - pos: 0.5,-4.5 + parent: 549 + type: Transform + - uid: 204 + components: + - pos: 1.5,-4.5 + parent: 549 + type: Transform + - uid: 215 + components: + - pos: -5.5,-4.5 + parent: 549 + type: Transform + - uid: 216 + components: + - pos: -5.5,-3.5 + parent: 549 + type: Transform + - uid: 217 + components: + - pos: -5.5,-2.5 + parent: 549 + type: Transform + - uid: 330 + components: + - pos: -2.5,-6.5 + parent: 549 + type: Transform +- proto: TablePlasmaGlass + entities: + - uid: 304 + components: + - pos: -1.5,-15.5 + parent: 549 + type: Transform +- proto: TableReinforcedGlass + entities: + - uid: 288 + components: + - pos: 1.5,-2.5 + parent: 549 + type: Transform +- proto: TorsoHuman + entities: + - uid: 147 + components: + - flags: InContainer + type: MetaData + - parent: 146 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 149 + components: + - flags: InContainer + type: MetaData + - parent: 148 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: VendingMachineSmartFridge + entities: + - uid: 206 + components: + - flags: SessionSpecific + type: MetaData + - pos: -2.5,-3.5 + parent: 549 + type: Transform +- proto: WallReinforced + entities: + - uid: 3 + components: + - pos: -2.5,0.5 + parent: 549 + type: Transform + - uid: 8 + components: + - pos: -5.5,-5.5 + parent: 549 + type: Transform + - uid: 9 + components: + - pos: -4.5,-5.5 + parent: 549 + type: Transform + - uid: 10 + components: + - pos: -5.5,-6.5 + parent: 549 + type: Transform + - uid: 11 + components: + - pos: -5.5,-7.5 + parent: 549 + type: Transform + - uid: 12 + components: + - pos: -5.5,-8.5 + parent: 549 + type: Transform + - uid: 13 + components: + - pos: -4.5,-8.5 + parent: 549 + type: Transform + - uid: 14 + components: + - pos: -3.5,-8.5 + parent: 549 + type: Transform + - uid: 15 + components: + - pos: -2.5,-5.5 + parent: 549 + type: Transform + - uid: 16 + components: + - pos: -0.5,-8.5 + parent: 549 + type: Transform + - uid: 17 + components: + - pos: 0.5,-8.5 + parent: 549 + type: Transform + - uid: 18 + components: + - pos: -0.5,-9.5 + parent: 549 + type: Transform + - uid: 19 + components: + - pos: -0.5,-10.5 + parent: 549 + type: Transform + - uid: 20 + components: + - pos: -0.5,-11.5 + parent: 549 + type: Transform + - uid: 21 + components: + - pos: -1.5,-11.5 + parent: 549 + type: Transform + - uid: 22 + components: + - pos: -2.5,-11.5 + parent: 549 + type: Transform + - uid: 23 + components: + - pos: -3.5,-11.5 + parent: 549 + type: Transform + - uid: 24 + components: + - pos: -4.5,-11.5 + parent: 549 + type: Transform + - uid: 25 + components: + - pos: -4.5,-10.5 + parent: 549 + type: Transform + - uid: 26 + components: + - pos: -4.5,-9.5 + parent: 549 + type: Transform + - uid: 27 + components: + - pos: -6.5,-12.5 + parent: 549 + type: Transform + - uid: 28 + components: + - pos: -6.5,-13.5 + parent: 549 + type: Transform + - uid: 30 + components: + - pos: -7.5,-12.5 + parent: 549 + type: Transform + - uid: 38 + components: + - pos: -5.5,-13.5 + parent: 549 + type: Transform + - uid: 39 + components: + - pos: -4.5,-13.5 + parent: 549 + type: Transform + - uid: 40 + components: + - pos: -3.5,-13.5 + parent: 549 + type: Transform + - uid: 41 + components: + - pos: -2.5,-13.5 + parent: 549 + type: Transform + - uid: 42 + components: + - pos: -1.5,-13.5 + parent: 549 + type: Transform + - uid: 43 + components: + - pos: -0.5,-13.5 + parent: 549 + type: Transform + - uid: 44 + components: + - pos: 0.5,-13.5 + parent: 549 + type: Transform + - uid: 45 + components: + - pos: 1.5,-13.5 + parent: 549 + type: Transform + - uid: 46 + components: + - pos: -5.5,-17.5 + parent: 549 + type: Transform + - uid: 47 + components: + - pos: -2.5,-17.5 + parent: 549 + type: Transform + - uid: 48 + components: + - pos: 0.5,-17.5 + parent: 549 + type: Transform + - uid: 49 + components: + - pos: 1.5,-17.5 + parent: 549 + type: Transform + - uid: 50 + components: + - pos: 1.5,-16.5 + parent: 549 + type: Transform + - uid: 51 + components: + - pos: 1.5,-15.5 + parent: 549 + type: Transform + - uid: 52 + components: + - pos: 2.5,-15.5 + parent: 549 + type: Transform + - uid: 53 + components: + - pos: 3.5,-15.5 + parent: 549 + type: Transform + - uid: 54 + components: + - pos: 3.5,-14.5 + parent: 549 + type: Transform + - uid: 55 + components: + - pos: 3.5,-13.5 + parent: 549 + type: Transform + - uid: 56 + components: + - pos: 4.5,-13.5 + parent: 549 + type: Transform + - uid: 57 + components: + - pos: 4.5,-12.5 + parent: 549 + type: Transform + - uid: 58 + components: + - pos: 4.5,-11.5 + parent: 549 + type: Transform + - uid: 59 + components: + - pos: 4.5,-10.5 + parent: 549 + type: Transform + - uid: 60 + components: + - pos: 4.5,-9.5 + parent: 549 + type: Transform + - uid: 61 + components: + - pos: 4.5,-8.5 + parent: 549 + type: Transform + - uid: 62 + components: + - pos: 3.5,-8.5 + parent: 549 + type: Transform + - uid: 63 + components: + - pos: 2.5,-8.5 + parent: 549 + type: Transform + - uid: 119 + components: + - pos: 5.5,-13.5 + parent: 549 + type: Transform + - uid: 120 + components: + - pos: 6.5,-13.5 + parent: 549 + type: Transform + - uid: 121 + components: + - pos: 6.5,-11.5 + parent: 549 + type: Transform + - uid: 137 + components: + - pos: 7.5,-11.5 + parent: 549 + type: Transform + - uid: 138 + components: + - pos: 8.5,-11.5 + parent: 549 + type: Transform + - uid: 139 + components: + - pos: 9.5,-11.5 + parent: 549 + type: Transform + - uid: 316 + components: + - pos: -6.5,-5.5 + parent: 549 + type: Transform + - uid: 317 + components: + - pos: -6.5,-4.5 + parent: 549 + type: Transform + - uid: 318 + components: + - pos: -6.5,-3.5 + parent: 549 + type: Transform +- proto: WallSolid + entities: + - uid: 29 + components: + - pos: -7.5,-10.5 + parent: 549 + type: Transform + - uid: 32 + components: + - pos: -5.5,-10.5 + parent: 549 + type: Transform + - uid: 64 + components: + - pos: 1.5,-5.5 + parent: 549 + type: Transform + - uid: 65 + components: + - pos: 0.5,-5.5 + parent: 549 + type: Transform + - uid: 66 + components: + - pos: -0.5,-5.5 + parent: 549 + type: Transform + - uid: 122 + components: + - pos: 5.5,-8.5 + parent: 549 + type: Transform + - uid: 123 + components: + - pos: 6.5,-8.5 + parent: 549 + type: Transform + - uid: 124 + components: + - pos: 6.5,-9.5 + parent: 549 + type: Transform + - uid: 125 + components: + - pos: 7.5,-9.5 + parent: 549 + type: Transform +- proto: WeaponLaserGun + entities: + - uid: 145 + components: + - flags: InContainer + type: MetaData + - parent: 144 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: Windoor + entities: + - uid: 211 + components: + - rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 549 + type: Transform + - uid: 212 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 549 + type: Transform +- proto: WindoorSecureChemistryLocked + entities: + - uid: 208 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 549 + type: Transform + - uid: 209 + components: + - pos: -4.5,1.5 + parent: 549 + type: Transform +- proto: WindowDirectional + entities: + - uid: 284 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 549 + type: Transform + - uid: 285 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 549 + type: Transform + - uid: 286 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 549 + type: Transform + - uid: 287 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 549 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-atlas-perma.yml b/Resources/Maps/Salvage/DeltaV/DV-atlas-perma.yml new file mode 100644 index 0000000000..84278cf250 --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-atlas-perma.yml @@ -0,0 +1,1775 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 12: FloorBar + 53: FloorGym + 89: FloorSteelDirty + 96: FloorTechMaint + 110: FloorWood + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 273 + components: + - type: MetaData + - pos: 0.484375,0.35145855 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAADAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAADAAAAAAD + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAADWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACcQAAAAAAbgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAANQAAAAABNQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAANQAAAAAANQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAANQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 0: -1,-1 + 1: -1,-1 + 2: -1,-1 + 3: -1,-1 + 4: -1,-2 + 5: -1,-3 + 6: -1,-3 + 7: -1,-3 + 8: -1,-4 + 9: 0,-4 + 10: 0,-4 + 11: 1,-4 + 12: 1,-3 + 13: 1,-2 + 14: 2,-2 + 15: 2,-2 + 16: 2,-2 + 17: 3,-1 + 18: 4,-1 + 19: 5,-1 + 20: 5,-1 + 21: 5,-1 + 22: 5,-2 + 23: 1,-1 + 24: 0,-1 + 25: 3,3 + 26: 2,5 + 27: 2,5 + 28: 1,5 + 29: -1,5 + 30: -2,4 + 31: -2,4 + 32: -2,3 + 33: 1,3 + 34: 2,3 + 35: -1,3 + 36: 1,3 + 37: 4,3 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 65535 + 0,-1: + 0: 65535 + -2,-1: + 0: 34816 + -1,-2: + 0: 24576 + 0,-2: + 0: 28672 + 1,-1: + 0: 65527 + 1,-2: + 0: 8192 + 2,-1: + 0: 6003 + 0,0: + 0: 65535 + 0,1: + 0: 13311 + 1,0: + 0: 30719 + 2,0: + 0: 1 + -2,0: + 0: 3212 + -2,1: + 0: 49344 + -1,0: + 0: 65535 + -1,1: + 0: 65535 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - type: SpreaderGrid +- proto: AirAlarm + entities: + - uid: 145 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-1.5 + parent: 273 + type: Transform +- proto: AirlockMaintLocked + entities: + - uid: 72 + components: + - pos: 1.5,2.5 + parent: 273 + type: Transform +- proto: Bed + entities: + - uid: 120 + components: + - pos: 5.5,-0.5 + parent: 273 + type: Transform + - uid: 121 + components: + - pos: 5.5,-1.5 + parent: 273 + type: Transform +- proto: BedsheetYellow + entities: + - uid: 122 + components: + - pos: 5.5,-0.5 + parent: 273 + type: Transform + - uid: 123 + components: + - pos: 5.5,-1.5 + parent: 273 + type: Transform +- proto: BoxFolderBase + entities: + - uid: 133 + components: + - pos: 0.609375,-2.4388466 + parent: 273 + type: Transform +- proto: CableApcExtension + entities: + - uid: 224 + components: + - pos: 0.5,1.5 + parent: 273 + type: Transform + - uid: 225 + components: + - pos: -0.5,1.5 + parent: 273 + type: Transform + - uid: 226 + components: + - pos: -1.5,1.5 + parent: 273 + type: Transform + - uid: 227 + components: + - pos: -2.5,1.5 + parent: 273 + type: Transform + - uid: 228 + components: + - pos: -3.5,1.5 + parent: 273 + type: Transform + - uid: 229 + components: + - pos: -4.5,1.5 + parent: 273 + type: Transform + - uid: 230 + components: + - pos: 4.5,-1.5 + parent: 273 + type: Transform + - uid: 231 + components: + - pos: 3.5,-1.5 + parent: 273 + type: Transform + - uid: 232 + components: + - pos: 2.5,-1.5 + parent: 273 + type: Transform + - uid: 233 + components: + - pos: 1.5,-1.5 + parent: 273 + type: Transform + - uid: 234 + components: + - pos: 0.5,-1.5 + parent: 273 + type: Transform + - uid: 235 + components: + - pos: -0.5,-1.5 + parent: 273 + type: Transform + - uid: 236 + components: + - pos: -1.5,-1.5 + parent: 273 + type: Transform + - uid: 237 + components: + - pos: -2.5,-1.5 + parent: 273 + type: Transform + - uid: 238 + components: + - pos: -2.5,-2.5 + parent: 273 + type: Transform + - uid: 239 + components: + - pos: -2.5,-3.5 + parent: 273 + type: Transform + - uid: 240 + components: + - pos: -2.5,-4.5 + parent: 273 + type: Transform + - uid: 241 + components: + - pos: 3.5,-3.5 + parent: 273 + type: Transform + - uid: 242 + components: + - pos: 4.5,-3.5 + parent: 273 + type: Transform + - uid: 243 + components: + - pos: 5.5,-3.5 + parent: 273 + type: Transform + - uid: 244 + components: + - pos: 6.5,-3.5 + parent: 273 + type: Transform +- proto: CableHV + entities: + - uid: 88 + components: + - pos: -5.5,7.5 + parent: 273 + type: Transform + - uid: 89 + components: + - pos: -4.5,7.5 + parent: 273 + type: Transform + - uid: 90 + components: + - pos: -3.5,7.5 + parent: 273 + type: Transform + - uid: 91 + components: + - pos: -2.5,7.5 + parent: 273 + type: Transform + - uid: 92 + components: + - pos: -1.5,7.5 + parent: 273 + type: Transform + - uid: 93 + components: + - pos: -0.5,7.5 + parent: 273 + type: Transform + - uid: 94 + components: + - pos: 0.5,7.5 + parent: 273 + type: Transform + - uid: 95 + components: + - pos: 1.5,7.5 + parent: 273 + type: Transform + - uid: 96 + components: + - pos: -3.5,6.5 + parent: 273 + type: Transform + - uid: 97 + components: + - pos: -3.5,5.5 + parent: 273 + type: Transform + - uid: 98 + components: + - pos: -4.5,5.5 + parent: 273 + type: Transform + - uid: 99 + components: + - pos: -5.5,5.5 + parent: 273 + type: Transform + - uid: 158 + components: + - pos: 7.5,1.5 + parent: 273 + type: Transform + - uid: 159 + components: + - pos: 6.5,1.5 + parent: 273 + type: Transform + - uid: 160 + components: + - pos: 5.5,1.5 + parent: 273 + type: Transform + - uid: 161 + components: + - pos: 4.5,1.5 + parent: 273 + type: Transform + - uid: 162 + components: + - pos: 3.5,1.5 + parent: 273 + type: Transform + - uid: 163 + components: + - pos: 2.5,1.5 + parent: 273 + type: Transform + - uid: 164 + components: + - pos: 1.5,1.5 + parent: 273 + type: Transform + - uid: 165 + components: + - pos: 0.5,1.5 + parent: 273 + type: Transform + - uid: 166 + components: + - pos: -0.5,1.5 + parent: 273 + type: Transform + - uid: 167 + components: + - pos: -1.5,1.5 + parent: 273 + type: Transform + - uid: 168 + components: + - pos: -2.5,1.5 + parent: 273 + type: Transform + - uid: 169 + components: + - pos: -3.5,1.5 + parent: 273 + type: Transform + - uid: 170 + components: + - pos: -4.5,1.5 + parent: 273 + type: Transform + - uid: 171 + components: + - pos: -4.5,0.5 + parent: 273 + type: Transform + - uid: 172 + components: + - pos: -4.5,-0.5 + parent: 273 + type: Transform + - uid: 173 + components: + - pos: -4.5,-1.5 + parent: 273 + type: Transform + - uid: 174 + components: + - pos: 1.5,0.5 + parent: 273 + type: Transform + - uid: 175 + components: + - pos: 1.5,-0.5 + parent: 273 + type: Transform + - uid: 176 + components: + - pos: 1.5,-1.5 + parent: 273 + type: Transform + - uid: 177 + components: + - pos: 1.5,-2.5 + parent: 273 + type: Transform + - uid: 178 + components: + - pos: 2.5,-2.5 + parent: 273 + type: Transform + - uid: 179 + components: + - pos: 3.5,-2.5 + parent: 273 + type: Transform + - uid: 180 + components: + - pos: 2.5,-3.5 + parent: 273 + type: Transform +- proto: CableMV + entities: + - uid: 204 + components: + - pos: -2.5,-4.5 + parent: 273 + type: Transform + - uid: 205 + components: + - pos: -2.5,-3.5 + parent: 273 + type: Transform + - uid: 206 + components: + - pos: -2.5,-2.5 + parent: 273 + type: Transform + - uid: 207 + components: + - pos: -3.5,-2.5 + parent: 273 + type: Transform + - uid: 208 + components: + - pos: -4.5,-1.5 + parent: 273 + type: Transform + - uid: 209 + components: + - pos: -4.5,-0.5 + parent: 273 + type: Transform + - uid: 210 + components: + - pos: -4.5,0.5 + parent: 273 + type: Transform + - uid: 211 + components: + - pos: -4.5,1.5 + parent: 273 + type: Transform + - uid: 212 + components: + - pos: -3.5,1.5 + parent: 273 + type: Transform + - uid: 213 + components: + - pos: -2.5,1.5 + parent: 273 + type: Transform + - uid: 214 + components: + - pos: -1.5,1.5 + parent: 273 + type: Transform + - uid: 215 + components: + - pos: -0.5,1.5 + parent: 273 + type: Transform + - uid: 216 + components: + - pos: 0.5,1.5 + parent: 273 + type: Transform + - uid: 217 + components: + - pos: 1.5,1.5 + parent: 273 + type: Transform + - uid: 218 + components: + - pos: 2.5,1.5 + parent: 273 + type: Transform + - uid: 219 + components: + - pos: 3.5,1.5 + parent: 273 + type: Transform + - uid: 220 + components: + - pos: 4.5,1.5 + parent: 273 + type: Transform + - uid: 221 + components: + - pos: 5.5,1.5 + parent: 273 + type: Transform + - uid: 222 + components: + - pos: 6.5,1.5 + parent: 273 + type: Transform + - uid: 223 + components: + - pos: 7.5,1.5 + parent: 273 + type: Transform +- proto: Catwalk + entities: + - uid: 255 + components: + - pos: -4.5,-1.5 + parent: 273 + type: Transform + - uid: 256 + components: + - pos: -4.5,-0.5 + parent: 273 + type: Transform + - uid: 257 + components: + - pos: -4.5,0.5 + parent: 273 + type: Transform + - uid: 258 + components: + - pos: -3.5,1.5 + parent: 273 + type: Transform + - uid: 259 + components: + - pos: -2.5,1.5 + parent: 273 + type: Transform + - uid: 260 + components: + - pos: -1.5,1.5 + parent: 273 + type: Transform + - uid: 261 + components: + - pos: -0.5,1.5 + parent: 273 + type: Transform + - uid: 262 + components: + - pos: 0.5,1.5 + parent: 273 + type: Transform + - uid: 263 + components: + - pos: 1.5,1.5 + parent: 273 + type: Transform + - uid: 264 + components: + - pos: 2.5,1.5 + parent: 273 + type: Transform + - uid: 265 + components: + - pos: 3.5,1.5 + parent: 273 + type: Transform + - uid: 266 + components: + - pos: 4.5,1.5 + parent: 273 + type: Transform + - uid: 267 + components: + - pos: 5.5,1.5 + parent: 273 + type: Transform +- proto: ClothingHeadHatCone + entities: + - uid: 73 + components: + - pos: 0.828125,1.9079227 + parent: 273 + type: Transform + - uid: 74 + components: + - rot: -1.5707963267948966 rad + pos: 1.984375,1.5795698 + parent: 273 + type: Transform +- proto: ClothingNeckTieDet + entities: + - uid: 57 + components: + - pos: 2.453125,5.207089 + parent: 273 + type: Transform +- proto: ClothingOuterCoatDetective + entities: + - uid: 269 + components: + - pos: 3.7597818,4.372019 + parent: 273 + type: Transform +- proto: ClothingUniformJumpsuitPsychologist + entities: + - uid: 60 + components: + - pos: 3.3125,4.268937 + parent: 273 + type: Transform +- proto: ComputerBroken + entities: + - uid: 107 + components: + - pos: 3.5,-3.5 + parent: 273 + type: Transform +- proto: CrateVendingMachineRestockSeedsFilled + entities: + - uid: 116 + components: + - pos: 1.5,-0.5 + parent: 273 + type: Transform +- proto: CrayonBox + entities: + - uid: 139 + components: + - pos: -0.59375,-2.454482 + parent: 273 + type: Transform +- proto: DisposalBend + entities: + - uid: 183 + components: + - rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 273 + type: Transform + - uid: 184 + components: + - pos: 7.5,1.5 + parent: 273 + type: Transform + - uid: 185 + components: + - rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 273 + type: Transform + - uid: 186 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 273 + type: Transform +- proto: DisposalPipe + entities: + - uid: 187 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 273 + type: Transform + - uid: 188 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 273 + type: Transform + - uid: 189 + components: + - pos: 0.5,3.5 + parent: 273 + type: Transform + - uid: 190 + components: + - pos: 0.5,2.5 + parent: 273 + type: Transform + - uid: 191 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 273 + type: Transform + - uid: 192 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 273 + type: Transform + - uid: 193 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 273 + type: Transform + - uid: 194 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 273 + type: Transform + - uid: 195 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 273 + type: Transform + - uid: 196 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 273 + type: Transform +- proto: DisposalPipeBroken + entities: + - uid: 182 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 273 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 181 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 273 + type: Transform +- proto: DrinkDemonsBlood + entities: + - uid: 151 + components: + - pos: -3.859375,1.5795698 + parent: 273 + type: Transform +- proto: DrinkMugMetal + entities: + - uid: 129 + components: + - pos: -0.65625,-0.2185545 + parent: 273 + type: Transform + - uid: 130 + components: + - pos: -0.21875,-0.37491322 + parent: 273 + type: Transform + - uid: 131 + components: + - pos: -0.625,-2.1104937 + parent: 273 + type: Transform + - uid: 132 + components: + - pos: -0.125,-2.3606672 + parent: 273 + type: Transform +- proto: DrinkShaker + entities: + - uid: 128 + components: + - rot: 1.5707963267948966 rad + pos: -0.484375,-0.8439884 + parent: 273 + type: Transform +- proto: Firelock + entities: + - uid: 268 + components: + - pos: 6.5,1.5 + parent: 273 + type: Transform +- proto: FoodBreadMoldySlice + entities: + - uid: 61 + components: + - pos: 3.4375,3.8311334 + parent: 273 + type: Transform + - uid: 270 + components: + - pos: 3.4472816,5.2632627 + parent: 273 + type: Transform +- proto: FoodPizzaMoldySlice + entities: + - uid: 62 + components: + - pos: 3.546875,3.5496879 + parent: 273 + type: Transform +- proto: GasPipeBend + entities: + - uid: 246 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 273 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 247 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 273 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 248 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 273 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 249 + components: + - pos: -2.5,-3.5 + parent: 273 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 250 + components: + - pos: -2.5,-4.5 + parent: 273 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 252 + components: + - pos: 1.5,-2.5 + parent: 273 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 253 + components: + - pos: 1.5,-3.5 + parent: 273 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 254 + components: + - pos: 1.5,-4.5 + parent: 273 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 251 + components: + - pos: 1.5,-1.5 + parent: 273 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 245 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 273 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: Grille + entities: + - uid: 23 + components: + - pos: 2.5,-3.5 + parent: 273 + type: Transform + - uid: 24 + components: + - pos: 2.5,-2.5 + parent: 273 + type: Transform + - uid: 25 + components: + - pos: 3.5,-2.5 + parent: 273 + type: Transform + - uid: 42 + components: + - pos: -1.5,6.5 + parent: 273 + type: Transform + - uid: 43 + components: + - pos: -0.5,6.5 + parent: 273 + type: Transform +- proto: HatSpawner + entities: + - uid: 59 + components: + - pos: 3.5,4.5 + parent: 273 + type: Transform +- proto: HydroponicsToolClippers + entities: + - uid: 126 + components: + - pos: 3.09375,-1.5319662 + parent: 273 + type: Transform +- proto: HydroponicsToolMiniHoe + entities: + - uid: 125 + components: + - pos: 4.3125,-1.4068794 + parent: 273 + type: Transform +- proto: HydroponicsToolSpade + entities: + - uid: 124 + components: + - pos: 4.609375,-1.4850588 + parent: 273 + type: Transform +- proto: hydroponicsTray + entities: + - uid: 118 + components: + - pos: 3.5,-0.5 + parent: 273 + type: Transform + - uid: 119 + components: + - pos: 4.5,-0.5 + parent: 273 + type: Transform +- proto: Lamp + entities: + - uid: 105 + components: + - pos: 4.5,-3.0017376 + parent: 273 + type: Transform +- proto: MaintenanceFluffSpawner + entities: + - uid: 146 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 273 + type: Transform +- proto: MaintenanceToolSpawner + entities: + - uid: 147 + components: + - pos: -2.5,0.5 + parent: 273 + type: Transform +- proto: Paper + entities: + - uid: 134 + components: + - pos: 0.453125,-1.7821407 + parent: 273 + type: Transform + - uid: 135 + components: + - rot: -1.5707963267948966 rad + pos: 1.75,-1.5788746 + parent: 273 + type: Transform + - uid: 136 + components: + - rot: -1.5707963267948966 rad + pos: 1.359375,-2.720292 + parent: 273 + type: Transform + - uid: 137 + components: + - rot: -1.5707963267948966 rad + pos: 1.15625,-3.0330086 + parent: 273 + type: Transform +- proto: PosterContrabandBustyBackdoorExoBabes6 + entities: + - uid: 44 + components: + - pos: -2.5,4.5 + parent: 273 + type: Transform +- proto: Poweredlight + entities: + - uid: 201 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 273 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 202 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 273 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredlightEmpty + entities: + - uid: 198 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 273 + type: Transform + - uid: 203 + components: + - pos: 5.5,-3.5 + parent: 273 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLightEmpty + entities: + - uid: 199 + components: + - pos: 0.5,5.5 + parent: 273 + type: Transform + - uid: 200 + components: + - pos: -1.5,1.5 + parent: 273 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: Rack + entities: + - uid: 75 + components: + - pos: -2.5,0.5 + parent: 273 + type: Transform +- proto: Railing + entities: + - uid: 47 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 273 + type: Transform + - uid: 48 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 273 + type: Transform +- proto: RandomAmmoBox + entities: + - uid: 276 + components: + - pos: 6.5,-3.5 + parent: 273 + type: Transform +- proto: RandomBoards + entities: + - uid: 108 + components: + - pos: 3.5,-3.5 + parent: 273 + type: Transform +- proto: RandomDrinkBottle + entities: + - uid: 76 + components: + - pos: 1.5,5.5 + parent: 273 + type: Transform +- proto: RandomItem + entities: + - uid: 148 + components: + - pos: -2.5,-3.5 + parent: 273 + type: Transform + - uid: 149 + components: + - pos: 0.5,-0.5 + parent: 273 + type: Transform + - uid: 150 + components: + - pos: 7.5,-0.5 + parent: 273 + type: Transform +- proto: RandomPainting + entities: + - uid: 103 + components: + - pos: 4.5,-2.5 + parent: 273 + type: Transform +- proto: RandomPosterContraband + entities: + - uid: 45 + components: + - pos: -2.5,5.5 + parent: 273 + type: Transform + - uid: 46 + components: + - pos: 0.5,6.5 + parent: 273 + type: Transform +- proto: RandomPosterLegit + entities: + - uid: 70 + components: + - pos: 2.5,2.5 + parent: 273 + type: Transform +- proto: ReinforcedPlasmaWindow + entities: + - uid: 100 + components: + - pos: 2.5,-3.5 + parent: 273 + type: Transform + - uid: 101 + components: + - pos: 2.5,-2.5 + parent: 273 + type: Transform + - uid: 102 + components: + - pos: 3.5,-2.5 + parent: 273 + type: Transform +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 274 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 273 + type: Transform +- proto: SalvageLorePaperGamingSpawner + entities: + - uid: 138 + components: + - pos: 0.5,-1.5 + parent: 273 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 115 + components: + - pos: -2.5,-0.5 + parent: 273 + type: Transform +- proto: SalvagePartsSpawnerLow + entities: + - uid: 157 + components: + - pos: 2.5,1.5 + parent: 273 + type: Transform +- proto: SchoolgirlUniformSpawner + entities: + - uid: 51 + components: + - pos: -1.5,3.5 + parent: 273 + type: Transform + - uid: 52 + components: + - pos: -0.5,4.5 + parent: 273 + type: Transform + - uid: 53 + components: + - pos: -1.5,5.5 + parent: 273 + type: Transform +- proto: ShardGlass + entities: + - uid: 272 + components: + - pos: 2.5722816,3.8400364 + parent: 273 + type: Transform +- proto: ShardGlassReinforced + entities: + - uid: 55 + components: + - pos: -0.2245934,5.278536 + parent: 273 + type: Transform + - uid: 56 + components: + - pos: -1.6464684,4.4654713 + parent: 273 + type: Transform + - uid: 271 + components: + - pos: 0.1035316,7.5770063 + parent: 273 + type: Transform +- proto: ShuttersNormalOpen + entities: + - uid: 141 + components: + - pos: 3.5,-2.5 + parent: 273 + type: Transform + - links: + - 144 + type: DeviceLinkSink + - uid: 142 + components: + - pos: 2.5,-2.5 + parent: 273 + type: Transform + - links: + - 144 + type: DeviceLinkSink + - uid: 143 + components: + - pos: 2.5,-3.5 + parent: 273 + type: Transform + - links: + - 144 + type: DeviceLinkSink +- proto: SignalSwitchDirectional + entities: + - uid: 144 + components: + - pos: 6.5,-2.5 + parent: 273 + type: Transform + - linkedPorts: + 141: + - On: Open + - Off: Close + 142: + - On: Open + - Off: Close + 143: + - On: Open + - Off: Close + type: DeviceLinkSource +- proto: soda_dispenser + entities: + - uid: 127 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 273 + type: Transform +- proto: SolarPanel + entities: + - uid: 78 + components: + - pos: -4.5,7.5 + parent: 273 + type: Transform + - uid: 79 + components: + - pos: -0.5,7.5 + parent: 273 + type: Transform + - uid: 82 + components: + - pos: -3.5,7.5 + parent: 273 + type: Transform + - uid: 85 + components: + - pos: -3.5,5.5 + parent: 273 + type: Transform + - uid: 86 + components: + - pos: -4.5,5.5 + parent: 273 + type: Transform + - uid: 87 + components: + - pos: -5.5,5.5 + parent: 273 + type: Transform +- proto: SolarPanelBroken + entities: + - uid: 77 + components: + - pos: -5.5,7.5 + parent: 273 + type: Transform + - uid: 80 + components: + - pos: -2.5,7.5 + parent: 273 + type: Transform + - uid: 81 + components: + - pos: -1.5,7.5 + parent: 273 + type: Transform + - uid: 83 + components: + - pos: 0.5,7.5 + parent: 273 + type: Transform + - uid: 84 + components: + - pos: 1.5,7.5 + parent: 273 + type: Transform +- proto: SpaceCash + entities: + - uid: 63 + components: + - pos: -0.34375,5.0350943 + parent: 273 + type: Transform + - uid: 64 + components: + - pos: -1.21875,4.738013 + parent: 273 + type: Transform + - uid: 65 + components: + - pos: -0.390625,3.205699 + parent: 273 + type: Transform + - uid: 66 + components: + - pos: 1.265625,4.644198 + parent: 273 + type: Transform + - uid: 67 + components: + - pos: 0.5,4.8787355 + parent: 273 + type: Transform + - uid: 68 + components: + - pos: 0.46875,5.535442 + parent: 273 + type: Transform +- proto: SpaceCash10 + entities: + - uid: 69 + components: + - pos: 3.71875,3.6747746 + parent: 273 + type: Transform +- proto: SpaceTickSpawner + entities: + - uid: 152 + components: + - pos: 0.5,3.5 + parent: 273 + type: Transform + - uid: 153 + components: + - pos: 1.5,3.5 + parent: 273 + type: Transform + - uid: 154 + components: + - pos: 1.5,-3.5 + parent: 273 + type: Transform + - uid: 155 + components: + - pos: 3.5,-1.5 + parent: 273 + type: Transform + - uid: 156 + components: + - pos: 1.5,1.5 + parent: 273 + type: Transform + - uid: 275 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 273 + type: Transform +- proto: StoolBar + entities: + - uid: 49 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 273 + type: Transform + - uid: 50 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 273 + type: Transform + - uid: 113 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 273 + type: Transform + - uid: 114 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 273 + type: Transform +- proto: TableWood + entities: + - uid: 58 + components: + - pos: 3.5,3.5 + parent: 273 + type: Transform + - uid: 104 + components: + - pos: 4.5,-3.5 + parent: 273 + type: Transform + - uid: 109 + components: + - pos: 0.5,-2.5 + parent: 273 + type: Transform + - uid: 110 + components: + - pos: -0.5,-2.5 + parent: 273 + type: Transform + - uid: 111 + components: + - pos: -0.5,-1.5 + parent: 273 + type: Transform + - uid: 112 + components: + - pos: -0.5,-0.5 + parent: 273 + type: Transform +- proto: UniformJabroni + entities: + - uid: 54 + components: + - pos: -0.296875,5.551078 + parent: 273 + type: Transform +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 117 + components: + - flags: SessionSpecific + type: MetaData + - pos: 2.5,-0.5 + parent: 273 + type: Transform +- proto: WallmountTelescreenFrame + entities: + - uid: 140 + components: + - pos: 1.5,0.5 + parent: 273 + type: Transform + - uid: 197 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 273 + type: Transform +- proto: WallReinforced + entities: + - uid: 1 + components: + - pos: 9.5,-1.5 + parent: 273 + type: Transform + - uid: 2 + components: + - pos: 9.5,-2.5 + parent: 273 + type: Transform + - uid: 3 + components: + - pos: 8.5,-1.5 + parent: 273 + type: Transform + - uid: 4 + components: + - pos: 8.5,-2.5 + parent: 273 + type: Transform + - uid: 5 + components: + - pos: 7.5,-1.5 + parent: 273 + type: Transform + - uid: 6 + components: + - pos: 7.5,-2.5 + parent: 273 + type: Transform + - uid: 7 + components: + - pos: 6.5,-1.5 + parent: 273 + type: Transform + - uid: 8 + components: + - pos: 6.5,-2.5 + parent: 273 + type: Transform + - uid: 9 + components: + - pos: 6.5,-0.5 + parent: 273 + type: Transform + - uid: 10 + components: + - pos: 6.5,0.5 + parent: 273 + type: Transform + - uid: 11 + components: + - pos: 5.5,0.5 + parent: 273 + type: Transform + - uid: 12 + components: + - pos: 4.5,0.5 + parent: 273 + type: Transform + - uid: 13 + components: + - pos: 3.5,0.5 + parent: 273 + type: Transform + - uid: 14 + components: + - pos: 2.5,0.5 + parent: 273 + type: Transform + - uid: 15 + components: + - pos: 1.5,0.5 + parent: 273 + type: Transform + - uid: 16 + components: + - pos: 0.5,0.5 + parent: 273 + type: Transform + - uid: 17 + components: + - pos: -0.5,0.5 + parent: 273 + type: Transform + - uid: 18 + components: + - pos: -1.5,0.5 + parent: 273 + type: Transform + - uid: 19 + components: + - pos: -1.5,-0.5 + parent: 273 + type: Transform + - uid: 20 + components: + - pos: -1.5,-1.5 + parent: 273 + type: Transform + - uid: 21 + components: + - pos: -1.5,-2.5 + parent: 273 + type: Transform + - uid: 22 + components: + - pos: -1.5,-3.5 + parent: 273 + type: Transform + - uid: 26 + components: + - pos: 4.5,-2.5 + parent: 273 + type: Transform + - uid: 27 + components: + - pos: 5.5,-2.5 + parent: 273 + type: Transform + - uid: 28 + components: + - pos: -2.5,2.5 + parent: 273 + type: Transform + - uid: 29 + components: + - pos: -2.5,3.5 + parent: 273 + type: Transform + - uid: 30 + components: + - pos: -2.5,4.5 + parent: 273 + type: Transform + - uid: 31 + components: + - pos: -2.5,5.5 + parent: 273 + type: Transform + - uid: 32 + components: + - pos: -2.5,6.5 + parent: 273 + type: Transform + - uid: 33 + components: + - pos: -3.5,2.5 + parent: 273 + type: Transform + - uid: 34 + components: + - pos: -4.5,2.5 + parent: 273 + type: Transform + - uid: 35 + components: + - pos: 0.5,6.5 + parent: 273 + type: Transform +- proto: WallSolid + entities: + - uid: 36 + components: + - pos: -1.5,2.5 + parent: 273 + type: Transform + - uid: 37 + components: + - pos: -0.5,2.5 + parent: 273 + type: Transform + - uid: 38 + components: + - pos: 0.5,2.5 + parent: 273 + type: Transform + - uid: 39 + components: + - pos: 2.5,2.5 + parent: 273 + type: Transform + - uid: 40 + components: + - pos: 3.5,2.5 + parent: 273 + type: Transform + - uid: 41 + components: + - pos: 4.5,2.5 + parent: 273 + type: Transform +- proto: WarningAir + entities: + - uid: 71 + components: + - pos: 0.5,2.5 + parent: 273 + type: Transform +- proto: WeaponDisabler + entities: + - uid: 106 + components: + - pos: 5.5625,-4.377693 + parent: 273 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-atlas-salvage.yml b/Resources/Maps/Salvage/DeltaV/DV-atlas-salvage.yml new file mode 100644 index 0000000000..f555c6ce9f --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-atlas-salvage.yml @@ -0,0 +1,1349 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 72: FloorReinforced + 84: FloorSteel + 96: FloorTechMaint + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 172 + components: + - type: MetaData + - pos: 0.6875,0.22376633 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: VAAAAAABVAAAAAADVAAAAAACVAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAAAVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 44: -2,3 + 45: -4,3 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 0: -4,2 + 1: -2,2 + - node: + color: '#FFFFFFFF' + id: BotRight + decals: + 4: -6,2 + 5: -6,1 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 3: -6,3 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Dirt + decals: + 46: 5,-3 + 47: 4,-3 + 48: 3,-3 + 49: 3,-3 + 50: 2,-3 + 51: 1,-3 + 52: 3,0 + 53: 4,-1 + 54: 3,-1 + 55: 2,0 + 56: 2,1 + 57: 1,2 + 58: 1,3 + 59: 0,2 + 60: 0,0 + 61: -1,-1 + 62: -3,-1 + 63: -5,-1 + 64: -1,0 + 65: -1,0 + 66: -2,-1 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 25: 0.47916675,2.9836273 + 26: 0.47916675,2.9836273 + 27: 0.9895835,2.9940515 + 28: 0.9895835,2.9940515 + 29: 0.9895835,2.9940515 + 30: 0.48958337,1.9412365 + 31: 0.42708337,2.0246277 + 32: 0.97916675,1.013509 + 33: 0.96875,-0.47710943 + 34: 0.96875,-0.47710943 + 35: -2.9895835,0.44019437 + 36: -2.9895835,0.44019437 + 37: -3.9791667,0.40892267 + 38: -3.0729167,-0.95660925 + 39: -3.0729167,-0.95660925 + 40: -3.0729167,-0.95660925 + 41: -4.96875,-1.071272 + 42: 1.5,-1.4361091 + 43: 1.5,-1.4361091 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale270 + decals: + 10: -6,0 + 11: -6,-1 + 12: 0,0 + 13: 0,-1 + 14: 0,1 + 15: 0,2 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale90 + decals: + 6: -1,0 + 7: -1,-1 + 8: 3,-1 + 9: 3,0 + 19: 2,2 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale90 + decals: + 18: 2,1 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 2: -3,3 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale + decals: + 16: 0,3 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 17: 3,1 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 20: -5,4 + 21: -4,4 + 22: -3,4 + 23: -2,4 + 24: -1,4 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 65535 + -1,1: + 0: 24575 + -1,0: + 0: 65535 + -3,-2: + 0: 32768 + -3,-1: + 0: 2184 + -2,-2: + 0: 64000 + -2,-1: + 0: 65535 + -1,-2: + 0: 63328 + -2,0: + 0: 65535 + -2,1: + 0: 3310 + 0,-2: + 0: 39712 + 0,-1: + 0: 65535 + 1,-2: + 0: 12288 + 1,-1: + 0: 12663 + 0,0: + 0: 63487 + 0,1: + 0: 307 + 1,0: + 0: 4115 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - type: SpreaderGrid +- proto: AirlockExternalGlassLocked + entities: + - uid: 70 + components: + - pos: 1.5,4.5 + parent: 172 + type: Transform +- proto: AirlockMaint + entities: + - uid: 42 + components: + - pos: 0.5,-2.5 + parent: 172 + type: Transform +- proto: AirlockMaintSalvageLocked + entities: + - uid: 43 + components: + - pos: -2.5,-1.5 + parent: 172 + type: Transform +- proto: BlastDoor + entities: + - uid: 73 + components: + - pos: -4.5,5.5 + parent: 172 + type: Transform + - links: + - 169 + type: DeviceLinkSink + - uid: 77 + components: + - pos: -3.5,5.5 + parent: 172 + type: Transform + - links: + - 169 + type: DeviceLinkSink + - uid: 78 + components: + - pos: -2.5,5.5 + parent: 172 + type: Transform + - links: + - 169 + type: DeviceLinkSink + - uid: 79 + components: + - pos: -1.5,5.5 + parent: 172 + type: Transform + - links: + - 169 + type: DeviceLinkSink + - uid: 80 + components: + - pos: -0.5,5.5 + parent: 172 + type: Transform + - links: + - 169 + type: DeviceLinkSink +- proto: CableApcExtension + entities: + - uid: 118 + components: + - pos: -6.5,-4.5 + parent: 172 + type: Transform + - uid: 119 + components: + - pos: -6.5,-3.5 + parent: 172 + type: Transform + - uid: 120 + components: + - pos: -5.5,-3.5 + parent: 172 + type: Transform + - uid: 121 + components: + - pos: -4.5,-3.5 + parent: 172 + type: Transform + - uid: 122 + components: + - pos: -3.5,-3.5 + parent: 172 + type: Transform + - uid: 123 + components: + - pos: -2.5,-3.5 + parent: 172 + type: Transform + - uid: 124 + components: + - pos: -1.5,-3.5 + parent: 172 + type: Transform + - uid: 125 + components: + - pos: -0.5,-3.5 + parent: 172 + type: Transform + - uid: 126 + components: + - pos: 1.5,-2.5 + parent: 172 + type: Transform + - uid: 127 + components: + - pos: 2.5,-2.5 + parent: 172 + type: Transform + - uid: 128 + components: + - pos: 3.5,-2.5 + parent: 172 + type: Transform + - uid: 129 + components: + - pos: 4.5,-2.5 + parent: 172 + type: Transform + - uid: 130 + components: + - pos: 5.5,-2.5 + parent: 172 + type: Transform + - uid: 131 + components: + - pos: 1.5,4.5 + parent: 172 + type: Transform + - uid: 132 + components: + - pos: 1.5,3.5 + parent: 172 + type: Transform + - uid: 133 + components: + - pos: 1.5,2.5 + parent: 172 + type: Transform + - uid: 134 + components: + - pos: 1.5,1.5 + parent: 172 + type: Transform + - uid: 135 + components: + - pos: 1.5,0.5 + parent: 172 + type: Transform + - uid: 136 + components: + - pos: 2.5,0.5 + parent: 172 + type: Transform + - uid: 137 + components: + - pos: 3.5,0.5 + parent: 172 + type: Transform + - uid: 138 + components: + - pos: 0.5,0.5 + parent: 172 + type: Transform + - uid: 139 + components: + - pos: -0.5,0.5 + parent: 172 + type: Transform + - uid: 140 + components: + - pos: -1.5,0.5 + parent: 172 + type: Transform + - uid: 141 + components: + - pos: -2.5,0.5 + parent: 172 + type: Transform + - uid: 142 + components: + - pos: -2.5,1.5 + parent: 172 + type: Transform + - uid: 143 + components: + - pos: -2.5,2.5 + parent: 172 + type: Transform + - uid: 144 + components: + - pos: -2.5,3.5 + parent: 172 + type: Transform + - uid: 145 + components: + - pos: -2.5,4.5 + parent: 172 + type: Transform + - uid: 146 + components: + - pos: -1.5,3.5 + parent: 172 + type: Transform + - uid: 147 + components: + - pos: -0.5,3.5 + parent: 172 + type: Transform + - uid: 148 + components: + - pos: -0.5,2.5 + parent: 172 + type: Transform + - uid: 149 + components: + - pos: -3.5,3.5 + parent: 172 + type: Transform + - uid: 150 + components: + - pos: -4.5,3.5 + parent: 172 + type: Transform + - uid: 151 + components: + - pos: -5.5,3.5 + parent: 172 + type: Transform + - uid: 152 + components: + - pos: -5.5,2.5 + parent: 172 + type: Transform + - uid: 153 + components: + - pos: -3.5,0.5 + parent: 172 + type: Transform + - uid: 154 + components: + - pos: -4.5,0.5 + parent: 172 + type: Transform +- proto: Chair + entities: + - uid: 53 + components: + - pos: -3.5,-2.5 + parent: 172 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 168 + components: + - rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 172 + type: Transform +- proto: ClothingShoesSlippers + entities: + - uid: 54 + components: + - pos: -1.375,-2.2807932 + parent: 172 + type: Transform +- proto: ComputerBroken + entities: + - uid: 72 + components: + - pos: 3.5,1.5 + parent: 172 + type: Transform +- proto: Firelock + entities: + - uid: 39 + components: + - pos: -6.5,-4.5 + parent: 172 + type: Transform + - uid: 40 + components: + - pos: -2.5,-1.5 + parent: 172 + type: Transform + - uid: 41 + components: + - pos: 0.5,-2.5 + parent: 172 + type: Transform +- proto: GasPipeBend + entities: + - uid: 90 + components: + - rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 172 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 91 + components: + - pos: -2.5,1.5 + parent: 172 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 105 + components: + - pos: 3.5,-0.5 + parent: 172 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 106 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 172 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 115 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 172 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 95 + components: + - pos: 1.5,2.5 + parent: 172 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 96 + components: + - pos: 1.5,2.5 + parent: 172 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 97 + components: + - pos: 1.5,3.5 + parent: 172 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 98 + components: + - pos: 1.5,4.5 + parent: 172 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 99 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 172 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 100 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 172 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 101 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 172 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 102 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 172 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 103 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 172 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 107 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 172 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 108 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 172 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 109 + components: + - pos: 3.5,-1.5 + parent: 172 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 110 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 172 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 111 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 172 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 112 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 172 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 113 + components: + - rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 172 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 114 + components: + - rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 172 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 92 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 172 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 93 + components: + - rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 172 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 94 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 172 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 104 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 172 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 87 + components: + - pos: -3.5,2.5 + parent: 172 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 88 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 172 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 89 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 172 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 84 + components: + - pos: -1.5,2.5 + parent: 172 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 86 + components: + - pos: 0.5,0.5 + parent: 172 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: Grille + entities: + - uid: 44 + components: + - pos: 2.5,-1.5 + parent: 172 + type: Transform + - uid: 45 + components: + - pos: 3.5,-1.5 + parent: 172 + type: Transform +- proto: JetpackBlue + entities: + - uid: 170 + components: + - pos: -5.4625,0.60806125 + parent: 172 + type: Transform +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 68 + components: + - pos: 0.5,3.5 + parent: 172 + type: Transform +- proto: Machete + entities: + - uid: 60 + components: + - pos: -5.4895835,0.6170532 + parent: 172 + type: Transform +- proto: MachineFrameDestroyed + entities: + - uid: 74 + components: + - pos: 2.5,-0.5 + parent: 172 + type: Transform + - uid: 81 + components: + - pos: -2.5,4.5 + parent: 172 + type: Transform +- proto: MaintenanceWeaponSpawner + entities: + - uid: 167 + components: + - pos: -1.5,-3.5 + parent: 172 + type: Transform +- proto: PartRodMetal + entities: + - uid: 76 + components: + - pos: 3.4895835,-0.414914 + parent: 172 + type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 82 + components: + - pos: -5.5,2.5 + parent: 172 + type: Transform +- proto: PosterContrabandLustyExomorph + entities: + - uid: 69 + components: + - pos: 0.5,4.5 + parent: 172 + type: Transform +- proto: Poweredlight + entities: + - uid: 156 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 172 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 157 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 172 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 158 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 172 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLight + entities: + - uid: 155 + components: + - pos: -1.5,-2.5 + parent: 172 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: Rack + entities: + - uid: 51 + components: + - pos: -4.5,-2.5 + parent: 172 + type: Transform + - uid: 59 + components: + - pos: -5.5,0.5 + parent: 172 + type: Transform +- proto: RandomAmmoBox + entities: + - uid: 173 + components: + - pos: -5.5,1.5 + parent: 172 + type: Transform +- proto: RandomArtifactSpawner + entities: + - uid: 171 + components: + - pos: -2.5,3.5 + parent: 172 + type: Transform +- proto: RandomItem + entities: + - uid: 52 + components: + - pos: -4.5,-2.5 + parent: 172 + type: Transform +- proto: RandomVending + entities: + - uid: 50 + components: + - pos: -5.5,-2.5 + parent: 172 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 46 + components: + - pos: 2.5,-1.5 + parent: 172 + type: Transform + - uid: 47 + components: + - pos: 3.5,-1.5 + parent: 172 + type: Transform +- proto: SalvageCanisterSpawner + entities: + - uid: 160 + components: + - pos: -5.5,3.5 + parent: 172 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 161 + components: + - pos: -0.5,3.5 + parent: 172 + type: Transform +- proto: SalvageMobSpawner + entities: + - uid: 162 + components: + - pos: 0.5,2.5 + parent: 172 + type: Transform + - uid: 163 + components: + - pos: 0.5,-0.5 + parent: 172 + type: Transform + - uid: 164 + components: + - pos: 1.5,-2.5 + parent: 172 + type: Transform + - uid: 165 + components: + - pos: -0.5,-2.5 + parent: 172 + type: Transform + - uid: 166 + components: + - pos: -6.5,-3.5 + parent: 172 + type: Transform +- proto: ShardGlass + entities: + - uid: 159 + components: + - rot: -1.5707963267948966 rad + pos: 2.5679882,1.8262265 + parent: 172 + type: Transform +- proto: SignDirectionalEng + entities: + - uid: 56 + components: + - pos: -1.5,-1.5 + parent: 172 + type: Transform +- proto: SignDirectionalSalvage + entities: + - uid: 55 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 172 + type: Transform +- proto: SignMinerDock + entities: + - uid: 48 + components: + - pos: 4.5,-1.5 + parent: 172 + type: Transform +- proto: SpawnMobCarp + entities: + - uid: 174 + components: + - pos: -3.5,-0.5 + parent: 172 + type: Transform +- proto: SurveillanceCameraConstructed + entities: + - uid: 57 + components: + - pos: -0.5,-0.5 + parent: 172 + type: Transform +- proto: Table + entities: + - uid: 75 + components: + - pos: 3.5,-0.5 + parent: 172 + type: Transform +- proto: TwoWayLever + entities: + - uid: 169 + components: + - pos: -2.5,2.5 + parent: 172 + type: Transform + - linkedPorts: + 73: + - Left: Open + - Right: Open + - Middle: Close + 77: + - Left: Open + - Right: Open + - Middle: Close + 78: + - Left: Open + - Right: Open + - Middle: Close + 79: + - Left: Open + - Right: Open + - Middle: Close + 80: + - Left: Open + - Right: Open + - Middle: Close + type: DeviceLinkSource +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 71 + components: + - flags: SessionSpecific + type: MetaData + - pos: 2.5,2.5 + parent: 172 + type: Transform +- proto: WallReinforced + entities: + - uid: 1 + components: + - pos: -5.5,5.5 + parent: 172 + type: Transform + - uid: 2 + components: + - pos: -5.5,4.5 + parent: 172 + type: Transform + - uid: 3 + components: + - pos: -6.5,4.5 + parent: 172 + type: Transform + - uid: 4 + components: + - pos: -6.5,3.5 + parent: 172 + type: Transform + - uid: 5 + components: + - pos: -6.5,2.5 + parent: 172 + type: Transform + - uid: 6 + components: + - pos: -6.5,1.5 + parent: 172 + type: Transform + - uid: 7 + components: + - pos: -6.5,0.5 + parent: 172 + type: Transform + - uid: 8 + components: + - pos: -6.5,-0.5 + parent: 172 + type: Transform + - uid: 9 + components: + - pos: -6.5,-1.5 + parent: 172 + type: Transform + - uid: 10 + components: + - pos: -7.5,-1.5 + parent: 172 + type: Transform + - uid: 11 + components: + - pos: -7.5,-2.5 + parent: 172 + type: Transform + - uid: 12 + components: + - pos: -7.5,-3.5 + parent: 172 + type: Transform + - uid: 13 + components: + - pos: -7.5,-4.5 + parent: 172 + type: Transform + - uid: 14 + components: + - pos: 0.5,6.5 + parent: 172 + type: Transform + - uid: 15 + components: + - pos: 0.5,5.5 + parent: 172 + type: Transform + - uid: 16 + components: + - pos: 0.5,4.5 + parent: 172 + type: Transform + - uid: 25 + components: + - pos: -5.5,-4.5 + parent: 172 + type: Transform + - uid: 26 + components: + - pos: -4.5,-4.5 + parent: 172 + type: Transform + - uid: 27 + components: + - pos: -3.5,-4.5 + parent: 172 + type: Transform + - uid: 28 + components: + - pos: -2.5,-4.5 + parent: 172 + type: Transform + - uid: 29 + components: + - pos: -1.5,-4.5 + parent: 172 + type: Transform + - uid: 30 + components: + - pos: -0.5,-4.5 + parent: 172 + type: Transform + - uid: 31 + components: + - pos: 0.5,-4.5 + parent: 172 + type: Transform + - uid: 32 + components: + - pos: 0.5,-3.5 + parent: 172 + type: Transform + - uid: 33 + components: + - pos: 1.5,-3.5 + parent: 172 + type: Transform + - uid: 34 + components: + - pos: 2.5,-3.5 + parent: 172 + type: Transform + - uid: 35 + components: + - pos: 3.5,-3.5 + parent: 172 + type: Transform + - uid: 36 + components: + - pos: 4.5,-3.5 + parent: 172 + type: Transform + - uid: 37 + components: + - pos: 5.5,-3.5 + parent: 172 + type: Transform + - uid: 38 + components: + - pos: 6.5,-3.5 + parent: 172 + type: Transform +- proto: WallSolid + entities: + - uid: 17 + components: + - pos: -5.5,-1.5 + parent: 172 + type: Transform + - uid: 18 + components: + - pos: -4.5,-1.5 + parent: 172 + type: Transform + - uid: 19 + components: + - pos: -3.5,-1.5 + parent: 172 + type: Transform + - uid: 20 + components: + - pos: -1.5,-1.5 + parent: 172 + type: Transform + - uid: 21 + components: + - pos: -0.5,-1.5 + parent: 172 + type: Transform + - uid: 22 + components: + - pos: 0.5,-1.5 + parent: 172 + type: Transform + - uid: 23 + components: + - pos: 1.5,-1.5 + parent: 172 + type: Transform + - uid: 24 + components: + - pos: 4.5,-1.5 + parent: 172 + type: Transform +- proto: WaterTankFull + entities: + - uid: 49 + components: + - pos: -6.5,-2.5 + parent: 172 + type: Transform +- proto: WeldingFuelTankFull + entities: + - uid: 58 + components: + - pos: -5.5,-0.5 + parent: 172 + type: Transform +- proto: WindoorSecureSalvageLocked + entities: + - uid: 83 + components: + - rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 172 + type: Transform + - uid: 85 + components: + - rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 172 + type: Transform + - uid: 116 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 172 + type: Transform + - uid: 117 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 172 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 61 + components: + - rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 172 + type: Transform + - uid: 62 + components: + - rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 172 + type: Transform + - uid: 63 + components: + - rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 172 + type: Transform + - uid: 64 + components: + - rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 172 + type: Transform + - uid: 65 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 172 + type: Transform + - uid: 66 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 172 + type: Transform + - uid: 67 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 172 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-atlas-service.yml b/Resources/Maps/Salvage/DeltaV/DV-atlas-service.yml new file mode 100644 index 0000000000..0b07359ada --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-atlas-service.yml @@ -0,0 +1,4835 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 12: FloorBar + 27: FloorDark + 45: FloorGrass + 56: FloorHydro + 58: FloorKitchen + 75: FloorShowroom + 84: FloorSteel + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 683 + components: + - type: MetaData + - pos: 0.5546875,0.36318558 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAADAAAAAACDAAAAAAADAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAADAAAAAABDAAAAAACDAAAAAABDAAAAAABDAAAAAABDAAAAAAADAAAAAACDAAAAAABOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAADAAAAAABDAAAAAADDAAAAAACDAAAAAABDAAAAAACDAAAAAADDAAAAAADDAAAAAABOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADAAAAAAADAAAAAACDAAAAAABDAAAAAABGwAAAAAAGwAAAAABGwAAAAADGwAAAAACcQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADAAAAAAADAAAAAADDAAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAAAcQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAADAAAAAABDAAAAAAADAAAAAADDAAAAAADGwAAAAAAGwAAAAAAGwAAAAACGwAAAAAAGwAAAAADOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAADAAAAAAADAAAAAADDAAAAAADDAAAAAADGwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAACOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAAAcQAAAAAAOgAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVAAAAAABVAAAAAADcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAOAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAOAAAAAAAVAAAAAADVAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAALQAAAAAAcQAAAAAAVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAALQAAAAAAcQAAAAAAVAAAAAABVAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAALQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: SwAAAAAAcQAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAAAASwAAAAAAcQAAAAAAOAAAAAAALQAAAAAALQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAAAASwAAAAAAcQAAAAAAcQAAAAAALQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAADAAAAAACDAAAAAABDAAAAAABGwAAAAACGwAAAAADGwAAAAABGwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADAAAAAAADAAAAAADDAAAAAABDAAAAAADGwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAcQAAAAAASwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVAAAAAABVAAAAAACcQAAAAAADAAAAAADDAAAAAADDAAAAAADDAAAAAADDAAAAAACDAAAAAACDAAAAAAADAAAAAABcQAAAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAADcQAAAAAADAAAAAAADAAAAAABDAAAAAACDAAAAAACDAAAAAABDAAAAAAADAAAAAAADAAAAAAAcQAAAAAASwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAADAAAAAAADAAAAAABDAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 48: -12,6 + 49: -9,6 + 50: -8,5 + 51: -4,5 + 52: -1,6 + 53: -1,6 + 54: -2,6 + 55: -5,5 + 56: -10,5 + 57: -13,4 + 58: -12,2 + 59: -10,3 + 60: -7,3 + 61: -4,2 + 62: -6,2 + 63: -8,1 + 64: -9,-1 + 65: -9,-3 + 66: -9,3 + 67: -8,3 + 68: -8,-1 + 69: -8,-5 + 70: -9,-6 + 71: -9,-3 + 72: -9,-5 + 73: -8,-7 + 74: -3,-7 + 75: -5,-4 + 76: -6,-3 + 77: -6,-1 + 78: -8,-7 + 79: -8,-10 + 80: -8,-10 + 81: -2,-10 + 82: 0,-9 + 83: 3,-9 + 84: 5,-9 + 85: 8,-9 + 86: 5,-10 + 87: 2,-10 + 88: -2,-10 + 89: -5,-9 + 90: -7,-9 + 91: -8,-9 + 92: -2,-9 + 93: 4,-9 + 94: 5,-9 + 95: 8,-8 + 96: 8,-7 + 97: 9,-6 + 98: 9,-4 + 99: 9,-4 + 100: 10,-6 + 101: 10,-8 + 102: 9,-4 + 103: 7,-3 + 104: 4,-2 + 105: 4,-1 + 106: 3,0 + 107: 5,0 + 108: 1,2 + 109: 0,3 + 110: -1,1 + 111: -1,1 + 112: 1,2 + 113: 0,3 + 114: 1,-3 + 115: 0,-4 + 116: 1,-6 + 117: 1,-7 + 118: 0,-7 + 119: -1,-7 + 120: -1,-6 + 121: -1,-6 + 122: -3,-7 + 123: -3,-7 + 124: -3,-3 + 125: -3,-2 + 126: -2,-2 + 127: 0,-2 + 128: 2,5 + 129: 2,5 + 130: 0,5 + 131: -1,5 + 132: 0,5 + 133: 2,5 + 134: 2,5 + 135: 1,5 + 136: -1,5 + 137: -13,6 + 138: -13,4 + 139: -12,3 + 140: -11,-5 + 141: -10,-7 + 142: -9,-7 + 143: -8,-9 + - node: + color: '#FFFFFFFF' + id: Flowersbr1 + decals: + 164: 4.2298193,1.0437844 + - node: + color: '#FFFFFFFF' + id: Flowerspv2 + decals: + 163: 4.6829443,-5.4294615 + - node: + color: '#FFFFFFFF' + id: Flowersy1 + decals: + 159: 4.1204443,-8.0093775 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 160: 5.2141943,-8.071921 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 161: 6.0423193,-7.993742 + 162: 7.0110693,-3.8033316 + - node: + color: '#9FED5896' + id: FullTileOverlayGreyscale + decals: + 39: 7,-2 + 40: 8,-2 + 41: 3,-5 + 42: 3,-4 + 43: 3,0 + 44: 3,1 + - node: + color: '#FFFFFFFF' + id: Grassa4 + decals: + 167: 4.2298193,-5.6639986 + - node: + color: '#FFFFFFFF' + id: Grassa5 + decals: + 168: 7.0891943,-4.616396 + - node: + color: '#FFFFFFFF' + id: Grassb2 + decals: + 165: 4.0423193,2.075751 + - node: + color: '#FFFFFFFF' + id: Grassb3 + decals: + 166: 5.4798193,-5.085472 + - node: + color: '#FFFFFFFF' + id: Grassd2 + decals: + 151: 4.5891943,-5.2887383 + 152: 5.9485693,-5.77345 + 153: 7.0110693,-4.350587 + 154: 4.5735693,1.4034092 + 155: 4.0735693,2.2321098 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 156: 4.0735693,-8.0093775 + 157: 4.9485693,-8.040649 + 158: 5.9485693,-7.96247 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 144: 4,1 + 145: 5,1 + 146: 4,-6 + 147: 4,-5 + 148: 5,-5 + 149: 7,-5 + 150: 7,-4 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale + decals: + 13: 4,-9 + 14: 5,-9 + 15: 6,-9 + 16: 5,0 + 17: 4,0 + 18: -4,1 + 19: -5,1 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale180 + decals: + 32: -5,-5 + 33: -4,-5 + 34: 5,-4 + 35: 4,-4 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + decals: + 20: -7,-1 + 21: -7,-2 + 22: -7,-3 + 23: -2,-6 + 24: -2,-7 + 25: 3,-2 + 26: 3,-1 + 27: 9,-6 + 28: 9,-5 + 29: 9,-4 + 30: 9,-3 + 31: 9,-2 + 45: 3,-3 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale90 + decals: + 36: 6,-3 + 37: 6,-1 + 38: 6,-2 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale + decals: + 10: 8,-8 + 11: 9,-7 + 12: 7,-9 + 46: -6,0 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale270 + decals: + 47: -6,-4 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale + decals: + 4: -6,1 + 5: -7,0 + 6: 8,-7 + 7: 7,-8 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 2: -3,-5 + 3: 6,-4 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 8: -7,-4 + 9: -6,-5 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 0: -3,1 + 1: 6,0 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-2: + 0: 65535 + -1,-1: + 0: 65535 + 0,-1: + 0: 65535 + -4,-2: + 0: 8 + -4,-1: + 0: 2176 + -3,-3: + 0: 64576 + -3,-2: + 0: 61439 + -3,-1: + 0: 65518 + -2,-3: + 0: 65472 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-4: + 0: 4096 + -1,-3: + 0: 65331 + 0,-3: + 0: 65516 + 0,-2: + 0: 65535 + 1,-3: + 0: 65330 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-3: + 0: 65535 + 2,-2: + 0: 65535 + 2,-1: + 0: 14327 + 2,-4: + 0: 49152 + 3,-3: + 0: 49 + 3,-2: + 0: 16 + 0,0: + 0: 65535 + 0,1: + 0: 26623 + 0,2: + 0: 3 + 1,0: + 0: 4991 + -4,0: + 0: 35904 + -4,1: + 0: 3276 + -3,0: + 0: 65519 + -3,1: + 0: 8191 + -2,0: + 0: 65535 + -2,1: + 0: 53247 + -2,2: + 0: 4 + -1,0: + 0: 65535 + -1,1: + 0: 8191 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - type: SpreaderGrid +- proto: AirAlarm + entities: + - uid: 490 + components: + - pos: -1.5,-7.5 + parent: 683 + type: Transform +- proto: AirlockBarLocked + entities: + - uid: 138 + components: + - pos: -1.5,-1.5 + parent: 683 + type: Transform +- proto: AirlockFreezerLocked + entities: + - uid: 68 + components: + - pos: 0.5,0.5 + parent: 683 + type: Transform +- proto: AirlockGlass + entities: + - uid: 141 + components: + - pos: -10.5,-0.5 + parent: 683 + type: Transform + - uid: 142 + components: + - pos: -10.5,-1.5 + parent: 683 + type: Transform + - uid: 143 + components: + - pos: -10.5,-2.5 + parent: 683 + type: Transform + - uid: 324 + components: + - pos: 3.5,-8.5 + parent: 683 + type: Transform + - uid: 325 + components: + - pos: 3.5,-9.5 + parent: 683 + type: Transform +- proto: AirlockHydroGlassLocked + entities: + - uid: 139 + components: + - pos: 2.5,-1.5 + parent: 683 + type: Transform + - uid: 140 + components: + - pos: 8.5,-1.5 + parent: 683 + type: Transform +- proto: APCBasic + entities: + - uid: 491 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 683 + type: Transform +- proto: BarSign + entities: + - uid: 634 + components: + - pos: -4.5,4.5 + parent: 683 + type: Transform +- proto: BoozeDispenser + entities: + - uid: 209 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 683 + type: Transform +- proto: Bucket + entities: + - uid: 296 + components: + - pos: 3.3098958,1.0140722 + parent: 683 + type: Transform + - uid: 297 + components: + - rot: -1.5707963267948966 rad + pos: 4.221354,-4.1483665 + parent: 683 + type: Transform +- proto: CableApcExtension + entities: + - uid: 535 + components: + - pos: -7.5,6.5 + parent: 683 + type: Transform + - uid: 536 + components: + - pos: -7.5,5.5 + parent: 683 + type: Transform + - uid: 537 + components: + - pos: -7.5,4.5 + parent: 683 + type: Transform + - uid: 538 + components: + - pos: -7.5,3.5 + parent: 683 + type: Transform + - uid: 539 + components: + - pos: -7.5,2.5 + parent: 683 + type: Transform + - uid: 540 + components: + - pos: -7.5,1.5 + parent: 683 + type: Transform + - uid: 541 + components: + - pos: -7.5,0.5 + parent: 683 + type: Transform + - uid: 542 + components: + - pos: -7.5,-0.5 + parent: 683 + type: Transform + - uid: 543 + components: + - pos: -7.5,-1.5 + parent: 683 + type: Transform + - uid: 544 + components: + - pos: -7.5,-2.5 + parent: 683 + type: Transform + - uid: 545 + components: + - pos: -7.5,-3.5 + parent: 683 + type: Transform + - uid: 546 + components: + - pos: -7.5,-4.5 + parent: 683 + type: Transform + - uid: 547 + components: + - pos: -7.5,-5.5 + parent: 683 + type: Transform + - uid: 548 + components: + - pos: -7.5,-6.5 + parent: 683 + type: Transform + - uid: 549 + components: + - pos: -7.5,-7.5 + parent: 683 + type: Transform + - uid: 550 + components: + - pos: -8.5,-1.5 + parent: 683 + type: Transform + - uid: 551 + components: + - pos: -9.5,-1.5 + parent: 683 + type: Transform + - uid: 552 + components: + - pos: -10.5,-1.5 + parent: 683 + type: Transform + - uid: 553 + components: + - pos: -6.5,-1.5 + parent: 683 + type: Transform + - uid: 554 + components: + - pos: -5.5,-1.5 + parent: 683 + type: Transform + - uid: 555 + components: + - pos: -4.5,-1.5 + parent: 683 + type: Transform + - uid: 556 + components: + - pos: -3.5,-1.5 + parent: 683 + type: Transform + - uid: 557 + components: + - pos: -2.5,-1.5 + parent: 683 + type: Transform + - uid: 558 + components: + - pos: -1.5,-1.5 + parent: 683 + type: Transform + - uid: 559 + components: + - pos: -0.5,-1.5 + parent: 683 + type: Transform + - uid: 560 + components: + - pos: 0.5,-1.5 + parent: 683 + type: Transform + - uid: 561 + components: + - pos: 0.5,-0.5 + parent: 683 + type: Transform + - uid: 562 + components: + - pos: 0.5,0.5 + parent: 683 + type: Transform + - uid: 563 + components: + - pos: 0.5,1.5 + parent: 683 + type: Transform + - uid: 564 + components: + - pos: -2.5,2.5 + parent: 683 + type: Transform + - uid: 565 + components: + - pos: -3.5,2.5 + parent: 683 + type: Transform + - uid: 566 + components: + - pos: -4.5,2.5 + parent: 683 + type: Transform + - uid: 567 + components: + - pos: -5.5,2.5 + parent: 683 + type: Transform + - uid: 568 + components: + - pos: -6.5,2.5 + parent: 683 + type: Transform + - uid: 569 + components: + - pos: -6.5,-5.5 + parent: 683 + type: Transform + - uid: 570 + components: + - pos: -5.5,-5.5 + parent: 683 + type: Transform + - uid: 571 + components: + - pos: -4.5,-5.5 + parent: 683 + type: Transform + - uid: 572 + components: + - pos: -3.5,-5.5 + parent: 683 + type: Transform + - uid: 573 + components: + - pos: -2.5,-5.5 + parent: 683 + type: Transform + - uid: 574 + components: + - pos: -1.5,-5.5 + parent: 683 + type: Transform + - uid: 575 + components: + - pos: -0.5,-5.5 + parent: 683 + type: Transform + - uid: 576 + components: + - pos: 0.5,-5.5 + parent: 683 + type: Transform + - uid: 577 + components: + - pos: 0.5,-4.5 + parent: 683 + type: Transform + - uid: 578 + components: + - pos: 0.5,-3.5 + parent: 683 + type: Transform + - uid: 579 + components: + - pos: 0.5,-2.5 + parent: 683 + type: Transform + - uid: 580 + components: + - pos: 1.5,-0.5 + parent: 683 + type: Transform + - uid: 581 + components: + - pos: 2.5,-0.5 + parent: 683 + type: Transform + - uid: 582 + components: + - pos: 0.5,-6.5 + parent: 683 + type: Transform + - uid: 583 + components: + - pos: -9.5,-9.5 + parent: 683 + type: Transform + - uid: 584 + components: + - pos: -9.5,-10.5 + parent: 683 + type: Transform + - uid: 585 + components: + - pos: -5.5,-9.5 + parent: 683 + type: Transform + - uid: 586 + components: + - pos: -5.5,-10.5 + parent: 683 + type: Transform + - uid: 587 + components: + - pos: -4.5,-10.5 + parent: 683 + type: Transform + - uid: 588 + components: + - pos: -3.5,-10.5 + parent: 683 + type: Transform + - uid: 589 + components: + - pos: -2.5,-10.5 + parent: 683 + type: Transform + - uid: 590 + components: + - pos: -1.5,-9.5 + parent: 683 + type: Transform + - uid: 591 + components: + - pos: 4.5,-9.5 + parent: 683 + type: Transform + - uid: 592 + components: + - pos: 5.5,-9.5 + parent: 683 + type: Transform + - uid: 593 + components: + - pos: 6.5,-9.5 + parent: 683 + type: Transform + - uid: 594 + components: + - pos: 7.5,-9.5 + parent: 683 + type: Transform + - uid: 595 + components: + - pos: 8.5,-9.5 + parent: 683 + type: Transform + - uid: 596 + components: + - pos: 9.5,-9.5 + parent: 683 + type: Transform + - uid: 597 + components: + - pos: 10.5,-9.5 + parent: 683 + type: Transform + - uid: 598 + components: + - pos: 11.5,-9.5 + parent: 683 + type: Transform + - uid: 599 + components: + - pos: 9.5,-8.5 + parent: 683 + type: Transform + - uid: 600 + components: + - pos: 9.5,-7.5 + parent: 683 + type: Transform + - uid: 601 + components: + - pos: 9.5,-6.5 + parent: 683 + type: Transform + - uid: 602 + components: + - pos: 10.5,-2.5 + parent: 683 + type: Transform + - uid: 603 + components: + - pos: 10.5,-3.5 + parent: 683 + type: Transform + - uid: 604 + components: + - pos: 4.5,-5.5 + parent: 683 + type: Transform + - uid: 605 + components: + - pos: 5.5,-5.5 + parent: 683 + type: Transform + - uid: 606 + components: + - pos: 6.5,-5.5 + parent: 683 + type: Transform + - uid: 607 + components: + - pos: 5.5,-4.5 + parent: 683 + type: Transform + - uid: 608 + components: + - pos: 5.5,-3.5 + parent: 683 + type: Transform + - uid: 609 + components: + - pos: 5.5,-2.5 + parent: 683 + type: Transform + - uid: 610 + components: + - pos: 4.5,-2.5 + parent: 683 + type: Transform + - uid: 611 + components: + - pos: 4.5,-3.5 + parent: 683 + type: Transform + - uid: 612 + components: + - pos: 3.5,-3.5 + parent: 683 + type: Transform + - uid: 613 + components: + - pos: 4.5,-1.5 + parent: 683 + type: Transform + - uid: 614 + components: + - pos: 5.5,-1.5 + parent: 683 + type: Transform + - uid: 615 + components: + - pos: 4.5,-0.5 + parent: 683 + type: Transform + - uid: 616 + components: + - pos: 5.5,-0.5 + parent: 683 + type: Transform + - uid: 617 + components: + - pos: 5.5,0.5 + parent: 683 + type: Transform + - uid: 618 + components: + - pos: 5.5,1.5 + parent: 683 + type: Transform + - uid: 619 + components: + - pos: 5.5,2.5 + parent: 683 + type: Transform + - uid: 620 + components: + - pos: 4.5,2.5 + parent: 683 + type: Transform + - uid: 621 + components: + - pos: 6.5,-1.5 + parent: 683 + type: Transform + - uid: 622 + components: + - pos: 7.5,-1.5 + parent: 683 + type: Transform + - uid: 623 + components: + - pos: 7.5,-0.5 + parent: 683 + type: Transform + - uid: 624 + components: + - pos: 7.5,0.5 + parent: 683 + type: Transform + - uid: 625 + components: + - pos: 7.5,-2.5 + parent: 683 + type: Transform + - uid: 626 + components: + - pos: 7.5,-3.5 + parent: 683 + type: Transform +- proto: CableHV + entities: + - uid: 507 + components: + - pos: 9.5,-1.5 + parent: 683 + type: Transform + - uid: 508 + components: + - pos: 9.5,-2.5 + parent: 683 + type: Transform + - uid: 509 + components: + - pos: 9.5,-3.5 + parent: 683 + type: Transform + - uid: 510 + components: + - pos: 9.5,-4.5 + parent: 683 + type: Transform + - uid: 511 + components: + - pos: 9.5,-5.5 + parent: 683 + type: Transform + - uid: 512 + components: + - pos: 9.5,-6.5 + parent: 683 + type: Transform + - uid: 513 + components: + - pos: 8.5,-6.5 + parent: 683 + type: Transform + - uid: 514 + components: + - pos: 8.5,-7.5 + parent: 683 + type: Transform + - uid: 515 + components: + - pos: 8.5,-8.5 + parent: 683 + type: Transform + - uid: 516 + components: + - pos: 7.5,-8.5 + parent: 683 + type: Transform + - uid: 517 + components: + - pos: 7.5,-9.5 + parent: 683 + type: Transform + - uid: 518 + components: + - pos: 6.5,-9.5 + parent: 683 + type: Transform + - uid: 519 + components: + - pos: 5.5,-9.5 + parent: 683 + type: Transform + - uid: 520 + components: + - pos: 4.5,-9.5 + parent: 683 + type: Transform + - uid: 521 + components: + - pos: 3.5,-9.5 + parent: 683 + type: Transform + - uid: 522 + components: + - pos: 2.5,-9.5 + parent: 683 + type: Transform + - uid: 523 + components: + - pos: 1.5,-9.5 + parent: 683 + type: Transform + - uid: 524 + components: + - pos: 0.5,-9.5 + parent: 683 + type: Transform + - uid: 525 + components: + - pos: -0.5,-9.5 + parent: 683 + type: Transform + - uid: 526 + components: + - pos: -1.5,-9.5 + parent: 683 + type: Transform + - uid: 527 + components: + - pos: -2.5,-9.5 + parent: 683 + type: Transform + - uid: 528 + components: + - pos: -3.5,-9.5 + parent: 683 + type: Transform + - uid: 529 + components: + - pos: -4.5,-9.5 + parent: 683 + type: Transform + - uid: 530 + components: + - pos: -5.5,-9.5 + parent: 683 + type: Transform + - uid: 531 + components: + - pos: -6.5,-9.5 + parent: 683 + type: Transform + - uid: 532 + components: + - pos: -7.5,-9.5 + parent: 683 + type: Transform + - uid: 533 + components: + - pos: -8.5,-9.5 + parent: 683 + type: Transform + - uid: 534 + components: + - pos: -9.5,-9.5 + parent: 683 + type: Transform +- proto: CableMV + entities: + - uid: 492 + components: + - pos: 2.5,-0.5 + parent: 683 + type: Transform + - uid: 493 + components: + - pos: 1.5,-0.5 + parent: 683 + type: Transform + - uid: 494 + components: + - pos: 1.5,-1.5 + parent: 683 + type: Transform + - uid: 495 + components: + - pos: 0.5,-1.5 + parent: 683 + type: Transform + - uid: 496 + components: + - pos: -0.5,-1.5 + parent: 683 + type: Transform + - uid: 497 + components: + - pos: -1.5,-1.5 + parent: 683 + type: Transform + - uid: 498 + components: + - pos: -2.5,-1.5 + parent: 683 + type: Transform + - uid: 499 + components: + - pos: -3.5,-1.5 + parent: 683 + type: Transform + - uid: 500 + components: + - pos: -4.5,-1.5 + parent: 683 + type: Transform + - uid: 501 + components: + - pos: -5.5,-1.5 + parent: 683 + type: Transform + - uid: 502 + components: + - pos: -6.5,-1.5 + parent: 683 + type: Transform + - uid: 503 + components: + - pos: -7.5,-1.5 + parent: 683 + type: Transform + - uid: 504 + components: + - pos: -8.5,-1.5 + parent: 683 + type: Transform + - uid: 505 + components: + - pos: -9.5,-1.5 + parent: 683 + type: Transform + - uid: 506 + components: + - pos: -10.5,-1.5 + parent: 683 + type: Transform +- proto: Chair + entities: + - uid: 232 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 683 + type: Transform + - uid: 233 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 683 + type: Transform + - uid: 234 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 683 + type: Transform + - uid: 235 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 683 + type: Transform +- proto: ChairWood + entities: + - uid: 227 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-6.5 + parent: 683 + type: Transform + - uid: 228 + components: + - pos: -9.5,-4.5 + parent: 683 + type: Transform + - uid: 229 + components: + - rot: 3.141592653589793 rad + pos: -9.5,2.5 + parent: 683 + type: Transform + - uid: 230 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 683 + type: Transform + - uid: 231 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 683 + type: Transform +- proto: ClosetChefFilled + entities: + - uid: 137 + components: + - pos: 2.5,-6.5 + parent: 683 + type: Transform +- proto: ClothingHandsGlovesLeather + entities: + - uid: 289 + components: + - pos: 3.5887437,0.6314991 + parent: 683 + type: Transform +- proto: ClothingHeadHatTrucker + entities: + - uid: 290 + components: + - pos: 3.546875,0.52154315 + parent: 683 + type: Transform +- proto: ClothingShoesBootsWork + entities: + - uid: 287 + components: + - pos: 1.9298897,-6.263915 + parent: 683 + type: Transform +- proto: ComputerTelevision + entities: + - uid: 212 + components: + - pos: -5.5,-3.5 + parent: 683 + type: Transform +- proto: CrateFilledSpawner + entities: + - uid: 630 + components: + - pos: -5.5,3.5 + parent: 683 + type: Transform +- proto: CrateNPCCow + entities: + - uid: 69 + components: + - pos: 2.5,3.5 + parent: 683 + type: Transform +- proto: DisposalBend + entities: + - uid: 317 + components: + - pos: -9.5,-2.5 + parent: 683 + type: Transform + - uid: 329 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-10.5 + parent: 683 + type: Transform + - uid: 340 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 683 + type: Transform + - uid: 341 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 683 + type: Transform +- proto: DisposalJunction + entities: + - uid: 326 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 683 + type: Transform +- proto: DisposalPipe + entities: + - uid: 321 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 683 + type: Transform + - uid: 322 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 683 + type: Transform + - uid: 323 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 683 + type: Transform + - uid: 330 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 683 + type: Transform + - uid: 331 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-9.5 + parent: 683 + type: Transform + - uid: 332 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-8.5 + parent: 683 + type: Transform + - uid: 333 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-7.5 + parent: 683 + type: Transform + - uid: 334 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-6.5 + parent: 683 + type: Transform + - uid: 335 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-5.5 + parent: 683 + type: Transform + - uid: 336 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-4.5 + parent: 683 + type: Transform + - uid: 337 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-3.5 + parent: 683 + type: Transform + - uid: 343 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 683 + type: Transform + - uid: 344 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 683 + type: Transform +- proto: DisposalPipeBroken + entities: + - uid: 318 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 683 + type: Transform + - uid: 320 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-9.5 + parent: 683 + type: Transform + - uid: 327 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 683 + type: Transform + - uid: 328 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 683 + type: Transform + - uid: 338 + components: + - pos: 10.5,-2.5 + parent: 683 + type: Transform + - uid: 339 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 683 + type: Transform + - uid: 346 + components: + - pos: -1.5,6.5 + parent: 683 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 316 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-3.5 + parent: 683 + type: Transform + - uid: 319 + components: + - pos: -1.5,-8.5 + parent: 683 + type: Transform + - uid: 342 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 683 + type: Transform + - uid: 345 + components: + - rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 683 + type: Transform +- proto: DisposalUnit + entities: + - uid: 198 + components: + - pos: -9.5,-3.5 + parent: 683 + type: Transform + - uid: 199 + components: + - pos: -1.5,5.5 + parent: 683 + type: Transform + - uid: 200 + components: + - pos: -1.5,-8.5 + parent: 683 + type: Transform + - uid: 201 + components: + - pos: 5.5,-2.5 + parent: 683 + type: Transform +- proto: DonkpocketBoxSpawner + entities: + - uid: 213 + components: + - pos: -4.5,-4.5 + parent: 683 + type: Transform +- proto: DrinkLithiumFlask + entities: + - uid: 288 + components: + - rot: -1.5707963267948966 rad + pos: -2.4997976,-5.297097 + parent: 683 + type: Transform +- proto: DrinkShaker + entities: + - uid: 308 + components: + - rot: 1.5707963267948966 rad + pos: -2.4267337,-1.0480859 + parent: 683 + type: Transform +- proto: EmergencyLight + entities: + - uid: 656 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 683 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 657 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,1.5 + parent: 683 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 658 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 683 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 659 + components: + - pos: -10.5,-8.5 + parent: 683 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 660 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 683 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight +- proto: FirelockEdge + entities: + - uid: 240 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 683 + type: Transform + - uid: 241 + components: + - rot: 3.141592653589793 rad + pos: -6.5,0.5 + parent: 683 + type: Transform + - uid: 242 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 683 + type: Transform + - uid: 243 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 683 + type: Transform + - uid: 244 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 683 + type: Transform + - uid: 245 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 683 + type: Transform + - uid: 246 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 683 + type: Transform + - uid: 247 + components: + - pos: -6.5,-3.5 + parent: 683 + type: Transform + - uid: 248 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 683 + type: Transform + - uid: 249 + components: + - pos: -5.5,-4.5 + parent: 683 + type: Transform + - uid: 250 + components: + - pos: -4.5,-4.5 + parent: 683 + type: Transform + - uid: 251 + components: + - pos: -3.5,-4.5 + parent: 683 + type: Transform +- proto: FirelockGlass + entities: + - uid: 144 + components: + - pos: -8.5,4.5 + parent: 683 + type: Transform + - uid: 145 + components: + - pos: -7.5,4.5 + parent: 683 + type: Transform + - uid: 146 + components: + - pos: -6.5,4.5 + parent: 683 + type: Transform + - uid: 147 + components: + - pos: -10.5,-0.5 + parent: 683 + type: Transform + - uid: 148 + components: + - pos: -10.5,-1.5 + parent: 683 + type: Transform + - uid: 149 + components: + - pos: -10.5,-2.5 + parent: 683 + type: Transform + - uid: 150 + components: + - pos: -8.5,-7.5 + parent: 683 + type: Transform + - uid: 151 + components: + - pos: -7.5,-7.5 + parent: 683 + type: Transform + - uid: 152 + components: + - pos: -6.5,-7.5 + parent: 683 + type: Transform + - uid: 153 + components: + - pos: 3.5,-8.5 + parent: 683 + type: Transform + - uid: 154 + components: + - pos: 3.5,-9.5 + parent: 683 + type: Transform + - uid: 155 + components: + - pos: -5.5,-8.5 + parent: 683 + type: Transform + - uid: 156 + components: + - pos: -5.5,-9.5 + parent: 683 + type: Transform + - uid: 157 + components: + - pos: -1.5,-2.5 + parent: 683 + type: Transform + - uid: 158 + components: + - pos: 2.5,-2.5 + parent: 683 + type: Transform + - uid: 159 + components: + - pos: 8.5,-4.5 + parent: 683 + type: Transform + - uid: 160 + components: + - pos: 9.5,-5.5 + parent: 683 + type: Transform + - uid: 161 + components: + - pos: 10.5,-5.5 + parent: 683 + type: Transform + - uid: 236 + components: + - pos: -11.5,2.5 + parent: 683 + type: Transform + - uid: 237 + components: + - pos: -12.5,2.5 + parent: 683 + type: Transform + - uid: 238 + components: + - pos: -5.5,5.5 + parent: 683 + type: Transform + - uid: 239 + components: + - pos: -5.5,6.5 + parent: 683 + type: Transform + - uid: 252 + components: + - pos: 8.5,-1.5 + parent: 683 + type: Transform +- proto: FloorDrain + entities: + - uid: 91 + components: + - pos: 1.5,2.5 + parent: 683 + type: Transform + - fixtures: {} + type: Fixtures +- proto: FoodBreadMoldySlice + entities: + - uid: 629 + components: + - pos: -9.454466,3.7004807 + parent: 683 + type: Transform +- proto: FoodCannabisButter + entities: + - uid: 679 + components: + - pos: 0.30648696,-2.9974256 + parent: 683 + type: Transform +- proto: FoodCarrot + entities: + - uid: 304 + components: + - rot: 3.141592653589793 rad + pos: 0.49773932,-4.0872107 + parent: 683 + type: Transform + - uid: 305 + components: + - rot: 3.141592653589793 rad + pos: 0.4248228,-3.8500671 + parent: 683 + type: Transform + - uid: 306 + components: + - rot: 3.141592653589793 rad + pos: -0.6142397,-3.8318257 + parent: 683 + type: Transform + - uid: 307 + components: + - rot: 1.5707963267948966 rad + pos: -0.41371918,-4.87161 + parent: 683 + type: Transform +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 131 + components: + - rot: -1.5707963267948966 rad + pos: 0.5280738,-5.144866 + parent: 683 + type: Transform + - uid: 136 + components: + - pos: 0.5280738,-5.436735 + parent: 683 + type: Transform +- proto: FoodCondimentBottleHotsauce + entities: + - uid: 286 + components: + - pos: 1.6746814,-7.2307315 + parent: 683 + type: Transform +- proto: FoodCondimentPacketBbq + entities: + - uid: 284 + components: + - rot: 1.5707963267948966 rad + pos: -0.6039643,-7.2672157 + parent: 683 + type: Transform + - uid: 285 + components: + - pos: -0.29406857,-7.5226007 + parent: 683 + type: Transform +- proto: FoodMeat + entities: + - uid: 79 + components: + - flags: InContainer + type: MetaData + - parent: 72 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 80 + components: + - flags: InContainer + type: MetaData + - parent: 72 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 81 + components: + - flags: InContainer + type: MetaData + - parent: 72 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodMeatBacon + entities: + - uid: 87 + components: + - flags: InContainer + type: MetaData + - parent: 72 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 88 + components: + - flags: InContainer + type: MetaData + - parent: 72 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 89 + components: + - flags: InContainer + type: MetaData + - parent: 72 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodMeatDuckCutletCooked + entities: + - uid: 82 + components: + - flags: InContainer + type: MetaData + - parent: 72 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 83 + components: + - flags: InContainer + type: MetaData + - parent: 72 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 84 + components: + - flags: InContainer + type: MetaData + - parent: 72 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 85 + components: + - flags: InContainer + type: MetaData + - parent: 72 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 86 + components: + - flags: InContainer + type: MetaData + - parent: 72 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodMeatMeatball + entities: + - uid: 73 + components: + - flags: InContainer + type: MetaData + - parent: 72 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 74 + components: + - flags: InContainer + type: MetaData + - parent: 72 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 75 + components: + - flags: InContainer + type: MetaData + - parent: 72 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 76 + components: + - flags: InContainer + type: MetaData + - parent: 72 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 77 + components: + - flags: InContainer + type: MetaData + - parent: 72 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 78 + components: + - flags: InContainer + type: MetaData + - parent: 72 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodMeatRotten + entities: + - uid: 101 + components: + - pos: -0.41237217,1.3665254 + parent: 683 + type: Transform + - uid: 102 + components: + - pos: -0.53997636,2.5704868 + parent: 683 + type: Transform + - uid: 103 + components: + - pos: 1.5563779,2.5887282 + parent: 683 + type: Transform +- proto: GasPipeBend + entities: + - uid: 394 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 397 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 418 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 419 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 420 + components: + - pos: -1.5,-8.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 430 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-10.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 381 + components: + - pos: 9.5,-2.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 395 + components: + - pos: 5.5,-9.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 354 + components: + - pos: -6.5,4.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 355 + components: + - pos: -6.5,5.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 356 + components: + - pos: -6.5,6.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 357 + components: + - pos: -6.5,2.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 358 + components: + - pos: -6.5,1.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 359 + components: + - pos: -6.5,0.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 360 + components: + - pos: -6.5,-0.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 361 + components: + - pos: -6.5,-1.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 362 + components: + - pos: -6.5,-2.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 363 + components: + - pos: -6.5,-3.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 364 + components: + - pos: -6.5,-4.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 365 + components: + - pos: -6.5,-5.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 368 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 369 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 370 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 372 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 373 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 374 + components: + - pos: 0.5,-5.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 375 + components: + - pos: 0.5,-4.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 376 + components: + - pos: 0.5,-3.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 377 + components: + - pos: 0.5,-2.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 378 + components: + - pos: 0.5,-1.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 379 + components: + - pos: 0.5,-0.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 380 + components: + - pos: 0.5,0.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 382 + components: + - pos: 9.5,-1.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 383 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 384 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 385 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 386 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 387 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 388 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-3.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 389 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-4.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 390 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-5.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 391 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-6.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 392 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-7.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 393 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-8.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 398 + components: + - pos: -6.5,-7.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 399 + components: + - pos: -6.5,-8.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 400 + components: + - pos: -6.5,-9.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 401 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 402 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 403 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 404 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 405 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 406 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 407 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 408 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 409 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 410 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 412 + components: + - pos: -9.5,-10.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 422 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 423 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 424 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 425 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 426 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 427 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 429 + components: + - pos: 9.5,-11.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 431 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-9.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 432 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-8.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 433 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-7.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 434 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-6.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 435 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-5.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 436 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-4.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 437 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-3.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 438 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-2.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 439 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 440 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 441 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 442 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 443 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 444 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 450 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-8.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 451 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-7.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 452 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 453 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-4.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 454 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-3.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 455 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-2.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 456 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-1.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 457 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 458 + components: + - pos: -8.5,-0.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 459 + components: + - pos: -8.5,0.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 460 + components: + - pos: -8.5,1.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 461 + components: + - pos: -8.5,3.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 462 + components: + - pos: -8.5,4.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 463 + components: + - pos: -8.5,5.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 464 + components: + - pos: -8.5,6.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 465 + components: + - pos: -12.5,2.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 466 + components: + - pos: -12.5,3.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 467 + components: + - pos: -12.5,4.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 468 + components: + - pos: -12.5,5.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 471 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 472 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 473 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 474 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 475 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 476 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 477 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,2.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 478 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 479 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 480 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 482 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 484 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 485 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 486 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 487 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 488 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 489 + components: + - pos: -1.5,-9.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 353 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,3.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 366 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 367 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 371 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 396 + components: + - pos: -2.5,-9.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 411 + components: + - pos: -9.5,-9.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 413 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-9.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 414 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 415 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 416 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,2.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 417 + components: + - pos: -7.5,2.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 428 + components: + - pos: 9.5,-10.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 469 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,6.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 470 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-5.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 483 + components: + - rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasPressurePump + entities: + - uid: 481 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasThermoMachineFreezer + entities: + - uid: 71 + components: + - pos: -0.5,3.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 421 + components: + - pos: -0.5,-9.5 + parent: 683 + type: Transform + - uid: 445 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 446 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 447 + components: + - rot: 3.141592653589793 rad + pos: -7.5,1.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 448 + components: + - pos: -7.5,-4.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 449 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 683 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 347 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 348 + components: + - pos: 0.5,1.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 349 + components: + - pos: 5.5,-8.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 350 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 351 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 352 + components: + - pos: -3.5,-5.5 + parent: 683 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: Grille + entities: + - uid: 6 + components: + - pos: -10.5,0.5 + parent: 683 + type: Transform + - uid: 45 + components: + - pos: -4.5,-7.5 + parent: 683 + type: Transform + - uid: 46 + components: + - pos: -4.5,-7.5 + parent: 683 + type: Transform + - uid: 47 + components: + - pos: -3.5,-7.5 + parent: 683 + type: Transform + - uid: 48 + components: + - pos: -2.5,-7.5 + parent: 683 + type: Transform + - uid: 49 + components: + - pos: -10.5,-3.5 + parent: 683 + type: Transform + - uid: 50 + components: + - pos: 2.5,-4.5 + parent: 683 + type: Transform + - uid: 51 + components: + - pos: 4.5,-6.5 + parent: 683 + type: Transform + - uid: 52 + components: + - pos: 4.5,-6.5 + parent: 683 + type: Transform + - uid: 53 + components: + - pos: 5.5,-6.5 + parent: 683 + type: Transform + - uid: 54 + components: + - pos: 6.5,-6.5 + parent: 683 + type: Transform + - uid: 55 + components: + - pos: 8.5,-5.5 + parent: 683 + type: Transform + - uid: 56 + components: + - pos: 8.5,-3.5 + parent: 683 + type: Transform + - uid: 163 + components: + - pos: 11.5,-5.5 + parent: 683 + type: Transform + - uid: 164 + components: + - pos: 11.5,-6.5 + parent: 683 + type: Transform + - uid: 165 + components: + - pos: 11.5,-8.5 + parent: 683 + type: Transform + - uid: 166 + components: + - pos: 11.5,-9.5 + parent: 683 + type: Transform + - uid: 167 + components: + - pos: 11.5,-10.5 + parent: 683 + type: Transform + - uid: 169 + components: + - pos: 9.5,-11.5 + parent: 683 + type: Transform + - uid: 171 + components: + - pos: 10.5,-11.5 + parent: 683 + type: Transform +- proto: HydroponicsToolClippers + entities: + - uid: 293 + components: + - pos: 6.9374995,-4.4402366 + parent: 683 + type: Transform +- proto: HydroponicsToolHatchet + entities: + - uid: 294 + components: + - pos: 4.5130205,2.8200135 + parent: 683 + type: Transform +- proto: HydroponicsToolMiniHoe + entities: + - uid: 292 + components: + - pos: 4.6953125,-2.1600068 + parent: 683 + type: Transform +- proto: HydroponicsToolScythe + entities: + - uid: 295 + components: + - pos: 4.9505205,-1.1931901 + parent: 683 + type: Transform +- proto: HydroponicsToolSpade + entities: + - uid: 291 + components: + - pos: 4.640625,0.57626843 + parent: 683 + type: Transform +- proto: hydroponicsTray + entities: + - uid: 259 + components: + - pos: 7.5,-0.5 + parent: 683 + type: Transform + - uid: 261 + components: + - pos: 4.5,2.5 + parent: 683 + type: Transform + - uid: 262 + components: + - pos: 7.5,-2.5 + parent: 683 + type: Transform + - uid: 263 + components: + - pos: 7.5,-3.5 + parent: 683 + type: Transform + - uid: 264 + components: + - pos: 7.5,-4.5 + parent: 683 + type: Transform + - uid: 265 + components: + - pos: 6.5,-5.5 + parent: 683 + type: Transform + - uid: 266 + components: + - pos: 5.5,-5.5 + parent: 683 + type: Transform + - uid: 267 + components: + - pos: 4.5,-5.5 + parent: 683 + type: Transform +- proto: KitchenKnife + entities: + - uid: 188 + components: + - rot: 1.5707963267948966 rad + pos: 0.5934031,-3.819509 + parent: 683 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 129 + components: + - pos: 0.5,-2.5 + parent: 683 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 130 + components: + - pos: 0.5,-4.5 + parent: 683 + type: Transform +- proto: KitchenSpike + entities: + - uid: 70 + components: + - pos: 0.5,3.5 + parent: 683 + type: Transform +- proto: LampGold + entities: + - uid: 283 + components: + - rot: 1.5707963267948966 rad + pos: -9.609173,-5.078196 + parent: 683 + type: Transform +- proto: LockerBoozeFilled + entities: + - uid: 127 + components: + - pos: -2.5,1.5 + parent: 683 + type: Transform +- proto: LockerBotanistLoot + entities: + - uid: 260 + components: + - pos: 3.5,-3.5 + parent: 683 + type: Transform +- proto: LockerFreezer + entities: + - uid: 72 + components: + - pos: 1.5,1.5 + parent: 683 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 73 + - 74 + - 75 + - 76 + - 77 + - 78 + - 79 + - 80 + - 81 + - 82 + - 83 + - 84 + - 85 + - 86 + - 87 + - 88 + - 89 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: MachineFrameDestroyed + entities: + - uid: 270 + components: + - pos: 3.5,-4.5 + parent: 683 + type: Transform +- proto: PaintingMonkey + entities: + - uid: 275 + components: + - pos: -1.5,-0.5 + parent: 683 + type: Transform +- proto: PianoInstrument + entities: + - uid: 282 + components: + - rot: 3.141592653589793 rad + pos: -9.5,1.5 + parent: 683 + type: Transform +- proto: PosterContrabandShamblersJuice + entities: + - uid: 273 + components: + - pos: 2.5,-7.5 + parent: 683 + type: Transform +- proto: PosterLegitCohibaRobustoAd + entities: + - uid: 274 + components: + - pos: -1.5,0.5 + parent: 683 + type: Transform +- proto: Poweredlight + entities: + - uid: 648 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 683 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 649 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 683 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 650 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 683 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 651 + components: + - pos: -3.5,3.5 + parent: 683 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 652 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,2.5 + parent: 683 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 653 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 683 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 654 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 683 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 655 + components: + - pos: 7.5,-7.5 + parent: 683 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredlightEmpty + entities: + - uid: 661 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 683 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 662 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 683 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 663 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 683 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 664 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 683 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 665 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 683 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLight + entities: + - uid: 647 + components: + - pos: 1.5,3.5 + parent: 683 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PuddleFlour + entities: + - uid: 183 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 683 + type: Transform + - uid: 184 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 683 + type: Transform + - uid: 185 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 683 + type: Transform + - uid: 186 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 683 + type: Transform + - uid: 187 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 683 + type: Transform +- proto: Railing + entities: + - uid: 253 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 683 + type: Transform + - uid: 254 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 683 + type: Transform + - uid: 255 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 683 + type: Transform + - uid: 256 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-8.5 + parent: 683 + type: Transform +- proto: RailingCornerSmall + entities: + - uid: 257 + components: + - pos: 7.5,-8.5 + parent: 683 + type: Transform +- proto: RandomDrinkBottle + entities: + - uid: 207 + components: + - pos: -5.5,0.5 + parent: 683 + type: Transform + - uid: 208 + components: + - pos: -3.5,-4.5 + parent: 683 + type: Transform +- proto: RandomDrinkGlass + entities: + - uid: 628 + components: + - pos: -6.5,-1.5 + parent: 683 + type: Transform +- proto: RandomFoodSingle + entities: + - uid: 627 + components: + - pos: -1.5,-2.5 + parent: 683 + type: Transform +- proto: RandomInstruments + entities: + - uid: 681 + components: + - pos: -3.5,-8.5 + parent: 683 + type: Transform +- proto: RandomItem + entities: + - uid: 680 + components: + - pos: 0.5,5.5 + parent: 683 + type: Transform +- proto: RandomPosterLegit + entities: + - uid: 276 + components: + - pos: 0.5,4.5 + parent: 683 + type: Transform + - uid: 277 + components: + - pos: -10.5,2.5 + parent: 683 + type: Transform +- proto: RandomServiceCorpseSpawner + entities: + - uid: 684 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 683 + type: Transform + - uid: 685 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-4.5 + parent: 683 + type: Transform + - uid: 686 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 683 + type: Transform +- proto: RandomVending + entities: + - uid: 178 + components: + - pos: 9.5,-10.5 + parent: 683 + type: Transform + - uid: 179 + components: + - pos: 10.5,-10.5 + parent: 683 + type: Transform +- proto: ReagentContainerFlour + entities: + - uid: 182 + components: + - rot: 1.5707963267948966 rad + pos: 0.5934031,-3.3999467 + parent: 683 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 63 + components: + - pos: 4.5,-6.5 + parent: 683 + type: Transform + - uid: 64 + components: + - pos: 5.5,-6.5 + parent: 683 + type: Transform + - uid: 65 + components: + - pos: 6.5,-6.5 + parent: 683 + type: Transform + - uid: 66 + components: + - pos: 8.5,-5.5 + parent: 683 + type: Transform + - uid: 67 + components: + - pos: 8.5,-3.5 + parent: 683 + type: Transform + - uid: 170 + components: + - pos: 11.5,-10.5 + parent: 683 + type: Transform + - uid: 172 + components: + - pos: 11.5,-9.5 + parent: 683 + type: Transform + - uid: 173 + components: + - pos: 11.5,-8.5 + parent: 683 + type: Transform + - uid: 176 + components: + - pos: 10.5,-11.5 + parent: 683 + type: Transform + - uid: 177 + components: + - pos: 9.5,-11.5 + parent: 683 + type: Transform +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 687 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 683 + type: Transform +- proto: SalvageLorePaperGamingSpawner + entities: + - uid: 633 + components: + - pos: -9.5,-5.5 + parent: 683 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 631 + components: + - pos: -11.5,5.5 + parent: 683 + type: Transform +- proto: SalvageSeedSpawnerLow + entities: + - uid: 298 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 683 + type: Transform + - uid: 299 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 683 + type: Transform + - uid: 300 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 683 + type: Transform + - uid: 301 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 683 + type: Transform + - uid: 302 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 683 + type: Transform + - uid: 303 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 683 + type: Transform +- proto: SeedExtractor + entities: + - uid: 271 + components: + - pos: 5.5,-1.5 + parent: 683 + type: Transform +- proto: ShardGlass + entities: + - uid: 202 + components: + - pos: -5.471152,1.4158976 + parent: 683 + type: Transform + - uid: 203 + components: + - pos: -4.596152,1.5618322 + parent: 683 + type: Transform + - uid: 204 + components: + - pos: -4.6326103,0.7774337 + parent: 683 + type: Transform + - uid: 205 + components: + - pos: -4.705527,0.412597 + parent: 683 + type: Transform + - uid: 206 + components: + - pos: -4.924277,0.04776007 + parent: 683 + type: Transform + - uid: 309 + components: + - rot: 1.5707963267948966 rad + pos: -8.7887125,-4.8241453 + parent: 683 + type: Transform + - uid: 666 + components: + - rot: -1.5707963267948966 rad + pos: 3.2772012,-4.09236 + parent: 683 + type: Transform + - uid: 667 + components: + - rot: -1.5707963267948966 rad + pos: 6.714701,-5.3588643 + parent: 683 + type: Transform + - uid: 668 + components: + - rot: -1.5707963267948966 rad + pos: 7.7303257,-2.2786002 + parent: 683 + type: Transform + - uid: 669 + components: + - rot: -1.5707963267948966 rad + pos: 7.5115757,-0.40229648 + parent: 683 + type: Transform +- proto: ShardGlassReinforced + entities: + - uid: 310 + components: + - rot: 1.5707963267948966 rad + pos: -10.2105875,-4.5322766 + parent: 683 + type: Transform + - uid: 311 + components: + - rot: 1.5707963267948966 rad + pos: -8.734025,-4.477551 + parent: 683 + type: Transform + - uid: 312 + components: + - rot: 1.5707963267948966 rad + pos: -8.2418375,-6.703055 + parent: 683 + type: Transform + - uid: 313 + components: + - rot: 1.5707963267948966 rad + pos: -7.3668375,-6.2834926 + parent: 683 + type: Transform + - uid: 314 + components: + - rot: 1.5707963267948966 rad + pos: 7.4352446,0.15587473 + parent: 683 + type: Transform + - uid: 315 + components: + - rot: 1.5707963267948966 rad + pos: 4.682641,3.2387452 + parent: 683 + type: Transform +- proto: ShuttersWindowOpen + entities: + - uid: 123 + components: + - pos: -0.5,-7.5 + parent: 683 + type: Transform + - links: + - 126 + type: DeviceLinkSink + - uid: 124 + components: + - pos: 0.5,-7.5 + parent: 683 + type: Transform + - links: + - 126 + type: DeviceLinkSink + - uid: 125 + components: + - pos: 1.5,-7.5 + parent: 683 + type: Transform + - links: + - 126 + type: DeviceLinkSink +- proto: SignalSwitchDirectional + entities: + - uid: 126 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 683 + type: Transform + - linkedPorts: + 125: + - On: Open + - Off: Close + 124: + - On: Open + - Off: Close + 123: + - On: Open + - Off: Close + type: DeviceLinkSource +- proto: SignBar + entities: + - uid: 278 + components: + - pos: -9.5,4.5 + parent: 683 + type: Transform + - uid: 279 + components: + - pos: -9.5,-7.5 + parent: 683 + type: Transform +- proto: SignChem + entities: + - uid: 682 + components: + - pos: 11.5,-7.5 + parent: 683 + type: Transform +- proto: SignDirectionalBar + entities: + - uid: 642 + components: + - rot: 3.141592653589793 rad + pos: 3.549446,-6.8748894 + parent: 683 + type: Transform +- proto: SignDirectionalDorms + entities: + - uid: 638 + components: + - rot: -1.5707963267948966 rad + pos: -10.430396,-7.198034 + parent: 683 + type: Transform + - uid: 643 + components: + - rot: -1.5707963267948966 rad + pos: 3.549446,-7.0885797 + parent: 683 + type: Transform +- proto: SignDirectionalEng + entities: + - uid: 636 + components: + - pos: -10.430396,4.5330157 + parent: 683 + type: Transform + - uid: 640 + components: + - rot: 3.141592653589793 rad + pos: -10.430396,-7.6254144 + parent: 683 + type: Transform + - uid: 645 + components: + - rot: -1.5707963267948966 rad + pos: 3.5546546,-7.5107474 + parent: 683 + type: Transform +- proto: SignDirectionalEvac + entities: + - uid: 280 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 683 + type: Transform +- proto: SignDirectionalMed + entities: + - uid: 641 + components: + - rot: 1.5707963267948966 rad + pos: -10.430396,-7.8443165 + parent: 683 + type: Transform + - uid: 644 + components: + - rot: 1.5707963267948966 rad + pos: 3.549446,-7.2970576 + parent: 683 + type: Transform +- proto: SignDirectionalSci + entities: + - uid: 637 + components: + - pos: -10.435604,4.3193254 + parent: 683 + type: Transform + - uid: 646 + components: + - rot: -1.5707963267948966 rad + pos: 3.5546546,-7.7296495 + parent: 683 + type: Transform +- proto: SignDirectionalSec + entities: + - uid: 635 + components: + - rot: 1.5707963267948966 rad + pos: -10.430396,4.7467055 + parent: 683 + type: Transform +- proto: SignDirectionalSupply + entities: + - uid: 639 + components: + - rot: 3.141592653589793 rad + pos: -10.430396,-7.4117246 + parent: 683 + type: Transform +- proto: SignHydro3 + entities: + - uid: 258 + components: + - pos: 7.5,-6.5 + parent: 683 + type: Transform +- proto: SinkEmpty + entities: + - uid: 180 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 683 + type: Transform + - uid: 181 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 683 + type: Transform +- proto: soda_dispenser + entities: + - uid: 210 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 683 + type: Transform +- proto: SpaceTickSpawner + entities: + - uid: 670 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 683 + type: Transform + - uid: 671 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 683 + type: Transform + - uid: 672 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 683 + type: Transform + - uid: 673 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 683 + type: Transform + - uid: 674 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 683 + type: Transform + - uid: 675 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 683 + type: Transform + - uid: 676 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 683 + type: Transform + - uid: 677 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 683 + type: Transform + - uid: 678 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 683 + type: Transform + - uid: 688 + components: + - pos: -9.5,-6.5 + parent: 683 + type: Transform + - uid: 689 + components: + - pos: 2.5,-8.5 + parent: 683 + type: Transform + - uid: 690 + components: + - pos: 10.5,-8.5 + parent: 683 + type: Transform +- proto: Stool + entities: + - uid: 281 + components: + - rot: 3.141592653589793 rad + pos: -9.5,0.5 + parent: 683 + type: Transform +- proto: StoolBar + entities: + - uid: 214 + components: + - pos: -6.5,1.5 + parent: 683 + type: Transform + - uid: 215 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 683 + type: Transform + - uid: 216 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 683 + type: Transform + - uid: 217 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 683 + type: Transform + - uid: 218 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 683 + type: Transform + - uid: 219 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 683 + type: Transform + - uid: 220 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-4.5 + parent: 683 + type: Transform + - uid: 221 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 683 + type: Transform + - uid: 222 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 683 + type: Transform + - uid: 223 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 683 + type: Transform + - uid: 224 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 683 + type: Transform + - uid: 225 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 683 + type: Transform + - uid: 226 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 683 + type: Transform +- proto: Table + entities: + - uid: 90 + components: + - pos: 0.5,-3.5 + parent: 683 + type: Transform + - uid: 94 + components: + - pos: 0.5,-2.5 + parent: 683 + type: Transform + - uid: 95 + components: + - pos: 0.5,-7.5 + parent: 683 + type: Transform + - uid: 96 + components: + - pos: 1.5,-7.5 + parent: 683 + type: Transform + - uid: 97 + components: + - pos: 0.5,5.5 + parent: 683 + type: Transform + - uid: 98 + components: + - pos: -3.5,-8.5 + parent: 683 + type: Transform + - uid: 104 + components: + - pos: 0.5,-4.5 + parent: 683 + type: Transform + - uid: 105 + components: + - pos: 0.5,-5.5 + parent: 683 + type: Transform + - uid: 106 + components: + - pos: -0.5,-7.5 + parent: 683 + type: Transform + - uid: 197 + components: + - pos: 3.5,0.5 + parent: 683 + type: Transform +- proto: TableCarpet + entities: + - uid: 107 + components: + - pos: -3.5,3.5 + parent: 683 + type: Transform +- proto: TableCounterMetal + entities: + - uid: 108 + components: + - pos: -4.5,1.5 + parent: 683 + type: Transform + - uid: 109 + components: + - pos: -5.5,1.5 + parent: 683 + type: Transform + - uid: 110 + components: + - pos: -5.5,0.5 + parent: 683 + type: Transform + - uid: 111 + components: + - pos: -6.5,0.5 + parent: 683 + type: Transform + - uid: 112 + components: + - pos: -6.5,-0.5 + parent: 683 + type: Transform + - uid: 113 + components: + - pos: -6.5,-1.5 + parent: 683 + type: Transform + - uid: 114 + components: + - pos: -6.5,-2.5 + parent: 683 + type: Transform + - uid: 115 + components: + - pos: -6.5,-3.5 + parent: 683 + type: Transform + - uid: 116 + components: + - pos: -5.5,-3.5 + parent: 683 + type: Transform + - uid: 117 + components: + - pos: -5.5,-4.5 + parent: 683 + type: Transform + - uid: 118 + components: + - pos: -4.5,-4.5 + parent: 683 + type: Transform + - uid: 119 + components: + - pos: -3.5,-4.5 + parent: 683 + type: Transform + - uid: 120 + components: + - pos: -1.5,-2.5 + parent: 683 + type: Transform + - uid: 121 + components: + - pos: 2.5,-2.5 + parent: 683 + type: Transform + - uid: 122 + components: + - pos: 8.5,-4.5 + parent: 683 + type: Transform +- proto: TableGlass + entities: + - uid: 194 + components: + - pos: -3.5,-0.5 + parent: 683 + type: Transform + - uid: 195 + components: + - pos: -3.5,-1.5 + parent: 683 + type: Transform + - uid: 196 + components: + - pos: -3.5,-2.5 + parent: 683 + type: Transform +- proto: TableWood + entities: + - uid: 99 + components: + - pos: -9.5,-5.5 + parent: 683 + type: Transform + - uid: 100 + components: + - pos: -9.5,3.5 + parent: 683 + type: Transform +- proto: VendingBarDrobe + entities: + - uid: 211 + components: + - flags: SessionSpecific + type: MetaData + - pos: -2.5,-4.5 + parent: 683 + type: Transform +- proto: VendingMachineBooze + entities: + - uid: 128 + components: + - flags: SessionSpecific + type: MetaData + - pos: -3.5,1.5 + parent: 683 + type: Transform +- proto: VendingMachineChefvend + entities: + - uid: 93 + components: + - flags: SessionSpecific + type: MetaData + - pos: 1.5,-0.5 + parent: 683 + type: Transform +- proto: VendingMachineDinnerware + entities: + - uid: 92 + components: + - flags: SessionSpecific + type: MetaData + - pos: -0.5,-0.5 + parent: 683 + type: Transform +- proto: VendingMachineNutri + entities: + - uid: 269 + components: + - flags: SessionSpecific + type: MetaData + - pos: 3.5,-0.5 + parent: 683 + type: Transform +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 268 + components: + - flags: SessionSpecific + type: MetaData + - pos: 3.5,1.5 + parent: 683 + type: Transform +- proto: WallmountTelevision + entities: + - uid: 632 + components: + - pos: -2.5,4.5 + parent: 683 + type: Transform +- proto: WallReinforced + entities: + - uid: 162 + components: + - pos: 11.5,-7.5 + parent: 683 + type: Transform + - uid: 168 + components: + - pos: 11.5,-11.5 + parent: 683 + type: Transform +- proto: WallSolid + entities: + - uid: 1 + components: + - pos: -9.5,4.5 + parent: 683 + type: Transform + - uid: 2 + components: + - pos: -10.5,4.5 + parent: 683 + type: Transform + - uid: 3 + components: + - pos: -10.5,3.5 + parent: 683 + type: Transform + - uid: 4 + components: + - pos: -10.5,2.5 + parent: 683 + type: Transform + - uid: 5 + components: + - pos: -10.5,1.5 + parent: 683 + type: Transform + - uid: 7 + components: + - pos: -10.5,-7.5 + parent: 683 + type: Transform + - uid: 8 + components: + - pos: -9.5,-7.5 + parent: 683 + type: Transform + - uid: 9 + components: + - pos: -5.5,4.5 + parent: 683 + type: Transform + - uid: 10 + components: + - pos: -4.5,4.5 + parent: 683 + type: Transform + - uid: 11 + components: + - pos: -3.5,4.5 + parent: 683 + type: Transform + - uid: 12 + components: + - pos: -2.5,4.5 + parent: 683 + type: Transform + - uid: 13 + components: + - pos: -1.5,4.5 + parent: 683 + type: Transform + - uid: 14 + components: + - pos: -0.5,4.5 + parent: 683 + type: Transform + - uid: 15 + components: + - pos: 0.5,4.5 + parent: 683 + type: Transform + - uid: 16 + components: + - pos: 1.5,4.5 + parent: 683 + type: Transform + - uid: 17 + components: + - pos: 2.5,4.5 + parent: 683 + type: Transform + - uid: 18 + components: + - pos: -1.5,3.5 + parent: 683 + type: Transform + - uid: 19 + components: + - pos: -1.5,2.5 + parent: 683 + type: Transform + - uid: 20 + components: + - pos: -1.5,1.5 + parent: 683 + type: Transform + - uid: 21 + components: + - pos: -1.5,0.5 + parent: 683 + type: Transform + - uid: 22 + components: + - pos: -1.5,-0.5 + parent: 683 + type: Transform + - uid: 23 + components: + - pos: -0.5,0.5 + parent: 683 + type: Transform + - uid: 24 + components: + - pos: 1.5,0.5 + parent: 683 + type: Transform + - uid: 25 + components: + - pos: 2.5,-0.5 + parent: 683 + type: Transform + - uid: 26 + components: + - pos: 2.5,0.5 + parent: 683 + type: Transform + - uid: 27 + components: + - pos: 2.5,1.5 + parent: 683 + type: Transform + - uid: 28 + components: + - pos: 2.5,2.5 + parent: 683 + type: Transform + - uid: 29 + components: + - pos: 3.5,2.5 + parent: 683 + type: Transform + - uid: 30 + components: + - pos: 3.5,3.5 + parent: 683 + type: Transform + - uid: 31 + components: + - pos: 8.5,-0.5 + parent: 683 + type: Transform + - uid: 32 + components: + - pos: 8.5,-2.5 + parent: 683 + type: Transform + - uid: 33 + components: + - pos: 7.5,-5.5 + parent: 683 + type: Transform + - uid: 34 + components: + - pos: 7.5,-6.5 + parent: 683 + type: Transform + - uid: 35 + components: + - pos: 3.5,-5.5 + parent: 683 + type: Transform + - uid: 36 + components: + - pos: 3.5,-6.5 + parent: 683 + type: Transform + - uid: 37 + components: + - pos: 3.5,-7.5 + parent: 683 + type: Transform + - uid: 38 + components: + - pos: 2.5,-7.5 + parent: 683 + type: Transform + - uid: 39 + components: + - pos: -1.5,-7.5 + parent: 683 + type: Transform + - uid: 40 + components: + - pos: -5.5,-7.5 + parent: 683 + type: Transform + - uid: 41 + components: + - pos: -1.5,-4.5 + parent: 683 + type: Transform + - uid: 42 + components: + - pos: -1.5,-3.5 + parent: 683 + type: Transform + - uid: 43 + components: + - pos: 2.5,-5.5 + parent: 683 + type: Transform + - uid: 44 + components: + - pos: 2.5,-3.5 + parent: 683 + type: Transform +- proto: WaterTankHighCapacity + entities: + - uid: 272 + components: + - pos: 5.5,-0.5 + parent: 683 + type: Transform +- proto: WindoorBarKitchenLocked + entities: + - uid: 189 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 683 + type: Transform + - uid: 190 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 683 + type: Transform +- proto: WindoorBarLocked + entities: + - uid: 191 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 683 + type: Transform +- proto: WindoorHydroponicsLocked + entities: + - uid: 192 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 683 + type: Transform +- proto: Window + entities: + - uid: 57 + components: + - pos: -10.5,0.5 + parent: 683 + type: Transform + - uid: 58 + components: + - pos: -10.5,-3.5 + parent: 683 + type: Transform + - uid: 59 + components: + - pos: -4.5,-7.5 + parent: 683 + type: Transform + - uid: 60 + components: + - pos: -3.5,-7.5 + parent: 683 + type: Transform + - uid: 61 + components: + - pos: -2.5,-7.5 + parent: 683 + type: Transform + - uid: 62 + components: + - pos: 2.5,-4.5 + parent: 683 + type: Transform + - uid: 174 + components: + - pos: 11.5,-5.5 + parent: 683 + type: Transform + - uid: 175 + components: + - pos: 11.5,-6.5 + parent: 683 + type: Transform +- proto: WindowDirectional + entities: + - uid: 132 + components: + - rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 683 + type: Transform + - uid: 133 + components: + - rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 683 + type: Transform + - uid: 134 + components: + - rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 683 + type: Transform + - uid: 135 + components: + - rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 683 + type: Transform + - uid: 193 + components: + - pos: -2.5,-4.5 + parent: 683 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-cargo-01.yml b/Resources/Maps/Salvage/DeltaV/DV-cargo-01.yml new file mode 100644 index 0000000000..f440d3acaa --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-cargo-01.yml @@ -0,0 +1,1174 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 17: FloorBrokenWood + 84: FloorSteel + 89: FloorSteelDirty + 110: FloorWood + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 20 + components: + - type: MetaData + - pos: 0.5,0.5 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAcAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAABcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: WQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAABEQAAAAAGcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAEQAAAAACbgAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAEQAAAAACbgAAAAADcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 24: -4,-1 + 25: -2,-1 + 26: -1,-1 + - node: + color: '#A4610696' + id: CheckerNWSE + decals: + 27: -8,-2 + 28: -8,-3 + 29: -8,-4 + 30: -6,-3 + 31: -8,-1 + 32: -7,-1 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 0: -3,2 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 33: -7,-1 + 34: -5,0 + 35: -2,1 + 36: 1,2 + 37: 2,2 + 38: -6,-3 + 39: -8,-3 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 23: 0,1 + 40: -8,-4 + 41: -8,-1 + 42: -4,0 + 43: -2,2 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 48: -8,-5 + 49: -8,-1 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 44: -8,-3 + 45: -8,-2 + 46: -5,-1 + 47: -7,-4 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale + decals: + 3: 0,2 + 4: 1,2 + 11: -4,2 + 12: -3,2 + 13: -2,2 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale180 + decals: + 17: 2,4 + 18: 1,4 + 19: 0,4 + 20: -1,4 + 21: -2,4 + 22: -3,4 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + decals: + 14: -5,1 + 15: -5,0 + 16: -5,-1 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + decals: + 5: 2,1 + 6: 2,2 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + decals: + 7: 2,2 + 8: -5,2 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + decals: + 2: 0,1 + - node: + color: '#FFFFFFFF' + id: QuarterTileOverlayGreyscale180 + decals: + 1: 0,1 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + decals: + 10: -5,2 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + decals: + 9: -5,2 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 50: -8,-1 + 51: -7,-1 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 65535 + 0,-1: + 0: 65527 + 0,0: + 0: 65535 + -1,0: + 0: 65535 + -2,-1: + 0: 65535 + -2,-2: + 0: 47104 + -1,-2: + 0: 21504 + 0,-2: + 0: 28672 + 0,1: + 0: 10239 + 0,2: + 0: 2 + 1,0: + 0: 4369 + 1,1: + 0: 1 + -2,0: + 0: 65535 + -2,1: + 0: 3823 + -1,1: + 0: 40959 + -1,2: + 0: 1 + -3,-1: + 0: 34952 + 1,-1: + 0: 4096 + -3,0: + 0: 34952 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: OccluderTree + - type: Shuttle + - type: RadiationGridResistance + - type: GasTileOverlay + - type: SpreaderGrid + - type: GridPathfinding +- proto: AirlockEngineeringLocked + entities: + - uid: 56 + components: + - pos: 2.5,0.5 + parent: 20 + type: Transform +- proto: AirlockMaintCargoLocked + entities: + - uid: 49 + components: + - pos: 3.5,2.5 + parent: 20 + type: Transform +- proto: AirlockQuartermasterGlassLocked + entities: + - uid: 134 + components: + - pos: -7.5,-1.5 + parent: 20 + type: Transform +- proto: APCBasic + entities: + - uid: 62 + components: + - pos: 1.5,0.5 + parent: 20 + type: Transform +- proto: BannerRevolution + entities: + - uid: 121 + components: + - pos: -0.5,4.5 + parent: 20 + type: Transform +- proto: BaseComputer + entities: + - uid: 135 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 20 + type: Transform +- proto: BoxShotgunSlug + entities: + - uid: 5 + components: + - pos: -4.46428,2.622311 + parent: 20 + type: Transform +- proto: CableApcExtension + entities: + - uid: 57 + components: + - pos: 1.5,0.5 + parent: 20 + type: Transform + - uid: 58 + components: + - pos: 0.5,-0.5 + parent: 20 + type: Transform + - uid: 59 + components: + - pos: 0.5,0.5 + parent: 20 + type: Transform + - uid: 60 + components: + - pos: 1.5,1.5 + parent: 20 + type: Transform + - uid: 61 + components: + - pos: 1.5,0.5 + parent: 20 + type: Transform + - uid: 75 + components: + - pos: -1.5,-0.5 + parent: 20 + type: Transform + - uid: 76 + components: + - pos: -0.5,-0.5 + parent: 20 + type: Transform + - uid: 77 + components: + - pos: 2.5,1.5 + parent: 20 + type: Transform + - uid: 83 + components: + - pos: -1.5,-1.5 + parent: 20 + type: Transform + - uid: 84 + components: + - pos: -2.5,-1.5 + parent: 20 + type: Transform + - uid: 85 + components: + - pos: -3.5,-1.5 + parent: 20 + type: Transform + - uid: 87 + components: + - pos: 1.5,2.5 + parent: 20 + type: Transform + - uid: 88 + components: + - pos: 0.5,2.5 + parent: 20 + type: Transform + - uid: 89 + components: + - pos: 0.5,4.5 + parent: 20 + type: Transform + - uid: 90 + components: + - pos: 0.5,3.5 + parent: 20 + type: Transform + - uid: 91 + components: + - pos: 0.5,5.5 + parent: 20 + type: Transform + - uid: 142 + components: + - pos: -4.5,-1.5 + parent: 20 + type: Transform + - uid: 143 + components: + - pos: -4.5,-2.5 + parent: 20 + type: Transform + - uid: 144 + components: + - pos: -5.5,-2.5 + parent: 20 + type: Transform +- proto: CableHV + entities: + - uid: 93 + components: + - pos: 2.5,-2.5 + parent: 20 + type: Transform + - uid: 94 + components: + - pos: 1.5,-2.5 + parent: 20 + type: Transform + - uid: 95 + components: + - pos: 0.5,-2.5 + parent: 20 + type: Transform + - uid: 96 + components: + - pos: 0.5,-1.5 + parent: 20 + type: Transform + - uid: 97 + components: + - pos: 0.5,-0.5 + parent: 20 + type: Transform + - uid: 98 + components: + - pos: 0.5,0.5 + parent: 20 + type: Transform + - uid: 99 + components: + - pos: 0.5,1.5 + parent: 20 + type: Transform + - uid: 100 + components: + - pos: 1.5,1.5 + parent: 20 + type: Transform + - uid: 101 + components: + - pos: 2.5,1.5 + parent: 20 + type: Transform + - uid: 102 + components: + - pos: 2.5,0.5 + parent: 20 + type: Transform + - uid: 103 + components: + - pos: 2.5,-0.5 + parent: 20 + type: Transform +- proto: CableMV + entities: + - uid: 80 + components: + - pos: 2.5,-0.5 + parent: 20 + type: Transform + - uid: 81 + components: + - pos: 2.5,0.5 + parent: 20 + type: Transform + - uid: 82 + components: + - pos: 1.5,0.5 + parent: 20 + type: Transform +- proto: Chair + entities: + - uid: 118 + components: + - pos: 1.5,6.5 + parent: 20 + type: Transform + - uid: 119 + components: + - pos: 2.5,6.5 + parent: 20 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 137 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 20 + type: Transform +- proto: Cobweb1 + entities: + - uid: 154 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,2.5 + parent: 20 + type: Transform + - uid: 155 + components: + - pos: -6.5,2.5 + parent: 20 + type: Transform +- proto: ComputerBroken + entities: + - uid: 46 + components: + - pos: -0.5,2.5 + parent: 20 + type: Transform +- proto: ConveyorBelt + entities: + - uid: 8 + components: + - pos: -2.5,-1.5 + parent: 20 + type: Transform + - uid: 65 + components: + - rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 20 + type: Transform + - uid: 66 + components: + - rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 20 + type: Transform + - uid: 67 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 20 + type: Transform +- proto: ConveyorBeltAssembly + entities: + - uid: 68 + components: + - pos: 0.57671773,0.40495777 + parent: 20 + type: Transform + - uid: 78 + components: + - pos: 0.46734273,0.6393328 + parent: 20 + type: Transform +- proto: CrateFilledSpawner + entities: + - uid: 10 + components: + - pos: 1.5,4.5 + parent: 20 + type: Transform + - uid: 19 + components: + - pos: -3.5,-0.5 + parent: 20 + type: Transform + - uid: 52 + components: + - pos: -0.5,-0.5 + parent: 20 + type: Transform + - uid: 70 + components: + - pos: -3.5,-2.5 + parent: 20 + type: Transform + - uid: 71 + components: + - pos: -0.5,-2.5 + parent: 20 + type: Transform + - uid: 105 + components: + - pos: -1.5,-0.5 + parent: 20 + type: Transform +- proto: CrateSalvageEquipment + entities: + - uid: 53 + components: + - pos: -2.5,2.5 + parent: 20 + type: Transform +- proto: DrinkGrapeCan + entities: + - uid: 156 + components: + - rot: 1.5707963267948966 rad + pos: -4.0240154,1.3458183 + parent: 20 + type: Transform +- proto: EncryptionKeyCargo + entities: + - uid: 116 + components: + - pos: 0.52038026,-1.5834936 + parent: 20 + type: Transform +- proto: FirelockGlass + entities: + - uid: 86 + components: + - pos: -1.5,3.5 + parent: 20 + type: Transform +- proto: GeneratorBasic + entities: + - uid: 92 + components: + - pos: 2.5,-2.5 + parent: 20 + type: Transform +- proto: Grille + entities: + - uid: 25 + components: + - pos: 2.5,3.5 + parent: 20 + type: Transform + - uid: 38 + components: + - pos: -3.5,3.5 + parent: 20 + type: Transform + - uid: 39 + components: + - pos: -2.5,3.5 + parent: 20 + type: Transform + - uid: 40 + components: + - pos: -4.5,3.5 + parent: 20 + type: Transform + - uid: 63 + components: + - pos: 1.5,3.5 + parent: 20 + type: Transform + - uid: 122 + components: + - pos: -0.5,3.5 + parent: 20 + type: Transform + - uid: 133 + components: + - pos: -6.5,-1.5 + parent: 20 + type: Transform +- proto: GrilleBroken + entities: + - uid: 37 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 20 + type: Transform + - uid: 45 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 20 + type: Transform +- proto: HandheldGPSBasic + entities: + - uid: 145 + components: + - pos: -7.4831448,2.45672 + parent: 20 + type: Transform +- proto: LampGold + entities: + - uid: 138 + components: + - pos: -6.506016,1.8826408 + parent: 20 + type: Transform +- proto: MachineFrameDestroyed + entities: + - uid: 113 + components: + - pos: -1.5,-3.5 + parent: 20 + type: Transform +- proto: MaintenanceToolSpawner + entities: + - uid: 9 + components: + - pos: -4.5,4.5 + parent: 20 + type: Transform +- proto: MaintenanceWeaponSpawner + entities: + - uid: 11 + components: + - pos: -0.5,0.5 + parent: 20 + type: Transform +- proto: PosterContrabandBeachStarYamamoto + entities: + - uid: 108 + components: + - pos: -5.5,-0.5 + parent: 20 + type: Transform +- proto: PosterContrabandRevolt + entities: + - uid: 120 + components: + - pos: 2.5,-1.5 + parent: 20 + type: Transform +- proto: Poweredlight + entities: + - uid: 17 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 20 + type: Transform + - uid: 18 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 20 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLight + entities: + - uid: 141 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 20 + type: Transform +- proto: RandomAmmoBox + entities: + - uid: 148 + components: + - pos: -3.5,2.5 + parent: 20 + type: Transform +- proto: RandomArtifactSpawner + entities: + - uid: 1 + components: + - pos: -2.5,0.5 + parent: 20 + type: Transform +- proto: RandomBoards + entities: + - uid: 157 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 20 + type: Transform + - uid: 158 + components: + - pos: -6.5,4.5 + parent: 20 + type: Transform +- proto: RandomBox + entities: + - uid: 149 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 20 + type: Transform + - uid: 150 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 20 + type: Transform + - uid: 151 + components: + - pos: 0.5,-2.5 + parent: 20 + type: Transform +- proto: RandomCargoCorpseSpawner + entities: + - uid: 146 + components: + - pos: -3.5,1.5 + parent: 20 + type: Transform + - uid: 147 + components: + - pos: -2.5,5.5 + parent: 20 + type: Transform +- proto: RandomDrinkBottle + entities: + - uid: 110 + components: + - pos: -6.5,-0.5 + parent: 20 + type: Transform +- proto: RandomItem + entities: + - uid: 109 + components: + - pos: -1.5,-4.5 + parent: 20 + type: Transform + - uid: 152 + components: + - pos: 2.5,6.5 + parent: 20 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 132 + components: + - pos: -6.5,-1.5 + parent: 20 + type: Transform +- proto: SalvageCanisterSpawner + entities: + - uid: 104 + components: + - pos: 1.5,-4.5 + parent: 20 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 139 + components: + - pos: -6.5,2.5 + parent: 20 + type: Transform +- proto: SalvageMobSpawner + entities: + - uid: 13 + components: + - pos: -2.5,-2.5 + parent: 20 + type: Transform +- proto: SalvageMobSpawner75 + entities: + - uid: 12 + components: + - pos: -0.5,5.5 + parent: 20 + type: Transform + - uid: 14 + components: + - pos: -0.5,-1.5 + parent: 20 + type: Transform +- proto: ShardGlassReinforced + entities: + - uid: 2 + components: + - pos: 0.53125,2.21875 + parent: 20 + type: Transform + - uid: 3 + components: + - pos: 0.96875,2.421875 + parent: 20 + type: Transform +- proto: SignCargo + entities: + - uid: 47 + components: + - pos: -5.5,4.5 + parent: 20 + type: Transform + - uid: 48 + components: + - pos: 3.5,4.5 + parent: 20 + type: Transform +- proto: SmallLight + entities: + - uid: 16 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 20 + type: Transform +- proto: SpawnMobSpiderSalvage + entities: + - uid: 140 + components: + - pos: -7.5,1.5 + parent: 20 + type: Transform +- proto: SpawnVehicleATV + entities: + - uid: 106 + components: + - pos: -2.5,4.5 + parent: 20 + type: Transform +- proto: SpiderWeb + entities: + - uid: 111 + components: + - pos: -7.5,2.5 + parent: 20 + type: Transform + - uid: 153 + components: + - pos: -7.5,-1.5 + parent: 20 + type: Transform +- proto: SubstationBasic + entities: + - uid: 74 + components: + - pos: 2.5,-0.5 + parent: 20 + type: Transform +- proto: Table + entities: + - uid: 114 + components: + - pos: 0.5,-1.5 + parent: 20 + type: Transform + - uid: 115 + components: + - pos: 0.5,-2.5 + parent: 20 + type: Transform + - uid: 136 + components: + - pos: -6.5,1.5 + parent: 20 + type: Transform +- proto: TableReinforced + entities: + - uid: 6 + components: + - pos: -3.5,2.5 + parent: 20 + type: Transform + - uid: 7 + components: + - pos: -4.5,2.5 + parent: 20 + type: Transform + - uid: 15 + components: + - pos: -1.5,3.5 + parent: 20 + type: Transform +- proto: VehicleKeyATV + entities: + - uid: 107 + components: + - pos: -1.4804568,3.5168486 + parent: 20 + type: Transform +- proto: WallReinforced + entities: + - uid: 21 + components: + - pos: 3.5,-1.5 + parent: 20 + type: Transform + - uid: 26 + components: + - pos: 3.5,-0.5 + parent: 20 + type: Transform + - uid: 27 + components: + - pos: 3.5,0.5 + parent: 20 + type: Transform + - uid: 54 + components: + - pos: 1.5,-1.5 + parent: 20 + type: Transform + - uid: 55 + components: + - pos: 1.5,-0.5 + parent: 20 + type: Transform + - uid: 72 + components: + - pos: 1.5,0.5 + parent: 20 + type: Transform + - uid: 73 + components: + - pos: 2.5,-1.5 + parent: 20 + type: Transform + - uid: 123 + components: + - pos: -6.5,3.5 + parent: 20 + type: Transform + - uid: 124 + components: + - pos: -7.5,3.5 + parent: 20 + type: Transform + - uid: 125 + components: + - pos: -8.5,3.5 + parent: 20 + type: Transform + - uid: 126 + components: + - pos: -8.5,2.5 + parent: 20 + type: Transform + - uid: 127 + components: + - pos: -8.5,1.5 + parent: 20 + type: Transform + - uid: 128 + components: + - pos: -8.5,0.5 + parent: 20 + type: Transform + - uid: 129 + components: + - pos: -8.5,-0.5 + parent: 20 + type: Transform + - uid: 130 + components: + - pos: -8.5,-1.5 + parent: 20 + type: Transform + - uid: 131 + components: + - pos: -8.5,-2.5 + parent: 20 + type: Transform +- proto: WallSolid + entities: + - uid: 23 + components: + - pos: -5.5,2.5 + parent: 20 + type: Transform + - uid: 24 + components: + - pos: -5.5,3.5 + parent: 20 + type: Transform + - uid: 28 + components: + - pos: 3.5,-2.5 + parent: 20 + type: Transform + - uid: 30 + components: + - pos: 3.5,1.5 + parent: 20 + type: Transform + - uid: 31 + components: + - pos: 3.5,4.5 + parent: 20 + type: Transform + - uid: 34 + components: + - pos: -5.5,2.5 + parent: 20 + type: Transform + - uid: 35 + components: + - pos: -5.5,4.5 + parent: 20 + type: Transform + - uid: 36 + components: + - pos: -5.5,-0.5 + parent: 20 + type: Transform +- proto: WallSolidRust + entities: + - uid: 22 + components: + - pos: -5.5,1.5 + parent: 20 + type: Transform + - uid: 29 + components: + - pos: 3.5,3.5 + parent: 20 + type: Transform + - uid: 32 + components: + - pos: -5.5,-1.5 + parent: 20 + type: Transform + - uid: 33 + components: + - pos: -5.5,0.5 + parent: 20 + type: Transform +- proto: WardrobeCargoFilled + entities: + - uid: 64 + components: + - pos: 0.5,-0.5 + parent: 20 + type: Transform +- proto: WaterCooler + entities: + - uid: 117 + components: + - pos: 2.5,4.5 + parent: 20 + type: Transform +- proto: WeaponFlareGun + entities: + - uid: 4 + components: + - pos: 2.5098493,-3.4398203 + parent: 20 + type: Transform +- proto: Windoor + entities: + - uid: 51 + components: + - rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 20 + type: Transform +- proto: WindoorSecureCargoLocked + entities: + - uid: 50 + components: + - pos: -1.5,3.5 + parent: 20 + type: Transform +- proto: Window + entities: + - uid: 41 + components: + - pos: -0.5,3.5 + parent: 20 + type: Transform + - uid: 42 + components: + - pos: 2.5,3.5 + parent: 20 + type: Transform + - uid: 43 + components: + - pos: -4.5,3.5 + parent: 20 + type: Transform + - uid: 44 + components: + - pos: 1.5,3.5 + parent: 20 + type: Transform + - uid: 69 + components: + - pos: -2.5,3.5 + parent: 20 + type: Transform + - uid: 79 + components: + - pos: -3.5,3.5 + parent: 20 + type: Transform +- proto: Wrench + entities: + - uid: 112 + components: + - pos: -1.4737417,-4.0834937 + parent: 20 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-large-asteroid-mining-01.yml b/Resources/Maps/Salvage/DeltaV/DV-large-asteroid-mining-01.yml new file mode 100644 index 0000000000..8c1e92c11d --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-large-asteroid-mining-01.yml @@ -0,0 +1,1683 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand +entities: +- proto: "" + entities: + - uid: 298 + components: + - type: MetaData + - pos: -2.4895835,3.934677 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAAB + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAACAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAABAAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: [] + type: DecalGrid + - version: 2 + data: + tiles: + -2,-1: + 0: 65535 + -1,-1: + 0: 65535 + -2,0: + 0: 4927 + -1,0: + 0: 639 + -3,-1: + 0: 65516 + -3,-2: + 0: 32768 + -2,-2: + 0: 65532 + -2,-3: + 0: 32768 + -1,-3: + 0: 4096 + -1,-2: + 0: 65523 + -3,0: + 0: 36079 + 0,-2: + 0: 65160 + 0,-1: + 0: 33791 + 1,-4: + 0: 65534 + 1,-3: + 0: 65535 + 1,-2: + 0: 30719 + 1,-1: + 0: 65527 + 2,-4: + 0: 65535 + 2,-3: + 0: 65535 + 2,-2: + 0: 61439 + 2,-1: + 0: 29468 + 3,-4: + 0: 4403 + 3,-3: + 0: 13072 + 3,-2: + 0: 4979 + 1,-5: + 0: 32768 + 2,-5: + 0: 65526 + 3,-5: + 0: 4096 + 0,0: + 0: 52972 + 1,0: + 0: 63743 + 1: 1792 + 2,0: + 0: 311 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 5000 + moles: + - 6666.982 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: SpreaderGrid +- proto: AtmosFixInstantPlasmaFireMarker + entities: + - uid: 292 + components: + - pos: 4.5,2.5 + parent: 298 + type: Transform + - uid: 293 + components: + - pos: 5.5,2.5 + parent: 298 + type: Transform + - uid: 294 + components: + - pos: 6.5,2.5 + parent: 298 + type: Transform +- proto: Floodlight + entities: + - uid: 225 + components: + - pos: 2.5,-3.5 + parent: 298 + type: Transform +- proto: FloorLavaEntity + entities: + - uid: 290 + components: + - pos: -9.5,-0.5 + parent: 298 + type: Transform + - uid: 291 + components: + - pos: -2.5,-5.5 + parent: 298 + type: Transform +- proto: MaintenanceToolSpawner + entities: + - uid: 226 + components: + - pos: 5.5,1.5 + parent: 298 + type: Transform +- proto: MaintenanceWeaponSpawner + entities: + - uid: 297 + components: + - pos: 12.5,-7.5 + parent: 298 + type: Transform +- proto: MountainRock + entities: + - uid: 1 + components: + - pos: -2.5,0.5 + parent: 298 + type: Transform + - uid: 2 + components: + - pos: 0.5,-4.5 + parent: 298 + type: Transform + - uid: 3 + components: + - pos: 1.5,-1.5 + parent: 298 + type: Transform + - uid: 4 + components: + - pos: 0.5,-1.5 + parent: 298 + type: Transform + - uid: 5 + components: + - pos: -0.5,-1.5 + parent: 298 + type: Transform + - uid: 6 + components: + - pos: -0.5,-0.5 + parent: 298 + type: Transform + - uid: 7 + components: + - pos: -0.5,0.5 + parent: 298 + type: Transform + - uid: 8 + components: + - pos: -1.5,0.5 + parent: 298 + type: Transform + - uid: 9 + components: + - pos: -3.5,0.5 + parent: 298 + type: Transform + - uid: 10 + components: + - pos: -4.5,0.5 + parent: 298 + type: Transform + - uid: 11 + components: + - pos: -5.5,0.5 + parent: 298 + type: Transform + - uid: 12 + components: + - pos: -6.5,0.5 + parent: 298 + type: Transform + - uid: 13 + components: + - pos: -6.5,1.5 + parent: 298 + type: Transform + - uid: 14 + components: + - pos: -6.5,2.5 + parent: 298 + type: Transform + - uid: 15 + components: + - pos: -7.5,2.5 + parent: 298 + type: Transform + - uid: 16 + components: + - pos: -8.5,2.5 + parent: 298 + type: Transform + - uid: 17 + components: + - pos: -9.5,2.5 + parent: 298 + type: Transform + - uid: 18 + components: + - pos: -9.5,1.5 + parent: 298 + type: Transform + - uid: 19 + components: + - pos: -9.5,0.5 + parent: 298 + type: Transform + - uid: 20 + components: + - pos: -10.5,0.5 + parent: 298 + type: Transform + - uid: 21 + components: + - pos: -10.5,-0.5 + parent: 298 + type: Transform + - uid: 22 + components: + - pos: -11.5,-0.5 + parent: 298 + type: Transform + - uid: 23 + components: + - pos: -10.5,-1.5 + parent: 298 + type: Transform + - uid: 24 + components: + - pos: 7.5,-8.5 + parent: 298 + type: Transform + - uid: 25 + components: + - pos: -9.5,-1.5 + parent: 298 + type: Transform + - uid: 26 + components: + - pos: -9.5,-2.5 + parent: 298 + type: Transform + - uid: 27 + components: + - pos: -9.5,-3.5 + parent: 298 + type: Transform + - uid: 28 + components: + - pos: -7.5,-3.5 + parent: 298 + type: Transform + - uid: 29 + components: + - pos: -8.5,-3.5 + parent: 298 + type: Transform + - uid: 30 + components: + - pos: -6.5,-3.5 + parent: 298 + type: Transform + - uid: 31 + components: + - pos: -6.5,-4.5 + parent: 298 + type: Transform + - uid: 32 + components: + - pos: -6.5,-5.5 + parent: 298 + type: Transform + - uid: 33 + components: + - pos: -6.5,-6.5 + parent: 298 + type: Transform + - uid: 34 + components: + - pos: -5.5,-6.5 + parent: 298 + type: Transform + - uid: 35 + components: + - pos: -5.5,-7.5 + parent: 298 + type: Transform + - uid: 36 + components: + - pos: -4.5,-7.5 + parent: 298 + type: Transform + - uid: 37 + components: + - pos: -3.5,-7.5 + parent: 298 + type: Transform + - uid: 38 + components: + - pos: -3.5,-6.5 + parent: 298 + type: Transform + - uid: 39 + components: + - pos: -2.5,-6.5 + parent: 298 + type: Transform + - uid: 40 + components: + - pos: -1.5,-6.5 + parent: 298 + type: Transform + - uid: 41 + components: + - pos: -0.5,-6.5 + parent: 298 + type: Transform + - uid: 42 + components: + - pos: -0.5,-5.5 + parent: 298 + type: Transform + - uid: 43 + components: + - pos: -0.5,-4.5 + parent: 298 + type: Transform + - uid: 44 + components: + - pos: -2.5,-2.5 + parent: 298 + type: Transform + - uid: 45 + components: + - pos: -3.5,-2.5 + parent: 298 + type: Transform + - uid: 46 + components: + - pos: -4.5,-2.5 + parent: 298 + type: Transform + - uid: 47 + components: + - pos: -4.5,-1.5 + parent: 298 + type: Transform + - uid: 48 + components: + - pos: -5.5,-1.5 + parent: 298 + type: Transform + - uid: 49 + components: + - pos: -6.5,-1.5 + parent: 298 + type: Transform + - uid: 50 + components: + - pos: -7.5,-1.5 + parent: 298 + type: Transform + - uid: 51 + components: + - pos: -3.5,-3.5 + parent: 298 + type: Transform + - uid: 52 + components: + - pos: -3.5,-4.5 + parent: 298 + type: Transform + - uid: 53 + components: + - pos: -3.5,-5.5 + parent: 298 + type: Transform + - uid: 54 + components: + - pos: 4.5,-8.5 + parent: 298 + type: Transform + - uid: 55 + components: + - pos: 7.5,-6.5 + parent: 298 + type: Transform + - uid: 56 + components: + - pos: 6.5,-6.5 + parent: 298 + type: Transform + - uid: 57 + components: + - pos: 4.5,-9.5 + parent: 298 + type: Transform + - uid: 58 + components: + - pos: 4.5,-10.5 + parent: 298 + type: Transform + - uid: 59 + components: + - pos: 4.5,-11.5 + parent: 298 + type: Transform + - uid: 60 + components: + - pos: 4.5,-12.5 + parent: 298 + type: Transform + - uid: 61 + components: + - pos: 4.5,-13.5 + parent: 298 + type: Transform + - uid: 62 + components: + - pos: 4.5,-14.5 + parent: 298 + type: Transform + - uid: 63 + components: + - pos: 5.5,-13.5 + parent: 298 + type: Transform + - uid: 64 + components: + - pos: 6.5,-13.5 + parent: 298 + type: Transform + - uid: 65 + components: + - pos: 6.5,-14.5 + parent: 298 + type: Transform + - uid: 66 + components: + - pos: 6.5,-15.5 + parent: 298 + type: Transform + - uid: 67 + components: + - pos: 7.5,-15.5 + parent: 298 + type: Transform + - uid: 68 + components: + - pos: 8.5,-15.5 + parent: 298 + type: Transform + - uid: 69 + components: + - pos: 8.5,-16.5 + parent: 298 + type: Transform + - uid: 70 + components: + - pos: 8.5,-17.5 + parent: 298 + type: Transform + - uid: 71 + components: + - pos: 9.5,-17.5 + parent: 298 + type: Transform + - uid: 72 + components: + - pos: 9.5,-18.5 + parent: 298 + type: Transform + - uid: 73 + components: + - pos: 9.5,-19.5 + parent: 298 + type: Transform + - uid: 74 + components: + - pos: 10.5,-18.5 + parent: 298 + type: Transform + - uid: 75 + components: + - pos: 11.5,-18.5 + parent: 298 + type: Transform + - uid: 76 + components: + - pos: 11.5,-17.5 + parent: 298 + type: Transform + - uid: 77 + components: + - pos: 11.5,-16.5 + parent: 298 + type: Transform + - uid: 78 + components: + - pos: 12.5,-16.5 + parent: 298 + type: Transform + - uid: 79 + components: + - pos: 12.5,-15.5 + parent: 298 + type: Transform + - uid: 80 + components: + - pos: 12.5,-14.5 + parent: 298 + type: Transform + - uid: 81 + components: + - pos: 12.5,-13.5 + parent: 298 + type: Transform + - uid: 82 + components: + - pos: 11.5,-13.5 + parent: 298 + type: Transform + - uid: 83 + components: + - pos: 11.5,-12.5 + parent: 298 + type: Transform + - uid: 84 + components: + - pos: 11.5,-11.5 + parent: 298 + type: Transform + - uid: 85 + components: + - pos: 11.5,-10.5 + parent: 298 + type: Transform + - uid: 86 + components: + - pos: 11.5,-9.5 + parent: 298 + type: Transform + - uid: 87 + components: + - pos: 12.5,-9.5 + parent: 298 + type: Transform + - uid: 88 + components: + - pos: 13.5,-9.5 + parent: 298 + type: Transform + - uid: 89 + components: + - pos: 13.5,-8.5 + parent: 298 + type: Transform + - uid: 90 + components: + - pos: 13.5,-7.5 + parent: 298 + type: Transform + - uid: 91 + components: + - pos: 13.5,-6.5 + parent: 298 + type: Transform + - uid: 92 + components: + - pos: 13.5,-5.5 + parent: 298 + type: Transform + - uid: 93 + components: + - pos: 12.5,-5.5 + parent: 298 + type: Transform + - uid: 94 + components: + - pos: 12.5,-4.5 + parent: 298 + type: Transform + - uid: 95 + components: + - pos: 11.5,-4.5 + parent: 298 + type: Transform + - uid: 96 + components: + - pos: 10.5,-4.5 + parent: 298 + type: Transform + - uid: 97 + components: + - pos: 8.5,-6.5 + parent: 298 + type: Transform + - uid: 98 + components: + - pos: 9.5,-6.5 + parent: 298 + type: Transform + - uid: 99 + components: + - pos: 9.5,-5.5 + parent: 298 + type: Transform + - uid: 100 + components: + - pos: 10.5,-5.5 + parent: 298 + type: Transform + - uid: 101 + components: + - pos: 8.5,-8.5 + parent: 298 + type: Transform + - uid: 102 + components: + - pos: 9.5,-8.5 + parent: 298 + type: Transform + - uid: 103 + components: + - pos: 8.5,-9.5 + parent: 298 + type: Transform + - uid: 104 + components: + - pos: 8.5,-10.5 + parent: 298 + type: Transform + - uid: 105 + components: + - pos: 8.5,-11.5 + parent: 298 + type: Transform + - uid: 106 + components: + - pos: 8.5,-12.5 + parent: 298 + type: Transform + - uid: 107 + components: + - pos: 8.5,-13.5 + parent: 298 + type: Transform + - uid: 108 + components: + - pos: 9.5,-13.5 + parent: 298 + type: Transform + - uid: 109 + components: + - pos: 10.5,-13.5 + parent: 298 + type: Transform + - uid: 111 + components: + - pos: 4.5,-1.5 + parent: 298 + type: Transform + - uid: 112 + components: + - pos: 7.5,-2.5 + parent: 298 + type: Transform + - uid: 113 + components: + - pos: 8.5,-2.5 + parent: 298 + type: Transform + - uid: 114 + components: + - pos: 8.5,-1.5 + parent: 298 + type: Transform + - uid: 115 + components: + - pos: 9.5,-1.5 + parent: 298 + type: Transform + - uid: 116 + components: + - pos: 9.5,-0.5 + parent: 298 + type: Transform + - uid: 117 + components: + - pos: 9.5,0.5 + parent: 298 + type: Transform + - uid: 118 + components: + - pos: 9.5,1.5 + parent: 298 + type: Transform + - uid: 119 + components: + - pos: 8.5,1.5 + parent: 298 + type: Transform + - uid: 120 + components: + - pos: 8.5,2.5 + parent: 298 + type: Transform + - uid: 121 + components: + - pos: 7.5,2.5 + parent: 298 + type: Transform + - uid: 122 + components: + - pos: 7.5,3.5 + parent: 298 + type: Transform + - uid: 123 + components: + - pos: 6.5,3.5 + parent: 298 + type: Transform + - uid: 124 + components: + - pos: 5.5,3.5 + parent: 298 + type: Transform + - uid: 125 + components: + - pos: 4.5,3.5 + parent: 298 + type: Transform + - uid: 126 + components: + - pos: 3.5,3.5 + parent: 298 + type: Transform + - uid: 127 + components: + - pos: 3.5,2.5 + parent: 298 + type: Transform + - uid: 128 + components: + - pos: 2.5,2.5 + parent: 298 + type: Transform + - uid: 129 + components: + - pos: 2.5,1.5 + parent: 298 + type: Transform + - uid: 130 + components: + - pos: 2.5,0.5 + parent: 298 + type: Transform + - uid: 131 + components: + - pos: 3.5,0.5 + parent: 298 + type: Transform + - uid: 132 + components: + - pos: 3.5,-0.5 + parent: 298 + type: Transform + - uid: 133 + components: + - pos: 4.5,-0.5 + parent: 298 + type: Transform +- proto: Musket + entities: + - uid: 296 + components: + - pos: 10.500248,-12.6178875 + parent: 298 + type: Transform +- proto: PlasmaOre1 + entities: + - uid: 240 + components: + - pos: 9.507152,-15.257052 + parent: 298 + type: Transform + - uid: 241 + components: + - pos: 9.736319,-14.569075 + parent: 298 + type: Transform + - uid: 242 + components: + - pos: 10.444652,-14.683738 + parent: 298 + type: Transform + - uid: 243 + components: + - pos: 10.580069,-16.622583 + parent: 298 + type: Transform + - uid: 244 + components: + - pos: 11.600903,-15.538498 + parent: 298 + type: Transform +- proto: RandomAmmoBox + entities: + - uid: 237 + components: + - pos: 5.5,-5.5 + parent: 298 + type: Transform +- proto: RandomBoards + entities: + - uid: 295 + components: + - pos: 10.5,-15.5 + parent: 298 + type: Transform +- proto: RandomBox + entities: + - uid: 238 + components: + - pos: 9.5,-16.5 + parent: 298 + type: Transform + - uid: 239 + components: + - pos: 10.5,-17.5 + parent: 298 + type: Transform +- proto: RandomItem + entities: + - uid: 236 + components: + - pos: 8.5,-0.5 + parent: 298 + type: Transform +- proto: RandomRockSpawner + entities: + - uid: 110 + components: + - pos: 5.5,-6.5 + parent: 298 + type: Transform + - uid: 134 + components: + - pos: 1.5,-2.5 + parent: 298 + type: Transform + - uid: 135 + components: + - pos: 2.5,-2.5 + parent: 298 + type: Transform + - uid: 136 + components: + - pos: 3.5,-2.5 + parent: 298 + type: Transform + - uid: 137 + components: + - pos: 4.5,-2.5 + parent: 298 + type: Transform + - uid: 138 + components: + - pos: 6.5,-2.5 + parent: 298 + type: Transform + - uid: 139 + components: + - pos: 6.5,-3.5 + parent: 298 + type: Transform + - uid: 140 + components: + - pos: 6.5,-4.5 + parent: 298 + type: Transform + - uid: 141 + components: + - pos: 6.5,-5.5 + parent: 298 + type: Transform + - uid: 142 + components: + - pos: 5.5,-7.5 + parent: 298 + type: Transform + - uid: 143 + components: + - pos: 4.5,-6.5 + parent: 298 + type: Transform + - uid: 144 + components: + - pos: 4.5,-7.5 + parent: 298 + type: Transform + - uid: 145 + components: + - pos: 3.5,-6.5 + parent: 298 + type: Transform + - uid: 146 + components: + - pos: 3.5,-7.5 + parent: 298 + type: Transform + - uid: 147 + components: + - pos: 5.5,-8.5 + parent: 298 + type: Transform + - uid: 148 + components: + - pos: 1.5,-5.5 + parent: 298 + type: Transform + - uid: 149 + components: + - pos: 1.5,-4.5 + parent: 298 + type: Transform + - uid: 150 + components: + - pos: 1.5,-3.5 + parent: 298 + type: Transform + - uid: 151 + components: + - pos: 3.5,-3.5 + parent: 298 + type: Transform + - uid: 152 + components: + - pos: 4.5,-3.5 + parent: 298 + type: Transform + - uid: 153 + components: + - pos: 4.5,-4.5 + parent: 298 + type: Transform + - uid: 154 + components: + - pos: 5.5,-3.5 + parent: 298 + type: Transform + - uid: 155 + components: + - pos: 5.5,-4.5 + parent: 298 + type: Transform + - uid: 156 + components: + - pos: 0.5,-2.5 + parent: 298 + type: Transform + - uid: 157 + components: + - pos: 0.5,-3.5 + parent: 298 + type: Transform + - uid: 158 + components: + - pos: -0.5,-2.5 + parent: 298 + type: Transform + - uid: 159 + components: + - pos: -0.5,-3.5 + parent: 298 + type: Transform + - uid: 160 + components: + - pos: -1.5,-2.5 + parent: 298 + type: Transform + - uid: 161 + components: + - pos: -1.5,-3.5 + parent: 298 + type: Transform + - uid: 162 + components: + - pos: 5.5,-2.5 + parent: 298 + type: Transform + - uid: 163 + components: + - pos: 5.5,-1.5 + parent: 298 + type: Transform + - uid: 164 + components: + - pos: 5.5,-0.5 + parent: 298 + type: Transform + - uid: 165 + components: + - pos: 5.5,0.5 + parent: 298 + type: Transform + - uid: 166 + components: + - pos: 6.5,-1.5 + parent: 298 + type: Transform + - uid: 167 + components: + - pos: 6.5,-0.5 + parent: 298 + type: Transform + - uid: 168 + components: + - pos: 6.5,0.5 + parent: 298 + type: Transform + - uid: 169 + components: + - pos: 7.5,-1.5 + parent: 298 + type: Transform + - uid: 170 + components: + - pos: 7.5,-0.5 + parent: 298 + type: Transform + - uid: 171 + components: + - pos: 7.5,0.5 + parent: 298 + type: Transform + - uid: 172 + components: + - pos: -1.5,-0.5 + parent: 298 + type: Transform + - uid: 173 + components: + - pos: -1.5,-1.5 + parent: 298 + type: Transform + - uid: 174 + components: + - pos: -2.5,-0.5 + parent: 298 + type: Transform + - uid: 175 + components: + - pos: -2.5,-1.5 + parent: 298 + type: Transform + - uid: 176 + components: + - pos: -3.5,-0.5 + parent: 298 + type: Transform + - uid: 177 + components: + - pos: -3.5,-1.5 + parent: 298 + type: Transform + - uid: 178 + components: + - pos: -6.5,-0.5 + parent: 298 + type: Transform + - uid: 179 + components: + - pos: 6.5,-7.5 + parent: 298 + type: Transform + - uid: 180 + components: + - pos: 7.5,-7.5 + parent: 298 + type: Transform + - uid: 181 + components: + - pos: 8.5,-7.5 + parent: 298 + type: Transform + - uid: 182 + components: + - pos: 9.5,-7.5 + parent: 298 + type: Transform + - uid: 183 + components: + - pos: 10.5,-7.5 + parent: 298 + type: Transform + - uid: 184 + components: + - pos: 10.5,-6.5 + parent: 298 + type: Transform + - uid: 185 + components: + - pos: 10.5,-8.5 + parent: 298 + type: Transform + - uid: 186 + components: + - pos: 5.5,-9.5 + parent: 298 + type: Transform + - uid: 187 + components: + - pos: 5.5,-10.5 + parent: 298 + type: Transform + - uid: 188 + components: + - pos: 5.5,-11.5 + parent: 298 + type: Transform + - uid: 189 + components: + - pos: 6.5,-8.5 + parent: 298 + type: Transform + - uid: 190 + components: + - pos: 6.5,-9.5 + parent: 298 + type: Transform + - uid: 191 + components: + - pos: 6.5,-10.5 + parent: 298 + type: Transform + - uid: 192 + components: + - pos: 6.5,-11.5 + parent: 298 + type: Transform + - uid: 193 + components: + - pos: 10.5,-19.5 + parent: 298 + type: Transform + - uid: 194 + components: + - pos: 12.5,-10.5 + parent: 298 + type: Transform + - uid: 195 + components: + - pos: 12.5,-12.5 + parent: 298 + type: Transform + - uid: 196 + components: + - pos: 13.5,-14.5 + parent: 298 + type: Transform + - uid: 197 + components: + - pos: 13.5,-15.5 + parent: 298 + type: Transform + - uid: 198 + components: + - pos: 8.5,-18.5 + parent: 298 + type: Transform + - uid: 199 + components: + - pos: 7.5,-16.5 + parent: 298 + type: Transform + - uid: 200 + components: + - pos: 5.5,-14.5 + parent: 298 + type: Transform + - uid: 201 + components: + - pos: -11.5,0.5 + parent: 298 + type: Transform + - uid: 202 + components: + - pos: -7.5,-5.5 + parent: 298 + type: Transform + - uid: 203 + components: + - pos: -7.5,-4.5 + parent: 298 + type: Transform + - uid: 204 + components: + - pos: -8.5,-4.5 + parent: 298 + type: Transform + - uid: 205 + components: + - pos: -10.5,-2.5 + parent: 298 + type: Transform + - uid: 206 + components: + - pos: -10.5,1.5 + parent: 298 + type: Transform + - uid: 207 + components: + - pos: -8.5,3.5 + parent: 298 + type: Transform + - uid: 208 + components: + - pos: -7.5,3.5 + parent: 298 + type: Transform + - uid: 209 + components: + - pos: 1.5,2.5 + parent: 298 + type: Transform + - uid: 210 + components: + - pos: -2.5,1.5 + parent: 298 + type: Transform + - uid: 211 + components: + - pos: -2.5,2.5 + parent: 298 + type: Transform + - uid: 212 + components: + - pos: -3.5,1.5 + parent: 298 + type: Transform + - uid: 213 + components: + - pos: -1.5,1.5 + parent: 298 + type: Transform + - uid: 214 + components: + - pos: 2.5,3.5 + parent: 298 + type: Transform + - uid: 216 + components: + - pos: 10.5,0.5 + parent: 298 + type: Transform + - uid: 217 + components: + - pos: 10.5,-0.5 + parent: 298 + type: Transform + - uid: 218 + components: + - pos: 11.5,-3.5 + parent: 298 + type: Transform + - uid: 219 + components: + - pos: 9.5,-4.5 + parent: 298 + type: Transform + - uid: 220 + components: + - pos: 8.5,-5.5 + parent: 298 + type: Transform + - uid: 221 + components: + - pos: 14.5,-6.5 + parent: 298 + type: Transform + - uid: 245 + components: + - pos: 8.5,-14.5 + parent: 298 + type: Transform + - uid: 246 + components: + - pos: 7.5,-14.5 + parent: 298 + type: Transform + - uid: 247 + components: + - pos: 7.5,-13.5 + parent: 298 + type: Transform + - uid: 248 + components: + - pos: 7.5,-12.5 + parent: 298 + type: Transform + - uid: 249 + components: + - pos: 6.5,-12.5 + parent: 298 + type: Transform + - uid: 250 + components: + - pos: 5.5,-12.5 + parent: 298 + type: Transform + - uid: 251 + components: + - pos: 7.5,-11.5 + parent: 298 + type: Transform + - uid: 252 + components: + - pos: 7.5,-10.5 + parent: 298 + type: Transform + - uid: 253 + components: + - pos: 7.5,-9.5 + parent: 298 + type: Transform + - uid: 254 + components: + - pos: 11.5,-8.5 + parent: 298 + type: Transform + - uid: 255 + components: + - pos: 12.5,-8.5 + parent: 298 + type: Transform + - uid: 256 + components: + - pos: 9.5,-9.5 + parent: 298 + type: Transform + - uid: 257 + components: + - pos: 9.5,-10.5 + parent: 298 + type: Transform + - uid: 258 + components: + - pos: 9.5,-11.5 + parent: 298 + type: Transform + - uid: 259 + components: + - pos: 10.5,-9.5 + parent: 298 + type: Transform + - uid: 260 + components: + - pos: 10.5,-10.5 + parent: 298 + type: Transform + - uid: 261 + components: + - pos: 10.5,-11.5 + parent: 298 + type: Transform + - uid: 262 + components: + - pos: 9.5,-12.5 + parent: 298 + type: Transform + - uid: 263 + components: + - pos: -2.5,-4.5 + parent: 298 + type: Transform + - uid: 264 + components: + - pos: -1.5,-4.5 + parent: 298 + type: Transform + - uid: 265 + components: + - pos: -1.5,-5.5 + parent: 298 + type: Transform + - uid: 266 + components: + - pos: -2.5,-3.5 + parent: 298 + type: Transform + - uid: 267 + components: + - pos: -4.5,-6.5 + parent: 298 + type: Transform + - uid: 268 + components: + - pos: -5.5,-5.5 + parent: 298 + type: Transform + - uid: 269 + components: + - pos: -4.5,-4.5 + parent: 298 + type: Transform + - uid: 270 + components: + - pos: -4.5,-3.5 + parent: 298 + type: Transform + - uid: 271 + components: + - pos: -5.5,-4.5 + parent: 298 + type: Transform + - uid: 272 + components: + - pos: -5.5,-3.5 + parent: 298 + type: Transform + - uid: 273 + components: + - pos: -5.5,-2.5 + parent: 298 + type: Transform + - uid: 274 + components: + - pos: -6.5,-2.5 + parent: 298 + type: Transform + - uid: 275 + components: + - pos: -7.5,-2.5 + parent: 298 + type: Transform + - uid: 276 + components: + - pos: -8.5,-2.5 + parent: 298 + type: Transform + - uid: 277 + components: + - pos: -8.5,-1.5 + parent: 298 + type: Transform + - uid: 278 + components: + - pos: -8.5,-0.5 + parent: 298 + type: Transform + - uid: 279 + components: + - pos: -8.5,0.5 + parent: 298 + type: Transform + - uid: 280 + components: + - pos: -8.5,1.5 + parent: 298 + type: Transform + - uid: 281 + components: + - pos: -7.5,1.5 + parent: 298 + type: Transform + - uid: 282 + components: + - pos: -7.5,0.5 + parent: 298 + type: Transform + - uid: 283 + components: + - pos: -7.5,-0.5 + parent: 298 + type: Transform + - uid: 284 + components: + - pos: 4.5,0.5 + parent: 298 + type: Transform + - uid: 285 + components: + - pos: 4.5,1.5 + parent: 298 + type: Transform + - uid: 286 + components: + - pos: 3.5,1.5 + parent: 298 + type: Transform + - uid: 287 + components: + - pos: 6.5,1.5 + parent: 298 + type: Transform + - uid: 288 + components: + - pos: 7.5,1.5 + parent: 298 + type: Transform + - uid: 289 + components: + - pos: 8.5,0.5 + parent: 298 + type: Transform +- proto: SalvageLorePaperGamingSpawner + entities: + - uid: 215 + components: + - pos: 12.5,-6.5 + parent: 298 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 224 + components: + - pos: 3.5,-4.5 + parent: 298 + type: Transform +- proto: SalvageMobSpawner75 + entities: + - uid: 230 + components: + - pos: 11.5,-6.5 + parent: 298 + type: Transform +- proto: SalvagePartsSpawnerSubSpace + entities: + - uid: 222 + components: + - pos: -4.5,-5.5 + parent: 298 + type: Transform +- proto: SalvageSeedSpawnerLow + entities: + - uid: 223 + components: + - pos: 1.5,1.5 + parent: 298 + type: Transform +- proto: SnakeMobMundane + entities: + - uid: 227 + components: + - pos: -4.5,-0.5 + parent: 298 + type: Transform + - uid: 228 + components: + - pos: -5.5,-0.5 + parent: 298 + type: Transform +- proto: SpaceTickSpawner + entities: + - uid: 231 + components: + - pos: 10.5,-3.5 + parent: 298 + type: Transform + - uid: 232 + components: + - pos: 5.5,-15.5 + parent: 298 + type: Transform + - uid: 233 + components: + - pos: 4.5,-5.5 + parent: 298 + type: Transform + - uid: 234 + components: + - pos: -7.5,-6.5 + parent: 298 + type: Transform + - uid: 235 + components: + - pos: -11.5,-1.5 + parent: 298 + type: Transform +- proto: SpawnMobBearSalvage + entities: + - uid: 229 + components: + - pos: 11.5,-14.5 + parent: 298 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-large-engineer-chunk.yml b/Resources/Maps/Salvage/DeltaV/DV-large-engineer-chunk.yml new file mode 100644 index 0000000000..2c5887e46e --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-large-engineer-chunk.yml @@ -0,0 +1,3532 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 1: FloorArcadeBlue + 3: FloorArcadeRed + 19: FloorCarpetOffice + 43: FloorGlass + 70: FloorPlastic + 71: FloorRGlass + 72: FloorReinforced + 96: FloorTechMaint + 97: FloorTechMaint2 + 98: FloorTechMaint3 + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 15 + components: + - type: MetaData + - pos: 0.5729167,0.57817906 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAARgAAAAAARgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAARwAAAAAARwAAAAAASAAAAAAAcQAAAAAARgAAAAAARgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAASAAAAAAARwAAAAAARwAAAAAASAAAAAAAcQAAAAAAcQAAAAAARgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAARgAAAAAARgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAARgAAAAAARgAAAAAAcQAAAAAARgAAAAAARgAAAAAAcQAAAAAARgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAARgAAAAAAcAAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAcAAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAcQAAAAAASAAAAAAARwAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAASAAAAAAARwAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAEwAAAAAAcQAAAAAASAAAAAAARwAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAARgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcAAAAAAAcQAAAAAARgAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAAAcQAAAAAARgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAcQAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAARgAAAAAARgAAAAAARgAAAAAAcAAAAAAARgAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: cQAAAAAAcQAAAAAAcQAAAAAARgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAcQAAAAAAAwAAAAAAKwAAAAAAAQAAAAAAcQAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAcQAAAAAAAwAAAAAAKwAAAAAAAQAAAAAAcQAAAAAAYgAAAAAAcQAAAAAAYAAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAcQAAAAAAAwAAAAAAKwAAAAAAcAAAAAAAcQAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAwAAAAAAKwAAAAAAAQAAAAAAcQAAAAAAYgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Box + decals: + 28: -8,-8 + 29: -7,-8 + 30: -6,-8 + 31: -5,-8 + 32: -3,-8 + 33: -3,-7 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 0: 8,-2 + 1: 9,-1 + 2: 6,-1 + 3: 5,-2 + 4: 1,-1 + 5: -2,-7 + 6: -3,-3 + 7: -8,-3 + 8: -10,-1 + 9: -4,3 + 10: -2,2 + 11: -6,1 + 12: -7,1 + 13: -7,2 + 14: -6,2 + 35: -2,-10 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 22: -2,-6 + 23: 6,-2 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 26: -1,2 + 27: -1,-2 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 24: -1,-2 + 25: -4,1 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 34: -2,-8 + - node: + color: '#D5188DFF' + id: amyjon + decals: + 16: 2.0277665,-1.0700955 + - node: + color: '#951710FF' + id: cyka + decals: + 19: 1.5069332,-1.9457034 + - node: + color: '#D58C18FF' + id: electricdanger + decals: + 38: 9.586001,1.8925464 + - node: + color: '#D5188DFF' + id: heart + decals: + 17: 2.4131832,-1.4662036 + - node: + color: '#FFFFFFFF' + id: matt + decals: + 15: -4.1904955,1.083147 + - node: + color: '#951710FF' + id: nay + decals: + 18: 2.0902665,-1.2056063 + - node: + color: '#D58C18FF' + id: space + decals: + 21: -9.917748,-2.0581143 + - node: + color: '#5D1710FF' + id: splatter + decals: + 37: 2.4971962,-6.1172643 + - node: + color: '#791710FF' + id: splatter + decals: + 36: 1.2784462,-4.908091 + - node: + color: '#951710FF' + id: stickman + decals: + 20: 0.8610997,-1.8935838 + type: DecalGrid + - version: 2 + data: + tiles: + -2,-3: + 0: 61440 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-3: + 0: 65248 + -1,-2: + 0: 65535 + -1,-1: + 0: 65535 + 0,-1: + 0: 65535 + 1,-1: + 0: 65535 + 2,-1: + 0: 65523 + -1,0: + 0: 65535 + 0,0: + 0: 65535 + 0,1: + 0: 239 + 1,0: + 0: 65535 + 1,1: + 0: 255 + 2,0: + 0: 65535 + -3,-1: + 0: 65262 + -3,-2: + 0: 61134 + -3,-3: + 0: 49152 + 0,-2: + 0: 65529 + 1,-2: + 0: 65526 + 2,-2: + 0: 12592 + -3,0: + 0: 14 + -2,0: + 0: 65535 + -2,1: + 0: 15 + -1,1: + 0: 15 + 2,1: + 0: 1 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: RadiationGridResistance + - type: SpreaderGrid + - type: GasTileOverlay +- proto: AirAlarm + entities: + - uid: 445 + components: + - pos: 0.5,0.5 + parent: 15 + type: Transform + - devices: + - 450 + - 546 + - 547 + type: DeviceList +- proto: Airlock + entities: + - uid: 127 + components: + - pos: 3.5,0.5 + parent: 15 + type: Transform +- proto: AirlockEngineering + entities: + - uid: 24 + components: + - pos: -5.5,-3.5 + parent: 15 + type: Transform + - uid: 105 + components: + - pos: 8.5,2.5 + parent: 15 + type: Transform + - uid: 264 + components: + - pos: 6.5,-2.5 + parent: 15 + type: Transform +- proto: AirlockExternalLocked + entities: + - uid: 336 + components: + - pos: -1.5,-8.5 + parent: 15 + type: Transform +- proto: AirlockGlass + entities: + - uid: 46 + components: + - pos: 1.5,-2.5 + parent: 15 + type: Transform + - uid: 297 + components: + - pos: -9.5,-1.5 + parent: 15 + type: Transform + - uid: 321 + components: + - pos: 8.5,-0.5 + parent: 15 + type: Transform + - uid: 404 + components: + - pos: -3.5,0.5 + parent: 15 + type: Transform + - uid: 405 + components: + - pos: -1.5,0.5 + parent: 15 + type: Transform + - uid: 447 + components: + - pos: 8.5,-1.5 + parent: 15 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 440 + components: + - pos: -1.5,-10.5 + parent: 15 + type: Transform +- proto: AirlockMaint + entities: + - uid: 81 + components: + - pos: 7.5,0.5 + parent: 15 + type: Transform +- proto: APCConstructed + entities: + - uid: 199 + components: + - pos: -6.5,0.5 + parent: 15 + type: Transform + - uid: 463 + components: + - pos: 5.5,0.5 + parent: 15 + type: Transform +- proto: Bed + entities: + - uid: 56 + components: + - pos: 4.5,4.5 + parent: 15 + type: Transform + - uid: 115 + components: + - pos: 4.5,2.5 + parent: 15 + type: Transform + - uid: 116 + components: + - pos: 2.5,3.5 + parent: 15 + type: Transform +- proto: BedsheetRainbow + entities: + - uid: 122 + components: + - pos: 2.5,3.5 + parent: 15 + type: Transform +- proto: BedsheetSpawner + entities: + - uid: 124 + components: + - pos: 4.5,2.5 + parent: 15 + type: Transform + - uid: 125 + components: + - pos: 4.5,4.5 + parent: 15 + type: Transform +- proto: BrokenBottle + entities: + - uid: 5 + components: + - rot: 3.141592653589793 rad + pos: 3.7458594,-5.5091176 + parent: 15 + type: Transform + - uid: 6 + components: + - rot: 1.5707963267948966 rad + pos: 1.1416929,-3.903836 + parent: 15 + type: Transform +- proto: CableApcExtension + entities: + - uid: 204 + components: + - pos: -6.5,0.5 + parent: 15 + type: Transform + - uid: 205 + components: + - pos: -6.5,-0.5 + parent: 15 + type: Transform + - uid: 206 + components: + - pos: -6.5,-1.5 + parent: 15 + type: Transform + - uid: 207 + components: + - pos: -6.5,1.5 + parent: 15 + type: Transform + - uid: 208 + components: + - pos: -5.5,-6.5 + parent: 15 + type: Transform + - uid: 209 + components: + - pos: -5.5,-2.5 + parent: 15 + type: Transform + - uid: 210 + components: + - pos: -5.5,-5.5 + parent: 15 + type: Transform + - uid: 211 + components: + - pos: -5.5,-4.5 + parent: 15 + type: Transform + - uid: 212 + components: + - pos: -5.5,-3.5 + parent: 15 + type: Transform + - uid: 213 + components: + - pos: -7.5,-1.5 + parent: 15 + type: Transform + - uid: 214 + components: + - pos: -5.5,-1.5 + parent: 15 + type: Transform + - uid: 215 + components: + - pos: -5.5,-7.5 + parent: 15 + type: Transform + - uid: 216 + components: + - pos: -6.5,-6.5 + parent: 15 + type: Transform + - uid: 217 + components: + - pos: -4.5,-6.5 + parent: 15 + type: Transform + - uid: 218 + components: + - pos: -4.5,-1.5 + parent: 15 + type: Transform + - uid: 219 + components: + - pos: -3.5,-1.5 + parent: 15 + type: Transform + - uid: 220 + components: + - pos: -2.5,-1.5 + parent: 15 + type: Transform + - uid: 221 + components: + - pos: -2.5,-2.5 + parent: 15 + type: Transform + - uid: 222 + components: + - pos: -2.5,-3.5 + parent: 15 + type: Transform + - uid: 223 + components: + - pos: -2.5,-4.5 + parent: 15 + type: Transform + - uid: 224 + components: + - pos: -2.5,-5.5 + parent: 15 + type: Transform + - uid: 225 + components: + - pos: -2.5,-6.5 + parent: 15 + type: Transform + - uid: 226 + components: + - pos: -2.5,-7.5 + parent: 15 + type: Transform + - uid: 227 + components: + - pos: -2.5,-0.5 + parent: 15 + type: Transform + - uid: 228 + components: + - pos: -2.5,0.5 + parent: 15 + type: Transform + - uid: 229 + components: + - pos: -2.5,1.5 + parent: 15 + type: Transform + - uid: 230 + components: + - pos: -2.5,2.5 + parent: 15 + type: Transform + - uid: 231 + components: + - pos: -1.5,2.5 + parent: 15 + type: Transform + - uid: 232 + components: + - pos: -3.5,2.5 + parent: 15 + type: Transform + - uid: 233 + components: + - pos: 5.5,0.5 + parent: 15 + type: Transform + - uid: 234 + components: + - pos: 5.5,-0.5 + parent: 15 + type: Transform + - uid: 235 + components: + - pos: 4.5,-0.5 + parent: 15 + type: Transform + - uid: 236 + components: + - pos: 3.5,-0.5 + parent: 15 + type: Transform + - uid: 237 + components: + - pos: 3.5,0.5 + parent: 15 + type: Transform + - uid: 238 + components: + - pos: 3.5,1.5 + parent: 15 + type: Transform + - uid: 239 + components: + - pos: 3.5,2.5 + parent: 15 + type: Transform + - uid: 240 + components: + - pos: 3.5,3.5 + parent: 15 + type: Transform + - uid: 241 + components: + - pos: 2.5,-0.5 + parent: 15 + type: Transform + - uid: 242 + components: + - pos: 1.5,-0.5 + parent: 15 + type: Transform + - uid: 243 + components: + - pos: 1.5,-1.5 + parent: 15 + type: Transform + - uid: 244 + components: + - pos: 1.5,-2.5 + parent: 15 + type: Transform + - uid: 245 + components: + - pos: 1.5,-3.5 + parent: 15 + type: Transform + - uid: 246 + components: + - pos: 1.5,-4.5 + parent: 15 + type: Transform + - uid: 247 + components: + - pos: 1.5,-5.5 + parent: 15 + type: Transform + - uid: 248 + components: + - pos: 6.5,-0.5 + parent: 15 + type: Transform + - uid: 249 + components: + - pos: 6.5,-1.5 + parent: 15 + type: Transform + - uid: 250 + components: + - pos: 6.5,-2.5 + parent: 15 + type: Transform + - uid: 251 + components: + - pos: 6.5,-3.5 + parent: 15 + type: Transform + - uid: 252 + components: + - pos: 6.5,-4.5 + parent: 15 + type: Transform + - uid: 253 + components: + - pos: 7.5,-0.5 + parent: 15 + type: Transform + - uid: 254 + components: + - pos: 7.5,0.5 + parent: 15 + type: Transform + - uid: 255 + components: + - pos: 7.5,1.5 + parent: 15 + type: Transform + - uid: 256 + components: + - pos: 7.5,2.5 + parent: 15 + type: Transform + - uid: 257 + components: + - pos: 7.5,3.5 + parent: 15 + type: Transform + - uid: 258 + components: + - pos: 8.5,2.5 + parent: 15 + type: Transform + - uid: 259 + components: + - pos: 9.5,2.5 + parent: 15 + type: Transform + - uid: 260 + components: + - pos: 10.5,2.5 + parent: 15 + type: Transform + - uid: 261 + components: + - pos: 8.5,-0.5 + parent: 15 + type: Transform + - uid: 262 + components: + - pos: 9.5,-0.5 + parent: 15 + type: Transform + - uid: 263 + components: + - pos: 10.5,-0.5 + parent: 15 + type: Transform + - uid: 393 + components: + - pos: -0.5,2.5 + parent: 15 + type: Transform + - uid: 394 + components: + - pos: -4.5,2.5 + parent: 15 + type: Transform + - uid: 448 + components: + - pos: -1.5,-7.5 + parent: 15 + type: Transform + - uid: 449 + components: + - pos: -1.5,-8.5 + parent: 15 + type: Transform +- proto: CableApcStack1 + entities: + - uid: 138 + components: + - pos: 0.6819169,-5.356041 + parent: 15 + type: Transform + - uid: 139 + components: + - pos: 0.7756669,-5.554095 + parent: 15 + type: Transform +- proto: CableHV + entities: + - uid: 168 + components: + - pos: 10.5,1.5 + parent: 15 + type: Transform + - uid: 169 + components: + - pos: 9.5,1.5 + parent: 15 + type: Transform + - uid: 430 + components: + - pos: 9.5,2.5 + parent: 15 + type: Transform + - uid: 431 + components: + - pos: 8.5,2.5 + parent: 15 + type: Transform + - uid: 432 + components: + - pos: 7.5,2.5 + parent: 15 + type: Transform + - uid: 433 + components: + - pos: 7.5,3.5 + parent: 15 + type: Transform + - uid: 434 + components: + - pos: 7.5,4.5 + parent: 15 + type: Transform + - uid: 435 + components: + - pos: 7.5,5.5 + parent: 15 + type: Transform +- proto: CableMV + entities: + - uid: 170 + components: + - pos: 9.5,1.5 + parent: 15 + type: Transform + - uid: 171 + components: + - pos: 9.5,2.5 + parent: 15 + type: Transform + - uid: 172 + components: + - pos: 8.5,2.5 + parent: 15 + type: Transform + - uid: 173 + components: + - pos: 7.5,2.5 + parent: 15 + type: Transform + - uid: 174 + components: + - pos: 7.5,1.5 + parent: 15 + type: Transform + - uid: 175 + components: + - pos: 7.5,3.5 + parent: 15 + type: Transform + - uid: 176 + components: + - pos: 7.5,4.5 + parent: 15 + type: Transform + - uid: 177 + components: + - pos: 7.5,0.5 + parent: 15 + type: Transform + - uid: 178 + components: + - pos: 7.5,-0.5 + parent: 15 + type: Transform + - uid: 179 + components: + - pos: 6.5,-0.5 + parent: 15 + type: Transform + - uid: 180 + components: + - pos: 5.5,-0.5 + parent: 15 + type: Transform + - uid: 181 + components: + - pos: 5.5,0.5 + parent: 15 + type: Transform + - uid: 182 + components: + - pos: 4.5,-0.5 + parent: 15 + type: Transform + - uid: 183 + components: + - pos: 3.5,-0.5 + parent: 15 + type: Transform + - uid: 184 + components: + - pos: 2.5,-0.5 + parent: 15 + type: Transform + - uid: 185 + components: + - pos: 1.5,-0.5 + parent: 15 + type: Transform + - uid: 186 + components: + - pos: 0.5,-0.5 + parent: 15 + type: Transform + - uid: 187 + components: + - pos: -0.5,-0.5 + parent: 15 + type: Transform + - uid: 188 + components: + - pos: -1.5,-0.5 + parent: 15 + type: Transform + - uid: 189 + components: + - pos: -2.5,-0.5 + parent: 15 + type: Transform + - uid: 190 + components: + - pos: -2.5,-1.5 + parent: 15 + type: Transform + - uid: 191 + components: + - pos: -2.5,-2.5 + parent: 15 + type: Transform + - uid: 192 + components: + - pos: -2.5,-3.5 + parent: 15 + type: Transform + - uid: 193 + components: + - pos: -2.5,-4.5 + parent: 15 + type: Transform + - uid: 194 + components: + - pos: -3.5,-0.5 + parent: 15 + type: Transform + - uid: 195 + components: + - pos: -4.5,-0.5 + parent: 15 + type: Transform + - uid: 196 + components: + - pos: -5.5,-0.5 + parent: 15 + type: Transform + - uid: 197 + components: + - pos: -6.5,-0.5 + parent: 15 + type: Transform + - uid: 198 + components: + - pos: -6.5,0.5 + parent: 15 + type: Transform + - uid: 200 + components: + - pos: -2.5,-5.5 + parent: 15 + type: Transform + - uid: 201 + components: + - pos: -2.5,-6.5 + parent: 15 + type: Transform + - uid: 202 + components: + - pos: -2.5,-7.5 + parent: 15 + type: Transform +- proto: CapacitorStockPart + entities: + - uid: 137 + components: + - pos: 0.5985835,-5.314345 + parent: 15 + type: Transform +- proto: Catwalk + entities: + - uid: 427 + components: + - pos: 7.5,1.5 + parent: 15 + type: Transform + - uid: 428 + components: + - pos: 7.5,2.5 + parent: 15 + type: Transform + - uid: 429 + components: + - pos: 7.5,3.5 + parent: 15 + type: Transform +- proto: Chair + entities: + - uid: 337 + components: + - pos: -4.5,3.5 + parent: 15 + type: Transform + - uid: 338 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 15 + type: Transform + - uid: 339 + components: + - rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 15 + type: Transform + - uid: 420 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,2.5 + parent: 15 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 273 + components: + - rot: 3.141592653589793 rad + pos: -6.6440105,-5.0866656 + parent: 15 + type: Transform +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 3 + components: + - pos: 5.5,-3.5 + parent: 15 + type: Transform +- proto: ClosetFireFilled + entities: + - uid: 7 + components: + - pos: 5.5,-4.5 + parent: 15 + type: Transform +- proto: ClosetToolFilled + entities: + - uid: 27 + components: + - pos: -4.5,-4.5 + parent: 15 + type: Transform +- proto: ClothingBackpackSalvage + entities: + - uid: 425 + components: + - pos: 5.769045,-5.3409796 + parent: 15 + type: Transform +- proto: ClothingOuterHardsuitSalvage + entities: + - uid: 426 + components: + - pos: 5.2794614,-5.456842 + parent: 15 + type: Transform +- proto: ClothingShoesBootsSalvage + entities: + - uid: 419 + components: + - pos: 5.769045,-5.737088 + parent: 15 + type: Transform +- proto: ClothingUnderSocksCoder + entities: + - uid: 157 + components: + - pos: 2.330334,1.4493611 + parent: 15 + type: Transform +- proto: ComfyChair + entities: + - uid: 143 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 15 + type: Transform +- proto: ComputerBroken + entities: + - uid: 354 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 15 + type: Transform +- proto: ComputerTelevision + entities: + - uid: 142 + components: + - pos: 3.5,-3.5 + parent: 15 + type: Transform +- proto: CrateFilledSpawner + entities: + - uid: 414 + components: + - pos: -2.5,-7.5 + parent: 15 + type: Transform +- proto: Dresser + entities: + - uid: 120 + components: + - pos: 2.5,1.5 + parent: 15 + type: Transform +- proto: DrinkBottleBeer + entities: + - uid: 159 + components: + - rot: -1.5707963267948966 rad + pos: 2.7041929,-4.239754 + parent: 15 + type: Transform + - uid: 160 + components: + - rot: 1.5707963267948966 rad + pos: 3.1312764,-5.146634 + parent: 15 + type: Transform + - uid: 161 + components: + - rot: 1.5707963267948966 rad + pos: 2.6312761,-4.625438 + parent: 15 + type: Transform + - uid: 162 + components: + - pos: 2.1521096,-2.9969566 + parent: 15 + type: Transform + - uid: 163 + components: + - pos: 2.4854429,-3.0073802 + parent: 15 + type: Transform +- proto: EmergencyLight + entities: + - uid: 375 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 15 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 461 + components: + - pos: 4.5,-0.5 + parent: 15 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight +- proto: FirelockGlass + entities: + - uid: 450 + components: + - pos: -9.5,-1.5 + parent: 15 + type: Transform +- proto: Floodlight + entities: + - uid: 359 + components: + - pos: -7.782971,-5.4397435 + parent: 15 + type: Transform +- proto: FoodBoxDonkpocketDink + entities: + - uid: 128 + components: + - pos: 0.32179433,-4.260957 + parent: 15 + type: Transform +- proto: FoodBoxPizzaFilled + entities: + - uid: 335 + components: + - pos: 0.50102407,2.745302 + parent: 15 + type: Transform +- proto: FoodDonkpocketDank + entities: + - uid: 133 + components: + - pos: 0.6863777,-4.427739 + parent: 15 + type: Transform + - uid: 134 + components: + - pos: 0.5256669,-4.4903 + parent: 15 + type: Transform +- proto: GasPipeBend + entities: + - uid: 538 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 539 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 495 + components: + - pos: 2.5,-1.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 506 + components: + - pos: 3.5,-0.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 464 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 465 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 466 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 467 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 468 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 469 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 471 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 472 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 475 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 476 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 477 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 478 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 479 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 480 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 481 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 482 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 483 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 484 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 485 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 486 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 488 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 489 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 490 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 492 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 493 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 494 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 496 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 497 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 498 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 499 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 500 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 501 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 502 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 503 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 504 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 505 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 507 + components: + - pos: 3.5,-1.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 508 + components: + - pos: 3.5,-2.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 509 + components: + - pos: 3.5,-3.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 510 + components: + - pos: 3.5,-4.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 511 + components: + - pos: 2.5,-2.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 512 + components: + - pos: 2.5,-3.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 513 + components: + - pos: 2.5,-4.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 514 + components: + - pos: 2.5,-0.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 515 + components: + - pos: 2.5,0.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 516 + components: + - pos: 2.5,1.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 517 + components: + - pos: 3.5,0.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 518 + components: + - pos: 3.5,1.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 519 + components: + - pos: 3.5,2.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 526 + components: + - pos: 6.5,-1.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 527 + components: + - pos: 6.5,-2.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 528 + components: + - pos: 6.5,-3.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 529 + components: + - pos: -7.5,-3.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 530 + components: + - pos: -7.5,-4.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 531 + components: + - pos: -5.5,-1.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 532 + components: + - pos: -5.5,-2.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 533 + components: + - pos: -5.5,-3.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 536 + components: + - pos: -3.5,-0.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 537 + components: + - pos: -3.5,0.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 542 + components: + - pos: -1.5,0.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 543 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 545 + components: + - pos: -2.5,-1.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 470 + components: + - pos: -5.5,-0.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 473 + components: + - pos: -2.5,-0.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 474 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 487 + components: + - pos: -7.5,-2.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 491 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 525 + components: + - pos: 6.5,-0.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 544 + components: + - pos: -1.5,-1.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 520 + components: + - pos: 3.5,3.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 523 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 524 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 535 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-4.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 541 + components: + - pos: -1.5,1.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 547 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 15 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 521 + components: + - pos: 2.5,2.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 522 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 534 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-5.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 540 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 546 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 15 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor +- proto: GeneratorRTG + entities: + - uid: 167 + components: + - pos: 10.5,1.5 + parent: 15 + type: Transform +- proto: Girder + entities: + - uid: 49 + components: + - pos: 1.5,5.5 + parent: 15 + type: Transform + - uid: 94 + components: + - pos: 7.5,-2.5 + parent: 15 + type: Transform + - uid: 302 + components: + - pos: -10.5,-3.5 + parent: 15 + type: Transform +- proto: Grille + entities: + - uid: 19 + components: + - pos: -9.5,-2.5 + parent: 15 + type: Transform + - uid: 40 + components: + - pos: -9.5,-0.5 + parent: 15 + type: Transform + - uid: 60 + components: + - pos: 0.5,-6.5 + parent: 15 + type: Transform + - uid: 61 + components: + - pos: 1.5,-6.5 + parent: 15 + type: Transform + - uid: 62 + components: + - pos: 3.5,-6.5 + parent: 15 + type: Transform + - uid: 65 + components: + - pos: 9.5,-2.5 + parent: 15 + type: Transform + - uid: 69 + components: + - pos: 2.5,-6.5 + parent: 15 + type: Transform + - uid: 79 + components: + - pos: 10.5,-2.5 + parent: 15 + type: Transform + - uid: 356 + components: + - pos: -7.5,1.5 + parent: 15 + type: Transform + - uid: 357 + components: + - pos: -7.5,2.5 + parent: 15 + type: Transform + - uid: 362 + components: + - pos: -7.5,3.5 + parent: 15 + type: Transform + - uid: 364 + components: + - pos: -6.5,4.5 + parent: 15 + type: Transform + - uid: 365 + components: + - pos: -5.5,4.5 + parent: 15 + type: Transform + - uid: 366 + components: + - pos: -4.5,4.5 + parent: 15 + type: Transform + - uid: 367 + components: + - pos: -3.5,4.5 + parent: 15 + type: Transform + - uid: 368 + components: + - pos: -2.5,4.5 + parent: 15 + type: Transform + - uid: 369 + components: + - pos: -1.5,4.5 + parent: 15 + type: Transform + - uid: 370 + components: + - pos: -0.5,4.5 + parent: 15 + type: Transform + - uid: 371 + components: + - pos: 0.5,4.5 + parent: 15 + type: Transform + - uid: 406 + components: + - pos: -2.5,0.5 + parent: 15 + type: Transform + - uid: 436 + components: + - pos: -2.5,-9.5 + parent: 15 + type: Transform +- proto: GrilleBroken + entities: + - uid: 78 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 15 + type: Transform + - uid: 363 + components: + - pos: -7.5,4.5 + parent: 15 + type: Transform + - uid: 438 + components: + - pos: -0.5,-9.5 + parent: 15 + type: Transform + - uid: 455 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-9.5 + parent: 15 + type: Transform +- proto: HospitalCurtains + entities: + - uid: 31 + components: + - pos: 0.5,-6.5 + parent: 15 + type: Transform + - uid: 110 + components: + - pos: 3.5,-6.5 + parent: 15 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 111 + components: + - pos: 1.5,-6.5 + parent: 15 + type: Transform + - uid: 112 + components: + - pos: 2.5,-6.5 + parent: 15 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 392 + components: + - pos: 0.5,3.5 + parent: 15 + type: Transform +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 148 + components: + - pos: 7.5,-5.5 + parent: 15 + type: Transform +- proto: LockerEngineerFilled + entities: + - uid: 147 + components: + - pos: 7.5,-3.5 + parent: 15 + type: Transform +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 26 + components: + - pos: -4.5,-5.5 + parent: 15 + type: Transform +- proto: MachineFrameDestroyed + entities: + - uid: 166 + components: + - pos: 9.5,1.5 + parent: 15 + type: Transform + - uid: 351 + components: + - pos: -7.5,-7.5 + parent: 15 + type: Transform +- proto: MaintenanceFluffSpawner + entities: + - uid: 283 + components: + - pos: 2.5,2.5 + parent: 15 + type: Transform + - uid: 285 + components: + - pos: 2.5,1.5 + parent: 15 + type: Transform +- proto: MaintenanceWeaponSpawner + entities: + - uid: 277 + components: + - pos: 6.5,4.5 + parent: 15 + type: Transform + - uid: 279 + components: + - pos: 6.5,2.5 + parent: 15 + type: Transform + - uid: 280 + components: + - pos: 9.5,-0.5 + parent: 15 + type: Transform + - uid: 281 + components: + - pos: 6.5,-5.5 + parent: 15 + type: Transform + - uid: 282 + components: + - pos: 1.5,-4.5 + parent: 15 + type: Transform + - uid: 418 + components: + - pos: -1.5,-2.5 + parent: 15 + type: Transform +- proto: MicrowaveMachineCircuitboard + entities: + - uid: 135 + components: + - pos: 0.41108358,-5.543671 + parent: 15 + type: Transform +- proto: PlushieSharkBlue + entities: + - uid: 156 + components: + - pos: 2.526429,2.6778638 + parent: 15 + type: Transform +- proto: PosterContrabandEAT + entities: + - uid: 422 + components: + - pos: -0.5,0.5 + parent: 15 + type: Transform +- proto: PosterContrabandTools + entities: + - uid: 274 + components: + - pos: -4.5,-3.5 + parent: 15 + type: Transform +- proto: PosterLegitBuild + entities: + - uid: 421 + components: + - pos: -0.5,-2.5 + parent: 15 + type: Transform +- proto: PosterLegitEnlist + entities: + - uid: 423 + components: + - pos: 8.5,0.5 + parent: 15 + type: Transform +- proto: PosterLegitHighClassMartini + entities: + - uid: 444 + components: + - pos: -7.5,0.5 + parent: 15 + type: Transform +- proto: PosterLegitNoERP + entities: + - uid: 107 + components: + - pos: 1.5,3.5 + parent: 15 + type: Transform +- proto: PottedPlantRandomPlastic + entities: + - uid: 126 + components: + - pos: 3.5,4.5 + parent: 15 + type: Transform + - uid: 332 + components: + - pos: -8.5,-2.5 + parent: 15 + type: Transform + - uid: 388 + components: + - pos: -3.5,3.5 + parent: 15 + type: Transform + - uid: 442 + components: + - pos: -2.5,-3.5 + parent: 15 + type: Transform +- proto: Poweredlight + entities: + - uid: 340 + components: + - rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 15 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 341 + components: + - rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 15 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 342 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 15 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 343 + components: + - pos: 2.5,4.5 + parent: 15 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 344 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 15 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 345 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 15 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 346 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 15 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 347 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 15 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 348 + components: + - pos: -7.5,-4.5 + parent: 15 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 350 + components: + - pos: -6.5,-4.5 + parent: 15 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 395 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 15 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 396 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 15 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 397 + components: + - pos: 0.5,-0.5 + parent: 15 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 398 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 15 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 399 + components: + - pos: 9.5,-0.5 + parent: 15 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredLightBlueInterior + entities: + - uid: 349 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-7.5 + parent: 15 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLight + entities: + - uid: 400 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 15 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 401 + components: + - pos: 10.5,2.5 + parent: 15 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: Rack + entities: + - uid: 9 + components: + - pos: 5.5,-5.5 + parent: 15 + type: Transform + - uid: 149 + components: + - pos: 7.5,-4.5 + parent: 15 + type: Transform +- proto: RandomEngineerCorpseSpawner + entities: + - uid: 459 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 15 + type: Transform + - uid: 460 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 15 + type: Transform + - uid: 551 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 15 + type: Transform +- proto: RandomFoodSingle + entities: + - uid: 305 + components: + - pos: -5.5,2.5 + parent: 15 + type: Transform + - uid: 416 + components: + - pos: -4.5,2.5 + parent: 15 + type: Transform +- proto: RandomPainting + entities: + - uid: 117 + components: + - pos: 1.5,2.5 + parent: 15 + type: Transform +- proto: RandomPosterAny + entities: + - uid: 109 + components: + - pos: 5.5,2.5 + parent: 15 + type: Transform +- proto: RandomPosterContraband + entities: + - uid: 278 + components: + - pos: -7.5,-8.5 + parent: 15 + type: Transform +- proto: RandomPosterLegit + entities: + - uid: 108 + components: + - pos: 5.5,-2.5 + parent: 15 + type: Transform + - uid: 132 + components: + - pos: 4.5,-5.5 + parent: 15 + type: Transform +- proto: RandomSnacks + entities: + - uid: 308 + components: + - pos: 2.5,-3.5 + parent: 15 + type: Transform +- proto: RandomSpawner + entities: + - uid: 1 + components: + - pos: 2.5,-5.5 + parent: 15 + type: Transform + - uid: 2 + components: + - pos: 2.5,-4.5 + parent: 15 + type: Transform + - uid: 4 + components: + - pos: 1.5,-5.5 + parent: 15 + type: Transform + - uid: 8 + components: + - pos: 1.5,-3.5 + parent: 15 + type: Transform + - uid: 164 + components: + - pos: 3.5,-5.5 + parent: 15 + type: Transform + - uid: 286 + components: + - pos: -0.5,-0.5 + parent: 15 + type: Transform + - uid: 287 + components: + - pos: 1.5,-0.5 + parent: 15 + type: Transform + - uid: 288 + components: + - pos: 0.5,-0.5 + parent: 15 + type: Transform + - uid: 289 + components: + - pos: 4.5,-1.5 + parent: 15 + type: Transform + - uid: 290 + components: + - pos: 4.5,-0.5 + parent: 15 + type: Transform + - uid: 291 + components: + - pos: 6.5,-0.5 + parent: 15 + type: Transform + - uid: 292 + components: + - pos: 7.5,-1.5 + parent: 15 + type: Transform + - uid: 293 + components: + - pos: 9.5,-1.5 + parent: 15 + type: Transform + - uid: 294 + components: + - pos: -1.5,-6.5 + parent: 15 + type: Transform + - uid: 295 + components: + - pos: -2.5,-5.5 + parent: 15 + type: Transform + - uid: 296 + components: + - pos: -1.5,-4.5 + parent: 15 + type: Transform + - uid: 298 + components: + - pos: -6.5,-1.5 + parent: 15 + type: Transform + - uid: 299 + components: + - pos: -5.5,-2.5 + parent: 15 + type: Transform + - uid: 300 + components: + - pos: -6.5,-2.5 + parent: 15 + type: Transform + - uid: 303 + components: + - pos: -10.5,-5.5 + parent: 15 + type: Transform + - uid: 304 + components: + - pos: -1.5,3.5 + parent: 15 + type: Transform + - uid: 306 + components: + - pos: -1.5,1.5 + parent: 15 + type: Transform + - uid: 307 + components: + - pos: 7.5,4.5 + parent: 15 + type: Transform + - uid: 417 + components: + - pos: -3.5,-1.5 + parent: 15 + type: Transform +- proto: ReinforcedGirder + entities: + - uid: 451 + components: + - pos: -10.5,0.5 + parent: 15 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 33 + components: + - pos: 3.5,-6.5 + parent: 15 + type: Transform + - uid: 77 + components: + - pos: 0.5,-6.5 + parent: 15 + type: Transform + - uid: 91 + components: + - pos: 2.5,-6.5 + parent: 15 + type: Transform + - uid: 372 + components: + - pos: -7.5,1.5 + parent: 15 + type: Transform + - uid: 373 + components: + - pos: -7.5,2.5 + parent: 15 + type: Transform + - uid: 377 + components: + - pos: -5.5,4.5 + parent: 15 + type: Transform + - uid: 378 + components: + - pos: -4.5,4.5 + parent: 15 + type: Transform + - uid: 379 + components: + - pos: -3.5,4.5 + parent: 15 + type: Transform + - uid: 380 + components: + - pos: -2.5,4.5 + parent: 15 + type: Transform + - uid: 381 + components: + - pos: -1.5,4.5 + parent: 15 + type: Transform + - uid: 382 + components: + - pos: -0.5,4.5 + parent: 15 + type: Transform + - uid: 383 + components: + - pos: 0.5,4.5 + parent: 15 + type: Transform + - uid: 456 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-9.5 + parent: 15 + type: Transform +- proto: SalvageCanisterSpawner + entities: + - uid: 284 + components: + - pos: 6.5,1.5 + parent: 15 + type: Transform + - uid: 415 + components: + - pos: -2.5,-6.5 + parent: 15 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 355 + components: + - pos: -7.5,-6.5 + parent: 15 + type: Transform + - uid: 454 + components: + - pos: -2.5,-4.5 + parent: 15 + type: Transform +- proto: SalvageMobSpawner + entities: + - uid: 42 + components: + - pos: -7.5,-0.5 + parent: 15 + type: Transform + - uid: 301 + components: + - pos: -7.5,-2.5 + parent: 15 + type: Transform + - uid: 319 + components: + - pos: 9.5,2.5 + parent: 15 + type: Transform + - uid: 320 + components: + - pos: 6.5,3.5 + parent: 15 + type: Transform + - uid: 322 + components: + - pos: 3.5,-1.5 + parent: 15 + type: Transform + - uid: 323 + components: + - pos: 2.5,3.5 + parent: 15 + type: Transform + - uid: 324 + components: + - pos: 4.5,4.5 + parent: 15 + type: Transform + - uid: 325 + components: + - pos: 4.5,2.5 + parent: 15 + type: Transform + - uid: 326 + components: + - pos: 3.5,2.5 + parent: 15 + type: Transform + - uid: 327 + components: + - pos: 3.5,3.5 + parent: 15 + type: Transform + - uid: 328 + components: + - pos: -6.5,-6.5 + parent: 15 + type: Transform + - uid: 329 + components: + - pos: -5.5,-5.5 + parent: 15 + type: Transform + - uid: 330 + components: + - pos: -6.5,-5.5 + parent: 15 + type: Transform + - uid: 331 + components: + - pos: -5.5,-6.5 + parent: 15 + type: Transform + - uid: 333 + components: + - pos: -8.5,-0.5 + parent: 15 + type: Transform + - uid: 411 + components: + - pos: -5.5,3.5 + parent: 15 + type: Transform + - uid: 412 + components: + - pos: -0.5,3.5 + parent: 15 + type: Transform + - uid: 446 + components: + - pos: 6.5,-1.5 + parent: 15 + type: Transform +- proto: SalvageMobSpawner75 + entities: + - uid: 309 + components: + - pos: -3.5,-0.5 + parent: 15 + type: Transform + - uid: 310 + components: + - pos: -2.5,-2.5 + parent: 15 + type: Transform + - uid: 311 + components: + - pos: -1.5,-1.5 + parent: 15 + type: Transform + - uid: 312 + components: + - pos: 3.5,-4.5 + parent: 15 + type: Transform + - uid: 313 + components: + - pos: 1.5,-4.5 + parent: 15 + type: Transform + - uid: 314 + components: + - pos: 2.5,-3.5 + parent: 15 + type: Transform + - uid: 315 + components: + - pos: 2.5,-5.5 + parent: 15 + type: Transform + - uid: 316 + components: + - pos: 6.5,-4.5 + parent: 15 + type: Transform + - uid: 317 + components: + - pos: 6.5,-5.5 + parent: 15 + type: Transform + - uid: 408 + components: + - pos: -5.5,1.5 + parent: 15 + type: Transform + - uid: 409 + components: + - pos: -1.5,2.5 + parent: 15 + type: Transform + - uid: 410 + components: + - pos: -0.5,1.5 + parent: 15 + type: Transform +- proto: SalvagePartsSpawnerLow + entities: + - uid: 136 + components: + - pos: -1.5,-3.5 + parent: 15 + type: Transform + - uid: 158 + components: + - pos: -7.5,-4.5 + parent: 15 + type: Transform + - uid: 276 + components: + - pos: 2.5,2.5 + parent: 15 + type: Transform + - uid: 548 + components: + - pos: 3.5,1.5 + parent: 15 + type: Transform + - uid: 549 + components: + - pos: -5.5,2.5 + parent: 15 + type: Transform + - uid: 550 + components: + - pos: -6.5,-0.5 + parent: 15 + type: Transform +- proto: SalvagePartsSpawnerMid + entities: + - uid: 275 + components: + - pos: -6.5,-4.5 + parent: 15 + type: Transform +- proto: Screwdriver + entities: + - uid: 140 + components: + - rot: 3.141592653589793 rad + pos: 0.5155216,-4.876541 + parent: 15 + type: Transform + - uid: 165 + components: + - pos: -6.8052506,-0.59574574 + parent: 15 + type: Transform +- proto: ShardGlass + entities: + - uid: 41 + components: + - rot: 3.141592653589793 rad + pos: 10.000712,-1.683475 + parent: 15 + type: Transform + - uid: 44 + components: + - pos: 9.813212,-3.3512988 + parent: 15 + type: Transform + - uid: 45 + components: + - rot: 3.141592653589793 rad + pos: 11.188212,-2.7258651 + parent: 15 + type: Transform + - uid: 152 + components: + - pos: 6.827523,-4.8224154 + parent: 15 + type: Transform + - uid: 153 + components: + - pos: 6.9108562,-4.613937 + parent: 15 + type: Transform + - uid: 154 + components: + - rot: -1.5707963267948966 rad + pos: 6.6504397,-4.645209 + parent: 15 + type: Transform + - uid: 155 + components: + - rot: -1.5707963267948966 rad + pos: 6.9108562,-4.186557 + parent: 15 + type: Transform + - uid: 452 + components: + - pos: 10.156962,-2.5069633 + parent: 15 + type: Transform + - uid: 453 + components: + - rot: -1.5707963267948966 rad + pos: 9.375712,-2.4131484 + parent: 15 + type: Transform +- proto: ShardGlassReinforced + entities: + - uid: 74 + components: + - pos: 1.2168233,-6.6100273 + parent: 15 + type: Transform + - uid: 113 + components: + - rot: -1.5707963267948966 rad + pos: 1.5293233,-6.2139187 + parent: 15 + type: Transform + - uid: 114 + components: + - rot: 3.141592653589793 rad + pos: 0.29319984,-7.2783713 + parent: 15 + type: Transform + - uid: 374 + components: + - pos: -7.6760592,3.4645517 + parent: 15 + type: Transform + - uid: 376 + components: + - pos: -7.186476,2.9850519 + parent: 15 + type: Transform + - uid: 384 + components: + - pos: -6.0510592,4.2776165 + parent: 15 + type: Transform + - uid: 385 + components: + - rot: -1.5707963267948966 rad + pos: -6.9468927,4.57991 + parent: 15 + type: Transform + - uid: 386 + components: + - rot: -1.5707963267948966 rad + pos: -6.623976,4.0378666 + parent: 15 + type: Transform + - uid: 387 + components: + - rot: 3.141592653589793 rad + pos: -7.8323092,4.5173664 + parent: 15 + type: Transform + - uid: 457 + components: + - rot: 3.141592653589793 rad + pos: -1.8663592,-9.446415 + parent: 15 + type: Transform + - uid: 458 + components: + - rot: 3.141592653589793 rad + pos: -0.720526,-9.821675 + parent: 15 + type: Transform +- proto: SheetPlastic + entities: + - uid: 151 + components: + - pos: 7.3379397,-4.5618176 + parent: 15 + type: Transform +- proto: SheetSteel + entities: + - uid: 150 + components: + - pos: 7.5983567,-4.468003 + parent: 15 + type: Transform +- proto: SolarPanelBroken + entities: + - uid: 352 + components: + - pos: -5.5,-7.5 + parent: 15 + type: Transform + - uid: 353 + components: + - pos: -6.5,-7.5 + parent: 15 + type: Transform +- proto: SpaceTickSpawner + entities: + - uid: 334 + components: + - pos: -2.5,-1.5 + parent: 15 + type: Transform +- proto: SpawnMobBearSalvage + entities: + - uid: 318 + components: + - pos: 10.5,2.5 + parent: 15 + type: Transform + - uid: 413 + components: + - pos: -2.5,2.5 + parent: 15 + type: Transform +- proto: Table + entities: + - uid: 360 + components: + - pos: -4.5,2.5 + parent: 15 + type: Transform + - uid: 361 + components: + - pos: -5.5,2.5 + parent: 15 + type: Transform +- proto: TableCounterMetal + entities: + - uid: 389 + components: + - pos: 0.5,2.5 + parent: 15 + type: Transform + - uid: 390 + components: + - pos: 0.5,3.5 + parent: 15 + type: Transform +- proto: TableCounterWood + entities: + - uid: 129 + components: + - pos: 0.5,-5.5 + parent: 15 + type: Transform + - uid: 130 + components: + - pos: 0.5,-4.5 + parent: 15 + type: Transform +- proto: TableReinforced + entities: + - uid: 271 + components: + - pos: -7.5,-4.5 + parent: 15 + type: Transform + - uid: 272 + components: + - pos: -6.5,-4.5 + parent: 15 + type: Transform +- proto: ToolboxEmergencyFilled + entities: + - uid: 402 + components: + - pos: -6.482578,1.4784968 + parent: 15 + type: Transform +- proto: VendingMachineCigs + entities: + - uid: 443 + components: + - flags: SessionSpecific + type: MetaData + - pos: -4.5,-0.5 + parent: 15 + type: Transform +- proto: VendingMachineCoffee + entities: + - uid: 131 + components: + - flags: SessionSpecific + type: MetaData + - pos: 0.5,-3.5 + parent: 15 + type: Transform +- proto: VendingMachineDiscount + entities: + - uid: 424 + components: + - flags: SessionSpecific + type: MetaData + - pos: -5.5,-0.5 + parent: 15 + type: Transform +- proto: VendingMachineWallMedical + entities: + - uid: 462 + components: + - flags: SessionSpecific + type: MetaData + - pos: 1.5,0.5 + parent: 15 + type: Transform +- proto: WallReinforced + entities: + - uid: 16 + components: + - pos: -6.5,-8.5 + parent: 15 + type: Transform + - uid: 17 + components: + - pos: -7.5,-8.5 + parent: 15 + type: Transform + - uid: 20 + components: + - pos: -0.5,-7.5 + parent: 15 + type: Transform + - uid: 22 + components: + - pos: -0.5,-8.5 + parent: 15 + type: Transform + - uid: 28 + components: + - pos: -4.5,-8.5 + parent: 15 + type: Transform + - uid: 29 + components: + - pos: -5.5,-8.5 + parent: 15 + type: Transform + - uid: 32 + components: + - pos: -9.5,0.5 + parent: 15 + type: Transform + - uid: 38 + components: + - pos: -3.5,-8.5 + parent: 15 + type: Transform + - uid: 47 + components: + - pos: 7.5,-6.5 + parent: 15 + type: Transform + - uid: 55 + components: + - pos: 10.5,0.5 + parent: 15 + type: Transform + - uid: 57 + components: + - pos: 6.5,-6.5 + parent: 15 + type: Transform + - uid: 58 + components: + - pos: 5.5,-6.5 + parent: 15 + type: Transform + - uid: 59 + components: + - pos: 4.5,-6.5 + parent: 15 + type: Transform + - uid: 63 + components: + - pos: 11.5,0.5 + parent: 15 + type: Transform + - uid: 82 + components: + - pos: 8.5,0.5 + parent: 15 + type: Transform + - uid: 83 + components: + - pos: 9.5,0.5 + parent: 15 + type: Transform + - uid: 99 + components: + - pos: 11.5,1.5 + parent: 15 + type: Transform + - uid: 100 + components: + - pos: 11.5,2.5 + parent: 15 + type: Transform + - uid: 101 + components: + - pos: 11.5,3.5 + parent: 15 + type: Transform + - uid: 102 + components: + - pos: 10.5,3.5 + parent: 15 + type: Transform + - uid: 103 + components: + - pos: 9.5,3.5 + parent: 15 + type: Transform + - uid: 104 + components: + - pos: 8.5,3.5 + parent: 15 + type: Transform + - uid: 106 + components: + - pos: 8.5,1.5 + parent: 15 + type: Transform + - uid: 141 + components: + - pos: 8.5,-6.5 + parent: 15 + type: Transform + - uid: 203 + components: + - pos: -2.5,-8.5 + parent: 15 + type: Transform + - uid: 270 + components: + - pos: -8.5,-8.5 + parent: 15 + type: Transform + - uid: 437 + components: + - pos: -0.5,-10.5 + parent: 15 + type: Transform + - uid: 439 + components: + - pos: -2.5,-10.5 + parent: 15 + type: Transform + - uid: 441 + components: + - pos: -8.5,0.5 + parent: 15 + type: Transform +- proto: WallSolid + entities: + - uid: 10 + components: + - pos: -3.5,-5.5 + parent: 15 + type: Transform + - uid: 11 + components: + - pos: -4.5,-3.5 + parent: 15 + type: Transform + - uid: 12 + components: + - pos: -3.5,-4.5 + parent: 15 + type: Transform + - uid: 13 + components: + - pos: -6.5,-3.5 + parent: 15 + type: Transform + - uid: 14 + components: + - pos: -3.5,-3.5 + parent: 15 + type: Transform + - uid: 21 + components: + - pos: 4.5,-3.5 + parent: 15 + type: Transform + - uid: 23 + components: + - pos: -9.5,-3.5 + parent: 15 + type: Transform + - uid: 25 + components: + - pos: 5.5,5.5 + parent: 15 + type: Transform + - uid: 30 + components: + - pos: -7.5,-3.5 + parent: 15 + type: Transform + - uid: 34 + components: + - pos: -7.5,0.5 + parent: 15 + type: Transform + - uid: 35 + components: + - pos: -6.5,0.5 + parent: 15 + type: Transform + - uid: 36 + components: + - pos: -3.5,-6.5 + parent: 15 + type: Transform + - uid: 37 + components: + - pos: -3.5,-7.5 + parent: 15 + type: Transform + - uid: 39 + components: + - pos: -5.5,0.5 + parent: 15 + type: Transform + - uid: 48 + components: + - pos: 1.5,4.5 + parent: 15 + type: Transform + - uid: 50 + components: + - pos: 2.5,5.5 + parent: 15 + type: Transform + - uid: 51 + components: + - pos: 3.5,5.5 + parent: 15 + type: Transform + - uid: 52 + components: + - pos: 4.5,-4.5 + parent: 15 + type: Transform + - uid: 53 + components: + - pos: 3.5,-2.5 + parent: 15 + type: Transform + - uid: 54 + components: + - pos: 8.5,-2.5 + parent: 15 + type: Transform + - uid: 64 + components: + - pos: 0.5,-2.5 + parent: 15 + type: Transform + - uid: 66 + components: + - pos: 5.5,0.5 + parent: 15 + type: Transform + - uid: 67 + components: + - pos: 1.5,2.5 + parent: 15 + type: Transform + - uid: 68 + components: + - pos: 5.5,-2.5 + parent: 15 + type: Transform + - uid: 70 + components: + - pos: 4.5,5.5 + parent: 15 + type: Transform + - uid: 71 + components: + - pos: 1.5,3.5 + parent: 15 + type: Transform + - uid: 72 + components: + - pos: 4.5,-5.5 + parent: 15 + type: Transform + - uid: 73 + components: + - pos: -0.5,-5.5 + parent: 15 + type: Transform + - uid: 75 + components: + - pos: -0.5,-2.5 + parent: 15 + type: Transform + - uid: 76 + components: + - pos: 4.5,-2.5 + parent: 15 + type: Transform + - uid: 80 + components: + - pos: 6.5,0.5 + parent: 15 + type: Transform + - uid: 84 + components: + - pos: 1.5,1.5 + parent: 15 + type: Transform + - uid: 85 + components: + - pos: 0.5,0.5 + parent: 15 + type: Transform + - uid: 86 + components: + - pos: 1.5,0.5 + parent: 15 + type: Transform + - uid: 87 + components: + - pos: 2.5,0.5 + parent: 15 + type: Transform + - uid: 88 + components: + - pos: 5.5,4.5 + parent: 15 + type: Transform + - uid: 89 + components: + - pos: 5.5,3.5 + parent: 15 + type: Transform + - uid: 90 + components: + - pos: -0.5,-6.5 + parent: 15 + type: Transform + - uid: 92 + components: + - pos: -0.5,-3.5 + parent: 15 + type: Transform + - uid: 93 + components: + - pos: -0.5,0.5 + parent: 15 + type: Transform + - uid: 95 + components: + - pos: 2.5,-2.5 + parent: 15 + type: Transform + - uid: 96 + components: + - pos: 4.5,0.5 + parent: 15 + type: Transform + - uid: 97 + components: + - pos: 5.5,2.5 + parent: 15 + type: Transform + - uid: 98 + components: + - pos: 5.5,1.5 + parent: 15 + type: Transform + - uid: 123 + components: + - pos: -0.5,-4.5 + parent: 15 + type: Transform + - uid: 144 + components: + - pos: 8.5,-5.5 + parent: 15 + type: Transform + - uid: 145 + components: + - pos: 8.5,-4.5 + parent: 15 + type: Transform + - uid: 146 + components: + - pos: 8.5,-3.5 + parent: 15 + type: Transform + - uid: 265 + components: + - pos: -8.5,-3.5 + parent: 15 + type: Transform + - uid: 266 + components: + - pos: -8.5,-4.5 + parent: 15 + type: Transform + - uid: 267 + components: + - pos: -8.5,-5.5 + parent: 15 + type: Transform + - uid: 268 + components: + - pos: -8.5,-6.5 + parent: 15 + type: Transform + - uid: 269 + components: + - pos: -8.5,-7.5 + parent: 15 + type: Transform + - uid: 403 + components: + - pos: -4.5,0.5 + parent: 15 + type: Transform +- proto: WardrobeBlueFilled + entities: + - uid: 118 + components: + - pos: 4.5,3.5 + parent: 15 + type: Transform +- proto: WardrobeGreyFilled + entities: + - uid: 119 + components: + - pos: 4.5,1.5 + parent: 15 + type: Transform +- proto: WardrobePinkFilled + entities: + - uid: 121 + components: + - pos: 2.5,4.5 + parent: 15 + type: Transform +- proto: WaterCooler + entities: + - uid: 391 + components: + - pos: 0.5,1.5 + parent: 15 + type: Transform +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 358 + components: + - pos: -4.5,-6.5 + parent: 15 + type: Transform +- proto: Window + entities: + - uid: 18 + components: + - pos: -9.5,-0.5 + parent: 15 + type: Transform + - uid: 43 + components: + - pos: -9.5,-2.5 + parent: 15 + type: Transform + - uid: 407 + components: + - pos: -2.5,0.5 + parent: 15 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-laundromat-chunk.yml b/Resources/Maps/Salvage/DeltaV/DV-laundromat-chunk.yml new file mode 100644 index 0000000000..5692fd6cb4 --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-laundromat-chunk.yml @@ -0,0 +1,6375 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 4: FloorAsphalt + 20: FloorCarpetOffice + 25: FloorConcrete + 28: FloorDark + 49: FloorGrassLight + 52: FloorGrayConcreteSmooth + 59: FloorKitchen + 60: FloorLaundry + 61: FloorLino + 63: FloorMetalDiamond + 71: FloorOldConcreteSmooth + 76: FloorReinforced + 79: FloorShowroom + 95: FloorSteelDirty + 98: FloorSteelMono + 103: FloorTechMaint2 + 104: FloorTechMaint3 + 106: FloorWhite + 119: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: grid + type: MetaData + - pos: -0.828125,-0.421875 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: PAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAATAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAATAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAATwAAAAAAdwAAAAAATwAAAAAAdwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAATwAAAAAAdwAAAAAATwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAOwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAdwAAAAAANAAAAAACNAAAAAACPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAdwAAAAAANAAAAAABNAAAAAACPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAdwAAAAAAPQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAANAAAAAACPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAdwAAAAAATwAAAAAATwAAAAAAdwAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAPQAAAAAAPQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAPQAAAAAAPQAAAAAAdwAAAAAATwAAAAAATwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAPAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXwAAAAAAdwAAAAAAdwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAANAAAAAADNAAAAAABNAAAAAAANAAAAAAANAAAAAADNAAAAAADNAAAAAACdwAAAAAAaAAAAAADXwAAAAAAXwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAACMQAAAAAAMQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAFBAAAAAACBAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAIBAAAAAAFBAAAAAAIBAAAAAABBAAAAAABBAAAAAAJBAAAAAAEBAAAAAAHBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAFBAAAAAAHBAAAAAAABAAAAAADBAAAAAAEBAAAAAAHBAAAAAACBAAAAAAABAAAAAAFBAAAAAAABAAAAAAIBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAJBAAAAAAEBAAAAAAIBAAAAAADBAAAAAAFBAAAAAAHBAAAAAACBAAAAAAABAAAAAAFBAAAAAAEMQAAAAACMQAAAAAAMQAAAAAAMQAAAAADMQAAAAACMQAAAAACMQAAAAACMQAAAAADMQAAAAADMQAAAAAAMQAAAAADMQAAAAAAMQAAAAABMQAAAAAAMQAAAAABMQAAAAADGQAAAAAAGQAAAAAAGQAAAAABGQAAAAABGQAAAAAAGQAAAAACGQAAAAADGQAAAAADGQAAAAAAGQAAAAABGQAAAAABGQAAAAAAGQAAAAADGQAAAAAAGQAAAAABGQAAAAADGQAAAAAAGQAAAAAAGQAAAAADGQAAAAADGQAAAAABGQAAAAABGQAAAAADGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAADGQAAAAABGQAAAAACGQAAAAAAGQAAAAACGQAAAAACTAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAPAAAAAAAPAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAdwAAAAAAdwAAAAAATAAAAAAAOwAAAAAAOwAAAAAATAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAACGQAAAAACGQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAACGQAAAAACGQAAAAAAGQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAADMQAAAAADMQAAAAABMQAAAAACMQAAAAABMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAABBAAAAAAHBAAAAAAGBAAAAAADBAAAAAABBAAAAAADBAAAAAAFBAAAAAAIBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAHBAAAAAAGBAAAAAAABAAAAAADBAAAAAAGBAAAAAADBAAAAAAHBAAAAAAJBAAAAAAABAAAAAAFBAAAAAAGBAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAIBAAAAAAGBAAAAAAGBAAAAAABBAAAAAAABAAAAAAFBAAAAAADBAAAAAAIBAAAAAACBAAAAAAJBAAAAAAGBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAFBAAAAAAEBAAAAAACBAAAAAAABAAAAAAJBAAAAAAFBAAAAAAGBAAAAAAFBAAAAAADBAAAAAAABAAAAAACBAAAAAAGBAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAABMQAAAAAAMQAAAAABMQAAAAACMQAAAAADMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAACMQAAAAAAMQAAAAACMQAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAACGQAAAAADGQAAAAADGQAAAAADGQAAAAAAGQAAAAACGQAAAAACGQAAAAADGQAAAAADGQAAAAABGQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAADGQAAAAAAGQAAAAACGQAAAAABGQAAAAAAGQAAAAAAGQAAAAABGQAAAAACGQAAAAACGQAAAAACGQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAANAAAAAABNAAAAAAANAAAAAACNAAAAAADNAAAAAACdwAAAAAATAAAAAAATAAAAAAATAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAACNAAAAAADNAAAAAACNAAAAAABNAAAAAABdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAABNAAAAAAANAAAAAABNAAAAAAANAAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAABdwAAAAAANAAAAAABNAAAAAAANAAAAAABNAAAAAAANAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAdwAAAAAANAAAAAADNAAAAAABNAAAAAACNAAAAAACNAAAAAABNAAAAAADNAAAAAAAdwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAABagAAAAAAdwAAAAAANAAAAAABNAAAAAACNAAAAAACNAAAAAABNAAAAAACNAAAAAABNAAAAAACdwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAABagAAAAABdwAAAAAANAAAAAACNAAAAAADNAAAAAADNAAAAAABNAAAAAAANAAAAAABNAAAAAAAdwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAACagAAAAAAdwAAAAAANAAAAAABNAAAAAAANAAAAAACNAAAAAABNAAAAAABNAAAAAADNAAAAAACdwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAABagAAAAABdwAAAAAANAAAAAACNAAAAAACNAAAAAACNAAAAAACNAAAAAADNAAAAAABNAAAAAACdwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAADagAAAAACdwAAAAAANAAAAAABNAAAAAADNAAAAAAANAAAAAACNAAAAAACNAAAAAADNAAAAAABdwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAADdwAAAAAANAAAAAAANAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAagAAAAACagAAAAADagAAAAADagAAAAABdwAAAAAANAAAAAAANAAAAAACdwAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAdwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAagAAAAADagAAAAACagAAAAAAagAAAAADdwAAAAAANAAAAAABNAAAAAAAdwAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAagAAAAABagAAAAABagAAAAACagAAAAACdwAAAAAANAAAAAAANAAAAAAAdwAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAdwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAABagAAAAADagAAAAACdwAAAAAANAAAAAACNAAAAAADdwAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAdwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAACagAAAAAAagAAAAAAdwAAAAAANAAAAAABNAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAARwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAABdwAAAAAANAAAAAADNAAAAAAAdwAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAADdwAAAAAANAAAAAAB + version: 6 + 1,0: + ind: 1,0 + tiles: dwAAAAAANAAAAAACNAAAAAADdwAAAAAAHAAAAAADHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAANAAAAAADNAAAAAABdwAAAAAAHAAAAAAAHAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAANAAAAAADNAAAAAAAdwAAAAAAHAAAAAAAHAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAANAAAAAACNAAAAAAAdwAAAAAAHAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAANAAAAAABNAAAAAAAdwAAAAAAHAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAANAAAAAACNAAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAANAAAAAABNAAAAAAAAAAAAAAAHAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAANAAAAAAANAAAAAADAAAAAAAAHAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAADNAAAAAADNAAAAAADdwAAAAAAHAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAABNAAAAAABNAAAAAADHAAAAAACHAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAADNAAAAAABNAAAAAADdwAAAAAAHAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAANAAAAAACNAAAAAABdwAAAAAAHAAAAAABHAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAANAAAAAADNAAAAAABdwAAAAAAHAAAAAABHAAAAAADHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAANAAAAAADNAAAAAAAdwAAAAAAHAAAAAACHAAAAAAAHAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAANAAAAAAANAAAAAAAdwAAAAAAHAAAAAADHAAAAAADHAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAANAAAAAACNAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: NAAAAAACNAAAAAAANAAAAAADNAAAAAADNAAAAAAANAAAAAABNAAAAAABdwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAdwAAAAAANAAAAAACNAAAAAABNAAAAAADNAAAAAADNAAAAAABNAAAAAADNAAAAAADNAAAAAACNAAAAAAANAAAAAACNAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAANAAAAAABNAAAAAABNAAAAAAANAAAAAAANAAAAAABNAAAAAACNAAAAAACNAAAAAABNAAAAAAANAAAAAADNAAAAAACNAAAAAADNAAAAAACNAAAAAADNAAAAAADNAAAAAABNAAAAAABNAAAAAAANAAAAAAANAAAAAADNAAAAAADNAAAAAAANAAAAAACNAAAAAACNAAAAAACNAAAAAACNAAAAAAANAAAAAAANAAAAAACNAAAAAACNAAAAAABNAAAAAADNAAAAAAANAAAAAABdwAAAAAAdwAAAAAANAAAAAACNAAAAAABNAAAAAADNAAAAAACNAAAAAACNAAAAAAANAAAAAADNAAAAAABNAAAAAADNAAAAAABNAAAAAADNAAAAAABNAAAAAADNAAAAAADdwAAAAAAZwAAAAAAPwAAAAAAdwAAAAAAdwAAAAAANAAAAAADNAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAPwAAAAAAYgAAAAABdwAAAAAANAAAAAACNAAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAAAAAAAAAYgAAAAACYgAAAAADdwAAAAAANAAAAAAANAAAAAACdwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADYgAAAAADdwAAAAAANAAAAAAANAAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABYgAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAADagAAAAAAdwAAAAAANAAAAAAANAAAAAAAdwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAABNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAADdwAAAAAANAAAAAAANAAAAAADdwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAADdwAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAANAAAAAACNAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAANAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAABNAAAAAABNAAAAAAANAAAAAACNAAAAAADNAAAAAADNAAAAAACNAAAAAABNAAAAAABNAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAADNAAAAAADNAAAAAADNAAAAAAANAAAAAACNAAAAAADNAAAAAACNAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAACYgAAAAABYgAAAAADPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADYgAAAAABYgAAAAACYgAAAAADYgAAAAABYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAADYgAAAAADYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABYgAAAAABYgAAAAADYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: NAAAAAACNAAAAAABNAAAAAABNAAAAAAANAAAAAADNAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAACNAAAAAAANAAAAAADNAAAAAAANAAAAAADNAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAADNAAAAAAANAAAAAAANAAAAAAANAAAAAACNAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAACGQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAADGQAAAAABGQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAMQAAAAABMQAAAAABMQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAJBAAAAAAHBAAAAAAEBAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAIBAAAAAADBAAAAAAHBAAAAAAJBAAAAAAIBAAAAAAABAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAFBAAAAAACBAAAAAAABAAAAAADBAAAAAAEBAAAAAAEBAAAAAACBAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAHBAAAAAAIBAAAAAAJBAAAAAABBAAAAAABBAAAAAAHBAAAAAAEBAAAAAAHBAAAAAAABAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAACMQAAAAACMQAAAAABMQAAAAAAMQAAAAADMQAAAAADMQAAAAAAMQAAAAACMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAACGQAAAAACGQAAAAACGQAAAAAAGQAAAAAAGQAAAAADGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAADGQAAAAACGQAAAAABGQAAAAACGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAANAAAAAABNAAAAAADdwAAAAAATAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Basalt1 + decals: + 118: 24.05381,-4.348842 + - node: + color: '#FFFFFFFF' + id: Basalt2 + decals: + 115: -11.80879,-5.04025 + 116: -7.9245987,10.071753 + 117: 13.15028,20.073061 + 119: 10.871904,-6.844823 + 120: -5.652499,0.96499085 + 121: 1.6148183,17.20028 + - node: + color: '#FFFFFFFF' + id: Basalt3 + decals: + 122: 4.0835686,23.975819 + 123: 16.405544,-1.4940245 + - node: + color: '#FFFFFFFF' + id: Basalt4 + decals: + 124: 4.7267,14.96301 + - node: + color: '#FFFFFFFF' + id: Basalt5 + decals: + 125: -4.9232235,-1.5107083 + 126: -12.284987,11.837526 + 127: -2.1410763,19.875166 + - node: + color: '#FFFFFFFF' + id: Basalt6 + decals: + 128: 13.595682,17.022379 + 129: 15.710266,15.708965 + 130: 4.1074514,16.751356 + - node: + color: '#FFFFFFFF' + id: Basalt7 + decals: + 131: 16.153912,8.940269 + 132: 7.41273,-4.9217343 + 133: -6.729066,-9.856998 + - node: + color: '#FFFFFFFF' + id: Basalt8 + decals: + 134: -2.1253765,-8.347632 + 135: 13.589897,18.72667 + - node: + color: '#FFFFFFFF' + id: Basalt9 + decals: + 136: -0.113594055,17.136314 + - node: + color: '#9D9D97FF' + id: BrickTileSteelLineN + decals: + 62: -13,-5 + 63: -12,-5 + 64: -11,-5 + 65: -10,-5 + 66: -9,-5 + 67: -8,-5 + 68: -7,-5 + 69: -6,-5 + 70: -5,-5 + 71: -4,-5 + 72: -3,-5 + 73: -2,-5 + 74: -1,-5 + 75: 0,-5 + 76: 1,-5 + 77: 2,-5 + 78: 6,-5 + 79: 7,-5 + 80: 8,-5 + 81: 9,-5 + 82: 10,-5 + 83: 11,-5 + 84: 12,-5 + 85: 13,-5 + 86: 14,-5 + 87: 15,-5 + 88: 16,-5 + 89: 17,-5 + 90: 18,-5 + 91: 19,-5 + 92: 20,-5 + 93: 21,-5 + 94: 22,-5 + 95: 23,-5 + 96: 24,-5 + 97: 25,-5 + - node: + color: '#9D9D97FF' + id: BrickTileSteelLineS + decals: + 98: -1,-8 + 99: -2,-8 + 100: -3,-8 + 101: -4,-8 + 102: -5,-8 + 103: -6,-8 + 104: -7,-8 + 105: -8,-8 + 106: -9,-8 + 107: -10,-8 + 108: 13,-8 + 109: 14,-8 + 110: 15,-8 + 111: 16,-8 + 112: 17,-8 + 113: 18,-8 + 114: 19,-8 + - node: + color: '#FFFFFFFF' + id: Busha1 + decals: + 140: -12.117174,-4.0274706 + - node: + color: '#FFFFFFFF' + id: Busha2 + decals: + 141: -1.6361413,-3.9857745 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 488: -2.238064,14.467158 + 489: -2.4776475,14.540126 + 490: -2.238064,15.103016 + 491: -2.2797308,15.634636 + 492: -2.3526475,17.333733 + 493: -2.6234808,17.427547 + 494: -3.6755638,17.4067 + 495: -4.488064,17.375427 + 496: -5.967231,17.135677 + 497: -5.7295194,17.219069 + 498: -5.969103,16.510244 + 499: -5.9170194,15.592941 + 500: -4.7816024,14.717332 + 501: 3.0590112,23.921913 + 502: 3.6215115,23.817675 + 503: 3.4027612,23.088001 + 504: 3.1840112,22.962914 + 505: 3.6110945,21.868404 + 506: 4.0485945,20.773893 + 507: 3.3298445,21.097034 + 508: 4.9860945,19.356243 + 509: 3.6840115,20.138035 + 510: 4.2673445,17.917744 + 511: 4.8298445,17.125526 + 512: 3.6735945,17.938591 + 513: 2.9965112,19.033102 + 514: 3.2673445,19.648111 + 515: 5.0069275,18.251308 + 516: 7.3763533,19.61684 + 517: 9.270568,18.782928 + 518: 8.746021,19.231155 + 519: 10.878968,19.272854 + 520: 11.90831,17.750961 + 521: 12.106226,19.126917 + 522: 8.762476,19.648111 + 523: 9.767162,18.980982 + 524: 11.921979,19.554296 + 525: 13.2638,16.833656 + 526: 12.92005,16.604332 + 527: 15.847559,16.718994 + 528: 13.600941,17.886473 + 529: 16.393394,16.875353 + 530: 15.446484,18.084526 + 531: 16.38929,16.802385 + 532: 15.837206,17.761385 + 533: 16.67007,16.708569 + 534: 17.120008,17.094252 + 535: 17.964401,16.812963 + 536: 18.80518,16.302872 + 537: 19.784346,16.624514 + 540: 19.471846,16.504847 + 541: 20.80518,16.714275 + 542: 20.909346,15.59885 + 543: 18.80518,17.485569 + 544: 18.61768,14.806624 + 545: 17.544762,14.426119 + 546: 17.096846,13.78022 + 547: 18.39893,13.658798 + 548: 17.003096,11.839632 + 549: 17.159346,13.43449 + 550: 18.346846,12.235741 + 551: 17.919762,11.48522 + 552: 17.565596,11.360133 + 553: 18.21143,8.2892685 + 554: 16.61768,9.842147 + 555: 17.878096,8.317979 + 556: 15.784346,8.4641 + 557: 14.617679,8.182669 + 558: 16.690596,8.555946 + 559: 17.92356,6.6476574 + 560: 17.353462,5.3410635 + 561: 17.239437,6.030586 + 562: 17.187353,6.945465 + 563: 18.124853,4.756444 + 564: 17.989437,3.8377647 + 565: 17.614437,4.359189 + 566: 16.999853,3.355566 + 567: 17.812353,2.6571643 + 568: 17.82277,1.1183906 + 569: 17.926937,2.2486212 + 570: 18.04152,1.1462352 + 571: 17.562353,0.35401845 + 572: 16.989437,4.5027328 + 573: 17.656105,1.5463829 + 574: 17.35402,0.09412217 + 575: 17.645687,-0.937845 + 576: 17.22902,-0.8459151 + 577: 18.062353,-2.7005515 + 578: 17.79152,-2.1264992 + 579: 14.88527,-2.0834188 + 580: 13.103297,-2.9798746 + 581: 12.059413,-1.7498541 + 582: 15.688915,-2.7818205 + 583: 18.81266,-2.5212228 + 584: 21.416538,-2.6254618 + 585: 16.577793,-2.8964834 + 586: 12.774483,-2.8339403 + 587: 8.528566,-2.291897 + 588: 8.162271,-2.948603 + 589: 6.249138,-2.5420706 + 590: 5.0162373,-2.281473 + 591: 4.1954064,-2.531647 + 592: 3.064159,-2.1980817 + 593: 2.4287422,-2.8026686 + 594: 3.1623993,-2.844364 + 595: 1.149974,-3.0215704 + 596: 0.8796241,-2.2085059 + 597: -0.005792618,-2.364864 + 598: -1.6444213,-3.0632658 + 599: -2.9619465,-2.281473 + 600: -3.8465056,-2.291897 + 601: -3.5863109,-3.0632658 + 602: -5.3964295,-2.1355383 + 603: -5.655264,-2.7609727 + 604: -6.075739,-3.0945375 + 605: -6.5068407,-2.2606256 + 606: -8.266205,-1.6768866 + 607: -8.166405,-2.990299 + 608: -9.940849,-2.6358855 + 609: -10.757616,-2.385712 + 610: -11.477848,-2.5733423 + 614: 7.001713,-5.974179 + 615: 6.0121293,-4.952636 + 616: 18.95218,-7.944297 + 617: 18.962597,-6.9615755 + 618: 20,-7 + 619: 21,-7 + 620: 22,-7 + 621: 22,-6 + 622: 23,-6 + 623: 24,-6 + 624: 25,-5 + 625: 24,-5 + 626: 21,-6 + 627: 18,-8 + 628: 13,-8 + 629: 13,-7 + 630: 12,-7 + 631: 11,-7 + 632: 10,-7 + 633: 10,-6 + 634: 9,-6 + 635: 8,-6 + 636: 7,-5 + 637: 8,-5 + 638: 9,-5 + 639: 2,-5 + 640: 1,-5 + 641: 1,-6 + 642: 2,-6 + 643: 0,-6 + 644: -1,-6 + 645: -1,-7 + 646: -1,-8 + 647: -2,-8 + 648: -3,-8 + 649: -4,-8 + 650: -3,-11 + 651: -4,-11 + 652: -5,-11 + 653: -5,-11 + 654: -4,-11 + 655: -3,-10 + 656: -2,-10 + 657: -3,-10 + 658: -6,-10 + 659: -7,-10 + 660: -6,-10 + 661: -6,-10 + 662: -5,-10 + 663: -5,-11 + 664: -4,-10 + 665: -7,-8 + 666: -8,-8 + 667: -9,-8 + 668: -10,-8 + 669: -8,-8 + 670: -3,-8 + 671: -1,-6 + 672: -1,-8 + 673: -10,-7 + 674: -9,-7 + 675: -11,-7 + 676: -11,-7 + 677: -11,-6 + 678: -12,-6 + 679: -13,-5 + 680: -13,-6 + 681: -12,-7 + 682: -12,-5 + 683: -9,-1 + 684: -9,0 + 685: -9,1 + 686: -9,1 + 687: -9,0 + 688: -9,-1 + 689: -8,0 + 690: -8,0 + 691: -8,1 + 692: -8,2 + 693: -8,0 + 694: -7,-1 + 695: -8,2 + 696: -8,3 + 697: -11,2 + 698: -11,3 + 699: -12,4 + 700: -12,5 + 701: -12,7 + 702: -12,7 + 703: -11,7 + 704: -11,9 + 705: -12,10 + 706: -12,10 + 707: -13,10 + 708: -14,11 + 709: -13,12 + 710: -13,13 + 711: -13,13 + 712: -13,14 + 713: -12,13 + 714: -11,11 + 715: -11,13 + 716: -12,15 + 717: -11,16 + 718: -11,17 + 719: -10,19 + 720: -9,19 + 721: -9,19 + 722: -10,19 + 723: -8,19 + 724: -8,19 + 725: -8,20 + 726: -8,20 + 727: -8,19 + 728: -8,18 + 729: -8,18 + 730: -8,18 + 731: -8,17 + 732: -9,17 + 733: -9,16 + 734: -8,16 + 735: -8,17 + 736: -9,17 + 737: -8,15 + 738: -8,13 + 739: -8,11 + 740: -8,10 + 741: -8,17 + 742: -6,20 + 743: -6,20 + 744: -5,19 + 745: -2,19 + 746: 2,19 + 747: -2,20 + 748: -5,20 + 749: -2,20 + 750: 1,21 + 751: 0,21 + 752: 0,22 + 753: -2,22 + 754: -3,22 + 755: -6,22 + 756: -7,22 + 757: -7,22 + 758: -5,22 + 759: -2,22 + 760: 0,22 + 761: 0,23 + 762: -2,23 + 763: -4,23 + 764: -6,23 + 765: -5,24 + 766: -5,25 + 767: -4,25 + 768: -3,26 + 769: -2,26 + 770: 0,26 + 771: 1,24 + 772: 1,23 + 773: 1,24 + 774: -2,25 + 775: 0,22 + 776: 4,20 + 777: 4,21 + 778: 4,23 + 779: 3,24 + 780: 3,22 + 781: 3,20 + 782: 3,17 + 783: 3,18 + 784: 1,18 + 785: -1,17 + 786: 1,16 + 787: 0,17 + 788: 1,17 + 789: 0,16 + 790: 0,18 + 791: 6,16 + 792: 4,16 + 793: 5,16 + 794: 8,20 + 795: 7,22 + 796: 6,22 + 797: 6,24 + 798: 7,24 + 799: 10,22 + 800: 12,20 + 801: 8.892121,18.773188 + 802: 9.582446,19.669641 + 803: 8.05817,20.785002 + 804: 4.3904524,22.588337 + 805: -2.876831,23.891325 + 806: -4.0786366,24.016413 + 807: -6.1957726,21.160261 + 808: -8.413453,18.016983 + 809: -8.517672,16.416231 + 810: -8.538505,14.251637 + 811: -8.538505,11.969601 + 812: -8.538505,9.567038 + 813: -2.8252594,4.624942 + 814: -3.230195,6.095029 + 815: -3.761445,7.460561 + 816: -6.5010285,7.80455 + 817: -6.105195,5.615529 + 818: -5.573945,3.3848133 + 819: -6.948945,2.3736942 + 820: -6.709362,7.80455 + 821: -6.855195,6.240964 + 822: -6.521862,4.3542366 + 823: -5.9697785,1.8212273 + 824: 17.861729,-0.6118214 + 825: 17.76345,0.54827857 + 826: 17.846785,2.7685704 + 827: 17.57595,4.853352 + 828: 16.940535,6.534702 + 829: 16.898867,9.275066 + 830: 17.336367,10.908655 + 831: 17.398867,13.279052 + 832: 18.0447,15.805931 + 834: 20.523869,17.729618 + 836: 18.346785,18.031912 + 838: 20.846785,16.051369 + 839: 20.711369,17.062489 + 840: 20.596785,17.552412 + 841: 18.471785,17.43775 + 842: 19.846785,17.646227 + 843: 18.648869,17.875553 + 844: 17.836369,17.729618 + 845: 16.1072,18.094456 + 846: 18.1697,17.62538 + 847: 20.20095,16.47875 + 848: 18.190535,16.040945 + 849: 16.398867,17.427324 + 850: 2.0711331,8.671983 + 851: 1.7794666,7.59832 + 852: 2.14405,5.075735 + 853: 4.0815496,8.890884 + 854: 4.1336336,7.0041575 + 855: 4.2065496,5.5552344 + 856: 5.14405,-0.9206481 + 857: 4.1544666,-0.56623554 + 858: 2.1648831,-0.37860513 + 859: 0.39404988,-0.74344206 + 860: 1.3419666,-0.6704745 + 861: 3.2169666,-1.00404 + 862: 4.51905,1.5126157 + 863: 3.2378,1.919148 + 864: 1.7586331,3.566125 + 865: -0.29345036,1.6064305 + 866: -1.3976169,1.6168549 + 867: -1.5851169,3.201289 + 868: -2.0122004,1.1269314 + 869: -2.5330334,0.5223446 + 870: -2.2622004,-0.7910671 + 871: -1.1788669,-0.41580653 + 872: -0.88720036,3.4618862 + 873: -0.7205334,4.462581 + 874: 6.5503,9.382818 + 875: 6.70655,8.07983 + 876: 6.8419666,6.630907 + 877: 6.7794666,5.980443 + 878: 6.9773836,4.1678524 + 879: 7.3419666,1.7703538 + 880: 7.5711336,1.3638215 + 881: 4.0294666,3.6362333 + 882: 3.9252996,4.887102 + 883: 3.9148836,5.543808 + 884: 3.6440496,8.472926 + 885: 2.2898831,9.035817 + 886: -3.2572868,14.312439 + 887: -3.90312,14.374983 + 888: -4.52812,14.291592 + 889: -6.2364535,14.3854065 + 890: -5.9864535,15.031689 + 891: -5.87187,16.084503 + 892: -5.382287,17.106047 + 893: -3.819787,17.095623 + 894: 2.0280054,13.343016 + 895: 2.8405054,13.270048 + 896: 3.5280056,13.186657 + 897: 4.5800886,12.842669 + 898: 2.7988386,12.509104 + 899: 2.5175886,11.987908 + 900: 2.882172,12.44656 + 901: 7.9415054,15.928144 + 902: 8.191505,15.229743 + 903: 9.358172,15.803059 + 904: 12.535255,12.436136 + 905: 10.826922,9.017095 + 906: 13.077051,1.7430704 + 907: 12.649967,1.732646 + 908: 11.420801,1.753494 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 273: 14.495532,-3.0352511 + 274: 14.495532,-3.0352511 + 275: 7.9644947,-2.5036316 + 276: 13.510276,1.0248153 + 277: 14.062359,0.99354374 + 278: 14.062359,0.99354374 + 279: 14.937359,1.0143911 + 280: 14.593609,2.9245415 + 281: 14.593609,2.9349656 + 282: 14.458193,3.020217 + 283: 14.343609,3.0514884 + 284: 14.343609,3.0514884 + 285: 12.885276,13.9227 + 286: 13.062359,14.026939 + 287: 12.906109,13.995667 + 288: 9.972544,15.017211 + 289: 9.972544,15.017211 + 290: 9.972544,15.017211 + 291: 9.972544,15.017211 + 292: -1.1295626,10.019061 + 293: -1.1295626,10.019061 + 294: -0.50456256,9.508289 + 295: -0.50456256,9.508289 + 296: -0.17122918,6.9857044 + 297: -0.09831253,6.9857044 + 298: -0.07747918,6.9857044 + 299: 0.047520816,6.9857044 + 300: 0.26627082,6.996128 + 301: 0.07877082,6.9857044 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 198: -1.0330586,13.028044 + 199: -1.0330586,13.007195 + 200: -1.0538919,12.934229 + 201: -1.0747253,12.642359 + 202: -1.0955586,12.600663 + 203: 6.999814,13.028295 + 204: 6.989397,13.028295 + 205: 6.88523,13.080414 + 206: 7.114397,12.767697 + 207: 7.936844,1.0287967 + 208: 8.447261,1.0287967 + 209: 8.707677,1.0392203 + 210: 8.947261,1.0600684 + 211: -2.073909,1.1017637 + 212: -2.073909,1.0809157 + 213: -2.5843256,0.01767826 + 214: -2.573909,0.01767826 + 215: 12.967686,5.948929 + 216: 12.967686,5.948929 + 217: 12.946852,5.469429 + 218: 12.978102,5.2922225 + 219: 13.030186,5.0941687 + 220: 12.009352,4.062202 + 221: 12.009352,4.062202 + 222: 10.998936,1.0212395 + 223: 10.998936,0.8336091 + 224: 11.071852,0.46877217 + 225: 11.113519,0.15605521 + 226: 11.009352,-0.021151304 + 227: 14.979609,-0.10454321 + 228: 14.948359,0.13520741 + 302: 4.4986157,13.505787 + 303: 4.4986157,13.505787 + 304: 4.4986157,13.505787 + 305: 3.9673657,-1.0132259 + 306: 3.9569492,-1.0236502 + 307: 3.9569492,-1.0236502 + 308: 2.9361157,-0.46075916 + 309: 3.0923657,-0.47118282 + 310: 2.7173655,-0.7005091 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 311: -3.4493012,0.58334684 + 312: -3.4701347,0.11427188 + 313: -3.3451347,-0.19844556 + 314: -3.0118012,-0.45904398 + 315: -2.4909678,-0.5215874 + 316: -1.5638845,-0.6049781 + 317: -0.83471775,-0.63624954 + 318: 0.7798655,-0.77176046 + 319: 2.613199,-0.77176046 + 320: 4.0090322,-0.8030319 + 321: 4.8736157,-0.75091314 + 322: 5.675699,-0.7404885 + 323: 6.6340322,-0.7300658 + 324: 7.7798653,-0.667521 + 325: 9.206949,-0.51116323 + 326: 9.654865,0.520803 + 327: 9.446532,1.2713249 + 328: 8.123615,1.5319228 + 329: 7.488199,1.7404003 + 330: 7.3527822,2.178205 + 331: 7.3111157,2.6368568 + 332: 7.3423657,2.959998 + 333: 7.394449,3.4707694 + 334: 7.488199,3.6688232 + 335: 7.6340322,3.898149 + 336: 7.613199,4.3151054 + 337: 7.5298653,4.7216377 + 338: 7.456949,5.107322 + 339: 7.425699,5.545126 + 340: 7.5715322,6.170561 + 341: 7.6340322,6.7438755 + 342: 7.6027822,7.2546473 + 343: 7.550699,8.026016 + 344: 7.4048657,8.734842 + 345: 7.394449,9.50949 + 346: 7.300699,10.447641 + 347: 7.6027822,10.635272 + 348: 7.7902822,11.437913 + 349: 7.644449,11.552575 + 350: 7.4465322,11.93826 + 351: 7.4361157,12.511575 + 352: 7.0923657,13.335064 + 353: 6.019449,13.606085 + 354: 5.3423657,13.626933 + 355: 4.331949,13.668629 + 356: 3.7173657,13.637357 + 357: 2.550699,13.553966 + 358: 1.8631988,13.595661 + 359: 0.7069489,13.6999 + 360: 0.04028225,13.668629 + 361: -0.8763845,13.64778 + 362: -1.3763845,12.511575 + 363: -1.3451345,11.531728 + 364: -1.3243012,11.323249 + 365: -1.5222178,10.687391 + 366: -1.5326345,9.248892 + 367: -1.5013845,8.508795 + 368: -1.4180512,7.549795 + 369: -1.1159678,8.164805 + 370: -1.1055512,7.257926 + 371: -1.1993012,6.3301983 + 372: -1.3659678,5.6109486 + 373: -1.3972178,4.6433954 + 374: -1.3868012,1.7739415 + 375: 2.550699,1.9029193 + 376: 2.5715322,2.184365 + 377: 2.644449,2.4658096 + 378: 3.4673657,2.0280056 + 379: 3.6444492,1.9133434 + 380: 3.6861157,2.3824177 + 381: 3.6236157,2.9453094 + 382: 3.6340322,3.3726897 + 383: 3.6236157,3.737527 + 384: 3.5923657,4.3733845 + 385: 3.5819492,4.988395 + 386: 3.5819492,5.4366236 + 387: 3.5819492,4.529743 + 388: 2.3840322,3.2684505 + 389: 2.3736155,3.7166786 + 390: 2.3527822,3.9564285 + 391: 2.4152822,4.2795696 + 392: 2.5402822,4.9154277 + 393: 2.488199,5.665949 + 394: 2.5090322,6.343503 + 395: 2.550699,6.9480896 + 396: 2.4673655,7.6047955 + 397: 2.4361155,9.043295 + 398: 2.488199,8.866089 + 399: 2.831949,8.678458 + 400: 3.7069492,8.5220995 + 401: 4.238199,8.94948 + 402: 4.456949,7.594372 + 403: 4.5298657,6.343503 + 404: 6.831949,3.3935375 + 405: 6.7277822,4.4567757 + 406: 6.7277822,6.4373183 + 407: -0.5292325,-3.066512 + 408: -0.4979825,-3.2437181 + 409: 0.106184006,-3.4938917 + 410: 13.703016,2.4889722 + 411: 13.400933,2.447276 + 412: 12.953016,2.4264288 + 413: 12.4426,2.384733 + 414: 11.484266,2.259646 + 415: 10.338433,2.6140592 + 416: 8.525933,3.208222 + 417: 8.546766,4.03171 + 418: 8.578016,4.45909 + 419: 9.328016,4.5633297 + 420: 10.6301,4.594601 + 421: 12.3801,4.594601 + 422: 11.1926,4.532058 + 423: 10.744683,4.5841775 + 424: 9.244683,4.6884165 + 425: 8.307183,4.3652754 + 426: 8.3176,3.5000906 + 427: 8.47385,2.8955045 + 428: 9.150933,2.447276 + 429: 12.446204,5.18546 + 430: 12.414954,5.6858077 + 431: 15.227454,6.373786 + 432: 15.404537,6.4780245 + 433: 15.592037,6.3008184 + 434: 15.623287,5.9255576 + 435: 12.498287,7.946604 + 436: 12.248287,7.69643 + 437: 11.769121,7.5713434 + 438: 11.508704,7.2273555 + 439: 11.519121,6.633192 + 440: 11.508704,6.070302 + 441: 11.383704,5.7263126 + 442: 10.630039,5.534979 + 443: 10.598789,5.5870976 + 444: 10.525872,6.3167715 + 445: 9.577955,6.23338 + 446: 9.577955,6.035326 + 447: 9.494622,5.6392174 + 448: 9.296705,5.2743807 + 449: 8.890455,5.357772 + 450: 8.494622,5.472435 + 451: 9.140455,5.5245543 + 452: 9.400872,5.7434564 + 453: 8.963372,9.680746 + 454: 8.827955,9.581381 + 455: 8.473789,9.456294 + 456: 8.536289,8.872556 + 457: 8.598789,8.851707 + 458: 8.744622,9.279088 + 459: 9.223789,9.508414 + 460: 11.505039,9.383327 + 461: 12.057122,9.372903 + 462: 13.390455,10.61255 + 463: 13.380039,10.591702 + 464: 11.734205,10.675094 + 465: 11.661289,10.977387 + 466: 15.557121,12.342918 + 467: 15.515455,12.37419 + 468: 15.202955,12.488853 + 469: 14.723789,12.468005 + 470: 15.421705,13.6146345 + 471: 15.546705,14.167102 + 472: 15.421705,14.458971 + 473: 14.911289,14.458971 + 474: 8.932122,16.470785 + 475: 8.932122,16.470785 + 476: 8.421705,16.58545 + 477: 8.952955,16.42909 + 478: 9.005039,16.0851 + 479: 9.015455,15.855774 + 480: 9.015455,15.605602 + 481: 8.921705,14.9072 + 482: 8.921705,14.834232 + 483: 8.505039,14.677874 + 484: 7.7967052,14.573635 + 485: 7.338372,14.729993 + 486: 3.1168494,13.54287 + 487: 3.346016,13.480326 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 229: 14.9379425,5.481626 + 230: 14.9379425,5.481626 + 231: 14.9691925,5.293996 + 232: 7.021214,-0.0002593994 + 233: 6.667047,-0.0002593994 + 234: 6.542047,-0.031531096 + 235: 4.9691305,-1.6368129 + 236: 4.9691305,-1.6368129 + 237: 3.8441305,-2.0120735 + 238: 3.8441305,-2.0120735 + 239: 3.510797,-2.470725 + 240: 3.510797,-2.470725 + 241: -2.1803334,-1.9599533 + 242: -2.0761666,-1.9599533 + 243: -1.9615834,-1.980802 + 244: -1.9511666,-2.1058884 + 245: -1.9615834,-2.2413993 + 246: -1.6490834,-2.8042898 + 247: -1.6699166,-2.8459854 + 248: -1.7428334,-3.0753112 + 249: -8.529966,-2.9085288 + 250: -8.561216,-2.9398003 + 251: -8.561216,-2.9398003 + 252: -9.415383,-2.0641928 + 253: -10.561216,-2.0224967 + 254: -10.561216,-2.0224967 + 255: -11.321633,-1.9912252 + 256: -11.571633,-1.9078345 + 257: -11.95705,-2.9502249 + 258: -11.95705,-2.960649 + 259: -11.95705,-2.960649 + 260: -11.95705,-3.1274314 + 261: -12.009133,-3.1378555 + 262: -11.821633,-2.9814963 + 263: -11.790383,-3.002345 + 264: -11.696633,-3.0440397 + 265: 21.751295,-2.9806118 + 266: 21.261711,-2.9701881 + 267: 21.02213,-2.501112 + 268: 21.02213,-2.501112 + 269: 20.699211,-2.5740795 + 270: 20.178377,-2.365601 + 271: 20.074211,-2.5323837 + 272: 19.990877,-2.5323837 + - node: + color: '#474F52FF' + id: FullTileOverlayGreyscale + decals: + 0: -11,17 + 1: -11,16 + 2: -11,15 + 3: -11,14 + 4: -11,13 + 5: -11,12 + 6: -12,16 + 7: -12,15 + 8: -12,14 + 9: -12,13 + 10: -13,14 + 11: -13,13 + 12: -14,12 + 13: -13,12 + 14: -12,12 + 15: -14,11 + 16: -13,11 + 17: -12,11 + 18: -11,11 + 19: -11,10 + 20: -14,10 + 21: -13,10 + 22: -12,10 + 23: -12,9 + 24: -11,9 + 25: -11,8 + 26: -12,8 + 27: -12,7 + 28: -11,7 + 29: -11,6 + 30: -12,6 + 31: -12,5 + 32: -12,4 + 33: -11,4 + 34: -11,5 + 35: -11,3 + 36: -11,2 + - node: + color: '#FFFFFFFF' + id: Grassb1 + decals: + 197: 14.108893,-8.891197 + - node: + color: '#FFFFFFFF' + id: Grassb3 + decals: + 177: 10.172764,-4.0066223 + - node: + color: '#FFFFFFFF' + id: Grassb4 + decals: + 176: -10.881563,-3.8919597 + - node: + color: '#FFFFFFFF' + id: Grassb5 + decals: + 175: -2.8591957,-4.07959 + 178: 21.997725,-4.1212854 + - node: + color: '#FFFFFFFF' + id: Grassc2 + decals: + 180: 14.007703,-4.0113215 + - node: + color: '#FFFFFFFF' + id: Grassc3 + decals: + 181: 11.01812,-3.9487784 + 195: 15.343547,-8.980638 + 196: 18.111933,-4.0010586 + - node: + color: '#FFFFFFFF' + id: Grassc4 + decals: + 179: 1.3086522,-3.9800498 + 182: 14.997286,-4.0738654 + 183: -6.316034,-9.001485 + 194: 16.135212,-9.001485 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 142: 23.71786,-4.0066223 + 143: 23.072027,-3.933655 + 144: 22.46786,-3.9753509 + 145: 21.051193,-3.9023833 + 146: 16.714003,-3.954503 + 147: 12.35594,-3.912807 + 148: 8.184109,-3.9232314 + 149: 6.088892,-3.912807 + 150: 3.0141213,-3.933655 + 151: -0.6151564,-3.9232314 + 152: -7.5817976,-3.9440787 + 153: -5.6755476,-3.954503 + 154: -12.986575,-3.9753509 + 184: -6.9827003,-8.928517 + 188: 13.062296,-8.991061 + - node: + color: '#FFFFFFFF' + id: Grassd2 + decals: + 155: -11.028241,-3.9753509 + 156: -8.130524,-3.9753509 + 157: -4.787404,-3.9649267 + 158: 6.895659,-3.9232314 + 159: 11.48143,-3.9232314 + 187: -3.875198,-8.949365 + 189: 18.760214,-8.938941 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 160: 20.140419,-3.8606875 + 161: 13.150837,-3.8502638 + 162: 3.7344947,-3.933655 + 163: -8.926819,-3.912807 + 190: 13.885213,-8.991061 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 164: -10.270569,-4.017046 + 165: -3.8274817,-4.0066223 + 166: -6.5253987,-3.933655 + 167: 2.2464166,-4.048318 + 168: 10.203251,-4.0274706 + 191: 17.80188,-9.011909 + - node: + color: '#FFFFFFFF' + id: Grasse2 + decals: + 169: 19.394455,-4.0066223 + 170: 18.686123,-3.8711119 + 171: 17.425705,-3.9753509 + 185: -4.478716,-8.949365 + 192: 14.843546,-8.980638 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 172: 0.34062326,-3.9753509 + 173: 5.001099,-3.9753509 + 174: 15.6750145,-3.9961982 + 186: -3.0516324,-8.959789 + 193: 16.80188,-8.980638 + - node: + color: '#FFFFFFFF' + id: Rock02 + decals: + 139: -5.357834,-9.008517 + - node: + color: '#FFFFFFFF' + id: Rock06 + decals: + 137: 9.153309,-4.1117034 + - node: + color: '#FFFFFFFF' + id: Rock07 + decals: + 138: 6.64809,17.406126 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleN + decals: + 37: -1,-7 + 38: -2,-7 + 39: -3,-7 + 40: -4,-7 + 41: -5,-7 + 42: -6,-7 + 43: -7,-7 + 44: -8,-7 + 45: -9,-7 + 46: -10,-7 + 47: -11,-7 + 49: 10,-7 + 50: 11,-7 + 51: 12,-7 + 52: 13,-7 + 53: 14,-7 + 54: 15,-7 + 55: 16,-7 + 56: 17,-7 + 57: 18,-7 + 58: 19,-7 + 59: 20,-7 + 60: 21,-7 + 61: 22,-7 + 613: -12,-7 + type: DecalGrid + - 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 + 0,-1: + 0: 65535 + 1,-1: + 0: 65535 + 2,-1: + 0: 65535 + 3,-1: + 0: 65535 + -3,-1: + 0: 53247 + -2,-1: + 0: 65535 + -1,-1: + 0: 65535 + -3,0: + 0: 61064 + -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 + 4,0: + 0: 65535 + 4,1: + 0: 30719 + 4,2: + 0: 65535 + 4,3: + 0: 65535 + 0,4: + 0: 65535 + 1,4: + 0: 65535 + 2,4: + 0: 65535 + 3,4: + 0: 65535 + -3,4: + 0: 52975 + -2,4: + 0: 65535 + -1,4: + 0: 65535 + 4,4: + 0: 32767 + 4,-1: + 0: 65535 + 0,-2: + 0: 30464 + 1,-2: + 0: 51200 + 2,-2: + 0: 65472 + 3,-2: + 0: 65534 + 3,-3: + 0: 59392 + -4,-2: + 0: 34816 + -4,-1: + 0: 8 + -3,-2: + 0: 65532 + -2,-2: + 0: 65535 + -2,-3: + 0: 61056 + -1,-3: + 0: 30512 + -1,-2: + 0: 65535 + -4,2: + 0: 52224 + -4,3: + 0: 2188 + 5,0: + 0: 4915 + 5,1: + 0: 4353 + 5,2: + 0: 12561 + 5,3: + 0: 30583 + 0,5: + 0: 65535 + 0,6: + 0: 383 + 1,5: + 0: 65535 + 1,6: + 0: 15 + 2,5: + 0: 8191 + 2,6: + 0: 1 + 3,5: + 0: 2047 + -2,5: + 0: 52991 + -2,6: + 0: 140 + -1,5: + 0: 65535 + -1,6: + 0: 4095 + 4,5: + 0: 1 + 5,4: + 0: 819 + 4,-3: + 0: 63280 + 4,-2: + 0: 65535 + 5,-2: + 0: 65392 + 5,-1: + 0: 13183 + 6,-2: + 0: 12544 + 6,-1: + 0: 1 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: Airlock + entities: + - uid: 171 + components: + - pos: 10.5,10.5 + parent: 1 + type: Transform + - uid: 172 + components: + - pos: 8.5,11.5 + parent: 1 + type: Transform + - uid: 173 + components: + - pos: 11.5,12.5 + parent: 1 + type: Transform + - uid: 670 + components: + - pos: 19.5,9.5 + parent: 1 + type: Transform +- proto: AirlockGlass + entities: + - uid: 12 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 13 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 14 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 15 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 372 + components: + - pos: 13.5,-0.5 + parent: 1 + type: Transform + - uid: 373 + components: + - pos: 14.5,-0.5 + parent: 1 + type: Transform +- proto: AirlockKitchenLocked + entities: + - uid: 371 + components: + - pos: 15.5,7.5 + parent: 1 + type: Transform +- proto: AirlockServiceLocked + entities: + - uid: 117 + components: + - pos: 3.5,14.5 + parent: 1 + type: Transform + - uid: 174 + components: + - pos: 9.5,14.5 + parent: 1 + type: Transform + - uid: 262 + components: + - pos: -3.5,14.5 + parent: 1 + type: Transform + - uid: 263 + components: + - pos: -1.5,11.5 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 526 + components: + - pos: 14.5,7.5 + parent: 1 + type: Transform + - uid: 527 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,11.5 + parent: 1 + type: Transform + - uid: 528 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + type: Transform +- proto: APCSuperCapacity + entities: + - uid: 475 + components: + - rot: 3.141592653589793 rad + pos: -5.5,9.5 + parent: 1 + type: Transform +- proto: BannerGreen + entities: + - uid: 399 + components: + - pos: 15.89447,-1.1581264 + parent: 1 + type: Transform +- proto: Basketball + entities: + - uid: 444 + components: + - pos: 15.92692,16.233425 + parent: 1 + type: Transform +- proto: Beaker + entities: + - uid: 420 + components: + - pos: 9.291601,3.6183515 + parent: 1 + type: Transform +- proto: BoxCardboard + entities: + - uid: 304 + components: + - rot: -1.5707963267948966 rad + pos: 4.581649,6.531516 + parent: 1 + type: Transform + - uid: 305 + components: + - rot: 3.141592653589793 rad + pos: 4.581649,6.125266 + parent: 1 + type: Transform +- proto: BoxMousetrap + entities: + - uid: 204 + components: + - pos: 8.375097,16.702166 + parent: 1 + type: Transform +- proto: BoxTrashbag + entities: + - uid: 208 + components: + - pos: 8.593847,16.670916 + parent: 1 + type: Transform +- proto: BrokenBottle + entities: + - uid: 334 + components: + - rot: -1.5707963267948966 rad + pos: 5.342025,16.694143 + parent: 1 + type: Transform + - uid: 805 + components: + - rot: -1.5707963267948966 rad + pos: 7.408947,24.43949 + parent: 1 + type: Transform + - uid: 846 + components: + - pos: 18.70602,-9.028988 + parent: 1 + type: Transform +- proto: Bucket + entities: + - uid: 210 + components: + - pos: 10.750866,16.31154 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 476 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 530 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 531 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 532 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 533 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 534 + components: + - pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 535 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 536 + components: + - pos: -5.5,0.5 + parent: 1 + type: Transform + - uid: 537 + components: + - pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 538 + components: + - pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 539 + components: + - pos: -5.5,-2.5 + parent: 1 + type: Transform + - uid: 540 + components: + - pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 541 + components: + - pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 542 + components: + - pos: -8.5,-2.5 + parent: 1 + type: Transform + - uid: 543 + components: + - pos: -4.5,-2.5 + parent: 1 + type: Transform + - uid: 544 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 545 + components: + - pos: -2.5,-2.5 + parent: 1 + type: Transform + - uid: 546 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 547 + components: + - pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 548 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 549 + components: + - pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 550 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 551 + components: + - pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 552 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 553 + components: + - pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 554 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 555 + components: + - pos: 7.5,-2.5 + parent: 1 + type: Transform + - uid: 556 + components: + - pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 557 + components: + - pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 558 + components: + - pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 559 + components: + - pos: 11.5,-2.5 + parent: 1 + type: Transform + - uid: 560 + components: + - pos: 12.5,-2.5 + parent: 1 + type: Transform + - uid: 561 + components: + - pos: 13.5,-2.5 + parent: 1 + type: Transform + - uid: 562 + components: + - pos: 14.5,-2.5 + parent: 1 + type: Transform + - uid: 563 + components: + - pos: 15.5,-2.5 + parent: 1 + type: Transform + - uid: 564 + components: + - pos: 16.5,-2.5 + parent: 1 + type: Transform + - uid: 565 + components: + - pos: 17.5,-2.5 + parent: 1 + type: Transform + - uid: 566 + components: + - pos: 18.5,-2.5 + parent: 1 + type: Transform + - uid: 567 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 568 + components: + - pos: -5.5,10.5 + parent: 1 + type: Transform + - uid: 569 + components: + - pos: -5.5,11.5 + parent: 1 + type: Transform + - uid: 570 + components: + - pos: -4.5,11.5 + parent: 1 + type: Transform + - uid: 571 + components: + - pos: -3.5,11.5 + parent: 1 + type: Transform + - uid: 572 + components: + - pos: -3.5,12.5 + parent: 1 + type: Transform + - uid: 573 + components: + - pos: -3.5,13.5 + parent: 1 + type: Transform + - uid: 574 + components: + - pos: -3.5,14.5 + parent: 1 + type: Transform + - uid: 575 + components: + - pos: -3.5,15.5 + parent: 1 + type: Transform + - uid: 576 + components: + - pos: -3.5,16.5 + parent: 1 + type: Transform + - uid: 577 + components: + - pos: -2.5,16.5 + parent: 1 + type: Transform + - uid: 578 + components: + - pos: -1.5,16.5 + parent: 1 + type: Transform + - uid: 579 + components: + - pos: -2.5,11.5 + parent: 1 + type: Transform + - uid: 580 + components: + - pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 581 + components: + - pos: -0.5,11.5 + parent: 1 + type: Transform + - uid: 582 + components: + - pos: 0.5,11.5 + parent: 1 + type: Transform + - uid: 583 + components: + - pos: 1.5,11.5 + parent: 1 + type: Transform + - uid: 584 + components: + - pos: 2.5,11.5 + parent: 1 + type: Transform + - uid: 585 + components: + - pos: 3.5,11.5 + parent: 1 + type: Transform + - uid: 586 + components: + - pos: 4.5,11.5 + parent: 1 + type: Transform + - uid: 587 + components: + - pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 588 + components: + - pos: 6.5,11.5 + parent: 1 + type: Transform + - uid: 589 + components: + - pos: 7.5,11.5 + parent: 1 + type: Transform + - uid: 590 + components: + - pos: 8.5,11.5 + parent: 1 + type: Transform + - uid: 591 + components: + - pos: 9.5,11.5 + parent: 1 + type: Transform + - uid: 592 + components: + - pos: 10.5,11.5 + parent: 1 + type: Transform + - uid: 593 + components: + - pos: 5.5,12.5 + parent: 1 + type: Transform + - uid: 594 + components: + - pos: 3.5,12.5 + parent: 1 + type: Transform + - uid: 595 + components: + - pos: 1.5,12.5 + parent: 1 + type: Transform + - uid: 596 + components: + - pos: 9.5,12.5 + parent: 1 + type: Transform + - uid: 597 + components: + - pos: 9.5,13.5 + parent: 1 + type: Transform + - uid: 598 + components: + - pos: 9.5,14.5 + parent: 1 + type: Transform + - uid: 599 + components: + - pos: 10.5,12.5 + parent: 1 + type: Transform + - uid: 600 + components: + - pos: 11.5,12.5 + parent: 1 + type: Transform + - uid: 601 + components: + - pos: 12.5,12.5 + parent: 1 + type: Transform + - uid: 602 + components: + - pos: 13.5,12.5 + parent: 1 + type: Transform + - uid: 603 + components: + - pos: 13.5,13.5 + parent: 1 + type: Transform + - uid: 604 + components: + - pos: 13.5,14.5 + parent: 1 + type: Transform + - uid: 605 + components: + - pos: 10.5,10.5 + parent: 1 + type: Transform + - uid: 606 + components: + - pos: 10.5,9.5 + parent: 1 + type: Transform + - uid: 607 + components: + - pos: 10.5,8.5 + parent: 1 + type: Transform + - uid: 608 + components: + - pos: 9.5,8.5 + parent: 1 + type: Transform + - uid: 609 + components: + - pos: 11.5,8.5 + parent: 1 + type: Transform + - uid: 610 + components: + - pos: 1.5,10.5 + parent: 1 + type: Transform + - uid: 611 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 612 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 613 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 614 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 615 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 616 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 617 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 618 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 619 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 620 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 621 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 622 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 623 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 624 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 625 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 626 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 627 + components: + - pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 628 + components: + - pos: 7.5,1.5 + parent: 1 + type: Transform + - uid: 629 + components: + - pos: 7.5,0.5 + parent: 1 + type: Transform + - uid: 630 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 631 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 632 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 633 + components: + - pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 634 + components: + - pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 635 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 636 + components: + - pos: 5.5,8.5 + parent: 1 + type: Transform + - uid: 637 + components: + - pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 638 + components: + - pos: 5.5,10.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 357 + components: + - pos: -2.5,8.5 + parent: 1 + type: Transform + - uid: 455 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 456 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 457 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 458 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 459 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 460 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 461 + components: + - pos: -4.5,8.5 + parent: 1 + type: Transform + - uid: 462 + components: + - pos: -5.5,8.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 259 + components: + - pos: -5.5,10.5 + parent: 1 + type: Transform + - uid: 464 + components: + - pos: -5.5,8.5 + parent: 1 + type: Transform + - uid: 465 + components: + - pos: -6.5,8.5 + parent: 1 + type: Transform + - uid: 466 + components: + - pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 467 + components: + - pos: -6.5,6.5 + parent: 1 + type: Transform + - uid: 468 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform + - uid: 469 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform + - uid: 470 + components: + - pos: -6.5,3.5 + parent: 1 + type: Transform + - uid: 471 + components: + - pos: -6.5,2.5 + parent: 1 + type: Transform + - uid: 472 + components: + - pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 473 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 474 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 477 + components: + - pos: -4.5,10.5 + parent: 1 + type: Transform + - uid: 478 + components: + - pos: -3.5,10.5 + parent: 1 + type: Transform + - uid: 479 + components: + - pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 480 + components: + - pos: -2.5,11.5 + parent: 1 + type: Transform + - uid: 481 + components: + - pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 482 + components: + - pos: -0.5,11.5 + parent: 1 + type: Transform + - uid: 483 + components: + - pos: 0.5,11.5 + parent: 1 + type: Transform + - uid: 484 + components: + - pos: 1.5,11.5 + parent: 1 + type: Transform + - uid: 485 + components: + - pos: 2.5,11.5 + parent: 1 + type: Transform + - uid: 486 + components: + - pos: 3.5,11.5 + parent: 1 + type: Transform + - uid: 487 + components: + - pos: 4.5,11.5 + parent: 1 + type: Transform + - uid: 488 + components: + - pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 489 + components: + - pos: 6.5,11.5 + parent: 1 + type: Transform + - uid: 490 + components: + - pos: 7.5,11.5 + parent: 1 + type: Transform + - uid: 491 + components: + - pos: 8.5,11.5 + parent: 1 + type: Transform + - uid: 492 + components: + - pos: 9.5,11.5 + parent: 1 + type: Transform + - uid: 493 + components: + - pos: 10.5,11.5 + parent: 1 + type: Transform + - uid: 494 + components: + - pos: 11.5,11.5 + parent: 1 + type: Transform + - uid: 495 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 496 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 497 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 498 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 499 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 500 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 501 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 502 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 503 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 504 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 505 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 506 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 507 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 508 + components: + - pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 509 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 510 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 511 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 512 + components: + - pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 513 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 514 + components: + - pos: 6.5,7.5 + parent: 1 + type: Transform + - uid: 515 + components: + - pos: 6.5,8.5 + parent: 1 + type: Transform + - uid: 516 + components: + - pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 517 + components: + - pos: 6.5,10.5 + parent: 1 + type: Transform + - uid: 518 + components: + - pos: 10.5,10.5 + parent: 1 + type: Transform + - uid: 519 + components: + - pos: 10.5,9.5 + parent: 1 + type: Transform + - uid: 520 + components: + - pos: 10.5,8.5 + parent: 1 + type: Transform + - uid: 521 + components: + - pos: 11.5,8.5 + parent: 1 + type: Transform + - uid: 522 + components: + - pos: 12.5,8.5 + parent: 1 + type: Transform + - uid: 523 + components: + - pos: 13.5,8.5 + parent: 1 + type: Transform + - uid: 524 + components: + - pos: 14.5,8.5 + parent: 1 + type: Transform + - uid: 525 + components: + - pos: 14.5,7.5 + parent: 1 + type: Transform +- proto: CableTerminal + entities: + - uid: 454 + components: + - rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 1 + type: Transform +- proto: CarpetBlack + entities: + - uid: 738 + components: + - pos: 20.5,0.5 + parent: 1 + type: Transform + - uid: 748 + components: + - pos: 20.5,1.5 + parent: 1 + type: Transform + - uid: 749 + components: + - pos: 20.5,2.5 + parent: 1 + type: Transform + - uid: 750 + components: + - pos: 21.5,0.5 + parent: 1 + type: Transform + - uid: 751 + components: + - pos: 21.5,1.5 + parent: 1 + type: Transform + - uid: 752 + components: + - pos: 21.5,2.5 + parent: 1 + type: Transform + - uid: 753 + components: + - pos: 20.5,3.5 + parent: 1 + type: Transform + - uid: 754 + components: + - pos: 20.5,4.5 + parent: 1 + type: Transform + - uid: 755 + components: + - pos: 20.5,6.5 + parent: 1 + type: Transform + - uid: 756 + components: + - pos: 20.5,7.5 + parent: 1 + type: Transform + - uid: 757 + components: + - pos: 20.5,8.5 + parent: 1 + type: Transform + - uid: 758 + components: + - pos: 20.5,9.5 + parent: 1 + type: Transform + - uid: 759 + components: + - pos: 20.5,10.5 + parent: 1 + type: Transform + - uid: 760 + components: + - pos: 20.5,11.5 + parent: 1 + type: Transform + - uid: 761 + components: + - pos: 20.5,12.5 + parent: 1 + type: Transform + - uid: 762 + components: + - pos: 20.5,13.5 + parent: 1 + type: Transform + - uid: 763 + components: + - pos: 20.5,14.5 + parent: 1 + type: Transform + - uid: 764 + components: + - pos: 21.5,14.5 + parent: 1 + type: Transform + - uid: 765 + components: + - pos: 21.5,13.5 + parent: 1 + type: Transform + - uid: 766 + components: + - pos: 21.5,12.5 + parent: 1 + type: Transform + - uid: 767 + components: + - pos: 21.5,11.5 + parent: 1 + type: Transform + - uid: 768 + components: + - pos: 22.5,14.5 + parent: 1 + type: Transform + - uid: 769 + components: + - pos: 22.5,13.5 + parent: 1 + type: Transform + - uid: 770 + components: + - pos: 22.5,12.5 + parent: 1 + type: Transform +- proto: Chair + entities: + - uid: 100 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 101 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 102 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,13.5 + parent: 1 + type: Transform + - uid: 103 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,12.5 + parent: 1 + type: Transform + - uid: 104 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 105 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,12.5 + parent: 1 + type: Transform + - uid: 106 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,13.5 + parent: 1 + type: Transform + - uid: 107 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,12.5 + parent: 1 + type: Transform + - uid: 108 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,13.5 + parent: 1 + type: Transform + - uid: 109 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,12.5 + parent: 1 + type: Transform + - uid: 110 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,13.5 + parent: 1 + type: Transform + - uid: 111 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,12.5 + parent: 1 + type: Transform + - uid: 397 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 1 + type: Transform + - uid: 398 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 1 + type: Transform +- proto: ChairFolding + entities: + - uid: 92 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 93 + components: + - rot: -1.5707963267948966 rad + pos: 8.753292,1.6042032 + parent: 1 + type: Transform + - uid: 98 + components: + - rot: -1.5707963267948966 rad + pos: -1.6543522,0.56803465 + parent: 1 + type: Transform + - uid: 434 + components: + - rot: 1.5707963267948966 rad + pos: 14.53786,8.595053 + parent: 1 + type: Transform +- proto: ChairFoldingSpawnFolded + entities: + - uid: 99 + components: + - rot: -1.5707963267948966 rad + pos: 7.9103436,1.9274096 + parent: 1 + type: Transform + - uid: 830 + components: + - pos: -11.251968,13.781197 + parent: 1 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 250 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,12.5 + parent: 1 + type: Transform +- proto: ChairOfficeLight + entities: + - uid: 831 + components: + - pos: -10.5,5.5 + parent: 1 + type: Transform + - uid: 832 + components: + - pos: 21.5,13.5 + parent: 1 + type: Transform +- proto: CheapLighter + entities: + - uid: 309 + components: + - rot: -1.5707963267948966 rad + pos: -4.6506205,12.663023 + parent: 1 + type: Transform +- proto: CigaretteSpent + entities: + - uid: 342 + components: + - rot: -1.5707963267948966 rad + pos: -0.6826811,15.908279 + parent: 1 + type: Transform + - uid: 343 + components: + - rot: -1.5707963267948966 rad + pos: -0.6201811,15.861404 + parent: 1 + type: Transform + - uid: 344 + components: + - rot: 3.141592653589793 rad + pos: -0.43268108,15.720779 + parent: 1 + type: Transform + - uid: 345 + components: + - rot: 3.141592653589793 rad + pos: 9.656952,18.269085 + parent: 1 + type: Transform + - uid: 346 + components: + - rot: 3.141592653589793 rad + pos: 4.3288264,16.06596 + parent: 1 + type: Transform +- proto: CigPackBlue + entities: + - uid: 308 + components: + - rot: -1.5707963267948966 rad + pos: -4.6037455,12.866148 + parent: 1 + type: Transform +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 300 + components: + - pos: -3.5,17.5 + parent: 1 + type: Transform +- proto: ClosetToolFilled + entities: + - uid: 299 + components: + - pos: -4.5,17.5 + parent: 1 + type: Transform +- proto: ClothingEyesTelegnosisSpectacles + entities: + - uid: 331 + components: + - pos: 4.4936104,5.599332 + parent: 1 + type: Transform +- proto: ClothingOuterApronChef + entities: + - uid: 433 + components: + - pos: 14.696232,6.624119 + parent: 1 + type: Transform +- proto: CluwneHorn + entities: + - uid: 807 + components: + - rot: -1.5707963267948966 rad + pos: -2.768421,-1.2801309 + parent: 1 + type: Transform +- proto: ComfyChair + entities: + - uid: 251 + components: + - pos: -2.5,13.5 + parent: 1 + type: Transform +- proto: ComputerBroken + entities: + - uid: 800 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,17.5 + parent: 1 + type: Transform +- proto: ComputerTelevision + entities: + - uid: 246 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform +- proto: CrateEmptySpawner + entities: + - uid: 792 + components: + - pos: -3.5,22.5 + parent: 1 + type: Transform + - uid: 793 + components: + - pos: -5.5,22.5 + parent: 1 + type: Transform + - uid: 794 + components: + - pos: 1.5,25.5 + parent: 1 + type: Transform +- proto: CrateFreezer + entities: + - uid: 405 + components: + - pos: 12.5,4.5 + parent: 1 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 409 + - 408 + - 407 + - 406 + - 410 + - 411 + - 412 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: CrateTrashCart + entities: + - uid: 349 + components: + - pos: 16.5,10.5 + parent: 1 + type: Transform +- proto: CrateTrashCartFilled + entities: + - uid: 234 + components: + - pos: -0.5,15.5 + parent: 1 + type: Transform + - uid: 235 + components: + - pos: 0.5,15.5 + parent: 1 + type: Transform + - uid: 348 + components: + - pos: 15.5,10.5 + parent: 1 + type: Transform +- proto: CrayonBlue + entities: + - uid: 322 + components: + - rot: -1.5707963267948966 rad + pos: -2.306965,1.5644312 + parent: 1 + type: Transform +- proto: CrayonOrange + entities: + - uid: 323 + components: + - rot: 3.141592653589793 rad + pos: -2.76009,1.6425562 + parent: 1 + type: Transform +- proto: CrayonPurple + entities: + - uid: 324 + components: + - rot: 3.141592653589793 rad + pos: -2.713215,1.4706812 + parent: 1 + type: Transform +- proto: CrowbarRed + entities: + - uid: 301 + components: + - pos: -2.581973,17.531961 + parent: 1 + type: Transform +- proto: DisposalUnit + entities: + - uid: 181 + components: + - pos: 9.5,9.5 + parent: 1 + type: Transform + - uid: 182 + components: + - pos: 12.5,11.5 + parent: 1 + type: Transform +- proto: DrinkBeerBottleFull + entities: + - uid: 328 + components: + - pos: -2.2461946,12.6793165 + parent: 1 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 50 + reagents: + - data: null + ReagentId: Beer + Quantity: 25 + type: SolutionContainerManager +- proto: DrinkBlackRussianGlass + entities: + - uid: 310 + components: + - pos: -4.6662455,12.131773 + parent: 1 + type: Transform +- proto: DrinkChangelingStingCan + entities: + - uid: 435 + components: + - pos: 14.959735,8.282553 + parent: 1 + type: Transform +- proto: EggBoxBroken + entities: + - uid: 806 + components: + - rot: -1.5707963267948966 rad + pos: 15.144078,5.536297 + parent: 1 + type: Transform +- proto: ExtinguisherCabinetFilled + entities: + - uid: 268 + components: + - pos: 7.5,14.5 + parent: 1 + type: Transform +- proto: FaxMachineBase + entities: + - uid: 298 + components: + - pos: -4.5,13.5 + parent: 1 + type: Transform +- proto: FenceMetalBroken + entities: + - uid: 238 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,18.5 + parent: 1 + type: Transform +- proto: FenceMetalCorner + entities: + - uid: 2 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,2.5 + parent: 1 + type: Transform + - uid: 237 + components: + - pos: 2.5,18.5 + parent: 1 + type: Transform +- proto: FenceMetalGate + entities: + - uid: 242 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,16.5 + parent: 1 + type: Transform + - uid: 243 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,17.5 + parent: 1 + type: Transform + - uid: 350 + components: + - pos: -5.5,2.5 + parent: 1 + type: Transform +- proto: FenceMetalStraight + entities: + - uid: 239 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,18.5 + parent: 1 + type: Transform + - uid: 240 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,18.5 + parent: 1 + type: Transform + - uid: 241 + components: + - rot: 3.141592653589793 rad + pos: 2.5,15.5 + parent: 1 + type: Transform + - uid: 351 + components: + - pos: -6.5,8.5 + parent: 1 + type: Transform + - uid: 352 + components: + - pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 353 + components: + - pos: -6.5,6.5 + parent: 1 + type: Transform + - uid: 354 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform + - uid: 355 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform + - uid: 356 + components: + - pos: -6.5,3.5 + parent: 1 + type: Transform + - uid: 369 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + type: Transform +- proto: FigureSpawner + entities: + - uid: 280 + components: + - pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 281 + components: + - pos: 9.5,0.5 + parent: 1 + type: Transform +- proto: filingCabinetDrawerRandom + entities: + - uid: 317 + components: + - pos: -4.5,15.5 + parent: 1 + type: Transform + - uid: 833 + components: + - pos: 20.5,14.5 + parent: 1 + type: Transform +- proto: filingCabinetRandom + entities: + - uid: 834 + components: + - pos: 20.5,13.5 + parent: 1 + type: Transform +- proto: FloorDrain + entities: + - uid: 199 + components: + - pos: 10.5,15.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 402 + components: + - pos: 13.5,5.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 736 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures +- proto: FloraTree02 + entities: + - uid: 864 + components: + - pos: 10.259072,-3.4377544 + parent: 1 + type: Transform +- proto: FloraTree03 + entities: + - uid: 863 + components: + - pos: -1.8645909,-3.5941133 + parent: 1 + type: Transform +- proto: FloraTree06 + entities: + - uid: 862 + components: + - pos: -10.908523,-3.53157 + parent: 1 + type: Transform +- proto: FloraTreeStump + entities: + - uid: 865 + components: + - pos: 22.31968,-3.3752112 + parent: 1 + type: Transform + - uid: 866 + components: + - pos: -1.8622694,-8.572649 + parent: 1 + type: Transform +- proto: FoodBowlBig + entities: + - uid: 419 + components: + - pos: 9.697851,4.6808515 + parent: 1 + type: Transform +- proto: FoodButter + entities: + - uid: 410 + components: + - flags: InContainer + type: MetaData + - parent: 405 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 411 + components: + - flags: InContainer + type: MetaData + - parent: 405 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 412 + components: + - flags: InContainer + type: MetaData + - parent: 405 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 421 + components: + - pos: 13.338088,6.6178355 + parent: 1 + type: Transform +- proto: FoodCornTrash + entities: + - uid: 436 + components: + - rot: 1.5707963267948966 rad + pos: 17.12719,11.130048 + parent: 1 + type: Transform + - uid: 821 + components: + - rot: 3.141592653589793 rad + pos: -8.513638,2.6473565 + parent: 1 + type: Transform + - uid: 822 + components: + - rot: 1.5707963267948966 rad + pos: 6.292519,23.938034 + parent: 1 + type: Transform +- proto: FoodDough + entities: + - uid: 408 + components: + - flags: InContainer + type: MetaData + - parent: 405 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodDoughPastryBaseRaw + entities: + - uid: 406 + components: + - flags: InContainer + type: MetaData + - parent: 405 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 407 + components: + - flags: InContainer + type: MetaData + - parent: 405 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodDoughPie + entities: + - uid: 409 + components: + - flags: InContainer + type: MetaData + - parent: 405 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodFrozenPopsicleTrash + entities: + - uid: 817 + components: + - pos: 17.423351,4.104603 + parent: 1 + type: Transform + - uid: 818 + components: + - rot: -1.5707963267948966 rad + pos: 14.135393,17.099281 + parent: 1 + type: Transform + - uid: 819 + components: + - rot: -1.5707963267948966 rad + pos: 13.062476,17.130552 + parent: 1 + type: Transform + - uid: 820 + components: + - rot: 3.141592653589793 rad + pos: -8.79125,17.74155 + parent: 1 + type: Transform +- proto: FoodFrozenSnowconeTrash + entities: + - uid: 811 + components: + - rot: 1.5707963267948966 rad + pos: -8.64763,2.4203968 + parent: 1 + type: Transform + - uid: 812 + components: + - rot: 1.5707963267948966 rad + pos: -7.363405,10.249863 + parent: 1 + type: Transform + - uid: 813 + components: + - pos: -8.790487,18.701561 + parent: 1 + type: Transform + - uid: 814 + components: + - pos: -8.696737,18.451387 + parent: 1 + type: Transform + - uid: 815 + components: + - pos: 18.68596,10.913073 + parent: 1 + type: Transform + - uid: 816 + components: + - pos: 21.13875,-1.431942 + parent: 1 + type: Transform +- proto: FoodPizzaDankSlice + entities: + - uid: 327 + components: + - pos: -2.6055696,12.7886915 + parent: 1 + type: Transform +- proto: FoodPlateSmallTrash + entities: + - uid: 801 + components: + - pos: 11.277031,4.514102 + parent: 1 + type: Transform + - uid: 802 + components: + - pos: 15.360365,0.8761585 + parent: 1 + type: Transform +- proto: FoodTinBeansTrash + entities: + - uid: 297 + components: + - rot: -1.5707963267948966 rad + pos: 5.8891764,15.452858 + parent: 1 + type: Transform + - uid: 808 + components: + - rot: -1.5707963267948966 rad + pos: -8.328472,18.029413 + parent: 1 + type: Transform +- proto: FoodTinMRETrash + entities: + - uid: 809 + components: + - rot: 1.5707963267948966 rad + pos: 17.363747,-1.0789683 + parent: 1 + type: Transform +- proto: FoodTinPeachesTrash + entities: + - uid: 810 + components: + - rot: 1.5707963267948966 rad + pos: -6.5330462,1.6386037 + parent: 1 + type: Transform +- proto: GasCanisterBrokenBase + entities: + - uid: 799 + components: + - pos: 7.5,23.5 + parent: 1 + type: Transform +- proto: GeneratorRTG + entities: + - uid: 358 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 463 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 4 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 5 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 6 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 7 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 51 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 52 + components: + - pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 84 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 85 + components: + - pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 86 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 87 + components: + - pos: 9.5,-0.5 + parent: 1 + type: Transform + - uid: 374 + components: + - pos: 12.5,-0.5 + parent: 1 + type: Transform + - uid: 375 + components: + - pos: 15.5,-0.5 + parent: 1 + type: Transform + - uid: 731 + components: + - pos: 20.5,-0.5 + parent: 1 + type: Transform +- proto: GrilleBroken + entities: + - uid: 732 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-0.5 + parent: 1 + type: Transform +- proto: HatSpawner + entities: + - uid: 277 + components: + - pos: -0.5,13.5 + parent: 1 + type: Transform +- proto: Joint + entities: + - uid: 429 + components: + - pos: 14.63161,8.266928 + parent: 1 + type: Transform +- proto: Jug + entities: + - uid: 264 + components: + - name: jug (Bleach) + type: MetaData + - pos: -0.5863483,10.646547 + parent: 1 + type: Transform + - solutions: + beaker: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 200 + reagents: + - data: null + ReagentId: Bleach + Quantity: 175 + type: SolutionContainerManager + - currentLabel: Bleach + type: Label + - uid: 265 + components: + - name: jug (Ammonia) + type: MetaData + - pos: -0.3519733,10.599672 + parent: 1 + type: Transform + - solutions: + beaker: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 200 + reagents: + - data: null + ReagentId: Ammonia + Quantity: 150 + type: SolutionContainerManager + - currentLabel: Ammonia + type: Label + - uid: 267 + components: + - name: jug (Super Suds) + type: MetaData + - pos: 7.45502,5.636329 + parent: 1 + type: Transform + - solutions: + beaker: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 200 + reagents: + - data: null + ReagentId: FoamingAgent + Quantity: 165 + type: SolutionContainerManager + - currentLabel: Super Suds + type: Label + - uid: 338 + components: + - name: jug (Detergent) + type: MetaData + - pos: -0.6285926,5.559648 + parent: 1 + type: Transform + - solutions: + beaker: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 200 + reagents: + - data: null + ReagentId: SoapReagent + Quantity: 100 + type: SolutionContainerManager + - currentLabel: Detergent + type: Label +- proto: KitchenReagentGrinder + entities: + - uid: 418 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform +- proto: LightTubeBroken + entities: + - uid: 803 + components: + - pos: 8.99032,22.604883 + parent: 1 + type: Transform + - uid: 804 + components: + - rot: -1.5707963267948966 rad + pos: 16.313236,20.551373 + parent: 1 + type: Transform +- proto: MachineFrameDestroyed + entities: + - uid: 826 + components: + - pos: 6.5,22.5 + parent: 1 + type: Transform + - uid: 827 + components: + - pos: -10.5,4.5 + parent: 1 + type: Transform + - uid: 828 + components: + - pos: -11.5,10.5 + parent: 1 + type: Transform + - uid: 829 + components: + - pos: -11.5,12.5 + parent: 1 + type: Transform +- proto: MaintenanceFluffSpawner + entities: + - uid: 275 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 276 + components: + - pos: 6.5,7.5 + parent: 1 + type: Transform +- proto: MatchstickSpent + entities: + - uid: 347 + components: + - rot: 1.5707963267948966 rad + pos: 5.413896,15.124886 + parent: 1 + type: Transform +- proto: MaterialCardboard10 + entities: + - uid: 448 + components: + - pos: 14.569749,9.537859 + parent: 1 + type: Transform +- proto: MaterialWoodPlank1 + entities: + - uid: 839 + components: + - pos: 21.466198,11.830915 + parent: 1 + type: Transform + - uid: 840 + components: + - rot: -1.5707963267948966 rad + pos: 22.184948,13.227718 + parent: 1 + type: Transform + - uid: 841 + components: + - rot: 3.141592653589793 rad + pos: 21.278698,14.280534 + parent: 1 + type: Transform + - uid: 842 + components: + - rot: 3.141592653589793 rad + pos: 21.497448,14.40562 + parent: 1 + type: Transform +- proto: MedkitFilled + entities: + - uid: 307 + components: + - pos: -5.4631205,15.616148 + parent: 1 + type: Transform +- proto: MegaSprayBottle + entities: + - uid: 306 + components: + - pos: 7.809475,6.565619 + parent: 1 + type: Transform +- proto: MetalDoor + entities: + - uid: 135 + components: + - pos: 14.5,12.5 + parent: 1 + type: Transform + - uid: 136 + components: + - pos: 14.5,14.5 + parent: 1 + type: Transform + - uid: 179 + components: + - pos: 9.5,7.5 + parent: 1 + type: Transform + - uid: 180 + components: + - pos: 11.5,7.5 + parent: 1 + type: Transform +- proto: Mirror + entities: + - uid: 187 + components: + - pos: 11.5,10.5 + parent: 1 + type: Transform + - uid: 188 + components: + - pos: 12.5,10.5 + parent: 1 + type: Transform + - uid: 189 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,13.5 + parent: 1 + type: Transform + - uid: 190 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,14.5 + parent: 1 + type: Transform +- proto: MopBucketFull + entities: + - uid: 200 + components: + - pos: 10.218847,16.03029 + parent: 1 + type: Transform +- proto: MopItem + entities: + - uid: 201 + components: + - pos: 10.500097,15.608416 + parent: 1 + type: Transform +- proto: MousetrapArmed + entities: + - uid: 425 + components: + - rot: -1.5707963267948966 rad + pos: 13.963088,6.0084605 + parent: 1 + type: Transform + - type: StepTriggerActive +- proto: MysteryFigureBoxTrash + entities: + - uid: 236 + components: + - pos: 1.2163138,15.302965 + parent: 1 + type: Transform +- proto: Paper + entities: + - uid: 326 + components: + - pos: -2.5335689,1.1707877 + parent: 1 + type: Transform + - content: >2- + + + + + + + Boobs + type: Paper +- proto: PestSpray + entities: + - uid: 207 + components: + - pos: 8.312597,15.545916 + parent: 1 + type: Transform +- proto: Plunger + entities: + - uid: 211 + components: + - pos: 8.891491,16.108416 + parent: 1 + type: Transform +- proto: PosterBroken + entities: + - uid: 272 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform +- proto: PosterContrabandBeachStarYamamoto + entities: + - uid: 269 + components: + - pos: -4.5,14.5 + parent: 1 + type: Transform +- proto: PosterContrabandCybersun600 + entities: + - uid: 428 + components: + - pos: 14.539026,10.474039 + parent: 1 + type: Transform +- proto: PosterContrabandDonk + entities: + - uid: 270 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform +- proto: PosterContrabandDonutCorp + entities: + - uid: 271 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform +- proto: PosterContrabandSpaceUp + entities: + - uid: 273 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform +- proto: PosterContrabandTheBigGasTruth + entities: + - uid: 274 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform +- proto: PosterContrabandUnreadableAnnouncement + entities: + - uid: 855 + components: + - pos: -1.5,21.5 + parent: 1 + type: Transform +- proto: PosterLegitCleanliness + entities: + - uid: 415 + components: + - pos: 12.5,5.5 + parent: 1 + type: Transform +- proto: PosterLegitMoreBread + entities: + - uid: 416 + components: + - pos: 11.5,5.5 + parent: 1 + type: Transform +- proto: PosterLegitPieSlice + entities: + - uid: 400 + components: + - rot: 1.5707963267948966 rad + pos: 11.5453615,-0.45334828 + parent: 1 + type: Transform +- proto: PosterLegitSoftCapPopArt + entities: + - uid: 212 + components: + - pos: 10.5,14.5 + parent: 1 + type: Transform +- proto: PosterLegitVacation + entities: + - uid: 868 + components: + - pos: 9.5,17.5 + parent: 1 + type: Transform +- proto: PosterLegitWalk + entities: + - uid: 213 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform +- proto: PottedPlantRandom + entities: + - uid: 176 + components: + - pos: 10.5,13.5 + parent: 1 + type: Transform +- proto: PottedPlantRandomPlastic + entities: + - uid: 318 + components: + - pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 319 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 320 + components: + - pos: 6.5,0.5 + parent: 1 + type: Transform +- proto: Poweredlight + entities: + - uid: 649 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,4.5 + parent: 1 + type: Transform + - uid: 650 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,4.5 + parent: 1 + type: Transform + - uid: 651 + components: + - rot: 3.141592653589793 rad + pos: 11.5,0.5 + parent: 1 + type: Transform + - uid: 653 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,11.5 + parent: 1 + type: Transform + - uid: 654 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,16.5 + parent: 1 + type: Transform + - uid: 655 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 656 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,13.5 + parent: 1 + type: Transform + - uid: 657 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 658 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,8.5 + parent: 1 + type: Transform + - uid: 659 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 660 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 661 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 662 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 669 + components: + - pos: 11.5,-1.5 + parent: 1 + type: Transform +- proto: PoweredLightBlueInterior + entities: + - uid: 647 + components: + - rot: 3.141592653589793 rad + pos: -0.5,15.5 + parent: 1 + type: Transform + - uid: 648 + components: + - rot: 3.141592653589793 rad + pos: 16.5,8.5 + parent: 1 + type: Transform +- proto: PoweredLightPostSmall + entities: + - uid: 449 + components: + - pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 450 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 451 + components: + - pos: 16.5,-3.5 + parent: 1 + type: Transform +- proto: PoweredSmallLight + entities: + - uid: 639 + components: + - pos: 15.5,14.5 + parent: 1 + type: Transform + - uid: 640 + components: + - pos: 15.5,12.5 + parent: 1 + type: Transform + - uid: 641 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,13.5 + parent: 1 + type: Transform + - uid: 642 + components: + - rot: 3.141592653589793 rad + pos: 10.5,8.5 + parent: 1 + type: Transform + - uid: 643 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,6.5 + parent: 1 + type: Transform + - uid: 644 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,6.5 + parent: 1 + type: Transform + - uid: 645 + components: + - pos: 9.5,16.5 + parent: 1 + type: Transform + - uid: 646 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,12.5 + parent: 1 + type: Transform + - uid: 652 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + type: Transform +- proto: Puddle + entities: + - uid: 333 + components: + - pos: 5.5,16.5 + parent: 1 + type: Transform + - solutions: + puddle: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 1000 + reagents: + - data: null + ReagentId: Moonshine + Quantity: 25 + type: SolutionContainerManager + - active: False + type: StepTrigger + - uid: 336 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - solutions: + puddle: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 1000 + reagents: + - data: null + ReagentId: SpaceLube + Quantity: 18 + type: SolutionContainerManager + - modifier: 0.15 + type: TileFrictionModifier + - uid: 847 + components: + - pos: 18.5,-9.5 + parent: 1 + type: Transform + - solutions: + puddle: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 1000 + reagents: + - data: null + ReagentId: Whiskey + Quantity: 45 + type: SolutionContainerManager + - active: False + type: StepTrigger +- proto: PuddleFlour + entities: + - uid: 426 + components: + - pos: 10.5,4.5 + parent: 1 + type: Transform + - uid: 427 + components: + - pos: 13.5,4.5 + parent: 1 + type: Transform + - uid: 430 + components: + - pos: 10.5,3.5 + parent: 1 + type: Transform +- proto: PuddleVomit + entities: + - uid: 337 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,18.5 + parent: 1 + type: Transform +- proto: Rack + entities: + - uid: 131 + components: + - pos: -0.5,10.5 + parent: 1 + type: Transform + - uid: 132 + components: + - pos: 7.5,10.5 + parent: 1 + type: Transform + - uid: 202 + components: + - pos: 8.5,15.5 + parent: 1 + type: Transform + - uid: 203 + components: + - pos: 8.5,16.5 + parent: 1 + type: Transform + - uid: 215 + components: + - pos: -5.5,15.5 + parent: 1 + type: Transform + - uid: 216 + components: + - pos: -5.5,16.5 + parent: 1 + type: Transform + - uid: 217 + components: + - pos: -5.5,17.5 + parent: 1 + type: Transform + - uid: 218 + components: + - pos: -2.5,17.5 + parent: 1 + type: Transform + - uid: 413 + components: + - pos: 13.5,6.5 + parent: 1 + type: Transform + - uid: 414 + components: + - pos: 14.5,6.5 + parent: 1 + type: Transform +- proto: RagItem + entities: + - uid: 332 + components: + - pos: 2.38271,6.4110775 + parent: 1 + type: Transform +- proto: RandomAmmoBox + entities: + - uid: 771 + components: + - pos: -5.5,11.5 + parent: 1 + type: Transform +- proto: RandomBoards + entities: + - uid: 341 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,15.5 + parent: 1 + type: Transform +- proto: RandomBook + entities: + - uid: 321 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,13.5 + parent: 1 + type: Transform +- proto: RandomBox + entities: + - uid: 446 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,17.5 + parent: 1 + type: Transform + - uid: 447 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,16.5 + parent: 1 + type: Transform + - uid: 783 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,22.5 + parent: 1 + type: Transform + - uid: 784 + components: + - rot: 3.141592653589793 rad + pos: -1.5,24.5 + parent: 1 + type: Transform + - uid: 785 + components: + - rot: 3.141592653589793 rad + pos: 1.5,24.5 + parent: 1 + type: Transform +- proto: RandomDrinkBottle + entities: + - uid: 311 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,11.5 + parent: 1 + type: Transform +- proto: RandomFoodBakedSingle + entities: + - uid: 394 + components: + - pos: 12.5,2.5 + parent: 1 + type: Transform + - uid: 395 + components: + - pos: 13.5,2.5 + parent: 1 + type: Transform +- proto: RandomFoodBakedWhole + entities: + - uid: 392 + components: + - pos: 11.5,2.5 + parent: 1 + type: Transform + - uid: 393 + components: + - pos: 14.5,2.5 + parent: 1 + type: Transform +- proto: RandomItem + entities: + - uid: 278 + components: + - pos: 5.5,13.5 + parent: 1 + type: Transform + - uid: 445 + components: + - pos: 16.5,17.5 + parent: 1 + type: Transform +- proto: RandomPosterContraband + entities: + - uid: 851 + components: + - pos: 15.5,19.5 + parent: 1 + type: Transform + - uid: 852 + components: + - pos: 16.5,19.5 + parent: 1 + type: Transform + - uid: 853 + components: + - pos: 7.5,21.5 + parent: 1 + type: Transform + - uid: 854 + components: + - pos: -6.5,18.5 + parent: 1 + type: Transform +- proto: RandomSoap + entities: + - uid: 266 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform +- proto: RandomSpawner + entities: + - uid: 283 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 284 + components: + - pos: 6.5,10.5 + parent: 1 + type: Transform + - uid: 285 + components: + - pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 286 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 287 + components: + - pos: 12.5,8.5 + parent: 1 + type: Transform + - uid: 288 + components: + - pos: 12.5,12.5 + parent: 1 + type: Transform + - uid: 289 + components: + - pos: -0.5,17.5 + parent: 1 + type: Transform + - uid: 290 + components: + - pos: 0.5,16.5 + parent: 1 + type: Transform + - uid: 291 + components: + - pos: 1.5,15.5 + parent: 1 + type: Transform + - uid: 292 + components: + - pos: 4.5,15.5 + parent: 1 + type: Transform + - uid: 293 + components: + - pos: 6.5,15.5 + parent: 1 + type: Transform + - uid: 294 + components: + - pos: 6.5,16.5 + parent: 1 + type: Transform + - uid: 295 + components: + - pos: 5.5,17.5 + parent: 1 + type: Transform + - uid: 296 + components: + - pos: 6.5,17.5 + parent: 1 + type: Transform + - uid: 437 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,9.5 + parent: 1 + type: Transform + - uid: 438 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,7.5 + parent: 1 + type: Transform + - uid: 439 + components: + - pos: 17.5,1.5 + parent: 1 + type: Transform + - uid: 440 + components: + - pos: 12.5,17.5 + parent: 1 + type: Transform + - uid: 441 + components: + - pos: 12.5,16.5 + parent: 1 + type: Transform + - uid: 442 + components: + - pos: 13.5,16.5 + parent: 1 + type: Transform + - uid: 443 + components: + - pos: 17.5,17.5 + parent: 1 + type: Transform + - uid: 663 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 664 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,7.5 + parent: 1 + type: Transform + - uid: 665 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,9.5 + parent: 1 + type: Transform + - uid: 666 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,19.5 + parent: 1 + type: Transform + - uid: 667 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 668 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 786 + components: + - rot: 3.141592653589793 rad + pos: -2.5,22.5 + parent: 1 + type: Transform + - uid: 787 + components: + - rot: 3.141592653589793 rad + pos: -3.5,24.5 + parent: 1 + type: Transform + - uid: 788 + components: + - rot: 3.141592653589793 rad + pos: -2.5,25.5 + parent: 1 + type: Transform + - uid: 789 + components: + - rot: 3.141592653589793 rad + pos: 0.5,24.5 + parent: 1 + type: Transform + - uid: 790 + components: + - rot: 3.141592653589793 rad + pos: 0.5,22.5 + parent: 1 + type: Transform + - uid: 856 + components: + - pos: 3.5,24.5 + parent: 1 + type: Transform + - uid: 857 + components: + - pos: 4.5,22.5 + parent: 1 + type: Transform + - uid: 858 + components: + - pos: 3.5,21.5 + parent: 1 + type: Transform + - uid: 859 + components: + - pos: -5.5,-3.5 + parent: 1 + type: Transform + - uid: 860 + components: + - pos: -5.5,-9.5 + parent: 1 + type: Transform + - uid: 861 + components: + - pos: 23.5,-5.5 + parent: 1 + type: Transform +- proto: RandomSpawner100 + entities: + - uid: 282 + components: + - pos: 8.5,0.5 + parent: 1 + type: Transform +- proto: RandomVendingDrinks + entities: + - uid: 48 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform +- proto: RandomVendingSnacks + entities: + - uid: 55 + components: + - pos: 3.5,9.5 + parent: 1 + type: Transform +- proto: ReagentContainerFlour + entities: + - uid: 422 + components: + - pos: 13.634963,6.8209605 + parent: 1 + type: Transform +- proto: ReagentContainerSugar + entities: + - uid: 423 + components: + - pos: 13.650588,6.5709605 + parent: 1 + type: Transform +- proto: RollingPin + entities: + - uid: 417 + components: + - pos: 9.432226,4.5714765 + parent: 1 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 791 + components: + - pos: 1.5,23.5 + parent: 1 + type: Transform +- proto: SalvageMobSpawner75 + entities: + - uid: 782 + components: + - pos: 12.5,3.5 + parent: 1 + type: Transform +- proto: SalvagePartsSpawnerLow + entities: + - uid: 335 + components: + - pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 340 + components: + - pos: -2.5,17.5 + parent: 1 + type: Transform + - uid: 772 + components: + - pos: -4.5,8.5 + parent: 1 + type: Transform +- proto: SalvagePartsT3T4Spawner + entities: + - uid: 773 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform +- proto: SchoolgirlUniformSpawner + entities: + - uid: 339 + components: + - rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 1 + type: Transform +- proto: ShardGlass + entities: + - uid: 734 + components: + - rot: 3.141592653589793 rad + pos: 21.405197,-0.5013783 + parent: 1 + type: Transform + - uid: 735 + components: + - rot: 3.141592653589793 rad + pos: 21.801031,-1.2518995 + parent: 1 + type: Transform + - uid: 795 + components: + - pos: 6.601184,24.178837 + parent: 1 + type: Transform + - uid: 796 + components: + - pos: 8.038684,22.636099 + parent: 1 + type: Transform + - uid: 797 + components: + - pos: 13.965768,22.542282 + parent: 1 + type: Transform + - uid: 798 + components: + - pos: 15.861601,20.457502 + parent: 1 + type: Transform + - uid: 843 + components: + - pos: -10.296373,-4.1626062 + parent: 1 + type: Transform + - uid: 844 + components: + - pos: -1.5255394,-7.394017 + parent: 1 + type: Transform + - uid: 845 + components: + - pos: 12.02829,-4.5675564 + parent: 1 + type: Transform +- proto: ShuttersFrame + entities: + - uid: 696 + components: + - pos: 0.5,21.5 + parent: 1 + type: Transform +- proto: ShuttersNormal + entities: + - uid: 214 + components: + - pos: -1.5,16.5 + parent: 1 + type: Transform + - links: + - 303 + type: DeviceLinkSink + - uid: 697 + components: + - pos: -0.5,21.5 + parent: 1 + type: Transform +- proto: SignalSwitchDirectional + entities: + - uid: 303 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,15.5 + parent: 1 + type: Transform + - linkedPorts: + 214: + - On: Open + - Off: Close + type: DeviceLinkSource +- proto: SignDirectionalWash + entities: + - uid: 175 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,12.5 + parent: 1 + type: Transform +- proto: SignElectricalMed + entities: + - uid: 849 + components: + - pos: -6.5,9.5 + parent: 1 + type: Transform + - uid: 850 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform +- proto: SignNosmoking + entities: + - uid: 848 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform +- proto: Sink + entities: + - uid: 185 + components: + - pos: 11.5,9.5 + parent: 1 + type: Transform + - uid: 401 + components: + - rot: 1.5707963267948966 rad + pos: 13.528969,5.555474 + parent: 1 + type: Transform +- proto: SinkEmpty + entities: + - uid: 183 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,13.5 + parent: 1 + type: Transform + - uid: 184 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,14.5 + parent: 1 + type: Transform + - uid: 186 + components: + - pos: 12.5,9.5 + parent: 1 + type: Transform +- proto: SinkWide + entities: + - uid: 209 + components: + - pos: 10.5,16.5 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 453 + components: + - pos: -2.5,8.5 + parent: 1 + type: Transform +- proto: SpaceCash + entities: + - uid: 312 + components: + - pos: -5.2699714,12.996207 + parent: 1 + type: Transform + - uid: 313 + components: + - pos: -5.2699714,12.996207 + parent: 1 + type: Transform + - uid: 314 + components: + - pos: -5.2699714,12.996207 + parent: 1 + type: Transform + - uid: 315 + components: + - pos: -5.2699714,12.996207 + parent: 1 + type: Transform +- proto: SpawnMobAdultSlimesBlueAngry + entities: + - uid: 775 + components: + - pos: 0.5,13.5 + parent: 1 + type: Transform + - uid: 776 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform +- proto: SpawnMobAdultSlimesGreenAngry + entities: + - uid: 777 + components: + - pos: 7.5,1.5 + parent: 1 + type: Transform + - uid: 778 + components: + - pos: 11.5,8.5 + parent: 1 + type: Transform +- proto: SpawnMobAdultSlimesYellowAngry + entities: + - uid: 779 + components: + - pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 780 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform +- proto: SpawnMobCatSpace + entities: + - uid: 867 + components: + - pos: 4.5,17.5 + parent: 1 + type: Transform +- proto: SpawnMobSpiderSalvage + entities: + - uid: 781 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform +- proto: SpawnVendingMachineRestockFoodDrink + entities: + - uid: 244 + components: + - pos: -5.5,17.5 + parent: 1 + type: Transform + - uid: 245 + components: + - pos: -5.5,16.5 + parent: 1 + type: Transform +- proto: SprayBottleSpaceCleaner + entities: + - uid: 205 + components: + - pos: 8.515722,15.561541 + parent: 1 + type: Transform + - uid: 206 + components: + - pos: 8.734472,15.467791 + parent: 1 + type: Transform + - uid: 424 + components: + - pos: 14.384963,6.5397105 + parent: 1 + type: Transform +- proto: StrangePill + entities: + - uid: 329 + components: + - name: pill + type: MetaData + - pos: 15.188146,12.1793165 + parent: 1 + type: Transform + - uid: 330 + components: + - name: pill + type: MetaData + - pos: 15.219396,12.3355665 + parent: 1 + type: Transform +- proto: SubstationBasic + entities: + - uid: 452 + components: + - pos: -5.5,8.5 + parent: 1 + type: Transform +- proto: Table + entities: + - uid: 19 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 20 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 27 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 28 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 35 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 36 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 43 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 44 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 403 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 404 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform +- proto: TableCounterMetal + entities: + - uid: 378 + components: + - pos: 11.5,2.5 + parent: 1 + type: Transform + - uid: 379 + components: + - pos: 12.5,2.5 + parent: 1 + type: Transform + - uid: 380 + components: + - pos: 13.5,2.5 + parent: 1 + type: Transform + - uid: 381 + components: + - pos: 14.5,2.5 + parent: 1 + type: Transform +- proto: TableFrame + entities: + - uid: 836 + components: + - pos: 21.5,12.5 + parent: 1 + type: Transform + - uid: 837 + components: + - pos: 22.5,12.5 + parent: 1 + type: Transform + - uid: 838 + components: + - pos: 22.5,13.5 + parent: 1 + type: Transform +- proto: TableGlass + entities: + - uid: 94 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 95 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 96 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 97 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 396 + components: + - pos: 11.5,-1.5 + parent: 1 + type: Transform +- proto: TableWood + entities: + - uid: 325 + components: + - pos: -2.5,12.5 + parent: 1 + type: Transform +- proto: TableWoodReinforced + entities: + - uid: 247 + components: + - pos: -4.5,13.5 + parent: 1 + type: Transform + - uid: 248 + components: + - pos: -4.5,12.5 + parent: 1 + type: Transform + - uid: 249 + components: + - pos: -4.5,11.5 + parent: 1 + type: Transform + - uid: 835 + components: + - pos: 20.5,12.5 + parent: 1 + type: Transform +- proto: ToiletDirtyWater + entities: + - uid: 134 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,14.5 + parent: 1 + type: Transform + - uid: 177 + components: + - rot: 3.141592653589793 rad + pos: 11.5,6.5 + parent: 1 + type: Transform +- proto: ToiletEmpty + entities: + - uid: 133 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,12.5 + parent: 1 + type: Transform + - uid: 178 + components: + - rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 1 + type: Transform +- proto: ToySpawner + entities: + - uid: 279 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform +- proto: TrashBananaPeel + entities: + - uid: 431 + components: + - pos: 15.93969,9.864423 + parent: 1 + type: Transform + - uid: 432 + components: + - rot: -1.5707963267948966 rad + pos: 15.12719,9.630048 + parent: 1 + type: Transform + - uid: 823 + components: + - pos: -8.3404045,17.582245 + parent: 1 + type: Transform + - uid: 824 + components: + - pos: -5.8596535,3.2105613 + parent: 1 + type: Transform + - uid: 825 + components: + - pos: 6.753727,23.647627 + parent: 1 + type: Transform +- proto: WallmountTelescreen + entities: + - uid: 252 + components: + - pos: -5.5,14.5 + parent: 1 + type: Transform +- proto: WallmountTelevision + entities: + - uid: 123 + components: + - pos: 1.5,14.5 + parent: 1 + type: Transform + - uid: 124 + components: + - pos: 5.5,14.5 + parent: 1 + type: Transform +- proto: WallSolid + entities: + - uid: 3 + components: + - pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 49 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 50 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 53 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 54 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 58 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 59 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 60 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 61 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 62 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 63 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 64 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 65 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 66 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 67 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 68 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 69 + components: + - pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 70 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 71 + components: + - pos: 10.5,-0.5 + parent: 1 + type: Transform + - uid: 72 + components: + - pos: 10.5,0.5 + parent: 1 + type: Transform + - uid: 73 + components: + - pos: 10.5,1.5 + parent: 1 + type: Transform + - uid: 74 + components: + - pos: 10.5,2.5 + parent: 1 + type: Transform + - uid: 75 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 76 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 77 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 78 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 79 + components: + - pos: 8.5,5.5 + parent: 1 + type: Transform + - uid: 80 + components: + - pos: 8.5,6.5 + parent: 1 + type: Transform + - uid: 81 + components: + - pos: 8.5,7.5 + parent: 1 + type: Transform + - uid: 82 + components: + - pos: 8.5,8.5 + parent: 1 + type: Transform + - uid: 83 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 112 + components: + - pos: -1.5,14.5 + parent: 1 + type: Transform + - uid: 113 + components: + - pos: -0.5,14.5 + parent: 1 + type: Transform + - uid: 114 + components: + - pos: 0.5,14.5 + parent: 1 + type: Transform + - uid: 115 + components: + - pos: 1.5,14.5 + parent: 1 + type: Transform + - uid: 116 + components: + - pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 118 + components: + - pos: 4.5,14.5 + parent: 1 + type: Transform + - uid: 119 + components: + - pos: 5.5,14.5 + parent: 1 + type: Transform + - uid: 120 + components: + - pos: 6.5,14.5 + parent: 1 + type: Transform + - uid: 121 + components: + - pos: 7.5,14.5 + parent: 1 + type: Transform + - uid: 122 + components: + - pos: 8.5,14.5 + parent: 1 + type: Transform + - uid: 125 + components: + - pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 126 + components: + - pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 127 + components: + - pos: 8.5,12.5 + parent: 1 + type: Transform + - uid: 128 + components: + - pos: 8.5,13.5 + parent: 1 + type: Transform + - uid: 129 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 130 + components: + - pos: 8.5,10.5 + parent: 1 + type: Transform + - uid: 137 + components: + - pos: 11.5,13.5 + parent: 1 + type: Transform + - uid: 138 + components: + - pos: 11.5,14.5 + parent: 1 + type: Transform + - uid: 139 + components: + - pos: 11.5,15.5 + parent: 1 + type: Transform + - uid: 140 + components: + - pos: 12.5,15.5 + parent: 1 + type: Transform + - uid: 141 + components: + - pos: 13.5,15.5 + parent: 1 + type: Transform + - uid: 142 + components: + - pos: 14.5,15.5 + parent: 1 + type: Transform + - uid: 143 + components: + - pos: 15.5,15.5 + parent: 1 + type: Transform + - uid: 144 + components: + - pos: 16.5,15.5 + parent: 1 + type: Transform + - uid: 145 + components: + - pos: 16.5,14.5 + parent: 1 + type: Transform + - uid: 146 + components: + - pos: 16.5,13.5 + parent: 1 + type: Transform + - uid: 147 + components: + - pos: 15.5,13.5 + parent: 1 + type: Transform + - uid: 148 + components: + - pos: 14.5,13.5 + parent: 1 + type: Transform + - uid: 149 + components: + - pos: 16.5,12.5 + parent: 1 + type: Transform + - uid: 150 + components: + - pos: 16.5,11.5 + parent: 1 + type: Transform + - uid: 151 + components: + - pos: 15.5,11.5 + parent: 1 + type: Transform + - uid: 152 + components: + - pos: 14.5,11.5 + parent: 1 + type: Transform + - uid: 153 + components: + - pos: 14.5,10.5 + parent: 1 + type: Transform + - uid: 154 + components: + - pos: 13.5,10.5 + parent: 1 + type: Transform + - uid: 155 + components: + - pos: 12.5,10.5 + parent: 1 + type: Transform + - uid: 156 + components: + - pos: 11.5,10.5 + parent: 1 + type: Transform + - uid: 157 + components: + - pos: 11.5,11.5 + parent: 1 + type: Transform + - uid: 158 + components: + - pos: 9.5,5.5 + parent: 1 + type: Transform + - uid: 159 + components: + - pos: 10.5,5.5 + parent: 1 + type: Transform + - uid: 160 + components: + - pos: 11.5,5.5 + parent: 1 + type: Transform + - uid: 161 + components: + - pos: 12.5,5.5 + parent: 1 + type: Transform + - uid: 162 + components: + - pos: 10.5,6.5 + parent: 1 + type: Transform + - uid: 163 + components: + - pos: 10.5,7.5 + parent: 1 + type: Transform + - uid: 164 + components: + - pos: 12.5,6.5 + parent: 1 + type: Transform + - uid: 165 + components: + - pos: 12.5,7.5 + parent: 1 + type: Transform + - uid: 166 + components: + - pos: 13.5,7.5 + parent: 1 + type: Transform + - uid: 167 + components: + - pos: 13.5,8.5 + parent: 1 + type: Transform + - uid: 168 + components: + - pos: 13.5,9.5 + parent: 1 + type: Transform + - uid: 169 + components: + - pos: 9.5,10.5 + parent: 1 + type: Transform + - uid: 170 + components: + - pos: 10.5,14.5 + parent: 1 + type: Transform + - uid: 191 + components: + - pos: 7.5,15.5 + parent: 1 + type: Transform + - uid: 192 + components: + - pos: 7.5,16.5 + parent: 1 + type: Transform + - uid: 193 + components: + - pos: 7.5,17.5 + parent: 1 + type: Transform + - uid: 194 + components: + - pos: 8.5,17.5 + parent: 1 + type: Transform + - uid: 195 + components: + - pos: 9.5,17.5 + parent: 1 + type: Transform + - uid: 196 + components: + - pos: 10.5,17.5 + parent: 1 + type: Transform + - uid: 197 + components: + - pos: 11.5,17.5 + parent: 1 + type: Transform + - uid: 198 + components: + - pos: 11.5,16.5 + parent: 1 + type: Transform + - uid: 219 + components: + - pos: -1.5,15.5 + parent: 1 + type: Transform + - uid: 220 + components: + - pos: -2.5,14.5 + parent: 1 + type: Transform + - uid: 221 + components: + - pos: -1.5,17.5 + parent: 1 + type: Transform + - uid: 222 + components: + - pos: -1.5,18.5 + parent: 1 + type: Transform + - uid: 223 + components: + - pos: -2.5,18.5 + parent: 1 + type: Transform + - uid: 224 + components: + - pos: -3.5,18.5 + parent: 1 + type: Transform + - uid: 225 + components: + - pos: -4.5,18.5 + parent: 1 + type: Transform + - uid: 226 + components: + - pos: -5.5,18.5 + parent: 1 + type: Transform + - uid: 227 + components: + - pos: -6.5,18.5 + parent: 1 + type: Transform + - uid: 228 + components: + - pos: -6.5,17.5 + parent: 1 + type: Transform + - uid: 229 + components: + - pos: -6.5,16.5 + parent: 1 + type: Transform + - uid: 230 + components: + - pos: -6.5,15.5 + parent: 1 + type: Transform + - uid: 231 + components: + - pos: -6.5,14.5 + parent: 1 + type: Transform + - uid: 232 + components: + - pos: -5.5,14.5 + parent: 1 + type: Transform + - uid: 233 + components: + - pos: -4.5,14.5 + parent: 1 + type: Transform + - uid: 253 + components: + - pos: -6.5,13.5 + parent: 1 + type: Transform + - uid: 254 + components: + - pos: -6.5,12.5 + parent: 1 + type: Transform + - uid: 255 + components: + - pos: -6.5,11.5 + parent: 1 + type: Transform + - uid: 256 + components: + - pos: -6.5,10.5 + parent: 1 + type: Transform + - uid: 257 + components: + - pos: -6.5,9.5 + parent: 1 + type: Transform + - uid: 258 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 260 + components: + - pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 261 + components: + - pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 359 + components: + - pos: 14.5,7.5 + parent: 1 + type: Transform + - uid: 360 + components: + - pos: 16.5,7.5 + parent: 1 + type: Transform + - uid: 361 + components: + - pos: 16.5,6.5 + parent: 1 + type: Transform + - uid: 362 + components: + - pos: 16.5,5.5 + parent: 1 + type: Transform + - uid: 363 + components: + - pos: 16.5,4.5 + parent: 1 + type: Transform + - uid: 364 + components: + - pos: 16.5,3.5 + parent: 1 + type: Transform + - uid: 365 + components: + - pos: 16.5,2.5 + parent: 1 + type: Transform + - uid: 366 + components: + - pos: 16.5,1.5 + parent: 1 + type: Transform + - uid: 367 + components: + - pos: 16.5,0.5 + parent: 1 + type: Transform + - uid: 368 + components: + - pos: 16.5,-0.5 + parent: 1 + type: Transform + - uid: 370 + components: + - pos: 11.5,-0.5 + parent: 1 + type: Transform + - uid: 529 + components: + - pos: -4.5,9.5 + parent: 1 + type: Transform + - uid: 671 + components: + - pos: -10.5,18.5 + parent: 1 + type: Transform + - uid: 672 + components: + - pos: -9.5,18.5 + parent: 1 + type: Transform + - uid: 673 + components: + - pos: -9.5,17.5 + parent: 1 + type: Transform + - uid: 674 + components: + - pos: -9.5,16.5 + parent: 1 + type: Transform + - uid: 675 + components: + - pos: -9.5,15.5 + parent: 1 + type: Transform + - uid: 676 + components: + - pos: -9.5,14.5 + parent: 1 + type: Transform + - uid: 677 + components: + - pos: -9.5,13.5 + parent: 1 + type: Transform + - uid: 678 + components: + - pos: -9.5,12.5 + parent: 1 + type: Transform + - uid: 679 + components: + - pos: -9.5,11.5 + parent: 1 + type: Transform + - uid: 680 + components: + - pos: -9.5,10.5 + parent: 1 + type: Transform + - uid: 681 + components: + - pos: -9.5,9.5 + parent: 1 + type: Transform + - uid: 682 + components: + - pos: -9.5,8.5 + parent: 1 + type: Transform + - uid: 683 + components: + - pos: -9.5,7.5 + parent: 1 + type: Transform + - uid: 684 + components: + - pos: -9.5,6.5 + parent: 1 + type: Transform + - uid: 685 + components: + - pos: -9.5,5.5 + parent: 1 + type: Transform + - uid: 686 + components: + - pos: -9.5,4.5 + parent: 1 + type: Transform + - uid: 687 + components: + - pos: -9.5,3.5 + parent: 1 + type: Transform + - uid: 688 + components: + - pos: -9.5,2.5 + parent: 1 + type: Transform + - uid: 689 + components: + - pos: -7.5,21.5 + parent: 1 + type: Transform + - uid: 690 + components: + - pos: -6.5,21.5 + parent: 1 + type: Transform + - uid: 691 + components: + - pos: -5.5,21.5 + parent: 1 + type: Transform + - uid: 692 + components: + - pos: -4.5,21.5 + parent: 1 + type: Transform + - uid: 693 + components: + - pos: -3.5,21.5 + parent: 1 + type: Transform + - uid: 694 + components: + - pos: -2.5,21.5 + parent: 1 + type: Transform + - uid: 695 + components: + - pos: -1.5,21.5 + parent: 1 + type: Transform + - uid: 698 + components: + - pos: 1.5,21.5 + parent: 1 + type: Transform + - uid: 699 + components: + - pos: 2.5,21.5 + parent: 1 + type: Transform + - uid: 700 + components: + - pos: 2.5,22.5 + parent: 1 + type: Transform + - uid: 701 + components: + - pos: 2.5,23.5 + parent: 1 + type: Transform + - uid: 702 + components: + - pos: 2.5,24.5 + parent: 1 + type: Transform + - uid: 703 + components: + - pos: 2.5,25.5 + parent: 1 + type: Transform + - uid: 704 + components: + - pos: 5.5,24.5 + parent: 1 + type: Transform + - uid: 705 + components: + - pos: 5.5,23.5 + parent: 1 + type: Transform + - uid: 706 + components: + - pos: 5.5,22.5 + parent: 1 + type: Transform + - uid: 707 + components: + - pos: 5.5,21.5 + parent: 1 + type: Transform + - uid: 708 + components: + - pos: 6.5,21.5 + parent: 1 + type: Transform + - uid: 709 + components: + - pos: 7.5,21.5 + parent: 1 + type: Transform + - uid: 710 + components: + - pos: 8.5,21.5 + parent: 1 + type: Transform + - uid: 711 + components: + - pos: 9.5,21.5 + parent: 1 + type: Transform + - uid: 712 + components: + - pos: 10.5,21.5 + parent: 1 + type: Transform + - uid: 713 + components: + - pos: 11.5,21.5 + parent: 1 + type: Transform + - uid: 714 + components: + - pos: 12.5,21.5 + parent: 1 + type: Transform + - uid: 715 + components: + - pos: 13.5,21.5 + parent: 1 + type: Transform + - uid: 716 + components: + - pos: 14.5,21.5 + parent: 1 + type: Transform + - uid: 717 + components: + - pos: 14.5,20.5 + parent: 1 + type: Transform + - uid: 718 + components: + - pos: 14.5,19.5 + parent: 1 + type: Transform + - uid: 719 + components: + - pos: 15.5,19.5 + parent: 1 + type: Transform + - uid: 720 + components: + - pos: 16.5,19.5 + parent: 1 + type: Transform + - uid: 721 + components: + - pos: 17.5,19.5 + parent: 1 + type: Transform + - uid: 722 + components: + - pos: 18.5,19.5 + parent: 1 + type: Transform + - uid: 723 + components: + - pos: -9.5,-0.5 + parent: 1 + type: Transform + - uid: 724 + components: + - pos: 19.5,-0.5 + parent: 1 + type: Transform + - uid: 725 + components: + - pos: 19.5,0.5 + parent: 1 + type: Transform + - uid: 726 + components: + - pos: 19.5,1.5 + parent: 1 + type: Transform + - uid: 727 + components: + - pos: 19.5,2.5 + parent: 1 + type: Transform + - uid: 728 + components: + - pos: 19.5,3.5 + parent: 1 + type: Transform + - uid: 729 + components: + - pos: 19.5,4.5 + parent: 1 + type: Transform + - uid: 730 + components: + - pos: 19.5,5.5 + parent: 1 + type: Transform + - uid: 737 + components: + - pos: 19.5,8.5 + parent: 1 + type: Transform + - uid: 739 + components: + - pos: 19.5,10.5 + parent: 1 + type: Transform + - uid: 740 + components: + - pos: 19.5,11.5 + parent: 1 + type: Transform + - uid: 741 + components: + - pos: 19.5,12.5 + parent: 1 + type: Transform + - uid: 742 + components: + - pos: 19.5,13.5 + parent: 1 + type: Transform + - uid: 743 + components: + - pos: 19.5,14.5 + parent: 1 + type: Transform + - uid: 744 + components: + - pos: 19.5,15.5 + parent: 1 + type: Transform + - uid: 745 + components: + - pos: 20.5,15.5 + parent: 1 + type: Transform + - uid: 746 + components: + - pos: 21.5,15.5 + parent: 1 + type: Transform + - uid: 747 + components: + - pos: 22.5,15.5 + parent: 1 + type: Transform +- proto: WashingMachine + entities: + - uid: 17 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 18 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 21 + components: + - pos: 7.5,7.5 + parent: 1 + type: Transform + - uid: 23 + components: + - pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 24 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 26 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 30 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 32 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 34 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 37 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 38 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 39 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 40 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 45 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 46 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform +- proto: WashingMachineBroken + entities: + - uid: 16 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 29 + components: + - pos: 7.5,2.5 + parent: 1 + type: Transform +- proto: WashingMachineFilledClothes + entities: + - uid: 22 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 25 + components: + - pos: 7.5,8.5 + parent: 1 + type: Transform + - uid: 31 + components: + - pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 33 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 41 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 42 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 47 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform +- proto: WatcherAISpawner + entities: + - uid: 774 + components: + - pos: -3.5,12.5 + parent: 1 + type: Transform +- proto: WeaponRevolverSnub + entities: + - uid: 316 + components: + - rot: -1.5707963267948966 rad + pos: -4.3691363,12.264656 + parent: 1 + type: Transform +- proto: Windoor + entities: + - uid: 388 + components: + - pos: 14.5,2.5 + parent: 1 + type: Transform + - uid: 389 + components: + - pos: 13.5,2.5 + parent: 1 + type: Transform + - uid: 390 + components: + - pos: 12.5,2.5 + parent: 1 + type: Transform + - uid: 391 + components: + - pos: 11.5,2.5 + parent: 1 + type: Transform +- proto: WindoorKitchenLocked + entities: + - uid: 382 + components: + - pos: 15.5,2.5 + parent: 1 + type: Transform + - uid: 383 + components: + - rot: 3.141592653589793 rad + pos: 11.5,2.5 + parent: 1 + type: Transform + - uid: 384 + components: + - rot: 3.141592653589793 rad + pos: 12.5,2.5 + parent: 1 + type: Transform + - uid: 385 + components: + - rot: 3.141592653589793 rad + pos: 13.5,2.5 + parent: 1 + type: Transform + - uid: 386 + components: + - rot: 3.141592653589793 rad + pos: 14.5,2.5 + parent: 1 + type: Transform +- proto: Window + entities: + - uid: 8 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 9 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 10 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 11 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 56 + components: + - pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 57 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 88 + components: + - pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 89 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 90 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 91 + components: + - pos: 9.5,-0.5 + parent: 1 + type: Transform + - uid: 376 + components: + - pos: 12.5,-0.5 + parent: 1 + type: Transform + - uid: 377 + components: + - pos: 15.5,-0.5 + parent: 1 + type: Transform + - uid: 733 + components: + - pos: 20.5,-0.5 + parent: 1 + type: Transform +- proto: WindowDirectional + entities: + - uid: 387 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,2.5 + parent: 1 + type: Transform +- proto: Wrench + entities: + - uid: 302 + components: + - pos: -2.347598,17.531961 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-med-asteroid-mining-01.yml b/Resources/Maps/Salvage/DeltaV/DV-med-asteroid-mining-01.yml new file mode 100644 index 0000000000..3a57e3f9ad --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-med-asteroid-mining-01.yml @@ -0,0 +1,1153 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand +entities: +- proto: "" + entities: + - uid: 199 + components: + - type: MetaData + - pos: 0.5104167,0.5469074 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAB + version: 6 + 0,0: + ind: 0,0 + tiles: BwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: [] + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 34816 + -1,0: + 0: 65484 + -1,1: + 0: 65535 + -3,1: + 0: 32768 + -2,1: + 0: 65518 + -2,2: + 0: 52975 + -2,0: + 0: 52224 + -2,3: + 0: 8 + -1,2: + 0: 65535 + -1,3: + 0: 52991 + 0,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 65535 + 1,0: + 0: 30513 + 1,1: + 0: 65535 + 1,2: + 0: 65535 + 1,3: + 0: 4983 + 2,1: + 0: 4096 + 2,2: + 0: 307 + 0,-1: + 0: 65280 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: SpreaderGrid +- proto: Barricade + entities: + - uid: 24 + components: + - pos: 2.5,2.5 + parent: 199 + type: Transform + - uid: 71 + components: + - pos: 0.5,2.5 + parent: 199 + type: Transform +- proto: ChairFolding + entities: + - uid: 181 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 199 + type: Transform + - uid: 182 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 199 + type: Transform + - uid: 183 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 199 + type: Transform + - uid: 184 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 199 + type: Transform +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 189 + components: + - pos: -0.5,1.5 + parent: 199 + type: Transform +- proto: ClothingMaskGasExplorer + entities: + - uid: 196 + components: + - pos: -1.4614451,1.5873275 + parent: 199 + type: Transform +- proto: MaintenanceWeaponSpawner + entities: + - uid: 197 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 199 + type: Transform +- proto: MountainRock + entities: + - uid: 1 + components: + - pos: -1.5,15.5 + parent: 199 + type: Transform + - uid: 2 + components: + - pos: -1.5,14.5 + parent: 199 + type: Transform + - uid: 3 + components: + - pos: -1.5,13.5 + parent: 199 + type: Transform + - uid: 4 + components: + - pos: -1.5,12.5 + parent: 199 + type: Transform + - uid: 5 + components: + - pos: -1.5,11.5 + parent: 199 + type: Transform + - uid: 6 + components: + - pos: -2.5,11.5 + parent: 199 + type: Transform + - uid: 7 + components: + - pos: -3.5,11.5 + parent: 199 + type: Transform + - uid: 8 + components: + - pos: -4.5,11.5 + parent: 199 + type: Transform + - uid: 9 + components: + - pos: -5.5,11.5 + parent: 199 + type: Transform + - uid: 10 + components: + - pos: -5.5,10.5 + parent: 199 + type: Transform + - uid: 11 + components: + - pos: -5.5,9.5 + parent: 199 + type: Transform + - uid: 12 + components: + - pos: -5.5,8.5 + parent: 199 + type: Transform + - uid: 13 + components: + - pos: -5.5,7.5 + parent: 199 + type: Transform + - uid: 14 + components: + - pos: -5.5,6.5 + parent: 199 + type: Transform + - uid: 15 + components: + - pos: -5.5,5.5 + parent: 199 + type: Transform + - uid: 16 + components: + - pos: -5.5,4.5 + parent: 199 + type: Transform + - uid: 17 + components: + - pos: -5.5,3.5 + parent: 199 + type: Transform + - uid: 18 + components: + - pos: -5.5,2.5 + parent: 199 + type: Transform + - uid: 19 + components: + - pos: -4.5,2.5 + parent: 199 + type: Transform + - uid: 20 + components: + - pos: -3.5,2.5 + parent: 199 + type: Transform + - uid: 21 + components: + - pos: -2.5,2.5 + parent: 199 + type: Transform + - uid: 22 + components: + - pos: -1.5,2.5 + parent: 199 + type: Transform + - uid: 23 + components: + - pos: -0.5,2.5 + parent: 199 + type: Transform + - uid: 25 + components: + - pos: 3.5,2.5 + parent: 199 + type: Transform + - uid: 26 + components: + - pos: 4.5,2.5 + parent: 199 + type: Transform + - uid: 27 + components: + - pos: 4.5,3.5 + parent: 199 + type: Transform + - uid: 28 + components: + - pos: 5.5,3.5 + parent: 199 + type: Transform + - uid: 29 + components: + - pos: 6.5,3.5 + parent: 199 + type: Transform + - uid: 30 + components: + - pos: 6.5,4.5 + parent: 199 + type: Transform + - uid: 31 + components: + - pos: 6.5,5.5 + parent: 199 + type: Transform + - uid: 32 + components: + - pos: 6.5,6.5 + parent: 199 + type: Transform + - uid: 33 + components: + - pos: 6.5,7.5 + parent: 199 + type: Transform + - uid: 34 + components: + - pos: 6.5,8.5 + parent: 199 + type: Transform + - uid: 35 + components: + - pos: 6.5,9.5 + parent: 199 + type: Transform + - uid: 36 + components: + - pos: 6.5,10.5 + parent: 199 + type: Transform + - uid: 37 + components: + - pos: 6.5,11.5 + parent: 199 + type: Transform + - uid: 38 + components: + - pos: 6.5,12.5 + parent: 199 + type: Transform + - uid: 39 + components: + - pos: 6.5,13.5 + parent: 199 + type: Transform + - uid: 40 + components: + - pos: 5.5,13.5 + parent: 199 + type: Transform + - uid: 41 + components: + - pos: 4.5,13.5 + parent: 199 + type: Transform + - uid: 42 + components: + - pos: 4.5,14.5 + parent: 199 + type: Transform + - uid: 43 + components: + - pos: 4.5,15.5 + parent: 199 + type: Transform + - uid: 44 + components: + - pos: 3.5,15.5 + parent: 199 + type: Transform + - uid: 45 + components: + - pos: 2.5,15.5 + parent: 199 + type: Transform + - uid: 46 + components: + - pos: 1.5,15.5 + parent: 199 + type: Transform + - uid: 47 + components: + - pos: 0.5,15.5 + parent: 199 + type: Transform + - uid: 48 + components: + - pos: -0.5,15.5 + parent: 199 + type: Transform + - uid: 49 + components: + - pos: -0.5,3.5 + parent: 199 + type: Transform + - uid: 50 + components: + - pos: -0.5,4.5 + parent: 199 + type: Transform + - uid: 51 + components: + - pos: -0.5,5.5 + parent: 199 + type: Transform + - uid: 52 + components: + - pos: -0.5,6.5 + parent: 199 + type: Transform + - uid: 53 + components: + - pos: -0.5,7.5 + parent: 199 + type: Transform + - uid: 54 + components: + - pos: -1.5,7.5 + parent: 199 + type: Transform + - uid: 55 + components: + - pos: -2.5,7.5 + parent: 199 + type: Transform + - uid: 56 + components: + - pos: -3.5,7.5 + parent: 199 + type: Transform + - uid: 57 + components: + - pos: -3.5,6.5 + parent: 199 + type: Transform + - uid: 58 + components: + - pos: -3.5,5.5 + parent: 199 + type: Transform + - uid: 59 + components: + - pos: -3.5,4.5 + parent: 199 + type: Transform + - uid: 60 + components: + - pos: 5.5,10.5 + parent: 199 + type: Transform + - uid: 61 + components: + - pos: 4.5,10.5 + parent: 199 + type: Transform + - uid: 62 + components: + - pos: 3.5,10.5 + parent: 199 + type: Transform + - uid: 63 + components: + - pos: 2.5,10.5 + parent: 199 + type: Transform + - uid: 64 + components: + - pos: 1.5,10.5 + parent: 199 + type: Transform + - uid: 65 + components: + - pos: 3.5,9.5 + parent: 199 + type: Transform + - uid: 66 + components: + - pos: 3.5,8.5 + parent: 199 + type: Transform + - uid: 67 + components: + - pos: 3.5,7.5 + parent: 199 + type: Transform + - uid: 68 + components: + - pos: 3.5,6.5 + parent: 199 + type: Transform + - uid: 69 + components: + - pos: 3.5,5.5 + parent: 199 + type: Transform + - uid: 70 + components: + - pos: 4.5,6.5 + parent: 199 + type: Transform +- proto: OxygenCanister + entities: + - uid: 195 + components: + - pos: 1.5,-0.5 + parent: 199 + type: Transform +- proto: Pickaxe + entities: + - uid: 190 + components: + - pos: 3.079382,0.4750886 + parent: 199 + type: Transform + - uid: 191 + components: + - rot: -1.5707963267948966 rad + pos: 2.266882,-1.4429101 + parent: 199 + type: Transform +- proto: Rack + entities: + - uid: 192 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 199 + type: Transform + - uid: 193 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 199 + type: Transform +- proto: RandomArtifactSpawner + entities: + - uid: 87 + components: + - pos: 1.5,13.5 + parent: 199 + type: Transform +- proto: RandomDrinkBottle + entities: + - uid: 194 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 199 + type: Transform +- proto: RandomRockSpawner + entities: + - uid: 81 + components: + - pos: -0.5,13.5 + parent: 199 + type: Transform + - uid: 82 + components: + - pos: -0.5,12.5 + parent: 199 + type: Transform + - uid: 83 + components: + - pos: -0.5,11.5 + parent: 199 + type: Transform + - uid: 84 + components: + - pos: 0.5,13.5 + parent: 199 + type: Transform + - uid: 85 + components: + - pos: 0.5,12.5 + parent: 199 + type: Transform + - uid: 86 + components: + - pos: 0.5,11.5 + parent: 199 + type: Transform + - uid: 88 + components: + - pos: 1.5,12.5 + parent: 199 + type: Transform + - uid: 89 + components: + - pos: 1.5,11.5 + parent: 199 + type: Transform + - uid: 90 + components: + - pos: 2.5,13.5 + parent: 199 + type: Transform + - uid: 91 + components: + - pos: 2.5,12.5 + parent: 199 + type: Transform + - uid: 92 + components: + - pos: 2.5,11.5 + parent: 199 + type: Transform + - uid: 93 + components: + - pos: 3.5,13.5 + parent: 199 + type: Transform + - uid: 94 + components: + - pos: 3.5,12.5 + parent: 199 + type: Transform + - uid: 95 + components: + - pos: 3.5,11.5 + parent: 199 + type: Transform + - uid: 96 + components: + - pos: 4.5,12.5 + parent: 199 + type: Transform + - uid: 97 + components: + - pos: 4.5,11.5 + parent: 199 + type: Transform + - uid: 98 + components: + - pos: 5.5,12.5 + parent: 199 + type: Transform + - uid: 99 + components: + - pos: 5.5,11.5 + parent: 199 + type: Transform + - uid: 100 + components: + - pos: 0.5,10.5 + parent: 199 + type: Transform + - uid: 101 + components: + - pos: 0.5,9.5 + parent: 199 + type: Transform + - uid: 102 + components: + - pos: 0.5,8.5 + parent: 199 + type: Transform + - uid: 103 + components: + - pos: -0.5,10.5 + parent: 199 + type: Transform + - uid: 104 + components: + - pos: -0.5,9.5 + parent: 199 + type: Transform + - uid: 105 + components: + - pos: -0.5,8.5 + parent: 199 + type: Transform + - uid: 106 + components: + - pos: -1.5,10.5 + parent: 199 + type: Transform + - uid: 107 + components: + - pos: -1.5,9.5 + parent: 199 + type: Transform + - uid: 108 + components: + - pos: -1.5,8.5 + parent: 199 + type: Transform + - uid: 109 + components: + - pos: -2.5,10.5 + parent: 199 + type: Transform + - uid: 110 + components: + - pos: -2.5,9.5 + parent: 199 + type: Transform + - uid: 111 + components: + - pos: -2.5,8.5 + parent: 199 + type: Transform + - uid: 112 + components: + - pos: -3.5,10.5 + parent: 199 + type: Transform + - uid: 113 + components: + - pos: -3.5,9.5 + parent: 199 + type: Transform + - uid: 114 + components: + - pos: -3.5,8.5 + parent: 199 + type: Transform + - uid: 115 + components: + - pos: -4.5,10.5 + parent: 199 + type: Transform + - uid: 116 + components: + - pos: -4.5,9.5 + parent: 199 + type: Transform + - uid: 117 + components: + - pos: -4.5,8.5 + parent: 199 + type: Transform + - uid: 118 + components: + - pos: -4.5,7.5 + parent: 199 + type: Transform + - uid: 119 + components: + - pos: -4.5,6.5 + parent: 199 + type: Transform + - uid: 120 + components: + - pos: -4.5,5.5 + parent: 199 + type: Transform + - uid: 121 + components: + - pos: -4.5,4.5 + parent: 199 + type: Transform + - uid: 122 + components: + - pos: -4.5,3.5 + parent: 199 + type: Transform + - uid: 123 + components: + - pos: -3.5,3.5 + parent: 199 + type: Transform + - uid: 124 + components: + - pos: -2.5,5.5 + parent: 199 + type: Transform + - uid: 125 + components: + - pos: -2.5,4.5 + parent: 199 + type: Transform + - uid: 126 + components: + - pos: -1.5,5.5 + parent: 199 + type: Transform + - uid: 127 + components: + - pos: -1.5,4.5 + parent: 199 + type: Transform + - uid: 128 + components: + - pos: -1.5,6.5 + parent: 199 + type: Transform + - uid: 129 + components: + - pos: 1.5,9.5 + parent: 199 + type: Transform + - uid: 130 + components: + - pos: 1.5,8.5 + parent: 199 + type: Transform + - uid: 131 + components: + - pos: 1.5,7.5 + parent: 199 + type: Transform + - uid: 132 + components: + - pos: 1.5,6.5 + parent: 199 + type: Transform + - uid: 133 + components: + - pos: 1.5,5.5 + parent: 199 + type: Transform + - uid: 134 + components: + - pos: 2.5,9.5 + parent: 199 + type: Transform + - uid: 135 + components: + - pos: 2.5,8.5 + parent: 199 + type: Transform + - uid: 136 + components: + - pos: 2.5,7.5 + parent: 199 + type: Transform + - uid: 137 + components: + - pos: 2.5,6.5 + parent: 199 + type: Transform + - uid: 138 + components: + - pos: 2.5,5.5 + parent: 199 + type: Transform + - uid: 139 + components: + - pos: 0.5,7.5 + parent: 199 + type: Transform + - uid: 140 + components: + - pos: 0.5,6.5 + parent: 199 + type: Transform + - uid: 141 + components: + - pos: 0.5,5.5 + parent: 199 + type: Transform + - uid: 142 + components: + - pos: 0.5,4.5 + parent: 199 + type: Transform + - uid: 143 + components: + - pos: 0.5,3.5 + parent: 199 + type: Transform + - uid: 144 + components: + - pos: 2.5,4.5 + parent: 199 + type: Transform + - uid: 145 + components: + - pos: 2.5,3.5 + parent: 199 + type: Transform + - uid: 146 + components: + - pos: 3.5,3.5 + parent: 199 + type: Transform + - uid: 147 + components: + - pos: 3.5,4.5 + parent: 199 + type: Transform + - uid: 148 + components: + - pos: 4.5,5.5 + parent: 199 + type: Transform + - uid: 149 + components: + - pos: 4.5,4.5 + parent: 199 + type: Transform + - uid: 150 + components: + - pos: 5.5,5.5 + parent: 199 + type: Transform + - uid: 151 + components: + - pos: 5.5,4.5 + parent: 199 + type: Transform + - uid: 152 + components: + - pos: 5.5,6.5 + parent: 199 + type: Transform + - uid: 153 + components: + - pos: 5.5,7.5 + parent: 199 + type: Transform + - uid: 154 + components: + - pos: 5.5,8.5 + parent: 199 + type: Transform + - uid: 155 + components: + - pos: 4.5,7.5 + parent: 199 + type: Transform + - uid: 156 + components: + - pos: 4.5,8.5 + parent: 199 + type: Transform + - uid: 157 + components: + - pos: 4.5,9.5 + parent: 199 + type: Transform + - uid: 158 + components: + - pos: -3.5,12.5 + parent: 199 + type: Transform + - uid: 159 + components: + - pos: -2.5,12.5 + parent: 199 + type: Transform + - uid: 160 + components: + - pos: -2.5,13.5 + parent: 199 + type: Transform + - uid: 161 + components: + - pos: -2.5,14.5 + parent: 199 + type: Transform + - uid: 162 + components: + - pos: 5.5,14.5 + parent: 199 + type: Transform + - uid: 163 + components: + - pos: 6.5,2.5 + parent: 199 + type: Transform + - uid: 164 + components: + - pos: 7.5,10.5 + parent: 199 + type: Transform + - uid: 165 + components: + - pos: 7.5,9.5 + parent: 199 + type: Transform + - uid: 166 + components: + - pos: 7.5,8.5 + parent: 199 + type: Transform + - uid: 167 + components: + - pos: 7.5,7.5 + parent: 199 + type: Transform + - uid: 168 + components: + - pos: 7.5,6.5 + parent: 199 + type: Transform + - uid: 169 + components: + - pos: 7.5,5.5 + parent: 199 + type: Transform + - uid: 170 + components: + - pos: 8.5,9.5 + parent: 199 + type: Transform + - uid: 171 + components: + - pos: 8.5,8.5 + parent: 199 + type: Transform + - uid: 172 + components: + - pos: 9.5,9.5 + parent: 199 + type: Transform + - uid: 173 + components: + - pos: -6.5,9.5 + parent: 199 + type: Transform + - uid: 174 + components: + - pos: -6.5,8.5 + parent: 199 + type: Transform + - uid: 175 + components: + - pos: -6.5,6.5 + parent: 199 + type: Transform + - uid: 176 + components: + - pos: -6.5,5.5 + parent: 199 + type: Transform + - uid: 177 + components: + - pos: -7.5,6.5 + parent: 199 + type: Transform + - uid: 178 + components: + - pos: -7.5,7.5 + parent: 199 + type: Transform + - uid: 179 + components: + - pos: -7.5,8.5 + parent: 199 + type: Transform + - uid: 180 + components: + - pos: -8.5,7.5 + parent: 199 + type: Transform +- proto: SalvageLorePaperGamingSpawner + entities: + - uid: 72 + components: + - pos: -2.5,6.5 + parent: 199 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 187 + components: + - pos: 0.5,-1.5 + parent: 199 + type: Transform + - uid: 188 + components: + - pos: 1.5,-1.5 + parent: 199 + type: Transform +- proto: SalvageMobSpawner75 + entities: + - uid: 73 + components: + - pos: -2.5,3.5 + parent: 199 + type: Transform + - uid: 74 + components: + - pos: -1.5,3.5 + parent: 199 + type: Transform + - uid: 75 + components: + - pos: 5.5,9.5 + parent: 199 + type: Transform +- proto: SnakeMobMundane + entities: + - uid: 185 + components: + - pos: 1.5,4.5 + parent: 199 + type: Transform + - uid: 186 + components: + - pos: 1.5,3.5 + parent: 199 + type: Transform +- proto: SpaceTickSpawner + entities: + - uid: 76 + components: + - pos: -0.5,14.5 + parent: 199 + type: Transform + - uid: 77 + components: + - pos: 0.5,14.5 + parent: 199 + type: Transform + - uid: 78 + components: + - pos: 1.5,14.5 + parent: 199 + type: Transform + - uid: 79 + components: + - pos: 2.5,14.5 + parent: 199 + type: Transform + - uid: 80 + components: + - pos: 3.5,14.5 + parent: 199 + type: Transform +- proto: ToiletDirtyWater + entities: + - uid: 198 + components: + - pos: 5.5,2.5 + parent: 199 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-med-chunk-01.yml b/Resources/Maps/Salvage/DeltaV/DV-med-chunk-01.yml new file mode 100644 index 0000000000..f98cca3199 --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-med-chunk-01.yml @@ -0,0 +1,2403 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 70: FloorPlastic + 96: FloorTechMaint + 97: FloorTechMaint2 + 98: FloorTechMaint3 + 100: FloorWhite + 101: FloorWhiteDiagonal + 104: FloorWhiteMini + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 373 + components: + - type: MetaData + - pos: 0.46846703,0.5030661 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAARgAAAAAARgAAAAADRgAAAAADRgAAAAAARgAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAARgAAAAADcQAAAAAAcAAAAAAARgAAAAADRgAAAAABRgAAAAAC + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAABcQAAAAAAcQAAAAAAYgAAAAABcAAAAAAAYgAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAACRgAAAAABYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAABcQAAAAAAcQAAAAAARgAAAAABRgAAAAABRgAAAAABYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAABRgAAAAADRgAAAAADRgAAAAABcQAAAAAARgAAAAABYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAARgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: RgAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAaAAAAAADcAAAAAAAaAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAaAAAAAABaAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAABcQAAAAAAcAAAAAAAcQAAAAAAZAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAYQAAAAAAZQAAAAABZQAAAAACZQAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAABcQAAAAAAZAAAAAADZAAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 9: -1,-2 + 10: 1,-5 + 11: 1,-7 + 12: -4,-5 + 13: -5,-5 + 14: -3,-5 + 15: -6,-4 + 21: -6,-1 + 24: -6,-2 + 25: -6,-1 + 26: 0,-6 + 27: 2,1 + 28: -5,2 + 29: -5,-5 + 30: -6,-5 + 31: 5,-2 + 32: 5,-1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 5: 3,-1 + 6: 0,-4 + 7: -3,-2 + 8: 0,-1 + 22: -6,-1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 16: 0,3 + 17: 0,5 + 23: -6,-2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 18: -1,3 + 19: -1,1 + 20: 4,-2 + - node: + cleanable: True + color: '#FFFF95FF' + id: North + decals: + 0: -0.812217,4.680568 + - node: + cleanable: True + color: '#FFBC95FF' + id: electricdanger + decals: + 2: 1.125283,-4.0911493 + - node: + cleanable: True + color: '#FF3395FF' + id: food + decals: + 1: -5.062217,-1.9646721 + - node: + cleanable: True + color: '#03FF95FF' + id: matt + decals: + 4: -5.859092,3.8831391 + - node: + cleanable: True + color: '#FFBC95FF' + id: skull + decals: + 3: 0.562783,-4.4664097 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 65287 + 1: 248 + 0,-1: + 0: 65339 + 1: 196 + -1,0: + 1: 30551 + 0: 34952 + 0,0: + 0: 56793 + 1: 8742 + -2,-2: + 1: 16352 + 0: 49152 + -2,-1: + 1: 12787 + 0: 52748 + -1,-2: + 1: 36856 + 0: 28672 + 0,-2: + 1: 20215 + 0: 45312 + 1,-2: + 1: 18224 + 0: 12288 + 1,-1: + 0: 13059 + 1: 17524 + -2,0: + 1: 61183 + -2,1: + 1: 36590 + -1,1: + 1: 57205 + 0: 138 + 0,1: + 0: 221 + 1: 40738 + 1,0: + 1: 25127 + 0: 4368 + 1,1: + 0: 17 + 1: 4902 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - type: SpreaderGrid +- proto: Airlock + entities: + - uid: 244 + components: + - pos: -0.5,-3.5 + parent: 373 + type: Transform + - uid: 245 + components: + - pos: -4.5,-2.5 + parent: 373 + type: Transform +- proto: AirlockEngineeringLocked + entities: + - uid: 243 + components: + - pos: 2.5,-3.5 + parent: 373 + type: Transform +- proto: AirlockExternalGlassLocked + entities: + - uid: 93 + components: + - pos: -3.5,4.5 + parent: 373 + type: Transform + - uid: 94 + components: + - pos: -1.5,4.5 + parent: 373 + type: Transform +- proto: AirlockGlass + entities: + - uid: 229 + components: + - pos: 6.5,-0.5 + parent: 373 + type: Transform + - uid: 230 + components: + - pos: 6.5,-1.5 + parent: 373 + type: Transform +- proto: AirlockMedicalGlass + entities: + - uid: 101 + components: + - pos: 1.5,4.5 + parent: 373 + type: Transform +- proto: APCBasic + entities: + - uid: 109 + components: + - pos: -1.5,0.5 + parent: 373 + type: Transform +- proto: AtmosFixBlockerMarker + entities: + - uid: 256 + components: + - pos: -5.5,-1.5 + parent: 373 + type: Transform + - uid: 257 + components: + - pos: -5.5,-0.5 + parent: 373 + type: Transform + - uid: 258 + components: + - pos: -4.5,-1.5 + parent: 373 + type: Transform + - uid: 259 + components: + - pos: -4.5,-0.5 + parent: 373 + type: Transform + - uid: 260 + components: + - pos: -3.5,-1.5 + parent: 373 + type: Transform + - uid: 261 + components: + - pos: -3.5,-0.5 + parent: 373 + type: Transform + - uid: 262 + components: + - pos: -2.5,-1.5 + parent: 373 + type: Transform + - uid: 263 + components: + - pos: -2.5,-0.5 + parent: 373 + type: Transform + - uid: 264 + components: + - pos: -1.5,-1.5 + parent: 373 + type: Transform + - uid: 265 + components: + - pos: -1.5,-0.5 + parent: 373 + type: Transform + - uid: 266 + components: + - pos: -0.5,-1.5 + parent: 373 + type: Transform + - uid: 267 + components: + - pos: -0.5,-0.5 + parent: 373 + type: Transform + - uid: 268 + components: + - pos: 0.5,-1.5 + parent: 373 + type: Transform + - uid: 269 + components: + - pos: 0.5,-0.5 + parent: 373 + type: Transform + - uid: 270 + components: + - pos: 1.5,-1.5 + parent: 373 + type: Transform + - uid: 271 + components: + - pos: 1.5,-0.5 + parent: 373 + type: Transform + - uid: 272 + components: + - pos: 2.5,-1.5 + parent: 373 + type: Transform + - uid: 273 + components: + - pos: 2.5,-0.5 + parent: 373 + type: Transform + - uid: 274 + components: + - pos: 3.5,-1.5 + parent: 373 + type: Transform + - uid: 275 + components: + - pos: 3.5,-0.5 + parent: 373 + type: Transform + - uid: 276 + components: + - pos: 4.5,-1.5 + parent: 373 + type: Transform + - uid: 277 + components: + - pos: 4.5,-0.5 + parent: 373 + type: Transform + - uid: 278 + components: + - pos: 5.5,-1.5 + parent: 373 + type: Transform + - uid: 279 + components: + - pos: 5.5,-0.5 + parent: 373 + type: Transform + - uid: 280 + components: + - pos: 0.5,-2.5 + parent: 373 + type: Transform + - uid: 281 + components: + - pos: 0.5,-3.5 + parent: 373 + type: Transform + - uid: 282 + components: + - pos: 0.5,-4.5 + parent: 373 + type: Transform + - uid: 283 + components: + - pos: 1.5,-2.5 + parent: 373 + type: Transform + - uid: 284 + components: + - pos: 1.5,-3.5 + parent: 373 + type: Transform + - uid: 285 + components: + - pos: 1.5,-4.5 + parent: 373 + type: Transform + - uid: 286 + components: + - pos: 0.5,-5.5 + parent: 373 + type: Transform + - uid: 287 + components: + - pos: 0.5,0.5 + parent: 373 + type: Transform + - uid: 288 + components: + - pos: 0.5,1.5 + parent: 373 + type: Transform + - uid: 289 + components: + - pos: 0.5,2.5 + parent: 373 + type: Transform + - uid: 290 + components: + - pos: 0.5,3.5 + parent: 373 + type: Transform + - uid: 291 + components: + - pos: 0.5,4.5 + parent: 373 + type: Transform + - uid: 292 + components: + - pos: 0.5,5.5 + parent: 373 + type: Transform + - uid: 293 + components: + - pos: -0.5,0.5 + parent: 373 + type: Transform + - uid: 294 + components: + - pos: -0.5,1.5 + parent: 373 + type: Transform + - uid: 295 + components: + - pos: -0.5,2.5 + parent: 373 + type: Transform + - uid: 296 + components: + - pos: -0.5,3.5 + parent: 373 + type: Transform + - uid: 297 + components: + - pos: -0.5,4.5 + parent: 373 + type: Transform + - uid: 298 + components: + - pos: -0.5,5.5 + parent: 373 + type: Transform + - uid: 299 + components: + - pos: 2.5,5.5 + parent: 373 + type: Transform + - uid: 300 + components: + - pos: 2.5,4.5 + parent: 373 + type: Transform + - uid: 301 + components: + - pos: 2.5,3.5 + parent: 373 + type: Transform + - uid: 302 + components: + - pos: 2.5,2.5 + parent: 373 + type: Transform + - uid: 303 + components: + - pos: 2.5,1.5 + parent: 373 + type: Transform + - uid: 304 + components: + - pos: 3.5,5.5 + parent: 373 + type: Transform + - uid: 305 + components: + - pos: 3.5,4.5 + parent: 373 + type: Transform + - uid: 306 + components: + - pos: 3.5,3.5 + parent: 373 + type: Transform + - uid: 307 + components: + - pos: 3.5,2.5 + parent: 373 + type: Transform + - uid: 308 + components: + - pos: 3.5,1.5 + parent: 373 + type: Transform + - uid: 309 + components: + - pos: 4.5,5.5 + parent: 373 + type: Transform + - uid: 310 + components: + - pos: 4.5,4.5 + parent: 373 + type: Transform + - uid: 311 + components: + - pos: 4.5,3.5 + parent: 373 + type: Transform + - uid: 312 + components: + - pos: 4.5,2.5 + parent: 373 + type: Transform + - uid: 313 + components: + - pos: 4.5,1.5 + parent: 373 + type: Transform + - uid: 314 + components: + - pos: 3.5,0.5 + parent: 373 + type: Transform + - uid: 315 + components: + - pos: -1.5,-3.5 + parent: 373 + type: Transform + - uid: 316 + components: + - pos: -1.5,-4.5 + parent: 373 + type: Transform + - uid: 317 + components: + - pos: -2.5,-3.5 + parent: 373 + type: Transform + - uid: 318 + components: + - pos: -2.5,-4.5 + parent: 373 + type: Transform + - uid: 319 + components: + - pos: -3.5,-3.5 + parent: 373 + type: Transform + - uid: 320 + components: + - pos: -3.5,-4.5 + parent: 373 + type: Transform + - uid: 321 + components: + - pos: -4.5,-3.5 + parent: 373 + type: Transform + - uid: 322 + components: + - pos: -4.5,-4.5 + parent: 373 + type: Transform + - uid: 323 + components: + - pos: -5.5,-3.5 + parent: 373 + type: Transform + - uid: 324 + components: + - pos: -5.5,-4.5 + parent: 373 + type: Transform + - uid: 325 + components: + - pos: 3.5,-3.5 + parent: 373 + type: Transform + - uid: 326 + components: + - pos: 3.5,-4.5 + parent: 373 + type: Transform + - uid: 327 + components: + - pos: 4.5,-3.5 + parent: 373 + type: Transform + - uid: 328 + components: + - pos: 4.5,-4.5 + parent: 373 + type: Transform + - uid: 329 + components: + - pos: 5.5,-3.5 + parent: 373 + type: Transform + - uid: 330 + components: + - pos: 5.5,-4.5 + parent: 373 + type: Transform + - uid: 331 + components: + - pos: -2.5,4.5 + parent: 373 + type: Transform + - uid: 332 + components: + - pos: -6.5,-1.5 + parent: 373 + type: Transform +- proto: Barricade + entities: + - uid: 225 + components: + - pos: 0.5,-6.5 + parent: 373 + type: Transform + - uid: 226 + components: + - pos: 1.5,-5.5 + parent: 373 + type: Transform +- proto: BrokenBottle + entities: + - uid: 366 + components: + - rot: -1.5707963267948966 rad + pos: -4.1202445,-1.2032795 + parent: 373 + type: Transform +- proto: CableApcExtension + entities: + - uid: 185 + components: + - pos: -1.5,0.5 + parent: 373 + type: Transform + - uid: 186 + components: + - pos: -1.5,-0.5 + parent: 373 + type: Transform + - uid: 187 + components: + - pos: -2.5,-0.5 + parent: 373 + type: Transform + - uid: 188 + components: + - pos: -3.5,-0.5 + parent: 373 + type: Transform + - uid: 189 + components: + - pos: -4.5,-0.5 + parent: 373 + type: Transform + - uid: 190 + components: + - pos: -4.5,-1.5 + parent: 373 + type: Transform + - uid: 191 + components: + - pos: -4.5,-2.5 + parent: 373 + type: Transform + - uid: 192 + components: + - pos: -4.5,-3.5 + parent: 373 + type: Transform + - uid: 193 + components: + - pos: -3.5,-3.5 + parent: 373 + type: Transform + - uid: 194 + components: + - pos: -2.5,-3.5 + parent: 373 + type: Transform + - uid: 195 + components: + - pos: -0.5,0.5 + parent: 373 + type: Transform + - uid: 196 + components: + - pos: -0.5,1.5 + parent: 373 + type: Transform + - uid: 197 + components: + - pos: -1.5,-3.5 + parent: 373 + type: Transform + - uid: 198 + components: + - pos: -0.5,-3.5 + parent: 373 + type: Transform + - uid: 199 + components: + - pos: 0.5,-3.5 + parent: 373 + type: Transform + - uid: 200 + components: + - pos: 1.5,-3.5 + parent: 373 + type: Transform + - uid: 201 + components: + - pos: 1.5,-2.5 + parent: 373 + type: Transform + - uid: 202 + components: + - pos: 1.5,-1.5 + parent: 373 + type: Transform + - uid: 203 + components: + - pos: 2.5,-1.5 + parent: 373 + type: Transform + - uid: 204 + components: + - pos: 2.5,-3.5 + parent: 373 + type: Transform + - uid: 206 + components: + - pos: 3.5,-3.5 + parent: 373 + type: Transform + - uid: 207 + components: + - pos: -0.5,2.5 + parent: 373 + type: Transform + - uid: 234 + components: + - pos: -0.5,3.5 + parent: 373 + type: Transform + - uid: 235 + components: + - pos: -0.5,4.5 + parent: 373 + type: Transform + - uid: 236 + components: + - pos: -1.5,4.5 + parent: 373 + type: Transform + - uid: 237 + components: + - pos: -2.5,4.5 + parent: 373 + type: Transform +- proto: CableMV + entities: + - uid: 335 + components: + - pos: 3.5,-4.5 + parent: 373 + type: Transform + - uid: 336 + components: + - pos: 3.5,-3.5 + parent: 373 + type: Transform + - uid: 337 + components: + - pos: 2.5,-3.5 + parent: 373 + type: Transform + - uid: 338 + components: + - pos: 1.5,-3.5 + parent: 373 + type: Transform + - uid: 339 + components: + - pos: 1.5,-1.5 + parent: 373 + type: Transform + - uid: 340 + components: + - pos: 1.5,-0.5 + parent: 373 + type: Transform + - uid: 341 + components: + - pos: 0.5,-0.5 + parent: 373 + type: Transform + - uid: 342 + components: + - pos: -0.5,-0.5 + parent: 373 + type: Transform + - uid: 343 + components: + - pos: -0.5,0.5 + parent: 373 + type: Transform + - uid: 344 + components: + - pos: -0.5,1.5 + parent: 373 + type: Transform + - uid: 345 + components: + - pos: -1.5,0.5 + parent: 373 + type: Transform +- proto: Catwalk + entities: + - uid: 65 + components: + - pos: -4.5,6.5 + parent: 373 + type: Transform + - uid: 76 + components: + - pos: -4.5,5.5 + parent: 373 + type: Transform + - uid: 77 + components: + - pos: -4.5,4.5 + parent: 373 + type: Transform + - uid: 78 + components: + - pos: -4.5,3.5 + parent: 373 + type: Transform + - uid: 79 + components: + - pos: -4.5,2.5 + parent: 373 + type: Transform + - uid: 86 + components: + - pos: -4.5,-3.5 + parent: 373 + type: Transform + - uid: 87 + components: + - pos: -3.5,-3.5 + parent: 373 + type: Transform + - uid: 88 + components: + - pos: -2.5,-3.5 + parent: 373 + type: Transform + - uid: 89 + components: + - pos: -1.5,-3.5 + parent: 373 + type: Transform + - uid: 95 + components: + - pos: -2.5,4.5 + parent: 373 + type: Transform + - uid: 106 + components: + - pos: 3.5,-3.5 + parent: 373 + type: Transform + - uid: 107 + components: + - pos: 4.5,-3.5 + parent: 373 + type: Transform + - uid: 108 + components: + - pos: 5.5,-3.5 + parent: 373 + type: Transform +- proto: Chair + entities: + - uid: 209 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 373 + type: Transform + - uid: 210 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 373 + type: Transform +- proto: ChairOfficeLight + entities: + - uid: 97 + components: + - rot: -1.5707963267948966 rad + pos: 3.812442,1.4775877 + parent: 373 + type: Transform +- proto: CigaretteSpent + entities: + - uid: 369 + components: + - rot: -1.5707963267948966 rad + pos: -1.765342,-1.6835737 + parent: 373 + type: Transform + - uid: 370 + components: + - pos: -1.718467,-1.7304821 + parent: 373 + type: Transform + - uid: 371 + components: + - rot: -1.5707963267948966 rad + pos: -2.687217,-1.4646721 + parent: 373 + type: Transform + - uid: 372 + components: + - rot: 3.141592653589793 rad + pos: -2.046592,-1.0581398 + parent: 373 + type: Transform +- proto: ClosetToolFilled + entities: + - uid: 238 + components: + - pos: 4.5,-4.5 + parent: 373 + type: Transform +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 242 + components: + - pos: 5.5378833,-4.4747596 + parent: 373 + type: Transform +- proto: EmergencyLight + entities: + - uid: 239 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 373 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 333 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 373 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight +- proto: FirelockFrame + entities: + - uid: 223 + components: + - pos: 0.5,6.5 + parent: 373 + type: Transform +- proto: FloodlightBroken + entities: + - uid: 365 + components: + - pos: 0.3172556,-1.484725 + parent: 373 + type: Transform + - uid: 368 + components: + - pos: -3.8233693,1.5017242 + parent: 373 + type: Transform +- proto: FoodPlateSmallTrash + entities: + - uid: 367 + components: + - pos: -3.0108693,-1.0000134 + parent: 373 + type: Transform +- proto: GasPipeBend + entities: + - uid: 140 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 144 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 159 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 373 + type: Transform +- proto: GasPipeStraight + entities: + - uid: 128 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 129 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 130 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 132 + components: + - pos: 3.5,0.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 133 + components: + - pos: 3.5,1.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 136 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 137 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 138 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 139 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 141 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 142 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 143 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 145 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 373 + type: Transform + - uid: 146 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 373 + type: Transform + - uid: 147 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 373 + type: Transform + - uid: 148 + components: + - pos: -0.5,0.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 149 + components: + - pos: -0.5,1.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 150 + components: + - pos: -0.5,2.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 151 + components: + - pos: -0.5,3.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 152 + components: + - pos: -0.5,5.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 153 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 154 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 155 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 156 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 157 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 373 + type: Transform + - uid: 158 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 373 + type: Transform + - uid: 161 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 373 + type: Transform + - uid: 162 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 373 + type: Transform + - uid: 163 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 373 + type: Transform + - uid: 164 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 373 + type: Transform + - uid: 165 + components: + - pos: 0.5,-0.5 + parent: 373 + type: Transform + - uid: 166 + components: + - pos: 0.5,0.5 + parent: 373 + type: Transform + - uid: 167 + components: + - pos: 0.5,1.5 + parent: 373 + type: Transform + - uid: 168 + components: + - pos: 0.5,2.5 + parent: 373 + type: Transform + - uid: 169 + components: + - pos: 0.5,4.5 + parent: 373 + type: Transform + - uid: 170 + components: + - pos: 0.5,5.5 + parent: 373 + type: Transform + - uid: 171 + components: + - pos: 0.5,6.5 + parent: 373 + type: Transform +- proto: GasPipeTJunction + entities: + - uid: 131 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 134 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 135 + components: + - pos: 1.5,-0.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 160 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 373 + type: Transform + - uid: 175 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 373 + type: Transform + - uid: 176 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 174 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 177 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 178 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 211 + components: + - pos: 3.5,2.5 + parent: 373 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 172 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 373 + type: Transform + - uid: 173 + components: + - pos: 3.5,4.5 + parent: 373 + type: Transform +- proto: Girder + entities: + - uid: 224 + components: + - pos: -0.5,6.5 + parent: 373 + type: Transform +- proto: Grille + entities: + - uid: 13 + components: + - pos: -2.5,0.5 + parent: 373 + type: Transform + - uid: 14 + components: + - pos: -3.5,0.5 + parent: 373 + type: Transform + - uid: 16 + components: + - pos: -5.5,0.5 + parent: 373 + type: Transform + - uid: 20 + components: + - pos: -1.5,2.5 + parent: 373 + type: Transform + - uid: 21 + components: + - pos: -1.5,1.5 + parent: 373 + type: Transform + - uid: 23 + components: + - pos: 1.5,5.5 + parent: 373 + type: Transform + - uid: 25 + components: + - pos: 1.5,3.5 + parent: 373 + type: Transform + - uid: 51 + components: + - pos: 4.5,0.5 + parent: 373 + type: Transform + - uid: 67 + components: + - pos: 2.5,0.5 + parent: 373 + type: Transform + - uid: 73 + components: + - pos: -2.5,5.5 + parent: 373 + type: Transform + - uid: 91 + components: + - pos: -2.5,3.5 + parent: 373 + type: Transform + - uid: 110 + components: + - pos: -6.5,-1.5 + parent: 373 + type: Transform + - uid: 111 + components: + - pos: -6.5,-0.5 + parent: 373 + type: Transform +- proto: GrilleBroken + entities: + - uid: 8 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 373 + type: Transform + - uid: 15 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 373 + type: Transform + - uid: 227 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 373 + type: Transform + - uid: 228 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 373 + type: Transform +- proto: LockerMedicineFilled + entities: + - uid: 96 + components: + - pos: 2.5,1.5 + parent: 373 + type: Transform +- proto: MachineFrame + entities: + - uid: 80 + components: + - pos: 4.5,2.5 + parent: 373 + type: Transform +- proto: MachineFrameDestroyed + entities: + - uid: 81 + components: + - pos: 2.5,2.5 + parent: 373 + type: Transform +- proto: MaintenanceFluffSpawner + entities: + - uid: 350 + components: + - pos: -2.5,2.5 + parent: 373 + type: Transform +- proto: MaintenanceWeaponSpawner + entities: + - uid: 213 + components: + - pos: -5.5,5.5 + parent: 373 + type: Transform +- proto: MedicalBed + entities: + - uid: 98 + components: + - pos: 4.5,5.5 + parent: 373 + type: Transform + - uid: 99 + components: + - pos: 2.5,5.5 + parent: 373 + type: Transform +- proto: MedkitFilled + entities: + - uid: 240 + components: + - pos: 3.3933513,5.47126 + parent: 373 + type: Transform +- proto: PosterBroken + entities: + - uid: 363 + components: + - pos: 2.5,-2.5 + parent: 373 + type: Transform + - uid: 364 + components: + - pos: -0.5,-5.5 + parent: 373 + type: Transform +- proto: Poweredlight + entities: + - uid: 205 + components: + - pos: 1.5,-0.5 + parent: 373 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 231 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 373 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 232 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 373 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 334 + components: + - pos: -3.5,-3.5 + parent: 373 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 346 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 373 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredlightExterior + entities: + - uid: 233 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,3.5 + parent: 373 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: Rack + entities: + - uid: 113 + components: + - pos: -1.5,-4.5 + parent: 373 + type: Transform + - uid: 214 + components: + - pos: -5.5,3.5 + parent: 373 + type: Transform + - uid: 241 + components: + - pos: 5.5,-4.5 + parent: 373 + type: Transform +- proto: Railing + entities: + - uid: 215 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,4.5 + parent: 373 + type: Transform + - uid: 217 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,5.5 + parent: 373 + type: Transform + - uid: 219 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,3.5 + parent: 373 + type: Transform + - uid: 220 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,2.5 + parent: 373 + type: Transform + - uid: 221 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 373 + type: Transform + - uid: 222 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 373 + type: Transform +- proto: RailingCorner + entities: + - uid: 216 + components: + - rot: 3.141592653589793 rad + pos: -6.5,6.5 + parent: 373 + type: Transform +- proto: RandomArtifactSpawner20 + entities: + - uid: 120 + components: + - pos: -5.5,4.5 + parent: 373 + type: Transform +- proto: RandomBoards + entities: + - uid: 121 + components: + - pos: -1.5,-4.5 + parent: 373 + type: Transform +- proto: RandomPosterContraband + entities: + - uid: 358 + components: + - pos: 4.5,-2.5 + parent: 373 + type: Transform + - uid: 359 + components: + - pos: -3.5,3.5 + parent: 373 + type: Transform + - uid: 362 + components: + - pos: -3.5,-2.5 + parent: 373 + type: Transform +- proto: RandomPosterLegit + entities: + - uid: 122 + components: + - pos: -0.5,-2.5 + parent: 373 + type: Transform +- proto: RandomSnacks + entities: + - uid: 347 + components: + - pos: -3.5,-0.5 + parent: 373 + type: Transform + - uid: 348 + components: + - pos: 1.5,-0.5 + parent: 373 + type: Transform + - uid: 349 + components: + - pos: -0.5,5.5 + parent: 373 + type: Transform +- proto: RandomSpawner + entities: + - uid: 118 + components: + - pos: -2.5,-1.5 + parent: 373 + type: Transform + - uid: 119 + components: + - pos: -1.5,-0.5 + parent: 373 + type: Transform + - uid: 179 + components: + - pos: -3.5,-3.5 + parent: 373 + type: Transform + - uid: 180 + components: + - pos: 4.5,3.5 + parent: 373 + type: Transform + - uid: 181 + components: + - pos: 3.5,4.5 + parent: 373 + type: Transform + - uid: 182 + components: + - pos: 3.5,2.5 + parent: 373 + type: Transform + - uid: 183 + components: + - pos: 3.5,-1.5 + parent: 373 + type: Transform + - uid: 184 + components: + - pos: 4.5,-3.5 + parent: 373 + type: Transform +- proto: RandomVending + entities: + - uid: 123 + components: + - pos: -5.5,-1.5 + parent: 373 + type: Transform + - chance: 0.75 + type: RandomSpawner + - uid: 124 + components: + - pos: -5.5,-0.5 + parent: 373 + type: Transform + - chance: 0.75 + type: RandomSpawner +- proto: ReinforcedWindow + entities: + - uid: 9 + components: + - pos: -5.5,0.5 + parent: 373 + type: Transform + - uid: 24 + components: + - pos: 4.5,0.5 + parent: 373 + type: Transform + - uid: 69 + components: + - pos: -3.5,0.5 + parent: 373 + type: Transform + - uid: 70 + components: + - pos: -2.5,0.5 + parent: 373 + type: Transform + - uid: 71 + components: + - pos: -4.5,0.5 + parent: 373 + type: Transform + - uid: 72 + components: + - pos: -1.5,2.5 + parent: 373 + type: Transform + - uid: 83 + components: + - pos: 2.5,0.5 + parent: 373 + type: Transform + - uid: 92 + components: + - pos: -2.5,3.5 + parent: 373 + type: Transform + - uid: 112 + components: + - pos: -6.5,-0.5 + parent: 373 + type: Transform +- proto: SalvageCanisterSpawner + entities: + - uid: 114 + components: + - pos: -5.5,-4.5 + parent: 373 + type: Transform + - chance: 0.8 + type: RandomSpawner + - uid: 115 + components: + - pos: -5.5,-3.5 + parent: 373 + type: Transform + - chance: 0.8 + type: RandomSpawner +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 374 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 373 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 125 + components: + - pos: -2.5,-4.5 + parent: 373 + type: Transform + - chance: 0.8 + type: RandomSpawner + - uid: 126 + components: + - pos: -3.5,-4.5 + parent: 373 + type: Transform + - chance: 0.8 + type: RandomSpawner + - uid: 127 + components: + - pos: -4.5,-4.5 + parent: 373 + type: Transform + - chance: 0.8 + type: RandomSpawner +- proto: SalvageMobSpawner + entities: + - uid: 251 + components: + - pos: 0.5,-4.5 + parent: 373 + type: Transform + - uid: 252 + components: + - pos: -0.5,3.5 + parent: 373 + type: Transform + - uid: 253 + components: + - pos: -5.5,1.5 + parent: 373 + type: Transform +- proto: SalvageMobSpawner75 + entities: + - uid: 247 + components: + - pos: -3.5,-1.5 + parent: 373 + type: Transform + - uid: 248 + components: + - pos: 4.5,-0.5 + parent: 373 + type: Transform + - uid: 249 + components: + - pos: 4.5,4.5 + parent: 373 + type: Transform + - uid: 250 + components: + - pos: -3.5,2.5 + parent: 373 + type: Transform +- proto: SalvagePartsSpawnerLow + entities: + - uid: 351 + components: + - pos: -5.5,3.5 + parent: 373 + type: Transform +- proto: SalvagePartsSpawnerMid + entities: + - uid: 117 + components: + - pos: 4.5,2.5 + parent: 373 + type: Transform +- proto: ShardGlass + entities: + - uid: 352 + components: + - pos: -3.9131863,-0.9799032 + parent: 373 + type: Transform + - uid: 353 + components: + - rot: -1.5707963267948966 rad + pos: -2.9756863,-0.63591385 + parent: 373 + type: Transform + - uid: 354 + components: + - rot: -1.5707963267948966 rad + pos: -5.9756866,-1.7460604 + parent: 373 + type: Transform + - uid: 355 + components: + - rot: 3.141592653589793 rad + pos: -7.1631866,-1.2144403 + parent: 373 + type: Transform + - uid: 356 + components: + - rot: 1.5707963267948966 rad + pos: 0.8836887,-5.5924816 + parent: 373 + type: Transform +- proto: ShardGlassReinforced + entities: + - uid: 18 + components: + - rot: 1.5707963267948966 rad + pos: -2.7100613,4.586463 + parent: 373 + type: Transform + - uid: 357 + components: + - rot: -1.5707963267948966 rad + pos: -2.2256863,6.1813207 + parent: 373 + type: Transform + - uid: 361 + components: + - pos: -0.6827444,1.2202787 + parent: 373 + type: Transform +- proto: SignMedical + entities: + - uid: 360 + components: + - pos: 1.5,0.5 + parent: 373 + type: Transform +- proto: SpaceTickSpawner + entities: + - uid: 255 + components: + - pos: 4.5,1.5 + parent: 373 + type: Transform +- proto: SpawnMobBearSalvage + entities: + - uid: 246 + components: + - pos: 5.5,-3.5 + parent: 373 + type: Transform + - uid: 254 + components: + - pos: -2.5,-3.5 + parent: 373 + type: Transform +- proto: SubstationBasic + entities: + - uid: 105 + components: + - pos: 3.5,-4.5 + parent: 373 + type: Transform +- proto: Table + entities: + - uid: 100 + components: + - pos: 3.5,5.5 + parent: 373 + type: Transform + - uid: 212 + components: + - pos: -5.5,5.5 + parent: 373 + type: Transform +- proto: TableFrame + entities: + - uid: 208 + components: + - pos: -3.5,-0.5 + parent: 373 + type: Transform +- proto: TablePlasmaGlass + entities: + - uid: 82 + components: + - pos: 4.5,1.5 + parent: 373 + type: Transform +- proto: TableReinforced + entities: + - uid: 85 + components: + - pos: 3.5,0.5 + parent: 373 + type: Transform +- proto: ToolboxEmergencyFilled + entities: + - uid: 116 + components: + - pos: -4.734069,1.9086163 + parent: 373 + type: Transform +- proto: UnfinishedMachineFrame + entities: + - uid: 218 + components: + - pos: -5.5,2.5 + parent: 373 + type: Transform +- proto: VendingMachineWallMedical + entities: + - uid: 104 + components: + - flags: SessionSpecific + type: MetaData + - rot: -1.5707963267948966 rad + pos: 5.5,4.5 + parent: 373 + type: Transform +- proto: WallReinforced + entities: + - uid: 1 + components: + - pos: -6.5,-2.5 + parent: 373 + type: Transform + - uid: 2 + components: + - pos: -6.5,-4.5 + parent: 373 + type: Transform + - uid: 3 + components: + - pos: -6.5,-3.5 + parent: 373 + type: Transform + - uid: 4 + components: + - pos: -4.5,-5.5 + parent: 373 + type: Transform + - uid: 5 + components: + - pos: -3.5,-5.5 + parent: 373 + type: Transform + - uid: 6 + components: + - pos: -2.5,-5.5 + parent: 373 + type: Transform + - uid: 7 + components: + - pos: -1.5,-5.5 + parent: 373 + type: Transform + - uid: 12 + components: + - pos: -6.5,0.5 + parent: 373 + type: Transform + - uid: 17 + components: + - pos: -1.5,0.5 + parent: 373 + type: Transform + - uid: 19 + components: + - pos: -1.5,3.5 + parent: 373 + type: Transform + - uid: 22 + components: + - pos: -1.5,5.5 + parent: 373 + type: Transform + - uid: 26 + components: + - pos: 1.5,2.5 + parent: 373 + type: Transform + - uid: 27 + components: + - pos: 1.5,1.5 + parent: 373 + type: Transform + - uid: 28 + components: + - pos: 1.5,0.5 + parent: 373 + type: Transform + - uid: 32 + components: + - pos: 2.5,-2.5 + parent: 373 + type: Transform + - uid: 33 + components: + - pos: 3.5,-2.5 + parent: 373 + type: Transform + - uid: 34 + components: + - pos: 2.5,-4.5 + parent: 373 + type: Transform + - uid: 35 + components: + - pos: 2.5,-5.5 + parent: 373 + type: Transform + - uid: 36 + components: + - pos: 2.5,-6.5 + parent: 373 + type: Transform + - uid: 37 + components: + - pos: -0.5,-6.5 + parent: 373 + type: Transform + - uid: 38 + components: + - pos: -6.5,-5.5 + parent: 373 + type: Transform + - uid: 39 + components: + - pos: -5.5,-5.5 + parent: 373 + type: Transform + - uid: 40 + components: + - pos: -0.5,-5.5 + parent: 373 + type: Transform + - uid: 42 + components: + - pos: 4.5,-2.5 + parent: 373 + type: Transform + - uid: 43 + components: + - pos: 5.5,-2.5 + parent: 373 + type: Transform + - uid: 44 + components: + - pos: 6.5,-2.5 + parent: 373 + type: Transform + - uid: 45 + components: + - pos: 6.5,-3.5 + parent: 373 + type: Transform + - uid: 46 + components: + - pos: 6.5,-4.5 + parent: 373 + type: Transform + - uid: 47 + components: + - pos: 6.5,-5.5 + parent: 373 + type: Transform + - uid: 48 + components: + - pos: 5.5,-5.5 + parent: 373 + type: Transform + - uid: 49 + components: + - pos: 4.5,-5.5 + parent: 373 + type: Transform + - uid: 50 + components: + - pos: 3.5,-5.5 + parent: 373 + type: Transform + - uid: 54 + components: + - pos: 5.5,5.5 + parent: 373 + type: Transform + - uid: 55 + components: + - pos: 5.5,4.5 + parent: 373 + type: Transform + - uid: 56 + components: + - pos: 5.5,3.5 + parent: 373 + type: Transform + - uid: 57 + components: + - pos: 5.5,2.5 + parent: 373 + type: Transform + - uid: 58 + components: + - pos: 5.5,1.5 + parent: 373 + type: Transform + - uid: 59 + components: + - pos: 5.5,0.5 + parent: 373 + type: Transform + - uid: 60 + components: + - pos: 5.5,6.5 + parent: 373 + type: Transform + - uid: 61 + components: + - pos: 4.5,6.5 + parent: 373 + type: Transform + - uid: 62 + components: + - pos: 3.5,6.5 + parent: 373 + type: Transform + - uid: 63 + components: + - pos: 2.5,6.5 + parent: 373 + type: Transform + - uid: 64 + components: + - pos: 1.5,6.5 + parent: 373 + type: Transform + - uid: 68 + components: + - pos: -1.5,6.5 + parent: 373 + type: Transform + - uid: 74 + components: + - pos: -3.5,3.5 + parent: 373 + type: Transform + - uid: 75 + components: + - pos: 6.5,0.5 + parent: 373 + type: Transform + - uid: 90 + components: + - pos: -3.5,5.5 + parent: 373 + type: Transform +- proto: WallSolid + entities: + - uid: 10 + components: + - pos: -3.5,-2.5 + parent: 373 + type: Transform + - uid: 11 + components: + - pos: -5.5,-2.5 + parent: 373 + type: Transform + - uid: 29 + components: + - pos: -2.5,-2.5 + parent: 373 + type: Transform + - uid: 30 + components: + - pos: -1.5,-2.5 + parent: 373 + type: Transform + - uid: 31 + components: + - pos: -0.5,-2.5 + parent: 373 + type: Transform + - uid: 41 + components: + - pos: -0.5,-4.5 + parent: 373 + type: Transform +- proto: WindoorSecureChemistryLocked + entities: + - uid: 66 + components: + - pos: 3.5,3.5 + parent: 373 + type: Transform + - uid: 84 + components: + - rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 373 + type: Transform +- proto: Window + entities: + - uid: 102 + components: + - pos: 1.5,5.5 + parent: 373 + type: Transform + - uid: 103 + components: + - pos: 1.5,3.5 + parent: 373 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 52 + components: + - pos: 2.5,3.5 + parent: 373 + type: Transform + - uid: 53 + components: + - pos: 4.5,3.5 + parent: 373 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-med-crashed-shuttle.yml b/Resources/Maps/Salvage/DeltaV/DV-med-crashed-shuttle.yml new file mode 100644 index 0000000000..ea715e1f62 --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-med-crashed-shuttle.yml @@ -0,0 +1,1294 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand + 8: FloorAsteroidSandDug + 52: FloorGreenCircuit + 76: FloorShuttleBlue + 80: FloorShuttleWhite + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 166 + components: + - type: MetaData + - parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAcQAAAAAAUAAAAAAAUAAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABcQAAAAAAUAAAAAAAUAAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABcQAAAAAAUAAAAAAAUAAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAAAcQAAAAAAUAAAAAAAUAAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACCAAAAAAABwAAAAACcQAAAAAANAAAAAAAUAAAAAAATAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAATAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAABcQAAAAAAUAAAAAAAUAAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAAcQAAAAAAUAAAAAAABwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: UAAAAAAAUAAAAAAAcQAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAcQAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcQAAAAAAcQAAAAAABwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 8: 1,1 + 9: 0,0 + 10: 0,-1 + 11: -0.6007468,-0.65129566 + 12: -0.5694968,-0.94817066 + 13: -0.16324681,-0.62004566 + 14: -2.9444969,0.91120434 + 15: -2.2413716,0.17682934 + 16: -1.8507468,-0.010670662 + 17: -2.6788719,0.25495434 + 18: -0.6319968,-2.1825457 + 19: -0.3663718,-2.2137957 + 20: -0.19449681,-1.9794207 + 21: -1.0226219,-1.4637957 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 7: -2,0 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 6: -3,0 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 5: -2,-1 + - node: + color: '#79150096' + id: questionmark + decals: + 4: -2,4 + - node: + color: '#79150096' + id: rune1 + decals: + 1: -3,4 + - node: + color: '#79150096' + id: rune2 + decals: + 2: -2,5 + - node: + color: '#79150096' + id: rune4 + decals: + 0: -2,3 + - node: + color: '#79150096' + id: rune5 + decals: + 3: -1,4 + - node: + color: '#79150018' + id: splatter + decals: + 22: 0.3523782,0.81745434 + 23: 0.4148782,0.67682934 + 24: 0.50862825,0.47370434 + 25: 0.3680032,0.23932934 + 26: 0.21175319,0.09870434 + - node: + color: '#79150044' + id: splatter + decals: + 27: 0.2742532,0.28620434 + 28: 0.13362819,0.52057934 + 29: 0.68050325,-3.6356707 + 30: 0.53987825,-3.5419207 + 31: 0.4617532,-4.0731707 + 32: 0.57112825,-4.3075457 + 33: -0.22574681,-4.5575457 + 34: -0.24137181,-4.5575457 + 35: -0.7726218,-4.9325457 + 36: -2.1788716,-4.8856707 + 37: -2.5382469,-4.4012957 + 38: -2.7101219,-4.2919207 + 39: -2.8663719,-2.8231707 + 40: -2.3663716,-2.6669207 + 41: -2.0851216,-2.2606707 + 42: -1.9444968,-1.8700457 + 43: -2.6632469,2.3643293 + 44: -2.4444966,2.5049543 + 45: -2.0069966,1.9112043 + 46: -2.5538719,1.6924543 + 47: -2.3819966,2.0830793 + 48: -2.6007469,2.0830793 + 49: -2.4288716,0.67682934 + 50: -2.2726216,0.58307934 + 51: -2.1632466,0.55182934 + 52: -2.4288716,0.56745434 + 53: -2.1476216,-0.010670662 + 54: -1.9757468,-0.010670662 + 55: 0.24300319,0.53620434 + - node: + color: '#DE3A3A15' + id: splatter + decals: + 56: 0.08675319,-4.3700457 + 57: 0.13362819,-4.2762957 + 58: 0.2898782,-4.1200457 + 59: 0.3523782,-3.9481707 + 60: 0.2586282,0.17682934 + 61: 0.14925319,0.55182934 + 62: 0.14925319,0.55182934 + 63: -2.0069966,0.27057934 + 64: -2.3351216,0.50495434 + 65: -2.5694969,0.86432934 + 66: -2.7569969,0.92682934 + 67: -2.1319966,-0.85442066 + 68: -1.7257468,-0.94817066 + 69: -2.0538716,-4.1512957 + 70: -2.0694966,-4.0419207 + 71: -2.1773903,3.1475892 + 72: -2.5367653,3.8507142 + 73: -2.2242653,3.9913392 + 74: -1.7711403,3.8350892 + 75: -1.5211403,4.100714 + 76: -2.0055153,4.694464 + 77: -2.4742653,4.569464 + 78: -2.9273903,4.288214 + 79: -2.6773903,3.8819642 + 80: -2.2555153,3.6319642 + 81: -2.8336403,3.5225892 + 82: -3.3805153,3.8975892 + 83: -3.4898903,3.7413392 + - node: + color: '#EFB34115' + id: splatter + decals: + 84: 0.42980832,0.7569641 + 85: 0.42980832,0.7882141 + 86: 0.16418332,0.7882141 + 87: -2.7420666,0.7882141 + 88: -2.4608166,0.5538391 + 89: -2.2264416,0.10071409 + 90: -1.3514416,3.1163392 + 91: -0.8670667,3.2100892 + 92: -1.4764416,3.1475892 + 93: -1.1483166,3.2100892 + 94: -1.1951916,2.7413392 + 95: -1.2420666,2.7413392 + 96: 0.007933319,3.9757142 + 97: -0.35144168,3.8663392 + 98: 0.07043332,-3.7724159 + 99: -0.11706668,-3.7099159 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 65535 + 0,-1: + 0: 30583 + -1,0: + 0: 65535 + -1,-2: + 0: 65523 + 0,-2: + 0: 30582 + -2,0: + 0: 61166 + -2,1: + 0: 36078 + -1,1: + 0: 63487 + 1: 2048 + -1,2: + 0: 15 + 0,0: + 0: 65535 + 0,1: + 0: 32767 + 1,0: + 0: 4368 + 1,1: + 0: 17 + -2,-1: + 0: 61128 + -2,-2: + 0: 32768 + 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.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: OccluderTree + - type: Shuttle + - type: RadiationGridResistance + - type: GasTileOverlay + - type: SpreaderGrid + - type: GridPathfinding +- proto: AirlockGlassShuttle + entities: + - uid: 93 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 166 + type: Transform +- proto: APCBasic + entities: + - uid: 105 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 166 + type: Transform +- proto: AsteroidAltRock + entities: + - uid: 145 + components: + - pos: 0.5,3.5 + parent: 166 + type: Transform +- proto: AsteroidAltRockMining + entities: + - uid: 15 + components: + - pos: -4.5,0.5 + parent: 166 + type: Transform + - uid: 20 + components: + - pos: -4.5,7.5 + parent: 166 + type: Transform + - uid: 21 + components: + - pos: -5.5,6.5 + parent: 166 + type: Transform + - uid: 27 + components: + - pos: -6.5,2.5 + parent: 166 + type: Transform + - uid: 30 + components: + - pos: -6.5,5.5 + parent: 166 + type: Transform + - uid: 38 + components: + - pos: 2.5,6.5 + parent: 166 + type: Transform + - uid: 39 + components: + - pos: -0.5,5.5 + parent: 166 + type: Transform + - uid: 44 + components: + - pos: 1.5,4.5 + parent: 166 + type: Transform + - uid: 48 + components: + - pos: 3.5,2.5 + parent: 166 + type: Transform + - uid: 49 + components: + - pos: 3.5,1.5 + parent: 166 + type: Transform + - uid: 50 + components: + - pos: 4.5,2.5 + parent: 166 + type: Transform + - uid: 53 + components: + - pos: 4.5,5.5 + parent: 166 + type: Transform + - uid: 54 + components: + - pos: 3.5,6.5 + parent: 166 + type: Transform + - uid: 55 + components: + - pos: 2.5,7.5 + parent: 166 + type: Transform + - uid: 56 + components: + - pos: 1.5,7.5 + parent: 166 + type: Transform + - uid: 57 + components: + - pos: 0.5,7.5 + parent: 166 + type: Transform + - uid: 62 + components: + - pos: -3.5,8.5 + parent: 166 + type: Transform + - uid: 73 + components: + - pos: -5.5,-2.5 + parent: 166 + type: Transform + - uid: 126 + components: + - pos: -5.5,-1.5 + parent: 166 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 165 + components: + - pos: 2.5,-1.5 + parent: 166 + type: Transform +- proto: AtmosFixPlasmaMarker + entities: + - uid: 35 + components: + - pos: -0.5,6.5 + parent: 166 + type: Transform +- proto: BlastDoorOpen + entities: + - uid: 148 + components: + - pos: -3.5,-3.5 + parent: 166 + type: Transform + - links: + - 153 + type: DeviceLinkSink + - uid: 149 + components: + - pos: 2.5,-3.5 + parent: 166 + type: Transform + - links: + - 153 + type: DeviceLinkSink + - uid: 150 + components: + - pos: -1.5,-6.5 + parent: 166 + type: Transform + - links: + - 153 + type: DeviceLinkSink + - uid: 151 + components: + - pos: -0.5,-6.5 + parent: 166 + type: Transform + - links: + - 153 + type: DeviceLinkSink + - uid: 152 + components: + - pos: 0.5,-6.5 + parent: 166 + type: Transform + - links: + - 153 + type: DeviceLinkSink +- proto: BriefcaseBrown + entities: + - uid: 144 + components: + - pos: 1.4458597,-5.346011 + parent: 166 + type: Transform +- proto: CableApcExtension + entities: + - uid: 98 + components: + - pos: -3.5,-0.5 + parent: 166 + type: Transform + - uid: 99 + components: + - pos: -1.5,-0.5 + parent: 166 + type: Transform + - uid: 103 + components: + - pos: -2.5,-0.5 + parent: 166 + type: Transform + - uid: 112 + components: + - pos: -0.5,-0.5 + parent: 166 + type: Transform + - uid: 113 + components: + - pos: -0.5,-1.5 + parent: 166 + type: Transform +- proto: CableHV + entities: + - uid: 115 + components: + - pos: 2.5,-0.5 + parent: 166 + type: Transform + - uid: 116 + components: + - pos: 1.5,0.5 + parent: 166 + type: Transform + - uid: 117 + components: + - pos: 1.5,-0.5 + parent: 166 + type: Transform +- proto: CableMV + entities: + - uid: 96 + components: + - pos: -0.5,-0.5 + parent: 166 + type: Transform + - uid: 97 + components: + - pos: -1.5,-0.5 + parent: 166 + type: Transform + - uid: 100 + components: + - pos: 0.5,-0.5 + parent: 166 + type: Transform + - uid: 101 + components: + - pos: -2.5,-0.5 + parent: 166 + type: Transform + - uid: 102 + components: + - pos: -3.5,-0.5 + parent: 166 + type: Transform + - uid: 106 + components: + - pos: 2.5,-0.5 + parent: 166 + type: Transform + - uid: 107 + components: + - pos: 1.5,-0.5 + parent: 166 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 128 + components: + - rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 166 + type: Transform + - uid: 129 + components: + - pos: 0.5,-2.5 + parent: 166 + type: Transform + - uid: 130 + components: + - pos: 1.5,-2.5 + parent: 166 + type: Transform + - uid: 131 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 166 + type: Transform + - uid: 132 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 166 + type: Transform + - uid: 133 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 166 + type: Transform + - uid: 134 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 166 + type: Transform + - uid: 135 + components: + - pos: -2.5,-2.5 + parent: 166 + type: Transform + - uid: 136 + components: + - pos: -1.5,-2.5 + parent: 166 + type: Transform +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 139 + components: + - pos: -2.5,-1.5 + parent: 166 + type: Transform +- proto: ClosetFireFilled + entities: + - uid: 140 + components: + - pos: -0.5,-5.5 + parent: 166 + type: Transform +- proto: ClothingBackpackDuffel + entities: + - uid: 143 + components: + - pos: -1.5541403,-5.330386 + parent: 166 + type: Transform +- proto: ClothingShoesCult + entities: + - uid: 159 + components: + - pos: -3.6259656,2.5595093 + parent: 166 + type: Transform +- proto: ComputerBroken + entities: + - uid: 86 + components: + - pos: -0.5,1.5 + parent: 166 + type: Transform +- proto: CultAltarSpawner + entities: + - uid: 92 + components: + - pos: -2.5,5.5 + parent: 166 + type: Transform +- proto: FloodlightBroken + entities: + - uid: 164 + components: + - pos: -6.4814186,-1.5171001 + parent: 166 + type: Transform +- proto: GasCanisterBrokenBase + entities: + - uid: 94 + components: + - pos: -2.5,-0.5 + parent: 166 + type: Transform +- proto: GeneratorBasic + entities: + - uid: 124 + components: + - pos: 1.5,0.5 + parent: 166 + type: Transform +- proto: Grille + entities: + - uid: 1 + components: + - pos: -3.5,0.5 + parent: 166 + type: Transform + - uid: 2 + components: + - pos: -3.5,1.5 + parent: 166 + type: Transform + - uid: 4 + components: + - pos: 2.5,2.5 + parent: 166 + type: Transform + - uid: 5 + components: + - pos: 2.5,1.5 + parent: 166 + type: Transform + - uid: 6 + components: + - pos: 2.5,0.5 + parent: 166 + type: Transform + - uid: 10 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 166 + type: Transform + - uid: 104 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 166 + type: Transform + - uid: 108 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 166 + type: Transform + - uid: 109 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 166 + type: Transform + - uid: 146 + components: + - pos: -3.5,-3.5 + parent: 166 + type: Transform + - uid: 147 + components: + - pos: 2.5,-3.5 + parent: 166 + type: Transform +- proto: GrilleBroken + entities: + - uid: 3 + components: + - pos: -3.5,2.5 + parent: 166 + type: Transform + - uid: 7 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 166 + type: Transform + - uid: 8 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 166 + type: Transform + - uid: 9 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 166 + type: Transform +- proto: MachineFrameDestroyed + entities: + - uid: 162 + components: + - pos: 2.5,3.5 + parent: 166 + type: Transform +- proto: PlushieNar + entities: + - uid: 163 + components: + - pos: 0.44543332,4.485278 + parent: 166 + type: Transform +- proto: Poweredlight + entities: + - uid: 72 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 166 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: RandomArtifactSpawner + entities: + - uid: 123 + components: + - pos: -1.5,4.5 + parent: 166 + type: Transform +- proto: RandomBoards + entities: + - uid: 167 + components: + - pos: -3.5,3.5 + parent: 166 + type: Transform +- proto: RandomBox + entities: + - uid: 169 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 166 + type: Transform +- proto: RandomItem + entities: + - uid: 65 + components: + - pos: 1.5,1.5 + parent: 166 + type: Transform +- proto: RandomRockSpawner + entities: + - uid: 13 + components: + - pos: -6.5,4.5 + parent: 166 + type: Transform + - uid: 14 + components: + - pos: -4.5,2.5 + parent: 166 + type: Transform + - uid: 18 + components: + - pos: -4.5,5.5 + parent: 166 + type: Transform + - uid: 19 + components: + - pos: -4.5,6.5 + parent: 166 + type: Transform + - uid: 22 + components: + - pos: -5.5,5.5 + parent: 166 + type: Transform + - uid: 23 + components: + - pos: -5.5,3.5 + parent: 166 + type: Transform + - uid: 24 + components: + - pos: -5.5,1.5 + parent: 166 + type: Transform + - uid: 25 + components: + - pos: -5.5,0.5 + parent: 166 + type: Transform + - uid: 26 + components: + - pos: -6.5,3.5 + parent: 166 + type: Transform + - uid: 28 + components: + - pos: -5.5,2.5 + parent: 166 + type: Transform + - uid: 29 + components: + - pos: -5.5,4.5 + parent: 166 + type: Transform + - uid: 31 + components: + - pos: -3.5,5.5 + parent: 166 + type: Transform + - uid: 32 + components: + - pos: -1.5,7.5 + parent: 166 + type: Transform + - uid: 34 + components: + - pos: 1.5,6.5 + parent: 166 + type: Transform + - uid: 36 + components: + - pos: 1.5,5.5 + parent: 166 + type: Transform + - uid: 37 + components: + - pos: 2.5,5.5 + parent: 166 + type: Transform + - uid: 41 + components: + - pos: 2.5,4.5 + parent: 166 + type: Transform + - uid: 42 + components: + - pos: 3.5,4.5 + parent: 166 + type: Transform + - uid: 43 + components: + - pos: 3.5,5.5 + parent: 166 + type: Transform + - uid: 45 + components: + - pos: 3.5,3.5 + parent: 166 + type: Transform + - uid: 46 + components: + - pos: 4.5,4.5 + parent: 166 + type: Transform + - uid: 47 + components: + - pos: 4.5,3.5 + parent: 166 + type: Transform + - uid: 51 + components: + - pos: -1.5,6.5 + parent: 166 + type: Transform + - uid: 52 + components: + - pos: -0.5,7.5 + parent: 166 + type: Transform + - uid: 58 + components: + - pos: -1.5,8.5 + parent: 166 + type: Transform + - uid: 59 + components: + - pos: -3.5,7.5 + parent: 166 + type: Transform + - uid: 60 + components: + - pos: -3.5,6.5 + parent: 166 + type: Transform + - uid: 61 + components: + - pos: -2.5,7.5 + parent: 166 + type: Transform + - uid: 63 + components: + - pos: -2.5,8.5 + parent: 166 + type: Transform + - uid: 64 + components: + - pos: -0.5,8.5 + parent: 166 + type: Transform + - uid: 95 + components: + - pos: -6.5,1.5 + parent: 166 + type: Transform + - uid: 127 + components: + - pos: -4.5,1.5 + parent: 166 + type: Transform + - uid: 154 + components: + - pos: 0.5,6.5 + parent: 166 + type: Transform + - uid: 168 + components: + - pos: -6.5,0.5 + parent: 166 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 125 + components: + - pos: -3.5,4.5 + parent: 166 + type: Transform + - uid: 160 + components: + - pos: -2.5,-3.5 + parent: 166 + type: Transform +- proto: SalvageMobSpawner + entities: + - uid: 119 + components: + - pos: -2.5,0.5 + parent: 166 + type: Transform + - uid: 120 + components: + - pos: 0.5,-0.5 + parent: 166 + type: Transform +- proto: SalvageMobSpawner75 + entities: + - uid: 121 + components: + - pos: -2.5,2.5 + parent: 166 + type: Transform + - uid: 122 + components: + - pos: 1.5,3.5 + parent: 166 + type: Transform +- proto: ShardGlass + entities: + - uid: 137 + components: + - pos: -2.4603903,-5.434225 + parent: 166 + type: Transform + - uid: 156 + components: + - pos: 0.9927347,-2.1686003 + parent: 166 + type: Transform +- proto: SheetPlasteel1 + entities: + - uid: 170 + components: + - rot: 3.141592653589793 rad + pos: -3.4611638,-7.5218415 + parent: 166 + type: Transform + - uid: 171 + components: + - rot: -1.5707963267948966 rad + pos: -3.544497,-7.177853 + parent: 166 + type: Transform + - uid: 172 + components: + - rot: 3.141592653589793 rad + pos: 2.6846697,-7.5635376 + parent: 166 + type: Transform + - uid: 173 + components: + - rot: 1.5707963267948966 rad + pos: 2.4763365,-7.511418 + parent: 166 + type: Transform + - uid: 174 + components: + - rot: -1.5707963267948966 rad + pos: 2.5700865,-7.188277 + parent: 166 + type: Transform +- proto: ShuttleWindow + entities: + - uid: 68 + components: + - pos: -3.5,-3.5 + parent: 166 + type: Transform + - uid: 75 + components: + - pos: 2.5,1.5 + parent: 166 + type: Transform + - uid: 77 + components: + - pos: 2.5,0.5 + parent: 166 + type: Transform + - uid: 78 + components: + - pos: 0.5,-6.5 + parent: 166 + type: Transform + - uid: 79 + components: + - pos: -0.5,-6.5 + parent: 166 + type: Transform + - uid: 80 + components: + - pos: -1.5,-6.5 + parent: 166 + type: Transform + - uid: 87 + components: + - pos: 2.5,-3.5 + parent: 166 + type: Transform + - uid: 118 + components: + - pos: -3.5,0.5 + parent: 166 + type: Transform +- proto: SignalButton + entities: + - uid: 153 + components: + - pos: 0.5,1.5 + parent: 166 + type: Transform + - linkedPorts: + 149: + - Pressed: Toggle + 152: + - Pressed: Toggle + 151: + - Pressed: Toggle + 150: + - Pressed: Toggle + 148: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SpawnMobBearSalvage + entities: + - uid: 161 + components: + - pos: -2.5,3.5 + parent: 166 + type: Transform +- proto: SubstationWallBasic + entities: + - uid: 114 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 166 + type: Transform +- proto: Table + entities: + - uid: 85 + components: + - pos: 0.5,1.5 + parent: 166 + type: Transform +- proto: TableFrame + entities: + - uid: 157 + components: + - pos: -2.5,-5.5 + parent: 166 + type: Transform + - uid: 158 + components: + - pos: 1.5,-3.5 + parent: 166 + type: Transform +- proto: TableGlass + entities: + - uid: 138 + components: + - pos: -1.5,-5.5 + parent: 166 + type: Transform + - uid: 141 + components: + - pos: 1.5,-5.5 + parent: 166 + type: Transform + - uid: 142 + components: + - pos: 0.5,-5.5 + parent: 166 + type: Transform + - uid: 155 + components: + - pos: -1.5,-1.5 + parent: 166 + type: Transform +- proto: WallCult + entities: + - uid: 16 + components: + - pos: 0.5,5.5 + parent: 166 + type: Transform + - uid: 17 + components: + - pos: -2.5,6.5 + parent: 166 + type: Transform + - uid: 33 + components: + - pos: -4.5,3.5 + parent: 166 + type: Transform + - uid: 40 + components: + - pos: -4.5,4.5 + parent: 166 + type: Transform +- proto: WallShuttle + entities: + - uid: 11 + components: + - pos: -3.5,-5.5 + parent: 166 + type: Transform + - uid: 66 + components: + - pos: 2.5,-5.5 + parent: 166 + type: Transform + - uid: 67 + components: + - pos: 2.5,-4.5 + parent: 166 + type: Transform + - uid: 69 + components: + - pos: 2.5,-2.5 + parent: 166 + type: Transform + - uid: 70 + components: + - pos: 2.5,-0.5 + parent: 166 + type: Transform + - uid: 71 + components: + - pos: -3.5,-0.5 + parent: 166 + type: Transform + - uid: 74 + components: + - pos: -3.5,-1.5 + parent: 166 + type: Transform + - uid: 76 + components: + - pos: -3.5,-2.5 + parent: 166 + type: Transform + - uid: 81 + components: + - pos: -2.5,-6.5 + parent: 166 + type: Transform + - uid: 82 + components: + - pos: 1.5,-6.5 + parent: 166 + type: Transform + - uid: 83 + components: + - pos: -3.5,-4.5 + parent: 166 + type: Transform +- proto: WallShuttleDiagonal + entities: + - uid: 12 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 166 + type: Transform + - uid: 84 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 166 + type: Transform + - uid: 110 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 166 + type: Transform + - uid: 111 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 166 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 88 + components: + - pos: -2.5,-0.5 + parent: 166 + type: Transform + - uid: 89 + components: + - pos: -1.5,-0.5 + parent: 166 + type: Transform + - uid: 90 + components: + - pos: 0.5,-0.5 + parent: 166 + type: Transform + - uid: 91 + components: + - pos: 1.5,-0.5 + parent: 166 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-med-dock.yml b/Resources/Maps/Salvage/DeltaV/DV-med-dock.yml new file mode 100644 index 0000000000..fcbc868fb0 --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-med-dock.yml @@ -0,0 +1,886 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand + 11: FloorAsteroidTile + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 50 + components: + - type: MetaData + - parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAACwAAAAAACwAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcQAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: CwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 26: 0,1 + 27: 1,1 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Bot + decals: + 21: -2,1 + 22: -2,0 + 23: 0,-1 + 24: 1,-1 + 25: 2,-1 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 17: -5,-3 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 11: -2,1 + 12: 1,2 + 13: 3,0 + 18: -3,-4 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 14: 1,1 + 15: -2,-4 + 16: -5,-5 + 19: -2,-1 + 20: 3,2 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 0: -1,2 + 1: 2,2 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarnCornerFlipped + decals: + 5: 3,2 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + decals: + 2: 3,-1 + 3: 3,0 + 4: 3,1 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: WarningLine + decals: + 6: 2,2 + 7: 1,2 + 8: 0,2 + 9: -1,2 + 10: -2,2 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 65535 + -1,0: + 0: 36863 + 0,-1: + 0: 65535 + 0,0: + 0: 20479 + -2,-2: + 0: 60416 + -2,-1: + 0: 61166 + -1,-2: + 0: 65280 + -2,0: + 0: 2254 + -1,1: + 0: 35976 + 0,-2: + 0: 28928 + 0,1: + 0: 20292 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: OccluderTree + - type: Shuttle + - type: RadiationGridResistance + - type: GasTileOverlay + - type: SpreaderGrid + - type: GridPathfinding +- proto: AirlockShuttle + entities: + - uid: 23 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 50 + type: Transform + - uid: 59 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,6.5 + parent: 50 + type: Transform +- proto: AlwaysPoweredLightExterior + entities: + - uid: 81 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 50 + type: Transform +- proto: APCHyperCapacity + entities: + - uid: 25 + components: + - pos: -5.5,-1.5 + parent: 50 + type: Transform +- proto: AsteroidAltRock + entities: + - uid: 56 + components: + - pos: -5.5,-5.5 + parent: 50 + type: Transform +- proto: AsteroidAltRockMining + entities: + - uid: 5 + components: + - pos: -5.5,-1.5 + parent: 50 + type: Transform + - uid: 15 + components: + - pos: -3.5,0.5 + parent: 50 + type: Transform + - uid: 16 + components: + - pos: -3.5,-0.5 + parent: 50 + type: Transform + - uid: 17 + components: + - pos: -3.5,-1.5 + parent: 50 + type: Transform + - uid: 24 + components: + - pos: -2.5,-2.5 + parent: 50 + type: Transform + - uid: 32 + components: + - pos: 0.5,-4.5 + parent: 50 + type: Transform + - uid: 36 + components: + - pos: -1.5,-5.5 + parent: 50 + type: Transform + - uid: 51 + components: + - pos: -3.5,-2.5 + parent: 50 + type: Transform +- proto: Barricade + entities: + - uid: 11 + components: + - pos: -4.5,-1.5 + parent: 50 + type: Transform +- proto: Bed + entities: + - uid: 82 + components: + - pos: -5.5,-3.5 + parent: 50 + type: Transform +- proto: BedsheetIan + entities: + - uid: 80 + components: + - pos: -5.5,-3.5 + parent: 50 + type: Transform +- proto: CableApcExtension + entities: + - uid: 22 + components: + - pos: -5.5,-2.5 + parent: 50 + type: Transform + - uid: 43 + components: + - pos: -5.5,-3.5 + parent: 50 + type: Transform + - uid: 88 + components: + - pos: -5.5,-1.5 + parent: 50 + type: Transform + - uid: 89 + components: + - pos: -4.5,-3.5 + parent: 50 + type: Transform + - uid: 90 + components: + - pos: -4.5,-4.5 + parent: 50 + type: Transform + - uid: 91 + components: + - pos: -4.5,-5.5 + parent: 50 + type: Transform + - uid: 92 + components: + - pos: -2.5,-5.5 + parent: 50 + type: Transform + - uid: 93 + components: + - pos: -3.5,-5.5 + parent: 50 + type: Transform + - uid: 100 + components: + - pos: -3.5,-3.5 + parent: 50 + type: Transform + - uid: 101 + components: + - pos: -2.5,-3.5 + parent: 50 + type: Transform + - uid: 102 + components: + - pos: -1.5,-3.5 + parent: 50 + type: Transform +- proto: Catwalk + entities: + - uid: 61 + components: + - pos: -0.5,7.5 + parent: 50 + type: Transform + - uid: 62 + components: + - pos: -0.5,6.5 + parent: 50 + type: Transform + - uid: 63 + components: + - pos: -0.5,5.5 + parent: 50 + type: Transform + - uid: 64 + components: + - pos: -0.5,4.5 + parent: 50 + type: Transform + - uid: 65 + components: + - pos: -0.5,3.5 + parent: 50 + type: Transform + - uid: 66 + components: + - pos: 2.5,3.5 + parent: 50 + type: Transform + - uid: 67 + components: + - pos: 2.5,4.5 + parent: 50 + type: Transform + - uid: 68 + components: + - pos: 2.5,5.5 + parent: 50 + type: Transform + - uid: 69 + components: + - pos: 2.5,6.5 + parent: 50 + type: Transform + - uid: 70 + components: + - pos: 2.5,7.5 + parent: 50 + type: Transform +- proto: ClosetBombFilled + entities: + - uid: 58 + components: + - pos: -4.5,-2.5 + parent: 50 + type: Transform +- proto: CrateFilledSpawner + entities: + - uid: 76 + components: + - pos: -1.5,0.5 + parent: 50 + type: Transform +- proto: DogBed + entities: + - uid: 86 + components: + - pos: -3.5,-3.5 + parent: 50 + type: Transform +- proto: ExplosivesSignMed + entities: + - uid: 104 + components: + - pos: -1.5,-1.5 + parent: 50 + type: Transform +- proto: Grille + entities: + - uid: 48 + components: + - pos: -3.5,-5.5 + parent: 50 + type: Transform + - uid: 49 + components: + - pos: -4.5,-5.5 + parent: 50 + type: Transform + - uid: 60 + components: + - pos: -2.5,-5.5 + parent: 50 + type: Transform +- proto: IngotGold + entities: + - uid: 10 + components: + - pos: -4.457972,-0.41304487 + parent: 50 + type: Transform +- proto: LandMineExplosive + entities: + - uid: 3 + components: + - pos: -1.5364733,-2.719489 + parent: 50 + type: Transform + - uid: 4 + components: + - pos: -0.48959827,-3.703864 + parent: 50 + type: Transform +- proto: LockerBotanistLoot + entities: + - uid: 105 + components: + - pos: 1.5,1.5 + parent: 50 + type: Transform + - uid: 120 + components: + - pos: 0.5,1.5 + parent: 50 + type: Transform +- proto: LockerChemistryFilled + entities: + - uid: 77 + components: + - pos: 2.5,-0.5 + parent: 50 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 117 + components: + - pos: -0.5,-2.5 + parent: 50 + type: Transform +- proto: Rack + entities: + - uid: 83 + components: + - pos: -1.5,-0.5 + parent: 50 + type: Transform + - uid: 94 + components: + - pos: -5.5,-2.5 + parent: 50 + type: Transform +- proto: Railing + entities: + - uid: 107 + components: + - rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 50 + type: Transform + - uid: 108 + components: + - rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 50 + type: Transform + - uid: 109 + components: + - rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 50 + type: Transform + - uid: 111 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 50 + type: Transform + - uid: 112 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 50 + type: Transform + - uid: 113 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 50 + type: Transform + - uid: 118 + components: + - pos: -0.5,-0.5 + parent: 50 + type: Transform +- proto: RailingCorner + entities: + - uid: 110 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 50 + type: Transform +- proto: RandomBox + entities: + - uid: 121 + components: + - pos: -1.5,-0.5 + parent: 50 + type: Transform +- proto: RandomDrinkBottle + entities: + - uid: 116 + components: + - pos: -3.5,-3.5 + parent: 50 + type: Transform +- proto: RandomPosterContraband + entities: + - uid: 85 + components: + - pos: -3.5,-2.5 + parent: 50 + type: Transform +- proto: RandomRockSpawner + entities: + - uid: 1 + components: + - pos: -5.5,-0.5 + parent: 50 + type: Transform + - uid: 2 + components: + - pos: -5.5,-4.5 + parent: 50 + type: Transform + - uid: 6 + components: + - pos: -6.5,0.5 + parent: 50 + type: Transform + - uid: 7 + components: + - pos: -5.5,0.5 + parent: 50 + type: Transform + - uid: 8 + components: + - pos: -4.5,0.5 + parent: 50 + type: Transform + - uid: 9 + components: + - pos: -3.5,2.5 + parent: 50 + type: Transform + - uid: 12 + components: + - pos: -4.5,2.5 + parent: 50 + type: Transform + - uid: 13 + components: + - pos: -4.5,1.5 + parent: 50 + type: Transform + - uid: 14 + components: + - pos: -3.5,1.5 + parent: 50 + type: Transform + - uid: 18 + components: + - pos: 2.5,-3.5 + parent: 50 + type: Transform + - uid: 19 + components: + - pos: 2.5,-2.5 + parent: 50 + type: Transform + - uid: 20 + components: + - pos: 1.5,-3.5 + parent: 50 + type: Transform + - uid: 21 + components: + - pos: 0.5,-3.5 + parent: 50 + type: Transform + - uid: 26 + components: + - pos: 0.5,-2.5 + parent: 50 + type: Transform + - uid: 27 + components: + - pos: 1.5,-2.5 + parent: 50 + type: Transform + - uid: 28 + components: + - pos: 3.5,-3.5 + parent: 50 + type: Transform + - uid: 29 + components: + - pos: 3.5,-2.5 + parent: 50 + type: Transform + - uid: 30 + components: + - pos: 1.5,-4.5 + parent: 50 + type: Transform + - uid: 31 + components: + - pos: 2.5,-4.5 + parent: 50 + type: Transform + - uid: 33 + components: + - pos: -0.5,-5.5 + parent: 50 + type: Transform + - uid: 34 + components: + - pos: 0.5,-5.5 + parent: 50 + type: Transform + - uid: 35 + components: + - pos: -0.5,-4.5 + parent: 50 + type: Transform + - uid: 52 + components: + - pos: -6.5,-1.5 + parent: 50 + type: Transform + - uid: 53 + components: + - pos: -6.5,-2.5 + parent: 50 + type: Transform + - uid: 54 + components: + - pos: -6.5,-3.5 + parent: 50 + type: Transform + - uid: 55 + components: + - pos: -6.5,-4.5 + parent: 50 + type: Transform + - uid: 57 + components: + - pos: -5.5,1.5 + parent: 50 + type: Transform + - uid: 114 + components: + - pos: -6.5,-0.5 + parent: 50 + type: Transform +- proto: SalvageCanisterSpawner + entities: + - uid: 78 + components: + - pos: 1.5,-0.5 + parent: 50 + type: Transform + - uid: 79 + components: + - pos: 0.5,-0.5 + parent: 50 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 75 + components: + - pos: -1.5,1.5 + parent: 50 + type: Transform +- proto: SalvageMobSpawner + entities: + - uid: 71 + components: + - pos: 0.5,6.5 + parent: 50 + type: Transform +- proto: SalvageMobSpawner75 + entities: + - uid: 73 + components: + - pos: -0.5,1.5 + parent: 50 + type: Transform +- proto: SalvagePartsT3Spawner + entities: + - uid: 119 + components: + - pos: -5.5,-2.5 + parent: 50 + type: Transform +- proto: Shovel + entities: + - uid: 95 + components: + - pos: -5.527382,-2.5339403 + parent: 50 + type: Transform +- proto: ShuttersNormal + entities: + - uid: 87 + components: + - pos: -0.5,-1.5 + parent: 50 + type: Transform + - links: + - 99 + type: DeviceLinkSink + - uid: 96 + components: + - pos: -4.5,-5.5 + parent: 50 + type: Transform + - links: + - 99 + type: DeviceLinkSink + - uid: 97 + components: + - pos: -3.5,-5.5 + parent: 50 + type: Transform + - links: + - 99 + type: DeviceLinkSink + - uid: 98 + components: + - pos: -2.5,-5.5 + parent: 50 + type: Transform + - links: + - 99 + type: DeviceLinkSink +- proto: SignalButton + entities: + - uid: 99 + components: + - pos: -2.5,-2.5 + parent: 50 + type: Transform + - linkedPorts: + 96: + - Pressed: Toggle + 97: + - Pressed: Toggle + 98: + - Pressed: Toggle + 87: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignMinerDock + entities: + - uid: 106 + components: + - pos: -2.5,2.5 + parent: 50 + type: Transform +- proto: SpaceCash1000 + entities: + - uid: 115 + components: + - pos: -4.4192514,-4.5524406 + parent: 50 + type: Transform +- proto: SpaceTickSpawner + entities: + - uid: 72 + components: + - pos: 2.5,0.5 + parent: 50 + type: Transform + - uid: 74 + components: + - pos: -0.5,0.5 + parent: 50 + type: Transform +- proto: Table + entities: + - uid: 84 + components: + - pos: -0.5,-2.5 + parent: 50 + type: Transform +- proto: ToyNuke + entities: + - uid: 103 + components: + - pos: -1.4901645,-4.7276487 + parent: 50 + type: Transform +- proto: WallSolid + entities: + - uid: 37 + components: + - pos: -2.5,2.5 + parent: 50 + type: Transform + - uid: 38 + components: + - pos: -2.5,1.5 + parent: 50 + type: Transform + - uid: 39 + components: + - pos: -2.5,0.5 + parent: 50 + type: Transform + - uid: 40 + components: + - pos: -2.5,-0.5 + parent: 50 + type: Transform + - uid: 41 + components: + - pos: -2.5,-1.5 + parent: 50 + type: Transform + - uid: 42 + components: + - pos: -1.5,-1.5 + parent: 50 + type: Transform + - uid: 44 + components: + - pos: 0.5,-1.5 + parent: 50 + type: Transform + - uid: 45 + components: + - pos: 1.5,-1.5 + parent: 50 + type: Transform + - uid: 46 + components: + - pos: 2.5,-1.5 + parent: 50 + type: Transform + - uid: 47 + components: + - pos: 3.5,-1.5 + parent: 50 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-med-library.yml b/Resources/Maps/Salvage/DeltaV/DV-med-library.yml new file mode 100644 index 0000000000..8584c4659b --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-med-library.yml @@ -0,0 +1,1344 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand + 8: FloorAsteroidSandDug + 17: FloorBrokenWood + 60: FloorLino + 72: FloorReinforced + 110: FloorWood + 113: Plating +entities: +- proto: "" + entities: + - uid: 6 + components: + - type: MetaData + - pos: 0.5,0.5 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAACAAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAACcQAAAAAAbgAAAAAAbgAAAAABbgAAAAADbgAAAAACbgAAAAABbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACcQAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcQAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACcQAAAAAAbgAAAAABEQAAAAADbgAAAAACbgAAAAAAEQAAAAABbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAAAbgAAAAAD + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAGbgAAAAACbgAAAAABbgAAAAADcQAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAABcQAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAABbgAAAAADbgAAAAABcQAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAABbgAAAAAAEQAAAAAEcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAABcQAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACcQAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAADbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABPAAAAAAAPAAAAAAAcQAAAAAAEQAAAAAGbgAAAAABbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABPAAAAAAAPAAAAAAAcQAAAAAAbgAAAAADbgAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABPAAAAAAAcQAAAAAAbgAAAAABbgAAAAAAEQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAACBwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: bgAAAAADbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAACcQAAAAAABwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAABcQAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAcQAAAAAABwAAAAABBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + cleanable: True + color: '#FFFFFF51' + id: DirtLight + decals: + 0: 1,-4 + 1: 3,-5 + - node: + cleanable: True + color: '#FFFFFFC2' + id: DirtLight + decals: + 2: -5,-5 + - node: + color: '#FFFFFFFF' + id: Remains + decals: + 51: -0.0041509867,2.8019657 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 15: -5,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 16: -5,2 + 17: -5,3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 9: -3,3 + 10: -2,3 + 11: 0,3 + 12: -1,3 + 13: 1,3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 3: 1,-2 + 4: 0,-2 + 5: -1,-2 + 6: -2,-2 + 7: -3,-2 + 8: -4,-2 + 14: -6,1 + - node: + angle: -1.5707963267948966 rad + color: '#DE3A3A1B' + id: exclamationmark + decals: + 59: -2.0519302,2.6656694 + 60: -1.2394302,2.9469194 + - node: + color: '#DE3A3A1B' + id: exclamationmark + decals: + 52: -3.2550552,-1.8968306 + 53: -2.9581802,-1.0999556 + 54: -3.1925552,-0.50620556 + 55: -2.8488052,0.13441944 + 56: -3.1144302,0.60316944 + 57: -2.7706802,1.0875444 + 58: -3.0675552,1.4937944 + - node: + color: '#79150034' + id: splatter + decals: + 18: -5.2244463,1.1943295 + 19: -5.2088213,1.3505795 + 20: -5.0681963,1.6318295 + 21: -5.2556963,1.9599545 + 22: -5.2556963,1.9443295 + 23: -5.3338213,1.4287045 + 24: -5.6150713,1.3818295 + 25: -5.6463213,1.3818295 + 26: -5.7244463,1.1630795 + 27: -5.6775713,0.9912045 + 28: -3.0213213,-2.205989 + 29: -3.2244463,-1.9559889 + 30: -3.3963213,-1.9247389 + 31: -3.0838213,-2.237239 + 32: -3.4588213,-2.315364 + 33: -5.7713213,-1.4403639 + 34: -5.8025713,-1.6747389 + 35: -5.5838213,-1.7528639 + 36: -4.8181963,-2.018489 + 37: -0.18645442,-5.065364 + 38: -0.40520442,-5.034114 + 39: -0.6395794,-4.627864 + - node: + color: '#DE3A3A0F' + id: splatter + decals: + 61: -2.7774591,2.6430945 + 62: -2.7774591,2.4243445 + 63: -2.6524591,2.9868445 + 64: -2.6680841,2.0805945 + - node: + color: '#DE3A3A1B' + id: splatter + decals: + 40: -3.7802043,-2.034114 + 41: -3.6083293,-2.080989 + 42: -3.5614543,-2.221614 + 43: -4.9520793,-1.9403639 + 44: -6.0145793,-0.6122388 + 45: -5.8270793,0.5596361 + 46: -5.9208293,0.9658861 + 47: -4.9989543,2.622136 + 48: -5.0458293,2.997136 + 49: -4.8583293,2.481511 + 50: -5.1552043,2.465886 + type: DecalGrid + - type: OccluderTree + - type: Shuttle + - type: RadiationGridResistance + - type: SpreaderGrid + - type: GridPathfinding +- proto: AlwaysPoweredLightLED + entities: + - uid: 112 + components: + - rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 6 + type: Transform +- proto: AsteroidAltRock + entities: + - uid: 93 + components: + - pos: 3.5,3.5 + parent: 6 + type: Transform + - uid: 95 + components: + - pos: 4.5,3.5 + parent: 6 + type: Transform +- proto: AsteroidAltRockMining + entities: + - uid: 3 + components: + - pos: -6.5,3.5 + parent: 6 + type: Transform + - uid: 15 + components: + - pos: -7.5,-0.5 + parent: 6 + type: Transform + - uid: 18 + components: + - pos: -5.5,5.5 + parent: 6 + type: Transform + - uid: 19 + components: + - pos: -4.5,5.5 + parent: 6 + type: Transform + - uid: 21 + components: + - pos: -3.5,6.5 + parent: 6 + type: Transform + - uid: 40 + components: + - pos: -6.5,2.5 + parent: 6 + type: Transform + - uid: 41 + components: + - pos: -7.5,1.5 + parent: 6 + type: Transform + - uid: 47 + components: + - pos: -3.5,5.5 + parent: 6 + type: Transform + - uid: 48 + components: + - pos: -5.5,4.5 + parent: 6 + type: Transform + - uid: 49 + components: + - pos: -7.5,-1.5 + parent: 6 + type: Transform + - uid: 50 + components: + - pos: -7.5,0.5 + parent: 6 + type: Transform + - uid: 51 + components: + - pos: -4.5,4.5 + parent: 6 + type: Transform + - uid: 52 + components: + - pos: -6.5,1.5 + parent: 6 + type: Transform + - uid: 53 + components: + - pos: 4.5,4.5 + parent: 6 + type: Transform + - uid: 55 + components: + - pos: 5.5,-0.5 + parent: 6 + type: Transform + - uid: 66 + components: + - pos: 4.5,2.5 + parent: 6 + type: Transform + - uid: 73 + components: + - pos: 3.5,4.5 + parent: 6 + type: Transform + - uid: 74 + components: + - pos: 3.5,5.5 + parent: 6 + type: Transform + - uid: 75 + components: + - pos: 5.5,0.5 + parent: 6 + type: Transform + - uid: 76 + components: + - pos: 5.5,2.5 + parent: 6 + type: Transform + - uid: 79 + components: + - pos: 3.5,2.5 + parent: 6 + type: Transform + - uid: 89 + components: + - pos: 4.5,1.5 + parent: 6 + type: Transform + - uid: 94 + components: + - pos: 5.5,3.5 + parent: 6 + type: Transform + - uid: 96 + components: + - pos: 2.5,5.5 + parent: 6 + type: Transform + - uid: 97 + components: + - pos: 2.5,6.5 + parent: 6 + type: Transform + - uid: 98 + components: + - pos: -7.5,-2.5 + parent: 6 + type: Transform + - uid: 116 + components: + - pos: -5.5,3.5 + parent: 6 + type: Transform + - uid: 200 + components: + - pos: 5.5,1.5 + parent: 6 + type: Transform +- proto: Barricade + entities: + - uid: 180 + components: + - pos: 3.5,-0.5 + parent: 6 + type: Transform +- proto: BookBotanicalTextbook + entities: + - uid: 167 + components: + - pos: 0.5361669,1.6180582 + parent: 6 + type: Transform +- proto: BookChemistryInsane + entities: + - uid: 168 + components: + - pos: 2.926792,-4.553817 + parent: 6 + type: Transform +- proto: BookDemonomiconRandom + entities: + - uid: 172 + components: + - pos: -5.5148144,2.5086832 + parent: 6 + type: Transform +- proto: BookDetective + entities: + - uid: 166 + components: + - pos: -1.450138,2.177059 + parent: 6 + type: Transform +- proto: BookFishing + entities: + - uid: 165 + components: + - rot: -1.5707963267948966 rad + pos: -5.463833,-3.7405434 + parent: 6 + type: Transform +- proto: BookGnominomicon + entities: + - uid: 169 + components: + - pos: 0.41116697,1.5399332 + parent: 6 + type: Transform +- proto: Bookshelf + entities: + - uid: 10 + components: + - pos: -1.5,-0.5 + parent: 6 + type: Transform + - uid: 13 + components: + - pos: -0.5,-2.5 + parent: 6 + type: Transform + - uid: 16 + components: + - pos: 1.5,0.5 + parent: 6 + type: Transform + - uid: 108 + components: + - pos: -5.5,-4.5 + parent: 6 + type: Transform + - uid: 114 + components: + - pos: -3.5,-4.5 + parent: 6 + type: Transform + - uid: 122 + components: + - pos: -1.5,-2.5 + parent: 6 + type: Transform + - uid: 123 + components: + - pos: 0.5,-0.5 + parent: 6 + type: Transform + - uid: 124 + components: + - pos: 1.5,-3.5 + parent: 6 + type: Transform +- proto: BookshelfFilled + entities: + - uid: 9 + components: + - pos: -3.5,-0.5 + parent: 6 + type: Transform + - uid: 12 + components: + - pos: 1.5,-0.5 + parent: 6 + type: Transform + - uid: 103 + components: + - pos: -4.5,-2.5 + parent: 6 + type: Transform + - uid: 105 + components: + - pos: -3.5,-3.5 + parent: 6 + type: Transform + - uid: 121 + components: + - pos: 2.5,-2.5 + parent: 6 + type: Transform + - uid: 125 + components: + - pos: 1.5,-4.5 + parent: 6 + type: Transform + - uid: 126 + components: + - pos: -4.5,-0.5 + parent: 6 + type: Transform +- proto: ButchCleaver + entities: + - uid: 189 + components: + - pos: -4.660673,1.9099414 + parent: 6 + type: Transform +- proto: Carpet + entities: + - uid: 141 + components: + - pos: -1.5,0.5 + parent: 6 + type: Transform + - uid: 142 + components: + - pos: -1.5,1.5 + parent: 6 + type: Transform + - uid: 143 + components: + - pos: -0.5,0.5 + parent: 6 + type: Transform + - uid: 144 + components: + - pos: -0.5,1.5 + parent: 6 + type: Transform + - uid: 145 + components: + - pos: 0.5,0.5 + parent: 6 + type: Transform + - uid: 146 + components: + - pos: 0.5,1.5 + parent: 6 + type: Transform +- proto: CarpetBlack + entities: + - uid: 147 + components: + - pos: 3.5,-0.5 + parent: 6 + type: Transform +- proto: CarpetGreen + entities: + - uid: 130 + components: + - pos: -4.5,-3.5 + parent: 6 + type: Transform + - uid: 139 + components: + - pos: -5.5,-3.5 + parent: 6 + type: Transform + - uid: 140 + components: + - pos: -5.5,-2.5 + parent: 6 + type: Transform +- proto: CarpetPink + entities: + - uid: 148 + components: + - pos: 2.5,-3.5 + parent: 6 + type: Transform + - uid: 149 + components: + - pos: 2.5,-4.5 + parent: 6 + type: Transform + - uid: 150 + components: + - pos: 3.5,-3.5 + parent: 6 + type: Transform + - uid: 151 + components: + - pos: 3.5,-4.5 + parent: 6 + type: Transform +- proto: CarpetPurple + entities: + - uid: 152 + components: + - pos: -0.5,-4.5 + parent: 6 + type: Transform + - uid: 153 + components: + - pos: -1.5,-4.5 + parent: 6 + type: Transform + - uid: 154 + components: + - pos: -2.5,-4.5 + parent: 6 + type: Transform + - uid: 155 + components: + - pos: -2.5,-3.5 + parent: 6 + type: Transform + - uid: 156 + components: + - pos: 0.5,-3.5 + parent: 6 + type: Transform +- proto: Chair + entities: + - uid: 192 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,6.5 + parent: 6 + type: Transform + - uid: 193 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,6.5 + parent: 6 + type: Transform +- proto: ClothingUniformJumpsuitLibrarian + entities: + - uid: 190 + components: + - pos: 2.5754058,-3.5518227 + parent: 6 + type: Transform +- proto: ComfyChair + entities: + - uid: 17 + components: + - pos: -4.5,-3.5 + parent: 6 + type: Transform + - uid: 56 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 6 + type: Transform + - uid: 183 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 6 + type: Transform +- proto: ComputerBroken + entities: + - uid: 136 + components: + - pos: -0.5,-3.5 + parent: 6 + type: Transform +- proto: DrinkDemonsBlood + entities: + - uid: 173 + components: + - pos: -5.2023144,2.7743082 + parent: 6 + type: Transform +- proto: FloraRockSolid01 + entities: + - uid: 179 + components: + - pos: 2.3672361,-8.490435 + parent: 6 + type: Transform +- proto: FloraRockSolid03 + entities: + - uid: 178 + components: + - pos: -7.5639,-3.392085 + parent: 6 + type: Transform +- proto: Grille + entities: + - uid: 22 + components: + - pos: -0.5,4.5 + parent: 6 + type: Transform + - uid: 23 + components: + - pos: -1.5,4.5 + parent: 6 + type: Transform + - uid: 24 + components: + - pos: -2.5,4.5 + parent: 6 + type: Transform + - uid: 25 + components: + - pos: 0.5,4.5 + parent: 6 + type: Transform + - uid: 26 + components: + - pos: 1.5,4.5 + parent: 6 + type: Transform + - uid: 27 + components: + - pos: 4.5,-3.5 + parent: 6 + type: Transform + - uid: 29 + components: + - pos: 0.5,-5.5 + parent: 6 + type: Transform + - uid: 30 + components: + - pos: 2.5,-5.5 + parent: 6 + type: Transform + - uid: 31 + components: + - pos: -6.5,-3.5 + parent: 6 + type: Transform + - uid: 34 + components: + - pos: -4.5,-5.5 + parent: 6 + type: Transform + - uid: 44 + components: + - pos: -2.5,-5.5 + parent: 6 + type: Transform +- proto: HatSpawner + entities: + - uid: 205 + components: + - pos: -2.5,6.5 + parent: 6 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 129 + components: + - pos: -2.5,-2.5 + parent: 6 + type: Transform + - uid: 135 + components: + - pos: 0.5,-2.5 + parent: 6 + type: Transform +- proto: KitchenSpike + entities: + - uid: 171 + components: + - pos: -4.5,3.5 + parent: 6 + type: Transform +- proto: LampGold + entities: + - uid: 117 + components: + - pos: -4.485277,-4.2071934 + parent: 6 + type: Transform +- proto: LanternFlash + entities: + - uid: 202 + components: + - pos: 0.46771288,2.5183086 + parent: 6 + type: Transform +- proto: MaterialWoodPlank + entities: + - uid: 157 + components: + - pos: 3.428569,-4.409753 + parent: 6 + type: Transform +- proto: MetalDoor + entities: + - uid: 109 + components: + - pos: -5.5,0.5 + parent: 6 + type: Transform +- proto: PottedPlantRandomPlastic + entities: + - uid: 197 + components: + - pos: 1.5,6.5 + parent: 6 + type: Transform +- proto: Railing + entities: + - uid: 14 + components: + - pos: 0.5,-7.5 + parent: 6 + type: Transform + - uid: 32 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-8.5 + parent: 6 + type: Transform + - uid: 70 + components: + - pos: -2.5,-7.5 + parent: 6 + type: Transform + - uid: 184 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 6 + type: Transform +- proto: RailingCorner + entities: + - uid: 33 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 6 + type: Transform + - uid: 35 + components: + - pos: 4.5,-7.5 + parent: 6 + type: Transform +- proto: RailingCornerSmall + entities: + - uid: 7 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 6 + type: Transform + - uid: 63 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 6 + type: Transform + - uid: 69 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 6 + type: Transform + - uid: 71 + components: + - pos: -1.5,-8.5 + parent: 6 + type: Transform + - uid: 185 + components: + - pos: -3.5,-8.5 + parent: 6 + type: Transform + - uid: 186 + components: + - pos: 3.5,-8.5 + parent: 6 + type: Transform + - uid: 187 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 6 + type: Transform + - uid: 188 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 6 + type: Transform +- proto: RandomArtifactSpawner + entities: + - uid: 113 + components: + - pos: -0.5,2.5 + parent: 6 + type: Transform +- proto: RandomBook + entities: + - uid: 203 + components: + - pos: -5.5,-3.5 + parent: 6 + type: Transform +- proto: RandomDrinkBottle + entities: + - uid: 195 + components: + - pos: -1.5,6.5 + parent: 6 + type: Transform +- proto: RandomItem + entities: + - uid: 204 + components: + - pos: -0.5,1.5 + parent: 6 + type: Transform +- proto: RandomPosterContraband + entities: + - uid: 198 + components: + - pos: -3.5,2.5 + parent: 6 + type: Transform + - uid: 199 + components: + - pos: 2.5,-0.5 + parent: 6 + type: Transform +- proto: RandomServiceCorpseSpawner + entities: + - uid: 201 + components: + - pos: -4.5,2.5 + parent: 6 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 4 + components: + - pos: -2.5,-5.5 + parent: 6 + type: Transform + - uid: 36 + components: + - pos: -0.5,4.5 + parent: 6 + type: Transform + - uid: 37 + components: + - pos: 0.5,4.5 + parent: 6 + type: Transform + - uid: 38 + components: + - pos: 1.5,4.5 + parent: 6 + type: Transform + - uid: 42 + components: + - pos: -2.5,4.5 + parent: 6 + type: Transform + - uid: 54 + components: + - pos: -1.5,4.5 + parent: 6 + type: Transform + - uid: 82 + components: + - pos: 2.5,-5.5 + parent: 6 + type: Transform + - uid: 83 + components: + - pos: -4.5,-5.5 + parent: 6 + type: Transform + - uid: 84 + components: + - pos: 4.5,-3.5 + parent: 6 + type: Transform + - uid: 90 + components: + - pos: -6.5,-3.5 + parent: 6 + type: Transform + - uid: 110 + components: + - pos: 0.5,-5.5 + parent: 6 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 181 + components: + - pos: 1.5,1.5 + parent: 6 + type: Transform +- proto: SalvageMobSpawner75 + entities: + - uid: 174 + components: + - pos: -2.5,0.5 + parent: 6 + type: Transform + - uid: 175 + components: + - pos: 1.5,-1.5 + parent: 6 + type: Transform + - uid: 176 + components: + - pos: 1.5,3.5 + parent: 6 + type: Transform + - uid: 177 + components: + - pos: -2.5,3.5 + parent: 6 + type: Transform +- proto: SheetPlasteel + entities: + - uid: 196 + components: + - pos: -1.496209,-3.4535725 + parent: 6 + type: Transform +- proto: SignDirectionalLibrary + entities: + - uid: 191 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 6 + type: Transform +- proto: SignLibrary + entities: + - uid: 164 + components: + - pos: -3.5,-5.5 + parent: 6 + type: Transform +- proto: SmallLight + entities: + - uid: 111 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 6 + type: Transform +- proto: StatueVenusBlue + entities: + - uid: 182 + components: + - pos: -4.5,-7.5 + parent: 6 + type: Transform +- proto: StatueVenusRed + entities: + - uid: 107 + components: + - pos: 2.5,-7.5 + parent: 6 + type: Transform +- proto: TableCarpet + entities: + - uid: 158 + components: + - pos: -0.5,1.5 + parent: 6 + type: Transform + - uid: 159 + components: + - pos: -1.5,1.5 + parent: 6 + type: Transform + - uid: 160 + components: + - pos: -1.5,2.5 + parent: 6 + type: Transform + - uid: 161 + components: + - pos: 0.5,1.5 + parent: 6 + type: Transform + - uid: 162 + components: + - pos: 0.5,2.5 + parent: 6 + type: Transform +- proto: TableGlass + entities: + - uid: 194 + components: + - pos: -1.5,6.5 + parent: 6 + type: Transform +- proto: TableReinforced + entities: + - uid: 170 + components: + - pos: -5.5,2.5 + parent: 6 + type: Transform +- proto: TableWood + entities: + - uid: 11 + components: + - pos: -4.5,-4.5 + parent: 6 + type: Transform + - uid: 72 + components: + - pos: -1.5,-3.5 + parent: 6 + type: Transform +- proto: WallWood + entities: + - uid: 1 + components: + - pos: 2.5,1.5 + parent: 6 + type: Transform + - uid: 2 + components: + - pos: 3.5,0.5 + parent: 6 + type: Transform + - uid: 5 + components: + - pos: -6.5,-4.5 + parent: 6 + type: Transform + - uid: 8 + components: + - pos: -6.5,-5.5 + parent: 6 + type: Transform + - uid: 20 + components: + - pos: -4.5,0.5 + parent: 6 + type: Transform + - uid: 28 + components: + - pos: 3.5,-7.5 + parent: 6 + type: Transform + - uid: 39 + components: + - pos: -3.5,4.5 + parent: 6 + type: Transform + - uid: 43 + components: + - pos: -6.5,0.5 + parent: 6 + type: Transform + - uid: 45 + components: + - pos: 2.5,0.5 + parent: 6 + type: Transform + - uid: 46 + components: + - pos: 2.5,2.5 + parent: 6 + type: Transform + - uid: 57 + components: + - pos: 2.5,4.5 + parent: 6 + type: Transform + - uid: 58 + components: + - pos: 2.5,3.5 + parent: 6 + type: Transform + - uid: 59 + components: + - pos: -3.5,3.5 + parent: 6 + type: Transform + - uid: 60 + components: + - pos: -6.5,-1.5 + parent: 6 + type: Transform + - uid: 61 + components: + - pos: -3.5,2.5 + parent: 6 + type: Transform + - uid: 62 + components: + - pos: -6.5,-2.5 + parent: 6 + type: Transform + - uid: 64 + components: + - pos: 4.5,0.5 + parent: 6 + type: Transform + - uid: 65 + components: + - pos: 4.5,-0.5 + parent: 6 + type: Transform + - uid: 67 + components: + - pos: -6.5,-0.5 + parent: 6 + type: Transform + - uid: 68 + components: + - pos: -5.5,-5.5 + parent: 6 + type: Transform + - uid: 77 + components: + - pos: 4.5,-1.5 + parent: 6 + type: Transform + - uid: 78 + components: + - pos: 4.5,-2.5 + parent: 6 + type: Transform + - uid: 80 + components: + - pos: 4.5,-4.5 + parent: 6 + type: Transform + - uid: 81 + components: + - pos: 1.5,-5.5 + parent: 6 + type: Transform + - uid: 85 + components: + - pos: -3.5,-5.5 + parent: 6 + type: Transform + - uid: 86 + components: + - pos: -5.5,-7.5 + parent: 6 + type: Transform + - uid: 87 + components: + - pos: 4.5,-5.5 + parent: 6 + type: Transform + - uid: 88 + components: + - pos: 3.5,-5.5 + parent: 6 + type: Transform + - uid: 91 + components: + - pos: -3.5,1.5 + parent: 6 + type: Transform + - uid: 92 + components: + - pos: -3.5,0.5 + parent: 6 + type: Transform + - uid: 104 + components: + - pos: -3.5,-2.5 + parent: 6 + type: Transform + - uid: 118 + components: + - pos: -0.5,-0.5 + parent: 6 + type: Transform + - uid: 119 + components: + - pos: 2.5,-0.5 + parent: 6 + type: Transform + - uid: 120 + components: + - pos: 1.5,-2.5 + parent: 6 + type: Transform + - uid: 127 + components: + - pos: 1.5,-7.5 + parent: 6 + type: Transform + - uid: 128 + components: + - pos: -3.5,-7.5 + parent: 6 + type: Transform +- proto: WeldingFuelTankHighCapacity + entities: + - uid: 163 + components: + - pos: 3.5,1.5 + parent: 6 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 100 + components: + - rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 6 + type: Transform + - uid: 101 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 6 + type: Transform + - uid: 102 + components: + - pos: -0.5,3.5 + parent: 6 + type: Transform + - uid: 115 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 6 + type: Transform +- proto: WindowTintedDirectional + entities: + - uid: 131 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 6 + type: Transform + - uid: 132 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 6 + type: Transform + - uid: 133 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 6 + type: Transform + - uid: 134 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 6 + type: Transform + - uid: 137 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 6 + type: Transform + - uid: 138 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 6 + type: Transform +- proto: WoodDoor + entities: + - uid: 99 + components: + - pos: -0.5,-5.5 + parent: 6 + type: Transform + - uid: 106 + components: + - pos: -1.5,-5.5 + parent: 6 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-med-pet-hospital.yml b/Resources/Maps/Salvage/DeltaV/DV-med-pet-hospital.yml new file mode 100644 index 0000000000..e392430a7f --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-med-pet-hospital.yml @@ -0,0 +1,2161 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 38: FloorDirt + 69: FloorPlanetGrass + 72: FloorReinforced + 84: FloorSteel + 100: FloorWhite + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 289 + components: + - type: MetaData + - pos: -7,5.5 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABRQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAABRQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAACRQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAD + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAABRQAAAAACRQAAAAADJgAAAAACJgAAAAAARQAAAAABRQAAAAABRQAAAAACRQAAAAABRQAAAAAARQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAARQAAAAABRQAAAAABJgAAAAABJgAAAAAARQAAAAADRQAAAAAARQAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZAAAAAACZAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAADZAAAAAAAZAAAAAACZAAAAAABZAAAAAABZAAAAAADZAAAAAAAZAAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAZAAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAADZAAAAAACZAAAAAABZAAAAAABcQAAAAAAZAAAAAABZAAAAAACZAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAZAAAAAADZAAAAAADZAAAAAAAZAAAAAADZAAAAAACZAAAAAADZAAAAAAAZAAAAAABcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAARQAAAAABAAAAAAAAcQAAAAAAcQAAAAAAZAAAAAACcQAAAAAAZAAAAAABcQAAAAAAZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAZAAAAAADcQAAAAAARQAAAAADAAAAAAAAZAAAAAABZAAAAAABZAAAAAADZAAAAAABZAAAAAACZAAAAAADZAAAAAAAZAAAAAACZAAAAAACZAAAAAADZAAAAAAAZAAAAAAAZAAAAAABcQAAAAAARQAAAAAAAAAAAAAAZAAAAAACZAAAAAABZAAAAAAAZAAAAAABZAAAAAACZAAAAAABZAAAAAAAZAAAAAACZAAAAAAAZAAAAAADZAAAAAABZAAAAAABZAAAAAABcQAAAAAARQAAAAACAAAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAABZAAAAAACZAAAAAAAZAAAAAADZAAAAAAAZAAAAAACZAAAAAADZAAAAAAAZAAAAAAAcQAAAAAARQAAAAADAAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAARQAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAACcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAVAAAAAACVAAAAAADcQAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAABcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: RQAAAAABRQAAAAACRQAAAAABRQAAAAAARQAAAAABRQAAAAADRQAAAAADRQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Busha1 + decals: + 9: -1.1417494,-3.8034139 + 74: 6.8010106,-0.07513142 + - node: + color: '#FFFFFFFF' + id: Busha3 + decals: + 5: 13.998876,-6.5572395 + 6: 13.920751,-3.6315389 + 73: 2.1447606,-0.043881416 + - node: + color: '#FFFFFFFF' + id: Bushe3 + decals: + 3: 2.5145006,-13.229115 + 4: 6.9520006,-13.072865 + - node: + color: '#FFFFFFFF' + id: Bushf1 + decals: + 75: 3.3322606,-0.07513142 + - node: + color: '#FFFFFFFF' + id: Bushi1 + decals: + 1: 1.5145006,-13.114904 + 2: 7.8426256,-13.072865 + - node: + color: '#FFFFFFFF' + id: Bushk1 + decals: + 76: 4.6760106,-0.07513142 + - node: + color: '#FFFFFFFF' + id: Bushl3 + decals: + 71: 1,0 + 72: -1,0 + - node: + color: '#FFFFFFFF' + id: Bushm2 + decals: + 0: -0.9386244,-1.7711535 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 79: 5,-11 + 80: 6,-10 + 81: 4,-10 + 82: 7,-7 + 83: 4,-5 + 84: 8,-7 + 85: 12,-5 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 58: 11,-5 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 45: 1,-6 + 46: 11,-10 + 47: 7,-5 + 48: 4,-9 + 49: 6,-11 + 50: 1,-11 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 56: 2,-3 + 59: 1,-7 + 61: 4,-6 + 63: 12,-9 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 51: 6,-5 + 52: 4,-2 + 53: 1,-3 + 54: 1,-2 + 55: 2,-2 + 57: 10,-7 + 60: 1,-9 + 62: 3,-5 + 64: 5,-7 + - node: + color: '#FFFFFFFF' + id: Flowersbr2 + decals: + 10: 7.1551256,-13.975288 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 11: 1.9832506,-13.803413 + 12: 3.1863756,-13.084663 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 28: 6,-6 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 7: 13.889501,-4.865914 + 8: -1.9386244,-6.944039 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + decals: + 13: 4,-9 + 14: 5,-9 + 15: 6,-9 + 16: 7,-9 + 17: 8,-9 + 18: 3,-9 + 19: 2,-9 + 20: 1,-9 + 32: 6,-7 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 24: 4,-11 + 25: 5,-11 + 26: 3,-11 + 27: 6,-11 + 29: 6,-5 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale180 + decals: + 42: 10,-7 + 43: 11,-7 + 44: 12,-7 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + decals: + 30: 7,-6 + 33: 8,-6 + 34: 9,-6 + 35: 10,-6 + 36: 11,-6 + 37: 12,-6 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + decals: + 22: 8,-10 + 23: 8,-11 + 31: 5,-6 + 38: 4,-6 + 39: 3,-6 + 40: 2,-6 + 41: 1,-6 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 21: 8,-9 + - node: + cleanable: True + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale270 + decals: + 65: 4,-3 + 66: 5,-3 + 67: 6,-3 + 68: 7,-3 + 69: 1,-3 + 70: 2,-3 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 77: 10,-3 + 78: 11,-3 + - node: + color: '#DE3A3A15' + id: splatter + decals: + 86: 11.145445,-10.471493 + 87: 11.19232,-10.471493 + 88: 11.551695,-10.502743 + 89: 11.66107,-10.018368 + - node: + color: '#DE3A3A25' + id: splatter + decals: + 90: 11.082945,-10.471493 + 91: 11.176695,-9.908993 + 92: 11.676695,-10.033993 + 93: 11.676695,-10.658993 + 94: 11.145445,-10.424618 + 95: 11.114195,-10.737118 + 96: 11.832945,-11.252743 + 97: 10.832945,-10.908993 + 98: 10.81732,-9.612118 + 99: 11.25482,-9.408993 + 100: 11.176695,-9.237118 + 101: 11.56732,-9.799618 + 102: 11.676695,-9.315243 + 103: 11.66107,-8.971493 + 104: 4.2401886,-8.942318 + 105: 4.2089386,-9.051693 + 106: 4.3651886,-9.442318 + 107: 4.6776886,-9.489193 + 108: 4.7714386,-9.504818 + 109: 4.4433136,-9.911068 + 110: 3.9589386,-10.161068 + 111: 4.6620636,-10.629818 + 112: 5.3964386,-10.473568 + 113: 4.4276886,-10.223568 + 114: 4.5370636,-9.645443 + 115: 4.8495636,-10.192318 + 116: 4.4901886,-9.848568 + 117: 4.8026886,-10.254818 + 118: 4.3495636,-9.879818 + 119: 4.4589386,-9.926693 + 120: 4.7870636,-9.786068 + 121: 5.1776886,-9.457943 + 122: 5.7089386,-8.926693 + 123: 5.8808136,-8.629818 + 124: 7.1620636,-4.915698 + 125: 6.8495636,-4.775073 + 126: 6.1151886,-4.509448 + 127: 5.7401886,-2.196948 + 128: 5.4120636,-1.978198 + 129: 5.3339386,-2.306323 + 130: 5.4433136,-2.540698 + 131: 4.9745636,-2.228198 + 132: 4.8339386,-2.478198 + 133: 4.8339386,-2.400073 + 134: 5.5995636,-2.728198 + 135: 5.6151886,-2.743823 + 136: 4.8339386,-2.868823 + 137: 5.3495636,-3.103198 + 138: 5.7089386,-3.196948 + 139: 5.1151886,-3.353198 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-2: + 0: 52428 + -1,-1: + 0: 36044 + 0,-1: + 0: 65535 + -1,-3: + 0: 52424 + -1,-4: + 0: 32768 + 0,-4: + 0: 65024 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 1,-4: + 0: 65280 + 1,-3: + 0: 65535 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-4: + 0: 65280 + 2,-3: + 0: 65535 + 2,-2: + 0: 65535 + 2,-1: + 0: 65535 + 3,-4: + 0: 12544 + 3,-3: + 0: 30579 + 3,-2: + 0: 30583 + 3,-1: + 0: 65527 + -1,0: + 0: 8 + 0,0: + 0: 15 + 1,0: + 0: 15 + 2,0: + 0: 255 + 3,0: + 0: 255 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: OccluderTree + - type: Shuttle + - type: RadiationGridResistance + - type: GasTileOverlay + - type: SpreaderGrid + - type: GridPathfinding +- proto: AirlockGlass + entities: + - uid: 14 + components: + - pos: 2.5,-7.5 + parent: 289 + type: Transform + - uid: 96 + components: + - pos: 4.5,-11.5 + parent: 289 + type: Transform + - uid: 97 + components: + - pos: 5.5,-11.5 + parent: 289 + type: Transform +- proto: AirlockMaintMedLocked + entities: + - uid: 102 + components: + - pos: 0.5,-2.5 + parent: 289 + type: Transform +- proto: AirlockMedicalGlassLocked + entities: + - uid: 98 + components: + - pos: 4.5,-7.5 + parent: 289 + type: Transform + - uid: 99 + components: + - pos: 6.5,-7.5 + parent: 289 + type: Transform + - uid: 100 + components: + - pos: 5.5,-3.5 + parent: 289 + type: Transform + - uid: 101 + components: + - pos: 1.5,-3.5 + parent: 289 + type: Transform +- proto: APCBasic + entities: + - uid: 145 + components: + - name: bear outpost APC + type: MetaData + - pos: 2.5,-3.5 + parent: 289 + type: Transform +- proto: BlastDoor + entities: + - uid: 80 + components: + - pos: 10.5,-3.5 + parent: 289 + type: Transform + - uid: 81 + components: + - pos: 11.5,-3.5 + parent: 289 + type: Transform +- proto: BoxFolderWhite + entities: + - uid: 127 + components: + - pos: 3.516501,-9.026169 + parent: 289 + type: Transform +- proto: BoxMouthSwab + entities: + - uid: 124 + components: + - pos: 11.634314,-11.536985 + parent: 289 + type: Transform +- proto: BoxSyringe + entities: + - uid: 205 + components: + - pos: 11.097885,-11.513845 + parent: 289 + type: Transform +- proto: CableApcExtension + entities: + - uid: 143 + components: + - pos: 0.5,-1.5 + parent: 289 + type: Transform + - uid: 144 + components: + - pos: 2.5,-3.5 + parent: 289 + type: Transform + - uid: 146 + components: + - pos: 1.5,-3.5 + parent: 289 + type: Transform + - uid: 147 + components: + - pos: 1.5,-4.5 + parent: 289 + type: Transform + - uid: 148 + components: + - pos: 1.5,-5.5 + parent: 289 + type: Transform + - uid: 149 + components: + - pos: 2.5,-5.5 + parent: 289 + type: Transform + - uid: 150 + components: + - pos: 3.5,-5.5 + parent: 289 + type: Transform + - uid: 151 + components: + - pos: 4.5,-5.5 + parent: 289 + type: Transform + - uid: 152 + components: + - pos: 5.5,-5.5 + parent: 289 + type: Transform + - uid: 153 + components: + - pos: 5.5,-4.5 + parent: 289 + type: Transform + - uid: 154 + components: + - pos: 5.5,-3.5 + parent: 289 + type: Transform + - uid: 155 + components: + - pos: 5.5,-2.5 + parent: 289 + type: Transform + - uid: 156 + components: + - pos: 6.5,-5.5 + parent: 289 + type: Transform + - uid: 157 + components: + - pos: 7.5,-5.5 + parent: 289 + type: Transform + - uid: 158 + components: + - pos: 8.5,-5.5 + parent: 289 + type: Transform + - uid: 159 + components: + - pos: 9.5,-5.5 + parent: 289 + type: Transform + - uid: 160 + components: + - pos: 10.5,-5.5 + parent: 289 + type: Transform + - uid: 161 + components: + - pos: 10.5,-4.5 + parent: 289 + type: Transform + - uid: 162 + components: + - pos: 10.5,-3.5 + parent: 289 + type: Transform + - uid: 163 + components: + - pos: 10.5,-2.5 + parent: 289 + type: Transform + - uid: 164 + components: + - pos: 10.5,-6.5 + parent: 289 + type: Transform + - uid: 165 + components: + - pos: 11.5,-6.5 + parent: 289 + type: Transform + - uid: 166 + components: + - pos: 5.5,-6.5 + parent: 289 + type: Transform + - uid: 167 + components: + - pos: 5.5,-7.5 + parent: 289 + type: Transform + - uid: 168 + components: + - pos: 5.5,-8.5 + parent: 289 + type: Transform + - uid: 169 + components: + - pos: 5.5,-9.5 + parent: 289 + type: Transform + - uid: 170 + components: + - pos: 4.5,-9.5 + parent: 289 + type: Transform + - uid: 171 + components: + - pos: 2.5,-9.5 + parent: 289 + type: Transform + - uid: 172 + components: + - pos: 3.5,-9.5 + parent: 289 + type: Transform + - uid: 173 + components: + - pos: 5.5,-10.5 + parent: 289 + type: Transform + - uid: 238 + components: + - pos: 0.5,-5.5 + parent: 289 + type: Transform + - uid: 239 + components: + - pos: -0.5,-5.5 + parent: 289 + type: Transform + - uid: 240 + components: + - pos: -0.5,-6.5 + parent: 289 + type: Transform + - uid: 241 + components: + - pos: -0.5,-7.5 + parent: 289 + type: Transform + - uid: 242 + components: + - pos: 5.5,-11.5 + parent: 289 + type: Transform + - uid: 243 + components: + - pos: 4.5,-11.5 + parent: 289 + type: Transform + - uid: 244 + components: + - pos: 3.5,-11.5 + parent: 289 + type: Transform + - uid: 245 + components: + - pos: 2.5,-11.5 + parent: 289 + type: Transform + - uid: 246 + components: + - pos: 1.5,-11.5 + parent: 289 + type: Transform + - uid: 247 + components: + - pos: 12.5,-6.5 + parent: 289 + type: Transform + - uid: 248 + components: + - pos: 13.5,-6.5 + parent: 289 + type: Transform + - uid: 249 + components: + - pos: 13.5,-7.5 + parent: 289 + type: Transform + - uid: 256 + components: + - pos: 11.5,-7.5 + parent: 289 + type: Transform + - uid: 257 + components: + - pos: 11.5,-8.5 + parent: 289 + type: Transform + - uid: 258 + components: + - pos: 11.5,-9.5 + parent: 289 + type: Transform + - uid: 259 + components: + - pos: 11.5,-10.5 + parent: 289 + type: Transform +- proto: CableHV + entities: + - uid: 224 + components: + - pos: 1.5,-1.5 + parent: 289 + type: Transform + - uid: 225 + components: + - pos: 1.5,-0.5 + parent: 289 + type: Transform + - uid: 226 + components: + - pos: 2.5,-0.5 + parent: 289 + type: Transform +- proto: CableMV + entities: + - uid: 220 + components: + - pos: 2.5,-3.5 + parent: 289 + type: Transform + - uid: 221 + components: + - pos: 2.5,-2.5 + parent: 289 + type: Transform + - uid: 222 + components: + - pos: 2.5,-1.5 + parent: 289 + type: Transform + - uid: 223 + components: + - pos: 2.5,-0.5 + parent: 289 + type: Transform +- proto: Catwalk + entities: + - uid: 138 + components: + - pos: 10.5,1.5 + parent: 289 + type: Transform + - uid: 139 + components: + - pos: 9.5,1.5 + parent: 289 + type: Transform + - uid: 199 + components: + - pos: 12.5,1.5 + parent: 289 + type: Transform + - uid: 200 + components: + - pos: 11.5,1.5 + parent: 289 + type: Transform + - uid: 265 + components: + - pos: 13.5,1.5 + parent: 289 + type: Transform + - uid: 266 + components: + - pos: 14.5,1.5 + parent: 289 + type: Transform + - uid: 267 + components: + - pos: 15.5,1.5 + parent: 289 + type: Transform + - uid: 268 + components: + - pos: 15.5,0.5 + parent: 289 + type: Transform + - uid: 269 + components: + - pos: 15.5,-0.5 + parent: 289 + type: Transform +- proto: Chair + entities: + - uid: 218 + components: + - pos: 7.5,-8.5 + parent: 289 + type: Transform + - uid: 260 + components: + - pos: 8.5,-8.5 + parent: 289 + type: Transform + - uid: 261 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-10.5 + parent: 289 + type: Transform + - uid: 262 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-10.5 + parent: 289 + type: Transform + - uid: 263 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-10.5 + parent: 289 + type: Transform +- proto: ChairFolding + entities: + - uid: 287 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-9.5 + parent: 289 + type: Transform + - uid: 288 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-8.5 + parent: 289 + type: Transform +- proto: ChairOfficeLight + entities: + - uid: 264 + components: + - pos: 2.5,-8.5 + parent: 289 + type: Transform +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 204 + components: + - pos: 10.55101,-11.37322 + parent: 289 + type: Transform +- proto: ClothingHeadHatSurgcapPurple + entities: + - uid: 278 + components: + - pos: 6.5878654,-2.6454568 + parent: 289 + type: Transform +- proto: computerBodyScanner + entities: + - uid: 271 + components: + - pos: 6.5,-1.5 + parent: 289 + type: Transform +- proto: ComputerCrewMonitoring + entities: + - uid: 286 + components: + - pos: 9.5,-4.5 + parent: 289 + type: Transform +- proto: CrateChemistrySecure + entities: + - uid: 295 + components: + - pos: 12.5,-4.5 + parent: 289 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 296 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: CrateLivestock + entities: + - uid: 300 + components: + - pos: 10.5,1.5 + parent: 289 + type: Transform + - uid: 301 + components: + - pos: 11.5,1.5 + parent: 289 + type: Transform + - uid: 302 + components: + - pos: 13.5,1.5 + parent: 289 + type: Transform +- proto: CrateSurgery + entities: + - uid: 273 + components: + - pos: 7.5,-1.5 + parent: 289 + type: Transform +- proto: CrewMonitoringServerMachineCircuitboard + entities: + - uid: 285 + components: + - pos: 11.494615,-10.515447 + parent: 289 + type: Transform +- proto: EmergencyRollerBed + entities: + - uid: 280 + components: + - pos: 8.489622,-4.299755 + parent: 289 + type: Transform +- proto: ExtinguisherCabinetFilled + entities: + - uid: 93 + components: + - pos: 5.5,-7.5 + parent: 289 + type: Transform + - uid: 94 + components: + - pos: 3.5,-1.5 + parent: 289 + type: Transform + - uid: 95 + components: + - pos: 9.5,-9.5 + parent: 289 + type: Transform +- proto: Firelock + entities: + - uid: 206 + components: + - pos: 4.5,-7.5 + parent: 289 + type: Transform + - uid: 207 + components: + - pos: 6.5,-7.5 + parent: 289 + type: Transform + - uid: 208 + components: + - pos: 5.5,-3.5 + parent: 289 + type: Transform + - uid: 209 + components: + - pos: 1.5,-3.5 + parent: 289 + type: Transform + - uid: 210 + components: + - pos: 11.5,-7.5 + parent: 289 + type: Transform + - uid: 211 + components: + - pos: 12.5,-7.5 + parent: 289 + type: Transform +- proto: GeneratorRTG + entities: + - uid: 142 + components: + - pos: 1.5,-1.5 + parent: 289 + type: Transform +- proto: Grille + entities: + - uid: 15 + components: + - pos: 5.5,-0.5 + parent: 289 + type: Transform + - uid: 20 + components: + - pos: 7.5,-11.5 + parent: 289 + type: Transform + - uid: 21 + components: + - pos: 8.5,-11.5 + parent: 289 + type: Transform + - uid: 23 + components: + - pos: 6.5,-0.5 + parent: 289 + type: Transform + - uid: 30 + components: + - pos: 10.5,-7.5 + parent: 289 + type: Transform + - uid: 42 + components: + - pos: 2.5,-11.5 + parent: 289 + type: Transform + - uid: 43 + components: + - pos: 1.5,-11.5 + parent: 289 + type: Transform + - uid: 54 + components: + - pos: 13.5,-6.5 + parent: 289 + type: Transform + - uid: 55 + components: + - pos: 13.5,-5.5 + parent: 289 + type: Transform + - uid: 56 + components: + - pos: 13.5,-4.5 + parent: 289 + type: Transform +- proto: IngotGold1 + entities: + - uid: 126 + components: + - pos: 9.302135,-1.5349226 + parent: 289 + type: Transform + - uid: 178 + components: + - pos: 9.63026,-1.5505476 + parent: 289 + type: Transform + - uid: 179 + components: + - pos: 9.28651,-1.7536726 + parent: 289 + type: Transform + - uid: 181 + components: + - pos: 9.63026,-1.3317976 + parent: 289 + type: Transform + - uid: 182 + components: + - pos: 9.56776,-1.7536726 + parent: 289 + type: Transform + - uid: 184 + components: + - pos: 9.38026,-1.3005476 + parent: 289 + type: Transform +- proto: Jug + entities: + - uid: 296 + components: + - flags: InContainer + type: MetaData + - parent: 295 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: Lamp + entities: + - uid: 86 + components: + - pos: 3.5357494,-8.260544 + parent: 289 + type: Transform +- proto: MaterialDiamond + entities: + - uid: 128 + components: + - pos: 9.47401,-2.1911726 + parent: 289 + type: Transform +- proto: MedicalTechFab + entities: + - uid: 111 + components: + - pos: 12.5,-11.5 + parent: 289 + type: Transform +- proto: MedkitAdvancedFilled + entities: + - uid: 282 + components: + - pos: 7.487108,-2.7155042 + parent: 289 + type: Transform +- proto: MedkitBruteFilled + entities: + - uid: 117 + components: + - pos: 10.603064,-10.716812 + parent: 289 + type: Transform +- proto: MedkitBurnFilled + entities: + - uid: 116 + components: + - pos: 10.540564,-10.248062 + parent: 289 + type: Transform +- proto: MedkitFilled + entities: + - uid: 115 + components: + - pos: 10.587439,-9.794937 + parent: 289 + type: Transform +- proto: MedkitOxygenFilled + entities: + - uid: 113 + components: + - pos: 10.509314,-8.982437 + parent: 289 + type: Transform +- proto: MedkitRadiationFilled + entities: + - uid: 112 + components: + - pos: 10.493689,-8.544937 + parent: 289 + type: Transform +- proto: MedkitToxinFilled + entities: + - uid: 114 + components: + - pos: 10.556189,-9.373062 + parent: 289 + type: Transform +- proto: OmnizineChemistryBottle + entities: + - uid: 140 + components: + - pos: 9.681308,-2.5229235 + parent: 289 + type: Transform +- proto: OperatingTable + entities: + - uid: 270 + components: + - pos: 5.5,-1.5 + parent: 289 + type: Transform +- proto: Paper + entities: + - uid: 87 + components: + - pos: 3.2538629,-9.353822 + parent: 289 + type: Transform + - uid: 88 + components: + - pos: 3.4101129,-9.416322 + parent: 289 + type: Transform + - uid: 89 + components: + - pos: 3.3476129,-9.588197 + parent: 289 + type: Transform + - uid: 90 + components: + - pos: 3.6601129,-9.447572 + parent: 289 + type: Transform +- proto: Pen + entities: + - uid: 91 + components: + - pos: 2.0819879,-9.478822 + parent: 289 + type: Transform +- proto: PersonalAI + entities: + - uid: 125 + components: + - flags: SessionSpecific + type: MetaData + - pos: 2.4817362,-9.476541 + parent: 289 + type: Transform +- proto: PhoneInstrument + entities: + - uid: 92 + components: + - pos: 1.5194879,-9.447572 + parent: 289 + type: Transform +- proto: PlushieSpaceLizard + entities: + - uid: 135 + components: + - pos: 8.5167885,-8.516763 + parent: 289 + type: Transform +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 281 + components: + - pos: 8.5,-3.5 + parent: 289 + type: Transform +- proto: PosterLegitSafetyInternals + entities: + - uid: 129 + components: + - pos: 8.5,-7.5 + parent: 289 + type: Transform +- proto: Poweredlight + entities: + - uid: 227 + components: + - pos: 4.5,-4.5 + parent: 289 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 228 + components: + - pos: 7.5,-4.5 + parent: 289 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 229 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 289 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 230 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-7.5 + parent: 289 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 231 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-10.5 + parent: 289 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 250 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 289 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 251 + components: + - pos: 5.5,-8.5 + parent: 289 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 252 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 289 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 253 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 289 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredlightExterior + entities: + - uid: 235 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-7.5 + parent: 289 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 237 + components: + - pos: 3.5,-12.5 + parent: 289 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredlightSodium + entities: + - uid: 232 + components: + - pos: 10.5,-1.5 + parent: 289 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: RandomAnimalSpawner + entities: + - uid: 212 + components: + - pos: 10.5,-1.5 + parent: 289 + type: Transform +- proto: RandomMedicCorpseSpawner + entities: + - uid: 254 + components: + - pos: 11.5,-9.5 + parent: 289 + type: Transform + - uid: 291 + components: + - pos: 1.5,-5.5 + parent: 289 + type: Transform + - uid: 293 + components: + - pos: 5.5,-2.5 + parent: 289 + type: Transform + - uid: 294 + components: + - pos: 4.5,-9.5 + parent: 289 + type: Transform +- proto: RandomSpawner + entities: + - uid: 130 + components: + - pos: 7.5,-8.5 + parent: 289 + type: Transform + - uid: 131 + components: + - pos: 2.5,-10.5 + parent: 289 + type: Transform + - uid: 132 + components: + - pos: 2.5,-4.5 + parent: 289 + type: Transform + - uid: 133 + components: + - pos: 11.5,-8.5 + parent: 289 + type: Transform + - uid: 134 + components: + - pos: 10.5,-4.5 + parent: 289 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 22 + components: + - pos: 5.5,-0.5 + parent: 289 + type: Transform + - uid: 33 + components: + - pos: 13.5,-4.5 + parent: 289 + type: Transform + - uid: 34 + components: + - pos: 13.5,-6.5 + parent: 289 + type: Transform + - uid: 68 + components: + - pos: 13.5,-5.5 + parent: 289 + type: Transform + - uid: 69 + components: + - pos: 6.5,-0.5 + parent: 289 + type: Transform + - uid: 110 + components: + - pos: 10.5,-7.5 + parent: 289 + type: Transform +- proto: SalvagePartsSpawnerMid + entities: + - uid: 198 + components: + - pos: 12.5,-1.5 + parent: 289 + type: Transform + - uid: 298 + components: + - pos: 12.5,-1.5 + parent: 289 + type: Transform +- proto: SalvagePartsSpawnerSubSpace + entities: + - uid: 299 + components: + - pos: 12.5,-1.5 + parent: 289 + type: Transform +- proto: SawAdvanced + entities: + - uid: 277 + components: + - pos: 4.5878654,-1.6454568 + parent: 289 + type: Transform +- proto: ScalpelLaser + entities: + - uid: 276 + components: + - pos: 4.50167,-2.3962312 + parent: 289 + type: Transform +- proto: SignDangerMed + entities: + - uid: 236 + components: + - pos: 7.5,-7.5 + parent: 289 + type: Transform +- proto: SignDirectionalMed + entities: + - uid: 118 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-11.5 + parent: 289 + type: Transform +- proto: SignElectricalMed + entities: + - uid: 233 + components: + - pos: 3.5,-3.5 + parent: 289 + type: Transform +- proto: SignMedical + entities: + - uid: 234 + components: + - pos: 3.5,-11.5 + parent: 289 + type: Transform +- proto: SignNosmoking + entities: + - uid: 255 + components: + - pos: 13.5,-8.5 + parent: 289 + type: Transform +- proto: SignSurgery + entities: + - uid: 272 + components: + - pos: 6.5,-3.5 + parent: 289 + type: Transform +- proto: SinkWide + entities: + - uid: 120 + components: + - pos: 1.5093136,-1.1307354 + parent: 289 + type: Transform +- proto: SpawnMobBearSalvage + entities: + - uid: 137 + components: + - pos: 9.5,-5.5 + parent: 289 + type: Transform + - uid: 141 + components: + - pos: 4.5,-5.5 + parent: 289 + type: Transform + - uid: 174 + components: + - pos: 4.5,0.5 + parent: 289 + type: Transform + - uid: 175 + components: + - pos: 7.5,-12.5 + parent: 289 + type: Transform + - uid: 176 + components: + - pos: 2.5,-12.5 + parent: 289 + type: Transform +- proto: SpawnMobCatBingus + entities: + - uid: 290 + components: + - pos: 10.5,-2.5 + parent: 289 + type: Transform +- proto: SpawnMobCatFloppa + entities: + - uid: 279 + components: + - pos: 5.5,-1.5 + parent: 289 + type: Transform +- proto: SpawnMobCrab + entities: + - uid: 215 + components: + - pos: 11.5,-1.5 + parent: 289 + type: Transform +- proto: SpawnMobFrog + entities: + - uid: 216 + components: + - pos: 12.5,-2.5 + parent: 289 + type: Transform +- proto: SpawnMobKangarooSalvage + entities: + - uid: 292 + components: + - pos: 8.5,-9.5 + parent: 289 + type: Transform +- proto: SpawnMobLizard + entities: + - uid: 214 + components: + - pos: 11.5,-2.5 + parent: 289 + type: Transform +- proto: SpawnMobMedibot + entities: + - uid: 213 + components: + - pos: 3.5,-6.5 + parent: 289 + type: Transform +- proto: StrangePill + entities: + - uid: 297 + components: + - name: pill + type: MetaData + - pos: 0.33870316,-6.5822144 + parent: 289 + type: Transform +- proto: SubstationWallBasic + entities: + - uid: 219 + components: + - pos: 2.5,-0.5 + parent: 289 + type: Transform +- proto: SyringeEphedrine + entities: + - uid: 197 + components: + - pos: 0.6916356,-6.6075954 + parent: 289 + type: Transform +- proto: SyringeTranexamicAcid + entities: + - uid: 196 + components: + - pos: 0.3166356,-6.2482204 + parent: 289 + type: Transform +- proto: TableGlass + entities: + - uid: 123 + components: + - pos: 0.5,-6.5 + parent: 289 + type: Transform + - uid: 274 + components: + - pos: 4.5,-2.5 + parent: 289 + type: Transform + - uid: 275 + components: + - pos: 4.5,-1.5 + parent: 289 + type: Transform +- proto: TableReinforced + entities: + - uid: 82 + components: + - pos: 1.5,-9.5 + parent: 289 + type: Transform + - uid: 83 + components: + - pos: 2.5,-9.5 + parent: 289 + type: Transform + - uid: 84 + components: + - pos: 3.5,-9.5 + parent: 289 + type: Transform + - uid: 85 + components: + - pos: 3.5,-8.5 + parent: 289 + type: Transform + - uid: 105 + components: + - pos: 10.5,-8.5 + parent: 289 + type: Transform + - uid: 106 + components: + - pos: 10.5,-9.5 + parent: 289 + type: Transform + - uid: 107 + components: + - pos: 10.5,-10.5 + parent: 289 + type: Transform + - uid: 108 + components: + - pos: 10.5,-11.5 + parent: 289 + type: Transform + - uid: 109 + components: + - pos: 11.5,-11.5 + parent: 289 + type: Transform +- proto: TableReinforcedGlass + entities: + - uid: 177 + components: + - pos: 9.5,-2.5 + parent: 289 + type: Transform + - uid: 180 + components: + - pos: 9.5,-1.5 + parent: 289 + type: Transform + - uid: 183 + components: + - pos: 12.5,-1.5 + parent: 289 + type: Transform +- proto: ToiletDirtyWater + entities: + - uid: 121 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 289 + type: Transform +- proto: Vaccinator + entities: + - uid: 195 + components: + - pos: 3.5,-4.5 + parent: 289 + type: Transform +- proto: VendingMachineCoffee + entities: + - uid: 136 + components: + - flags: SessionSpecific + type: MetaData + - pos: 5.5,-8.5 + parent: 289 + type: Transform +- proto: VendingMachineMedical + entities: + - uid: 119 + components: + - flags: SessionSpecific + type: MetaData + - pos: 0.5,-5.5 + parent: 289 + type: Transform +- proto: WallReinforced + entities: + - uid: 1 + components: + - pos: 2.5,-3.5 + parent: 289 + type: Transform + - uid: 3 + components: + - pos: 0.5,-3.5 + parent: 289 + type: Transform + - uid: 39 + components: + - pos: 0.5,-0.5 + parent: 289 + type: Transform + - uid: 45 + components: + - pos: 9.5,-12.5 + parent: 289 + type: Transform + - uid: 46 + components: + - pos: 10.5,-12.5 + parent: 289 + type: Transform + - uid: 47 + components: + - pos: 11.5,-12.5 + parent: 289 + type: Transform + - uid: 48 + components: + - pos: 12.5,-12.5 + parent: 289 + type: Transform + - uid: 49 + components: + - pos: 13.5,-12.5 + parent: 289 + type: Transform + - uid: 50 + components: + - pos: 13.5,-11.5 + parent: 289 + type: Transform + - uid: 51 + components: + - pos: 13.5,-10.5 + parent: 289 + type: Transform + - uid: 52 + components: + - pos: 13.5,-9.5 + parent: 289 + type: Transform + - uid: 53 + components: + - pos: 13.5,-8.5 + parent: 289 + type: Transform + - uid: 70 + components: + - pos: 3.5,-1.5 + parent: 289 + type: Transform + - uid: 71 + components: + - pos: 3.5,-0.5 + parent: 289 + type: Transform + - uid: 72 + components: + - pos: 3.5,-2.5 + parent: 289 + type: Transform + - uid: 73 + components: + - pos: 3.5,-3.5 + parent: 289 + type: Transform + - uid: 74 + components: + - pos: 13.5,-7.5 + parent: 289 + type: Transform + - uid: 75 + components: + - pos: 0.5,-1.5 + parent: 289 + type: Transform + - uid: 76 + components: + - pos: 1.5,-0.5 + parent: 289 + type: Transform + - uid: 77 + components: + - pos: 2.5,-0.5 + parent: 289 + type: Transform +- proto: WallRiveted + entities: + - uid: 31 + components: + - pos: 13.5,-3.5 + parent: 289 + type: Transform + - uid: 32 + components: + - pos: 14.5,-1.5 + parent: 289 + type: Transform + - uid: 35 + components: + - pos: 12.5,0.5 + parent: 289 + type: Transform + - uid: 57 + components: + - pos: 12.5,-3.5 + parent: 289 + type: Transform + - uid: 58 + components: + - pos: 10.5,0.5 + parent: 289 + type: Transform + - uid: 59 + components: + - pos: 9.5,0.5 + parent: 289 + type: Transform + - uid: 60 + components: + - pos: 13.5,-1.5 + parent: 289 + type: Transform + - uid: 61 + components: + - pos: 14.5,0.5 + parent: 289 + type: Transform + - uid: 62 + components: + - pos: 14.5,-2.5 + parent: 289 + type: Transform + - uid: 63 + components: + - pos: 13.5,-2.5 + parent: 289 + type: Transform + - uid: 64 + components: + - pos: 8.5,0.5 + parent: 289 + type: Transform + - uid: 65 + components: + - pos: 11.5,0.5 + parent: 289 + type: Transform + - uid: 78 + components: + - pos: 14.5,-0.5 + parent: 289 + type: Transform + - uid: 79 + components: + - pos: 13.5,0.5 + parent: 289 + type: Transform + - uid: 185 + components: + - pos: 12.5,-0.5 + parent: 289 + type: Transform + - uid: 186 + components: + - pos: 9.5,-3.5 + parent: 289 + type: Transform + - uid: 187 + components: + - pos: 11.5,-0.5 + parent: 289 + type: Transform + - uid: 188 + components: + - pos: 13.5,-0.5 + parent: 289 + type: Transform + - uid: 189 + components: + - pos: 8.5,-2.5 + parent: 289 + type: Transform + - uid: 190 + components: + - pos: 8.5,-1.5 + parent: 289 + type: Transform + - uid: 191 + components: + - pos: 8.5,-0.5 + parent: 289 + type: Transform + - uid: 192 + components: + - pos: 9.5,-0.5 + parent: 289 + type: Transform + - uid: 193 + components: + - pos: 10.5,-0.5 + parent: 289 + type: Transform + - uid: 194 + components: + - pos: 8.5,-3.5 + parent: 289 + type: Transform +- proto: WallSolid + entities: + - uid: 2 + components: + - pos: 5.5,-7.5 + parent: 289 + type: Transform + - uid: 4 + components: + - pos: 0.5,-4.5 + parent: 289 + type: Transform + - uid: 5 + components: + - pos: -0.5,-4.5 + parent: 289 + type: Transform + - uid: 6 + components: + - pos: -0.5,-5.5 + parent: 289 + type: Transform + - uid: 7 + components: + - pos: -0.5,-6.5 + parent: 289 + type: Transform + - uid: 8 + components: + - pos: -0.5,-7.5 + parent: 289 + type: Transform + - uid: 9 + components: + - pos: 0.5,-7.5 + parent: 289 + type: Transform + - uid: 10 + components: + - pos: 0.5,-8.5 + parent: 289 + type: Transform + - uid: 11 + components: + - pos: 0.5,-9.5 + parent: 289 + type: Transform + - uid: 12 + components: + - pos: 0.5,-10.5 + parent: 289 + type: Transform + - uid: 13 + components: + - pos: 1.5,-7.5 + parent: 289 + type: Transform + - uid: 16 + components: + - pos: 3.5,-7.5 + parent: 289 + type: Transform + - uid: 17 + components: + - pos: 0.5,-11.5 + parent: 289 + type: Transform + - uid: 18 + components: + - pos: 3.5,-11.5 + parent: 289 + type: Transform + - uid: 19 + components: + - pos: 6.5,-11.5 + parent: 289 + type: Transform + - uid: 24 + components: + - pos: 7.5,-7.5 + parent: 289 + type: Transform + - uid: 25 + components: + - pos: 8.5,-7.5 + parent: 289 + type: Transform + - uid: 26 + components: + - pos: 9.5,-7.5 + parent: 289 + type: Transform + - uid: 27 + components: + - pos: 9.5,-8.5 + parent: 289 + type: Transform + - uid: 28 + components: + - pos: 9.5,-9.5 + parent: 289 + type: Transform + - uid: 29 + components: + - pos: 9.5,-10.5 + parent: 289 + type: Transform + - uid: 36 + components: + - pos: 6.5,-3.5 + parent: 289 + type: Transform + - uid: 37 + components: + - pos: 7.5,-3.5 + parent: 289 + type: Transform + - uid: 38 + components: + - pos: 4.5,-3.5 + parent: 289 + type: Transform + - uid: 44 + components: + - pos: 9.5,-11.5 + parent: 289 + type: Transform + - uid: 66 + components: + - pos: 7.5,-0.5 + parent: 289 + type: Transform + - uid: 67 + components: + - pos: 4.5,-0.5 + parent: 289 + type: Transform +- proto: WeldingFuelTankFull + entities: + - uid: 122 + components: + - pos: 2.5,-1.5 + parent: 289 + type: Transform +- proto: Windoor + entities: + - uid: 103 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-7.5 + parent: 289 + type: Transform + - uid: 104 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-7.5 + parent: 289 + type: Transform +- proto: Window + entities: + - uid: 40 + components: + - pos: 1.5,-11.5 + parent: 289 + type: Transform + - uid: 41 + components: + - pos: 2.5,-11.5 + parent: 289 + type: Transform + - uid: 283 + components: + - pos: 8.5,-11.5 + parent: 289 + type: Transform + - uid: 284 + components: + - pos: 7.5,-11.5 + parent: 289 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 201 + components: + - pos: 3.5,-9.5 + parent: 289 + type: Transform + - uid: 202 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 289 + type: Transform + - uid: 203 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 289 + type: Transform + - uid: 217 + components: + - pos: 1.5,-9.5 + parent: 289 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-med-pirate.yml b/Resources/Maps/Salvage/DeltaV/DV-med-pirate.yml new file mode 100644 index 0000000000..44fee19e8e --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-med-pirate.yml @@ -0,0 +1,956 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 17: FloorBrokenWood + 89: FloorSteelDirty + 110: FloorWood + 111: FloorWoodTile + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 52 + components: + - type: MetaData + - pos: 0.5,0.5 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAEQAAAAAFcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbgAAAAABbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAADbgAAAAACbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbwAAAAACbgAAAAADbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbwAAAAABEQAAAAAEbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbwAAAAABbgAAAAABbgAAAAAD + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAFcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAADEQAAAAACbgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAADcQAAAAAAEQAAAAACbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAABbgAAAAADEQAAAAADbwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAADbwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAACbgAAAAABbgAAAAADbwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAAAbgAAAAACbgAAAAACbwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: EQAAAAAFbgAAAAADEQAAAAAGbgAAAAACbwAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAADcQAAAAAAcQAAAAAAbwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAAAbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAABcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbwAAAAAAbgAAAAABbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 7: 3,-5 + 8: 3,-6 + 9: 3,-4 + 10: 3,-3 + 11: 3,-2 + 12: 3,-1 + 13: 3,0 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 0: -2,-4 + 1: -2,-5 + 2: -2,-6 + 3: -2,-3 + 4: -2,-2 + 5: -2,-1 + 6: -2,0 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 65535 + 0,-1: + 0: 65535 + 0,0: + 0: 65535 + -1,0: + 0: 65535 + -1,-2: + 0: 61420 + -1,-3: + 0: 50176 + 0,-2: + 0: 65397 + 1,-2: + 0: 12544 + 1,-1: + 0: 13105 + 0,1: + 0: 4095 + 1,0: + 0: 13107 + -1,1: + 0: 3278 + 1,1: + 0: 1 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - type: RadiationGridResistance + - type: SpreaderGrid + - type: GasTileOverlay +- proto: APCBasic + entities: + - uid: 99 + components: + - pos: -0.5,1.5 + parent: 52 + type: Transform +- proto: Barricade + entities: + - uid: 144 + components: + - pos: -1.5,-4.5 + parent: 52 + type: Transform + - uid: 145 + components: + - pos: 2.5,-3.5 + parent: 52 + type: Transform +- proto: CableApcExtension + entities: + - uid: 58 + components: + - pos: 1.5,0.5 + parent: 52 + type: Transform + - uid: 101 + components: + - pos: 0.5,0.5 + parent: 52 + type: Transform + - uid: 102 + components: + - pos: -0.5,0.5 + parent: 52 + type: Transform + - uid: 103 + components: + - pos: -0.5,1.5 + parent: 52 + type: Transform + - uid: 108 + components: + - pos: 2.5,0.5 + parent: 52 + type: Transform + - uid: 109 + components: + - pos: 3.5,0.5 + parent: 52 + type: Transform + - uid: 110 + components: + - pos: 3.5,-0.5 + parent: 52 + type: Transform + - uid: 111 + components: + - pos: 3.5,-1.5 + parent: 52 + type: Transform + - uid: 112 + components: + - pos: -0.5,0.5 + parent: 52 + type: Transform + - uid: 113 + components: + - pos: -1.5,0.5 + parent: 52 + type: Transform + - uid: 114 + components: + - pos: -1.5,-0.5 + parent: 52 + type: Transform + - uid: 115 + components: + - pos: -1.5,-1.5 + parent: 52 + type: Transform + - uid: 116 + components: + - pos: -0.5,2.5 + parent: 52 + type: Transform + - uid: 117 + components: + - pos: -0.5,3.5 + parent: 52 + type: Transform + - uid: 118 + components: + - pos: 0.5,3.5 + parent: 52 + type: Transform + - uid: 119 + components: + - pos: 1.5,3.5 + parent: 52 + type: Transform + - uid: 120 + components: + - pos: 2.5,3.5 + parent: 52 + type: Transform + - uid: 121 + components: + - pos: 2.5,2.5 + parent: 52 + type: Transform + - uid: 122 + components: + - pos: 2.5,1.5 + parent: 52 + type: Transform + - uid: 123 + components: + - pos: -1.5,2.5 + parent: 52 + type: Transform + - uid: 124 + components: + - pos: -2.5,2.5 + parent: 52 + type: Transform + - uid: 125 + components: + - pos: 3.5,2.5 + parent: 52 + type: Transform + - uid: 126 + components: + - pos: 4.5,2.5 + parent: 52 + type: Transform + - uid: 127 + components: + - pos: 2.5,4.5 + parent: 52 + type: Transform + - uid: 128 + components: + - pos: -0.5,4.5 + parent: 52 + type: Transform +- proto: CableHV + entities: + - uid: 24 + components: + - pos: -2.5,0.5 + parent: 52 + type: Transform + - uid: 26 + components: + - pos: -2.5,-0.5 + parent: 52 + type: Transform + - uid: 135 + components: + - pos: -2.5,1.5 + parent: 52 + type: Transform +- proto: CableMV + entities: + - uid: 100 + components: + - pos: -1.5,0.5 + parent: 52 + type: Transform + - uid: 104 + components: + - pos: -0.5,1.5 + parent: 52 + type: Transform + - uid: 105 + components: + - pos: -0.5,0.5 + parent: 52 + type: Transform + - uid: 106 + components: + - pos: -2.5,0.5 + parent: 52 + type: Transform + - uid: 107 + components: + - pos: -2.5,1.5 + parent: 52 + type: Transform +- proto: ChairWood + entities: + - uid: 8 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 52 + type: Transform + - uid: 17 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 52 + type: Transform + - uid: 19 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 52 + type: Transform + - uid: 27 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 52 + type: Transform + - uid: 28 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 52 + type: Transform + - uid: 29 + components: + - pos: -0.5,-0.5 + parent: 52 + type: Transform + - uid: 39 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 52 + type: Transform +- proto: ClothingEyesEyepatch + entities: + - uid: 92 + components: + - pos: -0.45799494,-2.3092217 + parent: 52 + type: Transform +- proto: ClothingHeadHatPirate + entities: + - uid: 72 + components: + - pos: 0.52966046,-0.47381306 + parent: 52 + type: Transform +- proto: ClothingHeadHatPirateTricord + entities: + - uid: 15 + components: + - pos: 1.345557,3.7402463 + parent: 52 + type: Transform +- proto: ClothingNeckBling + entities: + - uid: 67 + components: + - pos: 1.4993628,-3.1426823 + parent: 52 + type: Transform +- proto: ClothingOuterCoatPirate + entities: + - uid: 73 + components: + - pos: 1.1702855,-0.55193806 + parent: 52 + type: Transform +- proto: ClothingUniformJumpsuitPirate + entities: + - uid: 37 + components: + - pos: 1.611182,3.496825 + parent: 52 + type: Transform +- proto: CrateFunPirate + entities: + - uid: 35 + components: + - pos: 0.5,3.5 + parent: 52 + type: Transform +- proto: DrinkGoldschlagerBottleFull + entities: + - uid: 2 + components: + - pos: 1.0845438,-2.1036394 + parent: 52 + type: Transform + - uid: 54 + components: + - pos: 1.4439188,-1.6661394 + parent: 52 + type: Transform +- proto: DrinkGrogGlass + entities: + - uid: 40 + components: + - pos: 2.624363,-2.4551823 + parent: 52 + type: Transform + - uid: 66 + components: + - pos: 0.05393684,-2.4239323 + parent: 52 + type: Transform + - uid: 89 + components: + - pos: -0.5627491,-1.3523273 + parent: 52 + type: Transform +- proto: DrinkShinyFlask + entities: + - uid: 86 + components: + - pos: -0.042627335,-1.4742832 + parent: 52 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 30 + reagents: + - data: null + ReagentId: DeadRum + Quantity: 20 + type: SolutionContainerManager +- proto: FoodCakeLemon + entities: + - uid: 82 + components: + - pos: 0.8274878,-3.2208073 + parent: 52 + type: Transform +- proto: GeneratorBasic + entities: + - uid: 136 + components: + - pos: -2.5,-0.5 + parent: 52 + type: Transform +- proto: GoldOre1 + entities: + - uid: 1 + components: + - pos: -0.21694303,2.57495 + parent: 52 + type: Transform + - uid: 4 + components: + - pos: -0.37319303,2.465575 + parent: 52 + type: Transform + - uid: 5 + components: + - pos: 2.423682,2.621825 + parent: 52 + type: Transform + - uid: 6 + components: + - pos: -0.607568,2.778075 + parent: 52 + type: Transform + - uid: 10 + components: + - pos: -0.670068,2.51245 + parent: 52 + type: Transform + - uid: 21 + components: + - pos: 2.704932,2.6062 + parent: 52 + type: Transform + - uid: 31 + components: + - pos: 2.486182,2.4812 + parent: 52 + type: Transform + - uid: 32 + components: + - pos: 2.376807,2.778075 + parent: 52 + type: Transform + - uid: 33 + components: + - pos: 2.673682,2.403075 + parent: 52 + type: Transform + - uid: 34 + components: + - pos: -0.48256803,2.403075 + parent: 52 + type: Transform + - uid: 36 + components: + - pos: 2.564307,2.7937 + parent: 52 + type: Transform + - uid: 38 + components: + - pos: -0.49819303,2.621825 + parent: 52 + type: Transform + - uid: 47 + components: + - pos: -0.623193,2.559325 + parent: 52 + type: Transform + - uid: 76 + components: + - pos: 2.376807,2.38745 + parent: 52 + type: Transform + - uid: 130 + components: + - pos: -0.29506803,2.778075 + parent: 52 + type: Transform +- proto: Grille + entities: + - uid: 7 + components: + - pos: 5.5,-1.5 + parent: 52 + type: Transform + - uid: 22 + components: + - pos: 5.5,0.5 + parent: 52 + type: Transform + - uid: 25 + components: + - pos: -3.5,0.5 + parent: 52 + type: Transform + - uid: 30 + components: + - pos: -3.5,-1.5 + parent: 52 + type: Transform +- proto: IngotGold1 + entities: + - uid: 44 + components: + - pos: 0.703125,-1.984375 + parent: 52 + type: Transform + - uid: 45 + components: + - pos: 0.5,-1.40625 + parent: 52 + type: Transform + - uid: 57 + components: + - pos: 0.484375,-1.078125 + parent: 52 + type: Transform + - uid: 131 + components: + - pos: 1.171875,-1.1875 + parent: 52 + type: Transform + - uid: 132 + components: + - pos: 1.71875,-1.515625 + parent: 52 + type: Transform + - uid: 133 + components: + - pos: 1.015625,-1.578125 + parent: 52 + type: Transform +- proto: MarimbaInstrument + entities: + - uid: 18 + components: + - pos: 4.5,1.5 + parent: 52 + type: Transform +- proto: MetalDoor + entities: + - uid: 49 + components: + - pos: 1.5,1.5 + parent: 52 + type: Transform + - uid: 56 + components: + - pos: 0.5,1.5 + parent: 52 + type: Transform +- proto: PoweredSmallLight + entities: + - uid: 90 + components: + - pos: 4.5,1.5 + parent: 52 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 91 + components: + - pos: -2.5,1.5 + parent: 52 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: RandomAmmoBox + entities: + - uid: 147 + components: + - pos: -1.5,-3.5 + parent: 52 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 68 + components: + - pos: 5.5,0.5 + parent: 52 + type: Transform + - uid: 70 + components: + - pos: 5.5,-1.5 + parent: 52 + type: Transform + - uid: 80 + components: + - pos: -3.5,-1.5 + parent: 52 + type: Transform + - uid: 87 + components: + - pos: -3.5,0.5 + parent: 52 + type: Transform +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 137 + components: + - pos: 4.5,0.5 + parent: 52 + type: Transform +- proto: SalvageMobSpawner75 + entities: + - uid: 138 + components: + - pos: 4.5,-1.5 + parent: 52 + type: Transform + - uid: 139 + components: + - pos: 4.5,-2.5 + parent: 52 + type: Transform + - uid: 140 + components: + - pos: 4.5,-3.5 + parent: 52 + type: Transform + - uid: 141 + components: + - pos: -2.5,-1.5 + parent: 52 + type: Transform + - uid: 142 + components: + - pos: -2.5,-2.5 + parent: 52 + type: Transform + - uid: 143 + components: + - pos: -2.5,-3.5 + parent: 52 + type: Transform +- proto: SeashellInstrument + entities: + - uid: 20 + components: + - pos: 2.345557,-1.4329147 + parent: 52 + type: Transform +- proto: SheetPlasteel1 + entities: + - uid: 74 + components: + - rot: -1.5707963267948966 rad + pos: 4.4650807,3.346371 + parent: 52 + type: Transform + - uid: 146 + components: + - rot: 3.141592653589793 rad + pos: 4.8088307,3.492306 + parent: 52 + type: Transform +- proto: SpaceCash10 + entities: + - uid: 14 + components: + - pos: 1.578125,-2.515625 + parent: 52 + type: Transform + - uid: 16 + components: + - pos: 1.953125,-2.1875 + parent: 52 + type: Transform + - uid: 43 + components: + - pos: 0.671875,-2.4375 + parent: 52 + type: Transform +- proto: Stool + entities: + - uid: 9 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 52 + type: Transform +- proto: SubstationBasic + entities: + - uid: 75 + components: + - pos: -2.5,1.5 + parent: 52 + type: Transform +- proto: TableCarpet + entities: + - uid: 3 + components: + - pos: -0.5,-2.5 + parent: 52 + type: Transform + - uid: 11 + components: + - pos: 1.5,-2.5 + parent: 52 + type: Transform + - uid: 12 + components: + - pos: 1.5,-3.5 + parent: 52 + type: Transform + - uid: 13 + components: + - pos: -0.5,-1.5 + parent: 52 + type: Transform + - uid: 23 + components: + - pos: 1.5,3.5 + parent: 52 + type: Transform + - uid: 41 + components: + - pos: 1.5,-0.5 + parent: 52 + type: Transform + - uid: 42 + components: + - pos: 0.5,-0.5 + parent: 52 + type: Transform + - uid: 46 + components: + - pos: 0.5,-3.5 + parent: 52 + type: Transform + - uid: 62 + components: + - pos: 2.5,-2.5 + parent: 52 + type: Transform + - uid: 64 + components: + - pos: 1.5,-1.5 + parent: 52 + type: Transform + - uid: 78 + components: + - pos: 2.5,-1.5 + parent: 52 + type: Transform + - uid: 83 + components: + - pos: 0.5,-2.5 + parent: 52 + type: Transform + - uid: 134 + components: + - pos: 0.5,-1.5 + parent: 52 + type: Transform +- proto: TableStone + entities: + - uid: 59 + components: + - pos: 2.5,2.5 + parent: 52 + type: Transform + - uid: 95 + components: + - pos: -0.5,2.5 + parent: 52 + type: Transform +- proto: WallWood + entities: + - uid: 48 + components: + - pos: 5.5,2.5 + parent: 52 + type: Transform + - uid: 50 + components: + - pos: 3.5,1.5 + parent: 52 + type: Transform + - uid: 51 + components: + - pos: -1.5,1.5 + parent: 52 + type: Transform + - uid: 53 + components: + - pos: 3.5,3.5 + parent: 52 + type: Transform + - uid: 55 + components: + - pos: 5.5,1.5 + parent: 52 + type: Transform + - uid: 60 + components: + - pos: 2.5,1.5 + parent: 52 + type: Transform + - uid: 61 + components: + - pos: 0.5,4.5 + parent: 52 + type: Transform + - uid: 63 + components: + - pos: -0.5,4.5 + parent: 52 + type: Transform + - uid: 65 + components: + - pos: -3.5,-2.5 + parent: 52 + type: Transform + - uid: 69 + components: + - pos: -3.5,-0.5 + parent: 52 + type: Transform + - uid: 71 + components: + - pos: -1.5,2.5 + parent: 52 + type: Transform + - uid: 77 + components: + - pos: -3.5,1.5 + parent: 52 + type: Transform + - uid: 79 + components: + - pos: -1.5,3.5 + parent: 52 + type: Transform + - uid: 81 + components: + - pos: -3.5,2.5 + parent: 52 + type: Transform + - uid: 84 + components: + - pos: 4.5,2.5 + parent: 52 + type: Transform + - uid: 85 + components: + - pos: 3.5,2.5 + parent: 52 + type: Transform + - uid: 88 + components: + - pos: 5.5,-0.5 + parent: 52 + type: Transform + - uid: 93 + components: + - pos: -0.5,3.5 + parent: 52 + type: Transform + - uid: 94 + components: + - pos: -2.5,2.5 + parent: 52 + type: Transform + - uid: 96 + components: + - pos: 1.5,4.5 + parent: 52 + type: Transform + - uid: 97 + components: + - pos: -0.5,1.5 + parent: 52 + type: Transform + - uid: 98 + components: + - pos: 2.5,4.5 + parent: 52 + type: Transform + - uid: 129 + components: + - pos: 2.5,3.5 + parent: 52 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-med-ruined-emergency-shuttle.yml b/Resources/Maps/Salvage/DeltaV/DV-med-ruined-emergency-shuttle.yml new file mode 100644 index 0000000000..49671ee6f5 --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-med-ruined-emergency-shuttle.yml @@ -0,0 +1,959 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 76: FloorShuttleBlue + 77: FloorShuttleOrange + 79: FloorShuttleRed + 80: FloorShuttleWhite + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 130 + components: + - type: MetaData + - pos: 0.5,0.5 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAATQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAATQAAAAAATQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAATQAAAAAATQAAAAAATQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAATQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAATAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAUAAAAAAAcQAAAAAAUAAAAAAAUAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAUAAAAAAAUAAAAAAAcQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAUAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAATAAAAAAATAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAUAAAAAAAUAAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAUAAAAAAAUAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAUAAAAAAAcQAAAAAAUAAAAAAAUAAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAUAAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAATwAAAAAAcQAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: UAAAAAAAUAAAAAAATAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAATAAAAAAAUAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAATAAAAAAAUAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAATAAAAAAATAAAAAAAUAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAATAAAAAAAUAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAATAAAAAAAUAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAATAAAAAAATAAAAAAAUAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: [] + type: DecalGrid + - type: OccluderTree + - type: Shuttle + - type: RadiationGridResistance + - type: SpreaderGrid + - type: GridPathfinding + - version: 2 + data: + tiles: + -2,-2: + 0: 52360 + -2,-1: + 0: 52428 + -1,-2: + 0: 65533 + -1,-1: + 0: 65535 + 0,-3: + 0: 53248 + 0,-2: + 0: 65535 + 0,-1: + 0: 65535 + 1,-2: + 0: 4369 + 1,-1: + 0: 4369 + -2,0: + 0: 52420 + -2,1: + 0: 2252 + -1,0: + 0: 65535 + -1,1: + 0: 61439 + 0,0: + 0: 65535 + 0,1: + 0: 65535 + 1,0: + 0: 4369 + 1,1: + 0: 4369 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay +- proto: AirlockGlass + entities: + - uid: 57 + components: + - pos: 1.5,-3.5 + parent: 130 + type: Transform +- proto: AirlockShuttle + entities: + - uid: 38 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 130 + type: Transform + - uid: 39 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 130 + type: Transform + - uid: 40 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 130 + type: Transform + - uid: 41 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,5.5 + parent: 130 + type: Transform +- proto: AlwaysPoweredWallLight + entities: + - uid: 126 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 130 + type: Transform +- proto: BriefcaseBrownFilled + entities: + - uid: 55 + components: + - pos: 1.8184211,1.0310183 + parent: 130 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 68 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 130 + type: Transform + - uid: 69 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 130 + type: Transform + - uid: 72 + components: + - pos: -0.5,5.5 + parent: 130 + type: Transform + - uid: 73 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 130 + type: Transform + - uid: 74 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 130 + type: Transform + - uid: 77 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 130 + type: Transform + - uid: 78 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 130 + type: Transform + - uid: 79 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 130 + type: Transform + - uid: 83 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 130 + type: Transform + - uid: 84 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 130 + type: Transform + - uid: 85 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 130 + type: Transform + - uid: 86 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 130 + type: Transform + - uid: 87 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 130 + type: Transform + - uid: 88 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 130 + type: Transform + - uid: 89 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 130 + type: Transform + - uid: 91 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 130 + type: Transform +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 131 + components: + - pos: 0.5,-6.5 + parent: 130 + type: Transform + - uid: 132 + components: + - pos: 0.5,-4.5 + parent: 130 + type: Transform + - uid: 133 + components: + - pos: 2.5,7.5 + parent: 130 + type: Transform +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 128 + components: + - pos: -3.5,-6.5 + parent: 130 + type: Transform +- proto: CrateEmergencyExplosive + entities: + - uid: 137 + components: + - pos: -2.5,6.5 + parent: 130 + type: Transform +- proto: CrateGenericSteel + entities: + - uid: 139 + components: + - pos: -2.5,-6.5 + parent: 130 + type: Transform +- proto: Crowbar + entities: + - uid: 116 + components: + - pos: 3.5,7.5 + parent: 130 + type: Transform + - canCollide: False + type: Physics + - uid: 117 + components: + - pos: 3.5,-5.5 + parent: 130 + type: Transform + - canCollide: False + type: Physics +- proto: ExtinguisherCabinetFilled + entities: + - uid: 120 + components: + - pos: 4.5,3.5 + parent: 130 + type: Transform + - uid: 121 + components: + - pos: 4.5,-5.5 + parent: 130 + type: Transform + - uid: 122 + components: + - pos: -0.5,-4.5 + parent: 130 + type: Transform + - uid: 123 + components: + - pos: -3.5,-3.5 + parent: 130 + type: Transform + - uid: 124 + components: + - pos: -3.5,4.5 + parent: 130 + type: Transform +- proto: GeneratorBasic + entities: + - uid: 44 + components: + - pos: 2.5,-7.5 + parent: 130 + type: Transform +- proto: Girder + entities: + - uid: 54 + components: + - pos: 4.5,-7.5 + parent: 130 + type: Transform +- proto: Grille + entities: + - uid: 4 + components: + - pos: -5.5,-0.5 + parent: 130 + type: Transform + - uid: 10 + components: + - pos: 4.5,-4.5 + parent: 130 + type: Transform + - uid: 12 + components: + - pos: 4.5,5.5 + parent: 130 + type: Transform + - uid: 16 + components: + - pos: 4.5,7.5 + parent: 130 + type: Transform + - uid: 17 + components: + - pos: -1.5,5.5 + parent: 130 + type: Transform + - uid: 18 + components: + - pos: 4.5,-6.5 + parent: 130 + type: Transform + - uid: 43 + components: + - pos: -5.5,1.5 + parent: 130 + type: Transform + - uid: 51 + components: + - pos: 4.5,0.5 + parent: 130 + type: Transform + - uid: 71 + components: + - pos: 4.5,1.5 + parent: 130 + type: Transform +- proto: GrilleBroken + entities: + - uid: 45 + components: + - pos: -1.5,7.5 + parent: 130 + type: Transform + - uid: 75 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 130 + type: Transform + - uid: 80 + components: + - pos: 4.5,-0.5 + parent: 130 + type: Transform + - uid: 81 + components: + - pos: 3.5,-3.5 + parent: 130 + type: Transform + - uid: 144 + components: + - pos: -5.5,0.5 + parent: 130 + type: Transform +- proto: MaterialDurathread1 + entities: + - uid: 9 + components: + - pos: 2.671875,-6.5154533 + parent: 130 + type: Transform + - uid: 34 + components: + - pos: 2.296875,-6.1092033 + parent: 130 + type: Transform +- proto: MedkitBurnFilled + entities: + - uid: 114 + components: + - pos: 3.5,-5.5 + parent: 130 + type: Transform + - canCollide: False + type: Physics + - uid: 115 + components: + - pos: 3.5,7.5 + parent: 130 + type: Transform + - canCollide: False + type: Physics +- proto: MedkitFilled + entities: + - uid: 118 + components: + - pos: 3.6129847,7.341474 + parent: 130 + type: Transform + - uid: 119 + components: + - pos: 3.6442347,-5.629479 + parent: 130 + type: Transform +- proto: RandomBox + entities: + - uid: 76 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 130 + type: Transform +- proto: RandomItem + entities: + - uid: 8 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 130 + type: Transform +- proto: RollerBed + entities: + - uid: 129 + components: + - pos: 1.4799528,-6.355282 + parent: 130 + type: Transform + - canCollide: False + type: Physics +- proto: SalvageCanisterSpawner + entities: + - uid: 140 + components: + - pos: -3.5,-4.5 + parent: 130 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 37 + components: + - pos: 3.5,0.5 + parent: 130 + type: Transform + - uid: 134 + components: + - pos: -1.5,-4.5 + parent: 130 + type: Transform + - uid: 135 + components: + - pos: -1.5,-5.5 + parent: 130 + type: Transform + - uid: 136 + components: + - pos: -1.5,-6.5 + parent: 130 + type: Transform +- proto: SalvageMobSpawner + entities: + - uid: 141 + components: + - pos: -2.5,-5.5 + parent: 130 + type: Transform + - uid: 142 + components: + - pos: 1.5,-6.5 + parent: 130 + type: Transform + - uid: 143 + components: + - pos: 0.5,6.5 + parent: 130 + type: Transform +- proto: ShardGlassReinforced + entities: + - uid: 42 + components: + - pos: -1.8659657,6.4085593 + parent: 130 + type: Transform + - canCollide: False + type: Physics + - uid: 70 + components: + - pos: -2.2565908,6.7523093 + parent: 130 + type: Transform + - canCollide: False + type: Physics +- proto: SheetPlasteel10 + entities: + - uid: 35 + components: + - rot: 1.5707963267948966 rad + pos: 0.05889213,-7.6564994 + parent: 130 + type: Transform +- proto: SheetSteel1 + entities: + - uid: 82 + components: + - rot: 0.00074002705514431 rad + pos: 3.341268,-8.26206 + parent: 130 + type: Transform + - canCollide: False + type: Physics +- proto: ShuttleWindow + entities: + - uid: 32 + components: + - pos: -5.5,1.5 + parent: 130 + type: Transform + - uid: 53 + components: + - pos: 4.5,7.5 + parent: 130 + type: Transform + - uid: 58 + components: + - pos: 4.5,-0.5 + parent: 130 + type: Transform + - uid: 59 + components: + - pos: 3.5,-3.5 + parent: 130 + type: Transform + - uid: 61 + components: + - pos: -1.5,5.5 + parent: 130 + type: Transform + - uid: 62 + components: + - pos: 4.5,5.5 + parent: 130 + type: Transform + - uid: 63 + components: + - pos: 4.5,-6.5 + parent: 130 + type: Transform + - uid: 64 + components: + - pos: 4.5,-4.5 + parent: 130 + type: Transform + - uid: 65 + components: + - pos: -5.5,-0.5 + parent: 130 + type: Transform + - uid: 66 + components: + - pos: 4.5,1.5 + parent: 130 + type: Transform + - uid: 67 + components: + - pos: 4.5,0.5 + parent: 130 + type: Transform +- proto: SpawnMobKangarooSalvage + entities: + - uid: 36 + components: + - pos: -0.5,0.5 + parent: 130 + type: Transform +- proto: StasisBed + entities: + - uid: 90 + components: + - pos: 3.5,-4.5 + parent: 130 + type: Transform +- proto: Table + entities: + - uid: 14 + components: + - pos: 3.5,-5.5 + parent: 130 + type: Transform + - uid: 92 + components: + - pos: -0.5,4.5 + parent: 130 + type: Transform + - uid: 93 + components: + - pos: 0.5,4.5 + parent: 130 + type: Transform + - uid: 94 + components: + - pos: 1.5,4.5 + parent: 130 + type: Transform + - uid: 95 + components: + - pos: 1.5,5.5 + parent: 130 + type: Transform + - uid: 113 + components: + - pos: 3.5,7.5 + parent: 130 + type: Transform +- proto: VendingMachineWallMedical + entities: + - uid: 23 + components: + - flags: SessionSpecific + type: MetaData + - pos: -1.5,4.5 + parent: 130 + type: Transform + - uid: 125 + components: + - flags: SessionSpecific + type: MetaData + - pos: -0.5,-5.5 + parent: 130 + type: Transform +- proto: WallShuttle + entities: + - uid: 3 + components: + - pos: -3.5,-3.5 + parent: 130 + type: Transform + - uid: 5 + components: + - pos: -0.5,-5.5 + parent: 130 + type: Transform + - uid: 7 + components: + - pos: 4.5,4.5 + parent: 130 + type: Transform + - uid: 11 + components: + - pos: -1.5,-3.5 + parent: 130 + type: Transform + - uid: 13 + components: + - pos: -0.5,-4.5 + parent: 130 + type: Transform + - uid: 15 + components: + - pos: 0.5,-3.5 + parent: 130 + type: Transform + - uid: 19 + components: + - pos: -4.5,4.5 + parent: 130 + type: Transform + - uid: 20 + components: + - pos: -5.5,4.5 + parent: 130 + type: Transform + - uid: 21 + components: + - pos: -5.5,2.5 + parent: 130 + type: Transform + - uid: 22 + components: + - pos: -1.5,4.5 + parent: 130 + type: Transform + - uid: 25 + components: + - pos: 4.5,-2.5 + parent: 130 + type: Transform + - uid: 26 + components: + - pos: 4.5,-1.5 + parent: 130 + type: Transform + - uid: 27 + components: + - pos: 4.5,2.5 + parent: 130 + type: Transform + - uid: 28 + components: + - pos: 4.5,-5.5 + parent: 130 + type: Transform + - uid: 29 + components: + - pos: 4.5,-3.5 + parent: 130 + type: Transform + - uid: 30 + components: + - pos: -5.5,-3.5 + parent: 130 + type: Transform + - uid: 31 + components: + - pos: -5.5,-1.5 + parent: 130 + type: Transform + - uid: 33 + components: + - pos: -0.5,-6.5 + parent: 130 + type: Transform + - uid: 46 + components: + - pos: -3.5,4.5 + parent: 130 + type: Transform + - uid: 47 + components: + - pos: -0.5,-3.5 + parent: 130 + type: Transform + - uid: 50 + components: + - pos: 4.5,6.5 + parent: 130 + type: Transform + - uid: 60 + components: + - pos: 4.5,3.5 + parent: 130 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 1 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 130 + type: Transform + - uid: 2 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 130 + type: Transform + - uid: 6 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 130 + type: Transform + - uid: 24 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 130 + type: Transform + - uid: 48 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 130 + type: Transform + - uid: 49 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 130 + type: Transform + - uid: 52 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 130 + type: Transform + - uid: 56 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-7.5 + parent: 130 + type: Transform + - uid: 96 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 130 + type: Transform + - uid: 97 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 130 + type: Transform + - uid: 98 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 130 + type: Transform + - uid: 99 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 130 + type: Transform + - uid: 100 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 130 + type: Transform + - uid: 101 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 130 + type: Transform + - uid: 102 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 130 + type: Transform + - uid: 103 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 130 + type: Transform + - uid: 104 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 130 + type: Transform + - uid: 105 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 130 + type: Transform + - uid: 106 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 130 + type: Transform + - uid: 107 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 130 + type: Transform + - uid: 108 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 130 + type: Transform + - uid: 109 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 130 + type: Transform + - uid: 110 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 130 + type: Transform + - uid: 111 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 130 + type: Transform + - uid: 112 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 130 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-med-service-chunk-01.yml b/Resources/Maps/Salvage/DeltaV/DV-med-service-chunk-01.yml new file mode 100644 index 0000000000..d3dc7146c3 --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-med-service-chunk-01.yml @@ -0,0 +1,2914 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 12: FloorBar + 39: FloorEighties + 58: FloorKitchen + 59: FloorLaundry + 84: FloorSteel + 96: FloorTechMaint + 97: FloorTechMaint2 + 110: FloorWood + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 273 + components: + - type: MetaData + - pos: 0.46846703,0.5030661 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: cAAAAAAAcQAAAAAAcQAAAAAADAAAAAAADAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAADAAAAAAADAAAAAAADAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 5: -1,-5 + 6: -2,-2 + 7: -3,-2 + 8: -4,-5 + 9: -4,-4 + 10: -1,-3 + 11: 3,-5 + 12: 3,-4 + 13: 3,-6 + 14: 1,-4 + 20: -1,5 + 21: -2,5 + 22: -3,5 + 23: -4,5 + 24: -5,5 + 25: -5,3 + 26: -6,-4 + 27: -2,-1 + 28: 0,-5 + 29: 2,-3 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 16: -6,0 + 17: -2,3 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 15: -6,-2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 18: -4,3 + 19: -1,4 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSw + decals: + 4: -2,-3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 2: -3,-3 + 3: -4,-3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 0: -2,-5 + 1: -2,-4 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 4095 + 1: 61440 + 0,-1: + 1: 4607 + 0: 60928 + -1,0: + 0: 63743 + 1: 1792 + 0,0: + 0: 61167 + 1: 4368 + -2,-2: + 1: 65535 + -2,-1: + 1: 39327 + 0: 26208 + -1,-2: + 1: 4095 + 0: 61440 + 0,-2: + 1: 65535 + 1,-2: + 1: 30583 + 1,-1: + 1: 26231 + 0: 4352 + -2,0: + 1: 32625 + 0: 32910 + -2,1: + 1: 3959 + 0: 136 + -1,1: + 0: 255 + 1: 3840 + 0,1: + 1: 3857 + 0: 238 + 1,0: + 0: 4369 + 1: 26214 + 1,1: + 0: 17 + 1: 1894 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - type: SpreaderGrid +- proto: AirAlarm + entities: + - uid: 350 + components: + - pos: -4.5,2.5 + parent: 273 + type: Transform + - devices: + - 215 + - 233 + - 217 + type: DeviceList +- proto: Airlock + entities: + - uid: 337 + components: + - pos: -1.5,-0.5 + parent: 273 + type: Transform +- proto: AirlockGlass + entities: + - uid: 278 + components: + - pos: 0.5,1.5 + parent: 273 + type: Transform +- proto: AirlockJanitorLocked + entities: + - uid: 336 + components: + - pos: -5.5,-3.5 + parent: 273 + type: Transform +- proto: AirlockKitchenLocked + entities: + - uid: 193 + components: + - pos: -3.5,2.5 + parent: 273 + type: Transform +- proto: AirlockMaintLocked + entities: + - uid: 338 + components: + - pos: 0.5,-4.5 + parent: 273 + type: Transform + - uid: 339 + components: + - pos: 2.5,-2.5 + parent: 273 + type: Transform +- proto: APCBasic + entities: + - uid: 185 + components: + - pos: -2.5,2.5 + parent: 273 + type: Transform +- proto: AtmosFixBlockerMarker + entities: + - uid: 355 + components: + - pos: -6.5,-2.5 + parent: 273 + type: Transform + - uid: 356 + components: + - pos: -6.5,-1.5 + parent: 273 + type: Transform + - uid: 357 + components: + - pos: -6.5,-0.5 + parent: 273 + type: Transform + - uid: 358 + components: + - pos: -5.5,-2.5 + parent: 273 + type: Transform + - uid: 359 + components: + - pos: -5.5,-1.5 + parent: 273 + type: Transform + - uid: 360 + components: + - pos: -5.5,-0.5 + parent: 273 + type: Transform + - uid: 361 + components: + - pos: -5.5,0.5 + parent: 273 + type: Transform + - uid: 362 + components: + - pos: -4.5,0.5 + parent: 273 + type: Transform + - uid: 363 + components: + - pos: -4.5,1.5 + parent: 273 + type: Transform + - uid: 364 + components: + - pos: -3.5,0.5 + parent: 273 + type: Transform + - uid: 365 + components: + - pos: -3.5,1.5 + parent: 273 + type: Transform + - uid: 366 + components: + - pos: -2.5,0.5 + parent: 273 + type: Transform + - uid: 367 + components: + - pos: -2.5,1.5 + parent: 273 + type: Transform + - uid: 368 + components: + - pos: -1.5,0.5 + parent: 273 + type: Transform + - uid: 369 + components: + - pos: -1.5,1.5 + parent: 273 + type: Transform + - uid: 370 + components: + - pos: -0.5,1.5 + parent: 273 + type: Transform + - uid: 371 + components: + - pos: -0.5,3.5 + parent: 273 + type: Transform + - uid: 372 + components: + - pos: -0.5,4.5 + parent: 273 + type: Transform + - uid: 373 + components: + - pos: -0.5,5.5 + parent: 273 + type: Transform + - uid: 374 + components: + - pos: -1.5,3.5 + parent: 273 + type: Transform + - uid: 375 + components: + - pos: -1.5,4.5 + parent: 273 + type: Transform + - uid: 376 + components: + - pos: -1.5,5.5 + parent: 273 + type: Transform + - uid: 377 + components: + - pos: -2.5,3.5 + parent: 273 + type: Transform + - uid: 378 + components: + - pos: -2.5,4.5 + parent: 273 + type: Transform + - uid: 379 + components: + - pos: -2.5,5.5 + parent: 273 + type: Transform + - uid: 380 + components: + - pos: -3.5,3.5 + parent: 273 + type: Transform + - uid: 381 + components: + - pos: -3.5,4.5 + parent: 273 + type: Transform + - uid: 382 + components: + - pos: -3.5,5.5 + parent: 273 + type: Transform + - uid: 383 + components: + - pos: -4.5,3.5 + parent: 273 + type: Transform + - uid: 384 + components: + - pos: -4.5,4.5 + parent: 273 + type: Transform + - uid: 385 + components: + - pos: -4.5,5.5 + parent: 273 + type: Transform + - uid: 386 + components: + - pos: 1.5,-1.5 + parent: 273 + type: Transform + - uid: 387 + components: + - pos: 1.5,-0.5 + parent: 273 + type: Transform + - uid: 388 + components: + - pos: 1.5,0.5 + parent: 273 + type: Transform + - uid: 389 + components: + - pos: 1.5,1.5 + parent: 273 + type: Transform + - uid: 390 + components: + - pos: 1.5,2.5 + parent: 273 + type: Transform + - uid: 391 + components: + - pos: 1.5,3.5 + parent: 273 + type: Transform + - uid: 392 + components: + - pos: 1.5,4.5 + parent: 273 + type: Transform + - uid: 393 + components: + - pos: 1.5,5.5 + parent: 273 + type: Transform + - uid: 394 + components: + - pos: 2.5,-1.5 + parent: 273 + type: Transform + - uid: 395 + components: + - pos: 2.5,-0.5 + parent: 273 + type: Transform + - uid: 396 + components: + - pos: 2.5,0.5 + parent: 273 + type: Transform + - uid: 397 + components: + - pos: 2.5,1.5 + parent: 273 + type: Transform + - uid: 398 + components: + - pos: 2.5,2.5 + parent: 273 + type: Transform + - uid: 399 + components: + - pos: 2.5,3.5 + parent: 273 + type: Transform + - uid: 400 + components: + - pos: 2.5,4.5 + parent: 273 + type: Transform + - uid: 401 + components: + - pos: 2.5,5.5 + parent: 273 + type: Transform + - uid: 402 + components: + - pos: 3.5,-1.5 + parent: 273 + type: Transform + - uid: 403 + components: + - pos: 3.5,-0.5 + parent: 273 + type: Transform + - uid: 404 + components: + - pos: 3.5,0.5 + parent: 273 + type: Transform + - uid: 405 + components: + - pos: 3.5,1.5 + parent: 273 + type: Transform + - uid: 406 + components: + - pos: 3.5,2.5 + parent: 273 + type: Transform + - uid: 407 + components: + - pos: 3.5,3.5 + parent: 273 + type: Transform + - uid: 408 + components: + - pos: 3.5,4.5 + parent: 273 + type: Transform + - uid: 409 + components: + - pos: 3.5,5.5 + parent: 273 + type: Transform + - uid: 410 + components: + - pos: 4.5,-1.5 + parent: 273 + type: Transform + - uid: 411 + components: + - pos: 4.5,-0.5 + parent: 273 + type: Transform + - uid: 412 + components: + - pos: 4.5,0.5 + parent: 273 + type: Transform + - uid: 413 + components: + - pos: 4.5,1.5 + parent: 273 + type: Transform + - uid: 414 + components: + - pos: 4.5,2.5 + parent: 273 + type: Transform + - uid: 415 + components: + - pos: 4.5,3.5 + parent: 273 + type: Transform + - uid: 416 + components: + - pos: 4.5,4.5 + parent: 273 + type: Transform + - uid: 417 + components: + - pos: 4.5,5.5 + parent: 273 + type: Transform + - uid: 418 + components: + - pos: -0.5,2.5 + parent: 273 + type: Transform + - uid: 419 + components: + - pos: -3.5,-4.5 + parent: 273 + type: Transform + - uid: 420 + components: + - pos: -3.5,-3.5 + parent: 273 + type: Transform + - uid: 421 + components: + - pos: -3.5,-2.5 + parent: 273 + type: Transform + - uid: 422 + components: + - pos: -3.5,-1.5 + parent: 273 + type: Transform + - uid: 423 + components: + - pos: -2.5,-4.5 + parent: 273 + type: Transform + - uid: 424 + components: + - pos: -2.5,-3.5 + parent: 273 + type: Transform + - uid: 425 + components: + - pos: -2.5,-2.5 + parent: 273 + type: Transform + - uid: 426 + components: + - pos: -2.5,-1.5 + parent: 273 + type: Transform + - uid: 427 + components: + - pos: -1.5,-4.5 + parent: 273 + type: Transform + - uid: 428 + components: + - pos: -1.5,-3.5 + parent: 273 + type: Transform + - uid: 429 + components: + - pos: -1.5,-2.5 + parent: 273 + type: Transform + - uid: 430 + components: + - pos: -1.5,-1.5 + parent: 273 + type: Transform + - uid: 431 + components: + - pos: -0.5,-4.5 + parent: 273 + type: Transform + - uid: 432 + components: + - pos: -0.5,-3.5 + parent: 273 + type: Transform + - uid: 433 + components: + - pos: -0.5,-2.5 + parent: 273 + type: Transform + - uid: 434 + components: + - pos: -0.5,-1.5 + parent: 273 + type: Transform + - uid: 442 + components: + - pos: -6.5,0.5 + parent: 273 + type: Transform + - uid: 447 + components: + - pos: -0.5,0.5 + parent: 273 + type: Transform + - uid: 448 + components: + - pos: 0.5,0.5 + parent: 273 + type: Transform +- proto: Barricade + entities: + - uid: 59 + components: + - pos: -5.5,1.5 + parent: 273 + type: Transform + - uid: 60 + components: + - pos: -6.5,0.5 + parent: 273 + type: Transform +- proto: Bed + entities: + - uid: 246 + components: + - pos: -0.5,-1.5 + parent: 273 + type: Transform + - uid: 247 + components: + - pos: -0.5,-3.5 + parent: 273 + type: Transform + - uid: 248 + components: + - pos: -3.5,-1.5 + parent: 273 + type: Transform +- proto: BedsheetSpawner + entities: + - uid: 249 + components: + - pos: -3.5,-1.5 + parent: 273 + type: Transform + - uid: 250 + components: + - pos: -0.5,-1.5 + parent: 273 + type: Transform + - uid: 251 + components: + - pos: -0.5,-3.5 + parent: 273 + type: Transform +- proto: BoxMRE + entities: + - uid: 300 + components: + - pos: 3.8124015,1.5362732 + parent: 273 + type: Transform +- proto: CableApcExtension + entities: + - uid: 134 + components: + - pos: -2.5,2.5 + parent: 273 + type: Transform + - uid: 135 + components: + - pos: -1.5,3.5 + parent: 273 + type: Transform + - uid: 136 + components: + - pos: -1.5,4.5 + parent: 273 + type: Transform + - uid: 137 + components: + - pos: -2.5,4.5 + parent: 273 + type: Transform + - uid: 138 + components: + - pos: -3.5,4.5 + parent: 273 + type: Transform + - uid: 139 + components: + - pos: -1.5,1.5 + parent: 273 + type: Transform + - uid: 140 + components: + - pos: -0.5,1.5 + parent: 273 + type: Transform + - uid: 141 + components: + - pos: 0.5,1.5 + parent: 273 + type: Transform + - uid: 142 + components: + - pos: 1.5,1.5 + parent: 273 + type: Transform + - uid: 143 + components: + - pos: 2.5,1.5 + parent: 273 + type: Transform + - uid: 144 + components: + - pos: 3.5,1.5 + parent: 273 + type: Transform + - uid: 145 + components: + - pos: 3.5,0.5 + parent: 273 + type: Transform + - uid: 146 + components: + - pos: 3.5,-0.5 + parent: 273 + type: Transform + - uid: 147 + components: + - pos: 3.5,-1.5 + parent: 273 + type: Transform + - uid: 148 + components: + - pos: 3.5,2.5 + parent: 273 + type: Transform + - uid: 149 + components: + - pos: 3.5,3.5 + parent: 273 + type: Transform + - uid: 150 + components: + - pos: 4.5,5.5 + parent: 273 + type: Transform + - uid: 151 + components: + - pos: -3.5,3.5 + parent: 273 + type: Transform + - uid: 152 + components: + - pos: -2.5,3.5 + parent: 273 + type: Transform + - uid: 153 + components: + - pos: -2.5,5.5 + parent: 273 + type: Transform + - uid: 154 + components: + - pos: -1.5,0.5 + parent: 273 + type: Transform + - uid: 155 + components: + - pos: -1.5,-0.5 + parent: 273 + type: Transform + - uid: 156 + components: + - pos: -1.5,-1.5 + parent: 273 + type: Transform + - uid: 157 + components: + - pos: -1.5,-2.5 + parent: 273 + type: Transform + - uid: 158 + components: + - pos: -1.5,-3.5 + parent: 273 + type: Transform + - uid: 159 + components: + - pos: -2.5,-3.5 + parent: 273 + type: Transform + - uid: 160 + components: + - pos: -2.5,-2.5 + parent: 273 + type: Transform + - uid: 161 + components: + - pos: -1.5,-4.5 + parent: 273 + type: Transform + - uid: 162 + components: + - pos: -0.5,-4.5 + parent: 273 + type: Transform + - uid: 163 + components: + - pos: 0.5,-4.5 + parent: 273 + type: Transform + - uid: 164 + components: + - pos: 1.5,-4.5 + parent: 273 + type: Transform + - uid: 165 + components: + - pos: 2.5,-4.5 + parent: 273 + type: Transform + - uid: 166 + components: + - pos: 3.5,-4.5 + parent: 273 + type: Transform + - uid: 167 + components: + - pos: -2.5,1.5 + parent: 273 + type: Transform + - uid: 168 + components: + - pos: -3.5,1.5 + parent: 273 + type: Transform + - uid: 169 + components: + - pos: -4.5,1.5 + parent: 273 + type: Transform + - uid: 170 + components: + - pos: -5.5,0.5 + parent: 273 + type: Transform + - uid: 171 + components: + - pos: -5.5,-0.5 + parent: 273 + type: Transform + - uid: 172 + components: + - pos: -5.5,-1.5 + parent: 273 + type: Transform + - uid: 173 + components: + - pos: -5.5,-2.5 + parent: 273 + type: Transform + - uid: 174 + components: + - pos: -5.5,-3.5 + parent: 273 + type: Transform + - uid: 175 + components: + - pos: -5.5,-4.5 + parent: 273 + type: Transform + - uid: 176 + components: + - pos: -5.5,-5.5 + parent: 273 + type: Transform + - uid: 177 + components: + - pos: -6.5,-5.5 + parent: 273 + type: Transform + - uid: 178 + components: + - pos: -6.5,-4.5 + parent: 273 + type: Transform + - uid: 179 + components: + - pos: 2.5,-1.5 + parent: 273 + type: Transform + - uid: 180 + components: + - pos: 1.5,-1.5 + parent: 273 + type: Transform + - uid: 181 + components: + - pos: 4.5,-1.5 + parent: 273 + type: Transform + - uid: 182 + components: + - pos: 3.5,5.5 + parent: 273 + type: Transform + - uid: 183 + components: + - pos: 2.5,5.5 + parent: 273 + type: Transform + - uid: 184 + components: + - pos: 3.5,4.5 + parent: 273 + type: Transform + - uid: 195 + components: + - pos: -5.5,1.5 + parent: 273 + type: Transform + - uid: 196 + components: + - pos: -6.5,1.5 + parent: 273 + type: Transform + - uid: 200 + components: + - pos: 1.5,5.5 + parent: 273 + type: Transform +- proto: CableHV + entities: + - uid: 102 + components: + - pos: 2.5,-5.5 + parent: 273 + type: Transform + - uid: 103 + components: + - pos: 3.5,-5.5 + parent: 273 + type: Transform + - uid: 104 + components: + - pos: 2.5,-4.5 + parent: 273 + type: Transform + - uid: 105 + components: + - pos: 2.5,-3.5 + parent: 273 + type: Transform + - uid: 106 + components: + - pos: 2.5,-2.5 + parent: 273 + type: Transform + - uid: 107 + components: + - pos: 2.5,-1.5 + parent: 273 + type: Transform + - uid: 108 + components: + - pos: 2.5,-0.5 + parent: 273 + type: Transform + - uid: 109 + components: + - pos: 2.5,0.5 + parent: 273 + type: Transform + - uid: 110 + components: + - pos: 1.5,0.5 + parent: 273 + type: Transform + - uid: 111 + components: + - pos: 0.5,0.5 + parent: 273 + type: Transform + - uid: 113 + components: + - pos: -1.5,0.5 + parent: 273 + type: Transform + - uid: 114 + components: + - pos: -2.5,0.5 + parent: 273 + type: Transform + - uid: 115 + components: + - pos: -3.5,0.5 + parent: 273 + type: Transform + - uid: 116 + components: + - pos: -4.5,0.5 + parent: 273 + type: Transform + - uid: 117 + components: + - pos: -5.5,0.5 + parent: 273 + type: Transform + - uid: 118 + components: + - pos: -6.5,0.5 + parent: 273 + type: Transform + - uid: 119 + components: + - pos: -7.5,0.5 + parent: 273 + type: Transform +- proto: CableMV + entities: + - uid: 37 + components: + - pos: -2.5,2.5 + parent: 273 + type: Transform + - uid: 101 + components: + - pos: 3.5,-5.5 + parent: 273 + type: Transform + - uid: 121 + components: + - pos: 2.5,-5.5 + parent: 273 + type: Transform + - uid: 122 + components: + - pos: 2.5,-4.5 + parent: 273 + type: Transform + - uid: 123 + components: + - pos: 1.5,-4.5 + parent: 273 + type: Transform + - uid: 124 + components: + - pos: 0.5,-4.5 + parent: 273 + type: Transform + - uid: 125 + components: + - pos: -0.5,-4.5 + parent: 273 + type: Transform + - uid: 126 + components: + - pos: -1.5,-4.5 + parent: 273 + type: Transform + - uid: 127 + components: + - pos: -1.5,-3.5 + parent: 273 + type: Transform + - uid: 128 + components: + - pos: -1.5,-2.5 + parent: 273 + type: Transform + - uid: 129 + components: + - pos: -1.5,-1.5 + parent: 273 + type: Transform + - uid: 130 + components: + - pos: -1.5,-0.5 + parent: 273 + type: Transform + - uid: 131 + components: + - pos: -1.5,0.5 + parent: 273 + type: Transform + - uid: 132 + components: + - pos: -1.5,1.5 + parent: 273 + type: Transform + - uid: 133 + components: + - pos: -2.5,1.5 + parent: 273 + type: Transform +- proto: CarpSpawnerMundane + entities: + - uid: 320 + components: + - pos: -2.5,1.5 + parent: 273 + type: Transform +- proto: Catwalk + entities: + - uid: 97 + components: + - pos: 1.5,-4.5 + parent: 273 + type: Transform + - uid: 99 + components: + - pos: 2.5,-4.5 + parent: 273 + type: Transform + - uid: 100 + components: + - pos: 2.5,-3.5 + parent: 273 + type: Transform +- proto: ChairFolding + entities: + - uid: 287 + components: + - pos: 4.4999013,2.411881 + parent: 273 + type: Transform + - uid: 289 + components: + - rot: 3.141592653589793 rad + pos: 3.458235,0.97338146 + parent: 273 + type: Transform + - uid: 290 + components: + - rot: 3.141592653589793 rad + pos: 4.4582353,0.7544802 + parent: 273 + type: Transform +- proto: ChairFoldingSpawnFolded + entities: + - uid: 291 + components: + - pos: 2.1353185,2.943501 + parent: 273 + type: Transform + - uid: 292 + components: + - pos: 1.4999018,2.5890877 + parent: 273 + type: Transform +- proto: ChairWood + entities: + - uid: 256 + components: + - rot: -1.5707963267948966 rad + pos: -2.748477,-3.6329327 + parent: 273 + type: Transform +- proto: CigaretteSpent + entities: + - uid: 450 + components: + - pos: 3.1706064,5.836499 + parent: 273 + type: Transform + - uid: 451 + components: + - pos: 3.7331064,3.8976521 + parent: 273 + type: Transform + - uid: 452 + components: + - pos: 3.1237314,3.2722192 + parent: 273 + type: Transform + - uid: 453 + components: + - pos: 1.8737314,-3.1072116 + parent: 273 + type: Transform + - uid: 454 + components: + - pos: 2.0768564,-3.3417487 + parent: 273 + type: Transform + - uid: 455 + components: + - rot: -1.5707963267948966 rad + pos: -5.798144,-4.7020698 + parent: 273 + type: Transform + - uid: 456 + components: + - rot: 3.141592653589793 rad + pos: -5.954394,-4.7020698 + parent: 273 + type: Transform + - uid: 457 + components: + - pos: -6.845019,-1.6218047 + parent: 273 + type: Transform +- proto: CigarSpent + entities: + - uid: 449 + components: + - pos: 4.670606,5.3517876 + parent: 273 + type: Transform +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 255 + components: + - pos: -2.5,-1.5 + parent: 273 + type: Transform +- proto: ClosetToolFilled + entities: + - uid: 266 + components: + - pos: 1.5,-3.5 + parent: 273 + type: Transform +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 94 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 273 + type: Transform +- proto: CrateFoodDinnerware + entities: + - uid: 192 + components: + - pos: -4.5,4.5 + parent: 273 + type: Transform +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 96 + components: + - pos: -6.5,-5.5 + parent: 273 + type: Transform +- proto: DisposalBend + entities: + - uid: 203 + components: + - pos: 1.5,0.5 + parent: 273 + type: Transform +- proto: DisposalJunction + entities: + - uid: 202 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 273 + type: Transform +- proto: DisposalMachineFrame + entities: + - uid: 201 + components: + - pos: 1.5,-1.5 + parent: 273 + type: Transform +- proto: DisposalPipe + entities: + - uid: 206 + components: + - pos: -4.5,2.5 + parent: 273 + type: Transform + - uid: 207 + components: + - pos: -4.5,1.5 + parent: 273 + type: Transform + - uid: 208 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 273 + type: Transform + - uid: 209 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 273 + type: Transform + - uid: 213 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 273 + type: Transform +- proto: DisposalPipeBroken + entities: + - uid: 210 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 273 + type: Transform + - uid: 212 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 273 + type: Transform + - uid: 214 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 273 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 204 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 273 + type: Transform + - uid: 205 + components: + - pos: -4.5,3.5 + parent: 273 + type: Transform +- proto: DisposalUnit + entities: + - uid: 83 + components: + - pos: -4.5,3.5 + parent: 273 + type: Transform +- proto: DonkpocketBoxSpawner + entities: + - uid: 194 + components: + - pos: -1.5,5.5 + parent: 273 + type: Transform + - chance: 0.9 + type: RandomSpawner +- proto: Dresser + entities: + - uid: 254 + components: + - pos: -0.5,-2.5 + parent: 273 + type: Transform +- proto: DrinkBottleRum + entities: + - uid: 298 + components: + - rot: -1.5707963267948966 rad + pos: 3.9894855,2.9330769 + parent: 273 + type: Transform +- proto: DrinkColaBottleFull + entities: + - uid: 297 + components: + - pos: 4.3436513,5.799651 + parent: 273 + type: Transform +- proto: EmergencyLight + entities: + - uid: 443 + components: + - pos: -4.5,1.5 + parent: 273 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 444 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,4.5 + parent: 273 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight +- proto: ExtinguisherCabinetFilled + entities: + - uid: 352 + components: + - pos: 1.5,-2.5 + parent: 273 + type: Transform + - uid: 353 + components: + - pos: -4.5,-1.5 + parent: 273 + type: Transform +- proto: FireAlarm + entities: + - uid: 354 + components: + - pos: 1.5,6.5 + parent: 273 + type: Transform + - devices: + - 215 + type: DeviceList +- proto: FireAlarmAssembly + entities: + - uid: 351 + components: + - pos: -5.5,2.5 + parent: 273 + type: Transform +- proto: Firelock + entities: + - uid: 215 + components: + - pos: 0.5,1.5 + parent: 273 + type: Transform +- proto: FirelockFrame + entities: + - uid: 112 + components: + - pos: 0.5,0.5 + parent: 273 + type: Transform +- proto: FloorDrain + entities: + - uid: 98 + components: + - pos: -6.5,-4.5 + parent: 273 + type: Transform + - fixtures: {} + type: Fixtures +- proto: FoodMeatRotten + entities: + - uid: 277 + components: + - flags: InContainer + type: MetaData + - parent: 189 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 458 + components: + - flags: InContainer + type: MetaData + - parent: 189 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 459 + components: + - flags: InContainer + type: MetaData + - parent: 189 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodTinBeansTrash + entities: + - uid: 303 + components: + - rot: -1.5707963267948966 rad + pos: -0.9896817,1.0671976 + parent: 273 + type: Transform +- proto: FoodTinMRE + entities: + - uid: 301 + components: + - rot: 1.5707963267948966 rad + pos: 3.8749015,2.1512837 + parent: 273 + type: Transform +- proto: FoodTinMRETrash + entities: + - uid: 302 + components: + - rot: 1.5707963267948966 rad + pos: 2.114485,-1.643019 + parent: 273 + type: Transform +- proto: GasPipeFourway + entities: + - uid: 223 + components: + - pos: -3.5,1.5 + parent: 273 + type: Transform + - uid: 241 + components: + - pos: -2.5,0.5 + parent: 273 + type: Transform +- proto: GasPipeStraight + entities: + - uid: 220 + components: + - pos: -5.5,-0.5 + parent: 273 + type: Transform + - uid: 224 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 273 + type: Transform + - uid: 226 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 273 + type: Transform + - uid: 227 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 273 + type: Transform + - uid: 228 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 273 + type: Transform + - uid: 229 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 273 + type: Transform + - uid: 230 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 273 + type: Transform + - uid: 231 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 273 + type: Transform + - uid: 235 + components: + - pos: -5.5,-1.5 + parent: 273 + type: Transform + - uid: 236 + components: + - pos: -5.5,-2.5 + parent: 273 + type: Transform + - uid: 237 + components: + - pos: -5.5,-3.5 + parent: 273 + type: Transform + - uid: 238 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 273 + type: Transform + - uid: 239 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 273 + type: Transform + - uid: 240 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 273 + type: Transform + - uid: 242 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 273 + type: Transform + - uid: 243 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 273 + type: Transform + - uid: 244 + components: + - pos: -2.5,-0.5 + parent: 273 + type: Transform + - uid: 263 + components: + - pos: -2.5,1.5 + parent: 273 + type: Transform + - uid: 264 + components: + - pos: -2.5,2.5 + parent: 273 + type: Transform +- proto: GasPipeTJunction + entities: + - uid: 225 + components: + - pos: -1.5,1.5 + parent: 273 + type: Transform + - uid: 232 + components: + - pos: -5.5,0.5 + parent: 273 + type: Transform + - uid: 234 + components: + - pos: -6.5,0.5 + parent: 273 + type: Transform +- proto: GasVentPump + entities: + - uid: 216 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-4.5 + parent: 273 + type: Transform + - uid: 221 + components: + - pos: -2.5,3.5 + parent: 273 + type: Transform + - uid: 222 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 273 + type: Transform + - uid: 233 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 273 + type: Transform + - uid: 245 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 273 + type: Transform +- proto: GasVentScrubber + entities: + - uid: 217 + components: + - rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 273 + type: Transform + - uid: 218 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 273 + type: Transform + - uid: 219 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 273 + type: Transform +- proto: Girder + entities: + - uid: 15 + components: + - pos: -0.5,-0.5 + parent: 273 + type: Transform +- proto: Grille + entities: + - uid: 22 + components: + - pos: -2.5,6.5 + parent: 273 + type: Transform + - uid: 23 + components: + - pos: -1.5,6.5 + parent: 273 + type: Transform + - uid: 28 + components: + - pos: 5.5,0.5 + parent: 273 + type: Transform + - uid: 30 + components: + - pos: 5.5,2.5 + parent: 273 + type: Transform + - uid: 44 + components: + - pos: -3.5,6.5 + parent: 273 + type: Transform + - uid: 49 + components: + - pos: 2.5,6.5 + parent: 273 + type: Transform + - uid: 55 + components: + - pos: -7.5,-1.5 + parent: 273 + type: Transform + - uid: 58 + components: + - pos: -7.5,-2.5 + parent: 273 + type: Transform + - uid: 89 + components: + - pos: -1.5,-5.5 + parent: 273 + type: Transform + - uid: 90 + components: + - pos: -2.5,-5.5 + parent: 273 + type: Transform + - uid: 91 + components: + - pos: -3.5,-5.5 + parent: 273 + type: Transform + - uid: 92 + components: + - pos: -0.5,-5.5 + parent: 273 + type: Transform + - uid: 197 + components: + - pos: 3.5,6.5 + parent: 273 + type: Transform +- proto: GrilleBroken + entities: + - uid: 29 + components: + - pos: 5.5,1.5 + parent: 273 + type: Transform + - uid: 65 + components: + - rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 273 + type: Transform + - uid: 120 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 273 + type: Transform + - uid: 186 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 273 + type: Transform +- proto: HatSpawner + entities: + - uid: 436 + components: + - pos: -0.5,-2.5 + parent: 273 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 326 + components: + - pos: -2.5,5.5 + parent: 273 + type: Transform +- proto: LampGold + entities: + - uid: 257 + components: + - pos: -3.6963937,-2.871987 + parent: 273 + type: Transform +- proto: LockerFreezerBase + entities: + - uid: 189 + components: + - pos: -3.5,5.5 + parent: 273 + type: Transform + - locked: False + type: Lock + - air: + volume: 200 + immutable: False + temperature: 39.006245 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 277 + - 458 + - 459 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: MopBucket + entities: + - uid: 95 + components: + - pos: -6.6974883,-4.50535 + parent: 273 + type: Transform +- proto: PottedPlantRandomPlastic + entities: + - uid: 293 + components: + - pos: 1.5,5.5 + parent: 273 + type: Transform + - uid: 294 + components: + - pos: 4.5,-1.5 + parent: 273 + type: Transform +- proto: Poweredlight + entities: + - uid: 341 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 273 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 342 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 273 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 343 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 273 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 345 + components: + - rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 273 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 346 + components: + - rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 273 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 347 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 273 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredLightColoredFrostyBlue + entities: + - uid: 340 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 273 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 344 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,3.5 + parent: 273 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLight + entities: + - uid: 348 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 273 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 349 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 273 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: RandomAmmoBox + entities: + - uid: 446 + components: + - pos: -6.5,-4.5 + parent: 273 + type: Transform +- proto: RandomArtifactSpawner20 + entities: + - uid: 325 + components: + - pos: 4.5,-0.5 + parent: 273 + type: Transform +- proto: RandomBox + entities: + - uid: 439 + components: + - pos: 0.5,4.5 + parent: 273 + type: Transform +- proto: RandomDrinkBottle + entities: + - uid: 299 + components: + - pos: 4.5,3.5 + parent: 273 + type: Transform +- proto: RandomFoodBakedWhole + entities: + - uid: 463 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 273 + type: Transform +- proto: RandomItem + entities: + - uid: 268 + components: + - pos: -3.5,-4.5 + parent: 273 + type: Transform + - uid: 269 + components: + - pos: -3.5,-3.5 + parent: 273 + type: Transform +- proto: RandomPainting + entities: + - uid: 270 + components: + - pos: 0.5,-0.5 + parent: 273 + type: Transform +- proto: RandomPosterAny + entities: + - uid: 329 + components: + - pos: 0.5,-2.5 + parent: 273 + type: Transform + - uid: 330 + components: + - pos: -4.5,-3.5 + parent: 273 + type: Transform +- proto: RandomPosterLegit + entities: + - uid: 327 + components: + - pos: 0.5,2.5 + parent: 273 + type: Transform + - uid: 335 + components: + - pos: -6.5,-3.5 + parent: 273 + type: Transform +- proto: RandomServiceCorpseSpawner + entities: + - uid: 460 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 273 + type: Transform + - uid: 461 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 273 + type: Transform +- proto: RandomSnacks + entities: + - uid: 328 + components: + - pos: 4.5,1.5 + parent: 273 + type: Transform + - uid: 462 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 273 + type: Transform +- proto: RandomSpawner + entities: + - uid: 304 + components: + - pos: 2.5,-0.5 + parent: 273 + type: Transform + - uid: 305 + components: + - pos: 3.5,0.5 + parent: 273 + type: Transform + - uid: 306 + components: + - pos: 1.5,3.5 + parent: 273 + type: Transform + - uid: 307 + components: + - pos: 2.5,5.5 + parent: 273 + type: Transform + - uid: 308 + components: + - pos: 2.5,4.5 + parent: 273 + type: Transform + - uid: 309 + components: + - pos: -1.5,3.5 + parent: 273 + type: Transform + - uid: 310 + components: + - pos: -2.5,4.5 + parent: 273 + type: Transform + - uid: 311 + components: + - pos: -5.5,-0.5 + parent: 273 + type: Transform + - uid: 438 + components: + - pos: -2.5,0.5 + parent: 273 + type: Transform + - uid: 441 + components: + - pos: -0.5,1.5 + parent: 273 + type: Transform +- proto: RandomVending + entities: + - uid: 295 + components: + - pos: 3.5,-1.5 + parent: 273 + type: Transform +- proto: ReinforcedGirder + entities: + - uid: 21 + components: + - pos: -5.5,6.5 + parent: 273 + type: Transform + - uid: 57 + components: + - pos: -7.5,-0.5 + parent: 273 + type: Transform + - uid: 61 + components: + - pos: -6.5,2.5 + parent: 273 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 31 + components: + - pos: 5.5,2.5 + parent: 273 + type: Transform + - uid: 62 + components: + - pos: 5.5,0.5 + parent: 273 + type: Transform + - uid: 63 + components: + - pos: 5.5,1.5 + parent: 273 + type: Transform + - uid: 78 + components: + - pos: -1.5,6.5 + parent: 273 + type: Transform + - uid: 79 + components: + - pos: -2.5,6.5 + parent: 273 + type: Transform + - uid: 80 + components: + - pos: -3.5,6.5 + parent: 273 + type: Transform + - uid: 198 + components: + - pos: 3.5,6.5 + parent: 273 + type: Transform + - uid: 199 + components: + - pos: 2.5,6.5 + parent: 273 + type: Transform + - uid: 272 + components: + - pos: -2.5,-5.5 + parent: 273 + type: Transform + - uid: 274 + components: + - pos: -3.5,-5.5 + parent: 273 + type: Transform + - uid: 275 + components: + - pos: -1.5,-5.5 + parent: 273 + type: Transform + - uid: 276 + components: + - pos: -0.5,-5.5 + parent: 273 + type: Transform +- proto: SalvageCanisterSpawner + entities: + - uid: 259 + components: + - pos: 2.5,-5.5 + parent: 273 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 260 + components: + - pos: 1.5,-5.5 + parent: 273 + type: Transform +- proto: SalvageMobSpawner + entities: + - uid: 316 + components: + - pos: 1.5,-4.5 + parent: 273 + type: Transform + - uid: 319 + components: + - pos: -5.5,-1.5 + parent: 273 + type: Transform + - uid: 321 + components: + - pos: -4.5,0.5 + parent: 273 + type: Transform + - uid: 322 + components: + - pos: -3.5,0.5 + parent: 273 + type: Transform + - uid: 323 + components: + - pos: -3.5,3.5 + parent: 273 + type: Transform + - uid: 324 + components: + - pos: -1.5,4.5 + parent: 273 + type: Transform + - uid: 435 + components: + - pos: 3.5,2.5 + parent: 273 + type: Transform +- proto: SalvageMobSpawner75 + entities: + - uid: 313 + components: + - pos: 2.5,3.5 + parent: 273 + type: Transform + - uid: 314 + components: + - pos: 3.5,-0.5 + parent: 273 + type: Transform +- proto: SalvagePartsSpawnerLow + entities: + - uid: 261 + components: + - pos: -5.5,-5.5 + parent: 273 + type: Transform + - uid: 267 + components: + - pos: 1.5,-0.5 + parent: 273 + type: Transform + - uid: 317 + components: + - pos: -3.5,-2.5 + parent: 273 + type: Transform +- proto: SalvagePartsSpawnerMid + entities: + - uid: 265 + components: + - pos: 3.5,-3.5 + parent: 273 + type: Transform + - uid: 271 + components: + - pos: 3.5,-4.5 + parent: 273 + type: Transform +- proto: SalvagePartsSpawnerSubSpace + entities: + - uid: 440 + components: + - pos: -0.5,5.5 + parent: 273 + type: Transform +- proto: SalvageSeedSpawnerLow + entities: + - uid: 262 + components: + - pos: -2.5,3.5 + parent: 273 + type: Transform +- proto: ShardGlass + entities: + - uid: 36 + components: + - rot: -1.5707963267948966 rad + pos: -0.79763913,2.3749852 + parent: 273 + type: Transform + - uid: 211 + components: + - rot: 3.141592653589793 rad + pos: -0.38097245,1.9059095 + parent: 273 + type: Transform +- proto: ShardGlassReinforced + entities: + - uid: 1 + components: + - rot: -1.5707963267948966 rad + pos: -6.524597,-2.0207467 + parent: 273 + type: Transform + - uid: 39 + components: + - rot: 1.5707963267948966 rad + pos: -6.868347,-2.2396493 + parent: 273 + type: Transform + - uid: 56 + components: + - pos: -6.868347,-1.4109483 + parent: 273 + type: Transform + - uid: 75 + components: + - pos: -7.430847,-2.3491006 + parent: 273 + type: Transform +- proto: ShuttersWindowOpen + entities: + - uid: 81 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 273 + type: Transform + - links: + - 84 + type: DeviceLinkSink + - uid: 82 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 273 + type: Transform + - links: + - 84 + type: DeviceLinkSink +- proto: SignalButtonDirectional + entities: + - uid: 84 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 273 + type: Transform + - linkedPorts: + 81: + - Pressed: Toggle + 82: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignDirectionalDorms + entities: + - uid: 331 + components: + - pos: -2.5040114,-0.6112541 + parent: 273 + type: Transform +- proto: SignDirectionalFood + entities: + - uid: 332 + components: + - rot: 1.5707963267948966 rad + pos: -2.5120082,-0.39235154 + parent: 273 + type: Transform +- proto: SignDirectionalHydro + entities: + - uid: 333 + components: + - rot: -1.5707963267948966 rad + pos: -4.488426,-0.28398067 + parent: 273 + type: Transform +- proto: SignDirectionalJanitor + entities: + - uid: 334 + components: + - pos: -4.5,-0.5 + parent: 273 + type: Transform +- proto: SignDirectionalMed + entities: + - uid: 93 + components: + - rot: -1.5707963267948966 rad + pos: -4.4988427,-0.69051296 + parent: 273 + type: Transform +- proto: SinkWide + entities: + - uid: 14 + components: + - pos: -6.5,-4.5 + parent: 273 + type: Transform +- proto: SnakeMobMundane25 + entities: + - uid: 312 + components: + - pos: -2.5,-4.5 + parent: 273 + type: Transform + - uid: 318 + components: + - pos: -2.5,-2.5 + parent: 273 + type: Transform + - uid: 437 + components: + - pos: -1.5,-4.5 + parent: 273 + type: Transform + - uid: 445 + components: + - pos: 2.5,-1.5 + parent: 273 + type: Transform +- proto: SpawnMobBearSalvage + entities: + - uid: 315 + components: + - pos: 2.5,-4.5 + parent: 273 + type: Transform +- proto: StoolBar + entities: + - uid: 284 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 273 + type: Transform + - uid: 285 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 273 + type: Transform + - uid: 286 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,5.5 + parent: 273 + type: Transform +- proto: SubstationBasicEmpty + entities: + - uid: 3 + components: + - pos: 3.5,-5.5 + parent: 273 + type: Transform +- proto: Table + entities: + - uid: 279 + components: + - pos: 4.5,1.5 + parent: 273 + type: Transform + - uid: 280 + components: + - pos: 3.5,1.5 + parent: 273 + type: Transform +- proto: TableCounterMetal + entities: + - uid: 33 + components: + - pos: 0.5,4.5 + parent: 273 + type: Transform + - uid: 34 + components: + - pos: 0.5,3.5 + parent: 273 + type: Transform +- proto: TableCounterWood + entities: + - uid: 281 + components: + - pos: 4.5,3.5 + parent: 273 + type: Transform + - uid: 282 + components: + - pos: 4.5,4.5 + parent: 273 + type: Transform + - uid: 283 + components: + - pos: 4.5,5.5 + parent: 273 + type: Transform +- proto: TableReinforced + entities: + - uid: 190 + components: + - pos: -0.5,5.5 + parent: 273 + type: Transform + - uid: 191 + components: + - pos: -1.5,5.5 + parent: 273 + type: Transform + - uid: 258 + components: + - pos: -2.5,5.5 + parent: 273 + type: Transform +- proto: TableWood + entities: + - uid: 252 + components: + - pos: -3.5,-4.5 + parent: 273 + type: Transform + - uid: 253 + components: + - pos: -3.5,-3.5 + parent: 273 + type: Transform +- proto: ToolboxMechanicalFilled + entities: + - uid: 296 + components: + - pos: 1.9999018,-1.0175841 + parent: 273 + type: Transform +- proto: VendingMachineBooze + entities: + - uid: 188 + components: + - flags: SessionSpecific + type: MetaData + - pos: -4.5,5.5 + parent: 273 + type: Transform +- proto: WallmountTelevisionFrame + entities: + - uid: 288 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,4.5 + parent: 273 + type: Transform +- proto: WallReinforced + entities: + - uid: 4 + components: + - pos: -7.5,-4.5 + parent: 273 + type: Transform + - uid: 12 + components: + - pos: -5.5,-6.5 + parent: 273 + type: Transform + - uid: 13 + components: + - pos: 0.5,-3.5 + parent: 273 + type: Transform + - uid: 16 + components: + - pos: 0.5,-2.5 + parent: 273 + type: Transform + - uid: 18 + components: + - pos: 1.5,-2.5 + parent: 273 + type: Transform + - uid: 20 + components: + - pos: 3.5,-2.5 + parent: 273 + type: Transform + - uid: 24 + components: + - pos: 4.5,6.5 + parent: 273 + type: Transform + - uid: 25 + components: + - pos: 5.5,5.5 + parent: 273 + type: Transform + - uid: 26 + components: + - pos: 5.5,4.5 + parent: 273 + type: Transform + - uid: 27 + components: + - pos: 5.5,3.5 + parent: 273 + type: Transform + - uid: 32 + components: + - pos: -4.5,6.5 + parent: 273 + type: Transform + - uid: 45 + components: + - pos: -0.5,6.5 + parent: 273 + type: Transform + - uid: 46 + components: + - pos: 0.5,6.5 + parent: 273 + type: Transform + - uid: 47 + components: + - pos: 0.5,5.5 + parent: 273 + type: Transform + - uid: 48 + components: + - pos: 1.5,6.5 + parent: 273 + type: Transform + - uid: 50 + components: + - pos: 5.5,6.5 + parent: 273 + type: Transform + - uid: 52 + components: + - pos: -7.5,-3.5 + parent: 273 + type: Transform + - uid: 53 + components: + - pos: -7.5,-6.5 + parent: 273 + type: Transform + - uid: 54 + components: + - pos: -7.5,-5.5 + parent: 273 + type: Transform + - uid: 64 + components: + - pos: 4.5,-2.5 + parent: 273 + type: Transform + - uid: 66 + components: + - pos: 3.5,-6.5 + parent: 273 + type: Transform + - uid: 67 + components: + - pos: 4.5,-6.5 + parent: 273 + type: Transform + - uid: 68 + components: + - pos: 4.5,-5.5 + parent: 273 + type: Transform + - uid: 69 + components: + - pos: 4.5,-4.5 + parent: 273 + type: Transform + - uid: 70 + components: + - pos: 0.5,-5.5 + parent: 273 + type: Transform + - uid: 71 + components: + - pos: 0.5,-6.5 + parent: 273 + type: Transform + - uid: 72 + components: + - pos: 1.5,-6.5 + parent: 273 + type: Transform + - uid: 73 + components: + - pos: 2.5,-6.5 + parent: 273 + type: Transform + - uid: 74 + components: + - pos: 4.5,-3.5 + parent: 273 + type: Transform + - uid: 76 + components: + - pos: -6.5,-6.5 + parent: 273 + type: Transform + - uid: 77 + components: + - pos: -4.5,-6.5 + parent: 273 + type: Transform + - uid: 85 + components: + - pos: 5.5,-0.5 + parent: 273 + type: Transform + - uid: 86 + components: + - pos: 5.5,-1.5 + parent: 273 + type: Transform + - uid: 87 + components: + - pos: 5.5,-2.5 + parent: 273 + type: Transform + - uid: 88 + components: + - pos: -4.5,-5.5 + parent: 273 + type: Transform +- proto: WallSolid + entities: + - uid: 2 + components: + - pos: -6.5,-3.5 + parent: 273 + type: Transform + - uid: 5 + components: + - pos: -4.5,-1.5 + parent: 273 + type: Transform + - uid: 6 + components: + - pos: -4.5,-0.5 + parent: 273 + type: Transform + - uid: 8 + components: + - pos: -2.5,-0.5 + parent: 273 + type: Transform + - uid: 9 + components: + - pos: -4.5,-4.5 + parent: 273 + type: Transform + - uid: 10 + components: + - pos: -4.5,-3.5 + parent: 273 + type: Transform + - uid: 17 + components: + - pos: 0.5,-0.5 + parent: 273 + type: Transform + - uid: 19 + components: + - pos: 0.5,-1.5 + parent: 273 + type: Transform + - uid: 43 + components: + - pos: -5.5,4.5 + parent: 273 + type: Transform + - uid: 51 + components: + - pos: -5.5,5.5 + parent: 273 + type: Transform +- proto: WallSolidRust + entities: + - uid: 7 + components: + - pos: -3.5,-0.5 + parent: 273 + type: Transform + - uid: 11 + components: + - pos: -4.5,-2.5 + parent: 273 + type: Transform + - uid: 35 + components: + - pos: 0.5,2.5 + parent: 273 + type: Transform + - uid: 38 + components: + - pos: -2.5,2.5 + parent: 273 + type: Transform + - uid: 40 + components: + - pos: -5.5,3.5 + parent: 273 + type: Transform + - uid: 41 + components: + - pos: -4.5,2.5 + parent: 273 + type: Transform + - uid: 42 + components: + - pos: -5.5,2.5 + parent: 273 + type: Transform +- proto: Window + entities: + - uid: 187 + components: + - pos: -1.5,2.5 + parent: 273 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-med-silent-orchestra.yml b/Resources/Maps/Salvage/DeltaV/DV-med-silent-orchestra.yml new file mode 100644 index 0000000000..fc3daa4c33 --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-med-silent-orchestra.yml @@ -0,0 +1,1131 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 17: FloorBrokenWood + 23: FloorClown + 81: FloorSilver + 84: FloorSteel + 110: FloorWood + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 162 + components: + - type: MetaData + - pos: 0.5,0.5 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAFwAAAAAAcQAAAAAAcQAAAAAAFwAAAAAAFwAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAcQAAAAAAVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAABEQAAAAAAbgAAAAADbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAAAbgAAAAABbgAAAAAC + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABVAAAAAADcQAAAAAAVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAABbgAAAAACEQAAAAAEbgAAAAADVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAACbgAAAAAAEQAAAAAFEQAAAAAEcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAEQAAAAAAEQAAAAAFbgAAAAADbgAAAAADbgAAAAABbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADbgAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAABbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAUQAAAAAAUQAAAAAAcQAAAAAAcQAAAAAAUQAAAAAAUQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAUQAAAAAAcQAAAAAAcQAAAAAAUQAAAAAAcQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAUQAAAAAAUQAAAAAAcQAAAAAAUQAAAAAAUQAAAAAAcQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: bgAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAADVAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAABbgAAAAADEQAAAAACbgAAAAADVAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 2: 4,-2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 12: -6,-2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 0: 4,1 + 1: 4,0 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 3: 3,-2 + 4: 2,-2 + 5: 1,-2 + 6: 0,-2 + 7: -1,-2 + 8: -2,-2 + 9: -3,-2 + 10: -4,-2 + 11: -5,-2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 13: -6,-1 + 14: -6,0 + 15: -6,1 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 16: -1,-5 + 17: -1,-4 + 18: -3,-3 + 19: -4,-3 + 20: -5,-3 + 21: -7,0 + 22: -7,1 + 23: -7,-1 + 24: 1,-3 + 25: 2,-3 + 26: 5,1 + 27: 5,1 + 28: 5,1 + 29: 1,-5 + 30: 0,-5 + 31: -2,-6 + type: DecalGrid + - type: OccluderTree + - type: Shuttle + - type: RadiationGridResistance + - type: SpreaderGrid + - type: GridPathfinding + - version: 2 + data: + tiles: + -2,-2: + 0: 65520 + -2,-1: + 0: 65535 + -1,-2: + 0: 65523 + -1,-1: + 0: 65535 + 0,-2: + 0: 65525 + 0,-1: + 0: 65535 + 1,-2: + 0: 29489 + 1,-1: + 0: 13175 + -2,0: + 0: 65535 + -2,1: + 0: 4095 + -1,0: + 0: 65535 + -1,1: + 0: 4095 + 0,0: + 0: 65535 + 0,1: + 0: 4095 + 1,0: + 0: 30583 + 1,1: + 0: 883 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay +- proto: AirlockTheatreLocked + entities: + - uid: 12 + components: + - pos: -6.5,2.5 + parent: 162 + type: Transform + - uid: 13 + components: + - pos: 5.5,2.5 + parent: 162 + type: Transform +- proto: Barricade + entities: + - uid: 160 + components: + - pos: -4.5,-0.5 + parent: 162 + type: Transform +- proto: BoardGameSpawner + entities: + - uid: 96 + components: + - pos: 2.5,3.5 + parent: 162 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 107 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 162 + type: Transform + - uid: 108 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 162 + type: Transform +- proto: ChairWood + entities: + - uid: 64 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 162 + type: Transform + - uid: 65 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-4.5 + parent: 162 + type: Transform + - uid: 67 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 162 + type: Transform + - uid: 68 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 162 + type: Transform + - uid: 69 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 162 + type: Transform + - uid: 70 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 162 + type: Transform + - uid: 71 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 162 + type: Transform + - uid: 73 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 162 + type: Transform + - uid: 74 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 162 + type: Transform + - uid: 75 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 162 + type: Transform + - uid: 76 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 162 + type: Transform + - uid: 77 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-4.5 + parent: 162 + type: Transform + - uid: 78 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 162 + type: Transform + - uid: 79 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-6.5 + parent: 162 + type: Transform + - uid: 80 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 162 + type: Transform + - uid: 81 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 162 + type: Transform + - uid: 82 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-3.5 + parent: 162 + type: Transform + - uid: 83 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 162 + type: Transform + - uid: 84 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 162 + type: Transform + - uid: 85 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 162 + type: Transform + - uid: 88 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-3.5 + parent: 162 + type: Transform + - uid: 90 + components: + - pos: -0.5,1.5 + parent: 162 + type: Transform +- proto: ClothingEyesGlasses + entities: + - uid: 111 + components: + - rot: 3.141592653589793 rad + pos: 1.8125,-5.0187716 + parent: 162 + type: Transform +- proto: ComfyChair + entities: + - uid: 104 + components: + - pos: -2.5,5.5 + parent: 162 + type: Transform +- proto: ContrabassInstrument + entities: + - uid: 19 + components: + - pos: 0.5,0.5 + parent: 162 + type: Transform +- proto: d20Dice + entities: + - uid: 105 + components: + - rot: 0.00015378765237983316 rad + pos: -1.944643,5.7349615 + parent: 162 + type: Transform +- proto: d6Dice + entities: + - uid: 106 + components: + - pos: -1.6946445,5.299499 + parent: 162 + type: Transform + - canCollide: False + type: Physics +- proto: DrinkBottleGin + entities: + - uid: 112 + components: + - pos: 2.2428555,-6.4262753 + parent: 162 + type: Transform + - canCollide: False + type: Physics +- proto: DrinkBottleRum + entities: + - uid: 136 + components: + - pos: -4.0383945,-2.613775 + parent: 162 + type: Transform + - canCollide: False + type: Physics +- proto: DrinkMugDog + entities: + - uid: 21 + components: + - pos: -6.50374,5.4346943 + parent: 162 + type: Transform +- proto: DrinkSodaWaterCan + entities: + - uid: 98 + components: + - pos: -2.1165195,-3.645025 + parent: 162 + type: Transform + - canCollide: False + type: Physics +- proto: DrinkWaterBottleFull + entities: + - uid: 89 + components: + - pos: 1.1178555,5.2455997 + parent: 162 + type: Transform + - canCollide: False + type: Physics +- proto: Floodlight + entities: + - uid: 14 + components: + - pos: -3.2441242,-0.24739087 + parent: 162 + type: Transform + - uid: 15 + components: + - pos: 2.5215008,-0.15364087 + parent: 162 + type: Transform +- proto: FloorTileItemSilver + entities: + - uid: 40 + components: + - pos: -5.551844,4.574896 + parent: 162 + type: Transform + - canCollide: False + type: Physics + - uid: 41 + components: + - pos: -4.723719,5.356146 + parent: 162 + type: Transform + - canCollide: False + type: Physics + - uid: 42 + components: + - pos: -4.911219,4.918646 + parent: 162 + type: Transform + - canCollide: False + type: Physics + - uid: 43 + components: + - pos: -4.645594,3.5436459 + parent: 162 + type: Transform + - canCollide: False + type: Physics + - uid: 44 + components: + - pos: -1.1198876,5.262396 + parent: 162 + type: Transform + - canCollide: False + type: Physics + - uid: 45 + components: + - pos: -2.4167626,4.668646 + parent: 162 + type: Transform + - canCollide: False + type: Physics + - uid: 46 + components: + - pos: 1.6926124,4.418646 + parent: 162 + type: Transform + - canCollide: False + type: Physics + - uid: 47 + components: + - pos: 0.7551124,3.7623959 + parent: 162 + type: Transform + - canCollide: False + type: Physics + - uid: 48 + components: + - pos: 6.4663706,3.4967709 + parent: 162 + type: Transform + - canCollide: False + type: Physics + - uid: 49 + components: + - pos: 5.9507456,4.246771 + parent: 162 + type: Transform + - canCollide: False + type: Physics + - uid: 50 + components: + - pos: 5.1851206,4.465521 + parent: 162 + type: Transform + - canCollide: False + type: Physics + - uid: 51 + components: + - pos: 5.2163706,4.653021 + parent: 162 + type: Transform + - canCollide: False + type: Physics + - uid: 52 + components: + - pos: 5.8101206,3.7155209 + parent: 162 + type: Transform + - canCollide: False + type: Physics + - uid: 53 + components: + - pos: 4.9507456,3.6373959 + parent: 162 + type: Transform + - canCollide: False + type: Physics + - uid: 54 + components: + - pos: 4.4351206,5.512396 + parent: 162 + type: Transform + - canCollide: False + type: Physics +- proto: FoodBakedPretzel + entities: + - uid: 119 + components: + - pos: 0.6453335,-2.6183023 + parent: 162 + type: Transform +- proto: FoodBurgerClown + entities: + - uid: 102 + components: + - pos: -3.1165195,-4.466126 + parent: 162 + type: Transform + - canCollide: False + type: Physics +- proto: FoodFrozenPopsicleOrange + entities: + - uid: 117 + components: + - rot: 1.5707963267948966 rad + pos: -5.2102695,-2.5044 + parent: 162 + type: Transform + - canCollide: False + type: Physics +- proto: FoodFrozenPopsicleTrash + entities: + - uid: 120 + components: + - rot: 3.141592653589793 rad + pos: -1.4133945,-6.4106503 + parent: 162 + type: Transform + - canCollide: False + type: Physics +- proto: FoodFrozenSnowconeClown + entities: + - uid: 103 + components: + - pos: 4.0397305,-2.716126 + parent: 162 + type: Transform + - canCollide: False + type: Physics +- proto: FoodSnackPopcorn + entities: + - uid: 121 + components: + - pos: -1.2727695,-2.520025 + parent: 162 + type: Transform + - canCollide: False + type: Physics +- proto: Girder + entities: + - uid: 25 + components: + - pos: 3.5,6.5 + parent: 162 + type: Transform + - uid: 30 + components: + - pos: -7.5,1.5 + parent: 162 + type: Transform + - uid: 32 + components: + - pos: -7.5,-3.5 + parent: 162 + type: Transform + - uid: 33 + components: + - pos: -7.5,-5.5 + parent: 162 + type: Transform + - uid: 63 + components: + - pos: -3.5,6.5 + parent: 162 + type: Transform +- proto: GunpetInstrument + entities: + - uid: 157 + components: + - pos: 0.9612335,3.3142223 + parent: 162 + type: Transform + - canCollide: False + type: Physics +- proto: MaterialWoodPlank + entities: + - uid: 95 + components: + - pos: 0.55019546,5.474492 + parent: 162 + type: Transform + - uid: 101 + components: + - pos: -5.1492805,1.6008873 + parent: 162 + type: Transform +- proto: MedkitFilled + entities: + - uid: 110 + components: + - pos: 2.0084805,5.6518497 + parent: 162 + type: Transform + - canCollide: False + type: Physics +- proto: MonkeyCubeWrapped + entities: + - uid: 58 + components: + - pos: -0.11651945,5.1636443 + parent: 162 + type: Transform + - canCollide: False + type: Physics + - uid: 59 + components: + - pos: -0.17901945,5.5073943 + parent: 162 + type: Transform + - canCollide: False + type: Physics + - uid: 60 + components: + - pos: -0.36651945,5.2730193 + parent: 162 + type: Transform + - canCollide: False + type: Physics +- proto: MusicBoxInstrument + entities: + - uid: 20 + components: + - pos: 4.2845707,1.5526171 + parent: 162 + type: Transform +- proto: PanFluteInstrument + entities: + - uid: 18 + components: + - pos: -3.5435545,5.536992 + parent: 162 + type: Transform +- proto: ParchisBoard + entities: + - uid: 118 + components: + - rot: 1.5707963267948966 rad + pos: 5.4147305,3.40185 + parent: 162 + type: Transform + - canCollide: False + type: Physics +- proto: PartRodMetal1 + entities: + - uid: 62 + components: + - pos: 0.22723055,-0.8676058 + parent: 162 + type: Transform + - canCollide: False + type: Physics +- proto: PianoInstrument + entities: + - uid: 92 + components: + - pos: -0.5,0.5 + parent: 162 + type: Transform +- proto: PosterContrabandClown + entities: + - uid: 159 + components: + - pos: -3.5,2.5 + parent: 162 + type: Transform +- proto: Railing + entities: + - uid: 66 + components: + - pos: -4.5,-1.5 + parent: 162 + type: Transform + - uid: 72 + components: + - pos: -2.5,-1.5 + parent: 162 + type: Transform + - uid: 86 + components: + - pos: -0.5,-1.5 + parent: 162 + type: Transform + - uid: 87 + components: + - pos: -3.5,-1.5 + parent: 162 + type: Transform + - uid: 122 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 162 + type: Transform + - uid: 125 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 162 + type: Transform + - uid: 126 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 162 + type: Transform + - uid: 127 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 162 + type: Transform + - uid: 128 + components: + - pos: 3.5,-1.5 + parent: 162 + type: Transform + - uid: 129 + components: + - pos: 2.5,-1.5 + parent: 162 + type: Transform + - uid: 130 + components: + - pos: 1.5,-1.5 + parent: 162 + type: Transform + - uid: 131 + components: + - pos: 0.5,-1.5 + parent: 162 + type: Transform + - uid: 132 + components: + - pos: -1.5,-1.5 + parent: 162 + type: Transform +- proto: RailingCorner + entities: + - uid: 123 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 162 + type: Transform + - uid: 124 + components: + - pos: 4.5,-1.5 + parent: 162 + type: Transform +- proto: RandomSnacks + entities: + - uid: 97 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 162 + type: Transform + - uid: 99 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 162 + type: Transform +- proto: RandomSpawner + entities: + - uid: 100 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-6.5 + parent: 162 + type: Transform + - uid: 109 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 162 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 17 + components: + - pos: -5.5,5.5 + parent: 162 + type: Transform +- proto: SalvageMobSpawner + entities: + - uid: 147 + components: + - pos: 1.5,1.5 + parent: 162 + type: Transform + - uid: 148 + components: + - pos: -0.5,-0.5 + parent: 162 + type: Transform + - uid: 149 + components: + - pos: 1.5,3.5 + parent: 162 + type: Transform + - uid: 150 + components: + - pos: 3.5,3.5 + parent: 162 + type: Transform + - uid: 151 + components: + - pos: -2.5,5.5 + parent: 162 + type: Transform + - uid: 152 + components: + - pos: -0.5,1.5 + parent: 162 + type: Transform + - uid: 153 + components: + - pos: 0.5,1.5 + parent: 162 + type: Transform + - uid: 154 + components: + - pos: -1.5,1.5 + parent: 162 + type: Transform + - uid: 155 + components: + - pos: -2.5,1.5 + parent: 162 + type: Transform +- proto: SchoolgirlUniformSpawner + entities: + - uid: 113 + components: + - pos: -4.5,5.5 + parent: 162 + type: Transform +- proto: Stool + entities: + - uid: 138 + components: + - pos: -2.5,1.5 + parent: 162 + type: Transform + - uid: 139 + components: + - pos: -1.5,1.5 + parent: 162 + type: Transform + - uid: 140 + components: + - pos: 1.5,1.5 + parent: 162 + type: Transform + - uid: 141 + components: + - pos: 0.5,1.5 + parent: 162 + type: Transform +- proto: Table + entities: + - uid: 143 + components: + - pos: -1.5,5.5 + parent: 162 + type: Transform + - uid: 144 + components: + - pos: -3.5,5.5 + parent: 162 + type: Transform + - uid: 145 + components: + - pos: 2.5,3.5 + parent: 162 + type: Transform +- proto: TimpaniInstrument + entities: + - uid: 22 + components: + - pos: -1.5,0.5 + parent: 162 + type: Transform +- proto: TomDrumsInstrument + entities: + - uid: 16 + components: + - pos: 1.5,0.5 + parent: 162 + type: Transform +- proto: ToyIan + entities: + - uid: 114 + components: + - pos: -1.4758945,-5.6450253 + parent: 162 + type: Transform + - canCollide: False + type: Physics +- proto: VibraphoneInstrument + entities: + - uid: 23 + components: + - pos: -2.5,0.5 + parent: 162 + type: Transform +- proto: WallSolid + entities: + - uid: 24 + components: + - pos: -7.5,2.5 + parent: 162 + type: Transform + - uid: 29 + components: + - pos: -7.5,-2.5 + parent: 162 + type: Transform + - uid: 34 + components: + - pos: -7.5,3.5 + parent: 162 + type: Transform + - uid: 35 + components: + - pos: -7.5,6.5 + parent: 162 + type: Transform + - uid: 37 + components: + - pos: -7.5,5.5 + parent: 162 + type: Transform + - uid: 38 + components: + - pos: -6.5,6.5 + parent: 162 + type: Transform + - uid: 56 + components: + - pos: 1.5,6.5 + parent: 162 + type: Transform + - uid: 57 + components: + - pos: -4.5,6.5 + parent: 162 + type: Transform + - uid: 61 + components: + - pos: 0.5,6.5 + parent: 162 + type: Transform + - uid: 91 + components: + - pos: -2.5,6.5 + parent: 162 + type: Transform + - uid: 94 + components: + - pos: -0.5,6.5 + parent: 162 + type: Transform +- proto: WallSolidRust + entities: + - uid: 26 + components: + - pos: -7.5,0.5 + parent: 162 + type: Transform + - uid: 27 + components: + - pos: -7.5,-1.5 + parent: 162 + type: Transform + - uid: 28 + components: + - pos: -7.5,-0.5 + parent: 162 + type: Transform + - uid: 31 + components: + - pos: -7.5,-4.5 + parent: 162 + type: Transform + - uid: 36 + components: + - pos: -7.5,4.5 + parent: 162 + type: Transform + - uid: 39 + components: + - pos: 2.5,6.5 + parent: 162 + type: Transform + - uid: 55 + components: + - pos: -5.5,6.5 + parent: 162 + type: Transform + - uid: 93 + components: + - pos: -1.5,6.5 + parent: 162 + type: Transform +- proto: WallWood + entities: + - uid: 1 + components: + - pos: 1.5,2.5 + parent: 162 + type: Transform + - uid: 2 + components: + - pos: 2.5,2.5 + parent: 162 + type: Transform + - uid: 3 + components: + - pos: 3.5,2.5 + parent: 162 + type: Transform + - uid: 4 + components: + - pos: 4.5,2.5 + parent: 162 + type: Transform + - uid: 5 + components: + - pos: 0.5,2.5 + parent: 162 + type: Transform + - uid: 6 + components: + - pos: -0.5,2.5 + parent: 162 + type: Transform + - uid: 7 + components: + - pos: -1.5,2.5 + parent: 162 + type: Transform + - uid: 8 + components: + - pos: -2.5,2.5 + parent: 162 + type: Transform + - uid: 9 + components: + - pos: -3.5,2.5 + parent: 162 + type: Transform + - uid: 10 + components: + - pos: -4.5,2.5 + parent: 162 + type: Transform + - uid: 11 + components: + - pos: -5.5,2.5 + parent: 162 + type: Transform +- proto: WoodenBuckler + entities: + - uid: 158 + components: + - pos: 2.5538442,-1.2584877 + parent: 162 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-med-vault-01.yml b/Resources/Maps/Salvage/DeltaV/DV-med-vault-01.yml new file mode 100644 index 0000000000..07ad2e11f1 --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-med-vault-01.yml @@ -0,0 +1,1462 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 27: FloorDark + 40: FloorElevatorShaft + 72: FloorReinforced + 89: FloorSteelDirty + 97: FloorTechMaint2 + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 222 + components: + - type: MetaData + - pos: 0.5,0.5 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWQAAAAAAWQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAASAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADcQAAAAAAGwAAAAACGwAAAAAD + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAcQAAAAAAGwAAAAACcQAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAABcQAAAAAAGwAAAAACGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAADYQAAAAAAGwAAAAABGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAABYQAAAAAAGwAAAAADGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAABcQAAAAAAGwAAAAACGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: GwAAAAADcQAAAAAAGwAAAAACGwAAAAABGwAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADYQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 60: -1,-1 + 69: -1,-1 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 58: -2,-4 + 59: -1,0 + - node: + color: '#A4610696' + id: CheckerNESW + decals: + 54: -6,-7 + 55: -6,-6 + 56: -5,-6 + 57: -5,-7 + - node: + color: '#DE3A3A0F' + id: CheckerNESW + decals: + 15: -2,-1 + 16: -1,-1 + 17: 0,-1 + 18: 0,0 + 19: -1,0 + 20: -2,0 + 21: -2,1 + 22: -1,1 + 23: 0,1 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 24: -5,-1 + 25: -4,2 + 26: -4,3 + 27: -5,4 + 28: -1,-1 + 29: 0,1 + 30: -1,0 + 31: 4,-5 + 32: 4,-4 + 33: 2,0 + 34: 2,0 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 35: 2,-1 + 36: 3,0 + 37: 4,0 + 38: 4,-1 + 39: 4,-5 + 40: -1,0 + 41: -2,0 + 42: -2,-1 + 43: -5,-1 + 44: -4,1 + 45: -5,4 + 46: -1,3 + 47: -1,3 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 48: -2,3 + 49: -5,4 + 50: -4,2 + 51: -4,-1 + 52: -5,-3 + 53: 2,-1 + - node: + color: '#DE3A3A0F' + id: QuarterTileOverlayGreyscale + decals: + 6: -6,0 + 7: -6,1 + 8: -6,2 + 9: -6,4 + - node: + color: '#DE3A3A0F' + id: QuarterTileOverlayGreyscale90 + decals: + 10: 4,0 + 11: 4,-1 + 12: 4,-4 + 13: 4,-5 + 14: 4,-6 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 63: -4,0 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 64: 2,0 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 65: -4,2 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 3: -1,-5 + 4: -1,-4 + 5: -1,-3 + 62: -4,1 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleS + decals: + 66: -1,-1 + 67: -2,-1 + 68: 0,-1 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 0: -1,-5 + 1: -1,-4 + 2: -1,-3 + 61: 2,1 + type: DecalGrid + - type: OccluderTree + - type: Shuttle + - type: RadiationGridResistance + - version: 2 + data: + tiles: + -2,-2: + 0: 65263 + -2,-1: + 0: 65258 + -1,-2: + 0: 65523 + -1,-1: + 0: 65535 + 0,-2: + 0: 65524 + 0,-1: + 0: 65535 + 1,-2: + 0: 29491 + 1,-1: + 0: 30515 + -2,0: + 0: 61167 + -2,1: + 0: 1007 + -1,0: + 0: 65535 + -1,1: + 0: 2815 + 0,0: + 0: 65535 + 0,1: + 0: 315 + 1,0: + 0: 51 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: SpreaderGrid + - type: GridPathfinding +- proto: AirlockSecurityLocked + entities: + - uid: 83 + components: + - pos: -2.5,3.5 + parent: 222 + type: Transform + - uid: 93 + components: + - pos: -2.5,1.5 + parent: 222 + type: Transform + - uid: 94 + components: + - pos: 1.5,1.5 + parent: 222 + type: Transform +- proto: APCBasic + entities: + - uid: 57 + components: + - pos: 0.5,-1.5 + parent: 222 + type: Transform + - uid: 64 + components: + - pos: -4.5,5.5 + parent: 222 + type: Transform + - uid: 89 + components: + - pos: 3.5,1.5 + parent: 222 + type: Transform +- proto: CableApcExtension + entities: + - uid: 109 + components: + - pos: 0.5,-1.5 + parent: 222 + type: Transform + - uid: 110 + components: + - pos: 0.5,-2.5 + parent: 222 + type: Transform + - uid: 111 + components: + - pos: -0.5,-3.5 + parent: 222 + type: Transform + - uid: 112 + components: + - pos: -0.5,-4.5 + parent: 222 + type: Transform + - uid: 113 + components: + - pos: 0.5,-3.5 + parent: 222 + type: Transform + - uid: 114 + components: + - pos: 3.5,1.5 + parent: 222 + type: Transform + - uid: 115 + components: + - pos: 3.5,0.5 + parent: 222 + type: Transform + - uid: 116 + components: + - pos: 3.5,-0.5 + parent: 222 + type: Transform + - uid: 117 + components: + - pos: 3.5,-1.5 + parent: 222 + type: Transform + - uid: 118 + components: + - pos: 3.5,-2.5 + parent: 222 + type: Transform + - uid: 119 + components: + - pos: 3.5,-3.5 + parent: 222 + type: Transform + - uid: 120 + components: + - pos: 3.5,-4.5 + parent: 222 + type: Transform + - uid: 121 + components: + - pos: 3.5,-5.5 + parent: 222 + type: Transform + - uid: 122 + components: + - pos: -4.5,5.5 + parent: 222 + type: Transform + - uid: 123 + components: + - pos: -4.5,4.5 + parent: 222 + type: Transform + - uid: 124 + components: + - pos: -4.5,3.5 + parent: 222 + type: Transform + - uid: 125 + components: + - pos: -4.5,2.5 + parent: 222 + type: Transform + - uid: 126 + components: + - pos: -4.5,1.5 + parent: 222 + type: Transform + - uid: 127 + components: + - pos: -4.5,0.5 + parent: 222 + type: Transform + - uid: 128 + components: + - pos: -4.5,-0.5 + parent: 222 + type: Transform + - uid: 129 + components: + - pos: -4.5,-1.5 + parent: 222 + type: Transform + - uid: 130 + components: + - pos: -4.5,-2.5 + parent: 222 + type: Transform + - uid: 131 + components: + - pos: -3.5,3.5 + parent: 222 + type: Transform + - uid: 132 + components: + - pos: -2.5,3.5 + parent: 222 + type: Transform + - uid: 133 + components: + - pos: -1.5,3.5 + parent: 222 + type: Transform + - uid: 134 + components: + - pos: -0.5,3.5 + parent: 222 + type: Transform + - uid: 135 + components: + - pos: -3.5,1.5 + parent: 222 + type: Transform + - uid: 136 + components: + - pos: -2.5,1.5 + parent: 222 + type: Transform + - uid: 137 + components: + - pos: -1.5,1.5 + parent: 222 + type: Transform + - uid: 138 + components: + - pos: -0.5,1.5 + parent: 222 + type: Transform + - uid: 139 + components: + - pos: -0.5,0.5 + parent: 222 + type: Transform +- proto: CableMV + entities: + - uid: 60 + components: + - pos: -2.5,3.5 + parent: 222 + type: Transform + - uid: 61 + components: + - pos: -1.5,3.5 + parent: 222 + type: Transform + - uid: 62 + components: + - pos: -3.5,3.5 + parent: 222 + type: Transform + - uid: 63 + components: + - pos: -4.5,4.5 + parent: 222 + type: Transform + - uid: 65 + components: + - pos: -4.5,3.5 + parent: 222 + type: Transform + - uid: 87 + components: + - pos: -0.5,3.5 + parent: 222 + type: Transform + - uid: 88 + components: + - pos: -0.5,4.5 + parent: 222 + type: Transform + - uid: 95 + components: + - pos: -4.5,5.5 + parent: 222 + type: Transform + - uid: 96 + components: + - pos: -4.5,2.5 + parent: 222 + type: Transform + - uid: 97 + components: + - pos: -4.5,1.5 + parent: 222 + type: Transform + - uid: 98 + components: + - pos: -3.5,1.5 + parent: 222 + type: Transform + - uid: 99 + components: + - pos: -2.5,1.5 + parent: 222 + type: Transform + - uid: 100 + components: + - pos: -1.5,1.5 + parent: 222 + type: Transform + - uid: 101 + components: + - pos: -0.5,1.5 + parent: 222 + type: Transform + - uid: 102 + components: + - pos: 0.5,1.5 + parent: 222 + type: Transform + - uid: 103 + components: + - pos: 0.5,0.5 + parent: 222 + type: Transform + - uid: 104 + components: + - pos: 0.5,-0.5 + parent: 222 + type: Transform + - uid: 105 + components: + - pos: 0.5,-1.5 + parent: 222 + type: Transform + - uid: 106 + components: + - pos: 1.5,1.5 + parent: 222 + type: Transform + - uid: 107 + components: + - pos: 2.5,1.5 + parent: 222 + type: Transform + - uid: 108 + components: + - pos: 3.5,1.5 + parent: 222 + type: Transform +- proto: Catwalk + entities: + - uid: 140 + components: + - pos: -4.5,-7.5 + parent: 222 + type: Transform + - uid: 141 + components: + - pos: -5.5,-7.5 + parent: 222 + type: Transform + - uid: 142 + components: + - pos: -6.5,-6.5 + parent: 222 + type: Transform + - uid: 143 + components: + - pos: -6.5,-5.5 + parent: 222 + type: Transform + - uid: 144 + components: + - pos: -5.5,-4.5 + parent: 222 + type: Transform + - uid: 145 + components: + - pos: -4.5,-4.5 + parent: 222 + type: Transform + - uid: 146 + components: + - pos: -3.5,-6.5 + parent: 222 + type: Transform +- proto: Chair + entities: + - uid: 182 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 222 + type: Transform + - uid: 183 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 222 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 188 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 222 + type: Transform +- proto: ClothingBackpackDuffelSalvage + entities: + - uid: 193 + components: + - pos: -4.5344324,-7.329025 + parent: 222 + type: Transform +- proto: ClothingBackpackDuffelSyndicateAmmo + entities: + - uid: 172 + components: + - pos: -1.6170431,-2.424334 + parent: 222 + type: Transform +- proto: ClothingBeltUtility + entities: + - uid: 196 + components: + - pos: -6.516491,-5.5462 + parent: 222 + type: Transform +- proto: ClothingMaskGasSyndicate + entities: + - uid: 218 + components: + - pos: -1.5,-3.5 + parent: 222 + type: Transform + - uid: 219 + components: + - pos: -1.5,-3.5 + parent: 222 + type: Transform +- proto: ClothingShoesBootsCombatFilled + entities: + - uid: 220 + components: + - pos: -1.5,-3.5 + parent: 222 + type: Transform + - uid: 221 + components: + - pos: -1.5,-3.5 + parent: 222 + type: Transform +- proto: ClothingUniformJumpskirtOperative + entities: + - uid: 217 + components: + - pos: -1.5,-3.5 + parent: 222 + type: Transform +- proto: ClothingUniformJumpsuitOperative + entities: + - uid: 216 + components: + - pos: -1.5,-3.5 + parent: 222 + type: Transform +- proto: ComputerBroken + entities: + - uid: 48 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 222 + type: Transform +- proto: CrateSalvageEquipment + entities: + - uid: 16 + components: + - pos: -4.5,-5.5 + parent: 222 + type: Transform +- proto: Grille + entities: + - uid: 59 + components: + - pos: -6.5,4.5 + parent: 222 + type: Transform + - uid: 68 + components: + - pos: -6.5,2.5 + parent: 222 + type: Transform + - uid: 81 + components: + - pos: -6.5,0.5 + parent: 222 + type: Transform + - uid: 187 + components: + - pos: 2.5,-6.5 + parent: 222 + type: Transform + - uid: 189 + components: + - pos: -6.5,-4.5 + parent: 222 + type: Transform +- proto: GrilleBroken + entities: + - uid: 190 + components: + - pos: -6.5,-3.5 + parent: 222 + type: Transform + - uid: 191 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 222 + type: Transform + - uid: 192 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 222 + type: Transform +- proto: HighSecArmoryLocked + entities: + - uid: 92 + components: + - pos: -0.5,-1.5 + parent: 222 + type: Transform +- proto: JetpackBlackFilled + entities: + - uid: 164 + components: + - pos: 0.5798898,-3.4711018 + parent: 222 + type: Transform +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 173 + components: + - pos: -1.5,4.5 + parent: 222 + type: Transform +- proto: LockerSyndicatePersonal + entities: + - uid: 149 + components: + - pos: -1.5,-3.5 + parent: 222 + type: Transform + - locked: False + type: Lock + - open: True + removedMasks: 20 + type: EntityStorage +- proto: MachineFrameDestroyed + entities: + - uid: 197 + components: + - pos: -3.5,-6.5 + parent: 222 + type: Transform +- proto: PartRodMetal1 + entities: + - uid: 198 + components: + - pos: -5.440689,-7.3624687 + parent: 222 + type: Transform + - uid: 199 + components: + - pos: -5.362564,-7.5187187 + parent: 222 + type: Transform + - uid: 200 + components: + - pos: -4.534439,-4.3155937 + parent: 222 + type: Transform +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 206 + components: + - pos: 4.5,-5.5 + parent: 222 + type: Transform +- proto: PosterContrabandFreeSyndicateEncryptionKey + entities: + - uid: 167 + components: + - pos: -3.5,-3.5 + parent: 222 + type: Transform +- proto: PosterContrabandSyndicatePistol + entities: + - uid: 169 + components: + - pos: -0.5,2.5 + parent: 222 + type: Transform +- proto: PosterContrabandSyndicateRecruitment + entities: + - uid: 168 + components: + - pos: 2.5,-1.5 + parent: 222 + type: Transform +- proto: PottedPlantBioluminscent + entities: + - uid: 181 + components: + - pos: -5.5,1.5 + parent: 222 + type: Transform +- proto: Poweredlight + entities: + - uid: 184 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 222 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLight + entities: + - uid: 195 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 222 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: Rack + entities: + - uid: 148 + components: + - pos: -1.5,-4.5 + parent: 222 + type: Transform + - uid: 150 + components: + - pos: -1.5,-2.5 + parent: 222 + type: Transform + - uid: 151 + components: + - pos: 0.5,-2.5 + parent: 222 + type: Transform + - uid: 152 + components: + - pos: 0.5,-3.5 + parent: 222 + type: Transform + - uid: 153 + components: + - pos: 0.5,-4.5 + parent: 222 + type: Transform +- proto: RandomCargoCorpseSpawner + entities: + - uid: 194 + components: + - pos: -5.5,-6.5 + parent: 222 + type: Transform +- proto: ReinforcedGirder + entities: + - uid: 185 + components: + - pos: -6.5,-2.5 + parent: 222 + type: Transform + - uid: 186 + components: + - pos: 4.5,-6.5 + parent: 222 + type: Transform +- proto: ReinforcedPlasmaWindow + entities: + - uid: 3 + components: + - pos: -6.5,2.5 + parent: 222 + type: Transform + - uid: 5 + components: + - pos: -6.5,0.5 + parent: 222 + type: Transform + - uid: 91 + components: + - pos: -6.5,4.5 + parent: 222 + type: Transform +- proto: SalvageCanisterSpawner + entities: + - uid: 209 + components: + - pos: 4.5,0.5 + parent: 222 + type: Transform + - uid: 210 + components: + - pos: 4.5,-0.5 + parent: 222 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 180 + components: + - pos: 0.5,4.5 + parent: 222 + type: Transform + - uid: 211 + components: + - pos: -5.5,4.5 + parent: 222 + type: Transform +- proto: SalvageMobSpawner75 + entities: + - uid: 170 + components: + - pos: -4.5,0.5 + parent: 222 + type: Transform + - uid: 171 + components: + - pos: -4.5,1.5 + parent: 222 + type: Transform + - uid: 176 + components: + - pos: -4.5,2.5 + parent: 222 + type: Transform + - uid: 177 + components: + - pos: 3.5,-3.5 + parent: 222 + type: Transform + - uid: 178 + components: + - pos: 3.5,-2.5 + parent: 222 + type: Transform + - uid: 179 + components: + - pos: 3.5,-1.5 + parent: 222 + type: Transform + - uid: 212 + components: + - pos: -4.5,3.5 + parent: 222 + type: Transform + - uid: 213 + components: + - pos: 3.5,-4.5 + parent: 222 + type: Transform +- proto: SalvagePartsT2Spawner + entities: + - uid: 58 + components: + - pos: -1.5,-4.5 + parent: 222 + type: Transform + - uid: 202 + components: + - pos: 0.5,-2.5 + parent: 222 + type: Transform +- proto: SalvagePartsT4Spawner + entities: + - uid: 175 + components: + - pos: 0.5,-4.5 + parent: 222 + type: Transform +- proto: SheetSteel + entities: + - uid: 201 + components: + - pos: -5.565689,-1.4874685 + parent: 222 + type: Transform + - uid: 214 + components: + - pos: 2.4696617,3.5103054 + parent: 222 + type: Transform +- proto: SignArmory + entities: + - uid: 30 + components: + - pos: -1.5,-1.5 + parent: 222 + type: Transform +- proto: SignElectricalMed + entities: + - uid: 174 + components: + - pos: -2.5,4.5 + parent: 222 + type: Transform +- proto: SmallLight + entities: + - uid: 147 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 222 + type: Transform +- proto: SubstationBasic + entities: + - uid: 53 + components: + - pos: -0.5,4.5 + parent: 222 + type: Transform +- proto: trayScanner + entities: + - uid: 215 + components: + - pos: -0.48346323,3.4946802 + parent: 222 + type: Transform +- proto: VendingMachineSnack + entities: + - uid: 208 + components: + - flags: SessionSpecific + type: MetaData + - pos: 2.5,-0.5 + parent: 222 + type: Transform +- proto: WallPlastitanium + entities: + - uid: 1 + components: + - pos: -2.5,5.5 + parent: 222 + type: Transform + - uid: 2 + components: + - pos: 1.5,5.5 + parent: 222 + type: Transform + - uid: 4 + components: + - pos: -6.5,3.5 + parent: 222 + type: Transform + - uid: 6 + components: + - pos: 5.5,-0.5 + parent: 222 + type: Transform + - uid: 7 + components: + - pos: 5.5,-5.5 + parent: 222 + type: Transform + - uid: 8 + components: + - pos: 5.5,-4.5 + parent: 222 + type: Transform + - uid: 9 + components: + - pos: 5.5,-6.5 + parent: 222 + type: Transform + - uid: 10 + components: + - pos: 0.5,5.5 + parent: 222 + type: Transform + - uid: 11 + components: + - pos: 4.5,1.5 + parent: 222 + type: Transform + - uid: 12 + components: + - pos: 3.5,1.5 + parent: 222 + type: Transform + - uid: 13 + components: + - pos: 5.5,0.5 + parent: 222 + type: Transform + - uid: 14 + components: + - pos: 5.5,1.5 + parent: 222 + type: Transform + - uid: 15 + components: + - pos: 1.5,4.5 + parent: 222 + type: Transform + - uid: 17 + components: + - pos: -1.5,-5.5 + parent: 222 + type: Transform + - uid: 18 + components: + - pos: -0.5,-6.5 + parent: 222 + type: Transform + - uid: 19 + components: + - pos: -2.5,-6.5 + parent: 222 + type: Transform + - uid: 20 + components: + - pos: -2.5,-5.5 + parent: 222 + type: Transform + - uid: 21 + components: + - pos: 2.5,-5.5 + parent: 222 + type: Transform + - uid: 22 + components: + - pos: -4.5,5.5 + parent: 222 + type: Transform + - uid: 23 + components: + - pos: 5.5,-2.5 + parent: 222 + type: Transform + - uid: 24 + components: + - pos: -1.5,5.5 + parent: 222 + type: Transform + - uid: 25 + components: + - pos: 1.5,-2.5 + parent: 222 + type: Transform + - uid: 26 + components: + - pos: 1.5,-6.5 + parent: 222 + type: Transform + - uid: 27 + components: + - pos: 1.5,-4.5 + parent: 222 + type: Transform + - uid: 28 + components: + - pos: 2.5,-2.5 + parent: 222 + type: Transform + - uid: 29 + components: + - pos: -2.5,-4.5 + parent: 222 + type: Transform + - uid: 31 + components: + - pos: 2.5,-4.5 + parent: 222 + type: Transform + - uid: 32 + components: + - pos: 1.5,-5.5 + parent: 222 + type: Transform + - uid: 33 + components: + - pos: 2.5,-3.5 + parent: 222 + type: Transform + - uid: 34 + components: + - pos: -2.5,-3.5 + parent: 222 + type: Transform + - uid: 35 + components: + - pos: -3.5,-4.5 + parent: 222 + type: Transform + - uid: 36 + components: + - pos: -0.5,5.5 + parent: 222 + type: Transform + - uid: 37 + components: + - pos: -5.5,5.5 + parent: 222 + type: Transform + - uid: 38 + components: + - pos: 5.5,-3.5 + parent: 222 + type: Transform + - uid: 39 + components: + - pos: -2.5,4.5 + parent: 222 + type: Transform + - uid: 40 + components: + - pos: -3.5,5.5 + parent: 222 + type: Transform + - uid: 41 + components: + - pos: -6.5,1.5 + parent: 222 + type: Transform + - uid: 42 + components: + - pos: 1.5,-3.5 + parent: 222 + type: Transform + - uid: 43 + components: + - pos: -2.5,0.5 + parent: 222 + type: Transform + - uid: 44 + components: + - pos: -6.5,-1.5 + parent: 222 + type: Transform + - uid: 45 + components: + - pos: -6.5,-0.5 + parent: 222 + type: Transform + - uid: 46 + components: + - pos: -0.5,-5.5 + parent: 222 + type: Transform + - uid: 47 + components: + - pos: 0.5,-5.5 + parent: 222 + type: Transform + - uid: 49 + components: + - pos: 2.5,2.5 + parent: 222 + type: Transform + - uid: 50 + components: + - pos: -1.5,2.5 + parent: 222 + type: Transform + - uid: 52 + components: + - pos: -2.5,2.5 + parent: 222 + type: Transform + - uid: 54 + components: + - pos: 0.5,2.5 + parent: 222 + type: Transform + - uid: 55 + components: + - pos: 1.5,2.5 + parent: 222 + type: Transform + - uid: 56 + components: + - pos: -0.5,2.5 + parent: 222 + type: Transform + - uid: 66 + components: + - pos: -3.5,-3.5 + parent: 222 + type: Transform + - uid: 67 + components: + - pos: -2.5,-2.5 + parent: 222 + type: Transform + - uid: 69 + components: + - pos: -1.5,-1.5 + parent: 222 + type: Transform + - uid: 70 + components: + - pos: -2.5,-1.5 + parent: 222 + type: Transform + - uid: 71 + components: + - pos: 1.5,-0.5 + parent: 222 + type: Transform + - uid: 72 + components: + - pos: -3.5,-2.5 + parent: 222 + type: Transform + - uid: 73 + components: + - pos: 0.5,-6.5 + parent: 222 + type: Transform + - uid: 74 + components: + - pos: -1.5,-6.5 + parent: 222 + type: Transform + - uid: 75 + components: + - pos: 1.5,-1.5 + parent: 222 + type: Transform + - uid: 76 + components: + - pos: 2.5,-1.5 + parent: 222 + type: Transform + - uid: 77 + components: + - pos: -2.5,-0.5 + parent: 222 + type: Transform + - uid: 78 + components: + - pos: -3.5,-1.5 + parent: 222 + type: Transform + - uid: 79 + components: + - pos: -3.5,-5.5 + parent: 222 + type: Transform + - uid: 80 + components: + - pos: 0.5,-1.5 + parent: 222 + type: Transform + - uid: 82 + components: + - pos: 1.5,0.5 + parent: 222 + type: Transform + - uid: 84 + components: + - pos: 3.5,2.5 + parent: 222 + type: Transform + - uid: 85 + components: + - pos: 5.5,-1.5 + parent: 222 + type: Transform + - uid: 86 + components: + - pos: -6.5,5.5 + parent: 222 + type: Transform + - uid: 90 + components: + - pos: 1.5,3.5 + parent: 222 + type: Transform +- proto: WeaponTurretSyndicate + entities: + - uid: 51 + components: + - flags: SessionSpecific + type: MetaData + - pos: -0.5,0.5 + parent: 222 + type: Transform +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 165 + components: + - pos: -7.5,-0.5 + parent: 222 + type: Transform + - uid: 166 + components: + - pos: 3.5,4.5 + parent: 222 + type: Transform +- proto: WindoorSecureArmoryLocked + entities: + - uid: 158 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 222 + type: Transform + - uid: 159 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 222 + type: Transform + - uid: 160 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 222 + type: Transform + - uid: 161 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 222 + type: Transform + - uid: 162 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 222 + type: Transform + - uid: 163 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 222 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 154 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 222 + type: Transform + - uid: 155 + components: + - pos: -1.5,-2.5 + parent: 222 + type: Transform + - uid: 156 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 222 + type: Transform + - uid: 157 + components: + - pos: 0.5,-2.5 + parent: 222 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-medium-01.yml b/Resources/Maps/Salvage/DeltaV/DV-medium-01.yml new file mode 100644 index 0000000000..567b1f29ac --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-medium-01.yml @@ -0,0 +1,1555 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 27: FloorDark + 72: FloorReinforced + 84: FloorSteel + 89: FloorSteelDirty + 96: FloorTechMaint + 109: FloorWhitePlastic + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 85 + components: + - type: MetaData + - pos: 0.5,0.5 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAACcQAAAAAAGwAAAAACGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABYAAAAAAAVAAAAAADVAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAVAAAAAAAVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAACcQAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAABGwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: VAAAAAACVAAAAAADcQAAAAAAVAAAAAACcQAAAAAAbQAAAAAAbQAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - version: 2 + data: + tiles: + -2,-2: + 0: 39391 + -2,-1: + 0: 64921 + -1,-2: + 0: 65535 + -1,-1: + 0: 65535 + 0,-2: + 0: 65311 + 1: 224 + 0,-1: + 0: 65535 + 1,-2: + 0: 30551 + 1,-1: + 0: 65535 + -2,0: + 0: 13309 + 2: 52224 + -2,1: + 0: 4083 + 2: 12 + -1,0: + 0: 3839 + 2: 61696 + -1,1: + 0: 4080 + 2: 15 + 0,0: + 0: 36863 + 2: 28672 + 0,1: + 0: 4088 + 2: 7 + 1,1: + 0: 1919 + 1,0: + 0: 56831 + 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.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 5000 + moles: + - 6666.982 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: OccluderTree + - type: Shuttle + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 0: -6,2 + 1: -5,2 + 2: -4,2 + 3: -4,4 + 4: -5,4 + 5: -6,4 + - node: + color: '#D381C996' + id: BrickTileWhiteLineN + decals: + 43: 6,-2 + 44: 5,-2 + - node: + color: '#D381C996' + id: BrickTileWhiteLineS + decals: + 41: 6,0 + 42: 5,0 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 40: -2,0 + 45: 7,-1 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 49: 6,-1 + 50: 5,0 + 51: 3,-1 + 52: 3,0 + 53: 1,1 + 54: 2,-1 + 55: 2,-2 + 56: 1,-2 + 57: 2,-5 + 58: 1,-5 + 59: 3,-5 + 60: 2,-4 + 61: 2,-6 + 62: 1,-7 + 63: 2,-7 + 64: 3,-7 + 65: -3,-5 + 66: -3,-4 + 67: -4,-3 + 68: 1,-2 + 69: 0,-2 + 70: 2,0 + 71: -3,1 + 72: -2,1 + 73: -3,0 + 74: 2,3 + 75: 0,4 + 76: -3,3 + 77: -3,4 + 78: -4,3 + 79: -5,3 + 80: -4,3 + 81: -2,4 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 23: 1,-3 + 24: 2,-3 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 19: 1,-1 + 20: -1,1 + 21: 1,0 + 22: 3,-2 + 30: -3,3 + 31: -3,4 + 32: -2,3 + 33: -1,3 + 34: 1,4 + 35: 0,4 + 36: -3,4 + 37: -3,-1 + 38: -3,-3 + 39: -2,-4 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 25: 1,-1 + 26: 0,1 + 27: -3,0 + 28: -2,0 + 29: -6,3 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale + decals: + 12: -2,1 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + decals: + 15: 3,-3 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + decals: + 13: 1,-3 + 14: 0,-3 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale90 + decals: + 10: 1,1 + 11: 0,1 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale90 + decals: + 8: -2,-4 + 9: -2,-3 + - node: + color: '#FFFFFFFF' + id: WarnBox + decals: + 48: 4,-1 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 18: 1,-3 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 17: 3,-3 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 46: 6,-1 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 16: 2,-3 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 6: -3,3 + 7: -3,4 + 47: 5,-1 + type: DecalGrid + - type: RadiationGridResistance + - type: GasTileOverlay + - type: SpreaderGrid + - type: GridPathfinding +- proto: AirAlarmAssembly + entities: + - uid: 198 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 85 + type: Transform +- proto: AirlockEngineeringLocked + entities: + - uid: 41 + components: + - pos: -1.5,-1.5 + parent: 85 + type: Transform +- proto: AirlockScienceGlass + entities: + - uid: 101 + components: + - pos: 2.5,-3.5 + parent: 85 + type: Transform + - uid: 103 + components: + - pos: 2.5,-5.5 + parent: 85 + type: Transform + - uid: 140 + components: + - pos: 4.5,-0.5 + parent: 85 + type: Transform + - uid: 141 + components: + - pos: 7.5,-0.5 + parent: 85 + type: Transform +- proto: AirlockScienceLocked + entities: + - uid: 98 + components: + - pos: -0.5,2.5 + parent: 85 + type: Transform +- proto: APCBasic + entities: + - uid: 114 + components: + - pos: 1.5,2.5 + parent: 85 + type: Transform + - startingCharge: 12000 + type: Battery +- proto: AtmosDeviceFanTiny + entities: + - uid: 56 + components: + - pos: 7.5,-0.5 + parent: 85 + type: Transform + - uid: 57 + components: + - pos: 4.5,-0.5 + parent: 85 + type: Transform +- proto: AtmosFixInstantPlasmaFireMarker + entities: + - uid: 38 + components: + - pos: 2.5,3.5 + parent: 85 + type: Transform + - uid: 178 + components: + - pos: -5.5,2.5 + parent: 85 + type: Transform + - uid: 179 + components: + - pos: -4.5,2.5 + parent: 85 + type: Transform + - uid: 180 + components: + - pos: -3.5,2.5 + parent: 85 + type: Transform + - uid: 181 + components: + - pos: -5.5,3.5 + parent: 85 + type: Transform + - uid: 182 + components: + - pos: -4.5,3.5 + parent: 85 + type: Transform + - uid: 183 + components: + - pos: -3.5,3.5 + parent: 85 + type: Transform + - uid: 184 + components: + - pos: -2.5,3.5 + parent: 85 + type: Transform + - uid: 185 + components: + - pos: -1.5,3.5 + parent: 85 + type: Transform + - uid: 186 + components: + - pos: -0.5,3.5 + parent: 85 + type: Transform + - uid: 187 + components: + - pos: 0.5,3.5 + parent: 85 + type: Transform + - uid: 188 + components: + - pos: 1.5,3.5 + parent: 85 + type: Transform + - uid: 189 + components: + - pos: 2.5,4.5 + parent: 85 + type: Transform + - uid: 190 + components: + - pos: 1.5,4.5 + parent: 85 + type: Transform + - uid: 191 + components: + - pos: 0.5,4.5 + parent: 85 + type: Transform + - uid: 192 + components: + - pos: -0.5,4.5 + parent: 85 + type: Transform + - uid: 193 + components: + - pos: -1.5,4.5 + parent: 85 + type: Transform + - uid: 194 + components: + - pos: -2.5,4.5 + parent: 85 + type: Transform + - uid: 195 + components: + - pos: -3.5,4.5 + parent: 85 + type: Transform + - uid: 196 + components: + - pos: -4.5,4.5 + parent: 85 + type: Transform + - uid: 197 + components: + - pos: -5.5,4.5 + parent: 85 + type: Transform +- proto: AtmosFixPlasmaMarker + entities: + - uid: 165 + components: + - pos: 1.5,-6.5 + parent: 85 + type: Transform + - uid: 166 + components: + - pos: 2.5,-6.5 + parent: 85 + type: Transform + - uid: 167 + components: + - pos: 3.5,-6.5 + parent: 85 + type: Transform +- proto: BannerScience + entities: + - uid: 175 + components: + - pos: 0.5,-2.5 + parent: 85 + type: Transform +- proto: BlastDoor + entities: + - uid: 66 + components: + - pos: 2.5,-7.5 + parent: 85 + type: Transform +- proto: CableApcExtension + entities: + - uid: 115 + components: + - pos: 1.5,2.5 + parent: 85 + type: Transform + - uid: 116 + components: + - pos: 1.5,1.5 + parent: 85 + type: Transform + - uid: 117 + components: + - pos: 1.5,0.5 + parent: 85 + type: Transform + - uid: 118 + components: + - pos: 1.5,-0.5 + parent: 85 + type: Transform + - uid: 119 + components: + - pos: 0.5,-0.5 + parent: 85 + type: Transform + - uid: 120 + components: + - pos: -0.5,-0.5 + parent: 85 + type: Transform + - uid: 121 + components: + - pos: -1.5,-0.5 + parent: 85 + type: Transform + - uid: 122 + components: + - pos: -2.5,-0.5 + parent: 85 + type: Transform + - uid: 123 + components: + - pos: -1.5,-0.5 + parent: 85 + type: Transform + - uid: 124 + components: + - pos: -1.5,-1.5 + parent: 85 + type: Transform + - uid: 125 + components: + - pos: -1.5,-2.5 + parent: 85 + type: Transform + - uid: 126 + components: + - pos: -1.5,-3.5 + parent: 85 + type: Transform + - uid: 127 + components: + - pos: -1.5,-4.5 + parent: 85 + type: Transform + - uid: 128 + components: + - pos: -2.5,-4.5 + parent: 85 + type: Transform + - uid: 129 + components: + - pos: -0.5,0.5 + parent: 85 + type: Transform + - uid: 130 + components: + - pos: -0.5,1.5 + parent: 85 + type: Transform + - uid: 131 + components: + - pos: 1.5,3.5 + parent: 85 + type: Transform + - uid: 132 + components: + - pos: 1.5,4.5 + parent: 85 + type: Transform + - uid: 133 + components: + - pos: 0.5,4.5 + parent: 85 + type: Transform + - uid: 134 + components: + - pos: -0.5,4.5 + parent: 85 + type: Transform + - uid: 135 + components: + - pos: -1.5,4.5 + parent: 85 + type: Transform + - uid: 142 + components: + - pos: 1.5,-1.5 + parent: 85 + type: Transform + - uid: 143 + components: + - pos: 1.5,-2.5 + parent: 85 + type: Transform + - uid: 144 + components: + - pos: 2.5,-2.5 + parent: 85 + type: Transform + - uid: 145 + components: + - pos: 3.5,-2.5 + parent: 85 + type: Transform + - uid: 146 + components: + - pos: 3.5,-1.5 + parent: 85 + type: Transform + - uid: 168 + components: + - pos: 2.5,-3.5 + parent: 85 + type: Transform + - uid: 169 + components: + - pos: 2.5,-4.5 + parent: 85 + type: Transform + - uid: 170 + components: + - pos: 2.5,-5.5 + parent: 85 + type: Transform + - uid: 171 + components: + - pos: 2.5,-6.5 + parent: 85 + type: Transform +- proto: CableMV + entities: + - uid: 106 + components: + - pos: -2.5,-3.5 + parent: 85 + type: Transform + - uid: 107 + components: + - pos: -2.5,-4.5 + parent: 85 + type: Transform + - uid: 108 + components: + - pos: -2.5,-5.5 + parent: 85 + type: Transform + - uid: 110 + components: + - pos: 1.5,-0.5 + parent: 85 + type: Transform + - uid: 111 + components: + - pos: 1.5,0.5 + parent: 85 + type: Transform + - uid: 112 + components: + - pos: 1.5,1.5 + parent: 85 + type: Transform + - uid: 113 + components: + - pos: 1.5,2.5 + parent: 85 + type: Transform + - uid: 150 + components: + - pos: -2.5,-2.5 + parent: 85 + type: Transform + - uid: 151 + components: + - pos: -1.5,-2.5 + parent: 85 + type: Transform + - uid: 152 + components: + - pos: -1.5,-1.5 + parent: 85 + type: Transform + - uid: 153 + components: + - pos: -1.5,-0.5 + parent: 85 + type: Transform + - uid: 154 + components: + - pos: -0.5,-0.5 + parent: 85 + type: Transform + - uid: 155 + components: + - pos: 0.5,-0.5 + parent: 85 + type: Transform +- proto: Catwalk + entities: + - uid: 156 + components: + - pos: -1.5,-0.5 + parent: 85 + type: Transform + - uid: 157 + components: + - pos: -0.5,-0.5 + parent: 85 + type: Transform + - uid: 158 + components: + - pos: 0.5,-0.5 + parent: 85 + type: Transform +- proto: ChairOfficeLight + entities: + - uid: 54 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 85 + type: Transform +- proto: ClosetRadiationSuitFilled + entities: + - uid: 39 + components: + - pos: 6.5,0.5 + parent: 85 + type: Transform +- proto: ClothingEyesGlassesMeson + entities: + - uid: 86 + components: + - pos: -0.47997117,-4.461707 + parent: 85 + type: Transform +- proto: ClothingNeckTieSci + entities: + - uid: 209 + components: + - pos: 1.8960507,-1.1323422 + parent: 85 + type: Transform +- proto: CrateScienceSecure + entities: + - uid: 176 + components: + - pos: 2.5,4.5 + parent: 85 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 177 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: FloorDrain + entities: + - uid: 48 + components: + - pos: 5.5,-1.5 + parent: 85 + type: Transform + - fixtures: {} + type: Fixtures +- proto: GasPassiveVent + entities: + - uid: 162 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 85 + type: Transform + - uid: 163 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-6.5 + parent: 85 + type: Transform +- proto: GasPipeStraight + entities: + - uid: 63 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 85 + type: Transform + - uid: 159 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 85 + type: Transform + - uid: 160 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 85 + type: Transform + - uid: 161 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 85 + type: Transform +- proto: GasPort + entities: + - uid: 88 + components: + - pos: 1.5,-2.5 + parent: 85 + type: Transform + - uid: 104 + components: + - pos: 3.5,-2.5 + parent: 85 + type: Transform +- proto: GasPressurePump + entities: + - uid: 62 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 85 + type: Transform + - uid: 105 + components: + - pos: 1.5,-4.5 + parent: 85 + type: Transform +- proto: Grille + entities: + - uid: 164 + components: + - pos: 4.5,-6.5 + parent: 85 + type: Transform + - uid: 220 + components: + - pos: -3.5,-0.5 + parent: 85 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 55 + components: + - pos: 6.5,-1.5 + parent: 85 + type: Transform +- proto: IngotGold + entities: + - uid: 177 + components: + - flags: InContainer + type: MetaData + - parent: 176 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: NitrogenCanister + entities: + - uid: 206 + components: + - pos: -0.5,-5.5 + parent: 85 + type: Transform +- proto: PersonalAI + entities: + - uid: 205 + components: + - flags: SessionSpecific + type: MetaData + - rot: -1.5707963267948966 rad + pos: -5.4750137,0.46483886 + parent: 85 + type: Transform +- proto: PosterContrabandHighEffectEngineering + entities: + - uid: 11 + components: + - pos: -0.5,-3.5 + parent: 85 + type: Transform +- proto: PottedPlant27 + entities: + - uid: 207 + components: + - pos: 3.5,1.5 + parent: 85 + type: Transform +- proto: Poweredlight + entities: + - uid: 136 + components: + - pos: -0.5,4.5 + parent: 85 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 138 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 85 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 139 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 85 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: Rack + entities: + - uid: 78 + components: + - pos: -3.5,-5.5 + parent: 85 + type: Transform + - uid: 102 + components: + - pos: -0.5,-4.5 + parent: 85 + type: Transform +- proto: RandomArtifactSpawner20 + entities: + - uid: 20 + components: + - pos: 2.5,-6.5 + parent: 85 + type: Transform +- proto: RandomScienceCorpseSpawner + entities: + - uid: 208 + components: + - pos: 1.5,-1.5 + parent: 85 + type: Transform +- proto: ReinforcedGirder + entities: + - uid: 80 + components: + - pos: -2.5,1.5 + parent: 85 + type: Transform +- proto: ReinforcedPlasmaWindow + entities: + - uid: 29 + components: + - pos: 4.5,-6.5 + parent: 85 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 76 + components: + - pos: -3.5,-0.5 + parent: 85 + type: Transform +- proto: ResearchDisk + entities: + - uid: 87 + components: + - pos: 0.4636767,0.4553157 + parent: 85 + type: Transform +- proto: ResearchDisk5000 + entities: + - uid: 28 + components: + - pos: 2.5105517,3.4693582 + parent: 85 + type: Transform +- proto: SalvageCanisterSpawner + entities: + - uid: 69 + components: + - pos: -5.5,2.5 + parent: 85 + type: Transform + - uid: 70 + components: + - pos: -3.5,4.5 + parent: 85 + type: Transform + - uid: 72 + components: + - pos: -3.5,2.5 + parent: 85 + type: Transform + - uid: 96 + components: + - pos: -4.5,4.5 + parent: 85 + type: Transform + - uid: 97 + components: + - pos: -5.5,4.5 + parent: 85 + type: Transform + - uid: 99 + components: + - pos: -4.5,2.5 + parent: 85 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 77 + components: + - pos: -3.5,-2.5 + parent: 85 + type: Transform + - uid: 93 + components: + - pos: -3.5,-3.5 + parent: 85 + type: Transform + - uid: 172 + components: + - pos: 0.5,3.5 + parent: 85 + type: Transform + - uid: 173 + components: + - pos: 1.5,3.5 + parent: 85 + type: Transform +- proto: SheetPlasteel + entities: + - uid: 202 + components: + - pos: -2.4845572,4.4791417 + parent: 85 + type: Transform +- proto: SheetPlastic + entities: + - uid: 68 + components: + - pos: -0.45594323,0.51739144 + parent: 85 + type: Transform +- proto: SignRND + entities: + - uid: 16 + components: + - pos: 4.5,0.5 + parent: 85 + type: Transform + - uid: 137 + components: + - pos: 7.5,0.5 + parent: 85 + type: Transform +- proto: SignToxins2 + entities: + - uid: 65 + components: + - pos: 0.5,2.5 + parent: 85 + type: Transform +- proto: SinkWide + entities: + - uid: 40 + components: + - pos: 5.5,0.5 + parent: 85 + type: Transform +- proto: SpaceTickSpawner + entities: + - uid: 210 + components: + - pos: 3.5,-1.5 + parent: 85 + type: Transform +- proto: SpawnMobSpiderSalvage + entities: + - uid: 53 + components: + - pos: -2.5,-3.5 + parent: 85 + type: Transform + - uid: 211 + components: + - pos: 2.5,1.5 + parent: 85 + type: Transform + - uid: 212 + components: + - pos: 3.5,-2.5 + parent: 85 + type: Transform + - uid: 213 + components: + - pos: -1.5,1.5 + parent: 85 + type: Transform +- proto: SpawnVendingMachineRestockFoodDrink + entities: + - uid: 74 + components: + - pos: -3.5,-5.5 + parent: 85 + type: Transform +- proto: SpiderWeb + entities: + - uid: 214 + components: + - pos: 0.5,-1.5 + parent: 85 + type: Transform + - uid: 215 + components: + - pos: 0.5,-0.5 + parent: 85 + type: Transform + - uid: 216 + components: + - pos: -2.5,0.5 + parent: 85 + type: Transform + - uid: 217 + components: + - pos: 3.5,0.5 + parent: 85 + type: Transform + - uid: 218 + components: + - pos: 6.5,-1.5 + parent: 85 + type: Transform + - uid: 219 + components: + - pos: 3.5,-4.5 + parent: 85 + type: Transform +- proto: SubstationBasic + entities: + - uid: 109 + components: + - pos: -2.5,-5.5 + parent: 85 + type: Transform +- proto: Table + entities: + - uid: 83 + components: + - pos: -0.5,0.5 + parent: 85 + type: Transform + - uid: 84 + components: + - pos: 0.5,0.5 + parent: 85 + type: Transform +- proto: WallReinforced + entities: + - uid: 3 + components: + - pos: 0.5,-6.5 + parent: 85 + type: Transform + - uid: 17 + components: + - pos: -6.5,1.5 + parent: 85 + type: Transform + - uid: 30 + components: + - pos: 4.5,-7.5 + parent: 85 + type: Transform + - uid: 31 + components: + - pos: 3.5,-7.5 + parent: 85 + type: Transform + - uid: 32 + components: + - pos: 1.5,-7.5 + parent: 85 + type: Transform + - uid: 33 + components: + - pos: 0.5,-7.5 + parent: 85 + type: Transform + - uid: 43 + components: + - pos: 3.5,5.5 + parent: 85 + type: Transform + - uid: 44 + components: + - pos: -6.5,2.5 + parent: 85 + type: Transform + - uid: 45 + components: + - pos: 3.5,4.5 + parent: 85 + type: Transform + - uid: 46 + components: + - pos: 3.5,3.5 + parent: 85 + type: Transform + - uid: 47 + components: + - pos: -5.5,1.5 + parent: 85 + type: Transform + - uid: 49 + components: + - pos: -4.5,5.5 + parent: 85 + type: Transform + - uid: 50 + components: + - pos: -5.5,5.5 + parent: 85 + type: Transform + - uid: 51 + components: + - pos: -6.5,4.5 + parent: 85 + type: Transform + - uid: 52 + components: + - pos: -6.5,5.5 + parent: 85 + type: Transform + - uid: 58 + components: + - pos: 0.5,5.5 + parent: 85 + type: Transform + - uid: 59 + components: + - pos: -0.5,5.5 + parent: 85 + type: Transform + - uid: 60 + components: + - pos: 2.5,5.5 + parent: 85 + type: Transform + - uid: 61 + components: + - pos: 1.5,5.5 + parent: 85 + type: Transform + - uid: 64 + components: + - pos: 3.5,-5.5 + parent: 85 + type: Transform + - uid: 71 + components: + - pos: 4.5,-5.5 + parent: 85 + type: Transform + - uid: 73 + components: + - pos: 4.5,-4.5 + parent: 85 + type: Transform + - uid: 75 + components: + - pos: 3.5,2.5 + parent: 85 + type: Transform + - uid: 79 + components: + - pos: -3.5,1.5 + parent: 85 + type: Transform + - uid: 89 + components: + - pos: 0.5,-3.5 + parent: 85 + type: Transform + - uid: 90 + components: + - pos: 0.5,-4.5 + parent: 85 + type: Transform + - uid: 91 + components: + - pos: 3.5,-3.5 + parent: 85 + type: Transform + - uid: 92 + components: + - pos: 0.5,-5.5 + parent: 85 + type: Transform + - uid: 94 + components: + - pos: 1.5,-3.5 + parent: 85 + type: Transform + - uid: 95 + components: + - pos: 4.5,-3.5 + parent: 85 + type: Transform + - uid: 100 + components: + - pos: 1.5,-5.5 + parent: 85 + type: Transform + - uid: 200 + components: + - pos: -1.5,5.5 + parent: 85 + type: Transform + - uid: 201 + components: + - pos: -2.5,5.5 + parent: 85 + type: Transform + - uid: 203 + components: + - pos: -3.5,5.5 + parent: 85 + type: Transform + - uid: 204 + components: + - pos: -4.5,1.5 + parent: 85 + type: Transform +- proto: WallSolid + entities: + - uid: 1 + components: + - pos: -4.5,-5.5 + parent: 85 + type: Transform + - uid: 2 + components: + - pos: -4.5,-6.5 + parent: 85 + type: Transform + - uid: 4 + components: + - pos: -2.5,-6.5 + parent: 85 + type: Transform + - uid: 6 + components: + - pos: -4.5,-1.5 + parent: 85 + type: Transform + - uid: 9 + components: + - pos: -0.5,-2.5 + parent: 85 + type: Transform + - uid: 10 + components: + - pos: -0.5,-3.5 + parent: 85 + type: Transform + - uid: 12 + components: + - pos: -3.5,-1.5 + parent: 85 + type: Transform + - uid: 13 + components: + - pos: -2.5,-1.5 + parent: 85 + type: Transform + - uid: 14 + components: + - pos: 6.5,-2.5 + parent: 85 + type: Transform + - uid: 18 + components: + - pos: -2.5,2.5 + parent: 85 + type: Transform + - uid: 19 + components: + - pos: -1.5,2.5 + parent: 85 + type: Transform + - uid: 21 + components: + - pos: 0.5,2.5 + parent: 85 + type: Transform + - uid: 22 + components: + - pos: 1.5,2.5 + parent: 85 + type: Transform + - uid: 23 + components: + - pos: 2.5,2.5 + parent: 85 + type: Transform + - uid: 24 + components: + - pos: 4.5,0.5 + parent: 85 + type: Transform + - uid: 25 + components: + - pos: 4.5,2.5 + parent: 85 + type: Transform + - uid: 26 + components: + - pos: 4.5,-2.5 + parent: 85 + type: Transform + - uid: 27 + components: + - pos: 5.5,1.5 + parent: 85 + type: Transform + - uid: 34 + components: + - pos: 4.5,1.5 + parent: 85 + type: Transform + - uid: 35 + components: + - pos: 7.5,1.5 + parent: 85 + type: Transform + - uid: 36 + components: + - pos: 6.5,1.5 + parent: 85 + type: Transform + - uid: 37 + components: + - pos: 4.5,-1.5 + parent: 85 + type: Transform + - uid: 42 + components: + - pos: -6.5,3.5 + parent: 85 + type: Transform + - uid: 81 + components: + - pos: 5.5,-2.5 + parent: 85 + type: Transform + - uid: 82 + components: + - pos: 7.5,0.5 + parent: 85 + type: Transform + - uid: 147 + components: + - pos: -4.5,-4.5 + parent: 85 + type: Transform + - uid: 148 + components: + - pos: -4.5,-3.5 + parent: 85 + type: Transform + - uid: 149 + components: + - pos: -4.5,-2.5 + parent: 85 + type: Transform + - uid: 174 + components: + - pos: 7.5,-1.5 + parent: 85 + type: Transform + - uid: 199 + components: + - pos: 7.5,-2.5 + parent: 85 + type: Transform +- proto: WallSolidRust + entities: + - uid: 5 + components: + - pos: -1.5,-6.5 + parent: 85 + type: Transform + - uid: 7 + components: + - pos: -0.5,-6.5 + parent: 85 + type: Transform + - uid: 8 + components: + - pos: -3.5,-6.5 + parent: 85 + type: Transform + - uid: 15 + components: + - pos: -3.5,0.5 + parent: 85 + type: Transform + - uid: 67 + components: + - pos: -0.5,-1.5 + parent: 85 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-mining-outpost-01.yml b/Resources/Maps/Salvage/DeltaV/DV-mining-outpost-01.yml new file mode 100644 index 0000000000..75a8447aee --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-mining-outpost-01.yml @@ -0,0 +1,1819 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand + 64: FloorMono + 72: FloorReinforced + 96: FloorTechMaint + 98: FloorTechMaint3 + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 284 + components: + - type: MetaData + - pos: 0.46846703,0.5030661 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYAAAAAAAQAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYgAAAAAAYgAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAQAAAAAAAYgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYgAAAAAAYgAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: cAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 11: -3,-3 + 12: -5,-3 + 13: -7,0 + 14: -7,-1 + 15: -7,-4 + 24: -4,4 + 25: 3,-2 + 26: -2,0 + 27: -1,-2 + 28: -2,4 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 16: -3,-5 + 17: -3,-4 + 18: -5,1 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 19: -5,2 + 20: 2,-4 + 21: 1,-4 + 22: 4,-4 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 23: 4,-5 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 2: -5,-4 + 3: -4,-5 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 4: -5,-5 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 0: -4,-6 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 1: -6,-4 + - node: + color: '#FED83DFF' + id: electricdanger + decals: + 10: -3.3612006,-4.104761 + - node: + color: '#FFFFFFFF' + id: end + decals: + 9: 0.7429662,-6.0227594 + - node: + color: '#D58C18FF' + id: radiation + decals: + 5: -1.0877264,-4.421307 + 6: -4.51481,-1.0648093 + - node: + color: '#FFFFFFFF' + id: skull + decals: + 7: -4.633304,-0.61369544 + 8: -0.65413725,-4.4601173 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 61431 + 1: 4104 + 0,-1: + 0: 65528 + 1: 7 + -1,0: + 0: 65262 + 1: 273 + 0,0: + 0: 65535 + -2,-2: + 0: 65535 + -2,-1: + 0: 16383 + 1: 49152 + -1,-2: + 0: 30719 + 1: 34816 + 0,-2: + 0: 35071 + 1: 30464 + 1,-2: + 0: 26487 + 1: 4096 + 1,-1: + 1: 1 + 0: 30582 + -2,0: + 0: 62259 + 1: 3276 + -2,1: + 0: 4087 + 1: 8 + -1,1: + 1: 1 + 0: 4094 + 0,1: + 0: 4095 + 1,0: + 0: 30583 + 1,1: + 0: 1911 + 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.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - type: SpreaderGrid +- proto: AirlockEngineering + entities: + - uid: 101 + components: + - pos: -4.5,-1.5 + parent: 284 + type: Transform + - uid: 102 + components: + - pos: -1.5,-4.5 + parent: 284 + type: Transform +- proto: AirlockExternalGlass + entities: + - uid: 37 + components: + - pos: -2.5,4.5 + parent: 284 + type: Transform + - uid: 53 + components: + - pos: -4.5,3.5 + parent: 284 + type: Transform + - uid: 54 + components: + - pos: 4.5,-2.5 + parent: 284 + type: Transform + - uid: 55 + components: + - pos: 3.5,-4.5 + parent: 284 + type: Transform +- proto: AirTankFilled + entities: + - uid: 105 + components: + - pos: -3.655161,2.513293 + parent: 284 + type: Transform + - uid: 235 + components: + - pos: -3.295786,2.3882062 + parent: 284 + type: Transform +- proto: APCConstructed + entities: + - uid: 116 + components: + - pos: 2.5,-2.5 + parent: 284 + type: Transform +- proto: AtmosFixBlockerMarker + entities: + - uid: 91 + components: + - pos: -3.5,1.5 + parent: 284 + type: Transform + - uid: 93 + components: + - pos: -3.5,-0.5 + parent: 284 + type: Transform + - uid: 172 + components: + - pos: -3.5,2.5 + parent: 284 + type: Transform + - uid: 173 + components: + - pos: -4.5,-0.5 + parent: 284 + type: Transform + - uid: 236 + components: + - pos: -4.5,1.5 + parent: 284 + type: Transform + - uid: 237 + components: + - pos: -4.5,0.5 + parent: 284 + type: Transform + - uid: 245 + components: + - pos: -5.5,-0.5 + parent: 284 + type: Transform + - uid: 246 + components: + - pos: -4.5,2.5 + parent: 284 + type: Transform + - uid: 258 + components: + - pos: -3.5,0.5 + parent: 284 + type: Transform + - uid: 264 + components: + - pos: -0.5,-5.5 + parent: 284 + type: Transform + - uid: 265 + components: + - pos: -0.5,-4.5 + parent: 284 + type: Transform + - uid: 266 + components: + - pos: -0.5,-3.5 + parent: 284 + type: Transform + - uid: 267 + components: + - pos: 0.5,-5.5 + parent: 284 + type: Transform + - uid: 268 + components: + - pos: 0.5,-4.5 + parent: 284 + type: Transform + - uid: 269 + components: + - pos: 0.5,-3.5 + parent: 284 + type: Transform + - uid: 270 + components: + - pos: 1.5,-5.5 + parent: 284 + type: Transform + - uid: 271 + components: + - pos: 1.5,-4.5 + parent: 284 + type: Transform + - uid: 272 + components: + - pos: 1.5,-3.5 + parent: 284 + type: Transform + - uid: 273 + components: + - pos: 2.5,-5.5 + parent: 284 + type: Transform + - uid: 274 + components: + - pos: 2.5,-4.5 + parent: 284 + type: Transform + - uid: 275 + components: + - pos: 2.5,-3.5 + parent: 284 + type: Transform + - uid: 276 + components: + - pos: 4.5,-4.5 + parent: 284 + type: Transform + - uid: 277 + components: + - pos: 4.5,-3.5 + parent: 284 + type: Transform + - uid: 278 + components: + - pos: -3.5,4.5 + parent: 284 + type: Transform + - uid: 279 + components: + - pos: -4.5,4.5 + parent: 284 + type: Transform + - uid: 281 + components: + - pos: -5.5,0.5 + parent: 284 + type: Transform + - uid: 282 + components: + - pos: -5.5,1.5 + parent: 284 + type: Transform + - uid: 283 + components: + - pos: -5.5,2.5 + parent: 284 + type: Transform +- proto: Bed + entities: + - uid: 109 + components: + - pos: -0.5,-5.5 + parent: 284 + type: Transform + - uid: 110 + components: + - pos: 2.5,-5.5 + parent: 284 + type: Transform +- proto: BedsheetSpawner + entities: + - uid: 111 + components: + - pos: -0.5,-5.5 + parent: 284 + type: Transform + - chance: 0.5 + type: RandomSpawner + - uid: 112 + components: + - pos: 2.5,-5.5 + parent: 284 + type: Transform + - chance: 0.5 + type: RandomSpawner +- proto: CableApcExtension + entities: + - uid: 117 + components: + - pos: 2.5,-2.5 + parent: 284 + type: Transform + - uid: 118 + components: + - pos: 2.5,-3.5 + parent: 284 + type: Transform + - uid: 119 + components: + - pos: 2.5,-4.5 + parent: 284 + type: Transform + - uid: 120 + components: + - pos: 1.5,-4.5 + parent: 284 + type: Transform + - uid: 121 + components: + - pos: 0.5,-4.5 + parent: 284 + type: Transform + - uid: 122 + components: + - pos: -0.5,-4.5 + parent: 284 + type: Transform + - uid: 123 + components: + - pos: -1.5,-4.5 + parent: 284 + type: Transform + - uid: 124 + components: + - pos: -2.5,-4.5 + parent: 284 + type: Transform + - uid: 125 + components: + - pos: -3.5,-4.5 + parent: 284 + type: Transform + - uid: 126 + components: + - pos: -4.5,-4.5 + parent: 284 + type: Transform + - uid: 127 + components: + - pos: -4.5,-3.5 + parent: 284 + type: Transform + - uid: 128 + components: + - pos: -4.5,-2.5 + parent: 284 + type: Transform + - uid: 129 + components: + - pos: -4.5,-1.5 + parent: 284 + type: Transform + - uid: 130 + components: + - pos: -4.5,-0.5 + parent: 284 + type: Transform + - uid: 131 + components: + - pos: -4.5,0.5 + parent: 284 + type: Transform + - uid: 132 + components: + - pos: -4.5,1.5 + parent: 284 + type: Transform + - uid: 133 + components: + - pos: -4.5,2.5 + parent: 284 + type: Transform + - uid: 134 + components: + - pos: -4.5,3.5 + parent: 284 + type: Transform + - uid: 135 + components: + - pos: 3.5,-4.5 + parent: 284 + type: Transform + - uid: 136 + components: + - pos: -3.5,-3.5 + parent: 284 + type: Transform + - uid: 137 + components: + - pos: 2.5,-1.5 + parent: 284 + type: Transform + - uid: 138 + components: + - pos: 1.5,-1.5 + parent: 284 + type: Transform + - uid: 139 + components: + - pos: 0.5,-1.5 + parent: 284 + type: Transform + - uid: 140 + components: + - pos: -0.5,-1.5 + parent: 284 + type: Transform + - uid: 141 + components: + - pos: -0.5,-0.5 + parent: 284 + type: Transform + - uid: 142 + components: + - pos: -1.5,-0.5 + parent: 284 + type: Transform + - uid: 143 + components: + - pos: -1.5,0.5 + parent: 284 + type: Transform + - uid: 144 + components: + - pos: -1.5,1.5 + parent: 284 + type: Transform + - uid: 145 + components: + - pos: -1.5,2.5 + parent: 284 + type: Transform + - uid: 146 + components: + - pos: -1.5,3.5 + parent: 284 + type: Transform + - uid: 147 + components: + - pos: 3.5,-1.5 + parent: 284 + type: Transform +- proto: CableHV + entities: + - uid: 157 + components: + - pos: -3.5,-3.5 + parent: 284 + type: Transform + - uid: 158 + components: + - pos: -3.5,-2.5 + parent: 284 + type: Transform + - uid: 159 + components: + - pos: -3.5,-1.5 + parent: 284 + type: Transform +- proto: CableMV + entities: + - uid: 160 + components: + - pos: -3.5,-1.5 + parent: 284 + type: Transform + - uid: 161 + components: + - pos: -3.5,-2.5 + parent: 284 + type: Transform + - uid: 162 + components: + - pos: -3.5,-3.5 + parent: 284 + type: Transform + - uid: 163 + components: + - pos: -3.5,-4.5 + parent: 284 + type: Transform + - uid: 164 + components: + - pos: -2.5,-4.5 + parent: 284 + type: Transform + - uid: 165 + components: + - pos: -1.5,-4.5 + parent: 284 + type: Transform + - uid: 166 + components: + - pos: -0.5,-4.5 + parent: 284 + type: Transform + - uid: 167 + components: + - pos: 0.5,-4.5 + parent: 284 + type: Transform + - uid: 168 + components: + - pos: 1.5,-4.5 + parent: 284 + type: Transform + - uid: 169 + components: + - pos: 2.5,-4.5 + parent: 284 + type: Transform + - uid: 170 + components: + - pos: 2.5,-3.5 + parent: 284 + type: Transform + - uid: 171 + components: + - pos: 2.5,-2.5 + parent: 284 + type: Transform +- proto: Catwalk + entities: + - uid: 65 + components: + - pos: -1.5,4.5 + parent: 284 + type: Transform + - uid: 66 + components: + - pos: -1.5,3.5 + parent: 284 + type: Transform + - uid: 67 + components: + - pos: -1.5,2.5 + parent: 284 + type: Transform + - uid: 68 + components: + - pos: -1.5,1.5 + parent: 284 + type: Transform + - uid: 69 + components: + - pos: -1.5,0.5 + parent: 284 + type: Transform + - uid: 70 + components: + - pos: -1.5,-0.5 + parent: 284 + type: Transform + - uid: 71 + components: + - pos: -0.5,-0.5 + parent: 284 + type: Transform + - uid: 72 + components: + - pos: -0.5,-1.5 + parent: 284 + type: Transform + - uid: 73 + components: + - pos: 0.5,-1.5 + parent: 284 + type: Transform + - uid: 74 + components: + - pos: 1.5,-1.5 + parent: 284 + type: Transform + - uid: 75 + components: + - pos: 2.5,-1.5 + parent: 284 + type: Transform + - uid: 76 + components: + - pos: 3.5,-1.5 + parent: 284 + type: Transform + - uid: 77 + components: + - pos: 4.5,-1.5 + parent: 284 + type: Transform + - uid: 232 + components: + - pos: 0.5,-4.5 + parent: 284 + type: Transform + - uid: 233 + components: + - pos: 1.5,-4.5 + parent: 284 + type: Transform + - uid: 234 + components: + - pos: 2.5,-4.5 + parent: 284 + type: Transform +- proto: ChairFolding + entities: + - uid: 231 + components: + - rot: -1.5707963267948966 rad + pos: -4.7355804,1.7239218 + parent: 284 + type: Transform +- proto: ChairFoldingSpawnFolded + entities: + - uid: 230 + components: + - pos: -3.5376635,0.53559655 + parent: 284 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 113 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 284 + type: Transform +- proto: CheapLighter + entities: + - uid: 256 + components: + - rot: 1.5707963267948966 rad + pos: 2.6145763,-5.187339 + parent: 284 + type: Transform +- proto: CigaretteSpent + entities: + - uid: 257 + components: + - rot: -1.5707963267948966 rad + pos: 2.3541598,-3.9260468 + parent: 284 + type: Transform + - uid: 260 + components: + - rot: -1.5707963267948966 rad + pos: 2.4166598,-3.7801125 + parent: 284 + type: Transform + - uid: 262 + components: + - rot: -1.5707963267948966 rad + pos: 2.2604098,-3.727993 + parent: 284 + type: Transform + - uid: 263 + components: + - pos: 2.156243,-3.7384167 + parent: 284 + type: Transform +- proto: CigPackGreen + entities: + - uid: 261 + components: + - pos: 2.2395763,-5.1977634 + parent: 284 + type: Transform +- proto: ClosetToolFilled + entities: + - uid: 149 + components: + - pos: -3.5,-0.5 + parent: 284 + type: Transform +- proto: ClothingBackpackSalvage + entities: + - uid: 175 + components: + - pos: -5.429078,2.4890895 + parent: 284 + type: Transform +- proto: ComputerBroken + entities: + - uid: 108 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 284 + type: Transform +- proto: DrinkSpaceMountainWindBottleFull + entities: + - uid: 247 + components: + - rot: -1.5707963267948966 rad + pos: 2.1726906,-3.3062963 + parent: 284 + type: Transform +- proto: DrinkSpaceMountainWindCan + entities: + - uid: 248 + components: + - rot: 1.5707963267948966 rad + pos: -0.10855964,-5.1826 + parent: 284 + type: Transform +- proto: EmergencyLight + entities: + - uid: 259 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 284 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight +- proto: ExtinguisherCabinetFilled + entities: + - uid: 106 + components: + - pos: 3.5,-5.5 + parent: 284 + type: Transform + - uid: 107 + components: + - pos: -5.5,3.5 + parent: 284 + type: Transform +- proto: FireAxeCabinetOpen + entities: + - uid: 255 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 284 + type: Transform +- proto: Floodlight + entities: + - uid: 228 + components: + - pos: 2.7469532,-3.473565 + parent: 284 + type: Transform +- proto: FloodlightBroken + entities: + - uid: 229 + components: + - pos: 3.8823698,0.47709483 + parent: 284 + type: Transform +- proto: GasCanisterBrokenBase + entities: + - uid: 156 + components: + - pos: -5.5,-2.5 + parent: 284 + type: Transform +- proto: GasPipeBend + entities: + - uid: 95 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 284 + type: Transform +- proto: GasPipeStraight + entities: + - uid: 96 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 284 + type: Transform + - uid: 97 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 284 + type: Transform + - uid: 98 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 284 + type: Transform + - uid: 99 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 284 + type: Transform + - uid: 103 + components: + - pos: -4.5,-3.5 + parent: 284 + type: Transform +- proto: GasPipeTJunction + entities: + - uid: 94 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 284 + type: Transform +- proto: GasPort + entities: + - uid: 100 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 284 + type: Transform +- proto: GasVentPump + entities: + - uid: 78 + components: + - pos: -4.5,-0.5 + parent: 284 + type: Transform + - uid: 79 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 284 + type: Transform +- proto: GeneratorRTGDamaged + entities: + - uid: 114 + components: + - pos: -3.5,-3.5 + parent: 284 + type: Transform +- proto: Grille + entities: + - uid: 6 + components: + - pos: 1.5,-6.5 + parent: 284 + type: Transform + - uid: 18 + components: + - pos: 3.5,-3.5 + parent: 284 + type: Transform + - uid: 19 + components: + - pos: 3.5,-2.5 + parent: 284 + type: Transform + - uid: 20 + components: + - pos: 1.5,-2.5 + parent: 284 + type: Transform + - uid: 21 + components: + - pos: 0.5,-2.5 + parent: 284 + type: Transform + - uid: 32 + components: + - pos: -3.5,3.5 + parent: 284 + type: Transform + - uid: 33 + components: + - pos: -2.5,3.5 + parent: 284 + type: Transform + - uid: 34 + components: + - pos: -2.5,0.5 + parent: 284 + type: Transform + - uid: 38 + components: + - pos: -2.5,1.5 + parent: 284 + type: Transform + - uid: 41 + components: + - pos: -6.5,1.5 + parent: 284 + type: Transform + - uid: 46 + components: + - pos: 0.5,-6.5 + parent: 284 + type: Transform +- proto: GrilleBroken + entities: + - uid: 241 + components: + - pos: -6.5,0.5 + parent: 284 + type: Transform +- proto: Machete + entities: + - uid: 174 + components: + - rot: -1.5707963267948966 rad + pos: -5.5436616,2.5724807 + parent: 284 + type: Transform +- proto: MachineFrame + entities: + - uid: 225 + components: + - pos: -6.5,5.5 + parent: 284 + type: Transform + - uid: 226 + components: + - pos: -6.5,4.5 + parent: 284 + type: Transform + - uid: 238 + components: + - pos: 4.5,-6.5 + parent: 284 + type: Transform + - uid: 239 + components: + - pos: 5.5,-6.5 + parent: 284 + type: Transform +- proto: OreProcessor + entities: + - uid: 92 + components: + - pos: -5.5,-0.5 + parent: 284 + type: Transform +- proto: Pickaxe + entities: + - uid: 227 + components: + - rot: 3.141592653589793 rad + pos: 4.7460394,0.66541046 + parent: 284 + type: Transform +- proto: PosterLegitSafetyInternals + entities: + - uid: 244 + components: + - pos: -2.5,-0.5 + parent: 284 + type: Transform +- proto: Poweredlight + entities: + - uid: 40 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 284 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 148 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 284 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 150 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 284 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 151 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 284 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredlightExterior + entities: + - uid: 154 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 284 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 155 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 284 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLight + entities: + - uid: 152 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 284 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 153 + components: + - pos: -4.5,4.5 + parent: 284 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: Rack + entities: + - uid: 90 + components: + - pos: -3.5,2.5 + parent: 284 + type: Transform +- proto: Railing + entities: + - uid: 56 + components: + - pos: 2.5,-0.5 + parent: 284 + type: Transform + - uid: 57 + components: + - pos: 1.5,-0.5 + parent: 284 + type: Transform + - uid: 61 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 284 + type: Transform + - uid: 62 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 284 + type: Transform +- proto: RailingCorner + entities: + - uid: 58 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 284 + type: Transform + - uid: 59 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 284 + type: Transform +- proto: RailingCornerSmall + entities: + - uid: 60 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 284 + type: Transform +- proto: RandomPosterAny + entities: + - uid: 184 + components: + - pos: -0.5,-2.5 + parent: 284 + type: Transform +- proto: RandomRockSpawner + entities: + - uid: 63 + components: + - pos: 2.5,5.5 + parent: 284 + type: Transform + - uid: 64 + components: + - pos: 1.5,5.5 + parent: 284 + type: Transform + - uid: 190 + components: + - pos: 4.5,1.5 + parent: 284 + type: Transform + - uid: 191 + components: + - pos: 0.5,4.5 + parent: 284 + type: Transform + - uid: 192 + components: + - pos: 2.5,1.5 + parent: 284 + type: Transform + - uid: 194 + components: + - pos: 5.5,2.5 + parent: 284 + type: Transform + - uid: 195 + components: + - pos: 1.5,0.5 + parent: 284 + type: Transform + - uid: 196 + components: + - pos: 2.5,0.5 + parent: 284 + type: Transform + - uid: 197 + components: + - pos: 5.5,0.5 + parent: 284 + type: Transform + - uid: 198 + components: + - pos: 6.5,2.5 + parent: 284 + type: Transform + - uid: 199 + components: + - pos: 1.5,6.5 + parent: 284 + type: Transform + - uid: 200 + components: + - pos: 6.5,3.5 + parent: 284 + type: Transform + - uid: 201 + components: + - pos: 5.5,1.5 + parent: 284 + type: Transform + - uid: 202 + components: + - pos: 4.5,6.5 + parent: 284 + type: Transform + - uid: 203 + components: + - pos: 3.5,4.5 + parent: 284 + type: Transform + - uid: 204 + components: + - pos: 0.5,2.5 + parent: 284 + type: Transform + - uid: 205 + components: + - pos: 3.5,5.5 + parent: 284 + type: Transform + - uid: 206 + components: + - pos: 0.5,3.5 + parent: 284 + type: Transform + - uid: 207 + components: + - pos: 4.5,4.5 + parent: 284 + type: Transform + - uid: 208 + components: + - pos: 4.5,2.5 + parent: 284 + type: Transform + - uid: 209 + components: + - pos: 0.5,1.5 + parent: 284 + type: Transform + - uid: 210 + components: + - pos: 1.5,3.5 + parent: 284 + type: Transform + - uid: 211 + components: + - pos: 1.5,2.5 + parent: 284 + type: Transform + - uid: 212 + components: + - pos: 0.5,5.5 + parent: 284 + type: Transform + - uid: 213 + components: + - pos: 1.5,1.5 + parent: 284 + type: Transform + - uid: 214 + components: + - pos: 4.5,3.5 + parent: 284 + type: Transform + - uid: 215 + components: + - pos: 2.5,4.5 + parent: 284 + type: Transform + - uid: 216 + components: + - pos: 4.5,5.5 + parent: 284 + type: Transform + - uid: 217 + components: + - pos: 5.5,5.5 + parent: 284 + type: Transform + - uid: 218 + components: + - pos: 2.5,3.5 + parent: 284 + type: Transform + - uid: 219 + components: + - pos: 3.5,1.5 + parent: 284 + type: Transform + - uid: 220 + components: + - pos: 5.5,4.5 + parent: 284 + type: Transform + - uid: 221 + components: + - pos: 2.5,2.5 + parent: 284 + type: Transform + - uid: 222 + components: + - pos: 3.5,2.5 + parent: 284 + type: Transform + - uid: 223 + components: + - pos: 5.5,3.5 + parent: 284 + type: Transform + - uid: 224 + components: + - pos: 1.5,4.5 + parent: 284 + type: Transform +- proto: RandomSpawner + entities: + - uid: 249 + components: + - pos: -0.5,-4.5 + parent: 284 + type: Transform + - uid: 250 + components: + - pos: 0.5,-4.5 + parent: 284 + type: Transform + - uid: 251 + components: + - pos: 2.5,-4.5 + parent: 284 + type: Transform + - uid: 252 + components: + - pos: 1.5,-3.5 + parent: 284 + type: Transform + - uid: 253 + components: + - pos: 1.5,-5.5 + parent: 284 + type: Transform + - uid: 254 + components: + - pos: 0.5,-5.5 + parent: 284 + type: Transform +- proto: ReinforcedGirder + entities: + - uid: 2 + components: + - pos: -6.5,-0.5 + parent: 284 + type: Transform + - uid: 26 + components: + - pos: -6.5,-3.5 + parent: 284 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 24 + components: + - pos: -2.5,3.5 + parent: 284 + type: Transform + - uid: 27 + components: + - pos: 0.5,-6.5 + parent: 284 + type: Transform + - uid: 28 + components: + - pos: -3.5,3.5 + parent: 284 + type: Transform + - uid: 48 + components: + - pos: 3.5,-3.5 + parent: 284 + type: Transform + - uid: 51 + components: + - pos: 3.5,-2.5 + parent: 284 + type: Transform + - uid: 84 + components: + - pos: 1.5,-2.5 + parent: 284 + type: Transform + - uid: 85 + components: + - pos: 0.5,-2.5 + parent: 284 + type: Transform + - uid: 86 + components: + - pos: -2.5,1.5 + parent: 284 + type: Transform + - uid: 87 + components: + - pos: -2.5,0.5 + parent: 284 + type: Transform + - uid: 240 + components: + - pos: 1.5,-6.5 + parent: 284 + type: Transform + - uid: 242 + components: + - pos: -6.5,1.5 + parent: 284 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 176 + components: + - pos: -5.5,-3.5 + parent: 284 + type: Transform + - uid: 178 + components: + - pos: -5.5,-5.5 + parent: 284 + type: Transform + - uid: 179 + components: + - pos: -5.5,-4.5 + parent: 284 + type: Transform + - uid: 180 + components: + - pos: -3.5,-5.5 + parent: 284 + type: Transform +- proto: SalvageMobSpawner + entities: + - uid: 185 + components: + - pos: -0.5,-3.5 + parent: 284 + type: Transform + - uid: 186 + components: + - pos: -3.5,0.5 + parent: 284 + type: Transform + - uid: 189 + components: + - pos: 0.5,-1.5 + parent: 284 + type: Transform +- proto: SalvageMobSpawner75 + entities: + - uid: 182 + components: + - pos: -4.5,-4.5 + parent: 284 + type: Transform + - uid: 187 + components: + - pos: -0.5,-0.5 + parent: 284 + type: Transform + - uid: 188 + components: + - pos: -1.5,2.5 + parent: 284 + type: Transform + - uid: 243 + components: + - pos: 1.5,-4.5 + parent: 284 + type: Transform + - uid: 280 + components: + - pos: -4.5,0.5 + parent: 284 + type: Transform +- proto: SalvagePartsSpawnerLow + entities: + - uid: 177 + components: + - pos: -5.5,1.5 + parent: 284 + type: Transform +- proto: SalvagePartsSpawnerMid + entities: + - uid: 104 + components: + - pos: -2.5,-5.5 + parent: 284 + type: Transform +- proto: SpawnMobBearSalvage + entities: + - uid: 181 + components: + - pos: -4.5,-5.5 + parent: 284 + type: Transform +- proto: SpawnMobOreCrab + entities: + - uid: 193 + components: + - pos: 3.5,3.5 + parent: 284 + type: Transform +- proto: SubstationWallBasic + entities: + - uid: 115 + components: + - pos: -3.5,-1.5 + parent: 284 + type: Transform +- proto: Table + entities: + - uid: 88 + components: + - pos: -5.5,2.5 + parent: 284 + type: Transform + - uid: 89 + components: + - pos: -5.5,1.5 + parent: 284 + type: Transform +- proto: WallReinforced + entities: + - uid: 1 + components: + - pos: -6.5,-5.5 + parent: 284 + type: Transform + - uid: 3 + components: + - pos: -6.5,-4.5 + parent: 284 + type: Transform + - uid: 4 + components: + - pos: -1.5,-2.5 + parent: 284 + type: Transform + - uid: 5 + components: + - pos: 2.5,-6.5 + parent: 284 + type: Transform + - uid: 7 + components: + - pos: -4.5,-6.5 + parent: 284 + type: Transform + - uid: 8 + components: + - pos: -3.5,-6.5 + parent: 284 + type: Transform + - uid: 9 + components: + - pos: -6.5,-6.5 + parent: 284 + type: Transform + - uid: 10 + components: + - pos: -5.5,-6.5 + parent: 284 + type: Transform + - uid: 11 + components: + - pos: 4.5,-5.5 + parent: 284 + type: Transform + - uid: 12 + components: + - pos: 5.5,-2.5 + parent: 284 + type: Transform + - uid: 13 + components: + - pos: 5.5,-3.5 + parent: 284 + type: Transform + - uid: 14 + components: + - pos: 5.5,-4.5 + parent: 284 + type: Transform + - uid: 15 + components: + - pos: 5.5,-5.5 + parent: 284 + type: Transform + - uid: 16 + components: + - pos: 3.5,-5.5 + parent: 284 + type: Transform + - uid: 17 + components: + - pos: 2.5,-2.5 + parent: 284 + type: Transform + - uid: 22 + components: + - pos: -0.5,-2.5 + parent: 284 + type: Transform + - uid: 23 + components: + - pos: -5.5,4.5 + parent: 284 + type: Transform + - uid: 25 + components: + - pos: -6.5,3.5 + parent: 284 + type: Transform + - uid: 29 + components: + - pos: -4.5,5.5 + parent: 284 + type: Transform + - uid: 30 + components: + - pos: -3.5,5.5 + parent: 284 + type: Transform + - uid: 31 + components: + - pos: -2.5,5.5 + parent: 284 + type: Transform + - uid: 35 + components: + - pos: -2.5,-0.5 + parent: 284 + type: Transform + - uid: 36 + components: + - pos: -2.5,-1.5 + parent: 284 + type: Transform + - uid: 39 + components: + - pos: -2.5,2.5 + parent: 284 + type: Transform + - uid: 42 + components: + - pos: -6.5,2.5 + parent: 284 + type: Transform + - uid: 43 + components: + - pos: -2.5,-6.5 + parent: 284 + type: Transform + - uid: 44 + components: + - pos: -1.5,-6.5 + parent: 284 + type: Transform + - uid: 45 + components: + - pos: -0.5,-6.5 + parent: 284 + type: Transform + - uid: 47 + components: + - pos: 3.5,-6.5 + parent: 284 + type: Transform + - uid: 49 + components: + - pos: -5.5,5.5 + parent: 284 + type: Transform + - uid: 50 + components: + - pos: -5.5,3.5 + parent: 284 + type: Transform + - uid: 52 + components: + - pos: -1.5,-1.5 + parent: 284 + type: Transform +- proto: WallSolid + entities: + - uid: 80 + components: + - pos: -3.5,-1.5 + parent: 284 + type: Transform + - uid: 81 + components: + - pos: -5.5,-1.5 + parent: 284 + type: Transform + - uid: 82 + components: + - pos: -1.5,-3.5 + parent: 284 + type: Transform + - uid: 83 + components: + - pos: -1.5,-5.5 + parent: 284 + type: Transform +- proto: WeldingFuelTankFull + entities: + - uid: 183 + components: + - pos: -5.5,0.5 + parent: 284 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-research-outpost-01.yml b/Resources/Maps/Salvage/DeltaV/DV-research-outpost-01.yml new file mode 100644 index 0000000000..62b0e9d437 --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-research-outpost-01.yml @@ -0,0 +1,5530 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 15: FloorBlueCircuit + 28: FloorDarkDiagonal + 72: FloorReinforced + 87: FloorSteelDiagonal + 98: FloorTechMaint3 + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + - pos: 0.52083397,0.520833 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAAAVwAAAAADVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAADSAAAAAAASAAAAAAAVwAAAAADVwAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADSAAAAAAASAAAAAAASAAAAAAAVwAAAAABVwAAAAACVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACSAAAAAAASAAAAAAASAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACSAAAAAAASAAAAAAASAAAAAAAVwAAAAAAVwAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAABcQAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABcQAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAACVwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAADVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAABVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAADVwAAAAAAVwAAAAABAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAACVwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAADcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYgAAAAACHAAAAAABHAAAAAACAAAAAAAAcQAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHAAAAAAAYgAAAAAAHAAAAAACHAAAAAACAAAAAAAAcQAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHAAAAAAAYgAAAAACHAAAAAACHAAAAAABAAAAAAAAcQAAAAAAVwAAAAAAVwAAAAABVwAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHAAAAAAAYgAAAAADHAAAAAACHAAAAAAC + version: 6 + 0,-1: + ind: 0,-1 + tiles: VwAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAACSAAAAAAASAAAAAAAVwAAAAADVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAAASAAAAAAASAAAAAAASAAAAAAAVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAACSAAAAAAASAAAAAAASAAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAABSAAAAAAASAAAAAAASAAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAADVwAAAAADVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAAAVwAAAAABVwAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAABVwAAAAACVwAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAABVwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAYgAAAAABcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAHAAAAAADYgAAAAACHAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAACVwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAYgAAAAAAHAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAACcQAAAAAAAAAAAAAAAAAAAAAAHAAAAAADYgAAAAACHAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVwAAAAACVwAAAAAAVwAAAAADcQAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAcQAAAAAAVwAAAAADVwAAAAABVwAAAAADcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYgAAAAABcQAAAAAAHAAAAAACYgAAAAADHAAAAAACHAAAAAADAAAAAAAAcQAAAAAAVwAAAAAAVwAAAAAAVwAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABcQAAAAAAcQAAAAAADwAAAAAAHAAAAAACHAAAAAAAAAAAAAAAcQAAAAAAVwAAAAADVwAAAAACVwAAAAACcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHAAAAAACAAAAAAAAcQAAAAAAVwAAAAABVwAAAAACVwAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABcQAAAAAAcQAAAAAAHAAAAAACHAAAAAAAHAAAAAACcAAAAAAAcQAAAAAAVwAAAAADVwAAAAAAVwAAAAACcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYgAAAAABcQAAAAAAcQAAAAAAHAAAAAADHAAAAAAAHAAAAAACAAAAAAAAcQAAAAAAVwAAAAACVwAAAAADVwAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADcQAAAAAAcQAAAAAAHAAAAAADHAAAAAABHAAAAAAAAAAAAAAAcQAAAAAAVwAAAAADVwAAAAAAVwAAAAACcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYgAAAAABcQAAAAAAcQAAAAAAHAAAAAACHAAAAAADHAAAAAACAAAAAAAAcQAAAAAAVwAAAAAAVwAAAAABVwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVwAAAAABVwAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVwAAAAABVwAAAAACVwAAAAADcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAYgAAAAABYgAAAAADYgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAVwAAAAADcQAAAAAAVwAAAAAAVwAAAAAAVwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAADVwAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAABVwAAAAAAVwAAAAABVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAADVwAAAAABVwAAAAABVwAAAAADVwAAAAACVwAAAAAAVwAAAAADVwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAADVwAAAAADVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAADVwAAAAAAVwAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: HAAAAAABYgAAAAAAHAAAAAACcQAAAAAAYgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAHAAAAAADDwAAAAAAcQAAAAAAcQAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVwAAAAADVwAAAAADVwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAVwAAAAACVwAAAAACVwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAHAAAAAABHAAAAAACcQAAAAAAcQAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVwAAAAABVwAAAAADVwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAHAAAAAADHAAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAVwAAAAABVwAAAAACVwAAAAADcQAAAAAAcAAAAAAAcAAAAAAAHAAAAAADHAAAAAAAcQAAAAAAcQAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVwAAAAAAVwAAAAAAVwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAHAAAAAACHAAAAAACcQAAAAAAcQAAAAAAYgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAVwAAAAADVwAAAAABVwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVwAAAAACVwAAAAACVwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVwAAAAAAVwAAAAABVwAAAAACcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYgAAAAACYgAAAAACYgAAAAABAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAACcQAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAACVwAAAAADVwAAAAABVwAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVwAAAAABVwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVwAAAAAAVwAAAAAAVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVwAAAAAAVwAAAAACVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVwAAAAACVwAAAAABVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVwAAAAACVwAAAAADVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAADVwAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAABVwAAAAACVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAABVwAAAAAAVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVwAAAAADcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: VwAAAAAAVwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#474F52FF' + id: BrickTileSteelInnerNw + decals: + 98: -12,11 + 99: -11,12 + - node: + color: '#474F52FF' + id: BrickTileSteelInnerSe + decals: + 142: 10,-4 + 143: 11,-3 + 144: 9,-5 + 145: 8,-6 + 146: 7,-7 + - node: + color: '#474F52FF' + id: BrickTileSteelInnerSw + decals: + 160: -13,-3 + 161: -12,-4 + 162: -11,-5 + 163: -10,-6 + 164: -9,-7 + - node: + color: '#474F52FF' + id: BrickTileSteelLineE + decals: + 111: 10,12 + 112: 9,13 + 113: 11,11 + 114: 12,10 + 115: 12,9 + 116: 12,8 + 117: 12,7 + 118: 12,6 + 119: 12,5 + 120: 12,3 + 121: 12,4 + 122: 12,1 + 123: 12,2 + 124: 12,-1 + 125: 12,0 + 126: 12,-2 + 127: 12,-2 + 128: 12,-3 + 129: 11,-4 + 130: 10,-5 + 131: 9,-6 + 132: 8,-7 + 133: 7,-8 + 189: 1,15 + 190: 1,16 + 191: 1,17 + 192: 1,18 + 193: 1,19 + 194: 1,22 + - node: + color: '#474F52FF' + id: BrickTileSteelLineN + decals: + 78: -1,13 + 79: 1,13 + 80: -3,13 + 81: -3,13 + 82: -4,13 + 83: -4,13 + 84: -5,13 + 85: -6,13 + 86: -7,13 + 87: -8,13 + 88: -9,13 + 89: -10,13 + 90: -11,13 + 91: -12,12 + 92: -13,11 + 93: -14,10 + 100: 2,13 + 101: 3,13 + 102: 4,13 + 103: 5,13 + 104: 6,13 + 105: 7,13 + 106: 8,13 + 107: 9,13 + 108: 10,12 + 109: 11,11 + 110: 12,10 + 195: -3,22 + 196: -2,22 + 197: -1,22 + 198: -1,22 + 199: 0,22 + 200: 1,22 + - node: + color: '#474F52FF' + id: BrickTileSteelLineS + decals: + 69: -2,11 + 70: -1,11 + 71: 0,11 + 72: 3,11 + 73: 1,11 + 74: 2,11 + 75: 4,11 + 76: 5,11 + 77: 6,11 + 134: 6,-8 + 135: 7,-8 + 137: 8,-7 + 138: 9,-6 + 139: 10,-5 + 140: 11,-4 + 141: 12,-3 + 147: -8,-8 + 148: -8,-8 + 149: -9,-8 + 150: -10,-7 + 151: -11,-6 + 152: -12,-5 + 153: -13,-4 + 154: -14,-3 + 186: -3,15 + 187: -1,15 + 188: 1,15 + - node: + color: '#474F52FF' + id: BrickTileSteelLineW + decals: + 94: -14,10 + 95: -13,11 + 96: -12,12 + 97: -11,13 + 136: 6,-8 + 155: -9,-8 + 156: -10,-7 + 157: -11,-6 + 158: -12,-5 + 159: -13,-4 + 165: -14,-3 + 166: -14,-2 + 167: -14,-1 + 168: -14,0 + 169: -14,1 + 170: -14,2 + 171: -14,3 + 172: -14,4 + 173: -14,5 + 174: -14,6 + 175: -14,7 + 180: -3,19 + 181: -3,18 + 182: -3,17 + 183: -3,16 + 184: -3,15 + 185: -3,22 + - node: + color: '#1D1D21FF' + id: BrickTileWhiteLineE + decals: + 214: 1,20 + - node: + color: '#1D1D21FF' + id: BrickTileWhiteLineW + decals: + 215: -3,20 + - node: + color: '#1D1D211F' + id: Damaged + decals: + 221: -1.7456894,18.968441 + 222: -2.3498564,18.655941 + 223: -2.1206894,17.176773 + 224: -2.0373564,16.072605 + 225: -2.3290234,15.21844 + 226: -0.7665233,15.822605 + 227: -1.3706894,16.593441 + 228: -0.9123563,17.364273 + 229: -0.30818933,17.572605 + 230: -0.037356317,18.260105 + 231: 0.33764362,19.447605 + 232: 0.3793106,19.926773 + 233: -0.09985632,20.593441 + 234: -1.3915234,20.760105 + 235: -1.5165234,20.010105 + 236: -1.4331894,19.530941 + 237: -1.5790234,18.697605 + - node: + color: '#B02E2656' + id: Damaged + decals: + 261: -13.415401,2.798694 + 262: -12.998735,2.757027 + 263: -12.832068,1.9236939 + 264: -13.227901,2.361194 + 265: -13.394568,0.8611939 + 266: -13.227901,1.4028604 + 267: -12.915401,0.5903604 + 268: -12.977901,-0.034640074 + 269: -13.144568,-0.34714007 + 270: -13.248735,-0.9721401 + 271: -12.644568,-1.1596401 + 272: -12.457068,-1.7221401 + 273: -12.707068,-2.15964 + 274: -12.623735,-2.78464 + 275: -11.707068,-3.47214 + 276: -11.241575,-3.512694 + 277: -11.512409,-2.971027 + 278: -11.762409,-3.908527 + 279: -11.366575,-4.429361 + 280: -10.804075,-4.637694 + 281: -10.366575,-4.741861 + 282: -10.554075,-4.075194 + 283: -9.762409,-4.908527 + 284: -9.574909,-5.346027 + 285: -9.804075,-5.825194 + 286: -9.366575,-6.262694 + 287: -8.491575,-6.616861 + 288: -8.470742,-6.221027 + 289: -8.616575,-5.804361 + 290: -13.464111,4.8981566 + 291: -12.672445,4.8148227 + 292: -0.7619631,12.625094 + 293: -0.8869631,11.979261 + 294: -0.32446313,11.312594 + 295: 0.21720386,11.250094 + 296: 1.2172039,11.500094 + 297: 0.6130369,11.812594 + 298: -0.24113011,12.125094 + 299: 0.7380369,12.770928 + 300: 1.0088699,12.750094 + 301: 1.1547039,12.000094 + 302: 0.07136989,12.770928 + 303: 5.491412,12.016952 + 304: 6.137245,11.871119 + 305: 6.720579,11.829452 + 306: 7.345579,11.766952 + 307: 8.116412,11.641952 + 308: 8.720579,11.371119 + 309: 9.033079,10.600286 + 310: 11.870868,4.948135 + 311: 11.225035,5.0523014 + 312: 10.787535,5.010635 + 313: 10.850035,2.3507478 + 314: 10.891701,1.5174148 + 315: 10.829201,0.6632478 + 316: 10.829201,0.07991481 + 317: 10.662535,-0.4200852 + 318: 10.350035,0.12158084 + 319: 10.662535,1.2882478 + 320: 10.620868,2.1424148 + 321: 10.308368,2.6840813 + 322: 10.412535,1.6424148 + 323: 10.641701,-1.0511451 + 324: 10.600035,-1.5094786 + 325: 10.912535,-1.7594786 + 326: 10.808368,-2.238645 + 327: 9.891701,-2.6344786 + 328: 9.704201,-2.9469786 + 329: 9.495868,-3.3428116 + 330: 9.495868,-3.9678116 + 331: 9.225035,-4.1344786 + 332: 8.808368,-3.9261456 + 333: 8.725035,-3.9469786 + 334: 8.683368,-4.3011456 + 335: 8.164383,-4.471303 + 336: 7.76855,-5.346303 + 337: 7.664383,-5.8254695 + 338: 6.601883,-5.8671365 + 339: 6.33105,-6.0129695 + 340: 6.351883,-6.6171365 + 341: -2.9581609,-7.5699725 + 342: -3.124827,-7.2783055 + 343: -3.916494,-6.7158055 + 344: -3.916494,-6.3824725 + 345: -3.3331609,-6.2158055 + 346: -2.874827,-6.0699725 + 347: 2.0418391,-5.8408055 + 348: 2.7293391,-6.0074725 + 349: 3.250173,-6.174139 + 350: 1.3126731,-6.6324725 + 351: 1.8543391,-7.8408055 + 352: 2.5418391,-7.7574725 + 353: 2.9168391,-7.8199725 + 354: 1.4793391,-6.924139 + 355: 2.062673,-6.424139 + 356: -2.041494,-7.549139 + 357: -0.9373268,-7.8408055 + 358: -0.33316076,-7.9658055 + 359: 0.041839242,-7.2158055 + 360: -0.6873268,-6.924139 + 361: -1.4789938,-6.8408055 + 362: -1.8539938,-6.8408055 + 363: -1.9789938,-6.2158055 + 364: -1.1456608,-6.0699725 + 365: -0.27066076,-5.9658055 + 366: 0.3751732,-5.986639 + - node: + color: '#1D1D211F' + id: DirtHeavy + decals: + 238: -1.9748564,17.218441 + 239: -0.9540233,16.843441 + 240: -0.62068933,16.218441 + 241: 0.40014362,15.46844 + 242: 0.5876436,15.926773 + 243: 0.67097664,17.572605 + 244: 0.5876436,18.280941 + 245: -0.016523361,18.343441 + 246: -0.4540233,18.197605 + 247: -2.0165234,18.718441 + 248: -2.7873564,19.010105 + 249: -2.7873564,19.447605 + 250: -2.1415234,20.260105 + 251: -2.2040234,21.176773 + 252: -2.4748564,21.572605 + 253: -1.2456894,21.551773 + 254: -0.1415233,21.551773 + 255: 0.29597664,21.530941 + 256: 0.5668106,21.072605 + - node: + color: '#1D1D21FF' + id: DirtHeavy + decals: + 257: -2,15 + 258: 0,15 + - node: + color: '#1D1D21FF' + id: DirtMedium + decals: + 259: -3,21 + 260: 1,21 + - node: + color: '#474F52FF' + id: LoadingAreaGreyscale + decals: + 176: -2,13 + 177: 0,13 + - node: + angle: 1.5707963267948966 rad + color: '#474F52FF' + id: LoadingAreaGreyscale + decals: + 178: -3,21 + - node: + angle: 4.71238898038469 rad + color: '#474F52FF' + id: LoadingAreaGreyscale + decals: + 179: 1,21 + - node: + color: '#474F52FF' + id: MiniTileSteelInnerNe + decals: + 60: -12,-2 + 61: -11,-3 + 62: -10,-4 + 63: -9,-5 + - node: + color: '#474F52FF' + id: MiniTileSteelInnerNw + decals: + 64: 7,-5 + 65: 7,-4 + 66: 8,-4 + 67: 9,-3 + 68: 10,-2 + - node: + color: '#474F52FF' + id: MiniTileSteelInnerSe + decals: + 57: -10,11 + 58: -11,10 + 59: -12,9 + - node: + color: '#474F52FF' + id: MiniTileSteelInnerSw + decals: + 54: 9,10 + 55: 8,11 + 56: 10,9 + - node: + color: '#474F52FF' + id: MiniTileSteelLineE + decals: + 8: -10,10 + 9: -11,9 + 10: -12,8 + 13: -12,7 + 14: -12,6 + 15: -12,5 + 16: -12,4 + 17: -12,3 + 18: -12,2 + 19: -12,1 + 20: -12,0 + 21: -12,0 + 22: -12,-1 + 23: -11,-2 + 24: -10,-3 + 25: -9,-4 + 26: -8,-5 + - node: + color: '#474F52FF' + id: MiniTileSteelLineN + decals: + 27: -11,-2 + 28: -10,-3 + 29: -9,-4 + 30: -8,-5 + 31: 6,-5 + 32: 7,-4 + 33: 8,-3 + 34: 9,-2 + - node: + color: '#474F52FF' + id: MiniTileSteelLineS + decals: + 0: 7,11 + 1: -3,11 + 2: -4,11 + 3: -5,11 + 4: -6,11 + 5: -7,11 + 6: -8,11 + 7: -9,11 + 11: -10,10 + 12: -11,9 + 52: 9,9 + 53: 8,10 + - node: + color: '#474F52FF' + id: MiniTileSteelLineW + decals: + 35: 6,-5 + 36: 7,-4 + 37: 8,-3 + 38: 9,-2 + 39: 10,-1 + 40: 10,0 + 41: 10,0 + 42: 10,1 + 43: 10,2 + 44: 10,3 + 45: 10,4 + 46: 10,5 + 47: 10,6 + 48: 10,7 + 49: 10,8 + 50: 9,9 + 51: 8,10 + - node: + color: '#FFFFFFFF' + id: Remains + decals: + 203: -5.290352,-10.506263 + 204: -9.743555,-5.359117 + 205: 3.060977,-6.0148087 + 206: -1.5448232,-3.7546859 + 207: -13.826517,1.1787996 + 208: -12.84735,5.116001 + 209: -11.639017,9.018466 + 210: 9.471096,-2.1360579 + 211: 11.999826,4.51457 + 212: 0.66674805,11.746892 + 213: 7.687314,12.705225 + - node: + color: '#1D1D215A' + id: splatter + decals: + 216: -3,20 + 217: 0,17 + 218: -1,15 + 219: -3,17 + 220: -0.7248563,19.489273 + - node: + color: '#792E26A8' + id: splatter + decals: + 367: -9.736181,-6.1324725 + 368: -11.505092,-3.491832 + 369: -11.650925,-2.5959985 + 370: -10.817592,-1.679332 + 371: -12.671477,3.3983831 + 372: -13.50481,4.69005 + 373: -13.963144,5.44005 + 374: -3.6347885,-7.6856446 + 375: -4.2806215,-5.727311 + 376: -0.2186423,-5.581478 + 377: -1.0936422,-3.775858 + 378: -1.5311422,-4.1091914 + 379: -5.1466565,-9.900542 + 380: -4.5841565,-9.713042 + 381: -6.4799895,-11.317209 + 382: -6.1674895,-10.483876 + 383: -6.2924895,-10.504709 + 384: 3.0622063,-6.563768 + 385: 3.3330393,-6.438768 + 386: 3.3747063,-6.2304344 + 387: 3.3747063,-5.8971014 + 388: 6.201501,-6.501268 + 389: 6.284834,-6.313768 + 390: 6.534834,-5.7304344 + 391: 9.4853525,-3.0537877 + 392: 9.7353525,-3.6787877 + 393: 10.068686,-3.5954542 + 394: 10.318686,4.9556866 + 395: 11.027019,5.1848536 + 396: -0.8000804,12.801556 + 397: -0.5084144,12.114056 + 398: 1.2415857,11.572389 + 399: 1.0124197,11.072389 + 400: -7.6812363,11.947389 + 401: -11.863157,10.822389 + 402: -2.93365,11.093222 + - node: + color: '#951710FF' + id: splatter + decals: + 201: -5.144518,-9.631263 + 202: -6.415352,-11.297929 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 65535 + 0,-1: + 0: 65535 + -1,0: + 0: 65535 + 0,0: + 0: 65535 + -4,-3: + 0: 61440 + -4,-1: + 0: 61166 + -4,-2: + 0: 51200 + -3,-3: + 0: 61986 + -3,-2: + 0: 65534 + -3,-1: + 0: 32767 + -3,-4: + 0: 8738 + -2,-3: + 0: 65262 + -2,-2: + 0: 65535 + -2,-1: + 0: 34971 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 1,-3: + 0: 62259 + 1,-2: + 0: 65535 + 1,-1: + 0: 2254 + 2,-3: + 0: 61986 + 2,-2: + 0: 65395 + 2,-1: + 0: 65535 + 2,-4: + 0: 8738 + 3,-3: + 0: 61440 + 3,-2: + 0: 4096 + 3,-1: + 0: 13107 + -4,1: + 0: 61167 + -4,3: + 0: 3980 + -4,0: + 0: 61166 + -4,2: + 0: 61166 + -3,0: + 0: 15163 + -3,1: + 0: 15163 + -3,2: + 0: 65527 + -3,3: + 0: 4095 + -2,2: + 0: 65484 + -2,3: + 0: 53247 + -2,0: + 0: 53199 + -2,1: + 0: 53199 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -1,3: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 65535 + 1,2: + 0: 65425 + 1,3: + 0: 8191 + 2,2: + 0: 65535 + 2,3: + 0: 4095 + 2,0: + 0: 61166 + 2,1: + 0: 61166 + 3,0: + 0: 13107 + 3,1: + 0: 13119 + 3,2: + 0: 13107 + 3,3: + 0: 3841 + -2,5: + 0: 3822 + -1,4: + 0: 65535 + -1,5: + 0: 65535 + -1,6: + 0: 34 + 0,4: + 0: 30583 + 0,5: + 0: 32767 + 0,6: + 0: 34 + 1,5: + 0: 819 + -7,3: + 0: 35976 + -7,0: + 0: 34952 + -7,1: + 0: 34952 + -7,2: + 0: 34816 + -6,1: + 0: 15 + -6,3: + 0: 3840 + -5,1: + 0: 15 + -5,3: + 0: 3840 + -7,-3: + 0: 51200 + -7,-2: + 0: 34952 + -7,-1: + 0: 34952 + -6,-3: + 0: 61440 + -5,-3: + 0: 61440 + -3,-5: + 0: 61952 + -2,-5: + 0: 61440 + -1,-5: + 0: 61440 + 0,-5: + 0: 61440 + 1,-5: + 0: 61440 + 2,-5: + 0: 29184 + 4,-3: + 0: 61440 + 5,-3: + 0: 61440 + 6,-3: + 0: 12544 + 6,-2: + 0: 4369 + 6,-1: + 0: 4369 + 4,1: + 0: 15 + 4,3: + 0: 3840 + 5,1: + 0: 15 + 5,3: + 0: 3840 + 6,0: + 0: 4369 + 6,1: + 0: 4369 + 6,2: + 0: 4369 + 6,3: + 0: 4881 + -2,-4: + 0: 61164 + -1,-4: + 0: 65535 + 0,-4: + 0: 65535 + 1,-4: + 0: 13105 + 1,0: + 0: 7967 + 1,1: + 0: 7967 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: RadiationGridResistance + - type: SpreaderGrid + - type: GasTileOverlay +- proto: AirlockCaptainGlassLocked + entities: + - uid: 126 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform +- proto: AirlockExternal + entities: + - uid: 302 + components: + - pos: -3.5,21.5 + parent: 1 + type: Transform + - uid: 303 + components: + - pos: 2.5,21.5 + parent: 1 + type: Transform +- proto: AirlockGlass + entities: + - uid: 186 + components: + - pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 560 + components: + - pos: -6.5,-6.5 + parent: 1 + type: Transform + - uid: 571 + components: + - pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 572 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 300 + components: + - pos: -6.5,21.5 + parent: 1 + type: Transform + - uid: 301 + components: + - pos: 5.5,21.5 + parent: 1 + type: Transform +- proto: AirlockScience + entities: + - uid: 304 + components: + - pos: -1.5,14.5 + parent: 1 + type: Transform + - uid: 305 + components: + - pos: 0.5,14.5 + parent: 1 + type: Transform + - uid: 650 + components: + - pos: -0.5,-8.5 + parent: 1 + type: Transform +- proto: AirlockScienceGlassLocked + entities: + - uid: 659 + components: + - pos: -2.5,-10.5 + parent: 1 + type: Transform + - uid: 660 + components: + - pos: 1.5,-10.5 + parent: 1 + type: Transform +- proto: AlwaysPoweredLightExterior + entities: + - uid: 135 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 136 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 158 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 820 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,3.5 + parent: 1 + type: Transform + - uid: 865 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,4.5 + parent: 1 + type: Transform +- proto: APCHyperCapacity + entities: + - uid: 84 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform +- proto: BedsheetSpawner + entities: + - uid: 514 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 607 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 669 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 87 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 88 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 89 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 90 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 91 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 92 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 93 + components: + - pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 94 + components: + - pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 95 + components: + - pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 97 + components: + - pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 98 + components: + - pos: -2.5,-2.5 + parent: 1 + type: Transform + - uid: 99 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 100 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 101 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 102 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 103 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 104 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 105 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 106 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 107 + components: + - pos: -2.5,-1.5 + parent: 1 + type: Transform + - uid: 109 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 110 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 111 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 112 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 113 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 114 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 115 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 117 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 118 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 119 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 120 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 121 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 122 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 123 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 124 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 125 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 127 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 128 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 152 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 153 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 832 + components: + - pos: -14.5,3.5 + parent: 1 + type: Transform + - uid: 833 + components: + - pos: -13.5,3.5 + parent: 1 + type: Transform + - uid: 834 + components: + - pos: -13.5,2.5 + parent: 1 + type: Transform + - uid: 835 + components: + - pos: -13.5,1.5 + parent: 1 + type: Transform + - uid: 836 + components: + - pos: -13.5,0.5 + parent: 1 + type: Transform + - uid: 837 + components: + - pos: -13.5,0.5 + parent: 1 + type: Transform + - uid: 838 + components: + - pos: -13.5,-0.5 + parent: 1 + type: Transform + - uid: 839 + components: + - pos: -13.5,-1.5 + parent: 1 + type: Transform + - uid: 840 + components: + - pos: -13.5,-2.5 + parent: 1 + type: Transform + - uid: 841 + components: + - pos: -12.5,-2.5 + parent: 1 + type: Transform + - uid: 842 + components: + - pos: -12.5,-3.5 + parent: 1 + type: Transform + - uid: 843 + components: + - pos: -11.5,-3.5 + parent: 1 + type: Transform + - uid: 844 + components: + - pos: -11.5,-4.5 + parent: 1 + type: Transform + - uid: 845 + components: + - pos: -10.5,-4.5 + parent: 1 + type: Transform + - uid: 846 + components: + - pos: -10.5,-5.5 + parent: 1 + type: Transform + - uid: 847 + components: + - pos: -9.5,-5.5 + parent: 1 + type: Transform + - uid: 848 + components: + - pos: -13.5,4.5 + parent: 1 + type: Transform + - uid: 849 + components: + - pos: -9.5,-6.5 + parent: 1 + type: Transform + - uid: 850 + components: + - pos: -8.5,-6.5 + parent: 1 + type: Transform + - uid: 851 + components: + - pos: -8.5,-7.5 + parent: 1 + type: Transform + - uid: 852 + components: + - pos: -7.5,-7.5 + parent: 1 + type: Transform + - uid: 853 + components: + - pos: -13.5,5.5 + parent: 1 + type: Transform + - uid: 854 + components: + - pos: -13.5,6.5 + parent: 1 + type: Transform + - uid: 855 + components: + - pos: -13.5,7.5 + parent: 1 + type: Transform + - uid: 856 + components: + - pos: -12.5,11.5 + parent: 1 + type: Transform + - uid: 857 + components: + - pos: -11.5,11.5 + parent: 1 + type: Transform + - uid: 858 + components: + - pos: -11.5,12.5 + parent: 1 + type: Transform + - uid: 859 + components: + - pos: 12.5,4.5 + parent: 1 + type: Transform + - uid: 860 + components: + - pos: -10.5,12.5 + parent: 1 + type: Transform + - uid: 861 + components: + - pos: -10.5,13.5 + parent: 1 + type: Transform + - uid: 862 + components: + - pos: -9.5,13.5 + parent: 1 + type: Transform + - uid: 863 + components: + - pos: -8.5,13.5 + parent: 1 + type: Transform + - uid: 864 + components: + - pos: -7.5,13.5 + parent: 1 + type: Transform + - uid: 866 + components: + - pos: 12.5,3.5 + parent: 1 + type: Transform + - uid: 867 + components: + - pos: 12.5,2.5 + parent: 1 + type: Transform + - uid: 868 + components: + - pos: 12.5,1.5 + parent: 1 + type: Transform + - uid: 869 + components: + - pos: 12.5,0.5 + parent: 1 + type: Transform + - uid: 870 + components: + - pos: 12.5,-0.5 + parent: 1 + type: Transform + - uid: 871 + components: + - pos: 12.5,-0.5 + parent: 1 + type: Transform + - uid: 872 + components: + - pos: 12.5,-1.5 + parent: 1 + type: Transform + - uid: 873 + components: + - pos: 12.5,-2.5 + parent: 1 + type: Transform + - uid: 874 + components: + - pos: 11.5,-2.5 + parent: 1 + type: Transform + - uid: 875 + components: + - pos: 11.5,-3.5 + parent: 1 + type: Transform + - uid: 876 + components: + - pos: 10.5,-3.5 + parent: 1 + type: Transform + - uid: 877 + components: + - pos: 10.5,-4.5 + parent: 1 + type: Transform + - uid: 878 + components: + - pos: 9.5,-5.5 + parent: 1 + type: Transform + - uid: 879 + components: + - pos: 9.5,-4.5 + parent: 1 + type: Transform + - uid: 880 + components: + - pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 881 + components: + - pos: 8.5,-6.5 + parent: 1 + type: Transform + - uid: 882 + components: + - pos: 7.5,-6.5 + parent: 1 + type: Transform + - uid: 883 + components: + - pos: 7.5,-7.5 + parent: 1 + type: Transform + - uid: 884 + components: + - pos: 6.5,-7.5 + parent: 1 + type: Transform + - uid: 885 + components: + - pos: 12.5,4.5 + parent: 1 + type: Transform + - uid: 886 + components: + - pos: 12.5,5.5 + parent: 1 + type: Transform + - uid: 887 + components: + - pos: 12.5,6.5 + parent: 1 + type: Transform + - uid: 888 + components: + - pos: 12.5,7.5 + parent: 1 + type: Transform + - uid: 889 + components: + - pos: 12.5,8.5 + parent: 1 + type: Transform + - uid: 890 + components: + - pos: 12.5,9.5 + parent: 1 + type: Transform + - uid: 891 + components: + - pos: 12.5,10.5 + parent: 1 + type: Transform + - uid: 892 + components: + - pos: 11.5,10.5 + parent: 1 + type: Transform + - uid: 893 + components: + - pos: 11.5,11.5 + parent: 1 + type: Transform + - uid: 894 + components: + - pos: 10.5,11.5 + parent: 1 + type: Transform + - uid: 895 + components: + - pos: 10.5,12.5 + parent: 1 + type: Transform + - uid: 896 + components: + - pos: 9.5,12.5 + parent: 1 + type: Transform + - uid: 897 + components: + - pos: 9.5,13.5 + parent: 1 + type: Transform + - uid: 898 + components: + - pos: 8.5,13.5 + parent: 1 + type: Transform + - uid: 899 + components: + - pos: 7.5,13.5 + parent: 1 + type: Transform + - uid: 900 + components: + - pos: 6.5,13.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 74 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 75 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 77 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 737 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 738 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 739 + components: + - pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 740 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 741 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 742 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 743 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 744 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 745 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 746 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 747 + components: + - pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 748 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 749 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 750 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 751 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 752 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 753 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 754 + components: + - pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 755 + components: + - pos: 7.5,0.5 + parent: 1 + type: Transform + - uid: 756 + components: + - pos: -8.5,0.5 + parent: 1 + type: Transform + - uid: 757 + components: + - pos: -7.5,0.5 + parent: 1 + type: Transform + - uid: 758 + components: + - pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 759 + components: + - pos: -5.5,0.5 + parent: 1 + type: Transform + - uid: 760 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 761 + components: + - pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 762 + components: + - pos: -6.5,2.5 + parent: 1 + type: Transform + - uid: 763 + components: + - pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 764 + components: + - pos: -8.5,2.5 + parent: 1 + type: Transform + - uid: 765 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 766 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 767 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform + - uid: 768 + components: + - pos: -7.5,4.5 + parent: 1 + type: Transform + - uid: 769 + components: + - pos: -8.5,4.5 + parent: 1 + type: Transform + - uid: 770 + components: + - pos: -5.5,5.5 + parent: 1 + type: Transform + - uid: 771 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 772 + components: + - pos: -6.5,6.5 + parent: 1 + type: Transform + - uid: 773 + components: + - pos: -7.5,6.5 + parent: 1 + type: Transform + - uid: 774 + components: + - pos: -8.5,6.5 + parent: 1 + type: Transform + - uid: 775 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 776 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 777 + components: + - pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 778 + components: + - pos: 3.5,9.5 + parent: 1 + type: Transform + - uid: 779 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 780 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 781 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 782 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 783 + components: + - pos: -5.5,8.5 + parent: 1 + type: Transform + - uid: 784 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 785 + components: + - pos: -4.5,9.5 + parent: 1 + type: Transform + - uid: 786 + components: + - pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 787 + components: + - pos: -2.5,9.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 24 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 73 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 76 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 78 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 79 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 80 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 81 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 82 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 83 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 159 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 160 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 161 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform +- proto: CarpSpawnerMundane + entities: + - uid: 906 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 907 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform +- proto: Chair + entities: + - uid: 684 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 1 + type: Transform +- proto: ClosetEmergency + entities: + - uid: 808 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - open: True + removedMasks: 20 + type: EntityStorage +- proto: ClothingOuterCoatLab + entities: + - uid: 595 + components: + - pos: -3.1928186,-6.5411644 + parent: 1 + type: Transform +- proto: ComputerBroken + entities: + - uid: 658 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-10.5 + parent: 1 + type: Transform +- proto: CrateEmptySpawner + entities: + - uid: 599 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform +- proto: CrateFilledSpawner + entities: + - uid: 600 + components: + - pos: 2.5,-9.5 + parent: 1 + type: Transform +- proto: CrateSalvageEquipment + entities: + - uid: 668 + components: + - pos: -11.5,4.5 + parent: 1 + type: Transform + - uid: 905 + components: + - pos: -2.5,15.5 + parent: 1 + type: Transform +- proto: CrowbarRed + entities: + - uid: 596 + components: + - pos: -2.5982976,-6.7511067 + parent: 1 + type: Transform +- proto: DonkpocketBoxSpawner + entities: + - uid: 687 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-14.5 + parent: 1 + type: Transform +- proto: EmergencyLight + entities: + - uid: 458 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - startingCharge: 30000 + type: Battery + - type: ActiveEmergencyLight + - uid: 459 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - startingCharge: 30000 + type: Battery + - type: ActiveEmergencyLight + - uid: 460 + components: + - pos: 6.5,13.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - startingCharge: 30000 + type: Battery + - type: ActiveEmergencyLight + - uid: 461 + components: + - pos: -7.5,13.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - startingCharge: 30000 + type: Battery + - type: ActiveEmergencyLight +- proto: FigureSpawner + entities: + - uid: 675 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform +- proto: Flare + entities: + - uid: 809 + components: + - pos: -0.6216893,13.360994 + parent: 1 + type: Transform +- proto: GasPipeBend + entities: + - uid: 147 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 151 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + type: Transform +- proto: GasPipeStraight + entities: + - uid: 145 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 146 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 148 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 149 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 150 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform +- proto: GasVentPump + entities: + - uid: 144 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform +- proto: GasVentScrubber + entities: + - uid: 143 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 129 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 130 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 162 + components: + - pos: 9.5,5.5 + parent: 1 + type: Transform + - uid: 163 + components: + - pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 164 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 166 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 167 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 168 + components: + - pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 169 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 170 + components: + - pos: 9.5,-0.5 + parent: 1 + type: Transform + - uid: 171 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform + - uid: 172 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 173 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 174 + components: + - pos: 7.5,-1.5 + parent: 1 + type: Transform + - uid: 176 + components: + - pos: 7.5,-2.5 + parent: 1 + type: Transform + - uid: 177 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 178 + components: + - pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 179 + components: + - pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 181 + components: + - pos: 9.5,6.5 + parent: 1 + type: Transform + - uid: 183 + components: + - pos: -10.5,1.5 + parent: 1 + type: Transform + - uid: 190 + components: + - pos: 9.5,7.5 + parent: 1 + type: Transform + - uid: 195 + components: + - pos: -10.5,-0.5 + parent: 1 + type: Transform + - uid: 196 + components: + - pos: -9.5,-1.5 + parent: 1 + type: Transform + - uid: 197 + components: + - pos: -9.5,-0.5 + parent: 1 + type: Transform + - uid: 198 + components: + - pos: -8.5,-1.5 + parent: 1 + type: Transform + - uid: 199 + components: + - pos: -8.5,-2.5 + parent: 1 + type: Transform + - uid: 200 + components: + - pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 201 + components: + - pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 202 + components: + - pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 204 + components: + - pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 205 + components: + - pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 206 + components: + - pos: -4.5,-4.5 + parent: 1 + type: Transform + - uid: 207 + components: + - pos: -10.5,0.5 + parent: 1 + type: Transform + - uid: 221 + components: + - pos: -10.5,2.5 + parent: 1 + type: Transform + - uid: 222 + components: + - pos: -10.5,3.5 + parent: 1 + type: Transform + - uid: 223 + components: + - pos: -10.5,4.5 + parent: 1 + type: Transform + - uid: 224 + components: + - pos: -10.5,5.5 + parent: 1 + type: Transform + - uid: 225 + components: + - pos: -10.5,6.5 + parent: 1 + type: Transform + - uid: 226 + components: + - pos: -10.5,7.5 + parent: 1 + type: Transform + - uid: 227 + components: + - pos: -10.5,8.5 + parent: 1 + type: Transform + - uid: 228 + components: + - pos: -9.5,8.5 + parent: 1 + type: Transform + - uid: 229 + components: + - pos: -9.5,9.5 + parent: 1 + type: Transform + - uid: 230 + components: + - pos: -8.5,9.5 + parent: 1 + type: Transform + - uid: 231 + components: + - pos: -8.5,10.5 + parent: 1 + type: Transform + - uid: 232 + components: + - pos: -7.5,10.5 + parent: 1 + type: Transform + - uid: 233 + components: + - pos: -6.5,10.5 + parent: 1 + type: Transform + - uid: 234 + components: + - pos: -5.5,10.5 + parent: 1 + type: Transform + - uid: 235 + components: + - pos: -4.5,10.5 + parent: 1 + type: Transform + - uid: 236 + components: + - pos: -3.5,10.5 + parent: 1 + type: Transform + - uid: 237 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 238 + components: + - pos: 3.5,10.5 + parent: 1 + type: Transform + - uid: 239 + components: + - pos: 4.5,10.5 + parent: 1 + type: Transform + - uid: 240 + components: + - pos: 5.5,10.5 + parent: 1 + type: Transform + - uid: 241 + components: + - pos: 6.5,10.5 + parent: 1 + type: Transform + - uid: 242 + components: + - pos: 7.5,10.5 + parent: 1 + type: Transform + - uid: 243 + components: + - pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 244 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 245 + components: + - pos: 8.5,8.5 + parent: 1 + type: Transform + - uid: 246 + components: + - pos: 9.5,8.5 + parent: 1 + type: Transform + - uid: 292 + components: + - pos: -5.5,22.5 + parent: 1 + type: Transform + - uid: 293 + components: + - pos: -4.5,22.5 + parent: 1 + type: Transform + - uid: 294 + components: + - pos: -5.5,20.5 + parent: 1 + type: Transform + - uid: 295 + components: + - pos: -4.5,20.5 + parent: 1 + type: Transform + - uid: 296 + components: + - pos: 3.5,20.5 + parent: 1 + type: Transform + - uid: 297 + components: + - pos: 4.5,20.5 + parent: 1 + type: Transform + - uid: 298 + components: + - pos: 4.5,22.5 + parent: 1 + type: Transform + - uid: 299 + components: + - pos: 3.5,22.5 + parent: 1 + type: Transform + - uid: 308 + components: + - pos: -0.5,14.5 + parent: 1 + type: Transform + - uid: 311 + components: + - pos: 2.5,18.5 + parent: 1 + type: Transform + - uid: 312 + components: + - pos: -3.5,17.5 + parent: 1 + type: Transform + - uid: 313 + components: + - pos: -3.5,16.5 + parent: 1 + type: Transform + - uid: 316 + components: + - pos: 2.5,17.5 + parent: 1 + type: Transform + - uid: 317 + components: + - pos: 2.5,16.5 + parent: 1 + type: Transform + - uid: 318 + components: + - pos: -3.5,18.5 + parent: 1 + type: Transform + - uid: 325 + components: + - pos: -0.5,23.5 + parent: 1 + type: Transform + - uid: 326 + components: + - pos: 0.5,23.5 + parent: 1 + type: Transform + - uid: 329 + components: + - pos: -1.5,23.5 + parent: 1 + type: Transform + - uid: 438 + components: + - pos: -15.5,14.5 + parent: 1 + type: Transform + - uid: 439 + components: + - pos: -16.5,14.5 + parent: 1 + type: Transform + - uid: 440 + components: + - pos: -17.5,14.5 + parent: 1 + type: Transform + - uid: 441 + components: + - pos: -18.5,14.5 + parent: 1 + type: Transform + - uid: 442 + components: + - pos: -19.5,14.5 + parent: 1 + type: Transform + - uid: 443 + components: + - pos: -20.5,14.5 + parent: 1 + type: Transform + - uid: 446 + components: + - pos: -23.5,14.5 + parent: 1 + type: Transform + - uid: 447 + components: + - pos: -24.5,14.5 + parent: 1 + type: Transform + - uid: 448 + components: + - pos: -24.5,13.5 + parent: 1 + type: Transform + - uid: 449 + components: + - pos: -24.5,12.5 + parent: 1 + type: Transform + - uid: 455 + components: + - pos: -24.5,6.5 + parent: 1 + type: Transform + - uid: 456 + components: + - pos: -24.5,5.5 + parent: 1 + type: Transform + - uid: 457 + components: + - pos: -24.5,4.5 + parent: 1 + type: Transform + - uid: 466 + components: + - pos: -24.5,3.5 + parent: 1 + type: Transform + - uid: 467 + components: + - pos: -24.5,2.5 + parent: 1 + type: Transform + - uid: 468 + components: + - pos: -24.5,1.5 + parent: 1 + type: Transform + - uid: 469 + components: + - pos: -24.5,0.5 + parent: 1 + type: Transform + - uid: 470 + components: + - pos: -24.5,-0.5 + parent: 1 + type: Transform + - uid: 471 + components: + - pos: -24.5,-1.5 + parent: 1 + type: Transform + - uid: 472 + components: + - pos: -24.5,-2.5 + parent: 1 + type: Transform + - uid: 473 + components: + - pos: -24.5,-3.5 + parent: 1 + type: Transform + - uid: 474 + components: + - pos: -24.5,-4.5 + parent: 1 + type: Transform + - uid: 475 + components: + - pos: -24.5,-5.5 + parent: 1 + type: Transform + - uid: 476 + components: + - pos: -24.5,-6.5 + parent: 1 + type: Transform + - uid: 477 + components: + - pos: -24.5,-7.5 + parent: 1 + type: Transform + - uid: 478 + components: + - pos: -24.5,-8.5 + parent: 1 + type: Transform + - uid: 479 + components: + - pos: -23.5,-8.5 + parent: 1 + type: Transform + - uid: 480 + components: + - pos: -22.5,-8.5 + parent: 1 + type: Transform + - uid: 481 + components: + - pos: -21.5,-8.5 + parent: 1 + type: Transform + - uid: 482 + components: + - pos: -20.5,-8.5 + parent: 1 + type: Transform + - uid: 483 + components: + - pos: -19.5,-8.5 + parent: 1 + type: Transform + - uid: 484 + components: + - pos: -18.5,-8.5 + parent: 1 + type: Transform + - uid: 485 + components: + - pos: -17.5,-8.5 + parent: 1 + type: Transform + - uid: 486 + components: + - pos: -16.5,-8.5 + parent: 1 + type: Transform + - uid: 490 + components: + - pos: -12.5,-8.5 + parent: 1 + type: Transform + - uid: 491 + components: + - pos: -11.5,-8.5 + parent: 1 + type: Transform + - uid: 492 + components: + - pos: -10.5,-8.5 + parent: 1 + type: Transform + - uid: 493 + components: + - pos: -10.5,-9.5 + parent: 1 + type: Transform + - uid: 495 + components: + - pos: -10.5,-11.5 + parent: 1 + type: Transform + - uid: 497 + components: + - pos: -10.5,-13.5 + parent: 1 + type: Transform + - uid: 498 + components: + - pos: -10.5,-14.5 + parent: 1 + type: Transform + - uid: 499 + components: + - pos: -10.5,-15.5 + parent: 1 + type: Transform + - uid: 500 + components: + - pos: -10.5,-16.5 + parent: 1 + type: Transform + - uid: 501 + components: + - pos: 9.5,-15.5 + parent: 1 + type: Transform + - uid: 502 + components: + - pos: -9.5,-16.5 + parent: 1 + type: Transform + - uid: 503 + components: + - pos: -8.5,-16.5 + parent: 1 + type: Transform + - uid: 505 + components: + - pos: -6.5,-16.5 + parent: 1 + type: Transform + - uid: 506 + components: + - pos: -5.5,-16.5 + parent: 1 + type: Transform + - uid: 507 + components: + - pos: -4.5,-16.5 + parent: 1 + type: Transform + - uid: 508 + components: + - pos: -3.5,-16.5 + parent: 1 + type: Transform + - uid: 509 + components: + - pos: -2.5,-16.5 + parent: 1 + type: Transform + - uid: 510 + components: + - pos: -1.5,-16.5 + parent: 1 + type: Transform + - uid: 511 + components: + - pos: -0.5,-16.5 + parent: 1 + type: Transform + - uid: 512 + components: + - pos: 0.5,-16.5 + parent: 1 + type: Transform + - uid: 513 + components: + - pos: 1.5,-16.5 + parent: 1 + type: Transform + - uid: 515 + components: + - pos: 3.5,-16.5 + parent: 1 + type: Transform + - uid: 516 + components: + - pos: 4.5,-16.5 + parent: 1 + type: Transform + - uid: 517 + components: + - pos: 5.5,-16.5 + parent: 1 + type: Transform + - uid: 518 + components: + - pos: 6.5,-16.5 + parent: 1 + type: Transform + - uid: 519 + components: + - pos: 7.5,-16.5 + parent: 1 + type: Transform + - uid: 520 + components: + - pos: 8.5,-16.5 + parent: 1 + type: Transform + - uid: 521 + components: + - pos: 9.5,-16.5 + parent: 1 + type: Transform + - uid: 522 + components: + - pos: 9.5,-14.5 + parent: 1 + type: Transform + - uid: 524 + components: + - pos: 9.5,-12.5 + parent: 1 + type: Transform + - uid: 525 + components: + - pos: 9.5,-11.5 + parent: 1 + type: Transform + - uid: 526 + components: + - pos: 9.5,-10.5 + parent: 1 + type: Transform + - uid: 530 + components: + - pos: 11.5,-8.5 + parent: 1 + type: Transform + - uid: 531 + components: + - pos: 12.5,-8.5 + parent: 1 + type: Transform + - uid: 533 + components: + - pos: 14.5,-8.5 + parent: 1 + type: Transform + - uid: 534 + components: + - pos: 15.5,-8.5 + parent: 1 + type: Transform + - uid: 535 + components: + - pos: 16.5,-8.5 + parent: 1 + type: Transform + - uid: 536 + components: + - pos: 17.5,-8.5 + parent: 1 + type: Transform + - uid: 537 + components: + - pos: 18.5,-8.5 + parent: 1 + type: Transform + - uid: 539 + components: + - pos: 20.5,-8.5 + parent: 1 + type: Transform + - uid: 540 + components: + - pos: 21.5,-8.5 + parent: 1 + type: Transform + - uid: 541 + components: + - pos: 22.5,-8.5 + parent: 1 + type: Transform + - uid: 542 + components: + - pos: 23.5,-8.5 + parent: 1 + type: Transform + - uid: 543 + components: + - pos: 24.5,-8.5 + parent: 1 + type: Transform + - uid: 544 + components: + - pos: 23.5,4.5 + parent: 1 + type: Transform + - uid: 545 + components: + - pos: 24.5,-7.5 + parent: 1 + type: Transform + - uid: 546 + components: + - pos: 24.5,-6.5 + parent: 1 + type: Transform + - uid: 547 + components: + - pos: 24.5,-5.5 + parent: 1 + type: Transform + - uid: 548 + components: + - pos: 24.5,-4.5 + parent: 1 + type: Transform + - uid: 549 + components: + - pos: 24.5,-3.5 + parent: 1 + type: Transform + - uid: 550 + components: + - pos: 24.5,-2.5 + parent: 1 + type: Transform + - uid: 551 + components: + - pos: 24.5,-1.5 + parent: 1 + type: Transform + - uid: 552 + components: + - pos: 24.5,-0.5 + parent: 1 + type: Transform + - uid: 553 + components: + - pos: 24.5,0.5 + parent: 1 + type: Transform + - uid: 554 + components: + - pos: 24.5,1.5 + parent: 1 + type: Transform + - uid: 555 + components: + - pos: 24.5,2.5 + parent: 1 + type: Transform + - uid: 556 + components: + - pos: 24.5,3.5 + parent: 1 + type: Transform + - uid: 557 + components: + - pos: 24.5,4.5 + parent: 1 + type: Transform + - uid: 567 + components: + - pos: 24.5,5.5 + parent: 1 + type: Transform + - uid: 568 + components: + - pos: 24.5,6.5 + parent: 1 + type: Transform + - uid: 569 + components: + - pos: 24.5,7.5 + parent: 1 + type: Transform + - uid: 570 + components: + - pos: 24.5,8.5 + parent: 1 + type: Transform + - uid: 573 + components: + - pos: 24.5,11.5 + parent: 1 + type: Transform + - uid: 574 + components: + - pos: 24.5,12.5 + parent: 1 + type: Transform + - uid: 575 + components: + - pos: 24.5,13.5 + parent: 1 + type: Transform + - uid: 576 + components: + - pos: 24.5,14.5 + parent: 1 + type: Transform + - uid: 578 + components: + - pos: 23.5,14.5 + parent: 1 + type: Transform + - uid: 579 + components: + - pos: 22.5,14.5 + parent: 1 + type: Transform + - uid: 580 + components: + - pos: 21.5,14.5 + parent: 1 + type: Transform + - uid: 581 + components: + - pos: 20.5,14.5 + parent: 1 + type: Transform + - uid: 582 + components: + - pos: 19.5,14.5 + parent: 1 + type: Transform + - uid: 583 + components: + - pos: 18.5,14.5 + parent: 1 + type: Transform + - uid: 585 + components: + - pos: 16.5,14.5 + parent: 1 + type: Transform + - uid: 586 + components: + - pos: 15.5,14.5 + parent: 1 + type: Transform + - uid: 587 + components: + - pos: 14.5,14.5 + parent: 1 + type: Transform + - uid: 588 + components: + - pos: 13.5,14.5 + parent: 1 + type: Transform + - uid: 589 + components: + - pos: 12.5,14.5 + parent: 1 + type: Transform + - uid: 590 + components: + - pos: 11.5,14.5 + parent: 1 + type: Transform + - uid: 647 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 648 + components: + - pos: -1.5,-8.5 + parent: 1 + type: Transform + - uid: 661 + components: + - pos: 2.5,-11.5 + parent: 1 + type: Transform + - uid: 662 + components: + - pos: 4.5,-11.5 + parent: 1 + type: Transform +- proto: HighSecDoor + entities: + - uid: 69 + components: + - pos: 0.5,10.5 + parent: 1 + type: Transform + - uid: 86 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 685 + components: + - pos: -1.5,-14.5 + parent: 1 + type: Transform +- proto: LeftArmSkeleton + entities: + - uid: 591 + components: + - pos: -3.1094856,-6.520331 + parent: 1 + type: Transform +- proto: LeftLegSkeleton + entities: + - uid: 592 + components: + - pos: -3.1094856,-6.645331 + parent: 1 + type: Transform +- proto: MachineArtifactAnalyzer + entities: + - uid: 651 + components: + - pos: -4.5,-12.5 + parent: 1 + type: Transform +- proto: MaintenanceToolSpawner + entities: + - uid: 609 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 667 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform +- proto: MaintenanceWeaponSpawner + entities: + - uid: 606 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 696 + components: + - pos: -12.5,5.5 + parent: 1 + type: Transform +- proto: Paper + entities: + - uid: 902 + components: + - pos: -2.157085,-5.9331717 + parent: 1 + type: Transform + - content: > + We don't know what happened, all our turrets blew at once then suddenly a breach opened. Steve and Tim got sucked out immediatly and before we knew it there were freaking ninjas breaking in! + + Our forces held them at bay whilst us in science are holed up here, all I can hear is gunfire. We've secured the products of our research but I fear we're going down with this station. Not many of us left now. + type: Paper +- proto: PartRodMetal1 + entities: + - uid: 462 + components: + - pos: -12.5937195,8.6163 + parent: 1 + type: Transform + - uid: 463 + components: + - pos: -13.1562195,10.657967 + parent: 1 + type: Transform + - uid: 464 + components: + - pos: -13.802053,9.806854 + parent: 1 + type: Transform +- proto: Pen + entities: + - uid: 901 + components: + - pos: -2.4394016,-5.5581717 + parent: 1 + type: Transform +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 653 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-11.5 + parent: 1 + type: Transform + - uid: 654 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-11.5 + parent: 1 + type: Transform +- proto: PottedPlantRandomPlastic + entities: + - uid: 487 + components: + - pos: -10.5,13.5 + parent: 1 + type: Transform + - uid: 488 + components: + - pos: -13.5,-2.5 + parent: 1 + type: Transform + - uid: 489 + components: + - pos: 9.5,13.5 + parent: 1 + type: Transform + - uid: 494 + components: + - pos: 12.5,-2.5 + parent: 1 + type: Transform +- proto: Poweredlight + entities: + - uid: 676 + components: + - pos: 3.5,-9.5 + parent: 1 + type: Transform + - uid: 678 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 1 + type: Transform + - uid: 679 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 1 + type: Transform +- proto: PoweredlightEmpty + entities: + - uid: 677 + components: + - pos: -4.5,-9.5 + parent: 1 + type: Transform +- proto: PoweredSmallLight + entities: + - uid: 790 + components: + - pos: -9.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 791 + components: + - pos: 8.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 792 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 793 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 794 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 795 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 796 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: Rack + entities: + - uid: 652 + components: + - pos: 4.5,-9.5 + parent: 1 + type: Transform +- proto: RandomAmmoBox + entities: + - uid: 703 + components: + - pos: 1.5,15.5 + parent: 1 + type: Transform +- proto: RandomArtifactSpawner + entities: + - uid: 608 + components: + - pos: -4.5,-12.5 + parent: 1 + type: Transform +- proto: RandomBoards + entities: + - uid: 610 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform +- proto: RandomBook + entities: + - uid: 670 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 686 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform +- proto: RandomScienceCorpseSpawner + entities: + - uid: 697 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 698 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 1 + type: Transform + - uid: 699 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,12.5 + parent: 1 + type: Transform + - uid: 700 + components: + - pos: 11.5,5.5 + parent: 1 + type: Transform +- proto: RandomVending + entities: + - uid: 903 + components: + - pos: -1.5,-9.5 + parent: 1 + type: Transform +- proto: ReinforcedGirder + entities: + - uid: 212 + components: + - pos: -14.5,10.5 + parent: 1 + type: Transform + - uid: 465 + components: + - pos: -13.5,8.5 + parent: 1 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 2 + components: + - pos: 9.5,6.5 + parent: 1 + type: Transform + - uid: 116 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 131 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 132 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 154 + components: + - pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 155 + components: + - pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 156 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 157 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 175 + components: + - pos: 7.5,-1.5 + parent: 1 + type: Transform + - uid: 180 + components: + - pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 182 + components: + - pos: 9.5,5.5 + parent: 1 + type: Transform + - uid: 184 + components: + - pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 185 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 187 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform + - uid: 188 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 191 + components: + - pos: 7.5,-2.5 + parent: 1 + type: Transform + - uid: 192 + components: + - pos: 9.5,-0.5 + parent: 1 + type: Transform + - uid: 193 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 194 + components: + - pos: 9.5,7.5 + parent: 1 + type: Transform + - uid: 208 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 209 + components: + - pos: -4.5,-4.5 + parent: 1 + type: Transform + - uid: 210 + components: + - pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 211 + components: + - pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 213 + components: + - pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 214 + components: + - pos: -10.5,0.5 + parent: 1 + type: Transform + - uid: 215 + components: + - pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 216 + components: + - pos: -8.5,-2.5 + parent: 1 + type: Transform + - uid: 217 + components: + - pos: -8.5,-1.5 + parent: 1 + type: Transform + - uid: 218 + components: + - pos: -9.5,-1.5 + parent: 1 + type: Transform + - uid: 219 + components: + - pos: -9.5,-0.5 + parent: 1 + type: Transform + - uid: 220 + components: + - pos: -10.5,-0.5 + parent: 1 + type: Transform + - uid: 247 + components: + - pos: -10.5,1.5 + parent: 1 + type: Transform + - uid: 248 + components: + - pos: -10.5,2.5 + parent: 1 + type: Transform + - uid: 249 + components: + - pos: -10.5,3.5 + parent: 1 + type: Transform + - uid: 250 + components: + - pos: -10.5,4.5 + parent: 1 + type: Transform + - uid: 251 + components: + - pos: -10.5,5.5 + parent: 1 + type: Transform + - uid: 252 + components: + - pos: -10.5,6.5 + parent: 1 + type: Transform + - uid: 253 + components: + - pos: -10.5,7.5 + parent: 1 + type: Transform + - uid: 254 + components: + - pos: -10.5,8.5 + parent: 1 + type: Transform + - uid: 255 + components: + - pos: -9.5,8.5 + parent: 1 + type: Transform + - uid: 256 + components: + - pos: -9.5,9.5 + parent: 1 + type: Transform + - uid: 257 + components: + - pos: -8.5,9.5 + parent: 1 + type: Transform + - uid: 258 + components: + - pos: -8.5,10.5 + parent: 1 + type: Transform + - uid: 259 + components: + - pos: -7.5,10.5 + parent: 1 + type: Transform + - uid: 260 + components: + - pos: -6.5,10.5 + parent: 1 + type: Transform + - uid: 261 + components: + - pos: -5.5,10.5 + parent: 1 + type: Transform + - uid: 262 + components: + - pos: -4.5,10.5 + parent: 1 + type: Transform + - uid: 263 + components: + - pos: -3.5,10.5 + parent: 1 + type: Transform + - uid: 264 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 265 + components: + - pos: 3.5,10.5 + parent: 1 + type: Transform + - uid: 266 + components: + - pos: 4.5,10.5 + parent: 1 + type: Transform + - uid: 267 + components: + - pos: 5.5,10.5 + parent: 1 + type: Transform + - uid: 268 + components: + - pos: 6.5,10.5 + parent: 1 + type: Transform + - uid: 269 + components: + - pos: 7.5,10.5 + parent: 1 + type: Transform + - uid: 270 + components: + - pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 271 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 272 + components: + - pos: 8.5,8.5 + parent: 1 + type: Transform + - uid: 273 + components: + - pos: 9.5,8.5 + parent: 1 + type: Transform + - uid: 327 + components: + - pos: 3.5,20.5 + parent: 1 + type: Transform + - uid: 330 + components: + - pos: 4.5,20.5 + parent: 1 + type: Transform + - uid: 331 + components: + - pos: 3.5,22.5 + parent: 1 + type: Transform + - uid: 332 + components: + - pos: 4.5,22.5 + parent: 1 + type: Transform + - uid: 333 + components: + - pos: 2.5,18.5 + parent: 1 + type: Transform + - uid: 334 + components: + - pos: 2.5,17.5 + parent: 1 + type: Transform + - uid: 335 + components: + - pos: 2.5,16.5 + parent: 1 + type: Transform + - uid: 336 + components: + - pos: -3.5,16.5 + parent: 1 + type: Transform + - uid: 337 + components: + - pos: -3.5,17.5 + parent: 1 + type: Transform + - uid: 338 + components: + - pos: -3.5,18.5 + parent: 1 + type: Transform + - uid: 339 + components: + - pos: -4.5,20.5 + parent: 1 + type: Transform + - uid: 340 + components: + - pos: -5.5,20.5 + parent: 1 + type: Transform + - uid: 341 + components: + - pos: -5.5,22.5 + parent: 1 + type: Transform + - uid: 342 + components: + - pos: -4.5,22.5 + parent: 1 + type: Transform + - uid: 343 + components: + - pos: 0.5,23.5 + parent: 1 + type: Transform + - uid: 344 + components: + - pos: -0.5,23.5 + parent: 1 + type: Transform + - uid: 345 + components: + - pos: -1.5,23.5 + parent: 1 + type: Transform + - uid: 350 + components: + - pos: -0.5,14.5 + parent: 1 + type: Transform + - uid: 646 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 649 + components: + - pos: -1.5,-8.5 + parent: 1 + type: Transform + - uid: 663 + components: + - pos: 2.5,-11.5 + parent: 1 + type: Transform + - uid: 665 + components: + - pos: 4.5,-11.5 + parent: 1 + type: Transform +- proto: RightArmSkeleton + entities: + - uid: 593 + components: + - pos: -3.4011526,-6.520331 + parent: 1 + type: Transform +- proto: RightLegSkeleton + entities: + - uid: 594 + components: + - pos: -3.2344856,-6.582831 + parent: 1 + type: Transform +- proto: SalvageCanisterSpawner + entities: + - uid: 611 + components: + - pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 612 + components: + - pos: 2.5,-13.5 + parent: 1 + type: Transform + - uid: 613 + components: + - pos: 4.5,-13.5 + parent: 1 + type: Transform + - uid: 614 + components: + - pos: 2.5,-14.5 + parent: 1 + type: Transform + - uid: 615 + components: + - pos: 3.5,-14.5 + parent: 1 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 815 + components: + - pos: 10.5,4.5 + parent: 1 + type: Transform + - uid: 904 + components: + - pos: 0.5,-9.5 + parent: 1 + type: Transform +- proto: SalvageMobSpawner75 + entities: + - uid: 707 + components: + - pos: -11.5,10.5 + parent: 1 + type: Transform + - uid: 821 + components: + - pos: 5.5,12.5 + parent: 1 + type: Transform +- proto: SalvagePartsSpawnerLow + entities: + - uid: 666 + components: + - pos: 4.5,-9.5 + parent: 1 + type: Transform + - uid: 702 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform +- proto: SalvagePartsSpawnerMid + entities: + - uid: 496 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 504 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform +- proto: SalvagePartsSpawnerSubSpace + entities: + - uid: 688 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 695 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 701 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform +- proto: ShardGlass + entities: + - uid: 797 + components: + - rot: 1.5707963267948966 rad + pos: -12.544347,8.048429 + parent: 1 + type: Transform + - uid: 798 + components: + - rot: 1.5707963267948966 rad + pos: -12.044347,9.298429 + parent: 1 + type: Transform +- proto: ShardGlassPlasma + entities: + - uid: 655 + components: + - pos: -4.832018,-10.402096 + parent: 1 + type: Transform + - uid: 656 + components: + - pos: -4.248685,-9.652096 + parent: 1 + type: Transform + - uid: 657 + components: + - pos: -3.644518,-10.235429 + parent: 1 + type: Transform +- proto: SignAnomaly + entities: + - uid: 673 + components: + - pos: -2.5,-9.5 + parent: 1 + type: Transform + - uid: 674 + components: + - pos: -2.5,-11.5 + parent: 1 + type: Transform +- proto: SignCanisters + entities: + - uid: 671 + components: + - pos: 1.5,-11.5 + parent: 1 + type: Transform + - uid: 672 + components: + - pos: 1.5,-9.5 + parent: 1 + type: Transform +- proto: SmallLight + entities: + - uid: 788 + components: + - pos: 1.5,22.5 + parent: 1 + type: Transform + - uid: 789 + components: + - pos: -2.5,22.5 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 72 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform +- proto: SolarPanel + entities: + - uid: 711 + components: + - pos: -8.5,6.5 + parent: 1 + type: Transform + - uid: 712 + components: + - pos: -8.5,4.5 + parent: 1 + type: Transform + - uid: 713 + components: + - pos: -8.5,2.5 + parent: 1 + type: Transform + - uid: 714 + components: + - pos: -7.5,0.5 + parent: 1 + type: Transform + - uid: 715 + components: + - pos: -6.5,2.5 + parent: 1 + type: Transform + - uid: 725 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 726 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 727 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 728 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 729 + components: + - pos: 7.5,0.5 + parent: 1 + type: Transform +- proto: SolarPanelBroken + entities: + - uid: 716 + components: + - pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 717 + components: + - pos: -8.5,0.5 + parent: 1 + type: Transform + - uid: 718 + components: + - pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 719 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform + - uid: 720 + components: + - pos: -7.5,4.5 + parent: 1 + type: Transform + - uid: 721 + components: + - pos: -6.5,6.5 + parent: 1 + type: Transform + - uid: 722 + components: + - pos: -7.5,6.5 + parent: 1 + type: Transform + - uid: 730 + components: + - pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 731 + components: + - pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 732 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 733 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 734 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 735 + components: + - pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 736 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform +- proto: SolarTracker + entities: + - uid: 723 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 724 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform +- proto: SpaceTickSpawnerNPC + entities: + - uid: 822 + components: + - pos: -4.5,21.5 + parent: 1 + type: Transform + - uid: 823 + components: + - pos: 1.5,18.5 + parent: 1 + type: Transform + - uid: 824 + components: + - pos: -3.5,12.5 + parent: 1 + type: Transform + - uid: 825 + components: + - pos: -13.5,3.5 + parent: 1 + type: Transform + - uid: 826 + components: + - pos: -9.5,-2.5 + parent: 1 + type: Transform + - uid: 827 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 828 + components: + - pos: -1.5,-12.5 + parent: 1 + type: Transform + - uid: 829 + components: + - pos: -5.5,-9.5 + parent: 1 + type: Transform + - uid: 830 + components: + - pos: 11.5,-0.5 + parent: 1 + type: Transform + - uid: 831 + components: + - pos: 10.5,5.5 + parent: 1 + type: Transform +- proto: SpawnMobBear + entities: + - uid: 817 + components: + - pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 818 + components: + - pos: -11.5,-2.5 + parent: 1 + type: Transform + - uid: 819 + components: + - pos: 6.5,-5.5 + parent: 1 + type: Transform +- proto: SpawnMobBearSalvage + entities: + - uid: 605 + components: + - pos: -8.5,-5.5 + parent: 1 + type: Transform +- proto: SubstationBasic + entities: + - uid: 25 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform +- proto: Table + entities: + - uid: 680 + components: + - pos: -0.5,-14.5 + parent: 1 + type: Transform + - uid: 681 + components: + - pos: 0.5,-14.5 + parent: 1 + type: Transform + - uid: 682 + components: + - pos: -1.5,-14.5 + parent: 1 + type: Transform + - uid: 683 + components: + - pos: -0.5,-12.5 + parent: 1 + type: Transform + - uid: 811 + components: + - pos: 10.5,6.5 + parent: 1 + type: Transform + - uid: 812 + components: + - pos: 11.5,6.5 + parent: 1 + type: Transform + - uid: 813 + components: + - pos: 12.5,4.5 + parent: 1 + type: Transform + - uid: 814 + components: + - pos: 11.5,4.5 + parent: 1 + type: Transform +- proto: TablePlasmaGlass + entities: + - uid: 598 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform +- proto: TableReinforced + entities: + - uid: 96 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 108 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 137 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 138 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 139 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 140 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 141 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 142 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 523 + components: + - pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 527 + components: + - pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 528 + components: + - pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 529 + components: + - pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 532 + components: + - pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 538 + components: + - pos: -4.5,-5.5 + parent: 1 + type: Transform + - uid: 558 + components: + - pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 562 + components: + - pos: -12.5,4.5 + parent: 1 + type: Transform + - uid: 564 + components: + - pos: -13.5,4.5 + parent: 1 + type: Transform + - uid: 565 + components: + - pos: -11.5,6.5 + parent: 1 + type: Transform + - uid: 566 + components: + - pos: -12.5,6.5 + parent: 1 + type: Transform + - uid: 584 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 597 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 601 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 602 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 689 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 690 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 691 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 692 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 694 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform +- proto: TorsoSkeleton + entities: + - uid: 577 + components: + - pos: -3.1928186,-6.5411644 + parent: 1 + type: Transform +- proto: VendingMachineSciDrobe + entities: + - uid: 559 + components: + - flags: SessionSpecific + type: MetaData + - pos: 4.5,-7.5 + parent: 1 + type: Transform +- proto: WallReinforced + entities: + - uid: 3 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 4 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 5 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 6 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 7 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 8 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 9 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 10 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 11 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 12 + components: + - pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 13 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 14 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 15 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 16 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 17 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 18 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 19 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 20 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 21 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 22 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 23 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 26 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 27 + components: + - pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 28 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 29 + components: + - pos: -2.5,8.5 + parent: 1 + type: Transform + - uid: 30 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 31 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 32 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 33 + components: + - pos: -4.5,8.5 + parent: 1 + type: Transform + - uid: 34 + components: + - pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 35 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 36 + components: + - pos: -4.5,5.5 + parent: 1 + type: Transform + - uid: 37 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 38 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 39 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 40 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 41 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 42 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 43 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 44 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 45 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 46 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 47 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 48 + components: + - pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 49 + components: + - pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 50 + components: + - pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 51 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 52 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 53 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 54 + components: + - pos: 1.5,-4.5 + parent: 1 + type: Transform + - uid: 55 + components: + - pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 56 + components: + - pos: 1.5,10.5 + parent: 1 + type: Transform + - uid: 57 + components: + - pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 58 + components: + - pos: -2.5,-4.5 + parent: 1 + type: Transform + - uid: 59 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 60 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 61 + components: + - pos: -4.5,-3.5 + parent: 1 + type: Transform + - uid: 62 + components: + - pos: -4.5,-2.5 + parent: 1 + type: Transform + - uid: 63 + components: + - pos: -4.5,-1.5 + parent: 1 + type: Transform + - uid: 64 + components: + - pos: -4.5,-0.5 + parent: 1 + type: Transform + - uid: 65 + components: + - pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 66 + components: + - pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 67 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 68 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 70 + components: + - pos: -0.5,10.5 + parent: 1 + type: Transform + - uid: 71 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 85 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 165 + components: + - pos: 5.5,-4.5 + parent: 1 + type: Transform + - uid: 189 + components: + - pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 203 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 274 + components: + - pos: -3.5,14.5 + parent: 1 + type: Transform + - uid: 275 + components: + - pos: -4.5,14.5 + parent: 1 + type: Transform + - uid: 276 + components: + - pos: -5.5,14.5 + parent: 1 + type: Transform + - uid: 277 + components: + - pos: -6.5,14.5 + parent: 1 + type: Transform + - uid: 278 + components: + - pos: -7.5,14.5 + parent: 1 + type: Transform + - uid: 279 + components: + - pos: -8.5,14.5 + parent: 1 + type: Transform + - uid: 280 + components: + - pos: -9.5,14.5 + parent: 1 + type: Transform + - uid: 281 + components: + - pos: -10.5,14.5 + parent: 1 + type: Transform + - uid: 282 + components: + - pos: -11.5,14.5 + parent: 1 + type: Transform + - uid: 283 + components: + - pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 284 + components: + - pos: 3.5,14.5 + parent: 1 + type: Transform + - uid: 285 + components: + - pos: 4.5,14.5 + parent: 1 + type: Transform + - uid: 286 + components: + - pos: 5.5,14.5 + parent: 1 + type: Transform + - uid: 287 + components: + - pos: 6.5,14.5 + parent: 1 + type: Transform + - uid: 288 + components: + - pos: 7.5,14.5 + parent: 1 + type: Transform + - uid: 289 + components: + - pos: 8.5,14.5 + parent: 1 + type: Transform + - uid: 290 + components: + - pos: 9.5,14.5 + parent: 1 + type: Transform + - uid: 291 + components: + - pos: 10.5,14.5 + parent: 1 + type: Transform + - uid: 306 + components: + - pos: -2.5,14.5 + parent: 1 + type: Transform + - uid: 307 + components: + - pos: 1.5,14.5 + parent: 1 + type: Transform + - uid: 309 + components: + - pos: 2.5,15.5 + parent: 1 + type: Transform + - uid: 310 + components: + - pos: -3.5,19.5 + parent: 1 + type: Transform + - uid: 314 + components: + - pos: -3.5,15.5 + parent: 1 + type: Transform + - uid: 315 + components: + - pos: 2.5,19.5 + parent: 1 + type: Transform + - uid: 319 + components: + - pos: 2.5,20.5 + parent: 1 + type: Transform + - uid: 320 + components: + - pos: -3.5,20.5 + parent: 1 + type: Transform + - uid: 321 + components: + - pos: -3.5,22.5 + parent: 1 + type: Transform + - uid: 322 + components: + - pos: -3.5,23.5 + parent: 1 + type: Transform + - uid: 323 + components: + - pos: 2.5,23.5 + parent: 1 + type: Transform + - uid: 324 + components: + - pos: 1.5,23.5 + parent: 1 + type: Transform + - uid: 328 + components: + - pos: -2.5,23.5 + parent: 1 + type: Transform + - uid: 346 + components: + - pos: -6.5,20.5 + parent: 1 + type: Transform + - uid: 347 + components: + - pos: -6.5,22.5 + parent: 1 + type: Transform + - uid: 348 + components: + - pos: 5.5,20.5 + parent: 1 + type: Transform + - uid: 349 + components: + - pos: 5.5,22.5 + parent: 1 + type: Transform + - uid: 351 + components: + - pos: 3.5,15.5 + parent: 1 + type: Transform + - uid: 352 + components: + - pos: 4.5,15.5 + parent: 1 + type: Transform + - uid: 353 + components: + - pos: -5.5,15.5 + parent: 1 + type: Transform + - uid: 354 + components: + - pos: -4.5,15.5 + parent: 1 + type: Transform + - uid: 355 + components: + - pos: 10.5,13.5 + parent: 1 + type: Transform + - uid: 356 + components: + - pos: 11.5,13.5 + parent: 1 + type: Transform + - uid: 357 + components: + - pos: 11.5,12.5 + parent: 1 + type: Transform + - uid: 358 + components: + - pos: 12.5,12.5 + parent: 1 + type: Transform + - uid: 359 + components: + - pos: 12.5,11.5 + parent: 1 + type: Transform + - uid: 360 + components: + - pos: 13.5,11.5 + parent: 1 + type: Transform + - uid: 361 + components: + - pos: 13.5,10.5 + parent: 1 + type: Transform + - uid: 362 + components: + - pos: 13.5,9.5 + parent: 1 + type: Transform + - uid: 363 + components: + - pos: 13.5,8.5 + parent: 1 + type: Transform + - uid: 364 + components: + - pos: 13.5,7.5 + parent: 1 + type: Transform + - uid: 365 + components: + - pos: 13.5,6.5 + parent: 1 + type: Transform + - uid: 366 + components: + - pos: 13.5,5.5 + parent: 1 + type: Transform + - uid: 367 + components: + - pos: 13.5,4.5 + parent: 1 + type: Transform + - uid: 368 + components: + - pos: 13.5,3.5 + parent: 1 + type: Transform + - uid: 369 + components: + - pos: 13.5,2.5 + parent: 1 + type: Transform + - uid: 370 + components: + - pos: 13.5,1.5 + parent: 1 + type: Transform + - uid: 371 + components: + - pos: 13.5,0.5 + parent: 1 + type: Transform + - uid: 372 + components: + - pos: 13.5,-0.5 + parent: 1 + type: Transform + - uid: 373 + components: + - pos: 13.5,-1.5 + parent: 1 + type: Transform + - uid: 374 + components: + - pos: 13.5,-2.5 + parent: 1 + type: Transform + - uid: 375 + components: + - pos: 13.5,-3.5 + parent: 1 + type: Transform + - uid: 376 + components: + - pos: 12.5,-3.5 + parent: 1 + type: Transform + - uid: 377 + components: + - pos: 12.5,-4.5 + parent: 1 + type: Transform + - uid: 378 + components: + - pos: 11.5,-4.5 + parent: 1 + type: Transform + - uid: 379 + components: + - pos: 11.5,-5.5 + parent: 1 + type: Transform + - uid: 380 + components: + - pos: 10.5,-5.5 + parent: 1 + type: Transform + - uid: 381 + components: + - pos: 10.5,-6.5 + parent: 1 + type: Transform + - uid: 382 + components: + - pos: 9.5,-6.5 + parent: 1 + type: Transform + - uid: 383 + components: + - pos: 9.5,-7.5 + parent: 1 + type: Transform + - uid: 384 + components: + - pos: 8.5,-7.5 + parent: 1 + type: Transform + - uid: 385 + components: + - pos: 8.5,-8.5 + parent: 1 + type: Transform + - uid: 386 + components: + - pos: 7.5,-8.5 + parent: 1 + type: Transform + - uid: 387 + components: + - pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 388 + components: + - pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 389 + components: + - pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 390 + components: + - pos: 3.5,-8.5 + parent: 1 + type: Transform + - uid: 391 + components: + - pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 392 + components: + - pos: 1.5,-8.5 + parent: 1 + type: Transform + - uid: 393 + components: + - pos: 1.5,-9.5 + parent: 1 + type: Transform + - uid: 394 + components: + - pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 395 + components: + - pos: -2.5,-9.5 + parent: 1 + type: Transform + - uid: 396 + components: + - pos: -2.5,-8.5 + parent: 1 + type: Transform + - uid: 397 + components: + - pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 398 + components: + - pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 399 + components: + - pos: -5.5,-8.5 + parent: 1 + type: Transform + - uid: 400 + components: + - pos: -6.5,-8.5 + parent: 1 + type: Transform + - uid: 401 + components: + - pos: -7.5,-8.5 + parent: 1 + type: Transform + - uid: 402 + components: + - pos: -8.5,-8.5 + parent: 1 + type: Transform + - uid: 403 + components: + - pos: -9.5,-8.5 + parent: 1 + type: Transform + - uid: 404 + components: + - pos: -9.5,-7.5 + parent: 1 + type: Transform + - uid: 405 + components: + - pos: -10.5,-7.5 + parent: 1 + type: Transform + - uid: 406 + components: + - pos: -10.5,-6.5 + parent: 1 + type: Transform + - uid: 407 + components: + - pos: -11.5,-6.5 + parent: 1 + type: Transform + - uid: 408 + components: + - pos: -11.5,-5.5 + parent: 1 + type: Transform + - uid: 409 + components: + - pos: -12.5,-5.5 + parent: 1 + type: Transform + - uid: 410 + components: + - pos: -12.5,-4.5 + parent: 1 + type: Transform + - uid: 411 + components: + - pos: -13.5,-4.5 + parent: 1 + type: Transform + - uid: 412 + components: + - pos: -13.5,-3.5 + parent: 1 + type: Transform + - uid: 413 + components: + - pos: -14.5,-3.5 + parent: 1 + type: Transform + - uid: 414 + components: + - pos: -14.5,-2.5 + parent: 1 + type: Transform + - uid: 415 + components: + - pos: -14.5,-1.5 + parent: 1 + type: Transform + - uid: 416 + components: + - pos: -14.5,-0.5 + parent: 1 + type: Transform + - uid: 417 + components: + - pos: -14.5,0.5 + parent: 1 + type: Transform + - uid: 418 + components: + - pos: -14.5,1.5 + parent: 1 + type: Transform + - uid: 419 + components: + - pos: -14.5,2.5 + parent: 1 + type: Transform + - uid: 420 + components: + - pos: -14.5,3.5 + parent: 1 + type: Transform + - uid: 421 + components: + - pos: -14.5,4.5 + parent: 1 + type: Transform + - uid: 422 + components: + - pos: -14.5,5.5 + parent: 1 + type: Transform + - uid: 423 + components: + - pos: -14.5,6.5 + parent: 1 + type: Transform + - uid: 424 + components: + - pos: -14.5,7.5 + parent: 1 + type: Transform + - uid: 428 + components: + - pos: -14.5,11.5 + parent: 1 + type: Transform + - uid: 429 + components: + - pos: -13.5,11.5 + parent: 1 + type: Transform + - uid: 430 + components: + - pos: -13.5,12.5 + parent: 1 + type: Transform + - uid: 431 + components: + - pos: -12.5,12.5 + parent: 1 + type: Transform + - uid: 432 + components: + - pos: -12.5,13.5 + parent: 1 + type: Transform + - uid: 433 + components: + - pos: -11.5,13.5 + parent: 1 + type: Transform + - uid: 561 + components: + - pos: -6.5,-7.5 + parent: 1 + type: Transform + - uid: 563 + components: + - pos: 2.5,22.5 + parent: 1 + type: Transform + - uid: 603 + components: + - pos: 5.5,-10.5 + parent: 1 + type: Transform + - uid: 604 + components: + - pos: 5.5,-9.5 + parent: 1 + type: Transform + - uid: 616 + components: + - pos: 5.5,-11.5 + parent: 1 + type: Transform + - uid: 617 + components: + - pos: 5.5,-12.5 + parent: 1 + type: Transform + - uid: 618 + components: + - pos: 5.5,-13.5 + parent: 1 + type: Transform + - uid: 619 + components: + - pos: 5.5,-14.5 + parent: 1 + type: Transform + - uid: 620 + components: + - pos: 4.5,-14.5 + parent: 1 + type: Transform + - uid: 621 + components: + - pos: 4.5,-15.5 + parent: 1 + type: Transform + - uid: 622 + components: + - pos: 3.5,-15.5 + parent: 1 + type: Transform + - uid: 623 + components: + - pos: 2.5,-15.5 + parent: 1 + type: Transform + - uid: 624 + components: + - pos: 1.5,-15.5 + parent: 1 + type: Transform + - uid: 625 + components: + - pos: 0.5,-15.5 + parent: 1 + type: Transform + - uid: 626 + components: + - pos: -0.5,-15.5 + parent: 1 + type: Transform + - uid: 627 + components: + - pos: -1.5,-15.5 + parent: 1 + type: Transform + - uid: 628 + components: + - pos: -2.5,-15.5 + parent: 1 + type: Transform + - uid: 629 + components: + - pos: -3.5,-15.5 + parent: 1 + type: Transform + - uid: 630 + components: + - pos: -4.5,-15.5 + parent: 1 + type: Transform + - uid: 631 + components: + - pos: -5.5,-15.5 + parent: 1 + type: Transform + - uid: 632 + components: + - pos: -6.5,-14.5 + parent: 1 + type: Transform + - uid: 633 + components: + - pos: -6.5,-13.5 + parent: 1 + type: Transform + - uid: 634 + components: + - pos: -6.5,-12.5 + parent: 1 + type: Transform + - uid: 635 + components: + - pos: -6.5,-11.5 + parent: 1 + type: Transform + - uid: 636 + components: + - pos: -6.5,-9.5 + parent: 1 + type: Transform + - uid: 637 + components: + - pos: -6.5,-10.5 + parent: 1 + type: Transform + - uid: 638 + components: + - pos: -5.5,-14.5 + parent: 1 + type: Transform + - uid: 639 + components: + - pos: -2.5,-12.5 + parent: 1 + type: Transform + - uid: 640 + components: + - pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 641 + components: + - pos: -2.5,-14.5 + parent: 1 + type: Transform + - uid: 642 + components: + - pos: 1.5,-11.5 + parent: 1 + type: Transform + - uid: 643 + components: + - pos: 1.5,-12.5 + parent: 1 + type: Transform + - uid: 644 + components: + - pos: 1.5,-13.5 + parent: 1 + type: Transform + - uid: 645 + components: + - pos: 1.5,-14.5 + parent: 1 + type: Transform +- proto: WeaponLaserGun + entities: + - uid: 693 + components: + - pos: -0.523374,5.6031785 + parent: 1 + type: Transform +- proto: WeaponTurretSyndicate + entities: + - uid: 133 + components: + - flags: SessionSpecific + type: MetaData + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 134 + components: + - flags: SessionSpecific + type: MetaData + - pos: 1.5,1.5 + parent: 1 + type: Transform +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 425 + components: + - pos: -25.5,-8.5 + parent: 1 + type: Transform + - uid: 426 + components: + - pos: -25.5,14.5 + parent: 1 + type: Transform + - uid: 427 + components: + - pos: -24.5,15.5 + parent: 1 + type: Transform + - uid: 434 + components: + - pos: -2.5,25.5 + parent: 1 + type: Transform + - uid: 435 + components: + - pos: 1.5,25.5 + parent: 1 + type: Transform + - uid: 436 + components: + - pos: 24.5,15.5 + parent: 1 + type: Transform + - uid: 437 + components: + - pos: 25.5,14.5 + parent: 1 + type: Transform + - uid: 444 + components: + - pos: 25.5,-8.5 + parent: 1 + type: Transform + - uid: 445 + components: + - pos: 10.5,-16.5 + parent: 1 + type: Transform + - uid: 450 + components: + - pos: 9.5,-17.5 + parent: 1 + type: Transform + - uid: 451 + components: + - pos: 24.5,-9.5 + parent: 1 + type: Transform + - uid: 452 + components: + - pos: -10.5,-17.5 + parent: 1 + type: Transform + - uid: 453 + components: + - pos: -11.5,-16.5 + parent: 1 + type: Transform + - uid: 454 + components: + - pos: -24.5,-9.5 + parent: 1 + type: Transform +- proto: WindoorSecureScienceLocked + entities: + - uid: 664 + components: + - pos: 3.5,-11.5 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-ruin-cargo-salvage.yml b/Resources/Maps/Salvage/DeltaV/DV-ruin-cargo-salvage.yml new file mode 100644 index 0000000000..afcbff0027 --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-ruin-cargo-salvage.yml @@ -0,0 +1,4413 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand + 11: FloorAsteroidTile + 13: FloorBasalt + 15: FloorBlueCircuit + 20: FloorCave + 27: FloorDark + 32: FloorDarkMono + 52: FloorGreenCircuit + 60: FloorLino + 72: FloorReinforced + 84: FloorSteel + 89: FloorSteelDirty + 92: FloorSteelMono + 96: FloorTechMaint + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 16 + components: + - type: MetaData + - parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAABAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAACcQAAAAAADwAAAAAASAAAAAAANAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAACcQAAAAAADwAAAAAASAAAAAAANAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABcQAAAAAADwAAAAAASAAAAAAANAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADAAAAAAAAcAAAAAAAcAAAAAAACwAAAAAACwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAABcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAACwAAAAAACwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAACWQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAB + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAcAAAAAAAcAAAAAAACwAAAAAACwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAAWQAAAAAAVAAAAAACVAAAAAACAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABcQAAAAAACwAAAAAAcQAAAAAACwAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAXAAAAAAAXAAAAAADXAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: VAAAAAACVAAAAAACVAAAAAACcQAAAAAAVAAAAAABVAAAAAABWQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAcAAAAAAAcAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAVAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAcAAAAAAAcAAAAAAAXAAAAAADXAAAAAACXAAAAAADcQAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAVAAAAAADVAAAAAACVAAAAAADcQAAAAAAVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAVAAAAAACVAAAAAACVAAAAAABcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAABVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABcQAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAVAAAAAABWQAAAAAAWQAAAAAAcQAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAACAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACAAAAAAAAcAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAACcQAAAAAAVAAAAAAAcQAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAACcQAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAcQAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABcQAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAABFAAAAAABFAAAAAACFAAAAAADFAAAAAAEBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAAFAAAAAABFAAAAAACDQAAAAAADQAAAAAAFAAAAAAEFAAAAAADBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABFAAAAAABFAAAAAACDQAAAAAADQAAAAAADQAAAAAAFAAAAAACFAAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFAAAAAAADQAAAAAADQAAAAAADQAAAAAAFAAAAAACBwAAAAABFAAAAAAABwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAADGwAAAAADcQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAFAAAAAABFAAAAAABBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAADGwAAAAABcQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAFAAAAAABFAAAAAADBwAAAAACBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAAAGwAAAAACcQAAAAAAGwAAAAABFAAAAAAADQAAAAAADQAAAAAAFAAAAAAAFAAAAAAFBwAAAAACBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAADGwAAAAAAcQAAAAAAGwAAAAACDQAAAAAAGwAAAAADcQAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAXAAAAAACIAAAAAAAXAAAAAAAcQAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWQAAAAAAWQAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAADcQAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAWQAAAAAAVAAAAAADcQAAAAAAVAAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 134: -8,0 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 67: 5,10 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 0: 4,11 + 49: 9,-3 + 50: 10,-3 + 66: 4,10 + 89: -6,0 + 133: -7,0 + 185: 3,-2 + 186: 2,-2 + 187: 2,0 + 188: 0,0 + 189: -1,0 + 194: 0,3 + 195: 0,4 + 196: 0,5 + 197: 0,6 + 198: 2,3 + 199: 2,4 + 200: 2,5 + 201: 2,6 + 202: -2,3 + 203: -2,4 + 204: -2,5 + 205: -2,6 + 206: -4,3 + 207: -4,4 + 208: -4,5 + 209: -4,6 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 90: 1,-7 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerNe + decals: + 35: 6,11 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineE + decals: + 81: 2,-7 + 82: 2,-6 + - node: + color: '#A4610696' + id: BrickTileWhiteLineE + decals: + 36: 6,10 + 37: 6,9 + 38: 6,8 + 39: 6,7 + - node: + color: '#A4610696' + id: BrickTileWhiteLineN + decals: + 34: 5,11 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 83: 0,-7 + 84: 0,-6 + - node: + color: '#FFFFFFFF' + id: Caution + decals: + 63: 6,9 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 48: 8,-3 + 132: -6,0 + 190: -2,-2 + 191: -2,0 + 192: 4,-2 + 193: 4,0 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 135: -3,-2 + 136: -2,-1 + 137: -1,0 + 138: 6,0 + 139: 5,-1 + 140: 4,-1 + 141: 5,-3 + 142: 4,-3 + 143: 5,1 + 144: 5,2 + 145: 4,1 + 146: 0,1 + 147: 2,1 + 148: -2,1 + 149: -3,1 + 224: -3,3 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 161: -2,-2 + 162: -4,-1 + 163: -4,-2 + 164: -2,0 + 165: -1,1 + 166: 1,1 + 167: 4,1 + 168: 3,1 + 169: 2,-1 + 170: 3,-2 + 171: 3,-3 + 172: 4,-1 + 173: 4,-1 + 174: 5,0 + 175: 5,2 + 176: 5,3 + 177: 4,2 + 178: 5,5 + 179: 6,5 + 180: -6,-1 + 181: -8,-1 + 182: -7,-1 + 183: -6,-2 + 184: -2,-2 + 210: 2,3 + 211: 1,3 + 212: 1,3 + 213: 1,4 + 214: -3,4 + 215: -3,5 + 216: -4,6 + 217: -3,5 + 218: -2,4 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 150: 5,0 + 151: 6,-1 + 152: 6,1 + 153: 4,0 + 154: 3,-1 + 155: 4,-2 + 156: 2,0 + 157: 0,0 + 158: 1,0 + 159: -1,-1 + 160: -3,-1 + 219: 0,3 + 220: 1,5 + 221: 2,5 + 222: 1,6 + 223: -3,3 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 46: 8,-2 + 47: 6,-2 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + decals: + 11: -4,1 + 12: -3,1 + 13: -2,1 + 14: -1,1 + 15: 0,1 + 16: 1,1 + 17: 2,1 + 18: 3,1 + 19: 4,1 + 20: 4,2 + 21: 4,3 + 22: 4,4 + 23: 4,6 + 24: 5,6 + 25: -8,0 + 26: -7,0 + 27: -6,0 + 28: -5,0 + 51: 10,1 + 52: 11,1 + 53: 12,1 + 54: 13,1 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + decals: + 59: -12,-2 + 60: -13,-2 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + decals: + 1: -4,-3 + 2: -3,-3 + 3: -2,-3 + 4: -1,-3 + 5: 0,-3 + 6: 1,-3 + 7: 2,-3 + 8: 3,-3 + 9: 4,-3 + 10: 5,-3 + 29: -8,-2 + 30: -7,-2 + 31: -6,-2 + 32: -5,-2 + 33: -4,-2 + 40: 6,-3 + 55: 10,0 + 56: 11,0 + 57: 12,0 + 58: 13,0 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + decals: + 61: -12,0 + 62: -13,0 + - node: + color: '#FFFFFFFF' + id: Remains + decals: + 131: -7.7688937,-6.5786843 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 64: 6,10 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale + decals: + 80: 0,-5 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 78: 2,-8 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 79: 0,-8 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 77: 2,-5 + - node: + color: '#FFFFFFFF' + id: WarnBox + decals: + 65: 4,11 + 68: 1,-8 + - node: + color: '#334E6DC8' + id: WarnCornerSmallGreyscaleSE + decals: + 88: 0,-3 + - node: + color: '#334E6DC8' + id: WarnCornerSmallGreyscaleSW + decals: + 87: 2,-3 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 45: -1,-3 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 74: -4,-8 + 75: -4,-7 + 76: -4,-6 + - node: + color: '#334E6DC8' + id: WarnLineGreyscaleN + decals: + 85: 1,-5 + - node: + color: '#A4610696' + id: WarnLineGreyscaleN + decals: + 41: 6,6 + - node: + color: '#334E6DC8' + id: WarnLineGreyscaleS + decals: + 86: 1,-3 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 42: -4,-3 + 43: -3,-3 + 44: -2,-3 + 72: -2,-5 + 73: -4,-5 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 69: -2,-8 + 70: -2,-7 + 71: -2,-6 + - node: + color: '#7915001F' + id: splatter + decals: + 91: -7.3626437,-6.9849343 + 92: -7.6595187,-6.7818093 + 93: -7.7845187,-6.4380593 + 94: -7.7845187,-6.3599343 + 95: -7.6282687,-6.3755593 + 96: -7.4876437,-6.5318093 + 97: -7.4563937,-6.7349343 + 98: -7.6595187,-6.9224343 + 99: -7.1595187,-7.3599343 + 100: -7.2845187,-8.063059 + 101: -7.0188937,-8.234934 + 102: -7.0813937,-8.141184 + 103: -8.284519,-6.4068093 + 104: -8.659519,-5.8130593 + 105: -8.956394,-5.5474343 + 106: -7.7688937,-6.6411843 + 107: -7.7376437,-6.6099343 + 108: -8.159519,-6.1568093 + 109: -8.784519,-5.8443093 + 110: -8.878269,-5.7661843 + 111: -8.597019,-6.0161843 + 112: -8.628269,-6.3755593 + 113: -8.268894,-6.4693093 + 114: -9.784519,-5.0630593 + 115: -9.815769,-5.0005593 + 116: -9.909519,-4.9380593 + 117: -8.831394,-5.2818093 + 118: -9.065769,-4.9536843 + 119: -8.503269,-5.3286843 + 120: -7.9563937,-5.8599343 + 121: -7.4251437,-6.1255593 + 122: -7.6907687,-7.2036843 + 123: -8.503269,-6.9849343 + 124: -9.128269,-6.3286843 + 125: -9.643894,-5.3911843 + 126: -8.487644,-5.5943093 + 127: -7.6438937,-6.0943093 + 128: -7.3626437,-6.7349343 + 129: -7.8782687,-7.0005593 + 130: -7.3470187,-7.5943093 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 65535 + -1,0: + 0: 65535 + 0,0: + 0: 65535 + 0,-1: + 0: 65535 + -4,-1: + 0: 61132 + -4,-2: + 0: 52292 + -3,-2: + 0: 65535 + -3,-1: + 0: 65535 + -3,-3: + 0: 59520 + -2,-3: + 0: 65535 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -2,-4: + 0: 32768 + -1,-4: + 0: 61440 + -1,-3: + 0: 65535 + -1,-2: + 1: 30583 + 0: 34952 + -4,0: + 0: 17614 + -3,0: + 0: 65535 + -3,1: + 0: 2254 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 10990 + -1,1: + 0: 65535 + -1,2: + 0: 61439 + -1,3: + 0: 248 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 255 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 65535 + 1,3: + 0: 255 + 2,0: + 0: 65535 + 2,1: + 0: 65535 + 2,2: + 0: 16383 + 2,3: + 0: 241 + 3,0: + 0: 65535 + 3,1: + 0: 22015 + 0,-4: + 0: 61440 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 1,-4: + 0: 61440 + 1,-3: + 0: 65535 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-4: + 0: 28672 + 2,-3: + 0: 65535 + 2,-2: + 0: 65535 + 2,-1: + 0: 65535 + 3,-3: + 0: 4096 + 3,-2: + 0: 61713 + 3,-1: + 0: 65535 + 4,0: + 0: 61440 + 5,0: + 0: 12288 + -4,-3: + 0: 17472 + -4,1: + 0: 17476 + -4,2: + 0: 4 + -3,3: + 0: 128 + -2,3: + 0: 242 + 3,3: + 0: 116 + 3,2: + 0: 17476 + 4,1: + 0: 255 + 5,1: + 0: 51 + 4,-2: + 0: 61440 + 4,-1: + 0: 15 + 5,-2: + 0: 12288 + 5,-1: + 0: 3 + 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.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: OccluderTree + - type: Shuttle + - type: RadiationGridResistance + - type: GasTileOverlay + - type: SpreaderGrid + - type: GridPathfinding +- proto: AirlockCargoLocked + entities: + - uid: 108 + components: + - pos: -7.5,1.5 + parent: 16 + type: Transform +- proto: AirlockEngineeringLocked + entities: + - uid: 576 + components: + - pos: 6.5,12.5 + parent: 16 + type: Transform +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 109 + components: + - pos: 9.5,0.5 + parent: 16 + type: Transform + - uid: 110 + components: + - pos: 9.5,1.5 + parent: 16 + type: Transform + - uid: 111 + components: + - pos: -10.5,-0.5 + parent: 16 + type: Transform + - uid: 112 + components: + - pos: -8.5,-0.5 + parent: 16 + type: Transform + - uid: 113 + components: + - pos: 7.5,0.5 + parent: 16 + type: Transform + - uid: 114 + components: + - pos: 7.5,1.5 + parent: 16 + type: Transform +- proto: AirlockShuttle + entities: + - uid: 177 + components: + - pos: 21.5,4.5 + parent: 16 + type: Transform + - uid: 452 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-0.5 + parent: 16 + type: Transform + - uid: 486 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-3.5 + parent: 16 + type: Transform +- proto: APCBasic + entities: + - uid: 513 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 16 + type: Transform +- proto: AsteroidAltRockMining + entities: + - uid: 185 + components: + - pos: -10.5,1.5 + parent: 16 + type: Transform + - uid: 186 + components: + - pos: -9.5,1.5 + parent: 16 + type: Transform + - uid: 194 + components: + - pos: -5.5,8.5 + parent: 16 + type: Transform + - uid: 195 + components: + - pos: -5.5,9.5 + parent: 16 + type: Transform + - uid: 196 + components: + - pos: -4.5,8.5 + parent: 16 + type: Transform + - uid: 197 + components: + - pos: -4.5,9.5 + parent: 16 + type: Transform + - uid: 200 + components: + - pos: -3.5,9.5 + parent: 16 + type: Transform + - uid: 201 + components: + - pos: -3.5,10.5 + parent: 16 + type: Transform + - uid: 204 + components: + - pos: -2.5,10.5 + parent: 16 + type: Transform + - uid: 208 + components: + - pos: -1.5,10.5 + parent: 16 + type: Transform + - uid: 209 + components: + - pos: -1.5,9.5 + parent: 16 + type: Transform + - uid: 210 + components: + - pos: -1.5,8.5 + parent: 16 + type: Transform + - uid: 211 + components: + - pos: -2.5,11.5 + parent: 16 + type: Transform + - uid: 212 + components: + - pos: -1.5,11.5 + parent: 16 + type: Transform + - uid: 218 + components: + - pos: 2.5,-9.5 + parent: 16 + type: Transform + - uid: 248 + components: + - pos: 9.5,8.5 + parent: 16 + type: Transform + - uid: 249 + components: + - pos: 8.5,11.5 + parent: 16 + type: Transform + - uid: 253 + components: + - pos: 9.5,11.5 + parent: 16 + type: Transform + - uid: 254 + components: + - pos: 8.5,12.5 + parent: 16 + type: Transform + - uid: 260 + components: + - pos: 2.5,12.5 + parent: 16 + type: Transform + - uid: 261 + components: + - pos: 1.5,12.5 + parent: 16 + type: Transform + - uid: 262 + components: + - pos: 0.5,12.5 + parent: 16 + type: Transform + - uid: 263 + components: + - pos: -0.5,12.5 + parent: 16 + type: Transform + - uid: 266 + components: + - pos: 10.5,8.5 + parent: 16 + type: Transform + - uid: 271 + components: + - pos: 11.5,8.5 + parent: 16 + type: Transform + - uid: 284 + components: + - pos: 9.5,4.5 + parent: 16 + type: Transform + - uid: 288 + components: + - pos: 8.5,3.5 + parent: 16 + type: Transform + - uid: 289 + components: + - pos: 9.5,3.5 + parent: 16 + type: Transform + - uid: 294 + components: + - pos: 9.5,-3.5 + parent: 16 + type: Transform + - uid: 296 + components: + - pos: 8.5,-4.5 + parent: 16 + type: Transform + - uid: 297 + components: + - pos: 8.5,-3.5 + parent: 16 + type: Transform + - uid: 298 + components: + - pos: 9.5,-4.5 + parent: 16 + type: Transform + - uid: 299 + components: + - pos: 9.5,-5.5 + parent: 16 + type: Transform + - uid: 305 + components: + - pos: -3.5,-11.5 + parent: 16 + type: Transform + - uid: 313 + components: + - pos: 10.5,-8.5 + parent: 16 + type: Transform + - uid: 314 + components: + - pos: 10.5,-7.5 + parent: 16 + type: Transform + - uid: 315 + components: + - pos: 9.5,-8.5 + parent: 16 + type: Transform + - uid: 316 + components: + - pos: 9.5,-7.5 + parent: 16 + type: Transform + - uid: 320 + components: + - pos: 9.5,-6.5 + parent: 16 + type: Transform + - uid: 325 + components: + - pos: -10.5,-2.5 + parent: 16 + type: Transform + - uid: 326 + components: + - pos: -9.5,-2.5 + parent: 16 + type: Transform + - uid: 331 + components: + - pos: -5.5,-3.5 + parent: 16 + type: Transform + - uid: 339 + components: + - pos: -9.5,-5.5 + parent: 16 + type: Transform + - uid: 346 + components: + - pos: -5.5,-4.5 + parent: 16 + type: Transform + - uid: 347 + components: + - pos: -5.5,-5.5 + parent: 16 + type: Transform + - uid: 354 + components: + - pos: -8.5,-6.5 + parent: 16 + type: Transform + - uid: 355 + components: + - pos: -8.5,-7.5 + parent: 16 + type: Transform + - uid: 360 + components: + - pos: -5.5,-6.5 + parent: 16 + type: Transform + - uid: 361 + components: + - pos: -5.5,-7.5 + parent: 16 + type: Transform + - uid: 362 + components: + - pos: -10.5,-8.5 + parent: 16 + type: Transform + - uid: 368 + components: + - pos: -8.5,-9.5 + parent: 16 + type: Transform + - uid: 369 + components: + - pos: -8.5,-10.5 + parent: 16 + type: Transform + - uid: 376 + components: + - pos: -4.5,-9.5 + parent: 16 + type: Transform + - uid: 377 + components: + - pos: -4.5,-10.5 + parent: 16 + type: Transform + - uid: 378 + components: + - pos: -3.5,-9.5 + parent: 16 + type: Transform + - uid: 380 + components: + - pos: -2.5,-9.5 + parent: 16 + type: Transform + - uid: 381 + components: + - pos: -2.5,-10.5 + parent: 16 + type: Transform + - uid: 391 + components: + - pos: 2.5,-10.5 + parent: 16 + type: Transform + - uid: 392 + components: + - pos: 3.5,-9.5 + parent: 16 + type: Transform + - uid: 394 + components: + - pos: 4.5,-9.5 + parent: 16 + type: Transform + - uid: 395 + components: + - pos: 4.5,-10.5 + parent: 16 + type: Transform + - uid: 397 + components: + - pos: 5.5,-10.5 + parent: 16 + type: Transform + - uid: 405 + components: + - pos: 9.5,-10.5 + parent: 16 + type: Transform + - uid: 406 + components: + - pos: 10.5,-9.5 + parent: 16 + type: Transform + - uid: 407 + components: + - pos: 10.5,-10.5 + parent: 16 + type: Transform + - uid: 408 + components: + - pos: 11.5,-9.5 + parent: 16 + type: Transform + - uid: 409 + components: + - pos: 11.5,-10.5 + parent: 16 + type: Transform + - uid: 410 + components: + - pos: 11.5,-11.5 + parent: 16 + type: Transform + - uid: 417 + components: + - pos: 4.5,-11.5 + parent: 16 + type: Transform + - uid: 418 + components: + - pos: 3.5,-11.5 + parent: 16 + type: Transform + - uid: 419 + components: + - pos: 2.5,-11.5 + parent: 16 + type: Transform + - uid: 424 + components: + - pos: -2.5,-11.5 + parent: 16 + type: Transform + - uid: 426 + components: + - pos: -4.5,-11.5 + parent: 16 + type: Transform + - uid: 430 + components: + - pos: -4.5,-12.5 + parent: 16 + type: Transform + - uid: 431 + components: + - pos: -3.5,-12.5 + parent: 16 + type: Transform + - uid: 432 + components: + - pos: -2.5,-12.5 + parent: 16 + type: Transform + - uid: 437 + components: + - pos: 2.5,-12.5 + parent: 16 + type: Transform + - uid: 438 + components: + - pos: 3.5,-12.5 + parent: 16 + type: Transform + - uid: 439 + components: + - pos: 4.5,-12.5 + parent: 16 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 94 + components: + - pos: -3.5,-3.5 + parent: 16 + type: Transform + - uid: 649 + components: + - pos: -2.5,-3.5 + parent: 16 + type: Transform + - uid: 676 + components: + - pos: -1.5,-3.5 + parent: 16 + type: Transform +- proto: AtmosFixPlasmaMarker + entities: + - uid: 55 + components: + - pos: -3.5,-5.5 + parent: 16 + type: Transform + - uid: 56 + components: + - pos: -3.5,-6.5 + parent: 16 + type: Transform + - uid: 57 + components: + - pos: -3.5,-7.5 + parent: 16 + type: Transform + - uid: 58 + components: + - pos: -1.5,-5.5 + parent: 16 + type: Transform + - uid: 59 + components: + - pos: -2.5,-5.5 + parent: 16 + type: Transform + - uid: 60 + components: + - pos: -2.5,-4.5 + parent: 16 + type: Transform + - uid: 61 + components: + - pos: -1.5,-7.5 + parent: 16 + type: Transform + - uid: 62 + components: + - pos: -1.5,-4.5 + parent: 16 + type: Transform + - uid: 63 + components: + - pos: -2.5,-6.5 + parent: 16 + type: Transform + - uid: 64 + components: + - pos: -2.5,-7.5 + parent: 16 + type: Transform + - uid: 65 + components: + - pos: -3.5,-4.5 + parent: 16 + type: Transform + - uid: 66 + components: + - pos: -1.5,-6.5 + parent: 16 + type: Transform +- proto: BannerCargo + entities: + - uid: 178 + components: + - pos: 4.5,6.5 + parent: 16 + type: Transform +- proto: BaseComputer + entities: + - uid: 425 + components: + - pos: 2.5,-5.5 + parent: 16 + type: Transform +- proto: BirdToyInstrument + entities: + - uid: 614 + components: + - pos: 2.4604154,4.540422 + parent: 16 + type: Transform +- proto: BlastDoor + entities: + - uid: 139 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 16 + type: Transform + - links: + - 202 + type: DeviceLinkSink + - uid: 484 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 16 + type: Transform + - links: + - 202 + type: DeviceLinkSink + - uid: 581 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 16 + type: Transform + - links: + - 202 + type: DeviceLinkSink +- proto: Bucket + entities: + - uid: 358 + components: + - rot: -1.5707963267948966 rad + pos: 5.784109,-5.7588787 + parent: 16 + type: Transform +- proto: CableApcExtension + entities: + - uid: 2 + components: + - pos: 6.5,7.5 + parent: 16 + type: Transform + - uid: 3 + components: + - pos: 6.5,8.5 + parent: 16 + type: Transform + - uid: 32 + components: + - pos: 6.5,10.5 + parent: 16 + type: Transform + - uid: 122 + components: + - pos: 6.5,9.5 + parent: 16 + type: Transform + - uid: 239 + components: + - pos: 6.5,11.5 + parent: 16 + type: Transform + - uid: 250 + components: + - pos: 6.5,5.5 + parent: 16 + type: Transform + - uid: 255 + components: + - pos: 6.5,6.5 + parent: 16 + type: Transform + - uid: 342 + components: + - pos: 0.5,-3.5 + parent: 16 + type: Transform + - uid: 345 + components: + - pos: 2.5,-3.5 + parent: 16 + type: Transform + - uid: 514 + components: + - pos: 7.5,-0.5 + parent: 16 + type: Transform + - uid: 515 + components: + - pos: 6.5,-0.5 + parent: 16 + type: Transform + - uid: 516 + components: + - pos: 5.5,-0.5 + parent: 16 + type: Transform + - uid: 517 + components: + - pos: 4.5,-0.5 + parent: 16 + type: Transform + - uid: 518 + components: + - pos: 3.5,-0.5 + parent: 16 + type: Transform + - uid: 519 + components: + - pos: 2.5,-0.5 + parent: 16 + type: Transform + - uid: 520 + components: + - pos: 1.5,-0.5 + parent: 16 + type: Transform + - uid: 521 + components: + - pos: 0.5,-0.5 + parent: 16 + type: Transform + - uid: 522 + components: + - pos: -0.5,-0.5 + parent: 16 + type: Transform + - uid: 523 + components: + - pos: -1.5,-0.5 + parent: 16 + type: Transform + - uid: 524 + components: + - pos: -2.5,-0.5 + parent: 16 + type: Transform + - uid: 525 + components: + - pos: -3.5,-0.5 + parent: 16 + type: Transform + - uid: 526 + components: + - pos: -4.5,-0.5 + parent: 16 + type: Transform + - uid: 527 + components: + - pos: -5.5,-0.5 + parent: 16 + type: Transform + - uid: 528 + components: + - pos: -6.5,-0.5 + parent: 16 + type: Transform + - uid: 529 + components: + - pos: -7.5,-0.5 + parent: 16 + type: Transform + - uid: 530 + components: + - pos: -8.5,-0.5 + parent: 16 + type: Transform + - uid: 531 + components: + - pos: -9.5,-0.5 + parent: 16 + type: Transform + - uid: 532 + components: + - pos: -5.5,0.5 + parent: 16 + type: Transform + - uid: 533 + components: + - pos: -5.5,1.5 + parent: 16 + type: Transform + - uid: 534 + components: + - pos: -5.5,2.5 + parent: 16 + type: Transform + - uid: 535 + components: + - pos: -5.5,3.5 + parent: 16 + type: Transform + - uid: 536 + components: + - pos: -2.5,-1.5 + parent: 16 + type: Transform + - uid: 537 + components: + - pos: -2.5,-2.5 + parent: 16 + type: Transform + - uid: 538 + components: + - pos: -2.5,-3.5 + parent: 16 + type: Transform + - uid: 539 + components: + - pos: -2.5,-4.5 + parent: 16 + type: Transform + - uid: 540 + components: + - pos: -2.5,-5.5 + parent: 16 + type: Transform + - uid: 541 + components: + - pos: -2.5,-6.5 + parent: 16 + type: Transform + - uid: 542 + components: + - pos: 1.5,-1.5 + parent: 16 + type: Transform + - uid: 543 + components: + - pos: 1.5,-2.5 + parent: 16 + type: Transform + - uid: 544 + components: + - pos: 1.5,-3.5 + parent: 16 + type: Transform + - uid: 545 + components: + - pos: 1.5,-4.5 + parent: 16 + type: Transform + - uid: 546 + components: + - pos: 1.5,-5.5 + parent: 16 + type: Transform + - uid: 547 + components: + - pos: 1.5,-6.5 + parent: 16 + type: Transform + - uid: 548 + components: + - pos: 5.5,-1.5 + parent: 16 + type: Transform + - uid: 549 + components: + - pos: 5.5,-2.5 + parent: 16 + type: Transform + - uid: 554 + components: + - pos: 5.5,0.5 + parent: 16 + type: Transform + - uid: 555 + components: + - pos: 5.5,1.5 + parent: 16 + type: Transform + - uid: 556 + components: + - pos: 5.5,2.5 + parent: 16 + type: Transform + - uid: 557 + components: + - pos: 5.5,3.5 + parent: 16 + type: Transform + - uid: 558 + components: + - pos: 5.5,4.5 + parent: 16 + type: Transform + - uid: 559 + components: + - pos: 5.5,5.5 + parent: 16 + type: Transform + - uid: 560 + components: + - pos: 1.5,5.5 + parent: 16 + type: Transform + - uid: 561 + components: + - pos: 1.5,4.5 + parent: 16 + type: Transform + - uid: 562 + components: + - pos: 1.5,3.5 + parent: 16 + type: Transform + - uid: 563 + components: + - pos: 1.5,2.5 + parent: 16 + type: Transform + - uid: 564 + components: + - pos: 1.5,1.5 + parent: 16 + type: Transform + - uid: 565 + components: + - pos: 1.5,0.5 + parent: 16 + type: Transform + - uid: 566 + components: + - pos: -2.5,0.5 + parent: 16 + type: Transform + - uid: 567 + components: + - pos: -2.5,1.5 + parent: 16 + type: Transform + - uid: 568 + components: + - pos: -2.5,2.5 + parent: 16 + type: Transform + - uid: 569 + components: + - pos: -2.5,3.5 + parent: 16 + type: Transform + - uid: 570 + components: + - pos: -2.5,4.5 + parent: 16 + type: Transform + - uid: 571 + components: + - pos: -2.5,5.5 + parent: 16 + type: Transform + - uid: 572 + components: + - pos: 6.5,1.5 + parent: 16 + type: Transform + - uid: 573 + components: + - pos: 7.5,1.5 + parent: 16 + type: Transform + - uid: 574 + components: + - pos: 8.5,1.5 + parent: 16 + type: Transform + - uid: 575 + components: + - pos: -10.5,-0.5 + parent: 16 + type: Transform + - uid: 587 + components: + - pos: 9.5,1.5 + parent: 16 + type: Transform + - uid: 588 + components: + - pos: 10.5,1.5 + parent: 16 + type: Transform + - uid: 589 + components: + - pos: 11.5,1.5 + parent: 16 + type: Transform + - uid: 590 + components: + - pos: 12.5,1.5 + parent: 16 + type: Transform + - uid: 591 + components: + - pos: 13.5,1.5 + parent: 16 + type: Transform + - uid: 650 + components: + - pos: 15.5,1.5 + parent: 16 + type: Transform + - uid: 651 + components: + - pos: 15.5,2.5 + parent: 16 + type: Transform + - uid: 652 + components: + - pos: 14.5,1.5 + parent: 16 + type: Transform + - uid: 653 + components: + - pos: 15.5,3.5 + parent: 16 + type: Transform + - uid: 654 + components: + - pos: 15.5,4.5 + parent: 16 + type: Transform + - uid: 655 + components: + - pos: 15.5,5.5 + parent: 16 + type: Transform + - uid: 656 + components: + - pos: 16.5,5.5 + parent: 16 + type: Transform + - uid: 657 + components: + - pos: 17.5,5.5 + parent: 16 + type: Transform + - uid: 658 + components: + - pos: 18.5,5.5 + parent: 16 + type: Transform + - uid: 659 + components: + - pos: 19.5,5.5 + parent: 16 + type: Transform + - uid: 660 + components: + - pos: 20.5,5.5 + parent: 16 + type: Transform + - uid: 661 + components: + - pos: 21.5,5.5 + parent: 16 + type: Transform + - uid: 662 + components: + - pos: 15.5,0.5 + parent: 16 + type: Transform + - uid: 663 + components: + - pos: 15.5,-0.5 + parent: 16 + type: Transform + - uid: 664 + components: + - pos: 15.5,-1.5 + parent: 16 + type: Transform + - uid: 665 + components: + - pos: 15.5,-2.5 + parent: 16 + type: Transform + - uid: 666 + components: + - pos: 15.5,-3.5 + parent: 16 + type: Transform + - uid: 667 + components: + - pos: 15.5,-4.5 + parent: 16 + type: Transform + - uid: 668 + components: + - pos: 16.5,-4.5 + parent: 16 + type: Transform + - uid: 669 + components: + - pos: 17.5,-4.5 + parent: 16 + type: Transform + - uid: 670 + components: + - pos: 18.5,-4.5 + parent: 16 + type: Transform + - uid: 671 + components: + - pos: 19.5,-4.5 + parent: 16 + type: Transform + - uid: 672 + components: + - pos: 20.5,-4.5 + parent: 16 + type: Transform + - uid: 673 + components: + - pos: 21.5,-4.5 + parent: 16 + type: Transform +- proto: CableHV + entities: + - uid: 493 + components: + - pos: 3.5,10.5 + parent: 16 + type: Transform + - uid: 495 + components: + - pos: 4.5,11.5 + parent: 16 + type: Transform +- proto: CableHVStack1 + entities: + - uid: 596 + components: + - pos: 4.5382333,10.552419 + parent: 16 + type: Transform +- proto: CableMV + entities: + - uid: 30 + components: + - pos: 6.5,10.5 + parent: 16 + type: Transform + - uid: 233 + components: + - pos: 6.5,9.5 + parent: 16 + type: Transform + - uid: 235 + components: + - pos: 6.5,8.5 + parent: 16 + type: Transform + - uid: 390 + components: + - pos: 5.5,10.5 + parent: 16 + type: Transform + - uid: 497 + components: + - pos: 3.5,10.5 + parent: 16 + type: Transform + - uid: 498 + components: + - pos: 4.5,10.5 + parent: 16 + type: Transform + - uid: 499 + components: + - pos: 5.5,6.5 + parent: 16 + type: Transform + - uid: 500 + components: + - pos: 6.5,6.5 + parent: 16 + type: Transform + - uid: 501 + components: + - pos: 6.5,7.5 + parent: 16 + type: Transform + - uid: 502 + components: + - pos: 4.5,6.5 + parent: 16 + type: Transform + - uid: 503 + components: + - pos: 4.5,5.5 + parent: 16 + type: Transform + - uid: 504 + components: + - pos: 4.5,4.5 + parent: 16 + type: Transform + - uid: 505 + components: + - pos: 4.5,3.5 + parent: 16 + type: Transform + - uid: 506 + components: + - pos: 4.5,2.5 + parent: 16 + type: Transform + - uid: 507 + components: + - pos: 4.5,1.5 + parent: 16 + type: Transform + - uid: 508 + components: + - pos: 4.5,0.5 + parent: 16 + type: Transform + - uid: 509 + components: + - pos: 4.5,-0.5 + parent: 16 + type: Transform + - uid: 510 + components: + - pos: 5.5,-0.5 + parent: 16 + type: Transform + - uid: 511 + components: + - pos: 6.5,-0.5 + parent: 16 + type: Transform + - uid: 512 + components: + - pos: 7.5,-0.5 + parent: 16 + type: Transform +- proto: Catwalk + entities: + - uid: 107 + components: + - pos: 15.5,1.5 + parent: 16 + type: Transform + - uid: 144 + components: + - pos: 15.5,4.5 + parent: 16 + type: Transform + - uid: 160 + components: + - pos: 15.5,2.5 + parent: 16 + type: Transform + - uid: 161 + components: + - pos: 15.5,3.5 + parent: 16 + type: Transform + - uid: 163 + components: + - pos: 18.5,-4.5 + parent: 16 + type: Transform + - uid: 165 + components: + - pos: 16.5,5.5 + parent: 16 + type: Transform + - uid: 166 + components: + - pos: 20.5,-4.5 + parent: 16 + type: Transform + - uid: 167 + components: + - pos: 19.5,-4.5 + parent: 16 + type: Transform + - uid: 168 + components: + - pos: 15.5,0.5 + parent: 16 + type: Transform + - uid: 169 + components: + - pos: 21.5,-4.5 + parent: 16 + type: Transform + - uid: 172 + components: + - pos: 17.5,5.5 + parent: 16 + type: Transform + - uid: 173 + components: + - pos: 18.5,5.5 + parent: 16 + type: Transform + - uid: 182 + components: + - pos: -13.5,0.5 + parent: 16 + type: Transform + - uid: 183 + components: + - pos: -13.5,-0.5 + parent: 16 + type: Transform + - uid: 184 + components: + - pos: -13.5,-1.5 + parent: 16 + type: Transform + - uid: 240 + components: + - pos: 5.5,13.5 + parent: 16 + type: Transform + - uid: 241 + components: + - pos: 6.5,13.5 + parent: 16 + type: Transform + - uid: 256 + components: + - pos: 7.5,13.5 + parent: 16 + type: Transform + - uid: 448 + components: + - pos: 14.5,1.5 + parent: 16 + type: Transform + - uid: 449 + components: + - pos: 14.5,0.5 + parent: 16 + type: Transform + - uid: 466 + components: + - pos: 15.5,-2.5 + parent: 16 + type: Transform + - uid: 467 + components: + - pos: 15.5,-1.5 + parent: 16 + type: Transform + - uid: 468 + components: + - pos: 15.5,-0.5 + parent: 16 + type: Transform + - uid: 481 + components: + - pos: 19.5,5.5 + parent: 16 + type: Transform + - uid: 485 + components: + - pos: 15.5,5.5 + parent: 16 + type: Transform + - uid: 600 + components: + - pos: 20.5,5.5 + parent: 16 + type: Transform + - uid: 601 + components: + - pos: 21.5,5.5 + parent: 16 + type: Transform + - uid: 605 + components: + - pos: 15.5,-3.5 + parent: 16 + type: Transform + - uid: 638 + components: + - pos: 17.5,-4.5 + parent: 16 + type: Transform + - uid: 639 + components: + - pos: 16.5,-4.5 + parent: 16 + type: Transform + - uid: 640 + components: + - pos: 15.5,-4.5 + parent: 16 + type: Transform +- proto: Chair + entities: + - uid: 586 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-1.5 + parent: 16 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 106 + components: + - pos: -5.5,2.5 + parent: 16 + type: Transform + - uid: 578 + components: + - pos: 1.5,-6.5 + parent: 16 + type: Transform + - uid: 629 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 16 + type: Transform +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 104 + components: + - pos: 2.5,6.5 + parent: 16 + type: Transform +- proto: ClosetFireFilled + entities: + - uid: 550 + components: + - pos: 4.5,-4.5 + parent: 16 + type: Transform + - uid: 602 + components: + - pos: 0.5,4.5 + parent: 16 + type: Transform +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 105 + components: + - pos: 2.5,5.5 + parent: 16 + type: Transform + - uid: 170 + components: + - pos: -1.5,5.5 + parent: 16 + type: Transform +- proto: ClosetRadiationSuitFilled + entities: + - uid: 159 + components: + - pos: -3.5,4.5 + parent: 16 + type: Transform +- proto: ClothingNeckCloakMiner + entities: + - uid: 287 + components: + - pos: -5.484128,-8.465081 + parent: 16 + type: Transform +- proto: ComputerAlert + entities: + - uid: 131 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 16 + type: Transform +- proto: ComputerBroken + entities: + - uid: 44 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,2.5 + parent: 16 + type: Transform + - uid: 579 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 16 + type: Transform + - uid: 626 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 16 + type: Transform +- proto: ComputerSolarControl + entities: + - uid: 291 + components: + - pos: 0.5,-5.5 + parent: 16 + type: Transform +- proto: CrateEmptySpawner + entities: + - uid: 145 + components: + - pos: 2.5,0.5 + parent: 16 + type: Transform + - uid: 147 + components: + - pos: -0.5,0.5 + parent: 16 + type: Transform + - uid: 610 + components: + - pos: -3.5,3.5 + parent: 16 + type: Transform + - uid: 611 + components: + - pos: 0.5,5.5 + parent: 16 + type: Transform +- proto: CrateFilledSpawner + entities: + - uid: 140 + components: + - pos: 3.5,-1.5 + parent: 16 + type: Transform + - uid: 141 + components: + - pos: 2.5,-1.5 + parent: 16 + type: Transform + - uid: 152 + components: + - pos: 0.5,0.5 + parent: 16 + type: Transform +- proto: CrateSalvageEquipment + entities: + - uid: 162 + components: + - pos: -1.5,4.5 + parent: 16 + type: Transform +- proto: DisposalPipeBroken + entities: + - uid: 628 + components: + - pos: 6.5,2.5 + parent: 16 + type: Transform +- proto: DrinkMugDog + entities: + - uid: 674 + components: + - pos: 1.7093058,9.119299 + parent: 16 + type: Transform +- proto: DrinkWaterCup + entities: + - uid: 453 + components: + - pos: -6.5476575,-1.3903124 + parent: 16 + type: Transform + - uid: 455 + components: + - pos: -6.3601575,-1.4996874 + parent: 16 + type: Transform +- proto: ExtinguisherCabinetFilled + entities: + - uid: 624 + components: + - pos: 3.5,5.5 + parent: 16 + type: Transform + - uid: 625 + components: + - pos: 3.5,4.5 + parent: 16 + type: Transform +- proto: FaxMachineBase + entities: + - uid: 134 + components: + - pos: -5.5,4.5 + parent: 16 + type: Transform + - name: Cargo Outpost + type: FaxMachine +- proto: Firelock + entities: + - uid: 476 + components: + - pos: -4.5,0.5 + parent: 16 + type: Transform + - uid: 477 + components: + - pos: -4.5,-0.5 + parent: 16 + type: Transform + - uid: 478 + components: + - pos: -4.5,-1.5 + parent: 16 + type: Transform +- proto: FirelockGlass + entities: + - uid: 138 + components: + - pos: -5.5,1.5 + parent: 16 + type: Transform +- proto: FlashlightLantern + entities: + - uid: 456 + components: + - pos: 2.421459,-4.364748 + parent: 16 + type: Transform + - uid: 457 + components: + - pos: 2.577709,-4.583498 + parent: 16 + type: Transform +- proto: Floodlight + entities: + - uid: 286 + components: + - pos: -6.468503,-5.496331 + parent: 16 + type: Transform + - uid: 622 + components: + - pos: 2.6208038,10.405628 + parent: 16 + type: Transform +- proto: FloodlightBroken + entities: + - uid: 143 + components: + - pos: 12.473434,-1.192405 + parent: 16 + type: Transform +- proto: FloorLavaEntity + entities: + - uid: 48 + components: + - pos: 7.5,-7.5 + parent: 16 + type: Transform + - uid: 295 + components: + - pos: 6.5,-8.5 + parent: 16 + type: Transform + - uid: 317 + components: + - pos: 5.5,-6.5 + parent: 16 + type: Transform + - uid: 318 + components: + - pos: 5.5,-7.5 + parent: 16 + type: Transform + - uid: 319 + components: + - pos: 6.5,-7.5 + parent: 16 + type: Transform + - uid: 398 + components: + - pos: 8.5,-10.5 + parent: 16 + type: Transform + - uid: 401 + components: + - pos: 6.5,-5.5 + parent: 16 + type: Transform + - uid: 402 + components: + - pos: 6.5,-6.5 + parent: 16 + type: Transform + - uid: 403 + components: + - pos: 7.5,-9.5 + parent: 16 + type: Transform + - uid: 404 + components: + - pos: 7.5,-8.5 + parent: 16 + type: Transform +- proto: FloraRockSolid01 + entities: + - uid: 54 + components: + - pos: 5.505496,-8.531757 + parent: 16 + type: Transform +- proto: FloraRockSolid03 + entities: + - uid: 490 + components: + - pos: 7.442996,-6.4380074 + parent: 16 + type: Transform +- proto: FoodSnackChocolate + entities: + - uid: 35 + components: + - pos: -8.409519,-4.5005593 + parent: 16 + type: Transform + - uid: 36 + components: + - pos: -8.162452,-4.5786843 + parent: 16 + type: Transform +- proto: GasRecycler + entities: + - uid: 621 + components: + - pos: 8.5,8.5 + parent: 16 + type: Transform +- proto: GeneratorRTGDamaged + entities: + - uid: 496 + components: + - pos: 4.5,11.5 + parent: 16 + type: Transform +- proto: GoldOre + entities: + - uid: 175 + components: + - pos: 8.337205,-9.694372 + parent: 16 + type: Transform +- proto: Grille + entities: + - uid: 11 + components: + - pos: -8.5,2.5 + parent: 16 + type: Transform + - uid: 12 + components: + - pos: -8.5,3.5 + parent: 16 + type: Transform + - uid: 13 + components: + - pos: -8.5,4.5 + parent: 16 + type: Transform + - uid: 116 + components: + - pos: 7.5,-2.5 + parent: 16 + type: Transform + - uid: 123 + components: + - pos: 2.5,-3.5 + parent: 16 + type: Transform + - uid: 125 + components: + - pos: 0.5,-3.5 + parent: 16 + type: Transform + - uid: 224 + components: + - pos: 4.5,7.5 + parent: 16 + type: Transform + - uid: 227 + components: + - pos: 7.5,4.5 + parent: 16 + type: Transform + - uid: 230 + components: + - pos: 7.5,5.5 + parent: 16 + type: Transform + - uid: 236 + components: + - pos: 7.5,8.5 + parent: 16 + type: Transform + - uid: 242 + components: + - pos: 5.5,8.5 + parent: 16 + type: Transform + - uid: 245 + components: + - pos: 4.5,9.5 + parent: 16 + type: Transform + - uid: 593 + components: + - pos: 7.5,6.5 + parent: 16 + type: Transform +- proto: HighSecCommandLocked + entities: + - uid: 132 + components: + - pos: 1.5,-3.5 + parent: 16 + type: Transform +- proto: JetpackMiniFilled + entities: + - uid: 623 + components: + - pos: -2.5198212,9.577503 + parent: 16 + type: Transform +- proto: MaintenanceToolSpawner + entities: + - uid: 293 + components: + - pos: -3.5,-10.5 + parent: 16 + type: Transform +- proto: MaterialDiamond + entities: + - uid: 68 + components: + - pos: 8.061451,-10.138948 + parent: 16 + type: Transform +- proto: Pickaxe + entities: + - uid: 34 + components: + - pos: -7.3404226,-7.415608 + parent: 16 + type: Transform +- proto: PlasticFlapsAirtightOpaque + entities: + - uid: 115 + components: + - pos: 7.5,-1.5 + parent: 16 + type: Transform +- proto: PosterContrabandUnreadableAnnouncement + entities: + - uid: 632 + components: + - pos: -6.5,5.5 + parent: 16 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 135 + components: + - pos: -6.5,4.5 + parent: 16 + type: Transform +- proto: Poweredlight + entities: + - uid: 153 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 16 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 154 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 16 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 155 + components: + - pos: 3.5,1.5 + parent: 16 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 156 + components: + - pos: -4.5,0.5 + parent: 16 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 157 + components: + - pos: -6.5,4.5 + parent: 16 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredlightEmpty + entities: + - uid: 148 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 16 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 149 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 16 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 150 + components: + - pos: -0.5,1.5 + parent: 16 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 151 + components: + - pos: 8.5,1.5 + parent: 16 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredlightSodium + entities: + - uid: 446 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,0.5 + parent: 16 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 462 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 16 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 465 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 16 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLight + entities: + - uid: 487 + components: + - pos: -2.5,6.5 + parent: 16 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 488 + components: + - pos: 1.5,6.5 + parent: 16 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 489 + components: + - pos: 5.5,6.5 + parent: 16 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 491 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 16 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 492 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 16 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 598 + components: + - rot: 3.141592653589793 rad + pos: 5.5,13.5 + parent: 16 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 599 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,10.5 + parent: 16 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: Rack + entities: + - uid: 128 + components: + - pos: -1.5,-6.5 + parent: 16 + type: Transform + - uid: 129 + components: + - pos: -3.5,-6.5 + parent: 16 + type: Transform + - uid: 136 + components: + - pos: -1.5,-5.5 + parent: 16 + type: Transform + - uid: 137 + components: + - pos: -3.5,-5.5 + parent: 16 + type: Transform + - uid: 343 + components: + - pos: 2.5,-4.5 + parent: 16 + type: Transform + - uid: 473 + components: + - pos: -1.5,-7.5 + parent: 16 + type: Transform + - uid: 474 + components: + - pos: -3.5,-7.5 + parent: 16 + type: Transform + - uid: 612 + components: + - pos: 2.5,4.5 + parent: 16 + type: Transform + - uid: 613 + components: + - pos: -3.5,6.5 + parent: 16 + type: Transform +- proto: Railing + entities: + - uid: 396 + components: + - pos: 5.5,-2.5 + parent: 16 + type: Transform + - uid: 399 + components: + - pos: 6.5,-2.5 + parent: 16 + type: Transform + - uid: 400 + components: + - pos: 4.5,-2.5 + parent: 16 + type: Transform +- proto: RailingCornerSmall + entities: + - uid: 49 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 16 + type: Transform +- proto: RandomBox + entities: + - uid: 678 + components: + - pos: -0.5,-1.5 + parent: 16 + type: Transform + - uid: 679 + components: + - pos: 0.5,-1.5 + parent: 16 + type: Transform + - uid: 680 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 16 + type: Transform + - uid: 681 + components: + - pos: 0.5,6.5 + parent: 16 + type: Transform + - uid: 682 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 16 + type: Transform +- proto: RandomItem + entities: + - uid: 684 + components: + - pos: -11.5,-2.5 + parent: 16 + type: Transform +- proto: RandomPosterContraband + entities: + - uid: 633 + components: + - pos: -4.5,3.5 + parent: 16 + type: Transform + - uid: 634 + components: + - pos: -0.5,6.5 + parent: 16 + type: Transform +- proto: RandomPosterLegit + entities: + - uid: 585 + components: + - pos: 7.5,11.5 + parent: 16 + type: Transform + - uid: 635 + components: + - pos: 3.5,-6.5 + parent: 16 + type: Transform +- proto: RandomRockSpawner + entities: + - uid: 187 + components: + - pos: -8.5,6.5 + parent: 16 + type: Transform + - uid: 188 + components: + - pos: -7.5,7.5 + parent: 16 + type: Transform + - uid: 189 + components: + - pos: -6.5,6.5 + parent: 16 + type: Transform + - uid: 190 + components: + - pos: -5.5,7.5 + parent: 16 + type: Transform + - uid: 191 + components: + - pos: -5.5,6.5 + parent: 16 + type: Transform + - uid: 192 + components: + - pos: -6.5,7.5 + parent: 16 + type: Transform + - uid: 193 + components: + - pos: -7.5,6.5 + parent: 16 + type: Transform + - uid: 198 + components: + - pos: -4.5,10.5 + parent: 16 + type: Transform + - uid: 205 + components: + - pos: -0.5,10.5 + parent: 16 + type: Transform + - uid: 207 + components: + - pos: -0.5,8.5 + parent: 16 + type: Transform + - uid: 213 + components: + - pos: -0.5,11.5 + parent: 16 + type: Transform + - uid: 214 + components: + - pos: 0.5,11.5 + parent: 16 + type: Transform + - uid: 215 + components: + - pos: 1.5,11.5 + parent: 16 + type: Transform + - uid: 216 + components: + - pos: 2.5,11.5 + parent: 16 + type: Transform + - uid: 219 + components: + - pos: 0.5,10.5 + parent: 16 + type: Transform + - uid: 243 + components: + - pos: 10.5,9.5 + parent: 16 + type: Transform + - uid: 244 + components: + - pos: 11.5,9.5 + parent: 16 + type: Transform + - uid: 246 + components: + - pos: 10.5,10.5 + parent: 16 + type: Transform + - uid: 247 + components: + - pos: 11.5,10.5 + parent: 16 + type: Transform + - uid: 264 + components: + - pos: 9.5,9.5 + parent: 16 + type: Transform + - uid: 265 + components: + - pos: 9.5,10.5 + parent: 16 + type: Transform + - uid: 267 + components: + - pos: 10.5,4.5 + parent: 16 + type: Transform + - uid: 268 + components: + - pos: 10.5,5.5 + parent: 16 + type: Transform + - uid: 269 + components: + - pos: 8.5,10.5 + parent: 16 + type: Transform + - uid: 270 + components: + - pos: 8.5,9.5 + parent: 16 + type: Transform + - uid: 272 + components: + - pos: 10.5,4.5 + parent: 16 + type: Transform + - uid: 273 + components: + - pos: 10.5,6.5 + parent: 16 + type: Transform + - uid: 274 + components: + - pos: 12.5,7.5 + parent: 16 + type: Transform + - uid: 275 + components: + - pos: 12.5,6.5 + parent: 16 + type: Transform + - uid: 276 + components: + - pos: 12.5,5.5 + parent: 16 + type: Transform + - uid: 277 + components: + - pos: 12.5,4.5 + parent: 16 + type: Transform + - uid: 278 + components: + - pos: 11.5,7.5 + parent: 16 + type: Transform + - uid: 279 + components: + - pos: 11.5,6.5 + parent: 16 + type: Transform + - uid: 280 + components: + - pos: 10.5,7.5 + parent: 16 + type: Transform + - uid: 281 + components: + - pos: 10.5,3.5 + parent: 16 + type: Transform + - uid: 282 + components: + - pos: 11.5,5.5 + parent: 16 + type: Transform + - uid: 283 + components: + - pos: 11.5,4.5 + parent: 16 + type: Transform + - uid: 290 + components: + - pos: -0.5,9.5 + parent: 16 + type: Transform + - uid: 300 + components: + - pos: 10.5,-5.5 + parent: 16 + type: Transform + - uid: 301 + components: + - pos: 10.5,-4.5 + parent: 16 + type: Transform + - uid: 302 + components: + - pos: 10.5,-3.5 + parent: 16 + type: Transform + - uid: 303 + components: + - pos: 11.5,-5.5 + parent: 16 + type: Transform + - uid: 304 + components: + - pos: 11.5,-6.5 + parent: 16 + type: Transform + - uid: 306 + components: + - pos: 11.5,-4.5 + parent: 16 + type: Transform + - uid: 307 + components: + - pos: 11.5,-7.5 + parent: 16 + type: Transform + - uid: 308 + components: + - pos: 12.5,-5.5 + parent: 16 + type: Transform + - uid: 309 + components: + - pos: 10.5,-6.5 + parent: 16 + type: Transform + - uid: 310 + components: + - pos: 12.5,-7.5 + parent: 16 + type: Transform + - uid: 311 + components: + - pos: 12.5,-8.5 + parent: 16 + type: Transform + - uid: 312 + components: + - pos: 12.5,-6.5 + parent: 16 + type: Transform + - uid: 321 + components: + - pos: 12.5,-4.5 + parent: 16 + type: Transform + - uid: 322 + components: + - pos: -12.5,-3.5 + parent: 16 + type: Transform + - uid: 323 + components: + - pos: -11.5,-3.5 + parent: 16 + type: Transform + - uid: 324 + components: + - pos: -10.5,-3.5 + parent: 16 + type: Transform + - uid: 327 + components: + - pos: -9.5,-3.5 + parent: 16 + type: Transform + - uid: 328 + components: + - pos: -8.5,-3.5 + parent: 16 + type: Transform + - uid: 330 + components: + - pos: -6.5,-3.5 + parent: 16 + type: Transform + - uid: 332 + components: + - pos: -10.5,-5.5 + parent: 16 + type: Transform + - uid: 333 + components: + - pos: -10.5,-4.5 + parent: 16 + type: Transform + - uid: 334 + components: + - pos: -11.5,-4.5 + parent: 16 + type: Transform + - uid: 335 + components: + - pos: -11.5,-5.5 + parent: 16 + type: Transform + - uid: 336 + components: + - pos: -12.5,-5.5 + parent: 16 + type: Transform + - uid: 337 + components: + - pos: -12.5,-4.5 + parent: 16 + type: Transform + - uid: 338 + components: + - pos: -8.5,-8.5 + parent: 16 + type: Transform + - uid: 344 + components: + - pos: -6.5,-4.5 + parent: 16 + type: Transform + - uid: 348 + components: + - pos: -9.5,-7.5 + parent: 16 + type: Transform + - uid: 349 + components: + - pos: -9.5,-6.5 + parent: 16 + type: Transform + - uid: 350 + components: + - pos: -10.5,-7.5 + parent: 16 + type: Transform + - uid: 351 + components: + - pos: -10.5,-6.5 + parent: 16 + type: Transform + - uid: 352 + components: + - pos: -11.5,-7.5 + parent: 16 + type: Transform + - uid: 353 + components: + - pos: -11.5,-6.5 + parent: 16 + type: Transform + - uid: 357 + components: + - pos: -6.5,-8.5 + parent: 16 + type: Transform + - uid: 359 + components: + - pos: -7.5,-8.5 + parent: 16 + type: Transform + - uid: 363 + components: + - pos: 11.5,-8.5 + parent: 16 + type: Transform + - uid: 364 + components: + - pos: -9.5,-8.5 + parent: 16 + type: Transform + - uid: 365 + components: + - pos: -5.5,-11.5 + parent: 16 + type: Transform + - uid: 366 + components: + - pos: -6.5,-11.5 + parent: 16 + type: Transform + - uid: 367 + components: + - pos: -5.5,-10.5 + parent: 16 + type: Transform + - uid: 370 + components: + - pos: -6.5,-10.5 + parent: 16 + type: Transform + - uid: 371 + components: + - pos: -5.5,-9.5 + parent: 16 + type: Transform + - uid: 372 + components: + - pos: -6.5,-9.5 + parent: 16 + type: Transform + - uid: 373 + components: + - pos: 1.5,-12.5 + parent: 16 + type: Transform + - uid: 374 + components: + - pos: 1.5,-11.5 + parent: 16 + type: Transform + - uid: 375 + components: + - pos: 0.5,-9.5 + parent: 16 + type: Transform + - uid: 379 + components: + - pos: 0.5,-10.5 + parent: 16 + type: Transform + - uid: 382 + components: + - pos: -0.5,-12.5 + parent: 16 + type: Transform + - uid: 383 + components: + - pos: -0.5,-11.5 + parent: 16 + type: Transform + - uid: 384 + components: + - pos: -1.5,-9.5 + parent: 16 + type: Transform + - uid: 385 + components: + - pos: -1.5,-10.5 + parent: 16 + type: Transform + - uid: 386 + components: + - pos: 5.5,-12.5 + parent: 16 + type: Transform + - uid: 387 + components: + - pos: 6.5,-12.5 + parent: 16 + type: Transform + - uid: 388 + components: + - pos: 7.5,-12.5 + parent: 16 + type: Transform + - uid: 389 + components: + - pos: 8.5,-12.5 + parent: 16 + type: Transform + - uid: 411 + components: + - pos: 9.5,-12.5 + parent: 16 + type: Transform + - uid: 412 + components: + - pos: 10.5,-12.5 + parent: 16 + type: Transform + - uid: 413 + components: + - pos: -1.5,-11.5 + parent: 16 + type: Transform + - uid: 414 + components: + - pos: -0.5,-10.5 + parent: 16 + type: Transform + - uid: 415 + components: + - pos: 0.5,-11.5 + parent: 16 + type: Transform + - uid: 416 + components: + - pos: 1.5,-10.5 + parent: 16 + type: Transform + - uid: 420 + components: + - pos: -7.5,-11.5 + parent: 16 + type: Transform + - uid: 421 + components: + - pos: -7.5,-10.5 + parent: 16 + type: Transform + - uid: 422 + components: + - pos: -7.5,-9.5 + parent: 16 + type: Transform + - uid: 423 + components: + - pos: 1.5,-9.5 + parent: 16 + type: Transform + - uid: 427 + components: + - pos: 0.5,-12.5 + parent: 16 + type: Transform + - uid: 429 + components: + - pos: -1.5,-12.5 + parent: 16 + type: Transform + - uid: 433 + components: + - pos: 10.5,-11.5 + parent: 16 + type: Transform + - uid: 434 + components: + - pos: 9.5,-11.5 + parent: 16 + type: Transform + - uid: 435 + components: + - pos: 8.5,-11.5 + parent: 16 + type: Transform + - uid: 436 + components: + - pos: 7.5,-11.5 + parent: 16 + type: Transform + - uid: 440 + components: + - pos: 6.5,-11.5 + parent: 16 + type: Transform + - uid: 441 + components: + - pos: 5.5,-11.5 + parent: 16 + type: Transform +- proto: RandomSpawner + entities: + - uid: 142 + components: + - pos: 13.5,2.5 + parent: 16 + type: Transform + - uid: 146 + components: + - pos: -10.5,3.5 + parent: 16 + type: Transform + - uid: 482 + components: + - pos: 11.5,-1.5 + parent: 16 + type: Transform + - uid: 630 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 16 + type: Transform + - uid: 631 + components: + - pos: 6.5,5.5 + parent: 16 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 117 + components: + - pos: 7.5,-2.5 + parent: 16 + type: Transform + - uid: 119 + components: + - pos: -8.5,4.5 + parent: 16 + type: Transform + - uid: 120 + components: + - pos: -8.5,3.5 + parent: 16 + type: Transform + - uid: 121 + components: + - pos: -8.5,2.5 + parent: 16 + type: Transform + - uid: 127 + components: + - pos: 0.5,-3.5 + parent: 16 + type: Transform + - uid: 133 + components: + - pos: 2.5,-3.5 + parent: 16 + type: Transform + - uid: 220 + components: + - pos: 7.5,5.5 + parent: 16 + type: Transform + - uid: 221 + components: + - pos: 4.5,9.5 + parent: 16 + type: Transform + - uid: 222 + components: + - pos: 7.5,4.5 + parent: 16 + type: Transform + - uid: 223 + components: + - pos: 5.5,8.5 + parent: 16 + type: Transform + - uid: 225 + components: + - pos: 7.5,8.5 + parent: 16 + type: Transform + - uid: 226 + components: + - pos: 7.5,6.5 + parent: 16 + type: Transform + - uid: 594 + components: + - pos: 4.5,7.5 + parent: 16 + type: Transform +- proto: ResearchDisk5000 + entities: + - uid: 67 + components: + - pos: -3.4960322,-6.530881 + parent: 16 + type: Transform +- proto: SalvageCanisterSpawner + entities: + - uid: 393 + components: + - pos: 3.5,-10.5 + parent: 16 + type: Transform + - uid: 617 + components: + - pos: 9.5,7.5 + parent: 16 + type: Transform + - uid: 618 + components: + - pos: 9.5,6.5 + parent: 16 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 1 + components: + - pos: -1.5,3.5 + parent: 16 + type: Transform + - uid: 158 + components: + - pos: -3.5,5.5 + parent: 16 + type: Transform + - uid: 176 + components: + - pos: 4.5,-1.5 + parent: 16 + type: Transform + - uid: 285 + components: + - pos: -7.5,-3.5 + parent: 16 + type: Transform + - uid: 603 + components: + - pos: -1.5,-1.5 + parent: 16 + type: Transform + - uid: 609 + components: + - pos: 2.5,3.5 + parent: 16 + type: Transform +- proto: SalvageMobSpawner75 + entities: + - uid: 174 + components: + - pos: -1.5,0.5 + parent: 16 + type: Transform + - uid: 460 + components: + - pos: 1.5,-1.5 + parent: 16 + type: Transform + - uid: 461 + components: + - pos: 4.5,0.5 + parent: 16 + type: Transform + - uid: 608 + components: + - pos: -2.5,-1.5 + parent: 16 + type: Transform +- proto: SalvagePartsSpawnerLow + entities: + - uid: 444 + components: + - pos: -3.5,-7.5 + parent: 16 + type: Transform + - uid: 445 + components: + - pos: -3.5,-5.5 + parent: 16 + type: Transform +- proto: SalvagePartsSpawnerMid + entities: + - uid: 442 + components: + - pos: -1.5,-5.5 + parent: 16 + type: Transform + - uid: 443 + components: + - pos: -1.5,-6.5 + parent: 16 + type: Transform +- proto: SalvagePartsSpawnerSubSpace + entities: + - uid: 683 + components: + - pos: -3.5,-7.5 + parent: 16 + type: Transform +- proto: Shovel + entities: + - uid: 595 + components: + - pos: -8.949798,-4.493733 + parent: 16 + type: Transform +- proto: ShuttersNormal + entities: + - uid: 50 + components: + - pos: 4.5,-3.5 + parent: 16 + type: Transform + - links: + - 53 + type: DeviceLinkSink + - uid: 51 + components: + - pos: 5.5,-3.5 + parent: 16 + type: Transform + - links: + - 53 + type: DeviceLinkSink + - uid: 52 + components: + - pos: 6.5,-3.5 + parent: 16 + type: Transform + - links: + - 53 + type: DeviceLinkSink + - uid: 118 + components: + - pos: 2.5,2.5 + parent: 16 + type: Transform + - links: + - 464 + type: DeviceLinkSink + - uid: 179 + components: + - pos: -1.5,2.5 + parent: 16 + type: Transform + - links: + - 463 + type: DeviceLinkSink + - uid: 180 + components: + - pos: 0.5,2.5 + parent: 16 + type: Transform + - links: + - 464 + type: DeviceLinkSink + - uid: 181 + components: + - pos: 1.5,2.5 + parent: 16 + type: Transform + - links: + - 464 + type: DeviceLinkSink + - uid: 458 + components: + - pos: -3.5,2.5 + parent: 16 + type: Transform + - links: + - 463 + type: DeviceLinkSink + - uid: 459 + components: + - pos: -2.5,2.5 + parent: 16 + type: Transform + - links: + - 463 + type: DeviceLinkSink +- proto: ShuttersRadiation + entities: + - uid: 675 + components: + - pos: 6.5,7.5 + parent: 16 + type: Transform + - links: + - 584 + type: DeviceLinkSink +- proto: SignalButton + entities: + - uid: 53 + components: + - pos: 3.5,-3.5 + parent: 16 + type: Transform + - linkedPorts: + 50: + - Pressed: Toggle + 51: + - Pressed: Toggle + 52: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 202 + components: + - name: Vault Unlock + type: MetaData + - pos: 1.5,-7.5 + parent: 16 + type: Transform + - linkedPorts: + 581: + - Pressed: Toggle + 139: + - Pressed: Toggle + 484: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 463 + components: + - pos: -0.5,2.5 + parent: 16 + type: Transform + - linkedPorts: + 179: + - Pressed: Toggle + 459: + - Pressed: Toggle + 458: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 464 + components: + - pos: 3.5,2.5 + parent: 16 + type: Transform + - linkedPorts: + 118: + - Pressed: Toggle + 181: + - Pressed: Toggle + 180: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 584 + components: + - pos: 5.5,7.5 + parent: 16 + type: Transform + - linkedPorts: + 675: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignCargo + entities: + - uid: 582 + components: + - pos: -10.5,0.5 + parent: 16 + type: Transform + - uid: 583 + components: + - pos: 9.5,2.5 + parent: 16 + type: Transform +- proto: SignElectricalMed + entities: + - uid: 577 + components: + - pos: 5.5,12.5 + parent: 16 + type: Transform +- proto: SignFire + entities: + - uid: 552 + components: + - pos: 7.5,-3.5 + parent: 16 + type: Transform +- proto: SignSecureMed + entities: + - uid: 606 + components: + - pos: -0.5,-3.5 + parent: 16 + type: Transform +- proto: SignSecureSmall + entities: + - uid: 580 + components: + - pos: -6.5,1.5 + parent: 16 + type: Transform +- proto: SilverOre + entities: + - uid: 619 + components: + - pos: 7.527823,-9.947632 + parent: 16 + type: Transform +- proto: SpaceTickSpawner + entities: + - uid: 164 + components: + - pos: -6.5,-0.5 + parent: 16 + type: Transform + - uid: 171 + components: + - pos: 5.5,-0.5 + parent: 16 + type: Transform + - uid: 604 + components: + - pos: 5.5,2.5 + parent: 16 + type: Transform + - uid: 637 + components: + - pos: -2.5,1.5 + parent: 16 + type: Transform +- proto: SpawnMobBearSalvage + entities: + - uid: 607 + components: + - pos: -2.5,0.5 + parent: 16 + type: Transform + - uid: 636 + components: + - pos: 3.5,0.5 + parent: 16 + type: Transform +- proto: SpawnMobOreCrab + entities: + - uid: 428 + components: + - pos: -0.5,-9.5 + parent: 16 + type: Transform +- proto: StorageCanister + entities: + - uid: 620 + components: + - pos: 9.5,5.5 + parent: 16 + type: Transform +- proto: SubstationWallBasic + entities: + - uid: 494 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,10.5 + parent: 16 + type: Transform +- proto: Table + entities: + - uid: 356 + components: + - pos: 0.5,-4.5 + parent: 16 + type: Transform + - uid: 454 + components: + - pos: -6.5,-1.5 + parent: 16 + type: Transform + - uid: 551 + components: + - pos: -5.5,4.5 + parent: 16 + type: Transform + - uid: 553 + components: + - pos: -6.5,4.5 + parent: 16 + type: Transform +- proto: TableReinforced + entities: + - uid: 45 + components: + - pos: -5.5,1.5 + parent: 16 + type: Transform +- proto: ToyAmongPequeno + entities: + - uid: 615 + components: + - pos: -3.4985056,6.509172 + parent: 16 + type: Transform +- proto: VendingMachineCoffee + entities: + - uid: 124 + components: + - flags: SessionSpecific + type: MetaData + - pos: -7.5,4.5 + parent: 16 + type: Transform +- proto: WallReinforced + entities: + - uid: 10 + components: + - pos: -8.5,5.5 + parent: 16 + type: Transform + - uid: 14 + components: + - pos: -8.5,1.5 + parent: 16 + type: Transform + - uid: 15 + components: + - pos: -8.5,0.5 + parent: 16 + type: Transform + - uid: 19 + components: + - pos: -4.5,5.5 + parent: 16 + type: Transform + - uid: 21 + components: + - pos: -4.5,7.5 + parent: 16 + type: Transform + - uid: 25 + components: + - pos: -0.5,7.5 + parent: 16 + type: Transform + - uid: 29 + components: + - pos: 3.5,7.5 + parent: 16 + type: Transform + - uid: 31 + components: + - pos: 5.5,7.5 + parent: 16 + type: Transform + - uid: 33 + components: + - pos: 7.5,7.5 + parent: 16 + type: Transform + - uid: 37 + components: + - pos: 7.5,3.5 + parent: 16 + type: Transform + - uid: 38 + components: + - pos: 7.5,2.5 + parent: 16 + type: Transform + - uid: 39 + components: + - pos: 8.5,2.5 + parent: 16 + type: Transform + - uid: 40 + components: + - pos: 9.5,2.5 + parent: 16 + type: Transform + - uid: 41 + components: + - pos: 9.5,-0.5 + parent: 16 + type: Transform + - uid: 42 + components: + - pos: 8.5,-0.5 + parent: 16 + type: Transform + - uid: 43 + components: + - pos: 7.5,-0.5 + parent: 16 + type: Transform + - uid: 46 + components: + - pos: 7.5,-3.5 + parent: 16 + type: Transform + - uid: 47 + components: + - pos: 7.5,-4.5 + parent: 16 + type: Transform + - uid: 69 + components: + - pos: -4.5,-2.5 + parent: 16 + type: Transform + - uid: 70 + components: + - pos: -5.5,-2.5 + parent: 16 + type: Transform + - uid: 71 + components: + - pos: -6.5,-2.5 + parent: 16 + type: Transform + - uid: 72 + components: + - pos: -7.5,-2.5 + parent: 16 + type: Transform + - uid: 73 + components: + - pos: -8.5,-2.5 + parent: 16 + type: Transform + - uid: 74 + components: + - pos: -8.5,-1.5 + parent: 16 + type: Transform + - uid: 75 + components: + - pos: -10.5,0.5 + parent: 16 + type: Transform + - uid: 76 + components: + - pos: -9.5,0.5 + parent: 16 + type: Transform + - uid: 77 + components: + - pos: -9.5,-1.5 + parent: 16 + type: Transform + - uid: 78 + components: + - pos: -10.5,-1.5 + parent: 16 + type: Transform + - uid: 84 + components: + - pos: 3.5,2.5 + parent: 16 + type: Transform + - uid: 93 + components: + - pos: -0.5,2.5 + parent: 16 + type: Transform + - uid: 217 + components: + - pos: 7.5,12.5 + parent: 16 + type: Transform + - uid: 231 + components: + - pos: 7.5,9.5 + parent: 16 + type: Transform + - uid: 232 + components: + - pos: 7.5,10.5 + parent: 16 + type: Transform + - uid: 234 + components: + - pos: 3.5,9.5 + parent: 16 + type: Transform + - uid: 237 + components: + - pos: 4.5,12.5 + parent: 16 + type: Transform + - uid: 238 + components: + - pos: 3.5,12.5 + parent: 16 + type: Transform + - uid: 251 + components: + - pos: 5.5,12.5 + parent: 16 + type: Transform + - uid: 252 + components: + - pos: 3.5,10.5 + parent: 16 + type: Transform + - uid: 257 + components: + - pos: 3.5,11.5 + parent: 16 + type: Transform + - uid: 258 + components: + - pos: 5.5,9.5 + parent: 16 + type: Transform + - uid: 259 + components: + - pos: 7.5,11.5 + parent: 16 + type: Transform +- proto: WallRiveted + entities: + - uid: 95 + components: + - pos: 3.5,-8.5 + parent: 16 + type: Transform + - uid: 96 + components: + - pos: 2.5,-8.5 + parent: 16 + type: Transform + - uid: 97 + components: + - pos: 1.5,-8.5 + parent: 16 + type: Transform + - uid: 98 + components: + - pos: 0.5,-8.5 + parent: 16 + type: Transform + - uid: 99 + components: + - pos: -0.5,-8.5 + parent: 16 + type: Transform + - uid: 100 + components: + - pos: -1.5,-8.5 + parent: 16 + type: Transform + - uid: 101 + components: + - pos: -2.5,-8.5 + parent: 16 + type: Transform + - uid: 102 + components: + - pos: -3.5,-8.5 + parent: 16 + type: Transform + - uid: 103 + components: + - pos: -4.5,-8.5 + parent: 16 + type: Transform + - uid: 203 + components: + - pos: -4.5,-7.5 + parent: 16 + type: Transform + - uid: 206 + components: + - pos: -4.5,-6.5 + parent: 16 + type: Transform + - uid: 341 + components: + - pos: -4.5,-5.5 + parent: 16 + type: Transform + - uid: 447 + components: + - pos: -4.5,-4.5 + parent: 16 + type: Transform + - uid: 450 + components: + - pos: -4.5,-3.5 + parent: 16 + type: Transform + - uid: 451 + components: + - pos: -0.5,-3.5 + parent: 16 + type: Transform + - uid: 616 + components: + - pos: -0.5,-4.5 + parent: 16 + type: Transform + - uid: 641 + components: + - pos: -0.5,-5.5 + parent: 16 + type: Transform + - uid: 642 + components: + - pos: -0.5,-6.5 + parent: 16 + type: Transform + - uid: 643 + components: + - pos: -0.5,-7.5 + parent: 16 + type: Transform + - uid: 644 + components: + - pos: 3.5,-3.5 + parent: 16 + type: Transform + - uid: 645 + components: + - pos: 3.5,-4.5 + parent: 16 + type: Transform + - uid: 646 + components: + - pos: 3.5,-5.5 + parent: 16 + type: Transform + - uid: 647 + components: + - pos: 3.5,-6.5 + parent: 16 + type: Transform + - uid: 648 + components: + - pos: 3.5,-7.5 + parent: 16 + type: Transform +- proto: WallSolid + entities: + - uid: 22 + components: + - pos: 2.5,7.5 + parent: 16 + type: Transform + - uid: 23 + components: + - pos: 1.5,7.5 + parent: 16 + type: Transform + - uid: 24 + components: + - pos: -2.5,7.5 + parent: 16 + type: Transform + - uid: 26 + components: + - pos: -4.5,6.5 + parent: 16 + type: Transform + - uid: 27 + components: + - pos: -5.5,5.5 + parent: 16 + type: Transform + - uid: 28 + components: + - pos: -6.5,5.5 + parent: 16 + type: Transform + - uid: 79 + components: + - pos: -4.5,4.5 + parent: 16 + type: Transform + - uid: 80 + components: + - pos: -4.5,3.5 + parent: 16 + type: Transform + - uid: 83 + components: + - pos: -6.5,1.5 + parent: 16 + type: Transform + - uid: 85 + components: + - pos: -0.5,3.5 + parent: 16 + type: Transform + - uid: 86 + components: + - pos: -0.5,4.5 + parent: 16 + type: Transform + - uid: 88 + components: + - pos: -0.5,6.5 + parent: 16 + type: Transform + - uid: 89 + components: + - pos: 3.5,6.5 + parent: 16 + type: Transform + - uid: 90 + components: + - pos: 3.5,5.5 + parent: 16 + type: Transform +- proto: WallSolidRust + entities: + - uid: 9 + components: + - pos: -7.5,5.5 + parent: 16 + type: Transform + - uid: 17 + components: + - pos: -3.5,7.5 + parent: 16 + type: Transform + - uid: 18 + components: + - pos: -1.5,7.5 + parent: 16 + type: Transform + - uid: 20 + components: + - pos: 0.5,7.5 + parent: 16 + type: Transform + - uid: 81 + components: + - pos: -4.5,2.5 + parent: 16 + type: Transform + - uid: 82 + components: + - pos: -4.5,1.5 + parent: 16 + type: Transform + - uid: 87 + components: + - pos: -0.5,5.5 + parent: 16 + type: Transform + - uid: 91 + components: + - pos: 3.5,3.5 + parent: 16 + type: Transform + - uid: 92 + components: + - pos: 3.5,4.5 + parent: 16 + type: Transform +- proto: WaterCooler + entities: + - uid: 592 + components: + - pos: -7.5,-1.5 + parent: 16 + type: Transform +- proto: WeaponCapacitorRecharger + entities: + - uid: 292 + components: + - pos: 0.5,-4.5 + parent: 16 + type: Transform +- proto: WeaponProtoKineticAccelerator + entities: + - uid: 677 + components: + - pos: -1.4948938,-7.519636 + parent: 16 + type: Transform +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 627 + components: + - pos: 4.5,4.5 + parent: 16 + type: Transform +- proto: WindoorSecureCargoLocked + entities: + - uid: 229 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,10.5 + parent: 16 + type: Transform + - uid: 469 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 16 + type: Transform + - uid: 470 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 16 + type: Transform + - uid: 471 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 16 + type: Transform + - uid: 472 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 16 + type: Transform + - uid: 479 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 16 + type: Transform + - uid: 480 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 16 + type: Transform + - uid: 483 + components: + - rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 16 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 4 + components: + - pos: -3.5,-6.5 + parent: 16 + type: Transform + - uid: 5 + components: + - pos: -3.5,-5.5 + parent: 16 + type: Transform + - uid: 6 + components: + - pos: -3.5,-4.5 + parent: 16 + type: Transform + - uid: 7 + components: + - pos: -1.5,-6.5 + parent: 16 + type: Transform + - uid: 8 + components: + - pos: -1.5,-5.5 + parent: 16 + type: Transform + - uid: 126 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 16 + type: Transform + - uid: 130 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 16 + type: Transform + - uid: 199 + components: + - pos: 1.5,-7.5 + parent: 16 + type: Transform + - uid: 228 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,11.5 + parent: 16 + type: Transform + - uid: 329 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 16 + type: Transform + - uid: 340 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 16 + type: Transform + - uid: 475 + components: + - pos: -1.5,-4.5 + parent: 16 + type: Transform +- proto: Wirecutter + entities: + - uid: 597 + components: + - pos: 5.950589,10.861998 + parent: 16 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-security-chunk.yml b/Resources/Maps/Salvage/DeltaV/DV-security-chunk.yml new file mode 100644 index 0000000000..4bf71c4987 --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-security-chunk.yml @@ -0,0 +1,1973 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 28: FloorDarkDiagonal + 34: FloorDarkPavement + 36: FloorDarkPlastic + 84: FloorSteel + 94: FloorSteelPavement + 96: FloorTechMaint + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: grid + type: MetaData + - pos: -0.484375,-0.45315552 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: HAAAAAAAHAAAAAAAcQAAAAAAJAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAJAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAcQAAAAAAJAAAAAAAJAAAAAAAIgAAAAAAJAAAAAAAJAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcQAAAAAAVAAAAAAAXgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAJAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAcQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAcQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAIgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAJAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAIgAAAAAAJAAAAAAAJAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAIgAAAAAAJAAAAAAAHAAAAAAAHAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe + decals: + 10: -2,3 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNw + decals: + 2: 0,-5 + 7: -3,0 + 11: 0,3 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSe + decals: + 5: -2,-2 + 8: 4,1 + 20: 3,0 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 4: -3,-2 + 21: 7,0 + 30: 6,1 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSe + decals: + 9: 3,1 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSw + decals: + 31: 7,1 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 19: -5,-3 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 3: 1,-5 + 12: 1,3 + 13: 2,3 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + decals: + 14: -2,5 + 15: -1,5 + 16: 0,5 + 17: 1,5 + 18: 2,5 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 6: -3,-1 + - node: + color: '#8F00007A' + id: splatter + decals: + 22: 6.80215,-0.906296 + 23: 7.0130873,-1.0703585 + 24: 6.7084,-1.468796 + 25: 6.8255873,-1.4922335 + 26: 7.17715,-0.7891085 + 27: 4.8334,0.968704 + 28: 5.0912123,1.062454 + 29: 4.92715,0.8983915 + - node: + color: '#9B823D9E' + id: splatter + decals: + 0: 3.8636055,3.4339294 + 1: 4.074543,3.457367 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + -1,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 3967 + 1,0: + 0: 65535 + 1,1: + 0: 16383 + 1,2: + 0: 15 + 2,0: + 0: 4375 + 2,1: + 0: 259 + -3,0: + 0: 12 + -2,0: + 0: 52943 + -2,1: + 0: 3727 + -2,2: + 0: 8 + -1,1: + 0: 65535 + -1,2: + 0: 3087 + 0,-2: + 0: 65311 + 0,-1: + 0: 65535 + 1,-2: + 0: 65283 + 1,-1: + 0: 65535 + 2,-2: + 0: 32512 + 2,-1: + 0: 8191 + 3,-1: + 0: 259 + -2,-1: + 0: 61388 + -2,-2: + 0: 52876 + -1,-2: + 0: 65535 + -1,-1: + 0: 65535 + -1,-3: + 0: 49152 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirlockBrigLocked + entities: + - uid: 77 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 89 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 90 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform +- proto: AirlockMaintSecLocked + entities: + - uid: 74 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 75 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 76 + components: + - pos: 7.5,-2.5 + parent: 1 + type: Transform +- proto: AmbrosiaVulgarisSeeds + entities: + - uid: 256 + components: + - pos: 5.2859335,5.3358917 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 62 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 109 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 218 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform +- proto: Bed + entities: + - uid: 92 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 178 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform +- proto: BedsheetOrange + entities: + - uid: 93 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform +- proto: BoxFolderYellow + entities: + - uid: 153 + components: + - rot: -1.5707963267948966 rad + pos: 5.4834805,-0.5550535 + parent: 1 + type: Transform +- proto: BrigTimer + entities: + - uid: 205 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 206 + components: + - pos: 7.5,2.5 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 96 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 110 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 111 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 112 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 113 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 114 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 209 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 210 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 211 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 212 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 213 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 214 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 215 + components: + - pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 216 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 219 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 220 + components: + - pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 221 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 225 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 226 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 227 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 228 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 229 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 230 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 232 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 233 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 234 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 235 + components: + - pos: -2.5,-1.5 + parent: 1 + type: Transform + - uid: 240 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 241 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 242 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 243 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 244 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 245 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 246 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 143 + components: + - pos: 9.5,-1.5 + parent: 1 + type: Transform + - uid: 145 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - uid: 146 + components: + - pos: 11.5,-1.5 + parent: 1 + type: Transform + - uid: 147 + components: + - pos: 11.5,-3.5 + parent: 1 + type: Transform + - uid: 148 + components: + - pos: 12.5,-3.5 + parent: 1 + type: Transform + - uid: 149 + components: + - pos: 11.5,-2.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 115 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 116 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 117 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 118 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 119 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 120 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 121 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 122 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 123 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 124 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 125 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 126 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 128 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 129 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 130 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 131 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 132 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 133 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 134 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 135 + components: + - pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 136 + components: + - pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 137 + components: + - pos: 9.5,-3.5 + parent: 1 + type: Transform + - uid: 138 + components: + - pos: 10.5,-3.5 + parent: 1 + type: Transform + - uid: 139 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - uid: 140 + components: + - pos: 11.5,-1.5 + parent: 1 + type: Transform + - uid: 141 + components: + - pos: 11.5,-2.5 + parent: 1 + type: Transform + - uid: 142 + components: + - pos: 11.5,-3.5 + parent: 1 + type: Transform + - uid: 144 + components: + - pos: 9.5,-1.5 + parent: 1 + type: Transform + - uid: 207 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 208 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 222 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 223 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 224 + components: + - pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 231 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 236 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 237 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 238 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 239 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform +- proto: Catwalk + entities: + - uid: 179 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 180 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 181 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 182 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 183 + components: + - pos: 7.5,-3.5 + parent: 1 + type: Transform +- proto: ChairFolding + entities: + - uid: 99 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 100 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 102 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 103 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 177 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform +- proto: ClosetBase + entities: + - uid: 34 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 63 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 249 + components: + - pos: -4.5,-2.5 + parent: 1 + type: Transform + - uid: 251 + components: + - pos: 5.5,-4.5 + parent: 1 + type: Transform +- proto: ClosetFireFilled + entities: + - uid: 250 + components: + - pos: -4.5,-3.5 + parent: 1 + type: Transform + - uid: 252 + components: + - pos: 6.5,-4.5 + parent: 1 + type: Transform +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 187 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 254 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 277 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClothingShoesBling + entities: + - uid: 192 + components: + - flags: InContainer + type: MetaData + - parent: 156 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: DrinkFourteenLokoCan + entities: + - uid: 203 + components: + - pos: 5.4417305,-1.4098206 + parent: 1 + type: Transform + - uid: 204 + components: + - rot: 1.5707963267948966 rad + pos: 4.433918,3.6995544 + parent: 1 + type: Transform +- proto: EmergencyLight + entities: + - uid: 286 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 287 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 288 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + type: Transform + - uid: 289 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 290 + components: + - rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1 + type: Transform +- proto: Girder + entities: + - uid: 8 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 67 + components: + - pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 70 + components: + - pos: -4.5,-0.5 + parent: 1 + type: Transform +- proto: HighSecArmoryLocked + entities: + - uid: 73 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 247 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform +- proto: hydroponicsSoil + entities: + - uid: 255 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform +- proto: JetpackSecurityFilled + entities: + - uid: 280 + components: + - flags: InContainer + type: MetaData + - parent: 165 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: LockerEvidence + entities: + - uid: 156 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 192 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: MagazinePistolCaselessRifle + entities: + - uid: 107 + components: + - pos: 6.7022305,-1.140991 + parent: 1 + type: Transform +- proto: MagazinePistolSubMachineGunPractice + entities: + - uid: 159 + components: + - pos: 0.34821194,5.588533 + parent: 1 + type: Transform + - uid: 172 + components: + - pos: 0.56696194,5.588533 + parent: 1 + type: Transform +- proto: PaperOffice + entities: + - uid: 101 + components: + - rot: -1.5707963267948966 rad + pos: 5.3897305,-0.41442847 + parent: 1 + type: Transform +- proto: PosterLegitHelpOthers + entities: + - uid: 259 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform +- proto: PosterLegitHereForYourSafety + entities: + - uid: 258 + components: + - pos: -5.5,-3.5 + parent: 1 + type: Transform +- proto: PosterLegitIonRifle + entities: + - uid: 260 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 261 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform +- proto: PosterLegitObey + entities: + - uid: 257 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform +- proto: PosterLegitSecWatch + entities: + - uid: 262 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform +- proto: PosterLegitThereIsNoGasGiant + entities: + - uid: 263 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform +- proto: Poweredlight + entities: + - uid: 284 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform +- proto: PoweredlightEmpty + entities: + - uid: 166 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 283 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 285 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform +- proto: Rack + entities: + - uid: 106 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 155 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 164 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform +- proto: RandomAmmoBox + entities: + - uid: 281 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 291 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 292 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform +- proto: RandomInstruments + entities: + - uid: 297 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform +- proto: RandomItem + entities: + - uid: 296 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform +- proto: RandomPosterLegit + entities: + - uid: 264 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 265 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform +- proto: RandomSecurityCorpseSpawner + entities: + - uid: 98 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 108 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 184 + components: + - pos: -2.5,-2.5 + parent: 1 + type: Transform + - uid: 185 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform +- proto: RandomSpawner + entities: + - uid: 267 + components: + - pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 268 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 270 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 271 + components: + - pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 272 + components: + - pos: 8.5,-3.5 + parent: 1 + type: Transform +- proto: RandomSpawner100 + entities: + - uid: 266 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 275 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 276 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 278 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 279 + components: + - pos: 5.5,6.5 + parent: 1 + type: Transform +- proto: ReinforcedGirder + entities: + - uid: 2 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 9 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 33 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 58 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 65 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 68 + components: + - pos: -5.5,-1.5 + parent: 1 + type: Transform +- proto: RevolverCapGun + entities: + - uid: 170 + components: + - pos: 2.180628,4.72245 + parent: 1 + type: Transform +- proto: RiotBulletShield + entities: + - uid: 167 + components: + - pos: 1.2477772,5.493541 + parent: 1 + type: Transform + - uid: 168 + components: + - pos: 1.3727772,5.602916 + parent: 1 + type: Transform +- proto: RiotShield + entities: + - uid: 169 + components: + - pos: 1.6540272,5.477916 + parent: 1 + type: Transform + - uid: 171 + components: + - pos: 1.7477772,5.649791 + parent: 1 + type: Transform +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 186 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 188 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 189 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 190 + components: + - pos: 1.5,-4.5 + parent: 1 + type: Transform + - uid: 248 + components: + - pos: 7.5,1.5 + parent: 1 + type: Transform +- proto: SalvageMobSpawner + entities: + - uid: 154 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 194 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 198 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 200 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 269 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform +- proto: SalvageMobSpawner75 + entities: + - uid: 193 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 197 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform +- proto: SalvagePartsSpawnerLow + entities: + - uid: 253 + components: + - pos: -7.5,0.5 + parent: 1 + type: Transform + - uid: 274 + components: + - pos: -6.5,-0.5 + parent: 1 + type: Transform + - uid: 293 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform +- proto: SalvagePartsSpawnerMid + entities: + - uid: 201 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 202 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 294 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 295 + components: + - pos: -1.5,-8.5 + parent: 1 + type: Transform +- proto: SpaceTickSpawner + entities: + - uid: 43 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform +- proto: SpawnMobBearSalvage + entities: + - uid: 191 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 196 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform +- proto: SpawnMobCarp + entities: + - uid: 195 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 199 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - uid: 273 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform +- proto: SpeedLoaderCap + entities: + - uid: 282 + components: + - pos: 2.532589,4.3975782 + parent: 1 + type: Transform +- proto: Stunbaton + entities: + - uid: 161 + components: + - pos: 0.52062917,1.5023277 + parent: 1 + type: Transform +- proto: SubstationBasic + entities: + - uid: 127 + components: + - pos: 9.5,-1.5 + parent: 1 + type: Transform +- proto: SuitStorageBase + entities: + - uid: 105 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform +- proto: SuitStorageSec + entities: + - uid: 165 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 280 + type: ContainerContainer +- proto: Table + entities: + - uid: 94 + components: + - pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 95 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 97 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 217 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform +- proto: TableFrame + entities: + - uid: 84 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform +- proto: TableReinforced + entities: + - uid: 85 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 86 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 87 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 175 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 176 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform +- proto: TrainingBomb + entities: + - uid: 152 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform +- proto: WallReinforced + entities: + - uid: 5 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 6 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 10 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 11 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 12 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 13 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 14 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 15 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 17 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 18 + components: + - pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 19 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 20 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 21 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 22 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 24 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 25 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 26 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 27 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 28 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 29 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 35 + components: + - pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 38 + components: + - pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 39 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 40 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 41 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 42 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 44 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 45 + components: + - pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 50 + components: + - pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 51 + components: + - pos: 9.5,-5.5 + parent: 1 + type: Transform + - uid: 52 + components: + - pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 53 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 54 + components: + - pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 55 + components: + - pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 56 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 57 + components: + - pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 59 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 60 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 61 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 66 + components: + - pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 71 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 72 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform +- proto: WallSolid + entities: + - uid: 7 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 16 + components: + - pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 36 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 37 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 46 + components: + - pos: -5.5,-3.5 + parent: 1 + type: Transform + - uid: 47 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform + - uid: 151 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform +- proto: WallSolidRust + entities: + - uid: 3 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 4 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 23 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 30 + components: + - pos: -5.5,-2.5 + parent: 1 + type: Transform + - uid: 31 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 32 + components: + - pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 48 + components: + - pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 49 + components: + - pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 64 + components: + - pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 69 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 91 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 150 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform +- proto: WeaponDisabler + entities: + - uid: 174 + components: + - pos: 1.141964,-0.4539845 + parent: 1 + type: Transform +- proto: WeaponDisablerPractice + entities: + - uid: 160 + components: + - pos: 0.89508694,-0.33334208 + parent: 1 + type: Transform + - uid: 173 + components: + - pos: 1.020087,-0.39584208 + parent: 1 + type: Transform +- proto: WeaponLaserCarbine + entities: + - uid: 104 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform +- proto: WindoorSecureArmoryLocked + entities: + - uid: 82 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 88 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 157 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 158 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 78 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 79 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 80 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 81 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 83 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 162 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 163 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-syndi-hideout.yml b/Resources/Maps/Salvage/DeltaV/DV-syndi-hideout.yml new file mode 100644 index 0000000000..8d8cfa86ca --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-syndi-hideout.yml @@ -0,0 +1,2021 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand +entities: +- proto: "" + entities: + - uid: 345 + components: + - type: MetaData + - pos: 0.5937195,1.901954 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAB + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABAAAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAABAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: BwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: [] + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 65535 + 0,-2: + 0: 65534 + 0,-1: + 0: 65535 + -4,-1: + 0: 53247 + -4,-2: + 0: 49152 + -3,-2: + 0: 63232 + -3,-1: + 0: 65535 + -2,-2: + 0: 63616 + -2,-1: + 0: 65535 + -1,-3: + 0: 62976 + -1,-2: + 0: 65535 + 0,-3: + 0: 52224 + 1,-3: + 0: 30512 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-2: + 0: 12560 + 2,-1: + 0: 307 + -4,1: + 0: 3310 + -4,0: + 0: 49152 + -3,0: + 0: 65519 + -3,1: + 0: 65535 + -3,2: + 0: 142 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 255 + -1,0: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 127 + 0,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 2287 + 1,0: + 0: 65399 + 1,1: + 0: 65535 + 1,2: + 0: 14335 + 2,0: + 0: 4096 + 2,1: + 0: 13107 + 2,2: + 0: 1 + -5,-1: + 0: 128 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - type: SpreaderGrid +- proto: Airlock + entities: + - uid: 15 + components: + - pos: 1.5,-2.5 + parent: 345 + type: Transform + - uid: 17 + components: + - pos: -4.5,1.5 + parent: 345 + type: Transform + - uid: 33 + components: + - pos: -2.5,1.5 + parent: 345 + type: Transform + - uid: 39 + components: + - pos: -3.5,-4.5 + parent: 345 + type: Transform +- proto: AirlockAssembly + entities: + - uid: 4 + components: + - pos: -6.5,-3.5 + parent: 345 + type: Transform + - uid: 254 + components: + - pos: -1.5,3.5 + parent: 345 + type: Transform +- proto: BalloonSyn + entities: + - uid: 285 + components: + - pos: -3.3966382,5.165968 + parent: 345 + type: Transform +- proto: BannerRevolution + entities: + - uid: 312 + components: + - pos: -8.5,-1.5 + parent: 345 + type: Transform +- proto: Bed + entities: + - uid: 274 + components: + - pos: -5.5,4.5 + parent: 345 + type: Transform + - uid: 275 + components: + - pos: -2.5,4.5 + parent: 345 + type: Transform +- proto: BedsheetSyndie + entities: + - uid: 278 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,4.5 + parent: 345 + type: Transform + - uid: 279 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 345 + type: Transform +- proto: ChairFolding + entities: + - uid: 304 + components: + - rot: 3.141592653589793 rad + pos: -0.4190684,-0.10668731 + parent: 345 + type: Transform + - uid: 305 + components: + - rot: 1.5707963267948966 rad + pos: -1.3044851,0.7584969 + parent: 345 + type: Transform +- proto: ChairFoldingSpawnFolded + entities: + - uid: 314 + components: + - rot: 1.5707963267948966 rad + pos: -7.1360197,0.40347207 + parent: 345 + type: Transform +- proto: CigaretteSyndicate + entities: + - uid: 342 + components: + - rot: 3.141592653589793 rad + pos: -2.5614266,-2.0971334 + parent: 345 + type: Transform + - uid: 343 + components: + - rot: 3.141592653589793 rad + pos: -0.529202,0.6886951 + parent: 345 + type: Transform +- proto: ClothingHeadPyjamaSyndicatePink + entities: + - uid: 283 + components: + - pos: -4.427888,5.6558914 + parent: 345 + type: Transform +- proto: ClothingUniformJumpsuitPyjamaSyndicatePink + entities: + - uid: 282 + components: + - rot: -1.5707963267948966 rad + pos: -4.5424714,5.478685 + parent: 345 + type: Transform +- proto: ComputerBroken + entities: + - uid: 313 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,0.5 + parent: 345 + type: Transform +- proto: DrinkSakeCup + entities: + - uid: 344 + components: + - rot: 3.141592653589793 rad + pos: 0.56045055,-1.2627298 + parent: 345 + type: Transform +- proto: FoodBoxPizza + entities: + - uid: 308 + components: + - pos: 0.5080149,-0.033719778 + parent: 345 + type: Transform +- proto: FoodPizzaMoldySlice + entities: + - uid: 306 + components: + - pos: 0.42468166,-1.3367084 + parent: 345 + type: Transform + - uid: 307 + components: + - rot: 3.141592653589793 rad + pos: 0.48718166,-0.97187144 + parent: 345 + type: Transform +- proto: FoodSnackSyndi + entities: + - uid: 284 + components: + - pos: -8.490765,-0.33739674 + parent: 345 + type: Transform +- proto: Grille + entities: + - uid: 259 + components: + - pos: -3.5,-5.5 + parent: 345 + type: Transform + - uid: 264 + components: + - pos: -7.5,-3.5 + parent: 345 + type: Transform +- proto: Lamp + entities: + - uid: 336 + components: + - pos: -4.0115986,5.8439803 + parent: 345 + type: Transform + - uid: 339 + components: + - rot: -1.5707963267948966 rad + pos: -0.0055954456,0.85728586 + parent: 345 + type: Transform + - uid: 340 + components: + - rot: -1.5707963267948966 rad + pos: -5.393706,0.10676515 + parent: 345 + type: Transform +- proto: LockerSyndicatePersonal + entities: + - uid: 277 + components: + - pos: -2.5,5.5 + parent: 345 + type: Transform +- proto: LockerSyndicatePersonalFilled + entities: + - uid: 276 + components: + - pos: -5.5,5.5 + parent: 345 + type: Transform +- proto: MaintenanceToolSpawner + entities: + - uid: 318 + components: + - pos: 0.5,-5.5 + parent: 345 + type: Transform + - uid: 322 + components: + - pos: -0.5,-5.5 + parent: 345 + type: Transform +- proto: MaintenanceWeaponSpawner + entities: + - uid: 319 + components: + - pos: -2.5,-1.5 + parent: 345 + type: Transform + - uid: 320 + components: + - pos: -2.5,-2.5 + parent: 345 + type: Transform + - uid: 321 + components: + - pos: -2.5,-3.5 + parent: 345 + type: Transform +- proto: MaterialWoodPlank1 + entities: + - uid: 269 + components: + - pos: -7.0976524,-0.8084415 + parent: 345 + type: Transform + - uid: 270 + components: + - rot: -1.5707963267948966 rad + pos: -6.2851524,-0.057920218 + parent: 345 + type: Transform +- proto: PortableFlasher + entities: + - uid: 337 + components: + - pos: -2.5,-5.5 + parent: 345 + type: Transform +- proto: PosterContrabandFreeSyndicateEncryptionKey + entities: + - uid: 271 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,1.5 + parent: 345 + type: Transform +- proto: PosterContrabandKudzu + entities: + - uid: 341 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,6.5 + parent: 345 + type: Transform +- proto: PosterContrabandSafetyMothSyndie + entities: + - uid: 272 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 345 + type: Transform +- proto: PosterContrabandSyndicatePistol + entities: + - uid: 310 + components: + - pos: -3.5,6.5 + parent: 345 + type: Transform +- proto: PosterContrabandSyndicateRecruitment + entities: + - uid: 311 + components: + - pos: -6.5,1.5 + parent: 345 + type: Transform +- proto: Rack + entities: + - uid: 294 + components: + - pos: -2.5,-3.5 + parent: 345 + type: Transform + - uid: 295 + components: + - pos: -2.5,-1.5 + parent: 345 + type: Transform + - uid: 297 + components: + - pos: -0.5,-5.5 + parent: 345 + type: Transform + - uid: 298 + components: + - pos: 0.5,-5.5 + parent: 345 + type: Transform + - uid: 299 + components: + - pos: -2.5,-2.5 + parent: 345 + type: Transform +- proto: RandomAmmoBox + entities: + - uid: 288 + components: + - pos: 2.5,-3.5 + parent: 345 + type: Transform + - uid: 289 + components: + - pos: 4.5,-2.5 + parent: 345 + type: Transform + - uid: 290 + components: + - pos: 4.5,-3.5 + parent: 345 + type: Transform +- proto: RandomAnomalySpawner + entities: + - uid: 317 + components: + - pos: -1.5,-2.5 + parent: 345 + type: Transform +- proto: RandomArtifactSpawner20 + entities: + - uid: 309 + components: + - pos: 2.5,5.5 + parent: 345 + type: Transform +- proto: RandomBook + entities: + - uid: 335 + components: + - pos: -5.5,2.5 + parent: 345 + type: Transform +- proto: RandomBox + entities: + - uid: 291 + components: + - pos: 3.5,-3.5 + parent: 345 + type: Transform + - uid: 292 + components: + - pos: 3.5,-2.5 + parent: 345 + type: Transform +- proto: RandomInstruments + entities: + - uid: 293 + components: + - pos: -5.5,3.5 + parent: 345 + type: Transform +- proto: RandomItem + entities: + - uid: 315 + components: + - pos: 0.5,0.5 + parent: 345 + type: Transform + - uid: 316 + components: + - pos: -5.5,-0.5 + parent: 345 + type: Transform +- proto: RandomRockSpawner + entities: + - uid: 1 + components: + - pos: 5.5,-5.5 + parent: 345 + type: Transform + - uid: 59 + components: + - pos: -7.5,2.5 + parent: 345 + type: Transform + - uid: 60 + components: + - pos: -7.5,3.5 + parent: 345 + type: Transform + - uid: 61 + components: + - pos: -7.5,4.5 + parent: 345 + type: Transform + - uid: 62 + components: + - pos: -7.5,5.5 + parent: 345 + type: Transform + - uid: 63 + components: + - pos: -7.5,6.5 + parent: 345 + type: Transform + - uid: 64 + components: + - pos: -8.5,2.5 + parent: 345 + type: Transform + - uid: 65 + components: + - pos: -8.5,3.5 + parent: 345 + type: Transform + - uid: 66 + components: + - pos: -8.5,4.5 + parent: 345 + type: Transform + - uid: 67 + components: + - pos: -8.5,5.5 + parent: 345 + type: Transform + - uid: 68 + components: + - pos: -8.5,6.5 + parent: 345 + type: Transform + - uid: 69 + components: + - pos: -9.5,2.5 + parent: 345 + type: Transform + - uid: 70 + components: + - pos: -9.5,3.5 + parent: 345 + type: Transform + - uid: 71 + components: + - pos: -9.5,4.5 + parent: 345 + type: Transform + - uid: 72 + components: + - pos: -9.5,5.5 + parent: 345 + type: Transform + - uid: 73 + components: + - pos: -9.5,6.5 + parent: 345 + type: Transform + - uid: 74 + components: + - pos: -10.5,2.5 + parent: 345 + type: Transform + - uid: 75 + components: + - pos: -10.5,3.5 + parent: 345 + type: Transform + - uid: 76 + components: + - pos: -10.5,4.5 + parent: 345 + type: Transform + - uid: 77 + components: + - pos: -10.5,5.5 + parent: 345 + type: Transform + - uid: 78 + components: + - pos: -10.5,6.5 + parent: 345 + type: Transform + - uid: 79 + components: + - pos: -11.5,6.5 + parent: 345 + type: Transform + - uid: 80 + components: + - pos: -11.5,5.5 + parent: 345 + type: Transform + - uid: 81 + components: + - pos: -11.5,4.5 + parent: 345 + type: Transform + - uid: 82 + components: + - pos: -11.5,3.5 + parent: 345 + type: Transform + - uid: 83 + components: + - pos: -12.5,5.5 + parent: 345 + type: Transform + - uid: 84 + components: + - pos: -12.5,4.5 + parent: 345 + type: Transform + - uid: 85 + components: + - pos: -12.5,3.5 + parent: 345 + type: Transform + - uid: 86 + components: + - pos: -13.5,5.5 + parent: 345 + type: Transform + - uid: 87 + components: + - pos: -13.5,4.5 + parent: 345 + type: Transform + - uid: 88 + components: + - pos: -13.5,3.5 + parent: 345 + type: Transform + - uid: 89 + components: + - pos: -10.5,7.5 + parent: 345 + type: Transform + - uid: 90 + components: + - pos: -10.5,8.5 + parent: 345 + type: Transform + - uid: 91 + components: + - pos: -9.5,7.5 + parent: 345 + type: Transform + - uid: 92 + components: + - pos: -9.5,8.5 + parent: 345 + type: Transform + - uid: 93 + components: + - pos: -8.5,7.5 + parent: 345 + type: Transform + - uid: 94 + components: + - pos: -8.5,8.5 + parent: 345 + type: Transform + - uid: 95 + components: + - pos: -7.5,7.5 + parent: 345 + type: Transform + - uid: 96 + components: + - pos: -7.5,8.5 + parent: 345 + type: Transform + - uid: 97 + components: + - pos: -6.5,7.5 + parent: 345 + type: Transform + - uid: 98 + components: + - pos: -6.5,8.5 + parent: 345 + type: Transform + - uid: 99 + components: + - pos: -5.5,7.5 + parent: 345 + type: Transform + - uid: 100 + components: + - pos: -5.5,8.5 + parent: 345 + type: Transform + - uid: 101 + components: + - pos: -4.5,7.5 + parent: 345 + type: Transform + - uid: 102 + components: + - pos: -4.5,8.5 + parent: 345 + type: Transform + - uid: 103 + components: + - pos: -3.5,7.5 + parent: 345 + type: Transform + - uid: 104 + components: + - pos: -3.5,8.5 + parent: 345 + type: Transform + - uid: 105 + components: + - pos: -2.5,7.5 + parent: 345 + type: Transform + - uid: 106 + components: + - pos: -2.5,8.5 + parent: 345 + type: Transform + - uid: 107 + components: + - pos: -1.5,7.5 + parent: 345 + type: Transform + - uid: 108 + components: + - pos: -1.5,8.5 + parent: 345 + type: Transform + - uid: 109 + components: + - pos: -0.5,7.5 + parent: 345 + type: Transform + - uid: 110 + components: + - pos: -0.5,8.5 + parent: 345 + type: Transform + - uid: 111 + components: + - pos: -7.5,9.5 + parent: 345 + type: Transform + - uid: 112 + components: + - pos: -6.5,9.5 + parent: 345 + type: Transform + - uid: 113 + components: + - pos: -5.5,9.5 + parent: 345 + type: Transform + - uid: 114 + components: + - pos: -4.5,9.5 + parent: 345 + type: Transform + - uid: 115 + components: + - pos: -3.5,9.5 + parent: 345 + type: Transform + - uid: 116 + components: + - pos: -0.5,6.5 + parent: 345 + type: Transform + - uid: 117 + components: + - pos: -0.5,5.5 + parent: 345 + type: Transform + - uid: 118 + components: + - pos: -0.5,4.5 + parent: 345 + type: Transform + - uid: 119 + components: + - pos: 4.5,1.5 + parent: 345 + type: Transform + - uid: 120 + components: + - pos: -0.5,2.5 + parent: 345 + type: Transform + - uid: 121 + components: + - pos: 0.5,6.5 + parent: 345 + type: Transform + - uid: 122 + components: + - pos: 2.5,0.5 + parent: 345 + type: Transform + - uid: 123 + components: + - pos: 3.5,0.5 + parent: 345 + type: Transform + - uid: 124 + components: + - pos: 3.5,-0.5 + parent: 345 + type: Transform + - uid: 125 + components: + - pos: 0.5,2.5 + parent: 345 + type: Transform + - uid: 126 + components: + - pos: 1.5,6.5 + parent: 345 + type: Transform + - uid: 127 + components: + - pos: 2.5,-0.5 + parent: 345 + type: Transform + - uid: 128 + components: + - pos: 3.5,1.5 + parent: 345 + type: Transform + - uid: 129 + components: + - pos: 1.5,3.5 + parent: 345 + type: Transform + - uid: 130 + components: + - pos: 1.5,2.5 + parent: 345 + type: Transform + - uid: 131 + components: + - pos: 2.5,6.5 + parent: 345 + type: Transform + - uid: 132 + components: + - pos: 2.5,1.5 + parent: 345 + type: Transform + - uid: 133 + components: + - pos: 2.5,1.5 + parent: 345 + type: Transform + - uid: 134 + components: + - pos: 2.5,3.5 + parent: 345 + type: Transform + - uid: 135 + components: + - pos: 2.5,2.5 + parent: 345 + type: Transform + - uid: 136 + components: + - pos: 3.5,6.5 + parent: 345 + type: Transform + - uid: 137 + components: + - pos: 3.5,5.5 + parent: 345 + type: Transform + - uid: 138 + components: + - pos: 3.5,4.5 + parent: 345 + type: Transform + - uid: 139 + components: + - pos: 3.5,3.5 + parent: 345 + type: Transform + - uid: 140 + components: + - pos: 3.5,2.5 + parent: 345 + type: Transform + - uid: 141 + components: + - pos: 4.5,6.5 + parent: 345 + type: Transform + - uid: 142 + components: + - pos: 4.5,5.5 + parent: 345 + type: Transform + - uid: 143 + components: + - pos: 4.5,4.5 + parent: 345 + type: Transform + - uid: 144 + components: + - pos: 4.5,3.5 + parent: 345 + type: Transform + - uid: 145 + components: + - pos: 4.5,2.5 + parent: 345 + type: Transform + - uid: 146 + components: + - pos: 5.5,6.5 + parent: 345 + type: Transform + - uid: 147 + components: + - pos: 5.5,5.5 + parent: 345 + type: Transform + - uid: 148 + components: + - pos: 5.5,4.5 + parent: 345 + type: Transform + - uid: 149 + components: + - pos: 5.5,3.5 + parent: 345 + type: Transform + - uid: 150 + components: + - pos: 5.5,2.5 + parent: 345 + type: Transform + - uid: 151 + components: + - pos: 6.5,6.5 + parent: 345 + type: Transform + - uid: 152 + components: + - pos: 6.5,5.5 + parent: 345 + type: Transform + - uid: 153 + components: + - pos: 6.5,4.5 + parent: 345 + type: Transform + - uid: 154 + components: + - pos: 6.5,3.5 + parent: 345 + type: Transform + - uid: 155 + components: + - pos: 6.5,2.5 + parent: 345 + type: Transform + - uid: 156 + components: + - pos: 7.5,6.5 + parent: 345 + type: Transform + - uid: 157 + components: + - pos: 7.5,5.5 + parent: 345 + type: Transform + - uid: 158 + components: + - pos: 7.5,4.5 + parent: 345 + type: Transform + - uid: 159 + components: + - pos: 7.5,3.5 + parent: 345 + type: Transform + - uid: 160 + components: + - pos: 7.5,2.5 + parent: 345 + type: Transform + - uid: 161 + components: + - pos: 0.5,8.5 + parent: 345 + type: Transform + - uid: 162 + components: + - pos: 0.5,7.5 + parent: 345 + type: Transform + - uid: 163 + components: + - pos: 1.5,8.5 + parent: 345 + type: Transform + - uid: 164 + components: + - pos: 1.5,7.5 + parent: 345 + type: Transform + - uid: 165 + components: + - pos: 2.5,8.5 + parent: 345 + type: Transform + - uid: 166 + components: + - pos: 2.5,7.5 + parent: 345 + type: Transform + - uid: 167 + components: + - pos: 3.5,8.5 + parent: 345 + type: Transform + - uid: 168 + components: + - pos: 3.5,7.5 + parent: 345 + type: Transform + - uid: 169 + components: + - pos: 4.5,8.5 + parent: 345 + type: Transform + - uid: 170 + components: + - pos: 4.5,7.5 + parent: 345 + type: Transform + - uid: 171 + components: + - pos: 5.5,8.5 + parent: 345 + type: Transform + - uid: 172 + components: + - pos: 5.5,7.5 + parent: 345 + type: Transform + - uid: 173 + components: + - pos: 6.5,8.5 + parent: 345 + type: Transform + - uid: 174 + components: + - pos: 6.5,7.5 + parent: 345 + type: Transform + - uid: 175 + components: + - pos: 4.5,9.5 + parent: 345 + type: Transform + - uid: 176 + components: + - pos: 4.5,9.5 + parent: 345 + type: Transform + - uid: 177 + components: + - pos: 4.5,10.5 + parent: 345 + type: Transform + - uid: 178 + components: + - pos: 5.5,9.5 + parent: 345 + type: Transform + - uid: 179 + components: + - pos: 5.5,10.5 + parent: 345 + type: Transform + - uid: 180 + components: + - pos: 4.5,0.5 + parent: 345 + type: Transform + - uid: 181 + components: + - pos: 4.5,-0.5 + parent: 345 + type: Transform + - uid: 182 + components: + - pos: 5.5,1.5 + parent: 345 + type: Transform + - uid: 183 + components: + - pos: 5.5,0.5 + parent: 345 + type: Transform + - uid: 184 + components: + - pos: 5.5,-0.5 + parent: 345 + type: Transform + - uid: 185 + components: + - pos: 6.5,1.5 + parent: 345 + type: Transform + - uid: 186 + components: + - pos: 6.5,0.5 + parent: 345 + type: Transform + - uid: 187 + components: + - pos: 6.5,-0.5 + parent: 345 + type: Transform + - uid: 188 + components: + - pos: 7.5,-0.5 + parent: 345 + type: Transform + - uid: 189 + components: + - pos: 6.5,-1.5 + parent: 345 + type: Transform + - uid: 190 + components: + - pos: 6.5,-1.5 + parent: 345 + type: Transform + - uid: 191 + components: + - pos: 6.5,-2.5 + parent: 345 + type: Transform + - uid: 192 + components: + - pos: 6.5,-3.5 + parent: 345 + type: Transform + - uid: 193 + components: + - pos: 6.5,-4.5 + parent: 345 + type: Transform + - uid: 194 + components: + - pos: 6.5,-5.5 + parent: 345 + type: Transform + - uid: 195 + components: + - pos: 6.5,-6.5 + parent: 345 + type: Transform + - uid: 196 + components: + - pos: 6.5,-7.5 + parent: 345 + type: Transform + - uid: 197 + components: + - pos: 7.5,-1.5 + parent: 345 + type: Transform + - uid: 198 + components: + - pos: 7.5,-2.5 + parent: 345 + type: Transform + - uid: 199 + components: + - pos: 7.5,-3.5 + parent: 345 + type: Transform + - uid: 200 + components: + - pos: 7.5,-4.5 + parent: 345 + type: Transform + - uid: 201 + components: + - pos: 7.5,-5.5 + parent: 345 + type: Transform + - uid: 202 + components: + - pos: 7.5,-6.5 + parent: 345 + type: Transform + - uid: 203 + components: + - pos: 7.5,-7.5 + parent: 345 + type: Transform + - uid: 204 + components: + - pos: 8.5,-5.5 + parent: 345 + type: Transform + - uid: 205 + components: + - pos: 8.5,-5.5 + parent: 345 + type: Transform + - uid: 206 + components: + - pos: 8.5,-4.5 + parent: 345 + type: Transform + - uid: 207 + components: + - pos: 8.5,-3.5 + parent: 345 + type: Transform + - uid: 208 + components: + - pos: 8.5,-2.5 + parent: 345 + type: Transform + - uid: 209 + components: + - pos: 9.5,-3.5 + parent: 345 + type: Transform + - uid: 210 + components: + - pos: 5.5,-6.5 + parent: 345 + type: Transform + - uid: 211 + components: + - pos: 5.5,-7.5 + parent: 345 + type: Transform + - uid: 212 + components: + - pos: 5.5,-8.5 + parent: 345 + type: Transform + - uid: 213 + components: + - pos: 5.5,-9.5 + parent: 345 + type: Transform + - uid: 214 + components: + - pos: 4.5,-5.5 + parent: 345 + type: Transform + - uid: 215 + components: + - pos: 4.5,-6.5 + parent: 345 + type: Transform + - uid: 216 + components: + - pos: 4.5,-7.5 + parent: 345 + type: Transform + - uid: 217 + components: + - pos: 4.5,-8.5 + parent: 345 + type: Transform + - uid: 218 + components: + - pos: 4.5,-9.5 + parent: 345 + type: Transform + - uid: 219 + components: + - pos: 3.5,-5.5 + parent: 345 + type: Transform + - uid: 220 + components: + - pos: 3.5,-6.5 + parent: 345 + type: Transform + - uid: 221 + components: + - pos: 3.5,-7.5 + parent: 345 + type: Transform + - uid: 222 + components: + - pos: 3.5,-8.5 + parent: 345 + type: Transform + - uid: 223 + components: + - pos: 3.5,-9.5 + parent: 345 + type: Transform + - uid: 224 + components: + - pos: 2.5,-5.5 + parent: 345 + type: Transform + - uid: 225 + components: + - pos: 2.5,-6.5 + parent: 345 + type: Transform + - uid: 226 + components: + - pos: 2.5,-7.5 + parent: 345 + type: Transform + - uid: 227 + components: + - pos: 2.5,-8.5 + parent: 345 + type: Transform + - uid: 228 + components: + - pos: 2.5,-9.5 + parent: 345 + type: Transform + - uid: 229 + components: + - pos: 6.5,-8.5 + parent: 345 + type: Transform + - uid: 230 + components: + - pos: -2.5,-7.5 + parent: 345 + type: Transform + - uid: 231 + components: + - pos: -1.5,-7.5 + parent: 345 + type: Transform + - uid: 232 + components: + - pos: -1.5,-8.5 + parent: 345 + type: Transform + - uid: 233 + components: + - pos: -5.5,-4.5 + parent: 345 + type: Transform + - uid: 234 + components: + - pos: -10.5,-0.5 + parent: 345 + type: Transform + - uid: 235 + components: + - pos: -10.5,-1.5 + parent: 345 + type: Transform + - uid: 236 + components: + - pos: -10.5,-2.5 + parent: 345 + type: Transform + - uid: 237 + components: + - pos: -10.5,-3.5 + parent: 345 + type: Transform + - uid: 238 + components: + - pos: -10.5,-4.5 + parent: 345 + type: Transform + - uid: 239 + components: + - pos: -11.5,-0.5 + parent: 345 + type: Transform + - uid: 240 + components: + - pos: -11.5,-1.5 + parent: 345 + type: Transform + - uid: 241 + components: + - pos: -11.5,-2.5 + parent: 345 + type: Transform + - uid: 242 + components: + - pos: -11.5,-3.5 + parent: 345 + type: Transform + - uid: 243 + components: + - pos: -11.5,-4.5 + parent: 345 + type: Transform + - uid: 244 + components: + - pos: -12.5,-0.5 + parent: 345 + type: Transform + - uid: 245 + components: + - pos: -12.5,-1.5 + parent: 345 + type: Transform + - uid: 246 + components: + - pos: -12.5,-2.5 + parent: 345 + type: Transform + - uid: 247 + components: + - pos: -12.5,-3.5 + parent: 345 + type: Transform + - uid: 248 + components: + - pos: -12.5,-4.5 + parent: 345 + type: Transform + - uid: 249 + components: + - pos: -13.5,-2.5 + parent: 345 + type: Transform + - uid: 250 + components: + - pos: -13.5,-3.5 + parent: 345 + type: Transform + - uid: 251 + components: + - pos: -14.5,-2.5 + parent: 345 + type: Transform + - uid: 252 + components: + - pos: -14.5,-3.5 + parent: 345 + type: Transform + - uid: 253 + components: + - pos: -9.5,-3.5 + parent: 345 + type: Transform + - uid: 255 + components: + - pos: -11.5,-5.5 + parent: 345 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 260 + components: + - pos: -7.5,-3.5 + parent: 345 + type: Transform + - uid: 263 + components: + - pos: -3.5,-5.5 + parent: 345 + type: Transform +- proto: SalvageCanisterSpawner + entities: + - uid: 325 + components: + - pos: -5.5,-2.5 + parent: 345 + type: Transform + - uid: 326 + components: + - pos: 0.5,-4.5 + parent: 345 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 323 + components: + - pos: 2.5,-2.5 + parent: 345 + type: Transform + - uid: 324 + components: + - pos: -4.5,-2.5 + parent: 345 + type: Transform +- proto: SalvagePartsSpawnerLow + entities: + - uid: 327 + components: + - pos: -0.5,0.5 + parent: 345 + type: Transform +- proto: SignConspiracyBoard + entities: + - uid: 303 + components: + - pos: -1.5,1.5 + parent: 345 + type: Transform +- proto: SinkEmpty + entities: + - uid: 287 + components: + - rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 345 + type: Transform +- proto: SnakeMobMundane + entities: + - uid: 332 + components: + - pos: -4.5,3.5 + parent: 345 + type: Transform +- proto: SnakeMobMundane25 + entities: + - uid: 347 + components: + - pos: -2.5,3.5 + parent: 345 + type: Transform +- proto: SnakeSpawnerMundane + entities: + - uid: 346 + components: + - pos: -3.5,3.5 + parent: 345 + type: Transform +- proto: SpaceTickSpawner + entities: + - uid: 328 + components: + - pos: 0.5,3.5 + parent: 345 + type: Transform + - uid: 329 + components: + - pos: 0.5,3.5 + parent: 345 + type: Transform + - uid: 330 + components: + - pos: 0.5,4.5 + parent: 345 + type: Transform + - uid: 331 + components: + - pos: 0.5,5.5 + parent: 345 + type: Transform + - uid: 333 + components: + - pos: -7.5,-1.5 + parent: 345 + type: Transform + - uid: 334 + components: + - pos: -5.5,-1.5 + parent: 345 + type: Transform +- proto: Table + entities: + - uid: 296 + components: + - pos: -0.5,0.5 + parent: 345 + type: Transform + - uid: 300 + components: + - pos: 0.5,0.5 + parent: 345 + type: Transform + - uid: 301 + components: + - pos: 0.5,-0.5 + parent: 345 + type: Transform + - uid: 302 + components: + - pos: 0.5,-1.5 + parent: 345 + type: Transform +- proto: TableFrame + entities: + - uid: 265 + components: + - pos: -7.5,-0.5 + parent: 345 + type: Transform + - uid: 266 + components: + - pos: -6.5,-0.5 + parent: 345 + type: Transform +- proto: TableWood + entities: + - uid: 267 + components: + - pos: -5.5,-0.5 + parent: 345 + type: Transform + - uid: 268 + components: + - pos: -8.5,-0.5 + parent: 345 + type: Transform +- proto: TableWoodReinforced + entities: + - uid: 280 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,5.5 + parent: 345 + type: Transform + - uid: 281 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 345 + type: Transform +- proto: ToiletDirtyWater + entities: + - uid: 286 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 345 + type: Transform +- proto: Torch + entities: + - uid: 338 + components: + - pos: -0.39101207,3.5153823 + parent: 345 + type: Transform +- proto: WallSolid + entities: + - uid: 20 + components: + - pos: -1.5,5.5 + parent: 345 + type: Transform + - uid: 23 + components: + - pos: 0.5,1.5 + parent: 345 + type: Transform + - uid: 30 + components: + - pos: 1.5,-5.5 + parent: 345 + type: Transform + - uid: 31 + components: + - pos: 3.5,-1.5 + parent: 345 + type: Transform + - uid: 42 + components: + - pos: -9.5,-0.5 + parent: 345 + type: Transform + - uid: 50 + components: + - pos: -1.5,6.5 + parent: 345 + type: Transform + - uid: 55 + components: + - pos: -6.5,4.5 + parent: 345 + type: Transform + - uid: 261 + components: + - pos: -8.5,-3.5 + parent: 345 + type: Transform + - uid: 262 + components: + - pos: -8.5,-2.5 + parent: 345 + type: Transform + - uid: 273 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 345 + type: Transform +- proto: WallSolidRust + entities: + - uid: 2 + components: + - pos: -9.5,-2.5 + parent: 345 + type: Transform + - uid: 3 + components: + - pos: -9.5,-1.5 + parent: 345 + type: Transform + - uid: 5 + components: + - pos: -9.5,0.5 + parent: 345 + type: Transform + - uid: 6 + components: + - pos: -3.5,-2.5 + parent: 345 + type: Transform + - uid: 7 + components: + - pos: -3.5,-1.5 + parent: 345 + type: Transform + - uid: 8 + components: + - pos: -3.5,-0.5 + parent: 345 + type: Transform + - uid: 9 + components: + - pos: -3.5,0.5 + parent: 345 + type: Transform + - uid: 10 + components: + - pos: -9.5,1.5 + parent: 345 + type: Transform + - uid: 11 + components: + - pos: -8.5,1.5 + parent: 345 + type: Transform + - uid: 12 + components: + - pos: -7.5,1.5 + parent: 345 + type: Transform + - uid: 13 + components: + - pos: -6.5,1.5 + parent: 345 + type: Transform + - uid: 14 + components: + - pos: -5.5,1.5 + parent: 345 + type: Transform + - uid: 16 + components: + - pos: -3.5,1.5 + parent: 345 + type: Transform + - uid: 18 + components: + - pos: -1.5,1.5 + parent: 345 + type: Transform + - uid: 19 + components: + - pos: -0.5,1.5 + parent: 345 + type: Transform + - uid: 21 + components: + - pos: -6.5,2.5 + parent: 345 + type: Transform + - uid: 22 + components: + - pos: -6.5,3.5 + parent: 345 + type: Transform + - uid: 24 + components: + - pos: -6.5,5.5 + parent: 345 + type: Transform + - uid: 25 + components: + - pos: -6.5,6.5 + parent: 345 + type: Transform + - uid: 26 + components: + - pos: -5.5,6.5 + parent: 345 + type: Transform + - uid: 27 + components: + - pos: -4.5,6.5 + parent: 345 + type: Transform + - uid: 28 + components: + - pos: -3.5,6.5 + parent: 345 + type: Transform + - uid: 29 + components: + - pos: -2.5,6.5 + parent: 345 + type: Transform + - uid: 32 + components: + - pos: -1.5,4.5 + parent: 345 + type: Transform + - uid: 34 + components: + - pos: -1.5,2.5 + parent: 345 + type: Transform + - uid: 35 + components: + - pos: 1.5,1.5 + parent: 345 + type: Transform + - uid: 36 + components: + - pos: 1.5,0.5 + parent: 345 + type: Transform + - uid: 37 + components: + - pos: 1.5,-0.5 + parent: 345 + type: Transform + - uid: 38 + components: + - pos: 1.5,-1.5 + parent: 345 + type: Transform + - uid: 40 + components: + - pos: 1.5,-3.5 + parent: 345 + type: Transform + - uid: 41 + components: + - pos: 1.5,-4.5 + parent: 345 + type: Transform + - uid: 43 + components: + - pos: -3.5,-6.5 + parent: 345 + type: Transform + - uid: 44 + components: + - pos: -2.5,-6.5 + parent: 345 + type: Transform + - uid: 45 + components: + - pos: -1.5,-6.5 + parent: 345 + type: Transform + - uid: 46 + components: + - pos: -0.5,-6.5 + parent: 345 + type: Transform + - uid: 47 + components: + - pos: 0.5,-6.5 + parent: 345 + type: Transform + - uid: 48 + components: + - pos: 1.5,-6.5 + parent: 345 + type: Transform + - uid: 49 + components: + - pos: 2.5,-1.5 + parent: 345 + type: Transform + - uid: 51 + components: + - pos: 4.5,-1.5 + parent: 345 + type: Transform + - uid: 52 + components: + - pos: 5.5,-1.5 + parent: 345 + type: Transform + - uid: 53 + components: + - pos: 2.5,-4.5 + parent: 345 + type: Transform + - uid: 54 + components: + - pos: 3.5,-4.5 + parent: 345 + type: Transform + - uid: 56 + components: + - pos: 5.5,-4.5 + parent: 345 + type: Transform + - uid: 57 + components: + - pos: 5.5,-2.5 + parent: 345 + type: Transform + - uid: 58 + components: + - pos: 5.5,-3.5 + parent: 345 + type: Transform + - uid: 256 + components: + - pos: -3.5,-3.5 + parent: 345 + type: Transform + - uid: 257 + components: + - pos: -4.5,-3.5 + parent: 345 + type: Transform + - uid: 258 + components: + - pos: -5.5,-3.5 + parent: 345 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-tick-colony.yml b/Resources/Maps/Salvage/DeltaV/DV-tick-colony.yml new file mode 100644 index 0000000000..5bddbb9a79 --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-tick-colony.yml @@ -0,0 +1,927 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand + 8: FloorAsteroidSandDug + 52: FloorGreenCircuit + 72: FloorReinforced + 113: Plating +entities: +- proto: "" + entities: + - uid: 119 + components: + - type: MetaData + - parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAABCAAAAAAABwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABcQAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAC + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAACCAAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAABSAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAACSAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABSAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: BwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAABwAAAAAABwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABcQAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABCAAAAAAABwAAAAACBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAACCAAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Remains + decals: + 96: 1.9534924,1.0517962 + 97: 1.0472424,-4.948204 + - node: + color: '#9FED5896' + id: WarnCornerNE + decals: + 3: 0,3 + - node: + color: '#9FED5896' + id: WarnCornerNW + decals: + 2: -2,3 + - node: + color: '#9FED5896' + id: WarnCornerSE + decals: + 1: 0,1 + - node: + color: '#9FED5896' + id: WarnCornerSW + decals: + 0: -2,1 + - node: + color: '#9FED5896' + id: WarnLineE + decals: + 6: 0,2 + - node: + color: '#9FED5896' + id: WarnLineN + decals: + 4: -1,1 + - node: + color: '#9FED5896' + id: WarnLineS + decals: + 5: -2,2 + - node: + color: '#9FED5896' + id: WarnLineW + decals: + 7: -1,3 + - node: + color: '#79150063' + id: exclamationmark + decals: + 44: -3.8162756,-0.24618945 + 45: -4.0350256,0.20693552 + 46: -3.8162756,0.7225605 + 47: -4.0194006,1.1756855 + 48: -3.7381506,1.6756856 + 49: -3.9100256,2.0506856 + 50: -1.1558826,-6.8087125 + 51: -0.89025766,-6.2774625 + 52: -1.1558826,-5.8243375 + 53: -0.85900766,-5.4805875 + - node: + angle: 1.5707963267948966 rad + color: '#79150063' + id: exclamationmark + decals: + 54: -1.4215076,-5.2462125 + 55: -1.8590076,-4.8555875 + 56: -2.5152576,-5.0899625 + - node: + color: '#79150012' + id: splatter + decals: + 57: -2.7965076,-4.7305875 + 58: -2.9371326,-4.7305875 + 59: -2.9371326,-4.6055875 + 60: -2.8902576,-4.3712125 + 61: -2.6871326,-4.3243375 + 62: -2.6715076,-3.9180875 + 63: -2.8121326,-4.1368375 + 64: -2.8121326,-4.3555875 + 65: -2.9058826,-4.4493375 + 66: -3.0152576,-4.4649625 + 67: -3.1715076,-4.3399625 + 68: -3.2027576,-4.2149625 + 69: -3.1715076,-4.1680875 + 70: -3.0152576,-4.1212125 + 71: -3.0152576,-4.1212125 + 72: -2.9371326,-4.2462125 + 73: -2.9371326,-3.7618375 + 74: -2.9371326,-3.7618375 + 75: -2.9371326,-3.5274625 + 76: -2.7652576,-3.7305875 + 77: -3.4996326,2.811473 + 78: -4.015258,2.795848 + 79: -3.8433826,2.795848 + 80: -3.6558826,2.827098 + 81: -3.3902576,2.842723 + 82: -3.1715076,2.889598 + 83: -2.8746326,3.092723 + 84: -3.4215076,3.123973 + 85: -3.6090076,3.092723 + 86: -2.5465076,3.420848 + 87: -1.9371326,3.670848 + 88: -1.5933826,3.436473 + 89: -2.0308826,3.639598 + 90: -1.5152576,3.873973 + 91: 0.9847424,0.873973 + 92: 0.5941174,0.827098 + 93: 0.8128674,0.811473 + 94: 1.6722424,0.780223 + 95: 2.4378674,0.827098 + - node: + color: '#79150022' + id: splatter + decals: + 8: 0.6093248,1.4100605 + 9: 0.5936998,1.1913105 + 10: 0.4530748,1.3006855 + 11: 0.3436998,1.6756856 + 12: 0.21869981,2.0038106 + 13: 0.21869981,2.0663106 + 14: 0.6249498,1.8475606 + 15: 0.6561998,1.7069356 + 16: 0.6561998,1.6913106 + 17: 0.7655748,1.3944355 + 18: 0.8124498,1.4100605 + 19: 0.6561998,1.5663106 + 20: 0.3905748,1.6131856 + 21: 0.3436998,1.5506856 + 22: 0.4686998,1.5038106 + 23: 0.24994981,1.6444356 + 24: 0.3905748,1.8631856 + 25: 1.2811998,1.2381855 + 26: 1.6561999,0.8788105 + 27: 1.3436998,1.0506855 + 28: 1.5311999,1.0038105 + 29: 1.9218249,0.9413105 + 30: 1.3749498,0.9569355 + 31: 1.0468248,1.3944355 + 32: 1.1249498,0.9100605 + 33: -2.62505,2.9725606 + 34: -2.56255,3.4413106 + 35: -2.2188,3.1131856 + 36: -2.734425,3.2225606 + 37: -2.609425,2.7850606 + 38: -2.484425,2.7694356 + 39: -2.37505,2.3944356 + 40: -2.3438,2.6444356 + 41: -2.421925,2.9569356 + 42: -2.671925,3.0194356 + 43: -2.81255,3.0038106 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 65535 + -1,0: + 0: 65535 + 0,0: + 0: 65535 + 0,-1: + 0: 65535 + -2,-1: + 0: 52428 + -2,-2: + 0: 51200 + -1,-2: + 0: 65520 + -2,0: + 0: 52428 + -1,1: + 0: 4095 + 0,1: + 0: 887 + 1,0: + 0: 273 + 0,-2: + 0: 65392 + 1,-1: + 0: 4369 + -2,1: + 0: 136 + 1,-2: + 0: 4096 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: OccluderTree + - type: Shuttle + - type: GasTileOverlay + - type: RadiationGridResistance + - type: SpreaderGrid + - type: GridPathfinding +- proto: AsteroidAltRockMining + entities: + - uid: 1 + components: + - pos: -2.5,6.5 + parent: 119 + type: Transform + - uid: 2 + components: + - pos: -1.5,6.5 + parent: 119 + type: Transform + - uid: 3 + components: + - pos: -0.5,6.5 + parent: 119 + type: Transform + - uid: 5 + components: + - pos: 1.5,6.5 + parent: 119 + type: Transform + - uid: 6 + components: + - pos: 2.5,5.5 + parent: 119 + type: Transform + - uid: 7 + components: + - pos: 1.5,5.5 + parent: 119 + type: Transform + - uid: 8 + components: + - pos: 0.5,5.5 + parent: 119 + type: Transform + - uid: 9 + components: + - pos: -0.5,5.5 + parent: 119 + type: Transform + - uid: 10 + components: + - pos: -1.5,5.5 + parent: 119 + type: Transform + - uid: 11 + components: + - pos: -2.5,5.5 + parent: 119 + type: Transform + - uid: 12 + components: + - pos: -3.5,5.5 + parent: 119 + type: Transform + - uid: 16 + components: + - pos: -4.5,3.5 + parent: 119 + type: Transform + - uid: 18 + components: + - pos: -2.5,1.5 + parent: 119 + type: Transform + - uid: 19 + components: + - pos: -5.5,2.5 + parent: 119 + type: Transform + - uid: 20 + components: + - pos: -5.5,1.5 + parent: 119 + type: Transform + - uid: 21 + components: + - pos: -5.5,0.5 + parent: 119 + type: Transform + - uid: 22 + components: + - pos: -5.5,-0.5 + parent: 119 + type: Transform + - uid: 23 + components: + - pos: -5.5,-1.5 + parent: 119 + type: Transform + - uid: 24 + components: + - pos: -5.5,-2.5 + parent: 119 + type: Transform + - uid: 25 + components: + - pos: -5.5,-3.5 + parent: 119 + type: Transform + - uid: 26 + components: + - pos: -4.5,-4.5 + parent: 119 + type: Transform + - uid: 29 + components: + - pos: -4.5,-1.5 + parent: 119 + type: Transform + - uid: 35 + components: + - pos: -3.5,-5.5 + parent: 119 + type: Transform + - uid: 37 + components: + - pos: -2.5,-6.5 + parent: 119 + type: Transform + - uid: 38 + components: + - pos: -1.5,-6.5 + parent: 119 + type: Transform + - uid: 39 + components: + - pos: -1.5,-5.5 + parent: 119 + type: Transform + - uid: 42 + components: + - pos: 0.5,-6.5 + parent: 119 + type: Transform + - uid: 44 + components: + - pos: 1.5,-6.5 + parent: 119 + type: Transform + - uid: 46 + components: + - pos: 2.5,-5.5 + parent: 119 + type: Transform + - uid: 47 + components: + - pos: 2.5,-4.5 + parent: 119 + type: Transform + - uid: 48 + components: + - pos: 3.5,-4.5 + parent: 119 + type: Transform + - uid: 49 + components: + - pos: -3.5,-6.5 + parent: 119 + type: Transform + - uid: 50 + components: + - pos: 4.5,-3.5 + parent: 119 + type: Transform + - uid: 51 + components: + - pos: 4.5,-2.5 + parent: 119 + type: Transform + - uid: 52 + components: + - pos: 4.5,-1.5 + parent: 119 + type: Transform + - uid: 53 + components: + - pos: 4.5,-0.5 + parent: 119 + type: Transform + - uid: 54 + components: + - pos: 4.5,0.5 + parent: 119 + type: Transform + - uid: 55 + components: + - pos: 4.5,1.5 + parent: 119 + type: Transform + - uid: 56 + components: + - pos: 4.5,2.5 + parent: 119 + type: Transform + - uid: 57 + components: + - pos: 3.5,1.5 + parent: 119 + type: Transform + - uid: 58 + components: + - pos: 3.5,0.5 + parent: 119 + type: Transform + - uid: 59 + components: + - pos: 4.5,-4.5 + parent: 119 + type: Transform + - uid: 60 + components: + - pos: -5.5,-4.5 + parent: 119 + type: Transform + - uid: 61 + components: + - pos: -4.5,-5.5 + parent: 119 + type: Transform + - uid: 62 + components: + - pos: 3.5,2.5 + parent: 119 + type: Transform + - uid: 63 + components: + - pos: 2.5,2.5 + parent: 119 + type: Transform + - uid: 64 + components: + - pos: 2.5,3.5 + parent: 119 + type: Transform + - uid: 65 + components: + - pos: 3.5,3.5 + parent: 119 + type: Transform + - uid: 66 + components: + - pos: 2.5,4.5 + parent: 119 + type: Transform + - uid: 67 + components: + - pos: 1.5,4.5 + parent: 119 + type: Transform + - uid: 68 + components: + - pos: 0.5,-4.5 + parent: 119 + type: Transform + - uid: 69 + components: + - pos: -2.5,-1.5 + parent: 119 + type: Transform + - uid: 70 + components: + - pos: -1.5,-3.5 + parent: 119 + type: Transform + - uid: 71 + components: + - pos: -1.5,-1.5 + parent: 119 + type: Transform + - uid: 72 + components: + - pos: -0.5,-3.5 + parent: 119 + type: Transform + - uid: 73 + components: + - pos: -3.5,6.5 + parent: 119 + type: Transform + - uid: 75 + components: + - pos: -2.5,2.5 + parent: 119 + type: Transform + - uid: 77 + components: + - pos: 0.5,-1.5 + parent: 119 + type: Transform + - uid: 78 + components: + - pos: 0.5,0.5 + parent: 119 + type: Transform + - uid: 79 + components: + - pos: 2.5,0.5 + parent: 119 + type: Transform + - uid: 80 + components: + - pos: -0.5,0.5 + parent: 119 + type: Transform + - uid: 81 + components: + - pos: -4.5,4.5 + parent: 119 + type: Transform + - uid: 82 + components: + - pos: 1.5,-1.5 + parent: 119 + type: Transform + - uid: 83 + components: + - pos: 2.5,-6.5 + parent: 119 + type: Transform + - uid: 84 + components: + - pos: -5.5,3.5 + parent: 119 + type: Transform + - uid: 85 + components: + - pos: -1.5,0.5 + parent: 119 + type: Transform + - uid: 87 + components: + - pos: -4.5,5.5 + parent: 119 + type: Transform + - uid: 88 + components: + - pos: -0.5,-1.5 + parent: 119 + type: Transform + - uid: 93 + components: + - pos: 0.5,-3.5 + parent: 119 + type: Transform + - uid: 94 + components: + - pos: 1.5,0.5 + parent: 119 + type: Transform + - uid: 95 + components: + - pos: 3.5,-5.5 + parent: 119 + type: Transform + - uid: 115 + components: + - pos: 3.5,-3.5 + parent: 119 + type: Transform + - uid: 118 + components: + - pos: 2.5,-1.5 + parent: 119 + type: Transform +- proto: Barricade + entities: + - uid: 114 + components: + - pos: 0.5,-5.5 + parent: 119 + type: Transform +- proto: ClothingShoesBootsSalvage + entities: + - uid: 92 + components: + - pos: 1.4983591,-3.8183098 + parent: 119 + type: Transform +- proto: CrateSalvageEquipment + entities: + - uid: 36 + components: + - pos: -3.5,-1.5 + parent: 119 + type: Transform +- proto: FlashlightLantern + entities: + - uid: 112 + components: + - pos: -3.5694947,-4.3641663 + parent: 119 + type: Transform + - uid: 113 + components: + - pos: -3.4288697,-4.5985413 + parent: 119 + type: Transform +- proto: MaintenanceToolSpawner + entities: + - uid: 86 + components: + - pos: -1.5,4.5 + parent: 119 + type: Transform +- proto: MaintenanceWeaponSpawner + entities: + - uid: 96 + components: + - pos: 1.5,3.5 + parent: 119 + type: Transform +- proto: MaterialWoodPlank + entities: + - uid: 117 + components: + - pos: 2.4514842,-3.5058098 + parent: 119 + type: Transform +- proto: Rack + entities: + - uid: 111 + components: + - pos: -3.5,-4.5 + parent: 119 + type: Transform +- proto: Railing + entities: + - uid: 99 + components: + - pos: -0.5,3.5 + parent: 119 + type: Transform + - uid: 100 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 119 + type: Transform + - uid: 101 + components: + - rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 119 + type: Transform + - uid: 102 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 119 + type: Transform +- proto: RailingCornerSmall + entities: + - uid: 103 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 119 + type: Transform + - uid: 104 + components: + - pos: 0.5,1.5 + parent: 119 + type: Transform + - uid: 105 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 119 + type: Transform + - uid: 107 + components: + - rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 119 + type: Transform +- proto: RandomArtifactSpawner + entities: + - uid: 91 + components: + - pos: -0.5,2.5 + parent: 119 + type: Transform +- proto: RandomRockSpawner + entities: + - uid: 13 + components: + - pos: -3.5,4.5 + parent: 119 + type: Transform + - uid: 14 + components: + - pos: -2.5,4.5 + parent: 119 + type: Transform + - uid: 17 + components: + - pos: -4.5,0.5 + parent: 119 + type: Transform + - uid: 27 + components: + - pos: -4.5,-3.5 + parent: 119 + type: Transform + - uid: 28 + components: + - pos: -4.5,-2.5 + parent: 119 + type: Transform + - uid: 31 + components: + - pos: -4.5,2.5 + parent: 119 + type: Transform + - uid: 32 + components: + - pos: -4.5,1.5 + parent: 119 + type: Transform + - uid: 33 + components: + - pos: -3.5,-2.5 + parent: 119 + type: Transform + - uid: 43 + components: + - pos: -3.5,-3.5 + parent: 119 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 34 + components: + - pos: -2.5,-5.5 + parent: 119 + type: Transform +- proto: SalvagePartsSpawnerLow + entities: + - uid: 4 + components: + - pos: 1.5,2.5 + parent: 119 + type: Transform + - uid: 89 + components: + - pos: 0.5,4.5 + parent: 119 + type: Transform +- proto: SalvagePartsSpawnerMid + entities: + - uid: 120 + components: + - pos: -0.5,4.5 + parent: 119 + type: Transform +- proto: SignSecureMed + entities: + - uid: 41 + components: + - pos: -4.5,-0.5 + parent: 119 + type: Transform +- proto: SmallLight + entities: + - uid: 76 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 119 + type: Transform + - uid: 106 + components: + - pos: -0.5,2.5 + parent: 119 + type: Transform + - uid: 110 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 119 + type: Transform +- proto: SpaceTickSpawner + entities: + - uid: 15 + components: + - pos: 0.5,2.5 + parent: 119 + type: Transform + - uid: 40 + components: + - pos: -1.5,2.5 + parent: 119 + type: Transform + - uid: 74 + components: + - pos: -1.5,1.5 + parent: 119 + type: Transform + - uid: 90 + components: + - pos: -1.5,3.5 + parent: 119 + type: Transform + - uid: 97 + components: + - pos: -0.5,1.5 + parent: 119 + type: Transform + - uid: 98 + components: + - pos: 0.5,1.5 + parent: 119 + type: Transform + - uid: 108 + components: + - pos: 0.5,3.5 + parent: 119 + type: Transform + - uid: 109 + components: + - pos: -0.5,3.5 + parent: 119 + type: Transform +- proto: WallSolid + entities: + - uid: 30 + components: + - pos: -4.5,-0.5 + parent: 119 + type: Transform +- proto: WallSolidRust + entities: + - uid: 45 + components: + - pos: 1.5,-5.5 + parent: 119 + type: Transform +- proto: WeaponLaserGun + entities: + - uid: 116 + components: + - pos: 1.7952341,1.6504403 + parent: 119 + type: Transform +- proto: WoodenSupportBeam + entities: + - uid: 121 + components: + - pos: -2.5,-3.5 + parent: 119 + type: Transform + - uid: 122 + components: + - pos: -3.5,2.5 + parent: 119 + type: Transform +- proto: WoodenSupportWallBroken + entities: + - uid: 123 + components: + - pos: 3.5,-1.5 + parent: 119 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-tick-nest.yml b/Resources/Maps/Salvage/DeltaV/DV-tick-nest.yml new file mode 100644 index 0000000000..62dd7079b0 --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-tick-nest.yml @@ -0,0 +1,1232 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand +entities: +- proto: "" + entities: + - uid: 192 + components: + - type: MetaData + - pos: -1.4791667,2.0479496 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMBwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAADBwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: [] + type: DecalGrid + - version: 2 + data: + tiles: + -1,-2: + 0: 65535 + -1,-1: + 0: 65535 + 0,-1: + 0: 65535 + -3,-1: + 0: 52424 + -2,-2: + 0: 65518 + -2,-1: + 0: 65535 + -2,-3: + 0: 34816 + -1,-3: + 0: 65532 + 0,-4: + 0: 12288 + 0,-3: + 0: 65527 + 0,-2: + 0: 65535 + 1,-3: + 0: 12544 + 1,-2: + 0: 63351 + 1,-1: + 0: 65535 + 2,-1: + 0: 272 + 0,0: + 0: 65535 + 0,1: + 0: 5119 + 1,0: + 0: 4983 + -3,0: + 0: 136 + -2,0: + 0: 65535 + -2,1: + 0: 206 + -1,0: + 0: 65535 + -1,1: + 0: 53247 + -1,2: + 0: 8 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: SpreaderGrid +- proto: RandomAmmoBox + entities: + - uid: 211 + components: + - pos: -2.5,1.5 + parent: 192 + type: Transform + - uid: 212 + components: + - pos: -3.5,1.5 + parent: 192 + type: Transform + - uid: 213 + components: + - pos: -0.5,1.5 + parent: 192 + type: Transform + - uid: 214 + components: + - pos: 0.5,1.5 + parent: 192 + type: Transform +- proto: RandomArtifactSpawner + entities: + - uid: 29 + components: + - pos: -1.5,-0.5 + parent: 192 + type: Transform +- proto: RandomBoards + entities: + - uid: 27 + components: + - pos: -1.5,-1.5 + parent: 192 + type: Transform + - uid: 210 + components: + - pos: -1.5,1.5 + parent: 192 + type: Transform +- proto: RandomBox + entities: + - uid: 215 + components: + - pos: 0.5,-3.5 + parent: 192 + type: Transform + - uid: 216 + components: + - pos: -0.5,-3.5 + parent: 192 + type: Transform + - uid: 217 + components: + - pos: -1.5,-3.5 + parent: 192 + type: Transform + - uid: 218 + components: + - pos: -2.5,-3.5 + parent: 192 + type: Transform + - uid: 219 + components: + - pos: -3.5,-3.5 + parent: 192 + type: Transform +- proto: RandomRockSpawner + entities: + - uid: 57 + components: + - pos: -4.5,4.5 + parent: 192 + type: Transform + - uid: 58 + components: + - pos: -4.5,3.5 + parent: 192 + type: Transform + - uid: 59 + components: + - pos: -3.5,4.5 + parent: 192 + type: Transform + - uid: 60 + components: + - pos: -3.5,3.5 + parent: 192 + type: Transform + - uid: 61 + components: + - pos: -2.5,4.5 + parent: 192 + type: Transform + - uid: 62 + components: + - pos: -2.5,3.5 + parent: 192 + type: Transform + - uid: 63 + components: + - pos: -1.5,4.5 + parent: 192 + type: Transform + - uid: 64 + components: + - pos: -1.5,3.5 + parent: 192 + type: Transform + - uid: 65 + components: + - pos: -0.5,4.5 + parent: 192 + type: Transform + - uid: 66 + components: + - pos: -0.5,3.5 + parent: 192 + type: Transform + - uid: 67 + components: + - pos: 0.5,4.5 + parent: 192 + type: Transform + - uid: 68 + components: + - pos: 0.5,3.5 + parent: 192 + type: Transform + - uid: 69 + components: + - pos: 1.5,4.5 + parent: 192 + type: Transform + - uid: 70 + components: + - pos: 1.5,3.5 + parent: 192 + type: Transform + - uid: 71 + components: + - pos: -2.5,6.5 + parent: 192 + type: Transform + - uid: 72 + components: + - pos: -2.5,5.5 + parent: 192 + type: Transform + - uid: 73 + components: + - pos: -1.5,6.5 + parent: 192 + type: Transform + - uid: 74 + components: + - pos: -1.5,5.5 + parent: 192 + type: Transform + - uid: 75 + components: + - pos: -0.5,6.5 + parent: 192 + type: Transform + - uid: 76 + components: + - pos: -0.5,5.5 + parent: 192 + type: Transform + - uid: 77 + components: + - pos: 0.5,6.5 + parent: 192 + type: Transform + - uid: 78 + components: + - pos: 0.5,5.5 + parent: 192 + type: Transform + - uid: 79 + components: + - pos: 2.5,3.5 + parent: 192 + type: Transform + - uid: 80 + components: + - pos: 2.5,2.5 + parent: 192 + type: Transform + - uid: 81 + components: + - pos: 2.5,1.5 + parent: 192 + type: Transform + - uid: 82 + components: + - pos: 2.5,0.5 + parent: 192 + type: Transform + - uid: 83 + components: + - pos: 2.5,-0.5 + parent: 192 + type: Transform + - uid: 84 + components: + - pos: 2.5,-1.5 + parent: 192 + type: Transform + - uid: 85 + components: + - pos: 2.5,-2.5 + parent: 192 + type: Transform + - uid: 86 + components: + - pos: 2.5,-3.5 + parent: 192 + type: Transform + - uid: 87 + components: + - pos: 2.5,-4.5 + parent: 192 + type: Transform + - uid: 88 + components: + - pos: 2.5,-5.5 + parent: 192 + type: Transform + - uid: 89 + components: + - pos: 2.5,-6.5 + parent: 192 + type: Transform + - uid: 90 + components: + - pos: 2.5,-7.5 + parent: 192 + type: Transform + - uid: 91 + components: + - pos: 2.5,-8.5 + parent: 192 + type: Transform + - uid: 92 + components: + - pos: 3.5,3.5 + parent: 192 + type: Transform + - uid: 93 + components: + - pos: 3.5,2.5 + parent: 192 + type: Transform + - uid: 94 + components: + - pos: 3.5,1.5 + parent: 192 + type: Transform + - uid: 95 + components: + - pos: 3.5,0.5 + parent: 192 + type: Transform + - uid: 96 + components: + - pos: 3.5,-0.5 + parent: 192 + type: Transform + - uid: 97 + components: + - pos: 3.5,-1.5 + parent: 192 + type: Transform + - uid: 98 + components: + - pos: 3.5,-2.5 + parent: 192 + type: Transform + - uid: 99 + components: + - pos: 3.5,-3.5 + parent: 192 + type: Transform + - uid: 100 + components: + - pos: 3.5,-4.5 + parent: 192 + type: Transform + - uid: 101 + components: + - pos: 3.5,-5.5 + parent: 192 + type: Transform + - uid: 102 + components: + - pos: 3.5,-6.5 + parent: 192 + type: Transform + - uid: 103 + components: + - pos: 3.5,-7.5 + parent: 192 + type: Transform + - uid: 104 + components: + - pos: 3.5,-8.5 + parent: 192 + type: Transform + - uid: 105 + components: + - pos: 4.5,1.5 + parent: 192 + type: Transform + - uid: 106 + components: + - pos: 4.5,0.5 + parent: 192 + type: Transform + - uid: 107 + components: + - pos: 4.5,-0.5 + parent: 192 + type: Transform + - uid: 108 + components: + - pos: 4.5,-1.5 + parent: 192 + type: Transform + - uid: 109 + components: + - pos: 4.5,-2.5 + parent: 192 + type: Transform + - uid: 110 + components: + - pos: 4.5,-3.5 + parent: 192 + type: Transform + - uid: 111 + components: + - pos: 4.5,-4.5 + parent: 192 + type: Transform + - uid: 112 + components: + - pos: 4.5,-5.5 + parent: 192 + type: Transform + - uid: 113 + components: + - pos: 4.5,-6.5 + parent: 192 + type: Transform + - uid: 114 + components: + - pos: 4.5,-7.5 + parent: 192 + type: Transform + - uid: 115 + components: + - pos: 5.5,1.5 + parent: 192 + type: Transform + - uid: 116 + components: + - pos: 5.5,0.5 + parent: 192 + type: Transform + - uid: 117 + components: + - pos: 5.5,-0.5 + parent: 192 + type: Transform + - uid: 118 + components: + - pos: 5.5,-1.5 + parent: 192 + type: Transform + - uid: 119 + components: + - pos: 5.5,-2.5 + parent: 192 + type: Transform + - uid: 120 + components: + - pos: 5.5,-3.5 + parent: 192 + type: Transform + - uid: 121 + components: + - pos: 5.5,-4.5 + parent: 192 + type: Transform + - uid: 122 + components: + - pos: 5.5,-5.5 + parent: 192 + type: Transform + - uid: 123 + components: + - pos: 5.5,-6.5 + parent: 192 + type: Transform + - uid: 124 + components: + - pos: 5.5,-7.5 + parent: 192 + type: Transform + - uid: 125 + components: + - pos: 6.5,-1.5 + parent: 192 + type: Transform + - uid: 126 + components: + - pos: 6.5,-2.5 + parent: 192 + type: Transform + - uid: 127 + components: + - pos: 6.5,-3.5 + parent: 192 + type: Transform + - uid: 128 + components: + - pos: 1.5,-5.5 + parent: 192 + type: Transform + - uid: 129 + components: + - pos: 1.5,-6.5 + parent: 192 + type: Transform + - uid: 130 + components: + - pos: 1.5,-7.5 + parent: 192 + type: Transform + - uid: 131 + components: + - pos: 1.5,-8.5 + parent: 192 + type: Transform + - uid: 132 + components: + - pos: 1.5,-9.5 + parent: 192 + type: Transform + - uid: 133 + components: + - pos: 1.5,-10.5 + parent: 192 + type: Transform + - uid: 134 + components: + - pos: 0.5,-5.5 + parent: 192 + type: Transform + - uid: 135 + components: + - pos: 0.5,-6.5 + parent: 192 + type: Transform + - uid: 136 + components: + - pos: 0.5,-7.5 + parent: 192 + type: Transform + - uid: 137 + components: + - pos: 0.5,-8.5 + parent: 192 + type: Transform + - uid: 138 + components: + - pos: 0.5,-9.5 + parent: 192 + type: Transform + - uid: 139 + components: + - pos: 0.5,-10.5 + parent: 192 + type: Transform + - uid: 140 + components: + - pos: -0.5,-5.5 + parent: 192 + type: Transform + - uid: 141 + components: + - pos: -0.5,-6.5 + parent: 192 + type: Transform + - uid: 142 + components: + - pos: -0.5,-7.5 + parent: 192 + type: Transform + - uid: 143 + components: + - pos: -0.5,-8.5 + parent: 192 + type: Transform + - uid: 144 + components: + - pos: -0.5,-9.5 + parent: 192 + type: Transform + - uid: 145 + components: + - pos: -0.5,-10.5 + parent: 192 + type: Transform + - uid: 146 + components: + - pos: -1.5,-9.5 + parent: 192 + type: Transform + - uid: 147 + components: + - pos: -1.5,-8.5 + parent: 192 + type: Transform + - uid: 148 + components: + - pos: -1.5,-7.5 + parent: 192 + type: Transform + - uid: 149 + components: + - pos: -1.5,-6.5 + parent: 192 + type: Transform + - uid: 150 + components: + - pos: -1.5,-5.5 + parent: 192 + type: Transform + - uid: 151 + components: + - pos: -2.5,-9.5 + parent: 192 + type: Transform + - uid: 152 + components: + - pos: -2.5,-8.5 + parent: 192 + type: Transform + - uid: 153 + components: + - pos: -2.5,-7.5 + parent: 192 + type: Transform + - uid: 154 + components: + - pos: -2.5,-6.5 + parent: 192 + type: Transform + - uid: 155 + components: + - pos: -2.5,-5.5 + parent: 192 + type: Transform + - uid: 156 + components: + - pos: -3.5,-5.5 + parent: 192 + type: Transform + - uid: 157 + components: + - pos: -3.5,-6.5 + parent: 192 + type: Transform + - uid: 158 + components: + - pos: -3.5,-7.5 + parent: 192 + type: Transform + - uid: 159 + components: + - pos: -4.5,-5.5 + parent: 192 + type: Transform + - uid: 160 + components: + - pos: -4.5,-6.5 + parent: 192 + type: Transform + - uid: 161 + components: + - pos: -4.5,-7.5 + parent: 192 + type: Transform + - uid: 162 + components: + - pos: -3.5,-8.5 + parent: 192 + type: Transform + - uid: 163 + components: + - pos: -5.5,-6.5 + parent: 192 + type: Transform + - uid: 164 + components: + - pos: -5.5,-5.5 + parent: 192 + type: Transform + - uid: 165 + components: + - pos: -5.5,-4.5 + parent: 192 + type: Transform + - uid: 166 + components: + - pos: -5.5,-3.5 + parent: 192 + type: Transform + - uid: 167 + components: + - pos: -5.5,-2.5 + parent: 192 + type: Transform + - uid: 168 + components: + - pos: -5.5,-1.5 + parent: 192 + type: Transform + - uid: 169 + components: + - pos: -5.5,-0.5 + parent: 192 + type: Transform + - uid: 170 + components: + - pos: -5.5,0.5 + parent: 192 + type: Transform + - uid: 171 + components: + - pos: -5.5,1.5 + parent: 192 + type: Transform + - uid: 172 + components: + - pos: -5.5,2.5 + parent: 192 + type: Transform + - uid: 173 + components: + - pos: -5.5,3.5 + parent: 192 + type: Transform + - uid: 174 + components: + - pos: -6.5,2.5 + parent: 192 + type: Transform + - uid: 175 + components: + - pos: -6.5,1.5 + parent: 192 + type: Transform + - uid: 176 + components: + - pos: -6.5,0.5 + parent: 192 + type: Transform + - uid: 177 + components: + - pos: -6.5,-0.5 + parent: 192 + type: Transform + - uid: 178 + components: + - pos: -6.5,-1.5 + parent: 192 + type: Transform + - uid: 179 + components: + - pos: -6.5,-2.5 + parent: 192 + type: Transform + - uid: 180 + components: + - pos: -6.5,-3.5 + parent: 192 + type: Transform + - uid: 181 + components: + - pos: -6.5,-4.5 + parent: 192 + type: Transform + - uid: 182 + components: + - pos: -6.5,-5.5 + parent: 192 + type: Transform + - uid: 183 + components: + - pos: -7.5,-4.5 + parent: 192 + type: Transform + - uid: 184 + components: + - pos: -7.5,-3.5 + parent: 192 + type: Transform + - uid: 185 + components: + - pos: -7.5,-2.5 + parent: 192 + type: Transform + - uid: 186 + components: + - pos: -7.5,-1.5 + parent: 192 + type: Transform + - uid: 187 + components: + - pos: -7.5,-0.5 + parent: 192 + type: Transform + - uid: 188 + components: + - pos: -7.5,0.5 + parent: 192 + type: Transform + - uid: 189 + components: + - pos: -8.5,-0.5 + parent: 192 + type: Transform + - uid: 190 + components: + - pos: -8.5,-1.5 + parent: 192 + type: Transform + - uid: 191 + components: + - pos: -8.5,-2.5 + parent: 192 + type: Transform +- proto: SalvagePartsSpawnerLow + entities: + - uid: 206 + components: + - pos: -3.5,-0.5 + parent: 192 + type: Transform + - uid: 207 + components: + - pos: -3.5,-1.5 + parent: 192 + type: Transform + - uid: 208 + components: + - pos: 0.5,-1.5 + parent: 192 + type: Transform + - uid: 209 + components: + - pos: 0.5,-0.5 + parent: 192 + type: Transform +- proto: SalvagePartsSpawnerMid + entities: + - uid: 202 + components: + - pos: -3.5,0.5 + parent: 192 + type: Transform + - uid: 203 + components: + - pos: -3.5,-2.5 + parent: 192 + type: Transform + - uid: 204 + components: + - pos: 0.5,-2.5 + parent: 192 + type: Transform + - uid: 205 + components: + - pos: 0.5,0.5 + parent: 192 + type: Transform +- proto: SalvagePartsSpawnerSubSpace + entities: + - uid: 28 + components: + - pos: -1.5,0.5 + parent: 192 + type: Transform + - uid: 193 + components: + - pos: -0.5,0.5 + parent: 192 + type: Transform + - uid: 194 + components: + - pos: -0.5,-0.5 + parent: 192 + type: Transform + - uid: 195 + components: + - pos: -0.5,-1.5 + parent: 192 + type: Transform + - uid: 196 + components: + - pos: -2.5,0.5 + parent: 192 + type: Transform + - uid: 197 + components: + - pos: -2.5,-0.5 + parent: 192 + type: Transform + - uid: 198 + components: + - pos: -2.5,-1.5 + parent: 192 + type: Transform + - uid: 199 + components: + - pos: -2.5,-2.5 + parent: 192 + type: Transform + - uid: 200 + components: + - pos: -1.5,-2.5 + parent: 192 + type: Transform + - uid: 201 + components: + - pos: -0.5,-2.5 + parent: 192 + type: Transform +- proto: SpaceTickSpawner + entities: + - uid: 1 + components: + - pos: -4.5,2.5 + parent: 192 + type: Transform + - uid: 2 + components: + - pos: -4.5,1.5 + parent: 192 + type: Transform + - uid: 3 + components: + - pos: -4.5,0.5 + parent: 192 + type: Transform + - uid: 4 + components: + - pos: -4.5,-0.5 + parent: 192 + type: Transform + - uid: 5 + components: + - pos: -4.5,-1.5 + parent: 192 + type: Transform + - uid: 6 + components: + - pos: -4.5,-2.5 + parent: 192 + type: Transform + - uid: 7 + components: + - pos: -4.5,-3.5 + parent: 192 + type: Transform + - uid: 8 + components: + - pos: -4.5,-4.5 + parent: 192 + type: Transform + - uid: 9 + components: + - pos: -3.5,2.5 + parent: 192 + type: Transform + - uid: 10 + components: + - pos: -3.5,1.5 + parent: 192 + type: Transform + - uid: 11 + components: + - pos: -3.5,0.5 + parent: 192 + type: Transform + - uid: 12 + components: + - pos: -3.5,-0.5 + parent: 192 + type: Transform + - uid: 13 + components: + - pos: -3.5,-1.5 + parent: 192 + type: Transform + - uid: 14 + components: + - pos: -3.5,-2.5 + parent: 192 + type: Transform + - uid: 15 + components: + - pos: -3.5,-3.5 + parent: 192 + type: Transform + - uid: 16 + components: + - pos: -3.5,-4.5 + parent: 192 + type: Transform + - uid: 17 + components: + - pos: -2.5,2.5 + parent: 192 + type: Transform + - uid: 18 + components: + - pos: -2.5,1.5 + parent: 192 + type: Transform + - uid: 19 + components: + - pos: -2.5,0.5 + parent: 192 + type: Transform + - uid: 20 + components: + - pos: -2.5,-0.5 + parent: 192 + type: Transform + - uid: 21 + components: + - pos: -2.5,-1.5 + parent: 192 + type: Transform + - uid: 22 + components: + - pos: -2.5,-2.5 + parent: 192 + type: Transform + - uid: 23 + components: + - pos: -2.5,-3.5 + parent: 192 + type: Transform + - uid: 24 + components: + - pos: -2.5,-4.5 + parent: 192 + type: Transform + - uid: 25 + components: + - pos: -1.5,2.5 + parent: 192 + type: Transform + - uid: 26 + components: + - pos: -1.5,1.5 + parent: 192 + type: Transform + - uid: 30 + components: + - pos: -1.5,-2.5 + parent: 192 + type: Transform + - uid: 31 + components: + - pos: -1.5,-3.5 + parent: 192 + type: Transform + - uid: 32 + components: + - pos: -1.5,-4.5 + parent: 192 + type: Transform + - uid: 33 + components: + - pos: -0.5,2.5 + parent: 192 + type: Transform + - uid: 34 + components: + - pos: -0.5,1.5 + parent: 192 + type: Transform + - uid: 35 + components: + - pos: -0.5,0.5 + parent: 192 + type: Transform + - uid: 36 + components: + - pos: -0.5,-0.5 + parent: 192 + type: Transform + - uid: 37 + components: + - pos: -0.5,-1.5 + parent: 192 + type: Transform + - uid: 38 + components: + - pos: -0.5,-2.5 + parent: 192 + type: Transform + - uid: 39 + components: + - pos: -0.5,-3.5 + parent: 192 + type: Transform + - uid: 40 + components: + - pos: -0.5,-4.5 + parent: 192 + type: Transform + - uid: 41 + components: + - pos: 0.5,2.5 + parent: 192 + type: Transform + - uid: 42 + components: + - pos: 0.5,1.5 + parent: 192 + type: Transform + - uid: 43 + components: + - pos: 0.5,0.5 + parent: 192 + type: Transform + - uid: 44 + components: + - pos: 0.5,-0.5 + parent: 192 + type: Transform + - uid: 45 + components: + - pos: 0.5,-1.5 + parent: 192 + type: Transform + - uid: 46 + components: + - pos: 0.5,-2.5 + parent: 192 + type: Transform + - uid: 47 + components: + - pos: 0.5,-3.5 + parent: 192 + type: Transform + - uid: 48 + components: + - pos: 0.5,-4.5 + parent: 192 + type: Transform + - uid: 49 + components: + - pos: 1.5,2.5 + parent: 192 + type: Transform + - uid: 50 + components: + - pos: 1.5,1.5 + parent: 192 + type: Transform + - uid: 51 + components: + - pos: 1.5,0.5 + parent: 192 + type: Transform + - uid: 52 + components: + - pos: 1.5,-0.5 + parent: 192 + type: Transform + - uid: 53 + components: + - pos: 1.5,-1.5 + parent: 192 + type: Transform + - uid: 54 + components: + - pos: 1.5,-2.5 + parent: 192 + type: Transform + - uid: 55 + components: + - pos: 1.5,-3.5 + parent: 192 + type: Transform + - uid: 56 + components: + - pos: 1.5,-4.5 + parent: 192 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/DV-wh-salvage.yml b/Resources/Maps/Salvage/DeltaV/DV-wh-salvage.yml new file mode 100644 index 0000000000..251733246a --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/DV-wh-salvage.yml @@ -0,0 +1,2772 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand + 11: FloorAsteroidTile + 12: FloorBar + 27: FloorDark + 42: FloorFreezer + 58: FloorKitchen + 110: FloorWood + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 374 + components: + - type: MetaData + - parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAcAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAACDAAAAAAADAAAAAADDAAAAAAADAAAAAAADAAAAAACDAAAAAAADAAAAAADDAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAACDAAAAAAADAAAAAACDAAAAAABDAAAAAAADAAAAAADDAAAAAACDAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAACDAAAAAADDAAAAAABDAAAAAADDAAAAAACDAAAAAABDAAAAAACDAAAAAABDAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABGwAAAAABDAAAAAABDAAAAAABDAAAAAABDAAAAAABDAAAAAADDAAAAAABDAAAAAAADAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADGwAAAAABDAAAAAACDAAAAAABDAAAAAACDAAAAAADDAAAAAABDAAAAAABDAAAAAACDAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAADcQAAAAAAbgAAAAABbgAAAAAAbgAAAAACcQAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABbgAAAAABbgAAAAAAbgAAAAACbgAAAAACcQAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKgAAAAAAcQAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAACDAAAAAADDAAAAAABDAAAAAABDAAAAAACDAAAAAACDAAAAAACDAAAAAADDAAAAAADDAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABDAAAAAACDAAAAAADDAAAAAABDAAAAAADDAAAAAAADAAAAAACDAAAAAABDAAAAAACDAAAAAAADAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: GwAAAAACGwAAAAACGwAAAAADGwAAAAADGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAABGwAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAACGwAAAAADGwAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAABGwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAADGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAAADAAAAAABDAAAAAACGwAAAAACGwAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAAADAAAAAADDAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAACDAAAAAADDAAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAADAAAAAAADAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNe + decals: + 170: -7,-1 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 166: -7,0 + 167: -7,1 + 168: -7,2 + 169: -7,3 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 154: 5,-1 + 155: 4,-1 + 156: 3,-1 + 157: 2,-1 + 158: 1,-1 + 159: 0,-1 + 160: -1,-1 + 161: -2,-1 + 162: -3,-1 + 163: -4,-1 + 164: -5,-1 + 165: -6,-1 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 145: -8,-5 + 146: -8,-4 + 147: -8,-3 + 148: -8,-2 + 149: -8,-1 + 150: -8,0 + 151: -8,1 + 152: -8,2 + 153: -8,3 + - node: + color: '#413F4A6C' + id: CheckerNESW + decals: + 0: -8,-5 + 1: -8,-4 + 2: -8,-3 + 3: -8,-2 + 4: -8,-1 + 5: -8,0 + 6: -8,1 + 7: -8,2 + 8: -8,3 + 9: -7,3 + 10: -7,2 + 11: -7,1 + 12: -7,0 + 13: -7,-1 + 14: -7,-2 + 15: -7,-3 + 16: -7,-4 + 17: -7,-5 + 18: -6,-5 + 19: -6,-4 + 20: -6,-3 + 21: -6,-2 + 22: -6,-1 + 23: -5,-1 + 24: -5,-2 + 25: -5,-3 + 26: -5,-4 + 27: -5,-5 + 28: -4,-5 + 29: -4,-4 + 30: -4,-3 + 31: -4,-2 + 32: -4,-1 + 33: -3,-5 + 34: -2,-5 + 35: -1,-5 + 36: 0,-5 + 37: 0,-4 + 38: -1,-4 + 39: -2,-4 + 40: -3,-4 + 41: -3,-3 + 42: -3,-2 + 43: -3,-1 + 44: -2,-1 + 45: -2,-2 + 46: -2,-3 + 47: -1,-3 + 48: -1,-2 + 49: -1,-1 + 50: 0,-3 + 51: 0,-2 + 52: 0,-1 + 53: 1,-2 + 54: 1,-1 + 55: 2,-2 + 56: 2,-1 + 57: 3,-2 + 58: 3,-1 + 59: 4,-2 + 60: 4,-1 + 61: 5,-2 + 62: 5,-1 + 63: 6,-2 + 64: 6,-1 + 65: 7,-2 + 66: 7,-1 + 67: 8,-2 + 68: 8,-1 + 69: 9,-2 + 70: 9,-1 + 71: 10,-2 + 72: 10,-1 + - node: + color: '#413F4A9E' + id: CheckerNESW + decals: + 73: -5,1 + 74: -5,1 + 75: -6,1 + 76: -6,1 + 77: -6,2 + 78: -6,2 + 79: -6,3 + 80: -6,3 + 81: -5,2 + 82: -5,2 + 83: -5,3 + 84: -5,3 + 85: -4,1 + 86: -4,1 + 87: -4,2 + 88: -4,2 + 89: -4,3 + 90: -4,3 + 91: -3,3 + 92: -3,3 + 93: -3,2 + 94: -3,2 + 95: -3,1 + 96: -3,1 + 97: -2,1 + 98: -2,1 + 99: -2,2 + 100: -2,2 + 101: -2,3 + 102: -2,3 + 103: -1,3 + 104: -1,3 + 105: -1,2 + 106: -1,2 + 107: -1,1 + 108: -1,1 + 109: 0,1 + 110: 0,1 + 111: 0,2 + 112: 0,2 + 113: 0,3 + 114: 0,3 + 115: 1,3 + 116: 1,3 + 117: 1,2 + 118: 1,2 + 119: 1,1 + 120: 1,1 + 121: 2,1 + 122: 2,1 + 123: 2,2 + 124: 2,2 + 125: 2,3 + 126: 2,3 + 127: 3,1 + 128: 3,1 + 129: 3,2 + 130: 3,2 + 131: 3,3 + 132: 3,3 + 133: 4,3 + 134: 4,3 + 135: 4,2 + 136: 4,2 + 137: 4,1 + 138: 4,1 + 139: 5,1 + 140: 5,1 + 141: 5,2 + 142: 5,2 + 143: 5,3 + 144: 5,3 + - node: + color: '#791500FF' + id: MonoOverlay + decals: + 171: -6,-8 + 172: -5,-8 + 173: -4,-8 + 174: -3,-8 + 175: -2,-8 + 176: -1,-8 + 177: 0,-8 + - node: + color: '#EFB34196' + id: a + decals: + 179: -5,-8 + - node: + color: '#EFB34196' + id: e + decals: + 183: -1,-8 + - node: + color: '#EFB34196' + id: f + decals: + 180: -4,-8 + 181: -3,-8 + - node: + color: '#EFB34196' + id: l + decals: + 182: -2,-8 + - node: + color: '#EFB34196' + id: w + decals: + 178: -6.0138683,-7.9461017 + - node: + color: '#EFB34196' + id: z + decals: + 184: 0,-8 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 65535 + 0,-1: + 0: 65535 + 0,0: + 0: 65535 + -1,0: + 0: 65535 + -4,-3: + 0: 2048 + -3,-3: + 0: 61216 + -3,-2: + 0: 61422 + -3,-1: + 0: 61166 + -2,-3: + 0: 65314 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-3: + 0: 65314 + -1,-2: + 0: 65535 + 0,-3: + 0: 65378 + 0,-2: + 0: 65535 + 1,-3: + 0: 65312 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-3: + 0: 65314 + 2,-2: + 0: 65535 + 2,-1: + 0: 65535 + 3,-3: + 0: 768 + 3,-2: + 0: 256 + 0,1: + 0: 65535 + 0,2: + 0: 766 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 767 + 2,0: + 0: 65535 + 2,1: + 0: 65535 + 2,2: + 0: 767 + 3,0: + 0: 16 + 3,1: + 0: 16 + -4,1: + 0: 128 + -3,1: + 0: 61182 + -3,2: + 0: 754 + -3,0: + 0: 61166 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 763 + -1,1: + 0: 65535 + -1,2: + 0: 759 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: OccluderTree + - type: Shuttle + - type: RadiationGridResistance + - type: GasTileOverlay + - type: SpreaderGrid + - type: GridPathfinding +- proto: AirlockFreezer + entities: + - uid: 252 + components: + - pos: 9.5,-2.5 + parent: 374 + type: Transform + - uid: 253 + components: + - pos: 7.5,-2.5 + parent: 374 + type: Transform +- proto: AsteroidAltRockMining + entities: + - uid: 1 + components: + - pos: 8.5,-6.5 + parent: 374 + type: Transform + - uid: 2 + components: + - pos: 5.5,-6.5 + parent: 374 + type: Transform + - uid: 3 + components: + - pos: 6.5,-6.5 + parent: 374 + type: Transform + - uid: 4 + components: + - pos: 7.5,-6.5 + parent: 374 + type: Transform + - uid: 5 + components: + - pos: 9.5,-6.5 + parent: 374 + type: Transform + - uid: 6 + components: + - pos: 10.5,-6.5 + parent: 374 + type: Transform + - uid: 7 + components: + - pos: 11.5,-6.5 + parent: 374 + type: Transform + - uid: 8 + components: + - pos: 11.5,-7.5 + parent: 374 + type: Transform + - uid: 9 + components: + - pos: 10.5,-7.5 + parent: 374 + type: Transform + - uid: 10 + components: + - pos: 9.5,-7.5 + parent: 374 + type: Transform + - uid: 11 + components: + - pos: 8.5,-7.5 + parent: 374 + type: Transform + - uid: 12 + components: + - pos: 7.5,-7.5 + parent: 374 + type: Transform + - uid: 13 + components: + - pos: 6.5,-7.5 + parent: 374 + type: Transform + - uid: 14 + components: + - pos: 5.5,-7.5 + parent: 374 + type: Transform + - uid: 15 + components: + - pos: 5.5,-8.5 + parent: 374 + type: Transform + - uid: 16 + components: + - pos: 6.5,-8.5 + parent: 374 + type: Transform + - uid: 17 + components: + - pos: 7.5,-8.5 + parent: 374 + type: Transform + - uid: 18 + components: + - pos: 8.5,-8.5 + parent: 374 + type: Transform + - uid: 19 + components: + - pos: 9.5,-8.5 + parent: 374 + type: Transform + - uid: 20 + components: + - pos: 10.5,-8.5 + parent: 374 + type: Transform + - uid: 21 + components: + - pos: 9.5,-9.5 + parent: 374 + type: Transform + - uid: 22 + components: + - pos: 8.5,-9.5 + parent: 374 + type: Transform + - uid: 23 + components: + - pos: 7.5,-9.5 + parent: 374 + type: Transform + - uid: 24 + components: + - pos: 6.5,-9.5 + parent: 374 + type: Transform + - uid: 287 + components: + - pos: 4.5,8.5 + parent: 374 + type: Transform + - uid: 288 + components: + - pos: 3.5,8.5 + parent: 374 + type: Transform + - uid: 289 + components: + - pos: 3.5,7.5 + parent: 374 + type: Transform + - uid: 290 + components: + - pos: 4.5,7.5 + parent: 374 + type: Transform + - uid: 291 + components: + - pos: 2.5,7.5 + parent: 374 + type: Transform + - uid: 292 + components: + - pos: 1.5,7.5 + parent: 374 + type: Transform + - uid: 293 + components: + - pos: 0.5,6.5 + parent: 374 + type: Transform + - uid: 294 + components: + - pos: 1.5,6.5 + parent: 374 + type: Transform + - uid: 295 + components: + - pos: 2.5,6.5 + parent: 374 + type: Transform + - uid: 296 + components: + - pos: 3.5,6.5 + parent: 374 + type: Transform + - uid: 297 + components: + - pos: 4.5,6.5 + parent: 374 + type: Transform +- proto: BoxFolderYellow + entities: + - uid: 336 + components: + - pos: 7.5006266,6.5952196 + parent: 374 + type: Transform +- proto: CarpetOrange + entities: + - uid: 302 + components: + - pos: 3.5,-4.5 + parent: 374 + type: Transform + - uid: 337 + components: + - pos: 7.5,6.5 + parent: 374 + type: Transform + - uid: 338 + components: + - pos: 7.5,7.5 + parent: 374 + type: Transform + - uid: 339 + components: + - pos: 7.5,8.5 + parent: 374 + type: Transform + - uid: 340 + components: + - pos: 8.5,6.5 + parent: 374 + type: Transform + - uid: 341 + components: + - pos: 8.5,7.5 + parent: 374 + type: Transform + - uid: 342 + components: + - pos: 8.5,8.5 + parent: 374 + type: Transform + - uid: 343 + components: + - pos: 9.5,6.5 + parent: 374 + type: Transform + - uid: 344 + components: + - pos: 9.5,7.5 + parent: 374 + type: Transform + - uid: 345 + components: + - pos: 9.5,8.5 + parent: 374 + type: Transform +- proto: Chair + entities: + - uid: 304 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 374 + type: Transform + - uid: 305 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 374 + type: Transform +- proto: ChairFolding + entities: + - uid: 363 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,1.5 + parent: 374 + type: Transform +- proto: ChairWood + entities: + - uid: 51 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 374 + type: Transform + - uid: 52 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 374 + type: Transform + - uid: 53 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 374 + type: Transform + - uid: 54 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 374 + type: Transform + - uid: 55 + components: + - pos: -9.5,3.5 + parent: 374 + type: Transform + - uid: 56 + components: + - pos: -8.5,3.5 + parent: 374 + type: Transform + - uid: 57 + components: + - rot: 3.141592653589793 rad + pos: -8.5,1.5 + parent: 374 + type: Transform + - uid: 58 + components: + - rot: 3.141592653589793 rad + pos: -9.5,1.5 + parent: 374 + type: Transform + - uid: 59 + components: + - pos: -9.5,0.5 + parent: 374 + type: Transform + - uid: 60 + components: + - pos: -8.5,0.5 + parent: 374 + type: Transform + - uid: 61 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-1.5 + parent: 374 + type: Transform + - uid: 62 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-1.5 + parent: 374 + type: Transform + - uid: 63 + components: + - pos: -9.5,-2.5 + parent: 374 + type: Transform + - uid: 64 + components: + - pos: -8.5,-2.5 + parent: 374 + type: Transform + - uid: 65 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-4.5 + parent: 374 + type: Transform + - uid: 66 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-4.5 + parent: 374 + type: Transform +- proto: CigaretteSpent + entities: + - uid: 380 + components: + - rot: -1.5707963267948966 rad + pos: 1.1831686,-6.0555816 + parent: 374 + type: Transform + - uid: 381 + components: + - rot: 3.141592653589793 rad + pos: 1.8706686,-7.2856016 + parent: 374 + type: Transform + - uid: 382 + components: + - rot: 1.5707963267948966 rad + pos: -0.96148944,6.865323 + parent: 374 + type: Transform + - uid: 383 + components: + - pos: -1.8885728,6.187769 + parent: 374 + type: Transform + - uid: 384 + components: + - pos: -1.1091928,8.032801 + parent: 374 + type: Transform +- proto: ClosetChefFilled + entities: + - uid: 266 + components: + - pos: 7.5,3.5 + parent: 374 + type: Transform +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 352 + components: + - pos: 9.5,3.5 + parent: 374 + type: Transform +- proto: ClothingHeadHatChef + entities: + - uid: 284 + components: + - pos: 0.51766694,3.605132 + parent: 374 + type: Transform +- proto: ClothingHeadHatPaper + entities: + - uid: 286 + components: + - pos: -1.1147271,0.49722147 + parent: 374 + type: Transform +- proto: ComfyChair + entities: + - uid: 318 + components: + - pos: 7.5,7.5 + parent: 374 + type: Transform +- proto: CrateFilledSpawner + entities: + - uid: 267 + components: + - pos: 10.5,1.5 + parent: 374 + type: Transform +- proto: DisposalUnit + entities: + - uid: 72 + components: + - pos: -4.5,-4.5 + parent: 374 + type: Transform + - uid: 306 + components: + - pos: -0.5,6.5 + parent: 374 + type: Transform + - uid: 307 + components: + - pos: -1.5,6.5 + parent: 374 + type: Transform +- proto: DrinkGlass + entities: + - uid: 99 + components: + - pos: -5.555743,0.65469545 + parent: 374 + type: Transform + - uid: 100 + components: + - desc: An opaque white liquid produced by the mammary glands of mammals. + name: milk glass + type: MetaData + - pos: -3.9776185,0.74844545 + parent: 374 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 30 + reagents: + - data: null + ReagentId: Milk + Quantity: 20 + type: SolutionContainerManager + - transformed: True + currentReagent: + metamorphicSprite: null + flavor: milk + flavorMinimum: 0.1 + slippery: False + viscosity: 0 + metabolisms: + Drink: + effects: + - !type:SatiateThirst + shouldLog: False + logImpact: Low + factor: 4 + probability: 1 + conditions: null + metabolismRate: 0.5 + reactiveEffects: null + tileReactions: [] + plantMetabolism: + - !type:PlantAdjustNutrition + shouldLog: False + logImpact: Low + prob: 1 + amount: 0.1 + probability: 1 + conditions: null + - !type:PlantAdjustWater + shouldLog: False + logImpact: Low + prob: 1 + amount: 0.9 + probability: 1 + conditions: null + pricePerUnit: 0 + id: Milk + meltingPoint: null + name: reagent-name-milk + group: Drinks + parent: null + abstract: False + desc: reagent-desc-milk + physicalDesc: reagent-physical-desc-opaque + color: '#DFDFDFFF' + specificHeat: 1 + boilingPoint: null + recognizable: True + type: TransformableContainer + - uid: 101 + components: + - pos: -2.6807435,0.59219545 + parent: 374 + type: Transform + - uid: 102 + components: + - desc: Both delicious AND rich in Vitamin C. What more do you need? + name: orange juice glass + type: MetaData + - pos: -0.66511846,0.71719545 + parent: 374 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 30 + reagents: + - data: null + ReagentId: JuiceOrange + Quantity: 12 + type: SolutionContainerManager + - transformed: True + currentReagent: + metamorphicSprite: null + flavor: orange + flavorMinimum: 0.1 + slippery: True + viscosity: 0 + metabolisms: + Drink: + effects: + - !type:SatiateThirst + shouldLog: False + logImpact: Low + factor: 3 + probability: 1 + conditions: null + metabolismRate: 0.5 + reactiveEffects: + Extinguish: + effects: + - !type:ExtinguishReaction + shouldLog: False + logImpact: Low + probability: 1 + conditions: null + methods: + - Touch + tileReactions: + - !type:ExtinguishTileReaction + coolingTemperature: 2 + - !type:SpillIfPuddlePresentTileReaction {} + plantMetabolism: + - !type:PlantAdjustWater + shouldLog: False + logImpact: Low + prob: 1 + amount: 1 + probability: 1 + conditions: null + pricePerUnit: 0 + id: JuiceOrange + meltingPoint: null + name: reagent-name-juice-orange + group: Drinks + parent: + - BaseDrink + abstract: False + desc: reagent-desc-juice-orange + physicalDesc: reagent-physical-desc-citric + color: '#E78108FF' + specificHeat: 1 + boilingPoint: null + recognizable: False + type: TransformableContainer + - uid: 103 + components: + - pos: -9.445305,-0.26717955 + parent: 374 + type: Transform + - uid: 123 + components: + - pos: -3.714935,3.801003 + parent: 374 + type: Transform + - uid: 124 + components: + - pos: -3.51181,3.707253 + parent: 374 + type: Transform + - uid: 125 + components: + - pos: -3.339935,3.801003 + parent: 374 + type: Transform + - uid: 126 + components: + - pos: -3.214935,3.660378 + parent: 374 + type: Transform +- proto: DrinkGoldenCup + entities: + - uid: 323 + components: + - pos: 8.453752,7.630352 + parent: 374 + type: Transform +- proto: DrinkHotCoffee + entities: + - uid: 378 + components: + - pos: -9.065754,-3.2321894 + parent: 374 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 20 + reagents: + - data: null + ReagentId: Coffee + Quantity: 13 + type: SolutionContainerManager + - uid: 379 + components: + - pos: -8.32988,2.5280488 + parent: 374 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 20 + reagents: + - data: null + ReagentId: Coffee + Quantity: 16 + type: SolutionContainerManager +- proto: DrinkJar + entities: + - uid: 279 + components: + - pos: 0.52655387,-2.328269 + parent: 374 + type: Transform +- proto: DrinkNeurotoxinGlass + entities: + - uid: 366 + components: + - pos: -2.5328293,3.8678043 + parent: 374 + type: Transform +- proto: DrinkWaterBottleFull + entities: + - uid: 105 + components: + - pos: 3.6390457,1.7115543 + parent: 374 + type: Transform + - uid: 367 + components: + - pos: 3.3734207,1.7115543 + parent: 374 + type: Transform + - uid: 368 + components: + - pos: 3.4984207,1.6334293 + parent: 374 + type: Transform +- proto: filingCabinetRandom + entities: + - uid: 319 + components: + - pos: 10.5,7.5 + parent: 374 + type: Transform +- proto: filingCabinetTallRandom + entities: + - uid: 320 + components: + - pos: 10.5,6.5 + parent: 374 + type: Transform +- proto: FloraRockSolid01 + entities: + - uid: 152 + components: + - pos: -0.046269894,-8.814846 + parent: 374 + type: Transform +- proto: FloraRockSolid02 + entities: + - uid: 234 + components: + - pos: -9.218145,-7.4710965 + parent: 374 + type: Transform +- proto: FoodBakedWaffle + entities: + - uid: 118 + components: + - pos: 2.5,3.5 + parent: 374 + type: Transform + - uid: 119 + components: + - pos: 1.5,0.5 + parent: 374 + type: Transform + - uid: 120 + components: + - pos: -9.5,-3.5 + parent: 374 + type: Transform + - uid: 283 + components: + - pos: -9.408061,2.66441 + parent: 374 + type: Transform + - uid: 285 + components: + - pos: 10.618834,-4.4387207 + parent: 374 + type: Transform + - solutions: + food: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 20 + reagents: + - data: null + ReagentId: Nutriment + Quantity: 8 + - data: null + ReagentId: Vitamin + Quantity: 1 + - data: null + ReagentId: Toxin + Quantity: 10 + type: SolutionContainerManager +- proto: FoodBakedWaffleRoffle + entities: + - uid: 365 + components: + - pos: 3.4027214,3.5300198 + parent: 374 + type: Transform +- proto: FoodBakedWaffleSoy + entities: + - uid: 280 + components: + - pos: 2.589845,1.6464677 + parent: 374 + type: Transform +- proto: FoodBakedWaffleSoylent + entities: + - uid: 303 + components: + - pos: 5.5117197,3.6464677 + parent: 374 + type: Transform +- proto: FoodContainerEgg + entities: + - uid: 116 + components: + - pos: -2.5,3.5 + parent: 374 + type: Transform +- proto: FoodPlateSmallTrash + entities: + - uid: 104 + components: + - pos: -4.8784833,0.57205576 + parent: 374 + type: Transform + - uid: 108 + components: + - pos: -8.867568,-0.30833054 + parent: 374 + type: Transform +- proto: FoodPlateTin + entities: + - uid: 107 + components: + - pos: -5.2756214,3.6472533 + parent: 374 + type: Transform +- proto: FoodPlateTrash + entities: + - uid: 106 + components: + - pos: -3.2378583,0.61893076 + parent: 374 + type: Transform +- proto: Grille + entities: + - uid: 140 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-4.5 + parent: 374 + type: Transform + - uid: 141 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-3.5 + parent: 374 + type: Transform + - uid: 142 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-2.5 + parent: 374 + type: Transform + - uid: 144 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-0.5 + parent: 374 + type: Transform + - uid: 146 + components: + - rot: 3.141592653589793 rad + pos: -10.5,1.5 + parent: 374 + type: Transform + - uid: 147 + components: + - rot: 3.141592653589793 rad + pos: -10.5,2.5 + parent: 374 + type: Transform + - uid: 148 + components: + - rot: 3.141592653589793 rad + pos: -10.5,3.5 + parent: 374 + type: Transform + - uid: 149 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-5.5 + parent: 374 + type: Transform + - uid: 150 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-5.5 + parent: 374 + type: Transform + - uid: 151 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-5.5 + parent: 374 + type: Transform + - uid: 153 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 374 + type: Transform + - uid: 154 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 374 + type: Transform + - uid: 155 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 374 + type: Transform + - uid: 157 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 374 + type: Transform + - uid: 158 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 374 + type: Transform + - uid: 159 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 374 + type: Transform + - uid: 160 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 374 + type: Transform + - uid: 161 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 374 + type: Transform + - uid: 162 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 374 + type: Transform + - uid: 163 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 374 + type: Transform + - uid: 164 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 374 + type: Transform + - uid: 165 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 374 + type: Transform +- proto: GroundCannabis + entities: + - uid: 358 + components: + - pos: 7.427085,1.6651149 + parent: 374 + type: Transform + - uid: 359 + components: + - pos: 7.56771,1.4151149 + parent: 374 + type: Transform + - uid: 360 + components: + - pos: 7.84896,1.6963649 + parent: 374 + type: Transform +- proto: HatSpawner + entities: + - uid: 385 + components: + - pos: -2.5,-4.5 + parent: 374 + type: Transform +- proto: IngotGold1 + entities: + - uid: 324 + components: + - pos: 6.3276978,8.488195 + parent: 374 + type: Transform + - uid: 325 + components: + - pos: 6.4370728,8.706945 + parent: 374 + type: Transform + - uid: 326 + components: + - pos: 6.6558228,8.550695 + parent: 374 + type: Transform + - uid: 327 + components: + - pos: 6.7651978,8.41007 + parent: 374 + type: Transform + - uid: 328 + components: + - pos: 6.5308228,8.394445 + parent: 374 + type: Transform + - uid: 329 + components: + - pos: 6.4526978,8.31632 + parent: 374 + type: Transform + - uid: 330 + components: + - pos: 6.262486,7.708477 + parent: 374 + type: Transform + - uid: 331 + components: + - pos: 6.7339478,7.691321 + parent: 374 + type: Transform + - uid: 332 + components: + - pos: 6.5151978,7.675696 + parent: 374 + type: Transform + - uid: 333 + components: + - pos: 6.3433228,7.441321 + parent: 374 + type: Transform + - uid: 334 + components: + - pos: 6.4214478,7.488196 + parent: 374 + type: Transform +- proto: IngotSilver1 + entities: + - uid: 143 + components: + - pos: -1.5112443,-2.3908374 + parent: 374 + type: Transform + - uid: 225 + components: + - pos: -1.3549943,-2.5783374 + parent: 374 + type: Transform +- proto: KitchenKnife + entities: + - uid: 115 + components: + - pos: -4.5,3.5 + parent: 374 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 117 + components: + - pos: 1.5,3.5 + parent: 374 + type: Transform +- proto: LampGold + entities: + - uid: 335 + components: + - pos: 6.5475016,6.9702196 + parent: 374 + type: Transform +- proto: LightPostSmall + entities: + - uid: 269 + components: + - pos: 1.5,-7.5 + parent: 374 + type: Transform + - uid: 270 + components: + - pos: -7.5,-7.5 + parent: 374 + type: Transform +- proto: MaterialCloth + entities: + - uid: 353 + components: + - pos: 10.476502,3.6268404 + parent: 374 + type: Transform +- proto: PackPaperRollingFilters + entities: + - uid: 364 + components: + - pos: 7.237362,1.3310549 + parent: 374 + type: Transform +- proto: Pill + entities: + - uid: 375 + components: + - pos: 7.295575,1.7221131 + parent: 374 + type: Transform + - solutions: + food: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 20 + reagents: + - data: null + ReagentId: Desoxyephedrine + Quantity: 20 + type: SolutionContainerManager +- proto: PosterContrabandEAT + entities: + - uid: 350 + components: + - pos: 0.5,4.5 + parent: 374 + type: Transform +- proto: PosterLegitFruitBowl + entities: + - uid: 351 + components: + - pos: -3.5,4.5 + parent: 374 + type: Transform +- proto: PosterLegitJustAWeekAway + entities: + - uid: 357 + components: + - pos: 7.5,0.5 + parent: 374 + type: Transform +- proto: PosterLegitPieSlice + entities: + - uid: 376 + components: + - pos: 5.5,4.5 + parent: 374 + type: Transform +- proto: Poweredlight + entities: + - uid: 132 + components: + - pos: -3.5,3.5 + parent: 374 + type: Transform +- proto: Rack + entities: + - uid: 93 + components: + - pos: 5.5,3.5 + parent: 374 + type: Transform + - uid: 95 + components: + - pos: 2.5,1.5 + parent: 374 + type: Transform + - uid: 96 + components: + - pos: 3.5,1.5 + parent: 374 + type: Transform + - uid: 321 + components: + - pos: 6.5,7.5 + parent: 374 + type: Transform + - uid: 322 + components: + - pos: 6.5,8.5 + parent: 374 + type: Transform + - uid: 356 + components: + - pos: 10.5,3.5 + parent: 374 + type: Transform +- proto: RandomArcade + entities: + - uid: 370 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 374 + type: Transform + - uid: 371 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 374 + type: Transform +- proto: RandomArtifactSpawner + entities: + - uid: 373 + components: + - pos: 10.5,2.5 + parent: 374 + type: Transform +- proto: RandomPosterContraband + entities: + - uid: 372 + components: + - pos: 8.5,-4.5 + parent: 374 + type: Transform +- proto: RandomSpawner + entities: + - uid: 308 + components: + - pos: -2.5,6.5 + parent: 374 + type: Transform + - uid: 309 + components: + - pos: -3.5,6.5 + parent: 374 + type: Transform + - uid: 310 + components: + - pos: -1.5,8.5 + parent: 374 + type: Transform + - uid: 311 + components: + - pos: -0.5,7.5 + parent: 374 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 354 + components: + - pos: 10.5,5.5 + parent: 374 + type: Transform +- proto: SalvageMobSpawner75 + entities: + - uid: 111 + components: + - pos: -8.5,-2.5 + parent: 374 + type: Transform + - uid: 112 + components: + - pos: -9.5,0.5 + parent: 374 + type: Transform + - uid: 275 + components: + - pos: 7.5,-4.5 + parent: 374 + type: Transform + - uid: 276 + components: + - pos: 5.5,0.5 + parent: 374 + type: Transform + - uid: 277 + components: + - pos: -8.5,-1.5 + parent: 374 + type: Transform + - uid: 278 + components: + - pos: -8.5,3.5 + parent: 374 + type: Transform + - uid: 282 + components: + - pos: -9.5,-2.5 + parent: 374 + type: Transform + - uid: 301 + components: + - pos: 2.5,0.5 + parent: 374 + type: Transform +- proto: SignBiohazardMed + entities: + - uid: 300 + components: + - pos: 10.5,4.5 + parent: 374 + type: Transform +- proto: SignPlaque + entities: + - uid: 349 + components: + - pos: 7.5,9.5 + parent: 374 + type: Transform +- proto: SignSmoking + entities: + - uid: 298 + components: + - pos: 9.5,4.5 + parent: 374 + type: Transform + - uid: 299 + components: + - pos: 1.5,-5.5 + parent: 374 + type: Transform +- proto: SinkEmpty + entities: + - uid: 27 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 374 + type: Transform + - uid: 28 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 374 + type: Transform +- proto: SinkWide + entities: + - uid: 97 + components: + - pos: -1.5,3.5 + parent: 374 + type: Transform + - uid: 98 + components: + - pos: -0.5,3.5 + parent: 374 + type: Transform +- proto: SmallLight + entities: + - uid: 134 + components: + - pos: 3.5,3.5 + parent: 374 + type: Transform + - uid: 135 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 374 + type: Transform + - uid: 137 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 374 + type: Transform + - uid: 139 + components: + - pos: -4.5,3.5 + parent: 374 + type: Transform + - uid: 355 + components: + - pos: 9.5,8.5 + parent: 374 + type: Transform +- proto: SmokingPipeFilledCannabis + entities: + - uid: 361 + components: + - pos: 7.645835,1.8682399 + parent: 374 + type: Transform +- proto: SpaceCash + entities: + - uid: 347 + components: + - pos: 8.447128,6.8764696 + parent: 374 + type: Transform + - uid: 348 + components: + - pos: 8.150253,6.6577196 + parent: 374 + type: Transform +- proto: SpawnMobBearSalvage + entities: + - uid: 113 + components: + - pos: 0.5,2.5 + parent: 374 + type: Transform + - uid: 114 + components: + - pos: -1.5,2.5 + parent: 374 + type: Transform + - uid: 127 + components: + - pos: -3.5,2.5 + parent: 374 + type: Transform + - uid: 128 + components: + - pos: 2.5,2.5 + parent: 374 + type: Transform + - uid: 313 + components: + - pos: 7.5,8.5 + parent: 374 + type: Transform +- proto: SpawnMobCleanBot + entities: + - uid: 369 + components: + - pos: -2.5,-2.5 + parent: 374 + type: Transform +- proto: Stool + entities: + - uid: 67 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 374 + type: Transform + - uid: 68 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 374 + type: Transform + - uid: 69 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 374 + type: Transform + - uid: 70 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-4.5 + parent: 374 + type: Transform + - uid: 71 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 374 + type: Transform +- proto: StoolBar + entities: + - uid: 45 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-0.5 + parent: 374 + type: Transform + - uid: 46 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 374 + type: Transform + - uid: 47 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 374 + type: Transform + - uid: 48 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 374 + type: Transform + - uid: 49 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 374 + type: Transform + - uid: 50 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 374 + type: Transform +- proto: StrangePill + entities: + - uid: 377 + components: + - name: floor pill + type: MetaData + - pos: -9.695734,-0.98569405 + parent: 374 + type: Transform +- proto: Table + entities: + - uid: 73 + components: + - pos: 1.5,0.5 + parent: 374 + type: Transform + - uid: 74 + components: + - pos: 4.5,0.5 + parent: 374 + type: Transform + - uid: 75 + components: + - pos: -9.5,2.5 + parent: 374 + type: Transform + - uid: 76 + components: + - pos: -8.5,2.5 + parent: 374 + type: Transform + - uid: 77 + components: + - pos: -8.5,-0.5 + parent: 374 + type: Transform + - uid: 78 + components: + - pos: -9.5,-0.5 + parent: 374 + type: Transform + - uid: 79 + components: + - pos: -9.5,-3.5 + parent: 374 + type: Transform + - uid: 80 + components: + - pos: -8.5,-3.5 + parent: 374 + type: Transform + - uid: 362 + components: + - pos: 7.5,1.5 + parent: 374 + type: Transform +- proto: TableCarpet + entities: + - uid: 314 + components: + - pos: 6.5,6.5 + parent: 374 + type: Transform + - uid: 315 + components: + - pos: 7.5,6.5 + parent: 374 + type: Transform + - uid: 316 + components: + - pos: 8.5,6.5 + parent: 374 + type: Transform + - uid: 317 + components: + - pos: 8.5,7.5 + parent: 374 + type: Transform +- proto: TableReinforced + entities: + - uid: 33 + components: + - pos: -5.5,0.5 + parent: 374 + type: Transform + - uid: 39 + components: + - pos: -4.5,0.5 + parent: 374 + type: Transform + - uid: 40 + components: + - pos: -2.5,3.5 + parent: 374 + type: Transform + - uid: 41 + components: + - pos: -3.5,3.5 + parent: 374 + type: Transform + - uid: 42 + components: + - pos: -4.5,3.5 + parent: 374 + type: Transform + - uid: 43 + components: + - pos: -5.5,3.5 + parent: 374 + type: Transform + - uid: 85 + components: + - pos: -0.5,0.5 + parent: 374 + type: Transform + - uid: 86 + components: + - pos: -1.5,0.5 + parent: 374 + type: Transform + - uid: 87 + components: + - pos: -2.5,0.5 + parent: 374 + type: Transform + - uid: 88 + components: + - pos: -3.5,0.5 + parent: 374 + type: Transform + - uid: 89 + components: + - pos: 3.5,3.5 + parent: 374 + type: Transform + - uid: 90 + components: + - pos: 2.5,3.5 + parent: 374 + type: Transform + - uid: 91 + components: + - pos: 1.5,3.5 + parent: 374 + type: Transform + - uid: 92 + components: + - pos: 0.5,3.5 + parent: 374 + type: Transform + - uid: 271 + components: + - pos: -0.5,-2.5 + parent: 374 + type: Transform + - uid: 272 + components: + - pos: -1.5,-2.5 + parent: 374 + type: Transform + - uid: 273 + components: + - pos: 0.5,-2.5 + parent: 374 + type: Transform +- proto: ToiletDirtyWater + entities: + - uid: 25 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 374 + type: Transform + - uid: 26 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 374 + type: Transform +- proto: TrashBag + entities: + - uid: 312 + components: + - pos: -0.98287857,6.152038 + parent: 374 + type: Transform +- proto: VendingMachineDinnerware + entities: + - uid: 94 + components: + - flags: SessionSpecific + name: Dinnerware + type: MetaData + - pos: 4.5,3.5 + parent: 374 + type: Transform +- proto: WallBrick + entities: + - uid: 110 + components: + - pos: 11.5,9.5 + parent: 374 + type: Transform + - uid: 131 + components: + - pos: 11.5,7.5 + parent: 374 + type: Transform + - uid: 145 + components: + - pos: -10.5,0.5 + parent: 374 + type: Transform + - uid: 156 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-5.5 + parent: 374 + type: Transform + - uid: 166 + components: + - pos: -10.5,-5.5 + parent: 374 + type: Transform + - uid: 167 + components: + - pos: 6.5,-2.5 + parent: 374 + type: Transform + - uid: 168 + components: + - pos: 8.5,9.5 + parent: 374 + type: Transform + - uid: 169 + components: + - pos: 7.5,9.5 + parent: 374 + type: Transform + - uid: 170 + components: + - pos: 6.5,9.5 + parent: 374 + type: Transform + - uid: 171 + components: + - pos: 5.5,9.5 + parent: 374 + type: Transform + - uid: 173 + components: + - pos: 5.5,6.5 + parent: 374 + type: Transform + - uid: 174 + components: + - pos: 5.5,7.5 + parent: 374 + type: Transform + - uid: 175 + components: + - pos: 5.5,8.5 + parent: 374 + type: Transform + - uid: 176 + components: + - pos: 10.5,0.5 + parent: 374 + type: Transform + - uid: 177 + components: + - pos: 10.5,4.5 + parent: 374 + type: Transform + - uid: 178 + components: + - pos: 9.5,4.5 + parent: 374 + type: Transform + - uid: 179 + components: + - pos: 10.5,-2.5 + parent: 374 + type: Transform + - uid: 180 + components: + - pos: 8.5,-4.5 + parent: 374 + type: Transform + - uid: 181 + components: + - pos: 8.5,-3.5 + parent: 374 + type: Transform + - uid: 182 + components: + - pos: 8.5,-2.5 + parent: 374 + type: Transform + - uid: 183 + components: + - pos: 9.5,9.5 + parent: 374 + type: Transform + - uid: 184 + components: + - pos: -10.5,4.5 + parent: 374 + type: Transform + - uid: 185 + components: + - pos: -9.5,4.5 + parent: 374 + type: Transform + - uid: 186 + components: + - pos: 11.5,6.5 + parent: 374 + type: Transform + - uid: 187 + components: + - pos: -8.5,4.5 + parent: 374 + type: Transform + - uid: 188 + components: + - pos: -7.5,4.5 + parent: 374 + type: Transform + - uid: 189 + components: + - pos: 11.5,-5.5 + parent: 374 + type: Transform + - uid: 190 + components: + - pos: 11.5,-4.5 + parent: 374 + type: Transform + - uid: 191 + components: + - pos: 5.5,-5.5 + parent: 374 + type: Transform + - uid: 192 + components: + - pos: 5.5,-4.5 + parent: 374 + type: Transform + - uid: 193 + components: + - pos: 5.5,-3.5 + parent: 374 + type: Transform + - uid: 194 + components: + - pos: 5.5,-2.5 + parent: 374 + type: Transform + - uid: 195 + components: + - pos: 7.5,-5.5 + parent: 374 + type: Transform + - uid: 196 + components: + - pos: 8.5,-5.5 + parent: 374 + type: Transform + - uid: 197 + components: + - pos: 9.5,-5.5 + parent: 374 + type: Transform + - uid: 198 + components: + - pos: 10.5,-5.5 + parent: 374 + type: Transform + - uid: 199 + components: + - pos: 6.5,-5.5 + parent: 374 + type: Transform + - uid: 200 + components: + - pos: 6.5,3.5 + parent: 374 + type: Transform + - uid: 201 + components: + - pos: 6.5,1.5 + parent: 374 + type: Transform + - uid: 202 + components: + - pos: 6.5,0.5 + parent: 374 + type: Transform + - uid: 203 + components: + - pos: 7.5,0.5 + parent: 374 + type: Transform + - uid: 204 + components: + - pos: 8.5,0.5 + parent: 374 + type: Transform + - uid: 205 + components: + - pos: 1.5,-2.5 + parent: 374 + type: Transform + - uid: 206 + components: + - pos: 1.5,-5.5 + parent: 374 + type: Transform + - uid: 207 + components: + - pos: -6.5,4.5 + parent: 374 + type: Transform + - uid: 208 + components: + - pos: -5.5,4.5 + parent: 374 + type: Transform + - uid: 209 + components: + - pos: -4.5,4.5 + parent: 374 + type: Transform + - uid: 210 + components: + - pos: -3.5,4.5 + parent: 374 + type: Transform + - uid: 211 + components: + - pos: -2.5,4.5 + parent: 374 + type: Transform + - uid: 212 + components: + - pos: -1.5,4.5 + parent: 374 + type: Transform + - uid: 213 + components: + - pos: -0.5,4.5 + parent: 374 + type: Transform + - uid: 214 + components: + - pos: 0.5,4.5 + parent: 374 + type: Transform + - uid: 215 + components: + - pos: 1.5,4.5 + parent: 374 + type: Transform + - uid: 216 + components: + - pos: 2.5,4.5 + parent: 374 + type: Transform + - uid: 217 + components: + - pos: 4.5,4.5 + parent: 374 + type: Transform + - uid: 218 + components: + - pos: 7.5,4.5 + parent: 374 + type: Transform + - uid: 219 + components: + - pos: 5.5,4.5 + parent: 374 + type: Transform + - uid: 220 + components: + - pos: 6.5,4.5 + parent: 374 + type: Transform + - uid: 221 + components: + - pos: 3.5,4.5 + parent: 374 + type: Transform + - uid: 227 + components: + - pos: -10.5,-1.5 + parent: 374 + type: Transform + - uid: 238 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 374 + type: Transform + - uid: 254 + components: + - pos: 11.5,8.5 + parent: 374 + type: Transform + - uid: 255 + components: + - pos: 10.5,9.5 + parent: 374 + type: Transform + - uid: 256 + components: + - pos: 11.5,0.5 + parent: 374 + type: Transform + - uid: 257 + components: + - pos: 11.5,1.5 + parent: 374 + type: Transform + - uid: 258 + components: + - pos: 11.5,2.5 + parent: 374 + type: Transform + - uid: 259 + components: + - pos: 11.5,3.5 + parent: 374 + type: Transform + - uid: 260 + components: + - pos: 11.5,4.5 + parent: 374 + type: Transform + - uid: 261 + components: + - pos: 11.5,5.5 + parent: 374 + type: Transform + - uid: 262 + components: + - pos: 11.5,-3.5 + parent: 374 + type: Transform + - uid: 263 + components: + - pos: 11.5,-1.5 + parent: 374 + type: Transform + - uid: 264 + components: + - pos: 11.5,-2.5 + parent: 374 + type: Transform + - uid: 265 + components: + - pos: 11.5,-0.5 + parent: 374 + type: Transform +- proto: WaterCooler + entities: + - uid: 346 + components: + - pos: 10.5,8.5 + parent: 374 + type: Transform +- proto: WindoorSecure + entities: + - uid: 38 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 374 + type: Transform +- proto: Window + entities: + - uid: 222 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-4.5 + parent: 374 + type: Transform + - uid: 223 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-3.5 + parent: 374 + type: Transform + - uid: 224 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-2.5 + parent: 374 + type: Transform + - uid: 226 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-0.5 + parent: 374 + type: Transform + - uid: 228 + components: + - pos: -10.5,1.5 + parent: 374 + type: Transform + - uid: 229 + components: + - rot: 3.141592653589793 rad + pos: -10.5,2.5 + parent: 374 + type: Transform + - uid: 230 + components: + - rot: 3.141592653589793 rad + pos: -10.5,3.5 + parent: 374 + type: Transform + - uid: 231 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-5.5 + parent: 374 + type: Transform + - uid: 232 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-5.5 + parent: 374 + type: Transform + - uid: 233 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-5.5 + parent: 374 + type: Transform + - uid: 235 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 374 + type: Transform + - uid: 236 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 374 + type: Transform + - uid: 237 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 374 + type: Transform + - uid: 239 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 374 + type: Transform + - uid: 240 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 374 + type: Transform + - uid: 241 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 374 + type: Transform + - uid: 242 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 374 + type: Transform + - uid: 243 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 374 + type: Transform + - uid: 244 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 374 + type: Transform + - uid: 245 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 374 + type: Transform + - uid: 246 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 374 + type: Transform + - uid: 247 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 374 + type: Transform +- proto: WindowDirectional + entities: + - uid: 109 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 374 + type: Transform + - uid: 121 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-7.5 + parent: 374 + type: Transform + - uid: 122 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 374 + type: Transform + - uid: 129 + components: + - pos: 1.5,1.5 + parent: 374 + type: Transform + - uid: 130 + components: + - pos: 4.5,1.5 + parent: 374 + type: Transform + - uid: 133 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-7.5 + parent: 374 + type: Transform + - uid: 138 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-7.5 + parent: 374 + type: Transform + - uid: 250 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-7.5 + parent: 374 + type: Transform + - uid: 251 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 374 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 274 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 374 + type: Transform +- proto: WindowTintedDirectional + entities: + - uid: 29 + components: + - pos: 5.5,1.5 + parent: 374 + type: Transform + - uid: 30 + components: + - pos: 3.5,1.5 + parent: 374 + type: Transform + - uid: 31 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 374 + type: Transform + - uid: 32 + components: + - pos: 2.5,1.5 + parent: 374 + type: Transform + - uid: 34 + components: + - pos: 0.5,1.5 + parent: 374 + type: Transform + - uid: 35 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 374 + type: Transform + - uid: 36 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 374 + type: Transform + - uid: 37 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 374 + type: Transform + - uid: 44 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 374 + type: Transform + - uid: 81 + components: + - pos: -8.5,1.5 + parent: 374 + type: Transform + - uid: 82 + components: + - pos: -9.5,1.5 + parent: 374 + type: Transform + - uid: 83 + components: + - pos: -9.5,-1.5 + parent: 374 + type: Transform + - uid: 84 + components: + - pos: -8.5,-1.5 + parent: 374 + type: Transform +- proto: WoodDoor + entities: + - uid: 136 + components: + - pos: 3.5,-5.5 + parent: 374 + type: Transform + - uid: 172 + components: + - pos: 5.5,5.5 + parent: 374 + type: Transform + - uid: 248 + components: + - pos: 6.5,2.5 + parent: 374 + type: Transform + - uid: 249 + components: + - pos: 9.5,0.5 + parent: 374 + type: Transform + - uid: 268 + components: + - pos: 1.5,-3.5 + parent: 374 + type: Transform + - uid: 281 + components: + - pos: 8.5,4.5 + parent: 374 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/Templates/DV-large-asteroid-template.yml b/Resources/Maps/Salvage/DeltaV/Templates/DV-large-asteroid-template.yml new file mode 100644 index 0000000000..33ea388148 --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/Templates/DV-large-asteroid-template.yml @@ -0,0 +1,1511 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + - pos: 0.5167553,0.5923884 + parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAHBwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAEBwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAALBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAKBwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAHBwAAAAAABwAAAAAABwAAAAAIBwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAGBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAADBwAAAAAHBwAAAAAIBwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAABwAAAAAJBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAMBwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAKBwAAAAAJBwAAAAAABwAAAAAEBwAAAAAABwAAAAABAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAGBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAKBwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAALBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: [] + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 65535 + 0,-1: + 0: 65535 + -1,0: + 0: 65535 + 0,0: + 0: 65535 + -4,-2: + 0: 61166 + -4,-1: + 0: 61166 + -4,-3: + 0: 52424 + -4,-4: + 0: 32768 + -3,-4: + 0: 65472 + -3,-3: + 0: 65535 + -3,-2: + 0: 65535 + -3,-1: + 0: 65535 + -2,-4: + 0: 65534 + -2,-3: + 0: 65535 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-4: + 0: 65535 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + 0,-4: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 1,-4: + 0: 65523 + 1,-3: + 0: 65535 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-4: + 0: 63248 + 2,-3: + 0: 65535 + 2,-2: + 0: 65535 + 2,-1: + 0: 65535 + 3,-3: + 0: 4368 + 3,-2: + 0: 13107 + 3,-1: + 0: 13107 + -4,0: + 0: 61166 + -4,1: + 0: 52430 + -4,2: + 0: 136 + -3,0: + 0: 65535 + -3,1: + 0: 65535 + -3,2: + 0: 53247 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 65535 + -2,3: + 0: 14 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -1,3: + 0: 15 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 15 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 65535 + 1,3: + 0: 3 + 2,0: + 0: 65535 + 2,1: + 0: 65535 + 2,2: + 0: 6143 + 3,0: + 0: 13107 + 3,1: + 0: 4371 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: SpreaderGrid +- proto: AsteroidAltRock + entities: + - uid: 2 + components: + - pos: -5.5,-14.5 + parent: 1 + type: Transform + - uid: 3 + components: + - pos: 8.5,11.5 + parent: 1 + type: Transform + - uid: 4 + components: + - pos: 7.5,11.5 + parent: 1 + type: Transform + - uid: 5 + components: + - pos: 6.5,11.5 + parent: 1 + type: Transform + - uid: 6 + components: + - pos: 5.5,12.5 + parent: 1 + type: Transform + - uid: 7 + components: + - pos: 4.5,12.5 + parent: 1 + type: Transform + - uid: 8 + components: + - pos: 3.5,12.5 + parent: 1 + type: Transform + - uid: 9 + components: + - pos: -13.5,3.5 + parent: 1 + type: Transform + - uid: 10 + components: + - pos: -8.5,11.5 + parent: 1 + type: Transform + - uid: 11 + components: + - pos: -9.5,11.5 + parent: 1 + type: Transform + - uid: 12 + components: + - pos: -10.5,10.5 + parent: 1 + type: Transform + - uid: 13 + components: + - pos: -11.5,10.5 + parent: 1 + type: Transform + - uid: 14 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 15 + components: + - pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 16 + components: + - pos: -4.5,12.5 + parent: 1 + type: Transform + - uid: 17 + components: + - pos: -5.5,12.5 + parent: 1 + type: Transform + - uid: 18 + components: + - pos: -13.5,-6.5 + parent: 1 + type: Transform + - uid: 19 + components: + - pos: -13.5,-7.5 + parent: 1 + type: Transform + - uid: 20 + components: + - pos: -3.5,-15.5 + parent: 1 + type: Transform + - uid: 21 + components: + - pos: -2.5,-15.5 + parent: 1 + type: Transform + - uid: 22 + components: + - pos: 4.5,-15.5 + parent: 1 + type: Transform + - uid: 23 + components: + - pos: 7.5,-14.5 + parent: 1 + type: Transform + - uid: 24 + components: + - pos: 0.5,-15.5 + parent: 1 + type: Transform + - uid: 25 + components: + - pos: 1.5,-15.5 + parent: 1 + type: Transform + - uid: 26 + components: + - pos: 10.5,-13.5 + parent: 1 + type: Transform + - uid: 27 + components: + - pos: 11.5,-12.5 + parent: 1 + type: Transform + - uid: 28 + components: + - pos: 13.5,-7.5 + parent: 1 + type: Transform + - uid: 29 + components: + - pos: 13.5,-6.5 + parent: 1 + type: Transform + - uid: 30 + components: + - pos: 13.5,-1.5 + parent: 1 + type: Transform + - uid: 31 + components: + - pos: 13.5,1.5 + parent: 1 + type: Transform + - uid: 32 + components: + - pos: 13.5,3.5 + parent: 1 + type: Transform + - uid: 33 + components: + - pos: 13.5,4.5 + parent: 1 + type: Transform + - uid: 34 + components: + - pos: -6.5,-15.5 + parent: 1 + type: Transform + - uid: 35 + components: + - pos: -5.5,-15.5 + parent: 1 + type: Transform + - uid: 36 + components: + - pos: -4.5,-15.5 + parent: 1 + type: Transform + - uid: 37 + components: + - pos: -14.5,0.5 + parent: 1 + type: Transform + - uid: 38 + components: + - pos: -14.5,-0.5 + parent: 1 + type: Transform + - uid: 39 + components: + - pos: -14.5,-1.5 + parent: 1 + type: Transform + - uid: 40 + components: + - pos: -14.5,-2.5 + parent: 1 + type: Transform + - uid: 41 + components: + - pos: -14.5,-3.5 + parent: 1 + type: Transform + - uid: 42 + components: + - pos: -14.5,4.5 + parent: 1 + type: Transform + - uid: 43 + components: + - pos: -14.5,3.5 + parent: 1 + type: Transform + - uid: 44 + components: + - pos: -14.5,2.5 + parent: 1 + type: Transform + - uid: 45 + components: + - pos: -14.5,1.5 + parent: 1 + type: Transform + - uid: 46 + components: + - pos: -12.5,8.5 + parent: 1 + type: Transform + - uid: 47 + components: + - pos: -13.5,7.5 + parent: 1 + type: Transform + - uid: 48 + components: + - pos: -13.5,6.5 + parent: 1 + type: Transform + - uid: 49 + components: + - pos: -13.5,5.5 + parent: 1 + type: Transform + - uid: 50 + components: + - pos: -13.5,4.5 + parent: 1 + type: Transform + - uid: 51 + components: + - pos: -13.5,2.5 + parent: 1 + type: Transform + - uid: 52 + components: + - pos: -13.5,1.5 + parent: 1 + type: Transform + - uid: 53 + components: + - pos: 2.5,12.5 + parent: 1 + type: Transform + - uid: 54 + components: + - pos: 1.5,12.5 + parent: 1 + type: Transform + - uid: 55 + components: + - pos: 0.5,12.5 + parent: 1 + type: Transform + - uid: 56 + components: + - pos: -12.5,9.5 + parent: 1 + type: Transform + - uid: 57 + components: + - pos: -2.5,12.5 + parent: 1 + type: Transform + - uid: 58 + components: + - pos: -3.5,12.5 + parent: 1 + type: Transform + - uid: 59 + components: + - pos: -6.5,12.5 + parent: 1 + type: Transform + - uid: 60 + components: + - pos: -7.5,11.5 + parent: 1 + type: Transform + - uid: 61 + components: + - pos: -12.5,-8.5 + parent: 1 + type: Transform + - uid: 62 + components: + - pos: -12.5,-9.5 + parent: 1 + type: Transform + - uid: 63 + components: + - pos: -1.5,-15.5 + parent: 1 + type: Transform + - uid: 64 + components: + - pos: -0.5,-15.5 + parent: 1 + type: Transform + - uid: 65 + components: + - pos: 5.5,-15.5 + parent: 1 + type: Transform + - uid: 66 + components: + - pos: 8.5,-14.5 + parent: 1 + type: Transform + - uid: 67 + components: + - pos: 2.5,-15.5 + parent: 1 + type: Transform + - uid: 68 + components: + - pos: 11.5,-11.5 + parent: 1 + type: Transform + - uid: 69 + components: + - pos: 12.5,-10.5 + parent: 1 + type: Transform + - uid: 70 + components: + - pos: 13.5,-5.5 + parent: 1 + type: Transform + - uid: 71 + components: + - pos: 13.5,-4.5 + parent: 1 + type: Transform + - uid: 72 + components: + - pos: 13.5,-0.5 + parent: 1 + type: Transform + - uid: 73 + components: + - pos: 13.5,2.5 + parent: 1 + type: Transform + - uid: 74 + components: + - pos: 12.5,5.5 + parent: 1 + type: Transform + - uid: 75 + components: + - pos: 12.5,6.5 + parent: 1 + type: Transform + - uid: 76 + components: + - pos: 11.5,8.5 + parent: 1 + type: Transform + - uid: 77 + components: + - pos: 11.5,9.5 + parent: 1 + type: Transform + - uid: 78 + components: + - pos: -14.5,-4.5 + parent: 1 + type: Transform + - uid: 79 + components: + - pos: -14.5,-5.5 + parent: 1 + type: Transform + - uid: 80 + components: + - pos: -12.5,-11.5 + parent: 1 + type: Transform + - uid: 81 + components: + - pos: -12.5,-12.5 + parent: 1 + type: Transform + - uid: 82 + components: + - pos: -9.5,-14.5 + parent: 1 + type: Transform + - uid: 83 + components: + - pos: -8.5,-14.5 + parent: 1 + type: Transform + - uid: 84 + components: + - pos: -13.5,-8.5 + parent: 1 + type: Transform + - uid: 85 + components: + - pos: -13.5,-9.5 + parent: 1 + type: Transform + - uid: 86 + components: + - pos: -10.5,-12.5 + parent: 1 + type: Transform + - uid: 87 + components: + - pos: -9.5,-13.5 + parent: 1 + type: Transform + - uid: 88 + components: + - pos: -8.5,-13.5 + parent: 1 + type: Transform + - uid: 89 + components: + - pos: -7.5,-13.5 + parent: 1 + type: Transform + - uid: 90 + components: + - pos: -6.5,-14.5 + parent: 1 + type: Transform + - uid: 91 + components: + - pos: -13.5,0.5 + parent: 1 + type: Transform + - uid: 92 + components: + - pos: -13.5,-0.5 + parent: 1 + type: Transform + - uid: 93 + components: + - pos: -13.5,-1.5 + parent: 1 + type: Transform + - uid: 94 + components: + - pos: -13.5,-2.5 + parent: 1 + type: Transform + - uid: 95 + components: + - pos: -13.5,-3.5 + parent: 1 + type: Transform + - uid: 96 + components: + - pos: -13.5,-4.5 + parent: 1 + type: Transform + - uid: 97 + components: + - pos: -13.5,-5.5 + parent: 1 + type: Transform + - uid: 98 + components: + - pos: -12.5,-10.5 + parent: 1 + type: Transform + - uid: 99 + components: + - pos: -11.5,-11.5 + parent: 1 + type: Transform + - uid: 100 + components: + - pos: -11.5,-12.5 + parent: 1 + type: Transform + - uid: 101 + components: + - pos: 6.5,-14.5 + parent: 1 + type: Transform + - uid: 102 + components: + - pos: 9.5,-13.5 + parent: 1 + type: Transform + - uid: 103 + components: + - pos: 3.5,-15.5 + parent: 1 + type: Transform + - uid: 104 + components: + - pos: 12.5,-9.5 + parent: 1 + type: Transform + - uid: 105 + components: + - pos: 12.5,-8.5 + parent: 1 + type: Transform + - uid: 106 + components: + - pos: 13.5,-3.5 + parent: 1 + type: Transform + - uid: 107 + components: + - pos: 13.5,-2.5 + parent: 1 + type: Transform + - uid: 108 + components: + - pos: 13.5,0.5 + parent: 1 + type: Transform + - uid: 109 + components: + - pos: 12.5,7.5 + parent: 1 + type: Transform + - uid: 110 + components: + - pos: 10.5,10.5 + parent: 1 + type: Transform + - uid: 111 + components: + - pos: 9.5,10.5 + parent: 1 + type: Transform + - uid: 112 + components: + - pos: -14.5,-6.5 + parent: 1 + type: Transform + - uid: 113 + components: + - pos: -14.5,-7.5 + parent: 1 + type: Transform + - uid: 114 + components: + - pos: -11.5,-13.5 + parent: 1 + type: Transform + - uid: 115 + components: + - pos: -10.5,-13.5 + parent: 1 + type: Transform + - uid: 116 + components: + - pos: -7.5,-14.5 + parent: 1 + type: Transform + - uid: 117 + components: + - pos: -13.5,-10.5 + parent: 1 + type: Transform + - uid: 118 + components: + - pos: -4.5,-14.5 + parent: 1 + type: Transform + - uid: 119 + components: + - pos: -3.5,-14.5 + parent: 1 + type: Transform + - uid: 120 + components: + - pos: -2.5,-14.5 + parent: 1 + type: Transform + - uid: 121 + components: + - pos: -1.5,-14.5 + parent: 1 + type: Transform + - uid: 122 + components: + - pos: -0.5,-14.5 + parent: 1 + type: Transform + - uid: 123 + components: + - pos: 0.5,-14.5 + parent: 1 + type: Transform + - uid: 124 + components: + - pos: 1.5,-14.5 + parent: 1 + type: Transform + - uid: 125 + components: + - pos: 2.5,-14.5 + parent: 1 + type: Transform + - uid: 126 + components: + - pos: 3.5,-14.5 + parent: 1 + type: Transform + - uid: 127 + components: + - pos: 4.5,-14.5 + parent: 1 + type: Transform + - uid: 128 + components: + - pos: 5.5,-14.5 + parent: 1 + type: Transform + - uid: 129 + components: + - pos: 6.5,-13.5 + parent: 1 + type: Transform + - uid: 130 + components: + - pos: 7.5,-13.5 + parent: 1 + type: Transform + - uid: 131 + components: + - pos: 8.5,-13.5 + parent: 1 + type: Transform + - uid: 132 + components: + - pos: 9.5,-12.5 + parent: 1 + type: Transform + - uid: 133 + components: + - pos: 10.5,-12.5 + parent: 1 + type: Transform + - uid: 134 + components: + - pos: 10.5,-11.5 + parent: 1 + type: Transform + - uid: 135 + components: + - pos: 11.5,-10.5 + parent: 1 + type: Transform + - uid: 136 + components: + - pos: 11.5,-9.5 + parent: 1 + type: Transform + - uid: 137 + components: + - pos: 11.5,-8.5 + parent: 1 + type: Transform + - uid: 138 + components: + - pos: 12.5,-7.5 + parent: 1 + type: Transform + - uid: 139 + components: + - pos: 12.5,-6.5 + parent: 1 + type: Transform + - uid: 140 + components: + - pos: 12.5,-5.5 + parent: 1 + type: Transform + - uid: 141 + components: + - pos: 12.5,-4.5 + parent: 1 + type: Transform + - uid: 142 + components: + - pos: 12.5,-3.5 + parent: 1 + type: Transform + - uid: 143 + components: + - pos: 12.5,-2.5 + parent: 1 + type: Transform + - uid: 144 + components: + - pos: 12.5,-1.5 + parent: 1 + type: Transform + - uid: 145 + components: + - pos: 12.5,-0.5 + parent: 1 + type: Transform + - uid: 146 + components: + - pos: 12.5,0.5 + parent: 1 + type: Transform + - uid: 147 + components: + - pos: 12.5,1.5 + parent: 1 + type: Transform + - uid: 148 + components: + - pos: 12.5,2.5 + parent: 1 + type: Transform + - uid: 149 + components: + - pos: 12.5,3.5 + parent: 1 + type: Transform + - uid: 150 + components: + - pos: 12.5,4.5 + parent: 1 + type: Transform + - uid: 151 + components: + - pos: 11.5,5.5 + parent: 1 + type: Transform + - uid: 152 + components: + - pos: 11.5,6.5 + parent: 1 + type: Transform + - uid: 153 + components: + - pos: 11.5,7.5 + parent: 1 + type: Transform + - uid: 154 + components: + - pos: 10.5,8.5 + parent: 1 + type: Transform + - uid: 155 + components: + - pos: 10.5,9.5 + parent: 1 + type: Transform + - uid: 156 + components: + - pos: 9.5,9.5 + parent: 1 + type: Transform + - uid: 157 + components: + - pos: 8.5,10.5 + parent: 1 + type: Transform + - uid: 158 + components: + - pos: 7.5,10.5 + parent: 1 + type: Transform + - uid: 159 + components: + - pos: 6.5,10.5 + parent: 1 + type: Transform + - uid: 160 + components: + - pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 161 + components: + - pos: 4.5,11.5 + parent: 1 + type: Transform + - uid: 162 + components: + - pos: 3.5,11.5 + parent: 1 + type: Transform + - uid: 163 + components: + - pos: 2.5,11.5 + parent: 1 + type: Transform + - uid: 164 + components: + - pos: 1.5,11.5 + parent: 1 + type: Transform + - uid: 165 + components: + - pos: 0.5,11.5 + parent: 1 + type: Transform + - uid: 166 + components: + - pos: -0.5,11.5 + parent: 1 + type: Transform + - uid: 167 + components: + - pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 168 + components: + - pos: -2.5,11.5 + parent: 1 + type: Transform + - uid: 169 + components: + - pos: -3.5,11.5 + parent: 1 + type: Transform + - uid: 170 + components: + - pos: -4.5,11.5 + parent: 1 + type: Transform + - uid: 171 + components: + - pos: -5.5,11.5 + parent: 1 + type: Transform + - uid: 172 + components: + - pos: -6.5,11.5 + parent: 1 + type: Transform + - uid: 173 + components: + - pos: -7.5,10.5 + parent: 1 + type: Transform + - uid: 174 + components: + - pos: -8.5,10.5 + parent: 1 + type: Transform + - uid: 175 + components: + - pos: -9.5,10.5 + parent: 1 + type: Transform + - uid: 176 + components: + - pos: -10.5,9.5 + parent: 1 + type: Transform + - uid: 177 + components: + - pos: -11.5,9.5 + parent: 1 + type: Transform + - uid: 178 + components: + - pos: -11.5,8.5 + parent: 1 + type: Transform + - uid: 179 + components: + - pos: -12.5,7.5 + parent: 1 + type: Transform + - uid: 180 + components: + - pos: -12.5,6.5 + parent: 1 + type: Transform + - uid: 181 + components: + - pos: -12.5,5.5 + parent: 1 + type: Transform +- proto: AsteroidAltRockMining + entities: + - uid: 182 + components: + - pos: -12.5,4.5 + parent: 1 + type: Transform + - uid: 183 + components: + - pos: -12.5,3.5 + parent: 1 + type: Transform + - uid: 184 + components: + - pos: -12.5,2.5 + parent: 1 + type: Transform + - uid: 185 + components: + - pos: -12.5,1.5 + parent: 1 + type: Transform + - uid: 186 + components: + - pos: -12.5,0.5 + parent: 1 + type: Transform + - uid: 187 + components: + - pos: -12.5,-0.5 + parent: 1 + type: Transform + - uid: 188 + components: + - pos: -12.5,-1.5 + parent: 1 + type: Transform + - uid: 189 + components: + - pos: -12.5,-2.5 + parent: 1 + type: Transform + - uid: 190 + components: + - pos: -12.5,-3.5 + parent: 1 + type: Transform + - uid: 191 + components: + - pos: -12.5,-4.5 + parent: 1 + type: Transform + - uid: 192 + components: + - pos: -12.5,-5.5 + parent: 1 + type: Transform + - uid: 193 + components: + - pos: -12.5,-6.5 + parent: 1 + type: Transform + - uid: 194 + components: + - pos: -12.5,-7.5 + parent: 1 + type: Transform + - uid: 195 + components: + - pos: -11.5,-8.5 + parent: 1 + type: Transform + - uid: 196 + components: + - pos: -11.5,-9.5 + parent: 1 + type: Transform + - uid: 197 + components: + - pos: -11.5,-10.5 + parent: 1 + type: Transform + - uid: 198 + components: + - pos: -10.5,-11.5 + parent: 1 + type: Transform + - uid: 199 + components: + - pos: -9.5,-12.5 + parent: 1 + type: Transform + - uid: 200 + components: + - pos: -8.5,-12.5 + parent: 1 + type: Transform + - uid: 201 + components: + - pos: -7.5,-12.5 + parent: 1 + type: Transform + - uid: 202 + components: + - pos: -6.5,-13.5 + parent: 1 + type: Transform + - uid: 203 + components: + - pos: -5.5,-13.5 + parent: 1 + type: Transform + - uid: 204 + components: + - pos: -4.5,-13.5 + parent: 1 + type: Transform + - uid: 205 + components: + - pos: -3.5,-13.5 + parent: 1 + type: Transform + - uid: 206 + components: + - pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 207 + components: + - pos: -1.5,-13.5 + parent: 1 + type: Transform + - uid: 208 + components: + - pos: -0.5,-13.5 + parent: 1 + type: Transform + - uid: 209 + components: + - pos: 0.5,-13.5 + parent: 1 + type: Transform + - uid: 210 + components: + - pos: 1.5,-13.5 + parent: 1 + type: Transform + - uid: 211 + components: + - pos: 2.5,-13.5 + parent: 1 + type: Transform + - uid: 212 + components: + - pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 213 + components: + - pos: 4.5,-13.5 + parent: 1 + type: Transform + - uid: 214 + components: + - pos: 5.5,-13.5 + parent: 1 + type: Transform + - uid: 215 + components: + - pos: 6.5,-12.5 + parent: 1 + type: Transform + - uid: 216 + components: + - pos: 7.5,-12.5 + parent: 1 + type: Transform + - uid: 217 + components: + - pos: 8.5,-12.5 + parent: 1 + type: Transform + - uid: 218 + components: + - pos: 9.5,-11.5 + parent: 1 + type: Transform + - uid: 219 + components: + - pos: 10.5,-10.5 + parent: 1 + type: Transform + - uid: 220 + components: + - pos: 10.5,-9.5 + parent: 1 + type: Transform + - uid: 221 + components: + - pos: 10.5,-8.5 + parent: 1 + type: Transform + - uid: 222 + components: + - pos: 11.5,-7.5 + parent: 1 + type: Transform + - uid: 223 + components: + - pos: 11.5,-6.5 + parent: 1 + type: Transform + - uid: 224 + components: + - pos: 11.5,-5.5 + parent: 1 + type: Transform + - uid: 225 + components: + - pos: 11.5,-4.5 + parent: 1 + type: Transform + - uid: 226 + components: + - pos: 11.5,-3.5 + parent: 1 + type: Transform + - uid: 227 + components: + - pos: 11.5,-2.5 + parent: 1 + type: Transform + - uid: 228 + components: + - pos: 11.5,-1.5 + parent: 1 + type: Transform + - uid: 229 + components: + - pos: 11.5,-0.5 + parent: 1 + type: Transform + - uid: 230 + components: + - pos: 11.5,0.5 + parent: 1 + type: Transform + - uid: 231 + components: + - pos: 11.5,1.5 + parent: 1 + type: Transform + - uid: 232 + components: + - pos: 11.5,2.5 + parent: 1 + type: Transform + - uid: 233 + components: + - pos: 11.5,3.5 + parent: 1 + type: Transform + - uid: 234 + components: + - pos: 11.5,4.5 + parent: 1 + type: Transform + - uid: 235 + components: + - pos: 10.5,5.5 + parent: 1 + type: Transform + - uid: 236 + components: + - pos: 10.5,6.5 + parent: 1 + type: Transform + - uid: 237 + components: + - pos: 10.5,7.5 + parent: 1 + type: Transform + - uid: 238 + components: + - pos: 9.5,8.5 + parent: 1 + type: Transform + - uid: 239 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 240 + components: + - pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 241 + components: + - pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 242 + components: + - pos: 5.5,10.5 + parent: 1 + type: Transform + - uid: 243 + components: + - pos: 4.5,10.5 + parent: 1 + type: Transform + - uid: 244 + components: + - pos: 3.5,10.5 + parent: 1 + type: Transform + - uid: 245 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 246 + components: + - pos: 1.5,10.5 + parent: 1 + type: Transform + - uid: 247 + components: + - pos: 0.5,10.5 + parent: 1 + type: Transform + - uid: 248 + components: + - pos: -0.5,10.5 + parent: 1 + type: Transform + - uid: 249 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 250 + components: + - pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 251 + components: + - pos: -3.5,10.5 + parent: 1 + type: Transform + - uid: 252 + components: + - pos: -4.5,10.5 + parent: 1 + type: Transform + - uid: 253 + components: + - pos: -5.5,10.5 + parent: 1 + type: Transform + - uid: 254 + components: + - pos: -6.5,10.5 + parent: 1 + type: Transform + - uid: 255 + components: + - pos: -7.5,9.5 + parent: 1 + type: Transform + - uid: 256 + components: + - pos: -8.5,9.5 + parent: 1 + type: Transform + - uid: 257 + components: + - pos: -9.5,9.5 + parent: 1 + type: Transform + - uid: 258 + components: + - pos: -10.5,8.5 + parent: 1 + type: Transform + - uid: 259 + components: + - pos: -11.5,7.5 + parent: 1 + type: Transform + - uid: 260 + components: + - pos: -11.5,6.5 + parent: 1 + type: Transform + - uid: 261 + components: + - pos: -11.5,5.5 + parent: 1 + type: Transform + - uid: 267 + components: + - pos: -11.5,4.5 + parent: 1 + type: Transform + - uid: 362 + components: + - pos: -10.5,-10.5 + parent: 1 + type: Transform + - uid: 398 + components: + - pos: -10.5,-9.5 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/Salvage/DeltaV/Templates/DV-med-asteroid-template.yml b/Resources/Maps/Salvage/DeltaV/Templates/DV-med-asteroid-template.yml new file mode 100644 index 0000000000..c2cad44b3d --- /dev/null +++ b/Resources/Maps/Salvage/DeltaV/Templates/DV-med-asteroid-template.yml @@ -0,0 +1,728 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand + 9: FloorAsteroidSandRed +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: grid + type: MetaData + - pos: -0.546875,-0.546875 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAKCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAGCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAICQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAGCQAAAAABCQAAAAAACQAAAAAACQAAAAAECQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAHCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAGCQAAAAAICQAAAAAACQAAAAAACQAAAAAACQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAICQAAAAAACQAAAAADCQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAHCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAFCQAAAAAACQAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAGCQAAAAAHCQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAJCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAJCQAAAAAMCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAADCQAAAAAECQAAAAAACQAAAAAJCQAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAKCQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAKBwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAJCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAECQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAHCQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAKCQAAAAAACQAAAAAACQAAAAAACQAAAAAFCQAAAAAJCQAAAAAACQAAAAAABwAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAACCQAAAAAECQAAAAAJCQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAGCQAAAAAHCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAKCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAFCQAAAAADCQAAAAAHCQAAAAAACQAAAAAFCQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAALCQAAAAAACQAAAAAACQAAAAAKCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: [] + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 15 + 1,0: + 0: 1 + -1,0: + 0: 15 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay +- proto: AsteroidAltRock + entities: + - uid: 2 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 3 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 4 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 5 + components: + - pos: -5.5,8.5 + parent: 1 + type: Transform + - uid: 6 + components: + - pos: -4.5,8.5 + parent: 1 + type: Transform + - uid: 7 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 8 + components: + - pos: -2.5,8.5 + parent: 1 + type: Transform + - uid: 9 + components: + - pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 10 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 11 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 12 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 13 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 14 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 15 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 16 + components: + - pos: -7.5,7.5 + parent: 1 + type: Transform + - uid: 17 + components: + - pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 18 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 19 + components: + - pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 20 + components: + - pos: -9.5,1.5 + parent: 1 + type: Transform + - uid: 21 + components: + - pos: -9.5,0.5 + parent: 1 + type: Transform + - uid: 22 + components: + - pos: -9.5,-0.5 + parent: 1 + type: Transform + - uid: 23 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 24 + components: + - pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 25 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 26 + components: + - pos: -1.5,-8.5 + parent: 1 + type: Transform + - uid: 27 + components: + - pos: -0.5,-8.5 + parent: 1 + type: Transform + - uid: 28 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 29 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 30 + components: + - pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 31 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 32 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 33 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 34 + components: + - pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 35 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 36 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 37 + components: + - pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 38 + components: + - pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 39 + components: + - pos: -5.5,-7.5 + parent: 1 + type: Transform + - uid: 40 + components: + - pos: 7.5,-4.5 + parent: 1 + type: Transform + - uid: 41 + components: + - pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 42 + components: + - pos: 7.5,-2.5 + parent: 1 + type: Transform + - uid: 43 + components: + - pos: 7.5,-1.5 + parent: 1 + type: Transform + - uid: 44 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 45 + components: + - pos: 7.5,0.5 + parent: 1 + type: Transform + - uid: 46 + components: + - pos: 7.5,1.5 + parent: 1 + type: Transform + - uid: 47 + components: + - pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 48 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 49 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 50 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 51 + components: + - pos: -8.5,-4.5 + parent: 1 + type: Transform + - uid: 52 + components: + - pos: -8.5,-3.5 + parent: 1 + type: Transform + - uid: 53 + components: + - pos: -8.5,-2.5 + parent: 1 + type: Transform + - uid: 54 + components: + - pos: -8.5,-1.5 + parent: 1 + type: Transform + - uid: 55 + components: + - pos: -8.5,-0.5 + parent: 1 + type: Transform + - uid: 56 + components: + - pos: -8.5,0.5 + parent: 1 + type: Transform + - uid: 57 + components: + - pos: -8.5,1.5 + parent: 1 + type: Transform + - uid: 58 + components: + - pos: -8.5,2.5 + parent: 1 + type: Transform + - uid: 59 + components: + - pos: -8.5,3.5 + parent: 1 + type: Transform + - uid: 60 + components: + - pos: -8.5,4.5 + parent: 1 + type: Transform + - uid: 61 + components: + - pos: -8.5,5.5 + parent: 1 + type: Transform + - uid: 62 + components: + - pos: -7.5,6.5 + parent: 1 + type: Transform + - uid: 63 + components: + - pos: -7.5,5.5 + parent: 1 + type: Transform + - uid: 64 + components: + - pos: -7.5,4.5 + parent: 1 + type: Transform + - uid: 65 + components: + - pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 66 + components: + - pos: -7.5,-4.5 + parent: 1 + type: Transform + - uid: 67 + components: + - pos: -7.5,-5.5 + parent: 1 + type: Transform + - uid: 68 + components: + - pos: -7.5,-6.5 + parent: 1 + type: Transform + - uid: 69 + components: + - pos: -6.5,-6.5 + parent: 1 + type: Transform + - uid: 70 + components: + - pos: -5.5,-6.5 + parent: 1 + type: Transform + - uid: 71 + components: + - pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 72 + components: + - pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 73 + components: + - pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 74 + components: + - pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 75 + components: + - pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 76 + components: + - pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 77 + components: + - pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 78 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 79 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 80 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 81 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 82 + components: + - pos: 6.5,7.5 + parent: 1 + type: Transform + - uid: 83 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 84 + components: + - pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 85 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 86 + components: + - pos: -6.5,6.5 + parent: 1 + type: Transform + - uid: 87 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform + - uid: 88 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 89 + components: + - pos: -5.5,5.5 + parent: 1 + type: Transform + - uid: 90 + components: + - pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 91 + components: + - pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 92 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 93 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 94 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform + - uid: 95 + components: + - pos: 5.5,-4.5 + parent: 1 + type: Transform + - uid: 96 + components: + - pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 97 + components: + - pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 98 + components: + - pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 99 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 100 + components: + - pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 101 + components: + - pos: -5.5,-4.5 + parent: 1 + type: Transform +- proto: AsteroidAltRockMining + entities: + - uid: 102 + components: + - pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 103 + components: + - pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 104 + components: + - pos: -7.5,1.5 + parent: 1 + type: Transform + - uid: 105 + components: + - pos: -7.5,0.5 + parent: 1 + type: Transform + - uid: 106 + components: + - pos: -7.5,-0.5 + parent: 1 + type: Transform + - uid: 107 + components: + - pos: -7.5,-1.5 + parent: 1 + type: Transform + - uid: 108 + components: + - pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 109 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 110 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 111 + components: + - pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 112 + components: + - pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 113 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 114 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 115 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 116 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 117 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 118 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 119 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 120 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 121 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 122 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 123 + components: + - pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 124 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform + - uid: 125 + components: + - pos: -1.5,-6.5 + parent: 1 + type: Transform + - uid: 126 + components: + - pos: -0.5,-6.5 + parent: 1 + type: Transform + - uid: 127 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 128 + components: + - pos: 1.5,-6.5 + parent: 1 + type: Transform + - uid: 129 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/Salvage/engineering-chunk.yml b/Resources/Maps/Salvage/engineering-chunk.yml new file mode 100644 index 0000000000..c7b08f139c --- /dev/null +++ b/Resources/Maps/Salvage/engineering-chunk.yml @@ -0,0 +1,3942 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 10: FloorAsteroidSandUnvariantized + 89: FloorSteel + 94: FloorSteelDiagonal + 100: FloorSteelMono + 102: FloorSteelPavement + 103: FloorSteelPavementVertical + 104: FloorTechMaint + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: grid + type: MetaData + - pos: -0.49999237,-0.46875 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: ZAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAXgAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAXgAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAXgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAXgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAZgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAZgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: eAAAAAAAeAAAAAAAeQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZwAAAAAAXgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZwAAAAAAXgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZwAAAAAAXgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZwAAAAAAXgAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZwAAAAAAXgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAZAAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZAAAAAAAXgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAZwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAZwAAAAAAXgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAZwAAAAAAXgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAXgAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAXgAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAXgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAXgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAAeQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAZAAAAAAAZgAAAAAAZgAAAAAAZAAAAAAAZgAAAAAAZgAAAAAAZAAAAAAAZgAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAZwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAZwAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAAAAAAAAAACgAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAeAAAAAAAeQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAAAXgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAAWQAAAAAAZgAAAAAAZgAAAAAAWQAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAeQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAAWQAAAAAAZgAAAAAAZgAAAAAAWQAAAAAAeQAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAeQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAAWQAAAAAAZgAAAAAAZgAAAAAAWQAAAAAAeQAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAeQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAeQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAAWQAAAAAAZgAAAAAAZgAAAAAAWQAAAAAAeQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Box + decals: + 42: -2,7 + 43: -1,7 + 44: -6,13 + 45: -5,13 + 46: -4,13 + 47: -6,14 + 48: -5,14 + 49: -4,14 + 50: -3,14 + 51: -2,14 + 52: -3,13 + 53: -2,13 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNe + decals: + 4: 1,9 + 32: -6,11 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNw + decals: + 31: -2,11 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSe + decals: + 6: 1,7 + 19: -6,5 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSw + decals: + 11: -10,7 + 18: -2,5 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerNe + decals: + 14: -8,9 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineE + decals: + 5: 1,8 + 15: -8,10 + 16: -8,11 + 17: -8,12 + 28: -10,-5 + 29: -10,-6 + 30: -10,-7 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineN + decals: + 0: -7,9 + 1: -6,9 + 2: -2,9 + 3: -1,9 + 20: -6,3 + 21: -5,3 + 22: -4,3 + 23: -3,3 + 24: -2,3 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 7: -6,7 + 8: -7,7 + 9: -8,7 + 10: -9,7 + 33: -6,13 + 34: -5,13 + 35: -4,13 + 36: -3,13 + 37: -2,13 + 38: 0,13 + 39: 1,13 + 40: -1,7 + 41: -2,7 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineW + decals: + 12: -10,8 + 13: -10,9 + 25: -7,-5 + 26: -7,-6 + 27: -7,-7 + - node: + color: '#280F00FF' + id: Dirt + decals: + 110: -2,-5 + 111: -2,-5 + 112: 1,-9 + 113: -1,-10 + 114: 3,-10 + 115: 6,-13 + 116: -3,-10 + 117: -1,-9 + 118: 1,-8 + 119: 1,-5 + 120: 0,-4 + 121: 0,-3 + 122: -1,0 + 123: -3,0 + 124: -4,0 + 125: -2,1 + 126: -1,1 + 127: 0,2 + 128: 1,3 + 129: 0,4 + 130: 0,5 + 131: 1,3 + 132: -2,4 + 133: -4,4 + 134: -3,3 + 135: -5,5 + 136: -4,5 + 137: -9,9 + 138: -9,12 + 139: -9,13 + 140: -9,10 + 141: -9,8 + 142: -7,8 + 143: -3,8 + 144: -1,8 + 145: 0,9 + 146: 1,12 + 147: 1,11 + 148: -3,12 + 149: -4,11 + 150: -4,11 + 151: -5,12 + 152: -3,12 + 153: -4,12 + 154: -6,12 + 155: -6,7 + 156: -7,8 + 157: -4,0 + 158: -5,1 + 159: -6,0 + 160: 1,-2 + 161: 1,-2 + 162: 1,-4 + 163: 1,-3 + 164: 1,-3 + 165: 1,-4 + 166: 5,-10 + 167: 4,-9 + 168: 6,-9 + 169: 5,-12 + 170: 6,-14 + 171: 5,-17 + 172: 4,-18 + 173: 5,-17 + 174: 4,-17 + 175: 7,-19 + 176: 8,-20 + 177: 7,-20 + 178: 6,-17 + 179: 7,-19 + 180: 5,-21 + 181: 5,-22 + 182: 4,-20 + 183: 4,-19 + 184: 7,-22 + 185: 8,-22 + 186: 4,-19 + 187: 6,-17 + 188: 6,-17 + 189: 4,-17 + 190: 3,-18 + 191: 3,-16 + 192: 6,-21 + 193: 8,-22 + 194: 8,-19 + 195: 6,-19 + 196: 7,-20 + 197: 4,-18 + 198: 6,-16 + 199: 6,-15 + 200: 5,-15 + 201: 5,-13 + 202: 5,-12 + 203: 3,-9 + 204: -1,-10 + 205: 6,-11 + 206: 6,-11 + 207: 6,-10 + - node: + color: '#835432FF' + id: Dirt + decals: + 208: -6,8 + 209: -3,8 + 210: -1,8 + 211: -5,8 + 212: 5,11 + 213: 5,14 + 214: 6,13 + 215: 6,12 + 216: 5,12 + 217: 5,15 + 218: 5,15 + 219: 4,13 + 220: 4,17 + 221: 8,14 + 222: 8,12 + 223: 8,16 + 224: 6,17 + 225: 3,13 + 226: 4,14 + 227: 5,10 + 228: 4,9 + 229: 5,9 + 230: 7,12 + 231: 8,15 + 232: 3,8 + 233: 4,7 + 234: 4,4 + 235: 4,3 + 236: 4,6 + 237: 4,5 + 244: 6,20 + 245: 2,20 + 246: 0,19 + 247: 1,18 + 248: 1,20 + 249: 0,16 + 250: 0,16 + 251: -4,17 + 252: -2,15 + 253: -4,18 + 254: -4,18 + 255: -4,16 + 256: -6,16 + 257: -3,17 + 258: 0,16 + 259: 1,16 + 260: 1,15 + 261: 1,15 + 262: 5,17 + 263: 5,15 + 264: 7,16 + 265: 7,17 + 266: 5,14 + 267: 8,14 + 268: 5,15 + 269: 7,12 + 270: 7,14 + 271: 7,14 + 272: 8,13 + 273: 7,13 + 274: 5,13 + 275: 4,14 + 276: 4,15 + 277: 5,16 + 278: 6,16 + 279: 6,15 + 280: 6,15 + 281: 6,16 + 282: 6,14 + 283: 6,15 + 284: 5,11 + 285: 3,11 + 286: 3,10 + 287: 4,10 + 288: 9,11 + 289: 7,11 + 290: 0,3 + 291: 1,5 + 292: 1,2 + 293: 0,1 + 294: 0,1 + 295: 1,-2 + 296: 1,-3 + 297: 0,-2 + 298: 1,-5 + 299: 0,-7 + 300: 1,-6 + 301: 0,-6 + 302: 0,-5 + 303: 1,-6 + 304: 0,-5 + 305: -1,-5 + 306: -2,-4 + 307: -3,-3 + 308: -4,-4 + 309: -4,-5 + 310: -4,-6 + 311: -4,-7 + 312: -5,-7 + 313: -5,-7 + 314: -5,-6 + 315: -2,-7 + 316: -4,-5 + 317: -4,-3 + 318: -5,-3 + 319: -3,-2 + 320: -7,-5 + 321: -9,-7 + 322: -9,-7 + 323: -8,-6 + 324: -7,-6 + 325: -9,-5 + 326: -10,-7 + 327: -14,-10 + 328: -12,-11 + 329: -13,-10 + 330: -13,-7 + 331: -13,-6 + 332: -13,-6 + 333: -14,-6 + 334: -13,-5 + 335: -13,-4 + 336: -13,-4 + 337: -12,-6 + 338: -8,-11 + 339: -9,-12 + 340: -8,-12 + 341: -8,-11 + 342: -9,-13 + 343: -10,-12 + 344: -9,-12 + 345: -4,-10 + 346: -4,-9 + 347: -2,-10 + 348: -3,-10 + 349: 0,-10 + 350: -1,-9 + 351: 3,-10 + 352: 5,-10 + 353: 5,-11 + 354: 5,-18 + 355: 6,-17 + 356: 8,-16 + 357: 6,-16 + 358: 8,-17 + 359: 8,-19 + 360: 8,-19 + 361: 13,-10 + 362: 11,-10 + 363: 12,-9 + 364: 12,-9 + 365: -3,1 + 366: -4,1 + 367: -8,4 + 368: -8,4 + 369: -8,5 + 370: -8,4 + 371: -9,4 + 372: -9,5 + 373: -12,7 + 374: -12,7 + 375: -13,6 + 376: -5,5 + 377: -5,4 + 378: -4,4 + 379: -3,4 + 380: -4,9 + 381: -3,9 + 382: -5,7 + 383: -8,8 + 384: -8,11 + 385: -9,10 + 386: -10,8 + 387: -10,7 + 388: -5,7 + 389: -3,7 + 390: 0,8 + 391: -1,9 + 392: -2,14 + 393: -4,14 + 394: -5,13 + 395: -5,13 + 396: -5,14 + 397: -3,17 + 398: -3,17 + 399: -1,17 + 400: 0,17 + 401: 0,18 + 402: 1,16 + 403: 1,16 + 404: -6,16 + 405: -6,17 + 406: 4,20 + 407: 3,22 + 408: 0,16 + 409: 0,15 + 410: 0,15 + 411: 0,15 + 412: 6,18 + 413: 6,18 + 414: 3,18 + 415: 5,18 + 416: 4,18 + 417: 3,15 + 418: 3,14 + 419: 9,15 + 420: 9,16 + 421: 9,14 + 422: 9,12 + 423: 9,12 + 424: 9,10 + 425: 9,11 + 426: 9,13 + 427: 9,15 + 428: 7,16 + 429: 7,14 + 430: 6,14 + 431: 6,14 + 432: 5,13 + 433: 4,13 + 434: 5,16 + 435: 4,15 + 436: 3,15 + 437: 3,14 + 438: 4,16 + 439: 5,17 + 440: 5,17 + 441: 4,16 + 442: 4,16 + 443: 4,14 + 444: 3,15 + 445: 4,15 + 446: 4,16 + 447: 5,16 + 448: 4,17 + 449: 5,18 + 450: 4,18 + 451: 3,17 + 452: 3,18 + 453: 3,17 + 454: 4,-5 + 455: 4,-7 + 456: 4,-7 + 457: 4,-6 + 458: 4,-7 + 459: 5,-7 + 460: -2,-13 + 461: -1,-13 + 462: 2,-13 + 463: 2,-14 + 464: 3,-12 + 465: 3,-13 + 466: 3,-14 + 467: 2,-13 + 468: 3,-13 + 469: 3,-12 + 470: 1,-10 + 471: 1,-10 + 472: 0,-9 + 473: -2,-9 + 474: 4,-10 + 475: 5,-9 + 476: 5,-9 + 477: -9,11 + 478: -9,11 + 479: -8,14 + 480: -9,14 + 481: -9,15 + 482: -8,13 + 483: -8,14 + 484: 1,7 + 485: 1,8 + 486: 0,8 + 487: 0,7 + 488: -4,8 + 489: -2,8 + 490: -5,9 + 491: -5,8 + 492: -7,8 + 493: -9,7 + 494: -7,9 + 495: -9,11 + 496: -7,7 + 497: -6,7 + 498: -7,7 + 499: -3,9 + 500: 1,7 + 501: 0,5 + 502: 1,4 + 503: 0,5 + 504: 0,4 + 505: -3,4 + 506: 0,0 + 507: -1,0 + 508: 0,0 + 509: -4,-6 + 510: -3,-9 + 511: -9,-2 + 512: -10,-2 + 513: -10,-1 + 514: -8,0 + 515: -7,0 + 516: -7,-2 + 517: -8,-2 + 518: -8,-2 + 519: -9,-3 + 520: -9,-3 + 521: -8,-3 + 522: -9,-2 + 523: -7,-1 + 524: -7,-2 + 525: -8,0 + 526: -9,0 + 527: -17,-6 + 528: -17,-5 + 529: -17,-6 + 530: -18,-6 + 531: -7,-12 + 532: -13,0 + 533: -13,1 + 534: -12,1 + 535: -13,1 + 536: -12,2 + 537: -12,1 + 538: -12,2 + 539: -12,1 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 68: -9,7 + 69: -1,9 + 70: -2,9 + 71: -4,13 + 72: -3,14 + 73: 1,13 + 74: -10,-7 + 75: -7,-5 + 91: -8,7 + 105: -7,9 + 108: -5,-2 + 109: -2,-2 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 76: -9,7 + 77: -8,11 + 78: -10,8 + 79: -3,7 + 80: -4,7 + 81: -4,9 + 82: -3,13 + 83: -6,14 + 84: 1,8 + 85: 1,7 + 86: -2,3 + 87: -3,3 + 104: -7,9 + 106: -8,9 + 107: -2,-2 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 88: -9,7 + 89: -10,9 + 90: -8,7 + 100: -2,5 + 101: 1,7 + 102: -6,9 + 103: -7,9 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 92: -10,7 + 93: -8,10 + 94: -8,12 + 95: -5,14 + 96: -2,7 + 97: -5,3 + 98: -6,3 + 99: -6,5 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 55: -2,-4 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 54: -5,-4 + 67: 7,-18 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 62: -2,-7 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 66: 7,-20 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 60: -2,-5 + 61: -2,-6 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 58: -4,-7 + 59: -3,-7 + 64: 8,-20 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 56: -5,-5 + 57: -5,-6 + 65: 7,-19 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 63: 8,-18 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 30583 + 0,1: + 0: 65535 + 0,-1: + 0: 30583 + 0,2: + 0: 65535 + 0,3: + 0: 65535 + 1,0: + 0: 4369 + 1,1: + 0: 30549 + 1,2: + 0: 65535 + 1,3: + 0: 65535 + 2,1: + 0: 4096 + 2,2: + 0: 65397 + 2,3: + 0: 65535 + 3,2: + 0: 30036 + 3,3: + 0: 65535 + 0,-4: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 30719 + 1,-4: + 0: 65535 + 1,-3: + 0: 61439 + 1: 4096 + 1,-2: + 0: 22527 + 1,-1: + 0: 4373 + 2,-4: + 0: 30711 + 2,-3: + 0: 65526 + 2,-2: + 0: 5471 + 3,-4: + 0: 16 + 3,-3: + 0: 30692 + 3,-2: + 0: 21 + -4,0: + 0: 36079 + -4,1: + 0: 52420 + -4,2: + 0: 17476 + -4,3: + 0: 1228 + -3,0: + 0: 65535 + -3,1: + 0: 65535 + -3,2: + 0: 65535 + -3,3: + 0: 57343 + -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 + -4,-4: + 0: 65252 + -4,-3: + 0: 65535 + -4,-2: + 0: 65535 + -4,-1: + 0: 65535 + -3,-4: + 0: 65527 + -3,-3: + 0: 65407 + 1: 128 + -3,-2: + 0: 65535 + -3,-1: + 0: 65535 + -2,-4: + 0: 65457 + -2,-3: + 0: 65535 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-4: + 0: 64852 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + -1,-1: + 0: 65535 + 0,-5: + 0: 64989 + 0,-7: + 0: 49152 + 0,-6: + 0: 52420 + 1,-7: + 0: 12288 + 1,-6: + 0: 65525 + 1,-5: + 0: 65535 + 2,-7: + 0: 4096 + 2,-6: + 0: 29489 + 2,-5: + 0: 30711 + 3,-5: + 0: 17652 + 0,4: + 0: 65535 + 0,5: + 0: 57343 + 0,6: + 0: 4 + 1,4: + 0: 65535 + 1,5: + 0: 22527 + 1,6: + 0: 17 + 2,4: + 0: 65535 + 2,5: + 0: 383 + 3,4: + 0: 32767 + 3,5: + 0: 3 + -3,4: + 0: 341 + -2,4: + 0: 24063 + -2,5: + 0: 4 + -1,4: + 0: 65535 + -1,5: + 0: 4445 + 4,-5: + 0: 1780 + -5,-3: + 0: 52872 + -5,-2: + 0: 61166 + -5,-1: + 0: 51406 + -5,-4: + 0: 32768 + -5,0: + 0: 8 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 147.92499 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirCanister + entities: + - uid: 761 + components: + - pos: -5.5,14.5 + parent: 1 + type: Transform +- proto: AirlockAtmosphericsLocked + entities: + - uid: 83 + components: + - pos: 2.5,12.5 + parent: 1 + type: Transform + - uid: 84 + components: + - pos: 0.5,10.5 + parent: 1 + type: Transform + - uid: 102 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform +- proto: AirlockChiefEngineerLocked + entities: + - uid: 15 + components: + - pos: -7.5,-7.5 + parent: 1 + type: Transform +- proto: AirlockEngineeringLocked + entities: + - uid: 42 + components: + - pos: 1.5,-12.5 + parent: 1 + type: Transform + - uid: 99 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 391 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 392 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform +- proto: AirlockExternalEngineeringLocked + entities: + - uid: 382 + components: + - pos: 8.5,20.5 + parent: 1 + type: Transform + - uid: 383 + components: + - pos: 10.5,20.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 2 + components: + - pos: 10.5,-8.5 + parent: 1 + type: Transform + - uid: 3 + components: + - pos: 7.5,-8.5 + parent: 1 + type: Transform +- proto: AirlockMaint + entities: + - uid: 25 + components: + - pos: -0.5,-10.5 + parent: 1 + type: Transform +- proto: AirlockMaintAtmoLocked + entities: + - uid: 138 + components: + - pos: 2.5,17.5 + parent: 1 + type: Transform + - uid: 384 + components: + - pos: 6.5,19.5 + parent: 1 + type: Transform +- proto: AmePart + entities: + - uid: 6 + components: + - pos: -3.432495,-6.383655 + parent: 1 + type: Transform + - uid: 404 + components: + - pos: -3.653532,-6.5817175 + parent: 1 + type: Transform +- proto: BlastDoor + entities: + - uid: 390 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 855 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 1081 + components: + - pos: 7.5,-8.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 51 + components: + - pos: 2.5,17.5 + parent: 1 + type: Transform + - uid: 492 + components: + - pos: 2.5,-12.5 + parent: 1 + type: Transform + - uid: 494 + components: + - pos: 3.5,-11.5 + parent: 1 + type: Transform + - uid: 495 + components: + - pos: 2.5,-11.5 + parent: 1 + type: Transform + - uid: 1089 + components: + - pos: 7.5,-8.5 + parent: 1 + type: Transform + - uid: 1095 + components: + - pos: 10.5,-10.5 + parent: 1 + type: Transform + - uid: 1096 + components: + - pos: 10.5,-11.5 + parent: 1 + type: Transform + - uid: 1097 + components: + - pos: 10.5,-12.5 + parent: 1 + type: Transform + - uid: 1098 + components: + - pos: 10.5,-13.5 + parent: 1 + type: Transform + - uid: 1099 + components: + - pos: 10.5,-14.5 + parent: 1 + type: Transform + - uid: 1101 + components: + - pos: 10.5,-15.5 + parent: 1 + type: Transform + - uid: 1102 + components: + - pos: 10.5,-16.5 + parent: 1 + type: Transform + - uid: 1103 + components: + - pos: 10.5,-17.5 + parent: 1 + type: Transform + - uid: 1104 + components: + - pos: 10.5,-18.5 + parent: 1 + type: Transform + - uid: 1105 + components: + - pos: 10.5,-19.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 498 + components: + - pos: 3.5,-11.5 + parent: 1 + type: Transform + - uid: 827 + components: + - pos: 9.5,-17.5 + parent: 1 + type: Transform + - uid: 913 + components: + - pos: 9.5,-16.5 + parent: 1 + type: Transform + - uid: 914 + components: + - pos: 9.5,-18.5 + parent: 1 + type: Transform + - uid: 915 + components: + - pos: 9.5,-19.5 + parent: 1 + type: Transform + - uid: 916 + components: + - pos: 9.5,-20.5 + parent: 1 + type: Transform + - uid: 1085 + components: + - pos: 7.5,-8.5 + parent: 1 + type: Transform +- proto: CableTerminal + entities: + - uid: 496 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-12.5 + parent: 1 + type: Transform + - uid: 519 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-15.5 + parent: 1 + type: Transform +- proto: CarbonDioxideCanister + entities: + - uid: 767 + components: + - pos: -2.5,14.5 + parent: 1 + type: Transform +- proto: Catwalk + entities: + - uid: 24 + components: + - pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 32 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 34 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 69 + components: + - pos: -2.5,-4.5 + parent: 1 + type: Transform + - uid: 70 + components: + - pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 71 + components: + - pos: -2.5,-2.5 + parent: 1 + type: Transform + - uid: 73 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 76 + components: + - pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 201 + components: + - pos: 5.5,-16.5 + parent: 1 + type: Transform + - uid: 962 + components: + - pos: 4.5,-16.5 + parent: 1 + type: Transform + - uid: 964 + components: + - pos: 6.5,-16.5 + parent: 1 + type: Transform + - uid: 965 + components: + - pos: 7.5,-16.5 + parent: 1 + type: Transform + - uid: 969 + components: + - pos: 5.5,-20.5 + parent: 1 + type: Transform + - uid: 970 + components: + - pos: 6.5,-20.5 + parent: 1 + type: Transform + - uid: 971 + components: + - pos: 7.5,-20.5 + parent: 1 + type: Transform + - uid: 972 + components: + - pos: 8.5,-20.5 + parent: 1 + type: Transform + - uid: 981 + components: + - pos: 1.5,19.5 + parent: 1 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 446 + components: + - pos: -8.5,-4.5 + parent: 1 + type: Transform + - uid: 447 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 1 + type: Transform +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 356 + components: + - pos: -9.5,9.5 + parent: 1 + type: Transform + - uid: 1036 + components: + - pos: 0.5,15.5 + parent: 1 + type: Transform +- proto: ClosetFireFilled + entities: + - uid: 1037 + components: + - pos: 1.5,15.5 + parent: 1 + type: Transform +- proto: ComputerPowerMonitoring + entities: + - uid: 452 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-4.5 + parent: 1 + type: Transform +- proto: CratePartsT3T4 + entities: + - uid: 52 + components: + - pos: -9.5,-6.5 + parent: 1 + type: Transform +- proto: Crowbar + entities: + - uid: 1029 + components: + - pos: -4.631132,3.6300015 + parent: 1 + type: Transform +- proto: FirelockGlass + entities: + - uid: 1061 + components: + - pos: -4.5,10.5 + parent: 1 + type: Transform + - uid: 1062 + components: + - pos: -3.5,10.5 + parent: 1 + type: Transform + - uid: 1063 + components: + - pos: -2.5,10.5 + parent: 1 + type: Transform +- proto: FloraRockSolid01 + entities: + - uid: 291 + components: + - pos: -13.5,-3.5 + parent: 1 + type: Transform + - uid: 374 + components: + - pos: -16.403109,-5.3417163 + parent: 1 + type: Transform +- proto: FloraRockSolid02 + entities: + - uid: 278 + components: + - pos: -7.5,-1.5 + parent: 1 + type: Transform + - uid: 283 + components: + - pos: -12.5,-8.5 + parent: 1 + type: Transform +- proto: FloraRockSolid03 + entities: + - uid: 369 + components: + - pos: -7.5,-8.5 + parent: 1 + type: Transform +- proto: GasAnalyzer + entities: + - uid: 1014 + components: + - pos: -1.5994864,11.612253 + parent: 1 + type: Transform + - uid: 1015 + components: + - pos: -1.3416737,11.612253 + parent: 1 + type: Transform +- proto: GasPipeStraight + entities: + - uid: 678 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,18.5 + parent: 1 + type: Transform + - uid: 679 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,17.5 + parent: 1 + type: Transform + - uid: 680 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,16.5 + parent: 1 + type: Transform + - uid: 681 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,15.5 + parent: 1 + type: Transform + - uid: 682 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,14.5 + parent: 1 + type: Transform + - uid: 683 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,13.5 + parent: 1 + type: Transform + - uid: 684 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,12.5 + parent: 1 + type: Transform +- proto: GasPressurePump + entities: + - uid: 708 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,12.5 + parent: 1 + type: Transform + - uid: 709 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,14.5 + parent: 1 + type: Transform + - uid: 710 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,16.5 + parent: 1 + type: Transform + - uid: 711 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,18.5 + parent: 1 + type: Transform + - uid: 714 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,13.5 + parent: 1 + type: Transform +- proto: Girder + entities: + - uid: 114 + components: + - pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 127 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 135 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 146 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 155 + components: + - pos: -3.5,-10.5 + parent: 1 + type: Transform + - uid: 370 + components: + - pos: 7.5,-12.5 + parent: 1 + type: Transform + - uid: 1123 + components: + - pos: 2.5,19.5 + parent: 1 + type: Transform + - uid: 1150 + components: + - pos: 4.5,21.5 + parent: 1 + type: Transform + - uid: 1170 + components: + - pos: 10.5,21.5 + parent: 1 + type: Transform + - uid: 1171 + components: + - pos: -10.5,7.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 406 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 407 + components: + - pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 408 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 410 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 411 + components: + - pos: -0.5,-6.5 + parent: 1 + type: Transform + - uid: 412 + components: + - pos: 9.5,-16.5 + parent: 1 + type: Transform + - uid: 413 + components: + - pos: 9.5,-17.5 + parent: 1 + type: Transform + - uid: 414 + components: + - pos: 9.5,-18.5 + parent: 1 + type: Transform + - uid: 415 + components: + - pos: 9.5,-19.5 + parent: 1 + type: Transform + - uid: 416 + components: + - pos: 9.5,-20.5 + parent: 1 + type: Transform + - uid: 628 + components: + - pos: 10.5,18.5 + parent: 1 + type: Transform + - uid: 629 + components: + - pos: 10.5,17.5 + parent: 1 + type: Transform + - uid: 630 + components: + - pos: 10.5,16.5 + parent: 1 + type: Transform + - uid: 631 + components: + - pos: 10.5,15.5 + parent: 1 + type: Transform + - uid: 633 + components: + - pos: 10.5,13.5 + parent: 1 + type: Transform +- proto: GrilleBroken + entities: + - uid: 47 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 68 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 72 + components: + - rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 81 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 345 + components: + - pos: 10.5,14.5 + parent: 1 + type: Transform + - uid: 346 + components: + - rot: 3.141592653589793 rad + pos: 10.5,12.5 + parent: 1 + type: Transform +- proto: LockerChiefEngineer + entities: + - uid: 444 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 353 + components: + - pos: -9.5,3.5 + parent: 1 + type: Transform + - uid: 1035 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 1034 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform +- proto: MachineFrame + entities: + - uid: 74 + components: + - pos: 7.5,-18.5 + parent: 1 + type: Transform +- proto: MachineFrameDestroyed + entities: + - uid: 57 + components: + - pos: 10.5,-13.5 + parent: 1 + type: Transform + - uid: 133 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 358 + components: + - pos: 3.5,-19.5 + parent: 1 + type: Transform + - uid: 439 + components: + - pos: 7.5,-19.5 + parent: 1 + type: Transform +- proto: MaterialCloth1 + entities: + - uid: 90 + components: + - pos: -5.484394,3.5150235 + parent: 1 + type: Transform + - uid: 132 + components: + - pos: -5.462392,3.725961 + parent: 1 + type: Transform + - uid: 134 + components: + - pos: -5.2045794,3.6556485 + parent: 1 + type: Transform +- proto: Multitool + entities: + - uid: 1027 + components: + - pos: -1.605469,5.5923 + parent: 1 + type: Transform +- proto: NitrogenCanister + entities: + - uid: 49 + components: + - pos: -4.5,13.5 + parent: 1 + type: Transform +- proto: ParticleAcceleratorControlBoxUnfinished + entities: + - uid: 597 + components: + - pos: -6.5,-6.5 + parent: 1 + type: Transform +- proto: PlasmaCanister + entities: + - uid: 1031 + components: + - pos: 6.5,14.5 + parent: 1 + type: Transform +- proto: PlushieSpaceLizard + entities: + - uid: 1226 + components: + - pos: 18.52544,-18.478405 + parent: 1 + type: Transform +- proto: PortableGeneratorJrPacman + entities: + - uid: 156 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 351 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform +- proto: PortableGeneratorSuperPacman + entities: + - uid: 14 + components: + - pos: -4.5,-4.5 + parent: 1 + type: Transform +- proto: PosterLegitSafetyMothHardhat + entities: + - uid: 1228 + components: + - pos: -0.5,10.5 + parent: 1 + type: Transform +- proto: PosterLegitSafetyMothPiping + entities: + - uid: 1227 + components: + - pos: 2.5,11.5 + parent: 1 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 103 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 448 + components: + - pos: -9.5,-5.5 + parent: 1 + type: Transform +- proto: Rack + entities: + - uid: 8 + components: + - pos: -4.5,-3.5 + parent: 1 + type: Transform + - uid: 16 + components: + - pos: -4.5,-2.5 + parent: 1 + type: Transform + - uid: 63 + components: + - pos: -4.5,-1.5 + parent: 1 + type: Transform +- proto: RadiationCollector + entities: + - uid: 599 + components: + - pos: 10.5,-12.5 + parent: 1 + type: Transform + - uid: 600 + components: + - pos: 10.5,-14.5 + parent: 1 + type: Transform +- proto: RadiationCollectorNoTank + entities: + - uid: 598 + components: + - pos: 10.5,-11.5 + parent: 1 + type: Transform +- proto: RandomEngineerCorpseSpawner + entities: + - uid: 1216 + components: + - pos: -7.5,-11.5 + parent: 1 + type: Transform +- proto: ReinforcedGirder + entities: + - uid: 359 + components: + - pos: 2.5,-18.5 + parent: 1 + type: Transform + - uid: 371 + components: + - pos: 2.5,-16.5 + parent: 1 + type: Transform + - uid: 995 + components: + - pos: -11.5,6.5 + parent: 1 + type: Transform + - uid: 1016 + components: + - pos: -4.5,-5.5 + parent: 1 + type: Transform + - uid: 1020 + components: + - pos: -9.5,2.5 + parent: 1 + type: Transform + - uid: 1025 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 1133 + components: + - pos: -4.5,-6.5 + parent: 1 + type: Transform +- proto: ReinforcedPlasmaWindow + entities: + - uid: 423 + components: + - pos: 9.5,-16.5 + parent: 1 + type: Transform + - uid: 424 + components: + - pos: 9.5,-17.5 + parent: 1 + type: Transform + - uid: 425 + components: + - pos: 9.5,-18.5 + parent: 1 + type: Transform + - uid: 426 + components: + - pos: 9.5,-19.5 + parent: 1 + type: Transform + - uid: 427 + components: + - pos: 9.5,-20.5 + parent: 1 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 115 + components: + - pos: -0.5,-6.5 + parent: 1 + type: Transform + - uid: 417 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 418 + components: + - pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 421 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 637 + components: + - pos: 10.5,18.5 + parent: 1 + type: Transform + - uid: 638 + components: + - pos: 10.5,17.5 + parent: 1 + type: Transform + - uid: 639 + components: + - pos: 10.5,16.5 + parent: 1 + type: Transform +- proto: SalvageCanisterSpawner + entities: + - uid: 62 + components: + - pos: 7.5,15.5 + parent: 1 + type: Transform + - uid: 435 + components: + - pos: 5.5,14.5 + parent: 1 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 337 + components: + - pos: -10.5,5.5 + parent: 1 + type: Transform + - uid: 350 + components: + - pos: 4.5,-20.5 + parent: 1 + type: Transform + - uid: 355 + components: + - pos: -11.5,4.5 + parent: 1 + type: Transform + - uid: 1120 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 1176 + components: + - pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 1177 + components: + - pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 1179 + components: + - pos: 6.5,-21.5 + parent: 1 + type: Transform +- proto: SalvageMobSpawner + entities: + - uid: 88 + components: + - pos: -7.5,4.5 + parent: 1 + type: Transform + - uid: 340 + components: + - pos: -8.5,7.5 + parent: 1 + type: Transform + - uid: 1117 + components: + - pos: 8.5,14.5 + parent: 1 + type: Transform +- proto: SalvageMobSpawner75 + entities: + - uid: 1118 + components: + - pos: -2.5,-1.5 + parent: 1 + type: Transform + - uid: 1122 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 1140 + components: + - pos: -4.5,12.5 + parent: 1 + type: Transform +- proto: SalvagePartsT2Spawner + entities: + - uid: 1108 + components: + - pos: 12.5,-8.5 + parent: 1 + type: Transform + - uid: 1154 + components: + - pos: -8.5,4.5 + parent: 1 + type: Transform + - uid: 1155 + components: + - pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 1158 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 1159 + components: + - pos: 2.5,-13.5 + parent: 1 + type: Transform + - uid: 1160 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 1161 + components: + - pos: -3.5,10.5 + parent: 1 + type: Transform + - uid: 1162 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 1163 + components: + - pos: 6.5,-17.5 + parent: 1 + type: Transform + - uid: 1165 + components: + - pos: 8.5,-21.5 + parent: 1 + type: Transform + - uid: 1166 + components: + - pos: 10.5,-17.5 + parent: 1 + type: Transform + - uid: 1168 + components: + - pos: 11.5,-18.5 + parent: 1 + type: Transform + - uid: 1172 + components: + - pos: 6.5,-18.5 + parent: 1 + type: Transform +- proto: SheetPlasma + entities: + - uid: 65 + components: + - pos: -4.4479065,-2.3777485 + parent: 1 + type: Transform + - uid: 85 + components: + - pos: -4.6822815,-2.3464985 + parent: 1 + type: Transform +- proto: SheetSteel1 + entities: + - uid: 53 + components: + - pos: 6.33593,-18.37973 + parent: 1 + type: Transform + - uid: 1164 + components: + - pos: 6.6406174,-18.543793 + parent: 1 + type: Transform +- proto: SheetUranium + entities: + - uid: 357 + components: + - pos: -4.468504,-1.4145174 + parent: 1 + type: Transform +- proto: ShuttersRadiationOpen + entities: + - uid: 428 + components: + - pos: 9.5,-20.5 + parent: 1 + type: Transform + - uid: 429 + components: + - pos: 9.5,-19.5 + parent: 1 + type: Transform + - uid: 430 + components: + - pos: 9.5,-18.5 + parent: 1 + type: Transform + - uid: 431 + components: + - pos: 9.5,-17.5 + parent: 1 + type: Transform + - uid: 432 + components: + - pos: 9.5,-16.5 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 493 + components: + - pos: 2.5,-11.5 + parent: 1 + type: Transform + - uid: 518 + components: + - pos: 3.5,-15.5 + parent: 1 + type: Transform +- proto: SolidSecretDoor + entities: + - uid: 26 + components: + - pos: -7.5,-3.5 + parent: 1 + type: Transform +- proto: SpaceTickSpawner + entities: + - uid: 1152 + components: + - pos: -0.5,16.5 + parent: 1 + type: Transform + - uid: 1153 + components: + - pos: -1.5,17.5 + parent: 1 + type: Transform +- proto: SpawnMobBearSalvage + entities: + - uid: 87 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 1116 + components: + - pos: 6.5,13.5 + parent: 1 + type: Transform +- proto: SpawnMobCarpHolo + entities: + - uid: 1043 + components: + - pos: 6.5,12.5 + parent: 1 + type: Transform +- proto: SpawnMobKangarooSalvage + entities: + - uid: 78 + components: + - pos: -3.5,11.5 + parent: 1 + type: Transform +- proto: SpawnMobSpiderSalvage + entities: + - uid: 75 + components: + - pos: -7.5,-6.5 + parent: 1 + type: Transform + - uid: 97 + components: + - pos: -13.5,-5.5 + parent: 1 + type: Transform + - uid: 100 + components: + - pos: -8.5,-4.5 + parent: 1 + type: Transform + - uid: 1261 + components: + - pos: -9.5,-0.5 + parent: 1 + type: Transform +- proto: SpiderWeb + entities: + - uid: 4 + components: + - pos: -15.5,-5.5 + parent: 1 + type: Transform + - uid: 5 + components: + - pos: -10.5,-1.5 + parent: 1 + type: Transform + - uid: 7 + components: + - pos: -7.5,-7.5 + parent: 1 + type: Transform + - uid: 10 + components: + - pos: -9.5,-7.5 + parent: 1 + type: Transform + - uid: 17 + components: + - pos: -12.5,-5.5 + parent: 1 + type: Transform + - uid: 18 + components: + - pos: -9.5,-4.5 + parent: 1 + type: Transform + - uid: 20 + components: + - pos: -8.5,-6.5 + parent: 1 + type: Transform + - uid: 21 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 22 + components: + - pos: -6.5,-6.5 + parent: 1 + type: Transform + - uid: 23 + components: + - pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 27 + components: + - pos: -8.5,-4.5 + parent: 1 + type: Transform + - uid: 28 + components: + - pos: -7.5,-4.5 + parent: 1 + type: Transform + - uid: 29 + components: + - pos: -7.5,-1.5 + parent: 1 + type: Transform + - uid: 30 + components: + - pos: -8.5,-0.5 + parent: 1 + type: Transform + - uid: 31 + components: + - pos: -9.5,-0.5 + parent: 1 + type: Transform + - uid: 35 + components: + - pos: -8.5,-1.5 + parent: 1 + type: Transform + - uid: 36 + components: + - pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 37 + components: + - pos: -8.5,-2.5 + parent: 1 + type: Transform + - uid: 39 + components: + - pos: -8.5,0.5 + parent: 1 + type: Transform + - uid: 41 + components: + - pos: -7.5,-6.5 + parent: 1 + type: Transform + - uid: 43 + components: + - pos: -6.5,-0.5 + parent: 1 + type: Transform + - uid: 48 + components: + - pos: -16.5,-4.5 + parent: 1 + type: Transform + - uid: 50 + components: + - pos: -15.5,-6.5 + parent: 1 + type: Transform + - uid: 58 + components: + - pos: -14.5,-5.5 + parent: 1 + type: Transform + - uid: 61 + components: + - pos: -13.5,-5.5 + parent: 1 + type: Transform + - uid: 66 + components: + - pos: -8.5,-5.5 + parent: 1 + type: Transform + - uid: 67 + components: + - pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 77 + components: + - pos: -15.5,-4.5 + parent: 1 + type: Transform + - uid: 79 + components: + - pos: -9.5,-5.5 + parent: 1 + type: Transform + - uid: 80 + components: + - pos: -16.5,-5.5 + parent: 1 + type: Transform + - uid: 82 + components: + - pos: -9.5,-1.5 + parent: 1 + type: Transform + - uid: 89 + components: + - pos: -13.5,-4.5 + parent: 1 + type: Transform + - uid: 91 + components: + - pos: -12.5,-3.5 + parent: 1 + type: Transform + - uid: 92 + components: + - pos: -11.5,-6.5 + parent: 1 + type: Transform + - uid: 93 + components: + - pos: -11.5,-5.5 + parent: 1 + type: Transform + - uid: 101 + components: + - pos: -9.5,-6.5 + parent: 1 + type: Transform + - uid: 108 + components: + - pos: -12.5,-4.5 + parent: 1 + type: Transform + - uid: 110 + components: + - pos: -12.5,-6.5 + parent: 1 + type: Transform + - uid: 168 + components: + - pos: -7.5,-0.5 + parent: 1 + type: Transform + - uid: 177 + components: + - pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 190 + components: + - pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 193 + components: + - pos: -7.5,0.5 + parent: 1 + type: Transform + - uid: 202 + components: + - pos: -7.5,-5.5 + parent: 1 + type: Transform +- proto: StorageCanister + entities: + - uid: 1021 + components: + - pos: -2.5,13.5 + parent: 1 + type: Transform + - uid: 1026 + components: + - pos: -1.5,13.5 + parent: 1 + type: Transform +- proto: SubstationBasic + entities: + - uid: 497 + components: + - pos: 3.5,-11.5 + parent: 1 + type: Transform +- proto: SuitStorageBase + entities: + - uid: 445 + components: + - pos: -6.5,-5.5 + parent: 1 + type: Transform +- proto: Table + entities: + - uid: 44 + components: + - pos: 8.5,-21.5 + parent: 1 + type: Transform + - uid: 979 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 990 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 991 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 993 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 1013 + components: + - pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 1265 + components: + - pos: 7.5,-21.5 + parent: 1 + type: Transform +- proto: TableFrame + entities: + - uid: 1147 + components: + - pos: -3.5,10.5 + parent: 1 + type: Transform +- proto: TableReinforced + entities: + - uid: 94 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 98 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 402 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 403 + components: + - pos: -4.5,10.5 + parent: 1 + type: Transform + - uid: 441 + components: + - pos: -9.5,-5.5 + parent: 1 + type: Transform + - uid: 442 + components: + - pos: -8.5,-5.5 + parent: 1 + type: Transform +- proto: UnfinishedMachineFrame + entities: + - uid: 54 + components: + - pos: 7.5,-17.5 + parent: 1 + type: Transform + - uid: 86 + components: + - pos: 4.5,-18.5 + parent: 1 + type: Transform +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 1156 + components: + - pos: 8.5,-15.5 + parent: 1 + type: Transform +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 992 + components: + - pos: -5.5,5.5 + parent: 1 + type: Transform + - uid: 1012 + components: + - pos: -5.5,11.5 + parent: 1 + type: Transform +- proto: VendingMachineYouTool + entities: + - uid: 984 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform +- proto: WallReinforced + entities: + - uid: 9 + components: + - pos: -10.5,-3.5 + parent: 1 + type: Transform + - uid: 11 + components: + - pos: -5.5,-3.5 + parent: 1 + type: Transform + - uid: 12 + components: + - pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 13 + components: + - pos: -5.5,-6.5 + parent: 1 + type: Transform + - uid: 116 + components: + - pos: -0.5,10.5 + parent: 1 + type: Transform + - uid: 117 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 118 + components: + - pos: -5.5,10.5 + parent: 1 + type: Transform + - uid: 119 + components: + - pos: -5.5,15.5 + parent: 1 + type: Transform + - uid: 120 + components: + - pos: -4.5,15.5 + parent: 1 + type: Transform + - uid: 121 + components: + - pos: -3.5,15.5 + parent: 1 + type: Transform + - uid: 122 + components: + - pos: -2.5,15.5 + parent: 1 + type: Transform + - uid: 123 + components: + - pos: -1.5,15.5 + parent: 1 + type: Transform + - uid: 124 + components: + - pos: -0.5,15.5 + parent: 1 + type: Transform + - uid: 125 + components: + - pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 126 + components: + - pos: -0.5,14.5 + parent: 1 + type: Transform + - uid: 159 + components: + - pos: 1.5,-10.5 + parent: 1 + type: Transform + - uid: 160 + components: + - pos: 1.5,-11.5 + parent: 1 + type: Transform + - uid: 161 + components: + - pos: 2.5,-10.5 + parent: 1 + type: Transform + - uid: 162 + components: + - pos: 1.5,-13.5 + parent: 1 + type: Transform + - uid: 163 + components: + - pos: 1.5,-14.5 + parent: 1 + type: Transform + - uid: 164 + components: + - pos: 2.5,-14.5 + parent: 1 + type: Transform + - uid: 165 + components: + - pos: 3.5,-14.5 + parent: 1 + type: Transform + - uid: 166 + components: + - pos: 4.5,-14.5 + parent: 1 + type: Transform + - uid: 169 + components: + - pos: 7.5,-14.5 + parent: 1 + type: Transform + - uid: 170 + components: + - pos: 4.5,-13.5 + parent: 1 + type: Transform + - uid: 171 + components: + - pos: -6.5,10.5 + parent: 1 + type: Transform + - uid: 172 + components: + - pos: -6.5,11.5 + parent: 1 + type: Transform + - uid: 173 + components: + - pos: -6.5,12.5 + parent: 1 + type: Transform + - uid: 174 + components: + - pos: -6.5,13.5 + parent: 1 + type: Transform + - uid: 175 + components: + - pos: -6.5,14.5 + parent: 1 + type: Transform + - uid: 176 + components: + - pos: -6.5,15.5 + parent: 1 + type: Transform + - uid: 178 + components: + - pos: 4.5,-12.5 + parent: 1 + type: Transform + - uid: 179 + components: + - pos: 3.5,-10.5 + parent: 1 + type: Transform + - uid: 182 + components: + - pos: 4.5,-10.5 + parent: 1 + type: Transform + - uid: 183 + components: + - pos: 4.5,-11.5 + parent: 1 + type: Transform + - uid: 185 + components: + - pos: -10.5,-4.5 + parent: 1 + type: Transform + - uid: 186 + components: + - pos: -10.5,-5.5 + parent: 1 + type: Transform + - uid: 187 + components: + - pos: -10.5,-6.5 + parent: 1 + type: Transform + - uid: 188 + components: + - pos: -10.5,-7.5 + parent: 1 + type: Transform + - uid: 189 + components: + - pos: -8.5,-3.5 + parent: 1 + type: Transform + - uid: 191 + components: + - pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 192 + components: + - pos: -9.5,-3.5 + parent: 1 + type: Transform + - uid: 194 + components: + - pos: -8.5,-7.5 + parent: 1 + type: Transform + - uid: 195 + components: + - pos: -6.5,-7.5 + parent: 1 + type: Transform + - uid: 196 + components: + - pos: -5.5,-7.5 + parent: 1 + type: Transform + - uid: 365 + components: + - pos: 9.5,-14.5 + parent: 1 + type: Transform + - uid: 366 + components: + - pos: 8.5,-14.5 + parent: 1 + type: Transform + - uid: 373 + components: + - pos: 2.5,-17.5 + parent: 1 + type: Transform + - uid: 375 + components: + - pos: 2.5,-15.5 + parent: 1 + type: Transform + - uid: 385 + components: + - pos: -0.5,11.5 + parent: 1 + type: Transform + - uid: 419 + components: + - pos: 8.5,-22.5 + parent: 1 + type: Transform + - uid: 420 + components: + - pos: 9.5,-22.5 + parent: 1 + type: Transform + - uid: 422 + components: + - pos: 9.5,-21.5 + parent: 1 + type: Transform + - uid: 433 + components: + - pos: 7.5,-22.5 + parent: 1 + type: Transform + - uid: 438 + components: + - pos: 9.5,-15.5 + parent: 1 + type: Transform + - uid: 994 + components: + - pos: -9.5,6.5 + parent: 1 + type: Transform + - uid: 997 + components: + - pos: -10.5,6.5 + parent: 1 + type: Transform + - uid: 1132 + components: + - pos: -8.5,6.5 + parent: 1 + type: Transform + - uid: 1134 + components: + - pos: -7.5,6.5 + parent: 1 + type: Transform + - uid: 1136 + components: + - pos: -8.5,2.5 + parent: 1 + type: Transform + - uid: 1137 + components: + - pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 1138 + components: + - pos: -6.5,2.5 + parent: 1 + type: Transform + - uid: 1139 + components: + - pos: -6.5,3.5 + parent: 1 + type: Transform + - uid: 1144 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform + - uid: 1145 + components: + - pos: -6.5,6.5 + parent: 1 + type: Transform +- proto: WallRock + entities: + - uid: 45 + components: + - pos: -8.5,-8.5 + parent: 1 + type: Transform + - uid: 46 + components: + - pos: -4.5,-14.5 + parent: 1 + type: Transform + - uid: 55 + components: + - pos: -17.5,-6.5 + parent: 1 + type: Transform + - uid: 64 + components: + - pos: -16.5,-2.5 + parent: 1 + type: Transform + - uid: 95 + components: + - pos: -12.5,-8.5 + parent: 1 + type: Transform + - uid: 198 + components: + - pos: -15.5,-1.5 + parent: 1 + type: Transform + - uid: 199 + components: + - pos: -15.5,-2.5 + parent: 1 + type: Transform + - uid: 200 + components: + - pos: -15.5,-3.5 + parent: 1 + type: Transform + - uid: 205 + components: + - pos: -15.5,-7.5 + parent: 1 + type: Transform + - uid: 207 + components: + - pos: -15.5,-10.5 + parent: 1 + type: Transform + - uid: 211 + components: + - pos: -14.5,-10.5 + parent: 1 + type: Transform + - uid: 212 + components: + - pos: -14.5,-9.5 + parent: 1 + type: Transform + - uid: 215 + components: + - pos: -14.5,-8.5 + parent: 1 + type: Transform + - uid: 217 + components: + - pos: -14.5,-6.5 + parent: 1 + type: Transform + - uid: 219 + components: + - pos: -14.5,-4.5 + parent: 1 + type: Transform + - uid: 220 + components: + - pos: -14.5,-3.5 + parent: 1 + type: Transform + - uid: 221 + components: + - pos: -14.5,-2.5 + parent: 1 + type: Transform + - uid: 225 + components: + - pos: -11.5,-0.5 + parent: 1 + type: Transform + - uid: 228 + components: + - pos: -11.5,-3.5 + parent: 1 + type: Transform + - uid: 231 + components: + - pos: -11.5,-7.5 + parent: 1 + type: Transform + - uid: 234 + components: + - pos: -11.5,-10.5 + parent: 1 + type: Transform + - uid: 238 + components: + - pos: -13.5,1.5 + parent: 1 + type: Transform + - uid: 241 + components: + - pos: -13.5,-1.5 + parent: 1 + type: Transform + - uid: 242 + components: + - pos: -13.5,-2.5 + parent: 1 + type: Transform + - uid: 243 + components: + - pos: -11.5,0.5 + parent: 1 + type: Transform + - uid: 244 + components: + - pos: -13.5,-6.5 + parent: 1 + type: Transform + - uid: 245 + components: + - pos: -13.5,-7.5 + parent: 1 + type: Transform + - uid: 246 + components: + - pos: -13.5,-8.5 + parent: 1 + type: Transform + - uid: 247 + components: + - pos: -12.5,-7.5 + parent: 1 + type: Transform + - uid: 248 + components: + - pos: -16.5,-0.5 + parent: 1 + type: Transform + - uid: 250 + components: + - pos: -13.5,-10.5 + parent: 1 + type: Transform + - uid: 251 + components: + - pos: -13.5,-11.5 + parent: 1 + type: Transform + - uid: 253 + components: + - pos: -12.5,-0.5 + parent: 1 + type: Transform + - uid: 254 + components: + - pos: -12.5,-1.5 + parent: 1 + type: Transform + - uid: 255 + components: + - pos: -12.5,-2.5 + parent: 1 + type: Transform + - uid: 258 + components: + - pos: -9.5,-10.5 + parent: 1 + type: Transform + - uid: 259 + components: + - pos: -9.5,-9.5 + parent: 1 + type: Transform + - uid: 264 + components: + - pos: -10.5,-11.5 + parent: 1 + type: Transform + - uid: 265 + components: + - pos: -10.5,-10.5 + parent: 1 + type: Transform + - uid: 269 + components: + - pos: -9.5,-13.5 + parent: 1 + type: Transform + - uid: 270 + components: + - pos: -9.5,-12.5 + parent: 1 + type: Transform + - uid: 271 + components: + - pos: -16.5,-6.5 + parent: 1 + type: Transform + - uid: 272 + components: + - pos: -8.5,-13.5 + parent: 1 + type: Transform + - uid: 275 + components: + - pos: -13.5,-3.5 + parent: 1 + type: Transform + - uid: 276 + components: + - pos: -8.5,-9.5 + parent: 1 + type: Transform + - uid: 277 + components: + - pos: -7.5,-14.5 + parent: 1 + type: Transform + - uid: 281 + components: + - pos: -7.5,-13.5 + parent: 1 + type: Transform + - uid: 286 + components: + - pos: -7.5,-12.5 + parent: 1 + type: Transform + - uid: 287 + components: + - pos: -7.5,-9.5 + parent: 1 + type: Transform + - uid: 294 + components: + - pos: -6.5,-12.5 + parent: 1 + type: Transform + - uid: 295 + components: + - pos: -6.5,-10.5 + parent: 1 + type: Transform + - uid: 300 + components: + - pos: -5.5,-9.5 + parent: 1 + type: Transform + - uid: 301 + components: + - pos: -4.5,-9.5 + parent: 1 + type: Transform + - uid: 305 + components: + - pos: -5.5,-12.5 + parent: 1 + type: Transform + - uid: 306 + components: + - pos: -5.5,-11.5 + parent: 1 + type: Transform + - uid: 307 + components: + - pos: -4.5,-13.5 + parent: 1 + type: Transform + - uid: 308 + components: + - pos: -4.5,-12.5 + parent: 1 + type: Transform + - uid: 309 + components: + - pos: -4.5,-11.5 + parent: 1 + type: Transform + - uid: 310 + components: + - pos: -3.5,-12.5 + parent: 1 + type: Transform + - uid: 311 + components: + - pos: -3.5,-11.5 + parent: 1 + type: Transform + - uid: 312 + components: + - pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 314 + components: + - pos: -10.5,2.5 + parent: 1 + type: Transform + - uid: 315 + components: + - pos: -10.5,1.5 + parent: 1 + type: Transform + - uid: 316 + components: + - pos: -10.5,0.5 + parent: 1 + type: Transform + - uid: 317 + components: + - pos: -10.5,-0.5 + parent: 1 + type: Transform + - uid: 319 + components: + - pos: -9.5,1.5 + parent: 1 + type: Transform + - uid: 320 + components: + - pos: -9.5,0.5 + parent: 1 + type: Transform + - uid: 321 + components: + - pos: -9.5,-2.5 + parent: 1 + type: Transform + - uid: 322 + components: + - pos: -8.5,1.5 + parent: 1 + type: Transform + - uid: 325 + components: + - pos: -5.5,-0.5 + parent: 1 + type: Transform +- proto: WallRockArtifactFragment + entities: + - uid: 296 + components: + - pos: -6.5,-9.5 + parent: 1 + type: Transform + - uid: 297 + components: + - pos: -5.5,-8.5 + parent: 1 + type: Transform +- proto: WallRockBananium + entities: + - uid: 229 + components: + - pos: -11.5,-4.5 + parent: 1 + type: Transform +- proto: WallRockGold + entities: + - uid: 226 + components: + - pos: -11.5,-1.5 + parent: 1 + type: Transform + - uid: 227 + components: + - pos: -11.5,-2.5 + parent: 1 + type: Transform + - uid: 288 + components: + - pos: -10.5,-2.5 + parent: 1 + type: Transform +- proto: WallRockPlasma + entities: + - uid: 232 + components: + - pos: -11.5,-8.5 + parent: 1 + type: Transform + - uid: 233 + components: + - pos: -11.5,-9.5 + parent: 1 + type: Transform + - uid: 260 + components: + - pos: -9.5,-8.5 + parent: 1 + type: Transform + - uid: 266 + components: + - pos: -10.5,-9.5 + parent: 1 + type: Transform + - uid: 267 + components: + - pos: -10.5,-8.5 + parent: 1 + type: Transform +- proto: WallRockQuartz + entities: + - uid: 96 + components: + - pos: -16.5,-7.5 + parent: 1 + type: Transform + - uid: 167 + components: + - pos: -16.5,-8.5 + parent: 1 + type: Transform + - uid: 206 + components: + - pos: -15.5,-8.5 + parent: 1 + type: Transform + - uid: 216 + components: + - pos: -14.5,-7.5 + parent: 1 + type: Transform +- proto: WallRockSilver + entities: + - uid: 292 + components: + - pos: -6.5,-14.5 + parent: 1 + type: Transform + - uid: 293 + components: + - pos: -6.5,-13.5 + parent: 1 + type: Transform + - uid: 302 + components: + - pos: -5.5,-13.5 + parent: 1 + type: Transform +- proto: WallRockTin + entities: + - uid: 40 + components: + - pos: -12.5,-11.5 + parent: 1 + type: Transform + - uid: 197 + components: + - pos: -15.5,-0.5 + parent: 1 + type: Transform + - uid: 208 + components: + - pos: -10.5,-12.5 + parent: 1 + type: Transform + - uid: 210 + components: + - pos: -10.5,-13.5 + parent: 1 + type: Transform + - uid: 222 + components: + - pos: -13.5,0.5 + parent: 1 + type: Transform + - uid: 223 + components: + - pos: -14.5,-0.5 + parent: 1 + type: Transform + - uid: 224 + components: + - pos: -14.5,0.5 + parent: 1 + type: Transform + - uid: 235 + components: + - pos: -11.5,-11.5 + parent: 1 + type: Transform + - uid: 236 + components: + - pos: -11.5,-12.5 + parent: 1 + type: Transform + - uid: 239 + components: + - pos: -14.5,-1.5 + parent: 1 + type: Transform + - uid: 240 + components: + - pos: -13.5,-0.5 + parent: 1 + type: Transform + - uid: 263 + components: + - pos: -12.5,-12.5 + parent: 1 + type: Transform + - uid: 323 + components: + - pos: -6.5,-2.5 + parent: 1 + type: Transform +- proto: WallSolid + entities: + - uid: 56 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 60 + components: + - pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 105 + components: + - pos: -4.5,-0.5 + parent: 1 + type: Transform + - uid: 107 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 109 + components: + - pos: -5.5,-2.5 + parent: 1 + type: Transform + - uid: 111 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 128 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 131 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 136 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 139 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 141 + components: + - pos: 12.5,-7.5 + parent: 1 + type: Transform + - uid: 143 + components: + - pos: 3.5,21.5 + parent: 1 + type: Transform + - uid: 144 + components: + - pos: 9.5,-7.5 + parent: 1 + type: Transform + - uid: 145 + components: + - pos: 8.5,-7.5 + parent: 1 + type: Transform + - uid: 148 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 149 + components: + - pos: 8.5,21.5 + parent: 1 + type: Transform + - uid: 150 + components: + - pos: 9.5,21.5 + parent: 1 + type: Transform + - uid: 151 + components: + - pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 152 + components: + - pos: 2.5,22.5 + parent: 1 + type: Transform + - uid: 154 + components: + - pos: -1.5,-10.5 + parent: 1 + type: Transform + - uid: 158 + components: + - pos: -5.5,-10.5 + parent: 1 + type: Transform + - uid: 180 + components: + - pos: -0.5,18.5 + parent: 1 + type: Transform + - uid: 181 + components: + - pos: -0.5,19.5 + parent: 1 + type: Transform + - uid: 214 + components: + - pos: 7.5,-9.5 + parent: 1 + type: Transform + - uid: 280 + components: + - pos: 8.5,-9.5 + parent: 1 + type: Transform + - uid: 285 + components: + - pos: 9.5,-13.5 + parent: 1 + type: Transform + - uid: 290 + components: + - pos: 7.5,-10.5 + parent: 1 + type: Transform + - uid: 328 + components: + - pos: 9.5,-11.5 + parent: 1 + type: Transform + - uid: 440 + components: + - pos: 10.5,-9.5 + parent: 1 + type: Transform + - uid: 552 + components: + - pos: 13.5,-8.5 + parent: 1 + type: Transform + - uid: 592 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 763 + components: + - pos: 0.5,14.5 + parent: 1 + type: Transform + - uid: 764 + components: + - pos: 1.5,14.5 + parent: 1 + type: Transform + - uid: 766 + components: + - pos: 2.5,16.5 + parent: 1 + type: Transform + - uid: 768 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 989 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 998 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 1018 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 1019 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 1022 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 1030 + components: + - pos: 1.5,10.5 + parent: 1 + type: Transform + - uid: 1109 + components: + - pos: 2.5,11.5 + parent: 1 + type: Transform + - uid: 1110 + components: + - pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 1112 + components: + - pos: 5.5,19.5 + parent: 1 + type: Transform + - uid: 1121 + components: + - pos: 4.5,19.5 + parent: 1 + type: Transform + - uid: 1125 + components: + - pos: 7.5,19.5 + parent: 1 + type: Transform + - uid: 1127 + components: + - pos: 10.5,19.5 + parent: 1 + type: Transform + - uid: 1128 + components: + - pos: 9.5,19.5 + parent: 1 + type: Transform + - uid: 1131 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 1141 + components: + - pos: -5.5,2.5 + parent: 1 + type: Transform +- proto: WallSolidRust + entities: + - uid: 19 + components: + - pos: 2.5,18.5 + parent: 1 + type: Transform + - uid: 38 + components: + - pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 59 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 104 + components: + - pos: 11.5,-7.5 + parent: 1 + type: Transform + - uid: 106 + components: + - pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 112 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 113 + components: + - pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 129 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 130 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 137 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 140 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 142 + components: + - pos: 10.5,-7.5 + parent: 1 + type: Transform + - uid: 147 + components: + - pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 153 + components: + - pos: -2.5,-10.5 + parent: 1 + type: Transform + - uid: 157 + components: + - pos: -4.5,-10.5 + parent: 1 + type: Transform + - uid: 184 + components: + - pos: 9.5,-9.5 + parent: 1 + type: Transform + - uid: 303 + components: + - pos: 7.5,-11.5 + parent: 1 + type: Transform + - uid: 338 + components: + - pos: 7.5,-13.5 + parent: 1 + type: Transform + - uid: 342 + components: + - pos: 9.5,-12.5 + parent: 1 + type: Transform + - uid: 360 + components: + - pos: 9.5,-10.5 + parent: 1 + type: Transform + - uid: 548 + components: + - pos: 7.5,-7.5 + parent: 1 + type: Transform + - uid: 549 + components: + - pos: 6.5,-7.5 + parent: 1 + type: Transform + - uid: 593 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 601 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 996 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 1017 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 1023 + components: + - pos: 2.5,15.5 + parent: 1 + type: Transform + - uid: 1024 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 1040 + components: + - pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 1115 + components: + - pos: 3.5,19.5 + parent: 1 + type: Transform + - uid: 1126 + components: + - pos: 8.5,19.5 + parent: 1 + type: Transform + - uid: 1143 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 1149 + components: + - pos: 2.5,21.5 + parent: 1 + type: Transform + - uid: 1167 + components: + - pos: 6.5,21.5 + parent: 1 + type: Transform + - uid: 1169 + components: + - pos: 7.5,21.5 + parent: 1 + type: Transform + - uid: 1174 + components: + - pos: -10.5,8.5 + parent: 1 + type: Transform + - uid: 1181 + components: + - pos: -6.5,17.5 + parent: 1 + type: Transform + - uid: 1207 + components: + - pos: -1.5,18.5 + parent: 1 + type: Transform + - uid: 1209 + components: + - pos: -0.5,20.5 + parent: 1 + type: Transform +- proto: Welder + entities: + - uid: 1225 + components: + - pos: -4.0569572,3.6000576 + parent: 1 + type: Transform +- proto: WelderExperimental + entities: + - uid: 33 + components: + - pos: -8.178565,-5.4262533 + parent: 1 + type: Transform +- proto: WeldingFuelTankFull + entities: + - uid: 343 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform +- proto: WindoorAssemblySecure + entities: + - uid: 1157 + components: + - rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 1 + type: Transform +- proto: WindoorSecureAtmosphericsLocked + entities: + - uid: 397 + components: + - rot: 3.141592653589793 rad + pos: -4.5,10.5 + parent: 1 + type: Transform + - uid: 398 + components: + - rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 1 + type: Transform +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 394 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 395 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 396 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform +- proto: Wrench + entities: + - uid: 1028 + components: + - pos: -1.4882815,5.6157374 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/Salvage/security-chunk.yml b/Resources/Maps/Salvage/security-chunk.yml new file mode 100644 index 0000000000..95a0a65a5e --- /dev/null +++ b/Resources/Maps/Salvage/security-chunk.yml @@ -0,0 +1,1813 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 28: FloorDarkDiagonal + 34: FloorDarkPavement + 36: FloorDarkPlastic + 84: FloorSteel + 94: FloorSteelPavement + 96: FloorTechMaint + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: grid + type: MetaData + - pos: -0.484375,-0.45315552 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: HAAAAAAAHAAAAAAAcQAAAAAAJAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAJAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAcQAAAAAAJAAAAAAAJAAAAAAAIgAAAAAAJAAAAAAAJAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcQAAAAAAVAAAAAAAXgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAJAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAcQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAcQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAIgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAJAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAIgAAAAAAJAAAAAAAJAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAIgAAAAAAJAAAAAAAHAAAAAAAHAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe + decals: + 10: -2,3 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNw + decals: + 2: 0,-5 + 7: -3,0 + 11: 0,3 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSe + decals: + 5: -2,-2 + 8: 4,1 + 20: 3,0 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 4: -3,-2 + 21: 7,0 + 30: 6,1 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSe + decals: + 9: 3,1 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSw + decals: + 31: 7,1 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 19: -5,-3 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 3: 1,-5 + 12: 1,3 + 13: 2,3 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + decals: + 14: -2,5 + 15: -1,5 + 16: 0,5 + 17: 1,5 + 18: 2,5 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 6: -3,-1 + - node: + color: '#8F00007A' + id: splatter + decals: + 22: 6.80215,-0.906296 + 23: 7.0130873,-1.0703585 + 24: 6.7084,-1.468796 + 25: 6.8255873,-1.4922335 + 26: 7.17715,-0.7891085 + 27: 4.8334,0.968704 + 28: 5.0912123,1.062454 + 29: 4.92715,0.8983915 + - node: + color: '#9B823D9E' + id: splatter + decals: + 0: 3.8636055,3.4339294 + 1: 4.074543,3.457367 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + -1,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 3967 + 1,0: + 0: 65535 + 1,1: + 0: 16383 + 1,2: + 0: 15 + 2,0: + 0: 4375 + 2,1: + 0: 259 + -3,0: + 0: 12 + -2,0: + 0: 52943 + -2,1: + 0: 3727 + -2,2: + 0: 8 + -1,1: + 0: 65535 + -1,2: + 0: 3087 + 0,-2: + 0: 65311 + 0,-1: + 0: 65535 + 1,-2: + 0: 65283 + 1,-1: + 0: 65535 + 2,-2: + 0: 32512 + 2,-1: + 0: 8191 + 3,-1: + 0: 259 + -2,-1: + 0: 61388 + -2,-2: + 0: 52876 + -1,-2: + 0: 65535 + -1,-1: + 0: 65535 + -1,-3: + 0: 49152 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirlockBrigLocked + entities: + - uid: 77 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 89 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 90 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform +- proto: AirlockMaintSecLocked + entities: + - uid: 74 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 75 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 76 + components: + - pos: 7.5,-2.5 + parent: 1 + type: Transform +- proto: AmbrosiaVulgarisSeeds + entities: + - uid: 256 + components: + - pos: 5.2859335,5.3358917 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 62 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 109 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 218 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform +- proto: Bed + entities: + - uid: 92 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 178 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform +- proto: BedsheetOrange + entities: + - uid: 93 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform +- proto: BoxFolderYellow + entities: + - uid: 153 + components: + - rot: -1.5707963267948966 rad + pos: 5.4834805,-0.5550535 + parent: 1 + type: Transform +- proto: BrigTimer + entities: + - uid: 205 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 206 + components: + - pos: 7.5,2.5 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 96 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 110 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 111 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 112 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 113 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 114 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 209 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 210 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 211 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 212 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 213 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 214 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 215 + components: + - pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 216 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 219 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 220 + components: + - pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 221 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 225 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 226 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 227 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 228 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 229 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 230 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 232 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 233 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 234 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 235 + components: + - pos: -2.5,-1.5 + parent: 1 + type: Transform + - uid: 240 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 241 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 242 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 243 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 244 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 245 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 246 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 143 + components: + - pos: 9.5,-1.5 + parent: 1 + type: Transform + - uid: 145 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - uid: 146 + components: + - pos: 11.5,-1.5 + parent: 1 + type: Transform + - uid: 147 + components: + - pos: 11.5,-3.5 + parent: 1 + type: Transform + - uid: 148 + components: + - pos: 12.5,-3.5 + parent: 1 + type: Transform + - uid: 149 + components: + - pos: 11.5,-2.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 115 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 116 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 117 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 118 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 119 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 120 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 121 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 122 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 123 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 124 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 125 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 126 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 128 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 129 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 130 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 131 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 132 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 133 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 134 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 135 + components: + - pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 136 + components: + - pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 137 + components: + - pos: 9.5,-3.5 + parent: 1 + type: Transform + - uid: 138 + components: + - pos: 10.5,-3.5 + parent: 1 + type: Transform + - uid: 139 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - uid: 140 + components: + - pos: 11.5,-1.5 + parent: 1 + type: Transform + - uid: 141 + components: + - pos: 11.5,-2.5 + parent: 1 + type: Transform + - uid: 142 + components: + - pos: 11.5,-3.5 + parent: 1 + type: Transform + - uid: 144 + components: + - pos: 9.5,-1.5 + parent: 1 + type: Transform + - uid: 207 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 208 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 222 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 223 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 224 + components: + - pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 231 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 236 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 237 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 238 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 239 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform +- proto: Catwalk + entities: + - uid: 179 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 180 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 181 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 182 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 183 + components: + - pos: 7.5,-3.5 + parent: 1 + type: Transform +- proto: ChairFolding + entities: + - uid: 99 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 100 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 102 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 103 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 177 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform +- proto: ClosetBase + entities: + - uid: 34 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 63 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 249 + components: + - pos: -4.5,-2.5 + parent: 1 + type: Transform + - uid: 251 + components: + - pos: 5.5,-4.5 + parent: 1 + type: Transform +- proto: ClosetFireFilled + entities: + - uid: 250 + components: + - pos: -4.5,-3.5 + parent: 1 + type: Transform + - uid: 252 + components: + - pos: 6.5,-4.5 + parent: 1 + type: Transform +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 187 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 254 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 277 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform +- proto: DrinkFourteenLokoCan + entities: + - uid: 203 + components: + - pos: 5.4417305,-1.4098206 + parent: 1 + type: Transform + - uid: 204 + components: + - rot: 1.5707963267948966 rad + pos: 4.433918,3.6995544 + parent: 1 + type: Transform +- proto: EmergencyLight + entities: + - uid: 286 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 287 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 288 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + type: Transform + - uid: 289 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 290 + components: + - rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1 + type: Transform +- proto: Girder + entities: + - uid: 8 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 67 + components: + - pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 70 + components: + - pos: -4.5,-0.5 + parent: 1 + type: Transform +- proto: HighSecArmoryLocked + entities: + - uid: 73 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 247 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform +- proto: hydroponicsSoil + entities: + - uid: 255 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform +- proto: LockerEvidence + entities: + - uid: 156 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform +- proto: MagazinePistolCaselessRifle + entities: + - uid: 107 + components: + - pos: 6.7022305,-1.140991 + parent: 1 + type: Transform +- proto: MagazinePistolSubMachineGunPractice + entities: + - uid: 159 + components: + - pos: 0.34821194,5.588533 + parent: 1 + type: Transform + - uid: 172 + components: + - pos: 0.56696194,5.588533 + parent: 1 + type: Transform +- proto: PaperOffice + entities: + - uid: 101 + components: + - rot: -1.5707963267948966 rad + pos: 5.3897305,-0.41442847 + parent: 1 + type: Transform +- proto: PosterLegitHelpOthers + entities: + - uid: 259 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform +- proto: PosterLegitHereForYourSafety + entities: + - uid: 258 + components: + - pos: -5.5,-3.5 + parent: 1 + type: Transform +- proto: PosterLegitIonRifle + entities: + - uid: 260 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 261 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform +- proto: PosterLegitObey + entities: + - uid: 257 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform +- proto: PosterLegitSecWatch + entities: + - uid: 262 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform +- proto: PosterLegitThereIsNoGasGiant + entities: + - uid: 263 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform +- proto: Poweredlight + entities: + - uid: 284 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform +- proto: PoweredlightEmpty + entities: + - uid: 166 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 283 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 285 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform +- proto: Rack + entities: + - uid: 106 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 155 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 164 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform +- proto: RandomPosterLegit + entities: + - uid: 264 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 265 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform +- proto: RandomSecurityCorpseSpawner + entities: + - uid: 98 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 108 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 184 + components: + - pos: -2.5,-2.5 + parent: 1 + type: Transform + - uid: 185 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform +- proto: RandomSpawner + entities: + - uid: 267 + components: + - pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 268 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 270 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 271 + components: + - pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 272 + components: + - pos: 8.5,-3.5 + parent: 1 + type: Transform +- proto: RandomSpawner100 + entities: + - uid: 266 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 275 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 276 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 278 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 279 + components: + - pos: 5.5,6.5 + parent: 1 + type: Transform +- proto: ReinforcedGirder + entities: + - uid: 2 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 9 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 33 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 58 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 65 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 68 + components: + - pos: -5.5,-1.5 + parent: 1 + type: Transform +- proto: RevolverCapGun + entities: + - uid: 170 + components: + - pos: 2.180628,4.72245 + parent: 1 + type: Transform +- proto: RiotBulletShield + entities: + - uid: 167 + components: + - pos: 1.2477772,5.493541 + parent: 1 + type: Transform + - uid: 168 + components: + - pos: 1.3727772,5.602916 + parent: 1 + type: Transform +- proto: RiotShield + entities: + - uid: 169 + components: + - pos: 1.6540272,5.477916 + parent: 1 + type: Transform + - uid: 171 + components: + - pos: 1.7477772,5.649791 + parent: 1 + type: Transform +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 186 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 188 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 189 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 190 + components: + - pos: 1.5,-4.5 + parent: 1 + type: Transform + - uid: 248 + components: + - pos: 7.5,1.5 + parent: 1 + type: Transform +- proto: SalvageMobSpawner + entities: + - uid: 154 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 194 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 198 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 200 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 269 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform +- proto: SalvageMobSpawner75 + entities: + - uid: 193 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 197 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform +- proto: SalvagePartsT2Spawner + entities: + - uid: 192 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 201 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 202 + components: + - pos: -7.5,0.5 + parent: 1 + type: Transform + - uid: 253 + components: + - pos: -6.5,-0.5 + parent: 1 + type: Transform +- proto: SpaceTickSpawner + entities: + - uid: 43 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform +- proto: SpawnMobBearSalvage + entities: + - uid: 191 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 196 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform +- proto: SpawnMobCarp + entities: + - uid: 195 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 199 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - uid: 273 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform +- proto: SpeedLoaderCap + entities: + - uid: 282 + components: + - pos: 2.532589,4.3975782 + parent: 1 + type: Transform +- proto: Stunbaton + entities: + - uid: 161 + components: + - pos: 0.52062917,1.5023277 + parent: 1 + type: Transform +- proto: SubstationBasic + entities: + - uid: 127 + components: + - pos: 9.5,-1.5 + parent: 1 + type: Transform +- proto: SuitStorageBase + entities: + - uid: 105 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform +- proto: SuitStorageSec + entities: + - uid: 165 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform +- proto: Table + entities: + - uid: 94 + components: + - pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 95 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 97 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 217 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform +- proto: TableFrame + entities: + - uid: 84 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform +- proto: TableReinforced + entities: + - uid: 85 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 86 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 87 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 175 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 176 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform +- proto: TrainingBomb + entities: + - uid: 152 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform +- proto: WallReinforced + entities: + - uid: 5 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 6 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 10 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 11 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 12 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 13 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 14 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 15 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 17 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 18 + components: + - pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 19 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 20 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 21 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 22 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 24 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 25 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 26 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 27 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 28 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 29 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 35 + components: + - pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 38 + components: + - pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 39 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 40 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 41 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 42 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 44 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 45 + components: + - pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 50 + components: + - pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 51 + components: + - pos: 9.5,-5.5 + parent: 1 + type: Transform + - uid: 52 + components: + - pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 53 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 54 + components: + - pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 55 + components: + - pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 56 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 57 + components: + - pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 59 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 60 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 61 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 66 + components: + - pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 71 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 72 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform +- proto: WallSolid + entities: + - uid: 7 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 16 + components: + - pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 36 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 37 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 46 + components: + - pos: -5.5,-3.5 + parent: 1 + type: Transform + - uid: 47 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform + - uid: 151 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform +- proto: WallSolidRust + entities: + - uid: 3 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 4 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 23 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 30 + components: + - pos: -5.5,-2.5 + parent: 1 + type: Transform + - uid: 31 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 32 + components: + - pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 48 + components: + - pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 49 + components: + - pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 64 + components: + - pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 69 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 91 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 150 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform +- proto: WeaponDisabler + entities: + - uid: 174 + components: + - pos: 1.141964,-0.4539845 + parent: 1 + type: Transform +- proto: WeaponDisablerPractice + entities: + - uid: 160 + components: + - pos: 0.89508694,-0.33334208 + parent: 1 + type: Transform + - uid: 173 + components: + - pos: 1.020087,-0.39584208 + parent: 1 + type: Transform +- proto: WeaponLaserCarbine + entities: + - uid: 104 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform +- proto: WindoorSecureArmoryLocked + entities: + - uid: 82 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 88 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 157 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 158 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 78 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 79 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 80 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 81 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 83 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 162 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 163 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/Shuttles/DeltaV/DV-pirateradio.yml b/Resources/Maps/Shuttles/DeltaV/DV-pirateradio.yml new file mode 100644 index 0000000000..af0d16df1e --- /dev/null +++ b/Resources/Maps/Shuttles/DeltaV/DV-pirateradio.yml @@ -0,0 +1,6472 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand + 9: FloorAsteroidSandRed + 10: FloorAsteroidSandUnvariantized + 65: FloorMetalDiamond + 77: FloorRGlass + 85: FloorShuttleRed + 86: FloorShuttleWhite + 92: FloorSteelCheckerDark + 119: FloorWood + 121: Lattice +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: Syndicate Listening Post + type: MetaData + - rot: -1.0337585079667582 rad + pos: -0.5440744,-0.033024088 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: QQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAATQAAAAAATQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAVQAAAAAAQQAAAAAAQQAAAAAATQAAAAAATQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAVQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAVQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABwAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAAQQAAAAAABwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABwAAAAAAeQAAAAAABwAAAAAACgAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAAACgAAAAAACgAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACgAAAAAACQAAAAAACQAAAAAABwAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACgAAAAAACQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACgAAAAAAeQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: BwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAeQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAVQAAAAAAQQAAAAAAVQAAAAAAQQAAAAAAVQAAAAAAQQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACQAAAAAACQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAACQAAAAAAQQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAQQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAACQAAAAAAQQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAQQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABwAAAAAAQQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAQQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAACQAAAAAACQAAAAAABwAAAAAAQQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAAeQAAAAAABwAAAAAAQQAAAAAAQQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACgAAAAAABwAAAAAABwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAACgAAAAAABwAAAAAABwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAeQAAAAAABwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAACgAAAAAABwAAAAAABwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAACQAAAAAACQAAAAAACgAAAAAACgAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAAQQAAAAAAVQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAACQAAAAAACgAAAAAABwAAAAAABwAAAAAAQQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAACQAAAAAACgAAAAAABwAAAAAABwAAAAAAQQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAeQAAAAAABwAAAAAAQQAAAAAAVgAAAAAAVgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAACgAAAAAABwAAAAAABwAAAAAAQQAAAAAAVgAAAAAAVgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAAQQAAAAAAVQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAABwAAAAAAQQAAAAAAQQAAAAAAVQAAAAAAVQAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACgAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: BwAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACgAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAABwAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAACQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Caution + decals: + 0: 3.018731,5.165427 + - node: + color: '#FF0000FF' + id: space + decals: + 1: 3.018731,4.884177 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,-1: + 0: 65535 + -1,0: + 0: 65535 + -1,-1: + 0: 65535 + 0,1: + 0: 65535 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 2,0: + 0: 65535 + 0,-2: + 0: 65535 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-1: + 0: 65535 + -1,1: + 0: 65535 + -1,-2: + 0: 65535 + 3,0: + 0: 65535 + 3,-1: + 0: 65535 + 0,2: + 0: 53247 + 1,2: + 0: 32767 + 2,1: + 0: 65535 + 3,1: + 0: 65535 + 0,-3: + 0: 65535 + 1,-3: + 0: 65535 + 2,-2: + 0: 65535 + 3,-2: + 0: 65535 + -2,0: + 0: 65279 + -2,1: + 0: 53230 + -1,2: + 0: 11519 + -2,-2: + 0: 65278 + -2,-1: + 0: 61182 + -2,-3: + 0: 60596 + -1,-3: + 0: 65535 + 4,-1: + 0: 65527 + 4,0: + 0: 65535 + 4,1: + 0: 2559 + 0,-4: + 0: 64769 + 2,-3: + 0: 65527 + 4,-2: + 0: 30587 + 0,3: + 0: 11 + 1,3: + 0: 2185 + 2,2: + 0: 2127 + 3,2: + 0: 1 + 1,-4: + 0: 62482 + 2,-4: + 0: 4640 + 3,-4: + 0: 8448 + 3,-3: + 0: 63250 + -3,1: + 0: 2092 + -3,0: + 0: 32900 + -2,2: + 0: 104 + -1,3: + 0: 130 + -3,-2: + 0: 2112 + -3,-1: + 0: 1152 + -2,-4: + 0: 16896 + -1,-4: + 0: 57744 + 4,-3: + 0: 4644 + 5,-2: + 0: 8193 + 5,-1: + 0: 274 + 4,2: + 0: 1 + 5,0: + 0: 21249 + 5,1: + 0: 29459 + 5,2: + 0: 167 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - type: Shuttle +- proto: AirAlarm + entities: + - uid: 2 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + type: Transform + - devices: + - 699 + - 692 + - 693 + - 694 + - 696 + - 695 + - 697 + - 701 + - 700 + - 698 + - 707 + - 708 + - 709 + - 710 + - 703 + - 706 + - 705 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice +- proto: AirCanister + entities: + - uid: 3 + components: + - anchored: True + pos: 1.5,5.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - joinedGrid: 1 + type: AtmosDevice +- proto: AirlockExternalShuttleSyndicateLocked + entities: + - uid: 4 + components: + - desc: The ominous red light fills you with dread + name: suspicious airlock + type: MetaData + - pos: 3.5,6.5 + parent: 1 + type: Transform + - links: + - 793 + type: DeviceLinkSink + missingComponents: + - Docking +- proto: AirlockSyndicate + entities: + - uid: 5 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform +- proto: AirlockSyndicateGlass + entities: + - uid: 6 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - secondsUntilStateChange: -1311.7554 + state: Opening + type: Door + - uid: 8 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 10 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 11 + components: + - pos: 9.5,-3.5 + parent: 1 + type: Transform + - uid: 794 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + type: Transform +- proto: AirlockSyndicateGlassLocked + entities: + - uid: 12 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 13 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 1 + type: Transform +- proto: AirlockSyndicateLocked + entities: + - uid: 9 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 14 + components: + - rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 15 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform +- proto: AlwaysPoweredLightColoredFrostyBlue + entities: + - uid: 16 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform +- proto: AlwaysPoweredLightColoredRed + entities: + - uid: 17 + components: + - rot: 3.141592653589793 rad + pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 18 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 19 + components: + - pos: 11.5,-2.5 + parent: 1 + type: Transform + - uid: 20 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 21 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 22 + components: + - pos: 12.5,2.5 + parent: 1 + type: Transform +- proto: AlwaysPoweredSmallLightMaintenanceRed + entities: + - uid: 864 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-7.5 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 23 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 24 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 25 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + type: Transform + - hasAccess: True + lastExternalState: Good + lastChargeState: Full + type: Apc +- proto: AsteroidAltRock + entities: + - uid: 26 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,4.5 + parent: 1 + type: Transform + - uid: 27 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 28 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + type: Transform + - uid: 29 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 30 + components: + - pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 31 + components: + - pos: 5.5,8.5 + parent: 1 + type: Transform + - uid: 32 + components: + - pos: 6.5,8.5 + parent: 1 + type: Transform + - uid: 33 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 34 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 35 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 36 + components: + - pos: 13.5,4.5 + parent: 1 + type: Transform + - uid: 37 + components: + - pos: 14.5,3.5 + parent: 1 + type: Transform + - uid: 38 + components: + - pos: 15.5,4.5 + parent: 1 + type: Transform + - uid: 39 + components: + - pos: 14.5,4.5 + parent: 1 + type: Transform + - uid: 40 + components: + - pos: 13.5,5.5 + parent: 1 + type: Transform + - uid: 41 + components: + - pos: 12.5,4.5 + parent: 1 + type: Transform + - uid: 42 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 43 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 44 + components: + - pos: 7.5,7.5 + parent: 1 + type: Transform + - uid: 45 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 46 + components: + - pos: 8.5,5.5 + parent: 1 + type: Transform + - uid: 47 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform + - uid: 48 + components: + - pos: 11.5,4.5 + parent: 1 + type: Transform + - uid: 49 + components: + - pos: 11.5,5.5 + parent: 1 + type: Transform + - uid: 50 + components: + - pos: 9.5,5.5 + parent: 1 + type: Transform + - uid: 51 + components: + - pos: 14.5,5.5 + parent: 1 + type: Transform + - uid: 52 + components: + - pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 53 + components: + - pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 54 + components: + - pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 55 + components: + - pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 56 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 57 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 58 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 59 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 60 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 61 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 62 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 63 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 64 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 65 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 66 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 67 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 68 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 69 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 70 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 71 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 72 + components: + - pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 73 + components: + - pos: 3.5,9.5 + parent: 1 + type: Transform + - uid: 74 + components: + - pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 75 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 76 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 77 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 78 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 79 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 80 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 81 + components: + - pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 82 + components: + - pos: -4.5,-1.5 + parent: 1 + type: Transform + - uid: 83 + components: + - pos: -4.5,-2.5 + parent: 1 + type: Transform + - uid: 84 + components: + - pos: -4.5,-4.5 + parent: 1 + type: Transform + - uid: 85 + components: + - pos: -4.5,-5.5 + parent: 1 + type: Transform + - uid: 86 + components: + - pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 87 + components: + - pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 88 + components: + - pos: -3.5,-9.5 + parent: 1 + type: Transform + - uid: 89 + components: + - pos: -2.5,-9.5 + parent: 1 + type: Transform + - uid: 90 + components: + - pos: -1.5,-9.5 + parent: 1 + type: Transform + - uid: 91 + components: + - pos: -0.5,-9.5 + parent: 1 + type: Transform + - uid: 92 + components: + - pos: 1.5,-9.5 + parent: 1 + type: Transform + - uid: 93 + components: + - pos: 2.5,-9.5 + parent: 1 + type: Transform + - uid: 94 + components: + - pos: 16.5,1.5 + parent: 1 + type: Transform + - uid: 95 + components: + - pos: 16.5,0.5 + parent: 1 + type: Transform + - uid: 96 + components: + - pos: 0.5,-9.5 + parent: 1 + type: Transform + - uid: 97 + components: + - pos: 3.5,-9.5 + parent: 1 + type: Transform + - uid: 98 + components: + - pos: 4.5,-9.5 + parent: 1 + type: Transform + - uid: 99 + components: + - pos: 5.5,-9.5 + parent: 1 + type: Transform + - uid: 100 + components: + - pos: 6.5,-9.5 + parent: 1 + type: Transform + - uid: 101 + components: + - pos: 8.5,-8.5 + parent: 1 + type: Transform + - uid: 102 + components: + - pos: 9.5,-7.5 + parent: 1 + type: Transform + - uid: 104 + components: + - pos: 12.5,-7.5 + parent: 1 + type: Transform + - uid: 105 + components: + - pos: 14.5,-6.5 + parent: 1 + type: Transform + - uid: 106 + components: + - pos: 15.5,-6.5 + parent: 1 + type: Transform + - uid: 107 + components: + - pos: 15.5,-5.5 + parent: 1 + type: Transform + - uid: 108 + components: + - pos: 15.5,-4.5 + parent: 1 + type: Transform + - uid: 109 + components: + - pos: 15.5,-3.5 + parent: 1 + type: Transform + - uid: 110 + components: + - pos: 15.5,-2.5 + parent: 1 + type: Transform + - uid: 111 + components: + - pos: 15.5,-1.5 + parent: 1 + type: Transform + - uid: 112 + components: + - pos: 16.5,-2.5 + parent: 1 + type: Transform + - uid: 113 + components: + - pos: 16.5,-3.5 + parent: 1 + type: Transform + - uid: 114 + components: + - pos: 16.5,-4.5 + parent: 1 + type: Transform + - uid: 115 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 1 + type: Transform + - uid: 116 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 1 + type: Transform + - uid: 117 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 1 + type: Transform + - uid: 118 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 1 + type: Transform + - uid: 119 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 1 + type: Transform + - uid: 120 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 1 + type: Transform + - uid: 121 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 1 + type: Transform + - uid: 122 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 1 + type: Transform + - uid: 123 + components: + - rot: 3.141592653589793 rad + pos: 17.5,3.5 + parent: 1 + type: Transform + - uid: 124 + components: + - rot: 3.141592653589793 rad + pos: 16.5,4.5 + parent: 1 + type: Transform + - uid: 125 + components: + - pos: 9.5,-13.5 + parent: 1 + type: Transform + - uid: 126 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-0.5 + parent: 1 + type: Transform + - uid: 127 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-1.5 + parent: 1 + type: Transform + - uid: 128 + components: + - rot: 3.141592653589793 rad + pos: 17.5,1.5 + parent: 1 + type: Transform + - uid: 129 + components: + - rot: 3.141592653589793 rad + pos: 18.5,3.5 + parent: 1 + type: Transform + - uid: 130 + components: + - rot: 3.141592653589793 rad + pos: 19.5,2.5 + parent: 1 + type: Transform + - uid: 131 + components: + - rot: 3.141592653589793 rad + pos: 17.5,4.5 + parent: 1 + type: Transform + - uid: 132 + components: + - rot: 3.141592653589793 rad + pos: 18.5,4.5 + parent: 1 + type: Transform + - uid: 133 + components: + - rot: 3.141592653589793 rad + pos: 19.5,3.5 + parent: 1 + type: Transform + - uid: 134 + components: + - rot: 3.141592653589793 rad + pos: 19.5,4.5 + parent: 1 + type: Transform + - uid: 135 + components: + - rot: 3.141592653589793 rad + pos: 17.5,5.5 + parent: 1 + type: Transform + - uid: 136 + components: + - rot: 3.141592653589793 rad + pos: 15.5,5.5 + parent: 1 + type: Transform + - uid: 137 + components: + - rot: 3.141592653589793 rad + pos: 16.5,5.5 + parent: 1 + type: Transform + - uid: 138 + components: + - rot: 3.141592653589793 rad + pos: 14.5,6.5 + parent: 1 + type: Transform + - uid: 139 + components: + - rot: 3.141592653589793 rad + pos: 13.5,6.5 + parent: 1 + type: Transform + - uid: 140 + components: + - rot: 3.141592653589793 rad + pos: 12.5,6.5 + parent: 1 + type: Transform + - uid: 141 + components: + - rot: 3.141592653589793 rad + pos: 12.5,5.5 + parent: 1 + type: Transform + - uid: 142 + components: + - rot: 3.141592653589793 rad + pos: 10.5,6.5 + parent: 1 + type: Transform + - uid: 143 + components: + - rot: 3.141592653589793 rad + pos: 10.5,5.5 + parent: 1 + type: Transform + - uid: 144 + components: + - rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 1 + type: Transform + - uid: 145 + components: + - rot: 3.141592653589793 rad + pos: 11.5,6.5 + parent: 1 + type: Transform + - uid: 146 + components: + - rot: 3.141592653589793 rad + pos: 8.5,8.5 + parent: 1 + type: Transform + - uid: 147 + components: + - rot: 3.141592653589793 rad + pos: 7.5,8.5 + parent: 1 + type: Transform + - uid: 148 + components: + - rot: 3.141592653589793 rad + pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 149 + components: + - rot: 3.141592653589793 rad + pos: 9.5,8.5 + parent: 1 + type: Transform + - uid: 150 + components: + - rot: 3.141592653589793 rad + pos: 11.5,8.5 + parent: 1 + type: Transform + - uid: 151 + components: + - rot: 3.141592653589793 rad + pos: 12.5,8.5 + parent: 1 + type: Transform + - uid: 152 + components: + - rot: 3.141592653589793 rad + pos: 12.5,7.5 + parent: 1 + type: Transform + - uid: 153 + components: + - rot: 3.141592653589793 rad + pos: 14.5,7.5 + parent: 1 + type: Transform + - uid: 154 + components: + - rot: 3.141592653589793 rad + pos: 17.5,0.5 + parent: 1 + type: Transform + - uid: 155 + components: + - rot: 3.141592653589793 rad + pos: 19.5,1.5 + parent: 1 + type: Transform + - uid: 156 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-0.5 + parent: 1 + type: Transform + - uid: 157 + components: + - rot: 3.141592653589793 rad + pos: 20.5,0.5 + parent: 1 + type: Transform + - uid: 158 + components: + - rot: 3.141592653589793 rad + pos: 20.5,3.5 + parent: 1 + type: Transform + - uid: 159 + components: + - rot: 3.141592653589793 rad + pos: 19.5,5.5 + parent: 1 + type: Transform + - uid: 160 + components: + - rot: 3.141592653589793 rad + pos: 20.5,6.5 + parent: 1 + type: Transform + - uid: 161 + components: + - rot: 3.141592653589793 rad + pos: 20.5,7.5 + parent: 1 + type: Transform + - uid: 162 + components: + - rot: 3.141592653589793 rad + pos: 21.5,6.5 + parent: 1 + type: Transform + - uid: 163 + components: + - rot: 3.141592653589793 rad + pos: 20.5,5.5 + parent: 1 + type: Transform + - uid: 164 + components: + - rot: 3.141592653589793 rad + pos: 21.5,7.5 + parent: 1 + type: Transform + - uid: 165 + components: + - rot: 3.141592653589793 rad + pos: 21.5,8.5 + parent: 1 + type: Transform + - uid: 166 + components: + - rot: 3.141592653589793 rad + pos: 23.5,9.5 + parent: 1 + type: Transform + - uid: 167 + components: + - rot: 3.141592653589793 rad + pos: 22.5,8.5 + parent: 1 + type: Transform + - uid: 168 + components: + - rot: 3.141592653589793 rad + pos: 20.5,2.5 + parent: 1 + type: Transform + - uid: 169 + components: + - rot: 3.141592653589793 rad + pos: 20.5,4.5 + parent: 1 + type: Transform + - uid: 170 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-1.5 + parent: 1 + type: Transform + - uid: 171 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-1.5 + parent: 1 + type: Transform + - uid: 172 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-2.5 + parent: 1 + type: Transform + - uid: 173 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-2.5 + parent: 1 + type: Transform + - uid: 174 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-2.5 + parent: 1 + type: Transform + - uid: 175 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-3.5 + parent: 1 + type: Transform + - uid: 176 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-4.5 + parent: 1 + type: Transform + - uid: 177 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-7.5 + parent: 1 + type: Transform + - uid: 178 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-7.5 + parent: 1 + type: Transform + - uid: 179 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-8.5 + parent: 1 + type: Transform + - uid: 180 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-10.5 + parent: 1 + type: Transform + - uid: 181 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 1 + type: Transform + - uid: 182 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-8.5 + parent: 1 + type: Transform + - uid: 183 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-10.5 + parent: 1 + type: Transform + - uid: 184 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-10.5 + parent: 1 + type: Transform + - uid: 185 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-10.5 + parent: 1 + type: Transform + - uid: 186 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-10.5 + parent: 1 + type: Transform + - uid: 187 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-9.5 + parent: 1 + type: Transform + - uid: 188 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-8.5 + parent: 1 + type: Transform + - uid: 189 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-7.5 + parent: 1 + type: Transform + - uid: 190 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-8.5 + parent: 1 + type: Transform + - uid: 191 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-5.5 + parent: 1 + type: Transform + - uid: 192 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-6.5 + parent: 1 + type: Transform + - uid: 193 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-7.5 + parent: 1 + type: Transform + - uid: 194 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-7.5 + parent: 1 + type: Transform + - uid: 195 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-6.5 + parent: 1 + type: Transform + - uid: 196 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-5.5 + parent: 1 + type: Transform + - uid: 197 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-11.5 + parent: 1 + type: Transform + - uid: 198 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-11.5 + parent: 1 + type: Transform + - uid: 199 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-11.5 + parent: 1 + type: Transform + - uid: 200 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-11.5 + parent: 1 + type: Transform + - uid: 201 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-12.5 + parent: 1 + type: Transform + - uid: 202 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-13.5 + parent: 1 + type: Transform + - uid: 203 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-8.5 + parent: 1 + type: Transform + - uid: 204 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-9.5 + parent: 1 + type: Transform + - uid: 205 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-10.5 + parent: 1 + type: Transform + - uid: 206 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-11.5 + parent: 1 + type: Transform + - uid: 207 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-7.5 + parent: 1 + type: Transform + - uid: 208 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-7.5 + parent: 1 + type: Transform + - uid: 209 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-6.5 + parent: 1 + type: Transform + - uid: 210 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-3.5 + parent: 1 + type: Transform + - uid: 211 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-4.5 + parent: 1 + type: Transform + - uid: 212 + components: + - rot: 3.141592653589793 rad + pos: 21.5,2.5 + parent: 1 + type: Transform + - uid: 213 + components: + - rot: 3.141592653589793 rad + pos: 21.5,4.5 + parent: 1 + type: Transform + - uid: 214 + components: + - rot: 3.141592653589793 rad + pos: 22.5,3.5 + parent: 1 + type: Transform + - uid: 215 + components: + - rot: 3.141592653589793 rad + pos: 16.5,8.5 + parent: 1 + type: Transform + - uid: 216 + components: + - rot: 3.141592653589793 rad + pos: 15.5,7.5 + parent: 1 + type: Transform + - uid: 217 + components: + - rot: 3.141592653589793 rad + pos: 11.5,10.5 + parent: 1 + type: Transform + - uid: 218 + components: + - rot: 3.141592653589793 rad + pos: 3.5,10.5 + parent: 1 + type: Transform + - uid: 219 + components: + - rot: 3.141592653589793 rad + pos: 3.5,11.5 + parent: 1 + type: Transform + - uid: 220 + components: + - rot: 3.141592653589793 rad + pos: 4.5,11.5 + parent: 1 + type: Transform + - uid: 221 + components: + - rot: 3.141592653589793 rad + pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 222 + components: + - rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 1 + type: Transform + - uid: 223 + components: + - rot: 3.141592653589793 rad + pos: 6.5,10.5 + parent: 1 + type: Transform + - uid: 224 + components: + - rot: 3.141592653589793 rad + pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 225 + components: + - rot: 3.141592653589793 rad + pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 226 + components: + - rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 227 + components: + - rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 228 + components: + - rot: 3.141592653589793 rad + pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 229 + components: + - rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 230 + components: + - rot: 3.141592653589793 rad + pos: -2.5,8.5 + parent: 1 + type: Transform + - uid: 231 + components: + - rot: 3.141592653589793 rad + pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 232 + components: + - rot: 3.141592653589793 rad + pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 233 + components: + - rot: 3.141592653589793 rad + pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 234 + components: + - rot: 3.141592653589793 rad + pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 235 + components: + - rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 236 + components: + - rot: 3.141592653589793 rad + pos: -5.5,5.5 + parent: 1 + type: Transform + - uid: 237 + components: + - rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 238 + components: + - rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 1 + type: Transform + - uid: 239 + components: + - rot: 3.141592653589793 rad + pos: -2.5,11.5 + parent: 1 + type: Transform + - uid: 240 + components: + - rot: 3.141592653589793 rad + pos: -2.5,12.5 + parent: 1 + type: Transform + - uid: 241 + components: + - rot: 3.141592653589793 rad + pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 242 + components: + - rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 1 + type: Transform + - uid: 243 + components: + - rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 1 + type: Transform + - uid: 244 + components: + - rot: 3.141592653589793 rad + pos: 3.5,12.5 + parent: 1 + type: Transform + - uid: 245 + components: + - rot: 3.141592653589793 rad + pos: 7.5,12.5 + parent: 1 + type: Transform + - uid: 246 + components: + - rot: 3.141592653589793 rad + pos: 7.5,13.5 + parent: 1 + type: Transform + - uid: 247 + components: + - rot: 3.141592653589793 rad + pos: 7.5,14.5 + parent: 1 + type: Transform + - uid: 248 + components: + - rot: 3.141592653589793 rad + pos: 6.5,11.5 + parent: 1 + type: Transform + - uid: 249 + components: + - rot: 3.141592653589793 rad + pos: -4.5,8.5 + parent: 1 + type: Transform + - uid: 250 + components: + - rot: 3.141592653589793 rad + pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 251 + components: + - rot: 3.141592653589793 rad + pos: -6.5,9.5 + parent: 1 + type: Transform + - uid: 252 + components: + - rot: 3.141592653589793 rad + pos: -0.5,10.5 + parent: 1 + type: Transform + - uid: 253 + components: + - rot: 3.141592653589793 rad + pos: -6.5,6.5 + parent: 1 + type: Transform + - uid: 254 + components: + - rot: 3.141592653589793 rad + pos: -7.5,6.5 + parent: 1 + type: Transform + - uid: 255 + components: + - rot: 3.141592653589793 rad + pos: -8.5,6.5 + parent: 1 + type: Transform + - uid: 256 + components: + - rot: 3.141592653589793 rad + pos: -10.5,5.5 + parent: 1 + type: Transform + - uid: 257 + components: + - rot: 3.141592653589793 rad + pos: -9.5,4.5 + parent: 1 + type: Transform + - uid: 258 + components: + - rot: 3.141592653589793 rad + pos: -8.5,4.5 + parent: 1 + type: Transform + - uid: 259 + components: + - rot: 3.141592653589793 rad + pos: -8.5,3.5 + parent: 1 + type: Transform + - uid: 260 + components: + - rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 261 + components: + - rot: 3.141592653589793 rad + pos: -6.5,3.5 + parent: 1 + type: Transform + - uid: 262 + components: + - rot: 3.141592653589793 rad + pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 263 + components: + - rot: 3.141592653589793 rad + pos: -6.5,5.5 + parent: 1 + type: Transform + - uid: 264 + components: + - rot: 3.141592653589793 rad + pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 265 + components: + - rot: 3.141592653589793 rad + pos: -6.5,2.5 + parent: 1 + type: Transform + - uid: 266 + components: + - rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 267 + components: + - rot: 3.141592653589793 rad + pos: -7.5,1.5 + parent: 1 + type: Transform + - uid: 268 + components: + - rot: 3.141592653589793 rad + pos: -7.5,0.5 + parent: 1 + type: Transform + - uid: 269 + components: + - rot: 3.141592653589793 rad + pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 270 + components: + - rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 1 + type: Transform + - uid: 271 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 272 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 273 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 1 + type: Transform + - uid: 274 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 275 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 276 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 1 + type: Transform + - uid: 277 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 278 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 279 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 280 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-3.5 + parent: 1 + type: Transform + - uid: 281 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 282 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-6.5 + parent: 1 + type: Transform + - uid: 283 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-7.5 + parent: 1 + type: Transform + - uid: 284 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 285 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-8.5 + parent: 1 + type: Transform + - uid: 286 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-9.5 + parent: 1 + type: Transform + - uid: 287 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-10.5 + parent: 1 + type: Transform + - uid: 288 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-10.5 + parent: 1 + type: Transform + - uid: 289 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-11.5 + parent: 1 + type: Transform + - uid: 290 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-10.5 + parent: 1 + type: Transform + - uid: 291 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 292 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-11.5 + parent: 1 + type: Transform + - uid: 293 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-11.5 + parent: 1 + type: Transform + - uid: 294 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 295 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 1 + type: Transform + - uid: 296 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-11.5 + parent: 1 + type: Transform + - uid: 297 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-11.5 + parent: 1 + type: Transform + - uid: 298 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-11.5 + parent: 1 + type: Transform + - uid: 299 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-11.5 + parent: 1 + type: Transform + - uid: 300 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-11.5 + parent: 1 + type: Transform + - uid: 301 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-10.5 + parent: 1 + type: Transform + - uid: 302 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-11.5 + parent: 1 + type: Transform + - uid: 303 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-11.5 + parent: 1 + type: Transform + - uid: 304 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-12.5 + parent: 1 + type: Transform + - uid: 305 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-12.5 + parent: 1 + type: Transform + - uid: 306 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-12.5 + parent: 1 + type: Transform + - uid: 307 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-12.5 + parent: 1 + type: Transform + - uid: 308 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-13.5 + parent: 1 + type: Transform + - uid: 309 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 310 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-12.5 + parent: 1 + type: Transform + - uid: 311 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-12.5 + parent: 1 + type: Transform + - uid: 312 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-6.5 + parent: 1 + type: Transform + - uid: 313 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-7.5 + parent: 1 + type: Transform + - uid: 314 + components: + - pos: 9.5,-14.5 + parent: 1 + type: Transform + - uid: 315 + components: + - pos: 4.5,-14.5 + parent: 1 + type: Transform + - uid: 316 + components: + - pos: 5.5,-15.5 + parent: 1 + type: Transform + - uid: 317 + components: + - pos: -0.5,-14.5 + parent: 1 + type: Transform + - uid: 318 + components: + - pos: 0.5,-13.5 + parent: 1 + type: Transform + - uid: 319 + components: + - pos: 0.5,-12.5 + parent: 1 + type: Transform + - uid: 320 + components: + - pos: 0.5,-15.5 + parent: 1 + type: Transform + - uid: 321 + components: + - pos: -3.5,-13.5 + parent: 1 + type: Transform + - uid: 322 + components: + - pos: -3.5,-14.5 + parent: 1 + type: Transform + - uid: 323 + components: + - pos: -5.5,-11.5 + parent: 1 + type: Transform + - uid: 324 + components: + - pos: -5.5,-12.5 + parent: 1 + type: Transform + - uid: 325 + components: + - pos: -6.5,-13.5 + parent: 1 + type: Transform + - uid: 326 + components: + - pos: -6.5,-10.5 + parent: 1 + type: Transform + - uid: 327 + components: + - pos: -7.5,-10.5 + parent: 1 + type: Transform + - uid: 328 + components: + - pos: -7.5,-6.5 + parent: 1 + type: Transform + - uid: 329 + components: + - pos: -8.5,-5.5 + parent: 1 + type: Transform + - uid: 330 + components: + - pos: -9.5,-6.5 + parent: 1 + type: Transform + - uid: 331 + components: + - pos: -8.5,-2.5 + parent: 1 + type: Transform + - uid: 332 + components: + - pos: -9.5,-1.5 + parent: 1 + type: Transform + - uid: 333 + components: + - pos: -9.5,0.5 + parent: 1 + type: Transform + - uid: 334 + components: + - pos: -8.5,1.5 + parent: 1 + type: Transform + - uid: 761 + components: + - pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 762 + components: + - pos: 1.5,-8.5 + parent: 1 + type: Transform + - uid: 763 + components: + - pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 805 + components: + - pos: 3.5,-8.5 + parent: 1 + type: Transform + - uid: 921 + components: + - pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 922 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 335 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform +- proto: Bed + entities: + - uid: 336 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 337 + components: + - pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 338 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 339 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform +- proto: BedsheetSyndie + entities: + - uid: 340 + components: + - rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 341 + components: + - pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 342 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 343 + components: + - rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + type: Transform +- proto: BlastDoorOpen + entities: + - uid: 344 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 1 + type: Transform + - links: + - 795 + type: DeviceLinkSink + - uid: 345 + components: + - pos: 13.5,0.5 + parent: 1 + type: Transform + - invokeCounter: 4 + links: + - 792 + type: DeviceLinkSink + - uid: 346 + components: + - pos: 13.5,1.5 + parent: 1 + type: Transform + - invokeCounter: 4 + links: + - 792 + type: DeviceLinkSink + - uid: 347 + components: + - pos: 13.5,-0.5 + parent: 1 + type: Transform + - invokeCounter: 4 + links: + - 792 + type: DeviceLinkSink + - uid: 348 + components: + - pos: 13.5,2.5 + parent: 1 + type: Transform + - invokeCounter: 4 + links: + - 792 + type: DeviceLinkSink + - uid: 349 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-6.5 + parent: 1 + type: Transform + - links: + - 795 + type: DeviceLinkSink + - uid: 350 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-6.5 + parent: 1 + type: Transform + - links: + - 795 + type: DeviceLinkSink + - uid: 351 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-5.5 + parent: 1 + type: Transform + - links: + - 795 + type: DeviceLinkSink + - uid: 352 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 1 + type: Transform + - links: + - 795 + type: DeviceLinkSink + - uid: 353 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-5.5 + parent: 1 + type: Transform + - links: + - 795 + type: DeviceLinkSink + - uid: 354 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-5.5 + parent: 1 + type: Transform + - links: + - 795 + type: DeviceLinkSink + - uid: 947 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - links: + - 792 + type: DeviceLinkSink +- proto: BoozeDispenser + entities: + - uid: 355 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + type: Transform + - type: Emagged +- proto: BoxHandcuff + entities: + - uid: 357 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: BoxLethalshot + entities: + - uid: 358 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 359 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: BoxShotgunFlare + entities: + - uid: 360 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: BriefcaseBrownFilled + entities: + - uid: 374 + components: + - rot: 6.283185307179586 rad + pos: 4.443831,0.7256815 + parent: 1 + type: Transform + - storageUsed: 44 + type: Storage + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 399 + - 400 + - 401 + - 402 + - 403 + - 404 + - 405 + - 406 + - 407 + - 408 + - 409 + - 410 + - 411 + - 412 + - 413 + - 414 + - 415 + - 416 + - 417 + - 418 + - 375 + - 376 + - 377 + - 378 + - 379 + - 380 + - 381 + - 382 + - 383 + - 384 + - 385 + - 386 + - 387 + - 388 + - 389 + - 390 + - 391 + - 392 + - 393 + - 394 + - 395 + - 396 + - 397 + - 398 + type: ContainerContainer +- proto: BriefcaseSyndie + entities: + - uid: 419 + components: + - rot: 6.283185307179586 rad + pos: 4.454247,1.5198011 + parent: 1 + type: Transform + - storageUsed: 39 + type: Storage + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 431 + - 420 + - 425 + - 424 + - 421 + - 426 + - 432 + - 430 + - 427 + - 422 + - 429 + - 423 + - 428 + type: ContainerContainer +- proto: CableApcExtension + entities: + - uid: 433 + components: + - pos: 7.5,0.5 + parent: 1 + type: Transform + - uid: 434 + components: + - pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 435 + components: + - pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 436 + components: + - pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 437 + components: + - pos: 9.5,-0.5 + parent: 1 + type: Transform + - uid: 438 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 439 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 440 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 441 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 442 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 443 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 444 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 445 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 446 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 447 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 448 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 449 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 450 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 451 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 452 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 453 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 454 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 455 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 456 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 457 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 458 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 459 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 460 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 461 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 462 + components: + - pos: 1.5,-6.5 + parent: 1 + type: Transform + - uid: 463 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 464 + components: + - pos: -0.5,-6.5 + parent: 1 + type: Transform + - uid: 465 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 466 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 467 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 468 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 469 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 470 + components: + - pos: 10.5,-0.5 + parent: 1 + type: Transform + - uid: 471 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - uid: 472 + components: + - pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 473 + components: + - pos: 10.5,-3.5 + parent: 1 + type: Transform + - uid: 474 + components: + - pos: 11.5,-3.5 + parent: 1 + type: Transform + - uid: 475 + components: + - pos: 12.5,-3.5 + parent: 1 + type: Transform + - uid: 476 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 477 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 478 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 479 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 480 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 481 + components: + - pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 482 + components: + - pos: 7.5,-4.5 + parent: 1 + type: Transform + - uid: 483 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 484 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 485 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 486 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 487 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 488 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 489 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 490 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 491 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 492 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 493 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 494 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 495 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 496 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 497 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 498 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 499 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 500 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 501 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 502 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 503 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 504 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 505 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 506 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 507 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 508 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 509 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 510 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 511 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 512 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 513 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 514 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 515 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 516 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 517 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 518 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 519 + components: + - pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 520 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 521 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 522 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 523 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 524 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 525 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 526 + components: + - pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 527 + components: + - pos: 7.5,0.5 + parent: 1 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 528 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 529 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,1.5 + parent: 1 + type: Transform + - uid: 530 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 531 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + type: Transform +- proto: ClothingBackpackDuffelSyndicatePyjamaBundle + entities: + - uid: 948 + components: + - rot: -1.5707963267948966 rad + pos: 6.6718016,2.5031838 + parent: 1 + type: Transform +- proto: ClothingEyesBlindfold + entities: + - uid: 361 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 362 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 363 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 364 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingMaskGasVoiceChameleon + entities: + - uid: 532 + components: + - pos: 8.6825,1.9966505 + parent: 1 + type: Transform +- proto: ClothingMaskMuzzle + entities: + - uid: 365 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 366 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 367 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 368 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: CombatKnife + entities: + - uid: 369 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 370 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ComfyChair + entities: + - uid: 533 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 534 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 535 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 536 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 537 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 1 + type: Transform +- proto: ComputerBroken + entities: + - uid: 538 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 1 + type: Transform +- proto: ComputerCrewMonitoring + entities: + - uid: 539 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,0.5 + parent: 1 + type: Transform +- proto: ComputerIFFSyndicate + entities: + - uid: 540 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform +- proto: ComputerShuttleSyndie + entities: + - uid: 541 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,1.5 + parent: 1 + type: Transform +- proto: CrateFoodDonkpocketSavory + entities: + - uid: 542 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrowbarRed + entities: + - uid: 371 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: DefibrillatorCabinetFilled + entities: + - uid: 543 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform +- proto: DiagnosisReportPaper + entities: + - uid: 545 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 546 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 547 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 548 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 549 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics +- proto: DisposalPipe + entities: + - uid: 951 + components: + - pos: 10.5,-3.5 + parent: 1 + type: Transform + - uid: 952 + components: + - pos: 10.5,-4.5 + parent: 1 + type: Transform + - uid: 953 + components: + - pos: 10.5,-5.5 + parent: 1 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 949 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-6.5 + parent: 1 + type: Transform + - uid: 950 + components: + - pos: 10.5,-2.5 + parent: 1 + type: Transform +- proto: DisposalUnit + entities: + - uid: 103 + components: + - pos: 10.5,-2.5 + parent: 1 + type: Transform +- proto: DrinkMugDog + entities: + - uid: 590 + components: + - rot: 6.283185307179586 rad + pos: 1.6752021,1.4137775 + parent: 1 + type: Transform +- proto: DrinkMugHeart + entities: + - uid: 591 + components: + - pos: 1.2883832,1.4021075 + parent: 1 + type: Transform +- proto: DrinkMugOne + entities: + - uid: 592 + components: + - pos: 1.6477582,1.7614824 + parent: 1 + type: Transform +- proto: DrinkMugRainbow + entities: + - uid: 593 + components: + - pos: 1.3040082,1.7302322 + parent: 1 + type: Transform +- proto: EncryptionKeyCargo + entities: + - uid: 595 + components: + - flags: InContainer + type: MetaData + - parent: 594 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyCommand + entities: + - uid: 596 + components: + - flags: InContainer + type: MetaData + - parent: 594 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyCommon + entities: + - uid: 597 + components: + - flags: InContainer + type: MetaData + - parent: 594 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyEngineering + entities: + - uid: 598 + components: + - flags: InContainer + type: MetaData + - parent: 594 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyMedical + entities: + - uid: 599 + components: + - flags: InContainer + type: MetaData + - parent: 594 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyScience + entities: + - uid: 600 + components: + - flags: InContainer + type: MetaData + - parent: 594 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeySecurity + entities: + - uid: 601 + components: + - flags: InContainer + type: MetaData + - parent: 594 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyService + entities: + - uid: 602 + components: + - flags: InContainer + type: MetaData + - parent: 594 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeySyndie + entities: + - uid: 603 + components: + - flags: InContainer + type: MetaData + - parent: 594 + type: Transform + - canCollide: False + type: Physics +- proto: ExtinguisherCabinet + entities: + - uid: 604 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + type: Transform +- proto: FaxMachineSyndie + entities: + - uid: 605 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform +- proto: filingCabinetDrawer + entities: + - uid: 544 + components: + - pos: 8.5,0.5 + parent: 1 + type: Transform + - storageUsed: 45 + type: Storage + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 570 + - 571 + - 572 + - 573 + - 574 + - 575 + - 576 + - 577 + - 578 + - 579 + - 550 + - 551 + - 552 + - 553 + - 554 + - 555 + - 556 + - 557 + - 558 + - 559 + - 545 + - 546 + - 547 + - 548 + - 549 + - 565 + - 566 + - 567 + - 568 + - 569 + - 580 + - 581 + - 582 + - 583 + - 584 + - 585 + - 586 + - 587 + - 588 + - 589 + - 560 + - 561 + - 562 + - 563 + - 564 + type: ContainerContainer +- proto: FireAlarm + entities: + - uid: 606 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + type: Transform + - devices: + - 613 + - 614 + - 607 + - 608 + - 609 + - 618 + - 616 + - 610 + - 612 + - 843 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice +- proto: Firelock + entities: + - uid: 607 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 608 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 609 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 610 + components: + - rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 611 + components: + - rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 612 + components: + - rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 613 + components: + - rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 614 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 615 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 616 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 618 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 843 + components: + - pos: 9.5,-3.5 + parent: 1 + type: Transform +- proto: ForensicReportPaper + entities: + - uid: 550 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 551 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 552 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 553 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 554 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 555 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 556 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 557 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 558 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 559 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics +- proto: GasPassiveVent + entities: + - uid: 619 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 620 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 621 + components: + - pos: 4.5,10.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 622 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 623 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-6.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 624 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-7.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 625 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 626 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 627 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice +- proto: GasPipeBend + entities: + - uid: 628 + components: + - rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 629 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 630 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 631 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 632 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 633 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 634 + components: + - pos: 10.5,-0.5 + parent: 1 + type: Transform + - uid: 635 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-3.5 + parent: 1 + type: Transform +- proto: GasPipeFourway + entities: + - uid: 636 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform +- proto: GasPipeStraight + entities: + - uid: 637 + components: + - rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 638 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 639 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 640 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 641 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 642 + components: + - pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 643 + components: + - pos: 4.5,-9.5 + parent: 1 + type: Transform + - uid: 644 + components: + - pos: 8.5,-6.5 + parent: 1 + type: Transform + - uid: 645 + components: + - pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 646 + components: + - pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 647 + components: + - pos: 13.5,-4.5 + parent: 1 + type: Transform + - uid: 648 + components: + - pos: 13.5,-5.5 + parent: 1 + type: Transform + - uid: 649 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 1 + type: Transform + - uid: 650 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 1 + type: Transform + - uid: 651 + components: + - rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 652 + components: + - rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 653 + components: + - rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 654 + components: + - rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 655 + components: + - rot: 3.141592653589793 rad + pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 656 + components: + - rot: 3.141592653589793 rad + pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 657 + components: + - rot: 3.141592653589793 rad + pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 658 + components: + - rot: 3.141592653589793 rad + pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 659 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 660 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 661 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 662 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 663 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 664 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 665 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 666 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 667 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 668 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 669 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 670 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 671 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 672 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - uid: 673 + components: + - pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 674 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1 + type: Transform + - uid: 675 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 676 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 677 + components: + - rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 678 + components: + - rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 679 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 680 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 681 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 682 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 683 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform +- proto: GasPipeTJunction + entities: + - uid: 684 + components: + - rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 685 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 686 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 687 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 688 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 689 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 690 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-0.5 + parent: 1 + type: Transform +- proto: GasPort + entities: + - uid: 691 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice +- proto: GasVentPump + entities: + - uid: 692 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 693 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 694 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 695 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 696 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 697 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 698 + components: + - rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 699 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 700 + components: + - pos: 8.5,0.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 701 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 702 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice +- proto: GasVentScrubber + entities: + - uid: 703 + components: + - rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 704 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 705 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 706 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 707 + components: + - pos: 4.5,-6.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 708 + components: + - pos: 8.5,-3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 709 + components: + - pos: 13.5,-3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 710 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 711 + components: + - rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice +- proto: GeneratorWallmountAPU + entities: + - uid: 712 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 713 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 714 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 715 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 716 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 717 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 718 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform +- proto: GravityGeneratorMini + entities: + - uid: 719 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 617 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - uid: 720 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 1 + type: Transform + - uid: 721 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 1 + type: Transform + - uid: 722 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,0.5 + parent: 1 + type: Transform + - uid: 723 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 1 + type: Transform + - uid: 724 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,1.5 + parent: 1 + type: Transform + - uid: 725 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,2.5 + parent: 1 + type: Transform + - uid: 726 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-6.5 + parent: 1 + type: Transform + - uid: 727 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 1 + type: Transform + - uid: 728 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-6.5 + parent: 1 + type: Transform + - uid: 729 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 730 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-5.5 + parent: 1 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 731 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 732 + components: + - pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 733 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 734 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform +- proto: hydroponicsTray + entities: + - uid: 735 + components: + - pos: 12.5,-4.5 + parent: 1 + type: Transform + - uid: 736 + components: + - pos: 13.5,-4.5 + parent: 1 + type: Transform + - uid: 737 + components: + - pos: 11.5,-4.5 + parent: 1 + type: Transform + - uid: 738 + components: + - pos: 10.5,-4.5 + parent: 1 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 739 + components: + - pos: 1.5,-2.5 + parent: 1 + type: Transform +- proto: LandMineExplosive + entities: + - uid: 740 + components: + - pos: 12.446557,-9.501101 + parent: 1 + type: Transform + - uid: 741 + components: + - pos: 17.449137,2.529461 + parent: 1 + type: Transform +- proto: LockerSyndicatePersonal + entities: + - uid: 356 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8977377 + - 7.139109 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 373 + - 369 + - 358 + - 360 + - 359 + - 372 + - 357 + - 365 + - 364 + - 371 + - 361 + - 362 + - 366 + - 363 + - 367 + - 368 + - 370 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: MedkitCombatFilled + entities: + - uid: 742 + components: + - pos: -0.28039455,-3.70372 + parent: 1 + type: Transform +- proto: MedkitFilled + entities: + - uid: 743 + components: + - pos: -0.57726955,-3.500595 + parent: 1 + type: Transform +- proto: NukeDiskFake + entities: + - uid: 744 + components: + - pos: 16.778532,-0.7526432 + parent: 1 + type: Transform +- proto: Paper + entities: + - uid: 375 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 376 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 377 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 378 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 379 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 380 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 381 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 382 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 383 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 384 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 385 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 386 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 387 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 388 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 389 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 390 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 391 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 392 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 393 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 394 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 395 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 396 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 397 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 398 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics +- proto: PaperArtifactAnalyzer + entities: + - uid: 560 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 561 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 562 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 563 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 564 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics +- proto: PaperBin10 + entities: + - uid: 745 + components: + - pos: 7.5,-5.5 + parent: 1 + type: Transform +- proto: PaperCaptainsThoughts + entities: + - uid: 565 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 566 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 567 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 568 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 569 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics +- proto: PaperCargoBountyManifest + entities: + - uid: 570 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 571 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 572 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 573 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 574 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 575 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 576 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 577 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 578 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 579 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics +- proto: PaperCargoInvoice + entities: + - uid: 580 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 581 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 582 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 583 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 584 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 585 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 586 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 587 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 588 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 589 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics +- proto: PaperOffice + entities: + - uid: 399 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 400 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 401 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 402 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 403 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 404 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 405 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 406 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 407 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 408 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 409 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 410 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 411 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 412 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 413 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 414 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 415 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 416 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 417 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 418 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics +- proto: PlushieNuke + entities: + - uid: 746 + components: + - pos: 6.565984,3.4567177 + parent: 1 + type: Transform + - uid: 747 + components: + - pos: 16.527655,-0.5029521 + parent: 1 + type: Transform +- proto: PlushieRouny + entities: + - uid: 748 + components: + - pos: 6.487859,1.4254675 + parent: 1 + type: Transform +- proto: PosterContrabandDonk + entities: + - uid: 749 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform +- proto: PosterContrabandSyndicateRecruitment + entities: + - uid: 750 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + type: Transform +- proto: PosterLegitHotDonkExplosion + entities: + - uid: 751 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 752 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform +- proto: PoweredLightColoredRed + entities: + - uid: 753 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - type: Timer + - uid: 754 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 755 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + type: Transform + - type: Timer + - uid: 756 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 757 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + type: Transform + - type: Timer + - uid: 758 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 759 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 1 + type: Transform +- proto: Rack + entities: + - uid: 764 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 765 + components: + - rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 766 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform +- proto: RandomArcade + entities: + - uid: 767 + components: + - pos: 7.5,-2.5 + parent: 1 + type: Transform +- proto: RandomPosterContraband + entities: + - uid: 768 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 769 + components: + - rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 770 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 771 + components: + - pos: 11.5,3.5 + parent: 1 + type: Transform + - uid: 772 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 773 + components: + - pos: 14.5,-3.5 + parent: 1 + type: Transform + - uid: 774 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform +- proto: RandomVendingDrinks + entities: + - uid: 775 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - type: Emagged +- proto: RandomVendingSnacks + entities: + - uid: 776 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - type: Emagged +- proto: ReinforcedPlasmaWindow + entities: + - uid: 7 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - uid: 777 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 1 + type: Transform + - uid: 778 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 1 + type: Transform + - uid: 779 + components: + - pos: 13.5,-0.5 + parent: 1 + type: Transform + - uid: 780 + components: + - pos: 13.5,0.5 + parent: 1 + type: Transform + - uid: 781 + components: + - pos: 13.5,2.5 + parent: 1 + type: Transform + - uid: 782 + components: + - pos: 13.5,1.5 + parent: 1 + type: Transform + - uid: 783 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-5.5 + parent: 1 + type: Transform + - uid: 784 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 1 + type: Transform + - uid: 785 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 786 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 1 + type: Transform + - uid: 787 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 1 + type: Transform +- proto: RubberStampCaptain + entities: + - uid: 420 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics +- proto: RubberStampCE + entities: + - uid: 421 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics +- proto: RubberStampChaplain + entities: + - uid: 422 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics +- proto: RubberStampClown + entities: + - uid: 423 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics +- proto: RubberStampCMO + entities: + - uid: 424 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics +- proto: RubberStampHop + entities: + - uid: 425 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics +- proto: RubberStampHos + entities: + - uid: 426 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics +- proto: RubberStampMantis + entities: + - uid: 427 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics +- proto: RubberStampMime + entities: + - uid: 428 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics +- proto: RubberStampQm + entities: + - uid: 429 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics +- proto: RubberStampRd + entities: + - uid: 430 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics +- proto: RubberStampSyndicate + entities: + - uid: 431 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics +- proto: RubberStampWarden + entities: + - uid: 432 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics +- proto: SalvageLorePaperGamingSpawner + entities: + - uid: 788 + components: + - pos: 12.5,-9.5 + parent: 1 + type: Transform +- proto: SheetPlasteel + entities: + - uid: 789 + components: + - pos: -1.4864182,5.563302 + parent: 1 + type: Transform +- proto: SheetRPGlass + entities: + - uid: 790 + components: + - pos: -1.2364185,5.563302 + parent: 1 + type: Transform +- proto: SheetSteel + entities: + - uid: 791 + components: + - pos: -1.6895431,5.500802 + parent: 1 + type: Transform +- proto: SignalButton + entities: + - uid: 792 + components: + - name: bridge blast doors button + type: MetaData + - rot: 3.141592653589793 rad + pos: 11.5,-1.5 + parent: 1 + type: Transform + - linkedPorts: + 348: + - Pressed: Toggle + 346: + - Pressed: Toggle + 345: + - Pressed: Toggle + 347: + - Pressed: Toggle + 947: + - Pressed: Toggle + type: DeviceLinkSource + - type: ItemCooldown + - uid: 793 + components: + - desc: A note taped to it reads, "Be sure to keep it bolted, else those crazy guards might try to drink vacuum" + name: external bolts button + type: MetaData + - pos: 4.5,4.5 + parent: 1 + type: Transform + - linkedPorts: + 4: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 795 + components: + - name: rec room blast shields button + type: MetaData + - rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform + - linkedPorts: + 344: + - Pressed: Toggle + 349: + - Pressed: Toggle + 350: + - Pressed: Toggle + 351: + - Pressed: Toggle + 352: + - Pressed: Toggle + 353: + - Pressed: Toggle + 354: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SinkStemlessWater + entities: + - uid: 796 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + type: Transform +- proto: SoapSyndie + entities: + - uid: 797 + components: + - rot: 6.283185307179586 rad + pos: -1.5109272,-2.2405348 + parent: 1 + type: Transform +- proto: soda_dispenser + entities: + - uid: 798 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + type: Transform + - type: Emagged +- proto: SpawnMobRadioGuard + entities: + - uid: 799 + components: + - pos: 9.5,-0.5 + parent: 1 + type: Transform + - uid: 800 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform +- proto: SpawnPointGhostSyndicateListener + entities: + - uid: 801 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 802 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform +- proto: StationMapBroken + entities: + - uid: 803 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform +- proto: SubstationWallBasic + entities: + - uid: 804 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + type: Transform +- proto: SuitStorageEVASyndicate + entities: + - uid: 760 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform +- proto: SyndicateMonitoringServer + entities: + - uid: 809 + components: + - pos: 11.5,2.5 + parent: 1 + type: Transform +- proto: TableCarpet + entities: + - uid: 810 + components: + - pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 811 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 812 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 1 + type: Transform +- proto: TableGlass + entities: + - uid: 813 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 814 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 815 + components: + - pos: 1.5,-4.5 + parent: 1 + type: Transform +- proto: TablePlasmaGlass + entities: + - uid: 816 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 817 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + type: Transform +- proto: TableReinforced + entities: + - uid: 818 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 819 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 820 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 1 + type: Transform +- proto: TelecomServerFilled + entities: + - uid: 594 + components: + - pos: 10.5,2.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 602 + - 601 + - 599 + - 595 + - 600 + - 598 + - 597 + - 596 + - 603 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer +- proto: ToiletEmpty + entities: + - uid: 821 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform +- proto: ToolboxSyndicateFilled + entities: + - uid: 822 + components: + - pos: 4.5174317,5.701203 + parent: 1 + type: Transform + - uid: 823 + components: + - pos: 4.5330567,5.310578 + parent: 1 + type: Transform +- proto: ToyFigurineNukie + entities: + - uid: 824 + components: + - pos: 12.208444,2.8347092 + parent: 1 + type: Transform +- proto: ToyFigurineNukieCommander + entities: + - uid: 825 + components: + - pos: 12.791773,2.838885 + parent: 1 + type: Transform +- proto: ToyFigurineNukieElite + entities: + - uid: 826 + components: + - pos: 12.489692,2.4701266 + parent: 1 + type: Transform +- proto: ToyNuke + entities: + - uid: 827 + components: + - pos: 16.198624,-0.765656 + parent: 1 + type: Transform +- proto: VendingMachineBooze + entities: + - uid: 828 + components: + - pos: 4.5,-4.5 + parent: 1 + type: Transform + - type: Emagged +- proto: VendingMachineGames + entities: + - uid: 829 + components: + - pos: 8.5,-2.5 + parent: 1 + type: Transform + - type: Emagged +- proto: VendingMachineNutri + entities: + - uid: 830 + components: + - pos: 12.5,-2.5 + parent: 1 + type: Transform + - type: Emagged +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 831 + components: + - pos: 11.5,-2.5 + parent: 1 + type: Transform + - type: Emagged +- proto: VendingMachineSyndieDrobe + entities: + - uid: 832 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - type: Emagged +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 833 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform +- proto: WallPlastitanium + entities: + - uid: 806 + components: + - pos: -2.5,-8.5 + parent: 1 + type: Transform + - uid: 807 + components: + - pos: -1.5,-8.5 + parent: 1 + type: Transform + - uid: 808 + components: + - pos: -0.5,-8.5 + parent: 1 + type: Transform + - uid: 834 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 835 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 836 + components: + - pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 837 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 1 + type: Transform + - uid: 838 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 1 + type: Transform + - uid: 839 + components: + - pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 840 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 841 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 842 + components: + - pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 844 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 845 + components: + - pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 846 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 847 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 848 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 849 + components: + - pos: 5.5,-4.5 + parent: 1 + type: Transform + - uid: 850 + components: + - pos: 9.5,-1.5 + parent: 1 + type: Transform + - uid: 851 + components: + - pos: 11.5,-1.5 + parent: 1 + type: Transform + - uid: 852 + components: + - pos: 12.5,-1.5 + parent: 1 + type: Transform + - uid: 853 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 854 + components: + - pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 855 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 856 + components: + - pos: 7.5,-1.5 + parent: 1 + type: Transform + - uid: 857 + components: + - pos: 13.5,-1.5 + parent: 1 + type: Transform + - uid: 858 + components: + - pos: 13.5,3.5 + parent: 1 + type: Transform + - uid: 859 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 860 + components: + - pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 861 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 862 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform + - uid: 863 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 865 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 866 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 867 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 868 + components: + - pos: 12.5,3.5 + parent: 1 + type: Transform + - uid: 869 + components: + - pos: -2.5,-4.5 + parent: 1 + type: Transform + - uid: 870 + components: + - pos: -2.5,-2.5 + parent: 1 + type: Transform + - uid: 871 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 872 + components: + - pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 873 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform + - uid: 874 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 875 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 876 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 877 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 878 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 879 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 880 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 881 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 882 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 883 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 884 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 885 + components: + - pos: -2.5,-1.5 + parent: 1 + type: Transform + - uid: 886 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 887 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 888 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 889 + components: + - pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 890 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 891 + components: + - pos: 11.5,3.5 + parent: 1 + type: Transform + - uid: 892 + components: + - pos: 10.5,3.5 + parent: 1 + type: Transform + - uid: 893 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 894 + components: + - pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 895 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 896 + components: + - pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 897 + components: + - pos: 7.5,1.5 + parent: 1 + type: Transform + - uid: 898 + components: + - pos: 7.5,0.5 + parent: 1 + type: Transform + - uid: 899 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 900 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 901 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 902 + components: + - pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 903 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 904 + components: + - pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 905 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 906 + components: + - pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 907 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 908 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 909 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 910 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 911 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 912 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 913 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 914 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 915 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 916 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 917 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 918 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 920 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 924 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 1 + type: Transform + - uid: 925 + components: + - pos: 9.5,-4.5 + parent: 1 + type: Transform + - uid: 926 + components: + - pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 927 + components: + - pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 928 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 930 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-3.5 + parent: 1 + type: Transform + - uid: 931 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-4.5 + parent: 1 + type: Transform + - uid: 932 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-5.5 + parent: 1 + type: Transform + - uid: 933 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 1 + type: Transform + - uid: 934 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + type: Transform +- proto: WarpPoint + entities: + - uid: 935 + components: + - name: Syndicate Listening Post + type: MetaData + - pos: 10.5,0.5 + parent: 1 + type: Transform +- proto: WaterCooler + entities: + - uid: 936 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform +- proto: WaterTankHighCapacity + entities: + - uid: 937 + components: + - pos: 13.5,-2.5 + parent: 1 + type: Transform +- proto: WeaponShotgunKammerer + entities: + - uid: 372 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 373 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: Windoor + entities: + - uid: 919 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 938 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 939 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + type: Transform +- proto: WindoorSecure + entities: + - uid: 944 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 945 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform +- proto: WoodDoor + entities: + - uid: 946 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - secondsUntilStateChange: -14097.95 + state: Opening + type: Door +... diff --git a/Resources/Maps/Shuttles/arrivals.yml b/Resources/Maps/Shuttles/arrivals.yml index 428300c345..2e53397284 100644 --- a/Resources/Maps/Shuttles/arrivals.yml +++ b/Resources/Maps/Shuttles/arrivals.yml @@ -44,6 +44,8 @@ entities: type: BecomesStation - type: OccluderTree - type: Shuttle + - type: DeviceNetwork + transmitFrequencyId: ArrivalsShuttleTimer - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -233,6 +235,18 @@ entities: pos: -0.5,3.5 parent: 292 type: Transform +- proto: ArrivalsShuttleTimer + entities: + - uid: 294 + components: + - pos: -4.5,3.5 + parent: 292 + type: Transform + - uid: 295 + components: + - pos: 3.5,3.5 + parent: 292 + type: Transform - proto: AtmosDeviceFanTiny entities: - uid: 164 diff --git a/Resources/Maps/Shuttles/dart.yml b/Resources/Maps/Shuttles/dart.yml index 57218ff88a..104a852727 100644 --- a/Resources/Maps/Shuttles/dart.yml +++ b/Resources/Maps/Shuttles/dart.yml @@ -3161,9 +3161,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 885 components: - rot: -1.5707963267948966 rad @@ -3172,9 +3170,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 888 components: - pos: 2.5,-7.5 @@ -3182,9 +3178,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 889 components: - rot: 3.141592653589793 rad @@ -3193,9 +3187,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 890 components: - rot: 1.5707963267948966 rad @@ -3204,9 +3196,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 892 components: - rot: 3.141592653589793 rad @@ -3215,9 +3205,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - proto: EncryptionKeyCommand entities: - uid: 982 diff --git a/Resources/Maps/Shuttles/emergency.yml b/Resources/Maps/Shuttles/emergency.yml index d82cbee682..59a8a080fd 100644 --- a/Resources/Maps/Shuttles/emergency.yml +++ b/Resources/Maps/Shuttles/emergency.yml @@ -35,6 +35,8 @@ entities: tiles: FwAAABcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAABFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAARQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAEUAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAFwAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAABcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAXAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase + - type: DeviceNetwork + transmitFrequencyId: ShuttleTimer - angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False @@ -1560,9 +1562,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 392 components: - rot: 3.141592653589793 rad @@ -1571,9 +1571,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - proto: ExtinguisherCabinetFilled entities: - uid: 362 @@ -2256,6 +2254,18 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver +- proto: Screen + entities: + - uid: 411 + components: + - pos: -1.5,0.5 + parent: 410 + type: Transform + - uid: 412 + components: + - pos: -1.5,10.5 + parent: 410 + type: Transform - proto: ShuttleWindow entities: - uid: 21 diff --git a/Resources/Maps/Shuttles/emergency_box.yml b/Resources/Maps/Shuttles/emergency_box.yml index 215821df97..5d32bcef2f 100644 --- a/Resources/Maps/Shuttles/emergency_box.yml +++ b/Resources/Maps/Shuttles/emergency_box.yml @@ -2353,9 +2353,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 435 components: - pos: -6.5,7.5 @@ -2363,9 +2361,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - proto: EmergencyOxygenTankFilled entities: - uid: 496 diff --git a/Resources/Maps/Shuttles/emergency_lox.yml b/Resources/Maps/Shuttles/emergency_lox.yml index 43abac3409..126002e070 100644 --- a/Resources/Maps/Shuttles/emergency_lox.yml +++ b/Resources/Maps/Shuttles/emergency_lox.yml @@ -2408,9 +2408,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 639 components: - rot: 3.141592653589793 rad @@ -2419,9 +2417,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - proto: ExtinguisherCabinetFilled entities: - uid: 170 diff --git a/Resources/Maps/Shuttles/emergency_raven.yml b/Resources/Maps/Shuttles/emergency_raven.yml index bb84422483..9235b29b4d 100644 --- a/Resources/Maps/Shuttles/emergency_raven.yml +++ b/Resources/Maps/Shuttles/emergency_raven.yml @@ -7409,9 +7409,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 2492 components: - rot: -1.5707963267948966 rad @@ -7420,9 +7418,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 2493 components: - pos: 7.5,3.5 @@ -7430,9 +7426,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 2494 components: - pos: 11.5,-16.5 @@ -7440,9 +7434,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 2495 components: - rot: 1.5707963267948966 rad @@ -7451,9 +7443,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 2496 components: - rot: 1.5707963267948966 rad @@ -7462,9 +7452,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 2497 components: - pos: 15.5,3.5 @@ -7472,9 +7460,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 2498 components: - rot: 3.141592653589793 rad @@ -7483,9 +7469,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 2499 components: - rot: -1.5707963267948966 rad @@ -7494,9 +7478,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 2500 components: - rot: -1.5707963267948966 rad @@ -7505,9 +7487,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 2501 components: - pos: 11.5,17.5 @@ -7515,9 +7495,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 2502 components: - rot: 3.141592653589793 rad @@ -7526,9 +7504,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 2503 components: - rot: 1.5707963267948966 rad @@ -7537,9 +7513,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 2504 components: - pos: 11.5,14.5 @@ -7547,9 +7521,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 2505 components: - rot: 3.141592653589793 rad @@ -7558,9 +7530,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 2506 components: - rot: 1.5707963267948966 rad @@ -7569,9 +7539,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 2507 components: - rot: -1.5707963267948966 rad @@ -7580,9 +7548,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 2508 components: - pos: 10.5,6.5 @@ -7590,9 +7556,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 2509 components: - rot: 3.141592653589793 rad @@ -7601,9 +7565,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 2510 components: - rot: 1.5707963267948966 rad @@ -7612,9 +7574,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - uid: 2511 components: - rot: -1.5707963267948966 rad @@ -7623,9 +7583,7 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight + - proto: EmergencyMedipen entities: - uid: 2069 diff --git a/Resources/Maps/Shuttles/emergency_rod.yml b/Resources/Maps/Shuttles/emergency_rod.yml index ceddc80039..e9ad5ebddf 100644 --- a/Resources/Maps/Shuttles/emergency_rod.yml +++ b/Resources/Maps/Shuttles/emergency_rod.yml @@ -1,16 +1,19 @@ meta: - format: 5 + format: 6 postmapinit: false tilemap: 0: Space - 12: FloorBar - 32: FloorDarkPlastic - 59: FloorReinforced - 75: FloorSteelMono - 80: FloorTechMaint2 - 91: FloorWhitePlastic - 94: Lattice - 95: Plating + 14: FloorBar + 34: FloorDarkMono + 38: FloorDarkPlastic + 64: FloorMetalDiamond + 77: FloorReinforced + 100: FloorSteelMono + 104: FloorTechMaint + 113: FloorWhiteMono + 117: FloorWhitePlastic + 120: Lattice + 121: Plating entities: - proto: "" entities: @@ -19,30 +22,37 @@ entities: - name: NT Evac Rod type: MetaData - pos: -0.70836353,-1.958334 - parent: invalid + parent: 57 type: Transform - chunks: 0,0: ind: 0,0 - tiles: SwAAAF8AAABLAAACIAAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAANfAAAASwAAAiAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAACAAAAEgAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAyAAAAEgAAADIAAAASAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABLAAABSwAAAiAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAA1sAAANbAAABXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFsAAAJbAAACWwAAAl8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABbAAABWwAAAFsAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAVsAAAJbAAACXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAADIAAAAiAAAAMgAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAiAAAAMgAAACIAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAIgAAAAIAAAA0sAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAADIAAAASAAAAFLAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAACAAAAEgAAAASwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAAACeQAAAAAAZAAAAAADJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAeQAAAAAAZAAAAAAAJgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAADJgAAAAACJgAAAAACJgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAADdQAAAAACcQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAADdQAAAAACcQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAACdQAAAAADcQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAABdQAAAAADcQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAADJgAAAAADJgAAAAABJgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAACIgAAAAAAJgAAAAABJgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAADIgAAAAACJgAAAAACZAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAADJgAAAAABZAAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAACJgAAAAAAZAAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAIAAAAEsAAAJfAAAAIAAAAiAAAANLAAAAIAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAyAAAANLAAAAXwAAACAAAAIgAAADIAAAASAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAgAAAAIAAAAF8AAABfAAAAXwAAACAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAADIAAAACAAAAMgAAABIAAAAiAAAAMgAAABIAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAACAAAAAgAAAAIAAAAiAAAAIgAAABIAAAAUsAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAIAAAACAAAAMgAAAAIAAAAV8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEsAAAEgAAAAIAAAAiAAAABfAAAAWwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABLAAABIAAAACAAAAIgAAAAWwAAA1sAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAASwAAAiAAAAMgAAABIAAAAV8AAABbAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEsAAAMgAAADIAAAASAAAANfAAAAWwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAgAAACIAAAACAAAAIgAAACXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAgAAAAIAAAACAAAAEgAAACIAAAAiAAAAMgAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAIAAAAyAAAAMgAAABIAAAAyAAAAIgAAACIAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEsAAAEgAAABIAAAAyAAAAMgAAACIAAAACAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABLAAADIAAAASAAAAAgAAAAIAAAAyAAAAMgAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAASwAAAyAAAAEgAAAADAAAAgwAAAAMAAABDAAAAw== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAACZAAAAAADeQAAAAAAJgAAAAAAJgAAAAADZAAAAAADJgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAADZAAAAAADeQAAAAAAJgAAAAADJgAAAAADJgAAAAACJgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAABIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAADJgAAAAACJgAAAAADJgAAAAAAJgAAAAABJgAAAAADJgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAADJgAAAAAAJgAAAAADJgAAAAAAJgAAAAADJgAAAAABZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIgAAAAABIgAAAAADIgAAAAADIgAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAZAAAAAAAJgAAAAADJgAAAAABJgAAAAADeQAAAAAAdQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAZAAAAAADJgAAAAACJgAAAAAAJgAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAZAAAAAABJgAAAAADJgAAAAABJgAAAAAAeQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAZAAAAAAAJgAAAAADJgAAAAADJgAAAAADeQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAADIgAAAAADIgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAABJgAAAAAAJgAAAAABJgAAAAAAJgAAAAADJgAAAAADJgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAACJgAAAAACIgAAAAACIgAAAAACIgAAAAADIgAAAAABIgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAZAAAAAABJgAAAAACIgAAAAACIgAAAAACIgAAAAADIgAAAAADIgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAZAAAAAADJgAAAAABDgAAAAADDgAAAAADDgAAAAACDgAAAAACDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAZAAAAAACJgAAAAADDgAAAAABDgAAAAACDgAAAAABDgAAAAADDgAAAAAD + version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAgAAAASwAAAUsAAAIgAAAASwAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAIAAAAiAAAAMgAAADIAAAAksAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAACAAAAMgAAAAIAAAACAAAAAgAAACUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAgAAADXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAgAAABIAAAAyAAAAAgAAAAIAAAACAAAAMgAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAACIAAAASAAAABLAAAASwAAAksAAAJLAAACSwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAACAAAAAgAAADIAAAASAAAAEgAAACIAAAACAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAMgAAACIAAAA0sAAANLAAACSwAAAksAAANLAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAIAAAASAAAAMgAAAAIAAAACAAAAIgAAAAIAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAACAAAAMgAAABXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAgAAADSwAAAl8AAAAgAAADIAAAA0sAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAIAAAAEsAAABfAAAAIAAAAiAAAAMgAAADIAAAAQ== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAIgAAAAAAZAAAAAABZAAAAAACIgAAAAACZAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAJgAAAAABJgAAAAACJgAAAAAAJgAAAAADZAAAAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAIgAAAAADIgAAAAABIgAAAAABIgAAAAACJgAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAABJgAAAAACJgAAAAAAJgAAAAADJgAAAAAAJgAAAAAAJgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAADIgAAAAABZAAAAAADZAAAAAAAZAAAAAACZAAAAAACZAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAACIgAAAAABIgAAAAAAJgAAAAADJgAAAAABJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAADZAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAACJgAAAAABJgAAAAAAJgAAAAABJgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAACJgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAZAAAAAAAeQAAAAAAJgAAAAAAJgAAAAACZAAAAAADJgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAACZAAAAAADeQAAAAAAJgAAAAACJgAAAAAAJgAAAAABJgAAAAAA + version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAA7AAAAOwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUAAAACAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAAAAgAAABXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAIAAAAl8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAACIAAAACAAAAMgAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAA0sAAAIgAAAAIAAAACAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAEgAAACIAAAAiAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAACSwAAAiAAAAMgAAACIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAACAAAAMgAAACIAAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAIAAAACAAAAFfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAADXwAAAEsAAAMgAAADXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAA18AAABLAAAAIAAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAJgAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAJgAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAADJgAAAAACJgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADZAAAAAADIgAAAAADIgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAADIgAAAAAAIgAAAAABIgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADZAAAAAABIgAAAAABIgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAADJgAAAAAAJgAAAAADJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAABJgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAeQAAAAAAZAAAAAADJgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAACeQAAAAAAZAAAAAAAJgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAASwAAAiAAAAMgAAACDAAAAgwAAAAMAAABDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAACAAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAgAAADIAAAACAAAAAgAAAAIAAAACAAAAEgAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAIAAAA0sAAANLAAABIAAAAEsAAAJLAAAASwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAgAAACIAAAAyAAAAIgAAABIAAAAyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAZAAAAAABJgAAAAADDgAAAAAADgAAAAADDgAAAAAADgAAAAABDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAACIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAABJgAAAAABJgAAAAABJgAAAAAAJgAAAAADJgAAAAACJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAACZAAAAAABZAAAAAABJgAAAAAAZAAAAAADZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAADJgAAAAACJgAAAAABJgAAAAACJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,1: ind: 0,1 - tiles: DAAAAQwAAAEgAAABSwAAAl8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAACAAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAADIAAAAiAAAAIgAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAEsAAANLAAADIAAAAl8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAIgAAABIAAAAV8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: DgAAAAACDgAAAAADJgAAAAABZAAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAADJgAAAAADJgAAAAACJgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABZAAAAAAAZAAAAAADJgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAADJgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 type: MapGrid - type: Broadphase - - angularDamping: 0.05 + - bodyStatus: InAir + angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic @@ -64,39 +74,21 @@ entities: color: '#DE3A3A96' id: Arrows decals: - 117: -2,-1 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 32: -7,-5 - 33: -7,-7 - 34: -7,1 - 35: -7,3 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 36: 3,-7 - 37: 3,-5 - 38: 3,1 - 39: 3,3 + 92: -2,-1 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: Arrows decals: - 40: -7,18 - 41: 3,18 + 31: -7,18 + 32: 3,18 - node: angle: 9.42477796076938 rad color: '#FFFFFFFF' id: Arrows decals: - 42: -6,-10 - 43: 2,-10 + 33: -6,-10 + 34: 2,-10 - node: color: '#FFFFFFFF' id: Bot @@ -110,229 +102,538 @@ entities: 6: 1,-5 7: 1,-7 8: 0,-7 - 9: -1,-7 - 10: -2,-7 - 11: -3,-7 - 12: -4,-7 - 13: -5,-7 - 14: -6,6 - 15: -6,7 - 16: -6,8 - 17: -6,9 - 18: -6,19 - 19: -5,19 - 20: -3,19 - 21: -2,19 - 22: -1,19 - 23: 1,19 - 24: 2,19 - 25: -1,4 - 26: 0,4 - 27: 1,4 - 28: 2,4 - 29: -2,-11 - 30: 0,0 - 31: 0,-1 - 91: -6,-2 - 92: -6,-1 - 93: -6,0 - 94: -6,1 - 95: 2,1 - 96: 2,-1 - 97: 2,0 - 98: 2,-2 - 99: -5,-12 - 100: -4,-12 - 107: -7,16 - 108: -7,15 - 109: -7,14 - 110: -7,13 - 111: 3,13 - 112: 3,14 - 113: 3,15 - 114: 3,16 - 115: -2,-2 - 116: -2,0 + 9: -2,-7 + 10: -3,-7 + 11: -4,-7 + 12: -5,-7 + 13: -6,6 + 14: -6,7 + 15: -6,8 + 16: -6,9 + 17: -6,19 + 18: -5,19 + 19: -3,19 + 20: -2,19 + 21: -1,19 + 22: 1,19 + 23: 2,19 + 24: -1,4 + 25: 0,4 + 26: 1,4 + 27: 2,4 + 28: -2,-11 + 29: 0,0 + 30: 0,-1 + 66: -6,-2 + 67: -6,-1 + 68: -6,0 + 69: -6,1 + 70: 2,1 + 71: 2,-1 + 72: 2,0 + 73: 2,-2 + 74: -5,-12 + 75: -4,-12 + 82: -7,16 + 83: -7,15 + 84: -7,14 + 85: -7,13 + 86: 3,13 + 87: 3,14 + 88: 3,15 + 89: 3,16 + 90: -2,-2 + 91: -2,0 + 341: -1,-7 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: Bot decals: - 44: -2,-12 + 35: -2,-12 + - node: + color: '#00FFFF93' + id: BotGreyscale + decals: + 166: 2,7 + 167: 2,8 + - node: + color: '#FFFFFFFF' + id: BotLeft + decals: + 170: 2,11 + 171: 3,11 + - node: + color: '#FFFFFFFF' + id: BotRight + decals: + 168: 0,11 + 169: 1,11 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 99: 1,14 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 98: -5,14 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 100: 1,15 + 101: 1,16 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 104: -4,14 + 105: -3,14 + 106: -2,14 + 107: -1,14 + 108: 0,14 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 102: -5,15 + 103: -5,16 - node: angle: 6.283185307179586 rad color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 65: 2,20 - 69: 3,19 + 55: 2,20 + 59: 3,19 - node: angle: 6.283185307179586 rad color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 64: -6,20 - 68: -7,19 + 54: -6,20 + 58: -7,19 - node: angle: 6.283185307179586 rad color: '#334E6DC8' id: BrickTileWhiteInnerNe decals: - 67: 2,19 + 57: 2,19 - node: angle: 6.283185307179586 rad color: '#334E6DC8' id: BrickTileWhiteInnerNw decals: - 66: -6,19 + 56: -6,19 - node: angle: 6.283185307179586 rad color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 70: 3,18 + 60: 3,18 - node: - angle: 6.283185307179586 rad - color: '#52B4E9FF' + color: '#52B4E996' id: BrickTileWhiteLineE decals: - 86: -3,7 + 153: 2,6 + 154: 2,9 + 155: 2,8 + 156: 2,7 + 159: -3,7 + 160: 2,7 + 161: 2,8 + - node: + color: '#D4D4D428' + id: BrickTileWhiteLineE + decals: + 117: -3,9 + 118: -3,8 + 119: -3,6 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 102: -3,-12 - 103: -3,-11 - 104: -3,-10 + 77: -3,-12 + 78: -3,-11 + 79: -3,-10 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 105: -6,16 - 106: 2,16 + 80: -6,16 + 81: 2,16 - node: angle: 6.283185307179586 rad color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 57: -5,20 - 58: -4,20 - 59: -3,20 - 60: -2,20 - 61: -1,20 - 62: 0,20 - 63: 1,20 + 47: -5,20 + 48: -4,20 + 49: -3,20 + 50: -2,20 + 51: -1,20 + 52: 0,20 + 53: 1,20 - node: angle: 6.283185307179586 rad color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 52: -4,1 - 53: -3,1 - 54: -1,1 - 55: 0,1 - 56: -2,1 + 42: -4,1 + 43: -3,1 + 44: -1,1 + 45: 0,1 + 46: -2,1 + - node: + color: '#D4D4D428' + id: BrickTileWhiteLineS + decals: + 112: -7,-8 + 113: -3,3 + 114: -5,3 + 115: 0,3 + 116: -1,3 + 322: -4,3 + 323: 1,3 - node: angle: 6.283185307179586 rad color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 49: -2,3 - 50: -1,-2 - 51: 0,-2 + 39: -2,3 + 40: -1,-2 + 41: 0,-2 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 111: -6,-8 - node: angle: 6.283185307179586 rad color: '#EFB34196' id: BrickTileWhiteLineS decals: - 47: -6,-8 - 48: 2,-8 + 38: 2,-8 - node: angle: 6.283185307179586 rad color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 71: -7,18 + 61: -7,18 - node: - angle: 6.283185307179586 rad color: '#52B4E996' id: BrickTileWhiteLineW decals: - 72: -1,9 - 73: -1,8 - 74: -1,7 - 75: -1,6 + 157: -1,9 + 158: -1,6 + 162: -1,8 + 163: -1,8 + 164: -1,7 + 165: -1,7 - node: - angle: 9.42477796076938 rad - color: '#52B4E996' + color: '#EFB34196' id: BrickTileWhiteLineW decals: - 76: 2,8 - 77: 2,7 - 78: 2,9 + 76: -6,-12 - node: angle: 6.283185307179586 rad - color: '#52B4E9FF' + color: '#EFB34196' id: BrickTileWhiteLineW decals: - 82: -1,6 - 83: -1,7 - 84: -1,9 - 85: -1,8 + 36: -6,-11 + 37: -6,-10 - node: - angle: 9.42477796076938 rad - color: '#52B4E9FF' - id: BrickTileWhiteLineW + angle: -4.71238898038469 rad + color: '#FFFFFFFF' + id: Caution decals: - 79: 2,9 - 80: 2,8 - 81: 2,7 + 338: -7,2 - node: - color: '#EFB34196' - id: BrickTileWhiteLineW + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Caution decals: - 101: -6,-12 + 336: 3,-6 + 337: 3,2 - node: - angle: 6.283185307179586 rad - color: '#EFB34196' - id: BrickTileWhiteLineW + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Caution decals: - 45: -6,-11 - 46: -6,-10 + 335: -7,-6 - node: color: '#DE3A3A96' id: CheckerNESW decals: - 118: -3,-2 - 119: -4,-2 - 120: -4,-1 - 121: -3,-1 - 122: -3,0 - 123: -4,0 + 93: -3,-2 + 94: -4,-2 + 95: -4,-1 + 96: -3,0 + 97: -4,0 + 321: -3,-1 + - node: + color: '#D4D4D409' + id: CheckerNWSE + decals: + 136: 1,-8 + 137: 0,-8 + 138: -3,-8 + 139: -2,-8 + 140: -4,-8 + 141: -5,-8 + 142: 1,-4 + 143: -1,-4 + 144: -2,-4 + 145: -3,-4 + 146: -4,-4 + 147: -5,9 + 148: -4,8 + 149: -5,8 + 150: -4,7 + 151: -4,6 + 152: -5,6 + - node: + color: '#D4D4D40C' + id: CheckerNWSE + decals: + 324: -1,-8 + 325: 0,-4 + 326: -5,-4 + 339: -5,7 + 340: -4,9 + - node: + color: '#D4D4D428' + id: Delivery + decals: + 120: -6,10 + 121: -6,5 + 122: -5,5 + 123: -4,5 + 124: -3,5 + 125: -3,10 + 126: -4,10 + 127: -5,10 + 128: -6,2 + 129: -7,2 + 130: -7,-3 + 131: -6,-3 + 132: 2,-3 + 133: 3,-3 + 134: 3,2 + 135: 2,2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 275: -6,18 + 276: -7,19 + 277: -4,19 + 278: -5,18 + 279: -1,18 + 280: 1,18 + 281: 3,18 + 282: 0,19 + 283: -6,13 + 284: -5,11 + 285: -4,11 + 286: -5,9 + 287: 2,13 + 288: 2,15 + 289: 2,11 + 290: -4,15 + 291: -1,15 + 292: 0,16 + 293: -5,9 + 294: -3,7 + 295: -5,6 + 296: -6,4 + 297: -3,4 + 298: -6,3 + 299: -1,3 + 300: -3,1 + 301: -1,1 + 302: -1,-1 + 303: -4,0 + 304: -4,-2 + 305: -4,-1 + 306: -4,-1 + 307: -1,-2 + 308: 1,-4 + 309: -6,-4 + 310: -7,-4 + 311: -7,-6 + 312: -4,-8 + 313: 1,-8 + 314: 2,-6 + 315: 3,-4 + 316: 2,-10 + 317: 1,-11 + 318: -6,-11 + 319: -6,-12 + 320: -3,-11 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 172: -5,12 + 173: 0,12 + 174: -2,12 + 175: 1,13 + 176: -1,15 + 177: -4,15 + 178: -6,16 + 179: -5,13 + 180: -1,15 + 181: 2,10 + 182: 1,7 + 183: -3,8 + 184: -4,6 + 185: -6,9 + 186: -1,10 + 187: -4,7 + 188: 2,8 + 189: 0,9 + 190: 0,7 + 191: 1,6 + 192: -5,4 + 193: 0,3 + 194: -5,4 + 195: -1,0 + 196: -4,1 + 197: -2,-2 + 198: -4,-2 + 199: 0,-1 + 200: 0,0 + 201: 1,-5 + 202: -4,-5 + 203: -7,-4 + 204: -6,-6 + 205: -6,-8 + 206: -3,-8 + 207: 1,-8 + 208: 3,-6 + 209: 2,-5 + 210: 2,-6 + 211: -3,-5 + 212: -3,-6 + 213: -4,-4 + 214: -3,-4 + 215: -4,-4 + 216: -2,-4 + 217: -1,-4 + 218: -7,-2 + 219: -7,-1 + 220: -7,2 + 221: -6,3 + 222: 3,-2 + 223: 3,0 + 224: 2,2 + 225: 2,3 + 226: 2,-1 + 227: 2,-2 + 228: 0,-5 + 229: -2,-5 + 230: -4,-5 + 231: -2,-7 + 232: -4,-7 + 233: 0,-7 + 234: 2,-11 + 235: 2,-11 + 236: 1,-11 + 237: 2,-10 + 238: -5,-11 + 239: -6,-10 + 240: -6,-12 + 241: -4,-11 + 242: -5,-11 + 243: -7,-6 + 244: -6,-5 + 245: -5,9 + 246: -5,6 + 247: -6,13 + 248: -7,13 + 249: -7,14 + 250: -7,15 + 251: -3,15 + 252: 3,15 + 253: 3,16 + 254: 3,13 + 255: 2,11 + 256: 2,12 + 257: 3,12 + 258: 2,15 + 259: 2,16 + 260: -6,18 + 261: -7,19 + 262: -4,20 + 263: -3,19 + 264: -1,19 + 265: -1,18 + 266: 1,18 + 267: 2,18 + 268: 3,19 + 269: 1,19 + 270: -2,19 + 271: -3,18 + 272: -2,18 + 273: -1,18 + 274: 0,18 + - node: + angle: -4.71238898038469 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 333: -7,3 + 334: -7,1 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 329: 3,-7 + 330: 3,-5 + 331: 3,3 + 332: 3,1 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 327: -7,-5 + 328: -7,-7 - node: angle: 6.283185307179586 rad color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 89: 1,7 + 64: 1,7 - node: angle: 6.283185307179586 rad color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 90: 0,8 + 65: 0,8 - node: angle: 6.283185307179586 rad color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 88: 1,8 + 63: 1,8 - node: angle: 6.283185307179586 rad color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 87: 0,7 + 62: 0,7 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 109: 2,-11 + 110: 2,-10 type: DecalGrid - version: 2 data: @@ -351,16 +652,20 @@ entities: 0: 4369 1,1: 0: 273 + 1: 4096 1,2: 0: 4368 + 1: 1 1,3: 0: 4369 -2,0: 0: 65535 -2,1: 0: 61439 + 1: 4096 -2,2: 0: 65534 + 1: 1 -2,3: 0: 65535 -1,1: @@ -371,12 +676,14 @@ entities: 0: 65535 -2,-3: 0: 65518 + 1: 17 -2,-2: 0: 65535 -2,-1: 0: 65535 -2,-4: 0: 57344 + 1: 4096 -1,-4: 0: 61440 -1,-3: @@ -395,6 +702,7 @@ entities: 0: 65535 1,-3: 0: 4352 + 1: 17 1,-2: 0: 4369 1,-1: @@ -415,6 +723,8 @@ entities: 0: 4369 1,5: 0: 17 + 1,-4: + 1: 4096 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -431,10 +741,37 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 type: GridAtmosphere - type: GasTileOverlay - type: RadiationGridResistance + - uid: 57 + components: + - name: map 20 + type: MetaData + - type: Transform + - type: Map + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap - proto: AirCanister entities: - uid: 102 @@ -609,6 +946,112 @@ entities: - pos: 2.5,7.5 parent: 2 type: Transform +- proto: BlastDoorOpen + entities: + - uid: 705 + components: + - pos: -6.5,20.5 + parent: 2 + type: Transform + - links: + - 718 + type: DeviceLinkSink + - uid: 706 + components: + - pos: -6.5,21.5 + parent: 2 + type: Transform + - links: + - 718 + type: DeviceLinkSink + - uid: 707 + components: + - pos: -5.5,21.5 + parent: 2 + type: Transform + - links: + - 718 + type: DeviceLinkSink + - uid: 708 + components: + - pos: -4.5,21.5 + parent: 2 + type: Transform + - links: + - 718 + type: DeviceLinkSink + - uid: 709 + components: + - pos: -3.5,21.5 + parent: 2 + type: Transform + - links: + - 718 + type: DeviceLinkSink + - uid: 710 + components: + - pos: -2.5,21.5 + parent: 2 + type: Transform + - links: + - 718 + type: DeviceLinkSink + - uid: 711 + components: + - pos: -1.5,21.5 + parent: 2 + type: Transform + - links: + - 718 + type: DeviceLinkSink + - uid: 712 + components: + - pos: -0.5,21.5 + parent: 2 + type: Transform + - links: + - 718 + type: DeviceLinkSink + - uid: 713 + components: + - pos: 0.5,21.5 + parent: 2 + type: Transform + - links: + - 718 + type: DeviceLinkSink + - uid: 714 + components: + - pos: 1.5,21.5 + parent: 2 + type: Transform + - links: + - 718 + type: DeviceLinkSink + - uid: 715 + components: + - pos: 3.5,21.5 + parent: 2 + type: Transform + - links: + - 718 + type: DeviceLinkSink + - uid: 716 + components: + - pos: 2.5,21.5 + parent: 2 + type: Transform + - links: + - 718 + type: DeviceLinkSink + - uid: 717 + components: + - pos: 3.5,20.5 + parent: 2 + type: Transform + - links: + - 718 + type: DeviceLinkSink - proto: BoozeDispenser entities: - uid: 451 @@ -623,8 +1066,6 @@ entities: - pos: 2.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 113 components: - pos: 2.5,-9.5 @@ -635,8 +1076,6 @@ entities: - pos: 0.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 348 components: - pos: 1.5,-11.5 @@ -652,15 +1091,11 @@ entities: - pos: 1.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 478 components: - pos: 0.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 479 components: - pos: 0.5,1.5 @@ -721,15 +1156,11 @@ entities: - pos: -0.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 491 components: - pos: -2.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 492 components: - pos: -1.5,2.5 @@ -740,15 +1171,11 @@ entities: - pos: -1.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 494 components: - pos: -1.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 495 components: - pos: -1.5,7.5 @@ -774,8 +1201,6 @@ entities: - pos: -1.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 500 components: - pos: 1.5,6.5 @@ -821,15 +1246,11 @@ entities: - pos: -5.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 521 components: - pos: -4.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 522 components: - pos: -4.5,19.5 @@ -860,8 +1281,6 @@ entities: - pos: -3.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 530 components: - pos: -3.5,18.5 @@ -922,8 +1341,6 @@ entities: - pos: 0.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 544 components: - pos: 2.5,-8.5 @@ -934,36 +1351,26 @@ entities: - pos: -0.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 546 components: - pos: -1.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 547 components: - pos: -2.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 548 components: - pos: -3.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 549 components: - pos: -4.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 550 components: - pos: -5.5,-8.5 @@ -1004,29 +1411,21 @@ entities: - pos: -6.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 632 components: - pos: -6.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 633 components: - pos: -6.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 634 components: - pos: -6.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 638 components: - pos: 1.5,-10.5 @@ -1057,8 +1456,6 @@ entities: - pos: -3.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 644 components: - pos: -3.5,3.5 @@ -1109,8 +1506,6 @@ entities: - pos: -6.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 654 components: - pos: -6.5,11.5 @@ -1215,8 +1610,6 @@ entities: - pos: -0.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 176 components: - pos: -0.5,-9.5 @@ -1227,8 +1620,6 @@ entities: - pos: 0.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 453 components: - pos: 0.5,-7.5 @@ -1259,8 +1650,6 @@ entities: - pos: 0.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 459 components: - pos: 0.5,-1.5 @@ -1286,22 +1675,16 @@ entities: - pos: 1.5,1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 464 components: - pos: 1.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 465 components: - pos: -1.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 466 components: - pos: -2.5,9.5 @@ -1372,8 +1755,6 @@ entities: - pos: -1.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 511 components: - pos: -1.5,13.5 @@ -1414,14 +1795,154 @@ entities: - pos: -4.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound -- proto: CableTerminal - entities: - - uid: 553 +- proto: CableTerminal + entities: + - uid: 553 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-11.5 + parent: 2 + type: Transform +- proto: CarpetBlack + entities: + - uid: 695 + components: + - rot: 3.141592653589793 rad + pos: -3.5,13.5 + parent: 2 + type: Transform + - uid: 696 + components: + - rot: 3.141592653589793 rad + pos: -1.5,13.5 + parent: 2 + type: Transform + - uid: 697 + components: + - rot: 3.141592653589793 rad + pos: -2.5,13.5 + parent: 2 + type: Transform + - uid: 698 + components: + - rot: 3.141592653589793 rad + pos: -0.5,13.5 + parent: 2 + type: Transform + - uid: 699 + components: + - rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 2 + type: Transform +- proto: Catwalk + entities: + - uid: 719 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-9.5 + parent: 2 + type: Transform + - uid: 720 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-10.5 + parent: 2 + type: Transform + - uid: 721 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-9.5 + parent: 2 + type: Transform + - uid: 722 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 2 + type: Transform + - uid: 723 + components: + - rot: 3.141592653589793 rad + pos: 4.5,6.5 + parent: 2 + type: Transform + - uid: 724 + components: + - rot: 3.141592653589793 rad + pos: -7.5,6.5 + parent: 2 + type: Transform + - uid: 725 + components: + - rot: 3.141592653589793 rad + pos: 4.5,9.5 + parent: 2 + type: Transform + - uid: 726 + components: + - rot: 3.141592653589793 rad + pos: -7.5,9.5 + parent: 2 + type: Transform + - uid: 727 + components: + - rot: 3.141592653589793 rad + pos: -7.5,21.5 + parent: 2 + type: Transform + - uid: 728 + components: + - rot: 3.141592653589793 rad + pos: 4.5,21.5 + parent: 2 + type: Transform + - uid: 729 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 2 + type: Transform + - uid: 730 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-6.5 + parent: 2 + type: Transform + - uid: 731 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 2 + type: Transform + - uid: 732 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 2 + type: Transform + - uid: 733 + components: + - rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 2 + type: Transform + - uid: 734 + components: + - rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 2 + type: Transform + - uid: 735 + components: + - rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 2 + type: Transform + - uid: 736 components: - rot: 3.141592653589793 rad - pos: -0.5,-11.5 + pos: -7.5,1.5 parent: 2 type: Transform - proto: Chair @@ -1766,11 +2287,6 @@ entities: type: Transform - proto: ClosetEmergencyFilledRandom entities: - - uid: 312 - components: - - pos: 3.5,4.5 - parent: 2 - type: Transform - uid: 313 components: - pos: -6.5,11.5 @@ -1806,6 +2322,11 @@ entities: type: Transform - proto: ClosetFireFilled entities: + - uid: 65 + components: + - pos: 3.5,4.5 + parent: 2 + type: Transform - uid: 358 components: - pos: -5.5,-11.5 @@ -1848,6 +2369,13 @@ entities: - pos: -0.5,20.5 parent: 2 type: Transform +- proto: ComputerTelevision + entities: + - uid: 700 + components: + - pos: -4.5,16.5 + parent: 2 + type: Transform - proto: CrayonBox entities: - uid: 659 @@ -1863,6 +2391,13 @@ entities: pos: 3.5,9.5 parent: 2 type: Transform +- proto: DogBed + entities: + - uid: 432 + components: + - pos: -1.5,18.5 + parent: 2 + type: Transform - proto: DrinkVodkaGlass entities: - uid: 412 @@ -1909,6 +2444,11 @@ entities: pos: -6.5,-10.5 parent: 2 type: Transform + - uid: 435 + components: + - pos: -7.5,19.5 + parent: 2 + type: Transform - proto: FireAxeCabinetFilled entities: - uid: 255 @@ -2495,60 +3035,44 @@ entities: pos: 3.5,11.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 414 components: - rot: -1.5707963267948966 rad pos: 3.5,-7.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 415 components: - pos: 3.5,4.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 416 components: - pos: -6.5,4.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 417 components: - rot: 3.141592653589793 rad pos: -6.5,11.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 418 components: - rot: 1.5707963267948966 rad pos: -6.5,-7.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 419 components: - pos: 3.5,19.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 420 components: - pos: -6.5,19.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - proto: GeneratorBasic15kW entities: - uid: 344 @@ -2755,6 +3279,24 @@ entities: - pos: -7.5,-5.5 parent: 2 type: Transform + - uid: 312 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 2 + type: Transform + - uid: 377 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 2 + type: Transform + - uid: 383 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 2 + type: Transform - uid: 443 components: - pos: -6.5,9.5 @@ -2846,6 +3388,25 @@ entities: - pos: 0.013036251,9.72162 parent: 2 type: Transform +- proto: Paper + entities: + - uid: 67 + components: + - pos: -2.614562,-5.5278893 + parent: 2 + type: Transform + - uid: 449 + components: + - pos: -2.7429833,-5.3811216 + parent: 2 + type: Transform +- proto: Pen + entities: + - uid: 363 + components: + - pos: -2.461,-5.256098 + parent: 2 + type: Transform - proto: PlasmaReinforcedWindowDirectional entities: - uid: 345 @@ -2964,228 +3525,116 @@ entities: type: Transform - proto: Poweredlight entities: - - uid: 178 - components: - - pos: 0.5,16.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 361 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-1.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 363 + - uid: 68 components: - rot: 3.141592653589793 rad - pos: -3.5,-1.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 364 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,9.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 365 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,6.5 + pos: -1.5,-1.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 368 components: - pos: -5.5,20.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 369 components: - pos: 2.5,20.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 370 components: - pos: 3.5,19.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 371 components: - pos: -6.5,19.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 372 - components: - - pos: -3.5,-3.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 373 - components: - - pos: 0.5,-3.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - uid: 374 components: - rot: 3.141592653589793 rad pos: 0.5,-7.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 375 components: - rot: 3.141592653589793 rad pos: -3.5,-7.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 376 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-9.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 377 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-9.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - uid: 378 components: - rot: -1.5707963267948966 rad pos: -5.5,1.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 379 components: - rot: 1.5707963267948966 rad pos: -5.5,9.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 380 components: - rot: 1.5707963267948966 rad pos: -5.5,6.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 381 components: - rot: 1.5707963267948966 rad pos: -6.5,16.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 382 components: - rot: -1.5707963267948966 rad pos: 3.5,16.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 383 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-11.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 384 - components: - - pos: -1.5,20.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - uid: 385 components: - rot: 1.5707963267948966 rad pos: -0.5,6.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 386 components: - rot: 1.5707963267948966 rad pos: -0.5,9.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 387 components: - rot: 1.5707963267948966 rad pos: 2.5,1.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 388 components: - pos: -1.5,4.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 447 components: - rot: 1.5707963267948966 rad pos: -5.5,-9.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 449 - components: - - pos: -3.5,16.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - uid: 636 components: - rot: -1.5707963267948966 rad pos: 2.5,-9.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound +- proto: RandomDrinkGlass + entities: + - uid: 372 + components: + - pos: -2.5,14.5 + parent: 2 + type: Transform - proto: RollerBedSpawnFolded entities: - uid: 438 @@ -3193,6 +3642,14 @@ entities: - pos: 2.4661305,9.648575 parent: 2 type: Transform +- proto: ShotGunCabinetFilled + entities: + - uid: 187 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 2 + type: Transform - proto: ShuttleWindow entities: - uid: 17 @@ -3409,6 +3866,106 @@ entities: - pos: -6.5,20.5 parent: 2 type: Transform + - uid: 361 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 2 + type: Transform + - uid: 373 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 2 + type: Transform + - uid: 376 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 2 + type: Transform +- proto: SignalButtonDirectional + entities: + - uid: 718 + components: + - rot: 3.141592653589793 rad + pos: -1.5,17.5 + parent: 2 + type: Transform + - linkedPorts: + 705: + - Pressed: Toggle + 707: + - Pressed: Toggle + 706: + - Pressed: Toggle + 708: + - Pressed: Toggle + 709: + - Pressed: Toggle + 710: + - Pressed: Toggle + 711: + - Pressed: Toggle + 712: + - Pressed: Toggle + 713: + - Pressed: Toggle + 714: + - Pressed: Toggle + 716: + - Pressed: Toggle + 715: + - Pressed: Toggle + 717: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignBridge + entities: + - uid: 66 + components: + - pos: 3.5,17.5 + parent: 2 + type: Transform + - uid: 364 + components: + - pos: -6.5,17.5 + parent: 2 + type: Transform +- proto: SignDoors + entities: + - uid: 178 + components: + - pos: 4.5,-5.5 + parent: 2 + type: Transform + - uid: 180 + components: + - pos: -7.5,2.5 + parent: 2 + type: Transform + - uid: 365 + components: + - pos: -7.5,-5.5 + parent: 2 + type: Transform + - uid: 694 + components: + - pos: 4.5,2.5 + parent: 2 + type: Transform +- proto: SignElectricalMed + entities: + - uid: 701 + components: + - pos: 3.5,-8.5 + parent: 2 + type: Transform + - uid: 702 + components: + - pos: -6.5,-8.5 + parent: 2 + type: Transform - proto: SignEngine entities: - uid: 334 @@ -3423,6 +3980,20 @@ entities: - pos: -4.5,-8.5 parent: 2 type: Transform +- proto: SignMedical + entities: + - uid: 704 + components: + - pos: -1.5,6.5 + parent: 2 + type: Transform +- proto: SignSecurity + entities: + - uid: 703 + components: + - pos: -4.5,2.5 + parent: 2 + type: Transform - proto: SMESBasic entities: - uid: 343 @@ -3446,12 +4017,6 @@ entities: type: Transform - proto: StoolBar entities: - - uid: 180 - components: - - rot: 3.141592653589793 rad - pos: -4.5,13.5 - parent: 2 - type: Transform - uid: 181 components: - rot: 3.141592653589793 rad @@ -3482,12 +4047,6 @@ entities: pos: 0.5,13.5 parent: 2 type: Transform - - uid: 187 - components: - - rot: 3.141592653589793 rad - pos: 1.5,13.5 - parent: 2 - type: Transform - proto: SubstationBasic entities: - uid: 554 @@ -3972,11 +4531,6 @@ entities: - pos: -4.5,-2.5 parent: 2 type: Transform - - uid: 57 - components: - - pos: -3.5,-2.5 - parent: 2 - type: Transform - uid: 58 components: - pos: 1.5,1.5 @@ -4012,26 +4566,6 @@ entities: - pos: -4.5,-0.5 parent: 2 type: Transform - - uid: 65 - components: - - pos: -1.5,-2.5 - parent: 2 - type: Transform - - uid: 66 - components: - - pos: -0.5,-2.5 - parent: 2 - type: Transform - - uid: 67 - components: - - pos: -2.5,-2.5 - parent: 2 - type: Transform - - uid: 68 - components: - - pos: 0.5,-2.5 - parent: 2 - type: Transform - uid: 72 components: - pos: 1.5,-8.5 @@ -4309,11 +4843,23 @@ entities: - pos: 3.5,17.5 parent: 2 type: Transform + - uid: 337 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 2 + type: Transform - uid: 350 components: - pos: 4.5,-2.5 parent: 2 type: Transform + - uid: 384 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 2 + type: Transform - uid: 389 components: - pos: -7.5,-2.5 @@ -4362,6 +4908,14 @@ entities: pos: -2.5,-0.5 parent: 2 type: Transform +- proto: WindowFrostedDirectional + entities: + - uid: 353 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 2 + type: Transform - proto: WindowReinforcedDirectional entities: - uid: 326 @@ -4388,6 +4942,12 @@ entities: pos: -2.5,0.5 parent: 2 type: Transform + - uid: 336 + components: + - rot: 3.141592653589793 rad + pos: 1.5,15.5 + parent: 2 + type: Transform - uid: 349 components: - rot: 1.5707963267948966 rad @@ -4424,12 +4984,4 @@ entities: pos: 2.5,-4.5 parent: 2 type: Transform -- proto: WindowTintedDirectional - entities: - - uid: 353 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-9.5 - parent: 2 - type: Transform ... diff --git a/Resources/Maps/Shuttles/emergency_transit.yml b/Resources/Maps/Shuttles/emergency_transit.yml index c8e2576330..b6347cd879 100644 --- a/Resources/Maps/Shuttles/emergency_transit.yml +++ b/Resources/Maps/Shuttles/emergency_transit.yml @@ -1,16 +1,20 @@ meta: - format: 5 + format: 6 postmapinit: false tilemap: 0: Space - 23: FloorDark - 32: FloorDarkPlastic - 59: FloorReinforced - 75: FloorSteelMono - 79: FloorTechMaint - 86: FloorWhiteMini - 94: Lattice - 95: Plating + 29: FloorDark + 34: FloorDarkMono + 38: FloorDarkPlastic + 64: FloorMetalDiamond + 77: FloorReinforced + 100: FloorSteelMono + 104: FloorTechMaint + 108: FloorWhite + 113: FloorWhiteMono + 114: FloorWhiteOffset + 120: Lattice + 121: Plating entities: - proto: "" entities: @@ -24,22 +28,28 @@ entities: - chunks: 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF8AAAAgAAABIAAAAxcAAAMXAAABFwAAACAAAAE7AAAAOwAAADsAAAAXAAABFwAAAV8AAABfAAAAAAAAAAAAAABfAAAASwAAABcAAAAXAAACFwAAABcAAAFfAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAAFwAAAgAAAAAAAAAAXwAAAEsAAAEXAAABFwAAARcAAAIXAAADFwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAABcAAAEAAAAAAAAAAF8AAABLAAAAFwAAABcAAAAXAAABFwAAA18AAAAXAAABFwAAAhcAAABLAAAASwAAABcAAAAXAAADAAAAAAAAAABfAAAAXwAAAF8AAAAXAAAAFwAAAhcAAAJfAAAAIAAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAADJgAAAAACIgAAAAACIgAAAAADIgAAAAACJgAAAAABTQAAAAAATQAAAAAATQAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAZAAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAZAAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAZAAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAZAAAAAACZAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADIgAAAAACIgAAAAADeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAXgAAAF8AAABLAAACFwAAAEsAAAJfAAAAFwAAARcAAAEXAAAAFwAAARcAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAASwAAABcAAABLAAABXwAAABcAAAAXAAAAFwAAAxcAAAAXAAADXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEsAAAAXAAACSwAAAl8AAAAXAAACFwAAAxcAAAEXAAAAFwAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABLAAADFwAAAEsAAAFfAAAAFwAAABcAAAEXAAABFwAAARcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAASwAAARcAAANLAAABXwAAABcAAAMXAAABFwAAAhcAAAMXAAACXwAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAABcAAAIXAAADFwAAAyAAAAAgAAAAFwAAAV8AAABfAAAAIAAAAF8AAABfAAAAAAAAAAAAAABPAAAAFwAAARcAAAAXAAAAFwAAAxcAAAIXAAADFwAAARcAAAAXAAAAFwAAABcAAAIXAAADFwAAAwAAAAAAAAAAXwAAABcAAAIXAAAAFwAAABcAAAEXAAAAFwAAARcAAAAXAAABFwAAARcAAAAXAAAAFwAAABcAAAAAAAAAAAAAAE8AAAAXAAAAFwAAARcAAAMXAAACSwAAAEsAAAEXAAABSwAAAksAAAIXAAAAFwAAAxcAAAIXAAADAAAAAAAAAABfAAAAXwAAAF8AAAAXAAACXwAAACAAAAEgAAADIAAAAV8AAABfAAAAIAAAAhcAAANfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAABfAAAAFwAAAl8AAABWAAABVgAAAlYAAAJWAAABVgAAAF8AAAAXAAABXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAANfAAAAVgAAAlYAAAJWAAABVgAAA1YAAAFfAAAAFwAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAAAXAAACIAAAAFYAAABWAAADVgAAAlYAAABWAAADXwAAABcAAAFfAAAAXgAAAAAAAAAAAAAAAAAAAF8AAAAgAAABIAAAA18AAAAgAAACXwAAAF8AAABfAAAAXwAAAF8AAAAgAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAgAAACFwAAAxcAAAEXAAAAFwAAAhcAAAEXAAADFwAAARcAAAAXAAADFwAAAxcAAANfAAAAAAAAAAAAAAAAAAAAIAAAAiAAAAEXAAADFwAAARcAAAAXAAABFwAAAxcAAAAXAAACFwAAARcAAAMgAAACIAAAAw== + tiles: AAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAZAAAAAACHQAAAAACZAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAIgAAAAACIgAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAZAAAAAADHQAAAAADZAAAAAAAeQAAAAAAZAAAAAAAHQAAAAADeQAAAAAAIgAAAAABIgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAZAAAAAADHQAAAAABZAAAAAAAeQAAAAAAZAAAAAADHQAAAAADeQAAAAAAIgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAZAAAAAAAHQAAAAABZAAAAAADeQAAAAAAZAAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAZAAAAAADHQAAAAACZAAAAAADeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADIgAAAAABIgAAAAADJgAAAAABJgAAAAADIgAAAAADeQAAAAAAeQAAAAAAJgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAIgAAAAACIgAAAAABIgAAAAADIgAAAAADIgAAAAAAIgAAAAADIgAAAAABIgAAAAABIgAAAAADHQAAAAADHQAAAAACAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAABIgAAAAACIgAAAAACZAAAAAACZAAAAAAAIgAAAAAAZAAAAAAAZAAAAAACIgAAAAACIgAAAAADHQAAAAACHQAAAAADAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAJgAAAAACJgAAAAABJgAAAAABeQAAAAAAeQAAAAAAJgAAAAACIgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAACcQAAAAABeQAAAAAAHQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAbAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACJgAAAAAAbAAAAAADbAAAAAACbAAAAAABbAAAAAAAcQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAABIgAAAAACeQAAAAAAJgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAACJgAAAAABHQAAAAADZAAAAAADZAAAAAACHQAAAAAAZAAAAAACHQAAAAABZAAAAAACZAAAAAACHQAAAAACJgAAAAADJgAAAAAA + version: 6 0,0: ind: 0,0 - tiles: AAAAAAAAAAAAAAAAXgAAACAAAAIgAAAAFwAAABcAAAAXAAAAFwAAAhcAAAAXAAABFwAAAyAAAAMgAAACXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAIAAAAyAAAAAgAAABIAAAACAAAAMgAAAAIAAAAyAAAAMgAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAJgAAAAACJgAAAAABIgAAAAABIgAAAAACIgAAAAABIgAAAAABIgAAAAADIgAAAAADIgAAAAACJgAAAAACJgAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAJgAAAAACJgAAAAADJgAAAAAAJgAAAAABJgAAAAADJgAAAAAAJgAAAAAAJgAAAAABJgAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 1,-1: ind: 1,-1 - tiles: XgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 type: MapGrid - type: Broadphase - - angularDamping: 0.05 + - bodyStatus: InAir + angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic @@ -55,40 +65,13 @@ entities: - chunkCollection: version: 2 nodes: - - node: - angle: -7.853981633974483 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 62: 9,-19 - - node: - angle: -6.283185307179586 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 63: 5,-2 - 64: 13,-2 - - node: - angle: -4.71238898038469 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 60: 15,-10 - 61: 15,-8 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 58: 3,-10 - 59: 3,-8 - node: angle: -6.283185307179586 rad color: '#FFFFFFFF' id: Bot decals: - 65: 12,-18 - 66: 13,-18 + 21: 12,-18 + 22: 13,-18 - node: color: '#FFFFFFFF' id: Bot @@ -113,109 +96,224 @@ entities: 17: 9,-13 18: 9,-14 19: 9,-15 - 67: 7,-12 - 68: 7,-13 - 69: 7,-14 - 70: 7,-15 - 71: 7,-16 + 23: 7,-12 + 24: 7,-13 + 25: 7,-14 + 26: 7,-15 + 27: 7,-16 - node: - angle: -3.141592653589793 rad - color: '#B02E26FF' + color: '#00FFFF6F' + id: BotGreyscale + decals: + 52: 11,-6 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: BotLeft + decals: + 64: 3,-9 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: BotRight + decals: + 65: 15,-9 + - node: + color: '#52B4E996' id: BrickTileWhiteCornerNw decals: - 28: 13,-16 + 32: 7,-4 - node: - angle: -3.141592653589793 rad - color: '#B02E26FF' + color: '#52B4E996' id: BrickTileWhiteCornerSw decals: - 27: 13,-12 + 33: 7,-6 - node: - angle: -3.141592653589793 rad - color: '#3AB3DAFF' + color: '#FFFFFFFF' + id: BrickTileWhiteEndE + decals: + 28: 10,-5 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndW + decals: + 29: 8,-5 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerNe + decals: + 49: 7,-6 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerSe + decals: + 48: 7,-4 + - node: + color: '#52B4E996' id: BrickTileWhiteLineE decals: - 21: 7,-6 - 22: 7,-5 - 23: 7,-4 + 41: 7,-5 - node: - angle: -3.141592653589793 rad - color: '#F9801DFF' + color: '#EFB34196' id: BrickTileWhiteLineE decals: - 55: 9,-19 - 56: 9,-20 - 57: 9,-18 + 91: 7,-19 + 92: 7,-18 + 93: 7,-20 + 94: 7,-21 + 118: 13,-20 + 119: 13,-19 - node: - angle: -3.141592653589793 rad - color: '#3C44AAFF' + color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 40: 4,-2 - 41: 5,-2 - 42: 6,-2 - 43: 7,-2 - 44: 8,-2 - 45: 9,-2 - 46: 10,-2 - 47: 11,-2 - 48: 11,-2 - 49: 12,-2 - 50: 13,-2 - 51: 14,-2 + 95: 5,-4 + 96: 13,-4 + 108: 8,-1 + 109: 10,-1 + 110: 13,-1 + 111: 5,-1 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 34: 8,-4 + 35: 9,-4 + 36: 10,-4 + 42: 8,-6 + 43: 9,-6 + 44: 10,-6 - node: angle: -3.141592653589793 rad color: '#B02E26FF' id: BrickTileWhiteLineN decals: - 29: 12,-16 - 30: 11,-16 - 31: 10,-16 - 32: 9,-16 + 20: 11,-16 - node: - angle: -3.141592653589793 rad - color: '#3AB3DAFF' + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 67: 9,-12 + 68: 10,-12 + 69: 11,-12 + 70: 12,-12 + 71: 13,-12 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 31: 9,-5 + - node: + color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 20: 9,-8 + 97: 4,-2 + 98: 5,-2 + 99: 6,-2 + 100: 7,-2 + 101: 8,-2 + 102: 9,-2 + 103: 10,-2 + 104: 11,-2 + 105: 12,-2 + 106: 13,-2 + 107: 14,-2 - node: - angle: -3.141592653589793 rad - color: '#3C44AAFF' + color: '#52B4E996' id: BrickTileWhiteLineS decals: - 52: 5,-4 - 53: 13,-4 + 37: 8,-6 + 38: 9,-6 + 39: 10,-6 + 45: 8,-4 + 46: 9,-4 + 47: 10,-4 - node: - angle: -3.141592653589793 rad - color: '#B02E26FF' + color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 33: 12,-12 - 34: 11,-12 - 35: 10,-12 - 36: 9,-12 + 72: 10,-16 + 73: 9,-16 - node: - angle: -3.141592653589793 rad - color: '#3AB3DAFF' - id: BrickTileWhiteLineW + color: '#FFFFFFFF' + id: BrickTileWhiteLineS decals: - 24: 11,-6 - 25: 11,-5 - 26: 11,-4 + 30: 9,-5 - node: - angle: -3.141592653589793 rad - color: '#B02E26FF' + color: '#52B4E996' id: BrickTileWhiteLineW decals: - 37: 13,-13 - 38: 13,-14 - 39: 13,-15 + 40: 7,-5 - node: - angle: -3.141592653589793 rad - color: '#F9801DFF' + color: '#EFB34196' id: BrickTileWhiteLineW decals: - 54: 7,-19 + 120: 9,-20 + 121: 9,-19 + 122: 9,-18 + - node: + color: '#D4D4D40C' + id: CheckerNESW + decals: + 74: 6,-12 + 75: 6,-13 + 76: 6,-14 + 77: 6,-15 + 78: 6,-16 + 79: 14,-8 + 80: 14,-9 + 81: 14,-10 + 82: 4,-8 + 83: 4,-9 + 84: 4,-10 + 85: 6,-18 + 86: 6,-19 + 87: 5,-19 + 88: 5,-20 + 89: 6,-20 + 90: 5,-18 + - node: + color: '#D4D4D40C' + id: CheckerNWSE + decals: + 112: 10,-20 + 113: 10,-19 + 114: 11,-19 + 115: 12,-19 + 116: 12,-20 + 117: 11,-20 + - node: + color: '#D4D4D428' + id: Delivery + decals: + 53: 5,-17 + 54: 6,-17 + 55: 7,-17 + 56: 7,-11 + 57: 6,-11 + 58: 5,-11 + 59: 5,-7 + 60: 13,-7 + - node: + color: '#00FFFF6F' + id: DeliveryGreyscale + decals: + 50: 11,-5 + 51: 11,-4 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 63: 15,-10 + 66: 15,-8 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 61: 3,-8 + 62: 3,-10 type: DecalGrid - type: RadiationGridResistance - version: 2 @@ -225,6 +323,7 @@ entities: 0: 65535 0,-6: 0: 51200 + 1: 1024 0,-5: 0: 52428 1,-6: @@ -239,14 +338,18 @@ entities: 0: 65535 4,-6: 0: 4096 + 1: 256 4,-5: 0: 4369 0,-4: 0: 8 + 1: 17476 0,-3: 0: 52424 + 1: 4 0,-2: 0: 2252 + 1: 32768 0,-1: 0: 34952 1,-4: @@ -271,22 +374,27 @@ entities: 0: 65535 3,-2: 0: 32767 + 1: 32768 3,-1: 0: 65535 0,0: 0: 8 + 1: 128 1,0: 0: 255 2,0: 0: 255 3,0: 0: 127 + 1: 128 4,-3: 0: 4368 + 1: 1 4,-2: 0: 17 4,-4: 0: 1 + 1: 4368 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -303,6 +411,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 type: GridAtmosphere - type: GasTileOverlay @@ -468,11 +591,108 @@ entities: pos: 11.5,-3.5 parent: 2 type: Transform +- proto: BlastDoorOpen + entities: + - uid: 373 + components: + - pos: 9.5,1.5 + parent: 2 + type: Transform + - links: + - 604 + type: DeviceLinkSink + - uid: 374 + components: + - pos: 6.5,1.5 + parent: 2 + type: Transform + - links: + - 604 + type: DeviceLinkSink + - uid: 379 + components: + - pos: 7.5,1.5 + parent: 2 + type: Transform + - links: + - 604 + type: DeviceLinkSink + - uid: 380 + components: + - pos: 8.5,1.5 + parent: 2 + type: Transform + - links: + - 604 + type: DeviceLinkSink + - uid: 429 + components: + - pos: 11.5,1.5 + parent: 2 + type: Transform + - links: + - 604 + type: DeviceLinkSink + - uid: 436 + components: + - pos: 10.5,1.5 + parent: 2 + type: Transform + - links: + - 604 + type: DeviceLinkSink + - uid: 437 + components: + - pos: 5.5,1.5 + parent: 2 + type: Transform + - links: + - 604 + type: DeviceLinkSink + - uid: 565 + components: + - pos: 5.5,0.5 + parent: 2 + type: Transform + - links: + - 604 + type: DeviceLinkSink + - uid: 601 + components: + - pos: 12.5,1.5 + parent: 2 + type: Transform + - links: + - 604 + type: DeviceLinkSink + - uid: 602 + components: + - pos: 13.5,1.5 + parent: 2 + type: Transform + - links: + - 604 + type: DeviceLinkSink + - uid: 603 + components: + - pos: 13.5,0.5 + parent: 2 + type: Transform + - links: + - 604 + type: DeviceLinkSink +- proto: BoxBodyBag + entities: + - uid: 591 + components: + - pos: 8.497858,-3.4616704 + parent: 2 + type: Transform - proto: BoxSyringe entities: - - uid: 579 + - uid: 370 components: - - pos: 8.410651,-3.2939768 + - pos: 7.4030514,-5.3416786 parent: 2 type: Transform - proto: BrigTimer @@ -489,8 +709,6 @@ entities: - pos: 11.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 21 components: - pos: 11.5,-5.5 @@ -501,8 +719,6 @@ entities: - pos: 8.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 23 components: - pos: 15.5,-17.5 @@ -528,8 +744,6 @@ entities: - pos: 8.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 28 components: - pos: 7.5,-17.5 @@ -630,11 +844,9 @@ entities: - pos: 9.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 48 components: - - pos: 8.5,-18.5 + - pos: 11.5,-17.5 parent: 2 type: Transform - uid: 49 @@ -652,8 +864,6 @@ entities: - pos: 8.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 52 components: - pos: 7.5,-2.5 @@ -664,8 +874,6 @@ entities: - pos: 6.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 54 components: - pos: 5.5,-2.5 @@ -686,22 +894,16 @@ entities: - pos: 14.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 58 components: - pos: 15.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 59 components: - pos: 16.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 60 components: - pos: 16.5,-9.5 @@ -712,8 +914,6 @@ entities: - pos: 16.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 62 components: - pos: 16.5,-7.5 @@ -724,22 +924,16 @@ entities: - pos: 16.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 64 components: - pos: 15.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 65 components: - pos: 14.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 66 components: - pos: 13.5,-6.5 @@ -795,8 +989,6 @@ entities: - pos: 2.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 77 components: - pos: 2.5,-9.5 @@ -807,22 +999,16 @@ entities: - pos: 2.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 79 components: - pos: 3.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 80 components: - pos: 4.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 81 components: - pos: 5.5,-10.5 @@ -838,8 +1024,6 @@ entities: - pos: 4.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 84 components: - pos: 9.5,-10.5 @@ -870,15 +1054,11 @@ entities: - pos: 11.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 90 components: - pos: 12.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 91 components: - pos: 13.5,-11.5 @@ -894,8 +1074,6 @@ entities: - pos: 9.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 94 components: - pos: 14.5,-17.5 @@ -926,15 +1104,11 @@ entities: - pos: 3.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 100 components: - pos: 2.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 101 components: - pos: 13.5,-8.5 @@ -945,22 +1119,16 @@ entities: - pos: 3.5,-5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 103 components: - pos: 3.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 104 components: - pos: 3.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 105 components: - pos: 4.5,-0.5 @@ -976,15 +1144,11 @@ entities: - pos: 4.5,1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 108 components: - pos: 3.5,0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 109 components: - pos: 13.5,-1.5 @@ -1015,50 +1179,36 @@ entities: - pos: 15.5,0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 115 components: - pos: 15.5,-5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 116 components: - pos: 15.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 117 components: - pos: 15.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 118 components: - pos: 15.5,-1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 119 components: - pos: 14.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 120 components: - pos: 14.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 121 components: - pos: 13.5,-15.5 @@ -1074,8 +1224,6 @@ entities: - pos: 4.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 124 components: - pos: 5.5,-15.5 @@ -1106,15 +1254,11 @@ entities: - pos: 3.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 130 components: - pos: 3.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 131 components: - pos: 3.5,-20.5 @@ -1135,78 +1279,56 @@ entities: - pos: 7.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 135 components: - pos: 8.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 136 components: - pos: 3.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 428 components: - pos: 14.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 471 components: - pos: 15.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 549 components: - pos: 10.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 550 components: - pos: 11.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 551 components: - pos: 12.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 552 components: - pos: 13.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 553 components: - pos: 14.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 554 components: - pos: 14.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 555 components: - pos: 14.5,-19.5 @@ -1217,8 +1339,6 @@ entities: - pos: 15.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 562 components: - pos: 10.5,0.5 @@ -1236,11 +1356,9 @@ entities: type: Transform - uid: 570 components: - - pos: 12.5,-16.5 + - pos: 10.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 571 components: - pos: 12.5,-17.5 @@ -1261,6 +1379,11 @@ entities: - pos: 12.5,-20.5 parent: 2 type: Transform + - uid: 644 + components: + - pos: 9.5,-17.5 + parent: 2 + type: Transform - proto: CableHV entities: - uid: 137 @@ -1290,29 +1413,21 @@ entities: - pos: 8.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 141 components: - pos: 8.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 142 components: - pos: 8.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 143 components: - pos: 8.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 144 components: - pos: 8.5,-10.5 @@ -1323,8 +1438,6 @@ entities: - pos: 8.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 146 components: - pos: 15.5,-17.5 @@ -1335,43 +1448,31 @@ entities: - pos: 12.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 148 components: - pos: 14.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 149 components: - pos: 13.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 150 components: - pos: 12.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 151 components: - pos: 11.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 152 components: - pos: 10.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 153 components: - pos: 9.5,-16.5 @@ -1382,22 +1483,16 @@ entities: - pos: 8.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 155 components: - pos: 8.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 156 components: - pos: 11.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 157 components: - pos: 10.5,-10.5 @@ -1418,20 +1513,180 @@ entities: - pos: 15.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound +- proto: Catwalk + entities: + - uid: 617 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 2 + type: Transform + - uid: 618 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 2 + type: Transform + - uid: 619 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 2 + type: Transform + - uid: 620 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 2 + type: Transform + - uid: 621 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-15.5 + parent: 2 + type: Transform + - uid: 622 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-15.5 + parent: 2 + type: Transform + - uid: 623 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-11.5 + parent: 2 + type: Transform + - uid: 624 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-11.5 + parent: 2 + type: Transform + - uid: 625 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-21.5 + parent: 2 + type: Transform + - uid: 626 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-21.5 + parent: 2 + type: Transform + - uid: 627 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-21.5 + parent: 2 + type: Transform + - uid: 628 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-21.5 + parent: 2 + type: Transform + - uid: 629 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 2 + type: Transform + - uid: 630 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 2 + type: Transform + - uid: 631 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-5.5 + parent: 2 + type: Transform + - uid: 632 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 2 + type: Transform + - uid: 633 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,0.5 + parent: 2 + type: Transform + - uid: 634 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,1.5 + parent: 2 + type: Transform + - uid: 635 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,1.5 + parent: 2 + type: Transform + - uid: 636 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 2 + type: Transform + - uid: 637 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 2 + type: Transform + - uid: 638 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + type: Transform + - uid: 639 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 2 + type: Transform + - uid: 640 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 2 + type: Transform + - uid: 641 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-7.5 + parent: 2 + type: Transform + - uid: 642 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-9.5 + parent: 2 + type: Transform - proto: ChairOfficeLight entities: - - uid: 161 + - uid: 162 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-12.5 + parent: 2 + type: Transform + - uid: 371 components: - - rot: 3.141592653589793 rad - pos: 8.5,-5.5 + - pos: 7.5,-4.5 parent: 2 type: Transform - - uid: 162 + - uid: 372 components: - - rot: -1.5707963267948966 rad - pos: 13.5,-12.5 + - pos: 8.5,-4.5 parent: 2 type: Transform - proto: ChairPilotSeat @@ -1671,13 +1926,6 @@ entities: - pos: 10.5,0.5 parent: 2 type: Transform -- proto: CrayonBox - entities: - - uid: 591 - components: - - pos: 8.623848,-9.36953 - parent: 2 - type: Transform - proto: DefibrillatorCabinetFilled entities: - uid: 1 @@ -1694,9 +1942,9 @@ entities: type: Transform - proto: EpinephrineChemistryBottle entities: - - uid: 578 + - uid: 247 components: - - pos: 8.598151,-3.4971018 + - pos: 7.632218,-5.5291786 parent: 2 type: Transform - proto: ExtinguisherCabinetFilled @@ -1741,6 +1989,14 @@ entities: - 200 - 203 type: DeviceList +- proto: FireAxeCabinetFilled + entities: + - uid: 605 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-2.5 + parent: 2 + type: Transform - proto: Firelock entities: - uid: 197 @@ -1896,8 +2152,6 @@ entities: pos: 8.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 215 components: - rot: -1.5707963267948966 rad @@ -1958,8 +2212,6 @@ entities: pos: 16.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 575 components: - rot: 1.5707963267948966 rad @@ -2076,8 +2328,6 @@ entities: pos: 8.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 243 components: - pos: 5.5,-3.5 @@ -2098,11 +2348,6 @@ entities: - pos: 5.5,-6.5 parent: 2 type: Transform - - uid: 247 - components: - - pos: 5.5,-7.5 - parent: 2 - type: Transform - uid: 248 components: - pos: 5.5,-9.5 @@ -2188,8 +2433,6 @@ entities: pos: 8.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 263 components: - pos: 7.5,-13.5 @@ -2207,7 +2450,8 @@ entities: type: Transform - uid: 266 components: - - pos: 7.5,-9.5 + - rot: 1.5707963267948966 rad + pos: 5.5,-9.5 parent: 2 type: Transform - uid: 267 @@ -2282,14 +2526,18 @@ entities: pos: 5.5,-2.5 parent: 2 type: Transform + - uid: 375 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 2 + type: Transform - uid: 599 components: - rot: 3.141592653589793 rad pos: 16.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - proto: GasPipeTJunction entities: - uid: 279 @@ -2339,6 +2587,18 @@ entities: pos: 12.5,-8.5 parent: 2 type: Transform + - uid: 343 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 2 + type: Transform + - uid: 344 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 2 + type: Transform - proto: GasPort entities: - uid: 287 @@ -2354,47 +2614,41 @@ entities: - pos: 6.5,-19.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 289 components: - rot: -1.5707963267948966 rad pos: 9.5,-11.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 290 components: - rot: 1.5707963267948966 rad pos: 4.5,-1.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 291 components: - rot: -1.5707963267948966 rad pos: 13.5,-19.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 292 components: - pos: 6.5,-7.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound + - uid: 588 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 2 + type: Transform - uid: 598 components: - rot: -1.5707963267948966 rad pos: 6.5,-1.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - proto: GasVentScrubber entities: - uid: 294 @@ -2403,38 +2657,34 @@ entities: pos: 7.5,-19.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 295 components: - rot: -1.5707963267948966 rad pos: 14.5,-1.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 296 components: - rot: -1.5707963267948966 rad pos: 13.5,-18.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 297 components: - pos: 12.5,-7.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 298 components: - pos: 13.5,-11.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound + - uid: 583 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 2 + type: Transform - proto: GeneratorBasic15kW entities: - uid: 138 @@ -2672,6 +2922,12 @@ entities: pos: 16.5,-19.5 parent: 2 type: Transform + - uid: 579 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-13.5 + parent: 2 + type: Transform - uid: 580 components: - rot: -1.5707963267948966 rad @@ -2690,12 +2946,6 @@ entities: pos: 11.5,-15.5 parent: 2 type: Transform - - uid: 583 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-13.5 - parent: 2 - type: Transform - proto: Gyroscope entities: - uid: 341 @@ -2704,27 +2954,20 @@ entities: pos: 14.5,-17.5 parent: 2 type: Transform + - enabled: False + type: Thruster - proto: InflatableDoorStack entities: - - uid: 342 + - uid: 367 components: - - rot: -1.5707963267948966 rad - pos: 11.6196575,-17.425388 + - pos: 11.490703,-17.425648 parent: 2 type: Transform - proto: InflatableWallStack entities: - - uid: 343 - components: - - rot: -1.5707963267948966 rad - pos: 11.218833,-17.441013 - parent: 2 - type: Transform -- proto: LockerMedicineFilled - entities: - - uid: 344 + - uid: 348 components: - - pos: 7.5,-5.5 + - pos: 11.178203,-17.415234 parent: 2 type: Transform - proto: LockerSecurityFilled @@ -2748,18 +2991,16 @@ entities: type: Transform - proto: MedkitBruteFilled entities: - - uid: 347 + - uid: 611 components: - - rot: -1.5707963267948966 rad - pos: 8.954886,-3.3356583 + - pos: 8.455134,-5.4458456 parent: 2 type: Transform -- proto: MedkitOxygenFilled +- proto: MedkitFilled entities: - - uid: 348 + - uid: 610 components: - - rot: -1.5707963267948966 rad - pos: 9.470511,-3.4919083 + - pos: 8.028051,-5.352095 parent: 2 type: Transform - proto: PlasmaReinforcedWindowDirectional @@ -2864,6 +3105,12 @@ entities: type: Transform - proto: PowerCellRecharger entities: + - uid: 218 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,0.5 + parent: 2 + type: Transform - uid: 364 components: - pos: 10.5,-17.5 @@ -2871,156 +3118,85 @@ entities: type: Transform - proto: Poweredlight entities: - - uid: 367 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-9.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - uid: 368 components: - rot: 3.141592653589793 rad pos: 4.5,-19.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 369 components: - pos: 10.5,-17.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 370 - components: - - pos: 14.5,-17.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 371 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-11.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 372 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-15.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 373 - components: - - pos: 5.5,-0.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 374 - components: - - pos: 13.5,-0.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 375 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-11.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - uid: 376 components: - rot: 1.5707963267948966 rad - pos: 5.5,-15.5 + pos: 5.5,-13.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 377 components: - - pos: 7.5,-3.5 + - pos: 5.5,-0.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 378 components: - - pos: 11.5,-3.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 379 - components: - - pos: 12.5,0.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 380 - components: - - pos: 6.5,0.5 + - pos: 13.5,-0.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 381 components: - rot: -1.5707963267948966 rad pos: 13.5,-3.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 382 components: - rot: 1.5707963267948966 rad pos: 5.5,-3.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 383 components: - rot: 1.5707963267948966 rad pos: 3.5,-8.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 384 components: - rot: -1.5707963267948966 rad pos: 15.5,-8.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 457 components: - pos: 12.5,-7.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 460 components: - pos: 6.5,-7.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound + - uid: 578 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-14.5 + parent: 2 + type: Transform + - uid: 600 + components: + - pos: 9.5,-3.5 + parent: 2 + type: Transform +- proto: Rack + entities: + - uid: 589 + components: + - pos: 8.5,-3.5 + parent: 2 + type: Transform - proto: RandomVendingDrinks entities: - uid: 577 @@ -3035,6 +3211,14 @@ entities: - pos: 6.5,-20.5 parent: 2 type: Transform +- proto: ShotGunCabinetFilled + entities: + - uid: 609 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-14.5 + parent: 2 + type: Transform - proto: ShuttleWindow entities: - uid: 213 @@ -3052,6 +3236,12 @@ entities: - pos: 16.5,-19.5 parent: 2 type: Transform + - uid: 347 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-13.5 + parent: 2 + type: Transform - uid: 385 components: - pos: 4.5,-12.5 @@ -3257,12 +3447,6 @@ entities: - pos: 11.5,1.5 parent: 2 type: Transform - - uid: 565 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-13.5 - parent: 2 - type: Transform - uid: 566 components: - rot: -1.5707963267948966 rad @@ -3281,14 +3465,92 @@ entities: pos: 11.5,-13.5 parent: 2 type: Transform -- proto: SignPrison +- proto: SignalButtonDirectional entities: - - uid: 429 + - uid: 604 components: - rot: 3.141592653589793 rad + pos: 9.5,-2.5 + parent: 2 + type: Transform + - linkedPorts: + 565: + - Pressed: Toggle + 437: + - Pressed: Toggle + 374: + - Pressed: Toggle + 379: + - Pressed: Toggle + 380: + - Pressed: Toggle + 373: + - Pressed: Toggle + 436: + - Pressed: Toggle + 429: + - Pressed: Toggle + 601: + - Pressed: Toggle + 602: + - Pressed: Toggle + 603: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignAtmos + entities: + - uid: 342 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-20.5 + parent: 2 + type: Transform +- proto: SignDoors + entities: + - uid: 612 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-8.5 + parent: 2 + type: Transform + - uid: 613 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 2 + type: Transform +- proto: SignElectricalMed + entities: + - uid: 614 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-16.5 + parent: 2 + type: Transform +- proto: SignMedical + entities: + - uid: 615 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 2 + type: Transform +- proto: SignPrison + entities: + - uid: 606 + components: + - rot: 1.5707963267948966 rad pos: 13.5,-13.5 parent: 2 type: Transform +- proto: SignSecurity + entities: + - uid: 616 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 2 + type: Transform - proto: StasisBed entities: - uid: 430 @@ -3329,30 +3591,16 @@ entities: pos: 10.5,-17.5 parent: 2 type: Transform - - uid: 588 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-9.5 - parent: 2 - type: Transform - - uid: 589 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-9.5 - parent: 2 - type: Transform - proto: TableGlass entities: - - uid: 436 + - uid: 607 components: - - rot: -1.5707963267948966 rad - pos: 9.5,-3.5 + - pos: 7.5,-5.5 parent: 2 type: Transform - - uid: 437 + - uid: 608 components: - - rot: -1.5707963267948966 rad - pos: 8.5,-3.5 + - pos: 8.5,-5.5 parent: 2 type: Transform - proto: TableReinforced @@ -3981,4 +4229,11 @@ entities: pos: 14.5,-17.5 parent: 2 type: Transform +- proto: Wrench + entities: + - uid: 643 + components: + - pos: 12.37612,-20.675648 + parent: 2 + type: Transform ... diff --git a/Resources/Maps/Shuttles/mining.yml b/Resources/Maps/Shuttles/mining.yml index 9d90444c75..dc0593c8f5 100644 --- a/Resources/Maps/Shuttles/mining.yml +++ b/Resources/Maps/Shuttles/mining.yml @@ -1,12 +1,13 @@ meta: - format: 5 + format: 6 postmapinit: false tilemap: 0: Space - 69: FloorSteel - 79: FloorTechMaint - 94: Lattice - 95: Plating + 49: FloorGrayConcrete + 84: FloorSteel + 96: FloorTechMaint + 112: Lattice + 113: Plating entities: - proto: "" entities: @@ -20,19 +21,24 @@ entities: - chunks: -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAATwAAAEUAAANFAAADXwAAAE8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAE8AAABfAAAARQAAAUUAAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABFAAABRQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAABRQAAAUUAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAEUAAAFfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAMQAAAAAAMQAAAAAAVAAAAAADVAAAAAADcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAMQAAAAAAMQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,0: ind: 0,0 - tiles: XwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: cQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAFFAAABRQAAAEUAAAJFAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAUUAAAJFAAACRQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAkUAAANFAAACRQAAA0UAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAANFAAACRQAAAEUAAANFAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABFAAACRQAAAUUAAANFAAABRQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAADVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAAA + version: 6 type: MapGrid - type: Broadphase - - angularDamping: 0.05 + - bodyStatus: InAir + angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic @@ -74,6 +80,8 @@ entities: decals: 201: -5,-5 202: -1,-5 + 206: -6,1 + 207: -5,1 - node: color: '#A4610696' id: CheckerNWSE @@ -86,6 +94,8 @@ entities: id: Delivery decals: 4: -4,-1 + 204: -6,2 + 205: -5,2 - node: cleanable: True color: '#FFFFFFFF' @@ -94,10 +104,7 @@ entities: 51: -3,-6 52: -4,-6 53: -2,1 - 54: -6,2 - 55: -6,1 56: -4,2 - 57: -5,2 58: -1,1 59: 0,2 60: -2,3 @@ -186,14 +193,12 @@ entities: color: '#FFFFFFFF' id: WarnEndN decals: - 2: -6,2 3: 0,2 - node: color: '#FFFFFFFF' id: WarnEndS decals: 0: 0,1 - 1: -6,1 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS @@ -289,12 +294,6 @@ entities: 81: -1.8659899,0.96118975 82: -2.89724,1.1486897 83: -4.1628647,1.2111897 - 84: -4.5378647,1.4455647 - 85: -4.6003647,1.1643147 - 86: -5.3659897,1.5705647 - 87: -5.4128647,1.1330647 - 88: -6.0066147,1.5705647 - 89: -6.0066147,1.1643147 90: -6.5534897,1.4611897 91: -6.7253647,1.1330647 - node: @@ -349,17 +348,10 @@ entities: decals: 92: -6.7878647,2.0080647 93: -6.5222397,1.8049397 - 94: -6.0847397,2.0861897 - 95: -5.7722397,1.6643147 - 96: -5.4753647,2.0080647 - 97: -4.9909897,1.6799397 98: -4.5691147,2.0080647 99: -4.1941147,1.7424397 100: -3.86599,1.9455647 101: -6.5534897,0.69556475 - 102: -5.6003647,0.99243975 - 103: -5.1472397,0.72681475 - 104: -4.6784897,1.0705647 105: -4.4597397,0.89868975 106: -4.1941147,1.2268147 107: -3.70974,1.0080647 @@ -520,46 +512,42 @@ entities: type: GravityShake - type: GasTileOverlay - type: GridPathfinding -- proto: AirlockExternal +- proto: AirlockCargoGlass entities: - - uid: 4 - components: - - pos: -6.5,2.5 - parent: 181 - type: Transform - - uid: 14 - components: - - pos: -6.5,1.5 - parent: 181 - type: Transform - uid: 29 components: - - pos: -4.5,1.5 + - pos: -2.5,0.5 parent: 181 type: Transform - - uid: 30 + - uid: 127 components: - - pos: -4.5,2.5 + - pos: -1.5,0.5 parent: 181 type: Transform - - uid: 34 +- proto: AirlockExternal + entities: + - uid: 49 components: - - pos: 1.5,1.5 + - pos: -0.5,2.5 parent: 181 type: Transform - - uid: 36 + - uid: 54 components: - - pos: 1.5,2.5 + - pos: -0.5,1.5 parent: 181 type: Transform - - uid: 49 +- proto: AirlockShuttle + entities: + - uid: 4 components: - - pos: -0.5,2.5 + - rot: 1.5707963267948966 rad + pos: 1.5,2.5 parent: 181 type: Transform - - uid: 54 + - uid: 13 components: - - pos: -0.5,1.5 + - rot: 1.5707963267948966 rad + pos: 1.5,1.5 parent: 181 type: Transform - proto: APCBasic @@ -576,6 +564,23 @@ entities: pos: -4.5,3.5 parent: 181 type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 128 + components: + - pos: -5.5,-3.5 + parent: 181 + type: Transform + - uid: 129 + components: + - pos: -5.5,-2.5 + parent: 181 + type: Transform + - uid: 130 + components: + - pos: -5.5,-1.5 + parent: 181 + type: Transform - proto: BlastDoorExterior1 entities: - uid: 37 @@ -602,32 +607,13 @@ entities: - links: - 100 type: DeviceLinkSink -- proto: BlastDoorExterior2 +- proto: BorgModuleMining entities: - - uid: 46 - components: - - pos: 0.5,-3.5 - parent: 181 - type: Transform - - links: - - 105 - type: DeviceLinkSink - uid: 94 components: - - pos: 0.5,-1.5 - parent: 181 - type: Transform - - links: - - 105 - type: DeviceLinkSink - - uid: 95 - components: - - pos: 0.5,-2.5 + - pos: -1.4982989,5.541272 parent: 181 type: Transform - - links: - - 105 - type: DeviceLinkSink - proto: CableApcExtension entities: - uid: 1 @@ -635,8 +621,6 @@ entities: - pos: -3.5,-6.5 parent: 181 type: Transform - - enabled: True - type: AmbientSound - uid: 3 components: - pos: -0.5,-4.5 @@ -647,15 +631,11 @@ entities: - pos: -4.5,3.5 parent: 181 type: Transform - - enabled: True - type: AmbientSound - uid: 21 components: - pos: -3.5,3.5 parent: 181 type: Transform - - enabled: True - type: AmbientSound - uid: 28 components: - pos: -2.5,3.5 @@ -701,8 +681,6 @@ entities: - pos: -3.5,-5.5 parent: 181 type: Transform - - enabled: True - type: AmbientSound - uid: 53 components: - pos: -4.5,-2.5 @@ -713,8 +691,6 @@ entities: - pos: -0.5,-5.5 parent: 181 type: Transform - - enabled: True - type: AmbientSound - uid: 62 components: - pos: -2.5,4.5 @@ -760,15 +736,11 @@ entities: - pos: 0.5,2.5 parent: 181 type: Transform - - enabled: True - type: AmbientSound - uid: 144 components: - pos: -5.5,1.5 parent: 181 type: Transform - - enabled: True - type: AmbientSound - uid: 165 components: - pos: -0.5,-2.5 @@ -786,43 +758,31 @@ entities: - pos: -3.5,-6.5 parent: 181 type: Transform - - enabled: True - type: AmbientSound - uid: 58 components: - pos: -1.5,-5.5 parent: 181 type: Transform - - enabled: True - type: AmbientSound - uid: 59 components: - pos: -1.5,-6.5 parent: 181 type: Transform - - enabled: True - type: AmbientSound - uid: 74 components: - pos: -3.5,-5.5 parent: 181 type: Transform - - enabled: True - type: AmbientSound - uid: 75 components: - pos: -2.5,-6.5 parent: 181 type: Transform - - enabled: True - type: AmbientSound - uid: 76 components: - pos: -4.5,-5.5 parent: 181 type: Transform - - enabled: True - type: AmbientSound - proto: CableMV entities: - uid: 8 @@ -830,8 +790,6 @@ entities: - pos: -0.5,-5.5 parent: 181 type: Transform - - enabled: True - type: AmbientSound - uid: 9 components: - pos: -2.5,-3.5 @@ -867,8 +825,6 @@ entities: - pos: -4.5,3.5 parent: 181 type: Transform - - enabled: True - type: AmbientSound - uid: 19 components: - pos: -2.5,0.5 @@ -879,8 +835,6 @@ entities: - pos: -3.5,3.5 parent: 181 type: Transform - - enabled: True - type: AmbientSound - uid: 31 components: - pos: -2.5,1.5 @@ -896,29 +850,21 @@ entities: - pos: -4.5,-5.5 parent: 181 type: Transform - - enabled: True - type: AmbientSound - uid: 71 components: - pos: -3.5,-5.5 parent: 181 type: Transform - - enabled: True - type: AmbientSound - uid: 72 components: - pos: -2.5,-5.5 parent: 181 type: Transform - - enabled: True - type: AmbientSound - uid: 73 components: - pos: -1.5,-5.5 parent: 181 type: Transform - - enabled: True - type: AmbientSound - proto: CableTerminal entities: - uid: 77 @@ -973,8 +919,6 @@ entities: pos: -3.5,-4.5 parent: 181 type: Transform - - enabled: False - type: AmbientSound - proto: GeneratorBasic entities: - uid: 40 @@ -989,13 +933,6 @@ entities: - pos: -1.5,-6.5 parent: 181 type: Transform -- proto: Girder - entities: - - uid: 2 - components: - - pos: -3.5,0.5 - parent: 181 - type: Transform - proto: GravityGeneratorMini entities: - uid: 39 @@ -1005,11 +942,21 @@ entities: type: Transform - proto: Grille entities: + - uid: 14 + components: + - pos: 0.5,-3.5 + parent: 181 + type: Transform - uid: 33 components: - pos: -2.5,-7.5 parent: 181 type: Transform + - uid: 34 + components: + - pos: 0.5,-1.5 + parent: 181 + type: Transform - uid: 50 components: - pos: -1.5,-7.5 @@ -1025,34 +972,32 @@ entities: - pos: -0.5,5.5 parent: 181 type: Transform - - uid: 135 - components: - - pos: -4.5,5.5 - parent: 181 - type: Transform - uid: 136 components: - pos: -2.5,7.5 parent: 181 type: Transform - - uid: 139 + - uid: 151 components: - - pos: -4.5,6.5 + - pos: -1.5,6.5 parent: 181 type: Transform - - uid: 151 +- proto: GrilleDiagonal + entities: + - uid: 46 components: - - pos: -1.5,6.5 + - pos: -4.5,6.5 parent: 181 type: Transform - - uid: 152 + - uid: 101 components: - - pos: -3.5,7.5 + - rot: -1.5707963267948966 rad + pos: -0.5,6.5 parent: 181 type: Transform - - uid: 155 + - uid: 121 components: - - pos: -0.5,6.5 + - pos: -3.5,7.5 parent: 181 type: Transform - proto: Gyroscope @@ -1125,11 +1070,6 @@ entities: type: Transform - proto: RandomPosterAny entities: - - uid: 13 - components: - - pos: -4.5,0.5 - parent: 181 - type: Transform - uid: 22 components: - pos: -0.5,3.5 @@ -1155,21 +1095,6 @@ entities: 47: - Pressed: Toggle type: DeviceLinkSource -- proto: SignalButtonExt2 - entities: - - uid: 105 - components: - - pos: 0.5,-0.5 - parent: 181 - type: Transform - - linkedPorts: - 94: - - Pressed: Toggle - 95: - - Pressed: Toggle - 46: - - Pressed: Toggle - type: DeviceLinkSource - proto: SMESBasic entities: - uid: 24 @@ -1219,6 +1144,11 @@ entities: type: Transform - proto: WallSolid entities: + - uid: 30 + components: + - pos: -3.5,0.5 + parent: 181 + type: Transform - uid: 85 components: - pos: -4.5,-6.5 @@ -1244,6 +1174,11 @@ entities: - pos: 1.5,3.5 parent: 181 type: Transform + - uid: 93 + components: + - pos: -6.5,1.5 + parent: 181 + type: Transform - uid: 97 components: - pos: -0.5,-5.5 @@ -1294,11 +1229,6 @@ entities: - pos: -5.5,3.5 parent: 181 type: Transform - - uid: 112 - components: - - pos: -4.5,0.5 - parent: 181 - type: Transform - uid: 114 components: - pos: -5.5,0.5 @@ -1334,13 +1264,28 @@ entities: - pos: -6.5,0.5 parent: 181 type: Transform + - uid: 125 + components: + - pos: 0.5,-2.5 + parent: 181 + type: Transform - proto: WallSolidRust entities: + - uid: 95 + components: + - pos: -6.5,2.5 + parent: 181 + type: Transform - uid: 113 components: - pos: -0.5,0.5 parent: 181 type: Transform + - uid: 126 + components: + - pos: -4.5,0.5 + parent: 181 + type: Transform - uid: 145 components: - pos: -0.5,4.5 @@ -1353,6 +1298,16 @@ entities: type: Transform - proto: Window entities: + - uid: 2 + components: + - pos: 0.5,-1.5 + parent: 181 + type: Transform + - uid: 36 + components: + - pos: 0.5,-3.5 + parent: 181 + type: Transform - uid: 78 components: - pos: -2.5,7.5 @@ -1363,11 +1318,6 @@ entities: - pos: -1.5,-7.5 parent: 181 type: Transform - - uid: 80 - components: - - pos: -3.5,7.5 - parent: 181 - type: Transform - uid: 81 components: - pos: -3.5,6.5 @@ -1383,34 +1333,43 @@ entities: - pos: -0.5,5.5 parent: 181 type: Transform - - uid: 92 + - uid: 96 components: - - pos: -1.5,7.5 + - pos: -3.5,-7.5 parent: 181 type: Transform - - uid: 93 + - uid: 98 components: - - pos: -0.5,6.5 + - pos: -2.5,-7.5 parent: 181 type: Transform - - uid: 96 + - uid: 102 components: - - pos: -3.5,-7.5 + - pos: -4.5,5.5 parent: 181 type: Transform - - uid: 98 +- proto: WindowDiagonal + entities: + - uid: 80 components: - - pos: -2.5,-7.5 + - pos: -3.5,7.5 parent: 181 type: Transform - - uid: 101 + - uid: 92 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,6.5 + parent: 181 + type: Transform + - uid: 105 components: - pos: -4.5,6.5 parent: 181 type: Transform - - uid: 102 + - uid: 112 components: - - pos: -4.5,5.5 + - rot: -1.5707963267948966 rad + pos: -1.5,7.5 parent: 181 type: Transform ... diff --git a/Resources/Maps/Shuttles/pirate.yml b/Resources/Maps/Shuttles/pirate.yml index 3f174fed53..0c81765d18 100644 --- a/Resources/Maps/Shuttles/pirate.yml +++ b/Resources/Maps/Shuttles/pirate.yml @@ -1,21 +1,25 @@ meta: - format: 5 + format: 6 postmapinit: false tilemap: 0: Space 12: FloorBar - 23: FloorDark - 59: FloorReinforced - 61: FloorShowroom - 69: FloorSteel - 79: FloorTechMaint - 92: FloorWood - 94: Lattice - 95: Plating + 27: FloorDark + 32: FloorDarkMono + 55: FloorHullReinforced + 62: FloorMetalDiamond + 72: FloorReinforced + 75: FloorShowroom + 84: FloorSteel + 89: FloorSteelDirty + 96: FloorTechMaint + 110: FloorWood + 112: Lattice + 113: Plating entities: - proto: "" entities: - - uid: 732 + - uid: 1 components: - type: MetaData - pos: 2.2710133,-2.4148211 @@ -24,19 +28,24 @@ entities: - chunks: -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAAAMAAAAXwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAAAXwAAAEUAAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAF8AAABFAAAAXwAAABcAAAAXAAAAFwAAABcAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAABfAAAARQAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAARQAAAF8AAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXAAAAF8AAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABcAAAAXAAAAFwAAABcAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXAAAAFwAAABcAAAAXAAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAFwAAABcAAAAXAAAAFwAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAAXAAAAFwAAABcAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAFwAAABcAAAAXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAPgAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAGwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAGwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAIAAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAwAAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABcAAAAXAAAAFwAAAAMAAAAXwAAAF8AAABPAAAATwAAAE8AAABPAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXAAAAFwAAABcAAAADAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAFwAAABcAAAAXAAAAAwAAAAMAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABcAAAAXAAAAFwAAAAMAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAADAAAAAwAAAAMAAAADAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAADAAAAAAAcQAAAAAANwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAADAAAAAAAcQAAAAAAcQAAAAAANwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAADAAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAADAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + version: 6 0,0: ind: 0,0 - tiles: XwAAAF8AAABFAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAEUAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABFAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABfAAAARQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAARQAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAPQAAAD0AAAA9AAAAPQAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAD0AAAA9AAAAPQAAAD0AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAA9AAAAPQAAAD0AAAA9AAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAF8AAABfAAAATwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAABeAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: cQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAWQAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAGwAAAAAAGwAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAPgAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAAXwAAAE8AAABPAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAOwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAADsAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 type: MapGrid - type: Broadphase - - angularDamping: 0.05 + - bodyStatus: InAir + angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic @@ -54,15 +63,15 @@ entities: color: '#FFFFFFFF' id: Dirt decals: - 134: -4,-4 + 121: -4,-4 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 89: -9,-1 - 90: -8,-1 - 91: -7,-6 - 103: -9,-5 + 81: -9,-1 + 82: -8,-1 + 83: -7,-6 + 92: -9,-5 - node: cleanable: True color: '#FFFFFFFF' @@ -71,44 +80,55 @@ entities: 5: 1,1 6: 1,1 7: 2,1 - 8: 3,3 - 20: 3,9 - 21: 3,9 - 22: 3,8 - 23: 1,5 - 24: 2,4 - 25: 1,6 - 26: 0,6 - 27: -1,6 - 28: -1,7 - 29: -2,6 - 30: -1,6 - 31: -7,6 - 32: -6,6 - 33: -10,5 - 34: -9,8 - 35: -8,8 - 36: -5,9 - 37: -5,10 - 38: -3,9 - 39: -3,7 - 40: -3,7 - 41: -3,8 - 42: -2,9 - 43: -5,6 - 77: -1,0 - 78: -1,1 - 79: -5,0 + 16: 3,9 + 17: 3,9 + 18: 3,8 + 19: 1,5 + 20: 2,4 + 21: 1,6 + 22: 0,6 + 23: -1,6 + 24: -1,7 + 25: -2,6 + 26: -1,6 + 27: -7,6 + 28: -6,6 + 29: -10,5 + 30: -9,8 + 31: -8,8 + 32: -5,9 + 33: -5,10 + 34: -3,9 + 35: -3,7 + 36: -3,7 + 37: -3,8 + 38: -2,9 + 39: -5,6 + 69: -1,0 + 70: -1,1 + 71: -5,0 + 133: 6,7 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 136: 7,6 + 137: 7,5 + 138: 6,6 + 139: 7,7 + 140: 4,3 + 141: 5,1 - node: color: '#FFFFFFFF' id: DirtLight decals: - 92: -10,-1 - 93: -7,-3 - 94: -6,-3 - 101: 1,7 - 102: 3,6 - 105: -9,-3 + 84: -10,-1 + 85: -7,-3 + 86: -6,-3 + 90: 1,7 + 91: 3,6 + 94: -9,-3 - node: cleanable: True color: '#FFFFFFFF' @@ -117,48 +137,44 @@ entities: 2: -7,3 3: -7,3 4: -8,3 - 11: 1,2 - 12: 3,2 - 13: 3,2 - 14: 1,3 - 15: 2,1 - 16: -9,3 - 17: -9,2 - 18: 2,4 - 19: -8,4 - 61: -10,6 - 62: -9,6 - 63: -3,6 - 64: -4,7 - 65: -2,7 - 66: -3,4 - 67: 3,6 - 68: 4,5 - 69: 1,7 - 70: -3,10 - 71: -3,11 - 72: -2,9 - 73: 3,7 - 74: 4,6 - 75: 4,7 - 76: 3,6 - 122: -3,3 - 123: -2,2 - 124: -2,2 - 125: -2,2 - 126: -4,0 - 131: -9,1 - 132: -9,-1 - 133: -9,-1 + 9: 1,2 + 10: 1,3 + 11: 2,1 + 12: -9,3 + 13: -9,2 + 14: 2,4 + 15: -8,4 + 56: -10,6 + 57: -9,6 + 58: -3,6 + 59: -4,7 + 60: -2,7 + 61: -3,4 + 62: 3,6 + 63: 4,5 + 64: 1,7 + 65: -2,9 + 66: 4,6 + 67: 4,7 + 68: 3,6 + 111: -3,3 + 112: -2,2 + 113: -2,2 + 114: -2,2 + 115: -4,0 + 118: -9,1 + 119: -9,-1 + 120: -9,-1 + 134: 6,5 - node: color: '#FFFFFFFF' id: DirtMedium decals: - 85: -9,1 - 86: -8,1 - 87: -7,-2 - 88: -7,-1 - 104: -9,-4 + 77: -9,1 + 78: -8,1 + 79: -7,-2 + 80: -7,-1 + 93: -9,-4 - node: cleanable: True color: '#FFFFFFFF' @@ -166,82 +182,116 @@ entities: decals: 0: -7,2 1: -9,3 - 9: 3,1 - 10: 2,2 - 44: -4,6 - 45: -5,7 - 46: -2,7 - 47: 2,5 - 48: 3,5 - 49: 3,7 - 50: 2,3 - 51: -9,5 - 52: -8,4 - 53: -8,5 - 54: -7,5 - 55: -7,8 - 56: -8,6 - 57: -8,7 - 58: -4,9 - 59: -3,9 - 60: -2,10 - 80: -5,0 - 81: -2,0 - 82: -3,0 - 83: -1,2 - 84: -1,2 - 127: -3,4 - 128: 2,6 - 129: 3,1 - 130: 3,1 + 8: 2,2 + 40: -4,6 + 41: -5,7 + 42: -2,7 + 43: 2,5 + 44: 3,5 + 45: 2,3 + 46: -9,5 + 47: -8,4 + 48: -8,5 + 49: -7,5 + 50: -7,8 + 51: -8,6 + 52: -8,7 + 53: -4,9 + 54: -3,9 + 55: -2,10 + 72: -5,0 + 73: -2,0 + 74: -3,0 + 75: -1,2 + 76: -1,2 + 116: -3,4 + 117: 2,6 + 135: 6,6 + - node: + color: '#FFFFFF0C' + id: MiniTileOverlay + decals: + 122: -3,10 + 123: -3,9 + 124: -3,7 + 125: -3,6 + 126: -4,6 + 127: -5,6 + 128: -2,6 + 129: -1,6 + 130: -4,10 + 131: -5,10 + - node: + cleanable: True + color: '#FF7F8206' + id: MonoOverlay + decals: + 150: -3,12 + 151: -4,11 + 152: -2,11 + - node: + color: '#FFFFFF0C' + id: OffsetCheckerBOverlay + decals: + 132: 3,7 - node: color: '#FFFFFFFF' id: QuarterTileOverlayGreyscale decals: - 110: -4,3 - 111: -2,2 - 112: -3,2 + 99: -4,3 + 100: -2,2 + 101: -3,2 - node: color: '#FFFFFFFF' id: QuarterTileOverlayGreyscale180 decals: - 108: -4,3 - 109: -3,3 - 113: -4,2 - 114: -3,2 - 119: -2,1 + 97: -4,3 + 98: -3,3 + 102: -4,2 + 103: -3,2 + 108: -2,1 - node: color: '#FFFFFFFF' id: QuarterTileOverlayGreyscale270 decals: - 106: -2,3 - 107: -3,3 - 115: -2,2 - 116: -3,2 - 120: -4,1 + 95: -2,3 + 96: -3,3 + 104: -2,2 + 105: -3,2 + 109: -4,1 - node: color: '#FFFFFFFF' id: QuarterTileOverlayGreyscale90 decals: - 117: -2,3 - 118: -3,1 - 121: -4,1 + 106: -2,3 + 107: -3,1 + 110: -4,1 - node: - angle: -1.5707963267948966 rad + cleanable: True color: '#FFFFFFFF' - id: WarningLine + id: WarnLineE + decals: + 142: 5,3 + 143: 5,2 + 144: 5,1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnLineW decals: - 95: -9,1 - 96: -9,2 - 97: -9,3 + 145: -5,10 + 146: -4,10 + 147: -3,10 + 148: -2,10 + 149: -1,10 - node: - angle: 1.5707963267948966 rad + angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLine decals: - 98: 3,1 - 99: 3,2 - 100: 3,3 + 87: -9,1 + 88: -9,2 + 89: -9,3 type: DecalGrid - version: 2 data: @@ -263,7 +313,7 @@ entities: -1,2: 0: 65535 -1,3: - 0: 52991 + 0: 53247 0,-3: 0: 65520 0,-2: @@ -276,6 +326,7 @@ entities: 0: 13107 1,-1: 0: 30583 + 1: 34944 0,1: 0: 65535 0,2: @@ -288,10 +339,13 @@ entities: 0: 4369 1,0: 0: 30583 + 1: 34952 1,1: 0: 30583 + 1: 34952 1,2: 0: 4919 + 1: 8 0,4: 0: 127 -1,4: @@ -320,6 +374,12 @@ entities: 0: 65531 -3,3: 0: 14 + 2,0: + 1: 4369 + 2,1: + 1: 4369 + 2,2: + 1: 1 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -336,6 +396,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 type: GridAtmosphere - type: OccluderTree @@ -346,195 +421,216 @@ entities: - type: GasTileOverlay - type: SpreaderGrid - type: GridPathfinding -- proto: AirlockCommand +- proto: AirlockExternalGlassShuttleSyndicateLocked entities: - - uid: 649 + - uid: 2 components: - - rot: -1.5707963267948966 rad - pos: -7.5,7.5 - parent: 732 + - rot: 3.141592653589793 rad + pos: 3.5,15.5 + parent: 1 type: Transform -- proto: AirlockCommandGlass +- proto: AirlockExternalGlassSyndicateLocked entities: - - uid: 481 + - uid: 3 components: - - pos: -2.5,8.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: 3.5,8.5 + parent: 1 type: Transform - - uid: 483 + - uid: 4 components: - - rot: 3.141592653589793 rad - pos: -5.5,10.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: -9.5,2.5 + parent: 1 type: Transform -- proto: AirlockEngineering - entities: - - uid: 101 + - uid: 5 components: - - pos: 1.5,8.5 - parent: 732 + - pos: 6.5,2.5 + parent: 1 type: Transform - - uid: 479 +- proto: AirlockExternalShuttleSyndicateLocked + entities: + - uid: 6 components: - - pos: -5.5,-2.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: -11.5,2.5 + parent: 1 type: Transform - - uid: 480 + - uid: 7 components: - - pos: 2.5,0.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 8.5,2.5 + parent: 1 type: Transform -- proto: AirlockExternalGlass +- proto: AirlockSyndicateGlassLocked entities: - - uid: 3 + - uid: 8 components: - - pos: 4.5,2.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: -7.5,0.5 + parent: 1 type: Transform - - uid: 19 + - uid: 9 components: - - pos: -9.5,2.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: -2.5,8.5 + parent: 1 type: Transform - - uid: 584 + - uid: 10 components: - - rot: 3.141592653589793 rad - pos: 3.5,8.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 type: Transform -- proto: AirlockGlass - entities: - - uid: 484 + - uid: 11 components: - - pos: -7.5,0.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: -7.5,4.5 + parent: 1 type: Transform - - uid: 487 + - uid: 12 components: - - pos: -7.5,4.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 type: Transform - - uid: 669 + - uid: 13 components: - - pos: -5.5,6.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 1 type: Transform -- proto: AirlockGlassShuttle - entities: - - uid: 130 + - uid: 14 components: - - rot: 3.141592653589793 rad - pos: 3.5,15.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 type: Transform -- proto: AirlockMedicalGlass +- proto: AirlockSyndicateLocked entities: - - uid: 485 + - uid: 15 components: - - pos: 0.5,6.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 type: Transform - - uid: 486 + - uid: 16 components: - - pos: 2.5,4.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 1 type: Transform -- proto: AirlockSecurity - entities: - - uid: 482 + - uid: 17 components: - rot: -1.5707963267948966 rad pos: -2.5,5.5 - parent: 732 + parent: 1 type: Transform -- proto: AirlockShuttle - entities: - - uid: 39 + - uid: 18 components: - rot: -1.5707963267948966 rad - pos: -11.5,2.5 - parent: 732 + pos: -5.5,10.5 + parent: 1 type: Transform - - uid: 77 + - uid: 19 components: - - rot: 1.5707963267948966 rad - pos: 6.5,2.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: -7.5,7.5 + parent: 1 + type: Transform + - uid: 20 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 type: Transform - proto: APCBasic entities: - - uid: 261 + - uid: 21 components: - pos: -0.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 262 + - uid: 22 components: - pos: -9.5,0.5 - parent: 732 + parent: 1 type: Transform - - uid: 263 + - uid: 23 components: - pos: 4.5,8.5 - parent: 732 + parent: 1 type: Transform - - uid: 331 + - uid: 24 components: - pos: 0.5,-0.5 - parent: 732 + parent: 1 type: Transform - proto: AppraisalTool entities: - - uid: 621 + - uid: 25 components: - pos: -7.2760534,-3.5222044 - parent: 732 + parent: 1 type: Transform - - uid: 710 + - uid: 26 components: - pos: -0.67882204,3.741016 - parent: 732 + parent: 1 type: Transform - proto: AtmosDeviceFanTiny entities: - - uid: 147 + - uid: 27 components: - rot: 3.141592653589793 rad pos: 3.5,15.5 - parent: 732 + parent: 1 type: Transform - - uid: 629 + - uid: 28 components: - - pos: 6.5,2.5 - parent: 732 + - pos: -11.5,2.5 + parent: 1 type: Transform - - uid: 655 + - uid: 772 components: - - pos: -11.5,2.5 - parent: 732 + - pos: 8.5,2.5 + parent: 1 type: Transform - proto: Bed entities: - - uid: 637 + - uid: 29 components: - pos: -9.5,9.5 - parent: 732 + parent: 1 + type: Transform + - uid: 30 + components: + - pos: 7.5,5.5 + parent: 1 type: Transform - proto: BedsheetBlack entities: - - uid: 654 + - uid: 31 components: - rot: -1.5707963267948966 rad pos: -9.5,9.5 - parent: 732 + parent: 1 + type: Transform +- proto: BedsheetOrange + entities: + - uid: 32 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,5.5 + parent: 1 type: Transform - proto: BoozeDispenser entities: - - uid: 478 + - uid: 33 components: - rot: 1.5707963267948966 rad pos: -9.5,-3.5 - parent: 732 + parent: 1 type: Transform - containers: ReagentDispenser-beaker: !type:ContainerSlot @@ -556,1154 +652,1026 @@ entities: type: ContainerContainer - proto: BoxLethalshot entities: - - uid: 539 + - uid: 34 components: - pos: -3.588971,4.6360464 - parent: 732 + parent: 1 type: Transform - proto: CableApcExtension entities: - - uid: 108 + - uid: 35 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 36 components: - pos: -0.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 339 + - uid: 37 components: - pos: -0.5,5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 340 + - uid: 38 components: - pos: -0.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 341 + - uid: 39 components: - pos: -1.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 342 + - uid: 40 components: - pos: -2.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 343 + - uid: 41 components: - pos: -2.5,3.5 - parent: 732 + parent: 1 type: Transform - - uid: 344 + - uid: 42 components: - pos: -2.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 345 + - uid: 43 components: - pos: -2.5,1.5 - parent: 732 + parent: 1 type: Transform - - uid: 346 + - uid: 44 components: - pos: -2.5,0.5 - parent: 732 + parent: 1 type: Transform - - uid: 347 + - uid: 45 components: - pos: -3.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 348 + - uid: 46 components: - pos: -1.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 349 + - uid: 47 components: - pos: -4.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 350 + - uid: 48 components: - pos: -0.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 351 + - uid: 49 components: - pos: 4.5,8.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 352 + - uid: 50 components: - pos: 4.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 353 + - uid: 51 components: - pos: 4.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 354 + - uid: 52 components: - pos: 3.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 355 + - uid: 53 components: - pos: 3.5,8.5 - parent: 732 + parent: 1 type: Transform - - uid: 356 + - uid: 54 components: - pos: 3.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 357 + - uid: 55 components: - pos: 3.5,10.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 358 + - uid: 56 components: - pos: 3.5,11.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 359 + - uid: 57 components: - pos: 3.5,12.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 360 + - uid: 58 components: - pos: 3.5,13.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 362 + - uid: 59 components: - pos: 2.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 363 + - uid: 60 components: - pos: 2.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 364 + - uid: 61 components: - pos: 2.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 365 + - uid: 62 components: - pos: 2.5,3.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 366 + - uid: 63 components: - pos: 2.5,2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 367 + - uid: 64 components: - pos: 3.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 368 + - uid: 65 components: - pos: 5.5,2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 369 + - uid: 66 components: - pos: 4.5,2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 370 + - uid: 67 components: - pos: 2.5,1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 371 + - uid: 68 components: - pos: -1.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 372 + - uid: 69 components: - pos: -2.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 373 + - uid: 70 components: - pos: -3.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 374 + - uid: 71 components: - pos: -4.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 375 + - uid: 72 components: - pos: -2.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 376 + - uid: 73 components: - pos: -2.5,8.5 - parent: 732 + parent: 1 type: Transform - - uid: 377 + - uid: 74 components: - pos: -2.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 378 + - uid: 75 components: - pos: -2.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 379 + - uid: 76 components: - pos: -2.5,11.5 - parent: 732 + parent: 1 type: Transform - - uid: 380 + - uid: 77 components: - pos: -3.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 381 + - uid: 78 components: - pos: -4.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 382 + - uid: 79 components: - pos: -1.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 383 + - uid: 80 components: - pos: -0.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 384 + - uid: 81 components: - pos: 0.5,-0.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 385 + - uid: 82 components: - pos: 0.5,-1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 386 + - uid: 83 components: - pos: 0.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 387 + - uid: 84 components: - pos: 1.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 388 + - uid: 85 components: - pos: 2.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 389 + - uid: 86 components: - pos: 2.5,-1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 390 + - uid: 87 components: - pos: 2.5,-0.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 391 + - uid: 88 components: - pos: -0.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 392 + - uid: 89 components: - pos: -1.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 393 + - uid: 90 components: - pos: -2.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 394 + - uid: 91 components: - pos: -3.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 395 + - uid: 92 components: - pos: -4.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 396 + - uid: 93 components: - pos: 0.5,-3.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 397 + - uid: 94 components: - pos: -9.5,0.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 398 + - uid: 95 components: - pos: 0.5,-4.5 - parent: 732 + parent: 1 type: Transform - - uid: 399 + - uid: 96 components: - pos: 0.5,-5.5 - parent: 732 + parent: 1 type: Transform - - uid: 400 + - uid: 97 components: - pos: -0.5,-5.5 - parent: 732 + parent: 1 type: Transform - - uid: 401 + - uid: 98 components: - pos: -1.5,-5.5 - parent: 732 + parent: 1 type: Transform - - uid: 402 + - uid: 99 components: - pos: -2.5,-5.5 - parent: 732 + parent: 1 type: Transform - - uid: 403 + - uid: 100 components: - pos: -3.5,-5.5 - parent: 732 + parent: 1 type: Transform - - uid: 404 + - uid: 101 components: - pos: -4.5,-5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 405 + - uid: 102 components: - pos: 1.5,-5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 406 + - uid: 103 components: - pos: -9.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 407 + - uid: 104 components: - pos: -8.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 408 + - uid: 105 components: - pos: -7.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 409 + - uid: 106 components: - pos: -7.5,-1.5 - parent: 732 + parent: 1 type: Transform - - uid: 410 + - uid: 107 components: - pos: -7.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 411 + - uid: 108 components: - pos: -7.5,-3.5 - parent: 732 + parent: 1 type: Transform - - uid: 412 + - uid: 109 components: - pos: -7.5,-4.5 - parent: 732 + parent: 1 type: Transform - - uid: 413 + - uid: 110 components: - pos: -6.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 414 + - uid: 111 components: - pos: -7.5,0.5 - parent: 732 + parent: 1 type: Transform - - uid: 415 + - uid: 112 components: - pos: -7.5,1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 416 + - uid: 113 components: - pos: -7.5,2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 417 + - uid: 114 components: - pos: -7.5,3.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 418 + - uid: 115 components: - pos: -8.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 419 + - uid: 116 components: - pos: -9.5,2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 420 + - uid: 117 components: - pos: -10.5,2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 421 + - uid: 118 components: - pos: -7.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 422 + - uid: 119 components: - pos: -7.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 423 + - uid: 120 components: - pos: -7.5,6.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 424 + - uid: 121 components: - pos: -6.5,6.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 425 + - uid: 122 components: - pos: -7.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 426 + - uid: 123 components: - pos: -7.5,8.5 - parent: 732 + parent: 1 type: Transform - - uid: 427 + - uid: 124 components: - pos: -8.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 428 + - uid: 125 components: - pos: -9.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 429 + - uid: 126 components: - pos: 1.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 430 + - uid: 127 components: - pos: 1.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 431 + - uid: 128 components: - pos: 1.5,8.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 432 + - uid: 129 components: - pos: 4.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 433 + - uid: 130 components: - pos: 5.5,5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 434 + - uid: 131 components: - pos: -7.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 435 + - uid: 132 components: - pos: -10.5,5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 436 + - uid: 133 components: - pos: -10.5,-0.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 437 + - uid: 134 components: - pos: -7.5,-5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 438 + - uid: 135 components: - pos: -8.5,-5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 439 + - uid: 136 components: - pos: -9.5,-5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 440 + - uid: 137 components: - pos: 2.5,-5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 441 + - uid: 138 components: - pos: 3.5,-5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 442 + - uid: 139 components: - pos: 4.5,-5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 443 + - uid: 140 components: - pos: 3.5,-0.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 444 + - uid: 141 components: - pos: 4.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 445 + - uid: 142 components: - pos: 5.5,-0.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 541 + - uid: 143 components: - pos: -2.5,-3.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 551 + - uid: 144 components: - pos: -8.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 553 + - uid: 145 components: - pos: -2.5,-4.5 - parent: 732 + parent: 1 type: Transform - - uid: 554 + - uid: 146 components: - pos: -5.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 555 + - uid: 147 components: - pos: -2.5,12.5 - parent: 732 + parent: 1 type: Transform - - uid: 563 + - uid: 148 components: - pos: -2.5,-5.5 - parent: 732 + parent: 1 type: Transform - - uid: 564 + - uid: 149 components: - pos: -2.5,-6.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 631 + - uid: 150 components: - pos: -1.5,-6.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 632 + - uid: 151 components: - pos: -2.5,-6.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 633 + - uid: 152 components: - pos: -3.5,-6.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 636 + - uid: 153 components: - pos: -7.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 640 + - uid: 154 components: - pos: -9.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 641 + - uid: 155 components: - pos: -6.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 714 + - uid: 156 components: - pos: 3.5,14.5 - parent: 732 + parent: 1 + type: Transform + - uid: 157 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 158 + components: + - pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 159 + components: + - pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 160 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 161 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 162 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 163 + components: + - pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 164 + components: + - pos: 8.5,6.5 + parent: 1 + type: Transform +- proto: Cablecuffs + entities: + - uid: 165 + components: + - pos: 1.5358834,5.585895 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - proto: CableHV entities: - - uid: 230 + - uid: 166 components: - pos: 1.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 269 + - uid: 167 components: - pos: -2.5,-1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 270 + - uid: 168 components: - pos: -1.5,-1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 271 + - uid: 169 components: - pos: -0.5,-1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 272 + - uid: 170 components: - pos: 0.5,-1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 273 + - uid: 171 components: - pos: 1.5,-1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 274 + - uid: 172 components: - pos: 1.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 275 + - uid: 173 components: - pos: 2.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 276 + - uid: 174 components: - pos: 3.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 279 + - uid: 175 components: - pos: -3.5,-1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 280 + - uid: 176 components: - pos: -4.5,-1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 281 + - uid: 177 components: - pos: -4.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 282 + - uid: 178 components: - pos: -4.5,-3.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 283 + - uid: 179 components: - pos: -4.5,-4.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 284 + - uid: 180 components: - pos: -4.5,-5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 285 + - uid: 181 components: - pos: -5.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 286 + - uid: 182 components: - pos: -6.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 287 + - uid: 183 components: - pos: -7.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 288 + - uid: 184 components: - pos: -7.5,-1.5 - parent: 732 + parent: 1 type: Transform - - uid: 289 + - uid: 185 components: - pos: -7.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 290 + - uid: 186 components: - pos: -7.5,0.5 - parent: 732 + parent: 1 type: Transform - - uid: 291 + - uid: 187 components: - pos: -7.5,1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 292 + - uid: 188 components: - pos: -7.5,2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 293 + - uid: 189 components: - pos: -7.5,3.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 294 + - uid: 190 components: - pos: -7.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 295 + - uid: 191 components: - pos: -7.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 296 + - uid: 192 components: - pos: -7.5,6.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 297 + - uid: 193 components: - pos: -3.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 298 + - uid: 194 components: - pos: -2.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 313 + - uid: 195 components: - pos: 1.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 315 + - uid: 196 components: - pos: 0.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 316 + - uid: 197 components: - pos: 1.5,8.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 318 + - uid: 198 components: - pos: -0.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 326 + - uid: 199 components: - pos: -1.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 488 + - uid: 200 components: - pos: 1.5,9.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 582 + - uid: 201 components: - pos: -4.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 585 + - uid: 202 components: - pos: -5.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 586 + - uid: 203 components: - pos: -6.5,6.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - proto: CableMV entities: - - uid: 300 + - uid: 204 components: - pos: -4.5,-5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 301 + - uid: 205 components: - pos: -4.5,-4.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 302 + - uid: 206 components: - pos: -4.5,-3.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 303 + - uid: 207 components: - pos: -4.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 304 + - uid: 208 components: - pos: -5.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 305 + - uid: 209 components: - pos: -6.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 306 + - uid: 210 components: - pos: -7.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 307 + - uid: 211 components: - pos: -8.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 308 + - uid: 212 components: - pos: -9.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 309 + - uid: 213 components: - pos: -9.5,-1.5 - parent: 732 + parent: 1 type: Transform - - uid: 310 + - uid: 214 components: - pos: -9.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 311 + - uid: 215 components: - pos: -9.5,0.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 314 + - uid: 216 components: - pos: -8.5,6.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 319 + - uid: 217 components: - pos: 1.5,9.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 320 + - uid: 218 components: - pos: 1.5,8.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 321 + - uid: 219 components: - pos: 1.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 322 + - uid: 220 components: - pos: -0.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 323 + - uid: 221 components: - pos: -0.5,5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 324 + - uid: 222 components: - pos: 0.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 325 + - uid: 223 components: - pos: 1.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 327 + - uid: 224 components: - pos: 2.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 328 + - uid: 225 components: - pos: 3.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 329 + - uid: 226 components: - pos: 4.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 330 + - uid: 227 components: - pos: 4.5,8.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 332 + - uid: 228 components: - pos: -3.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 333 + - uid: 229 components: - pos: -2.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 334 + - uid: 230 components: - pos: -1.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 335 + - uid: 231 components: - pos: -0.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 336 + - uid: 232 components: - pos: 0.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 337 + - uid: 233 components: - pos: 0.5,-1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 338 + - uid: 234 components: - pos: 0.5,-0.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - proto: CableTerminal entities: - - uid: 268 + - uid: 235 components: - rot: -1.5707963267948966 rad pos: -2.5,-1.5 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics @@ -1711,1907 +1679,1959 @@ entities: type: Fixtures - proto: CarpetBlack entities: - - uid: 526 + - uid: 236 components: - pos: -7.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 527 + - uid: 237 components: - pos: -7.5,8.5 - parent: 732 + parent: 1 type: Transform - - uid: 528 + - uid: 238 components: - pos: -8.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 530 + - uid: 239 components: - pos: -7.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 531 + - uid: 240 components: - pos: -8.5,8.5 - parent: 732 + parent: 1 type: Transform - - uid: 532 + - uid: 241 components: - pos: -8.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 612 + - uid: 242 components: - pos: -9.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 617 + - uid: 243 components: - pos: -9.5,8.5 - parent: 732 + parent: 1 type: Transform - - uid: 638 + - uid: 244 components: - pos: -9.5,10.5 - parent: 732 + parent: 1 type: Transform - proto: Catwalk entities: - - uid: 33 + - uid: 245 components: - rot: 3.141592653589793 rad pos: 3.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 86 + - uid: 246 components: - pos: 2.5,-1.5 - parent: 732 + parent: 1 type: Transform - - uid: 92 + - uid: 247 components: - pos: 2.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 491 + - uid: 248 components: - pos: 2.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 492 + - uid: 249 components: - pos: 1.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 493 + - uid: 250 components: - pos: 0.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 494 + - uid: 251 components: - pos: -0.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 495 + - uid: 252 components: - pos: -1.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 496 + - uid: 253 components: - pos: -2.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 497 + - uid: 254 components: - pos: -3.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 498 + - uid: 255 components: - pos: -4.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 499 + - uid: 256 components: - pos: 3.5,11.5 - parent: 732 + parent: 1 type: Transform - - uid: 500 + - uid: 257 components: - pos: 3.5,12.5 - parent: 732 + parent: 1 type: Transform - - uid: 501 + - uid: 258 components: - pos: 3.5,13.5 - parent: 732 - type: Transform - - uid: 502 - components: - - pos: 5.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 503 + - uid: 259 components: - pos: -10.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 504 + - uid: 260 components: - pos: -7.5,1.5 - parent: 732 + parent: 1 type: Transform - - uid: 506 + - uid: 261 components: - pos: -7.5,3.5 - parent: 732 + parent: 1 type: Transform - - uid: 590 + - uid: 262 components: - rot: 1.5707963267948966 rad pos: -7.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 630 + - uid: 263 components: - rot: 3.141592653589793 rad pos: 3.5,14.5 - parent: 732 + parent: 1 type: Transform - - uid: 724 + - uid: 264 components: - pos: -6.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 725 + - uid: 265 components: - pos: -7.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 726 + - uid: 266 components: - pos: -8.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 727 + - uid: 267 components: - pos: -9.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 728 + - uid: 268 components: - pos: 2.5,3.5 - parent: 732 + parent: 1 type: Transform - - uid: 729 + - uid: 269 components: - pos: 2.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 730 + - uid: 270 components: - pos: 2.5,1.5 - parent: 732 + parent: 1 + type: Transform + - uid: 271 + components: + - pos: 7.5,2.5 + parent: 1 type: Transform - proto: Chair entities: - - uid: 102 + - uid: 272 components: - rot: -1.5707963267948966 rad pos: -3.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 611 + - uid: 273 components: - pos: -1.5,7.5 - parent: 732 + parent: 1 type: Transform - proto: ChairPilotSeat entities: - - uid: 20 + - uid: 274 components: - - pos: -2.5,11.5 - parent: 732 + - rot: 3.141592653589793 rad + pos: -2.5,12.5 + parent: 1 type: Transform - - uid: 153 + - uid: 275 components: - - pos: -1.5,11.5 - parent: 732 + - rot: 3.141592653589793 rad + pos: -3.5,11.5 + parent: 1 type: Transform - - uid: 570 + - uid: 276 components: - - pos: -3.5,11.5 - parent: 732 + - rot: 3.141592653589793 rad + pos: -1.5,11.5 + parent: 1 type: Transform - proto: ClosetEmergencyFilledRandom entities: - - uid: 519 + - uid: 277 components: - pos: -10.5,3.5 - parent: 732 + parent: 1 type: Transform - - uid: 522 + - uid: 278 components: - - pos: 5.5,3.5 - parent: 732 + - pos: 7.5,3.5 + parent: 1 type: Transform - proto: ClothingBeltUtilityFilled entities: - - uid: 723 + - uid: 279 components: - pos: -2.4051805,-3.3849664 - parent: 732 + parent: 1 type: Transform - proto: ClothingHandsGlovesLatex entities: - - uid: 596 + - uid: 280 components: - pos: 3.8298292,5.5017543 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - proto: ClothingHeadHatPirate entities: - - uid: 547 + - uid: 281 components: - pos: -6.554,8.790821 - parent: 732 + parent: 1 type: Transform - proto: ClothingHeadHatPirateTricord entities: - - uid: 648 + - uid: 282 components: - pos: -0.664912,7.833114 - parent: 732 - type: Transform - - uid: 675 - components: - - pos: -0.5071249,9.853321 - parent: 732 + parent: 1 type: Transform - proto: ClothingHeadHatWelding entities: - - uid: 592 + - uid: 283 components: - pos: -6.50084,2.62934 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics +- proto: ClothingHeadHelmetPodWars + entities: + - uid: 284 + components: + - pos: -4.5001793,0.72629523 + parent: 1 + type: Transform + - uid: 285 + components: + - pos: -4.7293463,0.43462825 + parent: 1 + type: Transform - proto: ClothingMaskBreath entities: - - uid: 589 + - uid: 286 components: - pos: 1.4823287,2.5088873 - parent: 732 + parent: 1 type: Transform - - uid: 613 + - uid: 287 components: - pos: 1.6489947,2.6338873 - parent: 732 + parent: 1 type: Transform - - uid: 614 + - uid: 288 components: - pos: 1.2739947,2.6963873 - parent: 732 + parent: 1 type: Transform - proto: ClothingNeckCloakPirateCap entities: - - uid: 678 + - uid: 289 components: - pos: -6.52275,8.478321 - parent: 732 + parent: 1 type: Transform -- proto: ClothingOuterCoatGentle +- proto: ClothingOuterArmorBasic entities: - - uid: 676 + - uid: 290 + components: + - pos: -0.4558921,0.70815384 + parent: 1 + type: Transform + - uid: 291 + components: + - pos: -0.5808921,0.52065384 + parent: 1 + type: Transform + - uid: 292 + components: + - pos: -0.5965171,0.39565372 + parent: 1 + type: Transform +- proto: ClothingOuterArmorPodWars + entities: + - uid: 293 + components: + - pos: -4.6251793,0.7317376 + parent: 1 + type: Transform + - uid: 294 components: - - pos: -0.4289999,9.618946 - parent: 732 + - pos: -4.6876793,0.56995964 + parent: 1 type: Transform - proto: ClothingOuterCoatPirate entities: - - uid: 679 + - uid: 295 components: - pos: -6.27275,8.540821 - parent: 732 + parent: 1 + type: Transform +- proto: ClothingOuterCoatSyndieCapArmored + entities: + - uid: 296 + components: + - pos: -0.47831082,10.750551 + parent: 1 type: Transform - proto: ClothingShoesBootsMag entities: - - uid: 537 + - uid: 297 components: - pos: -0.55260205,3.4916167 - parent: 732 + parent: 1 type: Transform - - uid: 677 + - uid: 298 components: - pos: -0.55260205,3.4916167 - parent: 732 + parent: 1 type: Transform - - uid: 680 + - uid: 299 components: - pos: -0.55260205,3.4916167 - parent: 732 + parent: 1 type: Transform - - uid: 681 + - uid: 300 components: - pos: -0.55260205,3.4916167 - parent: 732 + parent: 1 type: Transform - - uid: 682 + - uid: 301 components: - pos: -0.55260205,3.4916167 - parent: 732 + parent: 1 type: Transform - - uid: 683 + - uid: 302 components: - pos: -0.55260205,3.4916167 - parent: 732 + parent: 1 type: Transform - - uid: 684 + - uid: 303 components: - pos: -0.55260205,3.4916167 - parent: 732 + parent: 1 type: Transform - - uid: 685 + - uid: 304 components: - pos: -0.55260205,3.4916167 - parent: 732 + parent: 1 type: Transform - proto: ClothingUniformJumpsuitPirate entities: - - uid: 579 + - uid: 305 components: - pos: -0.477412,7.442489 - parent: 732 + parent: 1 type: Transform - - uid: 647 + - uid: 306 components: - pos: -0.305537,7.583114 - parent: 732 + parent: 1 type: Transform - proto: ComputerIFFSyndicate entities: - - uid: 580 + - uid: 307 components: - pos: -1.5,12.5 - parent: 732 + parent: 1 type: Transform - proto: ComputerRadar entities: - - uid: 160 + - uid: 308 components: - pos: -3.5,12.5 - parent: 732 + parent: 1 type: Transform -- proto: ComputerShuttleSyndie +- proto: ComputerShuttle entities: - - uid: 60 + - uid: 309 components: - - pos: -2.5,12.5 - parent: 732 + - pos: -2.5,13.5 + parent: 1 type: Transform - proto: CratePirateChest entities: - - uid: 569 + - uid: 310 components: - pos: -2.5,0.5 - parent: 732 + parent: 1 type: Transform - proto: CratePirateChestCaptain entities: - - uid: 639 + - uid: 311 components: - pos: -9.5,8.5 - parent: 732 + parent: 1 type: Transform - proto: CratePrivateSecure entities: - - uid: 544 + - uid: 312 components: - pos: -0.5,4.5 - parent: 732 + parent: 1 type: Transform - proto: CrowbarRed entities: - - uid: 635 + - uid: 313 components: - pos: -8.437552,-4.4587874 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - proto: DrinkBottleAle entities: - - uid: 514 + - uid: 314 components: - pos: -9.517828,-1.2026272 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - proto: DrinkCognacBottleFull entities: - - uid: 513 + - uid: 315 components: - pos: -9.455328,-1.4370022 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - proto: DrinkGlass entities: - - uid: 558 + - uid: 316 components: - pos: -7.3675203,-2.6619558 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - - uid: 559 + - uid: 317 components: - pos: -7.4925203,-2.2557058 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - - uid: 560 + - uid: 318 components: - pos: -7.2581453,-1.2869558 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - proto: DrinkGrogGlass entities: - - uid: 591 + - uid: 319 components: - pos: -7.611698,-3.9578404 - parent: 732 + parent: 1 type: Transform - - uid: 620 + - uid: 320 components: - pos: -7.580448,-1.5984654 - parent: 732 + parent: 1 type: Transform - proto: DrinkShaker entities: - - uid: 511 + - uid: 321 components: - pos: -9.676509,-1.6372542 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - proto: DrinkWhiskeyBottleFull entities: - - uid: 557 + - uid: 322 components: - pos: -7.6487703,-3.1932058 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - proto: DrinkWineBottleFull entities: - - uid: 512 + - uid: 323 components: - pos: -9.720953,-1.2651272 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - proto: FaxMachineSyndie entities: - - uid: 533 + - uid: 324 components: - pos: -9.5,10.5 - parent: 732 + parent: 1 type: Transform - name: pirate fax type: FaxMachine - proto: FireExtinguisher entities: - - uid: 577 + - uid: 325 components: - pos: -4.625556,7.7085676 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - - uid: 578 + - uid: 326 components: - pos: -4.391181,7.6616926 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - proto: Fireplace entities: - - uid: 603 + - uid: 327 components: - pos: -7.5,10.5 - parent: 732 + parent: 1 type: Transform - proto: GasMixerFlipped entities: - - uid: 191 + - uid: 328 components: - rot: 1.5707963267948966 rad pos: 1.5,-3.5 - parent: 732 + parent: 1 type: Transform - inletTwoConcentration: 0.22000003 inletOneConcentration: 0.78 type: GasMixer - proto: GasPassiveVent entities: - - uid: 201 + - uid: 329 components: - rot: -1.5707963267948966 rad pos: 4.5,-1.5 - parent: 732 + parent: 1 type: Transform - - uid: 202 + - uid: 330 components: - rot: -1.5707963267948966 rad pos: 4.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 688 + - uid: 331 components: - rot: 3.141592653589793 rad pos: 2.5,-7.5 - parent: 732 + parent: 1 type: Transform - - uid: 689 + - uid: 332 components: - rot: 3.141592653589793 rad pos: -6.5,-7.5 - parent: 732 + parent: 1 type: Transform - - uid: 705 + - uid: 333 components: - rot: 1.5707963267948966 rad pos: -11.5,10.5 - parent: 732 + parent: 1 type: Transform - proto: GasPipeBend entities: - - uid: 190 + - uid: 334 components: - rot: -1.5707963267948966 rad pos: 2.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 197 + - uid: 335 components: - rot: 1.5707963267948966 rad pos: 2.5,-1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 198 + - uid: 336 components: - rot: 1.5707963267948966 rad pos: 0.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 214 + - uid: 337 components: - pos: -2.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 219 + - uid: 338 components: - rot: 3.141592653589793 rad pos: -7.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 246 + - uid: 339 components: - rot: 3.141592653589793 rad pos: 2.5,-0.5 - parent: 732 - type: Transform - - enabled: True - type: AmbientSound - - uid: 646 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 706 + - uid: 340 components: - rot: 1.5707963267948966 rad pos: -7.5,8.5 - parent: 732 + parent: 1 type: Transform - proto: GasPipeFourway entities: - - uid: 228 + - uid: 341 components: - pos: -7.5,6.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 233 + - uid: 342 components: - pos: -2.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 254 + - uid: 343 components: - pos: 2.5,6.5 - parent: 732 + parent: 1 type: Transform - proto: GasPipeStraight entities: - - uid: 115 + - uid: 344 components: - rot: 1.5707963267948966 rad pos: 3.5,-1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 199 + - uid: 345 components: - rot: 1.5707963267948966 rad pos: 1.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 212 + - uid: 346 components: - rot: -1.5707963267948966 rad pos: -1.5,-3.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 215 + - uid: 347 components: - rot: -1.5707963267948966 rad pos: -3.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 216 + - uid: 348 components: - rot: -1.5707963267948966 rad pos: -4.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 217 + - uid: 349 components: - rot: -1.5707963267948966 rad pos: -5.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 218 + - uid: 350 components: - rot: -1.5707963267948966 rad pos: -6.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 221 + - uid: 351 components: - rot: 3.141592653589793 rad pos: -7.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 222 + - uid: 352 components: - rot: 3.141592653589793 rad pos: -7.5,0.5 - parent: 732 + parent: 1 type: Transform - - uid: 223 + - uid: 353 components: - rot: 3.141592653589793 rad pos: -7.5,1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 225 + - uid: 354 components: - pos: -7.5,3.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 226 + - uid: 355 components: - pos: -7.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 227 + - uid: 356 components: - pos: -7.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 229 + - uid: 357 components: - rot: -1.5707963267948966 rad pos: -6.5,6.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 231 + - uid: 358 components: - rot: -1.5707963267948966 rad pos: -4.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 232 + - uid: 359 components: - rot: -1.5707963267948966 rad pos: -3.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 235 + - uid: 360 components: - rot: 1.5707963267948966 rad pos: -1.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 236 + - uid: 361 components: - rot: 1.5707963267948966 rad pos: -0.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 237 + - uid: 362 components: - rot: 1.5707963267948966 rad pos: 0.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 238 + - uid: 363 components: - rot: 1.5707963267948966 rad pos: 1.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 240 + - uid: 364 components: - pos: 2.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 241 + - uid: 365 components: - pos: 2.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 242 + - uid: 366 components: - pos: 2.5,3.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 244 + - uid: 367 components: - rot: 3.141592653589793 rad pos: 2.5,1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 245 + - uid: 368 components: - rot: 3.141592653589793 rad pos: 2.5,0.5 - parent: 732 + parent: 1 type: Transform - - uid: 247 + - uid: 369 components: - rot: 1.5707963267948966 rad pos: 3.5,-0.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 248 + - uid: 370 components: - pos: -2.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 249 + - uid: 371 components: - pos: -2.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 250 + - uid: 372 components: - pos: -2.5,3.5 - parent: 732 + parent: 1 type: Transform - - uid: 251 + - uid: 373 components: - rot: 3.141592653589793 rad pos: -2.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 259 + - uid: 374 components: - rot: 3.141592653589793 rad pos: -2.5,8.5 - parent: 732 + parent: 1 type: Transform - - uid: 317 + - uid: 375 components: - rot: -1.5707963267948966 rad pos: -5.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 643 + - uid: 376 components: - rot: 3.141592653589793 rad pos: 3.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 644 + - uid: 377 components: - rot: 3.141592653589793 rad pos: 3.5,8.5 - parent: 732 + parent: 1 type: Transform - - uid: 686 + - uid: 378 components: - pos: 2.5,-5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 687 + - uid: 379 components: - pos: 2.5,-6.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 690 + - uid: 380 components: - rot: 3.141592653589793 rad pos: -6.5,-6.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 691 + - uid: 381 components: - rot: 3.141592653589793 rad pos: -6.5,-5.5 - parent: 732 + parent: 1 type: Transform - - uid: 692 + - uid: 382 components: - rot: 3.141592653589793 rad pos: -6.5,-4.5 - parent: 732 + parent: 1 type: Transform - - uid: 693 + - uid: 383 components: - rot: 3.141592653589793 rad pos: -6.5,-3.5 - parent: 732 + parent: 1 type: Transform - - uid: 694 + - uid: 384 components: - rot: 3.141592653589793 rad pos: -6.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 695 + - uid: 385 components: - rot: 3.141592653589793 rad pos: -6.5,-1.5 - parent: 732 + parent: 1 type: Transform - - uid: 699 + - uid: 386 components: - rot: 3.141592653589793 rad pos: -7.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 701 + - uid: 387 components: - rot: -1.5707963267948966 rad pos: -7.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 702 + - uid: 388 components: - rot: -1.5707963267948966 rad pos: -8.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 703 + - uid: 389 components: - rot: -1.5707963267948966 rad pos: -9.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 704 + - uid: 390 components: - rot: -1.5707963267948966 rad pos: -10.5,10.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 708 + - uid: 391 components: - rot: -1.5707963267948966 rad pos: -4.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 709 + - uid: 392 components: - rot: -1.5707963267948966 rad pos: -5.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 717 + - uid: 393 components: - rot: 3.141592653589793 rad pos: -2.5,1.5 - parent: 732 + parent: 1 + type: Transform + - uid: 394 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 395 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 396 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1 type: Transform - proto: GasPipeTJunction entities: - - uid: 196 + - uid: 397 + components: + - rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 398 components: - rot: 3.141592653589793 rad pos: 0.5,-3.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 213 + - uid: 399 components: - rot: 1.5707963267948966 rad pos: -2.5,-3.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 220 + - uid: 400 components: - rot: -1.5707963267948966 rad pos: -7.5,-1.5 - parent: 732 + parent: 1 type: Transform - - uid: 224 + - uid: 401 components: - rot: -1.5707963267948966 rad pos: -7.5,2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 234 + - uid: 402 components: - rot: -1.5707963267948966 rad pos: -2.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 505 + - uid: 403 components: - rot: 1.5707963267948966 rad pos: 2.5,2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 707 + - uid: 404 components: - pos: -6.5,10.5 - parent: 732 + parent: 1 type: Transform - proto: GasPort entities: - - uid: 205 + - uid: 405 components: - rot: -1.5707963267948966 rad pos: 3.5,-3.5 - parent: 732 + parent: 1 type: Transform - - uid: 206 + - uid: 406 components: - rot: 3.141592653589793 rad pos: 1.5,-5.5 - parent: 732 + parent: 1 type: Transform - proto: GasPressurePump entities: - - uid: 203 + - uid: 407 components: - rot: 3.141592653589793 rad pos: 1.5,-4.5 - parent: 732 + parent: 1 type: Transform - - uid: 204 + - uid: 408 components: - rot: -1.5707963267948966 rad pos: 2.5,-3.5 - parent: 732 + parent: 1 type: Transform - - uid: 211 + - uid: 409 components: - rot: -1.5707963267948966 rad pos: -0.5,-3.5 - parent: 732 + parent: 1 type: Transform - proto: GasVentPump entities: - - uid: 239 + - uid: 410 components: - pos: 2.5,7.5 - parent: 732 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - - uid: 243 + - uid: 411 components: - rot: -1.5707963267948966 rad pos: 3.5,2.5 - parent: 732 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - - uid: 252 + - uid: 412 components: - rot: 1.5707963267948966 rad pos: -3.5,7.5 - parent: 732 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - - uid: 253 + - uid: 413 components: - rot: 1.5707963267948966 rad pos: -8.5,6.5 - parent: 732 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - - uid: 255 + - uid: 414 components: - rot: 1.5707963267948966 rad pos: -8.5,2.5 - parent: 732 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - - uid: 257 + - uid: 415 components: - rot: 1.5707963267948966 rad pos: -8.5,-1.5 - parent: 732 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - - uid: 258 + - uid: 416 components: - rot: 3.141592653589793 rad pos: -2.5,-4.5 - parent: 732 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - - uid: 260 + - uid: 417 components: - pos: -2.5,9.5 - parent: 732 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - - uid: 660 + - uid: 418 components: - pos: 3.5,9.5 - parent: 732 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - - uid: 700 + - uid: 419 components: - rot: -1.5707963267948966 rad pos: -6.5,8.5 - parent: 732 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - - uid: 718 + - uid: 420 components: - rot: 3.141592653589793 rad pos: -2.5,0.5 - parent: 732 + parent: 1 + type: Transform + - uid: 421 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - proto: GasVentScrubber entities: - - uid: 645 + - uid: 422 components: - pos: 2.5,-4.5 - parent: 732 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - - uid: 696 + - uid: 423 components: - pos: -6.5,-0.5 - parent: 732 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - - uid: 697 + - uid: 424 components: - rot: -1.5707963267948966 rad pos: -3.5,10.5 - parent: 732 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - - uid: 698 + - uid: 425 components: - rot: 3.141592653589793 rad pos: -6.5,9.5 - parent: 732 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - proto: GeneratorBasic15kW entities: - - uid: 55 + - uid: 426 components: - pos: 0.5,-1.5 - parent: 732 + parent: 1 type: Transform - - uid: 265 + - uid: 427 components: - pos: -0.5,-1.5 - parent: 732 + parent: 1 type: Transform - - uid: 266 + - uid: 428 components: - pos: -1.5,-1.5 - parent: 732 + parent: 1 type: Transform - proto: GeneratorWallmountAPU entities: - - uid: 264 + - uid: 429 components: - pos: 3.5,-2.5 - parent: 732 + parent: 1 type: Transform - proto: GravityGeneratorMini entities: - - uid: 361 + - uid: 430 components: - pos: -1.5,-5.5 - parent: 732 + parent: 1 type: Transform - proto: Grille entities: - - uid: 11 + - uid: 431 components: - - pos: -3.5,13.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: -4.5,13.5 + parent: 1 type: Transform - - uid: 18 - components: - - pos: -0.5,12.5 - parent: 732 - type: Transform - - uid: 31 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,3.5 - parent: 732 - type: Transform - - uid: 36 - components: - - pos: -4.5,12.5 - parent: 732 - type: Transform - - uid: 45 - components: - - pos: -2.5,13.5 - parent: 732 - type: Transform - - uid: 47 + - uid: 432 components: - pos: 0.5,12.5 - parent: 732 - type: Transform - - uid: 50 - components: - - pos: 0.5,11.5 - parent: 732 + parent: 1 type: Transform - - uid: 89 + - uid: 433 components: - pos: -5.5,12.5 - parent: 732 + parent: 1 type: Transform - - uid: 105 + - uid: 434 components: - rot: -1.5707963267948966 rad pos: -11.5,3.5 - parent: 732 + parent: 1 type: Transform - - uid: 150 + - uid: 435 components: - rot: -1.5707963267948966 rad - pos: 6.5,1.5 - parent: 732 - type: Transform - - uid: 151 - components: - - pos: -0.5,13.5 - parent: 732 - type: Transform - - uid: 152 - components: - - pos: -1.5,13.5 - parent: 732 + pos: -0.5,13.5 + parent: 1 type: Transform - - uid: 188 + - uid: 436 components: - pos: -10.5,8.5 - parent: 732 + parent: 1 type: Transform - - uid: 299 + - uid: 437 components: - pos: 4.5,11.5 - parent: 732 + parent: 1 type: Transform - - uid: 462 + - uid: 438 components: - pos: 2.5,12.5 - parent: 732 + parent: 1 type: Transform - - uid: 489 + - uid: 439 components: - pos: 3.5,-1.5 - parent: 732 + parent: 1 type: Transform - - uid: 490 + - uid: 440 components: - pos: 3.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 508 + - uid: 441 components: - pos: 2.5,11.5 - parent: 732 + parent: 1 type: Transform - - uid: 509 + - uid: 442 components: - pos: 4.5,13.5 - parent: 732 + parent: 1 type: Transform - - uid: 510 + - uid: 443 components: - pos: 4.5,12.5 - parent: 732 + parent: 1 type: Transform - - uid: 550 + - uid: 444 components: - pos: -10.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 552 + - uid: 445 components: - pos: -10.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 601 + - uid: 446 components: - - pos: -4.5,13.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: -1.5,13.5 + parent: 1 type: Transform - - uid: 653 + - uid: 447 components: - pos: 2.5,13.5 - parent: 732 + parent: 1 type: Transform - - uid: 672 + - uid: 448 components: - rot: -1.5707963267948966 rad pos: -11.5,1.5 - parent: 732 + parent: 1 type: Transform - - uid: 715 + - uid: 449 components: - rot: 3.141592653589793 rad pos: 2.5,14.5 - parent: 732 + parent: 1 type: Transform - - uid: 716 + - uid: 450 components: - rot: 3.141592653589793 rad pos: 4.5,14.5 - parent: 732 + parent: 1 + type: Transform + - uid: 451 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,13.5 + parent: 1 + type: Transform + - uid: 452 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,14.5 + parent: 1 + type: Transform + - uid: 453 + components: + - rot: 3.141592653589793 rad + pos: 8.5,6.5 + parent: 1 + type: Transform + - uid: 454 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 455 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,1.5 + parent: 1 + type: Transform +- proto: GrilleDiagonal + entities: + - uid: 456 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - uid: 457 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,13.5 + parent: 1 + type: Transform + - uid: 458 + components: + - pos: -3.5,14.5 + parent: 1 + type: Transform + - uid: 459 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,14.5 + parent: 1 type: Transform - proto: Gyroscope entities: - - uid: 467 + - uid: 460 components: - pos: -2.5,-5.5 - parent: 732 + parent: 1 type: Transform - - uid: 469 + - uid: 461 components: - pos: -3.5,-5.5 - parent: 732 + parent: 1 type: Transform - proto: HandheldHealthAnalyzer entities: - - uid: 597 + - uid: 462 components: - pos: 3.4609303,5.7205043 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - proto: Lighter entities: - - uid: 518 + - uid: 463 components: - pos: -7.3640995,-4.4362655 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics -- proto: MagazineBoxMagnumHighVelocity +- proto: MagazineBoxAntiMateriel entities: - - uid: 671 + - uid: 464 + components: + - pos: -4.7390633,3.4536512 + parent: 1 + type: Transform +- proto: MagazineBoxMagnum + entities: + - uid: 465 components: - pos: -4.394046,3.4745688 - parent: 732 + parent: 1 type: Transform - proto: MedkitFilled entities: - - uid: 593 + - uid: 466 components: - pos: 4.3572884,5.694452 - parent: 732 + parent: 1 type: Transform - - uid: 595 + - uid: 467 components: - pos: 4.548579,5.6111293 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - proto: MedkitOxygenFilled entities: - - uid: 594 + - uid: 468 components: - pos: 4.579829,7.5955043 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - proto: NitrogenCanister entities: - - uid: 207 + - uid: 469 components: - pos: 3.5,-3.5 - parent: 732 + parent: 1 type: Transform - proto: OxygenCanister entities: - - uid: 208 + - uid: 470 components: - pos: 1.5,-5.5 - parent: 732 - type: Transform - - uid: 520 - components: - - pos: 5.5,1.5 - parent: 732 + parent: 1 type: Transform - - uid: 521 + - uid: 471 components: - pos: -10.5,1.5 - parent: 732 + parent: 1 type: Transform - - uid: 605 + - uid: 472 components: - pos: -9.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 606 + - uid: 473 components: - pos: -4.5,-1.5 - parent: 732 + parent: 1 + type: Transform + - uid: 474 + components: + - pos: 7.5,1.5 + parent: 1 type: Transform - proto: PaperBin5 entities: - - uid: 731 + - uid: 475 components: - - pos: -0.5,10.5 - parent: 732 + - pos: -0.5,11.5 + parent: 1 type: Transform - proto: Pen entities: - - uid: 664 + - uid: 476 components: - pos: -8.966801,10.694164 - parent: 732 - type: Transform -- proto: PersonalAI - entities: - - uid: 278 - components: - - flags: SessionSpecific - type: MetaData - - pos: -4.4466166,11.478956 - parent: 732 + parent: 1 type: Transform - proto: PosterContrabandRevolt entities: - - uid: 109 + - uid: 477 components: - rot: 3.141592653589793 rad pos: 0.5,2.5 - parent: 732 + parent: 1 type: Transform - proto: PosterContrabandRevolver entities: - - uid: 148 + - uid: 478 components: - rot: 3.141592653589793 rad pos: -3.5,5.5 - parent: 732 + parent: 1 type: Transform - proto: PosterContrabandRise entities: - - uid: 169 + - uid: 479 components: - rot: 3.141592653589793 rad pos: -5.5,2.5 - parent: 732 + parent: 1 type: Transform - proto: PosterContrabandSmoke entities: - - uid: 604 + - uid: 480 components: - pos: -8.5,7.5 - parent: 732 + parent: 1 type: Transform - proto: PosterContrabandSyndicateRecruitment entities: - - uid: 110 + - uid: 481 components: - rot: 3.141592653589793 rad pos: -2.5,-0.5 - parent: 732 + parent: 1 type: Transform - proto: PosterLegitUeNo entities: - - uid: 610 + - uid: 482 components: - pos: -9.5,3.5 - parent: 732 + parent: 1 type: Transform - proto: PowerCellRecharger entities: - - uid: 719 + - uid: 483 components: - rot: 3.141592653589793 rad pos: -4.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 722 + - uid: 484 components: - rot: 3.141592653589793 rad pos: -1.5,-3.5 - parent: 732 + parent: 1 type: Transform - proto: PoweredSmallLight entities: - - uid: 446 + - uid: 485 + components: + - rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 486 components: - pos: 0.5,-1.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 447 + - uid: 487 components: - pos: -2.5,-1.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 448 + - uid: 488 components: - rot: 1.5707963267948966 rad pos: -9.5,-0.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 449 + - uid: 489 components: - rot: 3.141592653589793 rad pos: -7.5,-4.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 450 + - uid: 490 components: - pos: -10.5,3.5 - parent: 732 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 451 - components: - - pos: 5.5,3.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 452 + - uid: 491 components: - - rot: -1.5707963267948966 rad - pos: 3.5,3.5 - parent: 732 + - rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 1 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 453 + - uid: 492 components: - rot: 1.5707963267948966 rad pos: -8.5,3.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 454 + - uid: 493 components: - rot: 3.141592653589793 rad pos: -4.5,9.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 455 + - uid: 494 components: - rot: 3.141592653589793 rad pos: -0.5,9.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 456 + - uid: 495 components: - rot: 1.5707963267948966 rad pos: -4.5,2.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 457 + - uid: 496 components: - rot: -1.5707963267948966 rad pos: -0.5,2.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 458 + - uid: 497 components: - rot: 3.141592653589793 rad pos: -2.5,0.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 459 + - uid: 498 components: - pos: 2.5,7.5 - parent: 732 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 460 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,6.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 461 + - uid: 499 components: - rot: -1.5707963267948966 rad pos: 3.5,11.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 463 + - uid: 500 components: - rot: 1.5707963267948966 rad pos: -9.5,6.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 464 + - uid: 501 components: - rot: -1.5707963267948966 rad pos: -6.5,5.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 465 + - uid: 502 components: - pos: -4.5,7.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 466 + - uid: 503 components: - pos: -0.5,7.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 549 + - uid: 504 components: - rot: -1.5707963267948966 rad pos: -6.5,9.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 599 + - uid: 505 components: - pos: -8.5,10.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 506 + components: + - rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 507 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 508 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + type: Transform - proto: Rack entities: - - uid: 256 + - uid: 509 components: - pos: -6.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 615 + - uid: 510 components: - pos: 1.5,2.5 - parent: 732 + parent: 1 type: Transform -- proto: ReinforcedPlasmaWindow +- proto: RandomPosterContraband entities: - - uid: 194 + - uid: 511 components: - - rot: 1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 732 + - pos: 3.5,4.5 + parent: 1 type: Transform - - uid: 195 + - uid: 512 components: - - rot: 1.5707963267948966 rad - pos: 3.5,-1.5 - parent: 732 + - pos: -1.5,8.5 + parent: 1 type: Transform -- proto: RollerBed +- proto: ReinforcedPlasmaWindow entities: - - uid: 571 + - uid: 513 components: - - pos: 4.360234,6.581131 - parent: 732 + - pos: 8.5,3.5 + parent: 1 type: Transform - - canCollide: False - type: Physics -- proto: ShuttleWindow - entities: - - uid: 2 + - uid: 514 components: - - rot: 1.5707963267948966 rad + - pos: -2.5,14.5 + parent: 1 + type: Transform + - uid: 515 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 516 + components: + - rot: -1.5707963267948966 rad pos: -1.5,13.5 - parent: 732 + parent: 1 type: Transform - - uid: 15 + - uid: 517 components: - rot: 1.5707963267948966 rad - pos: -10.5,8.5 - parent: 732 + pos: 3.5,-0.5 + parent: 1 type: Transform - - uid: 17 + - uid: 518 components: - rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 519 + components: + - rot: -1.5707963267948966 rad pos: 4.5,11.5 - parent: 732 + parent: 1 type: Transform - - uid: 21 + - uid: 520 components: - - rot: 1.5707963267948966 rad - pos: 4.5,12.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: 4.5,13.5 + parent: 1 type: Transform - - uid: 29 + - uid: 521 components: - - rot: 1.5707963267948966 rad - pos: -3.5,13.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: 4.5,12.5 + parent: 1 type: Transform - - uid: 32 + - uid: 522 components: - - rot: 1.5707963267948966 rad - pos: 2.5,13.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: 2.5,12.5 + parent: 1 type: Transform - - uid: 43 + - uid: 523 components: - - rot: 1.5707963267948966 rad + - rot: -1.5707963267948966 rad pos: -4.5,13.5 - parent: 732 + parent: 1 type: Transform - - uid: 46 + - uid: 524 components: - - pos: -5.5,12.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: -10.5,10.5 + parent: 1 type: Transform - - uid: 53 + - uid: 525 components: - - rot: 3.141592653589793 rad - pos: 2.5,14.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: 0.5,12.5 + parent: 1 type: Transform - - uid: 58 + - uid: 526 components: - - rot: 1.5707963267948966 rad - pos: -0.5,12.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: 2.5,11.5 + parent: 1 type: Transform - - uid: 88 + - uid: 527 components: - - rot: 1.5707963267948966 rad - pos: -10.5,10.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: 2.5,13.5 + parent: 1 type: Transform - - uid: 94 + - uid: 528 components: - rot: -1.5707963267948966 rad - pos: 6.5,3.5 - parent: 732 + pos: -10.5,8.5 + parent: 1 type: Transform - - uid: 119 + - uid: 529 components: - - rot: 1.5707963267948966 rad - pos: -2.5,13.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: 2.5,14.5 + parent: 1 type: Transform - - uid: 121 + - uid: 530 components: - rot: -1.5707963267948966 rad - pos: 6.5,1.5 - parent: 732 + pos: -3.5,13.5 + parent: 1 type: Transform - - uid: 131 + - uid: 531 components: - - rot: 1.5707963267948966 rad - pos: -0.5,13.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: -10.5,9.5 + parent: 1 type: Transform - - uid: 132 + - uid: 532 components: - - rot: 1.5707963267948966 rad - pos: 0.5,12.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: -5.5,12.5 + parent: 1 type: Transform - - uid: 140 + - uid: 533 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,14.5 + parent: 1 + type: Transform + - uid: 534 components: - rot: -1.5707963267948966 rad pos: -11.5,1.5 - parent: 732 + parent: 1 type: Transform - - uid: 145 + - uid: 535 components: - - rot: 1.5707963267948966 rad - pos: 0.5,11.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: -11.5,3.5 + parent: 1 type: Transform - - uid: 162 + - uid: 536 components: - rot: 1.5707963267948966 rad - pos: -10.5,9.5 - parent: 732 + pos: 5.5,7.5 + parent: 1 type: Transform - - uid: 171 + - uid: 537 components: - rot: 1.5707963267948966 rad - pos: -4.5,12.5 - parent: 732 + pos: 5.5,5.5 + parent: 1 type: Transform - - uid: 183 + - uid: 538 components: - - rot: 1.5707963267948966 rad - pos: 2.5,11.5 - parent: 732 + - rot: 3.141592653589793 rad + pos: 8.5,6.5 + parent: 1 type: Transform - - uid: 189 + - uid: 539 components: - - rot: 1.5707963267948966 rad - pos: 4.5,13.5 - parent: 732 + - pos: 8.5,1.5 + parent: 1 type: Transform - - uid: 200 +- proto: ReinforcedPlasmaWindowDiagonal + entities: + - uid: 540 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - uid: 541 components: - rot: -1.5707963267948966 rad - pos: -11.5,3.5 - parent: 732 + pos: -1.5,14.5 + parent: 1 type: Transform - - uid: 642 + - uid: 542 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,13.5 + parent: 1 + type: Transform + - uid: 543 + components: + - pos: -3.5,14.5 + parent: 1 + type: Transform +- proto: RollerBed + entities: + - uid: 544 + components: + - pos: 1.5516887,5.6169386 + parent: 1 + type: Transform +- proto: SignPrison + entities: + - uid: 545 components: - rot: 1.5707963267948966 rad - pos: 2.5,12.5 - parent: 732 + pos: 5.5,7.5 + parent: 1 type: Transform - - uid: 711 + - uid: 546 components: - - rot: 3.141592653589793 rad - pos: 4.5,14.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 type: Transform - proto: SinkWide entities: - - uid: 598 + - uid: 547 components: - rot: 1.5707963267948966 rad pos: -9.5,-4.5 - parent: 732 + parent: 1 type: Transform - proto: SMESBasic entities: - - uid: 267 + - uid: 548 components: - pos: -3.5,-1.5 - parent: 732 + parent: 1 type: Transform - proto: soda_dispenser entities: - - uid: 477 + - uid: 549 components: - rot: 1.5707963267948966 rad pos: -9.5,-2.5 - parent: 732 + parent: 1 type: Transform - containers: ReagentDispenser-beaker: !type:ContainerSlot @@ -3633,1195 +3653,1341 @@ entities: type: ContainerContainer - proto: SpawnPointPirates entities: - - uid: 548 + - uid: 550 components: - pos: 0.5,-3.5 - parent: 732 + parent: 1 type: Transform - - uid: 587 + - uid: 551 components: - pos: -8.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 657 + - uid: 552 components: - pos: -7.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 658 + - uid: 553 components: - pos: -7.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 659 + - uid: 554 components: - pos: -2.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 661 + - uid: 555 components: - pos: 2.5,2.5 - parent: 732 - type: Transform - - uid: 662 - components: - - pos: -1.5,-3.5 - parent: 732 + parent: 1 type: Transform - - uid: 663 + - uid: 556 components: - pos: -8.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 674 + - uid: 557 components: - pos: 2.5,6.5 - parent: 732 + parent: 1 + type: Transform + - uid: 558 + components: + - pos: -3.5,-3.5 + parent: 1 type: Transform - proto: StoolBar entities: - - uid: 471 + - uid: 559 components: - rot: -1.5707963267948966 rad pos: -6.5,-3.5 - parent: 732 + parent: 1 type: Transform - - uid: 472 + - uid: 560 components: - rot: -1.5707963267948966 rad pos: -6.5,-4.5 - parent: 732 + parent: 1 type: Transform - - uid: 473 + - uid: 561 components: - rot: -1.5707963267948966 rad pos: -6.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 474 + - uid: 562 components: - rot: -1.5707963267948966 rad pos: -6.5,-1.5 - parent: 732 + parent: 1 type: Transform - proto: StorageCanister entities: - - uid: 210 + - uid: 563 components: - pos: 4.5,-3.5 - parent: 732 + parent: 1 type: Transform - proto: SubstationBasic entities: - - uid: 165 + - uid: 564 components: - pos: 1.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 277 + - uid: 565 components: - pos: -4.5,-5.5 - parent: 732 + parent: 1 type: Transform - proto: SuitStorageEVAPirate entities: - - uid: 91 - components: - - pos: -4.5,0.5 - parent: 732 - type: Transform - - uid: 523 + - uid: 566 components: - pos: -4.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 524 + - uid: 567 components: - pos: -0.5,1.5 - parent: 732 - type: Transform - - uid: 525 - components: - - pos: 0.5,-5.5 - parent: 732 + parent: 1 type: Transform - - uid: 529 + - uid: 568 components: - pos: -0.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 545 + - uid: 569 components: - pos: -4.5,1.5 - parent: 732 + parent: 1 type: Transform - - uid: 556 + - uid: 570 components: - - pos: -0.5,0.5 - parent: 732 + - pos: 4.5,1.5 + parent: 1 type: Transform - - uid: 567 + - uid: 571 components: - - pos: -0.5,-5.5 - parent: 732 + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 572 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 573 + components: + - pos: 5.5,1.5 + parent: 1 type: Transform - proto: SuitStoragePirateCap entities: - - uid: 546 + - uid: 574 components: - pos: -8.5,8.5 - parent: 732 + parent: 1 + type: Transform +- proto: SyndicatePersonalAI + entities: + - uid: 575 + components: + - pos: -4.477404,12.530636 + parent: 1 type: Transform - proto: Table entities: - - uid: 173 + - uid: 576 components: - pos: -7.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 175 + - uid: 577 components: - pos: -7.5,-1.5 - parent: 732 + parent: 1 type: Transform - - uid: 176 + - uid: 578 components: - pos: -7.5,-3.5 - parent: 732 + parent: 1 type: Transform - - uid: 177 + - uid: 579 components: - pos: -7.5,-4.5 - parent: 732 + parent: 1 type: Transform - - uid: 470 + - uid: 580 components: - pos: -9.5,-3.5 - parent: 732 + parent: 1 type: Transform - - uid: 475 + - uid: 581 components: - pos: -9.5,-1.5 - parent: 732 + parent: 1 type: Transform - - uid: 476 + - uid: 582 components: - pos: -9.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 534 + - uid: 583 components: - pos: -4.5,3.5 - parent: 732 + parent: 1 type: Transform - - uid: 535 + - uid: 584 components: - pos: -4.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 536 + - uid: 585 components: - pos: -3.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 540 + - uid: 586 components: - pos: -0.5,3.5 - parent: 732 + parent: 1 type: Transform - - uid: 572 + - uid: 587 components: - pos: 4.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 573 + - uid: 588 components: - pos: 3.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 574 + - uid: 589 components: - pos: 4.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 575 + - uid: 590 components: - pos: -4.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 576 + - uid: 591 components: - pos: -0.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 720 + - uid: 592 components: - rot: 3.141592653589793 rad pos: -1.5,-3.5 - parent: 732 + parent: 1 type: Transform - - uid: 721 + - uid: 593 components: - rot: 3.141592653589793 rad pos: -2.5,-3.5 - parent: 732 + parent: 1 type: Transform - proto: TableReinforced entities: - - uid: 44 + - uid: 594 components: - - pos: -0.5,10.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: -4.5,12.5 + parent: 1 type: Transform - - uid: 73 + - uid: 595 components: - - pos: -0.5,11.5 - parent: 732 + - pos: -4.5,0.5 + parent: 1 type: Transform - - uid: 143 + - uid: 596 components: - - pos: -0.5,9.5 - parent: 732 + - pos: -0.5,0.5 + parent: 1 type: Transform - - uid: 159 + - uid: 597 + components: + - pos: -0.5,10.5 + parent: 1 + type: Transform + - uid: 598 + components: + - pos: -0.5,11.5 + parent: 1 + type: Transform + - uid: 599 components: - pos: -4.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 312 + - uid: 600 components: - - pos: -4.5,11.5 - parent: 732 + - pos: -0.5,12.5 + parent: 1 type: Transform - proto: TableWood entities: - - uid: 650 + - uid: 601 components: - rot: -1.5707963267948966 rad pos: -9.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 651 + - uid: 602 components: - rot: -1.5707963267948966 rad pos: -8.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 665 + - uid: 603 components: - pos: -6.5,8.5 - parent: 732 + parent: 1 type: Transform - proto: Thruster entities: - - uid: 27 + - uid: 604 components: - rot: 3.141592653589793 rad pos: -2.5,-7.5 - parent: 732 + parent: 1 type: Transform - - uid: 40 + - uid: 605 components: - pos: -7.5,12.5 - parent: 732 + parent: 1 type: Transform - - uid: 180 + - uid: 606 components: - rot: 3.141592653589793 rad pos: 3.5,-6.5 - parent: 732 + parent: 1 type: Transform - - uid: 182 + - uid: 607 components: - rot: 3.141592653589793 rad pos: -8.5,-6.5 - parent: 732 + parent: 1 type: Transform - - uid: 515 + - uid: 608 components: - - pos: 5.5,9.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 1 type: Transform - - uid: 542 + - uid: 609 components: - rot: 3.141592653589793 rad pos: 4.5,-6.5 - parent: 732 + parent: 1 type: Transform - - uid: 543 + - uid: 610 components: - rot: 3.141592653589793 rad pos: -9.5,-6.5 - parent: 732 + parent: 1 type: Transform - - uid: 622 + - uid: 611 components: - pos: 1.5,11.5 - parent: 732 + parent: 1 type: Transform - - uid: 624 + - uid: 612 components: - rot: 1.5707963267948966 rad pos: -11.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 625 + - uid: 613 components: - rot: 1.5707963267948966 rad pos: -11.5,-1.5 - parent: 732 + parent: 1 type: Transform - - uid: 626 + - uid: 614 components: - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 - parent: 732 + pos: 7.5,-1.5 + parent: 1 type: Transform - - uid: 627 + - uid: 748 components: - - rot: -1.5707963267948966 rad - pos: 6.5,6.5 - parent: 732 + - pos: -8.5,12.5 + parent: 1 + type: Transform +- proto: ToolboxElectricalTurret + entities: + - uid: 615 + components: + - name: turret box + type: MetaData + - pos: -1.4007742,4.714716 + parent: 1 + type: Transform + - uid: 616 + components: + - name: turret box + type: MetaData + - pos: -1.6820242,4.308466 + parent: 1 type: Transform - proto: VendingMachineCigs entities: - - uid: 516 + - uid: 617 components: - flags: SessionSpecific name: cigarette machine type: MetaData - pos: -6.5,-5.5 - parent: 732 + parent: 1 type: Transform - proto: VendingMachineSovietSoda entities: - - uid: 517 + - uid: 618 components: - flags: SessionSpecific type: MetaData - pos: -9.5,-0.5 - parent: 732 + parent: 1 type: Transform - proto: VendingMachineTankDispenserEVA entities: - - uid: 583 + - uid: 619 components: - flags: SessionSpecific type: MetaData - pos: -9.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 616 + - uid: 620 components: - flags: SessionSpecific type: MetaData - pos: 1.5,3.5 - parent: 732 + parent: 1 type: Transform - proto: VendingMachineYouTool entities: - - uid: 468 + - uid: 621 components: - flags: SessionSpecific type: MetaData - pos: -6.5,3.5 - parent: 732 + parent: 1 type: Transform -- proto: WallReinforced +- proto: WallPlastitanium entities: - - uid: 13 + - uid: 622 components: - rot: 3.141592653589793 rad - pos: 0.5,4.5 - parent: 732 + pos: 7.5,4.5 + parent: 1 type: Transform - - uid: 16 + - uid: 623 components: - rot: 3.141592653589793 rad - pos: 0.5,1.5 - parent: 732 + pos: 6.5,8.5 + parent: 1 type: Transform - - uid: 48 + - uid: 624 components: - rot: 3.141592653589793 rad - pos: 0.5,3.5 - parent: 732 + pos: 6.5,4.5 + parent: 1 type: Transform - - uid: 54 + - uid: 625 components: - rot: 3.141592653589793 rad - pos: 0.5,2.5 - parent: 732 + pos: 7.5,8.5 + parent: 1 type: Transform - - uid: 59 + - uid: 626 + components: + - pos: 7.5,0.5 + parent: 1 + type: Transform + - uid: 627 components: - rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 1 + type: Transform + - uid: 628 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 629 + components: + - pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 630 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 631 + components: + - pos: 0.5,11.5 + parent: 1 + type: Transform + - uid: 632 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 633 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 634 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 635 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 636 + components: + - rot: 1.5707963267948966 rad pos: 0.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 68 + - uid: 637 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -0.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 100 + - uid: 638 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -5.5,1.5 - parent: 732 + parent: 1 type: Transform - - uid: 104 + - uid: 639 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -5.5,3.5 - parent: 732 + parent: 1 type: Transform - - uid: 106 + - uid: 640 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -5.5,0.5 - parent: 732 + parent: 1 type: Transform - - uid: 111 + - uid: 641 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -4.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 112 + - uid: 642 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -3.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 123 + - uid: 643 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -0.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 124 + - uid: 644 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: 0.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 125 + - uid: 645 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: 0.5,0.5 - parent: 732 + parent: 1 type: Transform - - uid: 154 + - uid: 646 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -2.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 155 + - uid: 647 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -3.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 156 + - uid: 648 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -4.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 161 + - uid: 649 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -1.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 163 + - uid: 650 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -5.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 566 + - uid: 651 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -5.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 602 + - uid: 652 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -1.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 607 + - uid: 653 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -5.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 609 + - uid: 654 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -5.5,2.5 - parent: 732 + parent: 1 type: Transform -- proto: WallShuttle - entities: - - uid: 1 + - uid: 655 components: - rot: 1.5707963267948966 rad pos: 0.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 4 + - uid: 656 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: 4.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 5 - components: - - pos: 4.5,-5.5 - parent: 732 - type: Transform - - uid: 6 + - uid: 657 components: - - pos: 2.5,10.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 1 type: Transform - - uid: 7 + - uid: 658 components: - - pos: 5.5,-1.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 2.5,10.5 + parent: 1 type: Transform - - uid: 8 + - uid: 659 components: - - pos: -9.5,1.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1 type: Transform - - uid: 9 + - uid: 660 components: - - pos: -6.5,0.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 type: Transform - - uid: 10 + - uid: 661 components: - - pos: -7.5,-5.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 1 type: Transform - - uid: 12 + - uid: 662 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: 3.5,0.5 - parent: 732 + parent: 1 type: Transform - - uid: 14 + - uid: 663 components: - rot: 1.5707963267948966 rad pos: -5.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 22 + - uid: 664 components: - rot: 1.5707963267948966 rad pos: -6.5,-6.5 - parent: 732 + parent: 1 type: Transform - - uid: 23 + - uid: 665 components: - - pos: -10.5,-1.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 1 type: Transform - - uid: 24 + - uid: 666 components: - - pos: -10.5,-2.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 1 type: Transform - - uid: 25 + - uid: 667 components: - - pos: -10.5,-5.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 1 type: Transform - - uid: 26 + - uid: 668 components: - - pos: -8.5,-5.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 1 type: Transform - - uid: 30 + - uid: 669 components: - - pos: 0.5,7.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 type: Transform - - uid: 34 + - uid: 670 components: - rot: 1.5707963267948966 rad pos: -5.5,11.5 - parent: 732 + parent: 1 type: Transform - - uid: 35 - components: - - pos: 5.5,8.5 - parent: 732 - type: Transform - - uid: 38 + - uid: 671 components: - - pos: -9.5,-5.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 1 type: Transform - - uid: 41 + - uid: 672 components: - - pos: -6.5,4.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -6.5,4.5 + parent: 1 type: Transform - - uid: 42 + - uid: 673 components: - rot: 1.5707963267948966 rad pos: -10.5,11.5 - parent: 732 + parent: 1 type: Transform - - uid: 49 + - uid: 674 components: - - pos: 1.5,-6.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 1 type: Transform - - uid: 51 + - uid: 675 components: - rot: 1.5707963267948966 rad pos: 0.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 52 + - uid: 676 components: - rot: 1.5707963267948966 rad pos: -5.5,-6.5 - parent: 732 + parent: 1 type: Transform - - uid: 56 + - uid: 677 components: - - pos: 3.5,-5.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 type: Transform - - uid: 57 + - uid: 678 components: - - pos: 2.5,-6.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 type: Transform - - uid: 61 + - uid: 679 components: - rot: 1.5707963267948966 rad pos: -8.5,11.5 - parent: 732 + parent: 1 type: Transform - - uid: 62 + - uid: 680 components: - - pos: 2.5,-5.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 type: Transform - - uid: 64 + - uid: 681 components: - rot: 1.5707963267948966 rad pos: -7.5,11.5 - parent: 732 + parent: 1 type: Transform - - uid: 65 + - uid: 682 components: - - pos: -10.5,-0.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 1 type: Transform - - uid: 66 + - uid: 683 components: - - pos: -9.5,0.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -9.5,0.5 + parent: 1 type: Transform - - uid: 67 + - uid: 684 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: 1.5,0.5 - parent: 732 + parent: 1 type: Transform - - uid: 69 + - uid: 685 components: - - pos: -5.5,-4.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 1 type: Transform - - uid: 70 + - uid: 686 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: 3.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 71 - components: - - pos: -5.5,-1.5 - parent: 732 - type: Transform - - uid: 72 + - uid: 687 components: - - pos: -6.5,7.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 type: Transform - - uid: 74 + - uid: 688 components: - - pos: 0.5,-6.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -6.5,7.5 + parent: 1 type: Transform - - uid: 76 + - uid: 689 components: - - pos: -0.5,8.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 1 type: Transform - - uid: 78 + - uid: 690 components: - - pos: -2.5,-6.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 type: Transform - - uid: 79 + - uid: 691 components: - - pos: 5.5,5.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 1 type: Transform - - uid: 80 + - uid: 692 components: - - pos: -5.5,-5.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 1 type: Transform - - uid: 81 + - uid: 693 components: - - pos: -0.5,-6.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 1 type: Transform - - uid: 82 + - uid: 694 components: - - pos: 2.5,9.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 2.5,9.5 + parent: 1 type: Transform - - uid: 83 + - uid: 695 components: - - pos: 5.5,6.5 - parent: 732 + - pos: 6.5,3.5 + parent: 1 type: Transform - - uid: 84 + - uid: 696 components: - - pos: 5.5,-3.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 type: Transform - - uid: 85 + - uid: 697 components: - - pos: -1.5,-6.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 type: Transform - - uid: 90 + - uid: 698 components: - - pos: -5.5,-3.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 type: Transform - - uid: 95 + - uid: 699 components: - - pos: -8.5,0.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -8.5,0.5 + parent: 1 type: Transform - - uid: 97 + - uid: 700 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: 5.5,0.5 - parent: 732 - type: Transform - - uid: 99 - components: - - pos: -3.5,-6.5 - parent: 732 - type: Transform - - uid: 103 - components: - - pos: -3.5,8.5 - parent: 732 + parent: 1 type: Transform - - uid: 107 - components: - - pos: -8.5,4.5 - parent: 732 - type: Transform - - uid: 113 + - uid: 701 components: - - pos: 5.5,-0.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 1 type: Transform - - uid: 114 + - uid: 702 components: - - pos: -10.5,5.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 type: Transform - - uid: 116 + - uid: 703 components: - - pos: -9.5,3.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -8.5,4.5 + parent: 1 type: Transform - - uid: 117 + - uid: 704 components: - - pos: -10.5,4.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -10.5,5.5 + parent: 1 type: Transform - - uid: 118 + - uid: 705 components: - - rot: 3.141592653589793 rad - pos: 4.5,1.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -9.5,3.5 + parent: 1 type: Transform - - uid: 120 + - uid: 706 components: - - pos: -10.5,7.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -10.5,4.5 + parent: 1 type: Transform - - uid: 122 + - uid: 707 components: - - rot: 3.141592653589793 rad - pos: 5.5,4.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -10.5,7.5 + parent: 1 type: Transform - - uid: 126 + - uid: 708 components: - - pos: -1.5,8.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 type: Transform - - uid: 127 + - uid: 709 components: - rot: 1.5707963267948966 rad pos: -9.5,11.5 - parent: 732 + parent: 1 type: Transform - - uid: 128 + - uid: 710 components: - rot: 1.5707963267948966 rad pos: -6.5,11.5 - parent: 732 + parent: 1 type: Transform - - uid: 129 + - uid: 711 components: - - pos: 4.5,8.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1 type: Transform - - uid: 133 + - uid: 712 components: - rot: 1.5707963267948966 rad pos: -4.5,-6.5 - parent: 732 + parent: 1 type: Transform - - uid: 134 + - uid: 713 components: - - pos: 0.5,8.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 0.5,8.5 + parent: 1 type: Transform - - uid: 135 + - uid: 714 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: 4.5,0.5 - parent: 732 + parent: 1 type: Transform - - uid: 136 + - uid: 715 components: - - pos: -10.5,0.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -10.5,0.5 + parent: 1 type: Transform - - uid: 137 + - uid: 716 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: 1.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 138 + - uid: 717 components: - - pos: 4.5,9.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 4.5,9.5 + parent: 1 type: Transform - - uid: 139 + - uid: 718 components: - - pos: -9.5,4.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -9.5,4.5 + parent: 1 type: Transform - - uid: 141 + - uid: 719 components: - - rot: 3.141592653589793 rad - pos: 4.5,3.5 - parent: 732 + - pos: 5.5,8.5 + parent: 1 type: Transform - - uid: 142 + - uid: 720 components: - - pos: 5.5,7.5 - parent: 732 + - pos: 6.5,1.5 + parent: 1 type: Transform - - uid: 144 + - uid: 721 components: - - pos: -7.5,-6.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 1 type: Transform - - uid: 146 + - uid: 722 components: - - pos: 2.5,8.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 2.5,8.5 + parent: 1 type: Transform - - uid: 149 + - uid: 723 components: - - pos: -5.5,8.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 1 type: Transform - - uid: 157 + - uid: 724 components: - - pos: -4.5,8.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -4.5,8.5 + parent: 1 type: Transform - - uid: 158 + - uid: 725 components: - - pos: -8.5,7.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -8.5,7.5 + parent: 1 type: Transform - - uid: 164 + - uid: 726 components: - - pos: 5.5,-4.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 1 type: Transform - - uid: 166 + - uid: 727 components: - - pos: 4.5,10.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 4.5,10.5 + parent: 1 type: Transform - - uid: 167 + - uid: 728 components: - - pos: -10.5,6.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -10.5,6.5 + parent: 1 type: Transform - - uid: 170 + - uid: 729 components: - - pos: -5.5,7.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -5.5,7.5 + parent: 1 type: Transform - - uid: 172 + - uid: 730 components: - - pos: -10.5,-4.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 1 type: Transform - - uid: 174 + - uid: 731 components: - - pos: -10.5,-3.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 1 type: Transform - - uid: 178 + - uid: 732 components: - - pos: 3.5,-2.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 type: Transform - - uid: 179 + - uid: 733 components: - - pos: 4.5,-2.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 type: Transform - - uid: 192 + - uid: 734 components: - - pos: 5.5,-5.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 1 type: Transform - - uid: 209 + - uid: 735 components: - - pos: 5.5,-2.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 type: Transform - - uid: 507 + - uid: 736 components: - - rot: -1.5707963267948966 rad + - rot: 1.5707963267948966 rad pos: -9.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 600 + - uid: 737 components: - - pos: 1.5,10.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 1.5,10.5 + parent: 1 type: Transform - - uid: 712 + - uid: 738 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: 2.5,15.5 - parent: 732 + parent: 1 type: Transform - - uid: 713 + - uid: 739 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: 4.5,15.5 - parent: 732 + parent: 1 type: Transform -- proto: WallShuttleDiagonal - entities: - - uid: 37 + - uid: 740 components: - - rot: 1.5707963267948966 rad - pos: -10.5,-6.5 - parent: 732 + - rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 1 type: Transform - - uid: 63 + - uid: 741 components: - - rot: 1.5707963267948966 rad - pos: -11.5,0.5 - parent: 732 + - rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 1 type: Transform - - uid: 75 + - uid: 742 components: - - rot: -1.5707963267948966 rad - pos: -6.5,12.5 - parent: 732 + - rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 1 type: Transform - - uid: 87 + - uid: 743 components: - - pos: -8.5,12.5 - parent: 732 + - rot: 3.141592653589793 rad + pos: 6.5,-0.5 + parent: 1 type: Transform - - uid: 93 +- proto: WallPlastitaniumDiagonal + entities: + - uid: 744 components: - rot: -1.5707963267948966 rad - pos: 6.5,4.5 - parent: 732 + pos: 8.5,8.5 + parent: 1 type: Transform - - uid: 96 + - uid: 745 components: - - pos: -11.5,4.5 - parent: 732 + - rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 1 type: Transform - - uid: 98 + - uid: 746 components: - rot: 3.141592653589793 rad - pos: 6.5,-2.5 - parent: 732 + pos: -1.5,-7.5 + parent: 1 type: Transform - - uid: 168 + - uid: 747 components: - - rot: 3.141592653589793 rad - pos: 6.5,0.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -11.5,-2.5 + parent: 1 type: Transform - - uid: 181 + - uid: 749 components: - rot: -1.5707963267948966 rad - pos: 6.5,7.5 - parent: 732 + pos: -6.5,12.5 + parent: 1 type: Transform - - uid: 184 + - uid: 750 components: - - pos: -11.5,7.5 - parent: 732 + - pos: -11.5,-0.5 + parent: 1 type: Transform - - uid: 185 + - uid: 751 components: - rot: 3.141592653589793 rad - pos: 6.5,5.5 - parent: 732 + pos: 5.5,-6.5 + parent: 1 type: Transform - - uid: 186 + - uid: 752 + components: + - pos: -11.5,7.5 + parent: 1 + type: Transform + - uid: 753 + components: + - pos: -11.5,4.5 + parent: 1 + type: Transform + - uid: 754 components: - rot: 1.5707963267948966 rad pos: -11.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 187 + - uid: 755 components: - rot: 1.5707963267948966 rad - pos: -11.5,-2.5 - parent: 732 + pos: -3.5,-7.5 + parent: 1 type: Transform - - uid: 193 + - uid: 756 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,0.5 + parent: 1 + type: Transform + - uid: 757 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-6.5 + parent: 1 + type: Transform + - uid: 758 components: - rot: 3.141592653589793 rad - pos: 5.5,-6.5 - parent: 732 + pos: 8.5,0.5 + parent: 1 type: Transform - - uid: 608 + - uid: 759 components: - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 - parent: 732 + pos: 7.5,-0.5 + parent: 1 type: Transform - - uid: 618 + - uid: 773 components: - - rot: 3.141592653589793 rad - pos: -1.5,-7.5 - parent: 732 + - pos: -9.5,12.5 + parent: 1 type: Transform - - uid: 623 + - uid: 774 components: - - pos: -11.5,-0.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: 5.5,10.5 + parent: 1 type: Transform - - uid: 628 +- proto: WardrobePrisonFilled + entities: + - uid: 760 components: - - rot: 1.5707963267948966 rad - pos: -3.5,-7.5 - parent: 732 + - pos: 7.5,7.5 + parent: 1 type: Transform - proto: WaterTankFull entities: - - uid: 562 + - uid: 761 components: - pos: 1.5,1.5 - parent: 732 + parent: 1 type: Transform - proto: WeaponCapacitorRecharger entities: - - uid: 28 + - uid: 762 components: - - pos: -0.5,11.5 - parent: 732 + - pos: -0.5,12.5 + parent: 1 type: Transform - proto: WeaponLaserGun entities: - - uid: 652 + - uid: 763 components: - pos: -8.532435,10.5924015 - parent: 732 + parent: 1 type: Transform -- proto: WeaponRevolverPirate +- proto: WeaponMakeshiftLaser entities: - - uid: 538 + - uid: 764 components: - - pos: -4.573346,4.0735464 - parent: 732 + - pos: -4.4356194,4.035976 + parent: 1 type: Transform - - uid: 670 + - uid: 765 + components: + - pos: -4.3887444,4.004726 + parent: 1 + type: Transform +- proto: WeaponRevolverPirate + entities: + - uid: 766 components: - - pos: -4.498213,3.6620688 - parent: 732 + - pos: -4.5137444,4.332851 + parent: 1 type: Transform - proto: WeaponShotgunBlunderbuss entities: - - uid: 565 + - uid: 767 components: - - pos: -4.4169397,4.4548354 - parent: 732 + - pos: -4.4981194,4.692226 + parent: 1 type: Transform - - uid: 581 + - uid: 768 components: - pos: -4.5263147,4.6892104 - parent: 732 + parent: 1 type: Transform - proto: WelderMini entities: - - uid: 588 + - uid: 769 components: - pos: -6.391465,2.47309 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - proto: WeldingFuelTankFull entities: - - uid: 561 + - uid: 770 components: - pos: -6.5,1.5 - parent: 732 + parent: 1 type: Transform - proto: Wrench entities: - - uid: 634 + - uid: 771 components: - pos: 2.4808617,-4.4780817 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics diff --git a/Resources/Maps/Shuttles/striker.yml b/Resources/Maps/Shuttles/striker.yml index 1b71e29725..d0832b066c 100644 --- a/Resources/Maps/Shuttles/striker.yml +++ b/Resources/Maps/Shuttles/striker.yml @@ -874,36 +874,6 @@ entities: pos: -0.5,0.5 parent: 325 type: Transform -- proto: ClothingBeltSyndieHolster - entities: - - uid: 317 - components: - - flags: InContainer - type: MetaData - - parent: 177 - type: Transform - - canCollide: False - type: Physics -- proto: ClothingHandsGlovesCombat - entities: - - uid: 316 - components: - - flags: InContainer - type: MetaData - - parent: 177 - type: Transform - - canCollide: False - type: Physics -- proto: ClothingMaskGasSyndicate - entities: - - uid: 318 - components: - - flags: InContainer - type: MetaData - - parent: 177 - type: Transform - - canCollide: False - type: Physics - proto: ComputerIFFSyndicate entities: - uid: 40 @@ -926,16 +896,6 @@ entities: ents: - 245 type: ContainerContainer -- proto: Crowbar - entities: - - uid: 313 - components: - - flags: InContainer - type: MetaData - - parent: 177 - type: Transform - - canCollide: False - type: Physics - proto: CyberPen entities: - uid: 77 @@ -1672,16 +1632,6 @@ entities: pos: -2.5,-3.5 parent: 325 type: Transform -- proto: Multitool - entities: - - uid: 314 - components: - - flags: InContainer - type: MetaData - - parent: 177 - type: Transform - - canCollide: False - type: Physics - proto: NitrogenTankFilled entities: - uid: 105 @@ -1880,20 +1830,6 @@ entities: type: Transform - canCollide: False type: Physics -- proto: Screwdriver - entities: - - uid: 310 - components: - - flags: InContainer - type: MetaData - - parent: 177 - type: Transform - - selected: - enum.DamageStateVisualLayers.Base: - screwdriver: '#1861D5FF' - type: RandomSprite - - canCollide: False - type: Physics - proto: SheetGlass1 entities: - uid: 244 @@ -2382,21 +2318,6 @@ entities: - pos: 1.5699697,-0.44908836 parent: 325 type: Transform - - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 310 - - 311 - - 312 - - 313 - - 314 - - 315 - - 316 - - 317 - - 318 - type: ContainerContainer - canCollide: False type: Physics - proto: ToyFigurineNukie @@ -2656,16 +2577,6 @@ entities: - pos: -2.5,2.5 parent: 325 type: Transform -- proto: Welder - entities: - - uid: 312 - components: - - flags: InContainer - type: MetaData - - parent: 177 - type: Transform - - canCollide: False - type: Physics - proto: WindoorSecure entities: - uid: 166 @@ -2687,30 +2598,6 @@ entities: ents: - 346 type: ContainerContainer -- proto: Wirecutter - entities: - - uid: 315 - components: - - flags: InContainer - type: MetaData - - parent: 177 - type: Transform - - selected: - enum.DamageStateVisualLayers.Base: - cutters: '#D58C18FF' - type: RandomSprite - - canCollide: False - type: Physics -- proto: Wrench - entities: - - uid: 311 - components: - - flags: InContainer - type: MetaData - - parent: 177 - type: Transform - - canCollide: False - type: Physics - proto: YellowOxygenTankFilled entities: - uid: 167 @@ -2718,4 +2605,4 @@ entities: - pos: 1.60798,-0.3062118 parent: 325 type: Transform -... +... \ No newline at end of file diff --git a/Resources/Maps/Test/admin_test_arena.yml b/Resources/Maps/Test/admin_test_arena.yml index 74f3da0771..693b6351f5 100644 --- a/Resources/Maps/Test/admin_test_arena.yml +++ b/Resources/Maps/Test/admin_test_arena.yml @@ -526,7 +526,7 @@ entities: type: Transform - enabled: True type: AmbientSound -- proto: GeneratorUranium +- proto: GeneratorBasic15kW entities: - uid: 34 components: diff --git a/Resources/Maps/Test/dev_map.yml b/Resources/Maps/Test/dev_map.yml index a573ee2645..5431be8ee3 100644 --- a/Resources/Maps/Test/dev_map.yml +++ b/Resources/Maps/Test/dev_map.yml @@ -755,6 +755,13 @@ entities: pos: -5.5,-14.5 parent: 179 type: Transform +- proto: ArrivalsShuttleTimer + entities: + - uid: 1191 + components: + - pos: -7.5,5.5 + parent: 179 + type: Transform - proto: AtmosDeviceFanTiny entities: - uid: 992 @@ -4815,6 +4822,13 @@ entities: - pos: -1.235331,4.739151 parent: 179 type: Transform +- proto: Screen + entities: + - uid: 1192 + components: + - pos: 4.5,-14.5 + parent: 179 + type: Transform - proto: SeedExtractor entities: - uid: 65 diff --git a/Resources/Maps/arena.yml b/Resources/Maps/arena.yml index 67c979e7d0..c707488fda 100644 --- a/Resources/Maps/arena.yml +++ b/Resources/Maps/arena.yml @@ -4,62 +4,64 @@ meta: tilemap: 0: Space 7: FloorAsteroidSand - 12: FloorBar - 14: FloorBlue - 15: FloorBlueCircuit - 18: FloorCarpetClown - 19: FloorCarpetOffice - 20: FloorCave - 21: FloorCaveDrought - 23: FloorClown - 27: FloorDark - 28: FloorDarkDiagonal - 29: FloorDarkDiagonalMini - 31: FloorDarkMini - 32: FloorDarkMono - 33: FloorDarkOffset - 36: FloorDarkPlastic - 38: FloorDirt - 39: FloorEighties - 42: FloorFreezer - 43: FloorGlass - 45: FloorGrass - 46: FloorGrassDark - 48: FloorGrassLight - 52: FloorGreenCircuit - 54: FloorHull - 56: FloorHydro - 58: FloorKitchen - 59: FloorLaundry - 60: FloorLino - 62: FloorMetalDiamond - 63: FloorMime - 71: FloorRGlass - 72: FloorReinforced - 73: FloorReinforcedHardened - 74: FloorRockVault - 75: FloorShowroom - 76: FloorShuttleBlue - 80: FloorShuttleWhite - 84: FloorSteel - 85: FloorSteelCheckerDark - 87: FloorSteelDiagonal - 88: FloorSteelDiagonalMini - 89: FloorSteelDirty - 90: FloorSteelHerringbone - 92: FloorSteelMono - 94: FloorSteelPavement - 95: FloorSteelPavementVertical - 96: FloorTechMaint - 97: FloorTechMaint2 - 98: FloorTechMaint3 - 100: FloorWhite - 101: FloorWhiteDiagonal - 102: FloorWhiteDiagonalMini - 110: FloorWood - 111: FloorWoodTile - 112: Lattice - 113: Plating + 14: FloorBar + 17: FloorBlue + 18: FloorBlueCircuit + 21: FloorCarpetClown + 22: FloorCarpetOffice + 23: FloorCave + 24: FloorCaveDrought + 26: FloorClown + 30: FloorDark + 31: FloorDarkDiagonal + 32: FloorDarkDiagonalMini + 34: FloorDarkMini + 35: FloorDarkMono + 36: FloorDarkOffset + 39: FloorDarkPlastic + 41: FloorDirt + 42: FloorEighties + 45: FloorFreezer + 46: FloorGlass + 48: FloorGrass + 49: FloorGrassDark + 51: FloorGrassLight + 55: FloorGreenCircuit + 57: FloorHull + 59: FloorHydro + 61: FloorKitchen + 62: FloorLaundry + 63: FloorLino + 65: FloorMetalDiamond + 66: FloorMime + 77: FloorRGlass + 78: FloorReinforced + 79: FloorReinforcedHardened + 80: FloorRockVault + 81: FloorShowroom + 82: FloorShuttleBlue + 86: FloorShuttleWhite + 90: FloorSteel + 92: FloorSteelCheckerDark + 95: FloorSteelDiagonal + 96: FloorSteelDiagonalMini + 97: FloorSteelDirty + 98: FloorSteelHerringbone + 99: FloorSteelLime + 101: FloorSteelMono + 103: FloorSteelPavement + 104: FloorSteelPavementVertical + 105: FloorTechMaint + 106: FloorTechMaint2 + 107: FloorTechMaint3 + 109: FloorWhite + 110: FloorWhiteDiagonal + 111: FloorWhiteDiagonalMini + 119: FloorWood + 120: FloorWoodTile + 121: Lattice + 122: Plating + 125: PlatingDamaged entities: - proto: "" entities: @@ -85,441 +87,441 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: LgAAAAACLgAAAAABLgAAAAAASAAAAAAAIAAAAAACIAAAAAACSAAAAAAAJgAAAAABJgAAAAABJgAAAAABJgAAAAACJgAAAAACJgAAAAACJgAAAAADJgAAAAADJgAAAAADLgAAAAAALgAAAAACLgAAAAAASAAAAAAAIAAAAAADIAAAAAADSAAAAAAAJgAAAAABJgAAAAADJgAAAAADJgAAAAAAJgAAAAADJgAAAAADJgAAAAAAJgAAAAABJgAAAAADSAAAAAAASAAAAAAASAAAAAAAcQAAAAAAIAAAAAACIAAAAAACcQAAAAAAJgAAAAADJgAAAAADSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAACKwAAAAAAVAAAAAACVAAAAAAAKwAAAAADVAAAAAABVAAAAAACKwAAAAABVAAAAAABVAAAAAACKwAAAAAAVAAAAAADVAAAAAADKwAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAABKwAAAAACVAAAAAACVAAAAAADKwAAAAADVAAAAAABVAAAAAABKwAAAAAAVAAAAAABVAAAAAAAKwAAAAADVAAAAAABVAAAAAACKwAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAXAAAAAAAXAAAAAACGwAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAACXAAAAAADSAAAAAAASAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADGwAAAAADGwAAAAACGwAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAABcQAAAAAAXAAAAAADXAAAAAAAXAAAAAABXAAAAAADcQAAAAAASAAAAAAAXAAAAAABXAAAAAABcQAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAACGwAAAAACcQAAAAAAXAAAAAACXAAAAAADXAAAAAADXAAAAAACcQAAAAAASAAAAAAAXAAAAAAAXAAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAADGwAAAAADcQAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAACcQAAAAAASAAAAAAAXAAAAAADXAAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAADcQAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAACcQAAAAAASAAAAAAAXAAAAAABXAAAAAADcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAGwAAAAABSAAAAAAASAAAAAAAcQAAAAAAXAAAAAABSAAAAAAASAAAAAAAXAAAAAACcQAAAAAASAAAAAAAXAAAAAADXAAAAAADSAAAAAAASAAAAAAASAAAAAAASAAAAAAAXAAAAAADSAAAAAAASAAAAAAAcQAAAAAAXAAAAAAASAAAAAAASAAAAAAAXAAAAAAAcQAAAAAASAAAAAAAXAAAAAAAXAAAAAAB + tiles: MQAAAAABMQAAAAABMQAAAAABTgAAAAAAIwAAAAADIwAAAAACTgAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAADKQAAAAABKQAAAAAAMQAAAAAAMQAAAAACMQAAAAADTgAAAAAAIwAAAAADIwAAAAABTgAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAADKQAAAAAAKQAAAAADTgAAAAAATgAAAAAATgAAAAAAegAAAAAAIwAAAAAAIwAAAAABegAAAAAAKQAAAAACKQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAACWgAAAAACLgAAAAABWgAAAAABWgAAAAABLgAAAAADWgAAAAADWgAAAAABLgAAAAACWgAAAAADWgAAAAAALgAAAAAAWgAAAAACWgAAAAADLgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAABWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAADWgAAAAADWgAAAAABWgAAAAADWgAAAAADLgAAAAAAWgAAAAAAWgAAAAAALgAAAAABWgAAAAAAWgAAAAAALgAAAAAAWgAAAAACWgAAAAABLgAAAAABWgAAAAAAWgAAAAADLgAAAAACWgAAAAABWgAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAADWgAAAAADWgAAAAACWgAAAAADWgAAAAABWgAAAAABWgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAADWgAAAAACegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAZQAAAAAAZQAAAAADHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHgAAAAACZQAAAAACTgAAAAAATgAAAAAAZQAAAAABZQAAAAAAZQAAAAABZQAAAAADZQAAAAABHgAAAAACHgAAAAADHgAAAAABHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAegAAAAAAZQAAAAAAZQAAAAACZQAAAAADZQAAAAAAegAAAAAATgAAAAAAZQAAAAAAZQAAAAABegAAAAAAegAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAADegAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAACegAAAAAATgAAAAAAZQAAAAADZQAAAAACegAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAADegAAAAAAZQAAAAAAZQAAAAAAZQAAAAADZQAAAAACegAAAAAATgAAAAAAZQAAAAACZQAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAAAHgAAAAADHgAAAAABegAAAAAAZQAAAAABZQAAAAACZQAAAAABZQAAAAACegAAAAAATgAAAAAAZQAAAAACZQAAAAABegAAAAAAegAAAAAATgAAAAAATgAAAAAAHgAAAAADTgAAAAAATgAAAAAAegAAAAAAZQAAAAACTgAAAAAATgAAAAAAZQAAAAABegAAAAAATgAAAAAAZQAAAAADZQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZQAAAAABTgAAAAAATgAAAAAAegAAAAAAZQAAAAACTgAAAAAATgAAAAAAZQAAAAAAegAAAAAATgAAAAAAZQAAAAABZQAAAAAB version: 6 -1,0: ind: -1,0 - tiles: XAAAAAABXAAAAAACXAAAAAACXAAAAAACXAAAAAADXAAAAAADSAAAAAAASAAAAAAAXAAAAAACSAAAAAAASAAAAAAAXAAAAAACSAAAAAAASAAAAAAAXAAAAAACXAAAAAACXAAAAAABXAAAAAABXAAAAAAAXAAAAAADXAAAAAADXAAAAAABXAAAAAACXAAAAAACXAAAAAADXAAAAAAAXAAAAAADXAAAAAACXAAAAAAAXAAAAAADXAAAAAACXAAAAAABSAAAAAAASAAAAAAASAAAAAAAXAAAAAADXAAAAAACXAAAAAACSAAAAAAASAAAAAAASAAAAAAAXAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAXAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAGwAAAAACGwAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAFAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFAAAAAADFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAGFAAAAAABBwAAAAAAFAAAAAADFAAAAAADFAAAAAAAFAAAAAABFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAGFAAAAAADBwAAAAAABwAAAAAAFAAAAAAGFAAAAAAGFAAAAAABFAAAAAAAFAAAAAABFAAAAAAAFAAAAAABFAAAAAACFAAAAAABFAAAAAABFAAAAAABFAAAAAAEBwAAAAAABwAAAAAABwAAAAAAPgAAAAAAFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAGBwAAAAAABwAAAAAABwAAAAADBwAAAAAAPgAAAAAAFAAAAAACFAAAAAAGFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAGFAAAAAADFAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFPgAAAAAABwAAAAAABwAAAAAAFAAAAAAFBwAAAAAAFAAAAAAAFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAFAAAAAAGFAAAAAACFAAAAAAAFAAAAAACFAAAAAAFBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAABFAAAAAABFAAAAAACBwAAAAAGBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAD + tiles: ZQAAAAAAZQAAAAADZQAAAAABZQAAAAADZQAAAAAAZQAAAAACTgAAAAAATgAAAAAAZQAAAAABTgAAAAAATgAAAAAAZQAAAAAATgAAAAAATgAAAAAAZQAAAAADZQAAAAABZQAAAAACZQAAAAAAZQAAAAACZQAAAAACZQAAAAAAZQAAAAABZQAAAAAAZQAAAAACZQAAAAACZQAAAAADZQAAAAACZQAAAAAAZQAAAAAAZQAAAAADZQAAAAACZQAAAAACTgAAAAAATgAAAAAATgAAAAAAZQAAAAADZQAAAAACZQAAAAACTgAAAAAATgAAAAAATgAAAAAAZQAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAZQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAHgAAAAADHgAAAAADaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAFwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAFwAAAAAFFwAAAAAGFwAAAAACFwAAAAABFwAAAAABFwAAAAABBwAAAAAAFwAAAAAAFwAAAAABFwAAAAAEFwAAAAAGFwAAAAABFwAAAAAEFwAAAAACFwAAAAAGFwAAAAAGFwAAAAACFwAAAAACFwAAAAAGFwAAAAAFFwAAAAADBwAAAAAABwAAAAAAFwAAAAACFwAAAAAEFwAAAAAFFwAAAAAGFwAAAAADFwAAAAAEFwAAAAABFwAAAAADFwAAAAAGFwAAAAACFwAAAAAAFwAAAAACBwAAAAAABwAAAAAGBwAAAAAAQQAAAAAAFwAAAAAFFwAAAAAEFwAAAAAGFwAAAAAFFwAAAAACFwAAAAAGFwAAAAAFFwAAAAAEFwAAAAABFwAAAAAEFwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAQQAAAAAAFwAAAAAEFwAAAAAGFwAAAAABFwAAAAACFwAAAAAFFwAAAAACFwAAAAADFwAAAAAEFwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEQQAAAAAABwAAAAAABwAAAAAAFwAAAAAGBwAAAAAAFwAAAAACFwAAAAAGFwAAAAACFwAAAAAGFwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFwAAAAAGFwAAAAAAFwAAAAAEFwAAAAACFwAAAAACBwAAAAAABwAAAAAEBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFwAAAAAEFwAAAAAFFwAAAAADBwAAAAAABwAAAAAJBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAE version: 6 0,-1: ind: 0,-1 - tiles: cQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAMBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAASAAAAAAAZAAAAAADcQAAAAAABwAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAZAAAAAABVAAAAAACcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAAASAAAAAAAcQAAAAAASAAAAAAAXAAAAAABXAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAASAAAAAAASAAAAAAASAAAAAAAXAAAAAACXAAAAAACSAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAXAAAAAABXAAAAAACXAAAAAADSAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAEwAAAAAASAAAAAAASAAAAAAAXAAAAAADXAAAAAAAXAAAAAABSAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAEwAAAAAASAAAAAAASAAAAAAASAAAAAAAXAAAAAACXAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAEwAAAAAASAAAAAAAcQAAAAAASAAAAAAAXAAAAAAAXAAAAAACSAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAEwAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAACXAAAAAADSAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAEwAAAAAAXAAAAAACXAAAAAACXAAAAAABXAAAAAABSAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAEwAAAAAA + tiles: egAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAATgAAAAAAbQAAAAACegAAAAAABwAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAbQAAAAAAWgAAAAABegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAbQAAAAADWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAABWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAABWgAAAAADWgAAAAABWgAAAAADWgAAAAACWgAAAAABWgAAAAACWgAAAAADWgAAAAACWgAAAAADWgAAAAABWgAAAAABWgAAAAABWgAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAADWgAAAAACWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAABTgAAAAAAegAAAAAATgAAAAAAZQAAAAAAZQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAWgAAAAADTgAAAAAATgAAAAAATgAAAAAAZQAAAAACZQAAAAABTgAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAZQAAAAADZQAAAAAAZQAAAAADTgAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAFgAAAAAATgAAAAAATgAAAAAAZQAAAAABZQAAAAAAZQAAAAAATgAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAFgAAAAAATgAAAAAATgAAAAAATgAAAAAAZQAAAAACZQAAAAABTgAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAFgAAAAAATgAAAAAAegAAAAAATgAAAAAAZQAAAAABZQAAAAAATgAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAFgAAAAAAZQAAAAABZQAAAAADZQAAAAAAZQAAAAACZQAAAAACTgAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAFgAAAAAAZQAAAAADZQAAAAADZQAAAAACZQAAAAABTgAAAAAATgAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAFgAAAAAA version: 6 0,0: ind: 0,0 - tiles: SAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAPgAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAPgAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAYAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACBwAAAAAABwAAAAAABwAAAAALBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAB + tiles: TgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAQQAAAAAAegAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPgAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAQQAAAAAAegAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAPgAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAPgAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAABwAAAAAIegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAaQAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAADBwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAB version: 6 -2,0: ind: -2,0 - tiles: SAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAACXAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAACSAAAAAAASAAAAAAAXAAAAAADSAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAAAXAAAAAADSAAAAAAAcQAAAAAASAAAAAAAJAAAAAABcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAABSAAAAAAAcQAAAAAAGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAFAAAAAACVAAAAAACVAAAAAABVAAAAAACXAAAAAAASAAAAAAASAAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAADGwAAAAABSAAAAAAASAAAAAAASAAAAAAAcQAAAAAAFAAAAAABVAAAAAAAVAAAAAACVAAAAAADXAAAAAABSAAAAAAASAAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAADGwAAAAADSAAAAAAAFAAAAAAEFAAAAAAAFAAAAAACFAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAACSAAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAADSAAAAAAASAAAAAAAFAAAAAABFAAAAAACFAAAAAADVAAAAAABVAAAAAADVAAAAAABXAAAAAACSAAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAAFAAAAAAGFAAAAAAAVAAAAAADVAAAAAAAVAAAAAACXAAAAAADSAAAAAAAFAAAAAAGcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFAAAAAACFAAAAAABFAAAAAABFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAGFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAABFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAADFAAAAAACFAAAAAAGFAAAAAAEFAAAAAABFAAAAAACFAAAAAABFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAAFAAAAAABFAAAAAAGFAAAAAABFAAAAAACFAAAAAAAFAAAAAAGFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAABFAAAAAADFAAAAAAGFAAAAAAEFAAAAAACFAAAAAABFAAAAAAAFAAAAAAGFAAAAAAAFAAAAAABFAAAAAACFAAAAAABFAAAAAADFAAAAAAGFAAAAAACFAAAAAAGFAAAAAAAFAAAAAAEFAAAAAACFAAAAAADFAAAAAAFFAAAAAAGFAAAAAABFAAAAAAGFAAAAAAAFAAAAAAEFAAAAAADFAAAAAACFAAAAAAGFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAGFAAAAAAFFAAAAAADFAAAAAADFAAAAAAAFAAAAAABFAAAAAAGFAAAAAAGFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAADFAAAAAABFAAAAAAGBwAAAAAABwAAAAAAFAAAAAAEFAAAAAAGFAAAAAAGFAAAAAAAFAAAAAAGFAAAAAAEFAAAAAABFAAAAAAAFAAAAAADFAAAAAABFAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: TgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAABZQAAAAAAZQAAAAACZQAAAAAAZQAAAAABZQAAAAADZQAAAAADZQAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAADZQAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAATgAAAAAATgAAAAAAZQAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAAAZQAAAAABTgAAAAAAegAAAAAATgAAAAAAJwAAAAADegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAABTgAAAAAAegAAAAAAHgAAAAACHgAAAAABegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAFwAAAAAFWgAAAAAAWgAAAAAAWgAAAAADZQAAAAACTgAAAAAATgAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAACHgAAAAADTgAAAAAATgAAAAAATgAAAAAAegAAAAAAFwAAAAACWgAAAAABWgAAAAACWgAAAAADZQAAAAABTgAAAAAATgAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAABHgAAAAACTgAAAAAAFwAAAAAAFwAAAAABFwAAAAAEFwAAAAAFegAAAAAAegAAAAAAegAAAAAAZQAAAAAATgAAAAAAegAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABTgAAAAAATgAAAAAAFwAAAAADFwAAAAAFFwAAAAAFWgAAAAADWgAAAAAAWgAAAAACZQAAAAAATgAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAABegAAAAAATgAAAAAATgAAAAAATgAAAAAAFwAAAAABFwAAAAAGWgAAAAADWgAAAAADWgAAAAAAZQAAAAACTgAAAAAAFwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAFwAAAAACFwAAAAAFFwAAAAAGFwAAAAACFwAAAAACFwAAAAAAFwAAAAACFwAAAAABFwAAAAAAFwAAAAACFwAAAAAEFwAAAAADFwAAAAAEFwAAAAABFwAAAAAFFwAAAAABFwAAAAAAFwAAAAACFwAAAAAGFwAAAAAFFwAAAAAEFwAAAAACFwAAAAAAFwAAAAABFwAAAAAAFwAAAAACFwAAAAAAFwAAAAACFwAAAAAEFwAAAAAAFwAAAAADFwAAAAAGFwAAAAAFFwAAAAADFwAAAAAAFwAAAAAGFwAAAAACFwAAAAACFwAAAAAAFwAAAAACFwAAAAAAFwAAAAADFwAAAAAEFwAAAAACFwAAAAABFwAAAAAEFwAAAAACFwAAAAACFwAAAAAAFwAAAAAAFwAAAAAEFwAAAAADFwAAAAADFwAAAAAEFwAAAAAFFwAAAAAGFwAAAAAGFwAAAAAGFwAAAAAAFwAAAAAGFwAAAAACFwAAAAAGFwAAAAACFwAAAAAGFwAAAAABFwAAAAAEFwAAAAAGFwAAAAACFwAAAAAGFwAAAAAAFwAAAAABFwAAAAAAFwAAAAADFwAAAAABFwAAAAAGFwAAAAADFwAAAAADFwAAAAAEFwAAAAAEFwAAAAAAFwAAAAABFwAAAAAFFwAAAAACFwAAAAAGFwAAAAAGFwAAAAAFFwAAAAACFwAAAAAGFwAAAAAGFwAAAAACFwAAAAAEFwAAAAAEFwAAAAAEFwAAAAAEBwAAAAAABwAAAAABFwAAAAAFFwAAAAAFFwAAAAABFwAAAAADFwAAAAAFFwAAAAACFwAAAAABFwAAAAAAFwAAAAAAFwAAAAABFwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: FQAAAAADFQAAAAAGFQAAAAABFQAAAAAHcQAAAAAAZAAAAAACZAAAAAADZAAAAAADZAAAAAABcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAALgAAAAACXAAAAAADXAAAAAABSAAAAAAASAAAAAAAcQAAAAAAZAAAAAABZAAAAAAAZAAAAAACZAAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAKwAAAAACKwAAAAAAOAAAAAAALgAAAAAAXAAAAAABXAAAAAADSAAAAAAASAAAAAAAcQAAAAAAZAAAAAACZAAAAAABZAAAAAACZAAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAXAAAAAABXAAAAAACXAAAAAACSAAAAAAAZAAAAAADZAAAAAABZAAAAAABZAAAAAAAZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAABXAAAAAABSAAAAAAASAAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAASAAAAAAAZAAAAAABZAAAAAADZAAAAAADZAAAAAABZAAAAAADSAAAAAAAXAAAAAADXAAAAAACSAAAAAAASAAAAAAAcQAAAAAAZAAAAAADZAAAAAABZAAAAAADZAAAAAADZAAAAAACZAAAAAACZAAAAAADZAAAAAADZAAAAAACZAAAAAACZAAAAAADXAAAAAACXAAAAAAASAAAAAAASAAAAAAAcQAAAAAAZAAAAAACZAAAAAAAZAAAAAAAZAAAAAAASAAAAAAAZAAAAAABZAAAAAACZAAAAAADZAAAAAACZAAAAAACSAAAAAAAXAAAAAABXAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZAAAAAADZAAAAAABZAAAAAAAZAAAAAABSAAAAAAAXAAAAAACXAAAAAABSAAAAAAASAAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAADXAAAAAABSAAAAAAASAAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADcQAAAAAAGwAAAAAAGwAAAAABXAAAAAADXAAAAAAAXAAAAAAASAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAADcQAAAAAAGwAAAAACGwAAAAADXAAAAAABXAAAAAABXAAAAAAASAAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAABcQAAAAAAGwAAAAACGwAAAAADGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAAAXAAAAAACXAAAAAABSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAGwAAAAABSAAAAAAAcQAAAAAASAAAAAAASAAAAAAAXAAAAAADXAAAAAADXAAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAXAAAAAACSAAAAAAASAAAAAAASAAAAAAASAAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADXAAAAAACXAAAAAADXAAAAAADXAAAAAADXAAAAAAAXAAAAAADXAAAAAAASAAAAAAAXAAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAXAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAAAXAAAAAAASAAAAAAA + tiles: GAAAAAACGAAAAAAHGAAAAAAHGAAAAAAGegAAAAAAbQAAAAACbQAAAAAAbQAAAAADbQAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAMQAAAAAAZQAAAAAAZQAAAAADTgAAAAAATgAAAAAAegAAAAAAbQAAAAADbQAAAAABbQAAAAABbQAAAAAAegAAAAAAOwAAAAAAOwAAAAAALgAAAAACLgAAAAADOwAAAAAAMQAAAAACZQAAAAABZQAAAAADTgAAAAAATgAAAAAAegAAAAAAbQAAAAABbQAAAAABbQAAAAAAbQAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAAZQAAAAACZQAAAAACZQAAAAAATgAAAAAAbQAAAAACbQAAAAAAbQAAAAABbQAAAAADbQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAACZQAAAAADTgAAAAAATgAAAAAAegAAAAAAbQAAAAACbQAAAAACbQAAAAAAbQAAAAABTgAAAAAAbQAAAAABbQAAAAABbQAAAAACbQAAAAAAbQAAAAAATgAAAAAAZQAAAAADZQAAAAAATgAAAAAATgAAAAAAegAAAAAAbQAAAAADbQAAAAADbQAAAAAAbQAAAAAAbQAAAAADbQAAAAABbQAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAADZQAAAAACZQAAAAAATgAAAAAATgAAAAAAegAAAAAAbQAAAAACbQAAAAADbQAAAAACbQAAAAADTgAAAAAAbQAAAAAAbQAAAAACbQAAAAAAbQAAAAADbQAAAAABTgAAAAAAZQAAAAAAZQAAAAABTgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAACbQAAAAADbQAAAAAAbQAAAAAAbQAAAAADTgAAAAAAZQAAAAAAZQAAAAAATgAAAAAATgAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAADZQAAAAADTgAAAAAATgAAAAAAegAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAABegAAAAAAHgAAAAADHgAAAAABZQAAAAABZQAAAAACZQAAAAADTgAAAAAAegAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAADegAAAAAAHgAAAAADHgAAAAADHgAAAAACegAAAAAAHgAAAAADHgAAAAABZQAAAAABZQAAAAABZQAAAAADTgAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAADegAAAAAAHgAAAAADHgAAAAADHgAAAAACegAAAAAAegAAAAAAegAAAAAAZQAAAAAAZQAAAAAAZQAAAAADTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAHgAAAAACTgAAAAAAegAAAAAATgAAAAAATgAAAAAAZQAAAAACZQAAAAABZQAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZQAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAAZQAAAAACZQAAAAABZQAAAAACZQAAAAADZQAAAAADZQAAAAACZQAAAAACZQAAAAABZQAAAAACZQAAAAACZQAAAAADZQAAAAACZQAAAAABZQAAAAACZQAAAAACTgAAAAAAZQAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZQAAAAACTQAAAAADTQAAAAACTQAAAAACTQAAAAACTQAAAAACZQAAAAAATgAAAAAA version: 6 -1,1: ind: -1,1 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAFBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAPgAAAAAAPgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEPgAAAAAAPgAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAPgAAAAAAPgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAMBwAAAAAKBwAAAAAABwAAAAAABwAAAAAAPgAAAAAAPgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAHBwAAAAAABwAAAAABBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAPgAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAADBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAFBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAQQAAAAAAQQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAQQAAAAAAQQAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAQQAAAAAAQQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEQQAAAAAAQQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAQQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 0,1: ind: 0,1 - tiles: BwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAABVAAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAABVAAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADBwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAABBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAVAAAAAACVAAAAAADVAAAAAACAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACAAAAAAAAAAAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVQAAAAACSAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAACVQAAAAACVQAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIQAAAAAASAAAAAAAcQAAAAAASAAAAAAAIQAAAAAAcQAAAAAAVQAAAAABVQAAAAACVQAAAAABVQAAAAAAVQAAAAADVQAAAAAAVAAAAAACAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAACXAAAAAADXAAAAAAAXAAAAAADXAAAAAACSAAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAACVQAAAAACVQAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAACXAAAAAACXAAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVQAAAAAAVQAAAAACVQAAAAADVQAAAAADVQAAAAACVQAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYgAAAAADYgAAAAABYgAAAAADYgAAAAADYgAAAAADcQAAAAAAcQAAAAAASAAAAAAAVQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYgAAAAABYgAAAAADPgAAAAAAYgAAAAABYgAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAB + tiles: BwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAALBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAABWgAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAABWgAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAWgAAAAAAWgAAAAACWgAAAAADAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAACAAAAAAAAAAAAAAAAegAAAAAAJAAAAAAAJAAAAAAAegAAAAAAJAAAAAAAJAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAXAAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAJAAAAAAAJAAAAAAAegAAAAAAJAAAAAAAJAAAAAAAegAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAADXAAAAAACegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAJAAAAAAATgAAAAAAegAAAAAATgAAAAAAJAAAAAAAegAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAACXAAAAAAAXAAAAAACWgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZQAAAAABZQAAAAADZQAAAAAAZQAAAAACZQAAAAABTgAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAADXAAAAAABXAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZQAAAAACZQAAAAABZQAAAAACZQAAAAACZQAAAAACZQAAAAADXAAAAAADXAAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAAAegAAAAAAegAAAAAAegAAAAAAXAAAAAABXAAAAAABXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAawAAAAAAawAAAAABawAAAAAAawAAAAABawAAAAABegAAAAAAegAAAAAATgAAAAAAXAAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAawAAAAAAawAAAAABQQAAAAAAawAAAAADawAAAAACegAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAADWgAAAAADWgAAAAADegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAACWgAAAAADWgAAAAAA version: 6 1,0: ind: 1,0 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAKwAAAAABVAAAAAABcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAACKwAAAAADVAAAAAAAVAAAAAABSAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAACVAAAAAADKwAAAAADVAAAAAACSAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADKwAAAAAAVAAAAAABVAAAAAAASAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAABOwAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAAAVAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAOwAAAAAASAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAOwAAAAAASAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAKwAAAAACKwAAAAABcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAPgAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAABYAAAAAAAPgAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACYAAAAAAAPgAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAASAAAAAAASAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAVAAAAAAAVAAAAAACcQAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABSAAAAAAAVAAAAAADSAAAAAAASAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAABcQAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAABcQAAAAAAVAAAAAAC + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAABLgAAAAABWgAAAAACegAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAABaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAAALgAAAAACWgAAAAACWgAAAAABTgAAAAAAWgAAAAACWgAAAAADWgAAAAAAWgAAAAACWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAADWgAAAAACLgAAAAACWgAAAAACTgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAALgAAAAAAWgAAAAADWgAAAAACTgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAADPgAAAAAAPgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAACWgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPgAAAAAAPgAAAAAATgAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAABWgAAAAADegAAAAAAaQAAAAAAaQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAACegAAAAAAegAAAAAAegAAAAAAPgAAAAAAPgAAAAAATgAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAACWgAAAAACWgAAAAACWgAAAAABWgAAAAADWgAAAAADegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAAAegAAAAAALgAAAAACLgAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAQQAAAAAAWgAAAAACWgAAAAABWgAAAAACWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAACWgAAAAACaQAAAAAAQQAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAADWgAAAAABWgAAAAAAWgAAAAADWgAAAAACWgAAAAADWgAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAABaQAAAAAAQQAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAACWgAAAAACegAAAAAAegAAAAAAWgAAAAADWgAAAAAAegAAAAAAWgAAAAABWgAAAAADegAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAADWgAAAAABWgAAAAADTgAAAAAATgAAAAAAWgAAAAADWgAAAAACWgAAAAADWgAAAAAAegAAAAAAWgAAAAABWgAAAAACegAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAADWgAAAAACWgAAAAACWgAAAAACWgAAAAABWgAAAAADWgAAAAAAWgAAAAADegAAAAAAWgAAAAACWgAAAAACTgAAAAAAWgAAAAADTgAAAAAATgAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAACWgAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAADWgAAAAADWgAAAAABWgAAAAABWgAAAAAAWgAAAAACWgAAAAACegAAAAAAWgAAAAAA version: 6 1,1: ind: 1,1 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAACSAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAABSAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAADPgAAAAAAPgAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAABPgAAAAAAPgAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAASAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAPgAAAAAAPgAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAACcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAVAAAAAADVAAAAAAAVAAAAAABSAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAASAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAADcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAbgAAAAACbgAAAAABbgAAAAAAbgAAAAADcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAYgAAAAACYAAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAADcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAYgAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAABVAAAAAACcQAAAAAAYgAAAAACYAAAAAAAYAAAAAAAYgAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAACcQAAAAAAYAAAAAAAYAAAAAAAYgAAAAACYAAAAAAAcQAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAVAAAAAAAPgAAAAAAPgAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAABWgAAAAABWgAAAAACTgAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAABTgAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAAAQQAAAAAAQQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAABWgAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAADQQAAAAAAQQAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAABTgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAABegAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAACQQAAAAAAQQAAAAAAWgAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAABegAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAACWgAAAAAAegAAAAAAaQAAAAAAQQAAAAAAQQAAAAAAWgAAAAACWgAAAAADWgAAAAACTgAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAACWgAAAAACWgAAAAACWgAAAAADWgAAAAADWgAAAAADegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAADTgAAAAAAWgAAAAACWgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAADdwAAAAAAdwAAAAADdwAAAAACegAAAAAAWgAAAAACWgAAAAADWgAAAAAAWgAAAAADWgAAAAADegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAdwAAAAABdwAAAAABdwAAAAAAdwAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADegAAAAAAawAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAQQAAAAAAdwAAAAACdwAAAAABdwAAAAABdwAAAAADegAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAABWgAAAAADegAAAAAAawAAAAABaQAAAAAAaQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAAAegAAAAAAawAAAAACaQAAAAAAaQAAAAAAawAAAAADegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAACWgAAAAAAegAAAAAAaQAAAAAAaQAAAAAAawAAAAAAaQAAAAAAegAAAAAAaQAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAADegAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAWgAAAAABQQAAAAAAQQAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAADegAAAAAAQQAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAA version: 6 2,0: ind: 2,0 - tiles: VAAAAAACVAAAAAADWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAWQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAADcQAAAAAAVAAAAAACWQAAAAAAVAAAAAACWQAAAAAAWQAAAAAAVAAAAAABVAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAVAAAAAADVAAAAAABVAAAAAACXAAAAAACXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAVAAAAAADcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABXAAAAAABXAAAAAACXAAAAAADXAAAAAABXAAAAAADXAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAAASAAAAAAAXAAAAAAAXAAAAAACXAAAAAABXAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADSAAAAAAAVAAAAAACVAAAAAABVAAAAAADXAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABXAAAAAADVAAAAAADcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAADSAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAABcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAAAXAAAAAABXAAAAAABXAAAAAABVAAAAAADVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAADVAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAAD + tiles: WgAAAAADWgAAAAACYQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAACYQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAADegAAAAAAWgAAAAADYQAAAAAAWgAAAAADYQAAAAAAYQAAAAAAWgAAAAABWgAAAAADTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAAAegAAAAAAegAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACegAAAAAAWgAAAAAAWgAAAAACWgAAAAADZQAAAAADZQAAAAACZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAABQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAWgAAAAACegAAAAAAWgAAAAACWgAAAAACWgAAAAACZQAAAAABZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAACZQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAACWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAACWgAAAAABWgAAAAADWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAADTgAAAAAAZQAAAAACZQAAAAAAZQAAAAAAZQAAAAABWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAACWgAAAAADTgAAAAAAWgAAAAAAWgAAAAADWgAAAAADZQAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAACWgAAAAABWgAAAAACWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAAAWgAAAAADZQAAAAAAWgAAAAABegAAAAAAegAAAAAAWgAAAAABegAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAABWgAAAAAATgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAACWgAAAAACWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAADWgAAAAADWgAAAAADWgAAAAAAZQAAAAACZQAAAAACZQAAAAACWgAAAAADWgAAAAADWgAAAAADWgAAAAABWgAAAAACegAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAABWgAAAAACegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAABWgAAAAADWgAAAAABWgAAAAABWgAAAAABWgAAAAAD version: 6 2,1: ind: 2,1 - tiles: VAAAAAADVAAAAAACVAAAAAABVAAAAAADcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAADcQAAAAAAYAAAAAAAYAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAAAVAAAAAACcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAPgAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: WgAAAAADWgAAAAADWgAAAAACWgAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAAAWgAAAAABWgAAAAADegAAAAAAaQAAAAAAaQAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAACWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAAAWgAAAAABWgAAAAACWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAABWgAAAAACWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAQQAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAAAWgAAAAABWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAAAWgAAAAAAWgAAAAACWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 3,1: ind: 3,1 - tiles: VAAAAAABcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAACIAAAAAABVAAAAAABcQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAADcQAAAAAAIAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAACIAAAAAAAVAAAAAADcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAACcQAAAAAAIAAAAAACcQAAAAAAIAAAAAACIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAABcQAAAAAAIAAAAAADIAAAAAAAcQAAAAAAIAAAAAACIAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAIAAAAAAAIAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAIAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAADIAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAABIAAAAAAAcQAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAADXAAAAAAAcQAAAAAAIAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAABcQAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAACcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAIAAAAAABcQAAAAAAcQAAAAAAXAAAAAAAXAAAAAADXAAAAAACXAAAAAAAXAAAAAABXAAAAAACcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAAAXAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAABXAAAAAABcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAACXAAAAAADcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: WgAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAACIwAAAAAAWgAAAAABegAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAADWgAAAAABWgAAAAADegAAAAAAIwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAABIwAAAAADWgAAAAACegAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAAAWgAAAAABWgAAAAADegAAAAAAIwAAAAAAegAAAAAAIwAAAAABIwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAAAegAAAAAAIwAAAAAAIwAAAAAAegAAAAAAIwAAAAABIwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAIwAAAAABIwAAAAADegAAAAAAIwAAAAAAIwAAAAADaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAIwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAABIwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAAAegAAAAAAegAAAAAAIwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAADIwAAAAACegAAAAAAZQAAAAACZQAAAAABZQAAAAAAZQAAAAADZQAAAAABZQAAAAABZQAAAAABegAAAAAAIwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAAAegAAAAAAZQAAAAADZQAAAAACZQAAAAABZQAAAAABZQAAAAADZQAAAAAAZQAAAAABegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAIwAAAAACegAAAAAAegAAAAAAZQAAAAACZQAAAAABZQAAAAACZQAAAAABZQAAAAABZQAAAAABegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAZQAAAAADZQAAAAACZQAAAAAAZQAAAAAAZQAAAAADZQAAAAABZQAAAAADaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAZQAAAAAAZQAAAAABZQAAAAAAZQAAAAABZQAAAAAAZQAAAAADZQAAAAACegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAZQAAAAABZQAAAAACZQAAAAACZQAAAAABZQAAAAACZQAAAAACegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 3,0: ind: 3,0 - tiles: SAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAABbgAAAAABcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAADbgAAAAABbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAABcQAAAAAAVAAAAAABVAAAAAACVAAAAAABcQAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAADSAAAAAAAVAAAAAACVAAAAAADVAAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAcQAAAAAAXAAAAAAASAAAAAAAVAAAAAACVAAAAAACVAAAAAADcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAPgAAAAAAXAAAAAABSAAAAAAAVAAAAAADVAAAAAABVAAAAAABcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAcQAAAAAAXAAAAAACcQAAAAAASAAAAAAAVAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAACXAAAAAABXAAAAAABVAAAAAACXAAAAAADXAAAAAACXAAAAAAAXAAAAAACXAAAAAADXAAAAAAAXAAAAAABXAAAAAADXAAAAAAAXAAAAAAAXAAAAAACXAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADXAAAAAACXAAAAAACXAAAAAABXAAAAAACVAAAAAADXAAAAAACXAAAAAADXAAAAAABXAAAAAADXAAAAAADXAAAAAAAXAAAAAADXAAAAAABXAAAAAACVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAADSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAIAAAAAACIAAAAAADVAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAAASAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: TgAAAAAAaQAAAAAAegAAAAAAegAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAABdwAAAAAAdwAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAABdwAAAAADegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAADdwAAAAADdwAAAAAAdwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZQAAAAADegAAAAAAWgAAAAACWgAAAAADWgAAAAAAegAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAADTgAAAAAAWgAAAAACWgAAAAADWgAAAAABPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAegAAAAAAZQAAAAACTgAAAAAAWgAAAAACWgAAAAAAWgAAAAABegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAQQAAAAAAZQAAAAACTgAAAAAAWgAAAAADWgAAAAABWgAAAAABegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAegAAAAAAZQAAAAADegAAAAAATgAAAAAAWgAAAAABTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAADZQAAAAAAZQAAAAACWgAAAAAAZQAAAAACZQAAAAADZQAAAAABZQAAAAACZQAAAAABZQAAAAAAZQAAAAADZQAAAAACZQAAAAADZQAAAAACZQAAAAAAZQAAAAABWgAAAAABWgAAAAADWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAADWgAAAAAAWgAAAAACWgAAAAABWgAAAAACWgAAAAACWgAAAAADWgAAAAADZQAAAAABZQAAAAAAZQAAAAABZQAAAAADWgAAAAACZQAAAAABZQAAAAAAZQAAAAABZQAAAAADZQAAAAACZQAAAAABZQAAAAABZQAAAAABZQAAAAADWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAADTgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAIwAAAAACIwAAAAACWgAAAAADegAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAABWgAAAAACWgAAAAACTgAAAAAAIwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: ZAAAAAAAZAAAAAACZAAAAAADZAAAAAADZAAAAAABDgAAAAAADgAAAAAAcQAAAAAAXwAAAAADXwAAAAACRwAAAAADcQAAAAAAJwAAAAAADwAAAAAAJwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAABZAAAAAAAcQAAAAAAZAAAAAABSAAAAAAAcQAAAAAAXwAAAAADXwAAAAADRwAAAAAAcQAAAAAAJwAAAAAADwAAAAAAJwAAAAAAcQAAAAAAZAAAAAACZAAAAAABZAAAAAACZAAAAAADSAAAAAAADgAAAAAADgAAAAAAcQAAAAAAXwAAAAACXwAAAAABRwAAAAADcQAAAAAAJwAAAAAADwAAAAAAJwAAAAAAcQAAAAAAZAAAAAAAZAAAAAADZAAAAAABZAAAAAAASAAAAAAADgAAAAAADgAAAAAAcQAAAAAAXwAAAAACXwAAAAAARwAAAAABcQAAAAAADwAAAAAADwAAAAAADwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXwAAAAAAXwAAAAABRwAAAAAAcQAAAAAAJwAAAAAAcQAAAAAAJwAAAAAAcQAAAAAAVAAAAAABcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAXwAAAAACXwAAAAADXwAAAAACXwAAAAAAXwAAAAACRwAAAAACcQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAABXwAAAAABXwAAAAABXwAAAAABXwAAAAACXwAAAAACRwAAAAAAcQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAADVAAAAAACWgAAAAABWgAAAAAAWgAAAAACWgAAAAACWgAAAAACRwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAACXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAABSAAAAAAASAAAAAAAEwAAAAAASAAAAAAASAAAAAAAcQAAAAAAXwAAAAAAXgAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAXgAAAAACEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAWgAAAAACXgAAAAACXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAASAAAAAAAVAAAAAABVAAAAAACSAAAAAAAcQAAAAAAVAAAAAADVAAAAAACcQAAAAAASAAAAAAAVAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAVAAAAAABVAAAAAACKwAAAAADVAAAAAADcQAAAAAAVAAAAAACVAAAAAABcQAAAAAAVAAAAAACVAAAAAADEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAVAAAAAABKwAAAAAAVAAAAAACVAAAAAACcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAACEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAVAAAAAABVAAAAAABKwAAAAACVAAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAABEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAVAAAAAADKwAAAAADVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAB + tiles: bQAAAAADbQAAAAADbQAAAAAAbQAAAAAAbQAAAAABEQAAAAAAEQAAAAAAegAAAAAAaAAAAAABaAAAAAADTQAAAAABegAAAAAAKgAAAAAAEgAAAAAAKgAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAAAbQAAAAABegAAAAAAbQAAAAABTgAAAAAAegAAAAAAaAAAAAABaAAAAAAATQAAAAABegAAAAAAKgAAAAAAEgAAAAAAKgAAAAAAegAAAAAAbQAAAAADbQAAAAAAbQAAAAADbQAAAAACTgAAAAAAEQAAAAAAEQAAAAAAegAAAAAAaAAAAAABaAAAAAAATQAAAAAAegAAAAAAKgAAAAAAEgAAAAAAKgAAAAAAegAAAAAAbQAAAAACbQAAAAAAbQAAAAABbQAAAAABTgAAAAAAEQAAAAAAEQAAAAAAegAAAAAAaAAAAAAAaAAAAAABTQAAAAAAegAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAaAAAAAAAaAAAAAADTQAAAAAAegAAAAAAKgAAAAAAegAAAAAAKgAAAAAAegAAAAAAWgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAaAAAAAAAaAAAAAACaAAAAAAAaAAAAAADaAAAAAABTQAAAAACegAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAABWgAAAAABaAAAAAABaAAAAAADaAAAAAADaAAAAAABaAAAAAADTQAAAAADegAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAACWgAAAAACYgAAAAADYgAAAAABYgAAAAACYgAAAAABYgAAAAABTQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAAAZwAAAAADZwAAAAACZwAAAAABZwAAAAADZwAAAAAATQAAAAABTQAAAAACTQAAAAADTQAAAAACTQAAAAABTQAAAAADTgAAAAAATgAAAAAAFgAAAAAATgAAAAAATgAAAAAAegAAAAAAaAAAAAAAZwAAAAADZwAAAAACZwAAAAACZwAAAAADZwAAAAACZwAAAAADZwAAAAAAZwAAAAACZwAAAAABFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAYgAAAAABZwAAAAAAZwAAAAADZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAACZwAAAAABZwAAAAAAZwAAAAADFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAATgAAAAAAWgAAAAAAWgAAAAAATgAAAAAAegAAAAAAWgAAAAACWgAAAAADegAAAAAATgAAAAAAWgAAAAABFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAWgAAAAADWgAAAAAALgAAAAABWgAAAAACegAAAAAAWgAAAAACWgAAAAADegAAAAAAWgAAAAABWgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAWgAAAAABLgAAAAABWgAAAAADWgAAAAACegAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAADFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAWgAAAAACWgAAAAABLgAAAAACWgAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAWgAAAAABLgAAAAAAWgAAAAABWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAC version: 6 1,-2: ind: 1,-2 - tiles: ZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAZAAAAAACcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAZAAAAAADZAAAAAADcQAAAAAAXwAAAAADZAAAAAADVAAAAAACZAAAAAABZAAAAAADcQAAAAAAZAAAAAABZAAAAAADZAAAAAADZAAAAAADZAAAAAACZAAAAAADZAAAAAAAZAAAAAACZAAAAAABSAAAAAAAXwAAAAACZAAAAAACcQAAAAAAZAAAAAADZAAAAAABcQAAAAAAZAAAAAADZAAAAAADZAAAAAACZAAAAAADZAAAAAAAZAAAAAAAZAAAAAABZAAAAAAAZAAAAAABSAAAAAAAXwAAAAACZAAAAAACcQAAAAAAZAAAAAADZAAAAAABcQAAAAAAZAAAAAADZAAAAAADZAAAAAACZAAAAAADZAAAAAACZAAAAAABZAAAAAADZAAAAAABZAAAAAABZAAAAAADXwAAAAACZAAAAAAAZAAAAAAAZAAAAAABZAAAAAACZAAAAAAAZAAAAAACZAAAAAADZAAAAAAAZAAAAAACZAAAAAADZAAAAAAAZAAAAAADZAAAAAACZAAAAAACZAAAAAAAXwAAAAACZQAAAAADZQAAAAABZQAAAAADZAAAAAABSAAAAAAAZAAAAAABZAAAAAACZAAAAAACZAAAAAABZAAAAAAAZAAAAAAAZAAAAAABZAAAAAADZAAAAAABSAAAAAAAXwAAAAABZQAAAAABZgAAAAACZQAAAAACZAAAAAACZAAAAAADZAAAAAADZAAAAAAAZAAAAAACZAAAAAAAZAAAAAACZAAAAAADZAAAAAACZAAAAAADZAAAAAACSAAAAAAAXwAAAAAAZQAAAAAAZgAAAAABZQAAAAADZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAZAAAAAADSAAAAAAAcQAAAAAAZAAAAAABZAAAAAABcQAAAAAAXwAAAAADZQAAAAADZgAAAAADZQAAAAADZAAAAAABSAAAAAAAZAAAAAACZAAAAAABZAAAAAACZAAAAAABZAAAAAABZAAAAAABcQAAAAAAWgAAAAACXgAAAAACXgAAAAAAWgAAAAACZQAAAAACZQAAAAADZQAAAAACZAAAAAABZAAAAAADZAAAAAABZAAAAAACZAAAAAAAZAAAAAACZAAAAAAAZAAAAAABcQAAAAAAXwAAAAADXgAAAAABXgAAAAACWgAAAAAAZAAAAAABZAAAAAABZAAAAAACZAAAAAAASAAAAAAAZAAAAAABZAAAAAAAZAAAAAABZAAAAAACZAAAAAACZAAAAAABcQAAAAAAXwAAAAABXgAAAAADXgAAAAABWgAAAAACcQAAAAAAcQAAAAAAZAAAAAADZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAZAAAAAADSAAAAAAAcQAAAAAAXwAAAAAAXgAAAAABXgAAAAADWgAAAAACZAAAAAADZAAAAAADZAAAAAABZAAAAAAASAAAAAAADgAAAAAADgAAAAAAcQAAAAAAWgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACWgAAAAAAXgAAAAACXgAAAAADWgAAAAACZAAAAAABZAAAAAAAZAAAAAAAZAAAAAABSAAAAAAADgAAAAAADgAAAAAAcQAAAAAAXwAAAAADXwAAAAABXwAAAAABWgAAAAADXgAAAAAAXgAAAAABXgAAAAAAWgAAAAAAcQAAAAAAcQAAAAAAZAAAAAADZAAAAAADcQAAAAAAZAAAAAADSAAAAAAAcQAAAAAAXwAAAAABXwAAAAADXwAAAAACXgAAAAADXgAAAAADXgAAAAADXgAAAAACXgAAAAACZAAAAAADZAAAAAAAZAAAAAABZAAAAAABZAAAAAADDgAAAAAADgAAAAAAcQAAAAAAXwAAAAACXwAAAAAARwAAAAACcQAAAAAASAAAAAAAVAAAAAADSAAAAAAAcQAAAAAA + tiles: bQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAbQAAAAADegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAbQAAAAADbQAAAAADegAAAAAAaAAAAAAAbQAAAAADWgAAAAADbQAAAAAAbQAAAAABegAAAAAAbQAAAAAAbQAAAAABbQAAAAAAbQAAAAAAbQAAAAADbQAAAAAAbQAAAAABbQAAAAACbQAAAAADTgAAAAAAaAAAAAADbQAAAAAAegAAAAAAbQAAAAACbQAAAAAAegAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAADbQAAAAABbQAAAAABbQAAAAABbQAAAAAAbQAAAAAATgAAAAAAaAAAAAACbQAAAAAAegAAAAAAbQAAAAAAbQAAAAABegAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAAAbQAAAAABbQAAAAABbQAAAAACbQAAAAACbQAAAAABbQAAAAAAaAAAAAABbQAAAAABbQAAAAADbQAAAAACbQAAAAABbQAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAAAbQAAAAADbQAAAAAAbQAAAAADbQAAAAACbQAAAAACbQAAAAABaAAAAAABbgAAAAABbgAAAAABbgAAAAADbQAAAAAATgAAAAAAbQAAAAADbQAAAAABbQAAAAABbQAAAAAAbQAAAAACbQAAAAABbQAAAAAAbQAAAAADbQAAAAABTgAAAAAAaAAAAAAAbgAAAAACbwAAAAAAbgAAAAABbQAAAAABbQAAAAABbQAAAAABbQAAAAAAbQAAAAACbQAAAAADbQAAAAAAbQAAAAADbQAAAAADbQAAAAACbQAAAAAATgAAAAAAaAAAAAADbgAAAAACbwAAAAABbgAAAAADbQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAbQAAAAACTgAAAAAAegAAAAAAbQAAAAAAbQAAAAACegAAAAAAaAAAAAADbgAAAAABbwAAAAAAbgAAAAABbQAAAAACTgAAAAAAbQAAAAABbQAAAAABbQAAAAACbQAAAAACbQAAAAABbQAAAAABegAAAAAAYgAAAAADZwAAAAADZwAAAAADYgAAAAADbgAAAAAAbgAAAAAAbgAAAAAAbQAAAAACbQAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAACbQAAAAAAegAAAAAAaAAAAAADZwAAAAABZwAAAAABYgAAAAADbQAAAAADbQAAAAABbQAAAAADbQAAAAAATgAAAAAAbQAAAAADbQAAAAADbQAAAAADbQAAAAABbQAAAAACbQAAAAAAegAAAAAAaAAAAAABZwAAAAACZwAAAAAAYgAAAAABegAAAAAAegAAAAAAbQAAAAADbQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAbQAAAAABTgAAAAAAegAAAAAAaAAAAAABZwAAAAABZwAAAAACYgAAAAAAbQAAAAABbQAAAAADbQAAAAAAbQAAAAADTgAAAAAAEQAAAAAAEQAAAAAAegAAAAAAYgAAAAAAZwAAAAAAZwAAAAABZwAAAAADYgAAAAABZwAAAAACZwAAAAABYgAAAAABbQAAAAADbQAAAAAAbQAAAAAAbQAAAAABTgAAAAAAEQAAAAAAEQAAAAAAegAAAAAAaAAAAAACaAAAAAADaAAAAAABYgAAAAAAZwAAAAACZwAAAAADZwAAAAAAYgAAAAAAegAAAAAAegAAAAAAbQAAAAAAbQAAAAABegAAAAAAbQAAAAAATgAAAAAAegAAAAAAaAAAAAACaAAAAAACaAAAAAADZwAAAAADZwAAAAABZwAAAAABZwAAAAADZwAAAAADbQAAAAAAbQAAAAADbQAAAAAAbQAAAAACbQAAAAADEQAAAAAAEQAAAAAAegAAAAAAaAAAAAAAaAAAAAADTQAAAAADegAAAAAATgAAAAAAWgAAAAABTgAAAAAAegAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: RwAAAAABXwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARwAAAAABXwAAAAACcQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAVAAAAAABWQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACcQAAAAAARwAAAAABXwAAAAADcQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAADVAAAAAAAcQAAAAAARwAAAAAAXwAAAAACcQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAVAAAAAADVAAAAAABcQAAAAAAVAAAAAACVAAAAAADVAAAAAACcQAAAAAARwAAAAADXwAAAAABcQAAAAAAcQAAAAAAEgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARwAAAAACXwAAAAACVAAAAAABYgAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAADVAAAAAABWQAAAAAAVAAAAAABVAAAAAACVAAAAAABRwAAAAADXwAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAACYgAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABRwAAAAADXwAAAAACcQAAAAAAcQAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARwAAAAAAXwAAAAACcQAAAAAAbgAAAAADbgAAAAABbgAAAAACbgAAAAACbgAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACcQAAAAAAVAAAAAAAVAAAAAAAXgAAAAABXwAAAAABcQAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAACcQAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAADcQAAAAAAVAAAAAAAVAAAAAADXgAAAAAAWgAAAAADcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbgAAAAADcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAVAAAAAADVAAAAAADSAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAcQAAAAAAVAAAAAADWQAAAAAAVAAAAAABWQAAAAAAWQAAAAAAVAAAAAACVAAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: TQAAAAAAaAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACYQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAAaAAAAAADegAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAWgAAAAABYQAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAABegAAAAAATQAAAAADaAAAAAACegAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAADWgAAAAAAWgAAAAABegAAAAAATQAAAAACaAAAAAACegAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAWgAAAAACWgAAAAACegAAAAAAWgAAAAABWgAAAAACWgAAAAACegAAAAAATQAAAAAAaAAAAAABegAAAAAAegAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAACaAAAAAACWgAAAAABawAAAAADWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAAAWgAAAAADWgAAAAADWgAAAAABYQAAAAAAWgAAAAADWgAAAAAAWgAAAAADTQAAAAADaAAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAawAAAAABWgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAADWgAAAAADTQAAAAAAaAAAAAADegAAAAAAegAAAAAAdwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAAaAAAAAADegAAAAAAdwAAAAACdwAAAAAAdwAAAAAAdwAAAAABdwAAAAACegAAAAAAYwAAAAAAYwAAAAAAYwAAAAABYwAAAAABegAAAAAAYwAAAAAAYwAAAAABZwAAAAAAaAAAAAACegAAAAAAdwAAAAAAdwAAAAABdwAAAAABdwAAAAACdwAAAAAAegAAAAAAYwAAAAADYwAAAAABYwAAAAADYwAAAAAAegAAAAAAYwAAAAAAYwAAAAABZwAAAAAAYgAAAAAAegAAAAAAdwAAAAACdwAAAAADdwAAAAACdwAAAAACdwAAAAABegAAAAAAYwAAAAADYwAAAAABYwAAAAABYwAAAAAAegAAAAAAYwAAAAAAYwAAAAABTgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAABegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAABegAAAAAAWgAAAAAAYQAAAAAAWgAAAAACYQAAAAAAYQAAAAAAWgAAAAADWgAAAAABTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: XgAAAAABXwAAAAADSAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADSAAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAACGwAAAAACcQAAAAAAPgAAAAAAHQAAAAAAHQAAAAAAXgAAAAABXwAAAAADcQAAAAAASAAAAAAAHAAAAAADHAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAHQAAAAAAWgAAAAABWgAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAADXgAAAAACXgAAAAABXgAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAABXgAAAAABXgAAAAACWgAAAAADWgAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAACWgAAAAAAWgAAAAADXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAXgAAAAADXwAAAAAAXwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXwAAAAABXwAAAAABcQAAAAAAVAAAAAADVAAAAAABcQAAAAAAVAAAAAADVAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACXwAAAAACXwAAAAACcQAAAAAAVAAAAAADVAAAAAAAcQAAAAAAVAAAAAABVAAAAAADcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAXwAAAAACXwAAAAADcQAAAAAAVAAAAAADVAAAAAACcQAAAAAAVAAAAAADVAAAAAADcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAXwAAAAAAXwAAAAADcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAXwAAAAAAXwAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAADXwAAAAAAXwAAAAABVAAAAAACVAAAAAABVAAAAAADYgAAAAADVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAWQAAAAAAVAAAAAACVAAAAAAAVAAAAAADYgAAAAAAXwAAAAADXwAAAAAAcQAAAAAAcQAAAAAAPwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXwAAAAACXwAAAAABcQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcQAAAAAAVAAAAAAAVAAAAAABcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAXwAAAAABXwAAAAADcQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcQAAAAAAYgAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAAAcQAAAAAARwAAAAABXwAAAAAAcQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcQAAAAAAWQAAAAAAVAAAAAADcQAAAAAAVAAAAAACVAAAAAACVAAAAAABcQAAAAAA + tiles: ZwAAAAACaAAAAAACTgAAAAAAHwAAAAACHwAAAAACHwAAAAADTgAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAACHgAAAAAAegAAAAAAQQAAAAAAIAAAAAABIAAAAAAAZwAAAAAAaAAAAAAAegAAAAAATgAAAAAAHwAAAAADHwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAIAAAAAACYgAAAAABYgAAAAACZwAAAAACZwAAAAACZwAAAAACZwAAAAABZwAAAAABZwAAAAACZwAAAAADZwAAAAADZwAAAAAAZwAAAAADZwAAAAACZwAAAAACZwAAAAAAZwAAAAACYgAAAAACYgAAAAAAZwAAAAACZwAAAAADZwAAAAABZwAAAAADZwAAAAACZwAAAAADZwAAAAADZwAAAAACZwAAAAABZwAAAAACZwAAAAAAZwAAAAADZwAAAAAAZwAAAAABYgAAAAAAYgAAAAADZwAAAAACZwAAAAACZwAAAAABZwAAAAADZwAAAAADZwAAAAAAZwAAAAABZwAAAAAAZwAAAAACZwAAAAADZwAAAAABZwAAAAABZwAAAAADZwAAAAADaAAAAAACaAAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaAAAAAADaAAAAAABegAAAAAAWgAAAAADWgAAAAAAegAAAAAAWgAAAAADWgAAAAABegAAAAAAWgAAAAACWgAAAAACWgAAAAACegAAAAAAWgAAAAACWgAAAAABWgAAAAADaAAAAAADaAAAAAABegAAAAAAWgAAAAABWgAAAAACegAAAAAAWgAAAAAAWgAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAACegAAAAAAWgAAAAABWgAAAAADWgAAAAADaAAAAAACaAAAAAADegAAAAAAWgAAAAAAWgAAAAABegAAAAAAWgAAAAACWgAAAAABegAAAAAAWgAAAAADWgAAAAADWgAAAAADegAAAAAAWgAAAAADWgAAAAABWgAAAAAAaAAAAAABaAAAAAABegAAAAAAegAAAAAAWgAAAAAAegAAAAAAegAAAAAAWgAAAAADegAAAAAAegAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAWgAAAAADegAAAAAAaAAAAAAAaAAAAAABWgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAADWgAAAAAAWgAAAAADWgAAAAADaAAAAAADaAAAAAAAWgAAAAABWgAAAAADWgAAAAADawAAAAADWgAAAAABWgAAAAABWgAAAAADWgAAAAABWgAAAAABYQAAAAAAWgAAAAADWgAAAAABWgAAAAABawAAAAABaAAAAAADaAAAAAAAegAAAAAAegAAAAAAQgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaAAAAAADaAAAAAACegAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAegAAAAAAWgAAAAABWgAAAAABegAAAAAAWgAAAAAAWgAAAAACWgAAAAACegAAAAAAaAAAAAAAaAAAAAAAegAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAegAAAAAAawAAAAABWgAAAAACWgAAAAACWgAAAAADWgAAAAAAWgAAAAACegAAAAAATQAAAAADaAAAAAACegAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAegAAAAAAYQAAAAAAWgAAAAADegAAAAAAWgAAAAACWgAAAAAAWgAAAAAAegAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: DAAAAAADDAAAAAAADAAAAAABDAAAAAABIAAAAAABIAAAAAACDAAAAAAADAAAAAADDAAAAAADDAAAAAABDAAAAAABDAAAAAAAcQAAAAAAXAAAAAACXAAAAAADXAAAAAAADAAAAAAADAAAAAABDAAAAAACDAAAAAADIAAAAAAAIAAAAAAADAAAAAACDAAAAAABDAAAAAACDAAAAAACDAAAAAADDAAAAAAAcQAAAAAAXAAAAAADXAAAAAABXAAAAAACDAAAAAACDAAAAAADDAAAAAAADAAAAAAAIAAAAAABIAAAAAAADAAAAAACDAAAAAAADAAAAAABDAAAAAACDAAAAAAADAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADAAAAAACDAAAAAACDAAAAAAADAAAAAAAIAAAAAACIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAADAAAAAADDAAAAAADDAAAAAABDAAAAAABIAAAAAABIAAAAAACSAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAIAAAAAADIAAAAAAADAAAAAAADAAAAAAADAAAAAACDAAAAAABIAAAAAAAIAAAAAADOgAAAAAAOgAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAAAOgAAAAAAOgAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAIAAAAAACRwAAAAAARwAAAAACRwAAAAAARwAAAAABIAAAAAABIAAAAAADOgAAAAAAOgAAAAAAIAAAAAABIAAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAACIAAAAAAAIAAAAAADSAAAAAAAOgAAAAAAIAAAAAAAIAAAAAADOgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAACIAAAAAADSAAAAAAAOgAAAAAAIAAAAAAAIAAAAAAAOgAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAASAAAAAAAIAAAAAACIAAAAAADcQAAAAAAOgAAAAAAIAAAAAAAIAAAAAAAOgAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAIAAAAAAAIAAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAADLgAAAAADLgAAAAABcQAAAAAAIAAAAAACIAAAAAACcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKgAAAAAAcQAAAAAALgAAAAAALgAAAAABLgAAAAACSAAAAAAAIAAAAAADIAAAAAAAPgAAAAAAPgAAAAAAJgAAAAABJgAAAAADJgAAAAACJgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAALgAAAAADLgAAAAACLgAAAAABSAAAAAAAIAAAAAACIAAAAAADSAAAAAAAJgAAAAAAJgAAAAAAJgAAAAABJgAAAAADJgAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAALgAAAAADLgAAAAAALgAAAAADSAAAAAAAIAAAAAADIAAAAAAASAAAAAAAJgAAAAAAJgAAAAACJgAAAAAAJgAAAAACJgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAA + tiles: DgAAAAADDgAAAAABDgAAAAAADgAAAAACIwAAAAABIwAAAAAADgAAAAAADgAAAAAADgAAAAACDgAAAAACDgAAAAADDgAAAAABegAAAAAAZQAAAAAAZQAAAAACZQAAAAABDgAAAAABDgAAAAADDgAAAAABDgAAAAACIwAAAAAAIwAAAAAADgAAAAADDgAAAAACDgAAAAABDgAAAAACDgAAAAAADgAAAAADegAAAAAAZQAAAAACZQAAAAADZQAAAAAADgAAAAABDgAAAAADDgAAAAACDgAAAAACIwAAAAADIwAAAAAADgAAAAACDgAAAAACDgAAAAADDgAAAAABDgAAAAADDgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAADgAAAAAADgAAAAABDgAAAAADDgAAAAAAIwAAAAACIwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAADgAAAAACDgAAAAABDgAAAAADDgAAAAABIwAAAAABIwAAAAADTgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAIwAAAAAAIwAAAAAADgAAAAADDgAAAAADDgAAAAACDgAAAAAAIwAAAAAAIwAAAAAAPQAAAAAAPQAAAAAAIwAAAAAAIwAAAAADIwAAAAADIwAAAAABIwAAAAADIwAAAAAAIwAAAAADIwAAAAADIwAAAAAAIwAAAAADIwAAAAABIwAAAAAAIwAAAAADIwAAAAABPQAAAAAAPQAAAAAAIwAAAAACIwAAAAAAIwAAAAABIwAAAAABIwAAAAABIwAAAAADIwAAAAABIwAAAAAATQAAAAABTQAAAAACTQAAAAABTQAAAAABIwAAAAACIwAAAAABPQAAAAAAPQAAAAAAIwAAAAAAIwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAIwAAAAADIwAAAAADIwAAAAABIwAAAAADIwAAAAACIwAAAAADTgAAAAAAPQAAAAAAIwAAAAABIwAAAAACPQAAAAAAegAAAAAAegAAAAAAegAAAAAALQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAAAIwAAAAACTgAAAAAAPQAAAAAAIwAAAAABIwAAAAAAPQAAAAAAegAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAATgAAAAAAIwAAAAACIwAAAAAAegAAAAAAPQAAAAAAIwAAAAACIwAAAAAAPQAAAAAAegAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAIwAAAAACIwAAAAACPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAMQAAAAAAMQAAAAACMQAAAAACegAAAAAAIwAAAAAAIwAAAAADegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALQAAAAAAegAAAAAAMQAAAAACMQAAAAADMQAAAAABTgAAAAAAIwAAAAAAIwAAAAAAQQAAAAAAQQAAAAAAKQAAAAACKQAAAAABKQAAAAACKQAAAAABQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAMQAAAAADMQAAAAACMQAAAAADTgAAAAAAIwAAAAACIwAAAAADTgAAAAAAKQAAAAABKQAAAAAAKQAAAAACKQAAAAACKQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAMQAAAAABMQAAAAACMQAAAAABTgAAAAAAIwAAAAABIwAAAAADTgAAAAAAKQAAAAABKQAAAAABKQAAAAAAKQAAAAADKQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: FQAAAAABFQAAAAABFQAAAAAEFQAAAAAAWAAAAAAAWAAAAAAAVwAAAAAAVwAAAAAAVwAAAAABcQAAAAAADAAAAAAADAAAAAACDAAAAAACDAAAAAAADAAAAAABDAAAAAAAFQAAAAABFQAAAAAGFQAAAAABFQAAAAAHWAAAAAABWAAAAAABVwAAAAACVwAAAAADVwAAAAABDAAAAAAADAAAAAADDAAAAAABDAAAAAABDAAAAAACDAAAAAAADAAAAAABFQAAAAABFQAAAAAGFQAAAAAFFQAAAAAHWAAAAAADWAAAAAABVwAAAAACVwAAAAAAVwAAAAABDAAAAAACDAAAAAACDAAAAAABDAAAAAAADAAAAAABDAAAAAABDAAAAAAAFQAAAAAHFQAAAAAHFQAAAAACFQAAAAAGWAAAAAAAWAAAAAABVwAAAAAAVwAAAAABVwAAAAAASAAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAABDAAAAAABDAAAAAABFQAAAAAHFQAAAAACFQAAAAACFQAAAAAHWAAAAAACWAAAAAADVwAAAAACVwAAAAABVwAAAAACSAAAAAAADAAAAAACDAAAAAAADAAAAAAADAAAAAAADAAAAAABDAAAAAAAFQAAAAAGFQAAAAADFQAAAAAEFQAAAAADWAAAAAAAWAAAAAAAVwAAAAACVwAAAAADVwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFQAAAAAHFQAAAAABFQAAAAABFQAAAAAFHQAAAAAAHQAAAAADSAAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAACIAAAAAADIAAAAAACIAAAAAADFQAAAAADFQAAAAAEFQAAAAAAFQAAAAAAIAAAAAAAIAAAAAADIAAAAAADVwAAAAABVwAAAAADVwAAAAABVwAAAAACVwAAAAADVwAAAAACRwAAAAACRwAAAAADRwAAAAABFQAAAAAFFQAAAAAEFQAAAAAEFQAAAAAFHQAAAAAAHQAAAAABSAAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAADVwAAAAAAVwAAAAAAIAAAAAADIAAAAAACIAAAAAACFQAAAAAEFQAAAAADFQAAAAAFFQAAAAABWAAAAAAAWAAAAAADVwAAAAACVwAAAAADVwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFQAAAAABFQAAAAAHFQAAAAAAFQAAAAADWAAAAAABWAAAAAABVwAAAAADVwAAAAADVwAAAAACVwAAAAADcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAFQAAAAAHFQAAAAAAFQAAAAABFQAAAAAAWAAAAAAAWAAAAAADVwAAAAACVwAAAAACVwAAAAABVwAAAAACcQAAAAAAOAAAAAAAKwAAAAABKwAAAAADOAAAAAAAOAAAAAAAFQAAAAAFFQAAAAAEFQAAAAAFFQAAAAAGWAAAAAABWAAAAAADVwAAAAABVwAAAAACVwAAAAADVwAAAAABcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAALgAAAAACFQAAAAAAFQAAAAAHFQAAAAAAFQAAAAAGWAAAAAAAWAAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAACcQAAAAAAOAAAAAAAKwAAAAABKwAAAAACOAAAAAAALgAAAAAAFQAAAAAEFQAAAAAFFQAAAAAEFQAAAAAGWAAAAAADWAAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAALgAAAAAAFQAAAAAAFQAAAAAEFQAAAAABFQAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOAAAAAAAKwAAAAACKwAAAAADOAAAAAAALgAAAAAC + tiles: GAAAAAABGAAAAAAHGAAAAAAEGAAAAAAFYAAAAAADYAAAAAABXwAAAAABXwAAAAADXwAAAAAAegAAAAAADgAAAAACDgAAAAABDgAAAAABDgAAAAACDgAAAAABDgAAAAADGAAAAAAFGAAAAAAHGAAAAAABGAAAAAAFYAAAAAACYAAAAAADXwAAAAACXwAAAAACXwAAAAABDgAAAAACDgAAAAADDgAAAAAADgAAAAACDgAAAAAADgAAAAAADgAAAAAAGAAAAAACGAAAAAAAGAAAAAADGAAAAAAEYAAAAAAAYAAAAAADXwAAAAABXwAAAAABXwAAAAADDgAAAAABDgAAAAAADgAAAAACDgAAAAAADgAAAAAADgAAAAABDgAAAAACGAAAAAAHGAAAAAAFGAAAAAACGAAAAAAEYAAAAAABYAAAAAABXwAAAAACXwAAAAAAXwAAAAACTgAAAAAADgAAAAAADgAAAAAADgAAAAACDgAAAAABDgAAAAABDgAAAAACGAAAAAAGGAAAAAAEGAAAAAABGAAAAAACYAAAAAADYAAAAAADXwAAAAADXwAAAAAAXwAAAAABTgAAAAAADgAAAAAADgAAAAAADgAAAAADDgAAAAACDgAAAAABDgAAAAABGAAAAAACGAAAAAAEGAAAAAADGAAAAAAAYAAAAAABYAAAAAAAXwAAAAABXwAAAAADXwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAGAAAAAAFGAAAAAADGAAAAAAEGAAAAAAEIAAAAAABIAAAAAADTgAAAAAAXwAAAAACXwAAAAADXwAAAAADXwAAAAADXwAAAAADXwAAAAACIwAAAAABIwAAAAAAIwAAAAADGAAAAAABGAAAAAAFGAAAAAAFGAAAAAAGIwAAAAADIwAAAAAAIwAAAAABXwAAAAACXwAAAAAAXwAAAAACXwAAAAADXwAAAAAAXwAAAAADTQAAAAACTQAAAAAATQAAAAABGAAAAAADGAAAAAAGGAAAAAAHGAAAAAABIAAAAAAAIAAAAAAATgAAAAAAXwAAAAADXwAAAAAAXwAAAAACXwAAAAACXwAAAAADXwAAAAACIwAAAAAAIwAAAAAAIwAAAAABGAAAAAAEGAAAAAAEGAAAAAADGAAAAAADYAAAAAABYAAAAAACXwAAAAADXwAAAAACXwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAGAAAAAAHGAAAAAAEGAAAAAAEGAAAAAAHYAAAAAADYAAAAAAAXwAAAAADXwAAAAAAXwAAAAABXwAAAAADegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAGAAAAAAHGAAAAAAGGAAAAAAGGAAAAAADYAAAAAACYAAAAAABXwAAAAADXwAAAAADXwAAAAACXwAAAAADegAAAAAAOwAAAAAALgAAAAADLgAAAAABOwAAAAAAOwAAAAAAGAAAAAAAGAAAAAAGGAAAAAAEGAAAAAACYAAAAAADYAAAAAADXwAAAAABXwAAAAADXwAAAAABXwAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAMQAAAAABGAAAAAACGAAAAAABGAAAAAAHGAAAAAACYAAAAAABYAAAAAADXwAAAAABXwAAAAAAXwAAAAADXwAAAAADegAAAAAAOwAAAAAALgAAAAABLgAAAAAAOwAAAAAAMQAAAAABGAAAAAAEGAAAAAADGAAAAAAGGAAAAAABYAAAAAAAYAAAAAAAXwAAAAABXwAAAAACXwAAAAACXwAAAAABegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAMQAAAAABGAAAAAAEGAAAAAACGAAAAAAFGAAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAOwAAAAAALgAAAAABLgAAAAADOwAAAAAAMQAAAAAC version: 6 -2,1: ind: -2,1 - tiles: FAAAAAABFAAAAAAFFAAAAAAGFAAAAAAEFAAAAAABFAAAAAAAFAAAAAADFAAAAAACFAAAAAABFAAAAAACFAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAAEFAAAAAABFAAAAAABFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAGFAAAAAAEFAAAAAADBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAGFAAAAAAEFAAAAAABFAAAAAABFAAAAAABFAAAAAAEBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAMFAAAAAAGFAAAAAADFAAAAAAFFAAAAAAGFAAAAAAFFAAAAAABFAAAAAADFAAAAAAEFAAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAKBwAAAAAAFAAAAAAFFAAAAAACFAAAAAAFFAAAAAADFAAAAAABFAAAAAAEFAAAAAACFAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAFAAAAAAEFAAAAAAFFAAAAAADFAAAAAADFAAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAEBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAHBwAAAAAABwAAAAABBwAAAAAFBwAAAAAABwAAAAAKBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAMBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAABwAAAAAGBwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAJBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAJAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: FwAAAAAGFwAAAAADFwAAAAACFwAAAAAEFwAAAAADFwAAAAADFwAAAAADFwAAAAAAFwAAAAACFwAAAAAAFwAAAAAEBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAFwAAAAAFFwAAAAACFwAAAAAFFwAAAAAFFwAAAAAGFwAAAAADFwAAAAAGFwAAAAAGFwAAAAACFwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFwAAAAAGFwAAAAAFFwAAAAAGFwAAAAAFFwAAAAAGFwAAAAACFwAAAAACFwAAAAAGFwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFwAAAAABFwAAAAABFwAAAAACFwAAAAAFFwAAAAABFwAAAAAGFwAAAAAFFwAAAAABFwAAAAADBwAAAAABBwAAAAAABwAAAAAFBwAAAAACBwAAAAAABwAAAAAABwAAAAAAFwAAAAAAFwAAAAACFwAAAAAEFwAAAAACFwAAAAAGFwAAAAAFFwAAAAAAFwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAKBwAAAAAAFwAAAAAFFwAAAAAEFwAAAAAFFwAAAAABFwAAAAAFBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAIBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAACBwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,0: ind: -3,0 - tiles: XAAAAAAAXAAAAAADXAAAAAABXAAAAAABXAAAAAADXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAABSAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAAAXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAXAAAAAABXAAAAAABXAAAAAACXAAAAAABcQAAAAAAXAAAAAADXAAAAAABXAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASAAAAAAASAAAAAAASAAAAAAAXAAAAAACXAAAAAABXAAAAAACXAAAAAADcQAAAAAAXAAAAAADXAAAAAADXAAAAAADcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAXAAAAAACXAAAAAADXAAAAAAAXAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAXAAAAAACXAAAAAABXAAAAAADXAAAAAADcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAXAAAAAAAYgAAAAADXAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAXAAAAAAAYgAAAAAAYgAAAAACYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAXAAAAAABXAAAAAADXAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAFAAAAAAFFAAAAAAGcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFAAAAAACFAAAAAAAFAAAAAABFAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAFAAAAAACFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAC + tiles: ZQAAAAADZQAAAAADZQAAAAADZQAAAAADZQAAAAABZQAAAAACZQAAAAACZQAAAAABZQAAAAADZQAAAAACTgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAZQAAAAAAZQAAAAACZQAAAAABZQAAAAABZQAAAAACZQAAAAADZQAAAAACZQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAZQAAAAADZQAAAAAAZQAAAAACZQAAAAADegAAAAAAZQAAAAACZQAAAAAAZQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAATgAAAAAATgAAAAAATgAAAAAAZQAAAAADZQAAAAAAZQAAAAABZQAAAAAAegAAAAAAZQAAAAADZQAAAAACZQAAAAACegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZQAAAAAAZQAAAAABZQAAAAABZQAAAAADegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAZQAAAAACZQAAAAADZQAAAAACZQAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAZQAAAAABZQAAAAAAZQAAAAABZQAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAZQAAAAAAawAAAAACZQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAZQAAAAADawAAAAACawAAAAABaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAZQAAAAAAZQAAAAADZQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAFwAAAAADaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAFwAAAAABFwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAFwAAAAAEFwAAAAAEFwAAAAADFwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAACFwAAAAAFFwAAAAABFwAAAAAEFwAAAAAF version: 6 -2,-4: ind: -2,-4 - tiles: cQAAAAAABwAAAAAABwAAAAAAFAAAAAADFAAAAAADFAAAAAABFAAAAAABFAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACcQAAAAAASwAAAAAASwAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADSwAAAAAASwAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAcQAAAAAAbwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAADIAAAAAACIAAAAAABcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAcQAAAAAASAAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAIAAAAAAAIAAAAAADIAAAAAADcQAAAAAASAAAAAAARwAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAAARwAAAAAASAAAAAAAGwAAAAABGwAAAAAAGwAAAAACIAAAAAABIAAAAAABIAAAAAABcQAAAAAASAAAAAAARwAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAADRwAAAAACSAAAAAAAGwAAAAACGwAAAAABGwAAAAADIAAAAAABIAAAAAAAIAAAAAABGwAAAAAASAAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAAIAAAAAAAIAAAAAACIAAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAAASAAAAAAAcQAAAAAASAAAAAAAJAAAAAAASAAAAAAAcQAAAAAAbwAAAAAB + tiles: egAAAAAABwAAAAAABwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAEFwAAAAAEFwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAABegAAAAAAUQAAAAAAUQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAAAUQAAAAAAUQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAegAAAAAAeAAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAACIwAAAAAAIwAAAAABegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAIwAAAAABIwAAAAABIwAAAAADegAAAAAATgAAAAAATQAAAAADTQAAAAACTQAAAAACTQAAAAAATQAAAAADTQAAAAAATQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAIwAAAAADIwAAAAAAIwAAAAABegAAAAAATgAAAAAATQAAAAACIAAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAACTQAAAAACTgAAAAAAHgAAAAACHgAAAAADHgAAAAAAIwAAAAABIwAAAAAAIwAAAAADegAAAAAATgAAAAAATQAAAAABIAAAAAABIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADTQAAAAACTgAAAAAAHgAAAAADHgAAAAADHgAAAAACIwAAAAACIwAAAAACIwAAAAABHgAAAAACTgAAAAAATQAAAAADTQAAAAABTQAAAAACTQAAAAACTQAAAAAATQAAAAAATQAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAAIwAAAAADIwAAAAADIwAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAHgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAHgAAAAACegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATQAAAAABTQAAAAABTQAAAAADTQAAAAAATgAAAAAAegAAAAAATgAAAAAAJwAAAAACTgAAAAAAegAAAAAAeAAAAAAC version: 6 3,-2: ind: 3,-2 - tiles: HQAAAAACPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAABVAAAAAACVAAAAAADKwAAAAACVAAAAAACVAAAAAACVAAAAAABKwAAAAAAVAAAAAADXgAAAAACXgAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAADXgAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAACKwAAAAADVAAAAAACVAAAAAACVAAAAAADXgAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAABVAAAAAABVAAAAAACKwAAAAABVAAAAAAAVAAAAAAAVAAAAAADKwAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAASAAAAAAAVAAAAAADSAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAYgAAAAADcQAAAAAAVwAAAAABVwAAAAABVwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAABcQAAAAAAWQAAAAAAcQAAAAAAVwAAAAABVwAAAAAAVwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABcQAAAAAAWQAAAAAAcQAAAAAAVwAAAAACVwAAAAACVwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAAAWQAAAAAAVAAAAAACcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAYgAAAAADVAAAAAACVAAAAAADVAAAAAADcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADWQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: IAAAAAADQQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAATgAAAAAAeAAAAAADeAAAAAADeAAAAAABTgAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAeAAAAAACTgAAAAAAeAAAAAAATgAAAAAATgAAAAAAZwAAAAACZwAAAAADZwAAAAACZwAAAAAAZwAAAAABZwAAAAADZwAAAAABZwAAAAACWgAAAAADWgAAAAAALgAAAAAAWgAAAAADWgAAAAABWgAAAAABLgAAAAACWgAAAAAAZwAAAAABZwAAAAABZwAAAAACZwAAAAAAZwAAAAADZwAAAAACZwAAAAABZwAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAADLgAAAAAAWgAAAAACWgAAAAABWgAAAAAAZwAAAAACZwAAAAAAZwAAAAADZwAAAAABZwAAAAAAZwAAAAAAZwAAAAACZwAAAAAAWgAAAAADWgAAAAABLgAAAAACWgAAAAAAWgAAAAADWgAAAAADLgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAegAAAAAATgAAAAAAWgAAAAACTgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAABWgAAAAADegAAAAAAawAAAAACegAAAAAAXwAAAAAAXwAAAAADXwAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADWgAAAAACegAAAAAAYQAAAAAAegAAAAAAXwAAAAABXwAAAAACXwAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAAAegAAAAAAYQAAAAAAegAAAAAAXwAAAAACXwAAAAABXwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAACWgAAAAABWgAAAAAAWgAAAAADegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAWgAAAAACWgAAAAACWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAWgAAAAABWgAAAAADYQAAAAAAWgAAAAACegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAawAAAAACWgAAAAACWgAAAAABWgAAAAACegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAABYQAAAAAAegAAAAAAWgAAAAADegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: VAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAKwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAADZAAAAAABcQAAAAAAKwAAAAACcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZAAAAAACVAAAAAABKwAAAAADcQAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAACGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAABcQAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAAAGwAAAAACGwAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAABGwAAAAAAGwAAAAADGwAAAAACcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACKwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAKwAAAAADcQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAASAAAAAAAGwAAAAAAGwAAAAABGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHAAAAAABHAAAAAACHAAAAAABGwAAAAABGwAAAAADGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAXgAAAAAAWgAAAAADcQAAAAAAHAAAAAABHAAAAAADHAAAAAAASAAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAABGwAAAAABcQAAAAAAPgAAAAAAHQAAAAAAPgAAAAAAXgAAAAAAXwAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAABGwAAAAACGwAAAAABcQAAAAAAPgAAAAAAHQAAAAADPgAAAAAAXgAAAAADXwAAAAADHAAAAAACHAAAAAADHAAAAAAAHAAAAAADGwAAAAABGwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAACGwAAAAADHQAAAAADHQAAAAADHQAAAAAA + tiles: WgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAADWgAAAAADWgAAAAABWgAAAAABWgAAAAABWgAAAAADWgAAAAACWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAABWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAABWgAAAAACWgAAAAADWgAAAAAAWgAAAAADWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACLgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAAAbQAAAAADegAAAAAALgAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAACbQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAADWgAAAAABLgAAAAABegAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAADegAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAADegAAAAAAQQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAABHgAAAAACHgAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABLgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAegAAAAAALgAAAAACegAAAAAAHwAAAAADHwAAAAAAHwAAAAABTgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHwAAAAAAHwAAAAABHwAAAAADHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAAAHgAAAAADegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAZwAAAAACYgAAAAAAegAAAAAAHwAAAAABHwAAAAAAHwAAAAACTgAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAACegAAAAAAQQAAAAAAIAAAAAAAQQAAAAAAZwAAAAAAaAAAAAADHwAAAAADHwAAAAABHwAAAAADHwAAAAADHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAADegAAAAAAQQAAAAAAIAAAAAACQQAAAAAAZwAAAAACaAAAAAABHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHgAAAAADHgAAAAABHgAAAAABHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABIAAAAAACIAAAAAAAIAAAAAAC version: 6 3,-3: ind: 3,-3 - tiles: VAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAACKwAAAAAAVAAAAAAAVAAAAAABVAAAAAADKwAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABKwAAAAACVAAAAAACVAAAAAADVAAAAAABKwAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAKwAAAAABVAAAAAAAVAAAAAABVAAAAAABKwAAAAABVAAAAAACVAAAAAACZAAAAAACSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAZAAAAAABZAAAAAADZAAAAAABZAAAAAABZAAAAAADZAAAAAAAZAAAAAABZAAAAAACcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAZAAAAAACZAAAAAAAZAAAAAABZAAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAACcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAACZAAAAAAAZAAAAAABZAAAAAADZAAAAAADZAAAAAADZAAAAAABZAAAAAAAZAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WgAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAACWgAAAAADWgAAAAADWgAAAAADWgAAAAACLgAAAAACWgAAAAACWgAAAAABWgAAAAADLgAAAAACWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAACWgAAAAABWgAAAAADLgAAAAACWgAAAAAAWgAAAAADWgAAAAACLgAAAAACWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAAALgAAAAACWgAAAAADWgAAAAABWgAAAAADLgAAAAACWgAAAAABWgAAAAADbQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAABWgAAAAADWgAAAAABWgAAAAACWgAAAAAAbQAAAAACbQAAAAADbQAAAAAAbQAAAAABbQAAAAABbQAAAAACbQAAAAAAbQAAAAABegAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAbQAAAAADbQAAAAADbQAAAAADbQAAAAABbQAAAAABbQAAAAABbQAAAAABbQAAAAADegAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAADbQAAAAADbQAAAAAAbQAAAAADbQAAAAAAbQAAAAACbQAAAAADbQAAAAAAbQAAAAADegAAAAAAWgAAAAADWgAAAAACWgAAAAADWgAAAAADWgAAAAADWgAAAAACWgAAAAAAbQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAABegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAABWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAQQAAAAAAQQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAADeAAAAAAAeAAAAAADeAAAAAAAeAAAAAABeAAAAAABeAAAAAADIAAAAAABQQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAADeAAAAAAAeAAAAAACeAAAAAADeAAAAAADeAAAAAADeAAAAAABIAAAAAAAQQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAADeAAAAAADeAAAAAAAeAAAAAAAeAAAAAADeAAAAAAAeAAAAAACIAAAAAACQQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAADeAAAAAABeAAAAAACegAAAAAAegAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: XAAAAAADXAAAAAACYAAAAAAAYAAAAAAAYAAAAAAASAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAZAAAAAABZAAAAAABXAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAcQAAAAAAZAAAAAADZAAAAAADZAAAAAACZAAAAAADZAAAAAAAZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZAAAAAABZAAAAAADZAAAAAAAZAAAAAACZAAAAAACOgAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAOgAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAZAAAAAABZAAAAAACZAAAAAABZAAAAAAAcQAAAAAAZAAAAAACOgAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAZAAAAAADZAAAAAADZAAAAAACZAAAAAADSAAAAAAAZAAAAAADOgAAAAAAOgAAAAAAVAAAAAACVAAAAAADVAAAAAADcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAZAAAAAACZAAAAAADZAAAAAABZAAAAAAASAAAAAAAZAAAAAABOgAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAABZAAAAAACZAAAAAACZAAAAAABZAAAAAACZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAZAAAAAADZAAAAAABZAAAAAADZAAAAAAASAAAAAAAZAAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAZAAAAAACZAAAAAACZAAAAAABZAAAAAADZAAAAAABZAAAAAADZAAAAAABKgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAADgAAAAAADgAAAAAAcQAAAAAADgAAAAAAcQAAAAAAZAAAAAACKgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAADgAAAAAADgAAAAAAcQAAAAAADgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAADgAAAAAADgAAAAAAcQAAAAAADgAAAAAADgAAAAAAZAAAAAABcQAAAAAABwAAAAAJBwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAABwAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAZAAAAAABPgAAAAAABwAAAAAABwAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAABwAAAAAABwAAAAAAcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAD + tiles: ZQAAAAAAZQAAAAACaQAAAAAAaQAAAAAAaQAAAAAATgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAegAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAbQAAAAACbQAAAAACZQAAAAABegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAABwAAAAAABwAAAAAAAAAAAAAAegAAAAAAbQAAAAACbQAAAAACbQAAAAAAbQAAAAACbQAAAAADbQAAAAACegAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAbQAAAAACbQAAAAADbQAAAAABbQAAAAACbQAAAAADbQAAAAABPQAAAAAAegAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAPQAAAAAAegAAAAAAegAAAAAAWgAAAAACegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAbQAAAAAAbQAAAAAAbQAAAAABbQAAAAADbQAAAAABegAAAAAAbQAAAAADPQAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAbQAAAAACbQAAAAABbQAAAAAAbQAAAAACbQAAAAAATgAAAAAAbQAAAAAAPQAAAAAAPQAAAAAAWgAAAAACWgAAAAAAWgAAAAADegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAbQAAAAABbQAAAAABbQAAAAABbQAAAAAAbQAAAAADTgAAAAAAbQAAAAADPQAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAAAbQAAAAADbQAAAAABbQAAAAABbQAAAAAAbQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAbQAAAAADbQAAAAACbQAAAAAAbQAAAAABTgAAAAAAbQAAAAABLQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAbQAAAAADbQAAAAACbQAAAAACbQAAAAABbQAAAAADbQAAAAADbQAAAAAALQAAAAAAegAAAAAAfQAAAAABegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAEQAAAAAAEQAAAAAAegAAAAAAEQAAAAAAegAAAAAAbQAAAAACLQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAEQAAAAAAEQAAAAAAegAAAAAAEQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAEQAAAAAAEQAAAAAAegAAAAAAEQAAAAAAEQAAAAAAbQAAAAACegAAAAAABwAAAAAABwAAAAAFQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAABwAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAbQAAAAACQQAAAAAABwAAAAAABwAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAegAAAAAABwAAAAAABwAAAAAAegAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAAB version: 6 -2,-3: ind: -2,-3 - tiles: SAAAAAAARwAAAAACSAAAAAAAcQAAAAAASAAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAACSAAAAAAAcQAAAAAASAAAAAAAJAAAAAAASAAAAAAAcQAAAAAAbwAAAAAASAAAAAAARwAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAJAAAAAACcQAAAAAAcQAAAAAAbwAAAAABSAAAAAAARwAAAAADSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAJAAAAAADcQAAAAAAbwAAAAABbwAAAAACSAAAAAAASAAAAAAASAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYgAAAAAAYgAAAAABcQAAAAAASAAAAAAAJAAAAAADGwAAAAABbwAAAAADbwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYgAAAAABcQAAAAAASAAAAAAAJAAAAAABcQAAAAAAbwAAAAABbwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAbwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAbwAAAAADbwAAAAADVAAAAAABVAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAACcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAASAAAAAAAcQAAAAAASAAAAAAAVAAAAAABSAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAbwAAAAAAbwAAAAADbwAAAAAAbwAAAAABbwAAAAAAbwAAAAACcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAbwAAAAADbwAAAAACcQAAAAAAbwAAAAACbwAAAAACbwAAAAABbwAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAACbwAAAAADbwAAAAABcQAAAAAAVAAAAAAAVAAAAAACSAAAAAAASAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACcQAAAAAAbwAAAAABbwAAAAABcQAAAAAAbwAAAAABbwAAAAABbwAAAAABcQAAAAAAFQAAAAADFQAAAAACFQAAAAAHFQAAAAACcQAAAAAAVAAAAAADVAAAAAABVAAAAAABcQAAAAAAbwAAAAABbwAAAAAAbwAAAAAAbwAAAAACbwAAAAAAbwAAAAAAcQAAAAAAFQAAAAABFQAAAAAGFQAAAAADFQAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAADcQAAAAAAcQAAAAAA + tiles: TgAAAAAATQAAAAAATgAAAAAAegAAAAAATgAAAAAATQAAAAACTQAAAAADTQAAAAABTQAAAAADTgAAAAAAegAAAAAATgAAAAAAJwAAAAADTgAAAAAAegAAAAAAeAAAAAABTgAAAAAATQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAJwAAAAABegAAAAAAegAAAAAAeAAAAAACTgAAAAAATQAAAAABTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAJwAAAAADegAAAAAAeAAAAAADeAAAAAACTgAAAAAATgAAAAAATgAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAawAAAAADawAAAAABegAAAAAATgAAAAAAJwAAAAADHgAAAAACeAAAAAABeAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAawAAAAAAegAAAAAATgAAAAAAJwAAAAAAegAAAAAAeAAAAAADeAAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABegAAAAAAegAAAAAAeAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeAAAAAADeAAAAAAAWgAAAAABWgAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAADegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAACegAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAACegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAATgAAAAAAegAAAAAATgAAAAAAWgAAAAADTgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAACegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAABegAAAAAAeAAAAAAAeAAAAAAAeAAAAAADeAAAAAACeAAAAAAAeAAAAAACegAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAAAWgAAAAADWgAAAAADegAAAAAAeAAAAAACeAAAAAABegAAAAAAeAAAAAADeAAAAAAAeAAAAAAAeAAAAAACWgAAAAADWgAAAAABWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAACeAAAAAADeAAAAAACegAAAAAAWgAAAAABWgAAAAADTgAAAAAATgAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAADegAAAAAAeAAAAAACeAAAAAADegAAAAAAeAAAAAAAeAAAAAAAeAAAAAADegAAAAAAGAAAAAAHGAAAAAACGAAAAAABGAAAAAADegAAAAAAWgAAAAADWgAAAAABWgAAAAACegAAAAAAeAAAAAACeAAAAAACeAAAAAAAeAAAAAADeAAAAAAAeAAAAAABegAAAAAAGAAAAAABGAAAAAAEGAAAAAADGAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAAAegAAAAAAegAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: bwAAAAACbwAAAAACbwAAAAADbwAAAAABbwAAAAACbwAAAAADbwAAAAADbwAAAAABbwAAAAAAbwAAAAADbwAAAAABbwAAAAABcQAAAAAAXwAAAAADXwAAAAABVAAAAAAAbwAAAAAAbwAAAAAAbwAAAAADbwAAAAACbwAAAAACbwAAAAABbwAAAAAAbwAAAAAAbwAAAAACbwAAAAADbwAAAAABbwAAAAAASAAAAAAAXwAAAAABXwAAAAACVAAAAAADbwAAAAACbwAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAABbwAAAAADbwAAAAACbwAAAAABbwAAAAADbwAAAAADSAAAAAAAXwAAAAACXwAAAAACVAAAAAABbwAAAAAAbwAAAAABbwAAAAAAbwAAAAABbwAAAAAAbwAAAAACbwAAAAADbwAAAAADbwAAAAAAbwAAAAABbwAAAAAAbwAAAAAAbwAAAAAAXwAAAAADXwAAAAABVAAAAAACbwAAAAABbwAAAAABbwAAAAADbwAAAAABbwAAAAAAbwAAAAAAbwAAAAACbwAAAAACbwAAAAADbwAAAAAAbwAAAAADbwAAAAADSAAAAAAAXwAAAAACXwAAAAACVAAAAAABbwAAAAABbwAAAAACbwAAAAADbwAAAAABbwAAAAACbwAAAAAAbwAAAAADbwAAAAACbwAAAAABbwAAAAADbwAAAAACbwAAAAAASAAAAAAAXwAAAAACXwAAAAADVAAAAAADbwAAAAAAbwAAAAADbwAAAAAAbwAAAAACbwAAAAADbwAAAAACbwAAAAABbwAAAAABbwAAAAABbwAAAAABbwAAAAABbwAAAAACcQAAAAAAXwAAAAADXwAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAABRwAAAAADRwAAAAABRwAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABRwAAAAADRwAAAAADRwAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAACSAAAAAAASAAAAAAASAAAAAAASAAAAAAAIAAAAAABIAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAADIAAAAAADIAAAAAADDAAAAAACDAAAAAABDAAAAAADDAAAAAACDAAAAAADDAAAAAADcQAAAAAAXAAAAAADcQAAAAAAXAAAAAACbgAAAAACbgAAAAAAbgAAAAABbgAAAAACIAAAAAACIAAAAAABDAAAAAAADAAAAAACDAAAAAABDAAAAAACDAAAAAACDAAAAAACcQAAAAAAXAAAAAACcQAAAAAAXAAAAAABbgAAAAACbgAAAAACbgAAAAAAbgAAAAACIAAAAAADIAAAAAACDAAAAAADDAAAAAADDAAAAAADDAAAAAADDAAAAAABDAAAAAADXAAAAAAAXAAAAAACXAAAAAADXAAAAAAC + tiles: eAAAAAABeAAAAAABeAAAAAADeAAAAAACeAAAAAABeAAAAAACeAAAAAADeAAAAAAAeAAAAAABeAAAAAABeAAAAAACeAAAAAADegAAAAAAaAAAAAABaAAAAAAAWgAAAAACeAAAAAADeAAAAAAAeAAAAAADeAAAAAACeAAAAAACeAAAAAADeAAAAAADeAAAAAACeAAAAAAAeAAAAAACeAAAAAAAeAAAAAADTgAAAAAAaAAAAAABaAAAAAABWgAAAAAAeAAAAAAAeAAAAAADeAAAAAAAeAAAAAAAeAAAAAABeAAAAAACeAAAAAAAeAAAAAADeAAAAAADeAAAAAABeAAAAAAAeAAAAAADTgAAAAAAaAAAAAACaAAAAAADWgAAAAACeAAAAAACeAAAAAABeAAAAAAAeAAAAAACeAAAAAADeAAAAAACeAAAAAAAeAAAAAADeAAAAAADeAAAAAAAeAAAAAACeAAAAAACeAAAAAACaAAAAAAAaAAAAAADWgAAAAAAeAAAAAADeAAAAAADeAAAAAADeAAAAAADeAAAAAABeAAAAAADeAAAAAAAeAAAAAABeAAAAAADeAAAAAACeAAAAAAAeAAAAAACTgAAAAAAaAAAAAABaAAAAAACWgAAAAAAeAAAAAACeAAAAAAAeAAAAAACeAAAAAADeAAAAAABeAAAAAACeAAAAAABeAAAAAAAeAAAAAADeAAAAAABeAAAAAABeAAAAAADTgAAAAAAaAAAAAABaAAAAAADWgAAAAAAeAAAAAAAeAAAAAACeAAAAAAAeAAAAAABeAAAAAACeAAAAAACeAAAAAAAeAAAAAACeAAAAAAAeAAAAAABeAAAAAABeAAAAAAAegAAAAAAaAAAAAACaAAAAAACWgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAADegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAABWgAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAADWgAAAAABTQAAAAAATQAAAAABTQAAAAACWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAATQAAAAABTQAAAAADTQAAAAABWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAACWgAAAAADWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAADWgAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAAIwAAAAAAIwAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAADdwAAAAADdwAAAAACdwAAAAADIwAAAAADIwAAAAACDgAAAAAADgAAAAACDgAAAAACDgAAAAADDgAAAAADDgAAAAADegAAAAAAZQAAAAABegAAAAAAZQAAAAAAdwAAAAADdwAAAAABdwAAAAACdwAAAAACIwAAAAACIwAAAAABDgAAAAACDgAAAAACDgAAAAAADgAAAAABDgAAAAADDgAAAAADegAAAAAAZQAAAAABegAAAAAAZQAAAAABdwAAAAAAdwAAAAABdwAAAAABdwAAAAAAIwAAAAABIwAAAAAADgAAAAADDgAAAAADDgAAAAADDgAAAAAADgAAAAABDgAAAAABZQAAAAAAZQAAAAABZQAAAAABZQAAAAAC version: 6 0,-3: ind: 0,-3 - tiles: VAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAADLgAAAAACLgAAAAABLgAAAAACLgAAAAACLgAAAAABLgAAAAAALgAAAAACLgAAAAABLgAAAAAALgAAAAACLgAAAAADLgAAAAABLgAAAAADVAAAAAABVAAAAAACVAAAAAAALgAAAAACLgAAAAACLgAAAAABLgAAAAAALgAAAAACLgAAAAAALgAAAAACLgAAAAABLgAAAAACLgAAAAACLgAAAAACLgAAAAAALgAAAAACVAAAAAACVAAAAAADVAAAAAACLgAAAAADLgAAAAABLgAAAAABLgAAAAACLgAAAAADLgAAAAAALgAAAAADLgAAAAADLgAAAAABLgAAAAABLgAAAAAALgAAAAACLgAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAABcQAAAAAAZAAAAAAAZAAAAAACZAAAAAABZAAAAAAAZAAAAAADSAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAABVAAAAAAAVAAAAAACcQAAAAAAZAAAAAABZAAAAAADZAAAAAADZAAAAAADZAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAABVAAAAAADVAAAAAACcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAACZAAAAAAAZAAAAAAASAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAABVAAAAAAAVAAAAAACcQAAAAAAZAAAAAADZAAAAAADZAAAAAADZAAAAAACZAAAAAACSAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAACZAAAAAACZAAAAAAAZAAAAAACZAAAAAAAZAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAZAAAAAACZAAAAAACcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAZAAAAAAAZAAAAAAA + tiles: WgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAACWgAAAAADWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAABWgAAAAABWgAAAAACWgAAAAADWgAAAAACWgAAAAADWgAAAAABWgAAAAADWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAABWgAAAAACWgAAAAABWgAAAAABWgAAAAABWgAAAAACWgAAAAABMQAAAAADMQAAAAAAMQAAAAAAMQAAAAABMQAAAAACMQAAAAADMQAAAAACMQAAAAABMQAAAAADMQAAAAABMQAAAAADMQAAAAADMQAAAAABWgAAAAABWgAAAAADWgAAAAAAMQAAAAADMQAAAAAAMQAAAAACMQAAAAAAMQAAAAADMQAAAAABMQAAAAAAMQAAAAADMQAAAAADMQAAAAAAMQAAAAADMQAAAAADMQAAAAACWgAAAAACWgAAAAACWgAAAAACMQAAAAABMQAAAAADMQAAAAAAMQAAAAAAMQAAAAADMQAAAAACMQAAAAAAMQAAAAADMQAAAAAAMQAAAAADMQAAAAABMQAAAAADMQAAAAADWgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAADWgAAAAABWgAAAAACWgAAAAABWgAAAAADWgAAAAACWgAAAAABWgAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAADWgAAAAADWgAAAAACWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABegAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAABegAAAAAAbQAAAAABbQAAAAAAbQAAAAABbQAAAAABbQAAAAACTgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWgAAAAAAWgAAAAADWgAAAAADegAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAAAbQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWgAAAAADWgAAAAABWgAAAAACegAAAAAAbQAAAAACbQAAAAACbQAAAAABbQAAAAAAbQAAAAACTgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAbQAAAAACbQAAAAADbQAAAAACbQAAAAADbQAAAAADTgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAABbQAAAAACegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAbQAAAAADbQAAAAADegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAbQAAAAAAbQAAAAAB version: 6 1,-3: ind: 1,-3 - tiles: VAAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAAALgAAAAACLgAAAAADLgAAAAAALgAAAAADLgAAAAAALgAAAAABLgAAAAAALgAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAADLgAAAAABLgAAAAADLgAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAADLgAAAAABVAAAAAACVAAAAAABSwAAAAAASwAAAAAASwAAAAAAVAAAAAADVAAAAAADVAAAAAADLgAAAAACLgAAAAAALgAAAAADLgAAAAACLgAAAAADLgAAAAACLgAAAAAALgAAAAAAVAAAAAAAVAAAAAACSwAAAAAASwAAAAAASwAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAADVAAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAXwAAAAABXwAAAAAASAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAACSAAAAAAAXwAAAAADXwAAAAADXwAAAAAAXwAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAABGwAAAAADXwAAAAACXwAAAAABXwAAAAABXwAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAAAGwAAAAAASAAAAAAAXwAAAAACXwAAAAAAXwAAAAACXwAAAAAAVAAAAAADcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAXwAAAAADXwAAAAADXwAAAAAAXwAAAAAAZAAAAAADcQAAAAAAZAAAAAACZAAAAAADZAAAAAABZAAAAAADZAAAAAADcQAAAAAAGwAAAAADGwAAAAACGwAAAAADSAAAAAAAXwAAAAACXwAAAAACXwAAAAACWgAAAAAAZAAAAAABZAAAAAACZAAAAAADZAAAAAACZAAAAAACZAAAAAADZAAAAAADGwAAAAAAGwAAAAAAGwAAAAACGwAAAAABSAAAAAAAXwAAAAAAXwAAAAABXwAAAAAAXwAAAAAAZAAAAAAAcQAAAAAAZAAAAAABZAAAAAAAZAAAAAACZAAAAAAAZAAAAAABcQAAAAAAGwAAAAADGwAAAAADGwAAAAABSAAAAAAAWgAAAAAAXgAAAAABXgAAAAADWgAAAAAA + tiles: WgAAAAACWgAAAAABWgAAAAADWgAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAABWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACMQAAAAACMQAAAAABMQAAAAABMQAAAAACMQAAAAAAMQAAAAAAMQAAAAABMQAAAAADWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAABWgAAAAACWgAAAAABMQAAAAADMQAAAAADMQAAAAABMQAAAAADMQAAAAACMQAAAAABMQAAAAABMQAAAAACWgAAAAACWgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAWgAAAAADWgAAAAAAWgAAAAACMQAAAAADMQAAAAACMQAAAAAAMQAAAAADMQAAAAACMQAAAAADMQAAAAACMQAAAAABWgAAAAACWgAAAAABUQAAAAAAUQAAAAAAUQAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAADWgAAAAACWgAAAAABWgAAAAABWgAAAAADWgAAAAABWgAAAAAAWgAAAAABWgAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAADWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAACWgAAAAACWgAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAaAAAAAADaAAAAAADTgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAegAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHgAAAAACTgAAAAAAaAAAAAACaAAAAAABaAAAAAACaAAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAACaAAAAAAAaAAAAAADaAAAAAADaAAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAABTgAAAAAAaAAAAAACaAAAAAAAaAAAAAABaAAAAAADWgAAAAABegAAAAAAegAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAADegAAAAAAaAAAAAABaAAAAAAAaAAAAAACaAAAAAAAbQAAAAAAegAAAAAAbQAAAAAAbQAAAAACbQAAAAACbQAAAAAAbQAAAAAAegAAAAAAHgAAAAACHgAAAAADHgAAAAACTgAAAAAAaAAAAAADaAAAAAAAaAAAAAADYgAAAAACbQAAAAAAbQAAAAABbQAAAAABbQAAAAAAbQAAAAACbQAAAAAAbQAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAACTgAAAAAAaAAAAAACaAAAAAAAaAAAAAABaAAAAAAAbQAAAAADegAAAAAAbQAAAAADbQAAAAABbQAAAAABbQAAAAABbQAAAAACegAAAAAAHgAAAAADHgAAAAAAHgAAAAADTgAAAAAAYgAAAAAAZwAAAAAAZwAAAAACYgAAAAAB version: 6 0,2: ind: 0,2 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADPgAAAAAAPgAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAAAPgAAAAAAPgAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAADPgAAAAAAPgAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAABPgAAAAAAPgAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADPgAAAAAAPgAAAAAAcQAAAAAASAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAABPgAAAAAAPgAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAACWgAAAAACWgAAAAABWgAAAAADWgAAAAAAWgAAAAAAWgAAAAABQQAAAAAAQQAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAABWgAAAAABWgAAAAABWgAAAAACQQAAAAAAQQAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAABQQAAAAAAQQAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAADQQAAAAAAQQAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAQQAAAAAAQQAAAAAAegAAAAAATgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAABWgAAAAABQQAAAAAAQQAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,2: ind: 1,2 - tiles: VAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAADcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAPgAAAAAAPgAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: WgAAAAACWgAAAAABWgAAAAABWgAAAAADWgAAAAACWgAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAABegAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAACWgAAAAACWgAAAAADegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAABWgAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAABWgAAAAABegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAADWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAQQAAAAAAQQAAAAAAegAAAAAAQQAAAAAAQQAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 2,2: ind: 2,2 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA version: 6 -1,2: ind: -1,2 - tiles: cAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAA + tiles: eQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAeQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAeQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAA version: 6 0,3: ind: 0,3 - tiles: cQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: egAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,3: ind: -1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFQAAAAAAFQAAAAABFQAAAAABFQAAAAAGFQAAAAAGcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAXAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAWQAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAbgAAAAAAcQAAAAAAbgAAAAABcQAAAAAAbgAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASwAAAAAASwAAAAAAVAAAAAADVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASwAAAAAASwAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAACYgAAAAADYgAAAAABVAAAAAACXAAAAAABXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAAASAAAAAAASAAAAAAAXAAAAAABYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAXAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAACXAAAAAADXAAAAAADXAAAAAABXAAAAAABXAAAAAABXAAAAAADXAAAAAADXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAABXAAAAAACXAAAAAADXAAAAAADXAAAAAADXAAAAAABXAAAAAADXAAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAABXAAAAAADXAAAAAAAXAAAAAACSAAAAAAASAAAAAAASAAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAGAAAAAAAGAAAAAADGAAAAAAFGAAAAAAGGAAAAAAFegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAZQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAaQAAAAAAegAAAAAAQQAAAAAAegAAAAAAdwAAAAABdwAAAAADdwAAAAADdwAAAAABdwAAAAADegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAYQAAAAAAaQAAAAAAegAAAAAAQQAAAAAAegAAAAAAdwAAAAAAegAAAAAAdwAAAAACegAAAAAAdwAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAUQAAAAAAUQAAAAAAWgAAAAABWgAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAUQAAAAAAUQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACawAAAAACawAAAAADWgAAAAABZQAAAAABZQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAADTgAAAAAATgAAAAAAZQAAAAADaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAZQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZQAAAAADZQAAAAAAZQAAAAACZQAAAAADZQAAAAACZQAAAAABZQAAAAACZQAAAAACZQAAAAABZQAAAAADZQAAAAABZQAAAAAAZQAAAAACZQAAAAAAZQAAAAACZQAAAAAAZQAAAAAAZQAAAAABZQAAAAACZQAAAAAAZQAAAAADZQAAAAACZQAAAAAAZQAAAAACZQAAAAADZQAAAAABZQAAAAABZQAAAAABZQAAAAABZQAAAAAATgAAAAAATgAAAAAATgAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: cQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAEwAAAAAAcQAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAEwAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAEwAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAXwAAAAABXwAAAAABXwAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAACSAAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAABXwAAAAACXwAAAAACXwAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAACSAAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAABGwAAAAACGwAAAAAAXwAAAAACXwAAAAACXwAAAAAASwAAAAAASwAAAAAASwAAAAAAVAAAAAABVAAAAAACVAAAAAACcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAXwAAAAAAXwAAAAABXwAAAAABSwAAAAAASwAAAAAASwAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAACSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXwAAAAAAXwAAAAABXwAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAbwAAAAABbwAAAAADbwAAAAAAbwAAAAAAXwAAAAABXwAAAAACXwAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAACbwAAAAACbwAAAAAAbwAAAAABbwAAAAAAbwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAC + tiles: egAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAFgAAAAAAegAAAAAAFgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAFgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACegAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAFgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAACaAAAAAADaAAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAABWgAAAAADWgAAAAADTgAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAaAAAAAACaAAAAAABaAAAAAACWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAADTgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAABHgAAAAABHgAAAAACaAAAAAAAaAAAAAAAaAAAAAACUQAAAAAAUQAAAAAAUQAAAAAAWgAAAAABWgAAAAABWgAAAAABegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAACaAAAAAADUQAAAAAAUQAAAAAAUQAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAABTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaAAAAAABaAAAAAACaAAAAAABWgAAAAACWgAAAAABWgAAAAADWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABegAAAAAAegAAAAAAeAAAAAACeAAAAAACeAAAAAAAeAAAAAABaAAAAAAAaAAAAAADaAAAAAABWgAAAAADWgAAAAADWgAAAAABWgAAAAADWgAAAAADWgAAAAAAWgAAAAACeAAAAAACeAAAAAABeAAAAAAAeAAAAAAAeAAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAD version: 6 0,-4: ind: 0,-4 - tiles: YAAAAAAAGwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAABGwAAAAADcQAAAAAAcQAAAAAAIQAAAAAAGwAAAAAAGwAAAAADGwAAAAAAIQAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAABGwAAAAABGwAAAAABGwAAAAABGwAAAAAAGwAAAAADcQAAAAAAIQAAAAAAGwAAAAADGwAAAAADGwAAAAABIQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAADIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAbgAAAAACbgAAAAAAbgAAAAADcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAGwAAAAADcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAADcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAGwAAAAACcQAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAAAGwAAAAADcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAABcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAGwAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAACGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACcQAAAAAAGwAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAABcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAADbgAAAAABcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAACGwAAAAABcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAAAbgAAAAACGwAAAAABGwAAAAADGwAAAAADGwAAAAADGwAAAAADGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAbgAAAAACcQAAAAAAcQAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAABGwAAAAABGwAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAAAGwAAAAACcQAAAAAAbgAAAAACbgAAAAACcQAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAADbgAAAAACcQAAAAAAcQAAAAAASAAAAAAAGwAAAAACSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAADbgAAAAADbgAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAAAbgAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAAAbgAAAAADbgAAAAACbgAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAADbgAAAAAAbgAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAbgAAAAAASAAAAAAAcQAAAAAA + tiles: aQAAAAAAHgAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAABHgAAAAAAegAAAAAAegAAAAAAJAAAAAAAHgAAAAACHgAAAAACHgAAAAACJAAAAAAAegAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHgAAAAACegAAAAAAJAAAAAAAHgAAAAADHgAAAAAAHgAAAAAAJAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAegAAAAAAdwAAAAACdwAAAAAAdwAAAAAAegAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHgAAAAAAegAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAADdwAAAAACegAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHgAAAAAAegAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAABHgAAAAACegAAAAAAdwAAAAADdwAAAAABdwAAAAACegAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHgAAAAABegAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAABHgAAAAABegAAAAAAegAAAAAAegAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAABegAAAAAAHgAAAAABegAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAACHgAAAAAAegAAAAAAdwAAAAADdwAAAAAAdwAAAAABegAAAAAAdwAAAAADdwAAAAAAdwAAAAAAdwAAAAABegAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAABegAAAAAAdwAAAAABdwAAAAADdwAAAAABdwAAAAADdwAAAAAAdwAAAAADdwAAAAADdwAAAAADHgAAAAABHgAAAAABHgAAAAABHgAAAAACHgAAAAADHgAAAAADHgAAAAADegAAAAAAegAAAAAAdwAAAAABegAAAAAAegAAAAAAdwAAAAABdwAAAAACdwAAAAACdwAAAAACHgAAAAADHgAAAAADHgAAAAABHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADegAAAAAAdwAAAAAAdwAAAAAAegAAAAAAdwAAAAACdwAAAAABdwAAAAACdwAAAAADdwAAAAAAegAAAAAAegAAAAAATgAAAAAAHgAAAAACTgAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAADdwAAAAABdwAAAAAAdwAAAAAAdwAAAAACdwAAAAABdwAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAABWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAABdwAAAAACdwAAAAAAdwAAAAACWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADegAAAAAAdwAAAAABdwAAAAADdwAAAAABdwAAAAAAdwAAAAACdwAAAAADdwAAAAABdwAAAAACWgAAAAABWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAegAAAAAAdwAAAAABdwAAAAAAdwAAAAACdwAAAAADdwAAAAADdwAAAAAAdwAAAAACdwAAAAADWgAAAAADWgAAAAAAWgAAAAACWgAAAAABWgAAAAACWgAAAAADWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAdwAAAAACTgAAAAAAegAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: GwAAAAABGwAAAAADGwAAAAADGwAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAABGwAAAAACGwAAAAAAGwAAAAACGwAAAAAAGwAAAAACcQAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAAAGwAAAAADGwAAAAADGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAABHwAAAAAAGwAAAAACGwAAAAABcQAAAAAAbwAAAAABbwAAAAABbwAAAAADbwAAAAABbwAAAAACbwAAAAAAbwAAAAABbwAAAAACSgAAAAAAcQAAAAAAGwAAAAACGwAAAAAAHwAAAAAAGwAAAAADGwAAAAAAcQAAAAAAbwAAAAAAbwAAAAADbwAAAAACbwAAAAAAbwAAAAAAbwAAAAABbwAAAAACbwAAAAABSgAAAAAAcQAAAAAAGwAAAAADGwAAAAABHwAAAAABGwAAAAADGwAAAAAAcQAAAAAAbwAAAAAAbwAAAAABbwAAAAACbwAAAAACbwAAAAADbwAAAAACbwAAAAABbwAAAAABSgAAAAAAcQAAAAAAGwAAAAACGwAAAAABHwAAAAACGwAAAAABGwAAAAACcQAAAAAAbwAAAAADbwAAAAABbwAAAAAAbwAAAAAAbwAAAAADbwAAAAABbwAAAAAAbwAAAAABcQAAAAAAcQAAAAAAGwAAAAABGwAAAAABHwAAAAADGwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAbwAAAAAAbwAAAAABbwAAAAABbgAAAAACcQAAAAAAGwAAAAADGwAAAAACHwAAAAABGwAAAAACGwAAAAADcQAAAAAAGwAAAAADGwAAAAAAGwAAAAACcQAAAAAAbwAAAAADbwAAAAADbwAAAAACbwAAAAADbgAAAAAAbgAAAAACGwAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAADGwAAAAACGwAAAAABHwAAAAADGwAAAAACcQAAAAAAbwAAAAADbwAAAAACbwAAAAAAbwAAAAAAbgAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAACGwAAAAADSAAAAAAAGwAAAAADHwAAAAAAGwAAAAAAcQAAAAAAbwAAAAABbwAAAAADbwAAAAAAbwAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAGwAAAAADcQAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAACcQAAAAAAbwAAAAADbwAAAAADbwAAAAAAbwAAAAABbgAAAAABcQAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAABcQAAAAAASAAAAAAAGwAAAAADSAAAAAAAcQAAAAAAbwAAAAACbwAAAAADbwAAAAAAbwAAAAABbgAAAAADcQAAAAAAGwAAAAABHwAAAAACHwAAAAADHwAAAAABGwAAAAACVAAAAAABGwAAAAACGwAAAAABGwAAAAABcQAAAAAAbwAAAAACbwAAAAACbwAAAAACbwAAAAACbgAAAAABcQAAAAAAGwAAAAADHwAAAAACHwAAAAACHwAAAAACGwAAAAADSAAAAAAAGwAAAAADHwAAAAAAGwAAAAADcQAAAAAAbwAAAAACbwAAAAACbwAAAAACbwAAAAABbgAAAAADcQAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAACcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAABcQAAAAAAbwAAAAAAbwAAAAABbwAAAAAAbwAAAAADcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAADSAAAAAAAcQAAAAAASAAAAAAAGwAAAAABSAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAbwAAAAADSAAAAAAA + tiles: HgAAAAACHgAAAAADHgAAAAABHgAAAAACHgAAAAADHgAAAAACHgAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAAAHgAAAAADHgAAAAACegAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAABHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAACIgAAAAAAHgAAAAADHgAAAAAAegAAAAAAeAAAAAABeAAAAAACeAAAAAAAeAAAAAABeAAAAAABeAAAAAAAeAAAAAADeAAAAAACUAAAAAAAegAAAAAAHgAAAAACHgAAAAAAIgAAAAAAHgAAAAACHgAAAAACegAAAAAAeAAAAAADeAAAAAACeAAAAAACeAAAAAABeAAAAAAAeAAAAAAAeAAAAAABeAAAAAACUAAAAAAAegAAAAAAHgAAAAAAHgAAAAAAIgAAAAABHgAAAAACHgAAAAABegAAAAAAeAAAAAADeAAAAAAAeAAAAAADeAAAAAACeAAAAAABeAAAAAADeAAAAAADeAAAAAABUAAAAAAAegAAAAAAHgAAAAACHgAAAAAAIgAAAAACHgAAAAADHgAAAAAAegAAAAAAeAAAAAADeAAAAAABeAAAAAAAeAAAAAADeAAAAAABeAAAAAABeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAAAIgAAAAADHgAAAAADHgAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABegAAAAAAegAAAAAAeAAAAAAAeAAAAAABeAAAAAAAdwAAAAAAegAAAAAAHgAAAAAAHgAAAAADIgAAAAABHgAAAAABHgAAAAAAegAAAAAAHgAAAAADHgAAAAACHgAAAAACegAAAAAAeAAAAAADeAAAAAABeAAAAAACeAAAAAADdwAAAAAAdwAAAAACHgAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAADHgAAAAACHgAAAAADIgAAAAAAHgAAAAAAegAAAAAAeAAAAAAAeAAAAAADeAAAAAADeAAAAAAAdwAAAAABegAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAABHgAAAAAATgAAAAAAHgAAAAAAIgAAAAAAHgAAAAADegAAAAAAeAAAAAACeAAAAAACeAAAAAADeAAAAAAAdwAAAAADegAAAAAAegAAAAAAegAAAAAATgAAAAAAHgAAAAADegAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAABegAAAAAAeAAAAAACeAAAAAADeAAAAAAAeAAAAAADdwAAAAACegAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAAAHgAAAAACegAAAAAATgAAAAAAHgAAAAABTgAAAAAAegAAAAAAeAAAAAACeAAAAAACeAAAAAABeAAAAAABdwAAAAACegAAAAAAHgAAAAADIgAAAAAAIgAAAAABIgAAAAAAHgAAAAABWgAAAAABHgAAAAACHgAAAAACHgAAAAACegAAAAAAeAAAAAABeAAAAAADeAAAAAAAeAAAAAADdwAAAAABegAAAAAAHgAAAAABIgAAAAAAIgAAAAAAIgAAAAADHgAAAAACTgAAAAAAHgAAAAABIgAAAAADHgAAAAACegAAAAAAeAAAAAACeAAAAAACeAAAAAADeAAAAAACdwAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAAAHgAAAAABegAAAAAAHgAAAAACHgAAAAACHgAAAAABegAAAAAAeAAAAAACeAAAAAACeAAAAAACeAAAAAADegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAACTgAAAAAAegAAAAAATgAAAAAAHgAAAAADTgAAAAAAegAAAAAAegAAAAAATgAAAAAAeAAAAAADTgAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: cQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAIAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFQAAAAAGFQAAAAAHFQAAAAAHFQAAAAAGcQAAAAAAcQAAAAAAYAAAAAAASAAAAAAAIAAAAAABIAAAAAABcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAFQAAAAADFQAAAAADFQAAAAAAFQAAAAAEcQAAAAAAcQAAAAAAYAAAAAAASAAAAAAAIAAAAAABIAAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAFQAAAAAEFQAAAAADFQAAAAAHFQAAAAABcQAAAAAAcQAAAAAAYAAAAAAASAAAAAAAIAAAAAAAIAAAAAACcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAFQAAAAAGFQAAAAAEFQAAAAABFQAAAAADcQAAAAAAcQAAAAAAYAAAAAAASAAAAAAAIAAAAAABIAAAAAABIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAFQAAAAACFQAAAAAHFQAAAAABFQAAAAACSAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAIAAAAAABIAAAAAACcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAFQAAAAAHFQAAAAAFFQAAAAACFQAAAAAASAAAAAAAcQAAAAAAYAAAAAAASAAAAAAAIAAAAAACIAAAAAABcQAAAAAAIQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFQAAAAABFQAAAAAHFQAAAAABFQAAAAAGSAAAAAAAcQAAAAAAYAAAAAAASAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAFQAAAAADFQAAAAAEFQAAAAAEFQAAAAAHSAAAAAAAcQAAAAAAYAAAAAAASAAAAAAAIAAAAAACIAAAAAADIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAFQAAAAAFFQAAAAABFQAAAAAEFQAAAAAASAAAAAAAcQAAAAAAYAAAAAAASAAAAAAAIAAAAAADIAAAAAACcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAFQAAAAABFQAAAAAFFQAAAAAEFQAAAAACSAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAFQAAAAABFQAAAAADFQAAAAAGFQAAAAABSAAAAAAAcQAAAAAAYAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAFQAAAAABFQAAAAADFQAAAAAGFQAAAAACSAAAAAAAcQAAAAAAYAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAFQAAAAAAFQAAAAAEFQAAAAACFQAAAAAFcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFQAAAAAFFQAAAAABFQAAAAAEFQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAFQAAAAACFQAAAAADFQAAAAADFQAAAAAGFQAAAAABcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAFQAAAAAAFQAAAAAFFQAAAAACFQAAAAAAFQAAAAAD + tiles: egAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAIwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAGAAAAAABGAAAAAAFGAAAAAAFGAAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAAIwAAAAADIwAAAAABegAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAGAAAAAABGAAAAAACGAAAAAABGAAAAAAHegAAAAAAegAAAAAAaQAAAAAATgAAAAAAIwAAAAACIwAAAAAAegAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAGAAAAAAGGAAAAAACGAAAAAACGAAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAAIwAAAAAAIwAAAAAAegAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAGAAAAAAFGAAAAAACGAAAAAAHGAAAAAACegAAAAAAegAAAAAAaQAAAAAATgAAAAAAIwAAAAAAIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAGAAAAAAAGAAAAAAEGAAAAAAHGAAAAAAETgAAAAAAegAAAAAAaQAAAAAAegAAAAAAIwAAAAACIwAAAAABegAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAGAAAAAAFGAAAAAADGAAAAAABGAAAAAAHTgAAAAAAegAAAAAAaQAAAAAATgAAAAAAIwAAAAACIwAAAAADegAAAAAAJAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAGAAAAAAHGAAAAAAGGAAAAAAEGAAAAAACTgAAAAAAegAAAAAAaQAAAAAATgAAAAAAIwAAAAACIwAAAAAAegAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAGAAAAAAFGAAAAAADGAAAAAAFGAAAAAAATgAAAAAAegAAAAAAaQAAAAAATgAAAAAAIwAAAAABIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAGAAAAAADGAAAAAAFGAAAAAADGAAAAAAGTgAAAAAAegAAAAAAaQAAAAAATgAAAAAAIwAAAAAAIwAAAAACegAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAGAAAAAAAGAAAAAACGAAAAAAGGAAAAAADTgAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAGAAAAAAFGAAAAAADGAAAAAAAGAAAAAAGTgAAAAAAegAAAAAAaQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAGAAAAAAAGAAAAAACGAAAAAADGAAAAAABTgAAAAAAegAAAAAAaQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAGAAAAAAGGAAAAAAAGAAAAAAEGAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAGAAAAAAEGAAAAAADGAAAAAAEGAAAAAAGegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAGAAAAAAAGAAAAAAAGAAAAAABGAAAAAAGGAAAAAACegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAGAAAAAAEGAAAAAAAGAAAAAAGGAAAAAADGAAAAAAH version: 6 3,-1: ind: 3,-1 - tiles: YgAAAAADWQAAAAAAcQAAAAAAYgAAAAADcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAYgAAAAAAVAAAAAADcQAAAAAAVAAAAAADcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAYgAAAAAAVAAAAAABVAAAAAADVAAAAAACWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAVAAAAAACWQAAAAAAWQAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAACWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAVAAAAAACVAAAAAACcQAAAAAAWQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASAAAAAAAAAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAVAAAAAABWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAASAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAA + tiles: awAAAAABYQAAAAAAegAAAAAAawAAAAABegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAawAAAAADWgAAAAAAegAAAAAAWgAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAegAAAAAAYQAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAegAAAAAAYQAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAawAAAAADWgAAAAABWgAAAAADWgAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAWgAAAAADYQAAAAAAYQAAAAAAWgAAAAADWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAYwAAAAABegAAAAAAegAAAAAAWgAAAAABYQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAAAAAAAAAYwAAAAABYwAAAAABegAAAAAAYQAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAYwAAAAABYwAAAAACegAAAAAAWgAAAAACYQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAATgAAAAAAAAAAAAAAYwAAAAADYwAAAAAAegAAAAAAWgAAAAABYQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAATgAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKwAAAAADVAAAAAADKwAAAAACSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAACSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAAAKwAAAAADVAAAAAADVAAAAAAAVAAAAAABKwAAAAADVAAAAAADVAAAAAABVAAAAAACKwAAAAABVAAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAABVAAAAAABVAAAAAAAVAAAAAAAKwAAAAACVAAAAAAAVAAAAAAAVAAAAAAAKwAAAAAAVAAAAAADVAAAAAADVAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAADKwAAAAADVAAAAAAAVAAAAAABVAAAAAACKwAAAAAAVAAAAAACVAAAAAADVAAAAAABKwAAAAADVAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAADcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAABcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAALgAAAAABWgAAAAADLgAAAAABTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAACLgAAAAAAWgAAAAADWgAAAAABWgAAAAADLgAAAAAAWgAAAAABWgAAAAAAWgAAAAAALgAAAAACWgAAAAACTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACWgAAAAABWgAAAAAAWgAAAAADLgAAAAADWgAAAAABWgAAAAADWgAAAAABLgAAAAABWgAAAAABWgAAAAABWgAAAAABTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAAALgAAAAACWgAAAAABWgAAAAADWgAAAAACLgAAAAADWgAAAAAAWgAAAAAAWgAAAAABLgAAAAADWgAAAAABTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAADWgAAAAAAWgAAAAABWgAAAAACegAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAADWgAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAAAWgAAAAADegAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAACWgAAAAACTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAACWgAAAAABWgAAAAABWgAAAAADWgAAAAADWgAAAAABWgAAAAAAWgAAAAADWgAAAAACegAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAADWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAACegAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-3: ind: 4,-3 - tiles: VAAAAAADKwAAAAAAVAAAAAACVAAAAAACVAAAAAADKwAAAAACVAAAAAABVAAAAAADVAAAAAABKwAAAAAAVAAAAAADKwAAAAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAABVAAAAAABKwAAAAACVAAAAAABVAAAAAACVAAAAAAAKwAAAAACVAAAAAADVAAAAAACVAAAAAACVAAAAAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACKwAAAAAAVAAAAAACVAAAAAADVAAAAAADKwAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAKwAAAAAAVAAAAAACcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAABVAAAAAABVAAAAAAASAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAACKwAAAAABVAAAAAABKwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAACVAAAAAABVAAAAAACSAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAADcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAVAAAAAACVAAAAAAAVAAAAAADSAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAABKwAAAAAAVAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAVAAAAAACVAAAAAADVAAAAAADSAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAACVAAAAAACVAAAAAADSAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAADKwAAAAAAVAAAAAACKwAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABKwAAAAADVAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAADVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAACVAAAAAABKwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAABVAAAAAADVAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAABKwAAAAABVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAADVAAAAAABVAAAAAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WgAAAAABLgAAAAAAWgAAAAABWgAAAAADWgAAAAAALgAAAAAAWgAAAAADWgAAAAABWgAAAAADLgAAAAACWgAAAAAALgAAAAABTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABWgAAAAAAWgAAAAADLgAAAAAAWgAAAAAAWgAAAAACWgAAAAADLgAAAAAAWgAAAAACWgAAAAADWgAAAAAAWgAAAAACTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADLgAAAAACWgAAAAABWgAAAAACWgAAAAABLgAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAABLgAAAAAAWgAAAAADegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAADWgAAAAACWgAAAAADTgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAADLgAAAAADWgAAAAADLgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAACWgAAAAADWgAAAAABTgAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAABegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAWgAAAAAAWgAAAAADWgAAAAADTgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAALgAAAAAAWgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAWgAAAAACWgAAAAAAWgAAAAABTgAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAWgAAAAADTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAADWgAAAAADWgAAAAABTgAAAAAAWgAAAAADWgAAAAACWgAAAAABWgAAAAAALgAAAAACWgAAAAACLgAAAAABTgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACLgAAAAAAWgAAAAABegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAAAWgAAAAABWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAALgAAAAADWgAAAAADLgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAACWgAAAAABWgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAACLgAAAAABWgAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAADWgAAAAAAWgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAADcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAACcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAABcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACWQAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACWQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAACcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACWQAAAAAAVAAAAAACVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAbwAAAAABcQAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAbgAAAAAAbwAAAAABcQAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAAAbwAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAACbwAAAAACcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAAAbwAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAEwAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAD + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAABegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAADegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAACegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAYQAAAAAAYQAAAAAAWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAACaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABYQAAAAAAWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAADYQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAYQAAAAAAWgAAAAAAWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAeAAAAAACegAAAAAAUAAAAAAAUAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAdwAAAAAAeAAAAAADegAAAAAAUAAAAAAAUAAAAAAAegAAAAAAFgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAdwAAAAACeAAAAAABegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAdwAAAAADeAAAAAADegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAegAAAAAAaQAAAAAAdwAAAAACdwAAAAABeAAAAAAAegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAdwAAAAABegAAAAAAegAAAAAAegAAAAAAFgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAD version: 6 1,-5: ind: 1,-5 - tiles: SAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAGwAAAAAAGwAAAAADcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAABcQAAAAAAYAAAAAAAcQAAAAAAHQAAAAACGwAAAAACcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAACIAAAAAACGwAAAAAAGwAAAAACcQAAAAAAYAAAAAAAcQAAAAAAHQAAAAAAGwAAAAABcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAGwAAAAAAGwAAAAACIQAAAAAAIQAAAAAAIQAAAAAAGwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAHQAAAAADGwAAAAACcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAADIQAAAAAAGwAAAAACGwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAGwAAAAACGwAAAAADcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAGwAAAAABGwAAAAABIQAAAAAAIQAAAAAAIQAAAAAAGwAAAAABcQAAAAAAYAAAAAAAcQAAAAAAGwAAAAACSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADIQAAAAAAGwAAAAABGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAA + tiles: TgAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAHgAAAAADHgAAAAADegAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAegAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAACHgAAAAADHgAAAAACegAAAAAAaQAAAAAAegAAAAAAIAAAAAABHgAAAAACegAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAACIwAAAAADHgAAAAABHgAAAAAAegAAAAAAaQAAAAAAegAAAAAAIAAAAAAAHgAAAAABegAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAegAAAAAAHgAAAAACHgAAAAABJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAADegAAAAAAaQAAAAAAegAAAAAAIAAAAAAAHgAAAAABegAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAADJAAAAAAAHgAAAAACHgAAAAAAegAAAAAAaQAAAAAAegAAAAAAHgAAAAACHgAAAAAAegAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAegAAAAAAHgAAAAAAHgAAAAACJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAegAAAAAAaQAAAAAAegAAAAAAHgAAAAABTgAAAAAAegAAAAAAegAAAAAAegAAAAAANwAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAACJAAAAAAAHgAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 2,-5: ind: 2,-5 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAegAAAAAAAAAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAegAAAAAAAAAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAegAAAAAAAAAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAegAAAAAAAAAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAABwAAAAAKBwAAAAAHFAAAAAACFAAAAAADFAAAAAADFAAAAAAEcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAFFAAAAAABFAAAAAAFFAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABYAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAABcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbwAAAAADbwAAAAADbwAAAAADbwAAAAAAbwAAAAABcQAAAAAASAAAAAAASAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbwAAAAACbwAAAAADbwAAAAACbwAAAAADbwAAAAACSAAAAAAAVAAAAAACVAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbwAAAAAAbwAAAAACbwAAAAADbwAAAAADbwAAAAADbwAAAAABVAAAAAADVAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbwAAAAADbwAAAAACbwAAAAABbwAAAAAAbwAAAAABSAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbwAAAAAAbwAAAAABbwAAAAACcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbwAAAAADbwAAAAAAbwAAAAAAcQAAAAAAFQAAAAADFQAAAAAFFQAAAAAFFQAAAAAEYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAABbwAAAAADbwAAAAAAcQAAAAAAFQAAAAAEFQAAAAAGFQAAAAAHFQAAAAAE + tiles: AAAAAAAAAAAAAAAABwAAAAAABwAAAAAAFwAAAAAEFwAAAAABFwAAAAABFwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAADFwAAAAACFwAAAAAGFwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAaQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAABeAAAAAACeAAAAAACeAAAAAACegAAAAAATgAAAAAATgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAeAAAAAABeAAAAAADeAAAAAADeAAAAAACeAAAAAADTgAAAAAAWgAAAAAAWgAAAAADaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAADeAAAAAAAeAAAAAABeAAAAAACWgAAAAADWgAAAAABaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAeAAAAAABeAAAAAADeAAAAAABeAAAAAACeAAAAAACTgAAAAAAWgAAAAADWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAABeAAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAeAAAAAADeAAAAAACeAAAAAABegAAAAAAGAAAAAAGGAAAAAAAGAAAAAABGAAAAAAHaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAACeAAAAAACegAAAAAAGAAAAAAHGAAAAAAAGAAAAAAAGAAAAAAH version: 6 -3,-4: ind: -3,-4 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAMBwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAEBwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAABwAAAAAKBwAAAAAABwAAAAACBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAABBwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAIAAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAFBwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAIAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAIAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAABBwAAAAAHBwAAAAAABwAAAAAHBwAAAAAFFAAAAAAGFAAAAAAAFAAAAAACFAAAAAAFcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAAAAAAAAABwAAAAAIBwAAAAAABwAAAAAAFAAAAAACFAAAAAADFAAAAAABFAAAAAAGcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFFAAAAAAAFAAAAAACFAAAAAADFAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAEBwAAAAALBwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAIBwAAAAADBwAAAAAIBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAHBwAAAAACBwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAJegAAAAAAQQAAAAAAegAAAAAAaQAAAAAAegAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAQQAAAAAAegAAAAAAaQAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAIwAAAAADBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAIwAAAAACBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAHBwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAIwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAALBwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAACBwAAAAAFBwAAAAAABwAAAAAABwAAAAAAFwAAAAAFFwAAAAAFFwAAAAABFwAAAAAGegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAADAAAAAAAABwAAAAAABwAAAAAMBwAAAAAAFwAAAAACFwAAAAAGFwAAAAAFFwAAAAAEegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAFwAAAAAEFwAAAAACFwAAAAAEFwAAAAAFegAAAAAAegAAAAAAegAAAAAAegAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAegAAAAAA version: 6 0,-5: ind: 0,-5 - tiles: cQAAAAAAFAAAAAAGFAAAAAAAFAAAAAABFAAAAAACFAAAAAABSAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAFAAAAAAGFAAAAAABFAAAAAAGFAAAAAACFAAAAAAFSAAAAAAASAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFAAAAAAFFAAAAAAFFAAAAAACFAAAAAABFAAAAAAGFAAAAAAASAAAAAAAFAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAFAAAAAABFAAAAAAAFAAAAAAGFAAAAAAGFAAAAAADFAAAAAABSAAAAAAAFAAAAAAFAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAFAAAAAADFAAAAAADPgAAAAAAPgAAAAAAPgAAAAAAFAAAAAACSAAAAAAAFAAAAAABAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAFAAAAAAGFAAAAAAAFAAAAAABPgAAAAAAPgAAAAAAPgAAAAAAFAAAAAABFAAAAAAEPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFAAAAAAGFAAAAAAEFAAAAAADFAAAAAADFAAAAAAEFAAAAAAGFAAAAAAEPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAPgAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAPgAAAAAASAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAFAAAAAAGFAAAAAAFcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANgAAAAAANgAAAAAANgAAAAAAcQAAAAAAFAAAAAADAAAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAACcQAAAAAANgAAAAAANgAAAAAANgAAAAAAcQAAAAAAFAAAAAACAAAAAAAASAAAAAAAGwAAAAAAGwAAAAABGwAAAAAASAAAAAAAGwAAAAADHQAAAAABHQAAAAADHQAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFAAAAAACAAAAAAAASAAAAAAAGwAAAAAAGwAAAAABGwAAAAACSAAAAAAAGwAAAAADHQAAAAAAHAAAAAACHAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAFAAAAAAGAAAAAAAASAAAAAAAGwAAAAAAGwAAAAADGwAAAAADSAAAAAAAGwAAAAADHQAAAAACHQAAAAACHQAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAADcQAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAGwAAAAADSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAA + tiles: egAAAAAAFwAAAAAGFwAAAAAGFwAAAAACFwAAAAACFwAAAAADTgAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAFwAAAAADFwAAAAACFwAAAAADFwAAAAAEFwAAAAAATgAAAAAATgAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAFwAAAAAAFwAAAAABFwAAAAABFwAAAAABFwAAAAACFwAAAAAGTgAAAAAAFwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAFwAAAAADFwAAAAAFFwAAAAADFwAAAAABFwAAAAAEFwAAAAAFTgAAAAAAFwAAAAACAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAFwAAAAAGFwAAAAABQQAAAAAAQQAAAAAAQQAAAAAAFwAAAAAATgAAAAAAFwAAAAACAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAFwAAAAADFwAAAAAEFwAAAAAEQQAAAAAAQQAAAAAAQQAAAAAAFwAAAAAFFwAAAAAEQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAFwAAAAACFwAAAAAGFwAAAAADFwAAAAACFwAAAAAEFwAAAAABFwAAAAACQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAQQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAQQAAAAAATgAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAFwAAAAADFwAAAAADegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACegAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAegAAAAAAFwAAAAAFAAAAAAAAegAAAAAAHgAAAAACHgAAAAACHgAAAAACegAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAADegAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAegAAAAAAFwAAAAABAAAAAAAATgAAAAAAHgAAAAACHgAAAAAAHgAAAAACTgAAAAAAHgAAAAABIAAAAAADIAAAAAACIAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAFwAAAAAFAAAAAAAATgAAAAAAHgAAAAABHgAAAAACHgAAAAADTgAAAAAAHgAAAAADIAAAAAADHwAAAAAAHwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAFwAAAAAGAAAAAAAATgAAAAAAHgAAAAADHgAAAAAAHgAAAAABTgAAAAAAHgAAAAADIAAAAAABIAAAAAADIAAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAACegAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAHgAAAAADTgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAA version: 6 -1,-5: ind: -1,-5 - tiles: FAAAAAABFAAAAAAEFAAAAAAGFAAAAAAFFAAAAAACFAAAAAABFAAAAAACFAAAAAAEFAAAAAAFcQAAAAAAFAAAAAAEFAAAAAAAFAAAAAAGFAAAAAAEFAAAAAABFAAAAAADFAAAAAAGFAAAAAABFAAAAAABFAAAAAAGFAAAAAADFAAAAAADFAAAAAABFAAAAAAAFAAAAAADcQAAAAAAFAAAAAACFAAAAAAGFAAAAAADFAAAAAAGPgAAAAAAPgAAAAAAFAAAAAAFFAAAAAAFFAAAAAACFAAAAAACFAAAAAADFAAAAAABFAAAAAACFAAAAAADFAAAAAAEcQAAAAAAFAAAAAACFAAAAAAFFAAAAAABFAAAAAAFPgAAAAAAPgAAAAAAFAAAAAABFAAAAAACFAAAAAAGFAAAAAADFAAAAAAGFAAAAAADFAAAAAADFAAAAAACFAAAAAAFcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAFAAAAAABFAAAAAADFAAAAAAGFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAFcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAFAAAAAAFFAAAAAADFAAAAAADFAAAAAABFAAAAAAFFAAAAAACFAAAAAABFAAAAAADFAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAASAAAAAAAFAAAAAAGFAAAAAACPgAAAAAAPgAAAAAAPgAAAAAAFAAAAAADFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAGFAAAAAAAFAAAAAAAFAAAAAAGPgAAAAAAPgAAAAAAPgAAAAAAFAAAAAABFAAAAAAAFAAAAAAEFAAAAAABFAAAAAABFAAAAAAGFAAAAAAGFAAAAAABPgAAAAAAPgAAAAAASAAAAAAAFAAAAAAGFAAAAAAGFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAGFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAGFAAAAAADFAAAAAAEcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAFAAAAAAFFAAAAAADFAAAAAACFAAAAAAGcQAAAAAAFAAAAAADFAAAAAADFAAAAAAGFAAAAAABcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAFAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAPgAAAAAA + tiles: FwAAAAAAFwAAAAAEFwAAAAAGFwAAAAAFFwAAAAAAFwAAAAADFwAAAAABFwAAAAACFwAAAAAGegAAAAAAFwAAAAAAFwAAAAAGFwAAAAACFwAAAAAEFwAAAAABFwAAAAAGFwAAAAAGFwAAAAAAFwAAAAADFwAAAAAEFwAAAAAEFwAAAAADFwAAAAAAFwAAAAAAFwAAAAAFegAAAAAAFwAAAAADFwAAAAADFwAAAAABFwAAAAAGQQAAAAAAQQAAAAAAFwAAAAAEFwAAAAAAFwAAAAACFwAAAAAGFwAAAAAEFwAAAAAFFwAAAAADFwAAAAADFwAAAAADegAAAAAAFwAAAAAFFwAAAAAFFwAAAAACFwAAAAAAQQAAAAAAQQAAAAAAFwAAAAACFwAAAAAFFwAAAAAAFwAAAAAGFwAAAAABFwAAAAAAFwAAAAAFFwAAAAAFFwAAAAAEegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAFwAAAAADFwAAAAAFFwAAAAAGFwAAAAADFwAAAAAGFwAAAAAFFwAAAAADFwAAAAADFwAAAAAEegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAFwAAAAABFwAAAAAEFwAAAAADFwAAAAAAFwAAAAABFwAAAAABFwAAAAABFwAAAAAFFwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAATgAAAAAAFwAAAAABFwAAAAAFQQAAAAAAQQAAAAAAQQAAAAAAFwAAAAADFwAAAAAEFwAAAAAFFwAAAAAGFwAAAAAEFwAAAAADFwAAAAABFwAAAAACQQAAAAAAQQAAAAAAQQAAAAAAFwAAAAAFFwAAAAAEFwAAAAACFwAAAAAEFwAAAAAFFwAAAAADFwAAAAAEFwAAAAADQQAAAAAAQQAAAAAATgAAAAAAFwAAAAACFwAAAAAEFwAAAAAFFwAAAAAAFwAAAAAEFwAAAAAEFwAAAAAFFwAAAAAEFwAAAAABFwAAAAABFwAAAAADFwAAAAAFFwAAAAAFFwAAAAAGegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAFwAAAAAFFwAAAAAEFwAAAAABFwAAAAAFegAAAAAAFwAAAAAAFwAAAAABFwAAAAAEFwAAAAADegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAFwAAAAAFegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAQQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAQQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAQQAAAAAA version: 6 -4,0: ind: -4,0 - tiles: KwAAAAACSAAAAAAAKwAAAAABKwAAAAAAKwAAAAAAKwAAAAACKwAAAAAASAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAXAAAAAAAKwAAAAAASAAAAAAAKwAAAAACKwAAAAACKwAAAAACKwAAAAABKwAAAAAASAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMAAAAAACMAAAAAABMAAAAAABXAAAAAAAKwAAAAABKwAAAAABKwAAAAADKwAAAAAAKwAAAAABKwAAAAABKwAAAAAAKwAAAAADYAAAAAAAcQAAAAAAcQAAAAAAMAAAAAACJgAAAAACJgAAAAADJgAAAAAAXAAAAAAAKwAAAAACKwAAAAABKwAAAAAAKwAAAAAAKwAAAAACKwAAAAABKwAAAAACKwAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAMAAAAAACJgAAAAACJgAAAAADJgAAAAADXAAAAAADKwAAAAAASAAAAAAAKwAAAAABKwAAAAABKwAAAAACKwAAAAAAKwAAAAABSAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMAAAAAAAMAAAAAADMAAAAAACXAAAAAAAKwAAAAADSAAAAAAAKwAAAAACKwAAAAADKwAAAAABKwAAAAABKwAAAAAASAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAXAAAAAACKwAAAAABSAAAAAAAKwAAAAABKwAAAAAAKwAAAAADKwAAAAACKwAAAAADSAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAADKwAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAKwAAAAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAKwAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAKwAAAAABKwAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAKwAAAAADKwAAAAACSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAA + tiles: LgAAAAAATgAAAAAALgAAAAAALgAAAAACLgAAAAACLgAAAAABLgAAAAADTgAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAZQAAAAAALgAAAAACTgAAAAAALgAAAAACLgAAAAADLgAAAAADLgAAAAAALgAAAAADTgAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAMwAAAAABMwAAAAAAMwAAAAACZQAAAAADLgAAAAABLgAAAAABLgAAAAADLgAAAAAALgAAAAACLgAAAAADLgAAAAACLgAAAAAAaQAAAAAAegAAAAAAegAAAAAAMwAAAAACKQAAAAABKQAAAAAAKQAAAAACZQAAAAABLgAAAAABLgAAAAABLgAAAAACLgAAAAABLgAAAAAALgAAAAABLgAAAAADLgAAAAADaQAAAAAAegAAAAAAegAAAAAAMwAAAAAAKQAAAAACKQAAAAAAKQAAAAADZQAAAAAALgAAAAADTgAAAAAALgAAAAADLgAAAAACLgAAAAABLgAAAAADLgAAAAACTgAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAMwAAAAADMwAAAAACMwAAAAACZQAAAAACLgAAAAAATgAAAAAALgAAAAAALgAAAAADLgAAAAACLgAAAAACLgAAAAAATgAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAZQAAAAABLgAAAAABTgAAAAAALgAAAAACLgAAAAAALgAAAAAALgAAAAADLgAAAAADTgAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZQAAAAACLgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAALgAAAAABTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAALgAAAAACTgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAALgAAAAABLgAAAAADTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAALgAAAAAALgAAAAADTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASAAAAAAAVAAAAAABWQAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASAAAAAAAWQAAAAAAWQAAAAAAKwAAAAADKwAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASAAAAAAAVAAAAAAAYgAAAAADKwAAAAAAKwAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAADKwAAAAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKwAAAAACSAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAKwAAAAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAABKwAAAAACSAAAAAAAKwAAAAAAKwAAAAADKwAAAAACKwAAAAAAKwAAAAABSAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAATgAAAAAAWgAAAAADYQAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAATgAAAAAAYQAAAAAAYQAAAAAALgAAAAAALgAAAAABTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAATgAAAAAAWgAAAAADawAAAAABLgAAAAADLgAAAAACTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAABLgAAAAABTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAALgAAAAACTgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAACTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAALgAAAAACTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZQAAAAADLgAAAAACTgAAAAAALgAAAAACLgAAAAACLgAAAAAALgAAAAACLgAAAAABTgAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZQAAAAAB version: 6 3,-4: ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAADcQAAAAAAbgAAAAAAbgAAAAACbgAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAbgAAAAABbgAAAAACcQAAAAAAbgAAAAABbgAAAAABbgAAAAACcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAbwAAAAACbwAAAAAAbwAAAAAAbwAAAAACbwAAAAACbwAAAAABbgAAAAADbgAAAAADbgAAAAADbgAAAAACbgAAAAADbgAAAAABcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAbwAAAAACbwAAAAADbwAAAAABbwAAAAADbwAAAAADbwAAAAACbgAAAAADbgAAAAADcQAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAbwAAAAADbwAAAAADbwAAAAAAbwAAAAAAbwAAAAABbwAAAAADbgAAAAACbgAAAAABcQAAAAAABwAAAAAHBwAAAAAABwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAASAAAAAAAbwAAAAABbwAAAAADbwAAAAAAbwAAAAACbwAAAAABbwAAAAACSAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAAAbwAAAAADcQAAAAAASAAAAAAAbwAAAAACSAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAACegAAAAAAdwAAAAAAdwAAAAAAdwAAAAABegAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAABdwAAAAABegAAAAAAdwAAAAABdwAAAAABdwAAAAABegAAAAAAAAAAAAAAAAAAAAAATgAAAAAAeAAAAAACeAAAAAABeAAAAAAAeAAAAAABeAAAAAAAeAAAAAABdwAAAAABdwAAAAACdwAAAAAAdwAAAAADdwAAAAADdwAAAAADegAAAAAAAAAAAAAAAAAAAAAATgAAAAAAeAAAAAABeAAAAAAAeAAAAAAAeAAAAAADeAAAAAACeAAAAAADdwAAAAABdwAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAAAAAAAAAAAAAAAAATgAAAAAAeAAAAAADeAAAAAAAeAAAAAACeAAAAAADeAAAAAACeAAAAAABdwAAAAABdwAAAAABegAAAAAABwAAAAAABwAAAAAABwAAAAAGegAAAAAAeQAAAAAAeQAAAAAATgAAAAAAeAAAAAACeAAAAAAAeAAAAAADeAAAAAABeAAAAAAAeAAAAAADTgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAegAAAAAATgAAAAAAeAAAAAABTgAAAAAA version: 6 4,-4: ind: 4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-3: ind: 5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-6: ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFAAAAAAESAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAFcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAFwAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAFwAAAAACFwAAAAAEFwAAAAADFwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-6: ind: -1,-6 - tiles: AAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAFBwAAAAAGAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAKBwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAGcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMSAAAAAAABwAAAAAABwAAAAACBwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAASAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAABwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAASAAAAAAANAAAAAAANAAAAAAASAAAAAAAcQAAAAAASAAAAAAADwAAAAAADwAAAAAASAAAAAAAcQAAAAAABwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAABwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAABwAAAAAIcQAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAFAAAAAAEcQAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAFAAAAAAFcQAAAAAABwAAAAAAFAAAAAACBwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAPgAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAGFAAAAAAAFAAAAAABFAAAAAADFAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAFAAAAAAAFAAAAAAFFAAAAAADFAAAAAAEFAAAAAACFAAAAAAEFAAAAAADFAAAAAAAFAAAAAADFAAAAAADFAAAAAACFAAAAAAFcQAAAAAAFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAEFAAAAAADFAAAAAAB + tiles: AAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAITgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAATgAAAAAABwAAAAAHBwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAATgAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAATgAAAAAANwAAAAAANwAAAAAATgAAAAAAegAAAAAATgAAAAAAEgAAAAAAEgAAAAAATgAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAGegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAHBwAAAAAABwAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAFwAAAAAEegAAAAAABwAAAAAEBwAAAAAHBwAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAFwAAAAAFegAAAAAABwAAAAAAFwAAAAAEBwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAQQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAFwAAAAACFwAAAAAAFwAAAAAAFwAAAAAEFwAAAAAFFwAAAAABFwAAAAAGFwAAAAAGFwAAAAACegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAFwAAAAACFwAAAAAAFwAAAAAEFwAAAAABFwAAAAACFwAAAAAFFwAAAAADFwAAAAADFwAAAAAAFwAAAAAFFwAAAAACFwAAAAAFegAAAAAAFwAAAAAEFwAAAAAEFwAAAAABFwAAAAAFFwAAAAACFwAAAAAF version: 6 -2,-6: ind: -2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAcQAAAAAAbgAAAAABbgAAAAADcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAGBwAAAAAAcQAAAAAAbgAAAAAAbgAAAAACBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAFAAAAAADFAAAAAABFAAAAAAGBwAAAAAGBwAAAAAABwAAAAAEcQAAAAAAcQAAAAAAbgAAAAACcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAAEFAAAAAAEFAAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAALBwAAAAAKBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAegAAAAAAdwAAAAAAdwAAAAABegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAMBwAAAAAJBwAAAAAABwAAAAAABwAAAAALAAAAAAAABwAAAAAABwAAAAAAegAAAAAAdwAAAAABdwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFwAAAAAGFwAAAAAGFwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAdwAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAC version: 6 -2,-5: ind: -2,-5 - tiles: BwAAAAAABwAAAAAABwAAAAAFBwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAFAAAAAABFAAAAAAGFAAAAAAGFAAAAAACFAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAAFFAAAAAAGFAAAAAAEFAAAAAAAFAAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAFAAAAAAEFAAAAAABFAAAAAAGFAAAAAADFAAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAAFFAAAAAAGFAAAAAAAFAAAAAABFAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAAEFAAAAAAFFAAAAAABFAAAAAACFAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAALBwAAAAABBwAAAAAMFAAAAAAEFAAAAAAGFAAAAAAEFAAAAAABFAAAAAAEFAAAAAACFAAAAAABBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAFAAAAAADFAAAAAACFAAAAAAFFAAAAAAGFAAAAAABFAAAAAAFFAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAABFAAAAAACFAAAAAAGFAAAAAAAFAAAAAAGFAAAAAABFAAAAAACFAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHFAAAAAAEFAAAAAABFAAAAAACFAAAAAAAFAAAAAABFAAAAAACFAAAAAAEFAAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAABFAAAAAADFAAAAAAGFAAAAAAAFAAAAAABFAAAAAADFAAAAAAAFAAAAAABBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAABFAAAAAACFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAFBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAADFAAAAAAFFAAAAAAGFAAAAAAGFAAAAAAFFAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAFAAAAAABBwAAAAAABwAAAAAABwAAAAAAFAAAAAADFAAAAAAAFAAAAAADFAAAAAAAFAAAAAADFAAAAAACBwAAAAAHBwAAAAAABwAAAAAABwAAAAAJBwAAAAACFAAAAAAGFAAAAAACBwAAAAAABwAAAAAABwAAAAAAFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAGFAAAAAAFFAAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAFAAAAAAFFAAAAAADFAAAAAAGFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAAFAAAAAAGFAAAAAABFAAAAAAEFAAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAAGFAAAAAAFFAAAAAACFAAAAAADFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAGFAAAAAADFAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAEegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFwAAAAAFFwAAAAAFFwAAAAAGFwAAAAAEFwAAAAAEBwAAAAAABwAAAAAHBwAAAAALBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAFwAAAAAFFwAAAAACFwAAAAACFwAAAAAAFwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFwAAAAACFwAAAAAFFwAAAAAAFwAAAAABFwAAAAAEBwAAAAAGBwAAAAAKBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGFwAAAAAEFwAAAAAEFwAAAAAGFwAAAAAGFwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFwAAAAAFFwAAAAAEFwAAAAAEFwAAAAADFwAAAAADBwAAAAAABwAAAAAJBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACFwAAAAADFwAAAAAFFwAAAAAFFwAAAAAFFwAAAAAEFwAAAAADFwAAAAABBwAAAAAABwAAAAAIBwAAAAAJBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAFwAAAAAFFwAAAAAGFwAAAAAGFwAAAAACFwAAAAAFFwAAAAAFFwAAAAAFBwAAAAAABwAAAAAABwAAAAAHBwAAAAAHBwAAAAAEBwAAAAAABwAAAAAABwAAAAAAFwAAAAADFwAAAAAFFwAAAAABFwAAAAABFwAAAAACFwAAAAABFwAAAAAGFwAAAAAGBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAFwAAAAAGFwAAAAACFwAAAAACFwAAAAABFwAAAAADFwAAAAABFwAAAAACFwAAAAAFBwAAAAAABwAAAAAABwAAAAAIBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAAFwAAAAAEFwAAAAAGFwAAAAAAFwAAAAAFFwAAAAABFwAAAAAAFwAAAAADFwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFwAAAAADFwAAAAAAFwAAAAAEFwAAAAABFwAAAAAEFwAAAAAGBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAGFwAAAAACFwAAAAAAFwAAAAAEFwAAAAAGFwAAAAAGFwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAFwAAAAAFBwAAAAAABwAAAAAABwAAAAAAFwAAAAAFFwAAAAADFwAAAAAAFwAAAAABFwAAAAABFwAAAAAEBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAFwAAAAABFwAAAAAFBwAAAAAABwAAAAAABwAAAAAAFwAAAAACFwAAAAABFwAAAAAGFwAAAAABFwAAAAABFwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFwAAAAAEFwAAAAACFwAAAAAFFwAAAAADFwAAAAAFFwAAAAAGFwAAAAAEFwAAAAABFwAAAAAGFwAAAAAEFwAAAAAGBwAAAAAABwAAAAAABwAAAAAHBwAAAAAAFwAAAAAFFwAAAAAEFwAAAAAGFwAAAAADFwAAAAAAFwAAAAADFwAAAAAFFwAAAAACFwAAAAAFFwAAAAADFwAAAAACFwAAAAAF version: 6 -3,-5: ind: -3,-5 - tiles: cQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAFBwAAAAAABwAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAJBwAAAAAKBwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAFcQAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAKBwAAAAAABwAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAFcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAACBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAEBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAMBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGAAAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAGBwAAAAAABwAAAAAABwAAAAAA + tiles: egAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAegAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAATgAAAAAAeQAAAAAABwAAAAAGBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHegAAAAAAegAAAAAATgAAAAAAeQAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAKBwAAAAAJBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 4,-1: ind: 4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAATAAAAAAATAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAUAAAAAAATAAAAAAATAAAAAAAUAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAUAAAAAAATAAAAAAAUAAAAAAAUAAAAAAATAAAAAAAUAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAUAAAAAAATAAAAAAAUAAAAAAAUAAAAAAATAAAAAAAUAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAUAAAAAAATAAAAAAAUAAAAAAAUAAAAAAATAAAAAAAUAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAATgAAAAAAUgAAAAAAUgAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAVgAAAAAAUgAAAAAAUgAAAAAAVgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAVgAAAAAAUgAAAAAAVgAAAAAAVgAAAAAAUgAAAAAAVgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAVgAAAAAAUgAAAAAAVgAAAAAAVgAAAAAAUgAAAAAAVgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAVgAAAAAAUgAAAAAAVgAAAAAAVgAAAAAAUgAAAAAAVgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: AAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAARwAAAAAARwAAAAAARwAAAAADcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYQAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAARwAAAAACRwAAAAAARwAAAAACcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAARwAAAAADRwAAAAABRwAAAAABcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAARwAAAAABRwAAAAAARwAAAAACcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAATQAAAAABTQAAAAADTQAAAAABegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAagAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAATQAAAAADTQAAAAABTQAAAAACegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAATQAAAAABTQAAAAABTQAAAAACegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAATQAAAAAATQAAAAABTQAAAAADegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAagAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAA version: 6 3,2: ind: 3,2 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,3: ind: 3,3 - tiles: cAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,1: ind: -3,1 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAACBwAAAAAAFAAAAAAGFAAAAAAEFAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAFAAAAAABFAAAAAAFFAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAFAAAAAAEFAAAAAAFFAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAABBwAAAAAJBwAAAAAAFAAAAAAGFAAAAAACFAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKFAAAAAAAFAAAAAAAFAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAFwAAAAAEFwAAAAACFwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAFwAAAAAGFwAAAAAGFwAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAFwAAAAAFFwAAAAABFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAAFwAAAAAFFwAAAAACFwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAAFwAAAAABFwAAAAAAFwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,2: ind: -2,2 - tiles: AAAAAAAAAAAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-5: ind: -4,-5 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-6: ind: -4,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAA version: 6 -3,-6: ind: -3,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-4: ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-6: ind: -5,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA version: 6 -5,-5: ind: -5,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-6: ind: 2,-6 - tiles: bwAAAAACbwAAAAACbwAAAAAAbwAAAAACbwAAAAABcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAABbwAAAAABbwAAAAABbwAAAAABbwAAAAACSAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAABbwAAAAAAbwAAAAACbwAAAAAAbwAAAAACSAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAADbwAAAAADbwAAAAABbwAAAAADbwAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAACbwAAAAACbwAAAAACbwAAAAABbwAAAAACSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbwAAAAABbwAAAAAAbwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAcQAAAAAAbwAAAAACbwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJgAAAAACJgAAAAACcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAJgAAAAACJgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eAAAAAABeAAAAAADeAAAAAAAeAAAAAADeAAAAAACegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAACeAAAAAACeAAAAAAAeAAAAAAAeAAAAAABTgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAACeAAAAAAAeAAAAAAAeAAAAAABeAAAAAADTgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAABeAAAAAADeAAAAAABeAAAAAABeAAAAAABTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAACeAAAAAACeAAAAAAAeAAAAAACeAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeAAAAAADeAAAAAAAeAAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAegAAAAAAeAAAAAADeAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAKQAAAAAAKQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAKQAAAAADKQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABegAAAAAAegAAAAAAaQAAAAAAegAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABegAAAAAAegAAAAAAaQAAAAAAegAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACegAAAAAAegAAAAAAaQAAAAAAegAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAABegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-6: ind: 1,-6 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAbwAAAAAAbwAAAAAAbwAAAAABbwAAAAABbwAAAAABbwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAbwAAAAABbwAAAAADbwAAAAAAbwAAAAABbwAAAAACbwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAASAAAAAAAbwAAAAACbwAAAAABbwAAAAABbwAAAAABbwAAAAACbwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAASAAAAAAAbwAAAAACbwAAAAAAbwAAAAADbwAAAAADbwAAAAACbwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAbwAAAAADbwAAAAACbwAAAAAAbwAAAAACbwAAAAACbwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAbwAAAAACbwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAABIAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAACIAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAADIAAAAAADIAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAADIAAAAAABIAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAABIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAKwAAAAACIAAAAAAAKwAAAAAD + tiles: egAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAADeAAAAAAAeAAAAAADeAAAAAABeAAAAAABegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAeAAAAAABeAAAAAADeAAAAAACeAAAAAAAeAAAAAAAeAAAAAABegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAATgAAAAAAeAAAAAADeAAAAAACeAAAAAABeAAAAAACeAAAAAAAeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAATgAAAAAAeAAAAAADeAAAAAACeAAAAAACeAAAAAACeAAAAAADeAAAAAADegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAeAAAAAADeAAAAAADeAAAAAACeAAAAAABeAAAAAABeAAAAAABegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAeAAAAAACeAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAADIwAAAAACLgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAAAIwAAAAADIwAAAAADegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAAAIwAAAAABIwAAAAADegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAAAIwAAAAACIwAAAAABegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAADIwAAAAADIwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAALgAAAAAAIwAAAAABLgAAAAAD version: 6 -1,-7: ind: -1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-7: ind: 0,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-7: ind: 1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAA version: 6 2,-7: ind: 2,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,3: ind: 2,3 - tiles: cAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 1,3: ind: 1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-3: ind: -5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -6,-2: ind: -6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,-2: ind: -7,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAMAAAAAABMAAAAAACMAAAAAACSAAAAAAAKwAAAAACKwAAAAAAKwAAAAABKwAAAAACSAAAAAAAKwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAMAAAAAABMAAAAAABMAAAAAADSAAAAAAAKwAAAAACKwAAAAAAKwAAAAAAKwAAAAAASAAAAAAAKwAAAAADAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAMAAAAAADMAAAAAADMAAAAAADKwAAAAAAKwAAAAABKwAAAAABKwAAAAACKwAAAAABKwAAAAACKwAAAAADAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASAAAAAAAMAAAAAAAMAAAAAACMAAAAAAAKwAAAAADKwAAAAADKwAAAAAAKwAAAAADKwAAAAADKwAAAAABKwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAMAAAAAADMAAAAAABMAAAAAACSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAMAAAAAACMAAAAAACMAAAAAACSAAAAAAAKwAAAAACKwAAAAABKwAAAAACKwAAAAABSAAAAAAAKwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAMAAAAAABMAAAAAADMAAAAAACSAAAAAAAKwAAAAADKwAAAAAAKwAAAAACKwAAAAAAKwAAAAAAKwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAKwAAAAACKwAAAAAAKwAAAAACKwAAAAABSAAAAAAAKwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAACKwAAAAADKwAAAAADKwAAAAABSAAAAAAAKwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAKwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAAAKwAAAAABKwAAAAACKwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAADKwAAAAADKwAAAAACKwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAADKwAAAAABKwAAAAAAKwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAMwAAAAABMwAAAAAAMwAAAAABTgAAAAAALgAAAAACLgAAAAAALgAAAAACLgAAAAADTgAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAMwAAAAACMwAAAAACMwAAAAAATgAAAAAALgAAAAACLgAAAAAALgAAAAAALgAAAAABTgAAAAAALgAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAMwAAAAABMwAAAAACMwAAAAAALgAAAAABLgAAAAADLgAAAAACLgAAAAACLgAAAAADLgAAAAAALgAAAAACAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAMwAAAAACMwAAAAADMwAAAAABLgAAAAABLgAAAAACLgAAAAABLgAAAAAALgAAAAABLgAAAAAALgAAAAABAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAMwAAAAADMwAAAAACMwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAMwAAAAABMwAAAAAAMwAAAAAATgAAAAAALgAAAAADLgAAAAACLgAAAAACLgAAAAABTgAAAAAALgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAMwAAAAADMwAAAAAAMwAAAAADTgAAAAAALgAAAAABLgAAAAADLgAAAAABLgAAAAAALgAAAAACLgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAALgAAAAADLgAAAAACLgAAAAABLgAAAAAATgAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAALgAAAAACLgAAAAABLgAAAAADLgAAAAADTgAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAALgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAALgAAAAACLgAAAAABLgAAAAAALgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAALgAAAAABLgAAAAAALgAAAAABLgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAALgAAAAABLgAAAAACLgAAAAABLgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA version: 6 -5,-1: ind: -5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAADKwAAAAABKwAAAAACKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAADKwAAAAAAKwAAAAAAKwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAABKwAAAAADKwAAAAACKwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAKwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAACKwAAAAACKwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAACKwAAAAACKwAAAAABKwAAAAABSAAAAAAAKwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAKwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAMAAAAAAAMAAAAAABMAAAAAACSAAAAAAAKwAAAAAAKwAAAAADKwAAAAACKwAAAAABSAAAAAAAKwAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAALgAAAAABLgAAAAABLgAAAAADLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAALgAAAAAALgAAAAABLgAAAAAALgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAALgAAAAACLgAAAAAALgAAAAADLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAALgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAALgAAAAAALgAAAAACLgAAAAABLgAAAAADLgAAAAADLgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAALgAAAAABLgAAAAABLgAAAAADLgAAAAADTgAAAAAALgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAMwAAAAAAMwAAAAABMwAAAAADTgAAAAAALgAAAAACLgAAAAACLgAAAAABLgAAAAABTgAAAAAALgAAAAAB version: 6 -5,1: ind: -5,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,0: ind: 4,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAASAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAASAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAASAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAASAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAGwAAAAADGwAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAABGwAAAAABSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAGwAAAAABGwAAAAACSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAATgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAATgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAATgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAATgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAATgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAATgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAATgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAATgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAUAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATgAAAAAAHgAAAAABHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAADHgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAHgAAAAACHgAAAAACTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,1: ind: 4,1 - tiles: PgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAGwAAAAACGwAAAAADSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAGwAAAAABGwAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASQAAAAAAcQAAAAAAcQAAAAAASQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASQAAAAAAcQAAAAAAcQAAAAAASQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASQAAAAAAcQAAAAAAcQAAAAAASQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASQAAAAAASQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: QQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAHgAAAAAAHgAAAAADTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAHgAAAAABHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATwAAAAAAegAAAAAAegAAAAAATwAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATwAAAAAAegAAAAAAegAAAAAATwAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATwAAAAAAegAAAAAAegAAAAAATwAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATwAAAAAATwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,2: ind: 4,2 - tiles: cQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: egAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,4: ind: 2,4 - tiles: AAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,4: ind: 3,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,1: ind: 5,1 - tiles: cQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: egAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 6,1: ind: 6,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAA version: 6 5,0: ind: 5,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAA version: 6 6,0: ind: 6,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAA version: 6 5,-1: ind: 5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAA version: 6 5,-2: ind: 5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA version: 6 6,-1: ind: 6,-1 - tiles: AAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAA version: 6 6,2: ind: 6,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,2: ind: 5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,3: ind: 4,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,3: ind: 5,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 6,-2: ind: 6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 type: MapGrid - type: Broadphase - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 + angularDamping: 10000 + linearDamping: 10000 fixedRotation: False bodyType: Dynamic type: Physics @@ -8832,7 +8834,8 @@ entities: 11,-5: 0: 65535 0,-6: - 0: 65535 + 0: 61167 + 1: 4368 0,-5: 0: 65535 -3,-6: @@ -8844,7 +8847,8 @@ entities: -2,-5: 0: 65535 -1,-6: - 0: 65535 + 0: 15 + 1: 65520 -1,-5: 0: 65535 -8,4: @@ -9320,11 +9324,11 @@ entities: 13,-5: 0: 65535 14,-8: - 0: 65521 + 0: 65533 14,-7: 0: 4607 15,-8: - 0: 65521 + 0: 65527 15,-7: 0: 255 8,-12: @@ -9596,9 +9600,9 @@ entities: 17,-5: 0: 61439 16,-10: - 0: 52735 + 0: 56831 16,-9: - 0: 52428 + 0: 56797 17,-10: 0: 65535 17,-9: @@ -9798,11 +9802,11 @@ entities: 14,-11: 0: 65535 14,-10: - 0: 4607 + 0: 61951 15,-11: 0: 65535 15,-10: - 0: 511 + 0: 61951 18,-8: 0: 65535 18,-7: @@ -10076,9 +10080,9 @@ entities: 9,9: 0: 65535 9,10: - 1: 273 + 2: 273 0: 64170 - 2: 1092 + 3: 1092 9,11: 0: 29439 10,8: @@ -10086,9 +10090,9 @@ entities: 10,9: 0: 65535 10,10: - 3: 273 + 4: 273 0: 64170 - 4: 1092 + 5: 1092 10,11: 0: 29439 11,8: @@ -10096,7 +10100,7 @@ entities: 11,9: 0: 65535 11,10: - 4: 1365 + 5: 1365 0: 64170 11,11: 0: 65279 @@ -10155,7 +10159,7 @@ entities: 12,9: 0: 16383 12,10: - 4: 273 + 5: 273 0: 47650 12,11: 0: 40891 @@ -10540,7 +10544,7 @@ entities: -11,3: 0: 53247 14,-9: - 0: 4369 + 0: 65535 -16,-11: 0: 65480 -16,-10: @@ -11057,6 +11061,8 @@ entities: 0: 16384 24,-5: 0: 17476 + 15,-9: + 0: 65535 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -11073,6 +11079,21 @@ entities: - 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: @@ -11136,7 +11157,9 @@ entities: chunkSize: 4 type: GridAtmosphere - type: OccluderTree - - type: Shuttle + - angularDamping: 10000 + linearDamping: 10000 + type: Shuttle - type: GridPathfinding - type: RadiationGridResistance - id: Arena @@ -11153,19 +11176,6 @@ entities: pos: 50.5,29.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26967 - - 22191 - - 22192 - - 26985 - - 26988 - - 1959 - - 2421 - - 26031 - - 13077 - - 8433 - - 7909 - type: DeviceNetwork - devices: - 26967 - 22191 @@ -11179,29 +11189,36 @@ entities: - 8433 - 7909 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice + - uid: 490 + components: + - pos: 13.5,-61.5 + parent: 6747 + type: Transform + - devices: + - 22147 + - 22231 + - 22228 + - 22145 + - 22149 + - 22150 + - 22151 + - 21882 + - 14904 + - 14903 + - 14634 + - 14896 + - 23520 + type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 1755 components: - rot: 1.5707963267948966 rad pos: 38.5,6.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 21919 - - 954 - - 955 - - 956 - - 26967 - - 26966 - - 26962 - - 26968 - - 21921 - - 21748 - - 21749 - - 21750 - - 21751 - - 13451 - - 13162 - type: DeviceNetwork - devices: - 21919 - 954 @@ -11219,6 +11236,8 @@ entities: - 13451 - 13162 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 3694 components: - pos: 17.5,-35.5 @@ -11236,66 +11255,37 @@ entities: - 13866 - 13951 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 7456 components: - pos: 65.5,-26.5 parent: 6747 type: Transform - devices: - - 21875 - - 21876 + - 21915 - 6533 - 6532 - 6531 + - 21877 - 7446 - 7445 - 7444 - - 14030 - - 14233 - - 14235 - - 14022 - 14236 - 14021 + - 3675 + - 3243 + - 3755 + - 27297 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 8860 components: - rot: -1.5707963267948966 rad pos: 29.5,8.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26984 - - 9416 - - 9417 - - 9418 - - 1958 - - 22206 - - 21916 - - 8994 - - 8995 - - 22316 - - 22189 - - 21920 - - 954 - - 955 - - 956 - - 26969 - - 22190 - - 26976 - - 26977 - - 26978 - - 26979 - - 26980 - - 26981 - - 26982 - - 26983 - - 13452 - - 13335 - - 22283 - - 22284 - - 13376 - - 13246 - type: DeviceNetwork - devices: - 26984 - 9416 @@ -11329,34 +11319,13 @@ entities: - 13376 - 13246 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 9063 components: - pos: 45.5,14.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25606 - - 22745 - - 26056 - - 26143 - - 13062 - - 13231 - - 21751 - - 21750 - - 21749 - - 21748 - - 21920 - - 21752 - - 26962 - - 26961 - - 26954 - - 26957 - - 26953 - - 26960 - - 26951 - - 26950 - - 26946 - type: DeviceNetwork - devices: - 26946 - 26950 @@ -11380,39 +11349,14 @@ entities: - 22745 - 25606 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 13485 components: - rot: 3.141592653589793 rad pos: 4.5,-11.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25213 - - 25203 - - 25204 - - 25202 - - 25201 - - 1958 - - 21390 - - 21916 - - 857 - - 865 - - 114 - - 25254 - - 21391 - - 25260 - - 25270 - - 25269 - - 25262 - - 15912 - - 15913 - - 25266 - - 25268 - - 15990 - - 15810 - - 23752 - - 23751 - type: DeviceNetwork - devices: - 25213 - 25203 @@ -11440,42 +11384,14 @@ entities: - 23752 - 23751 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 13930 components: - rot: -1.5707963267948966 rad pos: -15.5,-1.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 1745 - - 27035 - - 25213 - - 25205 - - 25214 - - 25207 - - 25215 - - 25208 - - 25219 - - 25211 - - 25210 - - 25209 - - 1958 - - 25206 - - 24174 - - 24175 - - 26830 - - 26825 - - 26829 - - 26826 - - 26828 - - 26827 - - 24144 - - 24133 - - 24120 - - 24134 - - 24138 - - 24178 - type: DeviceNetwork - devices: - 1745 - 27035 @@ -11506,6 +11422,8 @@ entities: - 24138 - 24178 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 21858 components: - pos: 25.5,-79.5 @@ -11521,6 +11439,8 @@ entities: - 15004 - 14712 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22036 components: - pos: 40.5,-30.5 @@ -11541,6 +11461,8 @@ entities: - 14279 - 14264 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22037 components: - pos: 39.5,-19.5 @@ -11572,6 +11494,8 @@ entities: - 13667 - 13586 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22038 components: - pos: 39.5,-8.5 @@ -11600,6 +11524,8 @@ entities: - 13659 - 13561 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22041 components: - pos: 27.5,4.5 @@ -11618,15 +11544,14 @@ entities: - 13500 - 13499 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22043 components: - rot: -1.5707963267948966 rad pos: 27.5,-12.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 21389 - type: DeviceNetwork - devices: - 8985 - 8983 @@ -11653,15 +11578,13 @@ entities: - 22324 - 21389 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22087 components: - pos: -14.5,-40.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25308 - - 25307 - type: DeviceNetwork - devices: - 21789 - 22166 @@ -11677,6 +11600,8 @@ entities: - 25308 - 25307 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22089 components: - rot: 1.5707963267948966 rad @@ -11699,18 +11624,13 @@ entities: - 15396 - 15341 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22091 components: - pos: -2.5,-48.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25308 - - 25301 - - 25302 - - 25303 - - 25304 - type: DeviceNetwork - devices: - 21795 - 21796 @@ -11735,6 +11655,8 @@ entities: - 25303 - 25304 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22093 components: - pos: 18.5,-40.5 @@ -11771,6 +11693,8 @@ entities: - 14733 - 14515 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22096 components: - rot: 1.5707963267948966 rad @@ -11797,6 +11721,8 @@ entities: - 15339 - 15411 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22097 components: - rot: -1.5707963267948966 rad @@ -11814,7 +11740,10 @@ entities: - 16623 - 16656 - 16657 + - 27085 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22099 components: - rot: 1.5707963267948966 rad @@ -11834,6 +11763,8 @@ entities: - 15172 - 15168 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22101 components: - rot: 1.5707963267948966 rad @@ -11850,6 +11781,8 @@ entities: - 14630 - 14829 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22103 components: - rot: 1.5707963267948966 rad @@ -11867,6 +11800,8 @@ entities: - 14842 - 14629 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22105 components: - pos: 12.5,-57.5 @@ -11885,50 +11820,15 @@ entities: - 15133 - 15132 type: DeviceList - - uid: 22107 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-56.5 - parent: 6747 - type: Transform - - devices: - - 22147 - - 22231 - - 22228 - - 22145 - - 22149 - - 22150 - - 22151 - - 21882 - - 14904 - - 14903 - - 14634 - - 14896 - - 23520 - type: DeviceList - - uid: 22109 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-67.5 - parent: 6747 - type: Transform - - devices: - - 22149 - - 21884 - - 14635 - - 14902 - - 14920 - - 14917 - - 23520 - - 5046 - - 14910 - - 14908 - type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22111 components: - pos: 24.5,-62.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 22113 components: - rot: 1.5707963267948966 rad @@ -11945,6 +11845,8 @@ entities: - 14365 - 14727 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22115 components: - rot: 3.141592653589793 rad @@ -11958,6 +11860,8 @@ entities: - 14394 - 14717 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22117 components: - pos: 10.5,-28.5 @@ -11975,6 +11879,8 @@ entities: - 13874 - 13954 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22119 components: - rot: 3.141592653589793 rad @@ -11989,6 +11895,8 @@ entities: - 13875 - 13960 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22121 components: - rot: -1.5707963267948966 rad @@ -12029,6 +11937,8 @@ entities: - 13595 - 13673 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22123 components: - pos: 22.5,-24.5 @@ -12049,18 +11959,14 @@ entities: - 13959 - 13873 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22125 components: - rot: -1.5707963267948966 rad pos: 20.5,-14.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25256 - - 25257 - - 25258 - - 22295 - type: DeviceNetwork - devices: - 13955 - 13870 @@ -12077,7 +11983,10 @@ entities: - 25257 - 25258 - 22295 + - 1148 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22130 components: - rot: -1.5707963267948966 rad @@ -12101,6 +12010,8 @@ entities: - 14396 - 14439 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22132 components: - pos: 35.5,-79.5 @@ -12116,6 +12027,8 @@ entities: - 14680 - 15007 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22158 components: - pos: -27.5,-59.5 @@ -12127,6 +12040,8 @@ entities: - 22157 - 21810 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22163 components: - pos: -44.5,-31.5 @@ -12146,6 +12061,8 @@ entities: - 15574 - 16536 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22223 components: - pos: 45.5,-44.5 @@ -12177,6 +12094,8 @@ entities: - 17367 - 17362 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22225 components: - pos: 15.5,-73.5 @@ -12192,6 +12111,8 @@ entities: - 15011 - 23041 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22229 components: - rot: 1.5707963267948966 rad @@ -12212,15 +12133,13 @@ entities: - 14524 - 14735 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22234 components: - pos: -2.5,-71.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25595 - - 25608 - type: DeviceNetwork - devices: - 22154 - 22233 @@ -12233,6 +12152,8 @@ entities: - 25595 - 25608 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22239 components: - pos: -17.5,-56.5 @@ -12250,6 +12171,8 @@ entities: - 15430 - 15359 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22288 components: - pos: 44.5,-26.5 @@ -12271,6 +12194,8 @@ entities: - 14032 - 14232 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22293 components: - rot: -1.5707963267948966 rad @@ -12285,6 +12210,8 @@ entities: - 13958 - 13872 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22317 components: - pos: 57.5,-4.5 @@ -12307,6 +12234,8 @@ entities: - 14131 - 14130 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22330 components: - rot: 1.5707963267948966 rad @@ -12319,6 +12248,8 @@ entities: - 15716 - 15989 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22346 components: - pos: 15.5,12.5 @@ -12329,16 +12260,14 @@ entities: - 9417 - 9418 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25271 components: - rot: 1.5707963267948966 rad pos: -3.5,-1.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 24135 - - 24119 - type: DeviceNetwork - devices: - 21389 - 25201 @@ -12356,19 +12285,14 @@ entities: - 24135 - 24119 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25275 components: - rot: -1.5707963267948966 rad pos: -8.5,-2.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25212 - - 25277 - - 25207 - - 24185 - - 24179 - type: DeviceNetwork - devices: - 25212 - 25277 @@ -12376,20 +12300,14 @@ entities: - 24185 - 24179 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25278 components: - rot: 1.5707963267948966 rad pos: -22.5,-4.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25212 - - 25208 - - 24201 - - 24196 - - 24199 - - 24200 - type: DeviceNetwork - devices: - 25212 - 25208 @@ -12398,33 +12316,14 @@ entities: - 24199 - 24200 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25281 components: - rot: 3.141592653589793 rad pos: -32.5,-7.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25212 - - 25211 - - 25210 - - 25209 - - 25280 - - 25216 - - 25218 - - 25217 - - 25223 - - 25222 - - 25232 - - 25220 - - 25221 - - 24325 - - 24297 - - 24324 - - 24296 - - 24323 - - 24295 - type: DeviceNetwork - devices: - 25212 - 25211 @@ -12446,24 +12345,14 @@ entities: - 24323 - 24295 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25283 components: - rot: 1.5707963267948966 rad pos: -39.5,2.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25219 - - 25216 - - 24259 - - 24351 - - 24270 - - 24348 - - 24349 - - 24269 - - 24350 - - 24268 - type: DeviceNetwork - devices: - 25219 - 25216 @@ -12476,26 +12365,14 @@ entities: - 24350 - 24268 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25286 components: - rot: 3.141592653589793 rad pos: -40.5,-2.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25219 - - 25217 - - 24383 - - 24384 - - 24402 - - 24408 - - 24435 - - 24420 - - 24418 - - 24433 - - 24432 - - 24417 - type: DeviceNetwork - devices: - 25219 - 25217 @@ -12510,26 +12387,14 @@ entities: - 24432 - 24417 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25287 components: - rot: -1.5707963267948966 rad pos: -38.5,-6.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25219 - - 25222 - - 22246 - - 25224 - - 24288 - - 24461 - - 24459 - - 24289 - - 24457 - - 24287 - - 24450 - - 25289 - type: DeviceNetwork - devices: - 25219 - 25222 @@ -12544,33 +12409,14 @@ entities: - 24450 - 25289 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25290 components: - rot: 1.5707963267948966 rad pos: -62.5,1.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25226 - - 25229 - - 25230 - - 24702 - - 24707 - - 24705 - - 24704 - - 24706 - - 24700 - - 24698 - - 24710 - - 24703 - - 24708 - - 24709 - - 24697 - - 24643 - - 24699 - - 24711 - - 24701 - type: DeviceNetwork - devices: - 25226 - 25229 @@ -12592,26 +12438,14 @@ entities: - 24711 - 24701 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25293 components: - rot: -1.5707963267948966 rad pos: -41.5,-24.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25232 - - 25292 - - 25238 - - 25236 - - 22162 - - 25235 - - 24849 - - 24838 - - 24836 - - 24850 - - 24844 - - 24839 - type: DeviceNetwork - devices: - 25232 - 25292 @@ -12626,21 +12460,14 @@ entities: - 24844 - 24839 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25295 components: - rot: 1.5707963267948966 rad pos: -40.5,-33.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25239 - - 25237 - - 25234 - - 25233 - - 25236 - - 24880 - - 24879 - type: DeviceNetwork - devices: - 25239 - 25237 @@ -12650,25 +12477,14 @@ entities: - 24880 - 24879 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25298 components: - rot: 1.5707963267948966 rad pos: -27.5,-33.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25232 - - 25240 - - 25241 - - 25238 - - 25237 - - 24887 - - 24907 - - 24888 - - 24908 - - 24909 - - 24889 - type: DeviceNetwork - devices: - 25232 - 25240 @@ -12682,30 +12498,13 @@ entities: - 24909 - 24889 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25299 components: - pos: -34.5,-14.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25239 - - 25241 - - 25240 - - 25234 - - 25233 - - 25292 - - 25219 - - 25221 - - 25220 - - 24829 - - 25114 - - 25115 - - 24828 - - 25019 - - 24848 - - 24847 - - 25018 - type: DeviceNetwork - devices: - 25239 - 25241 @@ -12725,33 +12524,13 @@ entities: - 24847 - 25018 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25305 components: - pos: 0.5,-35.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25245 - - 25247 - - 25262 - - 15922 - - 15923 - - 25263 - - 25249 - - 25254 - - 25250 - - 21892 - - 25304 - - 25303 - - 25302 - - 25301 - - 22249 - - 25307 - - 16067 - - 16024 - - 24924 - - 24478 - type: DeviceNetwork - devices: - 25245 - 25247 @@ -12774,46 +12553,14 @@ entities: - 24924 - 24478 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25309 components: - rot: -1.5707963267948966 rad pos: -3.5,-30.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25254 - - 25251 - - 25308 - - 15923 - - 15922 - - 25263 - - 15917 - - 15918 - - 15919 - - 15920 - - 15921 - - 25264 - - 15916 - - 15915 - - 15914 - - 25265 - - 15911 - - 21389 - - 15913 - - 15912 - - 25260 - - 15910 - - 25259 - - 15909 - - 15908 - - 15907 - - 15905 - - 24967 - - 25038 - - 25028 - - 25096 - - 25148 - type: DeviceNetwork - devices: - 25254 - 25251 @@ -12848,31 +12595,14 @@ entities: - 25096 - 25148 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25311 components: - rot: 1.5707963267948966 rad pos: -20.5,-34.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25308 - - 25249 - - 25245 - - 25248 - - 25262 - - 15917 - - 15918 - - 15919 - - 15920 - - 15921 - - 25264 - - 25314 - - 25313 - - 25002 - - 25039 - - 24991 - - 25065 - type: DeviceNetwork - devices: - 25308 - 25249 @@ -12892,25 +12622,14 @@ entities: - 24991 - 25065 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25315 components: - rot: -1.5707963267948966 rad pos: -21.5,-19.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25263 - - 25314 - - 25313 - - 25262 - - 15916 - - 15915 - - 15914 - - 25017 - - 25117 - - 25020 - - 25116 - type: DeviceNetwork - devices: - 25263 - 25314 @@ -12924,29 +12643,14 @@ entities: - 25020 - 25116 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25317 components: - rot: -1.5707963267948966 rad pos: -4.5,-20.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25262 - - 15909 - - 15908 - - 15907 - - 15905 - - 25254 - - 25252 - - 25260 - - 25261 - - 23663 - - 25076 - - 25136 - - 24988 - - 25074 - - 24970 - type: DeviceNetwork - devices: - 25262 - 15909 @@ -12964,25 +12668,14 @@ entities: - 25074 - 24970 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25319 components: - rot: -1.5707963267948966 rad pos: 0.5,-14.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 21389 - - 25270 - - 25269 - - 25262 - - 15910 - - 25259 - - 25261 - - 25254 - - 25253 - - 25147 - - 25178 - type: DeviceNetwork - devices: - 21389 - 25270 @@ -12996,41 +12689,27 @@ entities: - 25147 - 25178 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25321 components: - pos: -17.5,-12.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25262 - - 15911 - - 25184 - - 25185 - type: DeviceNetwork - devices: - 25262 - 15911 - 25184 - 25185 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25323 components: - rot: 1.5707963267948966 rad pos: -27.5,-10.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 21389 - - 25268 - - 25219 - - 25267 - - 24086 - - 24087 - - 24088 - - 24085 - - 24089 - - 24083 - type: DeviceNetwork - devices: - 21389 - 25268 @@ -13043,21 +12722,14 @@ entities: - 24089 - 24083 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25325 components: - rot: 1.5707963267948966 rad pos: 9.5,-23.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25254 - - 25255 - - 21910 - - 25256 - - 25257 - - 25258 - - 13955 - type: DeviceNetwork - devices: - 25254 - 25255 @@ -13066,34 +12738,26 @@ entities: - 25257 - 25258 - 13955 + - 1148 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 26597 components: - rot: -1.5707963267948966 rad pos: 64.5,31.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27051 - type: DeviceNetwork - devices: - 27051 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 26945 components: - pos: 72.5,19.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26946 - - 21921 - - 26953 - - 26952 - - 26136 - - 26058 - - 26064 - - 26131 - type: DeviceNetwork - devices: - 26946 - 21921 @@ -13104,24 +12768,14 @@ entities: - 26064 - 26131 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 26958 components: - rot: -1.5707963267948966 rad pos: 53.5,9.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 21921 - - 26954 - - 26228 - - 26070 - - 26072 - - 26227 - - 26074 - - 26226 - - 26130 - - 26069 - type: DeviceNetwork - devices: - 21921 - 26954 @@ -13134,43 +12788,22 @@ entities: - 26130 - 26069 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 26963 components: - rot: 1.5707963267948966 rad pos: 39.5,16.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 26970 components: - rot: 1.5707963267948966 rad pos: 20.5,15.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 21919 - - 26983 - - 26982 - - 26981 - - 26980 - - 26979 - - 26978 - - 26977 - - 26976 - - 22190 - - 26967 - - 26975 - - 1820 - - 26973 - - 26972 - - 22433 - - 26974 - - 26254 - - 26997 - - 26308 - - 26317 - - 26275 - - 26276 - type: DeviceNetwork - devices: - 21919 - 26983 @@ -13196,23 +12829,14 @@ entities: - 26275 - 26276 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 26989 components: - rot: 1.5707963267948966 rad pos: 56.5,29.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 1784 - - 1959 - - 2421 - - 26988 - - 26946 - - 26948 - - 26949 - - 26030 - - 26049 - type: DeviceNetwork - devices: - 1784 - 1959 @@ -13224,27 +12848,14 @@ entities: - 26030 - 26049 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 26991 components: - rot: 1.5707963267948966 rad pos: 56.5,18.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26985 - - 26948 - - 26949 - - 26967 - - 26987 - - 21921 - - 26961 - - 26950 - - 26951 - - 26960 - - 26952 - - 26028 - - 26051 - type: DeviceNetwork - devices: - 26985 - 26948 @@ -13260,28 +12871,13 @@ entities: - 26028 - 26051 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 27003 components: - pos: 14.5,29.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 1820 - - 27001 - - 27002 - - 22433 - - 27010 - - 26318 - - 26337 - - 13334 - - 13484 - - 22571 - - 27011 - - 26336 - - 27020 - - 26329 - - 27021 - type: DeviceNetwork - devices: - 1820 - 27001 @@ -13299,28 +12895,14 @@ entities: - 26329 - 27021 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 27005 components: - rot: -1.5707963267948966 rad pos: 26.5,32.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 21930 - - 27007 - - 21759 - - 21760 - - 21928 - - 27002 - - 27001 - - 26969 - - 26972 - - 26973 - - 26367 - - 26316 - - 13333 - - 22062 - type: DeviceNetwork - devices: - 21930 - 27007 @@ -13337,21 +12919,13 @@ entities: - 13333 - 22062 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 27009 components: - pos: 15.5,23.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26969 - - 26974 - - 21928 - - 27010 - - 26346 - - 26199 - - 13217 - - 26345 - type: DeviceNetwork - devices: - 26969 - 26974 @@ -13362,20 +12936,14 @@ entities: - 13217 - 26345 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 27036 components: - rot: 3.141592653589793 rad pos: -18.5,3.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 1958 - - 27034 - - 25212 - - 27035 - - 26831 - - 26824 - type: DeviceNetwork - devices: - 1958 - 27034 @@ -13384,6 +12952,29 @@ entities: - 26831 - 26824 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice + - uid: 27087 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-70.5 + parent: 6747 + type: Transform + - devices: + - 22149 + - 21884 + - 14635 + - 14902 + - 14920 + - 14917 + - 23520 + - 5046 + - 14910 + - 14908 + - 27086 + type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - proto: AirCanister entities: - uid: 7790 @@ -13391,31 +12982,43 @@ entities: - pos: 48.5,42.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 8184 components: - pos: 32.5,33.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 11336 components: - pos: 57.5,-19.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 11372 components: - pos: 34.5,22.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 12029 components: - pos: 33.5,24.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 16663 components: - pos: 13.5,-20.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - proto: Airlock entities: - uid: 1212 @@ -13453,11 +13056,17 @@ entities: - pos: 36.5,-22.5 parent: 6747 type: Transform + - links: + - 14233 + type: DeviceLinkSink - uid: 3821 components: - pos: 39.5,-22.5 parent: 6747 type: Transform + - links: + - 14194 + type: DeviceLinkSink - proto: AirlockArmoryGlassLocked entities: - uid: 1387 @@ -13540,40 +13149,6 @@ entities: - pos: -16.5,-36.5 parent: 6747 type: Transform -- proto: AirlockBrigGlassLocked - entities: - - uid: 326 - components: - - pos: -1.5,-2.5 - parent: 6747 - type: Transform - - uid: 327 - components: - - pos: -0.5,-2.5 - parent: 6747 - type: Transform - - uid: 1287 - components: - - pos: -3.5,1.5 - parent: 6747 - type: Transform - - uid: 5135 - components: - - pos: -8.5,-60.5 - parent: 6747 - type: Transform -- proto: AirlockBrigLocked - entities: - - uid: 4756 - components: - - pos: -7.5,-63.5 - parent: 6747 - type: Transform - - uid: 4768 - components: - - pos: -9.5,-63.5 - parent: 6747 - type: Transform - proto: AirlockCaptainLocked entities: - uid: 3953 @@ -13662,9 +13237,9 @@ entities: - pos: 11.5,-55.5 parent: 6747 type: Transform -- proto: AirlockChemistryLocked +- proto: AirlockChemistryGlassLocked entities: - - uid: 3685 + - uid: 1790 components: - pos: 14.5,-22.5 parent: 6747 @@ -13702,6 +13277,13 @@ entities: - pos: 21.5,-37.5 parent: 6747 type: Transform +- proto: AirlockClownLocked + entities: + - uid: 5384 + components: + - pos: 36.5,-11.5 + parent: 6747 + type: Transform - proto: AirlockCommand entities: - uid: 3943 @@ -14299,18 +13881,18 @@ entities: - pos: -49.5,-16.5 parent: 6747 type: Transform -- proto: AirlockFreezer +- proto: AirlockFreezerHydroponicsLocked entities: - - uid: 1790 + - uid: 4365 components: - - pos: -1.5,-23.5 + - pos: -1.5,-19.5 parent: 6747 type: Transform -- proto: AirlockFreezerKitchenHydroLocked +- proto: AirlockFreezerLocked entities: - - uid: 1511 + - uid: 3685 components: - - pos: -1.5,-19.5 + - pos: -1.5,-23.5 parent: 6747 type: Transform - proto: AirlockGlass @@ -14668,6 +14250,16 @@ entities: - pos: -65.5,3.5 parent: 6747 type: Transform + - uid: 27257 + components: + - pos: 59.5,-30.5 + parent: 6747 + type: Transform + - uid: 27258 + components: + - pos: 61.5,-30.5 + parent: 6747 + type: Transform - proto: AirlockGlassShuttle entities: - uid: 23 @@ -14797,6 +14389,32 @@ entities: - pos: -9.5,-20.5 parent: 6747 type: Transform +- proto: AirlockLawyerGlassLocked + entities: + - uid: 805 + components: + - pos: -8.5,-60.5 + parent: 6747 + type: Transform +- proto: AirlockLawyerLocked + entities: + - uid: 1457 + components: + - pos: -9.5,-63.5 + parent: 6747 + type: Transform + - uid: 1511 + components: + - pos: -7.5,-63.5 + parent: 6747 + type: Transform +- proto: AirlockLibraryLocked + entities: + - uid: 5379 + components: + - pos: 42.5,-22.5 + parent: 6747 + type: Transform - proto: AirlockMailGlassLocked entities: - uid: 8304 @@ -14984,11 +14602,6 @@ entities: - pos: 28.5,21.5 parent: 6747 type: Transform - - uid: 7668 - components: - - pos: 47.5,5.5 - parent: 6747 - type: Transform - proto: AirlockMaintChemLocked entities: - uid: 3515 @@ -15022,6 +14635,11 @@ entities: - pos: 56.5,20.5 parent: 6747 type: Transform + - uid: 7668 + components: + - pos: 47.5,5.5 + parent: 6747 + type: Transform - uid: 12623 components: - pos: 39.5,17.5 @@ -15070,6 +14688,13 @@ entities: - pos: 3.5,-27.5 parent: 6747 type: Transform +- proto: AirlockMaintLawyerLocked + entities: + - uid: 22110 + components: + - pos: -12.5,-62.5 + parent: 6747 + type: Transform - proto: AirlockMaintLocked entities: - uid: 2254 @@ -15084,11 +14709,27 @@ entities: - pos: 48.5,-39.5 parent: 6747 type: Transform - - uid: 17095 +- proto: AirlockMaintPsychologistLocked + entities: + - uid: 4736 components: - pos: 46.5,-50.5 parent: 6747 type: Transform +- proto: AirlockMaintReporterLocked + entities: + - uid: 4768 + components: + - pos: 37.5,-52.5 + parent: 6747 + type: Transform +- proto: AirlockMaintResearchDirectorLocked + entities: + - uid: 22109 + components: + - pos: 15.5,-70.5 + parent: 6747 + type: Transform - proto: AirlockMaintRnDLocked entities: - uid: 4431 @@ -15113,11 +14754,6 @@ entities: - pos: -17.5,-41.5 parent: 6747 type: Transform - - uid: 117 - components: - - pos: -6.5,3.5 - parent: 6747 - type: Transform - uid: 2999 components: - pos: -40.5,-10.5 @@ -15128,11 +14764,11 @@ entities: - pos: -36.5,-39.5 parent: 6747 type: Transform -- proto: AirlockMaintTheatreLocked +- proto: AirlockMaintSecurityLawyerLocked entities: - - uid: 9008 + - uid: 4756 components: - - pos: 37.5,-52.5 + - pos: -6.5,3.5 parent: 6747 type: Transform - proto: AirlockMantisGlassLocked @@ -15188,6 +14824,9 @@ entities: - pos: 20.5,-25.5 parent: 6747 type: Transform + - links: + - 27192 + type: DeviceLinkSink - uid: 1988 components: - pos: 20.5,-27.5 @@ -15208,11 +14847,6 @@ entities: - pos: -22.5,-10.5 parent: 6747 type: Transform - - uid: 5856 - components: - - pos: 47.5,-48.5 - parent: 6747 - type: Transform - uid: 25273 components: - pos: 14.5,-19.5 @@ -15242,6 +14876,27 @@ entities: - pos: 13.5,-40.5 parent: 6747 type: Transform +- proto: AirlockMimeLocked + entities: + - uid: 5856 + components: + - pos: 36.5,-19.5 + parent: 6747 + type: Transform +- proto: AirlockMusicianLocked + entities: + - uid: 5380 + components: + - pos: 36.5,-8.5 + parent: 6747 + type: Transform +- proto: AirlockPsychologistGlassLocked + entities: + - uid: 5135 + components: + - pos: 47.5,-48.5 + parent: 6747 + type: Transform - proto: AirlockQuartermasterGlassLocked entities: - uid: 7787 @@ -15261,6 +14916,22 @@ entities: - pos: 12.5,21.5 parent: 6747 type: Transform +- proto: AirlockReporterGlassLocked + entities: + - uid: 5238 + components: + - pos: 35.5,-48.5 + parent: 6747 + type: Transform +- proto: AirlockReporterLocked + entities: + - uid: 8628 + components: + - name: announcers booth + type: MetaData + - pos: -25.5,-24.5 + parent: 6747 + type: Transform - proto: AirlockResearchDirectorGlassLocked entities: - uid: 5169 @@ -15393,6 +15064,16 @@ entities: type: Transform - proto: AirlockSecurity entities: + - uid: 532 + components: + - pos: -30.5,-34.5 + parent: 6747 + type: Transform + - uid: 648 + components: + - pos: -31.5,-34.5 + parent: 6747 + type: Transform - uid: 25526 components: - pos: -3.5,-6.5 @@ -15529,21 +15210,28 @@ entities: - pos: -31.5,0.5 parent: 6747 type: Transform -- proto: AirlockSecurityLocked +- proto: AirlockSecurityLawyerGlassLocked entities: - - uid: 80 + - uid: 326 components: - - pos: -9.5,-40.5 + - pos: -1.5,-2.5 parent: 6747 type: Transform - - uid: 532 + - uid: 327 components: - - pos: -31.5,-34.5 + - pos: -0.5,-2.5 parent: 6747 type: Transform - - uid: 648 + - uid: 1287 components: - - pos: -30.5,-34.5 + - pos: -3.5,1.5 + parent: 6747 + type: Transform +- proto: AirlockSecurityLocked + entities: + - uid: 80 + components: + - pos: -9.5,-40.5 parent: 6747 type: Transform - uid: 760 @@ -15583,11 +15271,6 @@ entities: type: Transform - proto: AirlockServiceGlassLocked entities: - - uid: 1457 - components: - - pos: 35.5,-48.5 - parent: 6747 - type: Transform - uid: 3851 components: - pos: 18.5,-6.5 @@ -15600,11 +15283,6 @@ entities: - pos: -10.5,-49.5 parent: 6747 type: Transform - - uid: 4365 - components: - - pos: 42.5,-22.5 - parent: 6747 - type: Transform - uid: 5381 components: - pos: 43.5,-13.5 @@ -15615,28 +15293,6 @@ entities: - pos: 43.5,-17.5 parent: 6747 type: Transform -- proto: AirlockTheatreLocked - entities: - - uid: 5379 - components: - - pos: 36.5,-8.5 - parent: 6747 - type: Transform - - uid: 5380 - components: - - pos: 36.5,-11.5 - parent: 6747 - type: Transform - - uid: 5384 - components: - - pos: 36.5,-19.5 - parent: 6747 - type: Transform - - uid: 11454 - components: - - pos: -25.5,-24.5 - parent: 6747 - type: Transform - proto: AirlockVirologyGlassLocked entities: - uid: 1975 @@ -15666,45 +15322,22 @@ entities: - pos: -17.5,5.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13930 - type: DeviceNetwork - uid: 1784 components: - pos: 47.5,29.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26990 - - 26989 - type: DeviceNetwork - uid: 1820 components: - rot: 1.5707963267948966 rad pos: 15.5,31.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26971 - - 26970 - - 27004 - - 27003 - type: DeviceNetwork - uid: 1958 components: - pos: 6.5,1.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 73 - - 8860 - - 27037 - - 27036 - - 1781 - - 13930 - - 767 - - 13485 - type: DeviceNetwork - uid: 5046 components: - pos: 19.5,-65.5 @@ -15725,17 +15358,6 @@ entities: - pos: 0.5,-9.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 22044 - - 22043 - - 25272 - - 25310 - - 25309 - - 25320 - - 25319 - - 25324 - - 25323 - type: DeviceNetwork - uid: 21875 components: - pos: 73.5,-20.5 @@ -15751,6 +15373,9 @@ entities: - pos: 73.5,-45.5 parent: 6747 type: Transform + - deviceLists: + - 7456 + type: DeviceNetwork - uid: 21878 components: - pos: 44.5,-46.5 @@ -15826,10 +15451,6 @@ entities: - pos: -0.5,-45.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25306 - - 25305 - type: DeviceNetwork - uid: 21893 components: - pos: 25.5,-45.5 @@ -15875,9 +15496,8 @@ entities: - pos: 17.5,-26.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25326 - - 25325 + - deviceLists: + - 17357 type: DeviceNetwork - uid: 21911 components: @@ -15904,17 +15524,14 @@ entities: - pos: 47.5,-28.5 parent: 6747 type: Transform + - deviceLists: + - 7456 + type: DeviceNetwork - uid: 21916 components: - pos: 26.5,-10.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 73 - - 8860 - - 767 - - 13485 - type: DeviceNetwork - uid: 21917 components: - pos: 43.5,-20.5 @@ -15930,38 +15547,16 @@ entities: - pos: 25.5,9.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13869 - - 1755 - - 26971 - - 26970 - type: DeviceNetwork - uid: 21920 components: - pos: 39.5,11.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 9063 - - 295 - - 73 - - 8860 - type: DeviceNetwork - uid: 21921 components: - pos: 47.5,11.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26947 - - 26945 - - 26959 - - 26958 - - 13869 - - 1755 - - 26992 - - 26991 - type: DeviceNetwork - uid: 21922 components: - pos: 43.5,16.5 @@ -15972,21 +15567,11 @@ entities: - pos: 10.5,26.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27008 - - 27009 - - 27006 - - 27005 - type: DeviceNetwork - uid: 21930 components: - pos: -0.5,36.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27006 - - 27005 - type: DeviceNetwork - uid: 21931 components: - pos: 18.5,-1.5 @@ -16012,10 +15597,6 @@ entities: - pos: -44.5,-33.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25294 - - 25293 - type: DeviceNetwork - uid: 22227 components: - pos: 15.5,-74.5 @@ -16056,19 +15637,11 @@ entities: - pos: -44.5,-13.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25288 - - 25287 - type: DeviceNetwork - uid: 22249 components: - pos: -4.5,-43.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25306 - - 25305 - type: DeviceNetwork - uid: 22250 components: - pos: -19.5,-45.5 @@ -16090,10 +15663,6 @@ entities: pos: 11.5,-25.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 22126 - - 22125 - type: DeviceNetwork - uid: 22296 components: - rot: -1.5707963267948966 rad @@ -16106,10 +15675,6 @@ entities: pos: 59.5,-5.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 8860 - - 73 - type: DeviceNetwork - uid: 22319 components: - pos: 59.5,-20.5 @@ -16135,99 +15700,46 @@ entities: - pos: 16.5,20.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26971 - - 26970 - - 27004 - - 27003 - type: DeviceNetwork - uid: 25212 components: - pos: -16.5,0.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25272 - - 25276 - - 25275 - - 25279 - - 25278 - - 25282 - - 25281 - - 27037 - - 27036 - type: DeviceNetwork - uid: 25213 components: - pos: 0.5,-1.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13930 - - 767 - - 13485 - type: DeviceNetwork - uid: 25214 components: - pos: -9.5,-3.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13930 - type: DeviceNetwork - uid: 25215 components: - pos: -21.5,-5.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13930 - type: DeviceNetwork - uid: 25218 components: - pos: -45.5,1.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25282 - - 25281 - type: DeviceNetwork - uid: 25219 components: - pos: -30.5,-4.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25284 - - 25283 - - 25285 - - 25286 - - 25288 - - 25287 - - 25300 - - 25299 - - 25324 - - 25323 - - 13930 - type: DeviceNetwork - uid: 25223 components: - pos: -40.5,-5.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25282 - - 25281 - type: DeviceNetwork - uid: 25226 components: - pos: -54.5,5.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25291 - - 25290 - type: DeviceNetwork - uid: 25231 components: - pos: -64.5,2.5 @@ -16238,213 +15750,90 @@ entities: - pos: -29.5,-24.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25282 - - 25281 - - 25294 - - 25293 - - 25297 - - 25298 - type: DeviceNetwork - uid: 25233 components: - pos: -38.5,-22.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25296 - - 25295 - - 25300 - - 25299 - type: DeviceNetwork - uid: 25234 components: - pos: -38.5,-26.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25296 - - 25295 - - 25300 - - 25299 - type: DeviceNetwork - uid: 25238 components: - pos: -37.5,-34.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25294 - - 25293 - - 25297 - - 25298 - type: DeviceNetwork - uid: 25239 components: - pos: -29.5,-35.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25296 - - 25295 - - 25300 - - 25299 - type: DeviceNetwork - uid: 25245 components: - pos: -24.5,-43.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25306 - - 25305 - - 25312 - - 25311 - type: DeviceNetwork - uid: 25254 components: - pos: 7.5,-22.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25325 - - 25326 - - 25306 - - 25305 - - 25310 - - 25309 - - 25318 - - 25317 - - 25320 - - 25319 - - 767 - - 13485 + - deviceLists: + - 17357 type: DeviceNetwork - uid: 25259 components: - pos: -3.5,-25.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25310 - - 25309 - - 25320 - - 25319 - type: DeviceNetwork - uid: 25260 components: - pos: -2.5,-17.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 767 - - 13485 - - 25310 - - 25309 - - 25318 - - 25317 - type: DeviceNetwork - uid: 25262 components: - pos: -11.5,-24.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25321 - - 25322 - - 25306 - - 25305 - - 25312 - - 25311 - - 25315 - - 25318 - - 25317 - - 25320 - - 25319 - - 25386 - - 767 - - 13485 - type: DeviceNetwork - uid: 25263 components: - pos: -19.5,-30.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25306 - - 25305 - - 25310 - - 25309 - - 25315 - - 25386 - type: DeviceNetwork - uid: 25264 components: - pos: -23.5,-24.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25310 - - 25309 - - 25312 - - 25311 - type: DeviceNetwork - uid: 25265 components: - pos: -17.5,-17.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25310 - - 25309 - type: DeviceNetwork - uid: 25266 components: - pos: -24.5,-10.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 767 - - 13485 - type: DeviceNetwork - uid: 25280 components: - rot: -1.5707963267948966 rad pos: -33.5,2.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25282 - - 25281 - type: DeviceNetwork - uid: 25308 components: - pos: -6.5,-38.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 22092 - - 22091 - - 22088 - - 22087 - - 25310 - - 25309 - - 25312 - - 25311 - type: DeviceNetwork - uid: 26946 components: - pos: 60.5,20.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26947 - - 26945 - - 9063 - - 295 - - 26990 - - 26989 - type: DeviceNetwork - uid: 26955 components: - pos: 64.5,7.5 @@ -16460,92 +15849,45 @@ entities: - pos: 52.5,8.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 9063 - - 295 - type: DeviceNetwork - uid: 26960 components: - rot: 3.141592653589793 rad pos: 66.5,13.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 9063 - - 295 - - 26992 - - 26991 - type: DeviceNetwork - uid: 26962 components: - rot: 3.141592653589793 rad pos: 45.5,16.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 9063 - - 295 - - 13869 - - 1755 - type: DeviceNetwork - uid: 26967 components: - pos: 42.5,21.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13869 - - 1755 - - 26992 - - 26991 - - 13176 - - 304 - - 26971 - - 26970 - type: DeviceNetwork - uid: 26969 components: - rot: -1.5707963267948966 rad pos: 26.5,17.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 73 - - 8860 - - 27008 - - 27009 - - 27006 - - 27005 - type: DeviceNetwork - uid: 26984 components: - pos: 8.5,11.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 73 - - 8860 - type: DeviceNetwork - uid: 26985 components: - pos: 58.5,28.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26992 - - 26991 - - 13176 - - 304 - type: DeviceNetwork - uid: 27051 components: - rot: -1.5707963267948966 rad pos: 68.5,32.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26597 - type: DeviceNetwork - proto: AirTankFilled entities: - uid: 7666 @@ -16612,128 +15954,174 @@ entities: type: Transform - proto: APCBasic entities: + - uid: 537 + components: + - name: epistemics laboratory hallway APC + type: MetaData + - rot: 3.141592653589793 rad + pos: 11.5,-64.5 + parent: 6747 + type: Transform + - uid: 6275 + components: + - name: arrivals APC + type: MetaData + - rot: -1.5707963267948966 rad + pos: 54.5,-33.5 + parent: 6747 + type: Transform - uid: 7163 components: + - name: court room APC + type: MetaData - pos: -8.5,-40.5 parent: 6747 type: Transform - uid: 10367 components: + - name: North maintenance APC + type: MetaData - pos: 13.5,5.5 parent: 6747 type: Transform - uid: 12494 components: + - name: upper West hallway APC + type: MetaData - pos: 8.5,-7.5 parent: 6747 type: Transform - uid: 15624 components: + - name: arena medical-post APC + type: MetaData - pos: -17.5,-7.5 parent: 6747 type: Transform - uid: 16255 components: + - name: arena bleachers APC + type: MetaData - rot: 3.141592653589793 rad pos: -21.5,-26.5 parent: 6747 type: Transform - uid: 16476 components: + - name: lower West hallway APC + type: MetaData - pos: 2.5,-35.5 parent: 6747 type: Transform - uid: 16553 components: + - name: bar/dining APC + type: MetaData - rot: -1.5707963267948966 rad pos: -3.5,-34.5 parent: 6747 type: Transform - uid: 18180 components: + - name: area under construction APC + type: MetaData - pos: 57.5,-14.5 parent: 6747 type: Transform - uid: 18229 components: + - name: janitorial APC + type: MetaData - rot: -1.5707963267948966 rad pos: 34.5,2.5 parent: 6747 type: Transform - uid: 18309 components: + - name: CMO APC + type: MetaData - rot: 1.5707963267948966 rad pos: 23.5,-34.5 parent: 6747 type: Transform - uid: 18393 components: + - name: service room APC + type: MetaData - pos: 19.5,0.5 parent: 6747 type: Transform - - uid: 18558 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-64.5 - parent: 6747 - type: Transform - uid: 18560 components: + - name: chapel APC + type: MetaData - pos: 13.5,-57.5 parent: 6747 type: Transform - - uid: 18563 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-83.5 - parent: 6747 - type: Transform - uid: 18564 components: + - name: South engineering workshop/solars APC + type: MetaData - pos: 16.5,-73.5 parent: 6747 type: Transform - uid: 18714 components: + - name: lawyer's office APC + type: MetaData - rot: 3.141592653589793 rad pos: -8.5,-63.5 parent: 6747 type: Transform - uid: 18723 components: + - name: bridge main APC + type: MetaData - rot: 1.5707963267948966 rad pos: -28.5,-52.5 parent: 6747 type: Transform - uid: 20101 components: + - name: gladiator confinement APC + type: MetaData - pos: -27.5,-34.5 parent: 6747 type: Transform - uid: 20463 components: + - name: North hallway APC + type: MetaData - rot: 1.5707963267948966 rad pos: 18.5,8.5 parent: 6747 type: Transform - uid: 24713 components: + - name: glass observatory APC + type: MetaData - pos: -61.5,7.5 parent: 6747 type: Transform - uid: 26414 components: + - name: North solars APC + type: MetaData - rot: 1.5707963267948966 rad pos: 29.5,37.5 parent: 6747 type: Transform - uid: 26469 components: + - name: TEG APC + type: MetaData - pos: 57.5,36.5 parent: 6747 type: Transform - uid: 26592 components: + - name: AME APC + type: MetaData - rot: 1.5707963267948966 rad pos: 64.5,14.5 parent: 6747 @@ -16754,12 +16142,16 @@ entities: entities: - uid: 1086 components: + - name: logistics main APC + type: MetaData - rot: -1.5707963267948966 rad pos: 28.5,20.5 parent: 6747 type: Transform - uid: 1280 components: + - name: LO APC + type: MetaData - rot: 3.141592653589793 rad pos: 17.5,16.5 parent: 6747 @@ -16772,54 +16164,64 @@ entities: type: Transform - uid: 16554 components: + - name: kitchen APC + type: MetaData - rot: -1.5707963267948966 rad pos: 1.5,-26.5 parent: 6747 type: Transform - uid: 16555 components: + - name: hydroponics APC + type: MetaData - rot: 1.5707963267948966 rad pos: -21.5,-16.5 parent: 6747 type: Transform - uid: 16728 components: + - name: central maintenance APC + type: MetaData - pos: 2.5,-11.5 parent: 6747 type: Transform - uid: 17671 components: + - name: salvage dock APC + type: MetaData - rot: 3.141592653589793 rad pos: -5.5,31.5 parent: 6747 type: Transform - uid: 18230 components: + - name: arcade/central hallway APC + type: MetaData - pos: 29.5,-11.5 parent: 6747 type: Transform - uid: 18231 components: + - name: East maintenance APC + type: MetaData - rot: 3.141592653589793 rad pos: 57.5,-18.5 parent: 6747 type: Transform - uid: 18292 components: + - name: dorms APC + type: MetaData - pos: 49.5,-11.5 parent: 6747 type: Transform - uid: 18306 components: + - name: medical front desk APC + type: MetaData - pos: 23.5,-20.5 parent: 6747 type: Transform - - uid: 18465 - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-33.5 - parent: 6747 - type: Transform - uid: 18467 components: - rot: -1.5707963267948966 rad @@ -16828,67 +16230,107 @@ entities: type: Transform - uid: 18491 components: + - name: evac APC + type: MetaData - rot: -1.5707963267948966 rad pos: 52.5,-38.5 parent: 6747 type: Transform - uid: 18492 components: + - name: South maintenance APC + type: MetaData - pos: 36.5,-65.5 parent: 6747 type: Transform - uid: 18557 components: + - name: mystagogue office APC + type: MetaData - rot: -1.5707963267948966 rad pos: 22.5,-66.5 parent: 6747 type: Transform + - uid: 18558 + components: + - name: anomaly laboratory APC + type: MetaData + - rot: 1.5707963267948966 rad + pos: 23.5,-64.5 + parent: 6747 + type: Transform - uid: 18561 components: + - name: forensic mantis APC + type: MetaData - pos: 3.5,-59.5 parent: 6747 type: Transform + - uid: 18563 + components: + - name: gas and toxins laboratory APC + type: MetaData + - rot: -1.5707963267948966 rad + pos: 5.5,-83.5 + parent: 6747 + type: Transform - uid: 20177 components: + - name: West maintenance APC + type: MetaData - rot: -1.5707963267948966 rad pos: -41.5,-15.5 parent: 6747 type: Transform - uid: 20505 components: + - name: security entrance APC + type: MetaData - rot: -1.5707963267948966 rad pos: 1.5,1.5 parent: 6747 type: Transform - uid: 20506 components: + - name: security main APC + type: MetaData - pos: -8.5,3.5 parent: 6747 type: Transform - uid: 20507 components: + - name: HoS APC + type: MetaData - rot: 1.5707963267948966 rad pos: -14.5,-4.5 parent: 6747 type: Transform - uid: 20508 components: + - name: security locker room APC + type: MetaData - rot: 1.5707963267948966 rad pos: -34.5,-3.5 parent: 6747 type: Transform - uid: 20509 components: + - name: prison APC + type: MetaData - pos: -39.5,1.5 parent: 6747 type: Transform - uid: 20510 components: + - name: armory APC + type: MetaData - pos: -28.5,0.5 parent: 6747 type: Transform - uid: 21168 components: + - name: bridge courtyard APC + type: MetaData - pos: -3.5,-48.5 parent: 6747 type: Transform @@ -16896,6 +16338,8 @@ entities: entities: - uid: 4019 components: + - name: vault APC + type: MetaData - rot: -1.5707963267948966 rad pos: -32.5,-46.5 parent: 6747 @@ -16904,65 +16348,89 @@ entities: entities: - uid: 2773 components: + - name: arena main APC + type: MetaData - rot: -1.5707963267948966 rad pos: -41.5,-17.5 parent: 6747 type: Transform - uid: 2908 components: + - name: arena backup APC + type: MetaData - rot: -1.5707963267948966 rad pos: -41.5,-19.5 parent: 6747 type: Transform - uid: 2947 components: + - name: chemistry lab/med locker room/morgue APC + type: MetaData - pos: 11.5,-28.5 parent: 6747 type: Transform - uid: 6875 components: + - name: epistemics main APC + type: MetaData - pos: 22.5,-53.5 parent: 6747 type: Transform - uid: 8710 components: + - name: artifact laboratory APC + type: MetaData - pos: -7.5,-82.5 parent: 6747 type: Transform - uid: 17250 components: + - name: AI/comms room APC + type: MetaData - pos: -15.5,-56.5 parent: 6747 type: Transform - uid: 17720 components: + - name: atmospherics APC + type: MetaData - rot: 1.5707963267948966 rad pos: 39.5,29.5 parent: 6747 type: Transform - uid: 17740 components: + - name: engineering main APC + type: MetaData - pos: 48.5,14.5 parent: 6747 type: Transform - uid: 18305 components: + - name: mediacla main APC + type: MetaData - rot: 1.5707963267948966 rad pos: 17.5,-20.5 parent: 6747 type: Transform - uid: 18307 components: + - name: cloning room APC + type: MetaData - pos: 20.5,-31.5 parent: 6747 type: Transform - uid: 18836 components: + - name: grav-gen APC + type: MetaData - pos: 68.5,10.5 parent: 6747 type: Transform - uid: 26754 components: + - name: cargo dock APC + type: MetaData - rot: 3.141592653589793 rad pos: 20.5,30.5 parent: 6747 @@ -17003,6 +16471,103 @@ entities: - pos: -38.5,-16.5 parent: 6747 type: Transform +- proto: Ashtray + entities: + - uid: 27180 + components: + - pos: -17.5,-28.5 + parent: 6747 + type: Transform + - uid: 27202 + components: + - pos: -7.5,-34.5 + parent: 6747 + type: Transform + - uid: 27203 + components: + - pos: -20.18222,5.401472 + parent: 6747 + type: Transform + - uid: 27204 + components: + - pos: -39.76789,-35.24225 + parent: 6747 + type: Transform + - uid: 27205 + components: + - pos: -25.2234,-54.07828 + parent: 6747 + type: Transform + - uid: 27206 + components: + - pos: -47.277184,-84.24266 + parent: 6747 + type: Transform + - uid: 27207 + components: + - pos: 39.243088,-50.00905 + parent: 6747 + type: Transform + - uid: 27208 + components: + - pos: 60.672993,-49.68698 + parent: 6747 + type: Transform + - uid: 27209 + components: + - pos: 63.31883,-51.507713 + parent: 6747 + type: Transform + - uid: 27210 + components: + - pos: 45.701904,-25.01777 + parent: 6747 + type: Transform + - uid: 27211 + components: + - pos: 44.355602,-6.981139 + parent: 6747 + type: Transform + - uid: 27212 + components: + - pos: 27.768234,2.7805207 + parent: 6747 + type: Transform + - uid: 27213 + components: + - pos: 16.93061,-3.9911437 + parent: 6747 + type: Transform + - uid: 27214 + components: + - pos: 50.789906,8.805317 + parent: 6747 + type: Transform + - uid: 27215 + components: + - pos: 53.221508,24.474558 + parent: 6747 + type: Transform + - uid: 27216 + components: + - pos: 27.779903,34.06931 + parent: 6747 + type: Transform + - uid: 27217 + components: + - pos: 13.778689,26.757486 + parent: 6747 + type: Transform + - uid: 27218 + components: + - pos: 57.08397,1.5134337 + parent: 6747 + type: Transform + - uid: 27219 + components: + - pos: 59.250637,-2.1912673 + parent: 6747 + type: Transform - proto: AsteroidAltRock entities: - uid: 213 @@ -17859,6 +17424,83 @@ entities: - pos: 42.5,42.5 parent: 6747 type: Transform +- proto: AtmosFixFreezerMarker + entities: + - uid: 117 + components: + - pos: -3.5,-20.5 + parent: 6747 + type: Transform + - uid: 9008 + components: + - pos: -3.5,-21.5 + parent: 6747 + type: Transform + - uid: 27089 + components: + - pos: -3.5,-22.5 + parent: 6747 + type: Transform + - uid: 27090 + components: + - pos: -2.5,-20.5 + parent: 6747 + type: Transform + - uid: 27091 + components: + - pos: -2.5,-21.5 + parent: 6747 + type: Transform + - uid: 27092 + components: + - pos: -2.5,-22.5 + parent: 6747 + type: Transform + - uid: 27093 + components: + - pos: -1.5,-20.5 + parent: 6747 + type: Transform + - uid: 27094 + components: + - pos: -1.5,-21.5 + parent: 6747 + type: Transform + - uid: 27095 + components: + - pos: -1.5,-22.5 + parent: 6747 + type: Transform + - uid: 27096 + components: + - pos: -0.5,-20.5 + parent: 6747 + type: Transform + - uid: 27097 + components: + - pos: -0.5,-21.5 + parent: 6747 + type: Transform + - uid: 27098 + components: + - pos: -0.5,-22.5 + parent: 6747 + type: Transform + - uid: 27099 + components: + - pos: 0.5,-20.5 + parent: 6747 + type: Transform + - uid: 27100 + components: + - pos: 0.5,-21.5 + parent: 6747 + type: Transform + - uid: 27101 + components: + - pos: 0.5,-22.5 + parent: 6747 + type: Transform - proto: AtmosFixNitrogenMarker entities: - uid: 877 @@ -18019,6 +17661,18 @@ entities: - pos: 1.5,-8.5 parent: 6747 type: Transform +- proto: BarberScissors + entities: + - uid: 27264 + components: + - pos: 57.396736,-33.34337 + parent: 6747 + type: Transform + - uid: 27265 + components: + - pos: 57.688404,-33.447605 + parent: 6747 + type: Transform - proto: Barricade entities: - uid: 333 @@ -18258,6 +17912,15 @@ entities: pos: -67.5,10.5 parent: 6747 type: Transform +- proto: BaseGasCondenser + entities: + - uid: 714 + components: + - pos: 10.5,-24.5 + parent: 6747 + type: Transform + - joinedGrid: 6747 + type: AtmosDevice - proto: Beaker entities: - uid: 4364 @@ -18283,6 +17946,8 @@ entities: - pos: -32.323196,18.847113 parent: 6747 type: Transform + - enabled: False + type: CollisionWake - sleepingAllowed: False type: Physics - uid: 11328 @@ -19586,12 +19251,15 @@ entities: type: Transform - proto: BookChemicalCompendium entities: - - uid: 537 + - uid: 5865 components: - - rot: 1.5707963267948966 rad - pos: 10.509118,-26.327625 - parent: 6747 + - flags: InContainer + type: MetaData + - parent: 26933 type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage - uid: 17306 components: - flags: InContainer @@ -20381,11 +20049,21 @@ entities: - pos: 13.5,27.5 parent: 6747 type: Transform + - uid: 494 + components: + - pos: 17.5,-67.5 + parent: 6747 + type: Transform - uid: 509 components: - pos: 2.5,-14.5 parent: 6747 type: Transform + - uid: 679 + components: + - pos: 11.5,-63.5 + parent: 6747 + type: Transform - uid: 909 components: - pos: 4.5,43.5 @@ -20696,6 +20374,16 @@ entities: - pos: 20.5,6.5 parent: 6747 type: Transform + - uid: 8976 + components: + - pos: 54.5,-27.5 + parent: 6747 + type: Transform + - uid: 8996 + components: + - pos: 54.5,-26.5 + parent: 6747 + type: Transform - uid: 10109 components: - pos: 0.5,-9.5 @@ -20816,6 +20504,11 @@ entities: - pos: 47.5,53.5 parent: 6747 type: Transform + - uid: 14193 + components: + - pos: 11.5,-18.5 + parent: 6747 + type: Transform - uid: 16188 components: - pos: 8.5,1.5 @@ -21576,6 +21269,16 @@ entities: - pos: -12.5,-30.5 parent: 6747 type: Transform + - uid: 16935 + components: + - pos: 54.5,-25.5 + parent: 6747 + type: Transform + - uid: 16936 + components: + - pos: 47.5,-23.5 + parent: 6747 + type: Transform - uid: 16949 components: - pos: -13.5,-30.5 @@ -25266,11 +24969,6 @@ entities: - pos: 60.5,-28.5 parent: 6747 type: Transform - - uid: 19422 - components: - - pos: 60.5,-29.5 - parent: 6747 - type: Transform - uid: 19423 components: - pos: 61.5,-29.5 @@ -27131,11 +26829,6 @@ entities: - pos: 19.5,-66.5 parent: 6747 type: Transform - - uid: 19806 - components: - - pos: 18.5,-66.5 - parent: 6747 - type: Transform - uid: 19807 components: - pos: 17.5,-66.5 @@ -27331,16 +27024,6 @@ entities: - pos: 13.5,-63.5 parent: 6747 type: Transform - - uid: 19847 - components: - - pos: 12.5,-63.5 - parent: 6747 - type: Transform - - uid: 19848 - components: - - pos: 11.5,-63.5 - parent: 6747 - type: Transform - uid: 19849 components: - pos: 10.5,-63.5 @@ -32346,6 +32029,11 @@ entities: - pos: -0.5,-4.5 parent: 6747 type: Transform + - uid: 21722 + components: + - pos: 32.5,-37.5 + parent: 6747 + type: Transform - uid: 21732 components: - pos: -0.5,-5.5 @@ -35826,6 +35514,181 @@ entities: - pos: 2.5,-69.5 parent: 6747 type: Transform + - uid: 27165 + components: + - pos: 26.5,-42.5 + parent: 6747 + type: Transform + - uid: 27166 + components: + - pos: 27.5,-42.5 + parent: 6747 + type: Transform + - uid: 27167 + components: + - pos: 28.5,-42.5 + parent: 6747 + type: Transform + - uid: 27168 + components: + - pos: 29.5,-42.5 + parent: 6747 + type: Transform + - uid: 27169 + components: + - pos: 30.5,-42.5 + parent: 6747 + type: Transform + - uid: 27170 + components: + - pos: 31.5,-42.5 + parent: 6747 + type: Transform + - uid: 27171 + components: + - pos: 31.5,-41.5 + parent: 6747 + type: Transform + - uid: 27172 + components: + - pos: 31.5,-40.5 + parent: 6747 + type: Transform + - uid: 27173 + components: + - pos: 32.5,-40.5 + parent: 6747 + type: Transform + - uid: 27174 + components: + - pos: 31.5,-43.5 + parent: 6747 + type: Transform + - uid: 27175 + components: + - pos: 32.5,-43.5 + parent: 6747 + type: Transform + - uid: 27176 + components: + - pos: 29.5,-43.5 + parent: 6747 + type: Transform + - uid: 27177 + components: + - pos: 29.5,-44.5 + parent: 6747 + type: Transform + - uid: 27178 + components: + - pos: 29.5,-45.5 + parent: 6747 + type: Transform + - uid: 27221 + components: + - pos: 11.5,-64.5 + parent: 6747 + type: Transform + - uid: 27225 + components: + - pos: 17.5,-68.5 + parent: 6747 + type: Transform + - uid: 27226 + components: + - pos: 17.5,-69.5 + parent: 6747 + type: Transform + - uid: 27227 + components: + - pos: 16.5,-69.5 + parent: 6747 + type: Transform + - uid: 27228 + components: + - pos: 18.5,-69.5 + parent: 6747 + type: Transform + - uid: 27229 + components: + - pos: 19.5,-69.5 + parent: 6747 + type: Transform + - uid: 27230 + components: + - pos: 20.5,-69.5 + parent: 6747 + type: Transform + - uid: 27231 + components: + - pos: 20.5,-68.5 + parent: 6747 + type: Transform + - uid: 27232 + components: + - pos: 14.5,-58.5 + parent: 6747 + type: Transform + - uid: 27314 + components: + - pos: 61.5,-30.5 + parent: 6747 + type: Transform + - uid: 27315 + components: + - pos: 61.5,-31.5 + parent: 6747 + type: Transform + - uid: 27316 + components: + - pos: 61.5,-32.5 + parent: 6747 + type: Transform + - uid: 27317 + components: + - pos: 61.5,-33.5 + parent: 6747 + type: Transform + - uid: 27318 + components: + - pos: 61.5,-34.5 + parent: 6747 + type: Transform + - uid: 27319 + components: + - pos: 60.5,-34.5 + parent: 6747 + type: Transform + - uid: 27320 + components: + - pos: 59.5,-34.5 + parent: 6747 + type: Transform + - uid: 27321 + components: + - pos: 59.5,-33.5 + parent: 6747 + type: Transform + - uid: 27322 + components: + - pos: 59.5,-32.5 + parent: 6747 + type: Transform + - uid: 27323 + components: + - pos: 59.5,-31.5 + parent: 6747 + type: Transform + - uid: 27324 + components: + - pos: 59.5,-30.5 + parent: 6747 + type: Transform + - uid: 27325 + components: + - pos: 59.5,-29.5 + parent: 6747 + type: Transform - proto: CableApcStack entities: - uid: 4143 @@ -41643,6 +41506,151 @@ entities: - pos: 64.5,9.5 parent: 6747 type: Transform + - uid: 27102 + components: + - pos: -41.5,-40.5 + parent: 6747 + type: Transform + - uid: 27103 + components: + - pos: -41.5,-39.5 + parent: 6747 + type: Transform + - uid: 27104 + components: + - pos: -41.5,-38.5 + parent: 6747 + type: Transform + - uid: 27105 + components: + - pos: -41.5,-37.5 + parent: 6747 + type: Transform + - uid: 27106 + components: + - pos: -41.5,-36.5 + parent: 6747 + type: Transform + - uid: 27107 + components: + - pos: -41.5,-35.5 + parent: 6747 + type: Transform + - uid: 27108 + components: + - pos: -41.5,-34.5 + parent: 6747 + type: Transform + - uid: 27109 + components: + - pos: -41.5,-33.5 + parent: 6747 + type: Transform + - uid: 27110 + components: + - pos: -41.5,-32.5 + parent: 6747 + type: Transform + - uid: 27111 + components: + - pos: -42.5,-32.5 + parent: 6747 + type: Transform + - uid: 27112 + components: + - pos: -43.5,-32.5 + parent: 6747 + type: Transform + - uid: 27113 + components: + - pos: -44.5,-32.5 + parent: 6747 + type: Transform + - uid: 27114 + components: + - pos: -45.5,-32.5 + parent: 6747 + type: Transform + - uid: 27115 + components: + - pos: -45.5,-31.5 + parent: 6747 + type: Transform + - uid: 27116 + components: + - pos: -45.5,-30.5 + parent: 6747 + type: Transform + - uid: 27117 + components: + - pos: -45.5,-29.5 + parent: 6747 + type: Transform + - uid: 27118 + components: + - pos: -45.5,-28.5 + parent: 6747 + type: Transform + - uid: 27119 + components: + - pos: -45.5,-27.5 + parent: 6747 + type: Transform + - uid: 27120 + components: + - pos: -45.5,-26.5 + parent: 6747 + type: Transform + - uid: 27121 + components: + - pos: -45.5,-25.5 + parent: 6747 + type: Transform + - uid: 27122 + components: + - pos: -45.5,-24.5 + parent: 6747 + type: Transform + - uid: 27123 + components: + - pos: -45.5,-23.5 + parent: 6747 + type: Transform + - uid: 27124 + components: + - pos: -45.5,-22.5 + parent: 6747 + type: Transform + - uid: 27125 + components: + - pos: -45.5,-21.5 + parent: 6747 + type: Transform + - uid: 27126 + components: + - pos: -45.5,-20.5 + parent: 6747 + type: Transform + - uid: 27127 + components: + - pos: -45.5,-19.5 + parent: 6747 + type: Transform + - uid: 27128 + components: + - pos: -45.5,-18.5 + parent: 6747 + type: Transform + - uid: 27129 + components: + - pos: -45.5,-17.5 + parent: 6747 + type: Transform + - uid: 27130 + components: + - pos: -45.5,-16.5 + parent: 6747 + type: Transform - proto: CableHVStack entities: - uid: 4142 @@ -47223,6 +47231,21 @@ entities: - pos: 63.5,13.5 parent: 6747 type: Transform + - uid: 27222 + components: + - pos: 10.5,-63.5 + parent: 6747 + type: Transform + - uid: 27223 + components: + - pos: 11.5,-63.5 + parent: 6747 + type: Transform + - uid: 27224 + components: + - pos: 11.5,-64.5 + parent: 6747 + type: Transform - proto: CableMVStack entities: - uid: 1271 @@ -47379,6 +47402,8 @@ entities: - pos: 4.5,-82.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - proto: CargoPallet entities: - uid: 4595 @@ -47701,6 +47726,102 @@ entities: - pos: 1.5,-66.5 parent: 6747 type: Transform + - uid: 27277 + components: + - rot: 3.141592653589793 rad + pos: 59.5,-30.5 + parent: 6747 + type: Transform + - uid: 27278 + components: + - rot: 3.141592653589793 rad + pos: 59.5,-31.5 + parent: 6747 + type: Transform + - uid: 27279 + components: + - rot: 3.141592653589793 rad + pos: 59.5,-32.5 + parent: 6747 + type: Transform + - uid: 27280 + components: + - rot: 3.141592653589793 rad + pos: 61.5,-30.5 + parent: 6747 + type: Transform + - uid: 27281 + components: + - rot: 3.141592653589793 rad + pos: 61.5,-31.5 + parent: 6747 + type: Transform + - uid: 27282 + components: + - rot: 3.141592653589793 rad + pos: 61.5,-32.5 + parent: 6747 + type: Transform + - uid: 27283 + components: + - rot: 3.141592653589793 rad + pos: 58.5,-33.5 + parent: 6747 + type: Transform + - uid: 27284 + components: + - rot: 3.141592653589793 rad + pos: 58.5,-34.5 + parent: 6747 + type: Transform + - uid: 27285 + components: + - rot: 3.141592653589793 rad + pos: 59.5,-33.5 + parent: 6747 + type: Transform + - uid: 27286 + components: + - rot: 3.141592653589793 rad + pos: 59.5,-34.5 + parent: 6747 + type: Transform + - uid: 27287 + components: + - rot: 3.141592653589793 rad + pos: 60.5,-33.5 + parent: 6747 + type: Transform + - uid: 27288 + components: + - rot: 3.141592653589793 rad + pos: 60.5,-34.5 + parent: 6747 + type: Transform + - uid: 27289 + components: + - rot: 3.141592653589793 rad + pos: 61.5,-33.5 + parent: 6747 + type: Transform + - uid: 27290 + components: + - rot: 3.141592653589793 rad + pos: 61.5,-34.5 + parent: 6747 + type: Transform + - uid: 27291 + components: + - rot: 3.141592653589793 rad + pos: 62.5,-33.5 + parent: 6747 + type: Transform + - uid: 27292 + components: + - rot: 3.141592653589793 rad + pos: 62.5,-34.5 + parent: 6747 + type: Transform - proto: CarpetChapel entities: - uid: 8873 @@ -49168,6 +49289,15 @@ entities: - pos: -36.5,-9.5 parent: 6747 type: Transform +- proto: CartridgeMagnum + entities: + - uid: 27078 + components: + - name: lucky bullet (.45 magnum) + type: MetaData + - pos: -19.596416,5.7852926 + parent: 6747 + type: Transform - proto: CartridgeMinigun entities: - uid: 2427 @@ -52790,6 +52920,161 @@ entities: pos: 12.5,-18.5 parent: 6747 type: Transform + - uid: 27131 + components: + - pos: -45.5,-11.5 + parent: 6747 + type: Transform + - uid: 27132 + components: + - pos: -45.5,-12.5 + parent: 6747 + type: Transform + - uid: 27133 + components: + - pos: -45.5,-16.5 + parent: 6747 + type: Transform + - uid: 27134 + components: + - pos: -45.5,-17.5 + parent: 6747 + type: Transform + - uid: 27135 + components: + - pos: -45.5,-18.5 + parent: 6747 + type: Transform + - uid: 27136 + components: + - pos: -45.5,-19.5 + parent: 6747 + type: Transform + - uid: 27137 + components: + - pos: -45.5,-20.5 + parent: 6747 + type: Transform + - uid: 27138 + components: + - pos: -45.5,-21.5 + parent: 6747 + type: Transform + - uid: 27139 + components: + - pos: -45.5,-22.5 + parent: 6747 + type: Transform + - uid: 27140 + components: + - pos: -45.5,-23.5 + parent: 6747 + type: Transform + - uid: 27141 + components: + - pos: -45.5,-24.5 + parent: 6747 + type: Transform + - uid: 27142 + components: + - pos: -45.5,-25.5 + parent: 6747 + type: Transform + - uid: 27143 + components: + - pos: -45.5,-26.5 + parent: 6747 + type: Transform + - uid: 27144 + components: + - pos: -45.5,-27.5 + parent: 6747 + type: Transform + - uid: 27145 + components: + - pos: -45.5,-28.5 + parent: 6747 + type: Transform + - uid: 27146 + components: + - pos: -45.5,-29.5 + parent: 6747 + type: Transform + - uid: 27147 + components: + - pos: -45.5,-30.5 + parent: 6747 + type: Transform + - uid: 27148 + components: + - pos: -45.5,-31.5 + parent: 6747 + type: Transform + - uid: 27149 + components: + - pos: -45.5,-32.5 + parent: 6747 + type: Transform + - uid: 27150 + components: + - pos: -44.5,-32.5 + parent: 6747 + type: Transform + - uid: 27151 + components: + - pos: -43.5,-32.5 + parent: 6747 + type: Transform + - uid: 27152 + components: + - pos: -42.5,-32.5 + parent: 6747 + type: Transform + - uid: 27153 + components: + - pos: -41.5,-32.5 + parent: 6747 + type: Transform + - uid: 27154 + components: + - pos: -41.5,-33.5 + parent: 6747 + type: Transform + - uid: 27155 + components: + - pos: -41.5,-34.5 + parent: 6747 + type: Transform + - uid: 27156 + components: + - pos: -41.5,-35.5 + parent: 6747 + type: Transform + - uid: 27157 + components: + - pos: -41.5,-36.5 + parent: 6747 + type: Transform + - uid: 27158 + components: + - pos: -41.5,-37.5 + parent: 6747 + type: Transform + - uid: 27159 + components: + - pos: -41.5,-38.5 + parent: 6747 + type: Transform + - uid: 27160 + components: + - pos: -41.5,-39.5 + parent: 6747 + type: Transform + - uid: 27161 + components: + - pos: -41.5,-40.5 + parent: 6747 + type: Transform - proto: Cautery entities: - uid: 23896 @@ -53725,6 +54010,26 @@ entities: - pos: 40.462757,-60.460217 parent: 6747 type: Transform +- proto: ChairGreyscale + entities: + - uid: 27268 + components: + - rot: -1.5707963267948966 rad + pos: 63.5,-33.5 + parent: 6747 + type: Transform + - uid: 27269 + components: + - rot: -1.5707963267948966 rad + pos: 63.5,-35.5 + parent: 6747 + type: Transform + - uid: 27270 + components: + - rot: -1.5707963267948966 rad + pos: 63.5,-34.5 + parent: 6747 + type: Transform - proto: ChairOfficeDark entities: - uid: 104 @@ -53845,12 +54150,6 @@ entities: - pos: 12.831828,-26.22979 parent: 6747 type: Transform - - uid: 352 - components: - - rot: -1.5707963267948966 rad - pos: 11.279746,-26.094278 - parent: 6747 - type: Transform - uid: 806 components: - rot: 3.141592653589793 rad @@ -53948,6 +54247,12 @@ entities: pos: 16.5,-68.5 parent: 6747 type: Transform + - uid: 5618 + components: + - rot: -1.5707963267948966 rad + pos: 10.332614,-26.1147 + parent: 6747 + type: Transform - uid: 6651 components: - pos: 27.5,15.5 @@ -54677,11 +54982,6 @@ entities: type: Transform - proto: chem_master entities: - - uid: 494 - components: - - pos: 10.5,-24.5 - parent: 6747 - type: Transform - uid: 1712 components: - pos: -19.5,-13.5 @@ -54692,6 +54992,11 @@ entities: - pos: 13.5,-25.5 parent: 6747 type: Transform + - uid: 19848 + components: + - pos: 10.5,-27.5 + parent: 6747 + type: Transform - uid: 21533 components: - pos: 54.5,-41.5 @@ -54743,11 +55048,6 @@ entities: - pos: 13.5,-26.5 parent: 6747 type: Transform - - uid: 3675 - components: - - pos: 10.5,-25.5 - parent: 6747 - type: Transform - uid: 23581 components: - pos: -32.5,18.5 @@ -54944,22 +55244,6 @@ entities: type: Transform - proto: ClosetBase entities: - - uid: 707 - components: - - pos: 8.5,-25.5 - parent: 6747 - type: Transform - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 3016 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - uid: 2151 components: - pos: 18.5,-32.5 @@ -54970,16 +55254,6 @@ entities: - pos: 19.5,-32.5 parent: 6747 type: Transform - - uid: 7178 - components: - - pos: 39.5,-18.5 - parent: 6747 - type: Transform - - uid: 7190 - components: - - pos: 39.5,-12.5 - parent: 6747 - type: Transform - uid: 7210 components: - pos: 39.5,-5.5 @@ -55355,11 +55629,6 @@ entities: - pos: -40.5,-13.5 parent: 6747 type: Transform - - uid: 12914 - components: - - pos: 2.5,-28.5 - parent: 6747 - type: Transform - proto: ClosetRadiationSuitFilled entities: - uid: 4614 @@ -55372,6 +55641,42 @@ entities: - pos: -6.5,-72.5 parent: 6747 type: Transform +- proto: ClosetSteelBase + entities: + - uid: 776 + components: + - pos: 2.5,-28.5 + parent: 6747 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1465 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 898 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer - proto: ClosetToolFilled entities: - uid: 7614 @@ -55676,6 +55981,13 @@ entities: - pos: 50.11766,-17.46163 parent: 6747 type: Transform +- proto: ClothingHandsGlovesLeather + entities: + - uid: 27352 + components: + - pos: -49.45783,4.671504 + parent: 6747 + type: Transform - proto: ClothingHandsGlovesNitrile entities: - uid: 2033 @@ -56221,6 +56533,13 @@ entities: pos: 47.289085,-41.478985 parent: 6747 type: Transform +- proto: ClothingOuterApronBotanist + entities: + - uid: 27351 + components: + - pos: -49.38491,4.5985365 + parent: 6747 + type: Transform - proto: ClothingOuterArmorKendoBogu entities: - uid: 17539 @@ -58689,6 +59008,13 @@ entities: - pos: -3.5,-16.5 parent: 6747 type: Transform +- proto: CrateMaterialPaper + entities: + - uid: 27164 + components: + - pos: 25.5,19.5 + parent: 6747 + type: Transform - proto: CrateMaterialPlastic entities: - uid: 6620 @@ -58984,6 +59310,8 @@ entities: - pos: 12.5,-17.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - proto: CryoPodMachineCircuitboard entities: - uid: 17743 @@ -60011,18 +60339,6 @@ entities: - pos: -1.5,0.5 parent: 6747 type: Transform - - uid: 15692 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,0.5 - parent: 6747 - type: Transform - - uid: 15693 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 6747 - type: Transform - uid: 15694 components: - rot: 1.5707963267948966 rad @@ -60200,6 +60516,12 @@ entities: pos: 45.5,12.5 parent: 6747 type: Transform + - uid: 27072 + components: + - rot: 3.141592653589793 rad + pos: -18.5,0.5 + parent: 6747 + type: Transform - proto: DisposalJunction entities: - uid: 3114 @@ -60513,6 +60835,12 @@ entities: pos: 26.5,17.5 parent: 6747 type: Transform + - uid: 3135 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,0.5 + parent: 6747 + type: Transform - uid: 3175 components: - rot: -1.5707963267948966 rad @@ -66027,6 +66355,12 @@ entities: - pos: -11.5,-26.5 parent: 6747 type: Transform + - uid: 15671 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,0.5 + parent: 6747 + type: Transform - uid: 15673 components: - rot: -1.5707963267948966 rad @@ -66082,6 +66416,18 @@ entities: pos: 15.5,-8.5 parent: 6747 type: Transform + - uid: 15692 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,0.5 + parent: 6747 + type: Transform + - uid: 15693 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,0.5 + parent: 6747 + type: Transform - uid: 15695 components: - rot: 1.5707963267948966 rad @@ -66122,6 +66468,12 @@ entities: pos: -7.5,-12.5 parent: 6747 type: Transform + - uid: 16380 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,0.5 + parent: 6747 + type: Transform - uid: 19067 components: - rot: 1.5707963267948966 rad @@ -66299,25 +66651,19 @@ entities: - uid: 20231 components: - rot: 1.5707963267948966 rad - pos: -10.5,-0.5 + pos: -12.5,0.5 parent: 6747 type: Transform - uid: 20232 components: - rot: 1.5707963267948966 rad - pos: -11.5,-0.5 + pos: -11.5,0.5 parent: 6747 type: Transform - uid: 20233 components: - rot: 1.5707963267948966 rad - pos: -12.5,-0.5 - parent: 6747 - type: Transform - - uid: 20234 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-0.5 + pos: -10.5,0.5 parent: 6747 type: Transform - uid: 20300 @@ -67762,6 +68108,30 @@ entities: pos: 46.5,12.5 parent: 6747 type: Transform + - uid: 27066 + components: + - rot: -1.5707963267948966 rad + pos: 59.5,25.5 + parent: 6747 + type: Transform + - uid: 27067 + components: + - rot: -1.5707963267948966 rad + pos: 60.5,25.5 + parent: 6747 + type: Transform + - uid: 27068 + components: + - rot: -1.5707963267948966 rad + pos: 61.5,25.5 + parent: 6747 + type: Transform + - uid: 27073 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,0.5 + parent: 6747 + type: Transform - proto: DisposalRouterFlipped entities: - uid: 23521 @@ -68319,12 +68689,6 @@ entities: pos: -16.5,-27.5 parent: 6747 type: Transform - - uid: 15671 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-0.5 - parent: 6747 - type: Transform - uid: 15679 components: - rot: 3.141592653589793 rad @@ -68410,6 +68774,11 @@ entities: pos: 65.5,11.5 parent: 6747 type: Transform + - uid: 27071 + components: + - pos: -18.5,1.5 + parent: 6747 + type: Transform - proto: DisposalUnit entities: - uid: 1799 @@ -69075,6 +69444,8 @@ entities: - pos: -32.122654,18.65956 parent: 6747 type: Transform + - enabled: False + type: CollisionWake - sleepingAllowed: False type: Physics - uid: 9500 @@ -69422,6 +69793,8 @@ entities: - pos: -60.22818,1.5943482 parent: 6747 type: Transform + - tags: [] + type: Tag - solutions: drink: temperature: 293.15 @@ -69433,13 +69806,13 @@ entities: ReagentId: Cola Quantity: 11 type: SolutionContainerManager - - tags: [] - type: Tag - uid: 23569 components: - pos: -59.780266,1.5630763 parent: 6747 type: Transform + - tags: [] + type: Tag - solutions: drink: temperature: 293.15 @@ -69451,13 +69824,13 @@ entities: ReagentId: Cola Quantity: 12 type: SolutionContainerManager - - tags: [] - type: Tag - uid: 23570 components: - pos: -59.363598,1.5630763 parent: 6747 type: Transform + - tags: [] + type: Tag - solutions: drink: temperature: 293.15 @@ -69469,8 +69842,6 @@ entities: ReagentId: Cola Quantity: 10 type: SolutionContainerManager - - tags: [] - type: Tag - uid: 23572 components: - pos: -59.004444,-0.28683114 @@ -69484,9 +69855,6 @@ entities: maxVol: 20 reagents: [] type: SolutionContainerManager - - tags: - - Trash - type: Tag - uid: 23573 components: - pos: -58.941944,-0.5161569 @@ -69500,9 +69868,6 @@ entities: maxVol: 20 reagents: [] type: SolutionContainerManager - - tags: - - Trash - type: Tag - proto: DrinkWaterJug entities: - uid: 17594 @@ -70539,7 +70904,7 @@ entities: - pos: 46.5,11.5 parent: 6747 type: Transform - - name: Cargo + - name: Engineering type: FaxMachine - uid: 23472 components: @@ -70548,6 +70913,13 @@ entities: type: Transform - name: Salvage type: FaxMachine + - uid: 27163 + components: + - pos: 27.5,18.5 + parent: 6747 + type: Transform + - name: Logistics + type: FaxMachine - proto: FaxMachineCaptain entities: - uid: 23412 @@ -70722,33 +71094,6 @@ entities: pos: 29.5,7.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26984 - - 9416 - - 9417 - - 9418 - - 1958 - - 22206 - - 21916 - - 8994 - - 8995 - - 22316 - - 22189 - - 21920 - - 954 - - 955 - - 956 - - 26969 - - 22190 - - 26976 - - 26977 - - 26978 - - 26979 - - 26980 - - 26981 - - 26982 - - 26983 - type: DeviceNetwork - devices: - 26984 - 9416 @@ -70776,28 +71121,13 @@ entities: - 26982 - 26983 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 295 components: - pos: 46.5,14.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 21751 - - 21750 - - 21749 - - 21748 - - 21920 - - 21752 - - 26962 - - 26961 - - 26954 - - 26957 - - 26953 - - 26960 - - 26951 - - 26950 - - 26946 - type: DeviceNetwork - devices: - 26946 - 26950 @@ -70815,35 +71145,14 @@ entities: - 21750 - 21751 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 767 components: - rot: 3.141592653589793 rad pos: 5.5,-11.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25213 - - 25203 - - 25204 - - 25202 - - 25201 - - 1958 - - 21390 - - 21916 - - 857 - - 865 - - 114 - - 25254 - - 21391 - - 25260 - - 25270 - - 25269 - - 25262 - - 15912 - - 15913 - - 25266 - - 25268 - type: DeviceNetwork - devices: - 25213 - 25203 @@ -70867,16 +71176,14 @@ entities: - 25266 - 25268 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 1781 components: - rot: -1.5707963267948966 rad pos: -15.5,-2.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 1958 - - 25206 - type: DeviceNetwork - devices: - 1745 - 27035 @@ -70893,6 +71200,8 @@ entities: - 1958 - 25206 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 3693 components: - pos: 18.5,-35.5 @@ -70906,6 +71215,8 @@ entities: - 22292 - 21906 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 7457 components: - rot: -1.5707963267948966 rad @@ -70921,6 +71232,8 @@ entities: - 5866 - 5878 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 7458 components: - pos: 66.5,-26.5 @@ -70936,21 +71249,14 @@ entities: - 7445 - 7444 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 13176 components: - rot: 3.141592653589793 rad pos: 51.5,29.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26967 - - 22191 - - 22192 - - 26985 - - 26988 - - 1959 - - 2421 - type: DeviceNetwork - devices: - 26967 - 22191 @@ -70960,27 +71266,14 @@ entities: - 1959 - 2421 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 13869 components: - rot: 1.5707963267948966 rad pos: 38.5,7.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 21919 - - 954 - - 955 - - 956 - - 26967 - - 26966 - - 26962 - - 26968 - - 21921 - - 21748 - - 21749 - - 21750 - - 21751 - type: DeviceNetwork - devices: - 21919 - 954 @@ -70996,6 +71289,43 @@ entities: - 21750 - 21751 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice + - uid: 17095 + components: + - pos: 14.5,-61.5 + parent: 6747 + type: Transform + - devices: + - 22147 + - 22231 + - 22228 + - 22145 + - 22149 + - 22150 + - 22151 + - 21882 + - 23520 + type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice + - uid: 17357 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-18.5 + parent: 6747 + type: Transform + - devices: + - 25254 + - 25255 + - 21910 + - 25256 + - 25257 + - 25258 + - 1148 + type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22035 components: - rot: -1.5707963267948966 rad @@ -71011,6 +71341,8 @@ entities: - 21770 - 22290 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22039 components: - pos: 41.5,-8.5 @@ -71025,6 +71357,8 @@ entities: - 8989 - 8988 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22040 components: - pos: 40.5,-19.5 @@ -71040,6 +71374,8 @@ entities: - 22184 - 21917 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22042 components: - pos: 28.5,4.5 @@ -71054,15 +71390,14 @@ entities: - 22328 - 22327 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22044 components: - rot: -1.5707963267948966 rad pos: 27.5,-11.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 21389 - type: DeviceNetwork - devices: - 8985 - 8983 @@ -71083,15 +71418,13 @@ entities: - 21916 - 21389 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22088 components: - pos: -13.5,-40.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25308 - - 25307 - type: DeviceNetwork - devices: - 21789 - 22166 @@ -71101,6 +71434,8 @@ entities: - 25308 - 25307 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22090 components: - rot: 1.5707963267948966 rad @@ -71117,18 +71452,13 @@ entities: - 22242 - 21895 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22092 components: - pos: -1.5,-48.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25308 - - 25301 - - 25302 - - 25303 - - 25304 - type: DeviceNetwork - devices: - 21795 - 21796 @@ -71147,6 +71477,8 @@ entities: - 25303 - 25304 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22094 components: - pos: 20.5,-40.5 @@ -71175,6 +71507,8 @@ entities: - 21784 - 21783 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22095 components: - pos: -27.5,-45.5 @@ -71188,6 +71522,8 @@ entities: - 22160 - 22159 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22098 components: - pos: -6.5,-60.5 @@ -71196,7 +71532,10 @@ entities: - devices: - 21788 - 21891 + - 27085 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22100 components: - rot: 1.5707963267948966 rad @@ -71210,6 +71549,8 @@ entities: - 21787 - 21889 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22102 components: - rot: 1.5707963267948966 rad @@ -71222,6 +71563,8 @@ entities: - 22237 - 21886 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22104 components: - rot: 1.5707963267948966 rad @@ -71233,6 +71576,8 @@ entities: - 21887 - 22154 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22106 components: - pos: 15.5,-57.5 @@ -71243,40 +71588,15 @@ entities: - 22147 - 21786 type: DeviceList - - uid: 22108 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-57.5 - parent: 6747 - type: Transform - - devices: - - 22147 - - 22231 - - 22228 - - 22145 - - 22149 - - 22150 - - 22151 - - 21882 - - 23520 - type: DeviceList - - uid: 22110 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-68.5 - parent: 6747 - type: Transform - - devices: - - 22149 - - 21884 - - 23520 - - 5046 - type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22112 components: - pos: 28.5,-62.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 22114 components: - rot: -1.5707963267948966 rad @@ -71289,6 +71609,8 @@ entities: - 22146 - 21783 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22116 components: - rot: 3.141592653589793 rad @@ -71300,6 +71622,8 @@ entities: - 22144 - 21782 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22118 components: - rot: -1.5707963267948966 rad @@ -71314,6 +71638,8 @@ entities: - 22178 - 21909 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22120 components: - rot: 3.141592653589793 rad @@ -71326,6 +71652,8 @@ entities: - 22177 - 21907 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22122 components: - rot: -1.5707963267948966 rad @@ -71358,6 +71686,8 @@ entities: - 8973 - 22177 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22124 components: - pos: 23.5,-24.5 @@ -71376,18 +71706,14 @@ entities: - 21772 - 21908 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22126 components: - rot: -1.5707963267948966 rad pos: 20.5,-17.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25256 - - 25257 - - 25258 - - 22295 - type: DeviceNetwork - devices: - 22179 - 22178 @@ -71400,7 +71726,10 @@ entities: - 25256 - 25257 - 25258 + - 1148 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22127 components: - pos: 15.5,0.5 @@ -71410,6 +71739,8 @@ entities: - 22321 - 21931 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22131 components: - pos: 26.5,-79.5 @@ -71421,6 +71752,8 @@ entities: - 22137 - 22139 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22140 components: - pos: 34.5,-79.5 @@ -71432,6 +71765,8 @@ entities: - 22138 - 22135 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22164 components: - pos: -43.5,-31.5 @@ -71447,6 +71782,8 @@ entities: - 21415 - 22246 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22224 components: - pos: 46.5,-44.5 @@ -71468,6 +71805,8 @@ entities: - 17367 - 17362 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22226 components: - pos: 14.5,-73.5 @@ -71481,6 +71820,8 @@ entities: - 22143 - 23041 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22230 components: - rot: 1.5707963267948966 rad @@ -71495,6 +71836,8 @@ entities: - 22231 - 21881 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22235 components: - pos: -1.5,-71.5 @@ -71507,6 +71850,8 @@ entities: - 22152 - 438 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22238 components: - pos: -26.5,-59.5 @@ -71518,6 +71863,8 @@ entities: - 22157 - 21810 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22240 components: - pos: -16.5,-56.5 @@ -71531,6 +71878,8 @@ entities: - 22242 - 22241 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22289 components: - pos: 45.5,-26.5 @@ -71548,6 +71897,8 @@ entities: - 9007 - 21915 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22294 components: - rot: -1.5707963267948966 rad @@ -71560,6 +71911,8 @@ entities: - 22180 - 21911 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 22318 components: - pos: 59.5,-4.5 @@ -71576,21 +71929,14 @@ entities: - 21819 - 22186 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25272 components: - rot: 1.5707963267948966 rad pos: -3.5,-0.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 21389 - - 25201 - - 25202 - - 25203 - - 25204 - - 25212 - - 25205 - type: DeviceNetwork - devices: - 21389 - 25201 @@ -71600,57 +71946,39 @@ entities: - 25212 - 25205 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25276 components: - rot: -1.5707963267948966 rad pos: -8.5,-3.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25212 - - 25277 - - 25207 - type: DeviceNetwork - devices: - 25212 - 25277 - 25207 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25279 components: - rot: -1.5707963267948966 rad pos: -18.5,-4.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25212 - - 25208 - type: DeviceNetwork - devices: - 25212 - 25208 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25282 components: - rot: 3.141592653589793 rad pos: -29.5,-7.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25212 - - 25211 - - 25210 - - 25209 - - 25280 - - 25216 - - 25218 - - 25217 - - 25223 - - 25222 - - 25232 - - 25220 - - 25221 - type: DeviceNetwork - devices: - 25212 - 25211 @@ -71666,82 +71994,65 @@ entities: - 25220 - 25221 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25284 components: - rot: 1.5707963267948966 rad pos: -39.5,3.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25219 - - 25216 - type: DeviceNetwork - devices: - 25219 - 25216 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25285 components: - rot: 3.141592653589793 rad pos: -39.5,-2.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25219 - - 25217 - type: DeviceNetwork - devices: - 25219 - 25217 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25288 components: - rot: 3.141592653589793 rad pos: -39.5,-7.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25219 - - 25222 - - 22246 - - 25224 - type: DeviceNetwork - devices: - 25219 - 25222 - 22246 - 25224 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25291 components: - rot: 1.5707963267948966 rad pos: -62.5,4.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25226 - - 25229 - - 25230 - type: DeviceNetwork - devices: - 25226 - 25229 - 25230 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25294 components: - rot: -1.5707963267948966 rad pos: -41.5,-26.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25232 - - 25292 - - 25238 - - 25236 - - 22162 - - 25235 - type: DeviceNetwork - devices: - 25232 - 25292 @@ -71750,19 +72061,14 @@ entities: - 22162 - 25235 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25296 components: - rot: -1.5707963267948966 rad pos: -36.5,-33.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25239 - - 25237 - - 25234 - - 25233 - - 25236 - type: DeviceNetwork - devices: - 25239 - 25237 @@ -71770,19 +72076,14 @@ entities: - 25233 - 25236 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25297 components: - rot: -1.5707963267948966 rad pos: -23.5,-33.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25232 - - 25240 - - 25241 - - 25238 - - 25237 - type: DeviceNetwork - devices: - 25232 - 25240 @@ -71790,22 +72091,13 @@ entities: - 25238 - 25237 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25300 components: - pos: -36.5,-14.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25239 - - 25241 - - 25240 - - 25234 - - 25233 - - 25292 - - 25219 - - 25221 - - 25220 - type: DeviceNetwork - devices: - 25239 - 25241 @@ -71817,30 +72109,14 @@ entities: - 25221 - 25220 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25306 components: - rot: -1.5707963267948966 rad pos: 3.5,-36.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25245 - - 25247 - - 25262 - - 15922 - - 15923 - - 25263 - - 25249 - - 25254 - - 25250 - - 21892 - - 25304 - - 25303 - - 25302 - - 25301 - - 22249 - - 25307 - type: DeviceNetwork - devices: - 25245 - 25247 @@ -71859,41 +72135,14 @@ entities: - 22249 - 25307 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25310 components: - rot: -1.5707963267948966 rad pos: -3.5,-31.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 15905 - - 15907 - - 15908 - - 15909 - - 25259 - - 15910 - - 25260 - - 15912 - - 15913 - - 21389 - - 15911 - - 25265 - - 15914 - - 15915 - - 15916 - - 25264 - - 15921 - - 15920 - - 15919 - - 15918 - - 15917 - - 25263 - - 15922 - - 15923 - - 25308 - - 25251 - - 25254 - type: DeviceNetwork - devices: - 25254 - 25251 @@ -71923,27 +72172,14 @@ entities: - 15907 - 15905 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25312 components: - rot: 1.5707963267948966 rad pos: -20.5,-36.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 15921 - - 15920 - - 15919 - - 15918 - - 15917 - - 25262 - - 25248 - - 25245 - - 25249 - - 25308 - - 25264 - - 25314 - - 25313 - type: DeviceNetwork - devices: - 25308 - 25249 @@ -71959,23 +72195,14 @@ entities: - 25314 - 25313 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25318 components: - rot: -1.5707963267948966 rad pos: -4.5,-21.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25262 - - 15909 - - 15908 - - 15907 - - 15905 - - 25254 - - 25252 - - 25260 - - 25261 - type: DeviceNetwork - devices: - 25262 - 15909 @@ -71987,23 +72214,14 @@ entities: - 25260 - 25261 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25320 components: - rot: -1.5707963267948966 rad pos: 0.5,-15.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 21389 - - 25270 - - 25269 - - 25262 - - 15910 - - 25259 - - 25261 - - 25254 - - 25253 - type: DeviceNetwork - devices: - 21389 - 25270 @@ -72015,75 +72233,40 @@ entities: - 25254 - 25253 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25322 components: - rot: -1.5707963267948966 rad pos: -16.5,-13.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25262 - - 15911 - type: DeviceNetwork - devices: - 25262 - 15911 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25324 components: - rot: 1.5707963267948966 rad pos: -27.5,-11.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 21389 - - 25268 - - 25219 - - 25267 - type: DeviceNetwork - devices: - 21389 - 25268 - 25219 - 25267 type: DeviceList - - uid: 25326 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-24.5 - parent: 6747 - type: Transform - - ShutdownSubscribers: - - 25254 - - 25255 - - 21910 - - 25256 - - 25257 - - 25258 - type: DeviceNetwork - - devices: - - 25254 - - 25255 - - 21910 - - 25256 - - 25257 - - 25258 - type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 25386 components: - rot: 3.141592653589793 rad pos: -29.5,-38.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25263 - - 25314 - - 25313 - - 25262 - - 15916 - - 15915 - - 15914 - type: DeviceNetwork - devices: - 25263 - 25314 @@ -72093,68 +72276,47 @@ entities: - 15915 - 15914 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 26947 components: - pos: 73.5,19.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26946 - - 21921 - - 26953 - - 26952 - type: DeviceNetwork - devices: - 26946 - 21921 - 26953 - 26952 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 26959 components: - rot: 3.141592653589793 rad pos: 51.5,5.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 21921 - - 26954 - type: DeviceNetwork - devices: - 21921 - 26954 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 26964 components: - rot: 1.5707963267948966 rad pos: 39.5,15.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 26971 components: - rot: 1.5707963267948966 rad pos: 20.5,16.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 21919 - - 26983 - - 26982 - - 26981 - - 26980 - - 26979 - - 26978 - - 26977 - - 26976 - - 22190 - - 26967 - - 26975 - - 1820 - - 26973 - - 26972 - - 22433 - - 26974 - type: DeviceNetwork - devices: - 21919 - 26983 @@ -72174,20 +72336,13 @@ entities: - 22433 - 26974 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 26990 components: - pos: 59.5,36.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 1784 - - 1959 - - 2421 - - 26988 - - 26946 - - 26948 - - 26949 - type: DeviceNetwork - devices: - 1784 - 1959 @@ -72197,25 +72352,14 @@ entities: - 26948 - 26949 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 26992 components: - rot: 1.5707963267948966 rad pos: 56.5,17.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26985 - - 26948 - - 26949 - - 26967 - - 26987 - - 21921 - - 26961 - - 26950 - - 26951 - - 26960 - - 26952 - type: DeviceNetwork - devices: - 26985 - 26948 @@ -72229,19 +72373,14 @@ entities: - 26960 - 26952 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 27004 components: - rot: -1.5707963267948966 rad pos: 15.5,24.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 22433 - - 27010 - - 1820 - - 27002 - - 27001 - type: DeviceNetwork - devices: - 22433 - 27010 @@ -72249,24 +72388,14 @@ entities: - 27002 - 27001 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 27006 components: - rot: -1.5707963267948966 rad pos: 26.5,33.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 21930 - - 27007 - - 21759 - - 21760 - - 21928 - - 27002 - - 27001 - - 26969 - - 26972 - - 26973 - type: DeviceNetwork - devices: - 21930 - 27007 @@ -72279,42 +72408,51 @@ entities: - 26972 - 26973 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 27008 components: - rot: 1.5707963267948966 rad pos: 12.5,22.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26969 - - 26974 - - 21928 - - 27010 - type: DeviceNetwork - devices: - 26969 - 26974 - 21928 - 27010 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - uid: 27037 components: - rot: 3.141592653589793 rad pos: -17.5,3.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 1958 - - 27034 - - 25212 - - 27035 - type: DeviceNetwork - devices: - 1958 - 27034 - 25212 - 27035 type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice + - uid: 27088 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-70.5 + parent: 6747 + type: Transform + - devices: + - 22149 + - 21884 + - 23520 + - 5046 + - 27086 + type: DeviceList + - joinedGrid: 6747 + type: AtmosDevice - proto: FireAlarmElectronics entities: - uid: 7654 @@ -72371,19 +72509,11 @@ entities: - pos: 7.5,-7.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 767 - - 13485 - type: DeviceNetwork - uid: 21391 components: - pos: 3.5,-11.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 767 - - 13485 - type: DeviceNetwork - uid: 21808 components: - pos: -42.5,-34.5 @@ -72529,66 +72659,36 @@ entities: - pos: 29.5,6.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 73 - - 8860 - type: DeviceNetwork - uid: 22190 components: - pos: 34.5,12.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 73 - - 8860 - - 26971 - - 26970 - type: DeviceNetwork - uid: 22191 components: - pos: 40.5,28.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13176 - - 304 - type: DeviceNetwork - uid: 22192 components: - pos: 41.5,28.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13176 - - 304 - type: DeviceNetwork - uid: 22206 components: - pos: 20.5,4.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 73 - - 8860 - type: DeviceNetwork - uid: 25206 components: - pos: -6.5,3.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 1781 - - 13930 - type: DeviceNetwork - uid: 25224 components: - pos: -40.5,-10.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25288 - - 25287 - type: DeviceNetwork - uid: 25225 components: - pos: -45.5,-10.5 @@ -72629,63 +72729,38 @@ entities: - pos: -16.5,-39.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25306 - - 25305 - type: DeviceNetwork - uid: 25248 components: - pos: -19.5,-38.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25312 - - 25311 - type: DeviceNetwork - uid: 25250 components: - pos: 1.5,-35.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25306 - - 25305 - type: DeviceNetwork - uid: 25251 components: - pos: -3.5,-32.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25310 - - 25309 - type: DeviceNetwork - uid: 25252 components: - pos: 3.5,-27.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25318 - - 25317 - type: DeviceNetwork - uid: 25253 components: - pos: 0.5,-17.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25320 - - 25319 - type: DeviceNetwork - uid: 25255 components: - pos: 9.5,-22.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25326 - - 25325 + - deviceLists: + - 17357 type: DeviceNetwork - uid: 26965 components: @@ -72697,19 +72772,11 @@ entities: - pos: 38.5,14.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13869 - - 1755 - type: DeviceNetwork - uid: 26975 components: - pos: 28.5,21.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26971 - - 26970 - type: DeviceNetwork - uid: 26986 components: - pos: 54.5,22.5 @@ -72720,19 +72787,21 @@ entities: - pos: 56.5,20.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26992 - - 26991 - type: DeviceNetwork - uid: 27034 components: - pos: -14.5,5.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27037 - - 27036 - type: DeviceNetwork + - uid: 27085 + components: + - pos: -12.5,-62.5 + parent: 6747 + type: Transform + - uid: 27086 + components: + - pos: 15.5,-70.5 + parent: 6747 + type: Transform - proto: FirelockEdge entities: - uid: 8054 @@ -72821,12 +72890,6 @@ entities: pos: -36.5,-26.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25294 - - 25293 - - 25300 - - 25299 - type: DeviceNetwork - uid: 26194 components: - rot: 1.5707963267948966 rad @@ -72853,10 +72916,6 @@ entities: - pos: 14.5,-10.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 767 - - 13485 - type: DeviceNetwork - uid: 438 components: - pos: -5.5,-73.5 @@ -72867,74 +72926,47 @@ entities: - pos: 14.5,-8.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 767 - - 13485 - type: DeviceNetwork - uid: 865 components: - pos: 14.5,-9.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 767 - - 13485 - type: DeviceNetwork - uid: 954 components: - pos: 36.5,9.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13869 - - 1755 - - 73 - - 8860 - type: DeviceNetwork - uid: 955 components: - pos: 36.5,10.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13869 - - 1755 - - 73 - - 8860 - type: DeviceNetwork - uid: 956 components: - pos: 36.5,11.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13869 - - 1755 - - 73 - - 8860 + - uid: 1148 + components: + - pos: 14.5,-19.5 + parent: 6747 + type: Transform + - deviceLists: + - 17357 + - 25325 + - 22125 + - 22126 type: DeviceNetwork - uid: 1959 components: - pos: 56.5,32.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26990 - - 26989 - - 13176 - - 304 - type: DeviceNetwork - uid: 2421 components: - pos: 56.5,33.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26990 - - 26989 - - 13176 - - 304 - type: DeviceNetwork - uid: 5324 components: - pos: 56.5,-45.5 @@ -72955,31 +72987,49 @@ entities: - pos: 56.5,-29.5 parent: 6747 type: Transform + - deviceLists: + - 7456 + type: DeviceNetwork - uid: 6532 components: - pos: 56.5,-28.5 parent: 6747 type: Transform + - deviceLists: + - 7456 + type: DeviceNetwork - uid: 6533 components: - pos: 56.5,-27.5 parent: 6747 type: Transform + - deviceLists: + - 7456 + type: DeviceNetwork - uid: 7444 components: - pos: 75.5,-38.5 parent: 6747 type: Transform + - deviceLists: + - 7456 + type: DeviceNetwork - uid: 7445 components: - pos: 74.5,-38.5 parent: 6747 type: Transform + - deviceLists: + - 7456 + type: DeviceNetwork - uid: 7446 components: - pos: 73.5,-38.5 parent: 6747 type: Transform + - deviceLists: + - 7456 + type: DeviceNetwork - uid: 8969 components: - pos: 7.5,-46.5 @@ -73095,19 +73145,11 @@ entities: - pos: 24.5,-4.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 73 - - 8860 - type: DeviceNetwork - uid: 8995 components: - pos: 23.5,-4.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 73 - - 8860 - type: DeviceNetwork - uid: 9007 components: - pos: 51.5,-26.5 @@ -73118,226 +73160,106 @@ entities: - pos: 16.5,11.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 73 - - 8860 - type: DeviceNetwork - uid: 9417 components: - pos: 16.5,10.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 73 - - 8860 - type: DeviceNetwork - uid: 9418 components: - pos: 16.5,9.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 73 - - 8860 - type: DeviceNetwork - uid: 15905 components: - pos: -9.5,-26.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25310 - - 25309 - - 25318 - - 25317 - type: DeviceNetwork - uid: 15907 components: - pos: -9.5,-25.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25310 - - 25309 - - 25318 - - 25317 - type: DeviceNetwork - uid: 15908 components: - pos: -9.5,-24.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25310 - - 25309 - - 25318 - - 25317 - type: DeviceNetwork - uid: 15909 components: - pos: -9.5,-20.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25310 - - 25309 - - 25318 - - 25317 - type: DeviceNetwork - uid: 15910 components: - pos: -9.5,-18.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25310 - - 25309 - - 25320 - - 25319 - type: DeviceNetwork - uid: 15911 components: - pos: -12.5,-20.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25310 - - 25309 - - 25322 - - 25321 - type: DeviceNetwork - uid: 15912 components: - pos: -10.5,-13.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25310 - - 25309 - - 767 - - 13485 - type: DeviceNetwork - uid: 15913 components: - pos: -11.5,-13.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25310 - - 25309 - - 767 - - 13485 - type: DeviceNetwork - uid: 15914 components: - pos: -18.5,-25.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25310 - - 25309 - - 25315 - - 25386 - type: DeviceNetwork - uid: 15915 components: - pos: -18.5,-24.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25310 - - 25309 - - 25315 - - 25386 - type: DeviceNetwork - uid: 15916 components: - pos: -18.5,-23.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25310 - - 25309 - - 25315 - - 25386 - type: DeviceNetwork - uid: 15917 components: - pos: -17.5,-27.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25310 - - 25309 - - 25312 - - 25311 - type: DeviceNetwork - uid: 15918 components: - pos: -17.5,-28.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25310 - - 25309 - - 25312 - - 25311 - type: DeviceNetwork - uid: 15919 components: - pos: -17.5,-29.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25310 - - 25309 - - 25312 - - 25311 - type: DeviceNetwork - uid: 15920 components: - pos: -17.5,-30.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25310 - - 25309 - - 25312 - - 25311 - type: DeviceNetwork - uid: 15921 components: - pos: -17.5,-31.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25310 - - 25309 - - 25312 - - 25311 - type: DeviceNetwork - uid: 15922 components: - pos: -11.5,-35.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25306 - - 25305 - - 25310 - - 25309 - type: DeviceNetwork - uid: 15923 components: - pos: -10.5,-35.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25306 - - 25305 - - 25310 - - 25309 - type: DeviceNetwork - uid: 17052 components: - pos: 48.5,-44.5 @@ -73388,72 +73310,36 @@ entities: - pos: 42.5,13.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 9063 - - 295 - - 13869 - - 1755 - type: DeviceNetwork - uid: 21749 components: - pos: 42.5,11.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 9063 - - 295 - - 13869 - - 1755 - type: DeviceNetwork - uid: 21750 components: - pos: 42.5,7.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 9063 - - 295 - - 13869 - - 1755 - type: DeviceNetwork - uid: 21751 components: - pos: 42.5,6.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 9063 - - 295 - - 13869 - - 1755 - type: DeviceNetwork - uid: 21752 components: - pos: 47.5,14.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 9063 - - 295 - type: DeviceNetwork - uid: 21759 components: - pos: 3.5,33.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27006 - - 27005 - type: DeviceNetwork - uid: 21760 components: - pos: 3.5,32.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27006 - - 27005 - type: DeviceNetwork - uid: 21763 components: - pos: 31.5,-4.5 @@ -73770,691 +73656,336 @@ entities: - pos: 4.5,-7.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25272 - - 767 - - 13485 - type: DeviceNetwork - uid: 25202 components: - pos: 3.5,-7.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25272 - - 767 - - 13485 - type: DeviceNetwork - uid: 25203 components: - pos: -0.5,-7.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25272 - - 767 - - 13485 - type: DeviceNetwork - uid: 25204 components: - pos: -1.5,-7.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25272 - - 767 - - 13485 - type: DeviceNetwork - uid: 25205 components: - pos: -3.5,1.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25272 - - 13930 - type: DeviceNetwork - uid: 25207 components: - pos: -11.5,-1.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25276 - - 25275 - - 13930 - type: DeviceNetwork - uid: 25208 components: - pos: -20.5,-3.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25279 - - 25278 - - 13930 - type: DeviceNetwork - uid: 25209 components: - pos: -27.5,-2.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25282 - - 25281 - - 13930 - type: DeviceNetwork - uid: 25210 components: - pos: -27.5,-1.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25282 - - 25281 - - 13930 - type: DeviceNetwork - uid: 25211 components: - pos: -27.5,-0.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25282 - - 25281 - - 13930 - type: DeviceNetwork - uid: 25216 components: - pos: -31.5,0.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25282 - - 25281 - - 25284 - - 25283 - type: DeviceNetwork - uid: 25217 components: - pos: -34.5,-1.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25282 - - 25281 - - 25285 - - 25286 - type: DeviceNetwork - uid: 25220 components: - pos: -31.5,-14.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25282 - - 25281 - - 25300 - - 25299 - type: DeviceNetwork - uid: 25221 components: - pos: -30.5,-14.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25282 - - 25281 - - 25300 - - 25299 - type: DeviceNetwork - uid: 25222 components: - pos: -34.5,-5.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25282 - - 25281 - - 25288 - - 25287 - type: DeviceNetwork - uid: 25229 components: - pos: -56.5,2.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25291 - - 25290 - type: DeviceNetwork - uid: 25230 components: - pos: -56.5,3.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25291 - - 25290 - type: DeviceNetwork - uid: 25235 components: - pos: -42.5,-31.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25294 - - 25293 - type: DeviceNetwork - uid: 25236 components: - pos: -38.5,-31.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25294 - - 25293 - - 25296 - - 25295 - type: DeviceNetwork - uid: 25237 components: - pos: -34.5,-36.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25296 - - 25295 - - 25297 - - 25298 - type: DeviceNetwork - uid: 25240 components: - pos: -31.5,-34.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25297 - - 25298 - - 25300 - - 25299 - type: DeviceNetwork - uid: 25241 components: - pos: -30.5,-34.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25297 - - 25298 - - 25300 - - 25299 - type: DeviceNetwork - uid: 25249 components: - pos: -16.5,-36.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25306 - - 25305 - - 25312 - - 25311 - type: DeviceNetwork - uid: 25256 components: - pos: 14.5,-22.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25326 - - 25325 - - 22126 - - 22125 + - deviceLists: + - 17357 type: DeviceNetwork - uid: 25257 components: - pos: 14.5,-23.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25326 - - 25325 - - 22126 - - 22125 + - deviceLists: + - 17357 type: DeviceNetwork - uid: 25258 components: - pos: 14.5,-24.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25326 - - 25325 - - 22126 - - 22125 + - deviceLists: + - 17357 type: DeviceNetwork - uid: 25261 components: - pos: -1.5,-19.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25318 - - 25317 - - 25320 - - 25319 - type: DeviceNetwork - uid: 25267 components: - pos: -27.5,-12.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25324 - - 25323 - type: DeviceNetwork - uid: 25268 components: - pos: -16.5,-10.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25323 - - 25324 - - 767 - - 13485 - type: DeviceNetwork - uid: 25269 components: - pos: -8.5,-13.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 767 - - 13485 - - 25320 - - 25319 - type: DeviceNetwork - uid: 25270 components: - pos: -7.5,-13.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 767 - - 13485 - - 25320 - - 25319 - type: DeviceNetwork - uid: 25277 components: - pos: -8.5,-6.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25276 - - 25275 - type: DeviceNetwork - uid: 25301 components: - pos: -0.5,-40.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25306 - - 25305 - - 22092 - - 22091 - type: DeviceNetwork - uid: 25302 components: - pos: 0.5,-40.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25306 - - 25305 - - 22092 - - 22091 - type: DeviceNetwork - uid: 25303 components: - pos: 1.5,-40.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25306 - - 25305 - - 22092 - - 22091 - type: DeviceNetwork - uid: 25304 components: - pos: 2.5,-40.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25306 - - 25305 - - 22092 - - 22091 - type: DeviceNetwork - uid: 25307 components: - pos: -9.5,-40.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25306 - - 25305 - - 22088 - - 22087 - type: DeviceNetwork - uid: 25313 components: - pos: -22.5,-30.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25312 - - 25311 - - 25315 - - 25386 - type: DeviceNetwork - uid: 25314 components: - pos: -22.5,-29.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25312 - - 25311 - - 25315 - - 25386 - type: DeviceNetwork - uid: 26948 components: - pos: 62.5,24.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26990 - - 26989 - - 26992 - - 26991 - type: DeviceNetwork - uid: 26949 components: - pos: 63.5,24.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26990 - - 26989 - - 26992 - - 26991 - type: DeviceNetwork - uid: 26950 components: - pos: 62.5,14.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 9063 - - 295 - - 26992 - - 26991 - type: DeviceNetwork - uid: 26951 components: - pos: 63.5,14.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 9063 - - 295 - - 26992 - - 26991 - type: DeviceNetwork - uid: 26952 components: - pos: 64.5,16.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26947 - - 26945 - - 26992 - - 26991 - type: DeviceNetwork - uid: 26953 components: - pos: 64.5,12.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26947 - - 26945 - - 9063 - - 295 - type: DeviceNetwork - uid: 26954 components: - pos: 51.5,10.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26959 - - 26958 - - 9063 - - 295 - type: DeviceNetwork - uid: 26961 components: - rot: 3.141592653589793 rad pos: 56.5,16.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 9063 - - 295 - - 26992 - - 26991 - type: DeviceNetwork - uid: 26968 components: - pos: 40.5,14.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13869 - - 1755 - type: DeviceNetwork - uid: 26972 components: - pos: 22.5,23.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26971 - - 26970 - - 27006 - - 27005 - type: DeviceNetwork - uid: 26973 components: - pos: 23.5,23.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26971 - - 26970 - - 27006 - - 27005 - type: DeviceNetwork - uid: 26974 components: - pos: 19.5,18.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26971 - - 26970 - - 27008 - - 27009 - type: DeviceNetwork - uid: 26976 components: - pos: 30.5,13.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 73 - - 8860 - - 26971 - - 26970 - type: DeviceNetwork - uid: 26977 components: - pos: 27.5,14.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 73 - - 8860 - - 26971 - - 26970 - type: DeviceNetwork - uid: 26978 components: - pos: 25.5,14.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 73 - - 8860 - - 26971 - - 26970 - type: DeviceNetwork - uid: 26979 components: - pos: 24.5,14.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 73 - - 8860 - - 26971 - - 26970 - type: DeviceNetwork - uid: 26980 components: - pos: 22.5,12.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 73 - - 8860 - - 26971 - - 26970 - type: DeviceNetwork - uid: 26981 components: - pos: 21.5,12.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 73 - - 8860 - - 26971 - - 26970 - type: DeviceNetwork - uid: 26982 components: - pos: 19.5,12.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 73 - - 8860 - - 26971 - - 26970 - type: DeviceNetwork - uid: 26983 components: - pos: 18.5,12.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 73 - - 8860 - - 26971 - - 26970 - type: DeviceNetwork - uid: 26988 components: - pos: 56.5,26.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26990 - - 26989 - - 13176 - - 304 - type: DeviceNetwork - uid: 27001 components: - pos: 5.5,31.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27004 - - 27003 - - 27006 - - 27005 - type: DeviceNetwork - uid: 27002 components: - pos: 11.5,29.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27004 - - 27003 - - 27006 - - 27005 - type: DeviceNetwork - uid: 27007 components: - pos: 3.5,34.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27006 - - 27005 - type: DeviceNetwork - uid: 27010 components: - pos: 13.5,23.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27008 - - 27009 - - 27004 - - 27003 - type: DeviceNetwork - uid: 27035 components: - pos: -19.5,2.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27037 - - 27036 - - 13930 - type: DeviceNetwork - proto: Fireplace entities: - uid: 3332 @@ -75304,6 +74835,17 @@ entities: - pos: -2.425056,19.366982 parent: 6747 type: Transform +- proto: FoodMothGreenLasagneSlice + entities: + - uid: 6518 + components: + - flags: InContainer + type: MetaData + - parent: 6517 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage - proto: FoodOnion entities: - uid: 23217 @@ -75486,11 +75028,11 @@ entities: type: Transform - proto: FoodTinPeachesMaint entities: - - uid: 3016 + - uid: 898 components: - flags: InContainer type: MetaData - - parent: 707 + - parent: 776 type: Transform - canCollide: False type: Physics @@ -75580,6 +75122,8 @@ entities: - pos: 11.5,-20.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#99FFFFFF' type: AtmosPipeColor - uid: 7925 @@ -75588,6 +75132,8 @@ entities: pos: 50.5,35.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#CC6600FF' type: AtmosPipeColor - uid: 11423 @@ -75596,6 +75142,8 @@ entities: pos: 43.5,30.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#66FF66FF' type: AtmosPipeColor - uid: 11971 @@ -75604,6 +75152,8 @@ entities: pos: 58.5,38.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#00FFFFFF' type: AtmosPipeColor - uid: 13117 @@ -75612,12 +75162,16 @@ entities: pos: 60.5,31.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 13152 components: - rot: -1.5707963267948966 rad pos: 59.5,31.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#CC6600FF' type: AtmosPipeColor - uid: 13364 @@ -75625,6 +75179,8 @@ entities: - pos: 60.5,35.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#00FFFFFF' type: AtmosPipeColor - uid: 13369 @@ -75633,6 +75189,8 @@ entities: pos: 62.5,35.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#00FFFFFF' type: AtmosPipeColor - uid: 26913 @@ -75640,6 +75198,8 @@ entities: - pos: 11.5,-19.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#99FFFFFF' type: AtmosPipeColor - proto: GasFilterFlipped @@ -75650,6 +75210,8 @@ entities: pos: 36.5,35.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 7868 @@ -75658,6 +75220,8 @@ entities: pos: 38.5,35.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#CC6600FF' type: AtmosPipeColor - uid: 7869 @@ -75666,6 +75230,8 @@ entities: pos: 40.5,35.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#CC6600FF' type: AtmosPipeColor - uid: 7870 @@ -75674,6 +75240,8 @@ entities: pos: 42.5,35.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#CC6600FF' type: AtmosPipeColor - uid: 7871 @@ -75682,6 +75250,8 @@ entities: pos: 44.5,35.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#CC6600FF' type: AtmosPipeColor - uid: 7872 @@ -75690,6 +75260,8 @@ entities: pos: 46.5,35.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#CC6600FF' type: AtmosPipeColor - uid: 8120 @@ -75697,6 +75269,8 @@ entities: - pos: 53.5,43.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#CC6600FF' type: AtmosPipeColor - proto: GasMinerNitrogenStation @@ -75706,6 +75280,8 @@ entities: - pos: 38.5,41.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - proto: GasMinerOxygenStation entities: - uid: 6693 @@ -75713,13 +75289,8 @@ entities: - pos: 36.5,41.5 parent: 6747 type: Transform -- proto: GasMinerPlasma - entities: - - uid: 7943 - components: - - pos: 40.5,41.5 - parent: 6747 - type: Transform + - joinedGrid: 6747 + type: AtmosDevice - proto: GasMixer entities: - uid: 11233 @@ -75728,6 +75299,8 @@ entities: pos: 2.5,-85.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - proto: GasMixerFlipped entities: - uid: 7887 @@ -75739,6 +75312,8 @@ entities: - inletTwoConcentration: 0.79 inletOneConcentration: 0.21 type: GasMixer + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 11232 @@ -75747,6 +75322,8 @@ entities: pos: 1.5,-85.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - proto: GasOutletInjector entities: - uid: 250 @@ -75755,11 +75332,15 @@ entities: pos: -20.5,9.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 7259 components: - pos: 42.5,40.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF9999FF' type: AtmosPipeColor - uid: 7261 @@ -75767,6 +75348,8 @@ entities: - pos: 40.5,40.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF5500FF' type: AtmosPipeColor - uid: 7262 @@ -75774,6 +75357,8 @@ entities: - pos: 38.5,40.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF3333FF' type: AtmosPipeColor - uid: 7263 @@ -75781,6 +75366,8 @@ entities: - pos: 36.5,40.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#00FFFFFF' type: AtmosPipeColor - uid: 7938 @@ -75788,6 +75375,8 @@ entities: - pos: 44.5,40.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#3399FFFF' type: AtmosPipeColor - uid: 7939 @@ -75795,11 +75384,15 @@ entities: - pos: 46.5,40.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 7940 components: - pos: 48.5,40.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 8107 @@ -75807,6 +75400,8 @@ entities: - pos: 53.5,49.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#CC6600FF' type: AtmosPipeColor - uid: 8108 @@ -75814,36 +75409,48 @@ entities: - pos: 54.5,49.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 11251 components: - rot: 3.141592653589793 rad pos: 3.5,-90.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 11252 components: - rot: 3.141592653589793 rad pos: 1.5,-90.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 13284 components: - rot: -1.5707963267948966 rad pos: 65.5,28.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 13370 components: - rot: -1.5707963267948966 rad pos: 65.5,35.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 15078 components: - rot: 1.5707963267948966 rad pos: -10.5,-73.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15079 @@ -75852,6 +75459,8 @@ entities: pos: -9.5,-78.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15482 @@ -75860,33 +75469,45 @@ entities: pos: -34.5,-71.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 15483 components: - rot: -1.5707963267948966 rad pos: -23.5,-68.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 15484 components: - pos: -42.5,-53.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 15485 components: - rot: 3.141592653589793 rad pos: -48.5,-82.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 16591 components: - pos: -31.5,17.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 16592 components: - pos: -26.5,15.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - proto: GasPassiveGate entities: - uid: 7933 @@ -75895,6 +75516,8 @@ entities: pos: 46.5,31.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#66FF66FF' type: AtmosPipeColor - uid: 23527 @@ -75902,6 +75525,8 @@ entities: - pos: 43.5,33.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#66FF66FF' type: AtmosPipeColor - uid: 25075 @@ -75910,6 +75535,8 @@ entities: pos: -1.5,-24.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - proto: GasPassiveVent @@ -75919,6 +75546,8 @@ entities: - pos: 55.5,48.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#CC6600FF' type: AtmosPipeColor - uid: 7945 @@ -75927,6 +75556,8 @@ entities: pos: 36.5,42.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#00FFFFFF' type: AtmosPipeColor - uid: 7946 @@ -75935,6 +75566,8 @@ entities: pos: 38.5,42.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF3333FF' type: AtmosPipeColor - uid: 7947 @@ -75943,6 +75576,8 @@ entities: pos: 40.5,42.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF5500FF' type: AtmosPipeColor - uid: 7948 @@ -75951,6 +75586,8 @@ entities: pos: 42.5,42.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF9999FF' type: AtmosPipeColor - uid: 7949 @@ -75959,6 +75596,8 @@ entities: pos: 44.5,42.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#3399FFFF' type: AtmosPipeColor - uid: 7950 @@ -75967,12 +75606,16 @@ entities: pos: 46.5,42.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 7951 components: - rot: 1.5707963267948966 rad pos: 48.5,42.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 8031 @@ -75980,6 +75623,8 @@ entities: - pos: 51.5,38.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#CC6600FF' type: AtmosPipeColor - uid: 8151 @@ -75987,17 +75632,23 @@ entities: - pos: 53.5,44.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 11253 components: - rot: 3.141592653589793 rad pos: 2.5,-89.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 13272 components: - pos: 57.5,41.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - proto: GasPipeBend entities: - uid: 344 @@ -78338,6 +77989,22 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - uid: 27298 + components: + - rot: -1.5707963267948966 rad + pos: 59.5,-35.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 27299 + components: + - rot: 3.141592653589793 rad + pos: 61.5,-35.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - proto: GasPipeFourway entities: - uid: 360 @@ -78823,6 +78490,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - uid: 3016 + components: + - rot: -1.5707963267948966 rad + pos: 60.5,-27.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 3126 components: - rot: 3.141592653589793 rad @@ -84443,14 +84118,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14003 - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-28.5 - parent: 6747 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - uid: 14004 components: - rot: -1.5707963267948966 rad @@ -85673,14 +85340,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14190 - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-27.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - uid: 14191 components: - rot: -1.5707963267948966 rad @@ -85697,22 +85356,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14193 - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-27.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 14194 - components: - - rot: 3.141592653589793 rad - pos: 60.5,-28.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - uid: 14195 components: - rot: 1.5707963267948966 rad @@ -103395,6 +103038,118 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - uid: 27300 + components: + - rot: 3.141592653589793 rad + pos: 59.5,-34.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 27301 + components: + - rot: 3.141592653589793 rad + pos: 59.5,-33.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 27302 + components: + - rot: 3.141592653589793 rad + pos: 59.5,-32.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 27303 + components: + - rot: 3.141592653589793 rad + pos: 59.5,-31.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 27304 + components: + - rot: 3.141592653589793 rad + pos: 59.5,-30.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 27305 + components: + - rot: 3.141592653589793 rad + pos: 59.5,-29.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 27306 + components: + - rot: 3.141592653589793 rad + pos: 61.5,-34.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 27307 + components: + - rot: 3.141592653589793 rad + pos: 61.5,-33.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 27308 + components: + - rot: 3.141592653589793 rad + pos: 61.5,-32.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 27309 + components: + - rot: 3.141592653589793 rad + pos: 61.5,-31.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 27310 + components: + - rot: 3.141592653589793 rad + pos: 61.5,-30.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 27311 + components: + - rot: 3.141592653589793 rad + pos: 61.5,-29.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 27312 + components: + - rot: 3.141592653589793 rad + pos: 61.5,-28.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 27313 + components: + - rot: 3.141592653589793 rad + pos: 64.5,-28.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - proto: GasPipeTJunction entities: - uid: 293 @@ -103412,6 +103167,13 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - uid: 1597 + components: + - pos: 63.5,-28.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 1782 components: - rot: -1.5707963267948966 rad @@ -103420,6 +103182,13 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - uid: 2284 + components: + - pos: 64.5,-27.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 2793 components: - rot: 3.141592653589793 rad @@ -103428,6 +103197,13 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 3447 + components: + - pos: 61.5,-27.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 5983 components: - rot: -1.5707963267948966 rad @@ -104271,13 +104047,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13967 - components: - - pos: 60.5,-27.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - uid: 13969 components: - rot: -1.5707963267948966 rad @@ -106637,12 +106406,22 @@ entities: type: AtmosPipeColor - proto: GasPort entities: + - uid: 707 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-25.5 + parent: 6747 + type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 7258 components: - rot: -1.5707963267948966 rad pos: 52.5,34.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#CC6600FF' type: AtmosPipeColor - uid: 7260 @@ -106651,6 +106430,8 @@ entities: pos: 52.5,33.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#CC6600FF' type: AtmosPipeColor - uid: 7753 @@ -106659,6 +106440,8 @@ entities: pos: 35.5,32.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 7864 @@ -106667,6 +106450,8 @@ entities: pos: 35.5,33.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 7865 @@ -106675,6 +106460,8 @@ entities: pos: 35.5,34.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 7883 @@ -106683,6 +106470,8 @@ entities: pos: 36.5,34.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#00FFFFFF' type: AtmosPipeColor - uid: 7888 @@ -106691,6 +106480,8 @@ entities: pos: 38.5,34.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF3333FF' type: AtmosPipeColor - uid: 7910 @@ -106699,42 +106490,56 @@ entities: pos: 49.5,34.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 7913 components: - rot: 3.141592653589793 rad pos: 45.5,34.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 7917 components: - rot: 3.141592653589793 rad pos: 41.5,34.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 7918 components: - rot: 3.141592653589793 rad pos: 47.5,34.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 7926 components: - rot: 3.141592653589793 rad pos: 48.5,31.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 8128 components: - rot: 3.141592653589793 rad pos: 54.5,44.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 8144 components: - rot: 1.5707963267948966 rad pos: 53.5,33.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#CC6600FF' type: AtmosPipeColor - uid: 8145 @@ -106743,6 +106548,8 @@ entities: pos: 53.5,34.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#CC6600FF' type: AtmosPipeColor - uid: 11226 @@ -106750,32 +106557,44 @@ entities: - pos: 1.5,-83.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 11227 components: - pos: 2.5,-83.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 11228 components: - pos: 3.5,-83.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 11229 components: - pos: 4.5,-83.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 11256 components: - pos: 2.5,-86.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 11427 components: - rot: 1.5707963267948966 rad pos: 49.5,32.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#CC6600FF' type: AtmosPipeColor - uid: 11428 @@ -106784,6 +106603,8 @@ entities: pos: 49.5,33.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#CC6600FF' type: AtmosPipeColor - uid: 11442 @@ -106792,6 +106613,8 @@ entities: pos: 42.5,32.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#66FF66FF' type: AtmosPipeColor - uid: 11769 @@ -106799,12 +106622,16 @@ entities: - pos: -8.5,-84.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 13084 components: - rot: 1.5707963267948966 rad pos: 59.5,33.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#00FFFFFF' type: AtmosPipeColor - uid: 13145 @@ -106812,12 +106639,16 @@ entities: - pos: 60.5,32.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 13150 components: - rot: 3.141592653589793 rad pos: 61.5,28.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#CC6600FF' type: AtmosPipeColor - uid: 13151 @@ -106826,6 +106657,8 @@ entities: pos: 60.5,28.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#CC6600FF' type: AtmosPipeColor - uid: 13282 @@ -106834,18 +106667,24 @@ entities: pos: 62.5,28.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 13340 components: - rot: 1.5707963267948966 rad pos: 59.5,35.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 13341 components: - rot: 1.5707963267948966 rad pos: 59.5,34.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#00FFFFFF' type: AtmosPipeColor - uid: 14914 @@ -106854,18 +106693,24 @@ entities: pos: 13.5,-20.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 22211 components: - rot: 1.5707963267948966 rad pos: 10.5,-20.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 23526 components: - rot: 1.5707963267948966 rad pos: 42.5,34.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF9999FF' type: AtmosPipeColor - uid: 23897 @@ -106874,6 +106719,8 @@ entities: pos: 10.5,-19.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - proto: GasPressurePump entities: - uid: 246 @@ -106882,6 +106729,8 @@ entities: pos: -19.5,9.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 7880 @@ -106889,6 +106738,8 @@ entities: - pos: 37.5,35.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#00FFFFFF' type: AtmosPipeColor - uid: 7881 @@ -106896,6 +106747,8 @@ entities: - pos: 39.5,35.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF3333FF' type: AtmosPipeColor - uid: 7901 @@ -106904,6 +106757,8 @@ entities: pos: 48.5,35.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 7903 @@ -106911,6 +106766,8 @@ entities: - pos: 48.5,32.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 7907 @@ -106918,6 +106775,8 @@ entities: - pos: 49.5,35.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 7914 @@ -106925,11 +106784,15 @@ entities: - pos: 47.5,35.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 7915 components: - pos: 41.5,35.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF5500FF' type: AtmosPipeColor - uid: 7919 @@ -106937,6 +106800,8 @@ entities: - pos: 43.5,35.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF9999FF' type: AtmosPipeColor - uid: 7920 @@ -106944,6 +106809,8 @@ entities: - pos: 45.5,35.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#3399FFFF' type: AtmosPipeColor - uid: 7931 @@ -106952,6 +106819,8 @@ entities: pos: 48.5,30.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#CC6600FF' type: AtmosPipeColor - uid: 8121 @@ -106960,6 +106829,8 @@ entities: pos: 53.5,46.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#CC6600FF' type: AtmosPipeColor - uid: 8127 @@ -106968,11 +106839,15 @@ entities: pos: 54.5,45.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 8141 components: - pos: 54.5,35.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#CC6600FF' type: AtmosPipeColor - uid: 11245 @@ -106980,23 +106855,31 @@ entities: - pos: 1.5,-87.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 11246 components: - pos: 3.5,-87.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 11255 components: - rot: 3.141592653589793 rad pos: 2.5,-87.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 11425 components: - rot: 1.5707963267948966 rad pos: 44.5,32.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#66FF66FF' type: AtmosPipeColor - uid: 11439 @@ -107005,6 +106888,8 @@ entities: pos: 40.5,29.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 11441 @@ -107012,6 +106897,8 @@ entities: - pos: 41.5,30.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13283 @@ -107020,12 +106907,16 @@ entities: pos: 63.5,28.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 15071 components: - rot: -1.5707963267948966 rad pos: -8.5,-73.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15486 @@ -107034,6 +106925,8 @@ entities: pos: -24.5,-68.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15521 @@ -107042,6 +106935,8 @@ entities: pos: -42.5,-54.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15538 @@ -107049,6 +106944,8 @@ entities: - pos: -34.5,-70.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15546 @@ -107056,6 +106953,8 @@ entities: - pos: -48.5,-81.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 16571 @@ -107064,6 +106963,8 @@ entities: pos: -31.5,16.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 16572 @@ -107072,6 +106973,8 @@ entities: pos: -26.5,14.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 26911 @@ -107080,6 +106983,8 @@ entities: pos: 13.5,-19.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#99FFFFFF' type: AtmosPipeColor - proto: GasRecycler @@ -107089,6 +106994,8 @@ entities: - pos: 45.5,31.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#66FF66FF' type: AtmosPipeColor - proto: GasThermoMachineFreezer @@ -107100,6 +107007,8 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - joinedGrid: 6747 + type: AtmosDevice - uid: 8147 components: - pos: 51.5,43.5 @@ -107107,16 +107016,22 @@ entities: type: Transform - color: '#CC6600FF' type: AtmosPipeColor + - joinedGrid: 6747 + type: AtmosDevice - uid: 11224 components: - pos: 0.5,-83.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 11601 components: - pos: -3.5,-86.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 22329 components: - pos: 13.5,-17.5 @@ -107124,6 +107039,8 @@ entities: type: Transform - color: '#99FFFFFF' type: AtmosPipeColor + - joinedGrid: 6747 + type: AtmosDevice - proto: GasThermoMachineFreezerEnabled entities: - uid: 11825 @@ -107133,6 +107050,8 @@ entities: type: Transform - targetTemperature: 249.8167 type: GasThermoMachine + - joinedGrid: 6747 + type: AtmosDevice - proto: GasThermoMachineHeater entities: - uid: 7935 @@ -107143,6 +107062,8 @@ entities: type: Transform - color: '#66FF66FF' type: AtmosPipeColor + - joinedGrid: 6747 + type: AtmosDevice - uid: 8146 components: - pos: 51.5,45.5 @@ -107150,16 +107071,22 @@ entities: type: Transform - color: '#CC6600FF' type: AtmosPipeColor + - joinedGrid: 6747 + type: AtmosDevice - uid: 11225 components: - pos: 0.5,-85.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 11602 components: - pos: -11.5,-86.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 22502 components: - pos: 39.5,32.5 @@ -107167,6 +107094,8 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - joinedGrid: 6747 + type: AtmosDevice - proto: GasValve entities: - uid: 7542 @@ -107176,6 +107105,8 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 6747 + type: AtmosDevice - color: '#CC6600FF' type: AtmosPipeColor - uid: 7862 @@ -107183,6 +107114,8 @@ entities: - pos: 34.5,31.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 7892 @@ -107191,6 +107124,8 @@ entities: pos: 41.5,32.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 7893 @@ -107201,6 +107136,8 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 8030 @@ -107208,6 +107145,8 @@ entities: - pos: 51.5,37.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#CC6600FF' type: AtmosPipeColor - uid: 8210 @@ -107218,6 +107157,8 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 6747 + type: AtmosDevice - color: '#CC6600FF' type: AtmosPipeColor - uid: 11944 @@ -107227,6 +107168,8 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 6747 + type: AtmosDevice - color: '#CC6600FF' type: AtmosPipeColor - uid: 14625 @@ -107236,6 +107179,8 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14628 @@ -107245,6 +107190,8 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24983 @@ -107253,15 +107200,32 @@ entities: pos: -0.5,-21.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#E5CCFFFF' type: AtmosPipeColor - proto: GasVentPump entities: + - uid: 3675 + components: + - rot: 3.141592653589793 rad + pos: 64.5,-29.5 + parent: 6747 + type: Transform + - deviceLists: + - 7456 + type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 7254 components: - pos: 47.5,17.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 8433 @@ -107270,9 +107234,8 @@ entities: pos: 42.5,29.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 304 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 11770 @@ -107281,14 +107244,15 @@ entities: pos: -8.5,-87.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 13062 components: - pos: 53.5,17.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 9063 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13246 @@ -107297,9 +107261,8 @@ entities: pos: 23.5,-2.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 8860 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13451 @@ -107308,9 +107271,8 @@ entities: pos: 39.5,10.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 1755 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13452 @@ -107319,9 +107281,8 @@ entities: pos: 19.5,10.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 8860 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13484 @@ -107330,9 +107291,8 @@ entities: pos: 10.5,27.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27003 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13486 @@ -107340,6 +107300,8 @@ entities: - pos: -0.5,35.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13487 @@ -107348,6 +107310,8 @@ entities: pos: -56.5,-42.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13496 @@ -107355,6 +107319,8 @@ entities: - pos: 32.5,1.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13499 @@ -107363,6 +107329,8 @@ entities: pos: 37.5,-0.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13658 @@ -107370,6 +107338,8 @@ entities: - pos: 36.5,-6.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13659 @@ -107377,6 +107347,8 @@ entities: - pos: 39.5,-9.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13660 @@ -107384,6 +107356,8 @@ entities: - pos: 41.5,-6.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13661 @@ -107391,6 +107365,8 @@ entities: - pos: 48.5,-6.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13662 @@ -107399,6 +107375,8 @@ entities: pos: 51.5,-10.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13664 @@ -107407,6 +107385,8 @@ entities: pos: 50.5,-21.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13665 @@ -107415,6 +107395,8 @@ entities: pos: 46.5,-24.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13666 @@ -107423,6 +107405,8 @@ entities: pos: 41.5,-24.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13667 @@ -107431,6 +107415,8 @@ entities: pos: 45.5,-17.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13668 @@ -107439,6 +107425,8 @@ entities: pos: 45.5,-13.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13669 @@ -107447,6 +107435,8 @@ entities: pos: 36.5,-13.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13670 @@ -107454,6 +107444,8 @@ entities: - pos: 36.5,-17.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13671 @@ -107462,6 +107454,8 @@ entities: pos: 38.5,-24.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13672 @@ -107470,6 +107464,8 @@ entities: pos: 36.5,-24.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13673 @@ -107478,6 +107474,8 @@ entities: pos: 29.5,-14.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13674 @@ -107485,6 +107483,8 @@ entities: - pos: 28.5,-9.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13676 @@ -107492,6 +107492,8 @@ entities: - pos: 38.5,-20.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13774 @@ -107500,6 +107502,8 @@ entities: pos: 26.5,-9.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13784 @@ -107508,6 +107512,8 @@ entities: pos: 32.5,-22.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13951 @@ -107516,6 +107522,8 @@ entities: pos: 5.5,-37.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13952 @@ -107524,6 +107532,8 @@ entities: pos: 17.5,-37.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13953 @@ -107532,6 +107542,8 @@ entities: pos: 14.5,-34.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13954 @@ -107540,6 +107552,8 @@ entities: pos: 21.5,-33.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13955 @@ -107548,9 +107562,8 @@ entities: pos: 12.5,-26.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25325 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13956 @@ -107558,6 +107571,8 @@ entities: - pos: 17.5,-25.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13957 @@ -107565,6 +107580,8 @@ entities: - pos: 18.5,-13.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13958 @@ -107572,6 +107589,8 @@ entities: - pos: 25.5,-22.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13959 @@ -107580,6 +107599,8 @@ entities: pos: 26.5,-27.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13960 @@ -107588,6 +107609,8 @@ entities: pos: 26.5,-35.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14115 @@ -107595,6 +107618,8 @@ entities: - pos: 58.5,-1.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14125 @@ -107603,6 +107628,8 @@ entities: pos: 58.5,-10.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14130 @@ -107611,6 +107638,8 @@ entities: pos: 58.5,-19.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14230 @@ -107619,6 +107648,8 @@ entities: pos: 37.5,-29.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14231 @@ -107627,6 +107658,8 @@ entities: pos: 46.5,-32.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14232 @@ -107634,14 +107667,8 @@ entities: - pos: 53.5,-24.5 parent: 6747 type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 14233 - components: - - rot: 3.141592653589793 rad - pos: 60.5,-29.5 - parent: 6747 - type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14234 @@ -107650,6 +107677,8 @@ entities: pos: 53.5,-29.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14235 @@ -107657,6 +107686,8 @@ entities: - pos: 74.5,-20.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14236 @@ -107665,6 +107696,11 @@ entities: pos: 74.5,-36.5 parent: 6747 type: Transform + - deviceLists: + - 7456 + type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14264 @@ -107673,6 +107709,8 @@ entities: pos: 36.5,-39.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14293 @@ -107681,6 +107719,8 @@ entities: pos: 30.5,-36.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14294 @@ -107689,6 +107729,8 @@ entities: pos: 41.5,-32.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14397 @@ -107696,6 +107738,8 @@ entities: - pos: 67.5,-41.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14439 @@ -107704,6 +107748,8 @@ entities: pos: 58.5,-41.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14717 @@ -107712,6 +107758,8 @@ entities: pos: 36.5,-51.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14718 @@ -107719,6 +107767,8 @@ entities: - pos: 36.5,-45.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14719 @@ -107726,6 +107776,8 @@ entities: - pos: 54.5,-45.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14720 @@ -107734,6 +107786,8 @@ entities: pos: 74.5,-47.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14721 @@ -107741,6 +107795,8 @@ entities: - pos: 72.5,-41.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14726 @@ -107749,6 +107805,8 @@ entities: pos: 28.5,-50.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14727 @@ -107757,6 +107815,8 @@ entities: pos: 29.5,-61.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14733 @@ -107764,6 +107824,8 @@ entities: - pos: 25.5,-44.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14735 @@ -107772,6 +107834,8 @@ entities: pos: 25.5,-56.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14743 @@ -107780,6 +107844,8 @@ entities: pos: 26.5,-49.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14744 @@ -107787,6 +107853,8 @@ entities: - pos: 19.5,-45.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14759 @@ -107795,6 +107863,8 @@ entities: pos: -11.5,-48.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14760 @@ -107802,6 +107872,8 @@ entities: - pos: -9.5,-42.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14763 @@ -107809,6 +107881,8 @@ entities: - pos: -11.5,-45.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14774 @@ -107816,6 +107890,8 @@ entities: - pos: -5.5,-45.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14806 @@ -107823,6 +107899,8 @@ entities: - pos: 5.5,-45.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14829 @@ -107831,6 +107909,8 @@ entities: pos: 1.5,-82.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14830 @@ -107838,6 +107918,8 @@ entities: - pos: 3.5,-75.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14841 @@ -107846,6 +107928,8 @@ entities: pos: -7.5,-83.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14842 @@ -107854,6 +107938,8 @@ entities: pos: -4.5,-81.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14896 @@ -107862,6 +107948,8 @@ entities: pos: 8.5,-62.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14897 @@ -107869,6 +107957,8 @@ entities: - pos: 6.5,-72.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14899 @@ -107877,6 +107967,8 @@ entities: pos: 8.5,-67.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14902 @@ -107885,6 +107977,8 @@ entities: pos: 19.5,-66.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14903 @@ -107893,6 +107987,8 @@ entities: pos: 19.5,-58.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14906 @@ -107901,6 +107997,8 @@ entities: pos: 19.5,-51.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14910 @@ -107909,6 +108007,8 @@ entities: pos: 20.5,-68.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14920 @@ -107917,6 +108017,8 @@ entities: pos: 14.5,-67.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 14926 @@ -107925,6 +108027,8 @@ entities: pos: 28.5,-66.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15004 @@ -107933,6 +108037,8 @@ entities: pos: 24.5,-87.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15005 @@ -107941,6 +108047,8 @@ entities: pos: 32.5,-81.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15006 @@ -107948,6 +108056,8 @@ entities: - pos: 27.5,-78.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15007 @@ -107956,6 +108066,8 @@ entities: pos: 37.5,-83.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15011 @@ -107964,6 +108076,8 @@ entities: pos: 18.5,-74.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15131 @@ -107971,6 +108085,8 @@ entities: - pos: 10.5,-55.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15132 @@ -107979,6 +108095,8 @@ entities: pos: 15.5,-56.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15141 @@ -107987,6 +108105,8 @@ entities: pos: 10.5,-59.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15144 @@ -107995,6 +108115,8 @@ entities: pos: 14.5,-58.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15162 @@ -108003,6 +108125,8 @@ entities: pos: 2.5,-56.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15170 @@ -108011,6 +108135,8 @@ entities: pos: -0.5,-58.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15172 @@ -108019,6 +108145,8 @@ entities: pos: 3.5,-60.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15208 @@ -108027,6 +108155,8 @@ entities: pos: 9.5,-42.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15211 @@ -108035,6 +108165,8 @@ entities: pos: -0.5,-44.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15230 @@ -108043,6 +108175,8 @@ entities: pos: -5.5,-54.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15267 @@ -108051,6 +108185,8 @@ entities: pos: 1.5,-65.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15391 @@ -108058,6 +108194,8 @@ entities: - pos: -33.5,-47.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15392 @@ -108065,6 +108203,8 @@ entities: - pos: -31.5,-47.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15393 @@ -108073,6 +108213,8 @@ entities: pos: -23.5,-49.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15394 @@ -108081,6 +108223,8 @@ entities: pos: -27.5,-53.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15395 @@ -108089,6 +108233,8 @@ entities: pos: -16.5,-54.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15396 @@ -108097,6 +108243,8 @@ entities: pos: -12.5,-54.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15403 @@ -108105,6 +108253,8 @@ entities: pos: -32.5,-54.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15411 @@ -108113,6 +108263,8 @@ entities: pos: -27.5,-58.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15412 @@ -108121,6 +108273,8 @@ entities: pos: -31.5,-59.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15430 @@ -108128,6 +108282,8 @@ entities: - pos: -18.5,-57.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15431 @@ -108136,6 +108292,8 @@ entities: pos: -11.5,-58.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15445 @@ -108144,6 +108302,8 @@ entities: pos: 61.5,-52.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15555 @@ -108152,6 +108312,8 @@ entities: pos: -45.5,-37.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15574 @@ -108159,6 +108321,8 @@ entities: - pos: -44.5,-40.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15989 @@ -108166,6 +108330,8 @@ entities: - pos: 16.5,-1.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15990 @@ -108174,9 +108340,8 @@ entities: pos: 10.5,-10.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13485 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 16067 @@ -108185,9 +108350,8 @@ entities: pos: 2.5,-36.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25305 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 16623 @@ -108196,6 +108360,8 @@ entities: pos: -9.5,-65.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 16624 @@ -108204,6 +108370,8 @@ entities: pos: -7.5,-65.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 16625 @@ -108212,6 +108380,8 @@ entities: pos: -6.5,-61.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 16626 @@ -108220,6 +108390,8 @@ entities: pos: -5.5,-58.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 16723 @@ -108227,6 +108399,8 @@ entities: - pos: 13.5,-21.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 16844 @@ -108235,6 +108409,8 @@ entities: pos: 46.5,-41.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 16846 @@ -108243,6 +108419,8 @@ entities: pos: 51.5,-43.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 17062 @@ -108251,6 +108429,8 @@ entities: pos: 54.5,-42.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 17395 @@ -108259,6 +108439,8 @@ entities: pos: 47.5,-51.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22062 @@ -108266,9 +108448,8 @@ entities: - pos: 12.5,34.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27005 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22268 @@ -108277,6 +108458,8 @@ entities: pos: 6.5,-13.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22284 @@ -108285,9 +108468,8 @@ entities: pos: 15.5,5.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 8860 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22310 @@ -108295,6 +108477,8 @@ entities: - pos: 22.5,-13.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22311 @@ -108303,6 +108487,8 @@ entities: pos: 21.5,-16.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22312 @@ -108311,6 +108497,8 @@ entities: pos: 22.5,-19.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22324 @@ -108318,6 +108506,8 @@ entities: - pos: 18.5,-7.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22326 @@ -108326,6 +108516,8 @@ entities: pos: 33.5,-14.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23663 @@ -108334,9 +108526,8 @@ entities: pos: -2.5,-21.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25317 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#E5CCFFFF' type: AtmosPipeColor - uid: 23664 @@ -108344,6 +108535,8 @@ entities: - pos: -19.5,-46.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23671 @@ -108352,6 +108545,8 @@ entities: pos: 4.5,-5.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23683 @@ -108360,6 +108555,8 @@ entities: pos: -2.5,-0.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23684 @@ -108368,6 +108565,8 @@ entities: pos: -0.5,-5.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23752 @@ -108375,9 +108574,8 @@ entities: - pos: -12.5,-10.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13485 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24049 @@ -108386,6 +108584,8 @@ entities: pos: 34.5,-94.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24050 @@ -108393,6 +108593,8 @@ entities: - pos: 27.5,-91.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24051 @@ -108401,6 +108603,8 @@ entities: pos: 27.5,-94.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24087 @@ -108409,9 +108613,8 @@ entities: pos: -25.5,-11.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25323 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24088 @@ -108419,9 +108622,8 @@ entities: - pos: -20.5,-10.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25323 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24089 @@ -108429,9 +108631,8 @@ entities: - pos: -18.5,-10.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25323 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24119 @@ -108440,9 +108641,8 @@ entities: pos: -5.5,-6.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25271 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24120 @@ -108450,9 +108650,8 @@ entities: - pos: -5.5,-1.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13930 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24133 @@ -108461,9 +108660,8 @@ entities: pos: -5.5,2.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13930 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24175 @@ -108472,9 +108670,8 @@ entities: pos: -17.5,-2.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13930 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24178 @@ -108483,9 +108680,8 @@ entities: pos: -6.5,-6.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13930 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24179 @@ -108494,9 +108690,8 @@ entities: pos: -13.5,-6.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25275 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24200 @@ -108505,9 +108700,8 @@ entities: pos: -23.5,-6.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25278 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24201 @@ -108516,9 +108710,8 @@ entities: pos: -20.5,-6.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25278 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24259 @@ -108526,9 +108719,8 @@ entities: - pos: -38.5,7.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25283 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24268 @@ -108536,9 +108728,8 @@ entities: - pos: -33.5,3.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25283 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24269 @@ -108547,9 +108738,8 @@ entities: pos: -33.5,6.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25283 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24270 @@ -108558,9 +108748,8 @@ entities: pos: -33.5,9.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25283 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24323 @@ -108569,9 +108758,8 @@ entities: pos: -29.5,-12.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25281 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24324 @@ -108580,9 +108768,8 @@ entities: pos: -29.5,-8.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25281 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24325 @@ -108591,9 +108778,8 @@ entities: pos: -29.5,-5.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25281 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24384 @@ -108601,9 +108787,8 @@ entities: - pos: -37.5,0.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25286 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24407 @@ -108612,6 +108797,8 @@ entities: pos: -43.5,-0.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24408 @@ -108620,9 +108807,8 @@ entities: pos: -41.5,0.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25286 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24409 @@ -108631,6 +108817,8 @@ entities: pos: -45.5,-0.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24410 @@ -108639,6 +108827,8 @@ entities: pos: -47.5,-0.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24432 @@ -108647,9 +108837,8 @@ entities: pos: -42.5,9.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25286 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24433 @@ -108657,9 +108846,8 @@ entities: - pos: -46.5,8.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25286 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24435 @@ -108668,9 +108856,8 @@ entities: pos: -46.5,4.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25286 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24457 @@ -108679,9 +108866,8 @@ entities: pos: -41.5,-9.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25287 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24459 @@ -108689,9 +108875,8 @@ entities: - pos: -42.5,-4.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25287 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24461 @@ -108700,9 +108885,8 @@ entities: pos: -41.5,-5.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25287 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24643 @@ -108711,9 +108895,8 @@ entities: pos: -67.5,-3.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25290 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24705 @@ -108721,9 +108904,8 @@ entities: - pos: -63.5,12.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25290 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24706 @@ -108732,9 +108914,8 @@ entities: pos: -64.5,7.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25290 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24707 @@ -108742,9 +108923,8 @@ entities: - pos: -60.5,6.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25290 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24708 @@ -108752,9 +108932,8 @@ entities: - pos: -66.5,7.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25290 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24709 @@ -108762,9 +108941,8 @@ entities: - pos: -71.5,5.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25290 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24710 @@ -108773,9 +108951,8 @@ entities: pos: -68.5,0.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25290 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24711 @@ -108784,9 +108961,8 @@ entities: pos: -63.5,-6.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25290 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24844 @@ -108795,9 +108971,8 @@ entities: pos: -42.5,-24.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25293 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24847 @@ -108806,9 +108981,8 @@ entities: pos: -34.5,-30.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25299 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24848 @@ -108817,9 +108991,8 @@ entities: pos: -34.5,-27.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25299 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24849 @@ -108827,9 +109000,8 @@ entities: - pos: -37.5,-26.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25293 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24850 @@ -108837,9 +109009,8 @@ entities: - pos: -39.5,-22.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25293 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24879 @@ -108848,9 +109019,8 @@ entities: pos: -37.5,-36.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25295 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24887 @@ -108859,9 +109029,8 @@ entities: pos: -25.5,-35.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25298 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24888 @@ -108870,9 +109039,8 @@ entities: pos: -26.5,-39.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25298 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24889 @@ -108881,9 +109049,8 @@ entities: pos: -32.5,-39.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25298 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24924 @@ -108892,9 +109059,8 @@ entities: pos: -14.5,-36.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25305 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24940 @@ -108903,6 +109069,8 @@ entities: pos: -0.5,-31.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 25038 @@ -108911,9 +109079,8 @@ entities: pos: -4.5,-30.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25309 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 25039 @@ -108922,9 +109089,8 @@ entities: pos: -21.5,-28.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25311 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 25065 @@ -108933,9 +109099,8 @@ entities: pos: -19.5,-35.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25311 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 25074 @@ -108944,9 +109109,8 @@ entities: pos: 3.5,-25.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25317 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 25096 @@ -108955,9 +109119,8 @@ entities: pos: -12.5,-23.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25309 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 25114 @@ -108966,9 +109129,8 @@ entities: pos: -29.5,-17.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25299 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 25115 @@ -108977,9 +109139,8 @@ entities: pos: -29.5,-22.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25299 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 25116 @@ -108987,9 +109148,8 @@ entities: - pos: -24.5,-18.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25315 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 25117 @@ -108998,9 +109158,8 @@ entities: pos: -24.5,-29.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25315 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 25131 @@ -109009,6 +109168,8 @@ entities: pos: -27.5,-23.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 25136 @@ -109016,9 +109177,8 @@ entities: - pos: -6.5,-22.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25317 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 25178 @@ -109027,9 +109187,8 @@ entities: pos: -3.5,-17.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25319 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 25179 @@ -109037,6 +109196,8 @@ entities: - pos: -11.5,-14.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 25185 @@ -109044,9 +109205,8 @@ entities: - pos: -19.5,-19.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25321 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 25289 @@ -109055,9 +109215,8 @@ entities: pos: -35.5,-5.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25287 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 25441 @@ -109066,6 +109225,8 @@ entities: pos: -53.5,-11.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 25442 @@ -109074,6 +109235,8 @@ entities: pos: -53.5,-7.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 25595 @@ -109081,9 +109244,8 @@ entities: - pos: 3.5,-70.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 22234 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 25606 @@ -109092,9 +109254,8 @@ entities: pos: 47.5,8.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 9063 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 26028 @@ -109103,9 +109264,8 @@ entities: pos: 59.5,18.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26991 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 26030 @@ -109114,9 +109274,8 @@ entities: pos: 58.5,26.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26989 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 26031 @@ -109125,9 +109284,8 @@ entities: pos: 54.5,26.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 304 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 26056 @@ -109136,9 +109294,8 @@ entities: pos: 61.5,11.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 9063 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 26058 @@ -109147,9 +109304,8 @@ entities: pos: 66.5,11.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26945 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 26064 @@ -109158,9 +109314,8 @@ entities: pos: 71.5,6.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26945 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 26069 @@ -109169,9 +109324,8 @@ entities: pos: 68.5,9.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26958 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 26070 @@ -109180,9 +109334,8 @@ entities: pos: 50.5,8.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26958 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 26072 @@ -109191,9 +109344,8 @@ entities: pos: 55.5,8.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26958 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 26074 @@ -109202,9 +109354,8 @@ entities: pos: 60.5,8.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26958 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 26169 @@ -109213,6 +109364,8 @@ entities: pos: 35.5,25.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 26170 @@ -109221,6 +109374,8 @@ entities: pos: 28.5,32.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 26172 @@ -109229,6 +109384,8 @@ entities: pos: 28.5,24.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 26276 @@ -109237,9 +109394,8 @@ entities: pos: 33.5,14.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26970 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 26317 @@ -109248,9 +109404,8 @@ entities: pos: 26.5,19.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26970 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 26337 @@ -109259,9 +109414,8 @@ entities: pos: 17.5,25.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27003 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 26345 @@ -109269,9 +109423,8 @@ entities: - pos: 18.5,22.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27009 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 26346 @@ -109280,9 +109433,8 @@ entities: pos: 11.5,21.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27009 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 26367 @@ -109290,9 +109442,8 @@ entities: - pos: 23.5,27.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27005 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 26828 @@ -109301,9 +109452,8 @@ entities: pos: -25.5,7.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13930 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 26829 @@ -109312,9 +109462,8 @@ entities: pos: -25.5,4.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13930 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 26830 @@ -109323,9 +109472,8 @@ entities: pos: -25.5,1.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13930 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 26831 @@ -109334,9 +109482,8 @@ entities: pos: -17.5,6.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27036 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 26997 @@ -109344,9 +109491,8 @@ entities: - pos: 16.5,14.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26970 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 27011 @@ -109355,9 +109501,8 @@ entities: pos: 4.5,29.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27003 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 27020 @@ -109366,9 +109511,8 @@ entities: pos: 3.5,24.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27003 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 27021 @@ -109377,21 +109521,58 @@ entities: pos: 6.5,24.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27003 + - joinedGrid: 6747 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 27297 + components: + - rot: -1.5707963267948966 rad + pos: 62.5,-35.5 + parent: 6747 + type: Transform + - deviceLists: + - 7456 type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - proto: GasVentScrubber entities: + - uid: 3243 + components: + - rot: 3.141592653589793 rad + pos: 63.5,-29.5 + parent: 6747 + type: Transform + - deviceLists: + - 7456 + type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3755 + components: + - rot: 1.5707963267948966 rad + pos: 58.5,-35.5 + parent: 6747 + type: Transform + - deviceLists: + - 7456 + type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 7909 components: - pos: 36.5,32.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 304 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 11508 @@ -109400,6 +109581,8 @@ entities: pos: 36.5,-29.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13077 @@ -109407,9 +109590,8 @@ entities: - pos: 51.5,25.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 304 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13162 @@ -109418,9 +109600,8 @@ entities: pos: 39.5,9.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 1755 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13163 @@ -109428,6 +109609,8 @@ entities: - pos: 30.5,33.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13174 @@ -109436,6 +109619,8 @@ entities: pos: 35.5,26.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13208 @@ -109443,6 +109628,8 @@ entities: - pos: 30.5,1.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13217 @@ -109451,9 +109638,8 @@ entities: pos: 15.5,18.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27009 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13231 @@ -109461,9 +109647,8 @@ entities: - pos: 52.5,17.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 9063 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13332 @@ -109471,6 +109656,8 @@ entities: - pos: -1.5,35.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13333 @@ -109479,9 +109666,8 @@ entities: pos: 13.5,32.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27005 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13334 @@ -109490,9 +109676,8 @@ entities: pos: 11.5,25.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27003 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13335 @@ -109501,9 +109686,8 @@ entities: pos: 19.5,9.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 8860 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13376 @@ -109512,9 +109696,8 @@ entities: pos: 23.5,-1.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 8860 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13500 @@ -109523,6 +109706,8 @@ entities: pos: 37.5,1.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13561 @@ -109531,6 +109716,8 @@ entities: pos: 38.5,-10.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13576 @@ -109539,6 +109726,8 @@ entities: pos: 51.5,-9.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13577 @@ -109546,6 +109735,8 @@ entities: - pos: 47.5,-6.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13578 @@ -109553,6 +109744,8 @@ entities: - pos: 42.5,-6.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13579 @@ -109560,6 +109753,8 @@ entities: - pos: 37.5,-6.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13580 @@ -109568,6 +109763,8 @@ entities: pos: 26.5,-8.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13586 @@ -109576,6 +109773,8 @@ entities: pos: 45.5,-16.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13587 @@ -109584,6 +109783,8 @@ entities: pos: 45.5,-12.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13588 @@ -109592,6 +109793,8 @@ entities: pos: 50.5,-20.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13589 @@ -109600,6 +109803,8 @@ entities: pos: 37.5,-21.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13595 @@ -109608,6 +109813,8 @@ entities: pos: 29.5,-13.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13596 @@ -109615,6 +109822,8 @@ entities: - pos: 30.5,-9.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13635 @@ -109623,6 +109832,8 @@ entities: pos: 47.5,-24.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13636 @@ -109631,6 +109842,8 @@ entities: pos: 42.5,-24.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13637 @@ -109639,6 +109852,8 @@ entities: pos: 39.5,-24.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13638 @@ -109647,6 +109862,8 @@ entities: pos: 35.5,-24.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13639 @@ -109654,6 +109871,8 @@ entities: - pos: 37.5,-17.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13675 @@ -109662,6 +109881,8 @@ entities: pos: 37.5,-13.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13783 @@ -109670,6 +109891,8 @@ entities: pos: 33.5,-22.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13866 @@ -109678,6 +109901,8 @@ entities: pos: 5.5,-38.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13867 @@ -109686,6 +109911,8 @@ entities: pos: 17.5,-38.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13868 @@ -109694,6 +109921,8 @@ entities: pos: 14.5,-30.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13870 @@ -109701,6 +109930,8 @@ entities: - pos: 17.5,-22.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13871 @@ -109708,6 +109939,8 @@ entities: - pos: 19.5,-13.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13872 @@ -109715,6 +109948,8 @@ entities: - pos: 24.5,-22.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13873 @@ -109723,6 +109958,8 @@ entities: pos: 25.5,-30.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13874 @@ -109731,6 +109968,8 @@ entities: pos: 22.5,-33.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 13875 @@ -109739,6 +109978,8 @@ entities: pos: 24.5,-35.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14021 @@ -109747,6 +109988,11 @@ entities: pos: 75.5,-36.5 parent: 6747 type: Transform + - deviceLists: + - 7456 + type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14022 @@ -109754,14 +110000,8 @@ entities: - pos: 75.5,-20.5 parent: 6747 type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 14030 - components: - - rot: 3.141592653589793 rad - pos: 59.5,-29.5 - parent: 6747 - type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14031 @@ -109770,6 +110010,8 @@ entities: pos: 54.5,-29.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14032 @@ -109777,6 +110019,8 @@ entities: - pos: 54.5,-24.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14041 @@ -109785,6 +110029,8 @@ entities: pos: 47.5,-32.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14074 @@ -109793,6 +110039,8 @@ entities: pos: 58.5,3.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14088 @@ -109801,6 +110049,8 @@ entities: pos: 57.5,-10.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14131 @@ -109809,6 +110059,8 @@ entities: pos: 58.5,-20.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14277 @@ -109817,6 +110069,8 @@ entities: pos: 30.5,-37.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14278 @@ -109825,6 +110079,8 @@ entities: pos: 41.5,-33.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14279 @@ -109833,6 +110089,8 @@ entities: pos: 40.5,-39.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14316 @@ -109841,6 +110099,8 @@ entities: pos: 74.5,-46.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14324 @@ -109848,12 +110108,16 @@ entities: - pos: 65.5,-41.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 14364 components: - rot: -1.5707963267948966 rad pos: 32.5,-50.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14365 @@ -109862,6 +110126,8 @@ entities: pos: 30.5,-61.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14393 @@ -109869,6 +110135,8 @@ entities: - pos: 35.5,-45.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14394 @@ -109877,6 +110145,8 @@ entities: pos: 40.5,-51.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14395 @@ -109884,6 +110154,8 @@ entities: - pos: 53.5,-45.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14396 @@ -109891,6 +110163,8 @@ entities: - pos: 58.5,-40.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14398 @@ -109898,6 +110172,8 @@ entities: - pos: 69.5,-41.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14473 @@ -109905,6 +110181,8 @@ entities: - pos: -12.5,-45.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14474 @@ -109913,6 +110191,8 @@ entities: pos: -12.5,-49.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14515 @@ -109921,6 +110201,8 @@ entities: pos: 25.5,-43.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14524 @@ -109929,6 +110211,8 @@ entities: pos: 24.5,-54.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14525 @@ -109937,6 +110221,8 @@ entities: pos: 26.5,-50.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14526 @@ -109944,6 +110230,8 @@ entities: - pos: 21.5,-45.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14559 @@ -109951,6 +110239,8 @@ entities: - pos: -9.5,-83.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14626 @@ -109959,18 +110249,24 @@ entities: pos: -9.5,-86.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 14627 components: - rot: 3.141592653589793 rad pos: -5.5,-86.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 14629 components: - rot: 3.141592653589793 rad pos: -1.5,-78.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14630 @@ -109979,6 +110275,8 @@ entities: pos: 2.5,-82.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14631 @@ -109987,6 +110285,8 @@ entities: pos: 4.5,-80.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14633 @@ -109995,6 +110295,8 @@ entities: pos: 7.5,-73.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14634 @@ -110002,6 +110304,8 @@ entities: - pos: 10.5,-62.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14635 @@ -110010,6 +110314,8 @@ entities: pos: 21.5,-66.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14643 @@ -110018,6 +110324,8 @@ entities: pos: 24.5,-67.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14647 @@ -110026,6 +110334,8 @@ entities: pos: 17.5,-74.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14680 @@ -110034,6 +110344,8 @@ entities: pos: 37.5,-88.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14711 @@ -110042,6 +110354,8 @@ entities: pos: 27.5,-77.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14712 @@ -110050,6 +110364,8 @@ entities: pos: 24.5,-85.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14713 @@ -110058,6 +110374,8 @@ entities: pos: 29.5,-84.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14761 @@ -110065,6 +110383,8 @@ entities: - pos: -10.5,-42.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14775 @@ -110072,6 +110392,8 @@ entities: - pos: -4.5,-45.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14805 @@ -110079,6 +110401,8 @@ entities: - pos: 4.5,-45.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14898 @@ -110087,6 +110411,8 @@ entities: pos: 8.5,-68.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14904 @@ -110095,6 +110421,8 @@ entities: pos: 19.5,-57.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14905 @@ -110103,6 +110431,8 @@ entities: pos: 19.5,-50.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14908 @@ -110111,6 +110441,8 @@ entities: pos: 20.5,-69.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14915 @@ -110119,6 +110451,8 @@ entities: pos: -4.5,-72.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 14917 @@ -110127,6 +110461,8 @@ entities: pos: 17.5,-67.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 15133 @@ -110135,6 +110471,8 @@ entities: pos: 15.5,-55.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 15134 @@ -110143,6 +110481,8 @@ entities: pos: 9.5,-56.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 15142 @@ -110151,6 +110491,8 @@ entities: pos: 8.5,-59.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 15143 @@ -110159,6 +110501,8 @@ entities: pos: 13.5,-58.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 15161 @@ -110167,6 +110511,8 @@ entities: pos: 5.5,-56.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 15163 @@ -110175,6 +110521,8 @@ entities: pos: -0.5,-57.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 15168 @@ -110183,6 +110531,8 @@ entities: pos: 4.5,-60.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 15207 @@ -110191,6 +110541,8 @@ entities: pos: 9.5,-41.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 15210 @@ -110199,6 +110551,8 @@ entities: pos: -0.5,-43.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 15266 @@ -110206,6 +110560,8 @@ entities: - pos: 3.5,-65.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 15279 @@ -110213,6 +110569,8 @@ entities: - pos: -6.5,-49.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 15304 @@ -110221,6 +110579,8 @@ entities: pos: -27.5,-52.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 15313 @@ -110228,6 +110588,8 @@ entities: - pos: -27.5,-46.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 15317 @@ -110236,6 +110598,8 @@ entities: pos: -33.5,-46.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 15320 @@ -110243,6 +110607,8 @@ entities: - pos: -29.5,-45.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 15330 @@ -110251,6 +110617,8 @@ entities: pos: -32.5,-51.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 15338 @@ -110259,6 +110627,8 @@ entities: pos: -29.5,-58.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 15339 @@ -110267,6 +110637,8 @@ entities: pos: -27.5,-57.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 15340 @@ -110274,6 +110646,8 @@ entities: - pos: -16.5,-51.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 15341 @@ -110281,6 +110655,8 @@ entities: - pos: -12.5,-51.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 15358 @@ -110289,6 +110665,8 @@ entities: pos: -11.5,-57.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 15359 @@ -110297,6 +110675,8 @@ entities: pos: -19.5,-58.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 15716 @@ -110304,6 +110684,8 @@ entities: - pos: 19.5,-1.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 15810 @@ -110312,9 +110694,8 @@ entities: pos: 9.5,-10.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13485 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 16024 @@ -110323,9 +110704,8 @@ entities: pos: 2.5,-37.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25305 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 16144 @@ -110334,6 +110714,8 @@ entities: pos: 62.5,-52.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 16468 @@ -110342,6 +110724,8 @@ entities: pos: -20.5,-46.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 16535 @@ -110349,6 +110733,8 @@ entities: - pos: -56.5,-39.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 16536 @@ -110357,6 +110743,8 @@ entities: pos: -45.5,-39.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 16537 @@ -110365,6 +110753,8 @@ entities: pos: -47.5,-37.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 16654 @@ -110372,6 +110762,8 @@ entities: - pos: -8.5,-56.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 16655 @@ -110380,6 +110772,8 @@ entities: pos: -11.5,-62.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 16656 @@ -110388,6 +110782,8 @@ entities: pos: -10.5,-65.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 16657 @@ -110396,6 +110792,8 @@ entities: pos: -6.5,-65.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 16897 @@ -110404,6 +110802,8 @@ entities: pos: 53.5,-43.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 17074 @@ -110412,6 +110812,8 @@ entities: pos: 46.5,-42.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 17075 @@ -110420,6 +110822,8 @@ entities: pos: 49.5,-43.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 17363 @@ -110428,12 +110832,16 @@ entities: pos: 48.5,-52.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 22267 components: - rot: -1.5707963267948966 rad pos: 6.5,-14.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22283 @@ -110442,9 +110850,8 @@ entities: pos: 15.5,6.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 8860 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22298 @@ -110453,6 +110860,8 @@ entities: pos: 22.5,-15.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22299 @@ -110460,6 +110869,8 @@ entities: - pos: 21.5,-13.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22300 @@ -110468,6 +110879,8 @@ entities: pos: 21.5,-18.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22323 @@ -110475,6 +110888,8 @@ entities: - pos: 17.5,-7.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22325 @@ -110483,6 +110898,8 @@ entities: pos: 32.5,-15.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22440 @@ -110490,6 +110907,8 @@ entities: - pos: 10.5,-21.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22571 @@ -110498,9 +110917,8 @@ entities: pos: 6.5,29.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27003 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22745 @@ -110509,9 +110927,8 @@ entities: pos: 48.5,8.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 9063 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23659 @@ -110520,6 +110937,8 @@ entities: pos: 3.5,-5.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23685 @@ -110528,6 +110947,8 @@ entities: pos: -1.5,-5.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23686 @@ -110536,6 +110957,8 @@ entities: pos: -2.5,-1.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23751 @@ -110544,9 +110967,8 @@ entities: pos: -12.5,-9.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13485 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24029 @@ -110555,6 +110977,8 @@ entities: pos: 35.5,-94.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24030 @@ -110563,6 +110987,8 @@ entities: pos: 26.5,-95.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24031 @@ -110570,6 +110996,8 @@ entities: - pos: 26.5,-90.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24083 @@ -110578,9 +111006,8 @@ entities: pos: -18.5,-9.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25323 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24085 @@ -110589,9 +111016,8 @@ entities: pos: -20.5,-9.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25323 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24086 @@ -110600,9 +111026,8 @@ entities: pos: -25.5,-10.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25323 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24134 @@ -110611,9 +111036,8 @@ entities: pos: -5.5,-2.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13930 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24135 @@ -110622,9 +111046,8 @@ entities: pos: -4.5,-6.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25271 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24138 @@ -110633,9 +111056,8 @@ entities: pos: -6.5,-5.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13930 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24144 @@ -110643,9 +111065,8 @@ entities: - pos: -4.5,2.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13930 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24174 @@ -110654,9 +111075,8 @@ entities: pos: -16.5,-2.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13930 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24185 @@ -110665,9 +111085,8 @@ entities: pos: -12.5,-3.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25275 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24196 @@ -110676,9 +111095,8 @@ entities: pos: -19.5,-5.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25278 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24199 @@ -110687,9 +111105,8 @@ entities: pos: -23.5,-5.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25278 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24287 @@ -110698,9 +111115,8 @@ entities: pos: -39.5,-9.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25287 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24288 @@ -110709,9 +111125,8 @@ entities: pos: -41.5,-6.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25287 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24289 @@ -110719,9 +111134,8 @@ entities: - pos: -40.5,-4.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25287 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24295 @@ -110730,9 +111144,8 @@ entities: pos: -32.5,-12.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25281 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24296 @@ -110741,9 +111154,8 @@ entities: pos: -32.5,-8.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25281 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24297 @@ -110751,9 +111163,8 @@ entities: - pos: -31.5,-5.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25281 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24348 @@ -110762,9 +111173,8 @@ entities: pos: -30.5,9.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25283 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24349 @@ -110773,9 +111183,8 @@ entities: pos: -30.5,6.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25283 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24350 @@ -110784,9 +111193,8 @@ entities: pos: -29.5,1.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25283 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24351 @@ -110794,9 +111202,8 @@ entities: - pos: -36.5,7.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25283 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24383 @@ -110804,9 +111211,8 @@ entities: - pos: -36.5,-0.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25286 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24399 @@ -110814,6 +111220,8 @@ entities: - pos: -48.5,-0.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24400 @@ -110821,6 +111229,8 @@ entities: - pos: -46.5,-0.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24401 @@ -110828,6 +111238,8 @@ entities: - pos: -44.5,-0.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24402 @@ -110835,9 +111247,8 @@ entities: - pos: -41.5,-0.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25286 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24417 @@ -110846,9 +111257,8 @@ entities: pos: -42.5,7.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25286 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24418 @@ -110856,9 +111266,8 @@ entities: - pos: -44.5,8.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25286 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24420 @@ -110867,9 +111276,8 @@ entities: pos: -45.5,5.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25286 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24450 @@ -110877,9 +111285,8 @@ entities: - pos: -36.5,-5.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25287 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24478 @@ -110888,9 +111295,8 @@ entities: pos: -13.5,-39.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25305 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24697 @@ -110899,9 +111305,8 @@ entities: pos: -71.5,0.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25290 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24698 @@ -110910,9 +111315,8 @@ entities: pos: -67.5,0.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25290 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24699 @@ -110921,9 +111325,8 @@ entities: pos: -66.5,-2.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25290 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24700 @@ -110932,9 +111335,8 @@ entities: pos: -63.5,-2.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25290 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24701 @@ -110943,9 +111345,8 @@ entities: pos: -64.5,-6.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25290 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24702 @@ -110954,9 +111355,8 @@ entities: pos: -60.5,-0.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25290 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24703 @@ -110965,9 +111365,8 @@ entities: pos: -66.5,5.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25290 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24704 @@ -110975,9 +111374,8 @@ entities: - pos: -64.5,12.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25290 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24828 @@ -110986,9 +111384,8 @@ entities: pos: -34.5,-22.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25299 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24829 @@ -110996,9 +111393,8 @@ entities: - pos: -36.5,-17.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25299 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24836 @@ -111007,9 +111403,8 @@ entities: pos: -37.5,-24.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25293 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24838 @@ -111017,9 +111412,8 @@ entities: - pos: -39.5,-26.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25293 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24839 @@ -111028,9 +111422,8 @@ entities: pos: -43.5,-29.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25293 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24880 @@ -111039,9 +111432,8 @@ entities: pos: -38.5,-38.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25295 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24907 @@ -111050,9 +111442,8 @@ entities: pos: -25.5,-37.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25298 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24908 @@ -111061,9 +111452,8 @@ entities: pos: -27.5,-39.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25298 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24909 @@ -111072,9 +111462,8 @@ entities: pos: -31.5,-39.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25298 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24966 @@ -111083,6 +111472,8 @@ entities: pos: -1.5,-32.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24967 @@ -111090,9 +111481,8 @@ entities: - pos: -4.5,-31.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25309 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24970 @@ -111101,9 +111491,8 @@ entities: pos: 3.5,-26.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25317 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24988 @@ -111112,9 +111501,8 @@ entities: pos: -1.5,-27.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25317 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24991 @@ -111123,9 +111511,8 @@ entities: pos: -18.5,-35.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25311 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 25002 @@ -111133,9 +111520,8 @@ entities: - pos: -18.5,-30.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25311 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 25017 @@ -111144,9 +111530,8 @@ entities: pos: -23.5,-29.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25315 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 25018 @@ -111155,9 +111540,8 @@ entities: pos: -29.5,-30.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25299 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 25019 @@ -111166,9 +111550,8 @@ entities: pos: -29.5,-27.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25299 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 25020 @@ -111176,9 +111559,8 @@ entities: - pos: -23.5,-18.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25315 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 25028 @@ -111186,9 +111568,8 @@ entities: - pos: -12.5,-25.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25309 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 25076 @@ -111196,9 +111577,8 @@ entities: - pos: -0.5,-22.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25317 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 25135 @@ -111206,6 +111586,8 @@ entities: - pos: -27.5,-25.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 25147 @@ -111213,9 +111595,8 @@ entities: - pos: -1.5,-17.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25319 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 25148 @@ -111223,9 +111604,8 @@ entities: - pos: -10.5,-14.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25309 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 25184 @@ -111233,9 +111613,8 @@ entities: - pos: -18.5,-19.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25321 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 25425 @@ -111244,6 +111623,8 @@ entities: pos: -53.5,-9.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 25426 @@ -111252,6 +111633,8 @@ entities: pos: -52.5,-12.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 25608 @@ -111259,9 +111642,8 @@ entities: - pos: 1.5,-70.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 22234 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 26049 @@ -111270,9 +111652,8 @@ entities: pos: 61.5,26.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26989 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 26051 @@ -111281,9 +111662,8 @@ entities: pos: 60.5,18.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26991 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 26130 @@ -111292,9 +111672,8 @@ entities: pos: 68.5,7.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26958 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 26131 @@ -111303,9 +111682,8 @@ entities: pos: 73.5,6.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26945 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 26136 @@ -111314,9 +111692,8 @@ entities: pos: 66.5,17.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26945 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 26143 @@ -111325,9 +111702,8 @@ entities: pos: 63.5,11.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 9063 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 26145 @@ -111336,6 +111712,8 @@ entities: pos: 45.5,17.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 26199 @@ -111344,9 +111722,8 @@ entities: pos: 11.5,20.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27009 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 26226 @@ -111354,9 +111731,8 @@ entities: - pos: 61.5,8.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26958 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 26227 @@ -111364,9 +111740,8 @@ entities: - pos: 54.5,8.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26958 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 26228 @@ -111375,9 +111750,8 @@ entities: pos: 51.5,6.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26958 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 26254 @@ -111386,9 +111760,8 @@ entities: pos: 18.5,14.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26970 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 26275 @@ -111397,9 +111770,8 @@ entities: pos: 33.5,17.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26970 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 26308 @@ -111408,9 +111780,8 @@ entities: pos: 23.5,19.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 26970 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 26316 @@ -111418,9 +111789,8 @@ entities: - pos: 22.5,27.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27005 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 26318 @@ -111428,9 +111798,8 @@ entities: - pos: 19.5,25.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27003 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 26329 @@ -111439,9 +111808,8 @@ entities: pos: 7.5,24.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27003 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 26336 @@ -111450,9 +111818,8 @@ entities: pos: 4.5,24.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27003 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 26824 @@ -111461,9 +111828,8 @@ entities: pos: -17.5,4.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 27036 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 26825 @@ -111472,9 +111838,8 @@ entities: pos: -25.5,2.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13930 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 26826 @@ -111483,9 +111848,8 @@ entities: pos: -25.5,5.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13930 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 26827 @@ -111494,9 +111858,8 @@ entities: pos: -25.5,8.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 13930 - type: DeviceNetwork + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 26916 @@ -111505,6 +111868,8 @@ entities: pos: 12.5,-24.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - proto: GasVolumePump @@ -111515,6 +111880,8 @@ entities: pos: 63.5,29.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF5500FF' type: AtmosPipeColor - uid: 13366 @@ -111523,6 +111890,8 @@ entities: pos: 62.5,34.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#00FFFFFF' type: AtmosPipeColor - proto: Gauze @@ -111547,9 +111916,9 @@ entities: type: Transform - proto: GeneratorBasic entities: - - uid: 8628 + - uid: 18465 components: - - pos: -11.5,17.5 + - pos: 68.5,-7.5 parent: 6747 type: Transform - proto: GeneratorBasic15kW @@ -111944,16 +112313,6 @@ entities: - pos: 5.5,-32.5 parent: 6747 type: Transform - - uid: 801 - components: - - pos: 18.5,7.5 - parent: 6747 - type: Transform - - uid: 803 - components: - - pos: 18.5,5.5 - parent: 6747 - type: Transform - uid: 822 components: - pos: 42.5,9.5 @@ -113099,16 +113458,6 @@ entities: - pos: 38.5,-31.5 parent: 6747 type: Transform - - uid: 2808 - components: - - pos: 34.5,-31.5 - parent: 6747 - type: Transform - - uid: 2809 - components: - - pos: 35.5,-30.5 - parent: 6747 - type: Transform - uid: 2843 components: - pos: 8.5,-64.5 @@ -114284,11 +114633,6 @@ entities: - pos: 67.5,-26.5 parent: 6747 type: Transform - - uid: 6438 - components: - - pos: 59.5,-30.5 - parent: 6747 - type: Transform - uid: 6439 components: - pos: 58.5,-30.5 @@ -114314,11 +114658,6 @@ entities: - pos: 62.5,-30.5 parent: 6747 type: Transform - - uid: 6448 - components: - - pos: 61.5,-30.5 - parent: 6747 - type: Transform - uid: 6449 components: - pos: 69.5,-30.5 @@ -115084,16 +115423,6 @@ entities: - pos: 9.5,19.5 parent: 6747 type: Transform - - uid: 8976 - components: - - pos: 22.5,4.5 - parent: 6747 - type: Transform - - uid: 8996 - components: - - pos: 22.5,-4.5 - parent: 6747 - type: Transform - uid: 9001 components: - pos: -50.5,0.5 @@ -115884,6 +116213,11 @@ entities: - pos: 64.5,18.5 parent: 6747 type: Transform + - uid: 14030 + components: + - pos: 60.5,-30.5 + parent: 6747 + type: Transform - uid: 15052 components: - pos: -56.5,0.5 @@ -116854,26 +117188,6 @@ entities: - pos: -75.5,-42.5 parent: 6747 type: Transform - - uid: 21722 - components: - - pos: 25.5,4.5 - parent: 6747 - type: Transform - - uid: 21725 - components: - - pos: 28.5,-39.5 - parent: 6747 - type: Transform - - uid: 21726 - components: - - pos: 31.5,-39.5 - parent: 6747 - type: Transform - - uid: 21738 - components: - - pos: 25.5,-4.5 - parent: 6747 - type: Transform - uid: 21964 components: - pos: 16.5,-79.5 @@ -117534,6 +117848,61 @@ entities: - pos: 1.5,-71.5 parent: 6747 type: Transform + - uid: 27236 + components: + - pos: 58.5,-31.5 + parent: 6747 + type: Transform + - uid: 27237 + components: + - pos: 62.5,-31.5 + parent: 6747 + type: Transform + - uid: 27238 + components: + - pos: 64.5,-33.5 + parent: 6747 + type: Transform + - uid: 27239 + components: + - pos: 64.5,-34.5 + parent: 6747 + type: Transform + - uid: 27240 + components: + - pos: 64.5,-35.5 + parent: 6747 + type: Transform + - uid: 27241 + components: + - pos: 57.5,-36.5 + parent: 6747 + type: Transform + - uid: 27242 + components: + - pos: 58.5,-36.5 + parent: 6747 + type: Transform + - uid: 27243 + components: + - pos: 59.5,-36.5 + parent: 6747 + type: Transform + - uid: 27244 + components: + - pos: 61.5,-36.5 + parent: 6747 + type: Transform + - uid: 27245 + components: + - pos: 62.5,-36.5 + parent: 6747 + type: Transform + - uid: 27246 + components: + - pos: 63.5,-36.5 + parent: 6747 + type: Transform - proto: GrilleBroken entities: - uid: 9970 @@ -117819,13 +118188,31 @@ entities: occludes: True ent: null type: ContainerContainer -- proto: GunSafeSubMachineGunVector +- proto: GunSafeSubMachineGunDrozd entities: - - uid: 763 + - uid: 3654 components: - - pos: -33.5,7.5 + - pos: -34.5,7.5 parent: 6747 type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - containers: entity_storage: !type:Container showEnts: False @@ -117833,27 +118220,45 @@ entities: ents: - 3656 - 6844 - - 7472 - - 7475 + - 7178 + - 7190 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null type: ContainerContainer - - uid: 3654 + - uid: 7472 components: - - pos: -34.5,7.5 + - pos: -33.5,7.5 parent: 6747 type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - containers: entity_storage: !type:Container showEnts: False occludes: True ents: + - 7475 - 7478 - 7479 - 7480 - - 7493 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -117976,11 +118381,6 @@ entities: - pos: 43.470135,-34.488388 parent: 6747 type: Transform - - uid: 3447 - components: - - pos: 10.461526,-25.160149 - parent: 6747 - type: Transform - uid: 3529 components: - pos: 13.535895,-26.141413 @@ -118012,6 +118412,11 @@ entities: - pos: 46.595142,11.06011 parent: 6747 type: Transform + - uid: 19806 + components: + - pos: 9.50197,-25.527895 + parent: 6747 + type: Transform - uid: 23922 components: - pos: 53.588593,-43.436413 @@ -118072,6 +118477,8 @@ entities: pos: 66.5,30.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF5500FF' type: AtmosPipeColor - uid: 13089 @@ -118080,6 +118487,8 @@ entities: pos: 67.5,31.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF5500FF' type: AtmosPipeColor - uid: 13090 @@ -118088,6 +118497,8 @@ entities: pos: 67.5,32.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF5500FF' type: AtmosPipeColor - uid: 13091 @@ -118096,6 +118507,8 @@ entities: pos: 66.5,33.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#FF5500FF' type: AtmosPipeColor - uid: 13318 @@ -118104,6 +118517,8 @@ entities: pos: 62.5,42.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#00FFFFFF' type: AtmosPipeColor - uid: 13319 @@ -118112,6 +118527,8 @@ entities: pos: 62.5,40.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#00FFFFFF' type: AtmosPipeColor - uid: 13320 @@ -118120,6 +118537,8 @@ entities: pos: 62.5,39.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - color: '#00FFFFFF' type: AtmosPipeColor - proto: HelicopterInstrument @@ -118345,6 +118764,17 @@ entities: - pos: 52.5,-41.5 parent: 6747 type: Transform +- proto: HotplateMachineCircuitboard + entities: + - uid: 6438 + components: + - flags: InContainer + type: MetaData + - parent: 26933 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage - proto: hydroponicsSoil entities: - uid: 1688 @@ -118496,6 +118926,11 @@ entities: - pos: 38.813694,-87.14201 parent: 6747 type: Transform + - uid: 27353 + components: + - pos: -49.52033,4.6298084 + parent: 6747 + type: Transform - proto: hydroponicsTray entities: - uid: 11335 @@ -118705,6 +119140,35 @@ entities: - pos: -44.487347,-39.534794 parent: 6747 type: Transform +- proto: IntercomSecurity + entities: + - uid: 27079 + components: + - pos: -29.5,-34.5 + parent: 6747 + type: Transform + - uid: 27080 + components: + - pos: 4.5,1.5 + parent: 6747 + type: Transform + - uid: 27081 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,3.5 + parent: 6747 + type: Transform + - uid: 27082 + components: + - pos: -26.5,0.5 + parent: 6747 + type: Transform + - uid: 27083 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-2.5 + parent: 6747 + type: Transform - proto: JanitorialTrolley entities: - uid: 3410 @@ -118719,6 +119183,59 @@ entities: pos: 32.5,-3.5 parent: 6747 type: Transform +- proto: JanitorServiceLight + entities: + - uid: 27181 + components: + - pos: 20.5,11.5 + parent: 6747 + type: Transform + - links: + - 27182 + type: DeviceLinkSink + - uid: 27184 + components: + - pos: 41.5,13.5 + parent: 6747 + type: Transform + - links: + - 27183 + type: DeviceLinkSink + - uid: 27185 + components: + - pos: -4.5,-8.5 + parent: 6747 + type: Transform + - links: + - 27186 + type: DeviceLinkSink + - uid: 27188 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-50.5 + parent: 6747 + type: Transform + - links: + - 27187 + type: DeviceLinkSink + - uid: 27189 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-47.5 + parent: 6747 + type: Transform + - links: + - 13967 + type: DeviceLinkSink + - uid: 27191 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-19.5 + parent: 6747 + type: Transform + - links: + - 27190 + type: DeviceLinkSink - proto: JetpackBlueFilled entities: - uid: 5301 @@ -119008,11 +119525,6 @@ entities: - pos: -5.5,-24.5 parent: 6747 type: Transform - - uid: 3243 - components: - - pos: 10.5,-27.5 - parent: 6747 - type: Transform - uid: 3474 components: - pos: -23.5,-9.5 @@ -119085,6 +119597,11 @@ entities: occludes: True ents: [] type: ContainerContainer + - uid: 5632 + components: + - pos: 9.5,-27.5 + parent: 6747 + type: Transform - uid: 8997 components: - pos: -40.5,3.5 @@ -119448,9 +119965,9 @@ entities: - pos: -20.5,-19.5 parent: 6747 type: Transform -- proto: LockerBrigmedicFilled +- proto: LockerBrigmedicFilledHardsuit entities: - - uid: 805 + - uid: 22107 components: - pos: -28.5,-11.5 parent: 6747 @@ -119479,6 +119996,37 @@ entities: - pos: 13.5,-21.5 parent: 6747 type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6438 + - 5865 + - 6448 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer - proto: LockerChiefEngineerFilledHardsuit entities: - uid: 17757 @@ -119493,6 +120041,13 @@ entities: - pos: 22.5,-36.5 parent: 6747 type: Transform +- proto: LockerClown + entities: + - uid: 2646 + components: + - pos: 39.5,-12.5 + parent: 6747 + type: Transform - proto: LockerDetectiveFilled entities: - uid: 15707 @@ -119576,29 +120131,6 @@ entities: - pos: 0.5,-27.5 parent: 6747 type: Transform - - uid: 4080 - components: - - pos: -32.5,-53.5 - parent: 6747 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 4.6948643 - - 17.661633 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - proto: LockerFreezerBase entities: - uid: 7460 @@ -119653,6 +120185,42 @@ entities: - pos: -38.5,-21.5 parent: 6747 type: Transform +- proto: LockerFreezerVaultFilled + entities: + - uid: 6517 + components: + - pos: -32.5,-53.5 + parent: 6747 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1473 + moles: + - 2.1215794 + - 7.98118 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6518 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer - proto: LockerHeadOfPersonnelFilled entities: - uid: 3350 @@ -119694,6 +120262,13 @@ entities: - pos: 16.5,-32.5 parent: 6747 type: Transform +- proto: LockerMime + entities: + - uid: 763 + components: + - pos: 39.5,-18.5 + parent: 6747 + type: Transform - proto: LockerParamedicFilledHardsuit entities: - uid: 866 @@ -119885,6 +120460,20 @@ entities: pos: -9.5,-87.5 parent: 6747 type: Transform +- proto: MachineCentrifuge + entities: + - uid: 25326 + components: + - pos: 9.5,-26.5 + parent: 6747 + type: Transform +- proto: MachineElectrolysisUnit + entities: + - uid: 25583 + components: + - pos: 9.5,-25.5 + parent: 6747 + type: Transform - proto: MachineFrame entities: - uid: 4631 @@ -119909,45 +120498,43 @@ entities: - pos: -62.5,-82.5 parent: 6747 type: Transform -- proto: MagazineMagnumSubMachineGun +- proto: MagazinePistolSubMachineGun entities: - - uid: 25327 + - uid: 7493 components: - - rot: -1.5707963267948966 rad - pos: -24.486568,-7.497088 + - pos: -24.49141,-7.4966574 parent: 6747 type: Transform - - uid: 25332 + - uid: 25327 components: - - rot: -1.5707963267948966 rad - pos: -24.496986,-7.309458 + - pos: -24.387245,-7.3715696 parent: 6747 type: Transform -- proto: MagazineMagnumSubMachineGunPractice +- proto: MagazinePistolSubMachineGunPractice entities: - - uid: 7472 + - uid: 3656 components: - flags: InContainer type: MetaData - - parent: 763 + - parent: 3654 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - - uid: 7475 + - uid: 6844 components: - flags: InContainer type: MetaData - - parent: 763 + - parent: 3654 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - - uid: 7478 + - uid: 7475 components: - flags: InContainer type: MetaData - - parent: 3654 + - parent: 7472 type: Transform - canCollide: False type: Physics @@ -119956,45 +120543,45 @@ entities: components: - flags: InContainer type: MetaData - - parent: 3654 + - parent: 7472 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage -- proto: MagazineMagnumSubMachineGunRubber +- proto: MagazinePistolSubMachineGunRubber entities: - - uid: 3656 + - uid: 7178 components: - flags: InContainer type: MetaData - - parent: 763 + - parent: 3654 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - - uid: 6844 + - uid: 7190 components: - flags: InContainer type: MetaData - - parent: 763 + - parent: 3654 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - - uid: 7479 + - uid: 7478 components: - flags: InContainer type: MetaData - - parent: 3654 + - parent: 7472 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - - uid: 7493 + - uid: 7479 components: - flags: InContainer type: MetaData - - parent: 3654 + - parent: 7472 type: Transform - canCollide: False type: Physics @@ -120060,11 +120647,6 @@ entities: type: Transform - proto: MailingUnit entities: - - uid: 3135 - components: - - pos: -14.5,-0.5 - parent: 6747 - type: Transform - uid: 3846 components: - pos: 15.5,-7.5 @@ -120120,6 +120702,11 @@ entities: - pos: -18.5,-21.5 parent: 6747 type: Transform + - uid: 27070 + components: + - pos: -18.5,1.5 + parent: 6747 + type: Transform - proto: MailingUnitElectronics entities: - uid: 8504 @@ -120914,27 +121501,26 @@ entities: - pos: -46.5,10.5 parent: 6747 type: Transform - - uid: 7577 + - uid: 6608 components: - - rot: 3.141592653589793 rad - pos: -27.5,-56.5 + - pos: -27.5,-56.5 parent: 6747 type: Transform - uid: 7578 components: - - rot: 1.5707963267948966 rad + - rot: -1.5707963267948966 rad pos: 34.5,-43.5 parent: 6747 type: Transform - uid: 7579 components: - - rot: 1.5707963267948966 rad + - rot: -1.5707963267948966 rad pos: 34.5,-40.5 parent: 6747 type: Transform - uid: 7580 components: - - rot: 1.5707963267948966 rad + - rot: -1.5707963267948966 rad pos: 34.5,-37.5 parent: 6747 type: Transform @@ -120964,6 +121550,29 @@ entities: pos: 23.5,-32.5 parent: 6747 type: Transform + - uid: 27256 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-39.5 + parent: 6747 + type: Transform + - uid: 27273 + components: + - rot: 3.141592653589793 rad + pos: 60.5,-36.5 + parent: 6747 + type: Transform + - uid: 27274 + components: + - pos: 62.5,-32.5 + parent: 6747 + type: Transform + - uid: 27326 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-39.5 + parent: 6747 + type: Transform - proto: MonkeyCube entities: - uid: 7197 @@ -122847,7 +123456,7 @@ entities: type: Transform - uid: 3534 components: - - pos: -21.5,11.5 + - pos: -9.5,6.5 parent: 6747 type: Transform - proto: Mousetrap @@ -122922,56 +123531,78 @@ entities: - pos: 8.5,-73.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 5108 components: - pos: 30.5,-74.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 5315 components: - pos: 49.5,-32.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 7756 components: - pos: 38.5,42.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 7878 components: - pos: -35.5,-57.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 8183 components: - pos: 33.5,34.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 10992 components: - pos: 50.5,-39.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 11190 components: - pos: 41.5,-80.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 11353 components: - pos: 52.5,-1.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 15935 components: - pos: 8.5,-6.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 25414 components: - pos: -51.5,-13.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - proto: NitrogenTankFilled entities: - uid: 1301 @@ -123035,11 +123666,15 @@ entities: - pos: 42.5,42.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 8189 components: - pos: 32.5,30.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - proto: NitrousOxideTank entities: - uid: 7877 @@ -123054,6 +123689,20 @@ entities: - pos: 10.502254,-34.43969 parent: 6747 type: Transform +- proto: NoticeBoard + entities: + - uid: 25332 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-21.5 + parent: 6747 + type: Transform + - uid: 27074 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-30.5 + parent: 6747 + type: Transform - proto: NuclearBomb entities: - uid: 9347 @@ -123164,66 +123813,92 @@ entities: - pos: 0.5,12.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 5069 components: - pos: 9.5,-73.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 5093 components: - pos: 31.5,-74.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 5314 components: - pos: 49.5,-31.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 7786 components: - pos: 36.5,42.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 8180 components: - pos: 32.5,35.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 8181 components: - pos: 33.5,35.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 10130 components: - pos: -49.5,-69.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 11340 components: - pos: 4.5,4.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 11356 components: - pos: 53.5,-15.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 11378 components: - pos: 43.5,-37.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 11409 components: - pos: -35.5,-58.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 25415 components: - pos: -52.5,-13.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - proto: OxygenTankFilled entities: - uid: 17399 @@ -128088,6 +128763,11 @@ entities: - pos: -5.16932,-18.4539 parent: 6747 type: Transform + - uid: 27350 + components: + - pos: -52.30158,2.513756 + parent: 6747 + type: Transform - proto: PlaqueAtmos entities: - uid: 8219 @@ -128097,16 +128777,13 @@ entities: type: Transform - proto: PlasmaCanister entities: - - uid: 7757 - components: - - pos: 40.5,42.5 - parent: 6747 - type: Transform - uid: 12865 components: - pos: 59.5,25.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - proto: PlasmaOre1 entities: - uid: 25553 @@ -128130,8 +128807,7 @@ entities: type: Transform - uid: 5730 components: - - rot: 3.141592653589793 rad - pos: -33.5,-47.5 + - pos: -33.5,-46.5 parent: 6747 type: Transform - uid: 7093 @@ -128223,7 +128899,8 @@ entities: type: Transform - uid: 11464 components: - - pos: -33.5,-47.5 + - rot: 3.141592653589793 rad + pos: -33.5,-48.5 parent: 6747 type: Transform - uid: 12106 @@ -128404,6 +129081,11 @@ entities: - pos: 15.5,-74.5 parent: 6747 type: Transform + - uid: 11454 + components: + - pos: -11.5,17.5 + parent: 6747 + type: Transform - uid: 19049 components: - pos: 27.5,35.5 @@ -128441,11 +129123,6 @@ entities: type: Transform - proto: PortableGeneratorSuperPacman entities: - - uid: 6275 - components: - - pos: 68.5,-7.5 - parent: 6747 - type: Transform - uid: 19050 components: - pos: 60.5,21.5 @@ -128792,6 +129469,13 @@ entities: - pos: 27.5,-24.5 parent: 6747 type: Transform +- proto: PosterLegitMime + entities: + - uid: 27294 + components: + - pos: 63.5,-32.5 + parent: 6747 + type: Transform - proto: PosterLegitNanotrasenLogo entities: - uid: 6724 @@ -128821,9 +129505,17 @@ entities: type: Transform - proto: PosterLegitPieSlice entities: - - uid: 2646 + - uid: 27075 components: - - pos: -9.5,-21.5 + - rot: -1.5707963267948966 rad + pos: -4.5,-22.5 + parent: 6747 + type: Transform +- proto: PosterLegitReportCrimes + entities: + - uid: 27069 + components: + - pos: -18.5,2.5 parent: 6747 type: Transform - proto: PosterLegitSafetyMothFires @@ -128863,6 +129555,13 @@ entities: - pos: -33.5,-56.5 parent: 6747 type: Transform +- proto: PosterLegitSoftCapPopArt + entities: + - uid: 27295 + components: + - pos: 58.5,-32.5 + parent: 6747 + type: Transform - proto: PosterLegitSpaceCops entities: - uid: 25371 @@ -129191,11 +129890,6 @@ entities: - pos: -35.5,-38.5 parent: 6747 type: Transform - - uid: 17296 - components: - - pos: 52.5,-53.5 - parent: 6747 - type: Transform - uid: 21382 components: - pos: 22.5,-0.5 @@ -129216,6 +129910,16 @@ entities: - pos: 19.5,7.5 parent: 6747 type: Transform + - uid: 27220 + components: + - pos: 51.5,-53.5 + parent: 6747 + type: Transform + - uid: 27293 + components: + - pos: 57.5,-35.5 + parent: 6747 + type: Transform - proto: PottedPlantRandomPlastic entities: - uid: 301 @@ -129553,6 +130257,15 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 803 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-24.5 + parent: 6747 + type: Transform + - links: + - 801 + type: DeviceLinkSink - uid: 872 components: - rot: 3.141592653589793 rad @@ -129561,14 +130274,15 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 1597 + - uid: 2808 components: - - rot: 3.141592653589793 rad - pos: 60.5,-29.5 + - rot: -1.5707963267948966 rad + pos: 36.5,-24.5 parent: 6747 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - links: + - 2809 + type: DeviceLinkSink - uid: 2978 components: - rot: 1.5707963267948966 rad @@ -129947,12 +130661,6 @@ entities: pos: -18.5,-2.5 parent: 6747 type: Transform - - uid: 16380 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,1.5 - parent: 6747 - type: Transform - uid: 16381 components: - pos: -11.5,3.5 @@ -130630,28 +131338,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 16935 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-24.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - links: - - 17357 - type: DeviceLinkSink - - uid: 16936 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-24.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - links: - - 17358 - type: DeviceLinkSink - uid: 16937 components: - rot: -1.5707963267948966 rad @@ -131008,6 +131694,9 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - links: + - 21726 + type: DeviceLinkSink - uid: 17142 components: - rot: -1.5707963267948966 rad @@ -131207,6 +131896,11 @@ entities: pos: 9.5,31.5 parent: 6747 type: Transform + - uid: 20234 + components: + - pos: -16.5,2.5 + parent: 6747 + type: Transform - uid: 20728 components: - rot: 3.141592653589793 rad @@ -131482,6 +132176,12 @@ entities: - pos: 52.5,28.5 parent: 6747 type: Transform + - uid: 27296 + components: + - rot: 1.5707963267948966 rad + pos: 57.5,-34.5 + parent: 6747 + type: Transform - proto: PoweredLightBlueInterior entities: - uid: 1634 @@ -131499,13 +132199,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 2284 - components: - - pos: 60.5,-31.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 4218 components: - rot: 1.5707963267948966 rad @@ -132476,6 +133169,9 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - links: + - 21725 + type: DeviceLinkSink - uid: 16919 components: - rot: 3.141592653589793 rad @@ -132673,12 +133369,6 @@ entities: pos: 8.5,-21.5 parent: 6747 type: Transform - - uid: 12919 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-26.5 - parent: 6747 - type: Transform - proto: PoweredSmallLightMaintenance entities: - uid: 6185 @@ -133134,9 +133824,16 @@ entities: type: Transform - proto: Protolathe entities: - - uid: 1148 + - uid: 14003 components: - - pos: 18.5,-50.5 + - pos: 18.5,-49.5 + parent: 6747 + type: Transform +- proto: PsychBed + entities: + - uid: 7577 + components: + - pos: 52.5,-53.5 parent: 6747 type: Transform - proto: Puddle @@ -133249,12 +133946,6 @@ entities: - pos: -23.5,-7.5 parent: 6747 type: Transform - - uid: 898 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-49.5 - parent: 6747 - type: Transform - uid: 1216 components: - pos: -33.5,1.5 @@ -134203,6 +134894,16 @@ entities: - pos: 78.5,19.5 parent: 6747 type: Transform + - uid: 27259 + components: + - pos: 57.5,-33.5 + parent: 6747 + type: Transform + - uid: 27260 + components: + - pos: 57.5,-34.5 + parent: 6747 + type: Transform - proto: RadioHandheld entities: - uid: 817 @@ -142436,16 +143137,6 @@ entities: - pos: 57.5,-30.5 parent: 6747 type: Transform - - uid: 6517 - components: - - pos: 59.5,-30.5 - parent: 6747 - type: Transform - - uid: 6518 - components: - - pos: 61.5,-30.5 - parent: 6747 - type: Transform - uid: 6519 components: - pos: 69.5,-30.5 @@ -143186,6 +143877,11 @@ entities: - pos: 62.5,36.5 parent: 6747 type: Transform + - uid: 11467 + components: + - pos: 58.5,-31.5 + parent: 6747 + type: Transform - uid: 11524 components: - pos: 64.5,22.5 @@ -143226,6 +143922,11 @@ entities: - pos: 42.5,12.5 parent: 6747 type: Transform + - uid: 12914 + components: + - pos: 62.5,-31.5 + parent: 6747 + type: Transform - uid: 13300 components: - pos: 59.5,37.5 @@ -143626,6 +144327,51 @@ entities: - pos: 1.5,-71.5 parent: 6747 type: Transform + - uid: 27247 + components: + - pos: 57.5,-36.5 + parent: 6747 + type: Transform + - uid: 27248 + components: + - pos: 58.5,-36.5 + parent: 6747 + type: Transform + - uid: 27249 + components: + - pos: 59.5,-36.5 + parent: 6747 + type: Transform + - uid: 27250 + components: + - pos: 61.5,-36.5 + parent: 6747 + type: Transform + - uid: 27251 + components: + - pos: 62.5,-36.5 + parent: 6747 + type: Transform + - uid: 27252 + components: + - pos: 63.5,-36.5 + parent: 6747 + type: Transform + - uid: 27253 + components: + - pos: 64.5,-35.5 + parent: 6747 + type: Transform + - uid: 27254 + components: + - pos: 64.5,-34.5 + parent: 6747 + type: Transform + - uid: 27255 + components: + - pos: 64.5,-33.5 + parent: 6747 + type: Transform - proto: RemoteSignaller entities: - uid: 1379 @@ -143960,6 +144706,43 @@ entities: - pos: 60.5,-44.5 parent: 6747 type: Transform +- proto: Screen + entities: + - uid: 7757 + components: + - pos: 39.5,-30.5 + parent: 6747 + type: Transform + - uid: 27195 + components: + - pos: 68.5,-48.5 + parent: 6747 + type: Transform + - uid: 27196 + components: + - pos: -26.5,-45.5 + parent: 6747 + type: Transform + - uid: 27197 + components: + - pos: -12.5,-13.5 + parent: 6747 + type: Transform + - uid: 27198 + components: + - pos: 5.5,-40.5 + parent: 6747 + type: Transform + - uid: 27199 + components: + - pos: 34.5,-19.5 + parent: 6747 + type: Transform + - uid: 27201 + components: + - pos: 32.5,8.5 + parent: 6747 + type: Transform - proto: Screwdriver entities: - uid: 4230 @@ -144185,17 +144968,21 @@ entities: - pos: -35.502335,-45.42165 parent: 6747 type: Transform + - uid: 6448 + components: + - flags: InContainer + type: MetaData + - parent: 26933 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage - uid: 8364 components: - rot: -1.5707963267948966 rad pos: 26.519497,-69.459854 parent: 6747 type: Transform - - uid: 26893 - components: - - pos: 10.51805,-26.153915 - parent: 6747 - type: Transform - proto: SheetPlasma1 entities: - uid: 16168 @@ -144540,16 +145327,25 @@ entities: - pos: 24.5,-31.5 parent: 6747 type: Transform + - links: + - 1227 + type: DeviceLinkSink - uid: 2454 components: - pos: 25.5,-31.5 parent: 6747 type: Transform + - links: + - 1227 + type: DeviceLinkSink - uid: 2455 components: - pos: 26.5,-31.5 parent: 6747 type: Transform + - links: + - 1227 + type: DeviceLinkSink - uid: 2456 components: - pos: 27.5,-32.5 @@ -144630,6 +145426,15 @@ entities: - links: - 6920 type: DeviceLinkSink + - uid: 7943 + components: + - pos: -39.5,13.5 + parent: 6747 + type: Transform + - links: + - 27347 + - 27348 + type: DeviceLinkSink - uid: 8420 components: - pos: -13.5,-7.5 @@ -144782,6 +145587,14 @@ entities: - links: - 16583 type: DeviceLinkSink + - uid: 21738 + components: + - pos: 49.5,7.5 + parent: 6747 + type: Transform + - links: + - 27345 + type: DeviceLinkSink - uid: 23531 components: - pos: 47.5,-30.5 @@ -144846,6 +145659,151 @@ entities: - links: - 23539 type: DeviceLinkSink + - uid: 27193 + components: + - pos: 49.5,8.5 + parent: 6747 + type: Transform + - links: + - 27345 + type: DeviceLinkSink + - uid: 27194 + components: + - pos: 49.5,9.5 + parent: 6747 + type: Transform + - links: + - 27345 + type: DeviceLinkSink + - uid: 27330 + components: + - pos: 50.5,10.5 + parent: 6747 + type: Transform + - links: + - 27345 + type: DeviceLinkSink + - uid: 27331 + components: + - pos: 52.5,10.5 + parent: 6747 + type: Transform + - links: + - 27345 + type: DeviceLinkSink + - uid: 27332 + components: + - pos: 65.5,10.5 + parent: 6747 + type: Transform + - links: + - 27345 + type: DeviceLinkSink + - uid: 27333 + components: + - pos: 66.5,10.5 + parent: 6747 + type: Transform + - links: + - 27345 + type: DeviceLinkSink + - uid: 27334 + components: + - pos: 67.5,10.5 + parent: 6747 + type: Transform + - links: + - 27345 + type: DeviceLinkSink + - uid: 27335 + components: + - pos: 65.5,5.5 + parent: 6747 + type: Transform + - links: + - 27345 + type: DeviceLinkSink + - uid: 27336 + components: + - pos: 66.5,5.5 + parent: 6747 + type: Transform + - links: + - 27345 + type: DeviceLinkSink + - uid: 27337 + components: + - pos: 67.5,5.5 + parent: 6747 + type: Transform + - links: + - 27345 + type: DeviceLinkSink + - uid: 27338 + components: + - pos: 71.5,5.5 + parent: 6747 + type: Transform + - links: + - 27345 + type: DeviceLinkSink + - uid: 27339 + components: + - pos: 72.5,5.5 + parent: 6747 + type: Transform + - links: + - 27345 + type: DeviceLinkSink + - uid: 27340 + components: + - pos: 73.5,5.5 + parent: 6747 + type: Transform + - links: + - 27345 + type: DeviceLinkSink + - uid: 27341 + components: + - pos: 75.5,6.5 + parent: 6747 + type: Transform + - links: + - 27345 + type: DeviceLinkSink + - uid: 27342 + components: + - pos: 75.5,7.5 + parent: 6747 + type: Transform + - links: + - 27345 + type: DeviceLinkSink + - uid: 27343 + components: + - pos: 75.5,8.5 + parent: 6747 + type: Transform + - links: + - 27345 + type: DeviceLinkSink + - uid: 27344 + components: + - pos: 75.5,9.5 + parent: 6747 + type: Transform + - links: + - 27345 + type: DeviceLinkSink + - uid: 27346 + components: + - pos: -39.5,12.5 + parent: 6747 + type: Transform + - links: + - 27347 + - 27348 + type: DeviceLinkSink - proto: ShuttersRadiation entities: - uid: 4613 @@ -145000,6 +145958,115 @@ entities: - pos: -22.5,-58.5 parent: 6747 type: Transform +- proto: SignalButtonDirectional + entities: + - uid: 13967 + components: + - desc: Activate button to alert janitors their service is needed. + name: janitorial service button + type: MetaData + - pos: 16.5,-61.5 + parent: 6747 + type: Transform + - linkedPorts: + 27189: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 14194 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-23.5 + parent: 6747 + type: Transform + - linkedPorts: + 3821: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 14233 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-23.5 + parent: 6747 + type: Transform + - linkedPorts: + 3820: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 27182 + components: + - desc: Activate button to alert janitors their service is needed. + name: janitorial service button + type: MetaData + - rot: 1.5707963267948966 rad + pos: 20.5,13.5 + parent: 6747 + type: Transform + - linkedPorts: + 27181: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 27183 + components: + - desc: Activate button to alert janitors their service is needed. + name: janitorial service button + type: MetaData + - rot: 3.141592653589793 rad + pos: 49.5,10.5 + parent: 6747 + type: Transform + - linkedPorts: + 27184: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 27186 + components: + - desc: Activate button to alert janitors their service is needed. + name: janitorial service button + type: MetaData + - pos: -25.5,0.5 + parent: 6747 + type: Transform + - linkedPorts: + 27185: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 27187 + components: + - desc: Activate button to alert janitors their service is needed. + name: janitorial service button + type: MetaData + - pos: -12.5,-50.5 + parent: 6747 + type: Transform + - linkedPorts: + 27188: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 27190 + components: + - desc: Activate button to alert janitors their service is needed. + name: janitorial service button + type: MetaData + - rot: -1.5707963267948966 rad + pos: 20.5,-20.5 + parent: 6747 + type: Transform + - linkedPorts: + 27191: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 27192 + components: + - name: exit button + type: MetaData + - rot: -1.5707963267948966 rad + pos: 20.5,-24.5 + parent: 6747 + type: Transform + - linkedPorts: + 1987: + - Pressed: Open + type: DeviceLinkSource - proto: SignalSwitchDirectional entities: - uid: 24 @@ -145064,6 +146131,16 @@ entities: - On: Forward - Off: Off type: DeviceLinkSource + - uid: 801 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-24.5 + parent: 6747 + type: Transform + - linkedPorts: + 803: + - Status: Toggle + type: DeviceLinkSource - uid: 1227 components: - pos: 23.5,-35.5 @@ -145073,20 +146150,37 @@ entities: type: SignalSwitch - linkedPorts: 2456: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 2457: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 2458: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 2459: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 2460: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle + 2455: + - Status: Toggle + - On: Toggle + - Off: Toggle + 2454: + - Status: Toggle + - On: Toggle + - Off: Toggle + 2453: + - Status: Toggle + - On: Toggle + - Off: Toggle type: DeviceLinkSource - uid: 1628 components: @@ -145096,8 +146190,9 @@ entities: type: Transform - linkedPorts: 1429: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle type: DeviceLinkSource - uid: 1629 components: @@ -145107,8 +146202,9 @@ entities: type: Transform - linkedPorts: 1418: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle type: DeviceLinkSource - uid: 1630 components: @@ -145118,8 +146214,9 @@ entities: type: Transform - linkedPorts: 1453: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle type: DeviceLinkSource - uid: 1631 components: @@ -145128,11 +146225,13 @@ entities: type: Transform - linkedPorts: 564: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 464: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle type: DeviceLinkSource - uid: 1632 components: @@ -145141,11 +146240,23 @@ entities: type: Transform - linkedPorts: 467: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 729: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle + type: DeviceLinkSource + - uid: 2809 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-24.5 + parent: 6747 + type: Transform + - linkedPorts: + 2808: + - Status: Toggle type: DeviceLinkSource - uid: 4694 components: @@ -145155,8 +146266,9 @@ entities: type: Transform - linkedPorts: 4613: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle type: DeviceLinkSource - uid: 5203 components: @@ -145166,8 +146278,9 @@ entities: type: Transform - linkedPorts: 5185: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle type: DeviceLinkSource - uid: 6680 components: @@ -145177,11 +146290,13 @@ entities: type: Transform - linkedPorts: 2574: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 881: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle type: DeviceLinkSource - uid: 6910 components: @@ -145217,8 +146332,7 @@ entities: type: Transform - linkedPorts: 23672: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 6920 components: @@ -145228,23 +146342,29 @@ entities: type: Transform - linkedPorts: 6927: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 6619: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 8441: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 6921: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 8442: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 6900: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle type: DeviceLinkSource - uid: 7490 components: @@ -145253,11 +146373,13 @@ entities: type: Transform - linkedPorts: 12030: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 958: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle type: DeviceLinkSource - uid: 8129 components: @@ -145267,11 +146389,13 @@ entities: type: Transform - linkedPorts: 8094: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 8093: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle type: DeviceLinkSource - uid: 8130 components: @@ -145281,11 +146405,13 @@ entities: type: Transform - linkedPorts: 8077: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 8078: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle type: DeviceLinkSource - uid: 8459 components: @@ -145294,8 +146420,9 @@ entities: type: Transform - linkedPorts: 907: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 6176: - On: Forward - Off: Off @@ -145306,8 +146433,9 @@ entities: - On: Forward - Off: Off 8324: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 8252: - On: Forward - Off: Off @@ -145352,23 +146480,29 @@ entities: type: Transform - linkedPorts: 8507: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 8508: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 8805: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 8804: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 8902: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 8903: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle type: DeviceLinkSource - uid: 12119 components: @@ -145377,8 +146511,9 @@ entities: type: Transform - linkedPorts: 1427: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle type: DeviceLinkSource - uid: 12448 components: @@ -145388,29 +146523,37 @@ entities: type: Transform - linkedPorts: 8423: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 8422: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 8421: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 8420: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 11169: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 8426: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 8425: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 8424: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle type: DeviceLinkSource - uid: 16317 components: @@ -145420,8 +146563,7 @@ entities: type: Transform - linkedPorts: 16316: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 16364 components: @@ -145431,8 +146573,7 @@ entities: type: Transform - linkedPorts: 16362: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 16368 components: @@ -145442,8 +146583,7 @@ entities: type: Transform - linkedPorts: 16363: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 16369 components: @@ -145452,14 +146592,11 @@ entities: type: Transform - linkedPorts: 16372: - - On: On - - Off: Off + - Status: Toggle 16371: - - On: On - - Off: Off + - Status: Toggle 16370: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 16384 components: @@ -145469,8 +146606,7 @@ entities: type: Transform - linkedPorts: 16382: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 16444 components: @@ -145479,8 +146615,7 @@ entities: type: Transform - linkedPorts: 16441: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 16445 components: @@ -145490,8 +146625,7 @@ entities: type: Transform - linkedPorts: 16442: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 16583 components: @@ -145501,14 +146635,17 @@ entities: type: Transform - linkedPorts: 16588: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 16586: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 16587: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle type: DeviceLinkSource - uid: 16773 components: @@ -145518,8 +146655,7 @@ entities: type: Transform - linkedPorts: 17179: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 17331 components: @@ -145529,8 +146665,7 @@ entities: type: Transform - linkedPorts: 17336: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 17337 components: @@ -145540,8 +146675,7 @@ entities: type: Transform - linkedPorts: 16908: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 17341 components: @@ -145551,8 +146685,7 @@ entities: type: Transform - linkedPorts: 17233: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 17347 components: @@ -145562,8 +146695,7 @@ entities: type: Transform - linkedPorts: 16943: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 17349 components: @@ -145572,8 +146704,7 @@ entities: type: Transform - linkedPorts: 16942: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 17350 components: @@ -145583,8 +146714,7 @@ entities: type: Transform - linkedPorts: 16941: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 17351 components: @@ -145593,8 +146723,7 @@ entities: type: Transform - linkedPorts: 16940: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 17352 components: @@ -145603,8 +146732,7 @@ entities: type: Transform - linkedPorts: 16939: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 17353 components: @@ -145613,8 +146741,7 @@ entities: type: Transform - linkedPorts: 16946: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 17354 components: @@ -145624,30 +146751,7 @@ entities: type: Transform - linkedPorts: 16945: - - On: On - - Off: Off - type: DeviceLinkSource - - uid: 17357 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-23.5 - parent: 6747 - type: Transform - - linkedPorts: - 16935: - - On: On - - Off: Off - type: DeviceLinkSource - - uid: 17358 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-23.5 - parent: 6747 - type: Transform - - linkedPorts: - 16936: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 17359 components: @@ -145657,8 +146761,7 @@ entities: type: Transform - linkedPorts: 16937: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 17360 components: @@ -145667,8 +146770,7 @@ entities: type: Transform - linkedPorts: 16938: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 17361 components: @@ -145677,8 +146779,7 @@ entities: type: Transform - linkedPorts: 16232: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 18562 components: @@ -145693,8 +146794,9 @@ entities: - On: Forward - Off: Off 1024: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 1020: - On: Forward - Off: Off @@ -145708,8 +146810,9 @@ entities: - On: Forward - Off: Off 1023: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 8566: - On: Forward - Off: Off @@ -145717,6 +146820,26 @@ entities: - On: Forward - Off: Off type: DeviceLinkSource + - uid: 21725 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-80.5 + parent: 6747 + type: Transform + - linkedPorts: + 16916: + - Status: Toggle + type: DeviceLinkSource + - uid: 21726 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-70.5 + parent: 6747 + type: Transform + - linkedPorts: + 17090: + - Status: Toggle + type: DeviceLinkSource - uid: 22343 components: - rot: 1.5707963267948966 rad @@ -145725,8 +146848,7 @@ entities: type: Transform - linkedPorts: 22199: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 22632 components: @@ -145736,8 +146858,7 @@ entities: type: Transform - linkedPorts: 22631: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 23539 components: @@ -145749,32 +146870,41 @@ entities: type: SignalSwitch - linkedPorts: 23538: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 23537: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 23536: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 23535: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 23534: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 23533: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 23532: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 23531: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 6873: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle type: DeviceLinkSource - type: ItemCooldown - uid: 25385 @@ -145784,17 +146914,21 @@ entities: type: Transform - linkedPorts: 25316: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 25382: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 25383: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 25384: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle type: DeviceLinkSource - uid: 26595 components: @@ -145804,11 +146938,13 @@ entities: type: Transform - linkedPorts: 13403: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 13404: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle type: DeviceLinkSource - uid: 27049 components: @@ -145817,11 +146953,13 @@ entities: type: Transform - linkedPorts: 13413: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 13414: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle type: DeviceLinkSource - uid: 27053 components: @@ -145831,11 +146969,13 @@ entities: type: Transform - linkedPorts: 3899: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 12864: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle type: DeviceLinkSource - uid: 27054 components: @@ -145845,11 +146985,123 @@ entities: type: Transform - linkedPorts: 3899: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle 12864: - - On: Open - - Off: Close + - Status: Toggle + - On: Toggle + - Off: Toggle + type: DeviceLinkSource + - uid: 27345 + components: + - rot: -1.5707963267948966 rad + pos: 53.5,8.5 + parent: 6747 + type: Transform + - linkedPorts: + 21738: + - Status: Toggle + - On: Toggle + - Off: Toggle + 27193: + - Status: Toggle + - On: Toggle + - Off: Toggle + 27194: + - Status: Toggle + - On: Toggle + - Off: Toggle + 27330: + - Status: Toggle + - On: Toggle + - Off: Toggle + 27331: + - Status: Toggle + - On: Toggle + - Off: Toggle + 27332: + - Status: Toggle + - On: Toggle + - Off: Toggle + 27333: + - Status: Toggle + - On: Toggle + - Off: Toggle + 27334: + - Status: Toggle + - On: Toggle + - Off: Toggle + 27335: + - Status: Toggle + - On: Toggle + - Off: Toggle + 27336: + - Status: Toggle + - On: Toggle + - Off: Toggle + 27337: + - Status: Toggle + - On: Toggle + - Off: Toggle + 27338: + - Status: Toggle + - On: Toggle + - Off: Toggle + 27339: + - Status: Toggle + - On: Toggle + - Off: Toggle + 27340: + - Status: Toggle + - On: Toggle + - Off: Toggle + 27344: + - Status: Toggle + - On: Toggle + - Off: Toggle + 27343: + - Status: Toggle + - On: Toggle + - Off: Toggle + 27342: + - Status: Toggle + - On: Toggle + - Off: Toggle + 27341: + - Status: Toggle + - On: Toggle + - Off: Toggle + type: DeviceLinkSource + - uid: 27347 + components: + - pos: -41.5,14.5 + parent: 6747 + type: Transform + - linkedPorts: + 7943: + - On: Toggle + - Off: Toggle + - Status: Toggle + 27346: + - On: Toggle + - Off: Toggle + - Status: Toggle + type: DeviceLinkSource + - uid: 27348 + components: + - pos: -38.5,14.5 + parent: 6747 + type: Transform + - linkedPorts: + 7943: + - On: Toggle + - Off: Toggle + - Status: Toggle + 27346: + - On: Toggle + - Off: Toggle + - Status: Toggle type: DeviceLinkSource - proto: SignalTimerElectronics entities: @@ -146695,6 +147947,13 @@ entities: - pos: -8.5,-0.5 parent: 6747 type: Transform +- proto: SignLawyer + entities: + - uid: 27084 + components: + - pos: -9.5,-55.5 + parent: 6747 + type: Transform - proto: SignLibrary entities: - uid: 9143 @@ -146988,12 +148247,6 @@ entities: type: Transform - proto: SinkStemlessWater entities: - - uid: 679 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-27.5 - parent: 6747 - type: Transform - uid: 8798 components: - pos: 31.5,-17.5 @@ -147016,6 +148269,24 @@ entities: pos: -25.5,-39.5 parent: 6747 type: Transform + - uid: 27271 + components: + - rot: 3.141592653589793 rad + pos: 59.5,-35.5 + parent: 6747 + type: Transform + - uid: 27272 + components: + - rot: 3.141592653589793 rad + pos: 61.5,-35.5 + parent: 6747 + type: Transform + - uid: 27327 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-23.5 + parent: 6747 + type: Transform - proto: SinkWide entities: - uid: 8379 @@ -147042,6 +148313,15 @@ entities: pos: 4.5,23.5 parent: 6747 type: Transform +- proto: SmartFridge + entities: + - uid: 5374 + components: + - flags: SessionSpecific + type: MetaData + - pos: 14.5,-23.5 + parent: 6747 + type: Transform - proto: SMESBasic entities: - uid: 2988 @@ -148111,6 +149391,13 @@ entities: pos: -39.5,-36.5 parent: 6747 type: Transform +- proto: SpareIdCabinetFilled + entities: + - uid: 27349 + components: + - pos: -33.5,-44.5 + parent: 6747 + type: Transform - proto: SpawnMobAdultSlimesBlue entities: - uid: 6545 @@ -148472,9 +149759,9 @@ entities: type: Transform - proto: SpawnPointChemist entities: - - uid: 25583 + - uid: 17358 components: - - pos: 11.5,-25.5 + - pos: 10.5,-26.5 parent: 6747 type: Transform - uid: 25584 @@ -149243,6 +150530,22 @@ entities: - pos: 5.5,-4.5 parent: 6747 type: Transform +- proto: SpawnVehicleWheelchair + entities: + - uid: 27076 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-27.5 + parent: 6747 + type: Transform +- proto: SpawnVehicleWheelchairFolded + entities: + - uid: 27077 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-29.5 + parent: 6747 + type: Transform - proto: SpawnVendingMachineRestockFoodDrink entities: - uid: 8327 @@ -149280,6 +150583,18 @@ entities: - pos: -44.352547,6.561946 parent: 6747 type: Transform +- proto: SprayBottleWater + entities: + - uid: 27266 + components: + - pos: 57.62973,-34.36491 + parent: 6747 + type: Transform + - uid: 27267 + components: + - pos: 57.431816,-34.385757 + parent: 6747 + type: Transform - proto: StasisBed entities: - uid: 1970 @@ -149419,6 +150734,18 @@ entities: pos: -48.49578,6.0301065 parent: 6747 type: Transform + - uid: 27275 + components: + - rot: 3.141592653589793 rad + pos: 59.492825,-35.458168 + parent: 6747 + type: Transform + - uid: 27276 + components: + - rot: 3.141592653589793 rad + pos: 61.492825,-35.458168 + parent: 6747 + type: Transform - proto: StoolBar entities: - uid: 1572 @@ -149494,71 +150821,99 @@ entities: - pos: 22.5,-59.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 4418 components: - pos: 22.5,-60.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 7669 components: - pos: 61.5,25.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 7788 components: - pos: 44.5,42.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 7789 components: - pos: 46.5,42.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 8186 components: - pos: 32.5,32.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 8187 components: - pos: 33.5,32.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 8191 components: - pos: 33.5,30.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 11259 components: - pos: 4.5,-91.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 11355 components: - pos: 53.5,-18.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 15857 components: - pos: -50.5,-5.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 15858 components: - pos: -49.5,-5.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 16210 components: - pos: 10.5,-20.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 26917 components: - pos: 10.5,-19.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - proto: StrangePill entities: - uid: 20202 @@ -151345,6 +152700,12 @@ entities: - pos: -22.5,-69.5 parent: 6747 type: Transform + - uid: 27162 + components: + - rot: 3.141592653589793 rad + pos: 27.5,18.5 + parent: 6747 + type: Transform - proto: TableCarpet entities: - uid: 792 @@ -152892,11 +154253,6 @@ entities: - pos: 13.5,-26.5 parent: 6747 type: Transform - - uid: 3755 - components: - - pos: 10.5,-26.5 - parent: 6747 - type: Transform - uid: 3942 components: - pos: -20.5,-55.5 @@ -152947,16 +154303,6 @@ entities: - pos: -0.5,-59.5 parent: 6747 type: Transform - - uid: 5618 - components: - - pos: 10.5,-27.5 - parent: 6747 - type: Transform - - uid: 5632 - components: - - pos: 10.5,-25.5 - parent: 6747 - type: Transform - uid: 11116 components: - pos: 27.5,-76.5 @@ -152983,6 +154329,16 @@ entities: - pos: 48.5,26.5 parent: 6747 type: Transform + - uid: 19422 + components: + - pos: 9.5,-27.5 + parent: 6747 + type: Transform + - uid: 19847 + components: + - pos: 9.5,-26.5 + parent: 6747 + type: Transform - uid: 23600 components: - pos: -22.5,-50.5 @@ -152993,6 +154349,11 @@ entities: - pos: -23.5,-50.5 parent: 6747 type: Transform + - uid: 27329 + components: + - pos: 9.5,-25.5 + parent: 6747 + type: Transform - proto: TableStone entities: - uid: 1686 @@ -154035,6 +155396,8 @@ entities: pos: 61.5,32.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - proto: TegCirculator entities: - uid: 13000 @@ -154407,12 +155770,6 @@ entities: - pos: 35.5,-55.5 parent: 6747 type: Transform - - uid: 11467 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-28.5 - parent: 6747 - type: Transform - proto: ToiletEmpty entities: - uid: 1563 @@ -155403,15 +156760,6 @@ entities: - pos: -0.5,-18.5 parent: 6747 type: Transform -- proto: VendingMachineSmartFridge - entities: - - uid: 5374 - components: - - flags: SessionSpecific - type: MetaData - - pos: 14.5,-23.5 - parent: 6747 - type: Transform - proto: VendingMachineSovietSoda entities: - uid: 6916 @@ -155478,13 +156826,6 @@ entities: type: Transform - proto: VendingMachineWallMedical entities: - - uid: 490 - components: - - flags: SessionSpecific - type: MetaData - - pos: -21.5,-7.5 - parent: 6747 - type: Transform - uid: 5675 components: - flags: SessionSpecific @@ -155509,6 +156850,11 @@ entities: pos: 16.5,-14.5 parent: 6747 type: Transform + - uid: 22108 + components: + - pos: -21.5,-7.5 + parent: 6747 + type: Transform - proto: VendingMachineYouTool entities: - uid: 6403 @@ -156676,12 +158022,7 @@ entities: type: Transform - uid: 774 components: - - pos: 9.5,-25.5 - parent: 6747 - type: Transform - - uid: 776 - components: - - pos: 9.5,-27.5 + - pos: 8.5,-28.5 parent: 6747 type: Transform - uid: 777 @@ -159371,7 +160712,7 @@ entities: type: Transform - uid: 3756 components: - - pos: 9.5,-26.5 + - pos: 62.5,-32.5 parent: 6747 type: Transform - uid: 3945 @@ -159519,6 +160860,11 @@ entities: - pos: -34.5,-50.5 parent: 6747 type: Transform + - uid: 4080 + components: + - pos: 58.5,-32.5 + parent: 6747 + type: Transform - uid: 4319 components: - pos: 7.5,-62.5 @@ -160324,11 +161670,6 @@ entities: - pos: 16.5,-70.5 parent: 6747 type: Transform - - uid: 5238 - components: - - pos: 15.5,-70.5 - parent: 6747 - type: Transform - uid: 5239 components: - pos: 16.5,-73.5 @@ -161034,11 +162375,6 @@ entities: - pos: 56.5,-42.5 parent: 6747 type: Transform - - uid: 5865 - components: - - pos: 60.5,-30.5 - parent: 6747 - type: Transform - uid: 5868 components: - pos: 56.5,-41.5 @@ -164074,6 +165410,11 @@ entities: - pos: 52.5,22.5 parent: 6747 type: Transform + - uid: 12919 + components: + - pos: 8.5,-26.5 + parent: 6747 + type: Transform - uid: 12949 components: - pos: -50.5,-13.5 @@ -164224,6 +165565,11 @@ entities: - pos: -47.5,-38.5 parent: 6747 type: Transform + - uid: 14190 + components: + - pos: 57.5,-32.5 + parent: 6747 + type: Transform - uid: 14448 components: - pos: -46.5,-38.5 @@ -164454,6 +165800,11 @@ entities: - pos: 54.5,-53.5 parent: 6747 type: Transform + - uid: 17296 + components: + - pos: 8.5,-25.5 + parent: 6747 + type: Transform - uid: 17346 components: - pos: 43.5,-58.5 @@ -165114,6 +166465,11 @@ entities: - pos: 9.5,-18.5 parent: 6747 type: Transform + - uid: 26893 + components: + - pos: 63.5,-32.5 + parent: 6747 + type: Transform - uid: 26902 components: - pos: 9.5,-16.5 @@ -165139,6 +166495,31 @@ entities: - pos: 13.5,-16.5 parent: 6747 type: Transform + - uid: 27179 + components: + - pos: 8.5,-24.5 + parent: 6747 + type: Transform + - uid: 27233 + components: + - pos: 60.5,-36.5 + parent: 6747 + type: Transform + - uid: 27234 + components: + - pos: 64.5,-32.5 + parent: 6747 + type: Transform + - uid: 27235 + components: + - pos: 64.5,-36.5 + parent: 6747 + type: Transform + - uid: 27328 + components: + - pos: 8.5,-27.5 + parent: 6747 + type: Transform - proto: WallShuttle entities: - uid: 6231 @@ -165553,11 +166934,6 @@ entities: - pos: -18.5,-22.5 parent: 6747 type: Transform - - uid: 714 - components: - - pos: 8.5,-24.5 - parent: 6747 - type: Transform - uid: 715 components: - pos: -21.5,-38.5 @@ -168133,11 +169509,6 @@ entities: - pos: 26.5,28.5 parent: 6747 type: Transform - - uid: 4736 - components: - - pos: -12.5,-62.5 - parent: 6747 - type: Transform - uid: 4738 components: - pos: -12.5,-61.5 @@ -168648,11 +170019,6 @@ entities: - pos: 52.5,-19.5 parent: 6747 type: Transform - - uid: 6608 - components: - - pos: 35.5,12.5 - parent: 6747 - type: Transform - uid: 6623 components: - pos: 7.5,28.5 @@ -169878,6 +171244,11 @@ entities: - pos: 6.5,28.5 parent: 6747 type: Transform + - uid: 27200 + components: + - pos: 35.5,12.5 + parent: 6747 + type: Transform - proto: WallSolidRust entities: - uid: 7105 @@ -171014,16 +172385,22 @@ entities: - pos: 32.5,31.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 8270 components: - pos: 60.5,25.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - uid: 11258 components: - pos: 3.5,-82.5 parent: 6747 type: Transform + - joinedGrid: 6747 + type: AtmosDevice - proto: WeaponCapacitorRecharger entities: - uid: 120 @@ -171208,11 +172585,6 @@ entities: - pos: 38.5,25.5 parent: 6747 type: Transform - - uid: 22047 - components: - - pos: 54.5,15.5 - parent: 6747 - type: Transform - proto: WeldingFuelTankFull entities: - uid: 5073 @@ -171260,6 +172632,11 @@ entities: - pos: 70.5,21.5 parent: 6747 type: Transform + - uid: 22047 + components: + - pos: 54.5,15.5 + parent: 6747 + type: Transform - proto: WetFloorSign entities: - uid: 3428 @@ -171586,14 +172963,6 @@ entities: pos: -37.5,-24.5 parent: 6747 type: Transform -- proto: WindoorSecureBrigLocked - entities: - - uid: 1905 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-44.5 - parent: 6747 - type: Transform - proto: WindoorSecureChemistryLocked entities: - uid: 3757 @@ -171608,6 +172977,16 @@ entities: pos: 14.5,-24.5 parent: 6747 type: Transform + - uid: 23655 + components: + - pos: 10.5,-21.5 + parent: 6747 + type: Transform + - uid: 26190 + components: + - pos: 13.5,-21.5 + parent: 6747 + type: Transform - uid: 26914 components: - pos: 12.5,-21.5 @@ -171816,6 +173195,14 @@ entities: - pos: 28.5,-64.5 parent: 6747 type: Transform +- proto: WindoorSecureSecurityLawyerLocked + entities: + - uid: 1905 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-44.5 + parent: 6747 + type: Transform - proto: WindoorSecureSecurityLocked entities: - uid: 139 @@ -171923,6 +173310,18 @@ entities: pos: 26.5,-94.5 parent: 6747 type: Transform + - uid: 27261 + components: + - rot: -1.5707963267948966 rad + pos: 58.5,-33.5 + parent: 6747 + type: Transform + - uid: 27262 + components: + - rot: -1.5707963267948966 rad + pos: 58.5,-34.5 + parent: 6747 + type: Transform - proto: WindoorTheatreLocked entities: - uid: 2204 @@ -171939,6 +173338,11 @@ entities: type: Transform - proto: Window entities: + - uid: 352 + components: + - pos: 60.5,-30.5 + parent: 6747 + type: Transform - uid: 373 components: - pos: -14.5,-13.5 @@ -173288,6 +174692,11 @@ entities: pos: 24.5,8.5 parent: 6747 type: Transform + - uid: 27263 + components: + - pos: 57.5,-34.5 + parent: 6747 + type: Transform - proto: WindowReinforcedDirectional entities: - uid: 680 @@ -174178,16 +175587,6 @@ entities: pos: 53.5,-43.5 parent: 6747 type: Transform - - uid: 23655 - components: - - pos: 10.5,-21.5 - parent: 6747 - type: Transform - - uid: 26190 - components: - - pos: 13.5,-21.5 - parent: 6747 - type: Transform - uid: 26333 components: - pos: 11.5,-21.5 diff --git a/Resources/Maps/asterisk.yml b/Resources/Maps/asterisk.yml index e105eb29b3..6b26db2747 100644 --- a/Resources/Maps/asterisk.yml +++ b/Resources/Maps/asterisk.yml @@ -6,50 +6,50 @@ tilemap: 1: FloorArcadeBlue 3: FloorArcadeRed 11: FloorAsteroidTile - 12: FloorBar - 15: FloorBlueCircuit - 16: FloorBoxing - 17: FloorBrokenWood - 18: FloorCarpetClown - 19: FloorCarpetOffice - 25: FloorConcreteMono - 27: FloorDark - 32: FloorDarkMono - 39: FloorEighties - 42: FloorFreezer - 43: FloorGlass - 45: FloorGrass - 49: FloorGrayConcrete - 50: FloorGrayConcreteMono - 52: FloorGreenCircuit - 54: FloorHull - 55: FloorHullReinforced - 56: FloorHydro - 58: FloorKitchen - 59: FloorLaundry - 60: FloorLino - 62: FloorMetalDiamond - 63: FloorMime - 64: FloorMono - 66: FloorOldConcreteMono - 71: FloorRGlass - 72: FloorReinforced - 73: FloorReinforcedHardened - 82: FloorSnow - 83: FloorSnowDug - 84: FloorSteel - 85: FloorSteelCheckerDark - 89: FloorSteelDirty - 94: FloorSteelPavement - 96: FloorTechMaint - 97: FloorTechMaint2 - 98: FloorTechMaint3 - 100: FloorWhite - 104: FloorWhiteMini - 110: FloorWood - 111: FloorWoodTile - 112: Lattice - 113: Plating + 14: FloorBar + 18: FloorBlueCircuit + 19: FloorBoxing + 20: FloorBrokenWood + 21: FloorCarpetClown + 22: FloorCarpetOffice + 28: FloorConcreteMono + 30: FloorDark + 35: FloorDarkMono + 42: FloorEighties + 45: FloorFreezer + 46: FloorGlass + 48: FloorGrass + 52: FloorGrayConcrete + 53: FloorGrayConcreteMono + 55: FloorGreenCircuit + 57: FloorHull + 58: FloorHullReinforced + 59: FloorHydro + 61: FloorKitchen + 62: FloorLaundry + 63: FloorLino + 65: FloorMetalDiamond + 66: FloorMime + 70: FloorMono + 72: FloorOldConcreteMono + 77: FloorRGlass + 78: FloorReinforced + 79: FloorReinforcedHardened + 88: FloorSnow + 89: FloorSnowDug + 90: FloorSteel + 92: FloorSteelCheckerDark + 97: FloorSteelDirty + 103: FloorSteelPavement + 105: FloorTechMaint + 106: FloorTechMaint2 + 107: FloorTechMaint3 + 109: FloorWhite + 113: FloorWhiteMini + 119: FloorWood + 120: FloorWoodTile + 121: Lattice + 122: Plating entities: - proto: "" entities: @@ -75,177 +75,177 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: VAAAAAADVAAAAAAAVAAAAAACVAAAAAACYAAAAAAAVAAAAAACKwAAAAACVAAAAAABVAAAAAADcQAAAAAAGwAAAAABGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAKwAAAAADKwAAAAADVAAAAAABYAAAAAAAVAAAAAADVAAAAAADKwAAAAACVAAAAAACYAAAAAAAbgAAAAACbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAVAAAAAADKwAAAAAAVAAAAAADVAAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAKwAAAAACVAAAAAACYAAAAAAAGwAAAAABGwAAAAACGwAAAAADYQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABcQAAAAAAGwAAAAACGwAAAAABGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAACwAAAAAACwAAAAAACwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAADcQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADYAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACcQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAABYAAAAAAAbgAAAAACbgAAAAABbgAAAAACbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABSAAAAAAASAAAAAAASAAAAAAAVAAAAAACVAAAAAADcQAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: WgAAAAADWgAAAAAAWgAAAAACWgAAAAACaQAAAAAAWgAAAAACLgAAAAACWgAAAAABWgAAAAADegAAAAAAHgAAAAABHgAAAAACHgAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAALgAAAAADLgAAAAADWgAAAAABaQAAAAAAWgAAAAADWgAAAAADLgAAAAACWgAAAAACaQAAAAAAdwAAAAACdwAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAAAegAAAAAAWgAAAAADLgAAAAAAWgAAAAADWgAAAAAAegAAAAAAdwAAAAACdwAAAAACdwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAAALgAAAAACWgAAAAACaQAAAAAAHgAAAAABHgAAAAACHgAAAAADagAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAABegAAAAAAHgAAAAACHgAAAAABHgAAAAADegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAABagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAATgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAACwAAAAAACwAAAAAACwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAADegAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADaQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAagAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAADWgAAAAACegAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAACWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAABaQAAAAAAdwAAAAACdwAAAAABdwAAAAACdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABTgAAAAAATgAAAAAATgAAAAAAWgAAAAACWgAAAAADegAAAAAAdwAAAAABdwAAAAABdwAAAAACdwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAaQAAAAAAegAAAAAAegAAAAAATgAAAAAAaQAAAAAAaQAAAAAAegAAAAAAdwAAAAADdwAAAAAAdwAAAAAAdwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -1,0: ind: -1,0 - tiles: cQAAAAAAcQAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAABcQAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAAAYAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAVAAAAAABKwAAAAADVAAAAAABVAAAAAAAYAAAAAAAVAAAAAAAKwAAAAADKwAAAAADVAAAAAABcQAAAAAAYgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADKwAAAAAAVAAAAAAAVAAAAAADcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAYgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAVAAAAAABVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAVAAAAAABVAAAAAABVAAAAAADcQAAAAAAVAAAAAABKwAAAAACKwAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADYAAAAAAAVAAAAAADKwAAAAADKwAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAACcQAAAAAAVAAAAAACKwAAAAABVAAAAAACcQAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACKwAAAAAAGwAAAAABcQAAAAAAVAAAAAADKwAAAAAAVAAAAAADcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADKwAAAAACGwAAAAABcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAGwAAAAADGwAAAAACGwAAAAAAYAAAAAAAVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAAAbgAAAAAAcQAAAAAAVAAAAAADKwAAAAACVAAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAACcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAKwAAAAACVAAAAAACcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAYAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAACcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAADOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: egAAAAAAegAAAAAAawAAAAACawAAAAACawAAAAADawAAAAABegAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAAAaQAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAWgAAAAABLgAAAAADWgAAAAABWgAAAAAAaQAAAAAAWgAAAAAALgAAAAADLgAAAAADWgAAAAABegAAAAAAawAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADLgAAAAAAWgAAAAAAWgAAAAADegAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADegAAAAAAawAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAWgAAAAABWgAAAAAAWgAAAAABegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAWgAAAAABWgAAAAABWgAAAAADegAAAAAAWgAAAAABLgAAAAACLgAAAAADWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAADaQAAAAAAWgAAAAADLgAAAAADLgAAAAACWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAABHgAAAAACegAAAAAAWgAAAAACLgAAAAABWgAAAAACegAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACLgAAAAAAHgAAAAABegAAAAAAWgAAAAADLgAAAAAAWgAAAAADegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADLgAAAAACHgAAAAABegAAAAAAWgAAAAAAWgAAAAABWgAAAAABegAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAagAAAAAAHgAAAAADHgAAAAACHgAAAAAAaQAAAAAAWgAAAAABWgAAAAABWgAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAABWgAAAAADegAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAAAdwAAAAAAegAAAAAAWgAAAAADLgAAAAACWgAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAABWgAAAAACegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAALgAAAAACWgAAAAACegAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAADWgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAADegAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAaQAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAACegAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAAAWgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: cQAAAAAADAAAAAAAKwAAAAAAKwAAAAADDAAAAAAAKwAAAAAADAAAAAADKwAAAAABKwAAAAAADAAAAAADYAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAADAAAAAACDAAAAAAADAAAAAACDAAAAAADDAAAAAAADAAAAAACDAAAAAAADAAAAAABDAAAAAABcQAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAACYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAACKwAAAAAAVAAAAAADVAAAAAADKwAAAAADKwAAAAADVAAAAAADVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAAAKwAAAAACVAAAAAADcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAABcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACKwAAAAACVAAAAAABcQAAAAAAVAAAAAADKwAAAAADKwAAAAABKwAAAAABVAAAAAACcQAAAAAASQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAADcQAAAAAASQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAARwAAAAAARwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADKwAAAAABVAAAAAADYAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAAAMQAAAAAAMQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAKwAAAAAAVAAAAAABcQAAAAAAVAAAAAADVAAAAAAAKwAAAAABKwAAAAAAVAAAAAABVAAAAAABSAAAAAAAMQAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACYAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACKwAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: egAAAAAADgAAAAAALgAAAAAALgAAAAADDgAAAAAALgAAAAAADgAAAAADLgAAAAABLgAAAAAADgAAAAADaQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAADgAAAAACDgAAAAAADgAAAAACDgAAAAADDgAAAAAADgAAAAACDgAAAAAADgAAAAABDgAAAAABegAAAAAAOwAAAAAAOwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAABWgAAAAABWgAAAAABWgAAAAABWgAAAAACWgAAAAACWgAAAAACagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAACLgAAAAAAWgAAAAADWgAAAAADLgAAAAADLgAAAAADWgAAAAADWgAAAAABWgAAAAADegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAADWgAAAAAALgAAAAACWgAAAAADegAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAABegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACLgAAAAACWgAAAAABegAAAAAAWgAAAAADLgAAAAADLgAAAAABLgAAAAABWgAAAAACegAAAAAATwAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAABWgAAAAADegAAAAAATwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAADegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAATQAAAAAATQAAAAABegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAADLgAAAAABWgAAAAADaQAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAADWgAAAAAANAAAAAAANAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAWgAAAAAALgAAAAAAWgAAAAABegAAAAAAWgAAAAADWgAAAAAALgAAAAABLgAAAAAAWgAAAAABWgAAAAABTgAAAAAANAAAAAADegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAACaQAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAACWgAAAAACWgAAAAACegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACLgAAAAACWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAVAAAAAABVAAAAAABKwAAAAACVAAAAAADcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADKwAAAAACVAAAAAABcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAYQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAYAAAAAAAVAAAAAACVAAAAAAAVAAAAAACYAAAAAAAVAAAAAABKwAAAAAAKwAAAAADVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAOAAAAAAAOAAAAAAALQAAAAAALQAAAAAAcQAAAAAAVAAAAAACKwAAAAABVAAAAAABYAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAOAAAAAAAOAAAAAAALQAAAAAALQAAAAAAcQAAAAAAVAAAAAAAKwAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYQAAAAAAcQAAAAAAOAAAAAAAOAAAAAAALQAAAAAALQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAASQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASQAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAABcQAAAAAAVAAAAAACVAAAAAACKwAAAAABVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAABRwAAAAABVAAAAAAAVAAAAAAAKwAAAAAAKwAAAAACVAAAAAACYAAAAAAAVAAAAAADVAAAAAAAKwAAAAACVAAAAAACcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAMQAAAAABMQAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAMQAAAAAASAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAGwAAAAADGwAAAAADGwAAAAACcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAGwAAAAAAGwAAAAABGwAAAAADcQAAAAAAVAAAAAADKwAAAAABVAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAGwAAAAABGwAAAAACGwAAAAABYAAAAAAAVAAAAAAAKwAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAWgAAAAABWgAAAAABLgAAAAACWgAAAAADegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADLgAAAAACWgAAAAABegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAADegAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABegAAAAAAegAAAAAAagAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAaQAAAAAAWgAAAAACWgAAAAAAWgAAAAACaQAAAAAAWgAAAAABLgAAAAAALgAAAAADWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAOwAAAAAAOwAAAAAAMAAAAAAAMAAAAAAAegAAAAAAWgAAAAACLgAAAAABWgAAAAABaQAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAADWgAAAAADegAAAAAAegAAAAAAOwAAAAAAOwAAAAAAMAAAAAAAMAAAAAAAegAAAAAAWgAAAAAALgAAAAADWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAagAAAAAAegAAAAAAOwAAAAAAOwAAAAAAMAAAAAAAMAAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAABegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAATwAAAAAAWgAAAAACegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAABegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAATwAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAACWgAAAAABegAAAAAAWgAAAAACWgAAAAACLgAAAAABWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAATQAAAAABTQAAAAABWgAAAAAAWgAAAAAALgAAAAAALgAAAAACWgAAAAACaQAAAAAAWgAAAAADWgAAAAAALgAAAAACWgAAAAACegAAAAAAeQAAAAAAeQAAAAAAegAAAAAANAAAAAABNAAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAACWgAAAAACegAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAANAAAAAAATgAAAAAAWgAAAAADegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAAAHgAAAAADHgAAAAADHgAAAAACegAAAAAAWgAAAAACWgAAAAACWgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAawAAAAAAHgAAAAAAHgAAAAABHgAAAAADegAAAAAAWgAAAAADLgAAAAABWgAAAAABegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAawAAAAAAHgAAAAABHgAAAAACHgAAAAABaQAAAAAAWgAAAAAALgAAAAACWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: XgAAAAABXgAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAADcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAXgAAAAABXgAAAAACcQAAAAAAGwAAAAABcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAXgAAAAACcQAAAAAAGwAAAAAAcQAAAAAAGwAAAAABYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAXgAAAAACcQAAAAAAGwAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAXgAAAAABcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAXgAAAAAAXgAAAAAAYAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAAAKwAAAAACKwAAAAADVAAAAAACYQAAAAAAcQAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAAAXgAAAAABYAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAKwAAAAACKwAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAKwAAAAADKwAAAAADVAAAAAAAVAAAAAADKwAAAAABKwAAAAABVAAAAAADVAAAAAACKwAAAAADKwAAAAADVAAAAAACVAAAAAACKwAAAAACKwAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACbgAAAAACbgAAAAADKwAAAAACbgAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAADKwAAAAACVAAAAAABVAAAAAACKwAAAAACVAAAAAADcQAAAAAAYQAAAAAAbgAAAAACbgAAAAABKwAAAAAAbgAAAAAAcQAAAAAAVAAAAAADVAAAAAACcQAAAAAAVAAAAAABKwAAAAADVAAAAAADVAAAAAABKwAAAAABVAAAAAACcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAACbgAAAAABbgAAAAADYAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAAAKwAAAAAAVAAAAAACVAAAAAADKwAAAAAAVAAAAAADYQAAAAAAcQAAAAAA + tiles: ZwAAAAABZwAAAAADZwAAAAACZwAAAAACZwAAAAABZwAAAAADegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAZwAAAAABZwAAAAACegAAAAAAHgAAAAABegAAAAAAHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAZwAAAAACegAAAAAAHgAAAAAAegAAAAAAHgAAAAABaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAZwAAAAACegAAAAAAHgAAAAAAegAAAAAAHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAZwAAAAABegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAZwAAAAAAZwAAAAAAaQAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAAALgAAAAACLgAAAAADWgAAAAACagAAAAAAegAAAAAAZwAAAAADZwAAAAADZwAAAAACZwAAAAABZwAAAAAAZwAAAAABaQAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAAALgAAAAACLgAAAAABWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAAAWgAAAAADegAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAADWgAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAALgAAAAADLgAAAAADWgAAAAAAWgAAAAADLgAAAAABLgAAAAABWgAAAAADWgAAAAACLgAAAAADLgAAAAADWgAAAAACWgAAAAACLgAAAAACLgAAAAABWgAAAAABWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAADWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAADWgAAAAADegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACdwAAAAACdwAAAAADLgAAAAACdwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAADLgAAAAACWgAAAAABWgAAAAACLgAAAAACWgAAAAADegAAAAAAagAAAAAAdwAAAAACdwAAAAABLgAAAAAAdwAAAAAAegAAAAAAWgAAAAADWgAAAAACegAAAAAAWgAAAAABLgAAAAADWgAAAAADWgAAAAABLgAAAAABWgAAAAACegAAAAAAegAAAAAAdwAAAAAAdwAAAAACdwAAAAABdwAAAAADaQAAAAAAWgAAAAADWgAAAAACWgAAAAADWgAAAAAALgAAAAAAWgAAAAACWgAAAAADLgAAAAAAWgAAAAADagAAAAAAegAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: OAAAAAAAOAAAAAAAcQAAAAAAaAAAAAAAaAAAAAACaAAAAAABaAAAAAADcQAAAAAAZAAAAAADZAAAAAAAKwAAAAACZAAAAAAAKwAAAAAAZAAAAAAAKwAAAAAAZAAAAAADYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAKwAAAAADKwAAAAABcQAAAAAAZAAAAAABZAAAAAABZAAAAAAAZAAAAAABZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAADZAAAAAADZAAAAAACZAAAAAAAZAAAAAACZAAAAAADZAAAAAABcQAAAAAAZAAAAAACZAAAAAADZAAAAAACZAAAAAAAZAAAAAABcQAAAAAAcQAAAAAAYQAAAAAAZAAAAAAAZAAAAAABZAAAAAADZAAAAAAAZAAAAAADZAAAAAABZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACKwAAAAACKwAAAAAAZAAAAAADZAAAAAABKwAAAAABZAAAAAABcQAAAAAAZAAAAAABZAAAAAABZAAAAAACZAAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAKwAAAAABKwAAAAABZAAAAAABZAAAAAAAKwAAAAABZAAAAAABKwAAAAADZAAAAAAAZAAAAAADZAAAAAADZAAAAAABZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAADZAAAAAABZAAAAAACZAAAAAABZAAAAAAAZAAAAAADZAAAAAABcQAAAAAAZAAAAAABZAAAAAAAZAAAAAAAZAAAAAABZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAZAAAAAADZAAAAAACZAAAAAABZAAAAAAAZAAAAAADcQAAAAAAYQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAADKwAAAAADcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACYAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAABKwAAAAADKwAAAAAAVAAAAAACVAAAAAADKwAAAAADKwAAAAACVAAAAAAAVAAAAAADKwAAAAAAKwAAAAADVAAAAAAAcQAAAAAAVAAAAAADKwAAAAACKwAAAAAAKwAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAADVAAAAAADYAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAABcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAABcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAACVAAAAAADYAAAAAAAGwAAAAADGwAAAAACGwAAAAADcQAAAAAAGwAAAAADRwAAAAADVAAAAAACSAAAAAAAcQAAAAAAKwAAAAADKwAAAAABVAAAAAABVAAAAAABKwAAAAAAKwAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAAAYAAAAAAAGwAAAAAAVAAAAAABRwAAAAACGwAAAAAB + tiles: OwAAAAAAOwAAAAAAegAAAAAAcQAAAAAAcQAAAAACcQAAAAABcQAAAAADegAAAAAAbQAAAAADbQAAAAAALgAAAAACbQAAAAAALgAAAAAAbQAAAAAALgAAAAAAbQAAAAADagAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAALgAAAAADLgAAAAABegAAAAAAbQAAAAABbQAAAAABbQAAAAAAbQAAAAABbQAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAADbQAAAAACbQAAAAAAbQAAAAACbQAAAAADbQAAAAABegAAAAAAbQAAAAACbQAAAAADbQAAAAACbQAAAAAAbQAAAAABegAAAAAAegAAAAAAagAAAAAAbQAAAAAAbQAAAAABbQAAAAADbQAAAAAAbQAAAAADbQAAAAABbQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAACLgAAAAACLgAAAAAAbQAAAAADbQAAAAABLgAAAAABbQAAAAABegAAAAAAbQAAAAABbQAAAAABbQAAAAACbQAAAAAAbQAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAAALgAAAAABLgAAAAABbQAAAAABbQAAAAAALgAAAAABbQAAAAABLgAAAAADbQAAAAAAbQAAAAADbQAAAAADbQAAAAABbQAAAAABegAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAABbQAAAAACbQAAAAABbQAAAAAAbQAAAAADbQAAAAABegAAAAAAbQAAAAABbQAAAAAAbQAAAAAAbQAAAAABbQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAACegAAAAAAegAAAAAAegAAAAAALgAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAACbQAAAAABbQAAAAAAbQAAAAADegAAAAAAagAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAALgAAAAADLgAAAAADegAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAWgAAAAACaQAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAABLgAAAAADLgAAAAAAWgAAAAACWgAAAAADLgAAAAADLgAAAAACWgAAAAAAWgAAAAADLgAAAAAALgAAAAADWgAAAAAAegAAAAAAWgAAAAADLgAAAAACLgAAAAAALgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAADWgAAAAABWgAAAAABWgAAAAADWgAAAAADWgAAAAADaQAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAABegAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAABegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAACWgAAAAACWgAAAAADaQAAAAAAHgAAAAADHgAAAAACHgAAAAADegAAAAAAHgAAAAADTQAAAAADWgAAAAACTgAAAAAAegAAAAAALgAAAAADLgAAAAABWgAAAAABWgAAAAABLgAAAAAALgAAAAAAegAAAAAAHgAAAAABHgAAAAADHgAAAAAAaQAAAAAAHgAAAAAAWgAAAAABTQAAAAACHgAAAAAB version: 6 -1,-2: ind: -1,-2 - tiles: VQAAAAADSAAAAAAAVQAAAAAASAAAAAAAcQAAAAAAVAAAAAADKwAAAAAAKwAAAAABKwAAAAADVAAAAAACYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAAAYAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAADcQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAYQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAYAAAAAAAVAAAAAADKwAAAAADKwAAAAABKwAAAAAAVAAAAAACYAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAYAAAAAAAcQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAACcQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADKwAAAAADKwAAAAABKwAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACKwAAAAADKwAAAAABKwAAAAACVAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAYQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAYAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAABcQAAAAAAVAAAAAABVAAAAAACVAAAAAABcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAYQAAAAAAbgAAAAABbgAAAAADbgAAAAABbgAAAAADYAAAAAAAVAAAAAADKwAAAAADVAAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAACcQAAAAAAVAAAAAABKwAAAAADVAAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACYAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAA + tiles: XAAAAAADTgAAAAAAXAAAAAAATgAAAAAAegAAAAAAWgAAAAADLgAAAAAALgAAAAABLgAAAAADWgAAAAACagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAAAaQAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAIwAAAAACIwAAAAACIwAAAAACIwAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAADWgAAAAADegAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAagAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAaQAAAAAAWgAAAAADLgAAAAADLgAAAAABLgAAAAAAWgAAAAACaQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAaQAAAAAAegAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAABWgAAAAACegAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAADLgAAAAADLgAAAAABLgAAAAADWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADegAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACLgAAAAADLgAAAAABLgAAAAACWgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAagAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAaQAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAADWgAAAAADegAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAegAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAALQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAABegAAAAAAWgAAAAABWgAAAAACWgAAAAABegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAagAAAAAAdwAAAAABdwAAAAADdwAAAAABdwAAAAADaQAAAAAAWgAAAAADLgAAAAADWgAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAACegAAAAAAWgAAAAABLgAAAAADWgAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAACaQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAGwAAAAACGwAAAAABGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAGwAAAAABKwAAAAADGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAYgAAAAADYgAAAAABcQAAAAAAcQAAAAAAKwAAAAADGwAAAAABKwAAAAADcQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABKwAAAAADGwAAAAAAYAAAAAAAKwAAAAADKwAAAAABKwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAAAcQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAADAAAAAABbgAAAAADbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADAAAAAADDAAAAAADcQAAAAAADAAAAAAADAAAAAAADAAAAAADDAAAAAACDAAAAAABDAAAAAADcQAAAAAADAAAAAACbgAAAAACbgAAAAABcQAAAAAAcQAAAAAAKgAAAAAADAAAAAABDAAAAAABYAAAAAAADAAAAAADDAAAAAABDAAAAAABDAAAAAAADAAAAAACDAAAAAAAYAAAAAAADAAAAAAAbgAAAAABbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAADAAAAAACDAAAAAADcQAAAAAADAAAAAACDAAAAAACDAAAAAABDAAAAAACDAAAAAACDAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADAAAAAABDAAAAAABcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAOAAAAAAAGQAAAAAAGQAAAAACGQAAAAAAGQAAAAADcQAAAAAADAAAAAAADAAAAAACDAAAAAABDAAAAAAADAAAAAAADAAAAAACDAAAAAADDAAAAAAADAAAAAACcQAAAAAAOAAAAAAAGQAAAAABGQAAAAABGQAAAAABGQAAAAABcQAAAAAADAAAAAADKwAAAAACKwAAAAADDAAAAAACKwAAAAADDAAAAAABKwAAAAAAKwAAAAACDAAAAAAAYAAAAAAAOAAAAAAAGQAAAAADGQAAAAADGQAAAAAAGQAAAAABYAAAAAAADAAAAAACDAAAAAADDAAAAAACKwAAAAABKwAAAAABKwAAAAADDAAAAAABDAAAAAAADAAAAAADYAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAYAAAAAAADAAAAAABDAAAAAAADAAAAAADKwAAAAABKwAAAAAAKwAAAAABDAAAAAACDAAAAAACDAAAAAACcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAHgAAAAACHgAAAAABHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAHgAAAAABLgAAAAADHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAAAawAAAAADawAAAAABegAAAAAAegAAAAAALgAAAAADHgAAAAABLgAAAAADegAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABLgAAAAADHgAAAAAAaQAAAAAALgAAAAADLgAAAAABLgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAADHgAAAAAAegAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAADgAAAAABdwAAAAADdwAAAAAAegAAAAAAegAAAAAAegAAAAAADgAAAAADDgAAAAADegAAAAAADgAAAAAADgAAAAAADgAAAAADDgAAAAACDgAAAAABDgAAAAADegAAAAAADgAAAAACdwAAAAACdwAAAAABegAAAAAAegAAAAAALQAAAAAADgAAAAABDgAAAAABaQAAAAAADgAAAAADDgAAAAABDgAAAAABDgAAAAAADgAAAAACDgAAAAAAaQAAAAAADgAAAAAAdwAAAAABdwAAAAABegAAAAAAegAAAAAAegAAAAAADgAAAAACDgAAAAADegAAAAAADgAAAAACDgAAAAACDgAAAAABDgAAAAACDgAAAAACDgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAADgAAAAABDgAAAAABegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAOwAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAADegAAAAAADgAAAAAADgAAAAACDgAAAAABDgAAAAAADgAAAAAADgAAAAACDgAAAAADDgAAAAAADgAAAAACegAAAAAAOwAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAABegAAAAAADgAAAAADLgAAAAACLgAAAAADDgAAAAACLgAAAAADDgAAAAABLgAAAAAALgAAAAACDgAAAAAAaQAAAAAAOwAAAAAAHAAAAAADHAAAAAADHAAAAAAAHAAAAAABaQAAAAAADgAAAAACDgAAAAADDgAAAAACLgAAAAABLgAAAAABLgAAAAADDgAAAAABDgAAAAAADgAAAAADaQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAaQAAAAAADgAAAAABDgAAAAAADgAAAAADLgAAAAABLgAAAAAALgAAAAABDgAAAAACDgAAAAACDgAAAAACegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAA version: 6 -2,0: ind: -2,0 - tiles: bgAAAAABbgAAAAAAbgAAAAAAbgAAAAACYAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAACKwAAAAADVAAAAAACVAAAAAABKwAAAAAAVAAAAAADcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAACKwAAAAAAbgAAAAACcQAAAAAAVAAAAAADVAAAAAABVAAAAAACcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAAAKwAAAAABbgAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAACYAAAAAAAVAAAAAAAKwAAAAAAVAAAAAADKwAAAAACVAAAAAACKwAAAAABVAAAAAAAKwAAAAACVAAAAAAAYQAAAAAAcQAAAAAAKwAAAAADVAAAAAADVAAAAAABVAAAAAACYAAAAAAAVAAAAAACKwAAAAAAVAAAAAAAKwAAAAADVAAAAAACKwAAAAACVAAAAAAAKwAAAAABVAAAAAACcQAAAAAAcQAAAAAAKwAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAVAAAAAACGwAAAAAARwAAAAADGwAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAKwAAAAABVAAAAAADGwAAAAABRwAAAAABGwAAAAAAcQAAAAAAVAAAAAACKwAAAAACKwAAAAACKwAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAKwAAAAACVAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAGwAAAAABGwAAAAADGwAAAAABYAAAAAAAVAAAAAADKwAAAAADKwAAAAACKwAAAAABVAAAAAAAYAAAAAAAVAAAAAABKwAAAAAAVAAAAAAAYQAAAAAAVAAAAAABVAAAAAAAGwAAAAABGwAAAAACGwAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAEQAAAAAGEQAAAAAFbgAAAAACVAAAAAACVAAAAAACVAAAAAADYAAAAAAASAAAAAAASAAAAAAASAAAAAAAYAAAAAAAVAAAAAACVAAAAAADKwAAAAAAVAAAAAAAcQAAAAAAEQAAAAAEbgAAAAACbgAAAAADVAAAAAADVAAAAAABVAAAAAABYAAAAAAASAAAAAAASAAAAAAASAAAAAAAYAAAAAAAVAAAAAADVAAAAAABKwAAAAAAVAAAAAACcQAAAAAAbwAAAAADbwAAAAACbgAAAAABVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAADcQAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAABcQAAAAAAZAAAAAACZAAAAAADZAAAAAACZAAAAAACZAAAAAABcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAA + tiles: dwAAAAABdwAAAAAAdwAAAAAAdwAAAAACaQAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAACLgAAAAADWgAAAAACWgAAAAABLgAAAAAAWgAAAAADegAAAAAAegAAAAAAdwAAAAAAdwAAAAACLgAAAAAAdwAAAAACegAAAAAAWgAAAAADWgAAAAABWgAAAAACegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAAALgAAAAABdwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAAAWgAAAAADWgAAAAACWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAABWgAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAACaQAAAAAAWgAAAAAALgAAAAAAWgAAAAADLgAAAAACWgAAAAACLgAAAAABWgAAAAAALgAAAAACWgAAAAAAagAAAAAAegAAAAAALgAAAAADWgAAAAADWgAAAAABWgAAAAACaQAAAAAAWgAAAAACLgAAAAAAWgAAAAAALgAAAAADWgAAAAACLgAAAAACWgAAAAAALgAAAAABWgAAAAACegAAAAAAegAAAAAALgAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAALgAAAAAAWgAAAAACHgAAAAAATQAAAAADHgAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACegAAAAAAWgAAAAABWgAAAAABegAAAAAAegAAAAAALgAAAAABWgAAAAADHgAAAAABTQAAAAABHgAAAAAAegAAAAAAWgAAAAACLgAAAAACLgAAAAACLgAAAAAAWgAAAAAAegAAAAAAWgAAAAAALgAAAAACWgAAAAAAegAAAAAAWgAAAAACWgAAAAAAHgAAAAABHgAAAAADHgAAAAABaQAAAAAAWgAAAAADLgAAAAADLgAAAAACLgAAAAABWgAAAAAAaQAAAAAAWgAAAAABLgAAAAAAWgAAAAAAagAAAAAAWgAAAAABWgAAAAAAHgAAAAABHgAAAAACHgAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAACWgAAAAABegAAAAAAWgAAAAADWgAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAADegAAAAAAFAAAAAAGFAAAAAAFdwAAAAACWgAAAAACWgAAAAACWgAAAAADaQAAAAAATgAAAAAATgAAAAAATgAAAAAAaQAAAAAAWgAAAAACWgAAAAADLgAAAAAAWgAAAAAAegAAAAAAFAAAAAAEdwAAAAACdwAAAAADWgAAAAADWgAAAAABWgAAAAABaQAAAAAATgAAAAAATgAAAAAATgAAAAAAaQAAAAAAWgAAAAADWgAAAAABLgAAAAAAWgAAAAACegAAAAAAeAAAAAADeAAAAAACdwAAAAABWgAAAAADWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAADegAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAACWgAAAAABegAAAAAAbQAAAAACbQAAAAADbQAAAAACbQAAAAACbQAAAAABegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVQAAAAADVQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAGwAAAAAAGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAADIAAAAAAAIAAAAAACGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAADwAAAAAADwAAAAAADwAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAADwAAAAAARwAAAAADDwAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAACcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAADZAAAAAACZAAAAAACRwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAKwAAAAACVAAAAAACVAAAAAABYAAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAADGwAAAAAAZAAAAAACZAAAAAADRwAAAAADcQAAAAAAcQAAAAAAYAAAAAAAVAAAAAAAVAAAAAAAKwAAAAABVAAAAAABcQAAAAAAGwAAAAACGwAAAAACGwAAAAABGwAAAAAAGwAAAAACZAAAAAAAZAAAAAADRwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADKwAAAAABVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABKwAAAAAAVAAAAAADVAAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAABGwAAAAABGwAAAAABGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAKwAAAAAAVAAAAAAAVAAAAAAAVAAAAAADYAAAAAAAGwAAAAABGwAAAAACKwAAAAADGwAAAAACKwAAAAACGwAAAAADGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACKwAAAAACVAAAAAABVAAAAAAAYAAAAAAAGwAAAAADKwAAAAADGwAAAAACKwAAAAACGwAAAAACKwAAAAAAGwAAAAABYQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAADcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAADcQAAAAAAcQAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAXAAAAAADXAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAHgAAAAAAHgAAAAABHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAADIwAAAAAAIwAAAAACHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADegAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADegAAAAAAEgAAAAAATQAAAAADEgAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAACegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAADbQAAAAACbQAAAAACTQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAALgAAAAACWgAAAAACWgAAAAABaQAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAADHgAAAAAAbQAAAAACbQAAAAADTQAAAAADegAAAAAAegAAAAAAaQAAAAAAWgAAAAAAWgAAAAAALgAAAAABWgAAAAABegAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAACbQAAAAAAbQAAAAADTQAAAAACegAAAAAAegAAAAAAegAAAAAAWgAAAAADLgAAAAABWgAAAAACWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAABLgAAAAAAWgAAAAADWgAAAAAAegAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAABHgAAAAABHgAAAAABHgAAAAADegAAAAAAegAAAAAAegAAAAAAWgAAAAAALgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADaQAAAAAAHgAAAAABHgAAAAACLgAAAAADHgAAAAACLgAAAAACHgAAAAADHgAAAAACegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAACLgAAAAACWgAAAAABWgAAAAAAaQAAAAAAHgAAAAADLgAAAAADHgAAAAACLgAAAAACHgAAAAACLgAAAAAAHgAAAAABagAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAACWgAAAAADegAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAABHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAADegAAAAAAegAAAAAA version: 6 1,0: ind: 1,0 - tiles: YQAAAAAAVAAAAAABVAAAAAABKwAAAAABKwAAAAABVAAAAAACVAAAAAAAYAAAAAAAGwAAAAADGwAAAAABGwAAAAABcQAAAAAAGwAAAAABRwAAAAABVAAAAAABGwAAAAABcQAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAAAcQAAAAAASAAAAAAAVAAAAAACRwAAAAAASAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAACcQAAAAAASAAAAAAAGwAAAAACGwAAAAACSAAAAAAAcQAAAAAAPgAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAACcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAACYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAPgAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADYAAAAAAAcQAAAAAAGwAAAAADcQAAAAAAGwAAAAADcQAAAAAAPgAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAGwAAAAABGwAAAAACGwAAAAADcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAGwAAAAADGwAAAAAAGwAAAAABcQAAAAAAGwAAAAACGwAAAAADGwAAAAABcQAAAAAANwAAAAAAcQAAAAAANwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAABGwAAAAADGwAAAAAAGwAAAAADcQAAAAAANwAAAAAAcQAAAAAANwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADPgAAAAAAGwAAAAABGwAAAAADPgAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAABPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAC + tiles: agAAAAAAWgAAAAABWgAAAAABLgAAAAABLgAAAAABWgAAAAACWgAAAAAAaQAAAAAAHgAAAAADHgAAAAABHgAAAAABegAAAAAAHgAAAAABTQAAAAABWgAAAAABHgAAAAABegAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAACWgAAAAABegAAAAAAegAAAAAAHgAAAAACHgAAAAACHgAAAAAAegAAAAAATgAAAAAAWgAAAAACTQAAAAAATgAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAACegAAAAAATgAAAAAAHgAAAAACHgAAAAACTgAAAAAAegAAAAAAQQAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAACegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAQQAAAAAAHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAACaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAQQAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAADaQAAAAAAegAAAAAAHgAAAAADegAAAAAAHgAAAAADegAAAAAAQQAAAAAAHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAHgAAAAABHgAAAAACHgAAAAADegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAHgAAAAADHgAAAAAAHgAAAAABegAAAAAAHgAAAAACHgAAAAADHgAAAAABegAAAAAAOgAAAAAAegAAAAAAOgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAABHgAAAAADHgAAAAAAHgAAAAADegAAAAAAOgAAAAAAegAAAAAAOgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAADQQAAAAAAHgAAAAABHgAAAAADQQAAAAAAHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAABQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAADHgAAAAADHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAC version: 6 1,-2: ind: 1,-2 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAADcQAAAAAAZAAAAAABZAAAAAABZAAAAAABYAAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYgAAAAABcQAAAAAAZAAAAAAAKwAAAAABZAAAAAADcQAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAACIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZAAAAAABZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAZAAAAAAAKwAAAAADZAAAAAAAcQAAAAAAZAAAAAABZAAAAAAAZAAAAAAAZAAAAAACZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAABZAAAAAACZAAAAAABcQAAAAAAZAAAAAADZAAAAAACZAAAAAADZAAAAAACZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAADKwAAAAADcQAAAAAAZAAAAAAAZAAAAAABZAAAAAABZAAAAAADZAAAAAADcQAAAAAAcQAAAAAAZAAAAAACZAAAAAAAcQAAAAAAZAAAAAABZAAAAAABcQAAAAAAZAAAAAABZAAAAAADcQAAAAAAZAAAAAAAZAAAAAABZAAAAAAAZAAAAAABZAAAAAABcQAAAAAAcQAAAAAAZAAAAAACcQAAAAAAcQAAAAAAZAAAAAABZAAAAAACcQAAAAAAZAAAAAABZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAZAAAAAACZAAAAAAAcQAAAAAAZAAAAAACZAAAAAAAKwAAAAABZAAAAAACZAAAAAACZAAAAAAAZAAAAAABZAAAAAABZAAAAAACZAAAAAACZAAAAAAAcQAAAAAAcQAAAAAAaAAAAAAAaAAAAAAAaAAAAAACaAAAAAACaAAAAAADcQAAAAAAZAAAAAABZAAAAAADZAAAAAADZAAAAAACZAAAAAABZAAAAAACZAAAAAAAZAAAAAABYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAKwAAAAADKwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAaAAAAAACaAAAAAADaAAAAAABaAAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAZAAAAAACZAAAAAABZAAAAAADZAAAAAACZAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAaAAAAAADaAAAAAACaAAAAAABaAAAAAABYAAAAAAAZAAAAAABZAAAAAADKwAAAAABZAAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAABOAAAAAAAOAAAAAAAYAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAABYAAAAAAAZAAAAAACZAAAAAADcQAAAAAAZAAAAAADKwAAAAAAZAAAAAAAKwAAAAAAZAAAAAABOAAAAAAAOAAAAAAAcQAAAAAAaAAAAAABaAAAAAAAaAAAAAAAaAAAAAABcQAAAAAAZAAAAAABZAAAAAACcQAAAAAAZAAAAAABKwAAAAAAZAAAAAAAKwAAAAAAZAAAAAADOAAAAAAAOAAAAAAAcQAAAAAAaAAAAAABaAAAAAACaAAAAAABaAAAAAABKwAAAAACZAAAAAADZAAAAAACcQAAAAAAZAAAAAACKwAAAAAAZAAAAAAAKwAAAAAAZAAAAAAB + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAADegAAAAAAbQAAAAABbQAAAAABbQAAAAABaQAAAAAAIwAAAAACIwAAAAACIwAAAAADIwAAAAAAIwAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAawAAAAABegAAAAAAbQAAAAAALgAAAAABbQAAAAADegAAAAAAIwAAAAACIwAAAAADIwAAAAABIwAAAAACIwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAACbQAAAAABbQAAAAADegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAbQAAAAAALgAAAAADbQAAAAAAegAAAAAAbQAAAAABbQAAAAAAbQAAAAAAbQAAAAACbQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAACbQAAAAABegAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAACbQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAADLgAAAAADegAAAAAAbQAAAAAAbQAAAAABbQAAAAABbQAAAAADbQAAAAADegAAAAAAegAAAAAAbQAAAAACbQAAAAAAegAAAAAAbQAAAAABbQAAAAABegAAAAAAbQAAAAABbQAAAAADegAAAAAAbQAAAAAAbQAAAAABbQAAAAAAbQAAAAABbQAAAAABegAAAAAAegAAAAAAbQAAAAACegAAAAAAegAAAAAAbQAAAAABbQAAAAACegAAAAAAbQAAAAABbQAAAAABegAAAAAAegAAAAAAegAAAAAALgAAAAACegAAAAAAegAAAAAAegAAAAAAagAAAAAAbQAAAAACbQAAAAAAegAAAAAAbQAAAAACbQAAAAAALgAAAAABbQAAAAACbQAAAAACbQAAAAAAbQAAAAABbQAAAAABbQAAAAACbQAAAAACbQAAAAAAegAAAAAAegAAAAAAcQAAAAAAcQAAAAAAcQAAAAACcQAAAAACcQAAAAADegAAAAAAbQAAAAABbQAAAAADbQAAAAADbQAAAAACbQAAAAABbQAAAAACbQAAAAAAbQAAAAABagAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAALgAAAAADLgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAOwAAAAAAOwAAAAAAegAAAAAAcQAAAAACcQAAAAADcQAAAAABcQAAAAAAegAAAAAAbQAAAAAAbQAAAAAAegAAAAAAbQAAAAACbQAAAAABbQAAAAADbQAAAAACbQAAAAAAOwAAAAAAOwAAAAAAegAAAAAAcQAAAAADcQAAAAACcQAAAAABcQAAAAABaQAAAAAAbQAAAAABbQAAAAADLgAAAAABbQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAABOwAAAAAAOwAAAAAAaQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAABaQAAAAAAbQAAAAACbQAAAAADegAAAAAAbQAAAAADLgAAAAAAbQAAAAAALgAAAAAAbQAAAAABOwAAAAAAOwAAAAAAegAAAAAAcQAAAAABcQAAAAAAcQAAAAAAcQAAAAABegAAAAAAbQAAAAABbQAAAAACegAAAAAAbQAAAAABLgAAAAAAbQAAAAAALgAAAAAAbQAAAAADOwAAAAAAOwAAAAAAegAAAAAAcQAAAAABcQAAAAACcQAAAAABcQAAAAABLgAAAAACbQAAAAADbQAAAAACegAAAAAAbQAAAAACLgAAAAAAbQAAAAAALgAAAAAAbQAAAAAB version: 6 0,1: ind: 0,1 - tiles: VAAAAAACVAAAAAABcQAAAAAASAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAACVAAAAAACcQAAAAAASAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVQAAAAABVQAAAAAAVQAAAAADVQAAAAABcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAVAAAAAAAcQAAAAAASAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAbgAAAAACbgAAAAADGwAAAAADGwAAAAAAcQAAAAAASAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAAAYAAAAAAAVAAAAAAAVAAAAAADbgAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAADYAAAAAAAVAAAAAACVAAAAAABbgAAAAAAbgAAAAABcAAAAAAAcQAAAAAASAAAAAAASAAAAAAAVAAAAAABVAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAAAcAAAAAAAcQAAAAAASAAAAAAAVAAAAAADVAAAAAADVAAAAAADGwAAAAACGwAAAAABGwAAAAABGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAYAAAAAAAcAAAAAAAcQAAAAAASAAAAAAAVAAAAAABVAAAAAACVAAAAAABGwAAAAAAGwAAAAADGwAAAAADGwAAAAABcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAcQAAAAAASAAAAAAAVAAAAAABVAAAAAACVAAAAAADGwAAAAACGwAAAAAAGwAAAAADGwAAAAABYAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAADYAAAAAAAWQAAAAAARwAAAAADRwAAAAAARwAAAAACWQAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAAASAAAAAAAcQAAAAAAWQAAAAAARwAAAAACRwAAAAAARwAAAAAAWQAAAAAAcAAAAAAAcQAAAAAASAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAADSAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcAAAAAAAcQAAAAAASAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAABSAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAcQAAAAAASAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACSAAAAAAASAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAADSAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: WgAAAAACWgAAAAABegAAAAAATgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAdwAAAAACdwAAAAACdwAAAAAAdwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAACWgAAAAACegAAAAAATgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAXAAAAAABXAAAAAAAXAAAAAADXAAAAAABegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAALgAAAAAAWgAAAAAAegAAAAAATgAAAAAAWgAAAAACWgAAAAABegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAAdwAAAAACdwAAAAADHgAAAAADHgAAAAAAegAAAAAATgAAAAAAWgAAAAACWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAAAaQAAAAAAWgAAAAAAWgAAAAADdwAAAAAAdwAAAAABegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAADWgAAAAADWgAAAAADaQAAAAAAWgAAAAACWgAAAAABdwAAAAAAdwAAAAABeQAAAAAAegAAAAAATgAAAAAATgAAAAAAWgAAAAABWgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAAWgAAAAAAeQAAAAAAegAAAAAATgAAAAAAWgAAAAADWgAAAAADWgAAAAADHgAAAAACHgAAAAABHgAAAAABHgAAAAACegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAaQAAAAAAeQAAAAAAegAAAAAATgAAAAAAWgAAAAABWgAAAAACWgAAAAABHgAAAAAAHgAAAAADHgAAAAADHgAAAAABegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAegAAAAAATgAAAAAAWgAAAAABWgAAAAACWgAAAAADHgAAAAACHgAAAAAAHgAAAAADHgAAAAABaQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAAAaQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAeQAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAABWgAAAAABWgAAAAAAWgAAAAABWgAAAAACWgAAAAADaQAAAAAAYQAAAAAATQAAAAADTQAAAAAATQAAAAACYQAAAAAAeQAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAADWgAAAAACWgAAAAADWgAAAAAATgAAAAAAegAAAAAAYQAAAAAATQAAAAACTQAAAAAATQAAAAAAYQAAAAAAeQAAAAAAegAAAAAATgAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAADTgAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAeQAAAAAAegAAAAAATgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAABTgAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAegAAAAAATgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACTgAAAAAATgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAADTgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -1,1: ind: -1,1 - tiles: cQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACKwAAAAADVAAAAAABVAAAAAABKwAAAAADVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAVAAAAAADYAAAAAAAVAAAAAABKwAAAAADVAAAAAADVAAAAAACKwAAAAABVAAAAAACVAAAAAACKwAAAAACVAAAAAAAVAAAAAAAKwAAAAADVAAAAAACVAAAAAAAcQAAAAAAVAAAAAACYAAAAAAAVAAAAAACVAAAAAABKwAAAAABVAAAAAABVAAAAAAAKwAAAAACVAAAAAADVAAAAAABKwAAAAAAVAAAAAAAVAAAAAABKwAAAAAAVAAAAAAAYAAAAAAAVAAAAAACcQAAAAAAVAAAAAABVAAAAAADVAAAAAACKwAAAAABVAAAAAACVAAAAAACKwAAAAABVAAAAAAAVAAAAAACKwAAAAACVAAAAAADVAAAAAACKwAAAAACcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: egAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACLgAAAAADWgAAAAABWgAAAAABLgAAAAADWgAAAAAAWgAAAAADWgAAAAADegAAAAAAWgAAAAADaQAAAAAAWgAAAAABLgAAAAADWgAAAAADWgAAAAACLgAAAAABWgAAAAACWgAAAAACLgAAAAACWgAAAAAAWgAAAAAALgAAAAADWgAAAAACWgAAAAAAegAAAAAAWgAAAAACaQAAAAAAWgAAAAACWgAAAAABLgAAAAABWgAAAAABWgAAAAAALgAAAAACWgAAAAADWgAAAAABLgAAAAAAWgAAAAAAWgAAAAABLgAAAAAAWgAAAAAAaQAAAAAAWgAAAAACegAAAAAAWgAAAAABWgAAAAADWgAAAAACLgAAAAABWgAAAAACWgAAAAACLgAAAAABWgAAAAAAWgAAAAACLgAAAAACWgAAAAADWgAAAAACLgAAAAACegAAAAAAHgAAAAADegAAAAAAegAAAAAAegAAAAAARgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAARgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -2,1: ind: -2,1 - tiles: VAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAACYAAAAAAAZAAAAAAAZAAAAAADZAAAAAABZAAAAAAAZAAAAAACcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAADcQAAAAAAZAAAAAABZAAAAAACZAAAAAABZAAAAAADZAAAAAADYAAAAAAAVAAAAAAAKwAAAAADKwAAAAABVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZAAAAAADcQAAAAAAVAAAAAACKwAAAAAAKwAAAAADVAAAAAACPgAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZAAAAAAAZAAAAAACZAAAAAADZAAAAAACcQAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACVQAAAAACVQAAAAAAcQAAAAAAVQAAAAACVQAAAAACcQAAAAAAZAAAAAABZAAAAAABZAAAAAAAZAAAAAAAZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAACcQAAAAAAGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WgAAAAABWgAAAAAAWgAAAAADWgAAAAABWgAAAAACaQAAAAAAbQAAAAAAbQAAAAADbQAAAAABbQAAAAAAbQAAAAACegAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAACWgAAAAADWgAAAAACWgAAAAADegAAAAAAbQAAAAABbQAAAAACbQAAAAABbQAAAAADbQAAAAADaQAAAAAAWgAAAAAALgAAAAADLgAAAAABWgAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAADWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAACbQAAAAADegAAAAAAWgAAAAACLgAAAAAALgAAAAADWgAAAAACQQAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAbQAAAAACbQAAAAAAbQAAAAACbQAAAAADbQAAAAACegAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAACXAAAAAACXAAAAAAAegAAAAAAXAAAAAACXAAAAAACegAAAAAAbQAAAAABbQAAAAABbQAAAAAAbQAAAAAAbQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAACegAAAAAAHgAAAAADHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVQAAAAABVQAAAAABSAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAXAAAAAABXAAAAAABTgAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAANgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAANgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVQAAAAAASAAAAAAAVQAAAAACSAAAAAAAcQAAAAAAVAAAAAADKwAAAAAAKwAAAAADKwAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAARgAAAAAAegAAAAAARgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAOQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAOQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAARgAAAAAAegAAAAAARgAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAACWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAXAAAAAAATgAAAAAAXAAAAAACTgAAAAAAegAAAAAAWgAAAAADLgAAAAAALgAAAAADLgAAAAADWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAABYgAAAAADcQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAACawAAAAACawAAAAADawAAAAABawAAAAADegAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAIwAAAAAAIwAAAAACIwAAAAAAIwAAAAACIwAAAAAB version: 6 1,1: ind: 1,1 - tiles: GwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAABcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVQAAAAADbgAAAAAAbgAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVQAAAAABVAAAAAAAVAAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAYAAAAAAANgAAAAAANgAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAABegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAXAAAAAADdwAAAAAAdwAAAAADegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAXAAAAAAAdwAAAAAAdwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAXAAAAAABWgAAAAAAWgAAAAADegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAdwAAAAABdwAAAAABdwAAAAACdwAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAACdwAAAAAAdwAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAABdwAAAAAAdwAAAAABegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAaQAAAAAAOQAAAAAAOQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: cQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAACcQAAAAAAcQAAAAAAYQAAAAAAVAAAAAACVAAAAAACXgAAAAACXgAAAAADUgAAAAAAUgAAAAAEUgAAAAAAUgAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADXgAAAAACXgAAAAACMgAAAAACUgAAAAAAUgAAAAAAUgAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXgAAAAACLQAAAAAAMgAAAAADUgAAAAAAUgAAAAAAUgAAAAAAcQAAAAAAbwAAAAABbwAAAAABKwAAAAABbgAAAAACbgAAAAAAKwAAAAADbgAAAAACbgAAAAADcQAAAAAAXgAAAAABLQAAAAAAMgAAAAADMgAAAAAAUgAAAAAAUgAAAAAAcQAAAAAAbgAAAAABbgAAAAACKwAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAADbgAAAAABcQAAAAAAXgAAAAAALQAAAAAAUgAAAAAAMgAAAAAAUgAAAAAEUgAAAAAAcQAAAAAAbgAAAAADbgAAAAAAbgAAAAAAKwAAAAAAbgAAAAACKwAAAAAAbgAAAAABKwAAAAADYAAAAAAAXgAAAAADXgAAAAAAUgAAAAAAMgAAAAAAUwAAAAAAUwAAAAAAcQAAAAAAbgAAAAACbgAAAAABKwAAAAACbgAAAAABbgAAAAABbgAAAAACbgAAAAABbgAAAAABcQAAAAAAXgAAAAADXgAAAAACMgAAAAABMgAAAAADUgAAAAAAUgAAAAAAcQAAAAAAbwAAAAACbwAAAAABKwAAAAACbgAAAAAAbgAAAAAAKwAAAAADbgAAAAACbgAAAAADcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADYAAAAAAAVAAAAAADVAAAAAACVAAAAAABKwAAAAAAKwAAAAACVAAAAAACVAAAAAADKwAAAAADKwAAAAACVAAAAAAAVAAAAAAAKwAAAAABKwAAAAABVAAAAAABVAAAAAACcQAAAAAAVAAAAAAAKwAAAAADKwAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAAAYAAAAAAAVAAAAAADVAAAAAADVAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAAAcQAAAAAAKwAAAAAAKwAAAAAAbgAAAAACbgAAAAABOwAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAAAYAAAAAAAPAAAAAAAPAAAAAAAbgAAAAACbgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAbgAAAAADbgAAAAAB + tiles: egAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAABdwAAAAACegAAAAAAegAAAAAAagAAAAAAWgAAAAACWgAAAAACZwAAAAACZwAAAAADWAAAAAAAWAAAAAAEWAAAAAAAWAAAAAAAegAAAAAAdwAAAAACdwAAAAACdwAAAAAAdwAAAAABegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAADZwAAAAACZwAAAAACNQAAAAACWAAAAAAAWAAAAAAAWAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZwAAAAACMAAAAAAANQAAAAADWAAAAAAAWAAAAAAAWAAAAAAAegAAAAAAeAAAAAABeAAAAAABLgAAAAABdwAAAAACdwAAAAAALgAAAAADdwAAAAACdwAAAAADegAAAAAAZwAAAAABMAAAAAAANQAAAAADNQAAAAAAWAAAAAAAWAAAAAAAegAAAAAAdwAAAAABdwAAAAACLgAAAAAAdwAAAAACdwAAAAAAdwAAAAABdwAAAAADdwAAAAABegAAAAAAZwAAAAAAMAAAAAAAWAAAAAAANQAAAAAAWAAAAAAEWAAAAAAAegAAAAAAdwAAAAADdwAAAAAAdwAAAAAALgAAAAAAdwAAAAACLgAAAAAAdwAAAAABLgAAAAADaQAAAAAAZwAAAAADZwAAAAAAWAAAAAAANQAAAAAAWQAAAAAAWQAAAAAAegAAAAAAdwAAAAACdwAAAAABLgAAAAACdwAAAAABdwAAAAABdwAAAAACdwAAAAABdwAAAAABegAAAAAAZwAAAAADZwAAAAACNQAAAAABNQAAAAADWAAAAAAAWAAAAAAAegAAAAAAeAAAAAACeAAAAAABLgAAAAACdwAAAAAAdwAAAAAALgAAAAADdwAAAAACdwAAAAADegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADaQAAAAAAWgAAAAADWgAAAAACWgAAAAABLgAAAAAALgAAAAACWgAAAAACWgAAAAADLgAAAAADLgAAAAACWgAAAAAAWgAAAAAALgAAAAABLgAAAAABWgAAAAABWgAAAAACegAAAAAAWgAAAAAALgAAAAADLgAAAAAAWgAAAAACWgAAAAABWgAAAAABWgAAAAABWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAABWgAAAAADWgAAAAAAaQAAAAAAWgAAAAADWgAAAAADWgAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAADdwAAAAADdwAAAAAAdwAAAAAAegAAAAAALgAAAAAALgAAAAAAdwAAAAACdwAAAAABPgAAAAAAPgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAABdwAAAAABdwAAAAACdwAAAAAAaQAAAAAAPwAAAAAAPwAAAAAAdwAAAAACdwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAPwAAAAAAPwAAAAAAdwAAAAADdwAAAAAB version: 6 -3,0: ind: -3,0 - tiles: YQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAbgAAAAADbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAKwAAAAAAbgAAAAABbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAQgAAAAAAQgAAAAABQgAAAAADcQAAAAAAGwAAAAAAbgAAAAADbgAAAAABbgAAAAABcQAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAQgAAAAABQgAAAAACQgAAAAACcQAAAAAAGwAAAAAAbgAAAAAAbgAAAAACbgAAAAABcQAAAAAAVAAAAAABKwAAAAACKwAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAAAcQAAAAAAVAAAAAAAKwAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACKwAAAAABVAAAAAAAVAAAAAADRwAAAAABRwAAAAACVAAAAAABRwAAAAACRwAAAAABVAAAAAADYAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAKwAAAAACKwAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAABYAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAACSAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAASAAAAAAASAAAAAAAYAAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAACcQAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAACcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAMQAAAAADSAAAAAAAYAAAAAAAGwAAAAACRwAAAAADRwAAAAACGwAAAAACYAAAAAAAGwAAAAAARwAAAAACRwAAAAACGwAAAAABYAAAAAAASAAAAAAASAAAAAAAcQAAAAAAMQAAAAAASAAAAAAAcQAAAAAAGwAAAAADRwAAAAAARwAAAAADGwAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAACcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAMQAAAAADSAAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAMQAAAAADSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAVAAAAAABVAAAAAAAVAAAAAAB + tiles: agAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAPwAAAAAAPwAAAAAAdwAAAAADdwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPwAAAAAAPwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAAALgAAAAAAdwAAAAABdwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAASAAAAAAASAAAAAABSAAAAAADegAAAAAAHgAAAAAAdwAAAAADdwAAAAABdwAAAAABegAAAAAAWgAAAAACWgAAAAABWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAASAAAAAABSAAAAAACSAAAAAACegAAAAAAHgAAAAAAdwAAAAAAdwAAAAACdwAAAAABegAAAAAAWgAAAAABLgAAAAACLgAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAAAegAAAAAAHgAAAAADHgAAAAABHgAAAAADHgAAAAAAegAAAAAAWgAAAAAALgAAAAACWgAAAAAAWgAAAAACWgAAAAACWgAAAAABWgAAAAAAWgAAAAACWgAAAAACWgAAAAADegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACLgAAAAABWgAAAAAAWgAAAAADTQAAAAABTQAAAAACWgAAAAABTQAAAAACTQAAAAABWgAAAAADaQAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAACWgAAAAAAWgAAAAAALgAAAAACLgAAAAADWgAAAAABWgAAAAABWgAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAABaQAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAADWgAAAAADWgAAAAADWgAAAAAAWgAAAAACTgAAAAAATgAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAATgAAAAAATgAAAAAAaQAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAACegAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAACegAAAAAATgAAAAAATgAAAAAAegAAAAAANAAAAAADTgAAAAAAaQAAAAAAHgAAAAACTQAAAAADTQAAAAACHgAAAAACaQAAAAAAHgAAAAAATQAAAAACTQAAAAACHgAAAAABaQAAAAAATgAAAAAATgAAAAAAegAAAAAANAAAAAAATgAAAAAAegAAAAAAHgAAAAADTQAAAAAATQAAAAADHgAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAACegAAAAAATgAAAAAATgAAAAAAegAAAAAANAAAAAADTgAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAANAAAAAADTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAWgAAAAABWgAAAAAAWgAAAAAB version: 6 -3,1: ind: -3,1 - tiles: MQAAAAABSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAVAAAAAADVAAAAAACRwAAAAACRwAAAAABRwAAAAAAMQAAAAAASAAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACRwAAAAABRwAAAAADRwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAVQAAAAADVQAAAAAAcQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABGwAAAAAAcQAAAAAAGwAAAAACGwAAAAACcQAAAAAAEQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAEQAAAAAAEQAAAAAAbgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: NAAAAAABTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAWgAAAAADWgAAAAACTQAAAAACTQAAAAABTQAAAAAANAAAAAAATgAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACTQAAAAABTQAAAAADTQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAAAXAAAAAAAegAAAAAAXAAAAAADXAAAAAAAegAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAABHgAAAAAAegAAAAAAHgAAAAACHgAAAAACegAAAAAAFAAAAAAAdwAAAAAAdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAFAAAAAAAFAAAAAAAdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAEQAAAAAGEQAAAAAAEQAAAAAFbgAAAAACbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAEQAAAAACcQAAAAAAcQAAAAAAEAAAAAADEAAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAABKwAAAAAAKwAAAAACcAAAAAAAcQAAAAAAEQAAAAAEEAAAAAABEAAAAAABEAAAAAABEAAAAAACbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABKwAAAAABKwAAAAADKwAAAAAAcAAAAAAAcQAAAAAAbgAAAAADEAAAAAABEAAAAAADEAAAAAADEAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAABcAAAAAAAcQAAAAAAbgAAAAABEAAAAAABEAAAAAADEAAAAAAAEAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADKwAAAAACKwAAAAAAVAAAAAABbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAVAAAAAACKwAAAAAAKwAAAAABVAAAAAABbgAAAAACcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAABbgAAAAABYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAVQAAAAACbwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAABVQAAAAABbwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAACVQAAAAACbwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAbgAAAAABbgAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAA + tiles: AAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAFAAAAAAGFAAAAAAAFAAAAAAFdwAAAAACdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAFAAAAAACegAAAAAAegAAAAAAEwAAAAADEwAAAAAAdwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAABLgAAAAAALgAAAAACeQAAAAAAegAAAAAAFAAAAAAEEwAAAAABEwAAAAABEwAAAAABEwAAAAACdwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABLgAAAAABLgAAAAADLgAAAAAAeQAAAAAAegAAAAAAdwAAAAADEwAAAAABEwAAAAADEwAAAAADEwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAABeQAAAAAAegAAAAAAdwAAAAABEwAAAAABEwAAAAADEwAAAAAAEwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADLgAAAAACLgAAAAAAWgAAAAABdwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAWgAAAAACLgAAAAAALgAAAAABWgAAAAABdwAAAAACegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAAAWgAAAAABdwAAAAABagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAFgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAAAXAAAAAACeAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAABXAAAAAABeAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAABdwAAAAACXAAAAAACeAAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAdwAAAAABdwAAAAAAdwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKwAAAAACKwAAAAACcQAAAAAAVAAAAAADKwAAAAAAVAAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAANgAAAAAANgAAAAAAYAAAAAAAVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACKwAAAAADVAAAAAAAYAAAAAAAMgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABKwAAAAAAVAAAAAAAcQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABKwAAAAABVAAAAAAAcQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACKwAAAAABVAAAAAABcQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAANgAAAAAANgAAAAAAYAAAAAAAVAAAAAABVAAAAAACVAAAAAABcQAAAAAAMgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKwAAAAABKwAAAAAAcQAAAAAAVAAAAAACKwAAAAADVAAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAANgAAAAAANgAAAAAAYAAAAAAAVAAAAAAAKwAAAAAAVAAAAAABVAAAAAABVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAALgAAAAACLgAAAAACegAAAAAAWgAAAAADLgAAAAAAWgAAAAAAWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAOQAAAAAAOQAAAAAAaQAAAAAAWgAAAAACWgAAAAAAWgAAAAADegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACLgAAAAADWgAAAAAAaQAAAAAANQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAWgAAAAABLgAAAAAAWgAAAAAAegAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAWgAAAAABLgAAAAABWgAAAAAAegAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACLgAAAAABWgAAAAABegAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAOQAAAAAAOQAAAAAAaQAAAAAAWgAAAAABWgAAAAACWgAAAAABegAAAAAANQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAALgAAAAABLgAAAAAAegAAAAAAWgAAAAACLgAAAAADWgAAAAACegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAOQAAAAAAOQAAAAAAaQAAAAAAWgAAAAAALgAAAAAAWgAAAAABWgAAAAABWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAAAWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAABegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPgAAAAAA version: 6 2,0: ind: 2,0 - tiles: YAAAAAAAGwAAAAADKwAAAAAAGwAAAAADYAAAAAAAGwAAAAACSAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAADbgAAAAACcQAAAAAAGwAAAAAAKwAAAAABGwAAAAABcQAAAAAAGwAAAAADSAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAADbgAAAAABKwAAAAADcQAAAAAAGwAAAAABGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAGwAAAAACGwAAAAAAGwAAAAACPgAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAGwAAAAADGwAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAGwAAAAAAGwAAAAABGwAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAACGwAAAAACYAAAAAAANgAAAAAANgAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAABGwAAAAABGwAAAAADGwAAAAADGwAAAAADGwAAAAACGwAAAAADGwAAAAADGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAADGwAAAAACGwAAAAABGwAAAAAAGwAAAAABGwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVQAAAAACVQAAAAACVQAAAAACRwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVQAAAAABVQAAAAADVQAAAAAARwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVQAAAAADVQAAAAAAVQAAAAACRwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAADGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: aQAAAAAAHgAAAAADLgAAAAAAHgAAAAADaQAAAAAAHgAAAAACTgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAADdwAAAAADdwAAAAACegAAAAAAHgAAAAAALgAAAAABHgAAAAABegAAAAAAHgAAAAADTgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAADdwAAAAABLgAAAAADegAAAAAAHgAAAAABHgAAAAAAHgAAAAAAegAAAAAAHgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAACQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAHgAAAAACHgAAAAAAHgAAAAACQQAAAAAAHgAAAAACegAAAAAAegAAAAAAegAAAAAAQQAAAAAAHgAAAAADHgAAAAADQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAHgAAAAAAHgAAAAABHgAAAAAAQQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAACHgAAAAACaQAAAAAAOQAAAAAAOQAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAABHgAAAAABHgAAAAADHgAAAAADHgAAAAADHgAAAAACHgAAAAADHgAAAAADHgAAAAACegAAAAAAegAAAAAAegAAAAAAQQAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAACHgAAAAABHgAAAAAAHgAAAAABHgAAAAABegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAADHgAAAAADegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAACXAAAAAACXAAAAAACTQAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAABXAAAAAADXAAAAAAATQAAAAABHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAADXAAAAAAAXAAAAAACTQAAAAACHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAADHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: cQAAAAAAZAAAAAABZAAAAAABZAAAAAACZAAAAAADZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAACNAAAAAAAKwAAAAADZAAAAAADKwAAAAACZAAAAAACKwAAAAAAZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAAANAAAAAAAcQAAAAAAZAAAAAACZAAAAAABKwAAAAADZAAAAAACZAAAAAADYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAZAAAAAABKwAAAAAAZAAAAAAAKwAAAAAAZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAACbgAAAAADcQAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAABZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAYgAAAAAAcQAAAAAAbgAAAAACbgAAAAABbgAAAAABZAAAAAABKwAAAAAAZAAAAAACZAAAAAADZAAAAAAAZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAAAbgAAAAADZAAAAAAAcQAAAAAAZAAAAAACZAAAAAAAZAAAAAACZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAGwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAZAAAAAACcQAAAAAAZAAAAAABZAAAAAAAZAAAAAABZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABbgAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABYAAAAAAAGwAAAAABGwAAAAAAYAAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAADGwAAAAADGwAAAAACcQAAAAAAVAAAAAADKwAAAAADKwAAAAABKwAAAAABVAAAAAABcQAAAAAAGwAAAAADGwAAAAAAcQAAAAAAKwAAAAACKwAAAAADKwAAAAACKwAAAAACKwAAAAADKwAAAAACYAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAABVAAAAAADYAAAAAAAGwAAAAABGwAAAAADYAAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAABGwAAAAAAGwAAAAADcQAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAADYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAADcQAAAAAAGwAAAAABGwAAAAAAGwAAAAADcQAAAAAAGwAAAAAAGwAAAAADGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAA + tiles: egAAAAAAbQAAAAABbQAAAAABbQAAAAACbQAAAAADbQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAIwAAAAAAIwAAAAABIwAAAAAAIwAAAAACNwAAAAAALgAAAAADbQAAAAADLgAAAAACbQAAAAACLgAAAAAAbQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAAAIwAAAAAANwAAAAAAegAAAAAAbQAAAAACbQAAAAABLgAAAAADbQAAAAACbQAAAAADagAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAbQAAAAABLgAAAAAAbQAAAAAALgAAAAAAbQAAAAABegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAADdwAAAAACdwAAAAADegAAAAAAegAAAAAAbQAAAAAAbQAAAAAAbQAAAAABbQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAAAawAAAAAAegAAAAAAdwAAAAACdwAAAAABdwAAAAABbQAAAAABLgAAAAAAbQAAAAACbQAAAAADbQAAAAAAbQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAAAdwAAAAADbQAAAAAAegAAAAAAbQAAAAACbQAAAAAAbQAAAAACbQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAHgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAbQAAAAACegAAAAAAbQAAAAABbQAAAAAAbQAAAAABbQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABdwAAAAAAdwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADWgAAAAABaQAAAAAAHgAAAAABHgAAAAAAaQAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAADHgAAAAADHgAAAAACegAAAAAAWgAAAAADLgAAAAADLgAAAAABLgAAAAABWgAAAAABegAAAAAAHgAAAAADHgAAAAAAegAAAAAALgAAAAACLgAAAAADLgAAAAACLgAAAAACLgAAAAADLgAAAAACaQAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAABWgAAAAADaQAAAAAAHgAAAAABHgAAAAADaQAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAABHgAAAAAAHgAAAAADegAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAADagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAABegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAADegAAAAAAHgAAAAABHgAAAAAAHgAAAAADegAAAAAAHgAAAAAAHgAAAAADHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: YAAAAAAAZAAAAAACZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAADZAAAAAAAcQAAAAAAZAAAAAABZAAAAAACZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAADZAAAAAADcQAAAAAAZAAAAAAAZAAAAAADZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAABZAAAAAAAKwAAAAAAZAAAAAADZAAAAAADZAAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAACZAAAAAABZAAAAAAAcQAAAAAAZAAAAAACZAAAAAACZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAZAAAAAAAZAAAAAABcQAAAAAAZAAAAAABZAAAAAADZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKwAAAAAAKwAAAAAAcQAAAAAAZAAAAAAAZAAAAAACZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAABZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADZAAAAAABZAAAAAADcQAAAAAAZAAAAAADZAAAAAADZAAAAAAAZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAACZAAAAAAAKwAAAAACZAAAAAACZAAAAAADZAAAAAADZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAACZAAAAAAAZAAAAAABcQAAAAAAGwAAAAABKwAAAAAAKwAAAAAAKwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAADZAAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAACZAAAAAADZAAAAAACZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAADZAAAAAADKwAAAAACZAAAAAADYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAA + tiles: aQAAAAAAbQAAAAACbQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAbQAAAAADbQAAAAAAegAAAAAAbQAAAAABbQAAAAACbQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAbQAAAAADbQAAAAADegAAAAAAbQAAAAAAbQAAAAADbQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAbQAAAAABbQAAAAAALgAAAAAAbQAAAAADbQAAAAADbQAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACbQAAAAABbQAAAAAAegAAAAAAbQAAAAACbQAAAAACbQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAbQAAAAAAbQAAAAABegAAAAAAbQAAAAABbQAAAAADbQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAALgAAAAAALgAAAAAAegAAAAAAbQAAAAAAbQAAAAACbQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAbQAAAAABbQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAADbQAAAAABbQAAAAADegAAAAAAbQAAAAADbQAAAAADbQAAAAAAbQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAACbQAAAAAALgAAAAACbQAAAAACbQAAAAADbQAAAAADbQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAACbQAAAAAAbQAAAAABegAAAAAAHgAAAAABLgAAAAAALgAAAAAALgAAAAACegAAAAAAegAAAAAAegAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAbQAAAAADbQAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAADHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACbQAAAAADbQAAAAACbQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADbQAAAAADLgAAAAACbQAAAAADagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAbQAAAAAAbQAAAAAAbQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAEQAAAAACEQAAAAABbgAAAAADbgAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAbgAAAAACbgAAAAADbgAAAAACEQAAAAAGcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAFAAAAAACFAAAAAABdwAAAAADdwAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAdwAAAAACdwAAAAADdwAAAAACFAAAAAAGegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAA version: 6 2,1: ind: 2,1 - tiles: GwAAAAABGwAAAAADGwAAAAABYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAABVQAAAAADcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAABVQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAADGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HgAAAAABHgAAAAADHgAAAAABagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACXAAAAAABXAAAAAADegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAADHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,0: ind: 3,0 - tiles: cQAAAAAAKwAAAAACKwAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAABbgAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAKwAAAAAAKwAAAAABKwAAAAADKwAAAAACAAAAAAAA + tiles: egAAAAAALgAAAAACLgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAABdwAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAALgAAAAAALgAAAAABLgAAAAADLgAAAAACAAAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: cQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAABGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAADGwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAABGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAADGwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADRwAAAAADRwAAAAABRwAAAAAAGwAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAABGwAAAAACcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADRwAAAAADRwAAAAABRwAAAAAAGwAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAABGwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAKwAAAAADKwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: egAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAABHgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAADHgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAABdwAAAAABHgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAADdwAAAAADHgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADTQAAAAADTQAAAAABTQAAAAAAHgAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAABHgAAAAACegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADTQAAAAADTQAAAAABTQAAAAAAHgAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAABHgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAALgAAAAADLgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAADbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAABbgAAAAACbgAAAAACbgAAAAAAbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAANgAAAAAANgAAAAAAYAAAAAAAVAAAAAADKwAAAAABVAAAAAACVAAAAAADYQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAADdwAAAAAAdwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAdwAAAAAAdwAAAAACdwAAAAACdwAAAAADdwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAdwAAAAABdwAAAAACdwAAAAACdwAAAAAAdwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAOQAAAAAAOQAAAAAAaQAAAAAAWgAAAAADLgAAAAABWgAAAAACWgAAAAADagAAAAAA version: 6 0,2: ind: 0,2 - tiles: AAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAAVAAAAAACRwAAAAAAVAAAAAADRwAAAAACSAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAcQAAAAAARwAAAAABVAAAAAACRwAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAQAAAAAAAcQAAAAAAQAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAATgAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAATgAAAAAAWgAAAAACTQAAAAAAWgAAAAADTQAAAAACTgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAATQAAAAABWgAAAAACTQAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAARgAAAAAAegAAAAAARgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMgAAAAADMgAAAAABMgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMgAAAAACMgAAAAABMgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMgAAAAACMgAAAAADMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKwAAAAAAKwAAAAAAVAAAAAABcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAKwAAAAAAVAAAAAACVAAAAAAAYAAAAAAAVAAAAAAARwAAAAABRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKwAAAAAAKwAAAAAAVAAAAAABcQAAAAAAVAAAAAABVAAAAAACVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMQAAAAACMQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMQAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAMQAAAAADMQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMQAAAAADMQAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAANQAAAAADNQAAAAABNQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAANQAAAAACNQAAAAABNQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAANQAAAAACNQAAAAADNQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAALgAAAAAALgAAAAAAWgAAAAABegAAAAAAWgAAAAAAWgAAAAACWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAALgAAAAAAWgAAAAACWgAAAAAAaQAAAAAAWgAAAAAATQAAAAABTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAALgAAAAAALgAAAAAAWgAAAAABegAAAAAAWgAAAAABWgAAAAACWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAANAAAAAACNAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAANAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAANAAAAAADNAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAANAAAAAADNAAAAAAB version: 6 -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMQAAAAADMQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMQAAAAADMQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAANAAAAAADNAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAANAAAAAADNAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,1: ind: 3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAKwAAAAAAKwAAAAABKwAAAAABKwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAKwAAAAABKwAAAAAAKwAAAAABKwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAKwAAAAABKwAAAAABKwAAAAADKwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAABKwAAAAAAKwAAAAADKwAAAAACAAAAAAAAcQAAAAAAAAAAAAAAKwAAAAAAKwAAAAAAKwAAAAABKwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAABKwAAAAACKwAAAAACAAAAAAAAcAAAAAAAAAAAAAAAKwAAAAACKwAAAAADKwAAAAABKwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAALgAAAAAALgAAAAABLgAAAAABLgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAALgAAAAABLgAAAAAALgAAAAABLgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAALgAAAAABLgAAAAABLgAAAAADLgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAABLgAAAAAALgAAAAADLgAAAAACAAAAAAAAegAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAABLgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAABLgAAAAACLgAAAAACAAAAAAAAeQAAAAAAAAAAAAAALgAAAAACLgAAAAADLgAAAAABLgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,0: ind: 4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAA version: 6 -1,2: ind: -1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,2: ind: 1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 type: MapGrid - type: Broadphase - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 + angularDamping: 10000 + linearDamping: 10000 fixedRotation: False bodyType: Dynamic type: Physics @@ -253,7 +253,9 @@ entities: type: Fixtures - type: OccluderTree - type: SpreaderGrid - - type: Shuttle + - angularDamping: 10000 + linearDamping: 10000 + type: Shuttle - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg @@ -2562,6 +2564,7 @@ entities: 0: 9215 -6,5: 0: 255 + 4: 34816 -5,5: 0: 255 -8,-9: @@ -2574,10 +2577,10 @@ entities: 0: 65280 -5,-9: 0: 65280 - 4: 128 + 4: 245 -4,-9: 0: 65504 - 4: 17 + 4: 21 -3,-9: 0: 65520 4: 14 @@ -2586,17 +2589,19 @@ entities: 4: 3 -1,-9: 0: 65296 - 4: 68 + 4: 69 0,-9: 0: 65280 1,-9: 0: 65280 + 4: 17 2,-9: 0: 65408 3,-9: 0: 65520 4,-9: 0: 65532 + 4: 3 5,-9: 0: 65535 6,-9: @@ -2619,6 +2624,7 @@ entities: 0: 65535 7,5: 0: 8191 + 4: 8192 -11,-2: 0: 65535 -11,-1: @@ -2920,6 +2926,7 @@ entities: 0: 4095 7,6: 0: 30464 + 4: 2 7,7: 0: 887 4: 8 @@ -3035,6 +3042,7 @@ entities: 0: 61440 -7,6: 0: 8738 + 4: 4108 -7,7: 0: 2 -12,-8: @@ -3087,10 +3095,12 @@ entities: 0: 12544 -10,6: 0: 8738 + 4: 49153 -10,7: 0: 2 -9,6: 0: 34952 + 4: 28672 8,6: 0: 1 9,6: @@ -3108,21 +3118,33 @@ entities: -9,-10: 4: 53248 -4,-10: - 4: 4096 + 4: 20480 -1,-10: - 4: 16384 + 4: 20480 8,7: 4: 1 3,8: - 4: 26215 + 4: 61439 3,9: - 4: 1126 + 4: 3310 -1,8: 4: 26214 -1,9: 4: 614 4,8: 4: 8 + -8,6: + 4: 61440 + -6,6: + 4: 15 + -5,-10: + 4: 20480 + 4,-10: + 4: 4352 + -11,6: + 4: 15 + -9,7: + 4: 8 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -3219,25 +3241,6 @@ entities: - pos: 31.5,-21.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9810 - - 9794 - - 9795 - - 8157 - - 9801 - - 9800 - - 9797 - - 7235 - - 7207 - - 9798 - - 9799 - - 7206 - - 7209 - - 7189 - - 9802 - - 9803 - - 9804 - type: DeviceNetwork - devices: - 9810 - 9794 @@ -3257,19 +3260,14 @@ entities: - 9803 - 9804 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 3401 components: - rot: -1.5707963267948966 rad pos: 9.5,7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 8987 - - 8985 - - 3714 - - 7534 - - 7509 - type: DeviceNetwork - devices: - 8987 - 8985 @@ -3277,26 +3275,14 @@ entities: - 7534 - 7509 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9714 components: - rot: -1.5707963267948966 rad pos: -5.5,9.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9868 - - 9869 - - 8316 - - 7637 - - 7643 - - 9872 - - 9861 - - 8343 - - 7629 - - 9862 - - 9873 - - 9874 - type: DeviceNetwork - devices: - 9868 - 9869 @@ -3311,23 +3297,13 @@ entities: - 9873 - 9874 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9715 components: - pos: -14.5,16.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 8370 - - 9855 - - 7610 - - 9868 - - 7613 - - 9869 - - 8323 - - 7612 - - 9867 - - 9866 - type: DeviceNetwork - devices: - 8370 - 9855 @@ -3340,24 +3316,14 @@ entities: - 9867 - 9866 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9768 components: - rot: -1.5707963267948966 rad pos: 9.5,-0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9766 - - 9767 - - 8754 - - 7544 - - 1234 - - 8987 - - 8985 - - 3714 - - 7533 - - 7508 - type: DeviceNetwork - devices: - 9766 - 9767 @@ -3370,32 +3336,13 @@ entities: - 7533 - 7508 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9779 components: - pos: 5.5,-9.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9766 - - 9767 - - 8754 - - 7544 - - 1234 - - 8987 - - 8985 - - 3714 - - 7533 - - 7508 - - 9775 - - 9776 - - 9777 - - 9778 - - 9773 - - 9774 - - 8191 - - 7668 - - 7669 - type: DeviceNetwork - devices: - 9766 - 9767 @@ -3417,25 +3364,14 @@ entities: - 7668 - 7669 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9786 components: - rot: 1.5707963267948966 rad pos: 0.5,-20.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9783 - - 7705 - - 8209 - - 9784 - - 9785 - - 7708 - - 7706 - - 8192 - - 9780 - - 9781 - - 9787 - type: DeviceNetwork - devices: - 9783 - 7705 @@ -3449,20 +3385,13 @@ entities: - 9781 - 9787 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9788 components: - pos: 14.5,-14.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7699 - - 8193 - - 9782 - - 9780 - - 9781 - - 9789 - - 9501 - type: DeviceNetwork - devices: - 7699 - 8193 @@ -3472,34 +3401,14 @@ entities: - 9789 - 9501 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9796 components: - rot: -1.5707963267948966 rad pos: 26.5,-12.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9801 - - 9800 - - 9789 - - 9802 - - 9803 - - 9808 - - 9807 - - 9806 - - 7173 - - 7255 - - 7112 - - 7111 - - 7254 - - 7181 - - 7091 - - 7066 - - 9791 - - 9790 - - 7141 - - 3782 - type: DeviceNetwork - devices: - 9801 - 9800 @@ -3522,25 +3431,14 @@ entities: - 7141 - 3782 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9811 components: - rot: 3.141592653589793 rad pos: 32.5,-11.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9792 - - 9793 - - 9805 - - 7196 - - 7126 - - 7108 - - 9806 - - 9807 - - 9808 - - 9804 - - 7134 - type: DeviceNetwork - devices: - 9792 - 9793 @@ -3554,36 +3452,27 @@ entities: - 9804 - 7134 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9812 components: - rot: 1.5707963267948966 rad pos: 17.5,-25.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7156 - - 7180 - - 9810 - type: DeviceNetwork - devices: - 7156 - 7180 - 9810 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9813 components: - rot: -1.5707963267948966 rad pos: 26.5,-29.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7283 - - 9297 - - 9795 - - 9794 - - 9815 - - 9814 - type: DeviceNetwork - devices: - 7283 - 9297 @@ -3592,23 +3481,14 @@ entities: - 9815 - 9814 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9816 components: - rot: 1.5707963267948966 rad pos: 32.5,-29.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7245 - - 9295 - - 7250 - - 7244 - - 9798 - - 9799 - - 9797 - - 7270 - - 7243 - type: DeviceNetwork - devices: - 7245 - 9295 @@ -3620,29 +3500,21 @@ entities: - 7270 - 7243 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9822 components: - pos: 24.5,7.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 9836 components: - rot: -1.5707963267948966 rad pos: 27.5,3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9821 - - 9835 - - 9834 - - 7339 - - 7333 - - 7331 - - 9831 - - 9830 - - 9832 - - 9833 - type: DeviceNetwork - devices: - 9821 - 9835 @@ -3655,29 +3527,13 @@ entities: - 9832 - 9833 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9837 components: - pos: 30.5,10.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9841 - - 9840 - - 7419 - - 7356 - - 7355 - - 7418 - - 9817 - - 9818 - - 9819 - - 9820 - - 9831 - - 9830 - - 9839 - - 9838 - - 7374 - - 7407 - type: DeviceNetwork - devices: - 9841 - 9840 @@ -3696,23 +3552,13 @@ entities: - 7374 - 7407 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9842 components: - pos: 18.5,17.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9832 - - 7385 - - 9843 - - 9844 - - 7472 - - 9839 - - 9838 - - 7386 - - 7442 - - 7443 - type: DeviceNetwork - devices: - 9832 - 7385 @@ -3725,14 +3571,13 @@ entities: - 7442 - 7443 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9845 components: - pos: 16.5,26.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10856 - type: DeviceNetwork - devices: - 7588 - 9111 @@ -3743,15 +3588,14 @@ entities: - 9847 - 10856 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9853 components: - rot: 1.5707963267948966 rad pos: 2.5,19.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10856 - type: DeviceNetwork - devices: - 9852 - 9851 @@ -3763,14 +3607,13 @@ entities: - 9849 - 10856 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9854 components: - pos: -2.5,15.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 1371 - type: DeviceNetwork - devices: - 9858 - 9859 @@ -3782,23 +3625,14 @@ entities: - 8357 - 7565 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9864 components: - rot: -1.5707963267948966 rad pos: -5.5,3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9862 - - 9863 - - 9865 - - 9767 - - 9766 - - 7663 - - 8300 - - 8342 - - 7566 - type: DeviceNetwork - devices: - 9862 - 9863 @@ -3810,26 +3644,14 @@ entities: - 8342 - 7566 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9877 components: - rot: 1.5707963267948966 rad pos: -9.5,-7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9863 - - 9876 - - 7796 - - 8242 - - 9774 - - 9773 - - 9466 - - 9467 - - 9468 - - 7786 - - 8295 - - 9875 - type: DeviceNetwork - devices: - 9863 - 9876 @@ -3844,21 +3666,13 @@ entities: - 8295 - 9875 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9884 components: - pos: -9.5,-13.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9883 - - 9881 - - 9880 - - 8243 - - 7797 - - 9466 - - 9467 - - 9468 - type: DeviceNetwork - devices: - 9883 - 9881 @@ -3869,21 +3683,13 @@ entities: - 9467 - 9468 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9890 components: - pos: -11.5,-23.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9881 - - 9878 - - 9879 - - 9885 - - 7775 - - 8700 - - 8698 - - 7774 - type: DeviceNetwork - devices: - 9881 - 9878 @@ -3894,22 +3700,14 @@ entities: - 8698 - 7774 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9891 components: - rot: -1.5707963267948966 rad pos: 3.5,-25.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9787 - - 8223 - - 8117 - - 8113 - - 8226 - - 7727 - - 8275 - - 9879 - type: DeviceNetwork - devices: - 9787 - 8223 @@ -3920,39 +3718,35 @@ entities: - 8275 - 9879 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9894 components: - pos: -21.5,-21.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7855 - - 8681 - - 9893 - - 9892 - type: DeviceNetwork - devices: - 7855 - 8681 - 9893 - 9892 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9895 components: - rot: -1.5707963267948966 rad pos: -17.5,-19.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 9903 components: - rot: -1.5707963267948966 rad pos: -17.5,-9.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9919 - - 9920 - type: DeviceNetwork - devices: - 7852 - 8618 @@ -3963,28 +3757,25 @@ entities: - 9919 - 9920 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9904 components: - rot: 1.5707963267948966 rad pos: -25.5,-14.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7127 - - 7129 - type: DeviceNetwork - devices: - 7127 - 7129 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9910 components: - pos: -34.5,-13.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9909 - type: DeviceNetwork - devices: - 7897 - 162 @@ -4001,28 +3792,13 @@ entities: - 9154 - 9907 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9915 components: - pos: -27.5,-3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9913 - - 9911 - - 9912 - - 9906 - - 9905 - - 8968 - - 8967 - - 8970 - - 8969 - - 8579 - - 9916 - - 9876 - - 9875 - - 9917 - - 9918 - type: DeviceNetwork - devices: - 9913 - 9911 @@ -4040,34 +3816,14 @@ entities: - 9917 - 9918 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9927 components: - rot: 1.5707963267948966 rad pos: -20.5,11.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 8090 - - 8393 - - 8389 - - 8078 - - 9867 - - 9866 - - 8403 - - 8409 - - 8062 - - 8402 - - 9926 - - 9924 - - 9925 - - 8512 - - 9928 - - 9929 - - 9930 - - 9931 - - 7967 - - 8513 - type: DeviceNetwork - devices: - 8090 - 8393 @@ -4090,33 +3846,13 @@ entities: - 7967 - 8513 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9932 components: - pos: -29.5,6.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9938 - - 9937 - - 9936 - - 9935 - - 9934 - - 8489 - - 7977 - - 7981 - - 8491 - - 9928 - - 9929 - - 9933 - - 9939 - - 9940 - - 9941 - - 9942 - - 7963 - - 8525 - - 9931 - - 9930 - type: DeviceNetwork - devices: - 9938 - 9937 @@ -4139,29 +3875,14 @@ entities: - 9931 - 9930 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9943 components: - rot: 1.5707963267948966 rad pos: -27.5,1.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9933 - - 9944 - - 8549 - - 7951 - - 7952 - - 8544 - - 9913 - - 9918 - - 9917 - - 7955 - - 8534 - - 9941 - - 9942 - - 9940 - - 9939 - type: DeviceNetwork - devices: - 9933 - 9944 @@ -4179,22 +3900,13 @@ entities: - 9940 - 9939 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9946 components: - pos: -50.5,10.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9947 - - 8461 - - 8011 - - 8010 - - 8460 - - 8459 - - 8007 - - 9934 - - 9935 - type: DeviceNetwork - devices: - 9947 - 8461 @@ -4206,18 +3918,13 @@ entities: - 9934 - 9935 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9951 components: - pos: -49.5,-14.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 3974 - - 9954 - - 9948 - - 9949 - - 9955 - type: DeviceNetwork - devices: - 3974 - 9954 @@ -4225,34 +3932,13 @@ entities: - 9949 - 9955 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9952 components: - pos: -45.5,-3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9947 - - 8461 - - 8011 - - 8010 - - 8460 - - 8459 - - 8007 - - 9934 - - 9935 - - 9914 - - 9911 - - 9912 - - 9153 - - 7930 - - 9907 - - 9950 - - 858 - - 8961 - - 7929 - - 9948 - - 9949 - type: DeviceNetwork - devices: - 9947 - 8461 @@ -4276,33 +3962,27 @@ entities: - 9948 - 9949 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9956 components: - rot: -1.5707963267948966 rad pos: -43.5,-10.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 8963 - - 9950 - - 7927 - - 9955 - type: DeviceNetwork - devices: - 8963 - 9950 - 7927 - 9955 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9958 components: - pos: 41.5,-3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 453 - - 293 - type: DeviceNetwork - devices: - 453 - 293 @@ -4315,21 +3995,14 @@ entities: - 7302 - 8152 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9961 components: - rot: 1.5707963267948966 rad pos: 44.5,-10.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7303 - - 8149 - - 9959 - - 9960 - - 9414 - - 8144 - - 9415 - type: DeviceNetwork - devices: - 7303 - 8149 @@ -4339,30 +4012,13 @@ entities: - 8144 - 9415 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 10119 components: - pos: 16.5,-3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10117 - - 7067 - - 9769 - - 9770 - - 10121 - - 10120 - - 9834 - - 9833 - - 7068 - - 10116 - - 9823 - - 9824 - - 9790 - - 9791 - - 9835 - - 7102 - - 7101 - type: DeviceNetwork - devices: - 10117 - 7067 @@ -4382,28 +4038,14 @@ entities: - 7102 - 7101 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 10122 components: - rot: 1.5707963267948966 rad pos: -31.5,-21.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 162 - - 9892 - - 9896 - - 9897 - - 9908 - - 9909 - - 7885 - - 8641 - - 7876 - - 8639 - - 8640 - - 7884 - - 7890 - - 8638 - type: DeviceNetwork - devices: - 162 - 9892 @@ -4420,25 +4062,13 @@ entities: - 7890 - 8638 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 10787 components: - pos: 31.5,-3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9823 - - 9824 - - 9793 - - 9792 - - 7072 - - 7344 - - 7312 - - 9805 - - 293 - - 453 - - 9817 - - 9818 - type: DeviceNetwork - devices: - 9823 - 9824 @@ -4453,6 +4083,8 @@ entities: - 9817 - 9818 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - proto: AirCanister entities: - uid: 2502 @@ -4460,26 +4092,36 @@ entities: - pos: 22.5,-25.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 3824 components: - pos: -24.5,-14.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 10210 components: - pos: 14.5,16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 10211 components: - pos: 19.5,-34.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 10214 components: - pos: 43.5,1.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: Airlock entities: - uid: 9886 @@ -4531,80 +4173,6 @@ entities: - pos: 10.5,-22.5 parent: 2 type: Transform -- proto: AirlockBrigGlassLocked - entities: - - uid: 3650 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,18.5 - parent: 2 - type: Transform - - uid: 3652 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,15.5 - parent: 2 - type: Transform - - uid: 3653 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,17.5 - parent: 2 - type: Transform - - uid: 3658 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,6.5 - parent: 2 - type: Transform - - uid: 3659 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,6.5 - parent: 2 - type: Transform - - uid: 3946 - components: - - pos: -27.5,5.5 - parent: 2 - type: Transform - - uid: 5097 - components: - - pos: -27.5,4.5 - parent: 2 - type: Transform - - uid: 9067 - components: - - pos: -36.5,-1.5 - parent: 2 - type: Transform -- proto: AirlockBrigLocked - entities: - - uid: 3660 - components: - - pos: -26.5,2.5 - parent: 2 - type: Transform - - uid: 3661 - components: - - pos: -25.5,2.5 - parent: 2 - type: Transform - - uid: 3948 - components: - - pos: -33.5,3.5 - parent: 2 - type: Transform - - uid: 9066 - components: - - pos: -39.5,-3.5 - parent: 2 - type: Transform - - uid: 9068 - components: - - pos: -41.5,-0.5 - parent: 2 - type: Transform - proto: AirlockCaptainGlassLocked entities: - uid: 2359 @@ -4680,9 +4248,9 @@ entities: - pos: -41.5,-13.5 parent: 2 type: Transform -- proto: AirlockChemistryLocked +- proto: AirlockChemistryGlassLocked entities: - - uid: 4035 + - uid: 381 components: - pos: 23.5,-16.5 parent: 2 @@ -5436,6 +5004,20 @@ entities: pos: -5.5,-16.5 parent: 2 type: Transform +- proto: AirlockLawyerGlassLocked + entities: + - uid: 9066 + components: + - pos: -36.5,-1.5 + parent: 2 + type: Transform +- proto: AirlockLawyerLocked + entities: + - uid: 9068 + components: + - pos: -39.5,-3.5 + parent: 2 + type: Transform - proto: AirlockMailGlassLocked entities: - uid: 3960 @@ -5633,6 +5215,13 @@ entities: - pos: -10.5,1.5 parent: 2 type: Transform +- proto: AirlockMaintLawyerLocked + entities: + - uid: 9067 + components: + - pos: -41.5,-0.5 + parent: 2 + type: Transform - proto: AirlockMaintLocked entities: - uid: 521 @@ -5822,6 +5411,13 @@ entities: - pos: 17.5,-23.5 parent: 2 type: Transform +- proto: AirlockMaintReporterLocked + entities: + - uid: 9151 + components: + - pos: -14.5,-18.5 + parent: 2 + type: Transform - proto: AirlockMaintRnDLocked entities: - uid: 9036 @@ -5873,24 +5469,33 @@ entities: - pos: -49.5,2.5 parent: 2 type: Transform - - uid: 9061 + - uid: 9064 components: - - pos: -16.5,9.5 + - pos: -45.5,17.5 parent: 2 type: Transform - - uid: 9062 + - uid: 9065 components: - - pos: -17.5,4.5 + - pos: -40.5,17.5 parent: 2 type: Transform - - uid: 9064 +- proto: AirlockMaintSecurityLawyerLocked + entities: + - uid: 662 components: - - pos: -45.5,17.5 + - pos: -16.5,9.5 parent: 2 type: Transform - - uid: 9065 + - uid: 665 components: - - pos: -40.5,17.5 + - pos: -17.5,4.5 + parent: 2 + type: Transform +- proto: AirlockMaintServiceLocked + entities: + - uid: 9094 + components: + - pos: 11.5,-11.5 parent: 2 type: Transform - proto: AirlockMaintTheatreLocked @@ -6049,6 +5654,13 @@ entities: - pos: 26.5,-31.5 parent: 2 type: Transform +- proto: AirlockMusicianLocked + entities: + - uid: 666 + components: + - pos: 3.5,-26.5 + parent: 2 + type: Transform - proto: AirlockParamedicGlassLocked entities: - uid: 64 @@ -6092,6 +5704,13 @@ entities: - pos: 8.5,18.5 parent: 2 type: Transform +- proto: AirlockReporterLocked + entities: + - uid: 9152 + components: + - pos: -9.5,-18.5 + parent: 2 + type: Transform - proto: AirlockResearchDirectorLocked entities: - uid: 9236 @@ -6352,56 +5971,91 @@ entities: - pos: -51.5,8.5 parent: 2 type: Transform -- proto: AirlockSecurityLocked +- proto: AirlockSecurityLawyerGlassLocked entities: - - uid: 3921 + - uid: 3650 components: - - pos: -23.5,11.5 + - rot: 1.5707963267948966 rad + pos: -15.5,18.5 parent: 2 type: Transform - - uid: 3922 + - uid: 3652 components: - - pos: -26.5,9.5 + - rot: 1.5707963267948966 rad + pos: -18.5,15.5 parent: 2 type: Transform -- proto: AirlockServiceGlassLocked - entities: - - uid: 9092 + - uid: 3653 components: - - pos: 11.5,-7.5 + - rot: 1.5707963267948966 rad + pos: -15.5,17.5 parent: 2 type: Transform - - uid: 9093 + - uid: 3658 components: - - pos: 13.5,-7.5 + - rot: 1.5707963267948966 rad + pos: -18.5,6.5 + parent: 2 + type: Transform + - uid: 3659 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,6.5 parent: 2 type: Transform -- proto: AirlockServiceLocked + - uid: 3946 + components: + - pos: -27.5,5.5 + parent: 2 + type: Transform + - uid: 5097 + components: + - pos: -27.5,4.5 + parent: 2 + type: Transform +- proto: AirlockSecurityLawyerLocked entities: - - uid: 9094 + - uid: 3660 components: - - pos: 11.5,-11.5 + - pos: -26.5,2.5 parent: 2 type: Transform - - uid: 9151 + - uid: 3661 components: - - rot: 1.5707963267948966 rad - pos: -14.5,-18.5 + - pos: -25.5,2.5 parent: 2 type: Transform - - uid: 9152 + - uid: 3948 components: - - rot: 1.5707963267948966 rad - pos: -9.5,-18.5 + - pos: -33.5,3.5 parent: 2 type: Transform -- proto: AirlockTheatreLocked +- proto: AirlockSecurityLocked entities: - - uid: 3979 + - uid: 3921 components: - - pos: 3.5,-26.5 + - pos: -23.5,11.5 + parent: 2 + type: Transform + - uid: 3922 + components: + - pos: -26.5,9.5 + parent: 2 + type: Transform +- proto: AirlockServiceGlassLocked + entities: + - uid: 9092 + components: + - pos: 11.5,-7.5 parent: 2 type: Transform + - uid: 9093 + components: + - pos: 13.5,-7.5 + parent: 2 + type: Transform +- proto: AirlockTheatreLocked + entities: - uid: 3980 components: - pos: -0.5,-27.5 @@ -6424,9 +6078,6 @@ entities: - pos: -19.5,-12.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9904 - type: DeviceNetwork - proto: AltarSpawner entities: - uid: 1563 @@ -7734,6 +7385,13 @@ entities: - pos: -2.4693463,-19.37615 parent: 2 type: Transform +- proto: BookEngineersHandbook + entities: + - uid: 807 + components: + - pos: 42.23865,9.989966 + parent: 2 + type: Transform - proto: BookRandom entities: - uid: 3853 @@ -7864,13 +7522,6 @@ entities: - pos: -45.5,-25.5 parent: 2 type: Transform -- proto: BoxLightMixed - entities: - - uid: 1389 - components: - - pos: -13.321652,-1.3277344 - parent: 2 - type: Transform - proto: BoxMagazineLightRiflePractice entities: - uid: 2817 @@ -7885,11 +7536,11 @@ entities: - pos: -41.325523,14.524066 parent: 2 type: Transform -- proto: BoxMaintenanceLightbulb +- proto: BoxMouthSwab entities: - - uid: 1386 + - uid: 3979 components: - - pos: -13.676224,-1.250433 + - pos: 15.109555,-20.140219 parent: 2 type: Transform - proto: BoxSyringe @@ -7991,16 +7642,6 @@ entities: type: Transform - proto: Bucket entities: - - uid: 577 - components: - - pos: 14.380181,-20.441671 - parent: 2 - type: Transform - - uid: 578 - components: - - pos: 14.739556,-20.269676 - parent: 2 - type: Transform - uid: 664 components: - pos: 12.761805,-8.645675 @@ -8032,11 +7673,21 @@ entities: - pos: -37.22765,15.837114 parent: 2 type: Transform + - uid: 11098 + components: + - pos: 16.054102,-19.103573 + parent: 2 + type: Transform + - uid: 11100 + components: + - pos: 16.272852,-18.665768 + parent: 2 + type: Transform - proto: BurnAutoInjector entities: - - uid: 825 + - uid: 11049 components: - - pos: 28.449654,-11.5423765 + - pos: 28.121563,-11.653111 parent: 2 type: Transform - proto: CableApcExtension @@ -15786,6 +15437,36 @@ entities: - pos: -9.5,-36.5 parent: 2 type: Transform + - uid: 11024 + components: + - pos: -34.5,-15.5 + parent: 2 + type: Transform + - uid: 11025 + components: + - pos: -37.5,-18.5 + parent: 2 + type: Transform + - uid: 11026 + components: + - pos: -37.5,-17.5 + parent: 2 + type: Transform + - uid: 11027 + components: + - pos: -37.5,-19.5 + parent: 2 + type: Transform + - uid: 11028 + components: + - pos: -43.5,-19.5 + parent: 2 + type: Transform + - uid: 11047 + components: + - pos: 28.5,28.5 + parent: 2 + type: Transform - proto: CableApcStack entities: - uid: 2955 @@ -24629,6 +24310,12 @@ entities: - pos: -12.5,-18.5 parent: 2 type: Transform + - uid: 11043 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,18.5 + parent: 2 + type: Transform - proto: ChairOfficeLight entities: - uid: 143 @@ -24992,6 +24679,13 @@ entities: - pos: -30.5,-20.5 parent: 2 type: Transform +- proto: CleanerDispenser + entities: + - uid: 9062 + components: + - pos: -13.5,-3.5 + parent: 2 + type: Transform - proto: CloningPod entities: - uid: 2465 @@ -25132,6 +24826,18 @@ entities: - pos: 41.5,-8.5 parent: 2 type: Transform +- proto: ClosetJanitorFilled + entities: + - uid: 2904 + components: + - pos: -13.5,-1.5 + parent: 2 + type: Transform + - uid: 4035 + components: + - pos: 14.5,-9.5 + parent: 2 + type: Transform - proto: ClosetMaintenanceFilledRandom entities: - uid: 7004 @@ -25206,9 +24912,9 @@ entities: pos: 6.5,16.5 parent: 2 type: Transform - - uid: 9860 + - uid: 11044 components: - - pos: -0.5,15.5 + - pos: -1.5,15.5 parent: 2 type: Transform - proto: ClothingBackpackDuffelSurgeryFilled @@ -25232,21 +24938,28 @@ entities: - pos: 42.576614,10.440177 parent: 2 type: Transform +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 11033 + components: + - pos: 19.5585,23.583061 + parent: 2 + type: Transform - proto: ClothingHeadHatCone entities: - - uid: 807 + - uid: 11030 components: - - pos: 26.222437,3.4074683 + - pos: 20.226675,6.7371135 parent: 2 type: Transform - - uid: 808 + - uid: 11031 components: - - pos: 26.675562,3.3918338 + - pos: 20.664175,6.7371135 parent: 2 type: Transform - - uid: 816 + - uid: 11032 components: - - pos: 26.456812,3.6889148 + - pos: 20.455841,6.4452434 parent: 2 type: Transform - proto: ClothingHeadHatPirate @@ -25347,6 +25060,11 @@ entities: type: Transform - proto: ClothingShoesBootsMag entities: + - uid: 816 + components: + - pos: 44.67987,8.359897 + parent: 2 + type: Transform - uid: 2264 components: - pos: -13.628283,-29.590473 @@ -25357,6 +25075,13 @@ entities: - pos: -13.35745,-29.37157 parent: 2 type: Transform +- proto: ClothingUniformJumpskirtJanimaidmini + entities: + - uid: 3802 + components: + - pos: -12.319212,0.73165154 + parent: 2 + type: Transform - proto: Cobweb1 entities: - uid: 3267 @@ -26290,6 +26015,11 @@ entities: type: Transform - proto: CrateEmptySpawner entities: + - uid: 951 + components: + - pos: -0.5,14.5 + parent: 2 + type: Transform - uid: 3765 components: - pos: 10.5,11.5 @@ -26350,11 +26080,6 @@ entities: - pos: -4.5,13.5 parent: 2 type: Transform - - uid: 4153 - components: - - pos: -1.5,14.5 - parent: 2 - type: Transform - uid: 4155 components: - pos: 2.5,22.5 @@ -26532,9 +26257,9 @@ entities: - pos: -46.5,7.5 parent: 2 type: Transform -- proto: CrateTrashCart +- proto: CrateTrashCartJani entities: - - uid: 3802 + - uid: 1109 components: - pos: -13.5,-0.5 parent: 2 @@ -26589,6 +26314,8 @@ entities: - pos: 19.5,-22.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: d6Dice entities: - uid: 1282 @@ -26680,6 +26407,18 @@ entities: - pos: -48.32532,-19.424814 parent: 2 type: Transform +- proto: DiseaseSwab + entities: + - uid: 4153 + components: + - pos: -12.044842,-12.30005 + parent: 2 + type: Transform + - uid: 11102 + components: + - pos: -11.992759,-12.48768 + parent: 2 + type: Transform - proto: DisposalBend entities: - uid: 10395 @@ -28984,9 +28723,14 @@ entities: - pos: 33.5,-13.5 parent: 2 type: Transform - - uid: 2938 + - uid: 2707 components: - - pos: -39.5,15.5 + - pos: -21.5,19.5 + parent: 2 + type: Transform + - uid: 9860 + components: + - pos: -38.5,15.5 parent: 2 type: Transform - proto: Dresser @@ -29047,23 +28791,23 @@ entities: type: Transform - proto: DrinkCafeLatte entities: - - uid: 951 + - uid: 9545 components: - - pos: -4.510326,5.617763 + - pos: -48.22356,-11.293325 parent: 2 type: Transform - - uid: 952 +- proto: DrinkCoffee + entities: + - uid: 1369 components: - - pos: -4.239493,5.722001 + - pos: -4.1824093,5.628996 parent: 2 type: Transform - - uid: 9545 + - uid: 1373 components: - - pos: -48.22356,-11.293325 + - pos: -4.46366,5.5143323 parent: 2 type: Transform -- proto: DrinkCoffee - entities: - uid: 9544 components: - pos: -48.69231,-11.043152 @@ -29121,9 +28865,9 @@ entities: type: Transform - proto: DrinkEnergyDrinkCan entities: - - uid: 803 + - uid: 825 components: - - pos: 28.158022,-11.179657 + - pos: 28.590313,-11.194461 parent: 2 type: Transform - uid: 10771 @@ -29131,6 +28875,16 @@ entities: - pos: 48.667942,-10.733177 parent: 2 type: Transform + - uid: 11045 + components: + - pos: 0.5437088,19.767643 + parent: 2 + type: Transform + - uid: 11046 + components: + - pos: 0.7520422,19.60086 + parent: 2 + type: Transform - proto: DrinkGlass entities: - uid: 6990 @@ -29305,14 +29059,26 @@ entities: - pos: 35.48717,-14.183555 parent: 2 type: Transform - - uid: 9616 + - uid: 11036 components: - - pos: -21.663212,19.839113 + - pos: -21.346165,7.9814734 parent: 2 type: Transform - - uid: 10798 + - uid: 11037 + components: + - pos: -21.179499,7.929354 + parent: 2 + type: Transform +- proto: DrinkWaterCup + entities: + - uid: 10230 + components: + - pos: -21.747364,7.658333 + parent: 2 + type: Transform + - uid: 11035 components: - - pos: -21.527796,19.693178 + - pos: -21.580698,7.4915504 parent: 2 type: Transform - proto: Dropper @@ -29329,6 +29095,11 @@ entities: type: Transform - proto: EmergencyLight entities: + - uid: 952 + components: + - pos: 1.5,14.5 + parent: 2 + type: Transform - uid: 4315 components: - rot: 1.5707963267948966 rad @@ -29525,11 +29296,6 @@ entities: pos: -49.5,-6.5 parent: 2 type: Transform - - uid: 9482 - components: - - pos: -0.5,14.5 - parent: 2 - type: Transform - uid: 9624 components: - rot: 1.5707963267948966 rad @@ -29873,17 +29639,6 @@ entities: pos: -5.5,-9.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 1371 - - 9466 - - 9467 - - 9468 - - 9773 - - 9774 - - 9863 - - 9876 - - 9875 - type: DeviceNetwork - devices: - 1371 - 9466 @@ -29895,16 +29650,14 @@ entities: - 9876 - 9875 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9575 components: - rot: 1.5707963267948966 rad pos: 5.5,-6.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9773 - - 9778 - type: DeviceNetwork - devices: - 9774 - 9773 @@ -29918,19 +29671,13 @@ entities: - 9769 - 1234 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9576 components: - pos: 5.5,3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 3714 - - 8985 - - 8987 - - 9767 - - 9766 - - 1234 - type: DeviceNetwork - devices: - 3714 - 8985 @@ -29939,20 +29686,13 @@ entities: - 9766 - 1234 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9577 components: - pos: -0.5,3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9767 - - 9766 - - 9858 - - 9859 - - 9861 - - 9862 - - 9863 - type: DeviceNetwork - devices: - 9767 - 9766 @@ -29962,6 +29702,8 @@ entities: - 9862 - 9863 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - proto: FireAxeCabinetFilled entities: - uid: 1290 @@ -29982,17 +29724,11 @@ entities: - pos: -33.5,-16.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10122 - type: DeviceNetwork - uid: 858 components: - pos: -47.5,-3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9952 - type: DeviceNetwork - uid: 1713 components: - pos: 14.5,8.5 @@ -30013,34 +29749,16 @@ entities: - pos: 6.5,4.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 3401 - - 9768 - - 9779 - - 9576 - type: DeviceNetwork - uid: 8985 components: - pos: 7.5,4.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 3401 - - 9768 - - 9779 - - 9576 - type: DeviceNetwork - uid: 8987 components: - pos: 8.5,4.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 3401 - - 9768 - - 9779 - - 9576 - type: DeviceNetwork - uid: 9337 components: - pos: -39.5,-26.5 @@ -30056,31 +29774,16 @@ entities: - pos: -6.5,-13.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9877 - - 9884 - - 9574 - type: DeviceNetwork - uid: 9467 components: - pos: -7.5,-13.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9877 - - 9884 - - 9574 - type: DeviceNetwork - uid: 9468 components: - pos: -8.5,-13.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9877 - - 9884 - - 9574 - type: DeviceNetwork - uid: 9708 components: - pos: -44.5,-21.5 @@ -30091,85 +29794,51 @@ entities: - pos: 10.5,-22.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9786 - type: DeviceNetwork - uid: 9787 components: - pos: 1.5,-24.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9786 - - 9891 - type: DeviceNetwork - uid: 9805 components: - pos: 35.5,-7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9811 - - 10787 - type: DeviceNetwork - uid: 9808 components: - pos: 32.5,-14.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9796 - - 9811 - type: DeviceNetwork - uid: 9814 components: - pos: 29.5,-29.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9813 - type: DeviceNetwork - uid: 9815 components: - pos: 32.5,-31.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9813 - type: DeviceNetwork - uid: 9819 components: - pos: 30.5,3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9837 - type: DeviceNetwork - uid: 9820 components: - pos: 29.5,3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9837 - type: DeviceNetwork - uid: 9821 components: - pos: 27.5,-0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9836 - type: DeviceNetwork - uid: 9833 components: - pos: 18.5,2.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9836 - - 10119 - type: DeviceNetwork - uid: 9851 components: - pos: 4.5,18.5 @@ -30185,58 +29854,36 @@ entities: - pos: -9.5,-0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9864 - type: DeviceNetwork - uid: 9872 components: - pos: -9.5,10.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9714 - type: DeviceNetwork - uid: 9878 components: - pos: -11.5,-22.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9890 - type: DeviceNetwork - uid: 9879 components: - pos: -5.5,-27.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9890 - - 9891 - type: DeviceNetwork - uid: 9883 components: - pos: -9.5,-18.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9884 - type: DeviceNetwork - uid: 9885 components: - pos: -11.5,-27.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9890 - type: DeviceNetwork - uid: 9893 components: - pos: -22.5,-21.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9894 - type: DeviceNetwork - uid: 9898 components: - pos: -23.5,-15.5 @@ -30247,95 +29894,56 @@ entities: - pos: -27.5,-16.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10122 - type: DeviceNetwork - uid: 9913 components: - pos: -29.5,-3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9915 - - 9943 - type: DeviceNetwork - uid: 9914 components: - pos: -39.5,-3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9952 - type: DeviceNetwork - uid: 9916 components: - pos: -12.5,-3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9915 - type: DeviceNetwork - uid: 9928 components: - pos: -26.5,9.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9927 - - 9932 - type: DeviceNetwork - uid: 9933 components: - pos: -33.5,3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9932 - - 9943 - type: DeviceNetwork - uid: 9938 components: - pos: -37.5,10.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9932 - type: DeviceNetwork - uid: 9939 components: - pos: -26.5,2.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9932 - - 9943 - type: DeviceNetwork - uid: 9940 components: - pos: -25.5,2.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9932 - - 9943 - type: DeviceNetwork - uid: 9959 components: - pos: 47.5,-5.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9961 - type: DeviceNetwork - uid: 10856 components: - pos: 10.5,24.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9853 - - 9845 - type: DeviceNetwork - proto: FirelockEdge entities: - uid: 7129 @@ -30344,120 +29952,78 @@ entities: pos: -20.5,-13.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9904 - type: DeviceNetwork - uid: 9775 components: - rot: 3.141592653589793 rad pos: -1.5,-13.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9779 - type: DeviceNetwork - uid: 9776 components: - rot: 3.141592653589793 rad pos: -2.5,-13.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9779 - type: DeviceNetwork - uid: 9777 components: - rot: 3.141592653589793 rad pos: -3.5,-13.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9779 - type: DeviceNetwork - uid: 9778 components: - rot: 3.141592653589793 rad pos: -4.5,-13.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9779 - - 9575 - type: DeviceNetwork - uid: 9780 components: - rot: -1.5707963267948966 rad pos: 10.5,-17.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9786 - - 9788 - type: DeviceNetwork - uid: 9781 components: - rot: -1.5707963267948966 rad pos: 10.5,-18.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9786 - - 9788 - type: DeviceNetwork - uid: 9784 components: - rot: 1.5707963267948966 rad pos: 0.5,-17.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9786 - type: DeviceNetwork - uid: 9785 components: - rot: 1.5707963267948966 rad pos: 0.5,-16.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9786 - type: DeviceNetwork - uid: 9840 components: - rot: 1.5707963267948966 rad pos: 44.5,7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9837 - type: DeviceNetwork - uid: 9841 components: - rot: 1.5707963267948966 rad pos: 44.5,6.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9837 - type: DeviceNetwork - uid: 9843 components: - rot: 3.141592653589793 rad pos: 24.5,16.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9842 - type: DeviceNetwork - uid: 9844 components: - rot: 3.141592653589793 rad pos: 23.5,16.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9842 - type: DeviceNetwork - uid: 9846 components: - rot: 1.5707963267948966 rad @@ -30475,53 +30041,33 @@ entities: - pos: -2.5,3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9714 - type: DeviceNetwork - uid: 9874 components: - pos: -3.5,3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9714 - type: DeviceNetwork - uid: 9919 components: - rot: 3.141592653589793 rad pos: -23.5,-8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9903 - type: DeviceNetwork - uid: 9920 components: - rot: 3.141592653589793 rad pos: -22.5,-8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9903 - type: DeviceNetwork - uid: 9941 components: - pos: -22.5,1.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9932 - - 9943 - type: DeviceNetwork - uid: 9942 components: - pos: -21.5,1.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9932 - - 9943 - type: DeviceNetwork - proto: FirelockGlass entities: - uid: 293 @@ -30529,29 +30075,16 @@ entities: - pos: 40.5,-6.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9958 - - 10787 - type: DeviceNetwork - uid: 453 components: - pos: 40.5,-4.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9958 - - 10787 - type: DeviceNetwork - uid: 1234 components: - pos: 7.5,-3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9768 - - 9779 - - 9576 - type: DeviceNetwork - uid: 3791 components: - pos: -34.5,14.5 @@ -30562,41 +30095,21 @@ entities: - pos: 4.5,0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9768 - - 9779 - - 9864 - - 9576 - - 9577 - type: DeviceNetwork - uid: 9767 components: - pos: 4.5,1.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9768 - - 9779 - - 9864 - - 9576 - - 9577 - type: DeviceNetwork - uid: 9769 components: - pos: 9.5,-4.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10119 - type: DeviceNetwork - uid: 9770 components: - pos: 9.5,-6.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10119 - type: DeviceNetwork - uid: 9771 components: - pos: 7.5,-13.5 @@ -30612,291 +30125,161 @@ entities: - pos: -5.5,-11.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9779 - - 9877 - - 9574 - - 9575 - type: DeviceNetwork - uid: 9774 components: - pos: -5.5,-10.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9779 - - 9877 - - 9574 - type: DeviceNetwork - uid: 9782 components: - pos: 10.5,-15.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9788 - type: DeviceNetwork - uid: 9789 components: - pos: 18.5,-18.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9788 - - 9796 - type: DeviceNetwork - uid: 9790 components: - pos: 24.5,-8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9796 - - 10119 - type: DeviceNetwork - uid: 9791 components: - pos: 20.5,-8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9796 - - 10119 - type: DeviceNetwork - uid: 9792 components: - pos: 30.5,-7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9811 - - 10787 - type: DeviceNetwork - uid: 9793 components: - pos: 29.5,-7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9811 - - 10787 - type: DeviceNetwork - uid: 9794 components: - pos: 24.5,-26.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 2603 - - 9813 - type: DeviceNetwork - uid: 9795 components: - pos: 25.5,-26.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 2603 - - 9813 - type: DeviceNetwork - uid: 9797 components: - pos: 29.5,-24.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 2603 - - 9816 - type: DeviceNetwork - uid: 9798 components: - pos: 33.5,-25.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 2603 - - 9816 - type: DeviceNetwork - uid: 9799 components: - pos: 34.5,-25.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 2603 - - 9816 - type: DeviceNetwork - uid: 9800 components: - pos: 24.5,-21.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9796 - - 2603 - type: DeviceNetwork - uid: 9801 components: - pos: 25.5,-21.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9796 - - 2603 - type: DeviceNetwork - uid: 9802 components: - pos: 32.5,-19.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9796 - - 2603 - type: DeviceNetwork - uid: 9803 components: - pos: 32.5,-18.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9796 - - 2603 - type: DeviceNetwork - uid: 9804 components: - pos: 34.5,-16.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9811 - - 2603 - type: DeviceNetwork - uid: 9806 components: - pos: 26.5,-10.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9811 - - 9796 - type: DeviceNetwork - uid: 9807 components: - pos: 30.5,-12.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9796 - - 9811 - type: DeviceNetwork - uid: 9810 components: - pos: 23.5,-23.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 2603 - - 9812 - type: DeviceNetwork - uid: 9817 components: - pos: 34.5,3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9837 - - 10787 - type: DeviceNetwork - uid: 9818 components: - pos: 33.5,3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9837 - - 10787 - type: DeviceNetwork - uid: 9823 components: - pos: 27.5,-4.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10119 - - 10787 - type: DeviceNetwork - uid: 9824 components: - pos: 27.5,-6.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10119 - - 10787 - type: DeviceNetwork - uid: 9830 components: - pos: 27.5,5.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9836 - - 9837 - type: DeviceNetwork - uid: 9831 components: - pos: 27.5,4.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9836 - - 9837 - type: DeviceNetwork - uid: 9832 components: - pos: 18.5,7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9836 - - 9842 - type: DeviceNetwork - uid: 9834 components: - pos: 23.5,0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9836 - - 10119 - type: DeviceNetwork - uid: 9835 components: - pos: 23.5,-1.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9836 - - 10119 - type: DeviceNetwork - uid: 9838 components: - pos: 29.5,10.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9837 - - 9842 - type: DeviceNetwork - uid: 9839 components: - pos: 28.5,10.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9837 - - 9842 - type: DeviceNetwork - uid: 9848 components: - pos: 10.5,26.5 @@ -30912,9 +30295,6 @@ entities: - pos: -3.5,15.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9715 - type: DeviceNetwork - uid: 9856 components: - pos: 0.5,15.5 @@ -30926,146 +30306,82 @@ entities: pos: 3.5,8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9577 - type: DeviceNetwork - uid: 9859 components: - rot: -1.5707963267948966 rad pos: 2.5,8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9577 - type: DeviceNetwork - uid: 9861 components: - pos: -3.5,8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9577 - - 9714 - type: DeviceNetwork - uid: 9862 components: - pos: -7.5,4.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9864 - - 9714 - - 9577 - type: DeviceNetwork - uid: 9863 components: - pos: -7.5,-3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9864 - - 9877 - - 9574 - - 9577 - type: DeviceNetwork - uid: 9866 components: - pos: -15.5,18.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9715 - - 9927 - type: DeviceNetwork - uid: 9867 components: - pos: -15.5,17.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9715 - - 9927 - type: DeviceNetwork - uid: 9868 components: - pos: -7.5,15.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9715 - - 9714 - type: DeviceNetwork - uid: 9869 components: - pos: -10.5,14.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9715 - - 9714 - type: DeviceNetwork - uid: 9875 components: - pos: -12.5,-7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9877 - - 9915 - - 9574 - type: DeviceNetwork - uid: 9876 components: - pos: -10.5,-5.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9877 - - 9915 - - 9574 - type: DeviceNetwork - uid: 9880 components: - pos: -5.5,-16.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9884 - type: DeviceNetwork - uid: 9881 components: - pos: -7.5,-20.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9884 - - 9890 - type: DeviceNetwork - uid: 9892 components: - pos: -26.5,-23.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9894 - - 10122 - type: DeviceNetwork - uid: 9896 components: - pos: -25.5,-19.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10122 - type: DeviceNetwork - uid: 9897 components: - pos: -25.5,-18.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10122 - type: DeviceNetwork - uid: 9901 components: - pos: -25.5,-9.5 @@ -31081,70 +30397,41 @@ entities: - pos: -27.5,-8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9915 - type: DeviceNetwork - uid: 9906 components: - pos: -32.5,-8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9915 - type: DeviceNetwork - uid: 9907 components: - pos: -40.5,-7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9952 - type: DeviceNetwork - uid: 9909 components: - pos: -29.5,-16.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10122 - - 9910 - type: DeviceNetwork - uid: 9911 components: - pos: -35.5,-4.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9915 - - 9952 - type: DeviceNetwork - uid: 9912 components: - pos: -35.5,-6.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9915 - - 9952 - type: DeviceNetwork - uid: 9917 components: - pos: -25.5,-2.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9915 - - 9943 - type: DeviceNetwork - uid: 9918 components: - pos: -26.5,-2.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9915 - - 9943 - type: DeviceNetwork - uid: 9923 components: - pos: -33.5,14.5 @@ -31155,165 +30442,96 @@ entities: - pos: -25.5,13.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9927 - type: DeviceNetwork - uid: 9925 components: - pos: -25.5,12.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9927 - type: DeviceNetwork - uid: 9926 components: - pos: -26.5,16.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9927 - type: DeviceNetwork - uid: 9929 components: - pos: -24.5,6.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9927 - - 9932 - type: DeviceNetwork - uid: 9930 components: - pos: -19.5,6.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9927 - - 9932 - type: DeviceNetwork - uid: 9931 components: - pos: -18.5,6.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9927 - - 9932 - type: DeviceNetwork - uid: 9934 components: - pos: -40.5,8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9932 - - 9946 - - 9952 - type: DeviceNetwork - uid: 9935 components: - pos: -40.5,9.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9932 - - 9946 - - 9952 - type: DeviceNetwork - uid: 9936 components: - pos: -33.5,10.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9932 - type: DeviceNetwork - uid: 9937 components: - pos: -34.5,10.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9932 - type: DeviceNetwork - uid: 9944 components: - pos: -36.5,-1.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9943 - type: DeviceNetwork - uid: 9947 components: - pos: -51.5,8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9946 - - 9952 - type: DeviceNetwork - uid: 9948 components: - pos: -50.5,-11.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9952 - - 9951 - type: DeviceNetwork - uid: 9949 components: - pos: -52.5,-11.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9952 - - 9951 - type: DeviceNetwork - uid: 9950 components: - pos: -46.5,-7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9952 - - 9956 - type: DeviceNetwork - uid: 9955 components: - pos: -49.5,-13.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9951 - - 9956 - type: DeviceNetwork - uid: 9960 components: - pos: 45.5,-7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9961 - type: DeviceNetwork - uid: 10120 components: - pos: 11.5,-7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10119 - type: DeviceNetwork - uid: 10121 components: - pos: 13.5,-7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10119 - type: DeviceNetwork - proto: Fireplace entities: - uid: 2360 @@ -31393,6 +30611,20 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 9061 + components: + - pos: 14.5,-9.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 11104 + components: + - pos: -37.5,16.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures - proto: FloorTileItemBoxing entities: - uid: 3799 @@ -31443,6 +30675,13 @@ entities: - pos: -0.29476315,-23.37204 parent: 2 type: Transform +- proto: FoodBanana + entities: + - uid: 577 + components: + - pos: 10.577374,-18.47791 + parent: 2 + type: Transform - proto: FoodBoxDonut entities: - uid: 950 @@ -31542,6 +30781,13 @@ entities: - pos: 6.6387324,-27.04644 parent: 2 type: Transform +- proto: FoodGalaxythistle + entities: + - uid: 11097 + components: + - pos: 18.561075,-18.386091 + parent: 2 + type: Transform - proto: FoodMealFriesCarrot entities: - uid: 1395 @@ -31616,6 +30862,13 @@ entities: - pos: -9.699375,-21.57564 parent: 2 type: Transform +- proto: FoodTacoRat + entities: + - uid: 11099 + components: + - pos: 10.58681,-32.5766 + parent: 2 + type: Transform - proto: FoodTartMime entities: - uid: 4192 @@ -31673,16 +30926,6 @@ entities: - pos: 21.73281,-31.327389 parent: 2 type: Transform - - uid: 10229 - components: - - pos: 18.342808,9.529277 - parent: 2 - type: Transform - - uid: 10230 - components: - - pos: 18.717808,9.6856365 - parent: 2 - type: Transform - uid: 10978 components: - pos: -18.70092,-32.440784 @@ -31709,6 +30952,8 @@ entities: - pos: 24.5,4.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 743 @@ -31718,6 +30963,8 @@ entities: - pos: 24.5,5.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FFAA00FF' type: AtmosPipeColor - uid: 1967 @@ -31726,6 +30973,8 @@ entities: pos: 17.5,14.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#00AAFFFF' type: AtmosPipeColor - uid: 2054 @@ -31733,6 +30982,8 @@ entities: - pos: 30.5,13.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF6600FF' type: AtmosPipeColor - uid: 2224 @@ -31741,6 +30992,8 @@ entities: pos: 19.5,-25.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 2227 @@ -31749,6 +31002,8 @@ entities: pos: 18.5,-24.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - proto: GasMinerNitrogenStation @@ -31759,6 +31014,8 @@ entities: pos: 21.5,9.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: GasMinerOxygenStation entities: - uid: 755 @@ -31767,6 +31024,8 @@ entities: pos: 23.5,9.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: GasMixerFlipped entities: - uid: 707 @@ -31779,6 +31038,8 @@ entities: inletOneConcentration: 0.78 targetPressure: 500 type: GasMixer + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - proto: GasOutletInjector @@ -31788,17 +31049,23 @@ entities: - pos: 21.5,8.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 723 components: - pos: 23.5,8.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 2029 components: - rot: -1.5707963267948966 rad pos: 27.5,19.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0099FFFF' type: AtmosPipeColor - uid: 2062 @@ -31806,6 +31073,8 @@ entities: - pos: 27.5,18.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF66FFFF' type: AtmosPipeColor - uid: 2846 @@ -31814,12 +31083,16 @@ entities: pos: -41.5,5.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 3813 components: - rot: -1.5707963267948966 rad pos: -20.5,-14.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: GasPassiveGate entities: - uid: 758 @@ -31828,6 +31101,8 @@ entities: pos: 22.5,3.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8212 @@ -31836,6 +31111,8 @@ entities: pos: -0.5,-22.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8962 @@ -31843,6 +31120,8 @@ entities: - pos: -46.5,-7.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - proto: GasPassiveVent @@ -31853,17 +31132,23 @@ entities: pos: 21.5,9.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 721 components: - rot: -1.5707963267948966 rad pos: 23.5,9.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 1784 components: - pos: 26.5,8.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FFAA00FF' type: AtmosPipeColor - uid: 2030 @@ -31871,6 +31156,8 @@ entities: - pos: 26.5,20.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF6600FF' type: AtmosPipeColor - uid: 2847 @@ -31879,12 +31166,16 @@ entities: pos: -43.5,5.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 3814 components: - rot: -1.5707963267948966 rad pos: -20.5,-12.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: GasPipeBend entities: - uid: 428 @@ -44691,6 +43982,8 @@ entities: pos: 27.5,14.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF00FFFF' type: AtmosPipeColor - uid: 765 @@ -44699,6 +43992,8 @@ entities: pos: 23.5,2.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 1929 @@ -44707,6 +44002,8 @@ entities: pos: 17.5,3.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 1975 @@ -44715,6 +44012,8 @@ entities: pos: 18.5,13.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#00AAFFFF' type: AtmosPipeColor - uid: 2002 @@ -44723,6 +44022,8 @@ entities: pos: 18.5,14.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#00AAFFFF' type: AtmosPipeColor - uid: 2057 @@ -44731,6 +44032,8 @@ entities: pos: 29.5,13.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF6600FF' type: AtmosPipeColor - uid: 2058 @@ -44738,6 +44041,8 @@ entities: - pos: 30.5,15.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF6600FF' type: AtmosPipeColor - uid: 2220 @@ -44746,29 +44051,39 @@ entities: pos: 22.5,-25.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 2842 components: - pos: -41.5,7.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 3809 components: - rot: 1.5707963267948966 rad pos: -24.5,-14.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 3810 components: - rot: 1.5707963267948966 rad pos: -24.5,-12.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 9520 components: - rot: -1.5707963267948966 rad pos: 21.5,-30.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - proto: GasPressurePump @@ -44780,6 +44095,8 @@ entities: type: Transform - targetPressure: 200 type: GasPressurePump + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 750 @@ -44790,6 +44107,8 @@ entities: type: Transform - targetPressure: 4500 type: GasPressurePump + - joinedGrid: 2 + type: AtmosDevice - uid: 751 components: - rot: 3.141592653589793 rad @@ -44798,12 +44117,16 @@ entities: type: Transform - targetPressure: 4500 type: GasPressurePump + - joinedGrid: 2 + type: AtmosDevice - uid: 1963 components: - rot: -1.5707963267948966 rad pos: 18.5,15.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#00AAFFFF' type: AtmosPipeColor - uid: 1969 @@ -44812,6 +44135,8 @@ entities: pos: 18.5,12.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#00AAFFFF' type: AtmosPipeColor - uid: 2050 @@ -44820,6 +44145,8 @@ entities: pos: 29.5,12.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF6600FF' type: AtmosPipeColor - uid: 2051 @@ -44828,6 +44155,8 @@ entities: pos: 29.5,14.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF6600FF' type: AtmosPipeColor - uid: 2088 @@ -44836,6 +44165,8 @@ entities: pos: 27.5,16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF00FFFF' type: AtmosPipeColor - uid: 2229 @@ -44844,24 +44175,34 @@ entities: pos: 21.5,-25.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 3811 components: - rot: 1.5707963267948966 rad pos: -22.5,-14.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 3812 components: - rot: -1.5707963267948966 rad pos: -22.5,-12.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 4028 components: - rot: 3.141592653589793 rad pos: -43.5,6.5 parent: 2 type: Transform + - targetPressure: 4500 + type: GasPressurePump + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 4622 @@ -44872,6 +44213,8 @@ entities: type: Transform - targetPressure: 4500 type: GasPressurePump + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - proto: GasThermoMachineFreezer @@ -44881,6 +44224,8 @@ entities: - pos: 21.5,13.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: GasThermoMachineFreezerEnabled entities: - uid: 631 @@ -44888,18 +44233,24 @@ entities: - pos: 18.5,-22.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 4027 components: - rot: -1.5707963267948966 rad pos: -0.5,-21.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 8965 components: - rot: 1.5707963267948966 rad pos: -48.5,-8.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: GasThermoMachineHeaterEnabled entities: - uid: 741 @@ -44909,11 +44260,15 @@ entities: type: Transform - color: '#0088FFFF' type: AtmosPipeColor + - joinedGrid: 2 + type: AtmosDevice - uid: 2297 components: - pos: 27.5,13.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: GasValve entities: - uid: 904 @@ -44923,6 +44278,8 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 2 + type: AtmosDevice - color: '#0099FFFF' type: AtmosPipeColor - uid: 1962 @@ -44930,6 +44287,8 @@ entities: - pos: 19.5,14.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#00AAFFFF' type: AtmosPipeColor - uid: 2037 @@ -44939,6 +44298,8 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 2 + type: AtmosDevice - color: '#FF6600FF' type: AtmosPipeColor - uid: 2038 @@ -44946,6 +44307,8 @@ entities: - pos: 28.5,16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF6600FF' type: AtmosPipeColor - uid: 2052 @@ -44953,6 +44316,8 @@ entities: - pos: 28.5,13.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF6600FF' type: AtmosPipeColor - uid: 2843 @@ -44962,6 +44327,8 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 2 + type: AtmosDevice - proto: GasVentPump entities: - uid: 1371 @@ -44969,10 +44336,8 @@ entities: - pos: 1.5,10.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9854 - - 9574 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 3723 @@ -44981,6 +44346,8 @@ entities: pos: -15.5,-31.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 3782 @@ -44989,9 +44356,8 @@ entities: pos: 21.5,-18.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9796 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7102 @@ -44999,9 +44365,8 @@ entities: - pos: 19.5,-0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10119 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7126 @@ -45010,9 +44375,8 @@ entities: pos: 31.5,-8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9811 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7173 @@ -45021,9 +44385,8 @@ entities: pos: 28.5,-20.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9796 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7180 @@ -45032,9 +44395,8 @@ entities: pos: 22.5,-24.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9812 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7181 @@ -45043,9 +44405,8 @@ entities: pos: 23.5,-13.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9796 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7189 @@ -45054,9 +44415,8 @@ entities: pos: 35.5,-19.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 2603 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7196 @@ -45065,9 +44425,8 @@ entities: pos: 36.5,-8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9811 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7206 @@ -45076,9 +44435,8 @@ entities: pos: 39.5,-23.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 2603 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7235 @@ -45087,9 +44445,8 @@ entities: pos: 30.5,-23.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 2603 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7243 @@ -45097,9 +44454,8 @@ entities: - pos: 31.5,-25.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9816 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7244 @@ -45108,9 +44464,8 @@ entities: pos: 36.5,-26.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9816 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7245 @@ -45119,9 +44474,8 @@ entities: pos: 33.5,-30.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9816 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7255 @@ -45130,9 +44484,8 @@ entities: pos: 25.5,-20.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9796 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7280 @@ -45141,6 +44494,8 @@ entities: pos: 27.5,-31.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7283 @@ -45149,9 +44504,8 @@ entities: pos: 25.5,-29.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9813 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7293 @@ -45160,6 +44514,8 @@ entities: pos: 25.5,-33.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7301 @@ -45168,6 +44524,8 @@ entities: pos: 47.5,-1.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7302 @@ -45176,6 +44534,8 @@ entities: pos: 49.5,-0.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7303 @@ -45183,9 +44543,8 @@ entities: - pos: 48.5,-4.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9961 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7311 @@ -45193,6 +44552,8 @@ entities: - pos: 42.5,-4.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7312 @@ -45201,9 +44562,8 @@ entities: pos: 35.5,-3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10787 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7321 @@ -45212,6 +44572,8 @@ entities: pos: 38.5,-0.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7329 @@ -45220,6 +44582,8 @@ entities: pos: 30.5,-1.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7331 @@ -45228,9 +44592,8 @@ entities: pos: 24.5,-0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9836 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7333 @@ -45238,9 +44601,8 @@ entities: - pos: 26.5,4.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9836 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7406 @@ -45249,6 +44611,8 @@ entities: pos: 35.5,1.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7407 @@ -45256,9 +44620,8 @@ entities: - pos: 33.5,11.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9837 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7418 @@ -45266,9 +44629,8 @@ entities: - pos: 41.5,9.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9837 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7419 @@ -45276,9 +44638,8 @@ entities: - pos: 35.5,9.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9837 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7442 @@ -45287,9 +44648,8 @@ entities: pos: 32.5,15.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9842 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7443 @@ -45297,9 +44657,8 @@ entities: - pos: 32.5,19.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9842 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7459 @@ -45308,6 +44667,8 @@ entities: pos: 15.5,-2.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7472 @@ -45315,9 +44676,8 @@ entities: - pos: 16.5,16.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9842 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7474 @@ -45326,6 +44686,8 @@ entities: pos: 12.5,16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7482 @@ -45334,6 +44696,8 @@ entities: pos: 17.5,18.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7483 @@ -45341,6 +44705,8 @@ entities: - pos: 15.5,25.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7495 @@ -45349,6 +44715,8 @@ entities: pos: 9.5,16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7500 @@ -45357,6 +44725,8 @@ entities: pos: 6.5,19.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7505 @@ -45364,6 +44734,8 @@ entities: - pos: 9.5,24.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7508 @@ -45372,10 +44744,8 @@ entities: pos: 12.5,3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9768 - - 9779 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 7509 @@ -45384,9 +44754,8 @@ entities: pos: 11.5,10.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 3401 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8171 @@ -45395,6 +44764,8 @@ entities: pos: 12.5,-8.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8191 @@ -45402,9 +44773,8 @@ entities: - pos: 5.5,-10.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9779 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8192 @@ -45412,9 +44782,8 @@ entities: - pos: 9.5,-14.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9786 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8193 @@ -45423,9 +44792,8 @@ entities: pos: 11.5,-16.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9788 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8205 @@ -45434,6 +44802,8 @@ entities: pos: -0.5,-16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8209 @@ -45441,9 +44811,8 @@ entities: - pos: 4.5,-21.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9786 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8215 @@ -45452,15 +44821,16 @@ entities: pos: -1.5,-23.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 8223 components: - rot: -1.5707963267948966 rad pos: 4.5,-26.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9891 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8226 @@ -45469,9 +44839,8 @@ entities: pos: 0.5,-29.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9891 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8227 @@ -45480,6 +44849,8 @@ entities: pos: 5.5,-31.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8241 @@ -45487,6 +44858,8 @@ entities: - pos: 0.5,-8.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8242 @@ -45495,9 +44868,8 @@ entities: pos: -6.5,-9.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9877 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8243 @@ -45506,9 +44878,8 @@ entities: pos: -6.5,-17.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9884 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8275 @@ -45517,9 +44888,8 @@ entities: pos: -3.5,-28.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9891 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8295 @@ -45528,9 +44898,8 @@ entities: pos: -13.5,-10.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9877 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8296 @@ -45538,6 +44907,8 @@ entities: - pos: -12.5,-0.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8300 @@ -45546,9 +44917,8 @@ entities: pos: -8.5,-2.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9864 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8316 @@ -45557,9 +44927,8 @@ entities: pos: -9.5,13.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9714 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8323 @@ -45568,9 +44937,8 @@ entities: pos: -12.5,14.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9715 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8342 @@ -45579,9 +44947,8 @@ entities: pos: -2.5,0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9864 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8343 @@ -45590,9 +44957,8 @@ entities: pos: -1.5,4.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9714 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8357 @@ -45600,6 +44966,8 @@ entities: - pos: 1.5,6.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8365 @@ -45607,6 +44975,8 @@ entities: - pos: 0.5,16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8370 @@ -45615,9 +44985,8 @@ entities: pos: -2.5,16.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9715 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8389 @@ -45626,9 +44995,8 @@ entities: pos: -17.5,16.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9927 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8393 @@ -45637,9 +45005,8 @@ entities: pos: -19.5,14.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9927 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8402 @@ -45648,9 +45015,8 @@ entities: pos: -22.5,15.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9927 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8403 @@ -45659,9 +45025,8 @@ entities: pos: -23.5,19.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9927 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8419 @@ -45670,6 +45035,8 @@ entities: pos: -28.5,12.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8423 @@ -45677,6 +45044,8 @@ entities: - pos: -28.5,20.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8424 @@ -45684,6 +45053,8 @@ entities: - pos: -31.5,20.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8425 @@ -45691,6 +45062,8 @@ entities: - pos: -34.5,20.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8426 @@ -45698,6 +45071,8 @@ entities: - pos: -37.5,20.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8443 @@ -45705,6 +45080,8 @@ entities: - pos: -38.5,18.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8444 @@ -45712,6 +45089,8 @@ entities: - pos: -43.5,18.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8459 @@ -45720,10 +45099,8 @@ entities: pos: -44.5,12.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9946 - - 9952 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8460 @@ -45732,10 +45109,8 @@ entities: pos: -44.5,7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9946 - - 9952 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8461 @@ -45743,10 +45118,8 @@ entities: - pos: -49.5,10.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9946 - - 9952 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8481 @@ -45755,6 +45128,8 @@ entities: pos: -38.5,4.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8487 @@ -45762,6 +45137,8 @@ entities: - pos: -36.5,11.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8489 @@ -45770,9 +45147,8 @@ entities: pos: -34.5,7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9932 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8490 @@ -45780,6 +45156,8 @@ entities: - pos: -34.5,11.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8491 @@ -45787,9 +45165,8 @@ entities: - pos: -28.5,9.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9932 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8512 @@ -45797,9 +45174,8 @@ entities: - pos: -23.5,13.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9927 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8513 @@ -45808,9 +45184,8 @@ entities: pos: -21.5,8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9927 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8525 @@ -45819,9 +45194,8 @@ entities: pos: -19.5,3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9932 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8534 @@ -45830,9 +45204,8 @@ entities: pos: -20.5,-0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9943 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8544 @@ -45840,9 +45213,8 @@ entities: - pos: -28.5,0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9943 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8549 @@ -45851,9 +45223,8 @@ entities: pos: -33.5,-2.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9943 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8566 @@ -45861,6 +45232,8 @@ entities: - pos: -38.5,0.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8579 @@ -45868,9 +45241,8 @@ entities: - pos: -15.5,-3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9915 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8617 @@ -45879,6 +45251,8 @@ entities: pos: -27.5,-10.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8618 @@ -45887,6 +45261,8 @@ entities: pos: -23.5,-9.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8621 @@ -45895,6 +45271,8 @@ entities: pos: -27.5,-14.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8638 @@ -45903,9 +45281,8 @@ entities: pos: -35.5,-18.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10122 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8639 @@ -45914,9 +45291,8 @@ entities: pos: -33.5,-24.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10122 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8640 @@ -45925,9 +45301,8 @@ entities: pos: -34.5,-26.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10122 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8641 @@ -45936,9 +45311,8 @@ entities: pos: -29.5,-24.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10122 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8665 @@ -45946,6 +45320,8 @@ entities: - pos: -19.5,-16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8667 @@ -45953,6 +45329,8 @@ entities: - pos: -16.5,-17.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8679 @@ -45961,6 +45339,8 @@ entities: pos: -25.5,-29.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8681 @@ -45969,9 +45349,8 @@ entities: pos: -23.5,-25.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9894 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8688 @@ -45980,6 +45359,8 @@ entities: pos: -38.5,-18.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8692 @@ -45988,6 +45369,8 @@ entities: pos: -12.5,-18.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8698 @@ -45996,9 +45379,8 @@ entities: pos: -6.5,-31.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9890 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8700 @@ -46007,9 +45389,8 @@ entities: pos: -6.5,-22.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9890 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8705 @@ -46018,6 +45399,8 @@ entities: pos: -12.5,-27.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8709 @@ -46026,6 +45409,8 @@ entities: pos: -14.5,-22.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8754 @@ -46033,10 +45418,8 @@ entities: - pos: 5.5,2.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9768 - - 9779 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8773 @@ -46044,6 +45427,8 @@ entities: - pos: 19.5,-27.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8789 @@ -46051,6 +45436,8 @@ entities: - pos: 12.5,-24.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8794 @@ -46058,6 +45445,8 @@ entities: - pos: 14.5,-29.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8951 @@ -46066,6 +45455,8 @@ entities: pos: -52.5,-19.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8961 @@ -46073,9 +45464,8 @@ entities: - pos: -52.5,-4.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9952 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 8963 @@ -46084,18 +45474,16 @@ entities: pos: -46.5,-9.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9956 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - uid: 8968 components: - rot: 3.141592653589793 rad pos: -33.5,-7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9915 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 9153 @@ -46103,9 +45491,8 @@ entities: - pos: -36.5,-5.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9952 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 9154 @@ -46114,6 +45501,8 @@ entities: pos: -41.5,-8.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 9161 @@ -46122,6 +45511,8 @@ entities: pos: -43.5,-2.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 9167 @@ -46129,6 +45520,8 @@ entities: - pos: -47.5,-2.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 9173 @@ -46137,6 +45530,8 @@ entities: pos: -52.5,8.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 9247 @@ -46145,6 +45540,8 @@ entities: pos: -40.5,-16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 9414 @@ -46153,9 +45550,8 @@ entities: pos: 50.5,-10.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9961 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 9415 @@ -46164,9 +45560,8 @@ entities: pos: 46.5,-15.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9961 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 9954 @@ -46175,9 +45570,8 @@ entities: pos: -49.5,-15.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9951 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 10116 @@ -46185,9 +45579,8 @@ entities: - pos: 25.5,-4.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10119 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 10117 @@ -46196,9 +45589,8 @@ entities: pos: 13.5,-4.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10119 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - uid: 10860 @@ -46207,6 +45599,8 @@ entities: pos: -15.5,8.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0088FFFF' type: AtmosPipeColor - proto: GasVentScrubber @@ -46216,6 +45610,8 @@ entities: - pos: 11.5,-29.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 3974 @@ -46224,9 +45620,8 @@ entities: pos: -51.5,-14.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9951 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7066 @@ -46235,9 +45630,8 @@ entities: pos: 20.5,-11.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9796 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7067 @@ -46245,9 +45639,8 @@ entities: - pos: 15.5,-5.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10119 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7068 @@ -46255,9 +45648,8 @@ entities: - pos: 22.5,-5.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10119 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7071 @@ -46266,6 +45658,8 @@ entities: pos: 12.5,-9.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7072 @@ -46273,9 +45667,8 @@ entities: - pos: 30.5,-5.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10787 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7091 @@ -46284,9 +45677,8 @@ entities: pos: 24.5,-11.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9796 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7101 @@ -46295,9 +45687,8 @@ entities: pos: 20.5,-0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10119 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7108 @@ -46306,9 +45697,8 @@ entities: pos: 28.5,-9.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9811 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7111 @@ -46317,9 +45707,8 @@ entities: pos: 29.5,-15.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9796 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7112 @@ -46328,9 +45717,8 @@ entities: pos: 29.5,-18.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9796 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7134 @@ -46339,9 +45727,8 @@ entities: pos: 35.5,-12.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9811 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7141 @@ -46350,9 +45737,8 @@ entities: pos: 20.5,-17.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9796 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7156 @@ -46361,9 +45747,8 @@ entities: pos: 20.5,-22.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9812 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7207 @@ -46372,9 +45757,8 @@ entities: pos: 33.5,-22.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 2603 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7209 @@ -46383,9 +45767,8 @@ entities: pos: 38.5,-22.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 2603 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7213 @@ -46394,6 +45777,8 @@ entities: pos: 35.5,-33.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7250 @@ -46402,9 +45787,8 @@ entities: pos: 36.5,-28.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9816 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7254 @@ -46412,9 +45796,8 @@ entities: - pos: 25.5,-15.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9796 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7270 @@ -46423,9 +45806,8 @@ entities: pos: 28.5,-26.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9816 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7271 @@ -46434,6 +45816,8 @@ entities: pos: 29.5,-30.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7289 @@ -46441,6 +45825,8 @@ entities: - pos: 40.5,-17.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7339 @@ -46449,9 +45835,8 @@ entities: pos: 24.5,2.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9836 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7344 @@ -46460,9 +45845,8 @@ entities: pos: 34.5,-5.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10787 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7345 @@ -46471,6 +45855,8 @@ entities: pos: 35.5,0.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7346 @@ -46479,6 +45865,8 @@ entities: pos: 29.5,0.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7355 @@ -46487,9 +45875,8 @@ entities: pos: 40.5,6.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9837 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7356 @@ -46497,9 +45884,8 @@ entities: - pos: 34.5,8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9837 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7374 @@ -46507,9 +45893,8 @@ entities: - pos: 36.5,12.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9837 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7385 @@ -46518,9 +45903,8 @@ entities: pos: 17.5,11.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9842 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7386 @@ -46528,9 +45912,8 @@ entities: - pos: 31.5,15.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9842 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7533 @@ -46539,10 +45922,8 @@ entities: pos: 11.5,3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9768 - - 9779 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7534 @@ -46551,9 +45932,8 @@ entities: pos: 9.5,10.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 3401 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7535 @@ -46561,6 +45941,8 @@ entities: - pos: 8.5,16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7544 @@ -46568,10 +45950,8 @@ entities: - pos: 6.5,1.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9768 - - 9779 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7565 @@ -46580,6 +45960,8 @@ entities: pos: 3.5,6.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7566 @@ -46587,9 +45969,8 @@ entities: - pos: 0.5,1.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9864 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7568 @@ -46597,6 +45978,8 @@ entities: - pos: 0.5,12.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7587 @@ -46604,6 +45987,8 @@ entities: - pos: 4.5,26.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7588 @@ -46612,6 +45997,8 @@ entities: pos: 13.5,25.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7597 @@ -46620,6 +46007,8 @@ entities: pos: 7.5,22.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7610 @@ -46628,9 +46017,8 @@ entities: pos: -6.5,17.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9715 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7611 @@ -46639,6 +46027,8 @@ entities: pos: 0.5,18.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7612 @@ -46647,9 +46037,8 @@ entities: pos: -13.5,14.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9715 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7613 @@ -46658,9 +46047,8 @@ entities: pos: -11.5,17.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9715 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7629 @@ -46669,9 +46057,8 @@ entities: pos: -3.5,5.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9714 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7637 @@ -46679,9 +46066,8 @@ entities: - pos: -7.5,12.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9714 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7643 @@ -46690,9 +46076,8 @@ entities: pos: -7.5,7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9714 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7648 @@ -46701,6 +46086,8 @@ entities: pos: -11.5,10.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7663 @@ -46709,9 +46096,8 @@ entities: pos: -7.5,2.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9864 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7666 @@ -46720,6 +46106,8 @@ entities: pos: -11.5,-0.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7668 @@ -46728,9 +46116,8 @@ entities: pos: 7.5,-8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9779 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7669 @@ -46739,9 +46126,8 @@ entities: pos: -0.5,-11.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9779 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7682 @@ -46749,6 +46135,8 @@ entities: - pos: -0.5,-8.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7699 @@ -46756,9 +46144,8 @@ entities: - pos: 12.5,-16.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9788 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7705 @@ -46767,9 +46154,8 @@ entities: pos: 6.5,-22.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9786 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7706 @@ -46777,9 +46163,8 @@ entities: - pos: 5.5,-15.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9786 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7708 @@ -46788,9 +46173,8 @@ entities: pos: 5.5,-18.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9786 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7719 @@ -46798,6 +46182,8 @@ entities: - pos: -3.5,-16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7720 @@ -46806,6 +46192,8 @@ entities: pos: -3.5,-22.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7727 @@ -46814,9 +46202,8 @@ entities: pos: -2.5,-27.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9891 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7774 @@ -46825,9 +46212,8 @@ entities: pos: -8.5,-33.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9890 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7775 @@ -46836,9 +46222,8 @@ entities: pos: -9.5,-24.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9890 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7782 @@ -46847,6 +46232,8 @@ entities: pos: -15.5,-30.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7785 @@ -46855,6 +46242,8 @@ entities: pos: -11.5,-18.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7786 @@ -46863,9 +46252,8 @@ entities: pos: -11.5,-11.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9877 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7796 @@ -46874,9 +46262,8 @@ entities: pos: -7.5,-5.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9877 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7797 @@ -46885,9 +46272,8 @@ entities: pos: -7.5,-14.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9884 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7852 @@ -46896,6 +46282,8 @@ entities: pos: -21.5,-9.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7853 @@ -46904,6 +46292,8 @@ entities: pos: -22.5,-13.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7854 @@ -46912,6 +46302,8 @@ entities: pos: -21.5,-19.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7855 @@ -46920,9 +46312,8 @@ entities: pos: -23.5,-24.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9894 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7876 @@ -46931,9 +46322,8 @@ entities: pos: -34.5,-23.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10122 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7884 @@ -46942,9 +46332,8 @@ entities: pos: -33.5,-28.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10122 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7885 @@ -46952,9 +46341,8 @@ entities: - pos: -28.5,-20.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10122 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7890 @@ -46963,9 +46351,8 @@ entities: pos: -34.5,-18.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10122 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7897 @@ -46974,6 +46361,8 @@ entities: pos: -32.5,-14.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7898 @@ -46982,6 +46371,8 @@ entities: pos: -32.5,-10.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7908 @@ -46990,6 +46381,8 @@ entities: pos: -40.5,-10.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7913 @@ -46998,6 +46391,8 @@ entities: pos: -40.5,-15.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7927 @@ -47006,9 +46401,8 @@ entities: pos: -47.5,-13.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9956 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7929 @@ -47017,9 +46411,8 @@ entities: pos: -51.5,-8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9952 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7930 @@ -47028,9 +46421,8 @@ entities: pos: -40.5,-5.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9952 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7933 @@ -47038,6 +46430,8 @@ entities: - pos: -39.5,-1.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7951 @@ -47046,9 +46440,8 @@ entities: pos: -32.5,0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9943 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7952 @@ -47057,9 +46450,8 @@ entities: pos: -29.5,0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9943 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7955 @@ -47068,9 +46460,8 @@ entities: pos: -21.5,-0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9943 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7963 @@ -47079,9 +46470,8 @@ entities: pos: -21.5,3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9932 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7967 @@ -47089,9 +46479,8 @@ entities: - pos: -23.5,8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9927 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7977 @@ -47100,9 +46489,8 @@ entities: pos: -30.5,4.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9932 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7978 @@ -47111,6 +46499,8 @@ entities: pos: -37.5,5.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7979 @@ -47118,6 +46508,8 @@ entities: - pos: -37.5,12.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 7981 @@ -47126,9 +46518,8 @@ entities: pos: -29.5,9.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9932 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8007 @@ -47136,10 +46527,8 @@ entities: - pos: -43.5,12.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9946 - - 9952 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8010 @@ -47148,10 +46537,8 @@ entities: pos: -44.5,8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9946 - - 9952 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8011 @@ -47160,10 +46547,8 @@ entities: pos: -47.5,8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9946 - - 9952 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8021 @@ -47171,6 +46556,8 @@ entities: - pos: -52.5,12.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8022 @@ -47179,6 +46566,8 @@ entities: pos: -53.5,8.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8045 @@ -47186,6 +46575,8 @@ entities: - pos: -36.5,20.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8046 @@ -47193,6 +46584,8 @@ entities: - pos: -33.5,20.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8047 @@ -47200,6 +46593,8 @@ entities: - pos: -30.5,20.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8048 @@ -47207,6 +46602,8 @@ entities: - pos: -27.5,20.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8058 @@ -47215,6 +46612,8 @@ entities: pos: -30.5,15.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8059 @@ -47223,6 +46622,8 @@ entities: pos: -36.5,16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8062 @@ -47231,9 +46632,8 @@ entities: pos: -23.5,16.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9927 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8078 @@ -47241,9 +46641,8 @@ entities: - pos: -19.5,18.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9927 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8090 @@ -47252,9 +46651,8 @@ entities: pos: -18.5,11.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9927 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8095 @@ -47262,6 +46660,8 @@ entities: - pos: -13.5,-27.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8108 @@ -47270,6 +46670,8 @@ entities: pos: 12.5,-22.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8111 @@ -47278,6 +46680,8 @@ entities: pos: 7.5,-29.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8113 @@ -47285,9 +46689,8 @@ entities: - pos: 0.5,-26.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9891 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8117 @@ -47295,9 +46698,8 @@ entities: - pos: 5.5,-26.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9891 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8118 @@ -47305,6 +46707,8 @@ entities: - pos: 42.5,-5.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8144 @@ -47313,9 +46717,8 @@ entities: pos: 45.5,-11.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9961 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8149 @@ -47323,9 +46726,8 @@ entities: - pos: 49.5,-7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9961 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8151 @@ -47334,6 +46736,8 @@ entities: pos: 45.5,-1.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8152 @@ -47342,6 +46746,8 @@ entities: pos: 49.5,0.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8157 @@ -47350,9 +46756,8 @@ entities: pos: 25.5,-24.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 2603 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8409 @@ -47361,9 +46766,8 @@ entities: pos: -24.5,19.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9927 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8714 @@ -47372,6 +46776,8 @@ entities: pos: -12.5,-22.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8952 @@ -47380,6 +46786,8 @@ entities: pos: -50.5,-20.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8967 @@ -47388,9 +46796,8 @@ entities: pos: -31.5,-5.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9915 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8969 @@ -47399,9 +46806,8 @@ entities: pos: -14.5,-5.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9915 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 8970 @@ -47410,9 +46816,8 @@ entities: pos: -22.5,-5.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9915 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 9111 @@ -47421,6 +46826,8 @@ entities: pos: 13.5,28.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 9162 @@ -47429,6 +46836,8 @@ entities: pos: -50.5,-0.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 9166 @@ -47437,6 +46846,8 @@ entities: pos: -47.5,-0.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 9295 @@ -47445,9 +46856,8 @@ entities: pos: 33.5,-28.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9816 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 9297 @@ -47456,9 +46866,8 @@ entities: pos: 25.5,-28.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9813 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 9501 @@ -47466,9 +46875,8 @@ entities: - pos: 16.5,-16.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9788 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 10384 @@ -47477,6 +46885,8 @@ entities: pos: -34.5,13.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - uid: 10870 @@ -47485,6 +46895,8 @@ entities: pos: 14.5,20.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF8800FF' type: AtmosPipeColor - proto: GasVolumePump @@ -47495,6 +46907,8 @@ entities: pos: 21.5,16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#00AAFFFF' type: AtmosPipeColor - uid: 1959 @@ -47502,6 +46916,8 @@ entities: - pos: 19.5,16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#00AAFFFF' type: AtmosPipeColor - uid: 1995 @@ -47509,6 +46925,8 @@ entities: - pos: 25.5,14.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF6600FF' type: AtmosPipeColor - uid: 1999 @@ -47517,6 +46935,8 @@ entities: pos: 22.5,12.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#00AAFFFF' type: AtmosPipeColor - uid: 2028 @@ -47525,6 +46945,8 @@ entities: pos: 26.5,12.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF6600FF' type: AtmosPipeColor - proto: Gauze @@ -49126,6 +48548,11 @@ entities: - pos: -53.5,1.5 parent: 2 type: Transform + - uid: 8363 + components: + - pos: -0.5,15.5 + parent: 2 + type: Transform - uid: 8596 components: - pos: 48.5,-8.5 @@ -49267,6 +48694,16 @@ entities: - pos: -24.5,18.5 parent: 2 type: Transform + - uid: 9730 + components: + - pos: -33.5,27.5 + parent: 2 + type: Transform + - uid: 9742 + components: + - pos: -31.5,27.5 + parent: 2 + type: Transform - uid: 10878 components: - pos: -10.5,-35.5 @@ -49307,6 +48744,61 @@ entities: - pos: -33.5,-35.5 parent: 2 type: Transform + - uid: 11053 + components: + - pos: -32.5,27.5 + parent: 2 + type: Transform + - uid: 11055 + components: + - pos: -37.5,27.5 + parent: 2 + type: Transform + - uid: 11056 + components: + - pos: -27.5,27.5 + parent: 2 + type: Transform + - uid: 11070 + components: + - pos: -38.5,26.5 + parent: 2 + type: Transform + - uid: 11071 + components: + - pos: -26.5,26.5 + parent: 2 + type: Transform + - uid: 11074 + components: + - pos: -25.5,24.5 + parent: 2 + type: Transform + - uid: 11079 + components: + - pos: -21.5,24.5 + parent: 2 + type: Transform + - uid: 11080 + components: + - pos: -20.5,23.5 + parent: 2 + type: Transform + - uid: 11081 + components: + - pos: -20.5,22.5 + parent: 2 + type: Transform + - uid: 11082 + components: + - pos: -38.5,23.5 + parent: 2 + type: Transform + - uid: 11083 + components: + - pos: -32.5,23.5 + parent: 2 + type: Transform - proto: GrilleSpawner entities: - uid: 3640 @@ -49594,6 +49086,101 @@ entities: - pos: 15.5,32.5 parent: 2 type: Transform + - uid: 11057 + components: + - pos: -36.5,27.5 + parent: 2 + type: Transform + - uid: 11058 + components: + - pos: -35.5,27.5 + parent: 2 + type: Transform + - uid: 11059 + components: + - pos: -34.5,27.5 + parent: 2 + type: Transform + - uid: 11060 + components: + - pos: -30.5,27.5 + parent: 2 + type: Transform + - uid: 11061 + components: + - pos: -29.5,27.5 + parent: 2 + type: Transform + - uid: 11062 + components: + - pos: -28.5,27.5 + parent: 2 + type: Transform + - uid: 11063 + components: + - pos: -39.5,24.5 + parent: 2 + type: Transform + - uid: 11064 + components: + - pos: -40.5,24.5 + parent: 2 + type: Transform + - uid: 11065 + components: + - pos: -41.5,24.5 + parent: 2 + type: Transform + - uid: 11066 + components: + - pos: -42.5,24.5 + parent: 2 + type: Transform + - uid: 11067 + components: + - pos: -43.5,24.5 + parent: 2 + type: Transform + - uid: 11072 + components: + - pos: -26.5,25.5 + parent: 2 + type: Transform + - uid: 11073 + components: + - pos: -38.5,25.5 + parent: 2 + type: Transform + - uid: 11076 + components: + - pos: -24.5,24.5 + parent: 2 + type: Transform + - uid: 11077 + components: + - pos: -23.5,24.5 + parent: 2 + type: Transform + - uid: 11078 + components: + - pos: -22.5,24.5 + parent: 2 + type: Transform + - uid: 11084 + components: + - pos: -32.5,24.5 + parent: 2 + type: Transform + - uid: 11085 + components: + - pos: -32.5,25.5 + parent: 2 + type: Transform + - uid: 11086 + components: + - pos: -32.5,26.5 + parent: 2 + type: Transform - proto: GunSafePistolMk58 entities: - uid: 1081 @@ -49658,6 +49245,8 @@ entities: pos: 20.5,18.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#00AAFFFF' type: AtmosPipeColor - uid: 966 @@ -49666,6 +49255,8 @@ entities: pos: 20.5,19.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#00AAFFFF' type: AtmosPipeColor - uid: 2039 @@ -49673,6 +49264,8 @@ entities: - pos: 28.5,19.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF6600FF' type: AtmosPipeColor - uid: 2040 @@ -49680,6 +49273,8 @@ entities: - pos: 29.5,19.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF6600FF' type: AtmosPipeColor - uid: 10220 @@ -49688,6 +49283,8 @@ entities: pos: 20.5,20.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#00AAFFFF' type: AtmosPipeColor - proto: HighSecCommandLocked @@ -49773,16 +49370,16 @@ entities: type: Transform - proto: HydroponicsToolClippers entities: - - uid: 2904 + - uid: 1377 components: - - pos: -36.352306,15.338483 + - pos: -36.71838,15.610928 parent: 2 type: Transform - proto: HydroponicsToolMiniHoe entities: - - uid: 2906 + - uid: 1378 components: - - pos: -36.522217,15.541486 + - pos: -36.34338,15.725592 parent: 2 type: Transform - proto: hydroponicsTray @@ -49832,14 +49429,14 @@ entities: - pos: 13.5,-16.5 parent: 2 type: Transform - - uid: 2898 + - uid: 2899 components: - - pos: -38.5,15.5 + - pos: -37.5,15.5 parent: 2 type: Transform - - uid: 2899 + - uid: 2906 components: - - pos: -37.5,15.5 + - pos: -36.5,15.5 parent: 2 type: Transform - proto: IDComputerCircuitboard @@ -50073,6 +49670,14 @@ entities: pos: 20.5,26.5 parent: 2 type: Transform +- proto: JanitorialTrolley + entities: + - uid: 661 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 2 + type: Transform - proto: JetpackMiniFilled entities: - uid: 1881 @@ -50085,6 +49690,11 @@ entities: - pos: -14.597033,-29.527931 parent: 2 type: Transform + - uid: 10798 + components: + - pos: 44.450703,8.703886 + parent: 2 + type: Transform - proto: KalimbaInstrument entities: - uid: 850 @@ -50124,6 +49734,11 @@ entities: - pos: -39.5,16.5 parent: 2 type: Transform + - uid: 2911 + components: + - pos: -21.5,18.5 + parent: 2 + type: Transform - proto: KitchenReagentGrinder entities: - uid: 320 @@ -50136,6 +49751,11 @@ entities: - pos: -2.5,-16.5 parent: 2 type: Transform + - uid: 1368 + components: + - pos: -39.5,15.5 + parent: 2 + type: Transform - uid: 1399 components: - pos: -11.5,-12.5 @@ -50241,13 +49861,6 @@ entities: - pos: 1.7242026,-29.565796 parent: 2 type: Transform -- proto: LightReplacer - entities: - - uid: 1388 - components: - - pos: -13.671011,-1.4744892 - parent: 2 - type: Transform - proto: LockerAtmosphericsFilledHardsuit entities: - uid: 10896 @@ -50304,6 +49917,13 @@ entities: - pos: 37.25989,-20.5 parent: 2 type: Transform +- proto: LockerClown + entities: + - uid: 4201 + components: + - pos: -1.5,-28.5 + parent: 2 + type: Transform - proto: LockerDetectiveFilled entities: - uid: 490 @@ -50364,6 +49984,13 @@ entities: - pos: -35.5,-19.5 parent: 2 type: Transform +- proto: LockerFreezerVaultFilled + entities: + - uid: 11106 + components: + - pos: 50.5,-10.5 + parent: 2 + type: Transform - proto: LockerHeadOfPersonnelFilled entities: - uid: 4069 @@ -50400,6 +50027,13 @@ entities: - pos: 37.5,-8.5 parent: 2 type: Transform +- proto: LockerMime + entities: + - uid: 11101 + components: + - pos: -3.5,-26.5 + parent: 2 + type: Transform - proto: LockerParamedicFilled entities: - uid: 2206 @@ -50610,11 +50244,6 @@ entities: - pos: 40.5,-10.5 parent: 2 type: Transform - - uid: 10294 - components: - - pos: 41.5,-16.5 - parent: 2 - type: Transform - uid: 10298 components: - pos: -40.5,19.5 @@ -50660,6 +50289,11 @@ entities: - pos: 54.5,-5.5 parent: 2 type: Transform + - uid: 11048 + components: + - pos: 40.5,-14.5 + parent: 2 + type: Transform - proto: MaintenancePlantSpawner entities: - uid: 2008 @@ -50841,6 +50475,13 @@ entities: - pos: -11.5,0.5 parent: 2 type: Transform +- proto: MedalCase + entities: + - uid: 10228 + components: + - pos: 1.3134761,-4.921255 + parent: 2 + type: Transform - proto: MedicalBed entities: - uid: 1122 @@ -50987,6 +50628,13 @@ entities: - pos: 28.664162,-13.444225 parent: 2 type: Transform +- proto: MicrowaveMachineCircuitboard + entities: + - uid: 578 + components: + - pos: 14.507227,-20.416985 + parent: 2 + type: Transform - proto: MinimoogInstrument entities: - uid: 333 @@ -51012,14 +50660,9 @@ entities: type: Transform - proto: MopBucketFull entities: - - uid: 1373 - components: - - pos: -11.619304,-2.5068288 - parent: 2 - type: Transform - - uid: 1374 + - uid: 1388 components: - - pos: -11.275554,-2.0481763 + - pos: -10.712365,-2.1862 parent: 2 type: Transform - uid: 10065 @@ -51029,21 +50672,6 @@ entities: type: Transform - proto: MopItem entities: - - uid: 661 - components: - - pos: -13.713254,-2.4941702 - parent: 2 - type: Transform - - uid: 662 - components: - - pos: 14.668055,-9.521283 - parent: 2 - type: Transform - - uid: 1377 - components: - - pos: -13.338254,-2.4941702 - parent: 2 - type: Transform - uid: 10064 components: - pos: -38.551044,18.852169 @@ -51112,6 +50740,8 @@ entities: - pos: -18.5,-29.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: NitrousOxideCanister entities: - uid: 1320 @@ -51119,6 +50749,8 @@ entities: - pos: -44.5,13.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: NuclearBombUnanchored entities: - uid: 2349 @@ -51166,46 +50798,64 @@ entities: - pos: 31.5,11.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 3084 components: - pos: 31.5,12.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 3091 components: - pos: 20.5,13.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 3258 components: - pos: 26.5,13.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 3382 components: - pos: -17.5,-29.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 4209 components: - pos: 34.5,15.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 5384 components: - pos: -43.5,19.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 10212 components: - pos: 42.5,-18.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 10232 components: - pos: 40.5,15.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: PaintingBlunt entities: - uid: 4633 @@ -51358,6 +51008,27 @@ entities: - pos: -14.679,-26.60409 parent: 2 type: Transform +- proto: PillCanisterDylovene + entities: + - uid: 11051 + components: + - pos: -25.163912,20.668972 + parent: 2 + type: Transform +- proto: PillCanisterHyronalin + entities: + - uid: 11050 + components: + - pos: -25.300356,20.85865 + parent: 2 + type: Transform +- proto: PillCanisterTricordrazine + entities: + - uid: 1374 + components: + - pos: 28.079897,-11.371667 + parent: 2 + type: Transform - proto: PillMindbreakerToxin entities: - uid: 3847 @@ -51365,6 +51036,13 @@ entities: - pos: -34.321957,-19.300413 parent: 2 type: Transform +- proto: PinpointerNuclear + entities: + - uid: 11107 + components: + - pos: 1.4500225,-4.7739863 + parent: 2 + type: Transform - proto: PlasmaCanister entities: - uid: 1578 @@ -51372,16 +51050,29 @@ entities: - pos: 33.5,15.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 2174 components: - pos: 31.5,13.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 2914 components: - pos: 26.5,14.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice +- proto: PlasmaTankFilled + entities: + - uid: 808 + components: + - pos: -20.238703,-8.822453 + parent: 2 + type: Transform - proto: PlasticFlapsAirtightClear entities: - uid: 306 @@ -51723,11 +51414,6 @@ entities: type: Transform - proto: PottedPlantRandomPlastic entities: - - uid: 2707 - components: - - pos: -21.5,18.5 - parent: 2 - type: Transform - uid: 3253 components: - pos: 33.5,11.5 @@ -51768,6 +51454,16 @@ entities: - pos: 19.5,-7.5 parent: 2 type: Transform + - uid: 11039 + components: + - pos: -34.5,5.5 + parent: 2 + type: Transform + - uid: 11041 + components: + - pos: -23.5,17.5 + parent: 2 + type: Transform - proto: PottedPlantRD entities: - uid: 3469 @@ -51787,11 +51483,6 @@ entities: - pos: 27.5,-13.5 parent: 2 type: Transform - - uid: 2911 - components: - - pos: -21.5,7.5 - parent: 2 - type: Transform - uid: 9529 components: - pos: 17.5,1.5 @@ -51807,6 +51498,11 @@ entities: - pos: -18.5,-31.5 parent: 2 type: Transform + - uid: 11034 + components: + - pos: -32.5,7.5 + parent: 2 + type: Transform - proto: Poweredlight entities: - uid: 938 @@ -53109,12 +52805,11 @@ entities: - pos: 23.5,30.5 parent: 2 type: Transform - - uid: 9742 + - uid: 11096 components: - - pos: 28.5,23.5 + - pos: 29.5,23.5 parent: 2 type: Transform - - type: Timer - proto: PoweredSmallLight entities: - uid: 629 @@ -53521,11 +53216,6 @@ entities: - pos: -29.5,7.5 parent: 2 type: Transform - - uid: 381 - components: - - pos: 14.5,-9.5 - parent: 2 - type: Transform - uid: 609 components: - rot: -1.5707963267948966 rad @@ -53597,16 +53287,6 @@ entities: - pos: -42.5,11.5 parent: 2 type: Transform - - uid: 1368 - components: - - pos: -13.5,-2.5 - parent: 2 - type: Transform - - uid: 1369 - components: - - pos: -13.5,-1.5 - parent: 2 - type: Transform - uid: 1405 components: - pos: -41.5,11.5 @@ -53680,11 +53360,6 @@ entities: - pos: -24.5,17.5 parent: 2 type: Transform - - uid: 2901 - components: - - pos: -36.5,15.5 - parent: 2 - type: Transform - uid: 2946 components: - pos: 32.5,20.5 @@ -53771,9 +53446,9 @@ entities: - pos: 33.5,9.5 parent: 2 type: Transform - - uid: 10228 + - uid: 10898 components: - - pos: 18.5,9.5 + - pos: 44.5,8.5 parent: 2 type: Transform - proto: RadioHandheld @@ -54114,6 +53789,21 @@ entities: type: Transform - proto: RandomPosterLegit entities: + - uid: 1387 + components: + - pos: -21.5,-26.5 + parent: 2 + type: Transform + - uid: 1389 + components: + - pos: -17.5,-17.5 + parent: 2 + type: Transform + - uid: 2898 + components: + - pos: -26.5,-25.5 + parent: 2 + type: Transform - uid: 10240 components: - pos: 9.5,-13.5 @@ -54219,6 +53909,11 @@ entities: - pos: 43.5,-14.5 parent: 2 type: Transform + - uid: 10294 + components: + - pos: -22.5,-15.5 + parent: 2 + type: Transform - uid: 10323 components: - pos: -12.5,-13.5 @@ -54359,6 +54054,11 @@ entities: - pos: -11.5,-33.5 parent: 2 type: Transform + - uid: 11042 + components: + - pos: -36.5,-23.5 + parent: 2 + type: Transform - proto: RandomSnacks entities: - uid: 2873 @@ -54378,6 +54078,26 @@ entities: type: Transform - proto: RandomSpawner entities: + - uid: 803 + components: + - pos: -23.5,-2.5 + parent: 2 + type: Transform + - uid: 1386 + components: + - pos: -20.5,0.5 + parent: 2 + type: Transform + - uid: 2901 + components: + - pos: -18.5,-2.5 + parent: 2 + type: Transform + - uid: 9482 + components: + - pos: -20.5,-2.5 + parent: 2 + type: Transform - uid: 9701 components: - pos: -16.5,-13.5 @@ -54845,17 +54565,12 @@ entities: type: Transform - uid: 9727 components: - - pos: -26.5,28.5 + - pos: 12.5,34.5 parent: 2 type: Transform - uid: 9729 components: - - pos: -32.5,27.5 - parent: 2 - type: Transform - - uid: 9730 - components: - - pos: -38.5,28.5 + - pos: -26.5,27.5 parent: 2 type: Transform - uid: 9759 @@ -54908,6 +54623,76 @@ entities: - pos: -1.5,-36.5 parent: 2 type: Transform + - uid: 11052 + components: + - pos: -38.5,27.5 + parent: 2 + type: Transform + - uid: 11054 + components: + - pos: -32.5,28.5 + parent: 2 + type: Transform + - uid: 11068 + components: + - pos: -38.5,24.5 + parent: 2 + type: Transform + - uid: 11069 + components: + - pos: -26.5,24.5 + parent: 2 + type: Transform + - uid: 11075 + components: + - pos: -20.5,24.5 + parent: 2 + type: Transform + - uid: 11087 + components: + - pos: -13.5,-36.5 + parent: 2 + type: Transform + - uid: 11088 + components: + - pos: -17.5,-36.5 + parent: 2 + type: Transform + - uid: 11089 + components: + - pos: -19.5,-36.5 + parent: 2 + type: Transform + - uid: 11090 + components: + - pos: -3.5,-36.5 + parent: 2 + type: Transform + - uid: 11091 + components: + - pos: 4.5,-35.5 + parent: 2 + type: Transform + - uid: 11092 + components: + - pos: 16.5,-37.5 + parent: 2 + type: Transform + - uid: 11093 + components: + - pos: 23.5,24.5 + parent: 2 + type: Transform + - uid: 11094 + components: + - pos: 26.5,24.5 + parent: 2 + type: Transform + - uid: 11095 + components: + - pos: 29.5,24.5 + parent: 2 + type: Transform - proto: ReinforcedPlasmaWindow entities: - uid: 718 @@ -56136,11 +55921,6 @@ entities: - pos: -47.609417,7.24538 parent: 2 type: Transform - - uid: 8363 - components: - - pos: -12.5785,0.4221762 - parent: 2 - type: Transform - proto: SecBreachingHammer entities: - uid: 3299 @@ -57633,6 +57413,14 @@ entities: pos: -10.5,-23.5 parent: 2 type: Transform +- proto: SpareIdCabinet + entities: + - uid: 11105 + components: + - rot: 3.141592653589793 rad + pos: 48.5,-13.5 + parent: 2 + type: Transform - proto: SpawnMobBee entities: - uid: 9233 @@ -57974,11 +57762,6 @@ entities: - pos: 12.5,-17.5 parent: 2 type: Transform - - uid: 9966 - components: - - pos: 14.5,-19.5 - parent: 2 - type: Transform - uid: 9967 components: - pos: 16.5,-17.5 @@ -58469,6 +58252,13 @@ entities: - pos: -33.5,8.5 parent: 2 type: Transform +- proto: SpawnVehicleSecway + entities: + - uid: 11038 + components: + - pos: -34.5,6.5 + parent: 2 + type: Transform - proto: SpeedLoaderSpecial entities: - uid: 2666 @@ -58488,9 +58278,9 @@ entities: - pos: -12.820137,0.6810938 parent: 2 type: Transform - - uid: 1382 + - uid: 2938 components: - - pos: -12.611803,0.85830045 + - pos: -12.673379,0.5017892 parent: 2 type: Transform - uid: 9602 @@ -58700,21 +58490,29 @@ entities: - pos: 16.5,9.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 3260 components: - pos: 16.5,10.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 4623 components: - pos: 17.5,3.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 8921 components: - pos: -24.5,-12.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: Stunbaton entities: - uid: 10805 @@ -59895,6 +59693,11 @@ entities: pos: -0.5,19.5 parent: 2 type: Transform + - uid: 1382 + components: + - pos: -38.5,15.5 + parent: 2 + type: Transform - uid: 1806 components: - pos: 9.5,22.5 @@ -60195,6 +59998,11 @@ entities: - pos: -45.5,21.5 parent: 2 type: Transform + - uid: 10229 + components: + - pos: -21.5,18.5 + parent: 2 + type: Transform - uid: 10335 components: - pos: -28.5,10.5 @@ -60865,6 +60673,8 @@ entities: pos: 24.5,13.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: TegCirculator entities: - uid: 1992 @@ -61324,17 +61134,17 @@ entities: type: Transform - uid: 4200 components: - - pos: -1.5,-28.5 + - pos: -3.5,-27.5 parent: 2 type: Transform - - uid: 4201 + - uid: 8971 components: - - pos: -3.5,-26.5 + - pos: -29.5,-14.5 parent: 2 type: Transform - - uid: 8971 + - uid: 9966 components: - - pos: -29.5,-14.5 + - pos: -2.5,-28.5 parent: 2 type: Transform - uid: 10871 @@ -61352,6 +61162,8 @@ entities: - pos: -6.5,-26.5 parent: 2 type: Transform + - chance: 1 + type: RandomSpawner - uid: 10874 components: - pos: -8.5,-27.5 @@ -61369,13 +61181,6 @@ entities: - pos: -49.5,4.5 parent: 2 type: Transform -- proto: TrashBag - entities: - - uid: 1387 - components: - - pos: -12.348348,0.5902637 - parent: 2 - type: Transform - proto: TwoWayLever entities: - uid: 4151 @@ -61434,6 +61239,13 @@ entities: - pos: 15.660138,-20.218388 parent: 2 type: Transform +- proto: VehicleKeySecway + entities: + - uid: 11040 + components: + - pos: -21.572384,7.7102075 + parent: 2 + type: Transform - proto: VendingBarDrobe entities: - uid: 548 @@ -61762,9 +61574,9 @@ entities: type: Transform - proto: VendingMachineTankDispenserEngineering entities: - - uid: 10898 + - uid: 9616 components: - - pos: 44.5,8.5 + - pos: 17.5,8.5 parent: 2 type: Transform - proto: VendingMachineTankDispenserEVA @@ -61810,6 +61622,11 @@ entities: - pos: 10.5,-8.5 parent: 2 type: Transform + - uid: 11029 + components: + - pos: 26.5,3.5 + parent: 2 + type: Transform - proto: WallmountTelevision entities: - uid: 3732 @@ -67409,11 +67226,6 @@ entities: - pos: -19.5,1.5 parent: 2 type: Transform - - uid: 1109 - components: - - pos: -0.5,15.5 - parent: 2 - type: Transform - uid: 1113 components: - pos: -17.5,-2.5 @@ -69197,29 +69009,14 @@ entities: type: Transform - proto: WetFloorSign entities: - - uid: 665 - components: - - pos: 14.43368,-9.239837 - parent: 2 - type: Transform - - uid: 666 - components: - - pos: 14.65243,-9.208566 - parent: 2 - type: Transform - - uid: 1376 + - uid: 10066 components: - - pos: -13.176681,-2.2839673 + - pos: -38.207294,18.445639 parent: 2 type: Transform - - uid: 1378 + - uid: 11103 components: - - pos: -13.582931,-2.26312 - parent: 2 - type: Transform - - uid: 10066 - components: - - pos: -38.207294,18.445639 + - pos: 12.80534,-8.106109 parent: 2 type: Transform - proto: WindoorCargoLocked @@ -69311,20 +69108,6 @@ entities: - pos: -42.5,6.5 parent: 2 type: Transform -- proto: WindoorSecureBrigLocked - entities: - - uid: 1911 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-0.5 - parent: 2 - type: Transform - - uid: 1915 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,0.5 - parent: 2 - type: Transform - proto: WindoorSecureCargoLocked entities: - uid: 1879 @@ -69414,6 +69197,20 @@ entities: - pos: -29.5,-16.5 parent: 2 type: Transform +- proto: WindoorSecureSecurityLawyerLocked + entities: + - uid: 1911 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-0.5 + parent: 2 + type: Transform + - uid: 1915 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,0.5 + parent: 2 + type: Transform - proto: WindoorSecureSecurityLocked entities: - uid: 356 @@ -69716,6 +69513,11 @@ entities: - pos: -6.5,-20.5 parent: 2 type: Transform + - uid: 1376 + components: + - pos: -0.5,15.5 + parent: 2 + type: Transform - uid: 1468 components: - pos: -49.5,-9.5 diff --git a/Resources/Maps/centcomm.yml b/Resources/Maps/centcomm.yml index d69c65b058..7f54de52e5 100644 --- a/Resources/Maps/centcomm.yml +++ b/Resources/Maps/centcomm.yml @@ -1,43550 +1,42255 @@ -meta: - format: 5 - postmapinit: false -tilemap: - 0: Space - 10: FloorAsteroidSand - 12: FloorBar - 15: FloorBlueCircuit - 23: FloorDark - 32: FloorDarkPlastic - 41: FloorGrass - 45: FloorGreenCircuit - 50: FloorKitchen - 51: FloorLaundry - 52: FloorLino - 61: FloorReinforced - 72: FloorSteel - 84: FloorTechMaint - 87: FloorWhite - 97: FloorWood - 99: Lattice - 100: Plating -entities: -- proto: "" - entities: - - uid: 1668 - components: - - name: Central Command - type: MetaData - - parent: invalid - type: Transform - - chunks: - -1,-1: - ind: -1,-1 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAJIAAACZAAAADMAAAAzAAAAMwAAAEgAAAFIAAADSAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAMAAAAAAAAAAGMAAABjAAAAAAAAAAAAAABkAAAACgAAAGQAAAAXAAABFwAAAhcAAAFkAAAASAAAAUgAAAFIAAADAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAFwAAAxcAAAMXAAABZAAAAEgAAAFIAAADSAAAAwAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGQAAAAXAAACFwAAARcAAAAXAAABFwAAA2QAAABIAAABSAAAAUgAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAAAFwAAARcAAAJkAAAASAAAAUgAAAFIAAADSAAAAUgAAABIAAABSAAAA0gAAANIAAABZAAAAAoAAABkAAAAFwAAABcAAAMXAAACZAAAAEgAAAFIAAAASAAAABcAAAEXAAAAFwAAAxcAAAAXAAADFwAAAWQAAABkAAAAZAAAAGQAAAAXAAACZAAAAGQAAABkAAAAZAAAABcAAAIXAAACFwAAAxcAAAEXAAACFwAAARcAAABkAAAAKQAAACkAAABkAAAAFwAAAWQAAAApAAAAZAAAABcAAAEXAAADFwAAAhcAAAAXAAAAFwAAABcAAAIXAAADZAAAAGQAAABkAAAAZAAAABcAAANkAAAAZAAAAGQAAABkAAAAFwAAARcAAAMXAAADFwAAARcAAAAXAAABFwAAAWQAAAApAAAAZAAAAEgAAANIAAADSAAAAUgAAAJIAAAASAAAAkgAAAEXAAADFwAAARcAAAAXAAABFwAAAhcAAAFkAAAAKQAAAGQAAABIAAAASAAAAkgAAAFIAAAASAAAAkgAAAFIAAADSAAAAEgAAABIAAACSAAAA0gAAAFIAAAAZAAAAGQAAABkAAAASAAAAkgAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAADZAAAAEgAAAFIAAAAZAAAABcAAABhAAADNAAAADQAAABIAAACSAAAAkgAAANIAAACSAAAAUgAAAEXAAADFwAAAhcAAAFIAAAASAAAAmQAAAAXAAADYQAAAzQAAAA0AAAASAAAAkgAAAFIAAABSAAAAkgAAANIAAAAZAAAABcAAAJkAAAASAAAA0gAAAFkAAAAFwAAAWEAAAM0AAAANAAAAA== - 0,-1: - ind: 0,-1 - tiles: SAAAAUgAAAMXAAABFwAAAxcAAAFkAAAASAAAA0gAAAJkAAAAZAAAAGQAAABkAAAAFwAAARcAAAJkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAANIAAADSAAAAEgAAAAXAAADZAAAAGQAAABIAAADSAAAAmQAAAAXAAABFwAAAhcAAAJkAAAACgAAAGQAAAAXAAADSAAAAkgAAAJIAAADFwAAAmQAAABkAAAASAAAAEgAAAFkAAAAFwAAABcAAAEXAAABZAAAAGQAAABkAAAAFwAAAUgAAAJIAAADSAAAABcAAABkAAAAZAAAAEgAAABIAAACZAAAABcAAAAXAAAAFwAAABcAAAAXAAACFwAAAxcAAAAXAAADFwAAARcAAAIXAAACFwAAAxcAAABIAAADSAAAAmQAAAAXAAABFwAAAhcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAA0gAAAJkAAAAFwAAABcAAAIXAAACZAAAAAoAAABkAAAACgAAAAoAAAAKAAAAZAAAAAoAAAAKAAAACgAAAGQAAABkAAAAZAAAAGQAAAAXAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAACZAAAACkAAABkAAAAFwAAAGQAAAApAAAAKQAAAGQAAABXAAADSAAAAEgAAAFIAAACSAAAA0gAAAFXAAABZAAAAGQAAABkAAAAZAAAABcAAANkAAAAZAAAAGQAAABkAAAAVwAAA0gAAANIAAABSAAAAEgAAAFIAAACVwAAAEgAAAFIAAAASAAAA0gAAABIAAAASAAAAmQAAAApAAAAZAAAAFcAAAJIAAADSAAAAUgAAANIAAADSAAAAlcAAABIAAABSAAAA0gAAAFIAAADSAAAAkgAAAJkAAAAKQAAAGQAAABXAAACVwAAAVcAAAFXAAAAVwAAAVcAAANXAAAAZAAAAGQAAABkAAAAZAAAAEgAAAFIAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAmQAAABXAAADZAAAADQAAABhAAAAFwAAAGQAAABIAAAASAAAAGQAAAAXAAACZAAAAEgAAANIAAACSAAAAkgAAANIAAAASAAAAUgAAAA0AAAAYQAAABcAAANkAAAASAAAAEgAAAEXAAAAFwAAABcAAAFIAAABSAAAA0gAAABIAAACSAAAAEgAAANIAAAANAAAAGEAAAEXAAADZAAAAEgAAAJIAAABZAAAABcAAAJkAAAASAAAAUgAAANIAAABSAAAAEgAAABIAAABSAAAAg== - -1,0: - ind: -1,0 - tiles: SAAAAkgAAABIAAABSAAAA0gAAANIAAAAFwAAAxcAAAAXAAADSAAAAEgAAAMXAAADFwAAARcAAAAXAAADFwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAABZAAAAEgAAAFIAAABZAAAABcAAAMXAAADFwAAARcAAAMpAAAAKQAAAGQAAAApAAAAKQAAACkAAABkAAAAZAAAAGQAAABIAAABSAAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAACkAAABkAAAASAAAAkgAAABIAAACSAAAAkgAAABIAAABSAAAAmQAAABkAAAAZAAAABcAAAIXAAAAFwAAAGQAAAApAAAAZAAAAEgAAAFIAAADSAAAAkgAAANIAAABSAAAA0gAAAEXAAACFwAAARcAAAAXAAADFwAAABcAAAFkAAAAZAAAAGQAAABkAAAAFwAAAWQAAABkAAAAZAAAAGQAAAAXAAADFwAAAWQAAABkAAAAFwAAABcAAAIXAAACZAAAAAoAAAAKAAAAZAAAABcAAAJkAAAACgAAAGQAAAAXAAADFwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAADZAAAAGQAAABkAAAAZAAAABcAAAAXAAABFwAAAmQAAAAXAAACFwAAAhcAAAEXAAADFwAAARcAAAMXAAACFwAAAmQAAABIAAAASAAAAUgAAAFIAAADNAAAABcAAAJkAAAAFwAAAEgAAAFIAAADSAAAAEgAAAFIAAABSAAAABcAAABkAAAASAAAAkgAAAJIAAACSAAAAzQAAAAXAAABZAAAABcAAAFIAAADSAAAAEgAAABIAAABSAAAAEgAAAAXAAACZAAAAEgAAABIAAACSAAAAEgAAAM0AAAAFwAAA2QAAAAXAAABSAAAAEgAAANIAAABSAAAAkgAAAJIAAAAFwAAAWQAAABIAAAASAAAAEgAAAFIAAACFwAAARcAAAJkAAAAFwAAABcAAAEXAAADFwAAARcAAAMXAAAAFwAAARcAAABkAAAASAAAAkgAAANIAAAASAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAA2QAAABkAAAAZAAAAEgAAAFkAAAAZAAAAEgAAABIAAAASAAAAkgAAAMXAAAAFwAAABcAAAEXAAACFwAAAxcAAAAXAAABZAAAAEgAAAJIAAADSAAAAWQAAABIAAABSAAAA0gAAAJIAAADFwAAA0gAAAJIAAAASAAAAUgAAANIAAABFwAAAEgAAAJIAAADSAAAAUgAAANIAAAASAAAAkgAAANIAAAASAAAAg== - 0,0: - ind: 0,0 - tiles: FwAAARcAAAMXAAACFwAAA0gAAAJIAAACFwAAARcAAAEXAAAASAAAAEgAAANIAAAASAAAA0gAAAFIAAADSAAAAhcAAAAXAAAAFwAAAWQAAABIAAAASAAAAWQAAAAXAAABZAAAAEgAAABIAAAASAAAAUgAAANIAAACSAAAA0gAAAJkAAAAZAAAAGQAAABkAAAASAAAAEgAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAA0gAAANIAAADSAAAAUgAAABIAAABFwAAAhcAAAIXAAACFwAAAhcAAAMXAAADFwAAAxcAAAEXAAACFwAAAUgAAAJIAAACSAAAAkgAAAFIAAADSAAAAmQAAABkAAAAZAAAABcAAAMXAAABFwAAAxcAAAAXAAABFwAAAxcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAKQAAAGQAAAAXAAADFwAAABcAAAIXAAADFwAAAxcAAAEXAAABFwAAAGQAAAApAAAAZAAAACkAAABkAAAAKQAAACkAAABkAAAAFwAAABcAAAEXAAADFwAAABcAAAAXAAAAFwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAADSAAAAUgAAAFkAAAAKQAAAGQAAAAKAAAACgAAAGQAAAAKAAAACgAAAAoAAABkAAAACgAAAAoAAABkAAAASAAAAEgAAAJIAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAJIAAACSAAAAGQAAAAXAAAAZAAAAEgAAABIAAAASAAAAkgAAABIAAADSAAAAkgAAANIAAADSAAAAGQAAABIAAABSAAAAUgAAAAXAAACFwAAABcAAAJIAAABSAAAA0gAAABIAAADSAAAAEgAAANIAAADSAAAAUgAAAAXAAABSAAAA0gAAAFIAAACZAAAABcAAANkAAAASAAAAUgAAABIAAAASAAAAUgAAANIAAABSAAAAUgAAAJIAAADZAAAAEgAAAJIAAAASAAAARcAAAAXAAAAFwAAA0gAAANIAAADSAAAAkgAAAFIAAACSAAAAUgAAAJIAAABSAAAARcAAABIAAACSAAAAEgAAAFkAAAAFwAAA2QAAABIAAACSAAAAUgAAAJIAAACSAAAA0gAAAFIAAAASAAAA0gAAAJkAAAASAAAA0gAAAFIAAABZAAAAGQAAABkAAAASAAAAUgAAANIAAACSAAAAUgAAABIAAACSAAAAUgAAAFIAAABZAAAAA== - 1,-1: - ind: 1,-1 - tiles: VAAAAFQAAABkAAAASAAAA0gAAABIAAAAZAAAAEgAAAFIAAACSAAAAEgAAANIAAAASAAAAmQAAABIAAABSAAAAGQAAAAXAAABZAAAAEgAAAFIAAABSAAAA0gAAANIAAAASAAAAUgAAANIAAACSAAAA0gAAANkAAAAZAAAAGQAAABkAAAAFwAAAGQAAABIAAADSAAAAUgAAAJIAAADSAAAAEgAAANIAAABSAAAAEgAAAJIAAABZAAAABcAAAEXAAAAZAAAABcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAACFwAAAxcAAAIXAAABFwAAAxcAAAAXAAAAFwAAAxcAAAIXAAABFwAAABcAAAAXAAACFwAAAxcAAAJkAAAAFwAAARcAAANkAAAAFwAAAWQAAAAXAAACFwAAAxcAAAMXAAABZAAAABcAAAEXAAACFwAAABcAAAAXAAADZAAAABcAAAAXAAACZAAAABcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAAAFwAAARcAAAAXAAADFwAAA2QAAABkAAAAZAAAAGQAAAAXAAACZAAAACkAAAApAAAAKQAAACkAAABkAAAAFwAAARcAAAEXAAAAFwAAARcAAAJkAAAAKQAAACkAAABkAAAAFwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAABcAAAEXAAADFwAAARcAAAEXAAADFwAAAhcAAAAXAAAAFwAAABcAAAAXAAACFwAAAhcAAAMXAAADFwAAAWQAAABkAAAAZAAAABcAAABIAAABSAAAAUgAAAFIAAAASAAAA0gAAABIAAACSAAAAkgAAABIAAAASAAAAEgAAAFkAAAACgAAAGQAAAAXAAACSAAAAEgAAABIAAACSAAAAkgAAANIAAABSAAAAkgAAAJIAAABSAAAAEgAAAJIAAACZAAAAGQAAABkAAAAFwAAA0gAAAJIAAAASAAAA0gAAABIAAACSAAAAkgAAABIAAADSAAAAUgAAANIAAADSAAAAmQAAAAXAAABZAAAABcAAABIAAACSAAAAUgAAANIAAABSAAAA0gAAABIAAABSAAAA0gAAAFIAAABSAAAAkgAAAMXAAADFwAAARcAAAEXAAADSAAAA0gAAANIAAACSAAAAkgAAAFIAAACSAAAAEgAAANIAAAASAAAAkgAAAFIAAACZAAAABcAAANkAAAAFwAAA0gAAABIAAACSAAAA0gAAANIAAAASAAAAkgAAANIAAAASAAAA0gAAABIAAADSAAAAQ== - 1,0: - ind: 1,0 - tiles: FwAAABcAAAAXAAAAFwAAAEgAAANIAAABSAAAAEgAAAFIAAAASAAAAkgAAAJIAAAASAAAA0gAAABIAAADSAAAAmQAAAAXAAADZAAAABcAAANIAAADSAAAA0gAAANIAAACSAAAA0gAAAJIAAABSAAAAUgAAANIAAADSAAAAUgAAANkAAAAZAAAAGQAAAAXAAABSAAAAkgAAAFIAAAASAAAAUgAAAFIAAADSAAAAUgAAABIAAAASAAAAEgAAAJIAAABZAAAAAoAAABkAAAAFwAAA0gAAAFIAAAASAAAA0gAAABIAAADSAAAAEgAAAFIAAABSAAAAUgAAAJIAAADSAAAAWQAAABkAAAAZAAAABcAAAFIAAADSAAAAkgAAAFIAAABSAAAAUgAAAFIAAADSAAAAUgAAAJIAAADSAAAAUgAAAEXAAAAFwAAAxcAAAIXAAACFwAAARcAAAMXAAABFwAAAhcAAAIXAAADFwAAAhcAAAMXAAABFwAAARcAAAEXAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAKQAAACkAAAApAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAKAAAAZAAAACkAAAApAAAAKQAAACkAAAApAAAAZAAAACkAAAApAAAAKQAAAGQAAAApAAAAKQAAACkAAAAKAAAACgAAAGQAAAApAAAAKQAAACkAAAApAAAAKQAAAGQAAAApAAAAKQAAACkAAABkAAAAKQAAACkAAAApAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAAMXAAACFwAAABcAAAAXAAADZAAAABcAAAAXAAADFwAAARcAAAMXAAAAFwAAAhcAAAMXAAACFwAAABcAAAMXAAAANAAAADQAAAA0AAAAFwAAARcAAAMXAAAAYQAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAAFwAAATQAAAA0AAAANAAAABcAAAMXAAADFwAAAmEAAAE0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAABcAAAE0AAAANAAAADQAAAAXAAADZAAAABcAAAAXAAABFwAAAhcAAAMXAAABFwAAABcAAAIXAAABFwAAABcAAAMXAAABNAAAADQAAAA0AAAAFwAAAWQAAAAXAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAADZAAAAGQAAABkAAAAFwAAATQAAAA0AAAANAAAABcAAAFkAAAAFwAAAhcAAABkAAAAYQAAAWEAAABhAAACYQAAA2EAAAJhAAAAYQAAAA== - 0,-2: - ind: 0,-2 - tiles: AAAAAGQAAABIAAADSAAAAkgAAABIAAAASAAAAkgAAANIAAABSAAAAEgAAANIAAABSAAAAUgAAAFkAAAAFwAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAA2QAAABkAAAASAAAA0gAAAFIAAAASAAAAUgAAANIAAAAFwAAABcAAAFhAAAAFwAAAxcAAAIXAAAADAAAAQwAAAIMAAADZAAAAGQAAABkAAAAZAAAAGQAAABIAAABSAAAA2QAAABUAAAAYQAAARcAAAEXAAACFwAAAwwAAAAMAAABFwAAABcAAAFhAAAAYQAAABcAAABkAAAASAAAAUgAAABkAAAAZAAAAAwAAAIMAAACDAAAAwwAAAEMAAABDAAAAxcAAAAXAAACYQAAAGEAAAMXAAAAZAAAAEgAAAJIAAACSAAAAEgAAAAMAAADDAAAABcAAAEXAAAAFwAAAAwAAAMXAAACFwAAAGEAAAFhAAABFwAAAmQAAABIAAACSAAAAkgAAAFIAAABDAAAAAwAAAIXAAAAFwAAABcAAAAMAAADFwAAAxcAAABhAAACYQAAABcAAAFkAAAASAAAA0gAAANIAAADSAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAAFkAAAAYQAAA2EAAAIXAAACZAAAAEgAAAFIAAACSAAAAkgAAAIXAAABZAAAABcAAAFkAAAAKQAAAGQAAABhAAADYQAAAWEAAABhAAADFwAAAmQAAABIAAADSAAAAkgAAANIAAABFwAAAmQAAAAXAAABZAAAACkAAABkAAAAYQAAAGEAAAFhAAACYQAAAhcAAAJIAAADSAAAA0gAAAFkAAAAZAAAABcAAABkAAAAFwAAAGQAAAApAAAAZAAAABcAAAEXAAABFwAAAxcAAAEXAAACZAAAAEgAAAFIAAADZAAAAEgAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAAASAAAAWQAAABIAAABSAAAAUgAAANIAAADSAAAAUgAAANkAAAASAAAAUgAAAJIAAAASAAAAUgAAAJIAAACSAAAAkgAAANkAAAAZAAAAEgAAAFIAAADSAAAAUgAAABIAAABSAAAAUgAAAFIAAACSAAAAkgAAANIAAAASAAAAkgAAAFIAAACZAAAAFQAAABIAAACSAAAARcAAAIXAAACFwAAAWQAAABIAAADSAAAAmQAAABkAAAAZAAAAGQAAAAXAAACZAAAAGQAAABkAAAASAAAAUgAAAAXAAABFwAAARcAAAEXAAAASAAAAkgAAAFkAAAACgAAAAoAAABkAAAAFwAAAhcAAABkAAAAZAAAAA== - 1,-2: - ind: 1,-2 - tiles: FwAAAxcAAAEgAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAgAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAADIAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAIAAAAxcAAAAPAAAADwAAAA8AAABUAAAAVAAAACAAAAA9AAAAPQAAAGQAAABkAAAAZAAAAD0AAAA9AAAAZAAAACAAAAMXAAAADwAAAA8AAAAPAAAAZAAAAGQAAABkAAAAPQAAAD0AAABkAAAAZAAAAGQAAAA9AAAAPQAAAGQAAAAgAAADFwAAABcAAAAXAAAAFwAAAEgAAABIAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAA2QAAABkAAAAFwAAAmQAAABIAAABSAAAAmQAAAAXAAADFwAAABcAAABkAAAASAAAAEgAAANIAAADSAAAAEgAAAFkAAAAPQAAAD0AAAA9AAAASAAAA0gAAAIXAAABFwAAABcAAAIXAAABFwAAAkgAAANIAAADSAAAAEgAAAFIAAAAZAAAAD0AAABkAAAAZAAAAEgAAAJIAAAAZAAAABcAAAMXAAACFwAAA2QAAABIAAACSAAAAEgAAAJIAAABSAAAAGQAAAA9AAAALQAAAC0AAABIAAAASAAAAmQAAABkAAAAZAAAAGQAAABkAAAASAAAA0gAAAFIAAABSAAAAUgAAANkAAAAPQAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAEgAAAFIAAAAZAAAAEgAAAJIAAABSAAAA0gAAANIAAADZAAAAD0AAAAPAAAADwAAAEgAAABIAAAASAAAAEgAAANIAAACSAAAA2QAAABIAAADSAAAAEgAAAFIAAAASAAAAmQAAAA9AAAAZAAAAGQAAABIAAABSAAAAEgAAANIAAACSAAAAEgAAANkAAAASAAAA0gAAABIAAADSAAAAkgAAANkAAAAPQAAAD0AAAA9AAAASAAAA2QAAABkAAAAFwAAARcAAAMXAAACZAAAAGQAAAAXAAABFwAAAhcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAEgAAAFIAAABSAAAAEgAAANIAAABSAAAAkgAAANIAAABSAAAAkgAAAIXAAADSAAAAkgAAAJkAAAAZAAAAGQAAABIAAAASAAAAUgAAABkAAAASAAAAEgAAAJIAAABSAAAAkgAAANIAAAAFwAAAEgAAABIAAABZAAAAGQAAABkAAAASAAAAEgAAABIAAACZAAAAEgAAANkAAAAZAAAAGQAAABkAAAASAAAARcAAAJIAAADSAAAAQ== - -1,-2: - ind: -1,-2 - tiles: ZAAAAEgAAAJIAAACSAAAAUgAAABIAAAASAAAAkgAAABIAAACSAAAAEgAAABIAAACSAAAAGQAAAAAAAAAAAAAAGQAAABIAAABSAAAAUgAAANIAAACSAAAAUgAAANkAAAAZAAAABcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAEgAAAJkAAAAZAAAAGQAAABkAAAAZAAAAAwAAAMMAAABDAAAABcAAAMXAAACFwAAAGEAAANhAAABZAAAAEgAAANIAAADZAAAABcAAAEXAAABFwAAAGQAAAAMAAADDAAAAQwAAAMXAAABFwAAARcAAAFhAAAAYQAAA2QAAABIAAAASAAAA2QAAAAXAAACMgAAADIAAAAXAAACDAAAAwwAAAEMAAADDAAAAQwAAAMMAAAADAAAAQwAAAEXAAADSAAAAEgAAAFkAAAAFwAAATIAAAAyAAAAFwAAAQwAAAMMAAADFwAAABcAAAAXAAAADAAAAgwAAAIMAAABZAAAAEgAAABIAAADZAAAABcAAAMyAAAAMgAAABcAAAMMAAADDAAAAxcAAAIXAAABFwAAAQwAAAAMAAADDAAAARcAAAFIAAAASAAAA2QAAAAXAAAAMgAAADIAAABkAAAAFwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAANkAAAASAAAA0gAAAJkAAAAFwAAAjIAAAAyAAAAMgAAADIAAABkAAAAKQAAAGQAAAAXAAACZAAAABcAAAEXAAABZAAAAEgAAANIAAADFwAAABcAAAEyAAAAMgAAADIAAAAyAAAAZAAAACkAAABkAAAAFwAAA2QAAAAXAAACFwAAAmQAAABIAAADSAAAAWQAAAAXAAABFwAAAhcAAAAXAAADFwAAAGQAAAApAAAAZAAAABcAAAFkAAAAFwAAAhcAAANkAAAASAAAAEgAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAAAZAAAAEgAAAJIAAADSAAAA0gAAAFIAAADSAAAAEgAAAFIAAAAZAAAAEgAAAJIAAABSAAAAkgAAAJIAAAASAAAA2QAAABIAAAASAAAAkgAAABIAAAASAAAA0gAAABIAAABSAAAA0gAAAJIAAAASAAAA0gAAANIAAAASAAAA0gAAANkAAAAZAAAABcAAAJkAAAAZAAAAGQAAABkAAAASAAAAUgAAANkAAAAMwAAADMAAAAzAAAASAAAAEgAAABIAAAAZAAAABcAAAMXAAADZAAAAAoAAAAKAAAAZAAAAEgAAABIAAADZAAAADMAAAAzAAAAMwAAAEgAAABIAAAASAAAAA== - 2,0: - ind: 2,0 - tiles: SAAAAWQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAANkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAACZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA2QAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAJkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAABZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACkAAAApAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAApAAAAKQAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAIXAAAAFwAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAYQAAABcAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAGEAAAMXAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAMXAAACFwAAA2QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAABcAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAzQAAAA0AAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,-1: - ind: 2,-1 - tiles: SAAAAEgAAABIAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAFkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAADFwAAARcAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAxcAAAMXAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAXAAAAFwAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAADFwAAARcAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACkAAAApAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAA2QAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAFkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAADZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAJkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAGQAAAApAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,1: - ind: -1,1 - tiles: FwAAAkgAAANIAAACSAAAAEgAAABIAAAAFwAAAGQAAABIAAAASAAAAkgAAANkAAAASAAAAkgAAANIAAAASAAAAhcAAAEXAAACFwAAARcAAAMXAAABFwAAARcAAABkAAAASAAAAUgAAAJIAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAABkAAAAZAAAAGQAAABIAAABZAAAAGQAAAAKAAAAZAAAABcAAAJkAAAAAAAAAGQAAABIAAAASAAAAUgAAAJIAAADSAAAA0gAAAFIAAACSAAAAEgAAANkAAAAZAAAAGQAAAAXAAABZAAAAAAAAABkAAAASAAAAkgAAANIAAADSAAAAEgAAANIAAACSAAAAkgAAABIAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAEgAAABIAAABSAAAAEgAAANIAAACSAAAAEgAAANIAAAASAAAAxcAAAMXAAADFwAAABcAAAEXAAABAAAAAGQAAABIAAADSAAAAUgAAAJIAAABSAAAAUgAAAJIAAABSAAAA0gAAABkAAAAZAAAAGQAAABkAAAAFwAAAWQAAABkAAAASAAAA0gAAAFIAAABSAAAAEgAAABIAAABSAAAA0gAAAFIAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAJIAAABSAAAAUgAAAJIAAADSAAAA0gAAABIAAAASAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABIAAABSAAAAkgAAABIAAABSAAAAEgAAAFIAAAASAAAAEgAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAUgAAANIAAABSAAAA0gAAABIAAADSAAAAEgAAAFIAAABZAAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAEgAAANIAAADSAAAAEgAAABIAAACSAAAAUgAAAFIAAACSAAAA2QAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABIAAAASAAAAUgAAAJIAAACSAAAAUgAAANIAAAASAAAAUgAAAFkAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAASAAAAkgAAAJIAAABSAAAAkgAAABIAAAASAAAAEgAAABIAAADZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAEgAAAFIAAACSAAAAkgAAAFIAAACSAAAAUgAAAJIAAAASAAAA2QAAABjAAAAYwAAAGMAAABjAAAAAAAAAGQAAABIAAAASAAAAEgAAANIAAACSAAAAUgAAABIAAABSAAAAkgAAABkAAAAAAAAAGMAAAAAAAAAAAAAAA== - 0,1: - ind: 0,1 - tiles: SAAAAUgAAABIAAACZAAAACkAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAAASAAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAAJkAAAAFwAAARcAAANkAAAASAAAAkgAAABkAAAAZAAAAGQAAAAXAAABZAAAAAoAAABkAAAAYQAAA2EAAAJhAAAAZAAAABcAAAMXAAABZAAAAEgAAAFIAAABZAAAAGQAAABkAAAAFwAAAWQAAABkAAAAZAAAAGEAAAFhAAADYQAAA2EAAAAXAAACFwAAAGQAAABIAAAASAAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAABkAAAASAAAAUgAAAJkAAAAZAAAAGQAAAAXAAACFwAAARcAAAJkAAAAFwAAAhcAAAAXAAABZAAAAEgAAANIAAADSAAAA0gAAAJIAAABSAAAAmQAAAAXAAADZAAAAGQAAABkAAAAZAAAABcAAAAXAAACFwAAAWQAAABIAAAASAAAAEgAAAJIAAABSAAAAEgAAABIAAACFwAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAA2QAAABkAAAASAAAA0gAAAJIAAAASAAAAkgAAAJIAAACZAAAAGQAAABkAAAAZAAAABcAAAAXAAACZAAAAEgAAANIAAAASAAAAEgAAAJIAAADSAAAAkgAAABIAAADSAAAAGQAAAAXAAABZAAAAGQAAAAXAAABFwAAAkgAAABIAAACSAAAAUgAAANIAAAASAAAAUgAAANIAAAASAAAAEgAAABIAAAAFwAAAmQAAABkAAAAZAAAAGQAAABkAAAASAAAAUgAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAFIAAACZAAAAGQAAABkAAAAZAAAABcAAAMXAAAAZAAAAEgAAABIAAAAZAAAABcAAAAXAAADFwAAAmQAAABIAAADSAAAA2QAAAAXAAACZAAAAGQAAAAXAAABFwAAAEgAAABIAAADSAAAABcAAAEXAAABFwAAAxcAAAAXAAAASAAAA0gAAANIAAAAFwAAAmQAAABkAAAAZAAAAGQAAABkAAAASAAAAkgAAAJkAAAAFwAAABcAAAAXAAACZAAAAEgAAANIAAACZAAAAGQAAABkAAAAZAAAAD0AAAA9AAAAZAAAAGQAAABkAAAAZAAAABcAAAEXAAABFwAAA2QAAABkAAAAZAAAAGQAAAA9AAAAZAAAAGQAAAA9AAAAPQAAABcAAAEXAAACFwAAAhcAAAMXAAABFwAAABcAAAAXAAADFwAAAxcAAAEXAAABPQAAAA== - 2,-2: - ind: 2,-2 - tiles: FwAAABcAAAAXAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAPAAAAFwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAADwAAABcAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAAAXAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAPQAAAD0AAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAPAAAADwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAC0AAAAtAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAPQAAAD0AAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAWQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAANIAAAASAAAA2QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAABSAAAAkgAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAkgAAANIAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,1: - ind: 1,1 - tiles: FwAAAxcAAAMXAAAAFwAAAxcAAANkAAAAFwAAABcAAAFkAAAAYQAAAzQAAAA0AAAANAAAADQAAAA0AAAAYQAAA2QAAABkAAAAZAAAABcAAABkAAAAZAAAABcAAAMXAAADZAAAAGEAAAM0AAAANAAAADQAAAA0AAAANAAAAGEAAAJUAAAAZAAAABcAAABhAAABYQAAARcAAAMXAAACFwAAABcAAANhAAAANAAAADQAAAA0AAAANAAAADQAAABhAAAAVAAAAGQAAAAXAAABNAAAADQAAABkAAAAFwAAARcAAAJkAAAAYQAAAGEAAABhAAACYQAAAmEAAAJhAAACYQAAA2QAAABkAAAAFwAAADQAAAA0AAAAZAAAAGQAAAAXAAADZAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAAXAAADZAAAABcAAAA0AAAANAAAAGQAAAAXAAADNAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAAFwAAA2QAAAAXAAADYQAAA2EAAAAXAAACFwAAADQAAAA0AAAAYQAAAGEAAAFhAAADYQAAA2EAAANhAAADYQAAA2QAAABkAAAAFwAAAxcAAAIXAAADZAAAABcAAAIXAAADFwAAARcAAAAXAAADFwAAABcAAAIXAAAAFwAAARcAAAMXAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAACZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,1: - ind: -2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,0: - ind: -2,0 - tiles: SAAAAkgAAABIAAAAFwAAAxcAAAEXAAAASAAAAkgAAAJIAAACSAAAAEgAAANIAAAASAAAAEgAAABIAAAASAAAAUgAAANIAAADSAAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAAGQAAABkAAAAFwAAABcAAABkAAAAFwAAAxcAAAMXAAAAFwAAAhcAAAIXAAAAFwAAA2QAAAApAAAAFwAAAhcAAAEXAAADZAAAAGQAAAAXAAABZAAAADQAAAA0AAAAYQAAAmEAAANhAAACYQAAAWEAAAFkAAAAZAAAAEgAAABIAAAASAAAABcAAABkAAAAFwAAAmQAAAA0AAAANAAAAGEAAAJhAAABNAAAADQAAAA0AAAAZAAAAGQAAABIAAABSAAAAkgAAABkAAAAZAAAABcAAABkAAAANAAAADQAAABhAAAAYQAAAzQAAAA0AAAANAAAABcAAAIXAAADFwAAABcAAAMXAAACZAAAABcAAAMXAAADZAAAABcAAAAXAAABYQAAA2EAAAM0AAAANAAAADQAAABkAAAAFwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAAmQAAABkAAAAZAAAABcAAAFkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAZAAAABcAAAAXAAADFwAAAxcAAAMXAAACFwAAABcAAAIXAAACFwAAAWQAAAAXAAADAAAAAAAAAAAAAAAAAAAAAGQAAAAXAAABYQAAA2EAAANhAAABYQAAAWEAAAA0AAAANAAAADQAAABkAAAANAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAFwAAAWEAAAE0AAAANAAAADQAAABhAAAANAAAADQAAAA0AAAAZAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAZAAAABcAAABhAAAANAAAADQAAAA0AAAAYQAAAjQAAAA0AAAANAAAADQAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAXAAACFwAAABcAAAEXAAABFwAAABcAAAM0AAAANAAAADQAAABkAAAAFwAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAACZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAVwAAAFcAAAFkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFcAAABXAAACZAAAAGMAAABjAAAAZAAAAA== - -1,2: - ind: -1,2 - tiles: AAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAAmQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABkAAAAFwAAABcAAAAXAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,1: - ind: 2,1 - tiles: FwAAAzQAAAA0AAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAE0AAAANAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAANAAAADQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAhcAAAEXAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAXAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAANAAAABcAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAADQAAAAXAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAMXAAACFwAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,2: - ind: 0,2 - tiles: ZAAAAGQAAAA9AAAAPQAAAGQAAAAXAAADFwAAAGQAAAAXAAAAFwAAAxcAAAFkAAAAFwAAAhcAAANkAAAAPQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,2: - ind: 1,2 - tiles: PQAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,-1: - ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAABcAAAMXAAADFwAAABcAAAIXAAAAFwAAARcAAAEXAAAAFwAAAhcAAAMXAAADZAAAAAAAAAAAAAAAAAAAAGQAAAAXAAACNAAAADQAAAA0AAAAFwAAAEgAAAAXAAABSAAAARcAAAJIAAABFwAAAWQAAAAAAAAAAAAAAAAAAABkAAAAFwAAAjQAAAA0AAAANAAAAEgAAAMXAAADSAAAAhcAAANIAAACFwAAAkgAAAEXAAABAAAAAAAAAAAAAAAAZAAAABcAAAM0AAAANAAAADQAAAAXAAACSAAAAC0AAAAtAAAASAAAAEgAAAMXAAABFwAAAAAAAAAAAAAAAAAAAGQAAAAXAAABNAAAADQAAAA0AAAASAAAAxcAAAFIAAAAFwAAAkgAAAIXAAADSAAAABcAAAIAAAAAAAAAAAAAAABkAAAAFwAAADQAAAA0AAAANAAAABcAAAFIAAACFwAAAkgAAAMXAAADSAAAARcAAAJkAAAAZAAAAGQAAABkAAAAZAAAABcAAAIXAAAAFwAAAxcAAAEXAAAAFwAAAxcAAAMXAAABFwAAAxcAAAAXAAACZAAAAEgAAANIAAADSAAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAAJkAAAAFwAAAWQAAABkAAAAZAAAAGQAAABIAAABSAAAA0gAAAMXAAAAFwAAAhcAAAJIAAABSAAAAUgAAAFIAAABSAAAAEgAAABIAAADSAAAAEgAAABIAAAASAAAA0gAAANIAAAAZAAAABcAAANkAAAASAAAAUgAAAJIAAACSAAAAkgAAABIAAACSAAAAUgAAANIAAABSAAAAg== - -3,-1: - ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAA== - -3,0: - ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAXAAADFwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAASAAAAkgAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEgAAAFIAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAXAAABFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,-3: - ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAABcAAAIXAAACFwAAAGQAAAAXAAAAFwAAAxcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAXAAACFwAAAxcAAAIXAAADFwAAAhcAAAEXAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAFwAAARcAAAIXAAABZAAAABcAAAEXAAACFwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAABcAAAMXAAACFwAAA2QAAABkAAAAFwAAA2QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAXAAACFwAAAxcAAANkAAAAFwAAAhcAAAMXAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABIAAADSAAAAkgAAAJIAAACSAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAASAAAAkgAAAFIAAACSAAAA0gAAABIAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAEgAAAFIAAACSAAAAEgAAAJIAAACSAAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAAASAAAAUgAAABkAAAAZAAAAGQAAABkAAAASAAAAkgAAABIAAADSAAAAEgAAANIAAAASAAAAEgAAAJIAAACSAAAAEgAAAJIAAABZAAAAAAAAAAAAAAAFwAAAkgAAAFIAAAASAAAAUgAAABIAAAASAAAA0gAAANIAAAASAAAAUgAAAFIAAACSAAAA2QAAAAAAAAAAAAAAA== - 0,-3: - ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAEXAAACZAAAABcAAAIXAAADFwAAA2QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAFwAAAxcAAAMXAAAAFwAAABcAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAxcAAANkAAAAFwAAARcAAAEXAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAJkAAAAZAAAABcAAAMXAAABFwAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAADFwAAAWQAAAAXAAADFwAAAhcAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAJIAAABSAAAAkgAAAFIAAACZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAACSAAAAkgAAAJIAAAASAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAEgAAABIAAABSAAAAEgAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAkgAAAFIAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAEgAAAJIAAAASAAAAUgAAABIAAADSAAAAUgAAAJIAAADSAAAA0gAAANIAAACSAAAAWQAAABkAAAAAAAAAGQAAABIAAABSAAAA0gAAABIAAABSAAAA0gAAABIAAABSAAAAkgAAAJIAAADSAAAA0gAAANkAAAAZAAAAA== - 1,-3: - ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== - -2,-3: - ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAAAXAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAFwAAAg== - -2,-2: - ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAFwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEgAAAFIAAAASAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABIAAAASAAAA0gAAANkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAASAAAAEgAAAFIAAABZAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEgAAANIAAABSAAAARcAAAMXAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABIAAAASAAAAEgAAABkAAAAFwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAASAAAAkgAAAFIAAAAFwAAARcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEgAAAJIAAABSAAAAGQAAAAXAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABIAAABSAAAA0gAAAFkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAA== - 2,-3: - ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid - - type: Broadphase - - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: {} - type: Fixtures - - id: centcomm - type: BecomesStation - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: - - node: - angle: -1.5707963267948966 rad - color: '#DE3A3A96' - id: Arrows - decals: - 522: 8,28 - - node: - angle: 1.5707963267948966 rad - color: '#DE3A3A96' - id: Arrows - decals: - 521: 10,28 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 787: 29,-22 - 788: 33,-27 - 800: 32,-14 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 401: -11,28 - 474: 15,31 - 476: 5,31 - 911: 19,-26 - 977: 3,-43 - - node: - color: '#FFFFFFFF' - id: Arrows - decals: - 781: 33,-21 - 782: 31,-21 - 786: 29,-26 - 915: 17,-31 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 376: -6,15 - 400: -11,24 - 475: 3,31 - 477: 13,31 - 910: 21,-26 - 978: -5,-43 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 790: 31,-27 - - node: - angle: -3.141592653589793 rad - color: '#52B4E9C3' - id: ArrowsGreyscale - decals: - 308: 11,-15 - - node: - color: '#DE3A3A96' - id: Bot - decals: - 302: 9,6 - 303: 13,4 - 534: 8,31 - 535: 10,31 - 536: 12,31 - 538: 6,31 - 762: 22,-11 - 763: 19,-11 - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 49: 31,-6 - 50: 31,-4 - 51: 30,-6 - 52: 30,-4 - 53: 31,2 - 54: 30,2 - 55: 31,4 - 56: 30,4 - 103: 14,-3 - 104: 12,-3 - 235: -3,-13 - 236: 1,-13 - 237: -1,-12 - 277: 4,0 - 278: -6,0 - 372: -4,10 - 373: -4,15 - 377: -6,16 - 378: -6,17 - 379: -6,14 - 382: -7,28 - 383: -8,28 - 384: -9,28 - 385: -7,26 - 386: -8,26 - 387: -9,26 - 388: -7,24 - 389: -8,24 - 390: -9,24 - 391: -7,22 - 392: -8,22 - 393: -9,22 - 565: 9,15 - 567: 14,13 - 568: 14,11 - 569: 6,11 - 570: 6,13 - 575: 11,25 - 576: 8,22 - 577: -1,13 - 578: -1,11 - 580: -34,1 - 581: -34,-3 - 584: -31,-2 - 585: -30,-2 - 586: -31,0 - 587: -30,0 - 619: -22,0 - 620: -21,-2 - 621: -23,-2 - 622: -14,-1 - 674: -15,-8 - 675: -15,-7 - 676: -15,-6 - 677: -12,-8 - 678: -12,-7 - 679: -12,-6 - 714: 4,25 - 715: 4,28 - 716: 14,28 - 717: 14,25 - 718: 14,22 - 783: 29,-23 - 784: 29,-25 - 791: 32,-12 - 796: 32,-13 - 797: 31,-12 - 798: 32,-11 - 799: 33,-12 - 896: 23,-24 - 897: 23,-23 - 898: 28,-14 - 899: 27,-14 - 900: 34,-19 - 901: 34,-16 - 908: 17,-26 - 909: 23,-26 - 912: 17,-32 - 913: 16,-32 - 932: -20,-27 - 933: -19,-27 - 934: -20,-25 - 935: -19,-25 - 979: -5,-41 - 980: -5,-44 - 987: 3,-41 - 988: 3,-44 - 1231: 21,-27 - 1232: 20,-27 - 1233: 19,-27 - - node: - color: '#FFFFFFFF' - id: BotLeft - decals: - 574: 8,25 - 792: 33,-11 - 793: 31,-13 - 983: -6,-42 - 984: -6,-43 - 985: 4,-43 - 986: 4,-42 - - node: - color: '#FFFFFFFF' - id: BotRight - decals: - 794: 33,-13 - 795: 31,-11 - 1160: 13,-15 - 1161: 13,-14 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - decals: - 1094: 19,15 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNw - decals: - 1100: 17,15 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - decals: - 1098: 19,11 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSw - decals: - 1099: 17,11 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - decals: - 1095: 19,14 - 1096: 19,13 - 1097: 19,12 - 1108: 33,21 - 1109: 33,22 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - decals: - 1102: 18,15 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - decals: - 1101: 18,11 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - decals: - 1103: 17,12 - 1104: 17,13 - 1105: 17,14 - 1106: 23,21 - 1107: 23,22 - - node: - color: '#52B4E996' - id: BrickTileSteelCornerNe - decals: - 1120: 5,-10 - - node: - color: '#52B4E996' - id: BrickTileSteelCornerNw - decals: - 1119: 3,-10 - - node: - color: '#52B4E996' - id: BrickTileSteelCornerSe - decals: - 1121: 5,-14 - - node: - color: '#52B4E996' - id: BrickTileSteelCornerSw - decals: - 1115: 3,-14 - - node: - color: '#52B4E996' - id: BrickTileSteelInnerNe - decals: - 1142: 5,-12 - - node: - color: '#52B4E996' - id: BrickTileSteelInnerSe - decals: - 1141: 5,-12 - 1150: 13,-12 - - node: - color: '#52B4E996' - id: BrickTileSteelInnerSw - decals: - 1143: 9,-12 - - node: - color: '#52B4E996' - id: BrickTileSteelLineE - decals: - 1123: 5,-11 - 1124: 5,-13 - 1147: 13,-15 - 1148: 13,-14 - 1149: 13,-13 - - node: - color: '#52B4E996' - id: BrickTileSteelLineN - decals: - 1128: 15,-12 - 1129: 14,-12 - 1130: 13,-12 - 1131: 12,-12 - 1132: 11,-12 - 1133: 10,-12 - 1134: 9,-12 - 1135: 7,-12 - 1136: 6,-12 - 1139: 8,-12 - 1151: 16,-12 - - node: - color: '#52B4E996' - id: BrickTileSteelLineS - decals: - 1122: 4,-14 - 1137: 7,-12 - 1138: 6,-12 - 1140: 8,-12 - 1152: 16,-12 - 1153: 15,-12 - 1154: 14,-12 - - node: - color: '#52B4E996' - id: BrickTileSteelLineW - decals: - 1116: 3,-13 - 1117: 3,-12 - 1118: 3,-11 - 1144: 9,-13 - 1145: 9,-14 - 1146: 9,-15 - - node: - color: '#9FED5896' - id: BrickTileWhiteCornerNe - decals: - 1166: 1,-16 - 1171: 4,-19 - - node: - color: '#9FED5896' - id: BrickTileWhiteCornerNw - decals: - 1167: -3,-16 - 1170: -6,-19 - - node: - color: '#9FED5896' - id: BrickTileWhiteCornerSe - decals: - 1168: 4,-20 - - node: - color: '#9FED5896' - id: BrickTileWhiteCornerSw - decals: - 1169: -6,-20 - - node: - color: '#9FED5896' - id: BrickTileWhiteInnerNe - decals: - 1173: 1,-19 - - node: - color: '#9FED5896' - id: BrickTileWhiteInnerNw - decals: - 1172: -3,-19 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineE - decals: - 1174: 1,-18 - - node: - color: '#79150096' - id: BrickTileWhiteLineN - decals: - 1229: 33,-32 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineN - decals: - 1175: 2,-19 - 1185: 0,-16 - 1186: -2,-16 - - node: - color: '#A4610696' - id: BrickTileWhiteLineN - decals: - 1227: 30,-32 - - node: - color: '#D4D4D428' - id: BrickTileWhiteLineN - decals: - 1230: 32,-32 - - node: - color: '#D4D4D496' - id: BrickTileWhiteLineN - decals: - 1226: 29,-32 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineN - decals: - 1228: 31,-32 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineS - decals: - 1221: 29,-29 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineS - decals: - 1225: 33,-29 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineS - decals: - 1176: 2,-20 - 1177: 1,-20 - 1178: 0,-20 - 1179: -2,-20 - 1180: -3,-20 - 1181: -4,-20 - 1182: -5,-20 - 1193: 3,-20 - 1223: 31,-29 - - node: - color: '#D381C996' - id: BrickTileWhiteLineS - decals: - 1222: 30,-29 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineS - decals: - 1224: 32,-29 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineW - decals: - 1183: -3,-18 - 1184: -3,-17 - - node: - color: '#FFFFFFFF' - id: Bushb1 - decals: - 1242: -9,6 - - node: - color: '#FFFFFFFF' - id: Bushb3 - decals: - 452: 10,8 - 726: 9.488686,-17.018105 - - node: - color: '#FFFFFFFF' - id: Bushc1 - decals: - 723: -11.564524,-16.986855 - - node: - color: '#FFFFFFFF' - id: Bushe1 - decals: - 150: 25.445843,7.7053776 - 179: 11.130266,-9.945588 - 317: -4,18 - 458: 10.845012,7.992337 - - node: - color: '#FFFFFFFF' - id: Bushe2 - decals: - 149: 26.461468,7.8616276 - 180: 14.583391,-9.976838 - 181: 13.520891,-10.008088 - - node: - color: '#FFFFFFFF' - id: Bushe3 - decals: - 151: 28.82894,6.877252 - 152: 23.178217,6.861627 - 316: 2,18 - 459: 9.048137,8.023587 - 1114: 17.154882,7.7859535 - - node: - color: '#FFFFFFFF' - id: Bushe4 - decals: - 153: 18.801558,6.901756 - 154: 33.138065,6.979881 - - node: - color: '#FFFFFFFF' - id: Bushf1 - decals: - 178: 9.755266,-9.992463 - 457: 10.782512,8.007962 - - node: - color: '#FFFFFFFF' - id: Bushf2 - decals: - 177: 10.411516,-10.008088 - 315: -4,18 - 456: 9.141887,8.007962 - - node: - color: '#FFFFFFFF' - id: Bushf3 - decals: - 176: 14.052141,-10.008088 - 314: 2,18 - - node: - color: '#FFFFFFFF' - id: Bushg1 - decals: - 649: -11.486805,2.0009332 - - node: - color: '#FFFFFFFF' - id: Bushh1 - decals: - 313: -4,18 - 460: 13.141887,8.086087 - 461: 6.0012617,8.086087 - 468: 8.798137,7.961087 - 724: -10.814524,-16.955605 - 728: 8.848061,-16.97123 - - node: - color: '#FFFFFFFF' - id: Bushh2 - decals: - 725: -12.142649,-17.03373 - - node: - color: '#FFFFFFFF' - id: Bushh3 - decals: - 185: 10.099016,-9.945588 - 312: 2,18 - 467: 11.282512,7.929837 - 727: 10.098061,-16.97123 - 1111: 16.470638,7.9648323 - - node: - color: '#FFFFFFFF' - id: Bushi1 - decals: - 141: 22.818914,7.5022526 - 142: 19.100164,8.142878 - 143: 27.037664,6.330377 - 144: 29.052135,7.267877 - 145: 32.06776,8.049128 - 171: 32.98406,-8.985069 - 173: 17.014437,2.9736261 - 174: 16.998812,6.958001 - 175: 17.020891,-5.0002565 - 195: 7.009032,-9.986469 - 198: -3.9782841,6.046785 - 201: -8.985234,-13.989886 - 643: -16.924305,2.0790582 - 644: -10.93993,2.0321832 - 712: -5.975403,-22.996408 - - node: - color: '#FFFFFFFF' - id: Bushi2 - decals: - 172: 19.006546,-8.953819 - 196: 6.9877787,-14.02815 - 197: -8.025159,5.99991 - 202: -9.047734,-10.021136 - 713: 3.9464722,-22.996408 - - node: - color: '#FFFFFFFF' - id: Bushi3 - decals: - 645: -12.93993,1.9853082 - - node: - color: '#FFFFFFFF' - id: Bushj1 - decals: - 170: 30.968433,-8.891319 - - node: - color: '#FFFFFFFF' - id: Bushj2 - decals: - 169: 20.959995,-9.000694 - 462: 13.579387,8.023587 - - node: - color: '#FFFFFFFF' - id: Bushj3 - decals: - 464: 6.5325117,8.164212 - - node: - color: '#FFFFFFFF' - id: Bushk2 - decals: - 311: 4,16 - - node: - color: '#FFFFFFFF' - id: Bushk3 - decals: - 148: 20.972792,7.5335026 - 647: -16.03368,2.0478082 - - node: - color: '#FFFFFFFF' - id: Bushl1 - decals: - 190: 7.116846,-5.379048 - - node: - color: '#FFFFFFFF' - id: Bushl2 - decals: - 646: -15.03368,2.0165582 - - node: - color: '#FFFFFFFF' - id: Bushl4 - decals: - 648: -12.00243,1.9853082 - 711: -6.022278,-23.574533 - - node: - color: '#FFFFFFFF' - id: Bushm1 - decals: - 147: 31.989635,7.5335026 - - node: - color: '#FFFFFFFF' - id: Bushm2 - decals: - 223: 3.9493294,6.054844 - 708: 4.008972,-23.668283 - - node: - color: '#FFFFFFFF' - id: Bushm3 - decals: - 146: 30.208385,7.5960026 - 224: -9.056177,3.4392257 - 709: 4.008972,-22.558908 - - node: - color: '#FFFFFFFF' - id: Bushm4 - decals: - 710: -6.022278,-22.512033 - - node: - color: '#FFFFFFFF' - id: Bushn1 - decals: - 200: 34.054134,-1.0223641 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: Caution - decals: - 1295: 23,-27 - - node: - color: '#52B4E996' - id: CheckerNESW - decals: - 68: 12,-5 - 69: 13,-5 - 70: 14,-5 - 71: 15,-5 - 72: 15,-6 - 73: 15,-7 - 74: 15,-8 - 75: 11,-5 - 76: 10,-5 - 77: 9,-5 - 78: 9,-6 - 79: 9,-7 - 80: 9,-8 - - node: - color: '#D4D4D428' - id: CheckerNWSE - decals: - 27: 31,-3 - 28: 30,-2 - 29: 29,-1 - 30: 21,1 - 31: 22,0 - 32: 23,-1 - 1194: -1,-19 - 1195: -1,-18 - 1196: -1,-17 - 1197: 0,-18 - 1198: -2,-18 - 1199: 0,-17 - 1200: -2,-17 - 1201: -2,-19 - 1202: 0,-19 - - node: - color: '#DE3A3A96' - id: Delivery - decals: - 525: 13,32 - 526: 12,32 - 527: 6,32 - 528: 5,32 - 529: 3,32 - 530: 3,30 - 531: 15,30 - 533: 15,32 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 45: 32,4 - 46: 32,2 - 47: 32,-4 - 48: 32,-6 - 99: 12,1 - 100: 14,1 - 380: -8,17 - 381: -8,16 - 394: -10,22 - 395: -10,24 - 396: -10,26 - 397: -10,28 - 402: -14,30 - 403: -14,31 - 406: -14,22 - 407: -14,21 - 408: -14,20 - 582: -32,-2 - 583: -32,0 - 719: 6,-16 - 720: 7,-16 - 721: -9,-16 - 722: -8,-16 - 785: 29,-24 - 905: 32,-15 - 906: 16,-24 - 914: 15,-32 - 930: -21,-27 - 931: -21,-25 - 981: -6,-41 - 982: -6,-44 - 989: 4,-44 - 990: 4,-41 - 1240: 22,-26 - 1241: 18,-26 - 1251: -4,-35 - 1252: -5,-35 - 1253: -6,-35 - 1254: 2,-35 - 1255: 3,-35 - 1256: 4,-35 - 1257: 12,-30 - 1258: 13,-30 - 1259: 12,-21 - 1260: 13,-21 - 1261: -15,-21 - 1262: -14,-21 - 1263: -14,-30 - 1264: -15,-30 - 1265: -5,-6 - 1266: -5,-5 - 1267: -6,-4 - 1268: -7,-4 - 1269: -7,2 - 1270: -6,2 - 1271: -5,3 - 1272: -5,4 - 1273: 3,3 - 1274: 3,4 - 1275: 4,2 - 1276: 5,2 - 1277: 5,-4 - 1278: 4,-4 - 1279: 3,-5 - 1280: 3,-6 - 1281: -9,-12 - 1282: -14,-17 - 1288: -10,33 - - node: - color: '#52B4E996' - id: DeliveryGreyscale - decals: - 1125: 4,-7 - 1126: 17,-7 - 1127: 17,-12 - 1155: 16,-12 - 1156: 8,-12 - 1157: 16,-7 - 1158: 12,-4 - 1159: 14,-4 - - node: - color: '#FFFFFFFF' - id: DeliveryGreyscale - decals: - 1283: 4,-8 - 1284: -6,-8 - 1285: -6,6 - 1286: 7,3 - 1287: 17,5 - - node: - color: '#FFFFFFFF' - id: DirtLight - decals: - 57: 32,2 - 58: 32,-5 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - decals: - 59: 31,-6 - 60: 32,3 - 61: 31,4 - 62: 29,4 - - node: - color: '#FFFFFFFF' - id: Flowersbr1 - decals: - 189: 7.054346,-5.972798 - 218: -8.98181,3.039219 - 219: 4.0382257,5.992344 - 641: -12.455555,2.0009332 - 705: -5.959778,-23.277658 - - node: - color: '#FFFFFFFF' - id: Flowersbr2 - decals: - 140: 25.64704,7.7835026 - 163: 21.006866,-8.969444 - 164: 21.928741,-8.985069 - 165: 32.30374,-9.031944 - 640: -17.09618,2.0009332 - - node: - color: '#FFFFFFFF' - id: Flowersbr3 - decals: - 137: 31.017263,7.330377 - 138: 20.33454,7.330377 - 139: 26.99079,6.721002 - 188: 6.991846,-5.004048 - 210: -4.0670047,-7.975866 - - node: - color: '#FFFFFFFF' - id: Flowerspv1 - decals: - 166: 31.131866,-9.000694 - 167: 20.241241,-8.953819 - 168: 32.80374,-9.000694 - 220: 7.0694757,4.992344 - 221: 3.9757257,7.992344 - 1165: 7,-8 - - node: - color: '#FFFFFFFF' - id: Flowerspv2 - decals: - 194: 5.962157,-7.9708443 - 207: -7.8673525,-7.959863 - 642: -14.90868,2.0634332 - 706: 4.102722,-23.308908 - 707: -5.991028,-22.152658 - - node: - color: '#FFFFFFFF' - id: Flowerspv3 - decals: - 134: 21.940147,6.877252 - 135: 26.987022,7.6116276 - 136: 32.829765,6.955377 - 208: -8.9611025,-5.006738 - 310: 4,16 - 1164: -9,-8 - - node: - color: '#FFFFFFFF' - id: Flowersy1 - decals: - 193: 2.0246568,-7.9552193 - - node: - color: '#FFFFFFFF' - id: Flowersy2 - decals: - 217: -8.91931,3.929844 - - node: - color: '#FFFFFFFF' - id: Flowersy3 - decals: - 222: 1.9913507,6.023594 - 704: -5.975403,-23.949533 - - node: - color: '#FFFFFFFF' - id: Flowersy4 - decals: - 129: 25.080772,6.455377 - 130: 29.596397,7.017877 - 131: 32.737022,7.9397526 - 132: 21.674522,8.017878 - 133: 19.190147,7.174127 - 161: 30.038116,-9.047569 - 162: 18.959991,-8.985069 - 182: 15.052141,-10.039338 - 183: 9.052141,-9.976838 - 184: 13.005266,-9.992463 - 209: -9.0236025,-5.991113 - 463: 6.6731367,7.961087 - 639: -13.12743,2.0009332 - 703: 4.024597,-22.012033 - 1112: 6.9923015,5.882874 - 1113: 6.0391765,5.945374 - - node: - color: '#334E6DC8' - id: FullTileOverlayGreyscale - decals: - 9: 27,-1 - 10: 26,-1 - 11: 25,-1 - 12: 27,-2 - 39: 25,0 - 680: -24,-5 - 681: -22,-5 - 682: -20,-5 - 683: -18,-5 - 684: -19,-6 - 685: -18,-7 - 686: -19,-8 - 687: -18,-9 - 688: -20,-9 - 689: -22,-9 - 690: -21,-8 - 691: -21,-6 - 692: -20,-7 - 693: -23,-8 - 694: -23,-6 - 695: -24,-7 - 696: -24,-9 - - node: - color: '#52B4E996' - id: FullTileOverlayGreyscale - decals: - 63: 10,-7 - 64: 11,-6 - 65: 12,-7 - 66: 13,-6 - 67: 14,-7 - - node: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - decals: - 480: 14,28 - 481: 14,25 - 482: 14,22 - 483: 4,25 - 484: 4,28 - 500: 9,27 - 501: 9,28 - 502: 9,29 - 503: 9,30 - 504: 9,31 - 505: 9,32 - - node: - color: '#EFB34196' - id: FullTileOverlayGreyscale - decals: - 824: 19,-23 - 825: 20,-23 - 826: 21,-23 - - node: - color: '#FFFFFFFF' - id: Grassa4 - decals: - 455: 14,8 - - node: - color: '#FFFFFFFF' - id: Grassb1 - decals: - 453: 9,8 - 465: 11.391887,8.179837 - 466: 7.2825117,8.054837 - - node: - color: '#FFFFFFFF' - id: Grassb5 - decals: - 454: 13,8 - 1110: 16.017513,8.027332 - - node: - color: '#FFFFFFFF' - id: Grassd1 - decals: - 123: 30.685312,7.0542355 - 124: 33.18531,8.16361 - 125: 22.82111,7.9761105 - 126: 26.85236,8.13236 - 127: 24.842615,8.147985 - 128: 19.093754,6.9448605 - 160: 32.92874,-8.891319 - 636: -12.75243,1.9384332 - - node: - color: '#FFFFFFFF' - id: Grassd3 - decals: - 192: 2.0715318,-7.9395943 - 635: -14.955555,2.0165582 - 702: 3.9620972,-23.215158 - - node: - color: '#FFFFFFFF' - id: Grasse1 - decals: - 117: 31.288973,7.8974113 - 118: 22.757723,7.1474113 - 119: 20.210848,7.8817863 - 120: 25.163973,7.1167355 - 121: 26.195223,6.1636105 - 122: 29.242098,7.9917355 - 156: 20.2297,-9.031944 - 157: 30.694366,-8.953819 - 204: -8.907109,-5.8244467 - 213: 1.9943819,6.0206404 - 214: 3.947507,8.005015 - 637: -11.986805,1.9696832 - 701: -6.084778,-23.808908 - - node: - color: '#FFFFFFFF' - id: Grasse2 - decals: - 113: 31.617165,7.1005363 - 114: 26.992098,6.2724113 - 115: 21.070223,7.2411613 - 116: 20.007723,6.9442863 - 187: 7.054346,-5.004048 - 205: -8.985234,-5.0900717 - 206: -3.9383593,-7.9338217 - 211: -8.996265,3.0206404 - 212: -8.965015,3.9112654 - 216: 6.954139,4.9425154 - 634: -15.861805,1.9071832 - 638: -11.049305,1.8915582 - 699: 3.9464722,-22.418283 - 700: -5.928528,-22.652658 - 1162: 7,-8 - 1163: -9,-8 - - node: - color: '#FFFFFFFF' - id: Grasse3 - decals: - 105: 25.217262,6.1942863 - 106: 26.967262,7.3974113 - 107: 25.389137,7.8036613 - 108: 21.686012,7.6161613 - 109: 19.107887,7.5067863 - 110: 29.420387,7.0224113 - 111: 30.092262,7.5849113 - 112: 32.41404,7.2099113 - 155: 19.2922,-8.953819 - 158: 31.506866,-8.985069 - 159: 21.444366,-8.953819 - 186: 7.023096,-5.941548 - 191: 5.962157,-8.002094 - 199: 34.00726,-1.0379891 - 203: -7.9071093,-7.9963217 - 215: 4.041257,6.0675154 - 309: 4,16 - 633: -16.674305,2.0478082 - 697: 4,-24 - 698: -6,-22 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - decals: - 289: -1,1 - 656: -11,-5 - 657: -12,-5 - 658: -13,-5 - 659: -14,-5 - 660: -15,-5 - 661: -16,-5 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale - decals: - 88: 10,1 - 362: 1,16 - 363: 0,16 - 364: -1,16 - 365: -2,16 - 366: -3,16 - 563: 7,15 - 732: 8,-20 - 735: 10,-20 - 736: 12,-20 - 741: -10,-20 - 742: -12,-20 - 743: -14,-20 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale - decals: - 322: -8,11 - 323: -9,11 - 324: -10,11 - 325: -11,11 - 334: -12,16 - 335: -13,16 - 336: -14,16 - 424: -7,31 - 425: -8,31 - 426: -9,31 - 427: -11,31 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - decals: - 86: 13,1 - 87: 11,1 - 557: 13,15 - 558: 10,15 - 559: 8,15 - 753: 28,-9 - 754: 27,-9 - 755: 26,-9 - 756: 25,-9 - 757: 24,-9 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - decals: - 618: -22,-2 - 650: -16,-9 - 651: -15,-9 - 652: -14,-9 - 653: -13,-9 - 654: -12,-9 - 655: -11,-9 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale180 - decals: - 84: 13,-3 - 85: 11,-3 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale180 - decals: - 354: 1,8 - 355: 0,8 - 356: -1,8 - 357: -2,8 - 358: -3,8 - 548: 13,10 - 549: 12,10 - 550: 11,10 - 551: 10,10 - 552: 9,10 - 553: 8,10 - 554: 7,10 - 579: 10,-3 - 733: 9,-19 - 734: 11,-19 - 744: -11,-19 - 745: -13,-19 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale180 - decals: - 328: -8,9 - 329: -10,9 - 330: -11,9 - 331: -9,9 - 332: -13,15 - 333: -14,15 - 341: -12,15 - 441: -8,19 - 442: -9,19 - 443: -10,19 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - decals: - 292: 13,3 - 293: 15,3 - 294: 11,3 - 519: 10,21 - 520: 9,21 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale180 - decals: - 818: 15,-22 - 819: 16,-22 - 820: 17,-22 - 821: 18,-22 - 822: 19,-22 - 823: 20,-22 - 827: 21,-22 - 843: 26,-27 - 844: 25,-27 - 845: 24,-27 - 866: 28,-19 - 867: 27,-19 - 868: 23,-19 - 869: 22,-19 - 870: 30,-19 - 871: 34,-19 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - decals: - 0: 28,-1 - 3: 28,1 - 4: 28,0 - 5: 28,-2 - 17: 23,1 - 18: 29,-3 - 19: 29,-2 - 33: 25,-3 - 44: 25,-2 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale270 - decals: - 96: 9,-2 - 97: 9,-1 - 98: 9,0 - 564: 6,14 - 602: -26,-1 - 739: -8,-18 - 918: -14,-24 - 920: -14,-26 - 921: -14,-28 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale270 - decals: - 327: -12,10 - 342: -4,11 - 343: -4,12 - 344: -4,13 - 429: -12,30 - 430: -12,29 - 431: -12,28 - 432: -12,27 - 433: -12,26 - 434: -12,25 - 435: -12,24 - 436: -12,23 - 437: -12,22 - 438: -12,21 - 439: -12,20 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - decals: - 485: 5,24 - 486: 5,25 - 487: 5,26 - 488: 5,27 - 489: 5,28 - 490: 5,29 - 506: 11,16 - 507: 11,17 - 508: 11,18 - 509: 11,19 - 510: 11,20 - 555: 6,12 - 572: 8,22 - 573: 8,23 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale270 - decals: - 828: 23,-21 - 829: 23,-22 - 830: 23,-23 - 831: 23,-24 - 832: 23,-25 - 833: 23,-27 - 892: 19,-19 - 893: 19,-17 - 894: 19,-16 - 895: 19,-14 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - decals: - 1: 24,-1 - 2: 27,1 - 6: 24,-2 - 7: 24,-3 - 8: 24,0 - 13: 23,1 - 14: 23,0 - 22: 29,-3 - 38: 27,0 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale90 - decals: - 93: 15,-2 - 94: 15,-1 - 95: 15,0 - 352: 2,9 - 360: 2,15 - 561: 14,14 - 588: -11,-1 - 730: 6,-18 - 917: -15,-23 - 919: -15,-25 - 922: -15,-27 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale90 - decals: - 326: -7,10 - 413: -6,20 - 414: -6,22 - 415: -6,23 - 416: -6,24 - 417: -6,25 - 418: -6,26 - 419: -6,27 - 420: -6,28 - 421: -6,29 - 422: -6,30 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - decals: - 240: -5,-14 - 241: -5,-13 - 242: -5,-12 - 243: -5,-11 - 244: -5,-10 - 367: 2,10 - 368: 2,11 - 369: 2,12 - 370: 2,13 - 371: 2,14 - 491: 13,21 - 492: 13,22 - 493: 13,23 - 494: 13,24 - 495: 13,25 - 496: 13,27 - 497: 13,26 - 498: 13,28 - 499: 13,29 - 511: 12,16 - 512: 12,17 - 513: 12,18 - 514: 12,19 - 515: 12,20 - 556: 14,12 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale90 - decals: - 834: 27,-27 - 835: 27,-26 - 836: 27,-22 - 837: 27,-21 - 838: 27,-24 - 839: 27,-23 - 840: 27,-25 - 847: 21,-21 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 374: -4,9 - 375: -4,14 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 398: -14,25 - 399: -14,27 - 404: -13,30 - 405: -13,31 - 409: -13,20 - 410: -13,21 - 411: -13,22 - - node: - color: '#FFFFFFFF' - id: LoadingArea - decals: - 101: 14,0 - 102: 12,0 - 238: 1,-12 - 239: -3,-12 - 566: 9,14 - 907: 16,-25 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale - decals: - 15: 23,0 - 35: 28,-3 - 279: -4,1 - 280: -4,-1 - 281: -4,-2 - 286: -3,1 - 287: -2,1 - 291: -4,-3 - 616: -23,0 - 973: -3,-42 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale - decals: - 307: 10,-13 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - decals: - 232: -2,-10 - 257: -7,1 - 258: -7,0 - 259: -4,4 - 260: -3,4 - 261: -2,4 - 599: -26,0 - 600: -25,0 - 601: -24,0 - 625: -33,5 - 626: -32,5 - 925: -21,-23 - 940: 8,-31 - 941: 9,-31 - 942: 10,-31 - 943: 11,-31 - 944: 12,-22 - 956: 2,-32 - 957: 3,-32 - 958: 4,-32 - 959: 6,-32 - 960: 7,-32 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - decals: - 254: -7,3 - 255: -7,4 - 256: -6,4 - 347: -8,17 - 350: -8,16 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale - decals: - 1206: 0,-20 - 1207: -1,-20 - 1208: -2,-20 - 1209: -3,-20 - 1210: -4,-20 - 1211: -5,-20 - 1212: 1,-20 - 1213: 2,-20 - 1214: 3,-20 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - decals: - 233: -3,-11 - 545: 11,15 - 759: 19,-11 - 760: 20,-11 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - decals: - 872: 30,-16 - 873: 31,-16 - 877: 19,-25 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale180 - decals: - 20: 29,-2 - 34: 24,1 - 961: 1,-38 - 962: 2,-38 - 963: 3,-38 - 964: 4,-38 - 971: 4,-37 - 972: 4,-36 - 974: 1,-44 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale180 - decals: - 245: 4,-6 - 246: 5,-6 - 247: 5,-5 - 304: 12,-15 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale180 - decals: - 230: 0,-14 - 272: 0,-6 - 273: 1,-6 - 274: 2,-6 - 275: 5,-3 - 276: 5,-2 - 606: -20,-2 - 607: -19,-2 - 608: -18,-2 - 609: -17,-2 - 610: -16,-2 - 611: -15,-2 - 612: -14,-2 - 613: -13,-2 - 614: -12,-2 - 615: -11,-2 - 629: -30,4 - 630: -31,4 - 738: -9,-17 - 746: -15,-19 - 747: 0,-24 - 748: 0,-23 - 749: 0,-22 - 928: -19,-29 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - decals: - 345: -6,14 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale180 - decals: - 1203: -2,-16 - 1204: -1,-16 - 1205: 0,-16 - 1215: 1,-19 - 1216: 2,-19 - 1217: 3,-19 - 1218: -3,-19 - 1219: -4,-19 - 1220: -5,-19 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - decals: - 295: 10,3 - 516: 12,21 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - decals: - 808: 13,-29 - 809: 17,-28 - 810: 16,-28 - 811: 15,-28 - 812: 14,-28 - 813: 17,-27 - 841: 23,-27 - 878: 21,-27 - 929: -19,-30 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - decals: - 40: 28,-3 - 965: -3,-38 - 966: -4,-38 - 967: -6,-38 - 968: -5,-38 - 969: -6,-37 - 970: -6,-36 - 975: -3,-44 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale270 - decals: - 305: 10,-15 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale270 - decals: - 229: -2,-14 - 267: -7,-2 - 268: -7,-3 - 269: -4,-6 - 270: -3,-6 - 271: -2,-6 - 603: -26,-2 - 604: -25,-2 - 605: -24,-2 - 631: -32,4 - 632: -33,4 - 729: 7,-17 - 737: 13,-19 - 750: -2,-24 - 751: -2,-23 - 752: -2,-22 - 916: -14,-22 - 926: -21,-30 - 927: -21,-29 - 945: 12,-29 - 946: 12,-28 - 947: 12,-24 - 948: 12,-25 - 949: 12,-26 - 950: 12,-27 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale270 - decals: - 346: -8,14 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale270 - decals: - 248: -6,-6 - 249: -7,-6 - 250: -7,-5 - 517: 13,21 - 518: 11,21 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale270 - decals: - 842: 27,-27 - 879: 19,-27 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale90 - decals: - 41: 24,1 - 282: 2,-2 - 283: 2,-1 - 284: 2,1 - 285: 1,1 - 288: 0,1 - 290: 2,-3 - 617: -21,0 - 976: 1,-42 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale90 - decals: - 234: 1,-11 - 306: 12,-13 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale90 - decals: - 231: 0,-10 - 262: 0,4 - 263: 1,4 - 264: 2,4 - 265: 5,1 - 266: 5,0 - 589: -11,0 - 590: -12,0 - 591: -13,0 - 592: -14,0 - 593: -15,0 - 594: -16,0 - 595: -17,0 - 596: -18,0 - 597: -20,0 - 598: -19,0 - 627: -31,5 - 628: -30,5 - 923: -15,-29 - 924: -19,-23 - 936: -10,-31 - 937: -12,-31 - 938: -11,-31 - 939: -13,-31 - 951: -4,-32 - 952: -5,-32 - 953: -6,-32 - 954: -8,-32 - 955: -9,-32 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - decals: - 348: -6,17 - 349: -6,16 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale90 - decals: - 251: 5,3 - 252: 5,4 - 253: 4,4 - 296: 15,6 - 297: 14,6 - 298: 13,6 - 299: 12,6 - 300: 11,6 - 301: 10,6 - 544: 12,15 - 758: 22,-11 - 761: 21,-11 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - decals: - 806: 13,-22 - 807: 13,-23 - 814: 17,-25 - 815: 17,-24 - 816: 15,-24 - 817: 14,-24 - 846: 21,-22 - 874: 34,-16 - 875: 33,-16 - 876: 21,-25 - - node: - color: '#FFFFFFFF' - id: StandClear - decals: - 780: 32,-21 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale - decals: - 91: 9,1 - 226: -3,-10 - 359: -4,16 - 562: 6,15 - 623: -34,5 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale - decals: - 319: -12,11 - 338: -15,16 - 428: -12,31 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 92: 15,-3 - 228: 1,-14 - 353: 2,8 - 547: 14,10 - 740: -9,-19 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 320: -7,9 - 340: -11,15 - 412: -6,19 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 21: 30,-3 - 36: 25,1 - 37: 26,0 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 90: 9,-3 - 227: -3,-14 - 351: -4,8 - 546: 6,10 - 624: -34,4 - 731: 7,-19 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 321: -12,9 - 337: -15,15 - 440: -12,19 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 571: 8,21 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 16: 22,1 - 42: 27,-3 - 43: 26,-2 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 89: 15,1 - 225: 1,-10 - 361: 2,16 - 560: 14,15 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 318: -7,11 - 339: -11,16 - 423: -6,31 - - node: - color: '#FFFFFFFF' - id: WarnBox - decals: - 23: 34,-6 - 24: 34,-4 - 25: 34,2 - 26: 34,4 - - node: - color: '#FFFFFFFF' - id: WarnCornerSE - decals: - 1290: 20,-30 - - node: - color: '#FFFFFFFF' - id: WarnCornerSW - decals: - 1289: 24,-30 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleNE - decals: - 1250: 28,-32 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleNW - decals: - 1249: 34,-32 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleSE - decals: - 1248: 28,-29 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleSW - decals: - 1247: 34,-29 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 891: 21,-19 - 904: 31,-16 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 890: 23,-19 - 903: 33,-16 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 774: 29,-21 - 888: 21,-15 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 768: 29,-27 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 889: 23,-15 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 469: 3,30 - 470: 3,31 - 473: 3,32 - 478: 10,28 - 775: 29,-26 - 776: 29,-25 - 777: 29,-24 - 778: 29,-23 - 779: 29,-22 - 860: 29,-19 - 861: 29,-18 - 862: 29,-17 - 885: 21,-18 - 886: 21,-17 - 887: 21,-16 - 1293: 20,-29 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleE - decals: - 1190: 1,-17 - 1245: 28,-31 - 1246: 28,-30 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleN - decals: - 1188: 3,-19 - 1189: -1,-16 - 1191: -4,-19 - 1192: -5,-19 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleS - decals: - 1187: -1,-20 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleW - decals: - 1243: 34,-31 - 1244: 34,-30 - - node: - color: '#DE3A3A96' - id: WarnLineN - decals: - 523: 13,31 - 524: 5,31 - 537: 12,31 - 539: 12,31 - 540: 13,31 - 541: 5,31 - 542: 6,31 - 543: 6,31 - - node: - color: '#FFFFFFFF' - id: WarnLineN - decals: - 668: -11,-9 - 669: -12,-9 - 670: -13,-9 - 671: -14,-9 - 672: -15,-9 - 673: -16,-9 - 769: 34,-21 - 770: 33,-21 - 771: 32,-21 - 772: 31,-21 - 773: 30,-21 - 801: 34,-14 - 802: 33,-14 - 803: 32,-14 - 804: 31,-14 - 805: 30,-14 - 854: 26,-20 - 855: 25,-20 - 856: 24,-20 - 857: 21,-20 - 858: 20,-20 - 859: 19,-20 - 883: 22,-15 - 1234: 19,-26 - 1235: 20,-26 - 1236: 21,-26 - 1291: 19,-30 - 1292: 25,-30 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 444: -14,25 - 445: -14,27 - 446: -14,26 - 447: -14,24 - 448: -14,28 - 449: -14,29 - 450: -14,23 - 471: 15,30 - 472: 15,31 - 479: 8,28 - 532: 15,32 - 863: 29,-19 - 864: 29,-18 - 865: 29,-17 - 880: 23,-18 - 881: 23,-17 - 882: 23,-16 - 1294: 24,-29 - - node: - color: '#FFFFFFFF' - id: WarnLineW - decals: - 81: 11,-8 - 82: 12,-8 - 83: 13,-8 - 451: -10,31 - 662: -11,-5 - 663: -12,-5 - 664: -13,-5 - 665: -14,-5 - 666: -15,-5 - 667: -16,-5 - 764: 34,-27 - 765: 33,-27 - 766: 32,-27 - 767: 30,-27 - 789: 31,-27 - 848: 26,-20 - 849: 24,-20 - 850: 25,-20 - 851: 21,-20 - 852: 20,-20 - 853: 19,-20 - 884: 22,-19 - 902: 32,-16 - 1237: 21,-26 - 1238: 20,-26 - 1239: 19,-26 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - decals: - 1031: 24,21 - 1064: -24,2 - 1092: 22,10 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNw - decals: - 1032: 32,21 - 1090: 34,10 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSe - decals: - 1083: -3,-28 - 1091: 22,13 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSw - decals: - 1082: 1,-28 - 1093: 34,13 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 991: 20,19 - 992: 20,20 - 993: 20,21 - 994: 20,22 - 995: 20,18 - 1001: 18,18 - 1002: 18,19 - 1003: 18,20 - 1004: 18,21 - 1005: 18,22 - 1014: 30,18 - 1015: 30,17 - 1016: 30,16 - 1022: 24,22 - 1060: -24,3 - 1061: -24,4 - 1062: -24,5 - 1063: -24,6 - 1065: -23,10 - 1066: -23,11 - 1086: 22,11 - 1087: 22,12 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 1009: 26,18 - 1010: 27,18 - 1011: 28,18 - 1012: 29,18 - 1013: 30,18 - 1024: 31,21 - 1025: 30,21 - 1026: 29,21 - 1027: 28,21 - 1028: 27,21 - 1029: 26,21 - 1030: 25,21 - 1044: 23,10 - 1045: 24,10 - 1046: 25,10 - 1047: 26,10 - 1048: 27,10 - 1049: 28,10 - 1050: 29,10 - 1051: 30,10 - 1052: 31,10 - 1053: 32,10 - 1054: 33,10 - 1055: -19,2 - 1056: -20,2 - 1057: -21,2 - 1058: -22,2 - 1059: -23,2 - 1074: -22,8 - 1075: -23,8 - 1076: -24,8 - 1077: -25,8 - 1078: -26,8 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - decals: - 1017: 30,16 - 1018: 29,16 - 1019: 28,16 - 1020: 27,16 - 1021: 26,16 - 1033: 33,13 - 1034: 32,13 - 1035: 31,13 - 1036: 30,13 - 1037: 29,13 - 1038: 28,13 - 1039: 27,13 - 1040: 26,13 - 1041: 23,13 - 1042: 24,13 - 1043: 25,13 - 1069: -22,12 - 1070: -23,12 - 1071: -24,12 - 1072: -25,12 - 1073: -26,12 - 1079: 0,-28 - 1080: -1,-28 - 1081: -2,-28 - 1084: 1,0 - 1085: -3,0 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 996: 19,18 - 997: 19,19 - 998: 19,20 - 999: 19,21 - 1000: 19,22 - 1006: 26,16 - 1007: 26,17 - 1008: 26,18 - 1023: 32,22 - 1067: -25,10 - 1068: -25,11 - 1088: 34,11 - 1089: 34,12 - type: DecalGrid - - version: 2 - data: - tiles: - -1,-1: - 0: 65535 - 0,-1: - 0: 65535 - -4,-4: - 0: 52431 - -4,-3: - 0: 65532 - -4,-2: - 0: 65535 - -4,-1: - 0: 65535 - -3,-4: - 0: 64719 - -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 - 0,-4: - 0: 65535 - 0,-3: - 0: 65535 - 0,-2: - 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,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,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,-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,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 - 0,-8: - 0: 65535 - 0,-7: - 0: 65535 - 0,-6: - 0: 65535 - 0,-5: - 0: 65535 - 1,-8: - 0: 65535 - 1,-7: - 0: 65535 - 1,-6: - 0: 65535 - 1,-5: - 0: 65535 - 2,-8: - 0: 65535 - 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,-6: - 0: 65535 - 4,-5: - 0: 65535 - 5,-6: - 0: 65535 - 5,-5: - 0: 65535 - 6,-6: - 0: 65535 - 6,-5: - 0: 65535 - 7,-6: - 0: 65535 - 7,-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,0: - 0: 65535 - 8,1: - 0: 65535 - 8,2: - 0: 65535 - 8,3: - 0: 65535 - 8,-4: - 0: 65535 - 8,-3: - 0: 65535 - 8,-2: - 0: 65535 - 8,-1: - 0: 65535 - -4,4: - 0: 61439 - -4,5: - 0: 65262 - -4,6: - 0: 65535 - -4,7: - 0: 61183 - -3,4: - 0: 65535 - -3,5: - 0: 65535 - -3,6: - 0: 65535 - -3,7: - 0: 65535 - -2,4: - 0: 65535 - -2,5: - 0: 65535 - -2,6: - 0: 65535 - -2,7: - 0: 65535 - -1,4: - 0: 65535 - -1,5: - 0: 65535 - -1,6: - 0: 12287 - -1,7: - 0: 12079 - 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 - 8,-6: - 0: 65535 - 8,-5: - 0: 65535 - 4,4: - 0: 65535 - 4,5: - 0: 65535 - 4,6: - 0: 30719 - 4,7: - 0: 30583 - 5,4: - 0: 65535 - 5,5: - 0: 65535 - 5,6: - 0: 255 - 6,4: - 0: 65535 - 6,5: - 0: 65535 - 6,6: - 0: 255 - 7,4: - 0: 65535 - 7,5: - 0: 65535 - 7,6: - 0: 255 - -6,4: - 0: 14 - -5,4: - 0: 2185 - -5,5: - 0: 32768 - -5,6: - 0: 34952 - -5,7: - 0: 136 - -8,0: - 0: 65535 - -8,1: - 0: 65535 - -7,0: - 0: 65535 - -7,1: - 0: 65535 - -7,2: - 0: 65535 - -7,3: - 0: 255 - -6,0: - 0: 65535 - -6,1: - 0: 65535 - -6,2: - 0: 65535 - -6,3: - 0: 61183 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - -5,2: - 0: 65535 - -5,3: - 0: 65535 - -4,8: - 0: 14 - -3,8: - 0: 4095 - -2,8: - 0: 287 - -1,8: - 0: 15 - 8,4: - 0: 65535 - 8,5: - 0: 65535 - 8,6: - 0: 255 - 0,8: - 0: 4095 - 1,8: - 0: 4095 - 2,8: - 0: 4095 - 3,8: - 0: 4095 - 4,8: - 0: 1911 - -8,-1: - 0: 65535 - -8,-3: - 0: 34944 - -8,-2: - 0: 34952 - -7,-3: - 0: 65520 - -7,-2: - 0: 65535 - -7,-1: - 0: 65535 - -6,-3: - 0: 65520 - -6,-2: - 0: 65535 - -6,-1: - 0: 65535 - -5,-3: - 0: 65520 - -5,-2: - 0: 65535 - -5,-1: - 0: 65535 - -9,-1: - 0: 61166 - -9,0: - 0: 61166 - -9,1: - 0: 61166 - -4,-9: - 0: 65520 - -3,-9: - 0: 65520 - -2,-9: - 0: 65535 - -1,-9: - 0: 65535 - 0,-9: - 0: 65535 - 1,-9: - 0: 65535 - 2,-9: - 0: 65535 - 3,-9: - 0: 65535 - 4,-8: - 0: 30719 - 1: 34816 - 4,-7: - 0: 65535 - 5,-8: - 0: 61183 - 1: 4352 - 5,-7: - 0: 65535 - 6,-8: - 0: 52479 - 2: 13056 - 6,-7: - 0: 65535 - 7,-8: - 0: 65535 - 7,-7: - 0: 65535 - 8,-8: - 0: 65535 - 8,-7: - 0: 65535 - 4,-9: - 0: 65280 - 5,-9: - 0: 65280 - 6,-9: - 0: 65280 - 7,-9: - 0: 61440 - 8,-9: - 0: 61440 - -5,-4: - 0: 8 - -2,-12: - 0: 61440 - -2,-11: - 0: 65535 - -2,-10: - 0: 65535 - -1,-12: - 0: 65520 - -1,-11: - 0: 65535 - -1,-10: - 0: 65535 - 0,-12: - 0: 63344 - 0,-11: - 0: 65535 - 0,-10: - 0: 65535 - 1,-12: - 0: 28672 - 1,-11: - 0: 30583 - 1,-10: - 0: 30583 - -6,-9: - 0: 52352 - -5,-9: - 0: 65520 - -6,-8: - 0: 65484 - -6,-7: - 0: 65535 - -6,-6: - 0: 4095 - -5,-8: - 0: 65535 - -5,-7: - 0: 65535 - -5,-6: - 0: 36863 - -5,-5: - 0: 34952 - 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.15 - moles: - - 6666.982 - - 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 - chunkSize: 4 - type: GridAtmosphere - - type: OccluderTree - - type: Shuttle - - type: RadiationGridResistance - - shakeTimes: 10 - type: GravityShake - - type: GasTileOverlay - - type: SpreaderGrid - - type: GridPathfinding -- proto: AcousticGuitarInstrument - entities: - - uid: 1455 - components: - - pos: 15.537778,1.6263883 - parent: 1668 - type: Transform - - uid: 2742 - components: - - pos: 4.5448904,18.624214 - parent: 1668 - type: Transform -- proto: AirCanister - entities: - - uid: 3695 - components: - - pos: -16.5,4.5 - parent: 1668 - type: Transform -- proto: Airlock - entities: - - uid: 5314 - components: - - pos: 5.5,-16.5 - parent: 1668 - type: Transform -- proto: AirlockArmoryLocked - entities: - - uid: 2555 - components: - - pos: 7.5,19.5 - parent: 1668 - type: Transform -- proto: AirlockAtmosphericsLocked - entities: - - uid: 4746 - components: - - pos: 14.5,-30.5 - parent: 1668 - type: Transform - - uid: 5403 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-30.5 - parent: 1668 - type: Transform - - uid: 5404 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-27.5 - parent: 1668 - type: Transform -- proto: AirlockBarLocked - entities: - - uid: 4343 - components: - - pos: 11.5,-22.5 - parent: 1668 - type: Transform -- proto: AirlockBrigGlassLocked - entities: - - uid: 2299 - components: - - pos: 28.5,14.5 - parent: 1668 - type: Transform - - uid: 2316 - components: - - pos: 23.5,20.5 - parent: 1668 - type: Transform - - uid: 2340 - components: - - pos: 24.5,18.5 - parent: 1668 - type: Transform - - uid: 2342 - components: - - pos: 22.5,14.5 - parent: 1668 - type: Transform -- proto: AirlockBrigLocked - entities: - - uid: 2300 - components: - - pos: 21.5,22.5 - parent: 1668 - type: Transform - - uid: 2317 - components: - - pos: 19.5,17.5 - parent: 1668 - type: Transform - - uid: 2343 - components: - - pos: 33.5,20.5 - parent: 1668 - type: Transform - - uid: 2344 - components: - - pos: 21.5,18.5 - parent: 1668 - type: Transform -- proto: AirlockCargoGlassLocked - entities: - - uid: 1191 - components: - - pos: -5.5,7.5 - parent: 1668 - type: Transform - - uid: 1629 - components: - - pos: -6.5,13.5 - parent: 1668 - type: Transform - - uid: 1630 - components: - - pos: -10.5,13.5 - parent: 1668 - type: Transform - - uid: 1631 - components: - - pos: -8.5,15.5 - parent: 1668 - type: Transform -- proto: AirlockCargoLocked - entities: - - uid: 1192 - components: - - pos: -5.5,5.5 - parent: 1668 - type: Transform - - uid: 1632 - components: - - pos: -10.5,18.5 - parent: 1668 - type: Transform - - uid: 1633 - components: - - pos: -6.5,18.5 - parent: 1668 - type: Transform -- proto: AirlockCommandGlassLocked - entities: - - uid: 6395 - components: - - pos: -3.5,-42.5 - parent: 1668 - type: Transform - - uid: 6396 - components: - - pos: 2.5,-42.5 - parent: 1668 - type: Transform -- proto: AirlockEngineeringGlassLocked - entities: - - uid: 5175 - components: - - pos: 32.5,-19.5 - parent: 1668 - type: Transform -- proto: AirlockEngineeringLocked - entities: - - uid: 1131 - components: - - pos: 17.5,-12.5 - parent: 1668 - type: Transform - - uid: 1177 - components: - - pos: 18.5,-14.5 - parent: 1668 - type: Transform - - uid: 1534 - components: - - pos: -0.5,17.5 - parent: 1668 - type: Transform - - uid: 2522 - components: - - pos: 14.5,16.5 - parent: 1668 - type: Transform - - uid: 3948 - components: - - pos: -28.5,4.5 - parent: 1668 - type: Transform - - uid: 4755 - components: - - pos: 18.5,-25.5 - parent: 1668 - type: Transform - - uid: 4756 - components: - - pos: 22.5,-25.5 - parent: 1668 - type: Transform - - uid: 4763 - components: - - pos: 16.5,-19.5 - parent: 1668 - type: Transform - - uid: 6005 - components: - - pos: -17.5,-29.5 - parent: 1668 - type: Transform -- proto: AirlockExternalGlass - entities: - - uid: 481 - components: - - pos: 33.5,4.5 - parent: 1668 - type: Transform - - uid: 482 - components: - - pos: 33.5,2.5 - parent: 1668 - type: Transform - - uid: 483 - components: - - pos: 33.5,-3.5 - parent: 1668 - type: Transform - - uid: 484 - components: - - pos: 33.5,-5.5 - parent: 1668 - type: Transform - - uid: 1615 - components: - - pos: -14.5,25.5 - parent: 1668 - type: Transform - - uid: 1616 - components: - - pos: -14.5,27.5 - parent: 1668 - type: Transform - - uid: 3970 - components: - - pos: -32.5,-1.5 - parent: 1668 - type: Transform - - uid: 3971 - components: - - pos: -32.5,0.5 - parent: 1668 - type: Transform - - uid: 6284 - components: - - pos: -1.5,-44.5 - parent: 1668 - type: Transform - - uid: 6285 - components: - - pos: 0.5,-44.5 - parent: 1668 - type: Transform -- proto: AirlockExternalGlassLocked - entities: - - uid: 1673 - components: - - pos: -9.5,32.5 - parent: 1668 - type: Transform - - uid: 2010 - components: - - pos: -0.5,22.5 - parent: 1668 - type: Transform - - uid: 4243 - components: - - pos: -13.5,-17.5 - parent: 1668 - type: Transform - - uid: 5961 - components: - - pos: -21.5,-26.5 - parent: 1668 - type: Transform - - uid: 5962 - components: - - pos: -21.5,-24.5 - parent: 1668 - type: Transform -- proto: AirlockExternalGlassShuttleEmergencyLocked - entities: - - uid: 434 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,4.5 - parent: 1668 - type: Transform - - uid: 435 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,2.5 - parent: 1668 - type: Transform - - uid: 436 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-3.5 - parent: 1668 - type: Transform - - uid: 437 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-5.5 - parent: 1668 - type: Transform -- proto: AirlockExternalGlassShuttleLocked - entities: - - uid: 1613 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,25.5 - parent: 1668 - type: Transform - - uid: 1614 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,27.5 - parent: 1668 - type: Transform - - uid: 1672 - components: - - rot: 3.141592653589793 rad - pos: -9.5,34.5 - parent: 1668 - type: Transform - - uid: 3968 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-1.5 - parent: 1668 - type: Transform - - uid: 3969 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,0.5 - parent: 1668 - type: Transform - - uid: 5959 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-24.5 - parent: 1668 - type: Transform - - uid: 5960 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-26.5 - parent: 1668 - type: Transform - - uid: 6282 - components: - - pos: -1.5,-46.5 - parent: 1668 - type: Transform - - uid: 6283 - components: - - pos: 0.5,-46.5 - parent: 1668 - type: Transform -- proto: AirlockExternalLocked - entities: - - uid: 777 - components: - - pos: -9.5,-11.5 - parent: 1668 - type: Transform - - uid: 2011 - components: - - pos: -2.5,25.5 - parent: 1668 - type: Transform - - uid: 4242 - components: - - pos: -13.5,-15.5 - parent: 1668 - type: Transform -- proto: AirlockFreezer - entities: - - uid: 3419 - components: - - pos: -21.5,13.5 - parent: 1668 - type: Transform -- proto: AirlockGlass - entities: - - uid: 3947 - components: - - pos: -30.5,2.5 - parent: 1668 - type: Transform - - uid: 4258 - components: - - pos: -0.5,-14.5 - parent: 1668 - type: Transform - - uid: 4259 - components: - - pos: 21.5,12.5 - parent: 1668 - type: Transform - - uid: 4260 - components: - - pos: 21.5,11.5 - parent: 1668 - type: Transform - - uid: 4287 - components: - - pos: -6.5,-18.5 - parent: 1668 - type: Transform - - uid: 4339 - components: - - pos: 5.5,-18.5 - parent: 1668 - type: Transform - - uid: 4575 - components: - - pos: -0.5,-24.5 - parent: 1668 - type: Transform - - uid: 6577 - components: - - pos: -6.5,-30.5 - parent: 1668 - type: Transform - - uid: 6578 - components: - - pos: 5.5,-30.5 - parent: 1668 - type: Transform - - uid: 6592 - components: - - pos: -0.5,-20.5 - parent: 1668 - type: Transform -- proto: AirlockKitchenGlassLocked - entities: - - uid: 4342 - components: - - pos: -7.5,-24.5 - parent: 1668 - type: Transform -- proto: AirlockKitchenLocked - entities: - - uid: 4341 - components: - - pos: -12.5,-22.5 - parent: 1668 - type: Transform -- proto: AirlockMedicalGlassLocked - entities: - - uid: 557 - components: - - pos: 12.5,-3.5 - parent: 1668 - type: Transform - - uid: 558 - components: - - pos: 14.5,-3.5 - parent: 1668 - type: Transform - - uid: 730 - components: - - pos: 4.5,-8.5 - parent: 1668 - type: Transform -- proto: AirlockMedicalLocked - entities: - - uid: 574 - components: - - pos: 16.5,-6.5 - parent: 1668 - type: Transform - - uid: 729 - components: - - pos: 4.5,-6.5 - parent: 1668 - type: Transform - - uid: 731 - components: - - pos: 8.5,-11.5 - parent: 1668 - type: Transform - - uid: 852 - components: - - pos: 16.5,-11.5 - parent: 1668 - type: Transform - - uid: 854 - components: - - pos: 12.5,-17.5 - parent: 1668 - type: Transform -- proto: AirlockSecurityGlassLocked - entities: - - uid: 130 - components: - - pos: -7.5,-11.5 - parent: 1668 - type: Transform - - uid: 774 - components: - - pos: -5.5,-8.5 - parent: 1668 - type: Transform - - uid: 974 - components: - - pos: 23.5,-11.5 - parent: 1668 - type: Transform - - uid: 2497 - components: - - pos: 12.5,16.5 - parent: 1668 - type: Transform - - uid: 2498 - components: - - pos: 11.5,16.5 - parent: 1668 - type: Transform - - uid: 2499 - components: - - pos: 12.5,19.5 - parent: 1668 - type: Transform - - uid: 2500 - components: - - pos: 11.5,19.5 - parent: 1668 - type: Transform -- proto: AirlockSecurityLocked - entities: - - uid: 509 - components: - - pos: 18.5,-11.5 - parent: 1668 - type: Transform - - uid: 549 - components: - - pos: 18.5,5.5 - parent: 1668 - type: Transform - - uid: 550 - components: - - pos: 16.5,5.5 - parent: 1668 - type: Transform - - uid: 551 - components: - - pos: 8.5,3.5 - parent: 1668 - type: Transform - - uid: 552 - components: - - pos: 6.5,3.5 - parent: 1668 - type: Transform - - uid: 775 - components: - - pos: -5.5,-6.5 - parent: 1668 - type: Transform - - uid: 2825 - components: - - pos: 5.5,23.5 - parent: 1668 - type: Transform -- proto: APCBasic - entities: - - uid: 688 - components: - - pos: -3.5,5.5 - parent: 1668 - type: Transform - - uid: 856 - components: - - pos: 20.5,6.5 - parent: 1668 - type: Transform - - uid: 905 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-7.5 - parent: 1668 - type: Transform - - uid: 963 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-10.5 - parent: 1668 - type: Transform - - uid: 977 - components: - - pos: 10.5,-3.5 - parent: 1668 - type: Transform - - uid: 978 - components: - - pos: 12.5,7.5 - parent: 1668 - type: Transform - - uid: 979 - components: - - pos: 9.5,2.5 - parent: 1668 - type: Transform - - uid: 1088 - components: - - pos: -2.5,2.5 - parent: 1668 - type: Transform - - uid: 1201 - components: - - pos: 12.5,-10.5 - parent: 1668 - type: Transform - - uid: 1235 - components: - - pos: 3.5,-8.5 - parent: 1668 - type: Transform - - uid: 1341 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-9.5 - parent: 1668 - type: Transform - - uid: 1674 - components: - - pos: -14.5,18.5 - parent: 1668 - type: Transform - - uid: 1675 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,17.5 - parent: 1668 - type: Transform - - uid: 1676 - components: - - pos: -8.5,13.5 - parent: 1668 - type: Transform - - uid: 1677 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,19.5 - parent: 1668 - type: Transform - - uid: 1955 - components: - - pos: 1.5,17.5 - parent: 1668 - type: Transform - - uid: 2013 - components: - - pos: -1.5,22.5 - parent: 1668 - type: Transform - - uid: 2562 - components: - - pos: 7.5,16.5 - parent: 1668 - type: Transform - - uid: 2563 - components: - - pos: 17.5,17.5 - parent: 1668 - type: Transform - - uid: 2564 - components: - - pos: 24.5,14.5 - parent: 1668 - type: Transform - - uid: 2565 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,19.5 - parent: 1668 - type: Transform - - uid: 2566 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,21.5 - parent: 1668 - type: Transform - - uid: 2944 - components: - - pos: 9.5,26.5 - parent: 1668 - type: Transform - - uid: 2945 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,18.5 - parent: 1668 - type: Transform - - uid: 2946 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,30.5 - parent: 1668 - type: Transform - - uid: 3463 - components: - - pos: -22.5,7.5 - parent: 1668 - type: Transform - - uid: 3464 - components: - - pos: -16.5,13.5 - parent: 1668 - type: Transform - - uid: 3465 - components: - - pos: -22.5,13.5 - parent: 1668 - type: Transform - - uid: 3466 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,6.5 - parent: 1668 - type: Transform - - uid: 3986 - components: - - pos: -31.5,2.5 - parent: 1668 - type: Transform - - uid: 3987 - components: - - pos: -31.5,7.5 - parent: 1668 - type: Transform - - uid: 3988 - components: - - pos: -21.5,-2.5 - parent: 1668 - type: Transform - - uid: 3989 - components: - - pos: -13.5,-2.5 - parent: 1668 - type: Transform - - uid: 3990 - components: - - pos: -17.5,1.5 - parent: 1668 - type: Transform - - uid: 4361 - components: - - pos: 34.5,-9.5 - parent: 1668 - type: Transform - - uid: 4475 - components: - - pos: -2.5,-24.5 - parent: 1668 - type: Transform - - uid: 4476 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-24.5 - parent: 1668 - type: Transform - - uid: 4477 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-24.5 - parent: 1668 - type: Transform - - uid: 4478 - components: - - pos: -9.5,-17.5 - parent: 1668 - type: Transform - - uid: 4479 - components: - - pos: 8.5,-17.5 - parent: 1668 - type: Transform - - uid: 4480 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-20.5 - parent: 1668 - type: Transform - - uid: 4977 - components: - - pos: 20.5,-12.5 - parent: 1668 - type: Transform - - uid: 4992 - components: - - pos: 18.5,-19.5 - parent: 1668 - type: Transform - - uid: 5133 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-23.5 - parent: 1668 - type: Transform - - uid: 5146 - components: - - pos: 29.5,-19.5 - parent: 1668 - type: Transform - - uid: 5257 - components: - - pos: 30.5,-14.5 - parent: 1668 - type: Transform - - uid: 5321 - components: - - pos: 32.5,-27.5 - parent: 1668 - type: Transform - - uid: 5423 - components: - - pos: 16.5,-28.5 - parent: 1668 - type: Transform - - uid: 5934 - components: - - pos: -16.5,-30.5 - parent: 1668 - type: Transform - - uid: 6004 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-22.5 - parent: 1668 - type: Transform - - uid: 6103 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-28.5 - parent: 1668 - type: Transform - - uid: 6180 - components: - - pos: 7.5,-30.5 - parent: 1668 - type: Transform - - uid: 6181 - components: - - pos: -8.5,-30.5 - parent: 1668 - type: Transform - - uid: 6277 - components: - - pos: -2.5,-34.5 - parent: 1668 - type: Transform - - uid: 6397 - components: - - pos: -2.5,-40.5 - parent: 1668 - type: Transform -- proto: Ash - entities: - - uid: 3828 - components: - - pos: -10.652057,6.7775984 - parent: 1668 - type: Transform -- proto: AtmosDeviceFanTiny - entities: - - uid: 438 - components: - - pos: 35.5,-5.5 - parent: 1668 - type: Transform - - uid: 439 - components: - - pos: 35.5,-3.5 - parent: 1668 - type: Transform - - uid: 440 - components: - - pos: 35.5,2.5 - parent: 1668 - type: Transform - - uid: 441 - components: - - pos: 35.5,4.5 - parent: 1668 - type: Transform - - uid: 553 - components: - - pos: 7.5,3.5 - parent: 1668 - type: Transform - - uid: 554 - components: - - pos: 17.5,5.5 - parent: 1668 - type: Transform - - uid: 555 - components: - - pos: 17.5,-6.5 - parent: 1668 - type: Transform - - uid: 556 - components: - - pos: 4.5,-7.5 - parent: 1668 - type: Transform - - uid: 763 - components: - - pos: -8.5,-11.5 - parent: 1668 - type: Transform - - uid: 1473 - components: - - pos: -5.5,6.5 - parent: 1668 - type: Transform - - uid: 1474 - components: - - pos: -5.5,-7.5 - parent: 1668 - type: Transform - - uid: 1634 - components: - - pos: -16.5,25.5 - parent: 1668 - type: Transform - - uid: 1635 - components: - - pos: -16.5,27.5 - parent: 1668 - type: Transform - - uid: 1671 - components: - - pos: -9.5,33.5 - parent: 1668 - type: Transform - - uid: 2012 - components: - - pos: -2.5,25.5 - parent: 1668 - type: Transform - - uid: 2921 - components: - - pos: 17.5,-11.5 - parent: 1668 - type: Transform - - uid: 4144 - components: - - pos: -34.5,-1.5 - parent: 1668 - type: Transform - - uid: 4145 - components: - - pos: -34.5,0.5 - parent: 1668 - type: Transform - - uid: 4241 - components: - - pos: -13.5,-16.5 - parent: 1668 - type: Transform - - uid: 5996 - components: - - pos: -23.5,-26.5 - parent: 1668 - type: Transform - - uid: 5997 - components: - - pos: -23.5,-24.5 - parent: 1668 - type: Transform - - uid: 6286 - components: - - pos: -1.5,-46.5 - parent: 1668 - type: Transform - - uid: 6287 - components: - - pos: 0.5,-46.5 - parent: 1668 - type: Transform -- proto: AtmosFixNitrogenMarker - entities: - - uid: 6789 - components: - - pos: 25.5,-28.5 - parent: 1668 - type: Transform - - uid: 6963 - components: - - pos: 24.5,-29.5 - parent: 1668 - type: Transform - - uid: 6964 - components: - - pos: 24.5,-29.5 - parent: 1668 - type: Transform - - uid: 6965 - components: - - pos: 24.5,-28.5 - parent: 1668 - type: Transform - - uid: 6966 - components: - - pos: 25.5,-29.5 - parent: 1668 - type: Transform -- proto: AtmosFixOxygenMarker - entities: - - uid: 5051 - components: - - pos: 19.5,-28.5 - parent: 1668 - type: Transform - - uid: 6967 - components: - - pos: 19.5,-28.5 - parent: 1668 - type: Transform - - uid: 6968 - components: - - pos: 19.5,-29.5 - parent: 1668 - type: Transform - - uid: 6969 - components: - - pos: 20.5,-28.5 - parent: 1668 - type: Transform - - uid: 6970 - components: - - pos: 20.5,-29.5 - parent: 1668 - type: Transform -- proto: Autolathe - entities: - - uid: 5310 - components: - - pos: 19.5,-22.5 - parent: 1668 - type: Transform -- proto: BarSignTheLooseGoose - entities: - - uid: 4345 - components: - - pos: 4.5,-24.5 - parent: 1668 - type: Transform - - uid: 4346 - components: - - pos: -5.5,-24.5 - parent: 1668 - type: Transform -- proto: Bed - entities: - - uid: 2718 - components: - - pos: 5.5,18.5 - parent: 1668 - type: Transform - - uid: 2763 - components: - - pos: 16.5,21.5 - parent: 1668 - type: Transform - - uid: 2774 - components: - - pos: 16.5,24.5 - parent: 1668 - type: Transform - - uid: 2864 - components: - - pos: 3.5,24.5 - parent: 1668 - type: Transform - - uid: 2865 - components: - - pos: 3.5,27.5 - parent: 1668 - type: Transform - - uid: 2866 - components: - - pos: 16.5,27.5 - parent: 1668 - type: Transform - - uid: 3624 - components: - - pos: -15.5,8.5 - parent: 1668 - type: Transform -- proto: BedsheetCentcom - entities: - - uid: 3625 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,8.5 - parent: 1668 - type: Transform - - uid: 6643 - components: - - pos: 13.5,-7.5 - parent: 1668 - type: Transform -- proto: BedsheetHOS - entities: - - uid: 2719 - components: - - name: Warden's - type: MetaData - - pos: 5.5,18.5 - parent: 1668 - type: Transform -- proto: BedsheetMedical - entities: - - uid: 1199 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-14.5 - parent: 1668 - type: Transform - - uid: 1200 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-13.5 - parent: 1668 - type: Transform -- proto: BedsheetOrange - entities: - - uid: 2764 - components: - - pos: 16.5,21.5 - parent: 1668 - type: Transform - - uid: 2775 - components: - - pos: 16.5,24.5 - parent: 1668 - type: Transform - - uid: 2867 - components: - - pos: 3.5,24.5 - parent: 1668 - type: Transform - - uid: 2868 - components: - - pos: 3.5,27.5 - parent: 1668 - type: Transform - - uid: 2869 - components: - - pos: 16.5,27.5 - parent: 1668 - type: Transform -- proto: BiomassReclaimer - entities: - - uid: 6604 - components: - - pos: 13.5,-15.5 - parent: 1668 - type: Transform -- proto: BlastDoor - entities: - - uid: 1552 - components: - - pos: -4.5,21.5 - parent: 1668 - type: Transform - - links: - - 1804 - type: DeviceLinkSink - - uid: 1607 - components: - - pos: -16.5,24.5 - parent: 1668 - type: Transform - - links: - - 1611 - type: DeviceLinkSink - - uid: 1608 - components: - - pos: -16.5,28.5 - parent: 1668 - type: Transform - - links: - - 1612 - type: DeviceLinkSink - - uid: 1609 - components: - - pos: -14.5,28.5 - parent: 1668 - type: Transform - - links: - - 1612 - type: DeviceLinkSink - - uid: 1610 - components: - - pos: -14.5,24.5 - parent: 1668 - type: Transform - - links: - - 1611 - type: DeviceLinkSink - - uid: 2790 - components: - - pos: 11.5,31.5 - parent: 1668 - type: Transform - - links: - - 2928 - type: DeviceLinkSink - - uid: 2886 - components: - - pos: 14.5,31.5 - parent: 1668 - type: Transform - - links: - - 2928 - type: DeviceLinkSink - - uid: 2925 - components: - - pos: 7.5,31.5 - parent: 1668 - type: Transform - - links: - - 2927 - type: DeviceLinkSink - - uid: 2926 - components: - - pos: 4.5,31.5 - parent: 1668 - type: Transform - - links: - - 2927 - type: DeviceLinkSink - - uid: 3787 - components: - - pos: -16.5,-7.5 - parent: 1668 - type: Transform - - links: - - 2920 - type: DeviceLinkSink - - uid: 3788 - components: - - pos: -16.5,-6.5 - parent: 1668 - type: Transform - - links: - - 2920 - type: DeviceLinkSink - - uid: 3789 - components: - - pos: -16.5,-5.5 - parent: 1668 - type: Transform - - links: - - 2920 - type: DeviceLinkSink - - uid: 4762 - components: - - pos: 18.5,-17.5 - parent: 1668 - type: Transform -- proto: BlastDoorExterior1Open - entities: - - uid: 710 - components: - - pos: 17.5,1.5 - parent: 1668 - type: Transform - - uid: 711 - components: - - pos: 17.5,0.5 - parent: 1668 - type: Transform - - uid: 712 - components: - - pos: 17.5,-0.5 - parent: 1668 - type: Transform - - uid: 713 - components: - - pos: 17.5,-1.5 - parent: 1668 - type: Transform - - uid: 714 - components: - - pos: 17.5,-2.5 - parent: 1668 - type: Transform -- proto: BlastDoorExterior2Open - entities: - - uid: 716 - components: - - pos: 7.5,-2.5 - parent: 1668 - type: Transform - - uid: 717 - components: - - pos: 7.5,-1.5 - parent: 1668 - type: Transform - - uid: 718 - components: - - pos: 7.5,-0.5 - parent: 1668 - type: Transform - - uid: 719 - components: - - pos: 7.5,0.5 - parent: 1668 - type: Transform - - uid: 720 - components: - - pos: 7.5,1.5 - parent: 1668 - type: Transform -- proto: BlastDoorOpen - entities: - - uid: 786 - components: - - pos: -1.5,-7.5 - parent: 1668 - type: Transform - - links: - - 789 - type: DeviceLinkSink - - uid: 787 - components: - - pos: -0.5,-7.5 - parent: 1668 - type: Transform - - links: - - 789 - type: DeviceLinkSink - - uid: 788 - components: - - pos: 0.5,-7.5 - parent: 1668 - type: Transform - - links: - - 789 - type: DeviceLinkSink - - uid: 1430 - components: - - pos: -1.5,6.5 - parent: 1668 - type: Transform - - uid: 1431 - components: - - pos: -0.5,6.5 - parent: 1668 - type: Transform - - uid: 1432 - components: - - pos: 0.5,6.5 - parent: 1668 - type: Transform - - uid: 1437 - components: - - pos: -8.5,-2.5 - parent: 1668 - type: Transform - - uid: 1438 - components: - - pos: -8.5,-1.5 - parent: 1668 - type: Transform - - uid: 1439 - components: - - pos: -8.5,-0.5 - parent: 1668 - type: Transform - - uid: 1440 - components: - - pos: -8.5,0.5 - parent: 1668 - type: Transform - - uid: 1441 - components: - - pos: -8.5,1.5 - parent: 1668 - type: Transform - - uid: 2146 - components: - - pos: 4.5,10.5 - parent: 1668 - type: Transform - - links: - - 2712 - type: DeviceLinkSink - - uid: 2147 - components: - - pos: 4.5,11.5 - parent: 1668 - type: Transform - - links: - - 2712 - type: DeviceLinkSink - - uid: 2148 - components: - - pos: 4.5,12.5 - parent: 1668 - type: Transform - - links: - - 2712 - type: DeviceLinkSink - - uid: 2149 - components: - - pos: 4.5,13.5 - parent: 1668 - type: Transform - - links: - - 2712 - type: DeviceLinkSink - - uid: 2150 - components: - - pos: 4.5,14.5 - parent: 1668 - type: Transform - - links: - - 2712 - type: DeviceLinkSink - - uid: 3864 - components: - - pos: -27.5,-1.5 - parent: 1668 - type: Transform - - uid: 3865 - components: - - pos: -27.5,-0.5 - parent: 1668 - type: Transform - - uid: 3866 - components: - - pos: -27.5,0.5 - parent: 1668 - type: Transform - - uid: 5234 - components: - - pos: 28.5,-25.5 - parent: 1668 - type: Transform - - links: - - 5242 - type: DeviceLinkSink - - uid: 5235 - components: - - pos: 28.5,-24.5 - parent: 1668 - type: Transform - - links: - - 5242 - type: DeviceLinkSink - - uid: 5236 - components: - - pos: 28.5,-23.5 - parent: 1668 - type: Transform - - links: - - 5242 - type: DeviceLinkSink - - uid: 5237 - components: - - pos: 28.5,-22.5 - parent: 1668 - type: Transform - - links: - - 5242 - type: DeviceLinkSink - - uid: 5238 - components: - - pos: 28.5,-21.5 - parent: 1668 - type: Transform - - links: - - 5242 - type: DeviceLinkSink - - uid: 5239 - components: - - pos: 31.5,-19.5 - parent: 1668 - type: Transform - - links: - - 5242 - type: DeviceLinkSink - - uid: 5240 - components: - - pos: 33.5,-19.5 - parent: 1668 - type: Transform - - links: - - 5242 - type: DeviceLinkSink - - uid: 5241 - components: - - pos: 32.5,-19.5 - parent: 1668 - type: Transform - - links: - - 5242 - type: DeviceLinkSink - - uid: 5951 - components: - - pos: -16.5,-27.5 - parent: 1668 - type: Transform - - uid: 5952 - components: - - pos: -16.5,-26.5 - parent: 1668 - type: Transform - - uid: 5953 - components: - - pos: -16.5,-25.5 - parent: 1668 - type: Transform - - uid: 5954 - components: - - pos: -16.5,-24.5 - parent: 1668 - type: Transform - - uid: 5955 - components: - - pos: -16.5,-23.5 - parent: 1668 - type: Transform - - uid: 6521 - components: - - pos: -2.5,-39.5 - parent: 1668 - type: Transform - - links: - - 6442 - type: DeviceLinkSink - - uid: 6522 - components: - - pos: -1.5,-39.5 - parent: 1668 - type: Transform - - links: - - 6442 - type: DeviceLinkSink - - uid: 6523 - components: - - pos: -0.5,-39.5 - parent: 1668 - type: Transform - - links: - - 6442 - type: DeviceLinkSink - - uid: 6524 - components: - - pos: 0.5,-39.5 - parent: 1668 - type: Transform - - links: - - 6442 - type: DeviceLinkSink - - uid: 6525 - components: - - pos: 1.5,-39.5 - parent: 1668 - type: Transform - - links: - - 6442 - type: DeviceLinkSink -- proto: Bookshelf - entities: - - uid: 2370 - components: - - pos: 23.5,23.5 - parent: 1668 - type: Transform - - uid: 2371 - components: - - pos: 24.5,23.5 - parent: 1668 - type: Transform - - uid: 2372 - components: - - pos: 25.5,23.5 - parent: 1668 - type: Transform - - uid: 2373 - components: - - pos: 32.5,23.5 - parent: 1668 - type: Transform - - uid: 2374 - components: - - pos: 33.5,23.5 - parent: 1668 - type: Transform - - uid: 2375 - components: - - pos: 31.5,23.5 - parent: 1668 - type: Transform - - uid: 2376 - components: - - pos: 26.5,10.5 - parent: 1668 - type: Transform - - uid: 2377 - components: - - pos: 25.5,10.5 - parent: 1668 - type: Transform - - uid: 2378 - components: - - pos: 24.5,10.5 - parent: 1668 - type: Transform - - uid: 2379 - components: - - pos: 30.5,10.5 - parent: 1668 - type: Transform - - uid: 2380 - components: - - pos: 31.5,10.5 - parent: 1668 - type: Transform - - uid: 2382 - components: - - pos: 32.5,10.5 - parent: 1668 - type: Transform - - uid: 3433 - components: - - pos: -24.5,2.5 - parent: 1668 - type: Transform - - uid: 3434 - components: - - pos: -26.5,10.5 - parent: 1668 - type: Transform - - uid: 3821 - components: - - pos: -25.5,-3.5 - parent: 1668 - type: Transform - - uid: 4185 - components: - - pos: -27.5,-7.5 - parent: 1668 - type: Transform - - uid: 4186 - components: - - pos: -27.5,-6.5 - parent: 1668 - type: Transform - - uid: 4187 - components: - - pos: -27.5,-5.5 - parent: 1668 - type: Transform -- proto: BookshelfFilled - entities: - - uid: 3631 - components: - - pos: 20.5,10.5 - parent: 1668 - type: Transform - - uid: 3716 - components: - - pos: 16.5,16.5 - parent: 1668 - type: Transform - - uid: 3717 - components: - - pos: 16.5,15.5 - parent: 1668 - type: Transform - - uid: 6607 - components: - - pos: 19.5,10.5 - parent: 1668 - type: Transform - - uid: 6650 - components: - - pos: 17.5,10.5 - parent: 1668 - type: Transform - - uid: 6933 - components: - - pos: 20.5,14.5 - parent: 1668 - type: Transform - - uid: 6934 - components: - - pos: 20.5,15.5 - parent: 1668 - type: Transform - - uid: 6935 - components: - - pos: 20.5,16.5 - parent: 1668 - type: Transform -- proto: BoozeDispenser - entities: - - uid: 4426 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-24.5 - parent: 1668 - type: Transform - - uid: 4428 - components: - - pos: 6.5,-21.5 - parent: 1668 - type: Transform -- proto: BoxFlashbang - entities: - - uid: 1450 - components: - - pos: 13.475631,6.6059804 - parent: 1668 - type: Transform -- proto: BoxFolderBlack - entities: - - uid: 2236 - components: - - pos: -8.478459,8.547297 - parent: 1668 - type: Transform - - uid: 3750 - components: - - pos: -20.479141,11.485098 - parent: 1668 - type: Transform -- proto: BoxFolderBlue - entities: - - uid: 1443 - components: - - pos: -0.35287756,1.4752237 - parent: 1668 - type: Transform - - uid: 2462 - components: - - pos: 30.518238,17.551378 - parent: 1668 - type: Transform - - uid: 2463 - components: - - pos: 29.486988,21.410753 - parent: 1668 - type: Transform - - uid: 3839 - components: - - pos: -24.426022,-5.7340455 - parent: 1668 - type: Transform -- proto: BoxFolderRed - entities: - - uid: 1398 - components: - - pos: -3.4754791,-12.432284 - parent: 1668 - type: Transform - - uid: 1444 - components: - - pos: -0.22787756,1.6627237 - parent: 1668 - type: Transform - - uid: 2461 - components: - - pos: 27.393238,17.582628 - parent: 1668 - type: Transform - - uid: 3838 - components: - - pos: -24.551022,-5.5465455 - parent: 1668 - type: Transform -- proto: BoxFolderWhite - entities: - - uid: 1397 - components: - - pos: 2.5401459,-12.541659 - parent: 1668 - type: Transform -- proto: BoxFolderYellow - entities: - - uid: 2230 - components: - - pos: -15.424221,14.516905 - parent: 1668 - type: Transform - - uid: 2231 - components: - - pos: -8.454054,12.663795 - parent: 1668 - type: Transform - - uid: 2232 - components: - - pos: -12.532179,10.67942 - parent: 1668 - type: Transform - - uid: 6612 - components: - - pos: 2.170168,-2.5148773 - parent: 1668 - type: Transform - - uid: 6618 - components: - - pos: 2.060793,-2.4055023 - parent: 1668 - type: Transform -- proto: BoxHandcuff - entities: - - uid: 516 - components: - - pos: 21.459097,-10.359755 - parent: 1668 - type: Transform - - uid: 1453 - components: - - pos: 15.460006,6.6372304 - parent: 1668 - type: Transform - - uid: 3150 - components: - - pos: 10.465678,25.678463 - parent: 1668 - type: Transform - - uid: 3898 - components: - - pos: -12.656932,-5.6960163 - parent: 1668 - type: Transform -- proto: BoxLatexGloves - entities: - - uid: 4391 - components: - - pos: 10.34866,-7.2899737 - parent: 1668 - type: Transform -- proto: BoxPDA - entities: - - uid: 1457 - components: - - pos: 1.5702643,-2.4016738 - parent: 1668 - type: Transform -- proto: BoxSterileMask - entities: - - uid: 627 - components: - - pos: 10.430174,-7.5213776 - parent: 1668 - type: Transform -- proto: BoxZiptie - entities: - - uid: 4696 - components: - - pos: 28.527084,-11.476642 - parent: 1668 - type: Transform -- proto: BriefcaseBrownFilled - entities: - - uid: 2468 - components: - - pos: 34.408863,23.770128 - parent: 1668 - type: Transform - - uid: 2469 - components: - - pos: 34.533863,23.582628 - parent: 1668 - type: Transform - - uid: 2470 - components: - - pos: 32.486988,19.707628 - parent: 1668 - type: Transform -- proto: BrigTimer - entities: - - uid: 3723 - components: - - pos: 4.5,26.5 - parent: 1668 - type: Transform - - linkedPorts: - 2832: - - Start: Close - - Timer: AutoClose - - Timer: Open - type: DeviceLinkSource - - uid: 3870 - components: - - pos: 14.5,29.5 - parent: 1668 - type: Transform - - linkedPorts: - 2863: - - Start: Close - - Timer: AutoClose - - Timer: Open - type: DeviceLinkSource - - uid: 3906 - components: - - pos: 14.5,26.5 - parent: 1668 - type: Transform - - linkedPorts: - 2776: - - Start: Close - - Timer: AutoClose - - Timer: Open - type: DeviceLinkSource - - uid: 6602 - components: - - pos: 4.5,29.5 - parent: 1668 - type: Transform - - linkedPorts: - 2862: - - Start: Close - - Timer: AutoClose - - Timer: Open - type: DeviceLinkSource - - uid: 6649 - components: - - pos: 14.5,23.5 - parent: 1668 - type: Transform - - linkedPorts: - 2558: - - Start: Close - - Timer: AutoClose - - Timer: Open - type: DeviceLinkSource -- proto: C4 - entities: - - uid: 1079 - components: - - pos: -12.328807,-3.4569058 - parent: 1668 - type: Transform - - uid: 3894 - components: - - pos: -12.516307,-3.4100308 - parent: 1668 - type: Transform -- proto: CableApcExtension - entities: - - uid: 857 - components: - - pos: 20.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 858 - components: - - pos: 20.5,5.5 - parent: 1668 - type: Transform - - uid: 859 - components: - - pos: 20.5,4.5 - parent: 1668 - type: Transform - - uid: 860 - components: - - pos: 20.5,3.5 - parent: 1668 - type: Transform - - uid: 861 - components: - - pos: 20.5,2.5 - parent: 1668 - type: Transform - - uid: 862 - components: - - pos: 21.5,2.5 - parent: 1668 - type: Transform - - uid: 863 - components: - - pos: 22.5,2.5 - parent: 1668 - type: Transform - - uid: 864 - components: - - pos: 23.5,2.5 - parent: 1668 - type: Transform - - uid: 865 - components: - - pos: 24.5,2.5 - parent: 1668 - type: Transform - - uid: 866 - components: - - pos: 25.5,2.5 - parent: 1668 - type: Transform - - uid: 867 - components: - - pos: 26.5,2.5 - parent: 1668 - type: Transform - - uid: 868 - components: - - pos: 27.5,2.5 - parent: 1668 - type: Transform - - uid: 869 - components: - - pos: 28.5,2.5 - parent: 1668 - type: Transform - - uid: 870 - components: - - pos: 29.5,2.5 - parent: 1668 - type: Transform - - uid: 871 - components: - - pos: 30.5,2.5 - parent: 1668 - type: Transform - - uid: 872 - components: - - pos: 31.5,2.5 - parent: 1668 - type: Transform - - uid: 873 - components: - - pos: 32.5,2.5 - parent: 1668 - type: Transform - - uid: 874 - components: - - pos: 33.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 875 - components: - - pos: 34.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 876 - components: - - pos: 21.5,4.5 - parent: 1668 - type: Transform - - uid: 877 - components: - - pos: 22.5,4.5 - parent: 1668 - type: Transform - - uid: 878 - components: - - pos: 23.5,4.5 - parent: 1668 - type: Transform - - uid: 879 - components: - - pos: 24.5,4.5 - parent: 1668 - type: Transform - - uid: 880 - components: - - pos: 25.5,4.5 - parent: 1668 - type: Transform - - uid: 881 - components: - - pos: 26.5,4.5 - parent: 1668 - type: Transform - - uid: 882 - components: - - pos: 27.5,4.5 - parent: 1668 - type: Transform - - uid: 883 - components: - - pos: 28.5,4.5 - parent: 1668 - type: Transform - - uid: 884 - components: - - pos: 29.5,4.5 - parent: 1668 - type: Transform - - uid: 885 - components: - - pos: 30.5,4.5 - parent: 1668 - type: Transform - - uid: 886 - components: - - pos: 31.5,4.5 - parent: 1668 - type: Transform - - uid: 887 - components: - - pos: 32.5,4.5 - parent: 1668 - type: Transform - - uid: 888 - components: - - pos: 33.5,4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 889 - components: - - pos: 26.5,5.5 - parent: 1668 - type: Transform - - uid: 890 - components: - - pos: 30.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 891 - components: - - pos: 28.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 892 - components: - - pos: 20.5,-2.5 - parent: 1668 - type: Transform - - uid: 893 - components: - - pos: 24.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 894 - components: - - pos: 20.5,-1.5 - parent: 1668 - type: Transform - - uid: 895 - components: - - pos: 20.5,-0.5 - parent: 1668 - type: Transform - - uid: 896 - components: - - pos: 32.5,1.5 - parent: 1668 - type: Transform - - uid: 897 - components: - - pos: 32.5,0.5 - parent: 1668 - type: Transform - - uid: 899 - components: - - pos: 29.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 900 - components: - - pos: 28.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 901 - components: - - pos: 31.5,5.5 - parent: 1668 - type: Transform - - uid: 902 - components: - - pos: 24.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 903 - components: - - pos: 23.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 904 - components: - - pos: 22.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 906 - components: - - pos: 20.5,-7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 907 - components: - - pos: 20.5,-6.5 - parent: 1668 - type: Transform - - uid: 908 - components: - - pos: 20.5,-5.5 - parent: 1668 - type: Transform - - uid: 909 - components: - - pos: 20.5,-4.5 - parent: 1668 - type: Transform - - uid: 910 - components: - - pos: 20.5,-3.5 - parent: 1668 - type: Transform - - uid: 911 - components: - - pos: 21.5,-3.5 - parent: 1668 - type: Transform - - uid: 912 - components: - - pos: 22.5,-3.5 - parent: 1668 - type: Transform - - uid: 913 - components: - - pos: 23.5,-3.5 - parent: 1668 - type: Transform - - uid: 914 - components: - - pos: 24.5,-3.5 - parent: 1668 - type: Transform - - uid: 915 - components: - - pos: 25.5,-3.5 - parent: 1668 - type: Transform - - uid: 916 - components: - - pos: 26.5,-3.5 - parent: 1668 - type: Transform - - uid: 917 - components: - - pos: 27.5,-3.5 - parent: 1668 - type: Transform - - uid: 918 - components: - - pos: 28.5,-3.5 - parent: 1668 - type: Transform - - uid: 919 - components: - - pos: 29.5,-3.5 - parent: 1668 - type: Transform - - uid: 920 - components: - - pos: 30.5,-3.5 - parent: 1668 - type: Transform - - uid: 921 - components: - - pos: 31.5,-3.5 - parent: 1668 - type: Transform - - uid: 922 - components: - - pos: 32.5,-3.5 - parent: 1668 - type: Transform - - uid: 923 - components: - - pos: 33.5,-3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 924 - components: - - pos: 34.5,-3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 925 - components: - - pos: 21.5,-5.5 - parent: 1668 - type: Transform - - uid: 926 - components: - - pos: 22.5,-5.5 - parent: 1668 - type: Transform - - uid: 927 - components: - - pos: 23.5,-5.5 - parent: 1668 - type: Transform - - uid: 928 - components: - - pos: 24.5,-5.5 - parent: 1668 - type: Transform - - uid: 929 - components: - - pos: 25.5,-5.5 - parent: 1668 - type: Transform - - uid: 930 - components: - - pos: 26.5,-5.5 - parent: 1668 - type: Transform - - uid: 931 - components: - - pos: 27.5,-5.5 - parent: 1668 - type: Transform - - uid: 932 - components: - - pos: 28.5,-5.5 - parent: 1668 - type: Transform - - uid: 933 - components: - - pos: 29.5,-5.5 - parent: 1668 - type: Transform - - uid: 934 - components: - - pos: 30.5,-5.5 - parent: 1668 - type: Transform - - uid: 935 - components: - - pos: 31.5,-5.5 - parent: 1668 - type: Transform - - uid: 936 - components: - - pos: 32.5,-5.5 - parent: 1668 - type: Transform - - uid: 937 - components: - - pos: 33.5,-5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 938 - components: - - pos: 31.5,-6.5 - parent: 1668 - type: Transform - - uid: 939 - components: - - pos: 31.5,-7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 940 - components: - - pos: 21.5,-7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 941 - components: - - pos: 21.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 942 - components: - - pos: 31.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 943 - components: - - pos: 33.5,3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 944 - components: - - pos: 33.5,5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 945 - components: - - pos: 33.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 946 - components: - - pos: 35.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 947 - components: - - pos: 35.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 948 - components: - - pos: 35.5,3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 949 - components: - - pos: 35.5,4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 950 - components: - - pos: 35.5,5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 951 - components: - - pos: 35.5,-3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 952 - components: - - pos: 35.5,-2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 953 - components: - - pos: 35.5,-4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 954 - components: - - pos: 35.5,-5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 955 - components: - - pos: 35.5,-6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 956 - components: - - pos: 33.5,-6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 957 - components: - - pos: 33.5,-4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 958 - components: - - pos: 33.5,-2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 959 - components: - - pos: 34.5,-2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 960 - components: - - pos: 34.5,-1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 961 - components: - - pos: 34.5,0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 962 - components: - - pos: 34.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 964 - components: - - pos: 23.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 965 - components: - - pos: 24.5,-10.5 - parent: 1668 - type: Transform - - uid: 966 - components: - - pos: 25.5,-10.5 - parent: 1668 - type: Transform - - uid: 967 - components: - - pos: 26.5,-10.5 - parent: 1668 - type: Transform - - uid: 968 - components: - - pos: 26.5,-9.5 - parent: 1668 - type: Transform - - uid: 969 - components: - - pos: 26.5,-8.5 - parent: 1668 - type: Transform - - uid: 970 - components: - - pos: 26.5,-11.5 - parent: 1668 - type: Transform - - uid: 971 - components: - - pos: 22.5,-10.5 - parent: 1668 - type: Transform - - uid: 972 - components: - - pos: 22.5,-11.5 - parent: 1668 - type: Transform - - uid: 973 - components: - - pos: 21.5,-11.5 - parent: 1668 - type: Transform - - uid: 975 - components: - - pos: 20.5,-10.5 - parent: 1668 - type: Transform - - uid: 976 - components: - - pos: 32.5,-0.5 - parent: 1668 - type: Transform - - uid: 980 - components: - - pos: 9.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 981 - components: - - pos: 9.5,1.5 - parent: 1668 - type: Transform - - uid: 982 - components: - - pos: 9.5,0.5 - parent: 1668 - type: Transform - - uid: 983 - components: - - pos: 9.5,-0.5 - parent: 1668 - type: Transform - - uid: 984 - components: - - pos: 9.5,-1.5 - parent: 1668 - type: Transform - - uid: 985 - components: - - pos: 9.5,-2.5 - parent: 1668 - type: Transform - - uid: 986 - components: - - pos: 10.5,-0.5 - parent: 1668 - type: Transform - - uid: 987 - components: - - pos: 11.5,-0.5 - parent: 1668 - type: Transform - - uid: 988 - components: - - pos: 12.5,-0.5 - parent: 1668 - type: Transform - - uid: 989 - components: - - pos: 13.5,-0.5 - parent: 1668 - type: Transform - - uid: 990 - components: - - pos: 14.5,-0.5 - parent: 1668 - type: Transform - - uid: 991 - components: - - pos: 15.5,-0.5 - parent: 1668 - type: Transform - - uid: 992 - components: - - pos: 15.5,0.5 - parent: 1668 - type: Transform - - uid: 993 - components: - - pos: 16.5,0.5 - parent: 1668 - type: Transform - - uid: 994 - components: - - pos: 16.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 995 - components: - - pos: 17.5,-0.5 - parent: 1668 - type: Transform - - uid: 996 - components: - - pos: 18.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 997 - components: - - pos: 8.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 998 - components: - - pos: 5.5,0.5 - parent: 1668 - type: Transform - - uid: 999 - components: - - pos: 6.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1000 - components: - - pos: 10.5,-3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1001 - components: - - pos: 10.5,-4.5 - parent: 1668 - type: Transform - - uid: 1002 - components: - - pos: 10.5,-5.5 - parent: 1668 - type: Transform - - uid: 1003 - components: - - pos: 10.5,-6.5 - parent: 1668 - type: Transform - - uid: 1004 - components: - - pos: 10.5,-7.5 - parent: 1668 - type: Transform - - uid: 1005 - components: - - pos: 11.5,-6.5 - parent: 1668 - type: Transform - - uid: 1006 - components: - - pos: 12.5,-6.5 - parent: 1668 - type: Transform - - uid: 1007 - components: - - pos: 13.5,-6.5 - parent: 1668 - type: Transform - - uid: 1008 - components: - - pos: 14.5,-6.5 - parent: 1668 - type: Transform - - uid: 1009 - components: - - pos: 15.5,-6.5 - parent: 1668 - type: Transform - - uid: 1010 - components: - - pos: 16.5,-6.5 - parent: 1668 - type: Transform - - uid: 1011 - components: - - pos: 17.5,-6.5 - parent: 1668 - type: Transform - - uid: 1012 - components: - - pos: 17.5,-5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1013 - components: - - pos: 13.5,-5.5 - parent: 1668 - type: Transform - - uid: 1014 - components: - - pos: 13.5,-4.5 - parent: 1668 - type: Transform - - uid: 1015 - components: - - pos: 13.5,-3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1016 - components: - - pos: 12.5,-3.5 - parent: 1668 - type: Transform - - uid: 1017 - components: - - pos: 11.5,-3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1018 - components: - - pos: 14.5,-3.5 - parent: 1668 - type: Transform - - uid: 1019 - components: - - pos: 15.5,-3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1020 - components: - - pos: 12.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1021 - components: - - pos: 12.5,6.5 - parent: 1668 - type: Transform - - uid: 1022 - components: - - pos: 12.5,5.5 - parent: 1668 - type: Transform - - uid: 1023 - components: - - pos: 12.5,4.5 - parent: 1668 - type: Transform - - uid: 1024 - components: - - pos: 12.5,3.5 - parent: 1668 - type: Transform - - uid: 1025 - components: - - pos: 12.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1026 - components: - - pos: 13.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1027 - components: - - pos: 14.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1028 - components: - - pos: 15.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1029 - components: - - pos: 11.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1030 - components: - - pos: 13.5,5.5 - parent: 1668 - type: Transform - - uid: 1031 - components: - - pos: 14.5,5.5 - parent: 1668 - type: Transform - - uid: 1032 - components: - - pos: 15.5,5.5 - parent: 1668 - type: Transform - - uid: 1033 - components: - - pos: 16.5,5.5 - parent: 1668 - type: Transform - - uid: 1034 - components: - - pos: 17.5,5.5 - parent: 1668 - type: Transform - - uid: 1035 - components: - - pos: 17.5,4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1036 - components: - - pos: 17.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1037 - components: - - pos: 13.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1038 - components: - - pos: 14.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1039 - components: - - pos: 11.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1040 - components: - - pos: 10.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1041 - components: - - pos: 9.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1042 - components: - - pos: 11.5,5.5 - parent: 1668 - type: Transform - - uid: 1043 - components: - - pos: 10.5,5.5 - parent: 1668 - type: Transform - - uid: 1044 - components: - - pos: 9.5,5.5 - parent: 1668 - type: Transform - - uid: 1045 - components: - - pos: 8.5,5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1046 - components: - - pos: 9.5,4.5 - parent: 1668 - type: Transform - - uid: 1047 - components: - - pos: 8.5,4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1048 - components: - - pos: 8.5,3.5 - parent: 1668 - type: Transform - - uid: 1049 - components: - - pos: 7.5,3.5 - parent: 1668 - type: Transform - - uid: 1050 - components: - - pos: 7.5,4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1051 - components: - - pos: 12.5,8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1052 - components: - - pos: 12.5,9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1053 - components: - - pos: 13.5,9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1054 - components: - - pos: 14.5,9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1055 - components: - - pos: 11.5,9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1056 - components: - - pos: 10.5,9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1057 - components: - - pos: 9.5,9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1058 - components: - - pos: 8.5,9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1059 - components: - - pos: 7.5,9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1060 - components: - - pos: 6.5,9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1061 - components: - - pos: 8.5,8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1062 - components: - - pos: 28.5,1.5 - parent: 1668 - type: Transform - - uid: 1063 - components: - - pos: 28.5,0.5 - parent: 1668 - type: Transform - - uid: 1064 - components: - - pos: 28.5,-0.5 - parent: 1668 - type: Transform - - uid: 1068 - components: - - pos: 24.5,-2.5 - parent: 1668 - type: Transform - - uid: 1069 - components: - - pos: 24.5,-1.5 - parent: 1668 - type: Transform - - uid: 1070 - components: - - pos: 24.5,-0.5 - parent: 1668 - type: Transform - - uid: 1089 - components: - - pos: -2.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1090 - components: - - pos: -2.5,1.5 - parent: 1668 - type: Transform - - uid: 1091 - components: - - pos: -2.5,0.5 - parent: 1668 - type: Transform - - uid: 1092 - components: - - pos: -2.5,-0.5 - parent: 1668 - type: Transform - - uid: 1093 - components: - - pos: -2.5,-1.5 - parent: 1668 - type: Transform - - uid: 1094 - components: - - pos: -1.5,0.5 - parent: 1668 - type: Transform - - uid: 1095 - components: - - pos: -0.5,0.5 - parent: 1668 - type: Transform - - uid: 1096 - components: - - pos: 0.5,0.5 - parent: 1668 - type: Transform - - uid: 1097 - components: - - pos: 1.5,0.5 - parent: 1668 - type: Transform - - uid: 1098 - components: - - pos: 2.5,0.5 - parent: 1668 - type: Transform - - uid: 1099 - components: - - pos: 2.5,1.5 - parent: 1668 - type: Transform - - uid: 1100 - components: - - pos: 2.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1101 - components: - - pos: 3.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1102 - components: - - pos: 3.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1103 - components: - - pos: -3.5,1.5 - parent: 1668 - type: Transform - - uid: 1104 - components: - - pos: -4.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1105 - components: - - pos: -4.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1106 - components: - - pos: -3.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1107 - components: - - pos: -1.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1108 - components: - - pos: -0.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1109 - components: - - pos: 0.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1110 - components: - - pos: -3.5,-0.5 - parent: 1668 - type: Transform - - uid: 1111 - components: - - pos: -4.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1112 - components: - - pos: -4.5,-1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1113 - components: - - pos: -4.5,-2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1114 - components: - - pos: -2.5,-2.5 - parent: 1668 - type: Transform - - uid: 1115 - components: - - pos: -2.5,-3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1116 - components: - - pos: -3.5,-3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1117 - components: - - pos: -1.5,-1.5 - parent: 1668 - type: Transform - - uid: 1118 - components: - - pos: -0.5,-1.5 - parent: 1668 - type: Transform - - uid: 1119 - components: - - pos: -0.5,-2.5 - parent: 1668 - type: Transform - - uid: 1120 - components: - - pos: -0.5,-3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1121 - components: - - pos: 0.5,-1.5 - parent: 1668 - type: Transform - - uid: 1122 - components: - - pos: 1.5,-1.5 - parent: 1668 - type: Transform - - uid: 1123 - components: - - pos: 2.5,-1.5 - parent: 1668 - type: Transform - - uid: 1124 - components: - - pos: 3.5,-1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1125 - components: - - pos: 3.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1126 - components: - - pos: 3.5,-2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1127 - components: - - pos: 1.5,-2.5 - parent: 1668 - type: Transform - - uid: 1128 - components: - - pos: 1.5,-3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1129 - components: - - pos: 2.5,-3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1137 - components: - - pos: 21.5,-10.5 - parent: 1668 - type: Transform - - uid: 1202 - components: - - pos: 10.5,-8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1203 - components: - - pos: 11.5,-8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1204 - components: - - pos: 9.5,-8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1205 - components: - - pos: 14.5,-7.5 - parent: 1668 - type: Transform - - uid: 1206 - components: - - pos: 14.5,-8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1207 - components: - - pos: 15.5,-8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1208 - components: - - pos: 13.5,-8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1209 - components: - - pos: 12.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1210 - components: - - pos: 12.5,-9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1211 - components: - - pos: 13.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1212 - components: - - pos: 14.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1213 - components: - - pos: 15.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1214 - components: - - pos: 16.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1215 - components: - - pos: 16.5,-9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1216 - components: - - pos: 11.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1217 - components: - - pos: 10.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1218 - components: - - pos: 9.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1219 - components: - - pos: 12.5,-11.5 - parent: 1668 - type: Transform - - uid: 1220 - components: - - pos: 12.5,-12.5 - parent: 1668 - type: Transform - - uid: 1221 - components: - - pos: 12.5,-13.5 - parent: 1668 - type: Transform - - uid: 1222 - components: - - pos: 12.5,-14.5 - parent: 1668 - type: Transform - - uid: 1223 - components: - - pos: 12.5,-14.5 - parent: 1668 - type: Transform - - uid: 1224 - components: - - pos: 12.5,-16.5 - parent: 1668 - type: Transform - - uid: 1225 - components: - - pos: 12.5,-15.5 - parent: 1668 - type: Transform - - uid: 1226 - components: - - pos: 11.5,-16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1227 - components: - - pos: 11.5,-11.5 - parent: 1668 - type: Transform - - uid: 1228 - components: - - pos: 10.5,-11.5 - parent: 1668 - type: Transform - - uid: 1229 - components: - - pos: 9.5,-11.5 - parent: 1668 - type: Transform - - uid: 1230 - components: - - pos: 13.5,-11.5 - parent: 1668 - type: Transform - - uid: 1231 - components: - - pos: 14.5,-11.5 - parent: 1668 - type: Transform - - uid: 1232 - components: - - pos: 15.5,-11.5 - parent: 1668 - type: Transform - - uid: 1233 - components: - - pos: 11.5,-14.5 - parent: 1668 - type: Transform - - uid: 1234 - components: - - pos: 10.5,-14.5 - parent: 1668 - type: Transform - - uid: 1236 - components: - - pos: 3.5,-8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1237 - components: - - pos: 3.5,-9.5 - parent: 1668 - type: Transform - - uid: 1238 - components: - - pos: 4.5,-9.5 - parent: 1668 - type: Transform - - uid: 1239 - components: - - pos: 4.5,-10.5 - parent: 1668 - type: Transform - - uid: 1240 - components: - - pos: 4.5,-11.5 - parent: 1668 - type: Transform - - uid: 1241 - components: - - pos: 4.5,-12.5 - parent: 1668 - type: Transform - - uid: 1242 - components: - - pos: 4.5,-13.5 - parent: 1668 - type: Transform - - uid: 1243 - components: - - pos: 5.5,-11.5 - parent: 1668 - type: Transform - - uid: 1244 - components: - - pos: 6.5,-11.5 - parent: 1668 - type: Transform - - uid: 1245 - components: - - pos: 7.5,-11.5 - parent: 1668 - type: Transform - - uid: 1246 - components: - - pos: 7.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1247 - components: - - pos: 5.5,-9.5 - parent: 1668 - type: Transform - - uid: 1248 - components: - - pos: 6.5,-9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1249 - components: - - pos: 7.5,-12.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1250 - components: - - pos: 5.5,-13.5 - parent: 1668 - type: Transform - - uid: 1251 - components: - - pos: 6.5,-13.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1252 - components: - - pos: 3.5,-10.5 - parent: 1668 - type: Transform - - uid: 1253 - components: - - pos: 2.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1254 - components: - - pos: 3.5,-13.5 - parent: 1668 - type: Transform - - uid: 1255 - components: - - pos: 2.5,-13.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1256 - components: - - pos: 4.5,-8.5 - parent: 1668 - type: Transform - - uid: 1257 - components: - - pos: 4.5,-7.5 - parent: 1668 - type: Transform - - uid: 1258 - components: - - pos: 5.5,-7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1259 - components: - - pos: 3.5,-7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1260 - components: - - pos: -1.5,-6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1261 - components: - - pos: -1.5,-5.5 - parent: 1668 - type: Transform - - uid: 1262 - components: - - pos: -0.5,-5.5 - parent: 1668 - type: Transform - - uid: 1263 - components: - - pos: 0.5,-5.5 - parent: 1668 - type: Transform - - uid: 1264 - components: - - pos: 0.5,-6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1265 - components: - - pos: 1.5,-5.5 - parent: 1668 - type: Transform - - uid: 1266 - components: - - pos: 2.5,-5.5 - parent: 1668 - type: Transform - - uid: 1267 - components: - - pos: 2.5,-6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1268 - components: - - pos: 3.5,-5.5 - parent: 1668 - type: Transform - - uid: 1269 - components: - - pos: 4.5,-5.5 - parent: 1668 - type: Transform - - uid: 1270 - components: - - pos: 5.5,-5.5 - parent: 1668 - type: Transform - - uid: 1271 - components: - - pos: 6.5,-5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1272 - components: - - pos: 6.5,-4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1273 - components: - - pos: 5.5,-4.5 - parent: 1668 - type: Transform - - uid: 1274 - components: - - pos: 5.5,-3.5 - parent: 1668 - type: Transform - - uid: 1275 - components: - - pos: 5.5,-2.5 - parent: 1668 - type: Transform - - uid: 1276 - components: - - pos: 9.5,-5.5 - parent: 1668 - type: Transform - - uid: 1277 - components: - - pos: 8.5,-5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1278 - components: - - pos: 8.5,-4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1279 - components: - - pos: 5.5,-1.5 - parent: 1668 - type: Transform - - uid: 1280 - components: - - pos: 5.5,-0.5 - parent: 1668 - type: Transform - - uid: 1281 - components: - - pos: 5.5,1.5 - parent: 1668 - type: Transform - - uid: 1282 - components: - - pos: 5.5,2.5 - parent: 1668 - type: Transform - - uid: 1283 - components: - - pos: 5.5,3.5 - parent: 1668 - type: Transform - - uid: 1284 - components: - - pos: 5.5,4.5 - parent: 1668 - type: Transform - - uid: 1285 - components: - - pos: 4.5,4.5 - parent: 1668 - type: Transform - - uid: 1286 - components: - - pos: 3.5,4.5 - parent: 1668 - type: Transform - - uid: 1287 - components: - - pos: 2.5,4.5 - parent: 1668 - type: Transform - - uid: 1288 - components: - - pos: 1.5,4.5 - parent: 1668 - type: Transform - - uid: 1289 - components: - - pos: 0.5,4.5 - parent: 1668 - type: Transform - - uid: 1290 - components: - - pos: -0.5,4.5 - parent: 1668 - type: Transform - - uid: 1291 - components: - - pos: -1.5,4.5 - parent: 1668 - type: Transform - - uid: 1292 - components: - - pos: -2.5,4.5 - parent: 1668 - type: Transform - - uid: 1293 - components: - - pos: -3.5,4.5 - parent: 1668 - type: Transform - - uid: 1294 - components: - - pos: -4.5,4.5 - parent: 1668 - type: Transform - - uid: 1295 - components: - - pos: -5.5,4.5 - parent: 1668 - type: Transform - - uid: 1296 - components: - - pos: -6.5,4.5 - parent: 1668 - type: Transform - - uid: 1297 - components: - - pos: -6.5,3.5 - parent: 1668 - type: Transform - - uid: 1298 - components: - - pos: -6.5,2.5 - parent: 1668 - type: Transform - - uid: 1299 - components: - - pos: -6.5,1.5 - parent: 1668 - type: Transform - - uid: 1300 - components: - - pos: -6.5,0.5 - parent: 1668 - type: Transform - - uid: 1301 - components: - - pos: -6.5,-0.5 - parent: 1668 - type: Transform - - uid: 1302 - components: - - pos: -6.5,-1.5 - parent: 1668 - type: Transform - - uid: 1303 - components: - - pos: -6.5,-2.5 - parent: 1668 - type: Transform - - uid: 1304 - components: - - pos: -6.5,-3.5 - parent: 1668 - type: Transform - - uid: 1305 - components: - - pos: -6.5,-4.5 - parent: 1668 - type: Transform - - uid: 1306 - components: - - pos: -6.5,-5.5 - parent: 1668 - type: Transform - - uid: 1307 - components: - - pos: -5.5,-5.5 - parent: 1668 - type: Transform - - uid: 1308 - components: - - pos: -4.5,-5.5 - parent: 1668 - type: Transform - - uid: 1309 - components: - - pos: -3.5,-5.5 - parent: 1668 - type: Transform - - uid: 1310 - components: - - pos: -2.5,-5.5 - parent: 1668 - type: Transform - - uid: 1311 - components: - - pos: -3.5,-6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1312 - components: - - pos: -7.5,-5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1313 - components: - - pos: -7.5,-4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1314 - components: - - pos: -7.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1315 - components: - - pos: -7.5,3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1316 - components: - - pos: -7.5,4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1317 - components: - - pos: -1.5,5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1318 - components: - - pos: 0.5,5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1319 - components: - - pos: 2.5,5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1320 - components: - - pos: 4.5,5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1342 - components: - - pos: -3.5,-9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1343 - components: - - pos: -2.5,-9.5 - parent: 1668 - type: Transform - - uid: 1344 - components: - - pos: -1.5,-9.5 - parent: 1668 - type: Transform - - uid: 1345 - components: - - pos: -0.5,-9.5 - parent: 1668 - type: Transform - - uid: 1346 - components: - - pos: 0.5,-9.5 - parent: 1668 - type: Transform - - uid: 1347 - components: - - pos: 0.5,-8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1348 - components: - - pos: -1.5,-8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1349 - components: - - pos: -0.5,-10.5 - parent: 1668 - type: Transform - - uid: 1350 - components: - - pos: -0.5,-11.5 - parent: 1668 - type: Transform - - uid: 1351 - components: - - pos: -0.5,-12.5 - parent: 1668 - type: Transform - - uid: 1352 - components: - - pos: -0.5,-13.5 - parent: 1668 - type: Transform - - uid: 1353 - components: - - pos: -1.5,-13.5 - parent: 1668 - type: Transform - - uid: 1354 - components: - - pos: -1.5,-14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1355 - components: - - pos: -2.5,-14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1356 - components: - - pos: 0.5,-13.5 - parent: 1668 - type: Transform - - uid: 1357 - components: - - pos: 0.5,-14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1358 - components: - - pos: 1.5,-14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1359 - components: - - pos: -4.5,-9.5 - parent: 1668 - type: Transform - - uid: 1360 - components: - - pos: -5.5,-9.5 - parent: 1668 - type: Transform - - uid: 1361 - components: - - pos: -5.5,-8.5 - parent: 1668 - type: Transform - - uid: 1362 - components: - - pos: -5.5,-7.5 - parent: 1668 - type: Transform - - uid: 1363 - components: - - pos: -4.5,-7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1364 - components: - - pos: -6.5,-7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1365 - components: - - pos: -5.5,-10.5 - parent: 1668 - type: Transform - - uid: 1366 - components: - - pos: -5.5,-11.5 - parent: 1668 - type: Transform - - uid: 1367 - components: - - pos: -6.5,-11.5 - parent: 1668 - type: Transform - - uid: 1368 - components: - - pos: -7.5,-11.5 - parent: 1668 - type: Transform - - uid: 1369 - components: - - pos: -8.5,-11.5 - parent: 1668 - type: Transform - - uid: 1370 - components: - - pos: -8.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1371 - components: - - pos: -8.5,-12.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1372 - components: - - pos: -5.5,-12.5 - parent: 1668 - type: Transform - - uid: 1373 - components: - - pos: -5.5,-13.5 - parent: 1668 - type: Transform - - uid: 1374 - components: - - pos: -4.5,-10.5 - parent: 1668 - type: Transform - - uid: 1375 - components: - - pos: -3.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1376 - components: - - pos: -3.5,-13.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1377 - components: - - pos: -4.5,-13.5 - parent: 1668 - type: Transform - - uid: 1378 - components: - - pos: -6.5,-13.5 - parent: 1668 - type: Transform - - uid: 1379 - components: - - pos: -7.5,-13.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1380 - components: - - pos: -7.5,-14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1381 - components: - - pos: -8.5,-14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1382 - components: - - pos: -6.5,-9.5 - parent: 1668 - type: Transform - - uid: 1383 - components: - - pos: -7.5,-9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1468 - components: - - pos: 15.5,-4.5 - parent: 1668 - type: Transform - - uid: 1469 - components: - - pos: 16.5,-4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1470 - components: - - pos: 15.5,4.5 - parent: 1668 - type: Transform - - uid: 1471 - components: - - pos: 15.5,3.5 - parent: 1668 - type: Transform - - uid: 1472 - components: - - pos: 16.5,3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1678 - components: - - pos: -6.5,16.5 - parent: 1668 - type: Transform - - uid: 1679 - components: - - pos: -6.5,15.5 - parent: 1668 - type: Transform - - uid: 1680 - components: - - pos: -6.5,17.5 - parent: 1668 - type: Transform - - uid: 1681 - components: - - pos: -5.5,17.5 - parent: 1668 - type: Transform - - uid: 1682 - components: - - pos: -4.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1683 - components: - - pos: -8.5,13.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1684 - components: - - pos: -8.5,12.5 - parent: 1668 - type: Transform - - uid: 1685 - components: - - pos: -8.5,11.5 - parent: 1668 - type: Transform - - uid: 1686 - components: - - pos: -8.5,10.5 - parent: 1668 - type: Transform - - uid: 1687 - components: - - pos: -8.5,9.5 - parent: 1668 - type: Transform - - uid: 1688 - components: - - pos: -7.5,9.5 - parent: 1668 - type: Transform - - uid: 1689 - components: - - pos: -6.5,9.5 - parent: 1668 - type: Transform - - uid: 1690 - components: - - pos: -5.5,9.5 - parent: 1668 - type: Transform - - uid: 1691 - components: - - pos: -5.5,8.5 - parent: 1668 - type: Transform - - uid: 1692 - components: - - pos: -4.5,8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1693 - components: - - pos: -5.5,7.5 - parent: 1668 - type: Transform - - uid: 1694 - components: - - pos: -5.5,6.5 - parent: 1668 - type: Transform - - uid: 1695 - components: - - pos: -4.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1696 - components: - - pos: -6.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1697 - components: - - pos: -9.5,9.5 - parent: 1668 - type: Transform - - uid: 1698 - components: - - pos: -10.5,9.5 - parent: 1668 - type: Transform - - uid: 1699 - components: - - pos: -11.5,9.5 - parent: 1668 - type: Transform - - uid: 1700 - components: - - pos: -9.5,11.5 - parent: 1668 - type: Transform - - uid: 1701 - components: - - pos: -10.5,11.5 - parent: 1668 - type: Transform - - uid: 1702 - components: - - pos: -11.5,11.5 - parent: 1668 - type: Transform - - uid: 1703 - components: - - pos: -7.5,11.5 - parent: 1668 - type: Transform - - uid: 1704 - components: - - pos: -6.5,11.5 - parent: 1668 - type: Transform - - uid: 1705 - components: - - pos: -6.5,12.5 - parent: 1668 - type: Transform - - uid: 1706 - components: - - pos: -14.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1707 - components: - - pos: -14.5,17.5 - parent: 1668 - type: Transform - - uid: 1708 - components: - - pos: -15.5,17.5 - parent: 1668 - type: Transform - - uid: 1709 - components: - - pos: -16.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1710 - components: - - pos: -16.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1711 - components: - - pos: -15.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1712 - components: - - pos: -13.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1713 - components: - - pos: -12.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1714 - components: - - pos: -14.5,16.5 - parent: 1668 - type: Transform - - uid: 1715 - components: - - pos: -14.5,15.5 - parent: 1668 - type: Transform - - uid: 1716 - components: - - pos: -13.5,15.5 - parent: 1668 - type: Transform - - uid: 1717 - components: - - pos: -12.5,15.5 - parent: 1668 - type: Transform - - uid: 1718 - components: - - pos: -11.5,15.5 - parent: 1668 - type: Transform - - uid: 1719 - components: - - pos: -10.5,15.5 - parent: 1668 - type: Transform - - uid: 1720 - components: - - pos: -9.5,15.5 - parent: 1668 - type: Transform - - uid: 1721 - components: - - pos: -10.5,14.5 - parent: 1668 - type: Transform - - uid: 1722 - components: - - pos: -10.5,16.5 - parent: 1668 - type: Transform - - uid: 1723 - components: - - pos: -10.5,17.5 - parent: 1668 - type: Transform - - uid: 1724 - components: - - pos: -4.5,19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1725 - components: - - pos: -5.5,19.5 - parent: 1668 - type: Transform - - uid: 1726 - components: - - pos: -6.5,19.5 - parent: 1668 - type: Transform - - uid: 1727 - components: - - pos: -7.5,19.5 - parent: 1668 - type: Transform - - uid: 1728 - components: - - pos: -8.5,19.5 - parent: 1668 - type: Transform - - uid: 1729 - components: - - pos: -9.5,19.5 - parent: 1668 - type: Transform - - uid: 1730 - components: - - pos: -10.5,19.5 - parent: 1668 - type: Transform - - uid: 1731 - components: - - pos: -11.5,19.5 - parent: 1668 - type: Transform - - uid: 1732 - components: - - pos: -11.5,20.5 - parent: 1668 - type: Transform - - uid: 1733 - components: - - pos: -11.5,21.5 - parent: 1668 - type: Transform - - uid: 1734 - components: - - pos: -11.5,22.5 - parent: 1668 - type: Transform - - uid: 1735 - components: - - pos: -11.5,23.5 - parent: 1668 - type: Transform - - uid: 1736 - components: - - pos: -11.5,24.5 - parent: 1668 - type: Transform - - uid: 1737 - components: - - pos: -11.5,25.5 - parent: 1668 - type: Transform - - uid: 1738 - components: - - pos: -11.5,26.5 - parent: 1668 - type: Transform - - uid: 1739 - components: - - pos: -11.5,27.5 - parent: 1668 - type: Transform - - uid: 1740 - components: - - pos: -11.5,28.5 - parent: 1668 - type: Transform - - uid: 1741 - components: - - pos: -11.5,29.5 - parent: 1668 - type: Transform - - uid: 1742 - components: - - pos: -11.5,30.5 - parent: 1668 - type: Transform - - uid: 1743 - components: - - pos: -11.5,31.5 - parent: 1668 - type: Transform - - uid: 1744 - components: - - pos: -12.5,31.5 - parent: 1668 - type: Transform - - uid: 1745 - components: - - pos: -12.5,32.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1746 - components: - - pos: -10.5,31.5 - parent: 1668 - type: Transform - - uid: 1747 - components: - - pos: -9.5,31.5 - parent: 1668 - type: Transform - - uid: 1748 - components: - - pos: -8.5,31.5 - parent: 1668 - type: Transform - - uid: 1749 - components: - - pos: -7.5,31.5 - parent: 1668 - type: Transform - - uid: 1750 - components: - - pos: -6.5,31.5 - parent: 1668 - type: Transform - - uid: 1751 - components: - - pos: -6.5,32.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1752 - components: - - pos: -9.5,32.5 - parent: 1668 - type: Transform - - uid: 1753 - components: - - pos: -9.5,33.5 - parent: 1668 - type: Transform - - uid: 1754 - components: - - pos: -12.5,30.5 - parent: 1668 - type: Transform - - uid: 1755 - components: - - pos: -13.5,30.5 - parent: 1668 - type: Transform - - uid: 1756 - components: - - pos: -14.5,30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1757 - components: - - pos: -14.5,29.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1758 - components: - - pos: -15.5,29.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1759 - components: - - pos: -16.5,29.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1760 - components: - - pos: -12.5,26.5 - parent: 1668 - type: Transform - - uid: 1761 - components: - - pos: -13.5,26.5 - parent: 1668 - type: Transform - - uid: 1762 - components: - - pos: -14.5,26.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1763 - components: - - pos: -15.5,26.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1764 - components: - - pos: -16.5,26.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1765 - components: - - pos: -12.5,23.5 - parent: 1668 - type: Transform - - uid: 1766 - components: - - pos: -13.5,23.5 - parent: 1668 - type: Transform - - uid: 1767 - components: - - pos: -14.5,23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1768 - components: - - pos: -15.5,23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1769 - components: - - pos: -16.5,23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1770 - components: - - pos: -14.5,22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1771 - components: - - pos: -14.5,21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1772 - components: - - pos: -14.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1773 - components: - - pos: -10.5,23.5 - parent: 1668 - type: Transform - - uid: 1774 - components: - - pos: -9.5,23.5 - parent: 1668 - type: Transform - - uid: 1775 - components: - - pos: -8.5,23.5 - parent: 1668 - type: Transform - - uid: 1776 - components: - - pos: -7.5,23.5 - parent: 1668 - type: Transform - - uid: 1777 - components: - - pos: -6.5,23.5 - parent: 1668 - type: Transform - - uid: 1778 - components: - - pos: -6.5,20.5 - parent: 1668 - type: Transform - - uid: 1779 - components: - - pos: -6.5,21.5 - parent: 1668 - type: Transform - - uid: 1780 - components: - - pos: -6.5,22.5 - parent: 1668 - type: Transform - - uid: 1781 - components: - - pos: -6.5,24.5 - parent: 1668 - type: Transform - - uid: 1782 - components: - - pos: -6.5,25.5 - parent: 1668 - type: Transform - - uid: 1783 - components: - - pos: -6.5,26.5 - parent: 1668 - type: Transform - - uid: 1784 - components: - - pos: -6.5,27.5 - parent: 1668 - type: Transform - - uid: 1785 - components: - - pos: -6.5,28.5 - parent: 1668 - type: Transform - - uid: 1786 - components: - - pos: -6.5,29.5 - parent: 1668 - type: Transform - - uid: 1787 - components: - - pos: -6.5,30.5 - parent: 1668 - type: Transform - - uid: 1788 - components: - - pos: -7.5,27.5 - parent: 1668 - type: Transform - - uid: 1789 - components: - - pos: -8.5,27.5 - parent: 1668 - type: Transform - - uid: 1790 - components: - - pos: -9.5,27.5 - parent: 1668 - type: Transform - - uid: 1791 - components: - - pos: -10.5,27.5 - parent: 1668 - type: Transform - - uid: 1956 - components: - - pos: 1.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1957 - components: - - pos: 1.5,16.5 - parent: 1668 - type: Transform - - uid: 1958 - components: - - pos: 1.5,15.5 - parent: 1668 - type: Transform - - uid: 1959 - components: - - pos: 1.5,14.5 - parent: 1668 - type: Transform - - uid: 1960 - components: - - pos: 1.5,13.5 - parent: 1668 - type: Transform - - uid: 1961 - components: - - pos: 1.5,12.5 - parent: 1668 - type: Transform - - uid: 1962 - components: - - pos: 1.5,11.5 - parent: 1668 - type: Transform - - uid: 1963 - components: - - pos: 1.5,10.5 - parent: 1668 - type: Transform - - uid: 1964 - components: - - pos: 1.5,9.5 - parent: 1668 - type: Transform - - uid: 1965 - components: - - pos: 1.5,8.5 - parent: 1668 - type: Transform - - uid: 1966 - components: - - pos: 2.5,8.5 - parent: 1668 - type: Transform - - uid: 1967 - components: - - pos: 3.5,8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1968 - components: - - pos: 2.5,10.5 - parent: 1668 - type: Transform - - uid: 1969 - components: - - pos: 3.5,10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1970 - components: - - pos: 2.5,12.5 - parent: 1668 - type: Transform - - uid: 1971 - components: - - pos: 3.5,12.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1972 - components: - - pos: 2.5,14.5 - parent: 1668 - type: Transform - - uid: 1973 - components: - - pos: 3.5,14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1974 - components: - - pos: 2.5,16.5 - parent: 1668 - type: Transform - - uid: 1975 - components: - - pos: 3.5,16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1976 - components: - - pos: 2.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1977 - components: - - pos: -3.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1978 - components: - - pos: 0.5,15.5 - parent: 1668 - type: Transform - - uid: 1979 - components: - - pos: -0.5,15.5 - parent: 1668 - type: Transform - - uid: 1980 - components: - - pos: -1.5,15.5 - parent: 1668 - type: Transform - - uid: 1981 - components: - - pos: -2.5,15.5 - parent: 1668 - type: Transform - - uid: 1982 - components: - - pos: -2.5,14.5 - parent: 1668 - type: Transform - - uid: 1983 - components: - - pos: -2.5,13.5 - parent: 1668 - type: Transform - - uid: 1984 - components: - - pos: -2.5,12.5 - parent: 1668 - type: Transform - - uid: 1985 - components: - - pos: -2.5,11.5 - parent: 1668 - type: Transform - - uid: 1986 - components: - - pos: -2.5,10.5 - parent: 1668 - type: Transform - - uid: 1987 - components: - - pos: -2.5,9.5 - parent: 1668 - type: Transform - - uid: 1988 - components: - - pos: -2.5,8.5 - parent: 1668 - type: Transform - - uid: 1989 - components: - - pos: -1.5,8.5 - parent: 1668 - type: Transform - - uid: 1990 - components: - - pos: -1.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1991 - components: - - pos: 0.5,8.5 - parent: 1668 - type: Transform - - uid: 1992 - components: - - pos: 0.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1993 - components: - - pos: -0.5,8.5 - parent: 1668 - type: Transform - - uid: 2020 - components: - - pos: -1.5,22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2021 - components: - - pos: -1.5,23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2022 - components: - - pos: -1.5,24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2023 - components: - - pos: -2.5,24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2024 - components: - - pos: -1.5,21.5 - parent: 1668 - type: Transform - - uid: 2025 - components: - - pos: -1.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2026 - components: - - pos: -0.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2027 - components: - - pos: -0.5,19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2028 - components: - - pos: -0.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2029 - components: - - pos: 0.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2030 - components: - - pos: 1.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2031 - components: - - pos: -2.5,21.5 - parent: 1668 - type: Transform - - uid: 2057 - components: - - pos: -3.5,5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2567 - components: - - pos: 17.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2568 - components: - - pos: 17.5,16.5 - parent: 1668 - type: Transform - - uid: 2569 - components: - - pos: 17.5,15.5 - parent: 1668 - type: Transform - - uid: 2570 - components: - - pos: 17.5,14.5 - parent: 1668 - type: Transform - - uid: 2571 - components: - - pos: 17.5,13.5 - parent: 1668 - type: Transform - - uid: 2572 - components: - - pos: 17.5,12.5 - parent: 1668 - type: Transform - - uid: 2573 - components: - - pos: 17.5,11.5 - parent: 1668 - type: Transform - - uid: 2574 - components: - - pos: 16.5,12.5 - parent: 1668 - type: Transform - - uid: 2575 - components: - - pos: 15.5,12.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2576 - components: - - pos: 16.5,14.5 - parent: 1668 - type: Transform - - uid: 2577 - components: - - pos: 15.5,14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2578 - components: - - pos: 17.5,10.5 - parent: 1668 - type: Transform - - uid: 2579 - components: - - pos: 16.5,10.5 - parent: 1668 - type: Transform - - uid: 2580 - components: - - pos: 15.5,10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2581 - components: - - pos: 18.5,11.5 - parent: 1668 - type: Transform - - uid: 2582 - components: - - pos: 19.5,11.5 - parent: 1668 - type: Transform - - uid: 2583 - components: - - pos: 20.5,11.5 - parent: 1668 - type: Transform - - uid: 2584 - components: - - pos: 18.5,14.5 - parent: 1668 - type: Transform - - uid: 2585 - components: - - pos: 19.5,14.5 - parent: 1668 - type: Transform - - uid: 2586 - components: - - pos: 20.5,14.5 - parent: 1668 - type: Transform - - uid: 2587 - components: - - pos: 19.5,15.5 - parent: 1668 - type: Transform - - uid: 2588 - components: - - pos: 21.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2589 - components: - - pos: 20.5,20.5 - parent: 1668 - type: Transform - - uid: 2590 - components: - - pos: 19.5,20.5 - parent: 1668 - type: Transform - - uid: 2591 - components: - - pos: 18.5,20.5 - parent: 1668 - type: Transform - - uid: 2592 - components: - - pos: 19.5,19.5 - parent: 1668 - type: Transform - - uid: 2593 - components: - - pos: 19.5,18.5 - parent: 1668 - type: Transform - - uid: 2594 - components: - - pos: 19.5,21.5 - parent: 1668 - type: Transform - - uid: 2595 - components: - - pos: 19.5,22.5 - parent: 1668 - type: Transform - - uid: 2596 - components: - - pos: 21.5,21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2597 - components: - - pos: 22.5,21.5 - parent: 1668 - type: Transform - - uid: 2598 - components: - - pos: 23.5,21.5 - parent: 1668 - type: Transform - - uid: 2599 - components: - - pos: 23.5,22.5 - parent: 1668 - type: Transform - - uid: 2600 - components: - - pos: 24.5,22.5 - parent: 1668 - type: Transform - - uid: 2601 - components: - - pos: 25.5,22.5 - parent: 1668 - type: Transform - - uid: 2602 - components: - - pos: 26.5,22.5 - parent: 1668 - type: Transform - - uid: 2603 - components: - - pos: 27.5,22.5 - parent: 1668 - type: Transform - - uid: 2604 - components: - - pos: 28.5,22.5 - parent: 1668 - type: Transform - - uid: 2605 - components: - - pos: 29.5,22.5 - parent: 1668 - type: Transform - - uid: 2606 - components: - - pos: 30.5,22.5 - parent: 1668 - type: Transform - - uid: 2607 - components: - - pos: 31.5,22.5 - parent: 1668 - type: Transform - - uid: 2608 - components: - - pos: 32.5,22.5 - parent: 1668 - type: Transform - - uid: 2609 - components: - - pos: 33.5,22.5 - parent: 1668 - type: Transform - - uid: 2610 - components: - - pos: 34.5,22.5 - parent: 1668 - type: Transform - - uid: 2611 - components: - - pos: 33.5,21.5 - parent: 1668 - type: Transform - - uid: 2612 - components: - - pos: 28.5,21.5 - parent: 1668 - type: Transform - - uid: 2613 - components: - - pos: 20.5,21.5 - parent: 1668 - type: Transform - - uid: 2614 - components: - - pos: 23.5,20.5 - parent: 1668 - type: Transform - - uid: 2615 - components: - - pos: 23.5,19.5 - parent: 1668 - type: Transform - - uid: 2616 - components: - - pos: 23.5,18.5 - parent: 1668 - type: Transform - - uid: 2617 - components: - - pos: 23.5,17.5 - parent: 1668 - type: Transform - - uid: 2618 - components: - - pos: 23.5,16.5 - parent: 1668 - type: Transform - - uid: 2619 - components: - - pos: 23.5,15.5 - parent: 1668 - type: Transform - - uid: 2620 - components: - - pos: 24.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2621 - components: - - pos: 24.5,16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2622 - components: - - pos: 24.5,15.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2623 - components: - - pos: 24.5,19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2624 - components: - - pos: 24.5,14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2625 - components: - - pos: 24.5,13.5 - parent: 1668 - type: Transform - - uid: 2626 - components: - - pos: 25.5,13.5 - parent: 1668 - type: Transform - - uid: 2627 - components: - - pos: 26.5,13.5 - parent: 1668 - type: Transform - - uid: 2628 - components: - - pos: 27.5,13.5 - parent: 1668 - type: Transform - - uid: 2629 - components: - - pos: 28.5,13.5 - parent: 1668 - type: Transform - - uid: 2630 - components: - - pos: 29.5,13.5 - parent: 1668 - type: Transform - - uid: 2631 - components: - - pos: 30.5,13.5 - parent: 1668 - type: Transform - - uid: 2632 - components: - - pos: 31.5,13.5 - parent: 1668 - type: Transform - - uid: 2633 - components: - - pos: 32.5,13.5 - parent: 1668 - type: Transform - - uid: 2634 - components: - - pos: 33.5,13.5 - parent: 1668 - type: Transform - - uid: 2635 - components: - - pos: 33.5,14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2636 - components: - - pos: 31.5,14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2637 - components: - - pos: 30.5,14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2638 - components: - - pos: 29.5,14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2639 - components: - - pos: 27.5,14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2640 - components: - - pos: 26.5,14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2641 - components: - - pos: 25.5,14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2642 - components: - - pos: 28.5,14.5 - parent: 1668 - type: Transform - - uid: 2643 - components: - - pos: 28.5,15.5 - parent: 1668 - type: Transform - - uid: 2644 - components: - - pos: 28.5,16.5 - parent: 1668 - type: Transform - - uid: 2645 - components: - - pos: 28.5,17.5 - parent: 1668 - type: Transform - - uid: 2646 - components: - - pos: 28.5,18.5 - parent: 1668 - type: Transform - - uid: 2647 - components: - - pos: 29.5,18.5 - parent: 1668 - type: Transform - - uid: 2648 - components: - - pos: 30.5,18.5 - parent: 1668 - type: Transform - - uid: 2649 - components: - - pos: 31.5,18.5 - parent: 1668 - type: Transform - - uid: 2650 - components: - - pos: 27.5,18.5 - parent: 1668 - type: Transform - - uid: 2651 - components: - - pos: 26.5,18.5 - parent: 1668 - type: Transform - - uid: 2652 - components: - - pos: 25.5,18.5 - parent: 1668 - type: Transform - - uid: 2653 - components: - - pos: 27.5,15.5 - parent: 1668 - type: Transform - - uid: 2654 - components: - - pos: 26.5,15.5 - parent: 1668 - type: Transform - - uid: 2655 - components: - - pos: 29.5,15.5 - parent: 1668 - type: Transform - - uid: 2656 - components: - - pos: 30.5,15.5 - parent: 1668 - type: Transform - - uid: 2657 - components: - - pos: 24.5,12.5 - parent: 1668 - type: Transform - - uid: 2658 - components: - - pos: 23.5,12.5 - parent: 1668 - type: Transform - - uid: 2659 - components: - - pos: 22.5,12.5 - parent: 1668 - type: Transform - - uid: 2660 - components: - - pos: 33.5,12.5 - parent: 1668 - type: Transform - - uid: 2661 - components: - - pos: 34.5,12.5 - parent: 1668 - type: Transform - - uid: 2662 - components: - - pos: 33.5,11.5 - parent: 1668 - type: Transform - - uid: 2663 - components: - - pos: 32.5,11.5 - parent: 1668 - type: Transform - - uid: 2664 - components: - - pos: 31.5,11.5 - parent: 1668 - type: Transform - - uid: 2665 - components: - - pos: 30.5,11.5 - parent: 1668 - type: Transform - - uid: 2666 - components: - - pos: 29.5,11.5 - parent: 1668 - type: Transform - - uid: 2667 - components: - - pos: 28.5,11.5 - parent: 1668 - type: Transform - - uid: 2668 - components: - - pos: 27.5,11.5 - parent: 1668 - type: Transform - - uid: 2669 - components: - - pos: 26.5,11.5 - parent: 1668 - type: Transform - - uid: 2670 - components: - - pos: 25.5,11.5 - parent: 1668 - type: Transform - - uid: 2671 - components: - - pos: 24.5,11.5 - parent: 1668 - type: Transform - - uid: 2672 - components: - - pos: 23.5,11.5 - parent: 1668 - type: Transform - - uid: 2673 - components: - - pos: 35.5,19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2674 - components: - - pos: 34.5,19.5 - parent: 1668 - type: Transform - - uid: 2675 - components: - - pos: 33.5,19.5 - parent: 1668 - type: Transform - - uid: 2676 - components: - - pos: 33.5,18.5 - parent: 1668 - type: Transform - - uid: 2677 - components: - - pos: 33.5,17.5 - parent: 1668 - type: Transform - - uid: 2678 - components: - - pos: 33.5,16.5 - parent: 1668 - type: Transform - - uid: 2679 - components: - - pos: 7.5,16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2680 - components: - - pos: 7.5,15.5 - parent: 1668 - type: Transform - - uid: 2681 - components: - - pos: 7.5,14.5 - parent: 1668 - type: Transform - - uid: 2682 - components: - - pos: 7.5,13.5 - parent: 1668 - type: Transform - - uid: 2683 - components: - - pos: 7.5,12.5 - parent: 1668 - type: Transform - - uid: 2684 - components: - - pos: 7.5,11.5 - parent: 1668 - type: Transform - - uid: 2685 - components: - - pos: 6.5,12.5 - parent: 1668 - type: Transform - - uid: 2686 - components: - - pos: 5.5,12.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2687 - components: - - pos: 6.5,14.5 - parent: 1668 - type: Transform - - uid: 2688 - components: - - pos: 5.5,14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2689 - components: - - pos: 8.5,14.5 - parent: 1668 - type: Transform - - uid: 2690 - components: - - pos: 9.5,14.5 - parent: 1668 - type: Transform - - uid: 2691 - components: - - pos: 10.5,14.5 - parent: 1668 - type: Transform - - uid: 2692 - components: - - pos: 11.5,14.5 - parent: 1668 - type: Transform - - uid: 2693 - components: - - pos: 12.5,14.5 - parent: 1668 - type: Transform - - uid: 2694 - components: - - pos: 8.5,12.5 - parent: 1668 - type: Transform - - uid: 2695 - components: - - pos: 9.5,12.5 - parent: 1668 - type: Transform - - uid: 2696 - components: - - pos: 10.5,12.5 - parent: 1668 - type: Transform - - uid: 2697 - components: - - pos: 11.5,12.5 - parent: 1668 - type: Transform - - uid: 2698 - components: - - pos: 12.5,12.5 - parent: 1668 - type: Transform - - uid: 2699 - components: - - pos: 13.5,14.5 - parent: 1668 - type: Transform - - uid: 2700 - components: - - pos: 13.5,15.5 - parent: 1668 - type: Transform - - uid: 2701 - components: - - pos: 14.5,15.5 - parent: 1668 - type: Transform - - uid: 2702 - components: - - pos: 14.5,16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2703 - components: - - pos: 14.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2704 - components: - - pos: 14.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2705 - components: - - pos: 15.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2706 - components: - - pos: 13.5,13.5 - parent: 1668 - type: Transform - - uid: 2707 - components: - - pos: 13.5,12.5 - parent: 1668 - type: Transform - - uid: 2708 - components: - - pos: 13.5,11.5 - parent: 1668 - type: Transform - - uid: 2709 - components: - - pos: 10.5,13.5 - parent: 1668 - type: Transform - - uid: 2711 - components: - - pos: 10.5,11.5 - parent: 1668 - type: Transform - - uid: 2743 - components: - - pos: 10.5,22.5 - parent: 1668 - type: Transform - - uid: 3033 - components: - - pos: 7.5,30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3034 - components: - - pos: 8.5,30.5 - parent: 1668 - type: Transform - - uid: 3035 - components: - - pos: 9.5,30.5 - parent: 1668 - type: Transform - - uid: 3036 - components: - - pos: 9.5,31.5 - parent: 1668 - type: Transform - - uid: 3037 - components: - - pos: 10.5,31.5 - parent: 1668 - type: Transform - - uid: 3038 - components: - - pos: 11.5,31.5 - parent: 1668 - type: Transform - - uid: 3039 - components: - - pos: 12.5,31.5 - parent: 1668 - type: Transform - - uid: 3040 - components: - - pos: 13.5,31.5 - parent: 1668 - type: Transform - - uid: 3041 - components: - - pos: 14.5,31.5 - parent: 1668 - type: Transform - - uid: 3042 - components: - - pos: 15.5,31.5 - parent: 1668 - type: Transform - - uid: 3043 - components: - - pos: 8.5,31.5 - parent: 1668 - type: Transform - - uid: 3044 - components: - - pos: 7.5,31.5 - parent: 1668 - type: Transform - - uid: 3045 - components: - - pos: 6.5,31.5 - parent: 1668 - type: Transform - - uid: 3046 - components: - - pos: 5.5,31.5 - parent: 1668 - type: Transform - - uid: 3047 - components: - - pos: 4.5,31.5 - parent: 1668 - type: Transform - - uid: 3048 - components: - - pos: 3.5,31.5 - parent: 1668 - type: Transform - - uid: 3049 - components: - - pos: 9.5,29.5 - parent: 1668 - type: Transform - - uid: 3050 - components: - - pos: 9.5,28.5 - parent: 1668 - type: Transform - - uid: 3051 - components: - - pos: 8.5,29.5 - parent: 1668 - type: Transform - - uid: 3052 - components: - - pos: 7.5,29.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3053 - components: - - pos: 10.5,29.5 - parent: 1668 - type: Transform - - uid: 3054 - components: - - pos: 11.5,29.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3055 - components: - - pos: 9.5,26.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3056 - components: - - pos: 9.5,25.5 - parent: 1668 - type: Transform - - uid: 3057 - components: - - pos: 8.5,25.5 - parent: 1668 - type: Transform - - uid: 3058 - components: - - pos: 8.5,26.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3059 - components: - - pos: 7.5,26.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3060 - components: - - pos: 7.5,27.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3061 - components: - - pos: 10.5,25.5 - parent: 1668 - type: Transform - - uid: 3062 - components: - - pos: 10.5,26.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3063 - components: - - pos: 11.5,26.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3064 - components: - - pos: 11.5,27.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3065 - components: - - pos: 9.5,24.5 - parent: 1668 - type: Transform - - uid: 3066 - components: - - pos: 9.5,23.5 - parent: 1668 - type: Transform - - uid: 3067 - components: - - pos: 9.5,22.5 - parent: 1668 - type: Transform - - uid: 3068 - components: - - pos: 8.5,22.5 - parent: 1668 - type: Transform - - uid: 3069 - components: - - pos: 7.5,22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3070 - components: - - pos: 7.5,21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3071 - components: - - pos: 7.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3072 - components: - - pos: 6.5,18.5 - parent: 1668 - type: Transform - - uid: 3073 - components: - - pos: 5.5,18.5 - parent: 1668 - type: Transform - - uid: 3074 - components: - - pos: 8.5,18.5 - parent: 1668 - type: Transform - - uid: 3075 - components: - - pos: 9.5,18.5 - parent: 1668 - type: Transform - - uid: 3076 - components: - - pos: 10.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3077 - components: - - pos: 10.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3078 - components: - - pos: 10.5,16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3080 - components: - - pos: 8.5,16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3081 - components: - - pos: 8.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3082 - components: - - pos: 8.5,19.5 - parent: 1668 - type: Transform - - uid: 3083 - components: - - pos: 11.5,22.5 - parent: 1668 - type: Transform - - uid: 3084 - components: - - pos: 12.5,22.5 - parent: 1668 - type: Transform - - uid: 3085 - components: - - pos: 13.5,22.5 - parent: 1668 - type: Transform - - uid: 3086 - components: - - pos: 14.5,22.5 - parent: 1668 - type: Transform - - uid: 3087 - components: - - pos: 15.5,22.5 - parent: 1668 - type: Transform - - uid: 3088 - components: - - pos: 11.5,25.5 - parent: 1668 - type: Transform - - uid: 3089 - components: - - pos: 12.5,25.5 - parent: 1668 - type: Transform - - uid: 3090 - components: - - pos: 13.5,25.5 - parent: 1668 - type: Transform - - uid: 3091 - components: - - pos: 14.5,25.5 - parent: 1668 - type: Transform - - uid: 3092 - components: - - pos: 15.5,25.5 - parent: 1668 - type: Transform - - uid: 3093 - components: - - pos: 13.5,26.5 - parent: 1668 - type: Transform - - uid: 3094 - components: - - pos: 13.5,27.5 - parent: 1668 - type: Transform - - uid: 3095 - components: - - pos: 13.5,28.5 - parent: 1668 - type: Transform - - uid: 3096 - components: - - pos: 14.5,28.5 - parent: 1668 - type: Transform - - uid: 3097 - components: - - pos: 15.5,28.5 - parent: 1668 - type: Transform - - uid: 3098 - components: - - pos: 7.5,25.5 - parent: 1668 - type: Transform - - uid: 3099 - components: - - pos: 6.5,25.5 - parent: 1668 - type: Transform - - uid: 3100 - components: - - pos: 5.5,25.5 - parent: 1668 - type: Transform - - uid: 3101 - components: - - pos: 4.5,25.5 - parent: 1668 - type: Transform - - uid: 3102 - components: - - pos: 3.5,25.5 - parent: 1668 - type: Transform - - uid: 3103 - components: - - pos: 5.5,26.5 - parent: 1668 - type: Transform - - uid: 3104 - components: - - pos: 5.5,27.5 - parent: 1668 - type: Transform - - uid: 3105 - components: - - pos: 5.5,28.5 - parent: 1668 - type: Transform - - uid: 3106 - components: - - pos: 4.5,28.5 - parent: 1668 - type: Transform - - uid: 3107 - components: - - pos: 3.5,28.5 - parent: 1668 - type: Transform - - uid: 3108 - components: - - pos: 4.5,24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3109 - components: - - pos: 4.5,27.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3110 - components: - - pos: 14.5,27.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3111 - components: - - pos: 14.5,24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3112 - components: - - pos: 14.5,21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3113 - components: - - pos: 6.5,30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3114 - components: - - pos: 5.5,30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3115 - components: - - pos: 12.5,30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3116 - components: - - pos: 13.5,30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3467 - components: - - pos: -22.5,12.5 - parent: 1668 - type: Transform - - uid: 3468 - components: - - pos: -22.5,13.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3469 - components: - - pos: -21.5,12.5 - parent: 1668 - type: Transform - - uid: 3470 - components: - - pos: -21.5,13.5 - parent: 1668 - type: Transform - - uid: 3471 - components: - - pos: -21.5,14.5 - parent: 1668 - type: Transform - - uid: 3472 - components: - - pos: -21.5,11.5 - parent: 1668 - type: Transform - - uid: 3473 - components: - - pos: -21.5,10.5 - parent: 1668 - type: Transform - - uid: 3474 - components: - - pos: -21.5,9.5 - parent: 1668 - type: Transform - - uid: 3475 - components: - - pos: -20.5,11.5 - parent: 1668 - type: Transform - - uid: 3476 - components: - - pos: -19.5,11.5 - parent: 1668 - type: Transform - - uid: 3477 - components: - - pos: -22.5,11.5 - parent: 1668 - type: Transform - - uid: 3478 - components: - - pos: -23.5,11.5 - parent: 1668 - type: Transform - - uid: 3479 - components: - - pos: -24.5,11.5 - parent: 1668 - type: Transform - - uid: 3480 - components: - - pos: -25.5,11.5 - parent: 1668 - type: Transform - - uid: 3481 - components: - - pos: -26.5,11.5 - parent: 1668 - type: Transform - - uid: 3482 - components: - - pos: -27.5,11.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3483 - components: - - pos: -27.5,12.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3484 - components: - - pos: -25.5,10.5 - parent: 1668 - type: Transform - - uid: 3485 - components: - - pos: -25.5,9.5 - parent: 1668 - type: Transform - - uid: 3486 - components: - - pos: -26.5,9.5 - parent: 1668 - type: Transform - - uid: 3487 - components: - - pos: -27.5,9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3488 - components: - - pos: -27.5,8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3489 - components: - - pos: -22.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3490 - components: - - pos: -22.5,6.5 - parent: 1668 - type: Transform - - uid: 3491 - components: - - pos: -22.5,5.5 - parent: 1668 - type: Transform - - uid: 3492 - components: - - pos: -22.5,4.5 - parent: 1668 - type: Transform - - uid: 3493 - components: - - pos: -22.5,3.5 - parent: 1668 - type: Transform - - uid: 3494 - components: - - pos: -22.5,2.5 - parent: 1668 - type: Transform - - uid: 3495 - components: - - pos: -21.5,3.5 - parent: 1668 - type: Transform - - uid: 3496 - components: - - pos: -20.5,3.5 - parent: 1668 - type: Transform - - uid: 3497 - components: - - pos: -19.5,3.5 - parent: 1668 - type: Transform - - uid: 3498 - components: - - pos: -18.5,3.5 - parent: 1668 - type: Transform - - uid: 3499 - components: - - pos: -21.5,5.5 - parent: 1668 - type: Transform - - uid: 3500 - components: - - pos: -20.5,5.5 - parent: 1668 - type: Transform - - uid: 3501 - components: - - pos: -19.5,5.5 - parent: 1668 - type: Transform - - uid: 3502 - components: - - pos: -23.5,5.5 - parent: 1668 - type: Transform - - uid: 3503 - components: - - pos: -23.5,3.5 - parent: 1668 - type: Transform - - uid: 3504 - components: - - pos: -13.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3505 - components: - - pos: -14.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3506 - components: - - pos: -14.5,5.5 - parent: 1668 - type: Transform - - uid: 3507 - components: - - pos: -12.5,6.5 - parent: 1668 - type: Transform - - uid: 3508 - components: - - pos: -12.5,5.5 - parent: 1668 - type: Transform - - uid: 3509 - components: - - pos: -11.5,5.5 - parent: 1668 - type: Transform - - uid: 3510 - components: - - pos: -15.5,5.5 - parent: 1668 - type: Transform - - uid: 3511 - components: - - pos: -16.5,5.5 - parent: 1668 - type: Transform - - uid: 3512 - components: - - pos: -10.5,5.5 - parent: 1668 - type: Transform - - uid: 3513 - components: - - pos: -16.5,13.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3514 - components: - - pos: -16.5,12.5 - parent: 1668 - type: Transform - - uid: 3515 - components: - - pos: -15.5,12.5 - parent: 1668 - type: Transform - - uid: 3516 - components: - - pos: -15.5,11.5 - parent: 1668 - type: Transform - - uid: 3517 - components: - - pos: -15.5,10.5 - parent: 1668 - type: Transform - - uid: 3518 - components: - - pos: -15.5,9.5 - parent: 1668 - type: Transform - - uid: 3519 - components: - - pos: -20.5,9.5 - parent: 1668 - type: Transform - - uid: 3520 - components: - - pos: -19.5,9.5 - parent: 1668 - type: Transform - - uid: 3521 - components: - - pos: -22.5,9.5 - parent: 1668 - type: Transform - - uid: 3522 - components: - - pos: -23.5,9.5 - parent: 1668 - type: Transform - - uid: 3991 - components: - - pos: -31.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3992 - components: - - pos: -31.5,1.5 - parent: 1668 - type: Transform - - uid: 3993 - components: - - pos: -31.5,0.5 - parent: 1668 - type: Transform - - uid: 3994 - components: - - pos: -31.5,-0.5 - parent: 1668 - type: Transform - - uid: 3995 - components: - - pos: -31.5,-1.5 - parent: 1668 - type: Transform - - uid: 3996 - components: - - pos: -31.5,-2.5 - parent: 1668 - type: Transform - - uid: 3997 - components: - - pos: -32.5,-2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3998 - components: - - pos: -33.5,-2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3999 - components: - - pos: -34.5,-2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4000 - components: - - pos: -32.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4001 - components: - - pos: -33.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4002 - components: - - pos: -34.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4003 - components: - - pos: -32.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4004 - components: - - pos: -33.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4005 - components: - - pos: -34.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4006 - components: - - pos: -30.5,-0.5 - parent: 1668 - type: Transform - - uid: 4007 - components: - - pos: -29.5,-0.5 - parent: 1668 - type: Transform - - uid: 4008 - components: - - pos: -28.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4009 - components: - - pos: -26.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4010 - components: - - pos: -25.5,-0.5 - parent: 1668 - type: Transform - - uid: 4011 - components: - - pos: -24.5,-0.5 - parent: 1668 - type: Transform - - uid: 4012 - components: - - pos: -23.5,-0.5 - parent: 1668 - type: Transform - - uid: 4013 - components: - - pos: -22.5,-0.5 - parent: 1668 - type: Transform - - uid: 4014 - components: - - pos: -21.5,-0.5 - parent: 1668 - type: Transform - - uid: 4015 - components: - - pos: -20.5,-0.5 - parent: 1668 - type: Transform - - uid: 4016 - components: - - pos: -19.5,-0.5 - parent: 1668 - type: Transform - - uid: 4017 - components: - - pos: -18.5,-0.5 - parent: 1668 - type: Transform - - uid: 4018 - components: - - pos: -17.5,-0.5 - parent: 1668 - type: Transform - - uid: 4019 - components: - - pos: -16.5,-0.5 - parent: 1668 - type: Transform - - uid: 4020 - components: - - pos: -15.5,-0.5 - parent: 1668 - type: Transform - - uid: 4021 - components: - - pos: -14.5,-0.5 - parent: 1668 - type: Transform - - uid: 4022 - components: - - pos: -13.5,-0.5 - parent: 1668 - type: Transform - - uid: 4023 - components: - - pos: -12.5,-0.5 - parent: 1668 - type: Transform - - uid: 4024 - components: - - pos: -11.5,-0.5 - parent: 1668 - type: Transform - - uid: 4025 - components: - - pos: -10.5,-0.5 - parent: 1668 - type: Transform - - uid: 4026 - components: - - pos: -9.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4027 - components: - - pos: -14.5,0.5 - parent: 1668 - type: Transform - - uid: 4028 - components: - - pos: -14.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4029 - components: - - pos: -15.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4030 - components: - - pos: -16.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4031 - components: - - pos: -12.5,0.5 - parent: 1668 - type: Transform - - uid: 4032 - components: - - pos: -12.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4033 - components: - - pos: -11.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4034 - components: - - pos: -10.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4035 - components: - - pos: -13.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4036 - components: - - pos: -13.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4037 - components: - - pos: -17.5,0.5 - parent: 1668 - type: Transform - - uid: 4038 - components: - - pos: -17.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4039 - components: - - pos: -21.5,-2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4040 - components: - - pos: -21.5,-3.5 - parent: 1668 - type: Transform - - uid: 4041 - components: - - pos: -21.5,-4.5 - parent: 1668 - type: Transform - - uid: 4042 - components: - - pos: -21.5,-5.5 - parent: 1668 - type: Transform - - uid: 4043 - components: - - pos: -21.5,-6.5 - parent: 1668 - type: Transform - - uid: 4044 - components: - - pos: -21.5,-7.5 - parent: 1668 - type: Transform - - uid: 4045 - components: - - pos: -21.5,-8.5 - parent: 1668 - type: Transform - - uid: 4046 - components: - - pos: -22.5,-5.5 - parent: 1668 - type: Transform - - uid: 4047 - components: - - pos: -23.5,-5.5 - parent: 1668 - type: Transform - - uid: 4048 - components: - - pos: -24.5,-5.5 - parent: 1668 - type: Transform - - uid: 4049 - components: - - pos: -25.5,-5.5 - parent: 1668 - type: Transform - - uid: 4050 - components: - - pos: -26.5,-5.5 - parent: 1668 - type: Transform - - uid: 4051 - components: - - pos: -26.5,-6.5 - parent: 1668 - type: Transform - - uid: 4052 - components: - - pos: -26.5,-7.5 - parent: 1668 - type: Transform - - uid: 4053 - components: - - pos: -25.5,-7.5 - parent: 1668 - type: Transform - - uid: 4054 - components: - - pos: -24.5,-7.5 - parent: 1668 - type: Transform - - uid: 4055 - components: - - pos: -23.5,-7.5 - parent: 1668 - type: Transform - - uid: 4056 - components: - - pos: -22.5,-7.5 - parent: 1668 - type: Transform - - uid: 4057 - components: - - pos: -20.5,-5.5 - parent: 1668 - type: Transform - - uid: 4058 - components: - - pos: -19.5,-5.5 - parent: 1668 - type: Transform - - uid: 4059 - components: - - pos: -18.5,-5.5 - parent: 1668 - type: Transform - - uid: 4060 - components: - - pos: -17.5,-5.5 - parent: 1668 - type: Transform - - uid: 4061 - components: - - pos: -17.5,-6.5 - parent: 1668 - type: Transform - - uid: 4062 - components: - - pos: -17.5,-7.5 - parent: 1668 - type: Transform - - uid: 4063 - components: - - pos: -18.5,-7.5 - parent: 1668 - type: Transform - - uid: 4064 - components: - - pos: -19.5,-7.5 - parent: 1668 - type: Transform - - uid: 4065 - components: - - pos: -20.5,-7.5 - parent: 1668 - type: Transform - - uid: 4066 - components: - - pos: -26.5,-4.5 - parent: 1668 - type: Transform - - uid: 4067 - components: - - pos: -26.5,-8.5 - parent: 1668 - type: Transform - - uid: 4068 - components: - - pos: -17.5,-8.5 - parent: 1668 - type: Transform - - uid: 4069 - components: - - pos: -17.5,-4.5 - parent: 1668 - type: Transform - - uid: 4070 - components: - - pos: -13.5,-2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4071 - components: - - pos: -13.5,-3.5 - parent: 1668 - type: Transform - - uid: 4072 - components: - - pos: -13.5,-4.5 - parent: 1668 - type: Transform - - uid: 4073 - components: - - pos: -13.5,-5.5 - parent: 1668 - type: Transform - - uid: 4074 - components: - - pos: -13.5,-6.5 - parent: 1668 - type: Transform - - uid: 4075 - components: - - pos: -13.5,-7.5 - parent: 1668 - type: Transform - - uid: 4076 - components: - - pos: -13.5,-8.5 - parent: 1668 - type: Transform - - uid: 4077 - components: - - pos: -12.5,-8.5 - parent: 1668 - type: Transform - - uid: 4078 - components: - - pos: -11.5,-8.5 - parent: 1668 - type: Transform - - uid: 4079 - components: - - pos: -12.5,-4.5 - parent: 1668 - type: Transform - - uid: 4080 - components: - - pos: -11.5,-4.5 - parent: 1668 - type: Transform - - uid: 4081 - components: - - pos: -14.5,-4.5 - parent: 1668 - type: Transform - - uid: 4082 - components: - - pos: -14.5,-8.5 - parent: 1668 - type: Transform - - uid: 4083 - components: - - pos: -11.5,-6.5 - parent: 1668 - type: Transform - - uid: 4084 - components: - - pos: -12.5,-6.5 - parent: 1668 - type: Transform - - uid: 4085 - components: - - pos: -31.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4086 - components: - - pos: -31.5,6.5 - parent: 1668 - type: Transform - - uid: 4087 - components: - - pos: -31.5,5.5 - parent: 1668 - type: Transform - - uid: 4088 - components: - - pos: -31.5,4.5 - parent: 1668 - type: Transform - - uid: 4089 - components: - - pos: -32.5,4.5 - parent: 1668 - type: Transform - - uid: 4090 - components: - - pos: -33.5,4.5 - parent: 1668 - type: Transform - - uid: 4091 - components: - - pos: -34.5,4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4092 - components: - - pos: -34.5,3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4093 - components: - - pos: -34.5,5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4094 - components: - - pos: -34.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4095 - components: - - pos: -32.5,6.5 - parent: 1668 - type: Transform - - uid: 4096 - components: - - pos: -32.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4097 - components: - - pos: -33.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4098 - components: - - pos: -30.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4099 - components: - - pos: -30.5,4.5 - parent: 1668 - type: Transform - - uid: 4100 - components: - - pos: -29.5,4.5 - parent: 1668 - type: Transform - - uid: 4101 - components: - - pos: -28.5,4.5 - parent: 1668 - type: Transform - - uid: 4102 - components: - - pos: -27.5,4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4103 - components: - - pos: -27.5,3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4104 - components: - - pos: -27.5,5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4481 - components: - - pos: 1.5,-20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4482 - components: - - pos: 1.5,-19.5 - parent: 1668 - type: Transform - - uid: 4483 - components: - - pos: 1.5,-18.5 - parent: 1668 - type: Transform - - uid: 4484 - components: - - pos: 1.5,-17.5 - parent: 1668 - type: Transform - - uid: 4485 - components: - - pos: 1.5,-16.5 - parent: 1668 - type: Transform - - uid: 4486 - components: - - pos: 0.5,-18.5 - parent: 1668 - type: Transform - - uid: 4487 - components: - - pos: -0.5,-18.5 - parent: 1668 - type: Transform - - uid: 4488 - components: - - pos: -1.5,-18.5 - parent: 1668 - type: Transform - - uid: 4489 - components: - - pos: -2.5,-18.5 - parent: 1668 - type: Transform - - uid: 4490 - components: - - pos: -3.5,-18.5 - parent: 1668 - type: Transform - - uid: 4491 - components: - - pos: -10.5,-24.5 - parent: 1668 - type: Transform - - uid: 4492 - components: - - pos: -5.5,-18.5 - parent: 1668 - type: Transform - - uid: 4493 - components: - - pos: -4.5,-17.5 - parent: 1668 - type: Transform - - uid: 4494 - components: - - pos: -4.5,-16.5 - parent: 1668 - type: Transform - - uid: 4495 - components: - - pos: -8.5,-24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4496 - components: - - pos: -9.5,-24.5 - parent: 1668 - type: Transform - - uid: 4497 - components: - - pos: 3.5,-17.5 - parent: 1668 - type: Transform - - uid: 4498 - components: - - pos: 3.5,-16.5 - parent: 1668 - type: Transform - - uid: 4500 - components: - - pos: -1.5,-17.5 - parent: 1668 - type: Transform - - uid: 4501 - components: - - pos: -1.5,-16.5 - parent: 1668 - type: Transform - - uid: 4502 - components: - - pos: 2.5,-17.5 - parent: 1668 - type: Transform - - uid: 4503 - components: - - pos: 3.5,-15.5 - parent: 1668 - type: Transform - - uid: 4505 - components: - - pos: -4.5,-15.5 - parent: 1668 - type: Transform - - uid: 4506 - components: - - pos: -3.5,-15.5 - parent: 1668 - type: Transform - - uid: 4507 - components: - - pos: -3.5,-17.5 - parent: 1668 - type: Transform - - uid: 4508 - components: - - pos: -5.5,-17.5 - parent: 1668 - type: Transform - - uid: 4509 - components: - - pos: 4.5,-17.5 - parent: 1668 - type: Transform - - uid: 4510 - components: - - pos: -10.5,-25.5 - parent: 1668 - type: Transform - - uid: 4511 - components: - - pos: -10.5,-26.5 - parent: 1668 - type: Transform - - uid: 4512 - components: - - pos: -10.5,-27.5 - parent: 1668 - type: Transform - - uid: 4513 - components: - - pos: -10.5,-23.5 - parent: 1668 - type: Transform - - uid: 4514 - components: - - pos: -10.5,-22.5 - parent: 1668 - type: Transform - - uid: 4515 - components: - - pos: -9.5,-22.5 - parent: 1668 - type: Transform - - uid: 4516 - components: - - pos: -8.5,-22.5 - parent: 1668 - type: Transform - - uid: 4517 - components: - - pos: 7.5,-24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4518 - components: - - pos: 8.5,-24.5 - parent: 1668 - type: Transform - - uid: 4519 - components: - - pos: 9.5,-24.5 - parent: 1668 - type: Transform - - uid: 4520 - components: - - pos: 9.5,-25.5 - parent: 1668 - type: Transform - - uid: 4521 - components: - - pos: 9.5,-26.5 - parent: 1668 - type: Transform - - uid: 4522 - components: - - pos: 9.5,-27.5 - parent: 1668 - type: Transform - - uid: 4523 - components: - - pos: 9.5,-23.5 - parent: 1668 - type: Transform - - uid: 4524 - components: - - pos: 9.5,-22.5 - parent: 1668 - type: Transform - - uid: 4525 - components: - - pos: 8.5,-22.5 - parent: 1668 - type: Transform - - uid: 4526 - components: - - pos: 7.5,-22.5 - parent: 1668 - type: Transform - - uid: 4527 - components: - - pos: -2.5,-24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4528 - components: - - pos: -2.5,-25.5 - parent: 1668 - type: Transform - - uid: 4529 - components: - - pos: -2.5,-26.5 - parent: 1668 - type: Transform - - uid: 4530 - components: - - pos: -2.5,-27.5 - parent: 1668 - type: Transform - - uid: 4531 - components: - - pos: -1.5,-27.5 - parent: 1668 - type: Transform - - uid: 4532 - components: - - pos: -0.5,-27.5 - parent: 1668 - type: Transform - - uid: 4533 - components: - - pos: 0.5,-27.5 - parent: 1668 - type: Transform - - uid: 4534 - components: - - pos: 1.5,-27.5 - parent: 1668 - type: Transform - - uid: 4535 - components: - - pos: 2.5,-27.5 - parent: 1668 - type: Transform - - uid: 4536 - components: - - pos: 3.5,-27.5 - parent: 1668 - type: Transform - - uid: 4537 - components: - - pos: 4.5,-27.5 - parent: 1668 - type: Transform - - uid: 4538 - components: - - pos: 5.5,-27.5 - parent: 1668 - type: Transform - - uid: 4539 - components: - - pos: -4.5,-27.5 - parent: 1668 - type: Transform - - uid: 4540 - components: - - pos: -3.5,-27.5 - parent: 1668 - type: Transform - - uid: 4541 - components: - - pos: -5.5,-27.5 - parent: 1668 - type: Transform - - uid: 4542 - components: - - pos: -6.5,-27.5 - parent: 1668 - type: Transform - - uid: 4543 - components: - - pos: 5.5,-28.5 - parent: 1668 - type: Transform - - uid: 4544 - components: - - pos: -6.5,-28.5 - parent: 1668 - type: Transform - - uid: 4545 - components: - - pos: -6.5,-26.5 - parent: 1668 - type: Transform - - uid: 4546 - components: - - pos: 5.5,-26.5 - parent: 1668 - type: Transform - - uid: 4547 - components: - - pos: -0.5,-26.5 - parent: 1668 - type: Transform - - uid: 4548 - components: - - pos: -0.5,-28.5 - parent: 1668 - type: Transform - - uid: 4549 - components: - - pos: -0.5,-25.5 - parent: 1668 - type: Transform - - uid: 4550 - components: - - pos: -0.5,-24.5 - parent: 1668 - type: Transform - - uid: 4551 - components: - - pos: -0.5,-23.5 - parent: 1668 - type: Transform - - uid: 4552 - components: - - pos: -0.5,-22.5 - parent: 1668 - type: Transform - - uid: 4553 - components: - - pos: 2.5,-22.5 - parent: 1668 - type: Transform - - uid: 4554 - components: - - pos: -1.5,-22.5 - parent: 1668 - type: Transform - - uid: 4555 - components: - - pos: -2.5,-22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4556 - components: - - pos: -2.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4557 - components: - - pos: -2.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4558 - components: - - pos: -3.5,-22.5 - parent: 1668 - type: Transform - - uid: 4559 - components: - - pos: -4.5,-22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4560 - components: - - pos: -4.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4561 - components: - - pos: -4.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4562 - components: - - pos: 1.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4563 - components: - - pos: 1.5,-22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4564 - components: - - pos: 1.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4565 - components: - - pos: 3.5,-22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4566 - components: - - pos: 3.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4567 - components: - - pos: 3.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4898 - components: - - pos: 8.5,-17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4899 - components: - - pos: 8.5,-18.5 - parent: 1668 - type: Transform - - uid: 4900 - components: - - pos: 8.5,-19.5 - parent: 1668 - type: Transform - - uid: 4901 - components: - - pos: 9.5,-19.5 - parent: 1668 - type: Transform - - uid: 4902 - components: - - pos: 10.5,-19.5 - parent: 1668 - type: Transform - - uid: 4903 - components: - - pos: 11.5,-19.5 - parent: 1668 - type: Transform - - uid: 4904 - components: - - pos: 12.5,-19.5 - parent: 1668 - type: Transform - - uid: 4905 - components: - - pos: 13.5,-19.5 - parent: 1668 - type: Transform - - uid: 4906 - components: - - pos: 7.5,-18.5 - parent: 1668 - type: Transform - - uid: 4907 - components: - - pos: 6.5,-18.5 - parent: 1668 - type: Transform - - uid: 4908 - components: - - pos: 6.5,-17.5 - parent: 1668 - type: Transform - - uid: 4909 - components: - - pos: 6.5,-16.5 - parent: 1668 - type: Transform - - uid: 4910 - components: - - pos: -9.5,-17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4911 - components: - - pos: -9.5,-18.5 - parent: 1668 - type: Transform - - uid: 4912 - components: - - pos: -8.5,-18.5 - parent: 1668 - type: Transform - - uid: 4913 - components: - - pos: -8.5,-17.5 - parent: 1668 - type: Transform - - uid: 4914 - components: - - pos: -8.5,-16.5 - parent: 1668 - type: Transform - - uid: 4915 - components: - - pos: -9.5,-19.5 - parent: 1668 - type: Transform - - uid: 4916 - components: - - pos: -10.5,-19.5 - parent: 1668 - type: Transform - - uid: 4917 - components: - - pos: -11.5,-19.5 - parent: 1668 - type: Transform - - uid: 4918 - components: - - pos: -12.5,-19.5 - parent: 1668 - type: Transform - - uid: 4919 - components: - - pos: -13.5,-19.5 - parent: 1668 - type: Transform - - uid: 4920 - components: - - pos: -13.5,-18.5 - parent: 1668 - type: Transform - - uid: 4921 - components: - - pos: -13.5,-17.5 - parent: 1668 - type: Transform - - uid: 4922 - components: - - pos: -13.5,-16.5 - parent: 1668 - type: Transform - - uid: 4993 - components: - - pos: 18.5,-19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4994 - components: - - pos: 18.5,-20.5 - parent: 1668 - type: Transform - - uid: 4995 - components: - - pos: 17.5,-20.5 - parent: 1668 - type: Transform - - uid: 4996 - components: - - pos: 16.5,-20.5 - parent: 1668 - type: Transform - - uid: 4997 - components: - - pos: 16.5,-19.5 - parent: 1668 - type: Transform - - uid: 4998 - components: - - pos: 16.5,-18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4999 - components: - - pos: 20.5,-12.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5000 - components: - - pos: 20.5,-13.5 - parent: 1668 - type: Transform - - uid: 5001 - components: - - pos: 20.5,-14.5 - parent: 1668 - type: Transform - - uid: 5002 - components: - - pos: 20.5,-15.5 - parent: 1668 - type: Transform - - uid: 5003 - components: - - pos: 19.5,-10.5 - parent: 1668 - type: Transform - - uid: 5004 - components: - - pos: 19.5,-14.5 - parent: 1668 - type: Transform - - uid: 5005 - components: - - pos: 18.5,-14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5006 - components: - - pos: 17.5,-14.5 - parent: 1668 - type: Transform - - uid: 5007 - components: - - pos: 16.5,-14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5008 - components: - - pos: 15.5,-14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5009 - components: - - pos: 21.5,-14.5 - parent: 1668 - type: Transform - - uid: 5010 - components: - - pos: 22.5,-14.5 - parent: 1668 - type: Transform - - uid: 5011 - components: - - pos: 19.5,-19.5 - parent: 1668 - type: Transform - - uid: 5012 - components: - - pos: 20.5,-19.5 - parent: 1668 - type: Transform - - uid: 5013 - components: - - pos: 21.5,-19.5 - parent: 1668 - type: Transform - - uid: 5014 - components: - - pos: 21.5,-18.5 - parent: 1668 - type: Transform - - uid: 5015 - components: - - pos: 21.5,-17.5 - parent: 1668 - type: Transform - - uid: 5016 - components: - - pos: 21.5,-20.5 - parent: 1668 - type: Transform - - uid: 5017 - components: - - pos: 21.5,-21.5 - parent: 1668 - type: Transform - - uid: 5018 - components: - - pos: 21.5,-22.5 - parent: 1668 - type: Transform - - uid: 5019 - components: - - pos: 16.5,-21.5 - parent: 1668 - type: Transform - - uid: 5020 - components: - - pos: 16.5,-22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5021 - components: - - pos: 16.5,-23.5 - parent: 1668 - type: Transform - - uid: 5022 - components: - - pos: 16.5,-24.5 - parent: 1668 - type: Transform - - uid: 5023 - components: - - pos: 16.5,-25.5 - parent: 1668 - type: Transform - - uid: 5024 - components: - - pos: 16.5,-26.5 - parent: 1668 - type: Transform - - uid: 5026 - components: - - pos: 15.5,-24.5 - parent: 1668 - type: Transform - - uid: 5027 - components: - - pos: 14.5,-24.5 - parent: 1668 - type: Transform - - uid: 5028 - components: - - pos: 13.5,-24.5 - parent: 1668 - type: Transform - - uid: 5029 - components: - - pos: 13.5,-23.5 - parent: 1668 - type: Transform - - uid: 5030 - components: - - pos: 13.5,-22.5 - parent: 1668 - type: Transform - - uid: 5031 - components: - - pos: 13.5,-21.5 - parent: 1668 - type: Transform - - uid: 5032 - components: - - pos: 13.5,-25.5 - parent: 1668 - type: Transform - - uid: 5033 - components: - - pos: 13.5,-26.5 - parent: 1668 - type: Transform - - uid: 5034 - components: - - pos: 13.5,-27.5 - parent: 1668 - type: Transform - - uid: 5035 - components: - - pos: 13.5,-28.5 - parent: 1668 - type: Transform - - uid: 5036 - components: - - pos: 17.5,-25.5 - parent: 1668 - type: Transform - - uid: 5037 - components: - - pos: 18.5,-25.5 - parent: 1668 - type: Transform - - uid: 5038 - components: - - pos: 19.5,-25.5 - parent: 1668 - type: Transform - - uid: 5039 - components: - - pos: 20.5,-25.5 - parent: 1668 - type: Transform - - uid: 5040 - components: - - pos: 21.5,-25.5 - parent: 1668 - type: Transform - - uid: 5121 - components: - - pos: 34.5,-9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5122 - components: - - pos: 34.5,-10.5 - parent: 1668 - type: Transform - - uid: 5123 - components: - - pos: 34.5,-11.5 - parent: 1668 - type: Transform - - uid: 5124 - components: - - pos: 34.5,-12.5 - parent: 1668 - type: Transform - - uid: 5125 - components: - - pos: 34.5,-13.5 - parent: 1668 - type: Transform - - uid: 5126 - components: - - pos: 33.5,-13.5 - parent: 1668 - type: Transform - - uid: 5127 - components: - - pos: 32.5,-13.5 - parent: 1668 - type: Transform - - uid: 5128 - components: - - pos: 32.5,-14.5 - parent: 1668 - type: Transform - - uid: 5129 - components: - - pos: 31.5,-13.5 - parent: 1668 - type: Transform - - uid: 5130 - components: - - pos: 30.5,-13.5 - parent: 1668 - type: Transform - - uid: 5131 - components: - - pos: 30.5,-12.5 - parent: 1668 - type: Transform - - uid: 5132 - components: - - pos: 30.5,-11.5 - parent: 1668 - type: Transform - - uid: 5134 - components: - - pos: 22.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5135 - components: - - pos: 23.5,-23.5 - parent: 1668 - type: Transform - - uid: 5136 - components: - - pos: 24.5,-23.5 - parent: 1668 - type: Transform - - uid: 5137 - components: - - pos: 25.5,-23.5 - parent: 1668 - type: Transform - - uid: 5138 - components: - - pos: 26.5,-23.5 - parent: 1668 - type: Transform - - uid: 5139 - components: - - pos: 25.5,-24.5 - parent: 1668 - type: Transform - - uid: 5140 - components: - - pos: 25.5,-25.5 - parent: 1668 - type: Transform - - uid: 5141 - components: - - pos: 25.5,-26.5 - parent: 1668 - type: Transform - - uid: 5142 - components: - - pos: 25.5,-22.5 - parent: 1668 - type: Transform - - uid: 5143 - components: - - pos: 25.5,-21.5 - parent: 1668 - type: Transform - - uid: 5144 - components: - - pos: 25.5,-20.5 - parent: 1668 - type: Transform - - uid: 5145 - components: - - pos: 25.5,-19.5 - parent: 1668 - type: Transform - - uid: 5147 - components: - - pos: 29.5,-19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5148 - components: - - pos: 29.5,-20.5 - parent: 1668 - type: Transform - - uid: 5149 - components: - - pos: 29.5,-21.5 - parent: 1668 - type: Transform - - uid: 5150 - components: - - pos: 29.5,-22.5 - parent: 1668 - type: Transform - - uid: 5151 - components: - - pos: 29.5,-23.5 - parent: 1668 - type: Transform - - uid: 5152 - components: - - pos: 29.5,-24.5 - parent: 1668 - type: Transform - - uid: 5153 - components: - - pos: 29.5,-25.5 - parent: 1668 - type: Transform - - uid: 5154 - components: - - pos: 28.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5155 - components: - - pos: 28.5,-24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5156 - components: - - pos: 28.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5157 - components: - - pos: 28.5,-22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5158 - components: - - pos: 28.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5159 - components: - - pos: 30.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5160 - components: - - pos: 31.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5161 - components: - - pos: 32.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5162 - components: - - pos: 33.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5163 - components: - - pos: 30.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5164 - components: - - pos: 31.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5165 - components: - - pos: 32.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5166 - components: - - pos: 33.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5171 - components: - - pos: 31.5,-20.5 - parent: 1668 - type: Transform - - uid: 5172 - components: - - pos: 31.5,-19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5173 - components: - - pos: 33.5,-20.5 - parent: 1668 - type: Transform - - uid: 5174 - components: - - pos: 33.5,-19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5258 - components: - - pos: 30.5,-14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5259 - components: - - pos: 30.5,-15.5 - parent: 1668 - type: Transform - - uid: 5260 - components: - - pos: 30.5,-16.5 - parent: 1668 - type: Transform - - uid: 5261 - components: - - pos: 30.5,-17.5 - parent: 1668 - type: Transform - - uid: 5262 - components: - - pos: 31.5,-17.5 - parent: 1668 - type: Transform - - uid: 5263 - components: - - pos: 32.5,-17.5 - parent: 1668 - type: Transform - - uid: 5264 - components: - - pos: 33.5,-17.5 - parent: 1668 - type: Transform - - uid: 5265 - components: - - pos: 29.5,-17.5 - parent: 1668 - type: Transform - - uid: 5266 - components: - - pos: 28.5,-17.5 - parent: 1668 - type: Transform - - uid: 5267 - components: - - pos: 27.5,-17.5 - parent: 1668 - type: Transform - - uid: 5268 - components: - - pos: 26.5,-17.5 - parent: 1668 - type: Transform - - uid: 5269 - components: - - pos: 25.5,-17.5 - parent: 1668 - type: Transform - - uid: 5270 - components: - - pos: 24.5,-17.5 - parent: 1668 - type: Transform - - uid: 5271 - components: - - pos: 24.5,-16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5272 - components: - - pos: 24.5,-15.5 - parent: 1668 - type: Transform - - uid: 5273 - components: - - pos: 24.5,-14.5 - parent: 1668 - type: Transform - - uid: 5274 - components: - - pos: 27.5,-16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5275 - components: - - pos: 27.5,-15.5 - parent: 1668 - type: Transform - - uid: 5276 - components: - - pos: 27.5,-14.5 - parent: 1668 - type: Transform - - uid: 5441 - components: - - pos: 15.5,-22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5442 - components: - - pos: 17.5,-22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5443 - components: - - pos: 16.5,-28.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5444 - components: - - pos: 16.5,-29.5 - parent: 1668 - type: Transform - - uid: 5445 - components: - - pos: 16.5,-30.5 - parent: 1668 - type: Transform - - uid: 5446 - components: - - pos: 16.5,-31.5 - parent: 1668 - type: Transform - - uid: 5447 - components: - - pos: 17.5,-30.5 - parent: 1668 - type: Transform - - uid: 5448 - components: - - pos: 18.5,-30.5 - parent: 1668 - type: Transform - - uid: 5449 - components: - - pos: 18.5,-31.5 - parent: 1668 - type: Transform - - uid: 5450 - components: - - pos: 18.5,-29.5 - parent: 1668 - type: Transform - - uid: 5585 - components: - - pos: 21.5,-26.5 - parent: 1668 - type: Transform - - uid: 5935 - components: - - pos: -16.5,-30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5936 - components: - - pos: -16.5,-31.5 - parent: 1668 - type: Transform - - uid: 5937 - components: - - pos: -16.5,-32.5 - parent: 1668 - type: Transform - - uid: 5938 - components: - - pos: -16.5,-33.5 - parent: 1668 - type: Transform - - uid: 5939 - components: - - pos: -17.5,-33.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5940 - components: - - pos: -18.5,-33.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6067 - components: - - pos: -17.5,-22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6068 - components: - - pos: -18.5,-22.5 - parent: 1668 - type: Transform - - uid: 6069 - components: - - pos: -19.5,-22.5 - parent: 1668 - type: Transform - - uid: 6070 - components: - - pos: -19.5,-23.5 - parent: 1668 - type: Transform - - uid: 6071 - components: - - pos: -19.5,-24.5 - parent: 1668 - type: Transform - - uid: 6072 - components: - - pos: -19.5,-25.5 - parent: 1668 - type: Transform - - uid: 6073 - components: - - pos: -19.5,-26.5 - parent: 1668 - type: Transform - - uid: 6074 - components: - - pos: -19.5,-27.5 - parent: 1668 - type: Transform - - uid: 6075 - components: - - pos: -19.5,-28.5 - parent: 1668 - type: Transform - - uid: 6076 - components: - - pos: -20.5,-26.5 - parent: 1668 - type: Transform - - uid: 6077 - components: - - pos: -21.5,-26.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6078 - components: - - pos: -22.5,-26.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6079 - components: - - pos: -20.5,-24.5 - parent: 1668 - type: Transform - - uid: 6080 - components: - - pos: -21.5,-24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6081 - components: - - pos: -22.5,-24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6082 - components: - - pos: -19.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6083 - components: - - pos: -18.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6084 - components: - - pos: -20.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6085 - components: - - pos: -21.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6086 - components: - - pos: -21.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6087 - components: - - pos: -21.5,-27.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6088 - components: - - pos: -22.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6089 - components: - - pos: -23.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6090 - components: - - pos: -23.5,-26.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6091 - components: - - pos: -23.5,-27.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6092 - components: - - pos: -23.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6093 - components: - - pos: -23.5,-24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6094 - components: - - pos: -18.5,-34.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6095 - components: - - pos: -17.5,-34.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6096 - components: - - pos: -19.5,-34.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6097 - components: - - pos: -19.5,-33.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6098 - components: - - pos: -20.5,-33.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6099 - components: - - pos: -20.5,-32.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6100 - components: - - pos: -20.5,-31.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6112 - components: - - pos: -15.5,-28.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6113 - components: - - pos: -14.5,-28.5 - parent: 1668 - type: Transform - - uid: 6114 - components: - - pos: -13.5,-28.5 - parent: 1668 - type: Transform - - uid: 6115 - components: - - pos: -13.5,-29.5 - parent: 1668 - type: Transform - - uid: 6116 - components: - - pos: -13.5,-30.5 - parent: 1668 - type: Transform - - uid: 6117 - components: - - pos: -13.5,-31.5 - parent: 1668 - type: Transform - - uid: 6118 - components: - - pos: -13.5,-32.5 - parent: 1668 - type: Transform - - uid: 6119 - components: - - pos: -13.5,-33.5 - parent: 1668 - type: Transform - - uid: 6120 - components: - - pos: -13.5,-27.5 - parent: 1668 - type: Transform - - uid: 6121 - components: - - pos: -13.5,-26.5 - parent: 1668 - type: Transform - - uid: 6122 - components: - - pos: -13.5,-25.5 - parent: 1668 - type: Transform - - uid: 6123 - components: - - pos: -13.5,-24.5 - parent: 1668 - type: Transform - - uid: 6124 - components: - - pos: -13.5,-23.5 - parent: 1668 - type: Transform - - uid: 6125 - components: - - pos: -13.5,-22.5 - parent: 1668 - type: Transform - - uid: 6126 - components: - - pos: -13.5,-21.5 - parent: 1668 - type: Transform - - uid: 6127 - components: - - pos: 15.5,-30.5 - parent: 1668 - type: Transform - - uid: 6128 - components: - - pos: 14.5,-30.5 - parent: 1668 - type: Transform - - uid: 6129 - components: - - pos: 13.5,-30.5 - parent: 1668 - type: Transform - - uid: 6131 - components: - - pos: 13.5,-32.5 - parent: 1668 - type: Transform - - uid: 6132 - components: - - pos: 13.5,-33.5 - parent: 1668 - type: Transform - - uid: 6133 - components: - - pos: -0.5,-29.5 - parent: 1668 - type: Transform - - uid: 6134 - components: - - pos: -0.5,-30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6135 - components: - - pos: -1.5,-30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6136 - components: - - pos: 0.5,-30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6202 - components: - - pos: -8.5,-30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6203 - components: - - pos: -8.5,-31.5 - parent: 1668 - type: Transform - - uid: 6204 - components: - - pos: -8.5,-33.5 - parent: 1668 - type: Transform - - uid: 6205 - components: - - pos: -8.5,-32.5 - parent: 1668 - type: Transform - - uid: 6206 - components: - - pos: -7.5,-32.5 - parent: 1668 - type: Transform - - uid: 6207 - components: - - pos: -6.5,-32.5 - parent: 1668 - type: Transform - - uid: 6208 - components: - - pos: -5.5,-32.5 - parent: 1668 - type: Transform - - uid: 6209 - components: - - pos: -4.5,-32.5 - parent: 1668 - type: Transform - - uid: 6210 - components: - - pos: -9.5,-32.5 - parent: 1668 - type: Transform - - uid: 6211 - components: - - pos: -10.5,-32.5 - parent: 1668 - type: Transform - - uid: 6212 - components: - - pos: -11.5,-32.5 - parent: 1668 - type: Transform - - uid: 6213 - components: - - pos: 7.5,-30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6214 - components: - - pos: 7.5,-31.5 - parent: 1668 - type: Transform - - uid: 6215 - components: - - pos: 7.5,-32.5 - parent: 1668 - type: Transform - - uid: 6216 - components: - - pos: 7.5,-33.5 - parent: 1668 - type: Transform - - uid: 6217 - components: - - pos: 6.5,-32.5 - parent: 1668 - type: Transform - - uid: 6218 - components: - - pos: 5.5,-32.5 - parent: 1668 - type: Transform - - uid: 6219 - components: - - pos: 4.5,-32.5 - parent: 1668 - type: Transform - - uid: 6220 - components: - - pos: 3.5,-32.5 - parent: 1668 - type: Transform - - uid: 6221 - components: - - pos: 8.5,-32.5 - parent: 1668 - type: Transform - - uid: 6222 - components: - - pos: 9.5,-32.5 - parent: 1668 - type: Transform - - uid: 6223 - components: - - pos: 10.5,-32.5 - parent: 1668 - type: Transform - - uid: 6224 - components: - - pos: 11.5,-32.5 - parent: 1668 - type: Transform - - uid: 6225 - components: - - pos: 12.5,-32.5 - parent: 1668 - type: Transform - - uid: 6346 - components: - - pos: -2.5,-34.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6347 - components: - - pos: -2.5,-35.5 - parent: 1668 - type: Transform - - uid: 6348 - components: - - pos: -2.5,-36.5 - parent: 1668 - type: Transform - - uid: 6349 - components: - - pos: -2.5,-37.5 - parent: 1668 - type: Transform - - uid: 6350 - components: - - pos: -1.5,-36.5 - parent: 1668 - type: Transform - - uid: 6351 - components: - - pos: -0.5,-36.5 - parent: 1668 - type: Transform - - uid: 6352 - components: - - pos: 0.5,-36.5 - parent: 1668 - type: Transform - - uid: 6353 - components: - - pos: 1.5,-36.5 - parent: 1668 - type: Transform - - uid: 6354 - components: - - pos: 2.5,-36.5 - parent: 1668 - type: Transform - - uid: 6355 - components: - - pos: 3.5,-36.5 - parent: 1668 - type: Transform - - uid: 6356 - components: - - pos: -3.5,-36.5 - parent: 1668 - type: Transform - - uid: 6357 - components: - - pos: -4.5,-36.5 - parent: 1668 - type: Transform - - uid: 6358 - components: - - pos: -5.5,-36.5 - parent: 1668 - type: Transform - - uid: 6359 - components: - - pos: -0.5,-37.5 - parent: 1668 - type: Transform - - uid: 6360 - components: - - pos: -0.5,-38.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6409 - components: - - pos: -2.5,-40.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6410 - components: - - pos: -2.5,-41.5 - parent: 1668 - type: Transform - - uid: 6411 - components: - - pos: -2.5,-42.5 - parent: 1668 - type: Transform - - uid: 6412 - components: - - pos: -2.5,-43.5 - parent: 1668 - type: Transform - - uid: 6413 - components: - - pos: -1.5,-42.5 - parent: 1668 - type: Transform - - uid: 6414 - components: - - pos: -0.5,-42.5 - parent: 1668 - type: Transform - - uid: 6415 - components: - - pos: 0.5,-42.5 - parent: 1668 - type: Transform - - uid: 6416 - components: - - pos: 1.5,-42.5 - parent: 1668 - type: Transform - - uid: 6417 - components: - - pos: 2.5,-42.5 - parent: 1668 - type: Transform - - uid: 6418 - components: - - pos: 3.5,-42.5 - parent: 1668 - type: Transform - - uid: 6419 - components: - - pos: 4.5,-42.5 - parent: 1668 - type: Transform - - uid: 6420 - components: - - pos: 4.5,-41.5 - parent: 1668 - type: Transform - - uid: 6421 - components: - - pos: 4.5,-40.5 - parent: 1668 - type: Transform - - uid: 6422 - components: - - pos: -3.5,-42.5 - parent: 1668 - type: Transform - - uid: 6423 - components: - - pos: -4.5,-42.5 - parent: 1668 - type: Transform - - uid: 6424 - components: - - pos: -5.5,-42.5 - parent: 1668 - type: Transform - - uid: 6425 - components: - - pos: -5.5,-41.5 - parent: 1668 - type: Transform - - uid: 6426 - components: - - pos: -5.5,-40.5 - parent: 1668 - type: Transform - - uid: 6427 - components: - - pos: -0.5,-41.5 - parent: 1668 - type: Transform - - uid: 6428 - components: - - pos: -0.5,-40.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6429 - components: - - pos: -0.5,-43.5 - parent: 1668 - type: Transform - - uid: 6430 - components: - - pos: -0.5,-44.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6431 - components: - - pos: -0.5,-45.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6432 - components: - - pos: -0.5,-46.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6433 - components: - - pos: -2.5,-44.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6434 - components: - - pos: -2.5,-45.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6435 - components: - - pos: -2.5,-46.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6436 - components: - - pos: 1.5,-44.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6437 - components: - - pos: 1.5,-43.5 - parent: 1668 - type: Transform - - uid: 6438 - components: - - pos: 1.5,-45.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6439 - components: - - pos: 1.5,-46.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6774 - components: - - pos: 26.5,-26.5 - parent: 1668 - type: Transform - - uid: 6776 - components: - - pos: 27.5,-26.5 - parent: 1668 - type: Transform - - uid: 6854 - components: - - pos: 32.5,-27.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6855 - components: - - pos: 32.5,-28.5 - parent: 1668 - type: Transform - - uid: 6856 - components: - - pos: 32.5,-29.5 - parent: 1668 - type: Transform - - uid: 6857 - components: - - pos: 32.5,-30.5 - parent: 1668 - type: Transform - - uid: 6858 - components: - - pos: 32.5,-31.5 - parent: 1668 - type: Transform - - uid: 6859 - components: - - pos: 31.5,-30.5 - parent: 1668 - type: Transform - - uid: 6860 - components: - - pos: 30.5,-30.5 - parent: 1668 - type: Transform - - uid: 6861 - components: - - pos: 29.5,-30.5 - parent: 1668 - type: Transform - - uid: 6862 - components: - - pos: 28.5,-30.5 - parent: 1668 - type: Transform - - uid: 6863 - components: - - pos: 33.5,-30.5 - parent: 1668 - type: Transform - - uid: 6971 - components: - - pos: 19.5,-30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6972 - components: - - pos: 20.5,-30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6973 - components: - - pos: 21.5,-30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6974 - components: - - pos: 22.5,-30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6975 - components: - - pos: 22.5,-29.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6976 - components: - - pos: 22.5,-31.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound -- proto: CableHV - entities: - - uid: 1391 - components: - - pos: 27.5,-31.5 - parent: 1668 - type: Transform - - uid: 1465 - components: - - pos: 26.5,-25.5 - parent: 1668 - type: Transform - - uid: 1475 - components: - - pos: 15.5,-13.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1476 - components: - - pos: 16.5,-13.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1477 - components: - - pos: 17.5,-13.5 - parent: 1668 - type: Transform - - uid: 1478 - components: - - pos: 17.5,-14.5 - parent: 1668 - type: Transform - - uid: 1479 - components: - - pos: 18.5,-14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1480 - components: - - pos: 19.5,-14.5 - parent: 1668 - type: Transform - - uid: 1482 - components: - - pos: 25.5,-25.5 - parent: 1668 - type: Transform - - uid: 1659 - components: - - pos: 18.5,-25.5 - parent: 1668 - type: Transform - - uid: 1864 - components: - - pos: -3.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1865 - components: - - pos: -2.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1866 - components: - - pos: -1.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1867 - components: - - pos: -0.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1868 - components: - - pos: 0.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1869 - components: - - pos: 1.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1870 - components: - - pos: 2.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1871 - components: - - pos: -0.5,19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1872 - components: - - pos: -0.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1873 - components: - - pos: -0.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1874 - components: - - pos: -0.5,16.5 - parent: 1668 - type: Transform - - uid: 1875 - components: - - pos: -0.5,15.5 - parent: 1668 - type: Transform - - uid: 1876 - components: - - pos: -0.5,14.5 - parent: 1668 - type: Transform - - uid: 1877 - components: - - pos: -0.5,13.5 - parent: 1668 - type: Transform - - uid: 1878 - components: - - pos: -0.5,12.5 - parent: 1668 - type: Transform - - uid: 1879 - components: - - pos: -0.5,11.5 - parent: 1668 - type: Transform - - uid: 1880 - components: - - pos: -0.5,10.5 - parent: 1668 - type: Transform - - uid: 1881 - components: - - pos: -0.5,9.5 - parent: 1668 - type: Transform - - uid: 1882 - components: - - pos: -0.5,8.5 - parent: 1668 - type: Transform - - uid: 1883 - components: - - pos: -0.5,7.5 - parent: 1668 - type: Transform - - uid: 1884 - components: - - pos: -0.5,6.5 - parent: 1668 - type: Transform - - uid: 1885 - components: - - pos: -0.5,5.5 - parent: 1668 - type: Transform - - uid: 1886 - components: - - pos: -0.5,4.5 - parent: 1668 - type: Transform - - uid: 1887 - components: - - pos: -0.5,3.5 - parent: 1668 - type: Transform - - uid: 1888 - components: - - pos: 0.5,3.5 - parent: 1668 - type: Transform - - uid: 1889 - components: - - pos: 1.5,3.5 - parent: 1668 - type: Transform - - uid: 1890 - components: - - pos: 2.5,3.5 - parent: 1668 - type: Transform - - uid: 1891 - components: - - pos: 3.5,3.5 - parent: 1668 - type: Transform - - uid: 1892 - components: - - pos: 4.5,3.5 - parent: 1668 - type: Transform - - uid: 1893 - components: - - pos: 4.5,2.5 - parent: 1668 - type: Transform - - uid: 1894 - components: - - pos: 4.5,1.5 - parent: 1668 - type: Transform - - uid: 1895 - components: - - pos: 4.5,0.5 - parent: 1668 - type: Transform - - uid: 1896 - components: - - pos: 4.5,-0.5 - parent: 1668 - type: Transform - - uid: 1897 - components: - - pos: 17.5,-12.5 - parent: 1668 - type: Transform - - uid: 1898 - components: - - pos: 17.5,-11.5 - parent: 1668 - type: Transform - - uid: 1899 - components: - - pos: 16.5,-11.5 - parent: 1668 - type: Transform - - uid: 1900 - components: - - pos: 15.5,-11.5 - parent: 1668 - type: Transform - - uid: 1901 - components: - - pos: 14.5,-11.5 - parent: 1668 - type: Transform - - uid: 1902 - components: - - pos: 13.5,-11.5 - parent: 1668 - type: Transform - - uid: 1903 - components: - - pos: 12.5,-11.5 - parent: 1668 - type: Transform - - uid: 1904 - components: - - pos: 11.5,-11.5 - parent: 1668 - type: Transform - - uid: 1905 - components: - - pos: 10.5,-11.5 - parent: 1668 - type: Transform - - uid: 1906 - components: - - pos: 9.5,-11.5 - parent: 1668 - type: Transform - - uid: 1907 - components: - - pos: 8.5,-11.5 - parent: 1668 - type: Transform - - uid: 1908 - components: - - pos: 7.5,-11.5 - parent: 1668 - type: Transform - - uid: 1909 - components: - - pos: 6.5,-11.5 - parent: 1668 - type: Transform - - uid: 1910 - components: - - pos: 5.5,-11.5 - parent: 1668 - type: Transform - - uid: 1911 - components: - - pos: 4.5,-11.5 - parent: 1668 - type: Transform - - uid: 1912 - components: - - pos: 3.5,-11.5 - parent: 1668 - type: Transform - - uid: 1913 - components: - - pos: 2.5,-11.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1914 - components: - - pos: 1.5,-11.5 - parent: 1668 - type: Transform - - uid: 1915 - components: - - pos: 0.5,-11.5 - parent: 1668 - type: Transform - - uid: 1916 - components: - - pos: -0.5,-11.5 - parent: 1668 - type: Transform - - uid: 1917 - components: - - pos: -0.5,-10.5 - parent: 1668 - type: Transform - - uid: 1918 - components: - - pos: -0.5,-9.5 - parent: 1668 - type: Transform - - uid: 1919 - components: - - pos: -0.5,-8.5 - parent: 1668 - type: Transform - - uid: 1920 - components: - - pos: -0.5,-7.5 - parent: 1668 - type: Transform - - uid: 1921 - components: - - pos: -0.5,-6.5 - parent: 1668 - type: Transform - - uid: 1922 - components: - - pos: -1.5,-5.5 - parent: 1668 - type: Transform - - uid: 1923 - components: - - pos: -0.5,-4.5 - parent: 1668 - type: Transform - - uid: 1924 - components: - - pos: 0.5,-4.5 - parent: 1668 - type: Transform - - uid: 1925 - components: - - pos: 1.5,-4.5 - parent: 1668 - type: Transform - - uid: 1926 - components: - - pos: 2.5,-4.5 - parent: 1668 - type: Transform - - uid: 1927 - components: - - pos: 3.5,-4.5 - parent: 1668 - type: Transform - - uid: 1928 - components: - - pos: 4.5,-4.5 - parent: 1668 - type: Transform - - uid: 1929 - components: - - pos: 4.5,-3.5 - parent: 1668 - type: Transform - - uid: 1930 - components: - - pos: 4.5,-2.5 - parent: 1668 - type: Transform - - uid: 1931 - components: - - pos: 4.5,-1.5 - parent: 1668 - type: Transform - - uid: 1932 - components: - - pos: 17.5,-10.5 - parent: 1668 - type: Transform - - uid: 1933 - components: - - pos: 17.5,-9.5 - parent: 1668 - type: Transform - - uid: 1934 - components: - - pos: 17.5,-8.5 - parent: 1668 - type: Transform - - uid: 1935 - components: - - pos: 17.5,-7.5 - parent: 1668 - type: Transform - - uid: 1936 - components: - - pos: 17.5,-6.5 - parent: 1668 - type: Transform - - uid: 1937 - components: - - pos: 16.5,-6.5 - parent: 1668 - type: Transform - - uid: 1938 - components: - - pos: 15.5,-6.5 - parent: 1668 - type: Transform - - uid: 1939 - components: - - pos: 14.5,-6.5 - parent: 1668 - type: Transform - - uid: 1940 - components: - - pos: 13.5,-6.5 - parent: 1668 - type: Transform - - uid: 1941 - components: - - pos: 12.5,-6.5 - parent: 1668 - type: Transform - - uid: 1942 - components: - - pos: 12.5,-5.5 - parent: 1668 - type: Transform - - uid: 1943 - components: - - pos: 12.5,-4.5 - parent: 1668 - type: Transform - - uid: 1944 - components: - - pos: 12.5,-3.5 - parent: 1668 - type: Transform - - uid: 1945 - components: - - pos: 12.5,-2.5 - parent: 1668 - type: Transform - - uid: 1946 - components: - - pos: 12.5,-1.5 - parent: 1668 - type: Transform - - uid: 1947 - components: - - pos: 12.5,-0.5 - parent: 1668 - type: Transform - - uid: 1948 - components: - - pos: 11.5,-0.5 - parent: 1668 - type: Transform - - uid: 1949 - components: - - pos: 10.5,-0.5 - parent: 1668 - type: Transform - - uid: 1950 - components: - - pos: 9.5,-0.5 - parent: 1668 - type: Transform - - uid: 1951 - components: - - pos: 8.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1952 - components: - - pos: 7.5,-0.5 - parent: 1668 - type: Transform - - uid: 1953 - components: - - pos: 6.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1954 - components: - - pos: 5.5,-0.5 - parent: 1668 - type: Transform - - uid: 2523 - components: - - pos: 0.5,12.5 - parent: 1668 - type: Transform - - uid: 2524 - components: - - pos: 1.5,12.5 - parent: 1668 - type: Transform - - uid: 2525 - components: - - pos: 2.5,12.5 - parent: 1668 - type: Transform - - uid: 2526 - components: - - pos: 3.5,12.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2527 - components: - - pos: 4.5,12.5 - parent: 1668 - type: Transform - - uid: 2528 - components: - - pos: 5.5,12.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2529 - components: - - pos: 6.5,12.5 - parent: 1668 - type: Transform - - uid: 2530 - components: - - pos: 7.5,12.5 - parent: 1668 - type: Transform - - uid: 2531 - components: - - pos: 8.5,12.5 - parent: 1668 - type: Transform - - uid: 2532 - components: - - pos: 9.5,12.5 - parent: 1668 - type: Transform - - uid: 2533 - components: - - pos: 10.5,12.5 - parent: 1668 - type: Transform - - uid: 2534 - components: - - pos: 11.5,12.5 - parent: 1668 - type: Transform - - uid: 2535 - components: - - pos: 12.5,12.5 - parent: 1668 - type: Transform - - uid: 2536 - components: - - pos: 13.5,12.5 - parent: 1668 - type: Transform - - uid: 2537 - components: - - pos: 14.5,12.5 - parent: 1668 - type: Transform - - uid: 2538 - components: - - pos: 14.5,13.5 - parent: 1668 - type: Transform - - uid: 2539 - components: - - pos: 14.5,14.5 - parent: 1668 - type: Transform - - uid: 2540 - components: - - pos: 14.5,15.5 - parent: 1668 - type: Transform - - uid: 2541 - components: - - pos: 14.5,16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2542 - components: - - pos: 14.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2543 - components: - - pos: 14.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2544 - components: - - pos: 15.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2545 - components: - - pos: 15.5,19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3257 - components: - - pos: 16.5,18.5 - parent: 1668 - type: Transform - - uid: 3523 - components: - - pos: -1.5,-4.5 - parent: 1668 - type: Transform - - uid: 3524 - components: - - pos: -1.5,-6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3525 - components: - - pos: -1.5,4.5 - parent: 1668 - type: Transform - - uid: 3526 - components: - - pos: -2.5,4.5 - parent: 1668 - type: Transform - - uid: 3527 - components: - - pos: -3.5,4.5 - parent: 1668 - type: Transform - - uid: 3528 - components: - - pos: -4.5,4.5 - parent: 1668 - type: Transform - - uid: 3529 - components: - - pos: -5.5,4.5 - parent: 1668 - type: Transform - - uid: 3530 - components: - - pos: -6.5,4.5 - parent: 1668 - type: Transform - - uid: 3531 - components: - - pos: -2.5,-4.5 - parent: 1668 - type: Transform - - uid: 3532 - components: - - pos: -3.5,-4.5 - parent: 1668 - type: Transform - - uid: 3533 - components: - - pos: -4.5,-4.5 - parent: 1668 - type: Transform - - uid: 3534 - components: - - pos: -5.5,-4.5 - parent: 1668 - type: Transform - - uid: 3535 - components: - - pos: -6.5,-4.5 - parent: 1668 - type: Transform - - uid: 3536 - components: - - pos: -6.5,-3.5 - parent: 1668 - type: Transform - - uid: 3537 - components: - - pos: -6.5,-2.5 - parent: 1668 - type: Transform - - uid: 3538 - components: - - pos: -6.5,-1.5 - parent: 1668 - type: Transform - - uid: 3539 - components: - - pos: -6.5,-0.5 - parent: 1668 - type: Transform - - uid: 3540 - components: - - pos: -6.5,0.5 - parent: 1668 - type: Transform - - uid: 3541 - components: - - pos: -6.5,1.5 - parent: 1668 - type: Transform - - uid: 3542 - components: - - pos: -6.5,2.5 - parent: 1668 - type: Transform - - uid: 3543 - components: - - pos: -6.5,3.5 - parent: 1668 - type: Transform - - uid: 3544 - components: - - pos: -7.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3545 - components: - - pos: -8.5,-0.5 - parent: 1668 - type: Transform - - uid: 3546 - components: - - pos: -9.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3547 - components: - - pos: -10.5,-0.5 - parent: 1668 - type: Transform - - uid: 3548 - components: - - pos: -11.5,-0.5 - parent: 1668 - type: Transform - - uid: 3549 - components: - - pos: -12.5,-0.5 - parent: 1668 - type: Transform - - uid: 3550 - components: - - pos: -13.5,-0.5 - parent: 1668 - type: Transform - - uid: 3551 - components: - - pos: -14.5,-0.5 - parent: 1668 - type: Transform - - uid: 3552 - components: - - pos: -15.5,-0.5 - parent: 1668 - type: Transform - - uid: 3553 - components: - - pos: -16.5,-0.5 - parent: 1668 - type: Transform - - uid: 3554 - components: - - pos: -17.5,-0.5 - parent: 1668 - type: Transform - - uid: 3555 - components: - - pos: -18.5,-0.5 - parent: 1668 - type: Transform - - uid: 3556 - components: - - pos: -19.5,-0.5 - parent: 1668 - type: Transform - - uid: 3557 - components: - - pos: -20.5,0.5 - parent: 1668 - type: Transform - - uid: 3558 - components: - - pos: -19.5,0.5 - parent: 1668 - type: Transform - - uid: 3559 - components: - - pos: -21.5,0.5 - parent: 1668 - type: Transform - - uid: 3560 - components: - - pos: -21.5,1.5 - parent: 1668 - type: Transform - - uid: 3561 - components: - - pos: -21.5,2.5 - parent: 1668 - type: Transform - - uid: 3562 - components: - - pos: -21.5,3.5 - parent: 1668 - type: Transform - - uid: 3563 - components: - - pos: -21.5,4.5 - parent: 1668 - type: Transform - - uid: 3564 - components: - - pos: -21.5,5.5 - parent: 1668 - type: Transform - - uid: 3565 - components: - - pos: -20.5,5.5 - parent: 1668 - type: Transform - - uid: 3566 - components: - - pos: -19.5,5.5 - parent: 1668 - type: Transform - - uid: 3567 - components: - - pos: -18.5,5.5 - parent: 1668 - type: Transform - - uid: 3568 - components: - - pos: -17.5,5.5 - parent: 1668 - type: Transform - - uid: 3569 - components: - - pos: -16.5,5.5 - parent: 1668 - type: Transform - - uid: 3570 - components: - - pos: -15.5,5.5 - parent: 1668 - type: Transform - - uid: 3571 - components: - - pos: -15.5,6.5 - parent: 1668 - type: Transform - - uid: 3574 - components: - - pos: -15.5,4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3950 - components: - - pos: -22.5,0.5 - parent: 1668 - type: Transform - - uid: 3951 - components: - - pos: -23.5,0.5 - parent: 1668 - type: Transform - - uid: 3952 - components: - - pos: -24.5,0.5 - parent: 1668 - type: Transform - - uid: 3953 - components: - - pos: -25.5,0.5 - parent: 1668 - type: Transform - - uid: 3954 - components: - - pos: -26.5,0.5 - parent: 1668 - type: Transform - - uid: 3955 - components: - - pos: -27.5,0.5 - parent: 1668 - type: Transform - - uid: 3956 - components: - - pos: -28.5,0.5 - parent: 1668 - type: Transform - - uid: 3957 - components: - - pos: -29.5,0.5 - parent: 1668 - type: Transform - - uid: 3958 - components: - - pos: -30.5,0.5 - parent: 1668 - type: Transform - - uid: 3959 - components: - - pos: -30.5,1.5 - parent: 1668 - type: Transform - - uid: 3960 - components: - - pos: -30.5,2.5 - parent: 1668 - type: Transform - - uid: 3961 - components: - - pos: -30.5,3.5 - parent: 1668 - type: Transform - - uid: 3962 - components: - - pos: -30.5,4.5 - parent: 1668 - type: Transform - - uid: 3963 - components: - - pos: -29.5,4.5 - parent: 1668 - type: Transform - - uid: 3964 - components: - - pos: -28.5,4.5 - parent: 1668 - type: Transform - - uid: 3965 - components: - - pos: -27.5,4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3966 - components: - - pos: -27.5,5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3967 - components: - - pos: -27.5,6.5 - parent: 1668 - type: Transform - - uid: 4359 - components: - - pos: 22.5,-16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4360 - components: - - pos: 22.5,-15.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4577 - components: - - pos: 24.5,-25.5 - parent: 1668 - type: Transform - - uid: 4580 - components: - - pos: 19.5,-25.5 - parent: 1668 - type: Transform - - uid: 4634 - components: - - pos: 27.5,-27.5 - parent: 1668 - type: Transform - - uid: 4667 - components: - - pos: 5.5,-28.5 - parent: 1668 - type: Transform - - uid: 4668 - components: - - pos: 5.5,-27.5 - parent: 1668 - type: Transform - - uid: 4669 - components: - - pos: 5.5,-29.5 - parent: 1668 - type: Transform - - uid: 4764 - components: - - pos: 17.5,-17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4765 - components: - - pos: 16.5,-17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4766 - components: - - pos: 16.5,-18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4767 - components: - - pos: 16.5,-19.5 - parent: 1668 - type: Transform - - uid: 4768 - components: - - pos: 16.5,-20.5 - parent: 1668 - type: Transform - - uid: 4769 - components: - - pos: 17.5,-20.5 - parent: 1668 - type: Transform - - uid: 4770 - components: - - pos: 18.5,-20.5 - parent: 1668 - type: Transform - - uid: 4771 - components: - - pos: 19.5,-20.5 - parent: 1668 - type: Transform - - uid: 4772 - components: - - pos: 20.5,-20.5 - parent: 1668 - type: Transform - - uid: 4773 - components: - - pos: 20.5,-19.5 - parent: 1668 - type: Transform - - uid: 4774 - components: - - pos: 20.5,-18.5 - parent: 1668 - type: Transform - - uid: 4775 - components: - - pos: 20.5,-17.5 - parent: 1668 - type: Transform - - uid: 4776 - components: - - pos: 20.5,-16.5 - parent: 1668 - type: Transform - - uid: 4777 - components: - - pos: 20.5,-15.5 - parent: 1668 - type: Transform - - uid: 4778 - components: - - pos: 20.5,-14.5 - parent: 1668 - type: Transform - - uid: 4779 - components: - - pos: 16.5,-21.5 - parent: 1668 - type: Transform - - uid: 4780 - components: - - pos: 16.5,-22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4781 - components: - - pos: 16.5,-23.5 - parent: 1668 - type: Transform - - uid: 4782 - components: - - pos: 16.5,-24.5 - parent: 1668 - type: Transform - - uid: 4783 - components: - - pos: 16.5,-25.5 - parent: 1668 - type: Transform - - uid: 4784 - components: - - pos: 15.5,-25.5 - parent: 1668 - type: Transform - - uid: 4785 - components: - - pos: 14.5,-25.5 - parent: 1668 - type: Transform - - uid: 4786 - components: - - pos: 13.5,-25.5 - parent: 1668 - type: Transform - - uid: 4787 - components: - - pos: 12.5,-25.5 - parent: 1668 - type: Transform - - uid: 4788 - components: - - pos: 12.5,-24.5 - parent: 1668 - type: Transform - - uid: 4789 - components: - - pos: 12.5,-23.5 - parent: 1668 - type: Transform - - uid: 4790 - components: - - pos: 12.5,-22.5 - parent: 1668 - type: Transform - - uid: 4791 - components: - - pos: 12.5,-21.5 - parent: 1668 - type: Transform - - uid: 4792 - components: - - pos: 12.5,-20.5 - parent: 1668 - type: Transform - - uid: 4793 - components: - - pos: 12.5,-19.5 - parent: 1668 - type: Transform - - uid: 4794 - components: - - pos: 12.5,-18.5 - parent: 1668 - type: Transform - - uid: 4795 - components: - - pos: 11.5,-18.5 - parent: 1668 - type: Transform - - uid: 4796 - components: - - pos: 10.5,-18.5 - parent: 1668 - type: Transform - - uid: 4797 - components: - - pos: 9.5,-18.5 - parent: 1668 - type: Transform - - uid: 4798 - components: - - pos: 8.5,-18.5 - parent: 1668 - type: Transform - - uid: 4799 - components: - - pos: 7.5,-18.5 - parent: 1668 - type: Transform - - uid: 4800 - components: - - pos: 6.5,-18.5 - parent: 1668 - type: Transform - - uid: 4801 - components: - - pos: 5.5,-18.5 - parent: 1668 - type: Transform - - uid: 4802 - components: - - pos: 4.5,-18.5 - parent: 1668 - type: Transform - - uid: 4803 - components: - - pos: 3.5,-18.5 - parent: 1668 - type: Transform - - uid: 4804 - components: - - pos: 2.5,-18.5 - parent: 1668 - type: Transform - - uid: 4805 - components: - - pos: 1.5,-18.5 - parent: 1668 - type: Transform - - uid: 4806 - components: - - pos: 0.5,-18.5 - parent: 1668 - type: Transform - - uid: 4808 - components: - - pos: -0.5,-17.5 - parent: 1668 - type: Transform - - uid: 4809 - components: - - pos: -0.5,-16.5 - parent: 1668 - type: Transform - - uid: 4810 - components: - - pos: -0.5,-15.5 - parent: 1668 - type: Transform - - uid: 4811 - components: - - pos: -0.5,-14.5 - parent: 1668 - type: Transform - - uid: 4812 - components: - - pos: -0.5,-13.5 - parent: 1668 - type: Transform - - uid: 4813 - components: - - pos: -0.5,-12.5 - parent: 1668 - type: Transform - - uid: 4814 - components: - - pos: 15.5,-17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4856 - components: - - pos: 0.5,-17.5 - parent: 1668 - type: Transform - - uid: 4972 - components: - - pos: 15.5,-21.5 - parent: 1668 - type: Transform - - uid: 4974 - components: - - pos: 18.5,-17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4975 - components: - - pos: 19.5,-17.5 - parent: 1668 - type: Transform - - uid: 5071 - components: - - pos: 22.5,-17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5072 - components: - - pos: 23.5,-15.5 - parent: 1668 - type: Transform - - uid: 5073 - components: - - pos: 23.5,-16.5 - parent: 1668 - type: Transform - - uid: 5074 - components: - - pos: 23.5,-17.5 - parent: 1668 - type: Transform - - uid: 5081 - components: - - pos: 21.5,-16.5 - parent: 1668 - type: Transform - - uid: 5082 - components: - - pos: 21.5,-17.5 - parent: 1668 - type: Transform - - uid: 5083 - components: - - pos: 21.5,-15.5 - parent: 1668 - type: Transform - - uid: 5084 - components: - - pos: 24.5,-16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5085 - components: - - pos: 25.5,-16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5086 - components: - - pos: 26.5,-16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5087 - components: - - pos: 27.5,-16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5088 - components: - - pos: 28.5,-16.5 - parent: 1668 - type: Transform - - uid: 5089 - components: - - pos: 29.5,-16.5 - parent: 1668 - type: Transform - - uid: 5090 - components: - - pos: 30.5,-16.5 - parent: 1668 - type: Transform - - uid: 5091 - components: - - pos: 31.5,-16.5 - parent: 1668 - type: Transform - - uid: 5092 - components: - - pos: 32.5,-16.5 - parent: 1668 - type: Transform - - uid: 5093 - components: - - pos: 32.5,-17.5 - parent: 1668 - type: Transform - - uid: 5094 - components: - - pos: 32.5,-18.5 - parent: 1668 - type: Transform - - uid: 5095 - components: - - pos: 32.5,-19.5 - parent: 1668 - type: Transform - - uid: 5096 - components: - - pos: 32.5,-20.5 - parent: 1668 - type: Transform - - uid: 5097 - components: - - pos: 32.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5098 - components: - - pos: 32.5,-22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5099 - components: - - pos: 32.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5100 - components: - - pos: 32.5,-24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5101 - components: - - pos: 32.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5185 - components: - - pos: 31.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5186 - components: - - pos: 30.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5187 - components: - - pos: 33.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5188 - components: - - pos: 34.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5189 - components: - - pos: 34.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5190 - components: - - pos: 33.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5191 - components: - - pos: 31.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5192 - components: - - pos: 30.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5193 - components: - - pos: 31.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5194 - components: - - pos: 30.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5195 - components: - - pos: 33.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5196 - components: - - pos: 34.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5341 - components: - - pos: 27.5,-26.5 - parent: 1668 - type: Transform - - uid: 5342 - components: - - pos: 20.5,-25.5 - parent: 1668 - type: Transform - - uid: 5343 - components: - - pos: 23.5,-25.5 - parent: 1668 - type: Transform - - uid: 5370 - components: - - pos: 22.5,-25.5 - parent: 1668 - type: Transform - - uid: 5393 - components: - - pos: 27.5,-25.5 - parent: 1668 - type: Transform - - uid: 5807 - components: - - pos: -3.5,-27.5 - parent: 1668 - type: Transform - - uid: 5808 - components: - - pos: 1.5,-27.5 - parent: 1668 - type: Transform - - uid: 5809 - components: - - pos: 2.5,-27.5 - parent: 1668 - type: Transform - - uid: 5810 - components: - - pos: 3.5,-27.5 - parent: 1668 - type: Transform - - uid: 5811 - components: - - pos: 4.5,-27.5 - parent: 1668 - type: Transform - - uid: 5812 - components: - - pos: -1.5,-27.5 - parent: 1668 - type: Transform - - uid: 5813 - components: - - pos: -2.5,-27.5 - parent: 1668 - type: Transform - - uid: 6006 - components: - - pos: 12.5,-26.5 - parent: 1668 - type: Transform - - uid: 6007 - components: - - pos: 12.5,-27.5 - parent: 1668 - type: Transform - - uid: 6008 - components: - - pos: 12.5,-28.5 - parent: 1668 - type: Transform - - uid: 6009 - components: - - pos: 12.5,-29.5 - parent: 1668 - type: Transform - - uid: 6010 - components: - - pos: 12.5,-30.5 - parent: 1668 - type: Transform - - uid: 6011 - components: - - pos: 12.5,-31.5 - parent: 1668 - type: Transform - - uid: 6012 - components: - - pos: 11.5,-31.5 - parent: 1668 - type: Transform - - uid: 6013 - components: - - pos: 10.5,-31.5 - parent: 1668 - type: Transform - - uid: 6014 - components: - - pos: 9.5,-31.5 - parent: 1668 - type: Transform - - uid: 6015 - components: - - pos: 8.5,-31.5 - parent: 1668 - type: Transform - - uid: 6016 - components: - - pos: 7.5,-31.5 - parent: 1668 - type: Transform - - uid: 6017 - components: - - pos: 6.5,-31.5 - parent: 1668 - type: Transform - - uid: 6018 - components: - - pos: 5.5,-31.5 - parent: 1668 - type: Transform - - uid: 6019 - components: - - pos: -6.5,-28.5 - parent: 1668 - type: Transform - - uid: 6020 - components: - - pos: -6.5,-27.5 - parent: 1668 - type: Transform - - uid: 6021 - components: - - pos: -5.5,-27.5 - parent: 1668 - type: Transform - - uid: 6022 - components: - - pos: -0.5,-27.5 - parent: 1668 - type: Transform - - uid: 6023 - components: - - pos: 5.5,-30.5 - parent: 1668 - type: Transform - - uid: 6026 - components: - - pos: 0.5,-27.5 - parent: 1668 - type: Transform - - uid: 6027 - components: - - pos: -4.5,-27.5 - parent: 1668 - type: Transform - - uid: 6028 - components: - - pos: -6.5,-30.5 - parent: 1668 - type: Transform - - uid: 6029 - components: - - pos: -6.5,-29.5 - parent: 1668 - type: Transform - - uid: 6030 - components: - - pos: -6.5,-31.5 - parent: 1668 - type: Transform - - uid: 6031 - components: - - pos: -7.5,-31.5 - parent: 1668 - type: Transform - - uid: 6032 - components: - - pos: -8.5,-31.5 - parent: 1668 - type: Transform - - uid: 6033 - components: - - pos: -9.5,-31.5 - parent: 1668 - type: Transform - - uid: 6034 - components: - - pos: -10.5,-31.5 - parent: 1668 - type: Transform - - uid: 6035 - components: - - pos: -11.5,-31.5 - parent: 1668 - type: Transform - - uid: 6036 - components: - - pos: -12.5,-31.5 - parent: 1668 - type: Transform - - uid: 6037 - components: - - pos: -13.5,-31.5 - parent: 1668 - type: Transform - - uid: 6038 - components: - - pos: -14.5,-31.5 - parent: 1668 - type: Transform - - uid: 6039 - components: - - pos: -14.5,-30.5 - parent: 1668 - type: Transform - - uid: 6040 - components: - - pos: -14.5,-29.5 - parent: 1668 - type: Transform - - uid: 6041 - components: - - pos: -14.5,-28.5 - parent: 1668 - type: Transform - - uid: 6042 - components: - - pos: -14.5,-27.5 - parent: 1668 - type: Transform - - uid: 6043 - components: - - pos: -14.5,-26.5 - parent: 1668 - type: Transform - - uid: 6044 - components: - - pos: -14.5,-25.5 - parent: 1668 - type: Transform - - uid: 6045 - components: - - pos: -15.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6046 - components: - - pos: -16.5,-25.5 - parent: 1668 - type: Transform - - uid: 6047 - components: - - pos: -17.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6048 - components: - - pos: -18.5,-25.5 - parent: 1668 - type: Transform - - uid: 6049 - components: - - pos: -18.5,-26.5 - parent: 1668 - type: Transform - - uid: 6050 - components: - - pos: -18.5,-27.5 - parent: 1668 - type: Transform - - uid: 6051 - components: - - pos: -18.5,-28.5 - parent: 1668 - type: Transform - - uid: 6052 - components: - - pos: -18.5,-29.5 - parent: 1668 - type: Transform - - uid: 6053 - components: - - pos: -17.5,-29.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6054 - components: - - pos: -16.5,-29.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6166 - components: - - pos: -6.5,-32.5 - parent: 1668 - type: Transform - - uid: 6167 - components: - - pos: -5.5,-32.5 - parent: 1668 - type: Transform - - uid: 6168 - components: - - pos: -4.5,-32.5 - parent: 1668 - type: Transform - - uid: 6169 - components: - - pos: -3.5,-32.5 - parent: 1668 - type: Transform - - uid: 6170 - components: - - pos: -2.5,-32.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6171 - components: - - pos: -2.5,-33.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6172 - components: - - pos: -2.5,-31.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6173 - components: - - pos: 5.5,-32.5 - parent: 1668 - type: Transform - - uid: 6174 - components: - - pos: 4.5,-32.5 - parent: 1668 - type: Transform - - uid: 6175 - components: - - pos: 3.5,-32.5 - parent: 1668 - type: Transform - - uid: 6176 - components: - - pos: 2.5,-32.5 - parent: 1668 - type: Transform - - uid: 6177 - components: - - pos: 1.5,-32.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6178 - components: - - pos: 1.5,-33.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6179 - components: - - pos: 1.5,-31.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6253 - components: - - pos: -3.5,-33.5 - parent: 1668 - type: Transform - - uid: 6254 - components: - - pos: -3.5,-34.5 - parent: 1668 - type: Transform - - uid: 6255 - components: - - pos: -3.5,-35.5 - parent: 1668 - type: Transform - - uid: 6256 - components: - - pos: -2.5,-35.5 - parent: 1668 - type: Transform - - uid: 6257 - components: - - pos: -1.5,-35.5 - parent: 1668 - type: Transform - - uid: 6258 - components: - - pos: -0.5,-35.5 - parent: 1668 - type: Transform - - uid: 6259 - components: - - pos: 0.5,-35.5 - parent: 1668 - type: Transform - - uid: 6260 - components: - - pos: 1.5,-35.5 - parent: 1668 - type: Transform - - uid: 6261 - components: - - pos: 2.5,-35.5 - parent: 1668 - type: Transform - - uid: 6262 - components: - - pos: 2.5,-34.5 - parent: 1668 - type: Transform - - uid: 6263 - components: - - pos: 2.5,-33.5 - parent: 1668 - type: Transform - - uid: 6264 - components: - - pos: -0.5,-34.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6265 - components: - - pos: 0.5,-34.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6266 - components: - - pos: -1.5,-34.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6594 - components: - - pos: 27.5,-29.5 - parent: 1668 - type: Transform - - uid: 6631 - components: - - pos: 27.5,-28.5 - parent: 1668 - type: Transform - - uid: 6773 - components: - - pos: 17.5,-25.5 - parent: 1668 - type: Transform - - uid: 6777 - components: - - pos: 27.5,-30.5 - parent: 1668 - type: Transform - - uid: 6786 - components: - - pos: 21.5,-25.5 - parent: 1668 - type: Transform -- proto: CableMV - entities: - - uid: 1146 - components: - - pos: 15.5,-13.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1147 - components: - - pos: 16.5,-13.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1148 - components: - - pos: 17.5,-13.5 - parent: 1668 - type: Transform - - uid: 1149 - components: - - pos: 17.5,-12.5 - parent: 1668 - type: Transform - - uid: 1150 - components: - - pos: 17.5,-11.5 - parent: 1668 - type: Transform - - uid: 1151 - components: - - pos: 18.5,-11.5 - parent: 1668 - type: Transform - - uid: 1153 - components: - - pos: 19.5,-11.5 - parent: 1668 - type: Transform - - uid: 1154 - components: - - pos: 21.5,-11.5 - parent: 1668 - type: Transform - - uid: 1155 - components: - - pos: 22.5,-11.5 - parent: 1668 - type: Transform - - uid: 1156 - components: - - pos: 23.5,-11.5 - parent: 1668 - type: Transform - - uid: 1157 - components: - - pos: 23.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1158 - components: - - pos: 17.5,-10.5 - parent: 1668 - type: Transform - - uid: 1159 - components: - - pos: 17.5,-9.5 - parent: 1668 - type: Transform - - uid: 1160 - components: - - pos: 17.5,-8.5 - parent: 1668 - type: Transform - - uid: 1161 - components: - - pos: 17.5,-7.5 - parent: 1668 - type: Transform - - uid: 1162 - components: - - pos: 17.5,-6.5 - parent: 1668 - type: Transform - - uid: 1163 - components: - - pos: 18.5,-6.5 - parent: 1668 - type: Transform - - uid: 1164 - components: - - pos: 19.5,-6.5 - parent: 1668 - type: Transform - - uid: 1165 - components: - - pos: 20.5,-6.5 - parent: 1668 - type: Transform - - uid: 1166 - components: - - pos: 20.5,-7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1167 - components: - - pos: 16.5,-6.5 - parent: 1668 - type: Transform - - uid: 1168 - components: - - pos: 15.5,-6.5 - parent: 1668 - type: Transform - - uid: 1169 - components: - - pos: 13.5,-6.5 - parent: 1668 - type: Transform - - uid: 1170 - components: - - pos: 14.5,-6.5 - parent: 1668 - type: Transform - - uid: 1171 - components: - - pos: 12.5,-6.5 - parent: 1668 - type: Transform - - uid: 1172 - components: - - pos: 11.5,-6.5 - parent: 1668 - type: Transform - - uid: 1173 - components: - - pos: 10.5,-6.5 - parent: 1668 - type: Transform - - uid: 1174 - components: - - pos: 10.5,-5.5 - parent: 1668 - type: Transform - - uid: 1175 - components: - - pos: 10.5,-4.5 - parent: 1668 - type: Transform - - uid: 1176 - components: - - pos: 10.5,-3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1182 - components: - - pos: 19.5,-10.5 - parent: 1668 - type: Transform - - uid: 1321 - components: - - pos: -3.5,4.5 - parent: 1668 - type: Transform - - uid: 1323 - components: - - pos: 16.5,-11.5 - parent: 1668 - type: Transform - - uid: 1324 - components: - - pos: 15.5,-11.5 - parent: 1668 - type: Transform - - uid: 1325 - components: - - pos: 14.5,-11.5 - parent: 1668 - type: Transform - - uid: 1326 - components: - - pos: 13.5,-11.5 - parent: 1668 - type: Transform - - uid: 1327 - components: - - pos: 12.5,-11.5 - parent: 1668 - type: Transform - - uid: 1328 - components: - - pos: 12.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1329 - components: - - pos: 11.5,-11.5 - parent: 1668 - type: Transform - - uid: 1330 - components: - - pos: 10.5,-11.5 - parent: 1668 - type: Transform - - uid: 1331 - components: - - pos: 9.5,-11.5 - parent: 1668 - type: Transform - - uid: 1332 - components: - - pos: 8.5,-11.5 - parent: 1668 - type: Transform - - uid: 1333 - components: - - pos: 7.5,-11.5 - parent: 1668 - type: Transform - - uid: 1334 - components: - - pos: 6.5,-11.5 - parent: 1668 - type: Transform - - uid: 1335 - components: - - pos: 5.5,-11.5 - parent: 1668 - type: Transform - - uid: 1336 - components: - - pos: 4.5,-11.5 - parent: 1668 - type: Transform - - uid: 1337 - components: - - pos: 3.5,-11.5 - parent: 1668 - type: Transform - - uid: 1338 - components: - - pos: 3.5,-10.5 - parent: 1668 - type: Transform - - uid: 1339 - components: - - pos: 3.5,-9.5 - parent: 1668 - type: Transform - - uid: 1340 - components: - - pos: 3.5,-8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1483 - components: - - pos: 27.5,-31.5 - parent: 1668 - type: Transform - - uid: 1486 - components: - - pos: 28.5,-31.5 - parent: 1668 - type: Transform - - uid: 1487 - components: - - pos: 30.5,-31.5 - parent: 1668 - type: Transform - - uid: 1658 - components: - - pos: 31.5,-31.5 - parent: 1668 - type: Transform - - uid: 1805 - components: - - pos: -3.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1806 - components: - - pos: -3.5,21.5 - parent: 1668 - type: Transform - - uid: 1807 - components: - - pos: -4.5,21.5 - parent: 1668 - type: Transform - - uid: 1808 - components: - - pos: -5.5,21.5 - parent: 1668 - type: Transform - - uid: 1809 - components: - - pos: -5.5,20.5 - parent: 1668 - type: Transform - - uid: 1810 - components: - - pos: -5.5,19.5 - parent: 1668 - type: Transform - - uid: 1811 - components: - - pos: -4.5,19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1812 - components: - - pos: -6.5,19.5 - parent: 1668 - type: Transform - - uid: 1813 - components: - - pos: -6.5,18.5 - parent: 1668 - type: Transform - - uid: 1814 - components: - - pos: -6.5,17.5 - parent: 1668 - type: Transform - - uid: 1815 - components: - - pos: -5.5,17.5 - parent: 1668 - type: Transform - - uid: 1816 - components: - - pos: -4.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1817 - components: - - pos: -6.5,16.5 - parent: 1668 - type: Transform - - uid: 1818 - components: - - pos: -6.5,15.5 - parent: 1668 - type: Transform - - uid: 1819 - components: - - pos: -6.5,14.5 - parent: 1668 - type: Transform - - uid: 1820 - components: - - pos: -6.5,13.5 - parent: 1668 - type: Transform - - uid: 1821 - components: - - pos: -6.5,12.5 - parent: 1668 - type: Transform - - uid: 1822 - components: - - pos: -7.5,12.5 - parent: 1668 - type: Transform - - uid: 1823 - components: - - pos: -8.5,12.5 - parent: 1668 - type: Transform - - uid: 1824 - components: - - pos: -8.5,13.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1825 - components: - - pos: -5.5,12.5 - parent: 1668 - type: Transform - - uid: 1826 - components: - - pos: -5.5,11.5 - parent: 1668 - type: Transform - - uid: 1827 - components: - - pos: -4.5,11.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1828 - components: - - pos: -7.5,19.5 - parent: 1668 - type: Transform - - uid: 1829 - components: - - pos: -8.5,19.5 - parent: 1668 - type: Transform - - uid: 1830 - components: - - pos: -9.5,19.5 - parent: 1668 - type: Transform - - uid: 1831 - components: - - pos: -10.5,19.5 - parent: 1668 - type: Transform - - uid: 1832 - components: - - pos: -10.5,18.5 - parent: 1668 - type: Transform - - uid: 1833 - components: - - pos: -10.5,17.5 - parent: 1668 - type: Transform - - uid: 1834 - components: - - pos: -11.5,17.5 - parent: 1668 - type: Transform - - uid: 1835 - components: - - pos: -12.5,17.5 - parent: 1668 - type: Transform - - uid: 1836 - components: - - pos: -13.5,17.5 - parent: 1668 - type: Transform - - uid: 1837 - components: - - pos: -14.5,17.5 - parent: 1668 - type: Transform - - uid: 1838 - components: - - pos: -14.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1839 - components: - - pos: 2.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1840 - components: - - pos: 1.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1841 - components: - - pos: 0.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1842 - components: - - pos: -0.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1843 - components: - - pos: -0.5,19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1844 - components: - - pos: -0.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1845 - components: - - pos: -0.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1846 - components: - - pos: -0.5,16.5 - parent: 1668 - type: Transform - - uid: 1847 - components: - - pos: -0.5,15.5 - parent: 1668 - type: Transform - - uid: 1848 - components: - - pos: -0.5,14.5 - parent: 1668 - type: Transform - - uid: 1849 - components: - - pos: -0.5,13.5 - parent: 1668 - type: Transform - - uid: 1850 - components: - - pos: -0.5,12.5 - parent: 1668 - type: Transform - - uid: 1851 - components: - - pos: -0.5,11.5 - parent: 1668 - type: Transform - - uid: 1852 - components: - - pos: -0.5,10.5 - parent: 1668 - type: Transform - - uid: 1853 - components: - - pos: -0.5,9.5 - parent: 1668 - type: Transform - - uid: 1854 - components: - - pos: -0.5,8.5 - parent: 1668 - type: Transform - - uid: 1855 - components: - - pos: -0.5,7.5 - parent: 1668 - type: Transform - - uid: 1856 - components: - - pos: -0.5,6.5 - parent: 1668 - type: Transform - - uid: 1857 - components: - - pos: -0.5,5.5 - parent: 1668 - type: Transform - - uid: 1858 - components: - - pos: -0.5,4.5 - parent: 1668 - type: Transform - - uid: 1859 - components: - - pos: -1.5,4.5 - parent: 1668 - type: Transform - - uid: 1860 - components: - - pos: -2.5,4.5 - parent: 1668 - type: Transform - - uid: 1862 - components: - - pos: -2.5,3.5 - parent: 1668 - type: Transform - - uid: 1863 - components: - - pos: -2.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2014 - components: - - pos: 0.5,16.5 - parent: 1668 - type: Transform - - uid: 2015 - components: - - pos: 1.5,16.5 - parent: 1668 - type: Transform - - uid: 2016 - components: - - pos: 1.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2017 - components: - - pos: -0.5,21.5 - parent: 1668 - type: Transform - - uid: 2018 - components: - - pos: -1.5,21.5 - parent: 1668 - type: Transform - - uid: 2019 - components: - - pos: -1.5,22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2056 - components: - - pos: -3.5,5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2947 - components: - - pos: 15.5,19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2948 - components: - - pos: 15.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2949 - components: - - pos: 14.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2950 - components: - - pos: 14.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2951 - components: - - pos: 14.5,16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2952 - components: - - pos: 14.5,15.5 - parent: 1668 - type: Transform - - uid: 2953 - components: - - pos: 14.5,14.5 - parent: 1668 - type: Transform - - uid: 2954 - components: - - pos: 14.5,13.5 - parent: 1668 - type: Transform - - uid: 2955 - components: - - pos: 15.5,13.5 - parent: 1668 - type: Transform - - uid: 2956 - components: - - pos: 16.5,13.5 - parent: 1668 - type: Transform - - uid: 2957 - components: - - pos: 17.5,13.5 - parent: 1668 - type: Transform - - uid: 2958 - components: - - pos: 17.5,14.5 - parent: 1668 - type: Transform - - uid: 2959 - components: - - pos: 17.5,15.5 - parent: 1668 - type: Transform - - uid: 2960 - components: - - pos: 17.5,16.5 - parent: 1668 - type: Transform - - uid: 2961 - components: - - pos: 17.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2962 - components: - - pos: 17.5,12.5 - parent: 1668 - type: Transform - - uid: 2963 - components: - - pos: 18.5,12.5 - parent: 1668 - type: Transform - - uid: 2964 - components: - - pos: 19.5,12.5 - parent: 1668 - type: Transform - - uid: 2965 - components: - - pos: 20.5,12.5 - parent: 1668 - type: Transform - - uid: 2966 - components: - - pos: 21.5,12.5 - parent: 1668 - type: Transform - - uid: 2967 - components: - - pos: 22.5,12.5 - parent: 1668 - type: Transform - - uid: 2968 - components: - - pos: 23.5,12.5 - parent: 1668 - type: Transform - - uid: 2969 - components: - - pos: 24.5,12.5 - parent: 1668 - type: Transform - - uid: 2970 - components: - - pos: 24.5,13.5 - parent: 1668 - type: Transform - - uid: 2971 - components: - - pos: 24.5,14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2972 - components: - - pos: 19.5,13.5 - parent: 1668 - type: Transform - - uid: 2973 - components: - - pos: 19.5,14.5 - parent: 1668 - type: Transform - - uid: 2974 - components: - - pos: 19.5,15.5 - parent: 1668 - type: Transform - - uid: 2975 - components: - - pos: 19.5,16.5 - parent: 1668 - type: Transform - - uid: 2976 - components: - - pos: 19.5,17.5 - parent: 1668 - type: Transform - - uid: 2977 - components: - - pos: 19.5,18.5 - parent: 1668 - type: Transform - - uid: 2978 - components: - - pos: 19.5,19.5 - parent: 1668 - type: Transform - - uid: 2979 - components: - - pos: 19.5,20.5 - parent: 1668 - type: Transform - - uid: 2980 - components: - - pos: 19.5,21.5 - parent: 1668 - type: Transform - - uid: 2981 - components: - - pos: 20.5,21.5 - parent: 1668 - type: Transform - - uid: 2982 - components: - - pos: 21.5,21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2983 - components: - - pos: 25.5,12.5 - parent: 1668 - type: Transform - - uid: 2984 - components: - - pos: 26.5,12.5 - parent: 1668 - type: Transform - - uid: 2985 - components: - - pos: 27.5,12.5 - parent: 1668 - type: Transform - - uid: 2986 - components: - - pos: 28.5,12.5 - parent: 1668 - type: Transform - - uid: 2987 - components: - - pos: 29.5,12.5 - parent: 1668 - type: Transform - - uid: 2988 - components: - - pos: 30.5,12.5 - parent: 1668 - type: Transform - - uid: 2989 - components: - - pos: 31.5,12.5 - parent: 1668 - type: Transform - - uid: 2990 - components: - - pos: 32.5,12.5 - parent: 1668 - type: Transform - - uid: 2991 - components: - - pos: 33.5,12.5 - parent: 1668 - type: Transform - - uid: 2992 - components: - - pos: 34.5,12.5 - parent: 1668 - type: Transform - - uid: 2993 - components: - - pos: 34.5,13.5 - parent: 1668 - type: Transform - - uid: 2994 - components: - - pos: 34.5,14.5 - parent: 1668 - type: Transform - - uid: 2995 - components: - - pos: 34.5,15.5 - parent: 1668 - type: Transform - - uid: 2996 - components: - - pos: 34.5,16.5 - parent: 1668 - type: Transform - - uid: 2997 - components: - - pos: 34.5,17.5 - parent: 1668 - type: Transform - - uid: 2998 - components: - - pos: 34.5,18.5 - parent: 1668 - type: Transform - - uid: 2999 - components: - - pos: 34.5,19.5 - parent: 1668 - type: Transform - - uid: 3000 - components: - - pos: 35.5,19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3001 - components: - - pos: 13.5,15.5 - parent: 1668 - type: Transform - - uid: 3002 - components: - - pos: 12.5,15.5 - parent: 1668 - type: Transform - - uid: 3003 - components: - - pos: 11.5,15.5 - parent: 1668 - type: Transform - - uid: 3004 - components: - - pos: 10.5,15.5 - parent: 1668 - type: Transform - - uid: 3005 - components: - - pos: 9.5,15.5 - parent: 1668 - type: Transform - - uid: 3006 - components: - - pos: 8.5,15.5 - parent: 1668 - type: Transform - - uid: 3007 - components: - - pos: 7.5,15.5 - parent: 1668 - type: Transform - - uid: 3008 - components: - - pos: 7.5,16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3009 - components: - - pos: 11.5,16.5 - parent: 1668 - type: Transform - - uid: 3010 - components: - - pos: 11.5,17.5 - parent: 1668 - type: Transform - - uid: 3011 - components: - - pos: 11.5,18.5 - parent: 1668 - type: Transform - - uid: 3012 - components: - - pos: 11.5,19.5 - parent: 1668 - type: Transform - - uid: 3013 - components: - - pos: 11.5,20.5 - parent: 1668 - type: Transform - - uid: 3014 - components: - - pos: 11.5,21.5 - parent: 1668 - type: Transform - - uid: 3015 - components: - - pos: 10.5,21.5 - parent: 1668 - type: Transform - - uid: 3016 - components: - - pos: 9.5,21.5 - parent: 1668 - type: Transform - - uid: 3017 - components: - - pos: 9.5,20.5 - parent: 1668 - type: Transform - - uid: 3018 - components: - - pos: 9.5,19.5 - parent: 1668 - type: Transform - - uid: 3019 - components: - - pos: 9.5,18.5 - parent: 1668 - type: Transform - - uid: 3020 - components: - - pos: 8.5,18.5 - parent: 1668 - type: Transform - - uid: 3021 - components: - - pos: 7.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3022 - components: - - pos: 9.5,22.5 - parent: 1668 - type: Transform - - uid: 3023 - components: - - pos: 9.5,23.5 - parent: 1668 - type: Transform - - uid: 3024 - components: - - pos: 9.5,24.5 - parent: 1668 - type: Transform - - uid: 3025 - components: - - pos: 9.5,25.5 - parent: 1668 - type: Transform - - uid: 3026 - components: - - pos: 9.5,26.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3027 - components: - - pos: 9.5,27.5 - parent: 1668 - type: Transform - - uid: 3028 - components: - - pos: 9.5,28.5 - parent: 1668 - type: Transform - - uid: 3029 - components: - - pos: 9.5,29.5 - parent: 1668 - type: Transform - - uid: 3030 - components: - - pos: 9.5,30.5 - parent: 1668 - type: Transform - - uid: 3031 - components: - - pos: 8.5,30.5 - parent: 1668 - type: Transform - - uid: 3032 - components: - - pos: 7.5,30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3575 - components: - - pos: -15.5,6.5 - parent: 1668 - type: Transform - - uid: 3576 - components: - - pos: -15.5,5.5 - parent: 1668 - type: Transform - - uid: 3578 - components: - - pos: -14.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3579 - components: - - pos: -13.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3580 - components: - - pos: -16.5,5.5 - parent: 1668 - type: Transform - - uid: 3581 - components: - - pos: -17.5,5.5 - parent: 1668 - type: Transform - - uid: 3582 - components: - - pos: -18.5,5.5 - parent: 1668 - type: Transform - - uid: 3583 - components: - - pos: -19.5,5.5 - parent: 1668 - type: Transform - - uid: 3584 - components: - - pos: -20.5,5.5 - parent: 1668 - type: Transform - - uid: 3585 - components: - - pos: -21.5,5.5 - parent: 1668 - type: Transform - - uid: 3586 - components: - - pos: -22.5,5.5 - parent: 1668 - type: Transform - - uid: 3587 - components: - - pos: -22.5,6.5 - parent: 1668 - type: Transform - - uid: 3588 - components: - - pos: -22.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3589 - components: - - pos: -22.5,8.5 - parent: 1668 - type: Transform - - uid: 3590 - components: - - pos: -22.5,9.5 - parent: 1668 - type: Transform - - uid: 3591 - components: - - pos: -22.5,10.5 - parent: 1668 - type: Transform - - uid: 3592 - components: - - pos: -22.5,11.5 - parent: 1668 - type: Transform - - uid: 3593 - components: - - pos: -22.5,12.5 - parent: 1668 - type: Transform - - uid: 3594 - components: - - pos: -22.5,13.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3595 - components: - - pos: -21.5,11.5 - parent: 1668 - type: Transform - - uid: 3596 - components: - - pos: -20.5,11.5 - parent: 1668 - type: Transform - - uid: 3597 - components: - - pos: -19.5,11.5 - parent: 1668 - type: Transform - - uid: 3598 - components: - - pos: -18.5,11.5 - parent: 1668 - type: Transform - - uid: 3599 - components: - - pos: -17.5,11.5 - parent: 1668 - type: Transform - - uid: 3600 - components: - - pos: -16.5,11.5 - parent: 1668 - type: Transform - - uid: 3601 - components: - - pos: -16.5,12.5 - parent: 1668 - type: Transform - - uid: 3602 - components: - - pos: -16.5,13.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4105 - components: - - pos: -31.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4106 - components: - - pos: -31.5,3.5 - parent: 1668 - type: Transform - - uid: 4107 - components: - - pos: -31.5,4.5 - parent: 1668 - type: Transform - - uid: 4108 - components: - - pos: -31.5,5.5 - parent: 1668 - type: Transform - - uid: 4109 - components: - - pos: -31.5,6.5 - parent: 1668 - type: Transform - - uid: 4110 - components: - - pos: -30.5,4.5 - parent: 1668 - type: Transform - - uid: 4111 - components: - - pos: -29.5,4.5 - parent: 1668 - type: Transform - - uid: 4112 - components: - - pos: -28.5,4.5 - parent: 1668 - type: Transform - - uid: 4113 - components: - - pos: -27.5,4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4114 - components: - - pos: -27.5,5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4115 - components: - - pos: -27.5,6.5 - parent: 1668 - type: Transform - - uid: 4116 - components: - - pos: -31.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4117 - components: - - pos: -31.5,1.5 - parent: 1668 - type: Transform - - uid: 4118 - components: - - pos: -31.5,0.5 - parent: 1668 - type: Transform - - uid: 4119 - components: - - pos: -31.5,-0.5 - parent: 1668 - type: Transform - - uid: 4120 - components: - - pos: -30.5,-0.5 - parent: 1668 - type: Transform - - uid: 4121 - components: - - pos: -29.5,-0.5 - parent: 1668 - type: Transform - - uid: 4122 - components: - - pos: -28.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4123 - components: - - pos: -27.5,-0.5 - parent: 1668 - type: Transform - - uid: 4124 - components: - - pos: -26.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4125 - components: - - pos: -25.5,-0.5 - parent: 1668 - type: Transform - - uid: 4126 - components: - - pos: -24.5,-0.5 - parent: 1668 - type: Transform - - uid: 4127 - components: - - pos: -23.5,-0.5 - parent: 1668 - type: Transform - - uid: 4128 - components: - - pos: -22.5,-0.5 - parent: 1668 - type: Transform - - uid: 4129 - components: - - pos: -21.5,-0.5 - parent: 1668 - type: Transform - - uid: 4130 - components: - - pos: -21.5,-1.5 - parent: 1668 - type: Transform - - uid: 4131 - components: - - pos: -21.5,-2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4132 - components: - - pos: -20.5,-0.5 - parent: 1668 - type: Transform - - uid: 4133 - components: - - pos: -19.5,-0.5 - parent: 1668 - type: Transform - - uid: 4134 - components: - - pos: -18.5,-0.5 - parent: 1668 - type: Transform - - uid: 4135 - components: - - pos: -17.5,-0.5 - parent: 1668 - type: Transform - - uid: 4136 - components: - - pos: -17.5,0.5 - parent: 1668 - type: Transform - - uid: 4137 - components: - - pos: -17.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4138 - components: - - pos: -16.5,-0.5 - parent: 1668 - type: Transform - - uid: 4139 - components: - - pos: -15.5,-0.5 - parent: 1668 - type: Transform - - uid: 4140 - components: - - pos: -14.5,-0.5 - parent: 1668 - type: Transform - - uid: 4141 - components: - - pos: -13.5,-0.5 - parent: 1668 - type: Transform - - uid: 4142 - components: - - pos: -13.5,-1.5 - parent: 1668 - type: Transform - - uid: 4143 - components: - - pos: -13.5,-2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4257 - components: - - pos: 29.5,-31.5 - parent: 1668 - type: Transform - - uid: 4807 - components: - - pos: 0.5,-17.5 - parent: 1668 - type: Transform - - uid: 4817 - components: - - pos: 15.5,-17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4818 - components: - - pos: 15.5,-18.5 - parent: 1668 - type: Transform - - uid: 4819 - components: - - pos: 16.5,-18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4820 - components: - - pos: 16.5,-19.5 - parent: 1668 - type: Transform - - uid: 4821 - components: - - pos: 16.5,-20.5 - parent: 1668 - type: Transform - - uid: 4822 - components: - - pos: 16.5,-21.5 - parent: 1668 - type: Transform - - uid: 4823 - components: - - pos: 16.5,-22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4824 - components: - - pos: 16.5,-23.5 - parent: 1668 - type: Transform - - uid: 4825 - components: - - pos: 15.5,-23.5 - parent: 1668 - type: Transform - - uid: 4826 - components: - - pos: 14.5,-23.5 - parent: 1668 - type: Transform - - uid: 4827 - components: - - pos: 13.5,-23.5 - parent: 1668 - type: Transform - - uid: 4828 - components: - - pos: 13.5,-22.5 - parent: 1668 - type: Transform - - uid: 4829 - components: - - pos: 12.5,-22.5 - parent: 1668 - type: Transform - - uid: 4830 - components: - - pos: 11.5,-22.5 - parent: 1668 - type: Transform - - uid: 4831 - components: - - pos: 10.5,-22.5 - parent: 1668 - type: Transform - - uid: 4832 - components: - - pos: 9.5,-22.5 - parent: 1668 - type: Transform - - uid: 4833 - components: - - pos: 8.5,-22.5 - parent: 1668 - type: Transform - - uid: 4834 - components: - - pos: 8.5,-23.5 - parent: 1668 - type: Transform - - uid: 4835 - components: - - pos: 8.5,-24.5 - parent: 1668 - type: Transform - - uid: 4836 - components: - - pos: 7.5,-24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4837 - components: - - pos: 12.5,-21.5 - parent: 1668 - type: Transform - - uid: 4838 - components: - - pos: 12.5,-20.5 - parent: 1668 - type: Transform - - uid: 4839 - components: - - pos: 12.5,-19.5 - parent: 1668 - type: Transform - - uid: 4840 - components: - - pos: 11.5,-19.5 - parent: 1668 - type: Transform - - uid: 4841 - components: - - pos: 10.5,-19.5 - parent: 1668 - type: Transform - - uid: 4842 - components: - - pos: 9.5,-19.5 - parent: 1668 - type: Transform - - uid: 4843 - components: - - pos: 8.5,-19.5 - parent: 1668 - type: Transform - - uid: 4844 - components: - - pos: 8.5,-18.5 - parent: 1668 - type: Transform - - uid: 4845 - components: - - pos: 8.5,-17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4846 - components: - - pos: 7.5,-18.5 - parent: 1668 - type: Transform - - uid: 4847 - components: - - pos: 6.5,-18.5 - parent: 1668 - type: Transform - - uid: 4848 - components: - - pos: 5.5,-18.5 - parent: 1668 - type: Transform - - uid: 4849 - components: - - pos: 4.5,-18.5 - parent: 1668 - type: Transform - - uid: 4850 - components: - - pos: 3.5,-18.5 - parent: 1668 - type: Transform - - uid: 4851 - components: - - pos: 2.5,-18.5 - parent: 1668 - type: Transform - - uid: 4852 - components: - - pos: 1.5,-18.5 - parent: 1668 - type: Transform - - uid: 4853 - components: - - pos: 1.5,-19.5 - parent: 1668 - type: Transform - - uid: 4854 - components: - - pos: 1.5,-20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4855 - components: - - pos: 0.5,-18.5 - parent: 1668 - type: Transform - - uid: 4857 - components: - - pos: -0.5,-17.5 - parent: 1668 - type: Transform - - uid: 4858 - components: - - pos: -0.5,-16.5 - parent: 1668 - type: Transform - - uid: 4859 - components: - - pos: -0.5,-15.5 - parent: 1668 - type: Transform - - uid: 4860 - components: - - pos: -0.5,-14.5 - parent: 1668 - type: Transform - - uid: 4861 - components: - - pos: -0.5,-13.5 - parent: 1668 - type: Transform - - uid: 4862 - components: - - pos: -0.5,-12.5 - parent: 1668 - type: Transform - - uid: 4863 - components: - - pos: -0.5,-11.5 - parent: 1668 - type: Transform - - uid: 4864 - components: - - pos: -0.5,-10.5 - parent: 1668 - type: Transform - - uid: 4865 - components: - - pos: -0.5,-9.5 - parent: 1668 - type: Transform - - uid: 4866 - components: - - pos: -1.5,-9.5 - parent: 1668 - type: Transform - - uid: 4867 - components: - - pos: -2.5,-9.5 - parent: 1668 - type: Transform - - uid: 4868 - components: - - pos: -3.5,-9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4869 - components: - - pos: -0.5,-19.5 - parent: 1668 - type: Transform - - uid: 4870 - components: - - pos: -0.5,-20.5 - parent: 1668 - type: Transform - - uid: 4871 - components: - - pos: -0.5,-21.5 - parent: 1668 - type: Transform - - uid: 4872 - components: - - pos: -0.5,-22.5 - parent: 1668 - type: Transform - - uid: 4873 - components: - - pos: -0.5,-23.5 - parent: 1668 - type: Transform - - uid: 4874 - components: - - pos: -0.5,-24.5 - parent: 1668 - type: Transform - - uid: 4875 - components: - - pos: -0.5,-25.5 - parent: 1668 - type: Transform - - uid: 4876 - components: - - pos: -1.5,-25.5 - parent: 1668 - type: Transform - - uid: 4877 - components: - - pos: -2.5,-25.5 - parent: 1668 - type: Transform - - uid: 4878 - components: - - pos: -2.5,-24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4879 - components: - - pos: -3.5,-25.5 - parent: 1668 - type: Transform - - uid: 4880 - components: - - pos: -4.5,-25.5 - parent: 1668 - type: Transform - - uid: 4881 - components: - - pos: -5.5,-25.5 - parent: 1668 - type: Transform - - uid: 4882 - components: - - pos: -6.5,-25.5 - parent: 1668 - type: Transform - - uid: 4883 - components: - - pos: -7.5,-25.5 - parent: 1668 - type: Transform - - uid: 4884 - components: - - pos: -8.5,-25.5 - parent: 1668 - type: Transform - - uid: 4885 - components: - - pos: -9.5,-25.5 - parent: 1668 - type: Transform - - uid: 4886 - components: - - pos: -9.5,-24.5 - parent: 1668 - type: Transform - - uid: 4887 - components: - - pos: -8.5,-24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4888 - components: - - pos: -1.5,-18.5 - parent: 1668 - type: Transform - - uid: 4889 - components: - - pos: -2.5,-18.5 - parent: 1668 - type: Transform - - uid: 4890 - components: - - pos: -3.5,-18.5 - parent: 1668 - type: Transform - - uid: 4891 - components: - - pos: -4.5,-18.5 - parent: 1668 - type: Transform - - uid: 4892 - components: - - pos: -5.5,-18.5 - parent: 1668 - type: Transform - - uid: 4893 - components: - - pos: -6.5,-18.5 - parent: 1668 - type: Transform - - uid: 4894 - components: - - pos: -7.5,-18.5 - parent: 1668 - type: Transform - - uid: 4895 - components: - - pos: -8.5,-18.5 - parent: 1668 - type: Transform - - uid: 4896 - components: - - pos: -9.5,-18.5 - parent: 1668 - type: Transform - - uid: 4897 - components: - - pos: -9.5,-17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4966 - components: - - pos: -1.5,-19.5 - parent: 1668 - type: Transform - - uid: 4967 - components: - - pos: -1.5,-17.5 - parent: 1668 - type: Transform - - uid: 4976 - components: - - pos: 17.5,-17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4978 - components: - - pos: 18.5,-17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4979 - components: - - pos: 19.5,-17.5 - parent: 1668 - type: Transform - - uid: 4980 - components: - - pos: 20.5,-17.5 - parent: 1668 - type: Transform - - uid: 4981 - components: - - pos: 20.5,-16.5 - parent: 1668 - type: Transform - - uid: 4982 - components: - - pos: 20.5,-15.5 - parent: 1668 - type: Transform - - uid: 4983 - components: - - pos: 20.5,-14.5 - parent: 1668 - type: Transform - - uid: 4984 - components: - - pos: 20.5,-13.5 - parent: 1668 - type: Transform - - uid: 4985 - components: - - pos: 20.5,-12.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4986 - components: - - pos: 20.5,-10.5 - parent: 1668 - type: Transform - - uid: 4987 - components: - - pos: 21.5,-10.5 - parent: 1668 - type: Transform - - uid: 4988 - components: - - pos: 20.5,-18.5 - parent: 1668 - type: Transform - - uid: 4989 - components: - - pos: 20.5,-19.5 - parent: 1668 - type: Transform - - uid: 4990 - components: - - pos: 19.5,-19.5 - parent: 1668 - type: Transform - - uid: 4991 - components: - - pos: 18.5,-19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5277 - components: - - pos: 21.5,-18.5 - parent: 1668 - type: Transform - - uid: 5278 - components: - - pos: 22.5,-18.5 - parent: 1668 - type: Transform - - uid: 5279 - components: - - pos: 23.5,-18.5 - parent: 1668 - type: Transform - - uid: 5280 - components: - - pos: 24.5,-18.5 - parent: 1668 - type: Transform - - uid: 5281 - components: - - pos: 25.5,-18.5 - parent: 1668 - type: Transform - - uid: 5282 - components: - - pos: 26.5,-18.5 - parent: 1668 - type: Transform - - uid: 5283 - components: - - pos: 27.5,-18.5 - parent: 1668 - type: Transform - - uid: 5284 - components: - - pos: 28.5,-18.5 - parent: 1668 - type: Transform - - uid: 5285 - components: - - pos: 29.5,-18.5 - parent: 1668 - type: Transform - - uid: 5286 - components: - - pos: 29.5,-19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5287 - components: - - pos: 30.5,-18.5 - parent: 1668 - type: Transform - - uid: 5288 - components: - - pos: 30.5,-17.5 - parent: 1668 - type: Transform - - uid: 5289 - components: - - pos: 30.5,-16.5 - parent: 1668 - type: Transform - - uid: 5290 - components: - - pos: 30.5,-15.5 - parent: 1668 - type: Transform - - uid: 5291 - components: - - pos: 30.5,-14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5292 - components: - - pos: 30.5,-13.5 - parent: 1668 - type: Transform - - uid: 5293 - components: - - pos: 30.5,-12.5 - parent: 1668 - type: Transform - - uid: 5294 - components: - - pos: 30.5,-11.5 - parent: 1668 - type: Transform - - uid: 5295 - components: - - pos: 30.5,-10.5 - parent: 1668 - type: Transform - - uid: 5296 - components: - - pos: 31.5,-10.5 - parent: 1668 - type: Transform - - uid: 5297 - components: - - pos: 32.5,-10.5 - parent: 1668 - type: Transform - - uid: 5298 - components: - - pos: 33.5,-10.5 - parent: 1668 - type: Transform - - uid: 5299 - components: - - pos: 34.5,-10.5 - parent: 1668 - type: Transform - - uid: 5300 - components: - - pos: 34.5,-9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5301 - components: - - pos: 22.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5302 - components: - - pos: 23.5,-23.5 - parent: 1668 - type: Transform - - uid: 5303 - components: - - pos: 24.5,-23.5 - parent: 1668 - type: Transform - - uid: 5304 - components: - - pos: 24.5,-22.5 - parent: 1668 - type: Transform - - uid: 5305 - components: - - pos: 24.5,-21.5 - parent: 1668 - type: Transform - - uid: 5306 - components: - - pos: 24.5,-20.5 - parent: 1668 - type: Transform - - uid: 5307 - components: - - pos: 24.5,-19.5 - parent: 1668 - type: Transform - - uid: 5424 - components: - - pos: 16.5,-28.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5425 - components: - - pos: 16.5,-27.5 - parent: 1668 - type: Transform - - uid: 5426 - components: - - pos: 16.5,-26.5 - parent: 1668 - type: Transform - - uid: 5427 - components: - - pos: 16.5,-25.5 - parent: 1668 - type: Transform - - uid: 5428 - components: - - pos: 17.5,-25.5 - parent: 1668 - type: Transform - - uid: 5429 - components: - - pos: 18.5,-25.5 - parent: 1668 - type: Transform - - uid: 5430 - components: - - pos: 19.5,-25.5 - parent: 1668 - type: Transform - - uid: 5431 - components: - - pos: 20.5,-25.5 - parent: 1668 - type: Transform - - uid: 5432 - components: - - pos: 21.5,-25.5 - parent: 1668 - type: Transform - - uid: 5433 - components: - - pos: 22.5,-25.5 - parent: 1668 - type: Transform - - uid: 5434 - components: - - pos: 23.5,-25.5 - parent: 1668 - type: Transform - - uid: 5435 - components: - - pos: 24.5,-25.5 - parent: 1668 - type: Transform - - uid: 5436 - components: - - pos: 24.5,-24.5 - parent: 1668 - type: Transform - - uid: 5437 - components: - - pos: 20.5,-24.5 - parent: 1668 - type: Transform - - uid: 5438 - components: - - pos: 20.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5439 - components: - - pos: 21.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5440 - components: - - pos: 19.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5832 - components: - - pos: 10.5,6.5 - parent: 1668 - type: Transform - - uid: 5833 - components: - - pos: 9.5,6.5 - parent: 1668 - type: Transform - - uid: 5834 - components: - - pos: 9.5,5.5 - parent: 1668 - type: Transform - - uid: 5835 - components: - - pos: 9.5,4.5 - parent: 1668 - type: Transform - - uid: 5836 - components: - - pos: 9.5,3.5 - parent: 1668 - type: Transform - - uid: 5837 - components: - - pos: 9.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5838 - components: - - pos: 9.5,1.5 - parent: 1668 - type: Transform - - uid: 5839 - components: - - pos: 10.5,1.5 - parent: 1668 - type: Transform - - uid: 5840 - components: - - pos: 10.5,0.5 - parent: 1668 - type: Transform - - uid: 5841 - components: - - pos: 10.5,-0.5 - parent: 1668 - type: Transform - - uid: 5842 - components: - - pos: 10.5,-1.5 - parent: 1668 - type: Transform - - uid: 5843 - components: - - pos: 10.5,-2.5 - parent: 1668 - type: Transform - - uid: 5844 - components: - - pos: 11.5,6.5 - parent: 1668 - type: Transform - - uid: 5845 - components: - - pos: 12.5,6.5 - parent: 1668 - type: Transform - - uid: 5846 - components: - - pos: 12.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5854 - components: - - pos: 20.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5855 - components: - - pos: 20.5,5.5 - parent: 1668 - type: Transform - - uid: 5856 - components: - - pos: 19.5,5.5 - parent: 1668 - type: Transform - - uid: 5857 - components: - - pos: 18.5,5.5 - parent: 1668 - type: Transform - - uid: 5858 - components: - - pos: 17.5,5.5 - parent: 1668 - type: Transform - - uid: 5859 - components: - - pos: 16.5,5.5 - parent: 1668 - type: Transform - - uid: 5860 - components: - - pos: 15.5,5.5 - parent: 1668 - type: Transform - - uid: 5861 - components: - - pos: 14.5,5.5 - parent: 1668 - type: Transform - - uid: 5862 - components: - - pos: 13.5,5.5 - parent: 1668 - type: Transform - - uid: 5863 - components: - - pos: 12.5,5.5 - parent: 1668 - type: Transform - - uid: 5865 - components: - - pos: 20.5,4.5 - parent: 1668 - type: Transform - - uid: 5866 - components: - - pos: 20.5,3.5 - parent: 1668 - type: Transform - - uid: 5867 - components: - - pos: 20.5,2.5 - parent: 1668 - type: Transform - - uid: 5868 - components: - - pos: 20.5,1.5 - parent: 1668 - type: Transform - - uid: 5869 - components: - - pos: 20.5,0.5 - parent: 1668 - type: Transform - - uid: 5870 - components: - - pos: 20.5,-0.5 - parent: 1668 - type: Transform - - uid: 5871 - components: - - pos: 20.5,-1.5 - parent: 1668 - type: Transform - - uid: 5872 - components: - - pos: 20.5,-2.5 - parent: 1668 - type: Transform - - uid: 5873 - components: - - pos: 20.5,-3.5 - parent: 1668 - type: Transform - - uid: 5874 - components: - - pos: 20.5,-4.5 - parent: 1668 - type: Transform - - uid: 5875 - components: - - pos: 20.5,-5.5 - parent: 1668 - type: Transform - - uid: 6055 - components: - - pos: -16.5,-29.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6056 - components: - - pos: -16.5,-30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6057 - components: - - pos: -17.5,-29.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6058 - components: - - pos: -18.5,-29.5 - parent: 1668 - type: Transform - - uid: 6059 - components: - - pos: -18.5,-28.5 - parent: 1668 - type: Transform - - uid: 6060 - components: - - pos: -18.5,-27.5 - parent: 1668 - type: Transform - - uid: 6061 - components: - - pos: -18.5,-26.5 - parent: 1668 - type: Transform - - uid: 6062 - components: - - pos: -18.5,-25.5 - parent: 1668 - type: Transform - - uid: 6063 - components: - - pos: -18.5,-24.5 - parent: 1668 - type: Transform - - uid: 6064 - components: - - pos: -18.5,-23.5 - parent: 1668 - type: Transform - - uid: 6065 - components: - - pos: -18.5,-22.5 - parent: 1668 - type: Transform - - uid: 6066 - components: - - pos: -17.5,-22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6104 - components: - - pos: -17.5,-26.5 - parent: 1668 - type: Transform - - uid: 6105 - components: - - pos: -16.5,-26.5 - parent: 1668 - type: Transform - - uid: 6106 - components: - - pos: -15.5,-26.5 - parent: 1668 - type: Transform - - uid: 6107 - components: - - pos: -14.5,-26.5 - parent: 1668 - type: Transform - - uid: 6108 - components: - - pos: -14.5,-27.5 - parent: 1668 - type: Transform - - uid: 6109 - components: - - pos: -14.5,-28.5 - parent: 1668 - type: Transform - - uid: 6110 - components: - - pos: -14.5,-28.5 - parent: 1668 - type: Transform - - uid: 6111 - components: - - pos: -15.5,-28.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6182 - components: - - pos: -14.5,-29.5 - parent: 1668 - type: Transform - - uid: 6183 - components: - - pos: -14.5,-30.5 - parent: 1668 - type: Transform - - uid: 6184 - components: - - pos: -13.5,-30.5 - parent: 1668 - type: Transform - - uid: 6185 - components: - - pos: -12.5,-30.5 - parent: 1668 - type: Transform - - uid: 6186 - components: - - pos: -11.5,-30.5 - parent: 1668 - type: Transform - - uid: 6187 - components: - - pos: -10.5,-30.5 - parent: 1668 - type: Transform - - uid: 6188 - components: - - pos: -9.5,-30.5 - parent: 1668 - type: Transform - - uid: 6189 - components: - - pos: -8.5,-30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6190 - components: - - pos: 7.5,-30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6191 - components: - - pos: 8.5,-30.5 - parent: 1668 - type: Transform - - uid: 6192 - components: - - pos: 9.5,-30.5 - parent: 1668 - type: Transform - - uid: 6193 - components: - - pos: 10.5,-30.5 - parent: 1668 - type: Transform - - uid: 6194 - components: - - pos: 11.5,-30.5 - parent: 1668 - type: Transform - - uid: 6195 - components: - - pos: 12.5,-30.5 - parent: 1668 - type: Transform - - uid: 6196 - components: - - pos: 13.5,-30.5 - parent: 1668 - type: Transform - - uid: 6197 - components: - - pos: 13.5,-29.5 - parent: 1668 - type: Transform - - uid: 6198 - components: - - pos: 13.5,-28.5 - parent: 1668 - type: Transform - - uid: 6199 - components: - - pos: 13.5,-27.5 - parent: 1668 - type: Transform - - uid: 6200 - components: - - pos: 14.5,-27.5 - parent: 1668 - type: Transform - - uid: 6201 - components: - - pos: 15.5,-27.5 - parent: 1668 - type: Transform - - uid: 6336 - components: - - pos: -8.5,-31.5 - parent: 1668 - type: Transform - - uid: 6337 - components: - - pos: -7.5,-31.5 - parent: 1668 - type: Transform - - uid: 6338 - components: - - pos: -6.5,-31.5 - parent: 1668 - type: Transform - - uid: 6339 - components: - - pos: -5.5,-31.5 - parent: 1668 - type: Transform - - uid: 6340 - components: - - pos: -4.5,-31.5 - parent: 1668 - type: Transform - - uid: 6341 - components: - - pos: -3.5,-31.5 - parent: 1668 - type: Transform - - uid: 6342 - components: - - pos: -3.5,-32.5 - parent: 1668 - type: Transform - - uid: 6343 - components: - - pos: -3.5,-33.5 - parent: 1668 - type: Transform - - uid: 6344 - components: - - pos: -3.5,-34.5 - parent: 1668 - type: Transform - - uid: 6345 - components: - - pos: -2.5,-34.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6398 - components: - - pos: -2.5,-35.5 - parent: 1668 - type: Transform - - uid: 6399 - components: - - pos: -2.5,-36.5 - parent: 1668 - type: Transform - - uid: 6400 - components: - - pos: -2.5,-36.5 - parent: 1668 - type: Transform - - uid: 6401 - components: - - pos: -1.5,-37.5 - parent: 1668 - type: Transform - - uid: 6402 - components: - - pos: -2.5,-37.5 - parent: 1668 - type: Transform - - uid: 6403 - components: - - pos: -1.5,-38.5 - parent: 1668 - type: Transform - - uid: 6404 - components: - - pos: -1.5,-39.5 - parent: 1668 - type: Transform - - uid: 6405 - components: - - pos: -1.5,-40.5 - parent: 1668 - type: Transform - - uid: 6406 - components: - - pos: -1.5,-41.5 - parent: 1668 - type: Transform - - uid: 6407 - components: - - pos: -2.5,-41.5 - parent: 1668 - type: Transform - - uid: 6408 - components: - - pos: -2.5,-40.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6849 - components: - - pos: 32.5,-31.5 - parent: 1668 - type: Transform - - uid: 6850 - components: - - pos: 32.5,-30.5 - parent: 1668 - type: Transform - - uid: 6851 - components: - - pos: 32.5,-29.5 - parent: 1668 - type: Transform - - uid: 6852 - components: - - pos: 32.5,-28.5 - parent: 1668 - type: Transform - - uid: 6853 - components: - - pos: 32.5,-27.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound -- proto: CableTerminal - entities: - - uid: 2191 - components: - - pos: 27.5,-29.5 - parent: 1668 - type: Transform - - uid: 5075 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-15.5 - parent: 1668 - type: Transform - - uid: 5076 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-16.5 - parent: 1668 - type: Transform - - uid: 5077 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-17.5 - parent: 1668 - type: Transform -- proto: CargoPallet - entities: - - uid: 6924 - components: - - pos: -6.5,26.5 - parent: 1668 - type: Transform - - uid: 6925 - components: - - pos: -7.5,26.5 - parent: 1668 - type: Transform - - uid: 6926 - components: - - pos: -8.5,26.5 - parent: 1668 - type: Transform - - uid: 6927 - components: - - pos: -6.5,28.5 - parent: 1668 - type: Transform - - uid: 6928 - components: - - pos: -7.5,28.5 - parent: 1668 - type: Transform - - uid: 6929 - components: - - pos: -8.5,28.5 - parent: 1668 - type: Transform -- proto: Carpet - entities: - - uid: 2714 - components: - - pos: 6.5,18.5 - parent: 1668 - type: Transform - - uid: 2715 - components: - - pos: 6.5,19.5 - parent: 1668 - type: Transform - - uid: 2716 - components: - - pos: 5.5,18.5 - parent: 1668 - type: Transform - - uid: 2717 - components: - - pos: 5.5,19.5 - parent: 1668 - type: Transform -- proto: CarpetBlue - entities: - - uid: 640 - components: - - pos: -1.5,0.5 - parent: 1668 - type: Transform - - uid: 1425 - components: - - pos: -1.5,-0.5 - parent: 1668 - type: Transform - - uid: 1426 - components: - - pos: -0.5,0.5 - parent: 1668 - type: Transform - - uid: 1427 - components: - - pos: -0.5,-0.5 - parent: 1668 - type: Transform - - uid: 1428 - components: - - pos: 0.5,0.5 - parent: 1668 - type: Transform - - uid: 1429 - components: - - pos: 0.5,-0.5 - parent: 1668 - type: Transform -- proto: CarpetGreen - entities: - - uid: 3728 - components: - - pos: -16.5,10.5 - parent: 1668 - type: Transform - - uid: 3729 - components: - - pos: -16.5,11.5 - parent: 1668 - type: Transform - - uid: 3730 - components: - - pos: -15.5,10.5 - parent: 1668 - type: Transform - - uid: 3731 - components: - - pos: -15.5,11.5 - parent: 1668 - type: Transform - - uid: 3732 - components: - - pos: -19.5,11.5 - parent: 1668 - type: Transform - - uid: 3733 - components: - - pos: -19.5,10.5 - parent: 1668 - type: Transform - - uid: 3735 - components: - - pos: -18.5,11.5 - parent: 1668 - type: Transform - - uid: 3736 - components: - - pos: -18.5,10.5 - parent: 1668 - type: Transform - - uid: 3738 - components: - - pos: -19.5,5.5 - parent: 1668 - type: Transform - - uid: 3739 - components: - - pos: -19.5,6.5 - parent: 1668 - type: Transform - - uid: 3740 - components: - - pos: -18.5,5.5 - parent: 1668 - type: Transform - - uid: 3741 - components: - - pos: -18.5,6.5 - parent: 1668 - type: Transform -- proto: Catwalk - entities: - - uid: 347 - components: - - pos: 34.5,2.5 - parent: 1668 - type: Transform - - uid: 1065 - components: - - pos: 34.5,-3.5 - parent: 1668 - type: Transform - - uid: 1066 - components: - - pos: 34.5,-5.5 - parent: 1668 - type: Transform - - uid: 1067 - components: - - pos: 34.5,4.5 - parent: 1668 - type: Transform - - uid: 1179 - components: - - pos: 16.5,-13.5 - parent: 1668 - type: Transform - - uid: 2032 - components: - - pos: -0.5,18.5 - parent: 1668 - type: Transform - - uid: 2033 - components: - - pos: -0.5,19.5 - parent: 1668 - type: Transform - - uid: 2034 - components: - - pos: -0.5,20.5 - parent: 1668 - type: Transform - - uid: 2035 - components: - - pos: 0.5,20.5 - parent: 1668 - type: Transform - - uid: 2036 - components: - - pos: 1.5,20.5 - parent: 1668 - type: Transform - - uid: 2037 - components: - - pos: -1.5,20.5 - parent: 1668 - type: Transform - - uid: 2038 - components: - - pos: -2.5,20.5 - parent: 1668 - type: Transform - - uid: 2046 - components: - - pos: -0.5,23.5 - parent: 1668 - type: Transform - - uid: 2047 - components: - - pos: -1.5,23.5 - parent: 1668 - type: Transform - - uid: 2048 - components: - - pos: -2.5,23.5 - parent: 1668 - type: Transform - - uid: 2049 - components: - - pos: -2.5,24.5 - parent: 1668 - type: Transform - - uid: 3239 - components: - - pos: -2.5,26.5 - parent: 1668 - type: Transform - - uid: 3240 - components: - - pos: -2.5,27.5 - parent: 1668 - type: Transform - - uid: 3241 - components: - - pos: -2.5,28.5 - parent: 1668 - type: Transform - - uid: 3242 - components: - - pos: -2.5,29.5 - parent: 1668 - type: Transform - - uid: 3243 - components: - - pos: -2.5,30.5 - parent: 1668 - type: Transform - - uid: 3244 - components: - - pos: -2.5,31.5 - parent: 1668 - type: Transform - - uid: 3246 - components: - - rot: 3.141592653589793 rad - pos: -2.5,32.5 - parent: 1668 - type: Transform - - uid: 3251 - components: - - pos: 14.5,17.5 - parent: 1668 - type: Transform - - uid: 3252 - components: - - pos: 14.5,18.5 - parent: 1668 - type: Transform - - uid: 3253 - components: - - pos: 15.5,18.5 - parent: 1668 - type: Transform - - uid: 3709 - components: - - pos: -16.5,4.5 - parent: 1668 - type: Transform - - uid: 3710 - components: - - pos: -15.5,4.5 - parent: 1668 - type: Transform - - uid: 3711 - components: - - pos: -14.5,4.5 - parent: 1668 - type: Transform - - uid: 3712 - components: - - pos: -14.5,6.5 - parent: 1668 - type: Transform - - uid: 4146 - components: - - pos: -33.5,0.5 - parent: 1668 - type: Transform - - uid: 4147 - components: - - pos: -33.5,-1.5 - parent: 1668 - type: Transform - - uid: 4181 - components: - - pos: -27.5,3.5 - parent: 1668 - type: Transform - - uid: 4182 - components: - - pos: -27.5,4.5 - parent: 1668 - type: Transform - - uid: 4183 - components: - - pos: -27.5,5.5 - parent: 1668 - type: Transform - - uid: 4568 - components: - - pos: -13.5,-14.5 - parent: 1668 - type: Transform - - uid: 4569 - components: - - pos: -13.5,-13.5 - parent: 1668 - type: Transform - - uid: 4570 - components: - - pos: -13.5,-12.5 - parent: 1668 - type: Transform - - uid: 4571 - components: - - pos: -13.5,-11.5 - parent: 1668 - type: Transform - - uid: 4572 - components: - - pos: -12.5,-11.5 - parent: 1668 - type: Transform - - uid: 4573 - components: - - pos: -11.5,-11.5 - parent: 1668 - type: Transform - - uid: 4574 - components: - - pos: -10.5,-11.5 - parent: 1668 - type: Transform - - uid: 5197 - components: - - pos: 32.5,-24.5 - parent: 1668 - type: Transform - - uid: 5198 - components: - - pos: 31.5,-25.5 - parent: 1668 - type: Transform - - uid: 5199 - components: - - pos: 33.5,-25.5 - parent: 1668 - type: Transform - - uid: 5200 - components: - - pos: 32.5,-25.5 - parent: 1668 - type: Transform - - uid: 5201 - components: - - pos: 30.5,-25.5 - parent: 1668 - type: Transform - - uid: 5202 - components: - - pos: 34.5,-25.5 - parent: 1668 - type: Transform - - uid: 5203 - components: - - pos: 34.5,-23.5 - parent: 1668 - type: Transform - - uid: 5204 - components: - - pos: 33.5,-23.5 - parent: 1668 - type: Transform - - uid: 5205 - components: - - pos: 32.5,-23.5 - parent: 1668 - type: Transform - - uid: 5206 - components: - - pos: 31.5,-23.5 - parent: 1668 - type: Transform - - uid: 5207 - components: - - pos: 30.5,-23.5 - parent: 1668 - type: Transform - - uid: 5208 - components: - - pos: 32.5,-22.5 - parent: 1668 - type: Transform - - uid: 5209 - components: - - pos: 30.5,-21.5 - parent: 1668 - type: Transform - - uid: 5210 - components: - - pos: 31.5,-21.5 - parent: 1668 - type: Transform - - uid: 5211 - components: - - pos: 32.5,-21.5 - parent: 1668 - type: Transform - - uid: 5212 - components: - - pos: 33.5,-21.5 - parent: 1668 - type: Transform - - uid: 5213 - components: - - pos: 34.5,-21.5 - parent: 1668 - type: Transform - - uid: 5323 - components: - - pos: 24.5,-16.5 - parent: 1668 - type: Transform - - uid: 5324 - components: - - pos: 25.5,-16.5 - parent: 1668 - type: Transform - - uid: 5325 - components: - - pos: 26.5,-16.5 - parent: 1668 - type: Transform - - uid: 5326 - components: - - pos: 27.5,-16.5 - parent: 1668 - type: Transform - - uid: 6142 - components: - - pos: -22.5,-26.5 - parent: 1668 - type: Transform - - uid: 6143 - components: - - pos: -22.5,-24.5 - parent: 1668 - type: Transform - - uid: 6440 - components: - - pos: -1.5,-45.5 - parent: 1668 - type: Transform - - uid: 6441 - components: - - pos: 0.5,-45.5 - parent: 1668 - type: Transform -- proto: CentcomIDCard - entities: - - uid: 3721 - components: - - pos: -16.521366,8.567018 - parent: 1668 - type: Transform -- proto: CentcomPDA - entities: - - uid: 2198 - components: - - pos: -1.5134044,0.62284255 - parent: 1668 - type: Transform - - uid: 6617 - components: - - pos: -20.428675,10.647655 - parent: 1668 - type: Transform -- proto: Chair - entities: - - uid: 517 - components: - - pos: 22.5,5.5 - parent: 1668 - type: Transform - - uid: 518 - components: - - pos: 23.5,5.5 - parent: 1668 - type: Transform - - uid: 519 - components: - - pos: 24.5,5.5 - parent: 1668 - type: Transform - - uid: 520 - components: - - pos: 28.5,5.5 - parent: 1668 - type: Transform - - uid: 521 - components: - - pos: 29.5,5.5 - parent: 1668 - type: Transform - - uid: 522 - components: - - pos: 30.5,5.5 - parent: 1668 - type: Transform - - uid: 532 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-6.5 - parent: 1668 - type: Transform - - uid: 533 - components: - - rot: 3.141592653589793 rad - pos: 23.5,-6.5 - parent: 1668 - type: Transform - - uid: 534 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-6.5 - parent: 1668 - type: Transform - - uid: 535 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-6.5 - parent: 1668 - type: Transform - - uid: 536 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-6.5 - parent: 1668 - type: Transform - - uid: 537 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-6.5 - parent: 1668 - type: Transform - - uid: 538 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-4.5 - parent: 1668 - type: Transform - - uid: 539 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-2.5 - parent: 1668 - type: Transform - - uid: 540 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,1.5 - parent: 1668 - type: Transform - - uid: 541 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,3.5 - parent: 1668 - type: Transform - - uid: 634 - components: - - pos: 10.5,1.5 - parent: 1668 - type: Transform - - uid: 635 - components: - - pos: 11.5,1.5 - parent: 1668 - type: Transform - - uid: 636 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-2.5 - parent: 1668 - type: Transform - - uid: 637 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-2.5 - parent: 1668 - type: Transform - - uid: 638 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-2.5 - parent: 1668 - type: Transform - - uid: 639 - components: - - pos: 13.5,1.5 - parent: 1668 - type: Transform - - uid: 1644 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,11.5 - parent: 1668 - type: Transform - - uid: 1645 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,13.5 - parent: 1668 - type: Transform - - uid: 2168 - components: - - pos: 1.5,16.5 - parent: 1668 - type: Transform - - uid: 2169 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,15.5 - parent: 1668 - type: Transform - - uid: 2170 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,14.5 - parent: 1668 - type: Transform - - uid: 2171 - components: - - rot: 3.141592653589793 rad - pos: -1.5,8.5 - parent: 1668 - type: Transform - - uid: 2172 - components: - - rot: 3.141592653589793 rad - pos: -2.5,8.5 - parent: 1668 - type: Transform - - uid: 2173 - components: - - rot: 3.141592653589793 rad - pos: 1.5,8.5 - parent: 1668 - type: Transform - - uid: 2174 - components: - - rot: 3.141592653589793 rad - pos: 0.5,8.5 - parent: 1668 - type: Transform - - uid: 2175 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,9.5 - parent: 1668 - type: Transform - - uid: 2176 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,10.5 - parent: 1668 - type: Transform - - uid: 2415 - components: - - rot: 3.141592653589793 rad - pos: 27.5,16.5 - parent: 1668 - type: Transform - - uid: 2416 - components: - - rot: 3.141592653589793 rad - pos: 26.5,16.5 - parent: 1668 - type: Transform - - uid: 2417 - components: - - rot: 3.141592653589793 rad - pos: 29.5,16.5 - parent: 1668 - type: Transform - - uid: 2418 - components: - - rot: 3.141592653589793 rad - pos: 30.5,16.5 - parent: 1668 - type: Transform - - uid: 2419 - components: - - pos: 26.5,21.5 - parent: 1668 - type: Transform - - uid: 2420 - components: - - pos: 30.5,21.5 - parent: 1668 - type: Transform - - uid: 2427 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,15.5 - parent: 1668 - type: Transform - - uid: 2428 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,16.5 - parent: 1668 - type: Transform - - uid: 2429 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,17.5 - parent: 1668 - type: Transform - - uid: 2430 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,18.5 - parent: 1668 - type: Transform - - uid: 2431 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,15.5 - parent: 1668 - type: Transform - - uid: 2432 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,16.5 - parent: 1668 - type: Transform - - uid: 2433 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,17.5 - parent: 1668 - type: Transform - - uid: 2434 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,18.5 - parent: 1668 - type: Transform - - uid: 2441 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-16.5 - parent: 1668 - type: Transform - - uid: 2472 - components: - - rot: 3.141592653589793 rad - pos: 25.5,13.5 - parent: 1668 - type: Transform - - uid: 2473 - components: - - rot: 3.141592653589793 rad - pos: 26.5,13.5 - parent: 1668 - type: Transform - - uid: 2474 - components: - - rot: 3.141592653589793 rad - pos: 27.5,13.5 - parent: 1668 - type: Transform - - uid: 2475 - components: - - rot: 3.141592653589793 rad - pos: 29.5,13.5 - parent: 1668 - type: Transform - - uid: 2476 - components: - - rot: 3.141592653589793 rad - pos: 30.5,13.5 - parent: 1668 - type: Transform - - uid: 2477 - components: - - rot: 3.141592653589793 rad - pos: 31.5,13.5 - parent: 1668 - type: Transform - - uid: 2478 - components: - - rot: 3.141592653589793 rad - pos: 32.5,12.5 - parent: 1668 - type: Transform - - uid: 2479 - components: - - rot: 3.141592653589793 rad - pos: 31.5,12.5 - parent: 1668 - type: Transform - - uid: 2480 - components: - - rot: 3.141592653589793 rad - pos: 30.5,12.5 - parent: 1668 - type: Transform - - uid: 2481 - components: - - rot: 3.141592653589793 rad - pos: 29.5,12.5 - parent: 1668 - type: Transform - - uid: 2482 - components: - - rot: 3.141592653589793 rad - pos: 27.5,12.5 - parent: 1668 - type: Transform - - uid: 2483 - components: - - rot: 3.141592653589793 rad - pos: 26.5,12.5 - parent: 1668 - type: Transform - - uid: 2484 - components: - - rot: 3.141592653589793 rad - pos: 25.5,12.5 - parent: 1668 - type: Transform - - uid: 2485 - components: - - rot: 3.141592653589793 rad - pos: 24.5,12.5 - parent: 1668 - type: Transform - - uid: 2827 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,21.5 - parent: 1668 - type: Transform - - uid: 2828 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,21.5 - parent: 1668 - type: Transform - - uid: 3172 - components: - - pos: 8.5,15.5 - parent: 1668 - type: Transform - - uid: 3173 - components: - - pos: 7.5,15.5 - parent: 1668 - type: Transform - - uid: 3174 - components: - - rot: 3.141592653589793 rad - pos: 12.5,10.5 - parent: 1668 - type: Transform - - uid: 3175 - components: - - rot: 3.141592653589793 rad - pos: 8.5,10.5 - parent: 1668 - type: Transform - - uid: 3176 - components: - - rot: 3.141592653589793 rad - pos: 7.5,10.5 - parent: 1668 - type: Transform - - uid: 3177 - components: - - rot: 3.141592653589793 rad - pos: 13.5,10.5 - parent: 1668 - type: Transform - - uid: 3827 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,23.5 - parent: 1668 - type: Transform - - uid: 4152 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,1.5 - parent: 1668 - type: Transform - - uid: 4153 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-0.5 - parent: 1668 - type: Transform - - uid: 4154 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-2.5 - parent: 1668 - type: Transform - - uid: 4155 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-2.5 - parent: 1668 - type: Transform - - uid: 4156 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-0.5 - parent: 1668 - type: Transform - - uid: 4157 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,1.5 - parent: 1668 - type: Transform - - uid: 4160 - components: - - pos: -31.5,6.5 - parent: 1668 - type: Transform - - uid: 4161 - components: - - pos: -32.5,6.5 - parent: 1668 - type: Transform - - uid: 4162 - components: - - pos: -33.5,6.5 - parent: 1668 - type: Transform - - uid: 4163 - components: - - rot: 3.141592653589793 rad - pos: -31.5,3.5 - parent: 1668 - type: Transform - - uid: 4164 - components: - - rot: 3.141592653589793 rad - pos: -32.5,3.5 - parent: 1668 - type: Transform - - uid: 4165 - components: - - rot: 3.141592653589793 rad - pos: -33.5,3.5 - parent: 1668 - type: Transform - - uid: 5246 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-24.5 - parent: 1668 - type: Transform - - uid: 5249 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-24.5 - parent: 1668 - type: Transform - - uid: 5308 - components: - - pos: 27.5,-21.5 - parent: 1668 - type: Transform - - uid: 5309 - components: - - pos: 26.5,-21.5 - parent: 1668 - type: Transform - - uid: 5384 - components: - - pos: 15.5,-23.5 - parent: 1668 - type: Transform - - uid: 5385 - components: - - pos: 14.5,-23.5 - parent: 1668 - type: Transform - - uid: 6148 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-22.5 - parent: 1668 - type: Transform - - uid: 6149 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-22.5 - parent: 1668 - type: Transform - - uid: 6152 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-28.5 - parent: 1668 - type: Transform - - uid: 6153 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-27.5 - parent: 1668 - type: Transform - - uid: 6240 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-27.5 - parent: 1668 - type: Transform - - uid: 6243 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-27.5 - parent: 1668 - type: Transform - - uid: 6391 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-43.5 - parent: 1668 - type: Transform - - uid: 6392 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-41.5 - parent: 1668 - type: Transform - - uid: 6393 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-43.5 - parent: 1668 - type: Transform - - uid: 6394 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-41.5 - parent: 1668 - type: Transform - - uid: 6567 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-33.5 - parent: 1668 - type: Transform - - uid: 6568 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-33.5 - parent: 1668 - type: Transform - - uid: 6569 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-33.5 - parent: 1668 - type: Transform - - uid: 6570 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-33.5 - parent: 1668 - type: Transform - - uid: 6579 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-30.5 - parent: 1668 - type: Transform - - uid: 6580 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-30.5 - parent: 1668 - type: Transform - - uid: 6585 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-30.5 - parent: 1668 - type: Transform - - uid: 6586 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-30.5 - parent: 1668 - type: Transform - - uid: 6587 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-33.5 - parent: 1668 - type: Transform - - uid: 6588 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-33.5 - parent: 1668 - type: Transform - - uid: 6589 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-33.5 - parent: 1668 - type: Transform - - uid: 6590 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-33.5 - parent: 1668 - type: Transform - - uid: 6748 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-17.5 - parent: 1668 - type: Transform -- proto: ChairOfficeDark - entities: - - uid: 506 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-8.5 - parent: 1668 - type: Transform - - uid: 507 - components: - - pos: 27.5,-10.5 - parent: 1668 - type: Transform - - uid: 604 - components: - - pos: 12.5,3.5 - parent: 1668 - type: Transform - - uid: 605 - components: - - pos: 14.5,3.5 - parent: 1668 - type: Transform - - uid: 817 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-12.5 - parent: 1668 - type: Transform - - uid: 818 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-12.5 - parent: 1668 - type: Transform - - uid: 1401 - components: - - pos: -1.5,-1.5 - parent: 1668 - type: Transform - - uid: 1402 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 1668 - type: Transform - - uid: 1403 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 1668 - type: Transform - - uid: 1404 - components: - - pos: 0.5,-1.5 - parent: 1668 - type: Transform - - uid: 1405 - components: - - rot: 3.141592653589793 rad - pos: -0.5,0.5 - parent: 1668 - type: Transform - - uid: 1646 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,10.5 - parent: 1668 - type: Transform - - uid: 1647 - components: - - pos: -8.5,9.5 - parent: 1668 - type: Transform - - uid: 1648 - components: - - rot: 3.141592653589793 rad - pos: -8.5,11.5 - parent: 1668 - type: Transform - - uid: 1649 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,10.5 - parent: 1668 - type: Transform - - uid: 2744 - components: - - pos: 9.5,17.5 - parent: 1668 - type: Transform - - uid: 3621 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,4.5 - parent: 1668 - type: Transform - - uid: 3622 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,5.5 - parent: 1668 - type: Transform - - uid: 3623 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,5.5 - parent: 1668 - type: Transform - - uid: 3880 - components: - - pos: -21.5,-4.5 - parent: 1668 - type: Transform - - uid: 3881 - components: - - pos: -20.5,-4.5 - parent: 1668 - type: Transform - - uid: 3882 - components: - - pos: -19.5,-4.5 - parent: 1668 - type: Transform - - uid: 3883 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-5.5 - parent: 1668 - type: Transform - - uid: 3884 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-6.5 - parent: 1668 - type: Transform - - uid: 3885 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-7.5 - parent: 1668 - type: Transform - - uid: 3886 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-8.5 - parent: 1668 - type: Transform - - uid: 3887 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-8.5 - parent: 1668 - type: Transform - - uid: 3888 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-8.5 - parent: 1668 - type: Transform - - uid: 5243 - components: - - pos: 3.5,-16.5 - parent: 1668 - type: Transform - - uid: 5336 - components: - - pos: 16.5,-21.5 - parent: 1668 - type: Transform - - uid: 5337 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-21.5 - parent: 1668 - type: Transform - - uid: 6939 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,30.5 - parent: 1668 - type: Transform - - uid: 6940 - components: - - pos: -10.5,30.5 - parent: 1668 - type: Transform - - uid: 6941 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,25.5 - parent: 1668 - type: Transform -- proto: ChairWood - entities: - - uid: 4617 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-29.5 - parent: 1668 - type: Transform -- proto: CheapRollerBed - entities: - - uid: 6496 - components: - - pos: -4.516034,-43.401173 - parent: 1668 - type: Transform -- proto: chem_master - entities: - - uid: 825 - components: - - pos: 4.5,-13.5 - parent: 1668 - type: Transform - - uid: 4425 - components: - - pos: 10.5,-23.5 - parent: 1668 - type: Transform -- proto: ChemDispenser - entities: - - uid: 824 - components: - - pos: 3.5,-13.5 - parent: 1668 - type: Transform -- proto: ChemistryHotplate - entities: - - uid: 254 - components: - - pos: 3.5,-10.5 - parent: 1668 - type: Transform -- proto: ChessBoard - entities: - - uid: 3762 - components: - - pos: -23.529772,4.584259 - parent: 1668 - type: Transform -- proto: CigarGold - entities: - - uid: 2465 - components: - - pos: 30.393238,23.676378 - parent: 1668 - type: Transform - - uid: 2466 - components: - - pos: 30.502613,23.598253 - parent: 1668 - type: Transform - - uid: 3746 - components: - - pos: -23.553053,10.781973 - parent: 1668 - type: Transform - - uid: 3747 - components: - - pos: -23.443678,10.672598 - parent: 1668 - type: Transform - - uid: 3877 - components: - - pos: -26.36634,-3.4881558 - parent: 1668 - type: Transform - - uid: 3878 - components: - - pos: -26.30384,-3.5194058 - parent: 1668 - type: Transform -- proto: CloningPod - entities: - - uid: 722 - components: - - pos: 11.5,-13.5 - parent: 1668 - type: Transform - - links: - - 575 - type: DeviceLinkSink - - containers: - - machine_parts - - machine_board - type: Construction -- proto: ClosetBase - entities: - - uid: 2491 - components: - - pos: 20.5,23.5 - parent: 1668 - type: Transform -- proto: ClosetChefFilled - entities: - - uid: 4579 - components: - - pos: -9.5,-21.5 - parent: 1668 - type: Transform -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 1071 - components: - - pos: 34.5,-2.5 - parent: 1668 - type: Transform - - uid: 1072 - components: - - pos: 34.5,5.5 - parent: 1668 - type: Transform - - uid: 2044 - components: - - pos: -3.5,24.5 - parent: 1668 - type: Transform - - uid: 4148 - components: - - pos: -33.5,1.5 - parent: 1668 - type: Transform - - uid: 4149 - components: - - pos: -33.5,-2.5 - parent: 1668 - type: Transform - - uid: 4159 - components: - - pos: -30.5,6.5 - parent: 1668 - type: Transform - - uid: 5352 - components: - - pos: 20.5,-26.5 - parent: 1668 - type: Transform - - uid: 6147 - components: - - pos: -22.5,-22.5 - parent: 1668 - type: Transform - - uid: 6252 - components: - - pos: -14.5,-16.5 - parent: 1668 - type: Transform -- proto: ClosetFireFilled - entities: - - uid: 1073 - components: - - pos: 34.5,1.5 - parent: 1668 - type: Transform - - uid: 1074 - components: - - pos: 34.5,-6.5 - parent: 1668 - type: Transform - - uid: 4158 - components: - - pos: -29.5,6.5 - parent: 1668 - type: Transform - - uid: 5356 - components: - - pos: 19.5,-26.5 - parent: 1668 - type: Transform - - uid: 6146 - components: - - pos: -22.5,-28.5 - parent: 1668 - type: Transform -- proto: ClosetL3JanitorFilled - entities: - - uid: 6229 - components: - - pos: -16.5,-31.5 - parent: 1668 - type: Transform -- proto: ClosetLegalFilled - entities: - - uid: 2490 - components: - - pos: 19.5,23.5 - parent: 1668 - type: Transform -- proto: ClosetRadiationSuitFilled - entities: - - uid: 2442 - components: - - pos: 21.5,-26.5 - parent: 1668 - type: Transform - - uid: 5331 - components: - - pos: 34.5,-15.5 - parent: 1668 - type: Transform - - uid: 5332 - components: - - pos: 34.5,-18.5 - parent: 1668 - type: Transform -- proto: ClosetToolFilled - entities: - - uid: 3254 - components: - - pos: 14.5,19.5 - parent: 1668 - type: Transform -- proto: ClothingBackpackDuffelCargo - entities: - - uid: 6932 - components: - - pos: -5.4863143,25.64425 - parent: 1668 - type: Transform -- proto: ClothingBackpackERTEngineer - entities: - - uid: 6482 - components: - - pos: 5.405767,-40.385548 - parent: 1668 - type: Transform -- proto: ClothingBackpackERTJanitor - entities: - - uid: 6475 - components: - - pos: -6.572158,-40.432423 - parent: 1668 - type: Transform -- proto: ClothingBackpackERTMedical - entities: - - uid: 6477 - components: - - pos: -6.603408,-42.385548 - parent: 1668 - type: Transform -- proto: ClothingBackpackERTSecurity - entities: - - uid: 2901 - components: - - pos: 16.642612,32.410297 - parent: 1668 - type: Transform - - uid: 2902 - components: - - pos: 16.439487,32.566547 - parent: 1668 - type: Transform - - uid: 2903 - components: - - pos: 2.6113625,32.457172 - parent: 1668 - type: Transform - - uid: 2904 - components: - - pos: 2.4551125,32.613422 - parent: 1668 - type: Transform - - uid: 6480 - components: - - pos: 5.390142,-42.369923 - parent: 1668 - type: Transform -- proto: ClothingBackpackSatchelCaptain - entities: - - uid: 3774 - components: - - pos: -11.518181,4.5291095 - parent: 1668 - type: Transform -- proto: ClothingBackpackSatchelHolding - entities: - - uid: 3737 - components: - - pos: -26.540686,12.537982 - parent: 1668 - type: Transform -- proto: ClothingBeltChiefEngineerFilled - entities: - - uid: 6518 - components: - - pos: 5.5354643,-41.589462 - parent: 1668 - type: Transform - - uid: 6956 - components: - - pos: 20.568373,-22.468605 - parent: 1668 - type: Transform -- proto: ClothingBeltJanitorFilled - entities: - - uid: 6517 - components: - - pos: -6.514548,-41.214462 - parent: 1668 - type: Transform -- proto: ClothingBeltMedicalFilled - entities: - - uid: 6520 - components: - - pos: -6.5086355,-43.355087 - parent: 1668 - type: Transform -- proto: ClothingBeltSecurityFilled - entities: - - uid: 1460 - components: - - pos: -6.4730563,-12.590733 - parent: 1668 - type: Transform - - uid: 3151 - components: - - pos: 9.512553,25.678463 - parent: 1668 - type: Transform - - uid: 3152 - components: - - pos: 9.637553,25.537838 - parent: 1668 - type: Transform - - uid: 6519 - components: - - pos: 5.5468187,-43.386337 - parent: 1668 - type: Transform -- proto: ClothingBeltSheathFilled - entities: - - uid: 3725 - components: - - pos: -15.72449,12.605259 - parent: 1668 - type: Transform -- proto: ClothingBeltUtilityFilled - entities: - - uid: 2241 - components: - - pos: -9.339353,8.480244 - parent: 1668 - type: Transform - - uid: 3909 - components: - - pos: -13.494019,-9.4266615 - parent: 1668 - type: Transform - - uid: 5345 - components: - - pos: 25.530863,-26.462372 - parent: 1668 - type: Transform -- proto: ClothingEyesGlassesChemical - entities: - - uid: 6846 - components: - - pos: 3.5108106,-10.103214 - parent: 1668 - type: Transform -- proto: ClothingEyesGlassesMeson - entities: - - uid: 6498 - components: - - pos: 5.4943223,-41.167587 - parent: 1668 - type: Transform -- proto: ClothingEyesGlassesSecurity - entities: - - uid: 2204 - components: - - pos: 16.59961,30.616188 - parent: 1668 - type: Transform - - uid: 2205 - components: - - pos: 16.490234,30.741188 - parent: 1668 - type: Transform - - uid: 4173 - components: - - pos: 2.5571308,30.616188 - parent: 1668 - type: Transform - - uid: 4388 - components: - - pos: 2.4477558,30.694313 - parent: 1668 - type: Transform - - uid: 6499 - components: - - pos: 5.4786973,-43.183212 - parent: 1668 - type: Transform -- proto: ClothingEyesGlassesSunglasses - entities: - - uid: 2449 - components: - - pos: -15.8832245,12.471813 - parent: 1668 - type: Transform - - uid: 6947 - components: - - pos: -27.440563,-8.922831 - parent: 1668 - type: Transform - - uid: 6948 - components: - - pos: -27.440563,-8.922831 - parent: 1668 - type: Transform - - uid: 6949 - components: - - pos: -27.440563,-8.922831 - parent: 1668 - type: Transform -- proto: ClothingEyesHudDiagnostic - entities: - - uid: 5371 - components: - - pos: 26.529047,-22.34483 - parent: 1668 - type: Transform -- proto: ClothingHandsGlovesColorBlue - entities: - - uid: 6950 - components: - - pos: -26.706188,-9.407206 - parent: 1668 - type: Transform - - uid: 6951 - components: - - pos: -26.706188,-9.407206 - parent: 1668 - type: Transform - - uid: 6952 - components: - - pos: -26.706188,-9.407206 - parent: 1668 - type: Transform -- proto: ClothingHandsGlovesColorOrange - entities: - - uid: 6484 - components: - - pos: -6.483972,-40.260548 - parent: 1668 - type: Transform -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 6486 - components: - - pos: 5.5487814,-40.276173 - parent: 1668 - type: Transform -- proto: ClothingHandsGlovesCombat - entities: - - uid: 255 - components: - - pos: 2.4165058,30.959938 - parent: 1668 - type: Transform - - uid: 297 - components: - - pos: 2.6508808,30.850563 - parent: 1668 - type: Transform - - uid: 823 - components: - - pos: 16.41518,30.975563 - parent: 1668 - type: Transform - - uid: 833 - components: - - pos: 16.57143,30.913063 - parent: 1668 - type: Transform - - uid: 3724 - components: - - pos: -16.552616,8.708888 - parent: 1668 - type: Transform - - uid: 6485 - components: - - pos: 5.5331564,-42.244923 - parent: 1668 - type: Transform -- proto: ClothingHandsGlovesNitrile - entities: - - uid: 6483 - components: - - pos: -6.499597,-42.244923 - parent: 1668 - type: Transform -- proto: ClothingHeadHatHairflower - entities: - - uid: 6605 - components: - - pos: -11.182456,6.7149878 - parent: 1668 - type: Transform -- proto: ClothingHeadHatWelding - entities: - - uid: 2197 - components: - - pos: -1.4187617,24.501104 - parent: 1668 - type: Transform - - uid: 3700 - components: - - pos: -16.435745,6.5478344 - parent: 1668 - type: Transform - - uid: 5372 - components: - - pos: 27.357172,-22.34483 - parent: 1668 - type: Transform - - uid: 5373 - components: - - pos: 27.544672,-22.46983 - parent: 1668 - type: Transform -- proto: ClothingHeadsetAltCentCom - entities: - - uid: 1435 - components: - - pos: 0.47396702,1.5393463 - parent: 1668 - type: Transform - - uid: 3823 - components: - - pos: 2.6429226,32.7473 - parent: 1668 - type: Transform - - uid: 3824 - components: - - pos: 2.7522976,32.637924 - parent: 1668 - type: Transform - - uid: 3825 - components: - - pos: 16.661858,32.6848 - parent: 1668 - type: Transform - - uid: 3826 - components: - - pos: 16.771233,32.575424 - parent: 1668 - type: Transform -- proto: ClothingMaskBreathMedical - entities: - - uid: 6502 - components: - - pos: -6.496473,-43.620712 - parent: 1668 - type: Transform -- proto: ClothingMaskGas - entities: - - uid: 2224 - components: - - pos: -11.500146,17.576977 - parent: 1668 - type: Transform - - uid: 6503 - components: - - pos: -6.480848,-41.464462 - parent: 1668 - type: Transform -- proto: ClothingMaskGasAtmos - entities: - - uid: 5346 - components: - - pos: 21.493792,-17.470217 - parent: 1668 - type: Transform - - uid: 6501 - components: - - pos: 5.5099473,-41.480087 - parent: 1668 - type: Transform -- proto: ClothingMaskGasDeathSquad - entities: - - uid: 299 - components: - - pos: 16.360958,32.006813 - parent: 1668 - type: Transform - - uid: 821 - components: - - pos: 2.59024,31.975563 - parent: 1668 - type: Transform - - uid: 822 - components: - - pos: 2.34024,32.022438 - parent: 1668 - type: Transform - - uid: 1434 - components: - - pos: 16.595333,31.897438 - parent: 1668 - type: Transform -- proto: ClothingMaskGasSecurity - entities: - - uid: 6500 - components: - - pos: 5.5255723,-43.620712 - parent: 1668 - type: Transform -- proto: ClothingNeckBronzeheart - entities: - - uid: 4377 - components: - - pos: -3.5,-21.5 - parent: 1668 - type: Transform -- proto: ClothingNeckCloakNanotrasen - entities: - - uid: 2452 - components: - - pos: -27.456188,-9.313456 - parent: 1668 - type: Transform - - uid: 2737 - components: - - pos: -27.456188,-9.313456 - parent: 1668 - type: Transform - - uid: 4266 - components: - - pos: -27.456188,-9.313456 - parent: 1668 - type: Transform - - uid: 4615 - components: - - pos: -27.456188,-9.313456 - parent: 1668 - type: Transform - - uid: 6610 - components: - - pos: -12.45408,6.654963 - parent: 1668 - type: Transform -- proto: ClothingNeckGoldmedal - entities: - - uid: 4378 - components: - - pos: 2.5,-21.5 - parent: 1668 - type: Transform -- proto: ClothingNeckLawyerbadge - entities: - - uid: 4379 - components: - - pos: -3.5,-23.5 - parent: 1668 - type: Transform - - uid: 6936 - components: - - pos: 19.539907,21.362776 - parent: 1668 - type: Transform -- proto: ClothingOuterArmorCaptainCarapace - entities: - - uid: 3771 - components: - - pos: -12.455681,6.5291095 - parent: 1668 - type: Transform -- proto: ClothingOuterHardsuitDeathsquad - entities: - - uid: 2897 - components: - - pos: 3.403695,32.551796 - parent: 1668 - type: Transform - - uid: 2898 - components: - - pos: 3.653695,32.69242 - parent: 1668 - type: Transform - - uid: 2899 - components: - - pos: 15.372445,32.53617 - parent: 1668 - type: Transform - - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - It provides the following protection: - - - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Slash[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Heat[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Radiation[/color] damage reduced by [color=lightblue]90%[/color]. - - - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=orange]Explosion[/color] damage reduced by [color=lightblue]80%[/color]. - priority: 0 - component: Armor - title: null - type: GroupExamine - - uid: 2900 - components: - - pos: 15.653695,32.676796 - parent: 1668 - type: Transform - - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - It provides the following protection: - - - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Slash[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Heat[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Radiation[/color] damage reduced by [color=lightblue]90%[/color]. - - - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=orange]Explosion[/color] damage reduced by [color=lightblue]80%[/color]. - priority: 0 - component: Armor - title: null - type: GroupExamine -- proto: ClothingOuterHardsuitERTEngineer - entities: - - uid: 6481 - components: - - pos: 5.687017,-40.432423 - parent: 1668 - type: Transform -- proto: ClothingOuterHardsuitERTJanitor - entities: - - uid: 6476 - components: - - pos: -6.322158,-40.432423 - parent: 1668 - type: Transform -- proto: ClothingOuterHardsuitERTMedical - entities: - - uid: 6478 - components: - - pos: -6.306533,-42.385548 - parent: 1668 - type: Transform -- proto: ClothingOuterHardsuitERTSecurity - entities: - - uid: 6479 - components: - - pos: 5.655767,-42.432423 - parent: 1668 - type: Transform -- proto: ClothingShoesBootsLaceup - entities: - - uid: 3722 - components: - - pos: -16.568241,9.145143 - parent: 1668 - type: Transform - - uid: 6953 - components: - - pos: -27.518688,-8.610331 - parent: 1668 - type: Transform - - uid: 6954 - components: - - pos: -27.518688,-8.610331 - parent: 1668 - type: Transform - - uid: 6955 - components: - - pos: -27.518688,-8.610331 - parent: 1668 - type: Transform -- proto: ClothingShoesBootsMag - entities: - - uid: 6487 - components: - - pos: 5.422375,-40.776173 - parent: 1668 - type: Transform - - uid: 6488 - components: - - pos: 5.391125,-42.760548 - parent: 1668 - type: Transform - - uid: 6490 - components: - - pos: -6.663386,-42.678055 - parent: 1668 - type: Transform -- proto: ClothingShoesBootsMagAdv - entities: - - uid: 2909 - components: - - pos: 3.4296377,30.58716 - parent: 1668 - type: Transform - - uid: 2910 - components: - - pos: 3.6171377,30.446535 - parent: 1668 - type: Transform - - uid: 2911 - components: - - pos: 15.407025,30.634035 - parent: 1668 - type: Transform - - uid: 2912 - components: - - pos: 15.6414,30.415285 - parent: 1668 - type: Transform -- proto: ClothingShoesGaloshes - entities: - - uid: 6489 - components: - - pos: -6.647761,-40.740555 - parent: 1668 - type: Transform -- proto: ClothingShoesLeather - entities: - - uid: 3775 - components: - - pos: -10.574664,4.498021 - parent: 1668 - type: Transform -- proto: ClothingUniformJumpsuitDeathSquad - entities: - - uid: 2206 - components: - - pos: 15.35466,32.444313 - parent: 1668 - type: Transform - - uid: 2722 - components: - - pos: 3.637115,32.584938 - parent: 1668 - type: Transform - - uid: 4398 - components: - - pos: 3.40274,32.428688 - parent: 1668 - type: Transform - - uid: 4723 - components: - - pos: 15.651535,32.600563 - parent: 1668 - type: Transform -- proto: ClothingUniformJumpsuitEngineeringHazard - entities: - - uid: 6494 - components: - - pos: 5.560579,-40.369923 - parent: 1668 - type: Transform -- proto: ClothingUniformJumpsuitJanitor - entities: - - uid: 6491 - components: - - pos: -6.4606533,-40.401173 - parent: 1668 - type: Transform -- proto: ClothingUniformJumpsuitNanotrasen - entities: - - uid: 2446 - components: - - pos: -27.362438,-9.485331 - parent: 1668 - type: Transform - - uid: 2451 - components: - - pos: -27.362438,-9.485331 - parent: 1668 - type: Transform - - uid: 2453 - components: - - pos: -27.362438,-9.485331 - parent: 1668 - type: Transform - - uid: 2728 - components: - - pos: -27.362438,-9.485331 - parent: 1668 - type: Transform -- proto: ClothingUniformJumpsuitParamedic - entities: - - uid: 6492 - components: - - pos: -6.500409,-42.323048 - parent: 1668 - type: Transform -- proto: ClothingUniformJumpsuitSec - entities: - - uid: 6493 - components: - - pos: 5.5288286,-42.276173 - parent: 1668 - type: Transform -- proto: ComfyChair - entities: - - uid: 502 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,12.5 - parent: 1668 - type: Transform - - uid: 2194 - components: - - pos: -0.5,24.5 - parent: 1668 - type: Transform - - uid: 2421 - components: - - pos: 28.5,21.5 - parent: 1668 - type: Transform - - uid: 2447 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,9.5 - parent: 1668 - type: Transform - - uid: 2450 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,14.5 - parent: 1668 - type: Transform - - uid: 2492 - components: - - pos: 20.5,21.5 - parent: 1668 - type: Transform - - uid: 2493 - components: - - rot: 3.141592653589793 rad - pos: 20.5,19.5 - parent: 1668 - type: Transform - - uid: 2494 - components: - - rot: 3.141592653589793 rad - pos: 19.5,19.5 - parent: 1668 - type: Transform - - uid: 3171 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,13.5 - parent: 1668 - type: Transform - - uid: 3611 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,11.5 - parent: 1668 - type: Transform - - uid: 3612 - components: - - rot: 3.141592653589793 rad - pos: -15.5,11.5 - parent: 1668 - type: Transform - - uid: 3613 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,10.5 - parent: 1668 - type: Transform - - uid: 3614 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,11.5 - parent: 1668 - type: Transform - - uid: 3615 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,11.5 - parent: 1668 - type: Transform - - uid: 3616 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,10.5 - parent: 1668 - type: Transform - - uid: 3617 - components: - - pos: -24.5,5.5 - parent: 1668 - type: Transform - - uid: 3618 - components: - - pos: -23.5,5.5 - parent: 1668 - type: Transform - - uid: 3619 - components: - - rot: 3.141592653589793 rad - pos: -23.5,3.5 - parent: 1668 - type: Transform - - uid: 3620 - components: - - rot: 3.141592653589793 rad - pos: -24.5,3.5 - parent: 1668 - type: Transform - - uid: 3718 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,12.5 - parent: 1668 - type: Transform - - uid: 3879 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-6.5 - parent: 1668 - type: Transform - - uid: 4189 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,13.5 - parent: 1668 - type: Transform - - uid: 4437 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-26.5 - parent: 1668 - type: Transform - - uid: 4441 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-29.5 - parent: 1668 - type: Transform - - uid: 4442 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-29.5 - parent: 1668 - type: Transform - - uid: 4443 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-25.5 - parent: 1668 - type: Transform - - uid: 4444 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-26.5 - parent: 1668 - type: Transform - - uid: 4445 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-25.5 - parent: 1668 - type: Transform - - uid: 4446 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-26.5 - parent: 1668 - type: Transform - - uid: 4447 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-25.5 - parent: 1668 - type: Transform - - uid: 4448 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-26.5 - parent: 1668 - type: Transform - - uid: 4449 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-25.5 - parent: 1668 - type: Transform - - uid: 4450 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-28.5 - parent: 1668 - type: Transform - - uid: 4451 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-28.5 - parent: 1668 - type: Transform - - uid: 4453 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-29.5 - parent: 1668 - type: Transform - - uid: 4458 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-28.5 - parent: 1668 - type: Transform - - uid: 4470 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-28.5 - parent: 1668 - type: Transform - - uid: 4472 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-29.5 - parent: 1668 - type: Transform - - uid: 5422 - components: - - pos: 17.5,-29.5 - parent: 1668 - type: Transform - - uid: 6614 - components: - - pos: 18.5,15.5 - parent: 1668 - type: Transform - - uid: 6616 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,14.5 - parent: 1668 - type: Transform -- proto: ComputerAlert - entities: - - uid: 655 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-2.5 - parent: 1668 - type: Transform - - uid: 4973 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-20.5 - parent: 1668 - type: Transform - - uid: 5338 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-16.5 - parent: 1668 - type: Transform -- proto: computerBodyScanner - entities: - - uid: 611 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-6.5 - parent: 1668 - type: Transform -- proto: ComputerCargoBounty - entities: - - uid: 6923 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,23.5 - parent: 1668 - type: Transform -- proto: ComputerCargoOrders - entities: - - uid: 1624 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,11.5 - parent: 1668 - type: Transform - - uid: 1650 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,16.5 - parent: 1668 - type: Transform - - uid: 1653 - components: - - rot: 3.141592653589793 rad - pos: -13.5,14.5 - parent: 1668 - type: Transform -- proto: ComputerCargoShuttle - entities: - - uid: 1625 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,12.5 - parent: 1668 - type: Transform - - uid: 1651 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,15.5 - parent: 1668 - type: Transform - - uid: 1652 - components: - - rot: 3.141592653589793 rad - pos: -12.5,14.5 - parent: 1668 - type: Transform - - uid: 3818 - components: - - pos: -13.5,17.5 - parent: 1668 - type: Transform -- proto: ComputerCloningConsole - entities: - - uid: 575 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-13.5 - parent: 1668 - type: Transform - - linkedPorts: - 722: - - CloningPodSender: CloningPodReceiver - type: DeviceLinkSource -- proto: ComputerComms - entities: - - uid: 652 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 1668 - type: Transform - - uid: 3447 - components: - - pos: -19.5,12.5 - parent: 1668 - type: Transform - - uid: 3629 - components: - - pos: -18.5,6.5 - parent: 1668 - type: Transform - - uid: 3630 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,11.5 - parent: 1668 - type: Transform - - uid: 3837 - components: - - rot: 3.141592653589793 rad - pos: -25.5,-7.5 - parent: 1668 - type: Transform -- proto: ComputerCrewMonitoring - entities: - - uid: 593 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,3.5 - parent: 1668 - type: Transform - - uid: 608 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-4.5 - parent: 1668 - type: Transform - - uid: 656 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-1.5 - parent: 1668 - type: Transform -- proto: ComputerCriminalRecords - entities: - - uid: 498 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-8.5 - parent: 1668 - type: Transform - - uid: 590 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,3.5 - parent: 1668 - type: Transform - - uid: 591 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,4.5 - parent: 1668 - type: Transform - - uid: 653 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-2.5 - parent: 1668 - type: Transform - - uid: 813 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-13.5 - parent: 1668 - type: Transform - - uid: 2426 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,17.5 - parent: 1668 - type: Transform - - uid: 3258 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,22.5 - parent: 1668 - type: Transform -- proto: ComputerId - entities: - - uid: 589 - components: - - rot: 3.141592653589793 rad - pos: 13.5,3.5 - parent: 1668 - type: Transform - - uid: 651 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 1668 - type: Transform - - uid: 3448 - components: - - pos: -18.5,12.5 - parent: 1668 - type: Transform - - uid: 3907 - components: - - pos: -25.5,-5.5 - parent: 1668 - type: Transform -- proto: ComputerMedicalRecords - entities: - - uid: 657 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-0.5 - parent: 1668 - type: Transform -- proto: ComputerPalletConsole - entities: - - uid: 6930 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,27.5 - parent: 1668 - type: Transform -- proto: ComputerPowerMonitoring - entities: - - uid: 3256 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,18.5 - parent: 1668 - type: Transform - - uid: 3573 - components: - - rot: 3.141592653589793 rad - pos: -15.5,4.5 - parent: 1668 - type: Transform - - uid: 4971 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-21.5 - parent: 1668 - type: Transform -- proto: ComputerShuttleCargo - entities: - - uid: 3719 - components: - - pos: -12.5,17.5 - parent: 1668 - type: Transform -- proto: ComputerStationRecords - entities: - - uid: 3720 - components: - - pos: 3.5,-15.5 - parent: 1668 - type: Transform -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 499 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-9.5 - parent: 1668 - type: Transform - - uid: 592 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,4.5 - parent: 1668 - type: Transform - - uid: 654 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-2.5 - parent: 1668 - type: Transform - - uid: 814 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-13.5 - parent: 1668 - type: Transform - - uid: 2745 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,18.5 - parent: 1668 - type: Transform -- proto: ComputerTelevision - entities: - - uid: 3715 - components: - - pos: -14.5,12.5 - parent: 1668 - type: Transform -- proto: ConveyorBelt - entities: - - uid: 1576 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,24.5 - parent: 1668 - type: Transform - - links: - - 1588 - type: DeviceLinkSink - - uid: 1577 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,24.5 - parent: 1668 - type: Transform - - links: - - 1588 - type: DeviceLinkSink - - uid: 1578 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,24.5 - parent: 1668 - type: Transform - - links: - - 1588 - type: DeviceLinkSink - - uid: 1579 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,24.5 - parent: 1668 - type: Transform - - links: - - 1588 - type: DeviceLinkSink - - uid: 1580 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,24.5 - parent: 1668 - type: Transform - - links: - - 1588 - type: DeviceLinkSink - - uid: 1581 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,24.5 - parent: 1668 - type: Transform - - links: - - 1588 - type: DeviceLinkSink - - uid: 1582 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,28.5 - parent: 1668 - type: Transform - - links: - - 1589 - type: DeviceLinkSink - - uid: 1583 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,28.5 - parent: 1668 - type: Transform - - links: - - 1589 - type: DeviceLinkSink - - uid: 1584 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,28.5 - parent: 1668 - type: Transform - - links: - - 1589 - type: DeviceLinkSink - - uid: 1585 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,28.5 - parent: 1668 - type: Transform - - links: - - 1589 - type: DeviceLinkSink - - uid: 1586 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,28.5 - parent: 1668 - type: Transform - - links: - - 1589 - type: DeviceLinkSink - - uid: 1587 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,28.5 - parent: 1668 - type: Transform - - links: - - 1589 - type: DeviceLinkSink - - uid: 5902 - components: - - pos: -19.5,-33.5 - parent: 1668 - type: Transform - - links: - - 5906 - type: DeviceLinkSink - - uid: 5903 - components: - - pos: -19.5,-32.5 - parent: 1668 - type: Transform - - links: - - 5906 - type: DeviceLinkSink - - uid: 5904 - components: - - pos: -19.5,-31.5 - parent: 1668 - type: Transform - - links: - - 5906 - type: DeviceLinkSink -- proto: CrateArmoryLaser - entities: - - uid: 6533 - components: - - pos: -7.5,22.5 - parent: 1668 - type: Transform -- proto: CrateArmoryShotgun - entities: - - uid: 6532 - components: - - pos: -9.5,24.5 - parent: 1668 - type: Transform -- proto: CrateArmorySMG - entities: - - uid: 6531 - components: - - pos: -6.5,26.5 - parent: 1668 - type: Transform -- proto: CrateEmergencyRadiation - entities: - - uid: 5379 - components: - - pos: 23.5,-13.5 - parent: 1668 - type: Transform -- proto: CrateEngineeringCableBulk - entities: - - uid: 5328 - components: - - pos: 30.5,-15.5 - parent: 1668 - type: Transform -- proto: CrateEngineeringCableLV - entities: - - uid: 5380 - components: - - pos: 19.5,-13.5 - parent: 1668 - type: Transform -- proto: CrateEngineeringCableMV - entities: - - uid: 5381 - components: - - pos: 16.5,-13.5 - parent: 1668 - type: Transform -- proto: CrateFoodPizza - entities: - - uid: 6528 - components: - - pos: -8.5,22.5 - parent: 1668 - type: Transform -- proto: CrateFunPlushie - entities: - - uid: 6530 - components: - - pos: -8.5,28.5 - parent: 1668 - type: Transform -- proto: CrateHydroponicsSeedsExotic - entities: - - uid: 6527 - components: - - pos: -5.5,17.5 - parent: 1668 - type: Transform -- proto: CrateMedicalSurgery - entities: - - uid: 629 - components: - - pos: 10.5,-4.5 - parent: 1668 - type: Transform -- proto: CrateMousetrapBoxes - entities: - - uid: 6529 - components: - - pos: -7.5,26.5 - parent: 1668 - type: Transform -- proto: CrowbarRed - entities: - - uid: 515 - components: - - pos: 20.552847,-10.547255 - parent: 1668 - type: Transform - - uid: 1451 - components: - - pos: 14.506881,6.5434804 - parent: 1668 - type: Transform - - uid: 2225 - components: - - pos: -11.468896,17.467602 - parent: 1668 - type: Transform - - uid: 2467 - components: - - pos: 22.533863,23.410753 - parent: 1668 - type: Transform - - uid: 2870 - components: - - pos: 4.569995,19.321579 - parent: 1668 - type: Transform - - uid: 3899 - components: - - pos: -12.531932,-6.3835163 - parent: 1668 - type: Transform - - uid: 5347 - components: - - pos: 21.478167,-17.501467 - parent: 1668 - type: Transform -- proto: CryoPod - entities: - - uid: 6642 - components: - - pos: 11.5,-4.5 - parent: 1668 - type: Transform -- proto: DeathsquadPDA - entities: - - uid: 298 - components: - - pos: 2.579019,31.366188 - parent: 1668 - type: Transform - - uid: 579 - components: - - pos: 16.399555,31.459938 - parent: 1668 - type: Transform - - uid: 820 - components: - - pos: 16.587055,31.366188 - parent: 1668 - type: Transform - - uid: 834 - components: - - pos: 2.407144,31.491188 - parent: 1668 - type: Transform -- proto: DefibrillatorCabinetFilled - entities: - - uid: 2914 - components: - - pos: 10.5,2.5 - parent: 1668 - type: Transform - - uid: 3123 - components: - - pos: 19.5,6.5 - parent: 1668 - type: Transform - - uid: 3133 - components: - - pos: 11.5,-17.5 - parent: 1668 - type: Transform - - uid: 3139 - components: - - pos: 0.5,-3.5 - parent: 1668 - type: Transform - - uid: 6644 - components: - - pos: 9.5,-3.5 - parent: 1668 - type: Transform -- proto: DeployableBarrier - entities: - - uid: 3144 - components: - - anchored: False - pos: 6.5,29.5 - parent: 1668 - type: Transform - - uid: 3145 - components: - - anchored: False - pos: 5.5,29.5 - parent: 1668 - type: Transform - - uid: 3146 - components: - - anchored: False - pos: 12.5,29.5 - parent: 1668 - type: Transform - - uid: 3147 - components: - - anchored: False - pos: 13.5,29.5 - parent: 1668 - type: Transform -- proto: DiceBag - entities: - - uid: 3763 - components: - - pos: -24.498522,4.631134 - parent: 1668 - type: Transform -- proto: DisposalBend - entities: - - uid: 2059 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,14.5 - parent: 1668 - type: Transform - - uid: 2073 - components: - - rot: 3.141592653589793 rad - pos: -10.5,10.5 - parent: 1668 - type: Transform - - uid: 2074 - components: - - pos: -5.5,10.5 - parent: 1668 - type: Transform - - uid: 2076 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,0.5 - parent: 1668 - type: Transform - - uid: 2086 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-4.5 - parent: 1668 - type: Transform - - uid: 2091 - components: - - pos: -0.5,-4.5 - parent: 1668 - type: Transform - - uid: 2093 - components: - - pos: 31.5,-5.5 - parent: 1668 - type: Transform - - uid: 2117 - components: - - pos: 20.5,-1.5 - parent: 1668 - type: Transform - - uid: 2118 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-5.5 - parent: 1668 - type: Transform - - uid: 2125 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-1.5 - parent: 1668 - type: Transform - - uid: 2129 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-5.5 - parent: 1668 - type: Transform - - uid: 2179 - components: - - pos: -0.5,8.5 - parent: 1668 - type: Transform - - uid: 2180 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,3.5 - parent: 1668 - type: Transform - - uid: 3639 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,2.5 - parent: 1668 - type: Transform - - uid: 3852 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-0.5 - parent: 1668 - type: Transform - - uid: 4649 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-32.5 - parent: 1668 - type: Transform - - uid: 4650 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-33.5 - parent: 1668 - type: Transform - - uid: 4925 - components: - - pos: -11.5,-22.5 - parent: 1668 - type: Transform - - uid: 4949 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-18.5 - parent: 1668 - type: Transform - - uid: 4951 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-16.5 - parent: 1668 - type: Transform - - uid: 4952 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-18.5 - parent: 1668 - type: Transform - - uid: 5897 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-32.5 - parent: 1668 - type: Transform -- proto: DisposalJunction - entities: - - uid: 2082 - components: - - pos: -5.5,-0.5 - parent: 1668 - type: Transform - - uid: 4948 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-18.5 - parent: 1668 - type: Transform -- proto: DisposalJunctionFlipped - entities: - - uid: 2080 - components: - - pos: -5.5,3.5 - parent: 1668 - type: Transform - - uid: 2081 - components: - - pos: -5.5,0.5 - parent: 1668 - type: Transform - - uid: 2120 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-1.5 - parent: 1668 - type: Transform - - uid: 2134 - components: - - pos: -0.5,-5.5 - parent: 1668 - type: Transform - - uid: 3640 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-0.5 - parent: 1668 - type: Transform - - uid: 4927 - components: - - pos: -13.5,-22.5 - parent: 1668 - type: Transform -- proto: DisposalPipe - entities: - - uid: 2060 - components: - - pos: -10.5,13.5 - parent: 1668 - type: Transform - - uid: 2061 - components: - - pos: -10.5,12.5 - parent: 1668 - type: Transform - - uid: 2062 - components: - - pos: -10.5,11.5 - parent: 1668 - type: Transform - - uid: 2063 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,10.5 - parent: 1668 - type: Transform - - uid: 2064 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,10.5 - parent: 1668 - type: Transform - - uid: 2065 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,10.5 - parent: 1668 - type: Transform - - uid: 2066 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,10.5 - parent: 1668 - type: Transform - - uid: 2067 - components: - - rot: 3.141592653589793 rad - pos: -5.5,9.5 - parent: 1668 - type: Transform - - uid: 2068 - components: - - rot: 3.141592653589793 rad - pos: -5.5,8.5 - parent: 1668 - type: Transform - - uid: 2069 - components: - - rot: 3.141592653589793 rad - pos: -5.5,7.5 - parent: 1668 - type: Transform - - uid: 2070 - components: - - rot: 3.141592653589793 rad - pos: -5.5,6.5 - parent: 1668 - type: Transform - - uid: 2071 - components: - - rot: 3.141592653589793 rad - pos: -5.5,5.5 - parent: 1668 - type: Transform - - uid: 2072 - components: - - rot: 3.141592653589793 rad - pos: -5.5,4.5 - parent: 1668 - type: Transform - - uid: 2077 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,0.5 - parent: 1668 - type: Transform - - uid: 2078 - components: - - pos: -5.5,1.5 - parent: 1668 - type: Transform - - uid: 2079 - components: - - pos: -5.5,2.5 - parent: 1668 - type: Transform - - uid: 2083 - components: - - pos: -5.5,-1.5 - parent: 1668 - type: Transform - - uid: 2084 - components: - - pos: -5.5,-2.5 - parent: 1668 - type: Transform - - uid: 2085 - components: - - pos: -5.5,-3.5 - parent: 1668 - type: Transform - - uid: 2087 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-4.5 - parent: 1668 - type: Transform - - uid: 2088 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 1668 - type: Transform - - uid: 2089 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 1668 - type: Transform - - uid: 2090 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 1668 - type: Transform - - uid: 2094 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-5.5 - parent: 1668 - type: Transform - - uid: 2095 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-5.5 - parent: 1668 - type: Transform - - uid: 2096 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-5.5 - parent: 1668 - type: Transform - - uid: 2097 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-5.5 - parent: 1668 - type: Transform - - uid: 2098 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-5.5 - parent: 1668 - type: Transform - - uid: 2099 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-5.5 - parent: 1668 - type: Transform - - uid: 2100 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-5.5 - parent: 1668 - type: Transform - - uid: 2101 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-5.5 - parent: 1668 - type: Transform - - uid: 2102 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-5.5 - parent: 1668 - type: Transform - - uid: 2103 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-5.5 - parent: 1668 - type: Transform - - uid: 2104 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-4.5 - parent: 1668 - type: Transform - - uid: 2105 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-3.5 - parent: 1668 - type: Transform - - uid: 2106 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-2.5 - parent: 1668 - type: Transform - - uid: 2107 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-1.5 - parent: 1668 - type: Transform - - uid: 2108 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-1.5 - parent: 1668 - type: Transform - - uid: 2109 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-1.5 - parent: 1668 - type: Transform - - uid: 2110 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-1.5 - parent: 1668 - type: Transform - - uid: 2111 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-1.5 - parent: 1668 - type: Transform - - uid: 2112 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-1.5 - parent: 1668 - type: Transform - - uid: 2113 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-1.5 - parent: 1668 - type: Transform - - uid: 2114 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-1.5 - parent: 1668 - type: Transform - - uid: 2115 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-1.5 - parent: 1668 - type: Transform - - uid: 2116 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-1.5 - parent: 1668 - type: Transform - - uid: 2121 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-1.5 - parent: 1668 - type: Transform - - uid: 2122 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 1668 - type: Transform - - uid: 2123 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 - parent: 1668 - type: Transform - - uid: 2124 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 1668 - type: Transform - - uid: 2126 - components: - - pos: 4.5,-2.5 - parent: 1668 - type: Transform - - uid: 2127 - components: - - pos: 4.5,-3.5 - parent: 1668 - type: Transform - - uid: 2128 - components: - - pos: 4.5,-4.5 - parent: 1668 - type: Transform - - uid: 2130 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-5.5 - parent: 1668 - type: Transform - - uid: 2131 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-5.5 - parent: 1668 - type: Transform - - uid: 2132 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 1668 - type: Transform - - uid: 2133 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 1668 - type: Transform - - uid: 2135 - components: - - pos: -0.5,-6.5 - parent: 1668 - type: Transform - - uid: 2136 - components: - - pos: -0.5,-7.5 - parent: 1668 - type: Transform - - uid: 2137 - components: - - pos: -0.5,-8.5 - parent: 1668 - type: Transform - - uid: 2138 - components: - - pos: -0.5,-9.5 - parent: 1668 - type: Transform - - uid: 2139 - components: - - pos: -0.5,-10.5 - parent: 1668 - type: Transform - - uid: 2140 - components: - - pos: -0.5,-11.5 - parent: 1668 - type: Transform - - uid: 2141 - components: - - pos: -0.5,-12.5 - parent: 1668 - type: Transform - - uid: 2181 - components: - - rot: 3.141592653589793 rad - pos: -0.5,4.5 - parent: 1668 - type: Transform - - uid: 2182 - components: - - rot: 3.141592653589793 rad - pos: -0.5,5.5 - parent: 1668 - type: Transform - - uid: 2183 - components: - - rot: 3.141592653589793 rad - pos: -0.5,6.5 - parent: 1668 - type: Transform - - uid: 2184 - components: - - rot: 3.141592653589793 rad - pos: -0.5,7.5 - parent: 1668 - type: Transform - - uid: 2185 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,8.5 - parent: 1668 - type: Transform - - uid: 2186 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,8.5 - parent: 1668 - type: Transform - - uid: 2187 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,3.5 - parent: 1668 - type: Transform - - uid: 2188 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 1668 - type: Transform - - uid: 2189 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,3.5 - parent: 1668 - type: Transform - - uid: 2190 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,3.5 - parent: 1668 - type: Transform - - uid: 3641 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,2.5 - parent: 1668 - type: Transform - - uid: 3642 - components: - - pos: -21.5,1.5 - parent: 1668 - type: Transform - - uid: 3643 - components: - - pos: -21.5,0.5 - parent: 1668 - type: Transform - - uid: 3644 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-0.5 - parent: 1668 - type: Transform - - uid: 3645 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-0.5 - parent: 1668 - type: Transform - - uid: 3646 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-0.5 - parent: 1668 - type: Transform - - uid: 3647 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 1668 - type: Transform - - uid: 3648 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-0.5 - parent: 1668 - type: Transform - - uid: 3649 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-0.5 - parent: 1668 - type: Transform - - uid: 3650 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-0.5 - parent: 1668 - type: Transform - - uid: 3651 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-0.5 - parent: 1668 - type: Transform - - uid: 3652 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-0.5 - parent: 1668 - type: Transform - - uid: 3653 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 1668 - type: Transform - - uid: 3654 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-0.5 - parent: 1668 - type: Transform - - uid: 3655 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 1668 - type: Transform - - uid: 3656 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-0.5 - parent: 1668 - type: Transform - - uid: 3657 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 1668 - type: Transform - - uid: 3658 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-0.5 - parent: 1668 - type: Transform - - uid: 3844 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-8.5 - parent: 1668 - type: Transform - - uid: 3845 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-7.5 - parent: 1668 - type: Transform - - uid: 3846 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-6.5 - parent: 1668 - type: Transform - - uid: 3847 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-5.5 - parent: 1668 - type: Transform - - uid: 3848 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-4.5 - parent: 1668 - type: Transform - - uid: 3849 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-3.5 - parent: 1668 - type: Transform - - uid: 3850 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-2.5 - parent: 1668 - type: Transform - - uid: 3851 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-1.5 - parent: 1668 - type: Transform - - uid: 4926 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-22.5 - parent: 1668 - type: Transform - - uid: 4928 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-21.5 - parent: 1668 - type: Transform - - uid: 4929 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-20.5 - parent: 1668 - type: Transform - - uid: 4930 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-19.5 - parent: 1668 - type: Transform - - uid: 4931 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-18.5 - parent: 1668 - type: Transform - - uid: 4932 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-18.5 - parent: 1668 - type: Transform - - uid: 4933 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-18.5 - parent: 1668 - type: Transform - - uid: 4934 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-18.5 - parent: 1668 - type: Transform - - uid: 4935 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-18.5 - parent: 1668 - type: Transform - - uid: 4936 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-18.5 - parent: 1668 - type: Transform - - uid: 4937 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-18.5 - parent: 1668 - type: Transform - - uid: 4938 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-18.5 - parent: 1668 - type: Transform - - uid: 4939 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-18.5 - parent: 1668 - type: Transform - - uid: 4940 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-18.5 - parent: 1668 - type: Transform - - uid: 4941 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-18.5 - parent: 1668 - type: Transform - - uid: 4942 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-18.5 - parent: 1668 - type: Transform - - uid: 4943 - components: - - pos: -0.5,-17.5 - parent: 1668 - type: Transform - - uid: 4944 - components: - - pos: -0.5,-16.5 - parent: 1668 - type: Transform - - uid: 4945 - components: - - pos: -0.5,-15.5 - parent: 1668 - type: Transform - - uid: 4946 - components: - - pos: -0.5,-14.5 - parent: 1668 - type: Transform - - uid: 4947 - components: - - pos: -0.5,-13.5 - parent: 1668 - type: Transform - - uid: 4953 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-17.5 - parent: 1668 - type: Transform - - uid: 4954 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-18.5 - parent: 1668 - type: Transform - - uid: 4955 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-18.5 - parent: 1668 - type: Transform - - uid: 4956 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-18.5 - parent: 1668 - type: Transform - - uid: 4957 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-18.5 - parent: 1668 - type: Transform - - uid: 4958 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-18.5 - parent: 1668 - type: Transform - - uid: 4959 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-18.5 - parent: 1668 - type: Transform - - uid: 4960 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-18.5 - parent: 1668 - type: Transform - - uid: 4961 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-18.5 - parent: 1668 - type: Transform - - uid: 4962 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-18.5 - parent: 1668 - type: Transform - - uid: 4963 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-18.5 - parent: 1668 - type: Transform - - uid: 4964 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-18.5 - parent: 1668 - type: Transform - - uid: 4965 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-18.5 - parent: 1668 - type: Transform - - uid: 5785 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-32.5 - parent: 1668 - type: Transform - - uid: 5888 - components: - - pos: -13.5,-23.5 - parent: 1668 - type: Transform - - uid: 5889 - components: - - pos: -13.5,-24.5 - parent: 1668 - type: Transform - - uid: 5890 - components: - - pos: -13.5,-25.5 - parent: 1668 - type: Transform - - uid: 5891 - components: - - pos: -13.5,-26.5 - parent: 1668 - type: Transform - - uid: 5892 - components: - - pos: -13.5,-27.5 - parent: 1668 - type: Transform - - uid: 5893 - components: - - pos: -13.5,-28.5 - parent: 1668 - type: Transform - - uid: 5894 - components: - - pos: -13.5,-29.5 - parent: 1668 - type: Transform - - uid: 5895 - components: - - pos: -13.5,-30.5 - parent: 1668 - type: Transform - - uid: 5896 - components: - - pos: -13.5,-31.5 - parent: 1668 - type: Transform - - uid: 5898 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-32.5 - parent: 1668 - type: Transform - - uid: 5899 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-33.5 - parent: 1668 - type: Transform - - uid: 5900 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-33.5 - parent: 1668 - type: Transform -- proto: DisposalTrunk - entities: - - uid: 2058 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,14.5 - parent: 1668 - type: Transform - - uid: 2075 - components: - - pos: -3.5,1.5 - parent: 1668 - type: Transform - - uid: 2092 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-6.5 - parent: 1668 - type: Transform - - uid: 2119 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-2.5 - parent: 1668 - type: Transform - - uid: 2178 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,8.5 - parent: 1668 - type: Transform - - uid: 3638 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,2.5 - parent: 1668 - type: Transform - - uid: 3843 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-9.5 - parent: 1668 - type: Transform - - uid: 4924 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-23.5 - parent: 1668 - type: Transform - - uid: 4950 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-16.5 - parent: 1668 - type: Transform - - uid: 5901 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-33.5 - parent: 1668 - type: Transform -- proto: DisposalUnit - entities: - - uid: 531 - components: - - pos: 31.5,-6.5 - parent: 1668 - type: Transform - - uid: 630 - components: - - pos: 9.5,-2.5 - parent: 1668 - type: Transform - - uid: 836 - components: - - pos: 13.5,-16.5 - parent: 1668 - type: Transform - - uid: 1407 - components: - - pos: -3.5,1.5 - parent: 1668 - type: Transform - - uid: 1663 - components: - - pos: -9.5,14.5 - parent: 1668 - type: Transform - - uid: 2177 - components: - - pos: -3.5,8.5 - parent: 1668 - type: Transform - - uid: 3462 - components: - - pos: -19.5,2.5 - parent: 1668 - type: Transform - - uid: 3842 - components: - - pos: -22.5,-9.5 - parent: 1668 - type: Transform - - uid: 4923 - components: - - pos: -11.5,-23.5 - parent: 1668 - type: Transform -- proto: Dresser - entities: - - uid: 3435 - components: - - pos: -14.5,8.5 - parent: 1668 - type: Transform -- proto: DrinkFlask - entities: - - uid: 3773 - components: - - pos: -11.533806,6.6228595 - parent: 1668 - type: Transform -- proto: DrinkGoldenCup - entities: - - uid: 3769 - components: - - pos: -26.535545,11.773157 - parent: 1668 - type: Transform - - uid: 4375 - components: - - pos: -3.5,-22.5 - parent: 1668 - type: Transform - - uid: 4376 - components: - - pos: 2.5,-22.5 - parent: 1668 - type: Transform -- proto: DrinkHotCoffee - entities: - - uid: 5464 - components: - - pos: 16.572073,-29.470444 - parent: 1668 - type: Transform -- proto: DrinkMugHeart - entities: - - uid: 1399 - components: - - pos: 2.5713959,-11.619784 - parent: 1668 - type: Transform -- proto: DrinkShaker - entities: - - uid: 6621 - components: - - pos: 10.4809675,-21.408005 - parent: 1668 - type: Transform -- proto: DrinkShotGlass - entities: - - uid: 3889 - components: - - pos: -24.572554,-3.3475308 - parent: 1668 - type: Transform - - uid: 3890 - components: - - pos: -24.400679,-3.4725308 - parent: 1668 - type: Transform -- proto: DrinkWhiskeyBottleFull - entities: - - uid: 3875 - components: - - pos: -27.52259,-4.144406 - parent: 1668 - type: Transform -- proto: EmergencyLight - entities: - - uid: 3155 - components: - - pos: 9.5,25.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3156 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,29.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3157 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,29.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3158 - components: - - pos: 7.5,15.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3159 - components: - - pos: 24.5,13.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3160 - components: - - pos: 29.5,23.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3161 - components: - - pos: 23.5,5.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3162 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-6.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3163 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-2.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3164 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-5.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3165 - components: - - pos: -6.5,4.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3166 - components: - - pos: -2.5,-9.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3167 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,26.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3168 - components: - - pos: -2.5,16.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3169 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,31.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3170 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,31.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- proto: EpinephrineChemistryBottle - entities: - - uid: 1462 - components: - - pos: 13.808971,-12.626007 - parent: 1668 - type: Transform - - uid: 1463 - components: - - pos: 13.818524,-12.297882 - parent: 1668 - type: Transform - - uid: 6550 - components: - - pos: -6.2556453,-39.464973 - parent: 1668 - type: Transform - - uid: 6551 - components: - - pos: -6.2087703,-39.339973 - parent: 1668 - type: Transform - - uid: 6552 - components: - - pos: -6.1462703,-39.246223 - parent: 1668 - type: Transform -- proto: ExtinguisherCabinetFilled - entities: - - uid: 628 - components: - - pos: 16.5,-5.5 - parent: 1668 - type: Transform - - uid: 2237 - components: - - pos: 8.5,6.5 - parent: 1668 - type: Transform - - uid: 3908 - components: - - pos: -16.5,-3.5 - parent: 1668 - type: Transform - - uid: 3910 - components: - - pos: -9.5,-5.5 - parent: 1668 - type: Transform - - uid: 3911 - components: - - pos: -13.5,10.5 - parent: 1668 - type: Transform - - uid: 3912 - components: - - pos: -4.5,16.5 - parent: 1668 - type: Transform - - uid: 3913 - components: - - pos: 15.5,15.5 - parent: 1668 - type: Transform - - uid: 3914 - components: - - pos: 21.5,17.5 - parent: 1668 - type: Transform - - uid: 3915 - components: - - pos: 13.5,18.5 - parent: 1668 - type: Transform - - uid: 3916 - components: - - pos: 18.5,2.5 - parent: 1668 - type: Transform - - uid: 3917 - components: - - pos: 18.5,-3.5 - parent: 1668 - type: Transform - - uid: 3918 - components: - - pos: 2.5,-9.5 - parent: 1668 - type: Transform - - uid: 4150 - components: - - pos: -28.5,1.5 - parent: 1668 - type: Transform -- proto: FaxMachineCentcom - entities: - - uid: 76 - components: - - pos: -2.5,-2.5 - parent: 1668 - type: Transform - - name: CentComm - type: FaxMachine -- proto: filingCabinet - entities: - - uid: 594 - components: - - pos: 10.5,6.5 - parent: 1668 - type: Transform - - uid: 595 - components: - - pos: 11.5,6.5 - parent: 1668 - type: Transform - - uid: 650 - components: - - pos: 1.5,1.5 - parent: 1668 - type: Transform - - uid: 816 - components: - - pos: -6.5,-9.5 - parent: 1668 - type: Transform - - uid: 3840 - components: - - pos: -24.5,-9.5 - parent: 1668 - type: Transform - - uid: 3841 - components: - - pos: -23.5,-9.5 - parent: 1668 - type: Transform -- proto: filingCabinetDrawer - entities: - - uid: 1628 - components: - - pos: -12.5,12.5 - parent: 1668 - type: Transform - - uid: 1660 - components: - - pos: -11.5,14.5 - parent: 1668 - type: Transform -- proto: filingCabinetTall - entities: - - uid: 1626 - components: - - pos: -12.5,8.5 - parent: 1668 - type: Transform - - uid: 1627 - components: - - pos: -11.5,8.5 - parent: 1668 - type: Transform - - uid: 1661 - components: - - pos: -9.5,17.5 - parent: 1668 - type: Transform -- proto: FireAxeCabinetFilled - entities: - - uid: 6647 - components: - - pos: 15.5,-28.5 - parent: 1668 - type: Transform -- proto: FirelockGlass - entities: - - uid: 15 - components: - - pos: 5.5,-3.5 - parent: 1668 - type: Transform - - uid: 16 - components: - - pos: 4.5,-3.5 - parent: 1668 - type: Transform - - uid: 17 - components: - - pos: 3.5,-4.5 - parent: 1668 - type: Transform - - uid: 18 - components: - - pos: 3.5,-5.5 - parent: 1668 - type: Transform - - uid: 19 - components: - - pos: 5.5,2.5 - parent: 1668 - type: Transform - - uid: 20 - components: - - pos: 4.5,2.5 - parent: 1668 - type: Transform - - uid: 21 - components: - - pos: 3.5,4.5 - parent: 1668 - type: Transform - - uid: 22 - components: - - pos: 3.5,3.5 - parent: 1668 - type: Transform - - uid: 23 - components: - - pos: -4.5,4.5 - parent: 1668 - type: Transform - - uid: 24 - components: - - pos: -4.5,3.5 - parent: 1668 - type: Transform - - uid: 25 - components: - - pos: -6.5,2.5 - parent: 1668 - type: Transform - - uid: 26 - components: - - pos: -5.5,2.5 - parent: 1668 - type: Transform - - uid: 27 - components: - - pos: -6.5,-3.5 - parent: 1668 - type: Transform - - uid: 28 - components: - - pos: -5.5,-3.5 - parent: 1668 - type: Transform - - uid: 29 - components: - - pos: -4.5,-4.5 - parent: 1668 - type: Transform - - uid: 125 - components: - - pos: 9.5,16.5 - parent: 1668 - type: Transform - - uid: 131 - components: - - pos: -4.5,-5.5 - parent: 1668 - type: Transform - - uid: 492 - components: - - pos: 25.5,-7.5 - parent: 1668 - type: Transform - - uid: 493 - components: - - pos: 26.5,-7.5 - parent: 1668 - type: Transform - - uid: 495 - components: - - pos: 27.5,-7.5 - parent: 1668 - type: Transform - - uid: 559 - components: - - pos: 12.5,2.5 - parent: 1668 - type: Transform - - uid: 560 - components: - - pos: 14.5,2.5 - parent: 1668 - type: Transform - - uid: 733 - components: - - pos: 2.5,-11.5 - parent: 1668 - type: Transform - - uid: 735 - components: - - pos: 2.5,-12.5 - parent: 1668 - type: Transform - - uid: 772 - components: - - pos: -3.5,-12.5 - parent: 1668 - type: Transform - - uid: 773 - components: - - pos: -3.5,-11.5 - parent: 1668 - type: Transform - - uid: 1619 - components: - - pos: -4.5,9.5 - parent: 1668 - type: Transform - - uid: 1620 - components: - - pos: -4.5,10.5 - parent: 1668 - type: Transform - - uid: 4299 - components: - - pos: 6.5,-24.5 - parent: 1668 - type: Transform - - uid: 4404 - components: - - pos: -8.5,-27.5 - parent: 1668 - type: Transform - - uid: 4405 - components: - - pos: -8.5,-26.5 - parent: 1668 - type: Transform - - uid: 4406 - components: - - pos: -8.5,-25.5 - parent: 1668 - type: Transform - - uid: 4407 - components: - - pos: 7.5,-27.5 - parent: 1668 - type: Transform - - uid: 4408 - components: - - pos: 7.5,-26.5 - parent: 1668 - type: Transform - - uid: 4409 - components: - - pos: 7.5,-25.5 - parent: 1668 - type: Transform - - uid: 4630 - components: - - pos: -13.5,-20.5 - parent: 1668 - type: Transform - - uid: 4631 - components: - - pos: -14.5,-20.5 - parent: 1668 - type: Transform - - uid: 4632 - components: - - pos: 13.5,-20.5 - parent: 1668 - type: Transform - - uid: 4633 - components: - - pos: 12.5,-20.5 - parent: 1668 - type: Transform - - uid: 4754 - components: - - pos: 16.5,-22.5 - parent: 1668 - type: Transform - - uid: 4968 - components: - - pos: 12.5,-29.5 - parent: 1668 - type: Transform - - uid: 4969 - components: - - pos: 13.5,-29.5 - parent: 1668 - type: Transform - - uid: 5045 - components: - - pos: 19.5,-19.5 - parent: 1668 - type: Transform - - uid: 5046 - components: - - pos: 20.5,-19.5 - parent: 1668 - type: Transform - - uid: 5047 - components: - - pos: 21.5,-19.5 - parent: 1668 - type: Transform - - uid: 5222 - components: - - pos: 25.5,-19.5 - parent: 1668 - type: Transform - - uid: 5224 - components: - - pos: 24.5,-19.5 - parent: 1668 - type: Transform - - uid: 5233 - components: - - pos: 26.5,-19.5 - parent: 1668 - type: Transform - - uid: 5254 - components: - - pos: 29.5,-18.5 - parent: 1668 - type: Transform - - uid: 5255 - components: - - pos: 29.5,-17.5 - parent: 1668 - type: Transform - - uid: 5256 - components: - - pos: 29.5,-16.5 - parent: 1668 - type: Transform - - uid: 5876 - components: - - pos: -14.5,-29.5 - parent: 1668 - type: Transform - - uid: 5877 - components: - - pos: -13.5,-29.5 - parent: 1668 - type: Transform - - uid: 6239 - components: - - pos: 3.5,-34.5 - parent: 1668 - type: Transform - - uid: 6244 - components: - - pos: 2.5,-34.5 - parent: 1668 - type: Transform - - uid: 6245 - components: - - pos: 4.5,-34.5 - parent: 1668 - type: Transform - - uid: 6267 - components: - - pos: -5.5,-34.5 - parent: 1668 - type: Transform - - uid: 6268 - components: - - pos: -4.5,-34.5 - parent: 1668 - type: Transform - - uid: 6269 - components: - - pos: -3.5,-34.5 - parent: 1668 - type: Transform -- proto: Fireplace - entities: - - uid: 3393 - components: - - pos: -23.5,12.5 - parent: 1668 - type: Transform -- proto: Flash - entities: - - uid: 1452 - components: - - pos: 10.538131,4.4341054 - parent: 1668 - type: Transform - - uid: 3748 - components: - - pos: -26.453917,8.594473 - parent: 1668 - type: Transform - - uid: 4698 - components: - - pos: 24.48021,-8.554767 - parent: 1668 - type: Transform -- proto: FloorDrain - entities: - - uid: 3421 - components: - - pos: -20.5,15.5 - parent: 1668 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 6622 - components: - - pos: 12.5,-16.5 - parent: 1668 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 6623 - components: - - pos: -16.5,-33.5 - parent: 1668 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 6718 - components: - - pos: -8.5,-22.5 - parent: 1668 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 6876 - components: - - pos: 20.5,-25.5 - parent: 1668 - type: Transform - - fixtures: {} - type: Fixtures -- proto: FoodBoxDonkpocketPizza - entities: - - uid: 2227 - components: - - pos: -14.517971,17.62628 - parent: 1668 - type: Transform - - uid: 3905 - components: - - pos: -13.406932,-7.1178913 - parent: 1668 - type: Transform -- proto: FoodBoxDonut - entities: - - uid: 1400 - components: - - pos: -3.5536041,-11.463534 - parent: 1668 - type: Transform - - uid: 2496 - components: - - pos: 28.583382,10.652384 - parent: 1668 - type: Transform - - uid: 3745 - components: - - pos: -23.474928,11.563223 - parent: 1668 - type: Transform - - uid: 3752 - components: - - pos: -19.463516,4.614471 - parent: 1668 - type: Transform - - uid: 3874 - components: - - pos: -27.444466,-3.3787808 - parent: 1668 - type: Transform - - uid: 3891 - components: - - pos: -22.447554,-6.441281 - parent: 1668 - type: Transform -- proto: FoodCondimentBottleEnzyme - entities: - - uid: 4592 - components: - - pos: -11.611271,-26.1594 - parent: 1668 - type: Transform - - uid: 4593 - components: - - pos: -11.470646,-26.268776 - parent: 1668 - type: Transform -- proto: FoodCondimentPacketPepper - entities: - - uid: 4619 - components: - - pos: 2.4944715,-29.54472 - parent: 1668 - type: Transform -- proto: FoodCondimentPacketSalt - entities: - - uid: 4618 - components: - - pos: 2.4007215,-29.404095 - parent: 1668 - type: Transform -- proto: FoodMeat - entities: - - uid: 5459 - components: - - flags: InContainer - type: MetaData - - parent: 5458 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 5460 - components: - - flags: InContainer - type: MetaData - - parent: 5458 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 5461 - components: - - flags: InContainer - type: MetaData - - parent: 5458 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 5462 - components: - - flags: InContainer - type: MetaData - - parent: 5458 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 5848 - components: - - flags: InContainer - type: MetaData - - parent: 5458 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodPlateSmall - entities: - - uid: 6627 - components: - - pos: 0.5503339,-25.456686 - parent: 1668 - type: Transform - - uid: 6628 - components: - - pos: 0.5503339,-25.394186 - parent: 1668 - type: Transform - - uid: 6629 - components: - - pos: 0.5503339,-25.316061 - parent: 1668 - type: Transform -- proto: FoodSaladColeslaw - entities: - - uid: 6937 - components: - - pos: 19.664907,20.706526 - parent: 1668 - type: Transform -- proto: FoodTartGapple - entities: - - uid: 4380 - components: - - pos: 2.5,-23.5 - parent: 1668 - type: Transform -- proto: ForkPlastic - entities: - - uid: 4200 - components: - - pos: 0.20438054,-25.436565 - parent: 1668 - type: Transform - - uid: 4252 - components: - - pos: 0.20438054,-25.436565 - parent: 1668 - type: Transform - - uid: 5451 - components: - - pos: 0.20438054,-25.436565 - parent: 1668 - type: Transform -- proto: GasFilter - entities: - - uid: 6652 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-5.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- proto: GasMinerNitrogenStation - entities: - - uid: 4715 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-29.5 - parent: 1668 - type: Transform -- proto: GasMinerOxygenStation - entities: - - uid: 4703 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-29.5 - parent: 1668 - type: Transform -- proto: GasMixer - entities: - - uid: 5070 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-30.5 - parent: 1668 - type: Transform -- proto: GasPassiveVent - entities: - - uid: 5399 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-28.5 - parent: 1668 - type: Transform - - uid: 5414 - components: - - anchored: False - rot: -1.5707963267948966 rad - pos: 25.5,-32.5 - parent: 1668 - type: Transform - - canCollide: True - bodyType: Dynamic - type: Physics - - uid: 6141 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-32.5 - parent: 1668 - type: Transform - - uid: 6312 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-28.5 - parent: 1668 - type: Transform -- proto: GasPipeBend - entities: - - uid: 3660 - components: - - pos: -16.5,5.5 - parent: 1668 - type: Transform - - uid: 3670 - components: - - rot: 3.141592653589793 rad - pos: -23.5,5.5 - parent: 1668 - type: Transform - - uid: 3674 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,9.5 - parent: 1668 - type: Transform - - uid: 3675 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,9.5 - parent: 1668 - type: Transform - - uid: 3676 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,11.5 - parent: 1668 - type: Transform - - uid: 3684 - components: - - pos: -15.5,11.5 - parent: 1668 - type: Transform - - uid: 3686 - components: - - rot: 3.141592653589793 rad - pos: -15.5,9.5 - parent: 1668 - type: Transform - - uid: 4712 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-32.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4714 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-31.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 4716 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5067 - components: - - pos: 21.5,-28.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5069 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-28.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5389 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-32.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5503 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5513 - components: - - pos: 13.5,-19.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5519 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-19.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5529 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-19.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5539 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-19.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5540 - components: - - pos: 0.5,-17.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5541 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-17.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5555 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-19.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5560 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-19.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5596 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-4.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5597 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,3.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5598 - components: - - pos: 4.5,3.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5599 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5661 - components: - - pos: -20.5,-1.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5699 - components: - - rot: 3.141592653589793 rad - pos: -10.5,10.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5711 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,27.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5787 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-32.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6308 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-37.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6309 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-37.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6311 - components: - - pos: 21.5,-31.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6656 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-6.5 - parent: 1668 - type: Transform - - uid: 6657 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-6.5 - parent: 1668 - type: Transform - - uid: 6660 - components: - - pos: 12.5,-2.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6663 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-2.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6664 - components: - - pos: 9.5,-1.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6665 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6666 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-5.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6667 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-5.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6678 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-10.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6679 - components: - - pos: 5.5,-10.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6680 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-11.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6681 - components: - - pos: 12.5,-11.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6711 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-29.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6712 - components: - - pos: 15.5,-29.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6713 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-32.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound -- proto: GasPipeFourway - entities: - - uid: 3678 - components: - - pos: -21.5,9.5 - parent: 1668 - type: Transform - - uid: 5492 - components: - - pos: 25.5,-18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5571 - components: - - pos: -0.5,-11.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6310 - components: - - pos: -0.5,-37.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GasPipeStraight - entities: - - uid: 3664 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,5.5 - parent: 1668 - type: Transform - - uid: 3665 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,5.5 - parent: 1668 - type: Transform - - uid: 3666 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,5.5 - parent: 1668 - type: Transform - - uid: 3667 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,5.5 - parent: 1668 - type: Transform - - uid: 3668 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,5.5 - parent: 1668 - type: Transform - - uid: 3669 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,5.5 - parent: 1668 - type: Transform - - uid: 3672 - components: - - rot: 3.141592653589793 rad - pos: -23.5,7.5 - parent: 1668 - type: Transform - - uid: 3673 - components: - - rot: 3.141592653589793 rad - pos: -23.5,8.5 - parent: 1668 - type: Transform - - uid: 3677 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,9.5 - parent: 1668 - type: Transform - - uid: 3679 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,9.5 - parent: 1668 - type: Transform - - uid: 3680 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,9.5 - parent: 1668 - type: Transform - - uid: 3681 - components: - - pos: -18.5,10.5 - parent: 1668 - type: Transform - - uid: 3682 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,11.5 - parent: 1668 - type: Transform - - uid: 3683 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,11.5 - parent: 1668 - type: Transform - - uid: 3685 - components: - - pos: -15.5,10.5 - parent: 1668 - type: Transform - - uid: 3690 - components: - - pos: -21.5,10.5 - parent: 1668 - type: Transform - - uid: 3691 - components: - - pos: -21.5,11.5 - parent: 1668 - type: Transform - - uid: 3692 - components: - - pos: -21.5,12.5 - parent: 1668 - type: Transform - - uid: 3693 - components: - - pos: -21.5,13.5 - parent: 1668 - type: Transform - - uid: 4702 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-32.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4711 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4713 - components: - - rot: 3.141592653589793 rad - pos: 23.5,-29.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5068 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-29.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5387 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-30.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5391 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-31.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5394 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-30.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5401 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-30.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5402 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-30.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5406 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-32.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5418 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-30.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5419 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-30.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5466 - components: - - pos: 13.5,-29.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5467 - components: - - pos: 13.5,-28.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5468 - components: - - pos: 13.5,-27.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5469 - components: - - pos: 13.5,-26.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5471 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-25.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5472 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-25.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5479 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-25.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5480 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-25.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5481 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-25.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5482 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-25.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5483 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-25.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5484 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-25.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5485 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-25.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5486 - components: - - pos: 25.5,-24.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5487 - components: - - pos: 25.5,-23.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5488 - components: - - pos: 25.5,-22.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5489 - components: - - pos: 25.5,-21.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5490 - components: - - pos: 25.5,-20.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5491 - components: - - pos: 25.5,-19.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5493 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5494 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5495 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5496 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5497 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5498 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5499 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5500 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5501 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5502 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5504 - components: - - pos: 20.5,-19.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5508 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-24.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5509 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-23.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5511 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-21.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5512 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-20.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5514 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-19.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5515 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-19.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5516 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-19.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5517 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-19.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5518 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-19.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5522 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5523 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5524 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5525 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5526 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5527 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5531 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5532 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5533 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5534 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5535 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5536 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5545 - components: - - pos: -0.5,-20.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5546 - components: - - pos: -0.5,-21.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5547 - components: - - pos: -0.5,-22.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5548 - components: - - pos: -0.5,-23.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5549 - components: - - pos: -0.5,-24.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5550 - components: - - pos: -0.5,-25.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5552 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-22.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5553 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-22.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5556 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-19.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5557 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-19.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5558 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-19.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5559 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-19.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5561 - components: - - pos: -13.5,-20.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5562 - components: - - pos: -13.5,-21.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5564 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-22.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5567 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-15.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5568 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-14.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5569 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-13.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5570 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5574 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-11.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5575 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-11.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5576 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-11.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5577 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-11.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5578 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-11.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5579 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-11.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5580 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5586 - components: - - pos: -0.5,-10.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5587 - components: - - pos: -0.5,-9.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5588 - components: - - pos: -0.5,-8.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5589 - components: - - pos: -0.5,-7.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5590 - components: - - pos: -0.5,-6.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5591 - components: - - pos: -0.5,-5.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5600 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5601 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5602 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5603 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-4.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5604 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-3.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5605 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-2.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5606 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-1.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5608 - components: - - rot: 3.141592653589793 rad - pos: -5.5,1.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5609 - components: - - rot: 3.141592653589793 rad - pos: -5.5,2.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5610 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,3.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5611 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,3.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5612 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5614 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,3.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5615 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,3.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5616 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,3.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5617 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,3.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5618 - components: - - pos: 4.5,2.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5619 - components: - - pos: 4.5,1.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5620 - components: - - pos: 4.5,0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5621 - components: - - pos: 4.5,-1.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5622 - components: - - pos: 4.5,-2.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5623 - components: - - pos: 4.5,-3.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5624 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-4.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5625 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5626 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5629 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5630 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5631 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5632 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5633 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5634 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5635 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5636 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5637 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5638 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5639 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5640 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5641 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5642 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5644 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5645 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5646 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5647 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5648 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5649 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5650 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5651 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5653 - components: - - pos: -30.5,-1.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5654 - components: - - pos: -30.5,0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5655 - components: - - pos: -30.5,1.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5656 - components: - - pos: -30.5,2.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5657 - components: - - pos: -30.5,3.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5662 - components: - - pos: -20.5,-2.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5668 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5672 - components: - - pos: -0.5,4.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5673 - components: - - pos: -0.5,5.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5674 - components: - - pos: -0.5,6.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5675 - components: - - pos: -0.5,7.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5676 - components: - - pos: -0.5,8.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5677 - components: - - pos: -0.5,9.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5680 - components: - - pos: -0.5,11.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5681 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,10.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5682 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,10.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5683 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,10.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5684 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,10.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5685 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,10.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5686 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5687 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5688 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5689 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5690 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5691 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5692 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5693 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5694 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5695 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5701 - components: - - pos: -10.5,17.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5702 - components: - - pos: -10.5,18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5703 - components: - - pos: -10.5,19.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5704 - components: - - pos: -10.5,20.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5705 - components: - - pos: -10.5,21.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5706 - components: - - pos: -10.5,22.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5708 - components: - - pos: -10.5,24.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5709 - components: - - pos: -10.5,25.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5710 - components: - - pos: -10.5,26.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5715 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,10.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5716 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,10.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5717 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,10.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5718 - components: - - pos: -10.5,11.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5719 - components: - - pos: -10.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5720 - components: - - pos: -10.5,13.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5721 - components: - - pos: -10.5,14.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5722 - components: - - pos: -10.5,15.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5725 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5726 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5727 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5728 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5729 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5730 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5732 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5733 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5734 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5735 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5736 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5737 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5738 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5739 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5740 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5745 - components: - - pos: 11.5,13.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5746 - components: - - pos: 11.5,14.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5747 - components: - - pos: 11.5,15.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5748 - components: - - pos: 11.5,16.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5749 - components: - - pos: 11.5,17.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5750 - components: - - pos: 11.5,18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5751 - components: - - pos: 11.5,19.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5752 - components: - - pos: 11.5,20.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5753 - components: - - pos: 11.5,21.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5754 - components: - - pos: 11.5,22.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5755 - components: - - pos: 11.5,23.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5757 - components: - - pos: 28.5,13.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5758 - components: - - pos: 28.5,14.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5759 - components: - - pos: 28.5,15.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5760 - components: - - pos: 28.5,16.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5761 - components: - - pos: 28.5,17.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5762 - components: - - pos: 28.5,18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5766 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5767 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5768 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5769 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5770 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5771 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5773 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5774 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5775 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5776 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5777 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5778 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5790 - components: - - pos: -13.5,-30.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5791 - components: - - pos: -13.5,-29.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5792 - components: - - pos: -13.5,-28.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5793 - components: - - pos: -13.5,-27.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5794 - components: - - pos: -13.5,-26.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5796 - components: - - pos: -13.5,-24.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5798 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-32.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5799 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-32.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5800 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-32.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5801 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-32.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5802 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-32.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5803 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-32.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5804 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-32.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5816 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-32.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5817 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-32.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5818 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-32.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5819 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-32.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5820 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-32.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5821 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-32.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5822 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-32.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5823 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-32.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5998 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-25.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5999 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-25.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6000 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-25.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6001 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-25.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6002 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-25.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6130 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-32.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6137 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-32.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6138 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-32.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6139 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-32.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6226 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-32.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6315 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-36.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6316 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-35.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6317 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-34.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6318 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-33.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6319 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-37.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6320 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-37.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6321 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-37.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6322 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-37.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6323 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-37.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6324 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-37.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6325 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-37.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6326 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-37.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6327 - components: - - pos: 4.5,-36.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6328 - components: - - pos: 4.5,-35.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6329 - components: - - pos: 4.5,-34.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6330 - components: - - pos: 4.5,-33.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6331 - components: - - pos: -0.5,-38.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6332 - components: - - pos: -0.5,-39.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6333 - components: - - pos: -0.5,-40.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6658 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-4.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6659 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-3.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6661 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-2.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6662 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-2.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6668 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-4.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6669 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-3.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6670 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-2.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6671 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-1.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6672 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6673 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-1.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6674 - components: - - pos: 4.5,-6.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6675 - components: - - pos: 4.5,-7.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6676 - components: - - pos: 4.5,-8.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6677 - components: - - pos: 4.5,-9.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6682 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-11.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6683 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-11.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6684 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-11.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6685 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-11.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6686 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-11.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6687 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-11.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6688 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-12.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6689 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-13.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6690 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-14.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6691 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-15.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6692 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-16.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6693 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-17.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6694 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-18.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6695 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-19.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6696 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-20.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6697 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-21.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6698 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-22.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6699 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-23.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6700 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-24.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6701 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-25.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6702 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-26.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6703 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-27.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6704 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-28.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6710 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-32.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6714 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-31.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6715 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-30.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6716 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-29.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6717 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-29.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- proto: GasPipeTJunction - entities: - - uid: 3671 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,6.5 - parent: 1668 - type: Transform - - uid: 5465 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-30.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5470 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-25.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5473 - components: - - pos: 16.5,-25.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5477 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-25.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5478 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-25.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5510 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-22.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5520 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5528 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5530 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5537 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-18.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5542 - components: - - pos: -0.5,-19.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5543 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-17.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5544 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-16.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5563 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-22.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5572 - components: - - pos: -1.5,-11.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5592 - components: - - pos: -0.5,-4.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5593 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5594 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5595 - components: - - rot: 3.141592653589793 rad - pos: -0.5,3.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5607 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5613 - components: - - rot: 3.141592653589793 rad - pos: -1.5,3.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5627 - components: - - pos: 0.5,-4.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5628 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5643 - components: - - pos: -21.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5652 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5660 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-1.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5665 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5678 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,10.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5679 - components: - - pos: -0.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5698 - components: - - pos: -6.5,10.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5700 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,16.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5707 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,23.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5723 - components: - - rot: 3.141592653589793 rad - pos: 10.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5724 - components: - - rot: 3.141592653589793 rad - pos: 11.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5731 - components: - - rot: 3.141592653589793 rad - pos: 18.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5741 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,12.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5772 - components: - - pos: 12.5,-0.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5786 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-32.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5788 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-31.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5789 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-31.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5795 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-25.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5797 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-23.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5805 - components: - - pos: 4.5,-32.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5815 - components: - - pos: -5.5,-32.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6640 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-5.5 - parent: 1668 - type: Transform - - uid: 6653 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-5.5 - parent: 1668 - type: Transform - - uid: 6654 - components: - - pos: 12.5,-6.5 - parent: 1668 - type: Transform - - uid: 6708 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-32.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6709 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-32.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound -- proto: GasPort - entities: - - uid: 3577 - components: - - rot: 3.141592653589793 rad - pos: -14.5,4.5 - parent: 1668 - type: Transform - - uid: 3659 - components: - - pos: -14.5,6.5 - parent: 1668 - type: Transform - - uid: 3662 - components: - - rot: 3.141592653589793 rad - pos: -16.5,4.5 - parent: 1668 - type: Transform - - uid: 6655 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-7.5 - parent: 1668 - type: Transform - - uid: 6705 - components: - - pos: 16.5,-31.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6706 - components: - - pos: 17.5,-31.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- proto: GasPressurePump - entities: - - uid: 3663 - components: - - rot: 3.141592653589793 rad - pos: -14.5,5.5 - parent: 1668 - type: Transform - - uid: 5395 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-30.5 - parent: 1668 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5400 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-31.5 - parent: 1668 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- proto: GasThermoMachineFreezer - entities: - - uid: 6641 - components: - - pos: 13.5,-4.5 - parent: 1668 - type: Transform -- proto: GasVentPump - entities: - - uid: 3687 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,9.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 3688 - components: - - rot: 3.141592653589793 rad - pos: -21.5,8.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 3689 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,6.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 3694 - components: - - pos: -21.5,14.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5474 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-26.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5475 - components: - - pos: 20.5,-24.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5476 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-25.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5505 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-20.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5506 - components: - - pos: 25.5,-17.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5507 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-18.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5521 - components: - - pos: 7.5,-17.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5538 - components: - - pos: -8.5,-17.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5551 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-26.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5554 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-22.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5565 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-22.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5566 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-16.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5573 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-12.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5581 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-11.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5583 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-11.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5658 - components: - - pos: -30.5,4.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5659 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-2.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5663 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-1.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5664 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-3.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5666 - components: - - pos: -6.5,0.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5667 - components: - - pos: 5.5,0.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5669 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,0.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5670 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-5.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5671 - components: - - pos: -1.5,4.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5696 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,12.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5697 - components: - - rot: 3.141592653589793 rad - pos: -6.5,9.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5712 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,27.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5713 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,23.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5714 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,16.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5742 - components: - - pos: 10.5,13.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5743 - components: - - rot: 3.141592653589793 rad - pos: 28.5,11.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5744 - components: - - pos: 18.5,13.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5756 - components: - - pos: 11.5,24.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5763 - components: - - pos: 28.5,19.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5779 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-1.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5780 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-0.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5806 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-32.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5814 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-32.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5824 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-31.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5825 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-31.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5887 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-23.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6003 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-25.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6227 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-32.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6334 - components: - - pos: -0.5,-36.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6335 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-41.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GasVentScrubber - entities: - - uid: 6140 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-32.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound -- proto: GeneratorBasic15kW - entities: - - uid: 5176 - components: - - pos: 30.5,-21.5 - parent: 1668 - type: Transform - - uid: 5177 - components: - - pos: 30.5,-25.5 - parent: 1668 - type: Transform - - uid: 5178 - components: - - pos: 30.5,-23.5 - parent: 1668 - type: Transform - - uid: 5179 - components: - - pos: 34.5,-25.5 - parent: 1668 - type: Transform - - uid: 5180 - components: - - pos: 34.5,-23.5 - parent: 1668 - type: Transform - - uid: 5181 - components: - - pos: 34.5,-21.5 - parent: 1668 - type: Transform - - uid: 5455 - components: - - pos: 32.5,-24.5 - parent: 1668 - type: Transform - - uid: 5456 - components: - - pos: 32.5,-22.5 - parent: 1668 - type: Transform - - uid: 6596 - components: - - pos: 33.5,-25.5 - parent: 1668 - type: Transform - - uid: 6597 - components: - - pos: 31.5,-25.5 - parent: 1668 - type: Transform - - uid: 6598 - components: - - pos: 33.5,-23.5 - parent: 1668 - type: Transform - - uid: 6599 - components: - - pos: 31.5,-23.5 - parent: 1668 - type: Transform - - uid: 6635 - components: - - pos: 31.5,-21.5 - parent: 1668 - type: Transform - - uid: 6636 - components: - - pos: 33.5,-21.5 - parent: 1668 - type: Transform -- proto: GeneratorRTG - entities: - - uid: 5182 - components: - - pos: 32.5,-25.5 - parent: 1668 - type: Transform - - uid: 5183 - components: - - pos: 32.5,-23.5 - parent: 1668 - type: Transform - - uid: 5184 - components: - - pos: 32.5,-21.5 - parent: 1668 - type: Transform -- proto: GravityGenerator - entities: - - uid: 1140 - components: - - pos: 32.5,-11.5 - parent: 1668 - type: Transform -- proto: Grille - entities: - - uid: 30 - components: - - pos: -0.5,-3.5 - parent: 1668 - type: Transform - - uid: 31 - components: - - pos: 2.5,-3.5 - parent: 1668 - type: Transform - - uid: 32 - components: - - pos: 3.5,-1.5 - parent: 1668 - type: Transform - - uid: 33 - components: - - pos: 3.5,-0.5 - parent: 1668 - type: Transform - - uid: 34 - components: - - pos: 3.5,1.5 - parent: 1668 - type: Transform - - uid: 35 - components: - - pos: 2.5,2.5 - parent: 1668 - type: Transform - - uid: 36 - components: - - pos: 3.5,2.5 - parent: 1668 - type: Transform - - uid: 37 - components: - - pos: 0.5,2.5 - parent: 1668 - type: Transform - - uid: 38 - components: - - pos: -0.5,2.5 - parent: 1668 - type: Transform - - uid: 39 - components: - - pos: -1.5,2.5 - parent: 1668 - type: Transform - - uid: 40 - components: - - pos: -3.5,2.5 - parent: 1668 - type: Transform - - uid: 41 - components: - - pos: -4.5,2.5 - parent: 1668 - type: Transform - - uid: 42 - components: - - pos: -4.5,1.5 - parent: 1668 - type: Transform - - uid: 43 - components: - - pos: -4.5,-0.5 - parent: 1668 - type: Transform - - uid: 44 - components: - - pos: -4.5,-1.5 - parent: 1668 - type: Transform - - uid: 45 - components: - - pos: -4.5,-2.5 - parent: 1668 - type: Transform - - uid: 46 - components: - - pos: -3.5,-3.5 - parent: 1668 - type: Transform - - uid: 47 - components: - - pos: -2.5,-3.5 - parent: 1668 - type: Transform - - uid: 80 - components: - - pos: 8.5,5.5 - parent: 1668 - type: Transform - - uid: 81 - components: - - pos: 7.5,4.5 - parent: 1668 - type: Transform - - uid: 82 - components: - - pos: 4.5,7.5 - parent: 1668 - type: Transform - - uid: 83 - components: - - pos: 3.5,6.5 - parent: 1668 - type: Transform - - uid: 84 - components: - - pos: 2.5,5.5 - parent: 1668 - type: Transform - - uid: 85 - components: - - pos: 4.5,5.5 - parent: 1668 - type: Transform - - uid: 105 - components: - - pos: 18.5,-0.5 - parent: 1668 - type: Transform - - uid: 106 - components: - - pos: 16.5,-0.5 - parent: 1668 - type: Transform - - uid: 107 - components: - - pos: 8.5,-0.5 - parent: 1668 - type: Transform - - uid: 108 - components: - - pos: 6.5,-0.5 - parent: 1668 - type: Transform - - uid: 132 - components: - - pos: 1.5,-3.5 - parent: 1668 - type: Transform - - uid: 133 - components: - - pos: 3.5,-2.5 - parent: 1668 - type: Transform - - uid: 154 - components: - - pos: 5.5,-7.5 - parent: 1668 - type: Transform - - uid: 155 - components: - - pos: 3.5,-7.5 - parent: 1668 - type: Transform - - uid: 156 - components: - - pos: 2.5,-6.5 - parent: 1668 - type: Transform - - uid: 157 - components: - - pos: 6.5,-5.5 - parent: 1668 - type: Transform - - uid: 158 - components: - - pos: 6.5,-4.5 - parent: 1668 - type: Transform - - uid: 159 - components: - - pos: 8.5,-5.5 - parent: 1668 - type: Transform - - uid: 160 - components: - - pos: 8.5,-4.5 - parent: 1668 - type: Transform - - uid: 186 - components: - - pos: 16.5,3.5 - parent: 1668 - type: Transform - - uid: 189 - components: - - pos: 17.5,-5.5 - parent: 1668 - type: Transform - - uid: 191 - components: - - pos: 9.5,-8.5 - parent: 1668 - type: Transform - - uid: 192 - components: - - pos: 10.5,-8.5 - parent: 1668 - type: Transform - - uid: 193 - components: - - pos: 11.5,-8.5 - parent: 1668 - type: Transform - - uid: 194 - components: - - pos: 12.5,-9.5 - parent: 1668 - type: Transform - - uid: 195 - components: - - pos: 9.5,-10.5 - parent: 1668 - type: Transform - - uid: 196 - components: - - pos: 10.5,-10.5 - parent: 1668 - type: Transform - - uid: 197 - components: - - pos: 11.5,-10.5 - parent: 1668 - type: Transform - - uid: 198 - components: - - pos: 13.5,-10.5 - parent: 1668 - type: Transform - - uid: 199 - components: - - pos: 14.5,-10.5 - parent: 1668 - type: Transform - - uid: 200 - components: - - pos: 15.5,-10.5 - parent: 1668 - type: Transform - - uid: 201 - components: - - pos: 15.5,-8.5 - parent: 1668 - type: Transform - - uid: 202 - components: - - pos: 13.5,-8.5 - parent: 1668 - type: Transform - - uid: 203 - components: - - pos: 14.5,-8.5 - parent: 1668 - type: Transform - - uid: 204 - components: - - pos: 6.5,-9.5 - parent: 1668 - type: Transform - - uid: 205 - components: - - pos: 7.5,-10.5 - parent: 1668 - type: Transform - - uid: 212 - components: - - pos: 16.5,-9.5 - parent: 1668 - type: Transform - - uid: 223 - components: - - pos: 15.5,2.5 - parent: 1668 - type: Transform - - uid: 224 - components: - - pos: 13.5,2.5 - parent: 1668 - type: Transform - - uid: 225 - components: - - pos: 11.5,2.5 - parent: 1668 - type: Transform - - uid: 238 - components: - - pos: 7.5,-12.5 - parent: 1668 - type: Transform - - uid: 239 - components: - - pos: 6.5,-13.5 - parent: 1668 - type: Transform - - uid: 240 - components: - - pos: 7.5,-14.5 - parent: 1668 - type: Transform - - uid: 241 - components: - - pos: 2.5,-13.5 - parent: 1668 - type: Transform - - uid: 242 - components: - - pos: 2.5,-10.5 - parent: 1668 - type: Transform - - uid: 245 - components: - - pos: 17.5,6.5 - parent: 1668 - type: Transform - - uid: 246 - components: - - pos: 17.5,4.5 - parent: 1668 - type: Transform - - uid: 278 - components: - - pos: 3.5,8.5 - parent: 1668 - type: Transform - - uid: 279 - components: - - pos: 6.5,9.5 - parent: 1668 - type: Transform - - uid: 280 - components: - - pos: 7.5,9.5 - parent: 1668 - type: Transform - - uid: 281 - components: - - pos: 8.5,8.5 - parent: 1668 - type: Transform - - uid: 282 - components: - - pos: 9.5,7.5 - parent: 1668 - type: Transform - - uid: 283 - components: - - pos: 10.5,7.5 - parent: 1668 - type: Transform - - uid: 284 - components: - - pos: 11.5,7.5 - parent: 1668 - type: Transform - - uid: 285 - components: - - pos: 13.5,7.5 - parent: 1668 - type: Transform - - uid: 286 - components: - - pos: 14.5,7.5 - parent: 1668 - type: Transform - - uid: 287 - components: - - pos: 12.5,8.5 - parent: 1668 - type: Transform - - uid: 288 - components: - - pos: 14.5,9.5 - parent: 1668 - type: Transform - - uid: 289 - components: - - pos: 13.5,9.5 - parent: 1668 - type: Transform - - uid: 290 - components: - - pos: 11.5,9.5 - parent: 1668 - type: Transform - - uid: 291 - components: - - pos: 10.5,9.5 - parent: 1668 - type: Transform - - uid: 292 - components: - - pos: 9.5,9.5 - parent: 1668 - type: Transform - - uid: 304 - components: - - pos: 15.5,-3.5 - parent: 1668 - type: Transform - - uid: 305 - components: - - pos: 13.5,-3.5 - parent: 1668 - type: Transform - - uid: 306 - components: - - pos: 11.5,-3.5 - parent: 1668 - type: Transform - - uid: 311 - components: - - pos: 0.5,-8.5 - parent: 1668 - type: Transform - - uid: 312 - components: - - pos: -1.5,-8.5 - parent: 1668 - type: Transform - - uid: 313 - components: - - pos: -1.5,-6.5 - parent: 1668 - type: Transform - - uid: 314 - components: - - pos: 0.5,-6.5 - parent: 1668 - type: Transform - - uid: 341 - components: - - pos: -6.5,-7.5 - parent: 1668 - type: Transform - - uid: 342 - components: - - pos: -4.5,-7.5 - parent: 1668 - type: Transform - - uid: 343 - components: - - pos: -3.5,-6.5 - parent: 1668 - type: Transform - - uid: 344 - components: - - pos: -7.5,-5.5 - parent: 1668 - type: Transform - - uid: 345 - components: - - pos: -7.5,-4.5 - parent: 1668 - type: Transform - - uid: 448 - components: - - pos: 35.5,-6.5 - parent: 1668 - type: Transform - - uid: 449 - components: - - pos: 35.5,-4.5 - parent: 1668 - type: Transform - - uid: 450 - components: - - pos: 35.5,-2.5 - parent: 1668 - type: Transform - - uid: 451 - components: - - pos: 35.5,1.5 - parent: 1668 - type: Transform - - uid: 452 - components: - - pos: 35.5,3.5 - parent: 1668 - type: Transform - - uid: 453 - components: - - pos: 35.5,5.5 - parent: 1668 - type: Transform - - uid: 454 - components: - - pos: 21.5,-7.5 - parent: 1668 - type: Transform - - uid: 455 - components: - - pos: 23.5,-8.5 - parent: 1668 - type: Transform - - uid: 456 - components: - - pos: 29.5,-8.5 - parent: 1668 - type: Transform - - uid: 457 - components: - - pos: 31.5,-7.5 - parent: 1668 - type: Transform - - uid: 458 - components: - - pos: 31.5,6.5 - parent: 1668 - type: Transform - - uid: 459 - components: - - pos: 28.5,7.5 - parent: 1668 - type: Transform - - uid: 460 - components: - - pos: 24.5,7.5 - parent: 1668 - type: Transform - - uid: 461 - components: - - pos: 21.5,6.5 - parent: 1668 - type: Transform - - uid: 473 - components: - - pos: 33.5,-6.5 - parent: 1668 - type: Transform - - uid: 474 - components: - - pos: 33.5,-4.5 - parent: 1668 - type: Transform - - uid: 475 - components: - - pos: 33.5,-2.5 - parent: 1668 - type: Transform - - uid: 476 - components: - - pos: 34.5,-1.5 - parent: 1668 - type: Transform - - uid: 477 - components: - - pos: 34.5,0.5 - parent: 1668 - type: Transform - - uid: 478 - components: - - pos: 33.5,1.5 - parent: 1668 - type: Transform - - uid: 479 - components: - - pos: 33.5,3.5 - parent: 1668 - type: Transform - - uid: 480 - components: - - pos: 33.5,5.5 - parent: 1668 - type: Transform - - uid: 672 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 1668 - type: Transform - - uid: 673 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 1668 - type: Transform - - uid: 674 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 1668 - type: Transform - - uid: 675 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,4.5 - parent: 1668 - type: Transform - - uid: 678 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,7.5 - parent: 1668 - type: Transform - - uid: 679 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,7.5 - parent: 1668 - type: Transform - - uid: 680 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,5.5 - parent: 1668 - type: Transform - - uid: 681 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,5.5 - parent: 1668 - type: Transform - - uid: 702 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,6.5 - parent: 1668 - type: Transform - - uid: 703 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,6.5 - parent: 1668 - type: Transform - - uid: 704 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,8.5 - parent: 1668 - type: Transform - - uid: 725 - components: - - pos: 3.5,14.5 - parent: 1668 - type: Transform - - uid: 742 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-10.5 - parent: 1668 - type: Transform - - uid: 743 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-13.5 - parent: 1668 - type: Transform - - uid: 765 - components: - - pos: -7.5,-9.5 - parent: 1668 - type: Transform - - uid: 766 - components: - - pos: -8.5,-10.5 - parent: 1668 - type: Transform - - uid: 767 - components: - - pos: -8.5,-12.5 - parent: 1668 - type: Transform - - uid: 768 - components: - - pos: -7.5,-13.5 - parent: 1668 - type: Transform - - uid: 769 - components: - - pos: -8.5,-14.5 - parent: 1668 - type: Transform - - uid: 782 - components: - - pos: 1.5,-14.5 - parent: 1668 - type: Transform - - uid: 783 - components: - - pos: 0.5,-14.5 - parent: 1668 - type: Transform - - uid: 784 - components: - - pos: -1.5,-14.5 - parent: 1668 - type: Transform - - uid: 785 - components: - - pos: -2.5,-14.5 - parent: 1668 - type: Transform - - uid: 845 - components: - - pos: 8.5,-16.5 - parent: 1668 - type: Transform - - uid: 846 - components: - - pos: 9.5,-17.5 - parent: 1668 - type: Transform - - uid: 847 - components: - - pos: 10.5,-17.5 - parent: 1668 - type: Transform - - uid: 848 - components: - - pos: 11.5,-16.5 - parent: 1668 - type: Transform - - uid: 849 - components: - - pos: -4.5,11.5 - parent: 1668 - type: Transform - - uid: 850 - components: - - pos: -3.5,17.5 - parent: 1668 - type: Transform - - uid: 853 - components: - - pos: 3.5,16.5 - parent: 1668 - type: Transform - - uid: 855 - components: - - pos: 2.5,17.5 - parent: 1668 - type: Transform - - uid: 1424 - components: - - pos: -10.5,32.5 - parent: 1668 - type: Transform - - uid: 1467 - components: - - pos: 16.5,-4.5 - parent: 1668 - type: Transform - - uid: 1488 - components: - - pos: 3.5,12.5 - parent: 1668 - type: Transform - - uid: 1489 - components: - - pos: 3.5,10.5 - parent: 1668 - type: Transform - - uid: 1513 - components: - - pos: -13.5,18.5 - parent: 1668 - type: Transform - - uid: 1514 - components: - - pos: -12.5,18.5 - parent: 1668 - type: Transform - - uid: 1515 - components: - - pos: -16.5,17.5 - parent: 1668 - type: Transform - - uid: 1516 - components: - - pos: -16.5,18.5 - parent: 1668 - type: Transform - - uid: 1517 - components: - - pos: -15.5,18.5 - parent: 1668 - type: Transform - - uid: 1594 - components: - - pos: -14.5,20.5 - parent: 1668 - type: Transform - - uid: 1595 - components: - - pos: -14.5,21.5 - parent: 1668 - type: Transform - - uid: 1596 - components: - - pos: -14.5,22.5 - parent: 1668 - type: Transform - - uid: 1597 - components: - - pos: -14.5,23.5 - parent: 1668 - type: Transform - - uid: 1598 - components: - - pos: -15.5,23.5 - parent: 1668 - type: Transform - - uid: 1599 - components: - - pos: -16.5,23.5 - parent: 1668 - type: Transform - - uid: 1600 - components: - - pos: -16.5,26.5 - parent: 1668 - type: Transform - - uid: 1601 - components: - - pos: -15.5,26.5 - parent: 1668 - type: Transform - - uid: 1602 - components: - - pos: -14.5,26.5 - parent: 1668 - type: Transform - - uid: 1603 - components: - - pos: -16.5,29.5 - parent: 1668 - type: Transform - - uid: 1604 - components: - - pos: -15.5,29.5 - parent: 1668 - type: Transform - - uid: 1605 - components: - - pos: -14.5,29.5 - parent: 1668 - type: Transform - - uid: 1606 - components: - - pos: -14.5,30.5 - parent: 1668 - type: Transform - - uid: 1667 - components: - - pos: -8.5,32.5 - parent: 1668 - type: Transform - - uid: 1669 - components: - - pos: -6.5,32.5 - parent: 1668 - type: Transform - - uid: 1670 - components: - - pos: -12.5,32.5 - parent: 1668 - type: Transform - - uid: 2002 - components: - - pos: 5.5,10.5 - parent: 1668 - type: Transform - - uid: 2003 - components: - - pos: 5.5,12.5 - parent: 1668 - type: Transform - - uid: 2004 - components: - - pos: 5.5,14.5 - parent: 1668 - type: Transform - - uid: 2246 - components: - - pos: 15.5,14.5 - parent: 1668 - type: Transform - - uid: 2247 - components: - - pos: 15.5,12.5 - parent: 1668 - type: Transform - - uid: 2248 - components: - - pos: 15.5,10.5 - parent: 1668 - type: Transform - - uid: 2284 - components: - - pos: 23.5,14.5 - parent: 1668 - type: Transform - - uid: 2285 - components: - - pos: 25.5,14.5 - parent: 1668 - type: Transform - - uid: 2286 - components: - - pos: 26.5,14.5 - parent: 1668 - type: Transform - - uid: 2287 - components: - - pos: 27.5,14.5 - parent: 1668 - type: Transform - - uid: 2288 - components: - - pos: 29.5,14.5 - parent: 1668 - type: Transform - - uid: 2289 - components: - - pos: 30.5,14.5 - parent: 1668 - type: Transform - - uid: 2290 - components: - - pos: 31.5,14.5 - parent: 1668 - type: Transform - - uid: 2291 - components: - - pos: 33.5,14.5 - parent: 1668 - type: Transform - - uid: 2346 - components: - - pos: 24.5,15.5 - parent: 1668 - type: Transform - - uid: 2347 - components: - - pos: 24.5,16.5 - parent: 1668 - type: Transform - - uid: 2348 - components: - - pos: 24.5,17.5 - parent: 1668 - type: Transform - - uid: 2349 - components: - - pos: 24.5,19.5 - parent: 1668 - type: Transform - - uid: 2510 - components: - - pos: 10.5,16.5 - parent: 1668 - type: Transform - - uid: 2511 - components: - - pos: 10.5,17.5 - parent: 1668 - type: Transform - - uid: 2512 - components: - - pos: 10.5,18.5 - parent: 1668 - type: Transform - - uid: 2513 - components: - - pos: 8.5,16.5 - parent: 1668 - type: Transform - - uid: 2546 - components: - - pos: 8.5,20.5 - parent: 1668 - type: Transform - - uid: 2557 - components: - - pos: 14.5,21.5 - parent: 1668 - type: Transform - - uid: 2754 - components: - - pos: 4.5,24.5 - parent: 1668 - type: Transform - - uid: 2756 - components: - - pos: 7.5,21.5 - parent: 1668 - type: Transform - - uid: 2758 - components: - - pos: 7.5,22.5 - parent: 1668 - type: Transform - - uid: 2772 - components: - - pos: 14.5,24.5 - parent: 1668 - type: Transform - - uid: 2792 - components: - - pos: 13.5,30.5 - parent: 1668 - type: Transform - - uid: 2808 - components: - - pos: 8.5,26.5 - parent: 1668 - type: Transform - - uid: 2809 - components: - - pos: 7.5,26.5 - parent: 1668 - type: Transform - - uid: 2810 - components: - - pos: 7.5,27.5 - parent: 1668 - type: Transform - - uid: 2811 - components: - - pos: 7.5,29.5 - parent: 1668 - type: Transform - - uid: 2815 - components: - - pos: 6.5,30.5 - parent: 1668 - type: Transform - - uid: 2816 - components: - - pos: 11.5,29.5 - parent: 1668 - type: Transform - - uid: 2817 - components: - - pos: 11.5,27.5 - parent: 1668 - type: Transform - - uid: 2818 - components: - - pos: 11.5,26.5 - parent: 1668 - type: Transform - - uid: 2819 - components: - - pos: 10.5,26.5 - parent: 1668 - type: Transform - - uid: 2860 - components: - - pos: 4.5,27.5 - parent: 1668 - type: Transform - - uid: 2861 - components: - - pos: 14.5,27.5 - parent: 1668 - type: Transform - - uid: 2880 - components: - - pos: 12.5,30.5 - parent: 1668 - type: Transform - - uid: 2887 - components: - - pos: 5.5,30.5 - parent: 1668 - type: Transform - - uid: 2907 - components: - - pos: 7.5,7.5 - parent: 1668 - type: Transform - - uid: 3134 - components: - - pos: 6.5,7.5 - parent: 1668 - type: Transform - - uid: 3141 - components: - - pos: 9.5,-15.5 - parent: 1668 - type: Transform - - uid: 3247 - components: - - pos: 10.5,-15.5 - parent: 1668 - type: Transform - - uid: 3387 - components: - - pos: -26.5,-0.5 - parent: 1668 - type: Transform - - uid: 3388 - components: - - pos: -28.5,-0.5 - parent: 1668 - type: Transform - - uid: 3389 - components: - - pos: -27.5,11.5 - parent: 1668 - type: Transform - - uid: 3390 - components: - - pos: -27.5,12.5 - parent: 1668 - type: Transform - - uid: 3391 - components: - - pos: -27.5,8.5 - parent: 1668 - type: Transform - - uid: 3392 - components: - - pos: -27.5,9.5 - parent: 1668 - type: Transform - - uid: 3436 - components: - - pos: -13.5,2.5 - parent: 1668 - type: Transform - - uid: 3437 - components: - - pos: -10.5,1.5 - parent: 1668 - type: Transform - - uid: 3438 - components: - - pos: -11.5,1.5 - parent: 1668 - type: Transform - - uid: 3439 - components: - - pos: -12.5,1.5 - parent: 1668 - type: Transform - - uid: 3440 - components: - - pos: -14.5,1.5 - parent: 1668 - type: Transform - - uid: 3441 - components: - - pos: -15.5,1.5 - parent: 1668 - type: Transform - - uid: 3442 - components: - - pos: -16.5,1.5 - parent: 1668 - type: Transform - - uid: 3936 - components: - - pos: -30.5,7.5 - parent: 1668 - type: Transform - - uid: 3937 - components: - - pos: -32.5,7.5 - parent: 1668 - type: Transform - - uid: 3938 - components: - - pos: -33.5,7.5 - parent: 1668 - type: Transform - - uid: 3943 - components: - - pos: -34.5,6.5 - parent: 1668 - type: Transform - - uid: 3944 - components: - - pos: -34.5,5.5 - parent: 1668 - type: Transform - - uid: 3945 - components: - - pos: -34.5,4.5 - parent: 1668 - type: Transform - - uid: 3946 - components: - - pos: -34.5,3.5 - parent: 1668 - type: Transform - - uid: 3979 - components: - - pos: -32.5,-0.5 - parent: 1668 - type: Transform - - uid: 3980 - components: - - pos: -33.5,-0.5 - parent: 1668 - type: Transform - - uid: 3981 - components: - - pos: -34.5,-0.5 - parent: 1668 - type: Transform - - uid: 3982 - components: - - pos: -34.5,-2.5 - parent: 1668 - type: Transform - - uid: 3983 - components: - - pos: -32.5,-2.5 - parent: 1668 - type: Transform - - uid: 3984 - components: - - pos: -32.5,1.5 - parent: 1668 - type: Transform - - uid: 3985 - components: - - pos: -34.5,1.5 - parent: 1668 - type: Transform - - uid: 4201 - components: - - pos: 15.5,8.5 - parent: 1668 - type: Transform - - uid: 4226 - components: - - pos: -9.5,-16.5 - parent: 1668 - type: Transform - - uid: 4227 - components: - - pos: -10.5,-17.5 - parent: 1668 - type: Transform - - uid: 4228 - components: - - pos: -11.5,-17.5 - parent: 1668 - type: Transform - - uid: 4229 - components: - - pos: -12.5,-16.5 - parent: 1668 - type: Transform - - uid: 4264 - components: - - pos: 0.5,-20.5 - parent: 1668 - type: Transform - - uid: 4317 - components: - - pos: -4.5,-23.5 - parent: 1668 - type: Transform - - uid: 4318 - components: - - pos: -4.5,-22.5 - parent: 1668 - type: Transform - - uid: 4319 - components: - - pos: -4.5,-21.5 - parent: 1668 - type: Transform - - uid: 4320 - components: - - pos: -2.5,-23.5 - parent: 1668 - type: Transform - - uid: 4321 - components: - - pos: -2.5,-22.5 - parent: 1668 - type: Transform - - uid: 4322 - components: - - pos: -2.5,-21.5 - parent: 1668 - type: Transform - - uid: 4323 - components: - - pos: 3.5,-23.5 - parent: 1668 - type: Transform - - uid: 4324 - components: - - pos: 3.5,-22.5 - parent: 1668 - type: Transform - - uid: 4325 - components: - - pos: 3.5,-21.5 - parent: 1668 - type: Transform - - uid: 4326 - components: - - pos: 1.5,-23.5 - parent: 1668 - type: Transform - - uid: 4327 - components: - - pos: 1.5,-22.5 - parent: 1668 - type: Transform - - uid: 4328 - components: - - pos: 1.5,-21.5 - parent: 1668 - type: Transform - - uid: 4366 - components: - - pos: 4.5,-30.5 - parent: 1668 - type: Transform - - uid: 4602 - components: - - pos: 6.5,-30.5 - parent: 1668 - type: Transform - - uid: 4671 - components: - - pos: -1.5,-34.5 - parent: 1668 - type: Transform - - uid: 4672 - components: - - pos: -0.5,-34.5 - parent: 1668 - type: Transform - - uid: 4673 - components: - - pos: 0.5,-34.5 - parent: 1668 - type: Transform - - uid: 4750 - components: - - pos: 15.5,-22.5 - parent: 1668 - type: Transform - - uid: 4751 - components: - - pos: 17.5,-22.5 - parent: 1668 - type: Transform - - uid: 5025 - components: - - pos: 19.5,-23.5 - parent: 1668 - type: Transform - - uid: 5064 - components: - - pos: 20.5,-23.5 - parent: 1668 - type: Transform - - uid: 5065 - components: - - pos: 21.5,-23.5 - parent: 1668 - type: Transform - - uid: 5114 - components: - - pos: 28.5,-25.5 - parent: 1668 - type: Transform - - uid: 5115 - components: - - pos: 28.5,-24.5 - parent: 1668 - type: Transform - - uid: 5116 - components: - - pos: 28.5,-23.5 - parent: 1668 - type: Transform - - uid: 5117 - components: - - pos: 28.5,-22.5 - parent: 1668 - type: Transform - - uid: 5118 - components: - - pos: 28.5,-21.5 - parent: 1668 - type: Transform - - uid: 5169 - components: - - pos: 31.5,-19.5 - parent: 1668 - type: Transform - - uid: 5170 - components: - - pos: 33.5,-19.5 - parent: 1668 - type: Transform - - uid: 5320 - components: - - pos: -1.5,-24.5 - parent: 1668 - type: Transform - - uid: 5412 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-32.5 - parent: 1668 - type: Transform - - uid: 5781 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-30.5 - parent: 1668 - type: Transform - - uid: 5782 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-30.5 - parent: 1668 - type: Transform - - uid: 5783 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-30.5 - parent: 1668 - type: Transform - - uid: 5922 - components: - - pos: -20.5,-33.5 - parent: 1668 - type: Transform - - uid: 5923 - components: - - pos: -20.5,-32.5 - parent: 1668 - type: Transform - - uid: 5924 - components: - - pos: -20.5,-31.5 - parent: 1668 - type: Transform - - uid: 5925 - components: - - pos: -18.5,-34.5 - parent: 1668 - type: Transform - - uid: 5926 - components: - - pos: -17.5,-34.5 - parent: 1668 - type: Transform - - uid: 5927 - components: - - pos: -19.5,-34.5 - parent: 1668 - type: Transform - - uid: 5949 - components: - - pos: -15.5,-25.5 - parent: 1668 - type: Transform - - uid: 5950 - components: - - pos: -17.5,-25.5 - parent: 1668 - type: Transform - - uid: 5983 - components: - - pos: -21.5,-27.5 - parent: 1668 - type: Transform - - uid: 5984 - components: - - pos: -23.5,-27.5 - parent: 1668 - type: Transform - - uid: 5985 - components: - - pos: -23.5,-25.5 - parent: 1668 - type: Transform - - uid: 5986 - components: - - pos: -22.5,-25.5 - parent: 1668 - type: Transform - - uid: 5987 - components: - - pos: -21.5,-25.5 - parent: 1668 - type: Transform - - uid: 5988 - components: - - pos: -21.5,-23.5 - parent: 1668 - type: Transform - - uid: 5989 - components: - - pos: -23.5,-23.5 - parent: 1668 - type: Transform - - uid: 5993 - components: - - pos: -18.5,-21.5 - parent: 1668 - type: Transform - - uid: 5994 - components: - - pos: -19.5,-21.5 - parent: 1668 - type: Transform - - uid: 5995 - components: - - pos: -20.5,-21.5 - parent: 1668 - type: Transform - - uid: 6160 - components: - - pos: -2.5,-33.5 - parent: 1668 - type: Transform - - uid: 6161 - components: - - pos: -2.5,-32.5 - parent: 1668 - type: Transform - - uid: 6162 - components: - - pos: -2.5,-31.5 - parent: 1668 - type: Transform - - uid: 6163 - components: - - pos: 1.5,-33.5 - parent: 1668 - type: Transform - - uid: 6164 - components: - - pos: 1.5,-32.5 - parent: 1668 - type: Transform - - uid: 6165 - components: - - pos: 1.5,-31.5 - parent: 1668 - type: Transform - - uid: 6280 - components: - - pos: -0.5,-38.5 - parent: 1668 - type: Transform - - uid: 6281 - components: - - pos: -0.5,-40.5 - parent: 1668 - type: Transform - - uid: 6301 - components: - - pos: -2.5,-46.5 - parent: 1668 - type: Transform - - uid: 6302 - components: - - pos: -2.5,-44.5 - parent: 1668 - type: Transform - - uid: 6303 - components: - - pos: -0.5,-46.5 - parent: 1668 - type: Transform - - uid: 6304 - components: - - pos: -0.5,-45.5 - parent: 1668 - type: Transform - - uid: 6305 - components: - - pos: -0.5,-44.5 - parent: 1668 - type: Transform - - uid: 6306 - components: - - pos: 1.5,-46.5 - parent: 1668 - type: Transform - - uid: 6307 - components: - - pos: 1.5,-44.5 - parent: 1668 - type: Transform - - uid: 6575 - components: - - pos: -5.5,-30.5 - parent: 1668 - type: Transform - - uid: 6576 - components: - - pos: -7.5,-30.5 - parent: 1668 - type: Transform - - uid: 6768 - components: - - pos: -1.5,-20.5 - parent: 1668 - type: Transform - - uid: 6769 - components: - - pos: 0.5,-24.5 - parent: 1668 - type: Transform - - uid: 6779 - components: - - pos: 5.5,6.5 - parent: 1668 - type: Transform -- proto: GroundTobacco - entities: - - uid: 3755 - components: - - pos: -18.558027,8.843213 - parent: 1668 - type: Transform - - uid: 3756 - components: - - pos: -18.370527,8.827588 - parent: 1668 - type: Transform -- proto: GunSafeShotgunKammerer - entities: - - uid: 6526 - components: - - pos: 10.5,30.5 - parent: 1668 - type: Transform -- proto: GunSafeSubMachineGunDrozd - entities: - - uid: 2923 - components: - - pos: 8.5,30.5 - parent: 1668 - type: Transform -- proto: Handcuffs - entities: - - uid: 3751 - components: - - pos: -25.604141,8.625723 - parent: 1668 - type: Transform -- proto: HandheldCrewMonitor - entities: - - uid: 1461 - components: - - pos: 13.504195,-12.438507 - parent: 1668 - type: Transform -- proto: HandheldHealthAnalyzer - entities: - - uid: 6497 - components: - - pos: -6.516034,-43.276962 - parent: 1668 - type: Transform -- proto: HandLabeler - entities: - - uid: 2228 - components: - - pos: -14.611721,14.56378 - parent: 1668 - type: Transform - - uid: 2229 - components: - - pos: -9.361721,12.50128 - parent: 1668 - type: Transform - - uid: 2240 - components: - - pos: -3.4985683,16.513187 - parent: 1668 - type: Transform -- proto: HighSecArmoryLocked - entities: - - uid: 2553 - components: - - pos: 9.5,20.5 - parent: 1668 - type: Transform - - uid: 2784 - components: - - pos: 7.5,28.5 - parent: 1668 - type: Transform - - uid: 2785 - components: - - pos: 11.5,28.5 - parent: 1668 - type: Transform -- proto: HighSecCaptainLocked - entities: - - uid: 3427 - components: - - pos: -17.5,5.5 - parent: 1668 - type: Transform - - uid: 3428 - components: - - pos: -21.5,1.5 - parent: 1668 - type: Transform - - uid: 3429 - components: - - pos: -19.5,7.5 - parent: 1668 - type: Transform - - uid: 3430 - components: - - pos: -23.5,7.5 - parent: 1668 - type: Transform - - uid: 3431 - components: - - pos: -17.5,11.5 - parent: 1668 - type: Transform - - uid: 3572 - components: - - pos: -13.5,5.5 - parent: 1668 - type: Transform -- proto: HighSecCommandLocked - entities: - - uid: 48 - components: - - pos: 3.5,0.5 - parent: 1668 - type: Transform - - uid: 49 - components: - - pos: -4.5,0.5 - parent: 1668 - type: Transform - - uid: 123 - components: - - pos: 32.5,-14.5 - parent: 1668 - type: Transform - - uid: 3781 - components: - - pos: -22.5,-2.5 - parent: 1668 - type: Transform - - uid: 3782 - components: - - pos: -20.5,-2.5 - parent: 1668 - type: Transform - - uid: 6276 - components: - - pos: -1.5,-38.5 - parent: 1668 - type: Transform - - uid: 6278 - components: - - pos: -1.5,-40.5 - parent: 1668 - type: Transform - - uid: 6279 - components: - - pos: 0.5,-38.5 - parent: 1668 - type: Transform - - uid: 6313 - components: - - pos: 0.5,-40.5 - parent: 1668 - type: Transform - - uid: 6775 - components: - - pos: 27.5,-27.5 - parent: 1668 - type: Transform -- proto: HighSecDoor - entities: - - uid: 565 - components: - - pos: 18.5,-6.5 - parent: 1668 - type: Transform - - uid: 566 - components: - - pos: 18.5,-1.5 - parent: 1668 - type: Transform - - uid: 567 - components: - - pos: 18.5,0.5 - parent: 1668 - type: Transform - - uid: 568 - components: - - pos: 16.5,0.5 - parent: 1668 - type: Transform - - uid: 569 - components: - - pos: 16.5,-1.5 - parent: 1668 - type: Transform - - uid: 570 - components: - - pos: 8.5,-1.5 - parent: 1668 - type: Transform - - uid: 571 - components: - - pos: 6.5,-1.5 - parent: 1668 - type: Transform - - uid: 572 - components: - - pos: 6.5,0.5 - parent: 1668 - type: Transform - - uid: 573 - components: - - pos: 8.5,0.5 - parent: 1668 - type: Transform - - uid: 792 - components: - - pos: -0.5,-8.5 - parent: 1668 - type: Transform - - uid: 793 - components: - - pos: -0.5,-6.5 - parent: 1668 - type: Transform - - uid: 1185 - components: - - pos: -9.5,-1.5 - parent: 1668 - type: Transform - - uid: 1186 - components: - - pos: -9.5,0.5 - parent: 1668 - type: Transform - - uid: 1187 - components: - - pos: -7.5,0.5 - parent: 1668 - type: Transform - - uid: 1188 - components: - - pos: -7.5,-1.5 - parent: 1668 - type: Transform - - uid: 1189 - components: - - pos: -0.5,5.5 - parent: 1668 - type: Transform - - uid: 1190 - components: - - pos: -0.5,7.5 - parent: 1668 - type: Transform - - uid: 2142 - components: - - pos: 5.5,11.5 - parent: 1668 - type: Transform - - uid: 2143 - components: - - pos: 5.5,13.5 - parent: 1668 - type: Transform - - uid: 2144 - components: - - pos: 3.5,13.5 - parent: 1668 - type: Transform - - uid: 2145 - components: - - pos: 3.5,11.5 - parent: 1668 - type: Transform - - uid: 2249 - components: - - pos: 15.5,11.5 - parent: 1668 - type: Transform - - uid: 2250 - components: - - pos: 15.5,13.5 - parent: 1668 - type: Transform - - uid: 3860 - components: - - pos: -26.5,-1.5 - parent: 1668 - type: Transform - - uid: 3861 - components: - - pos: -28.5,-1.5 - parent: 1668 - type: Transform - - uid: 3862 - components: - - pos: -28.5,0.5 - parent: 1668 - type: Transform - - uid: 3863 - components: - - pos: -26.5,0.5 - parent: 1668 - type: Transform - - uid: 4639 - components: - - pos: -15.5,-24.5 - parent: 1668 - type: Transform - - uid: 4640 - components: - - pos: -15.5,-26.5 - parent: 1668 - type: Transform - - uid: 5932 - components: - - pos: -15.5,-32.5 - parent: 1668 - type: Transform - - uid: 5945 - components: - - pos: -17.5,-26.5 - parent: 1668 - type: Transform - - uid: 5946 - components: - - pos: -17.5,-24.5 - parent: 1668 - type: Transform -- proto: HospitalCurtainsOpen - entities: - - uid: 3422 - components: - - pos: -20.5,15.5 - parent: 1668 - type: Transform -- proto: Hypospray - entities: - - uid: 6549 - components: - - pos: -6.5056453,-39.44935 - parent: 1668 - type: Transform -- proto: JanitorialTrolley - entities: - - uid: 2881 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-31.5 - parent: 1668 - type: Transform - - uid: 6495 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-40.5 - parent: 1668 - type: Transform -- proto: JawsOfLife - entities: - - uid: 4261 - components: - - pos: 21.501507,-22.363987 - parent: 1668 - type: Transform -- proto: KitchenMicrowave - entities: - - uid: 2226 - components: - - pos: -15.5,17.5 - parent: 1668 - type: Transform - - uid: 4585 - components: - - pos: -11.5,-24.5 - parent: 1668 - type: Transform - - uid: 4589 - components: - - pos: -11.5,-28.5 - parent: 1668 - type: Transform -- proto: KitchenReagentGrinder - entities: - - uid: 2922 - components: - - pos: 3.5,-9.5 - parent: 1668 - type: Transform - - uid: 4590 - components: - - pos: -11.5,-25.5 - parent: 1668 - type: Transform - - uid: 4591 - components: - - pos: -9.5,-28.5 - parent: 1668 - type: Transform -- proto: KitchenSpike - entities: - - uid: 4581 - components: - - pos: -7.5,-21.5 - parent: 1668 - type: Transform -- proto: KnifePlastic - entities: - - uid: 3726 - components: - - pos: 0.9231305,-25.45219 - parent: 1668 - type: Transform - - uid: 4253 - components: - - pos: 0.9231305,-25.45219 - parent: 1668 - type: Transform - - uid: 5214 - components: - - pos: 0.9231305,-25.45219 - parent: 1668 - type: Transform -- proto: Lamp - entities: - - uid: 1442 - components: - - pos: -0.93100256,1.9752237 - parent: 1668 - type: Transform - - uid: 2829 - components: - - pos: 5.496662,21.877665 - parent: 1668 - type: Transform - - uid: 3626 - components: - - pos: -20.472635,6.7337127 - parent: 1668 - type: Transform - - uid: 3627 - components: - - pos: -20.48826,12.764963 - parent: 1668 - type: Transform -- proto: LampGold - entities: - - uid: 3628 - components: - - pos: -16.37576,12.926986 - parent: 1668 - type: Transform -- proto: LargeBeaker - entities: - - uid: 5066 - components: - - pos: -10.010703,-28.243814 - parent: 1668 - type: Transform -- proto: Lighter - entities: - - uid: 3754 - components: - - pos: -18.379215,8.381029 - parent: 1668 - type: Transform -- proto: LockerAtmosphericsFilledHardsuit - entities: - - uid: 3790 - components: - - pos: 15.5,-29.5 - parent: 1668 - type: Transform -- proto: LockerBoozeFilled - entities: - - uid: 4417 - components: - - pos: 10.5,-28.5 - parent: 1668 - type: Transform -- proto: LockerChemistryFilled - entities: - - uid: 2876 - components: - - pos: 5.5,-13.5 - parent: 1668 - type: Transform -- proto: LockerChiefEngineerFilledHardsuit - entities: - - uid: 5253 - components: - - pos: -15.5,-3.5 - parent: 1668 - type: Transform - - uid: 5420 - components: - - pos: -14.5,-3.5 - parent: 1668 - type: Transform -- proto: LockerChiefMedicalOfficerFilledHardsuit - entities: - - uid: 3794 - components: - - pos: -14.5,-9.5 - parent: 1668 - type: Transform - - uid: 3795 - components: - - pos: -15.5,-9.5 - parent: 1668 - type: Transform -- proto: LockerElectricalSuppliesFilled - entities: - - uid: 1178 - components: - - pos: 15.5,-15.5 - parent: 1668 - type: Transform - - uid: 2039 - components: - - pos: 2.5,21.5 - parent: 1668 - type: Transform - - uid: 5322 - components: - - pos: 27.5,-13.5 - parent: 1668 - type: Transform -- proto: LockerEngineerFilledHardsuit - entities: - - uid: 3796 - components: - - pos: 23.5,-23.5 - parent: 1668 - type: Transform - - uid: 5252 - components: - - pos: 23.5,-22.5 - parent: 1668 - type: Transform -- proto: LockerEvidence - entities: - - uid: 3148 - components: - - pos: 8.5,25.5 - parent: 1668 - type: Transform -- proto: LockerFreezer - entities: - - uid: 5458 - components: - - pos: -8.5,-21.5 - parent: 1668 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 5459 - - 5460 - - 5461 - - 5462 - - 5848 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerHeadOfPersonnelFilled - entities: - - uid: 3797 - components: - - pos: -11.5,-3.5 - parent: 1668 - type: Transform -- proto: LockerHeadOfSecurityFilledHardsuit - entities: - - uid: 3792 - components: - - pos: -11.5,-9.5 - parent: 1668 - type: Transform - - uid: 3793 - components: - - pos: -10.5,-9.5 - parent: 1668 - type: Transform -- proto: LockerQuarterMasterFilled - entities: - - uid: 2235 - components: - - pos: -8.5,19.5 - parent: 1668 - type: Transform -- proto: LockerResearchDirectorFilledHardsuit - entities: - - uid: 3791 - components: - - pos: -10.5,-3.5 - parent: 1668 - type: Transform -- proto: LockerSecurityFilled - entities: - - uid: 511 - components: - - pos: 19.5,-10.5 - parent: 1668 - type: Transform - - uid: 512 - components: - - pos: 22.5,-10.5 - parent: 1668 - type: Transform - - uid: 815 - components: - - pos: -6.5,-10.5 - parent: 1668 - type: Transform -- proto: LockerWardenFilled - entities: - - uid: 2713 - components: - - pos: 6.5,17.5 - parent: 1668 - type: Transform -- proto: LockerWeldingSuppliesFilled - entities: - - uid: 129 - components: - - pos: -26.5,2.5 - parent: 1668 - type: Transform - - uid: 2040 - components: - - pos: 0.5,19.5 - parent: 1668 - type: Transform - - uid: 5319 - components: - - pos: 28.5,-13.5 - parent: 1668 - type: Transform -- proto: MagazinePistolSubMachineGunTopMounted - entities: - - uid: 3153 - components: - - pos: 4.5554476,19.207918 - parent: 1668 - type: Transform - - uid: 3154 - components: - - pos: 4.5710726,19.317293 - parent: 1668 - type: Transform - - uid: 3896 - components: - - pos: -13.453807,-3.1600308 - parent: 1668 - type: Transform -- proto: MaterialBiomass - entities: - - uid: 2495 - components: - - pos: 13.210049,-12.580112 - parent: 1668 - type: Transform -- proto: MedalCase - entities: - - uid: 6922 - components: - - pos: -18.47654,4.596927 - parent: 1668 - type: Transform -- proto: MedicalBed - entities: - - uid: 612 - components: - - pos: 13.5,-7.5 - parent: 1668 - type: Transform - - uid: 1195 - components: - - pos: 13.5,-14.5 - parent: 1668 - type: Transform - - uid: 1196 - components: - - pos: 13.5,-13.5 - parent: 1668 - type: Transform -- proto: MedicalScanner - entities: - - uid: 723 - components: - - pos: 9.5,-14.5 - parent: 1668 - type: Transform -- proto: MedicalTechFab - entities: - - uid: 616 - components: - - pos: 9.5,-7.5 - parent: 1668 - type: Transform -- proto: MedkitBruteFilled - entities: - - uid: 622 - components: - - pos: 14.703841,-7.3571634 - parent: 1668 - type: Transform -- proto: MedkitBurnFilled - entities: - - uid: 621 - components: - - pos: 14.594466,-7.4821634 - parent: 1668 - type: Transform -- proto: MedkitCombatFilled - entities: - - uid: 6506 - components: - - pos: -5.324598,-39.292587 - parent: 1668 - type: Transform -- proto: MedkitFilled - entities: - - uid: 620 - components: - - pos: 14.516341,-7.5759134 - parent: 1668 - type: Transform - - uid: 1454 - components: - - pos: 15.537778,-2.524952 - parent: 1668 - type: Transform - - uid: 3897 - components: - - pos: -13.438182,-5.5085163 - parent: 1668 - type: Transform - - uid: 6507 - components: - - pos: -5.527723,-39.558212 - parent: 1668 - type: Transform -- proto: MedkitOxygenFilled - entities: - - uid: 625 - components: - - pos: 15.547591,-7.3884134 - parent: 1668 - type: Transform - - uid: 6554 - components: - - pos: -5.4431453,-39.4181 - parent: 1668 - type: Transform -- proto: MedkitRadiationFilled - entities: - - uid: 623 - components: - - pos: 15.266341,-7.6071634 - parent: 1668 - type: Transform -- proto: MedkitToxinFilled - entities: - - uid: 624 - components: - - pos: 15.406966,-7.4977884 - parent: 1668 - type: Transform -- proto: Mirror - entities: - - uid: 3426 - components: - - pos: -19.5,14.5 - parent: 1668 - type: Transform - - uid: 6845 - components: - - pos: -4.5,-14.5 - parent: 1668 - type: Transform -- proto: MopItem - entities: - - uid: 6230 - components: - - pos: -17.485325,-31.461966 - parent: 1668 - type: Transform - - uid: 6505 - components: - - pos: -4.496473,-39.433212 - parent: 1668 - type: Transform -- proto: NitrogenCanister - entities: - - uid: 5413 - components: - - pos: 25.5,-28.5 - parent: 1668 - type: Transform -- proto: Omnitool - entities: - - uid: 4393 - components: - - pos: 24.630873,-13.468605 - parent: 1668 - type: Transform -- proto: OperatingTable - entities: - - uid: 610 - components: - - pos: 9.5,-5.5 - parent: 1668 - type: Transform -- proto: OxygenCanister - entities: - - uid: 5415 - components: - - pos: 19.5,-28.5 - parent: 1668 - type: Transform - - uid: 6719 - components: - - pos: 12.5,-7.5 - parent: 1668 - type: Transform -- proto: PaintingAmogusTriptych - entities: - - uid: 3766 - components: - - pos: -21.5,7.5 - parent: 1668 - type: Transform - - uid: 6942 - components: - - pos: -14.5,7.5 - parent: 1668 - type: Transform -- proto: PaintingHelloWorld - entities: - - uid: 3767 - components: - - pos: -17.5,3.5 - parent: 1668 - type: Transform -- proto: PaintingNightHawks - entities: - - uid: 3779 - components: - - pos: -25.5,4.5 - parent: 1668 - type: Transform -- proto: PaintingSadClown - entities: - - uid: 6943 - components: - - pos: -16.5,7.5 - parent: 1668 - type: Transform -- proto: PaintingSaturn - entities: - - uid: 3776 - components: - - pos: -9.5,5.5 - parent: 1668 - type: Transform -- proto: PaintingTheGreatWave - entities: - - uid: 3743 - components: - - pos: -20.5,13.5 - parent: 1668 - type: Transform -- proto: PaintingTheSonOfMan - entities: - - uid: 3744 - components: - - pos: -17.5,9.5 - parent: 1668 - type: Transform -- proto: Paper - entities: - - uid: 2915 - components: - - pos: 0.536467,0.64872134 - parent: 1668 - type: Transform - - uid: 2916 - components: - - pos: 0.44271702,0.72684634 - parent: 1668 - type: Transform - - uid: 2919 - components: - - pos: 0.645842,0.55497134 - parent: 1668 - type: Transform -- proto: PaperBin10 - entities: - - uid: 6630 - components: - - pos: -3.5,-2.5 - parent: 1668 - type: Transform -- proto: ParchisBoard - entities: - - uid: 3764 - components: - - pos: -23.482897,2.599884 - parent: 1668 - type: Transform -- proto: PenCentcom - entities: - - uid: 2905 - components: - - pos: -20.468134,12.0128975 - parent: 1668 - type: Transform - - uid: 2924 - components: - - pos: 0.16146702,1.3987213 - parent: 1668 - type: Transform - - uid: 6600 - components: - - pos: -1.4166579,1.6018463 - parent: 1668 - type: Transform -- proto: PercentileDie - entities: - - uid: 3765 - components: - - pos: -18.522638,2.6762333 - parent: 1668 - type: Transform -- proto: PhoneInstrument - entities: - - uid: 2464 - components: - - pos: 29.471363,23.660753 - parent: 1668 - type: Transform - - uid: 3742 - components: - - pos: -19.555511,10.655831 - parent: 1668 - type: Transform - - uid: 3876 - components: - - pos: -26.67884,-3.3787808 - parent: 1668 - type: Transform -- proto: PianoInstrument - entities: - - uid: 4474 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-29.5 - parent: 1668 - type: Transform -- proto: PlaqueAtmos - entities: - - uid: 4383 - components: - - pos: 2.5,-24.5 - parent: 1668 - type: Transform - - uid: 6646 - components: - - pos: 17.5,-28.5 - parent: 1668 - type: Transform -- proto: PlasticFlapsAirtightClear - entities: - - uid: 1590 - components: - - pos: -16.5,24.5 - parent: 1668 - type: Transform - - uid: 1591 - components: - - pos: -14.5,24.5 - parent: 1668 - type: Transform - - uid: 1592 - components: - - pos: -16.5,28.5 - parent: 1668 - type: Transform - - uid: 1593 - components: - - pos: -14.5,28.5 - parent: 1668 - type: Transform - - uid: 1623 - components: - - pos: -4.5,15.5 - parent: 1668 - type: Transform -- proto: PlushieAtmosian - entities: - - uid: 6890 - components: - - pos: 17.549469,-29.409344 - parent: 1668 - type: Transform -- proto: PortableScrubber - entities: - - uid: 3696 - components: - - pos: -14.5,4.5 - parent: 1668 - type: Transform - - uid: 5764 - components: - - pos: 16.5,-31.5 - parent: 1668 - type: Transform - - uid: 5765 - components: - - pos: 17.5,-31.5 - parent: 1668 - type: Transform -- proto: PosterContrabandBeachStarYamamoto - entities: - - uid: 6638 - components: - - desc: A picture depicting a woman at the beach. Neat. - name: Beach Star Bratton! - type: MetaData - - pos: 15.5,33.5 - parent: 1668 - type: Transform -- proto: PosterContrabandC20r - entities: - - uid: 6734 - components: - - pos: 9.5,33.5 - parent: 1668 - type: Transform -- proto: PosterContrabandEAT - entities: - - uid: 6737 - components: - - pos: -12.5,-26.5 - parent: 1668 - type: Transform -- proto: PosterContrabandHighEffectEngineering - entities: - - uid: 4576 - components: - - pos: 22.5,-20.5 - parent: 1668 - type: Transform -- proto: PosterContrabandMissingGloves - entities: - - uid: 6945 - components: - - pos: 14.5,-21.5 - parent: 1668 - type: Transform -- proto: PosterContrabandRedRum - entities: - - uid: 6918 - components: - - pos: -4.5,25.5 - parent: 1668 - type: Transform -- proto: PosterContrabandRobustSoftdrinks - entities: - - uid: 6958 - components: - - pos: -7.5,-14.5 - parent: 1668 - type: Transform -- proto: PosterContrabandSpaceUp - entities: - - uid: 6746 - components: - - pos: 29.5,-7.5 - parent: 1668 - type: Transform -- proto: PosterContrabandTools - entities: - - uid: 6731 - components: - - pos: 22.5,-21.5 - parent: 1668 - type: Transform -- proto: PosterContrabandUnreadableAnnouncement - entities: - - uid: 6917 - components: - - pos: -8.5,18.5 - parent: 1668 - type: Transform -- proto: PosterContrabandVoteWeh - entities: - - uid: 6745 - components: - - pos: 29.5,6.5 - parent: 1668 - type: Transform -- proto: PosterLegitAnatomyPoster - entities: - - uid: 6733 - components: - - pos: 8.5,-6.5 - parent: 1668 - type: Transform -- proto: PosterLegitCarpMount - entities: - - uid: 6740 - components: - - pos: 8.5,33.5 - parent: 1668 - type: Transform - - uid: 6915 - components: - - pos: -9.5,7.5 - parent: 1668 - type: Transform -- proto: PosterLegitCleanliness - entities: - - uid: 6735 - components: - - pos: -15.5,-31.5 - parent: 1668 - type: Transform - - uid: 6736 - components: - - pos: -9.5,-20.5 - parent: 1668 - type: Transform -- proto: PosterLegitCohibaRobustoAd - entities: - - uid: 6732 - components: - - pos: 11.5,-24.5 - parent: 1668 - type: Transform -- proto: PosterLegitEnlist - entities: - - uid: 6633 - components: - - pos: 6.5,16.5 - parent: 1668 - type: Transform - - uid: 6639 - components: - - pos: 3.5,33.5 - parent: 1668 - type: Transform -- proto: PosterLegitHelpOthers - entities: - - uid: 6738 - components: - - pos: 11.5,-27.5 - parent: 1668 - type: Transform -- proto: PosterLegitHereForYourSafety - entities: - - uid: 6959 - components: - - pos: 5.5,-19.5 - parent: 1668 - type: Transform -- proto: PosterLegitHighClassMartini - entities: - - uid: 6739 - components: - - pos: 8.5,-20.5 - parent: 1668 - type: Transform -- proto: PosterLegitJustAWeekAway - entities: - - uid: 6741 - components: - - pos: 33.5,-0.5 - parent: 1668 - type: Transform -- proto: PosterLegitLoveIan - entities: - - uid: 6957 - components: - - pos: -6.5,-16.5 - parent: 1668 - type: Transform - - uid: 6960 - components: - - pos: -14.5,-2.5 - parent: 1668 - type: Transform -- proto: PosterLegitNanomichiAd - entities: - - uid: 3778 - components: - - pos: -25.5,6.5 - parent: 1668 - type: Transform -- proto: PosterLegitNanotrasenLogo - entities: - - uid: 469 - components: - - pos: -24.5,13.5 - parent: 1668 - type: Transform - - uid: 797 - components: - - pos: -2.5,-8.5 - parent: 1668 - type: Transform - - uid: 798 - components: - - pos: -2.5,-6.5 - parent: 1668 - type: Transform - - uid: 799 - components: - - pos: 1.5,-6.5 - parent: 1668 - type: Transform - - uid: 800 - components: - - pos: 1.5,-8.5 - parent: 1668 - type: Transform - - uid: 801 - components: - - pos: 3.5,-3.5 - parent: 1668 - type: Transform - - uid: 802 - components: - - pos: -4.5,-3.5 - parent: 1668 - type: Transform - - uid: 1464 - components: - - pos: 14.5,30.5 - parent: 1668 - type: Transform - - uid: 1861 - components: - - pos: -2.5,5.5 - parent: 1668 - type: Transform - - uid: 2053 - components: - - pos: 1.5,5.5 - parent: 1668 - type: Transform - - uid: 2054 - components: - - pos: -2.5,7.5 - parent: 1668 - type: Transform - - uid: 2055 - components: - - pos: 1.5,7.5 - parent: 1668 - type: Transform - - uid: 2454 - components: - - pos: 21.5,10.5 - parent: 1668 - type: Transform - - uid: 2455 - components: - - pos: 21.5,13.5 - parent: 1668 - type: Transform - - uid: 2456 - components: - - pos: 28.5,24.5 - parent: 1668 - type: Transform - - uid: 2457 - components: - - pos: 30.5,24.5 - parent: 1668 - type: Transform - - uid: 2458 - components: - - pos: 26.5,24.5 - parent: 1668 - type: Transform - - uid: 2459 - components: - - pos: 34.5,20.5 - parent: 1668 - type: Transform - - uid: 2460 - components: - - pos: 22.5,20.5 - parent: 1668 - type: Transform - - uid: 2918 - components: - - pos: -19.5,13.5 - parent: 1668 - type: Transform - - uid: 3450 - components: - - pos: -13.5,1.5 - parent: 1668 - type: Transform - - uid: 3603 - components: - - pos: -11.5,7.5 - parent: 1668 - type: Transform - - uid: 3604 - components: - - pos: -15.5,7.5 - parent: 1668 - type: Transform - - uid: 3605 - components: - - pos: -11.5,-2.5 - parent: 1668 - type: Transform - - uid: 3606 - components: - - pos: -17.5,-2.5 - parent: 1668 - type: Transform - - uid: 3777 - components: - - pos: -25.5,2.5 - parent: 1668 - type: Transform - - uid: 3867 - components: - - pos: -25.5,-2.5 - parent: 1668 - type: Transform - - uid: 4395 - components: - - pos: 1.5,-24.5 - parent: 1668 - type: Transform - - uid: 4635 - components: - - pos: -3.5,-14.5 - parent: 1668 - type: Transform - - uid: 4636 - components: - - pos: 2.5,-14.5 - parent: 1668 - type: Transform - - uid: 6446 - components: - - pos: 1.5,-38.5 - parent: 1668 - type: Transform - - uid: 6447 - components: - - pos: -3.5,-40.5 - parent: 1668 - type: Transform - - uid: 6448 - components: - - pos: 2.5,-40.5 - parent: 1668 - type: Transform - - uid: 6557 - components: - - pos: -17.5,-23.5 - parent: 1668 - type: Transform - - uid: 6558 - components: - - pos: -15.5,-27.5 - parent: 1668 - type: Transform - - uid: 6559 - components: - - pos: 1.5,-30.5 - parent: 1668 - type: Transform - - uid: 6560 - components: - - pos: -2.5,-30.5 - parent: 1668 - type: Transform - - uid: 6613 - components: - - pos: 4.5,30.5 - parent: 1668 - type: Transform - - uid: 6632 - components: - - pos: 13.5,16.5 - parent: 1668 - type: Transform - - uid: 6721 - components: - - pos: 16.5,1.5 - parent: 1668 - type: Transform - - uid: 6722 - components: - - pos: 8.5,-2.5 - parent: 1668 - type: Transform - - uid: 6882 - components: - - pos: -2.5,-20.5 - parent: 1668 - type: Transform -- proto: PosterLegitNTTGC - entities: - - uid: 6884 - components: - - pos: 18.5,17.5 - parent: 1668 - type: Transform -- proto: PosterLegitPeriodicTable - entities: - - uid: 6913 - components: - - pos: 5.5,-14.5 - parent: 1668 - type: Transform -- proto: PosterLegitRenault - entities: - - uid: 6962 - components: - - pos: -9.5,-6.5 - parent: 1668 - type: Transform -- proto: PosterLegitReportCrimes - entities: - - uid: 6743 - components: - - pos: -19.5,1.5 - parent: 1668 - type: Transform -- proto: PosterLegitSafetyEyeProtection - entities: - - uid: 6914 - components: - - pos: 5.5,-8.5 - parent: 1668 - type: Transform -- proto: PosterLegitSafetyMothDelam - entities: - - uid: 6912 - components: - - pos: 23.5,-12.5 - parent: 1668 - type: Transform -- proto: PosterLegitSafetyMothEpi - entities: - - uid: 6910 - components: - - pos: 12.5,-8.5 - parent: 1668 - type: Transform -- proto: PosterLegitSafetyMothHardhat - entities: - - uid: 6911 - components: - - pos: 14.5,-20.5 - parent: 1668 - type: Transform -- proto: PosterLegitSafetyMothMeth - entities: - - uid: 6909 - components: - - pos: 6.5,-12.5 - parent: 1668 - type: Transform -- proto: PosterLegitSafetyMothPiping - entities: - - uid: 6887 - components: - - pos: 14.5,-31.5 - parent: 1668 - type: Transform -- proto: PosterLegitSafetyReport - entities: - - uid: 6747 - components: - - pos: 23.5,-7.5 - parent: 1668 - type: Transform -- proto: PosterLegitSecWatch - entities: - - uid: 6781 - components: - - pos: 26.5,-12.5 - parent: 1668 - type: Transform -- proto: PosterLegitUeNo - entities: - - uid: 6744 - components: - - pos: 23.5,6.5 - parent: 1668 - type: Transform -- proto: PosterLegitVacation - entities: - - uid: 6885 - components: - - pos: 8.5,9.5 - parent: 1668 - type: Transform - - uid: 6886 - components: - - pos: 18.5,-4.5 - parent: 1668 - type: Transform - - uid: 6919 - components: - - pos: -4.5,28.5 - parent: 1668 - type: Transform - - uid: 6946 - components: - - pos: -8.5,-29.5 - parent: 1668 - type: Transform -- proto: PosterLegitWalk - entities: - - uid: 6961 - components: - - pos: 19.5,-7.5 - parent: 1668 - type: Transform -- proto: PosterLegitWorkForAFuture - entities: - - uid: 6742 - components: - - pos: 10.5,33.5 - parent: 1668 - type: Transform - - uid: 6916 - components: - - pos: -12.5,13.5 - parent: 1668 - type: Transform -- proto: PosterMapBagel - entities: - - uid: 6749 - components: - - pos: 3.5,5.5 - parent: 1668 - type: Transform -- proto: PosterMapDelta - entities: - - uid: 6750 - components: - - pos: 3.5,-6.5 - parent: 1668 - type: Transform -- proto: PosterMapLighthouse - entities: - - uid: 6754 - components: - - pos: -11.5,-20.5 - parent: 1668 - type: Transform -- proto: PosterMapMarathon - entities: - - uid: 6751 - components: - - pos: 6.5,-3.5 - parent: 1668 - type: Transform -- proto: PosterMapMetaRight - entities: - - uid: 6752 - components: - - pos: 9.5,-29.5 - parent: 1668 - type: Transform -- proto: PosterMapMoose - entities: - - uid: 6755 - components: - - pos: 10.5,-20.5 - parent: 1668 - type: Transform -- proto: PosterMapOrigin - entities: - - uid: 6759 - components: - - pos: -4.5,5.5 - parent: 1668 - type: Transform -- proto: PosterMapPillar - entities: - - uid: 6753 - components: - - pos: -5.5,-20.5 - parent: 1668 - type: Transform -- proto: PosterMapSaltern - entities: - - uid: 6756 - components: - - pos: -10.5,-29.5 - parent: 1668 - type: Transform -- proto: PosterMapSplit - entities: - - uid: 6757 - components: - - pos: -7.5,-3.5 - parent: 1668 - type: Transform -- proto: PosterMapWaystation - entities: - - uid: 6758 - components: - - pos: -4.5,-6.5 - parent: 1668 - type: Transform -- proto: PottedPlant15 - entities: - - uid: 3459 - components: - - pos: -24.5,12.5 - parent: 1668 - type: Transform -- proto: PottedPlant21 - entities: - - uid: 508 - components: - - pos: 24.5,-10.5 - parent: 1668 - type: Transform - - uid: 542 - components: - - pos: 19.5,-5.5 - parent: 1668 - type: Transform - - uid: 543 - components: - - pos: 19.5,4.5 - parent: 1668 - type: Transform - - uid: 602 - components: - - name: security plant - type: MetaData - - pos: 9.5,6.5 - parent: 1668 - type: Transform - - uid: 606 - components: - - pos: 9.5,-0.5 - parent: 1668 - type: Transform - - uid: 607 - components: - - pos: 15.5,-0.5 - parent: 1668 - type: Transform - - uid: 708 - components: - - pos: -6.5,-5.5 - parent: 1668 - type: Transform - - uid: 709 - components: - - pos: 5.5,4.5 - parent: 1668 - type: Transform - - uid: 803 - components: - - pos: -1.5,-13.5 - parent: 1668 - type: Transform - - uid: 2160 - components: - - pos: 0.5,16.5 - parent: 1668 - type: Transform - - uid: 2161 - components: - - pos: -1.5,16.5 - parent: 1668 - type: Transform - - uid: 2162 - components: - - pos: 2.5,12.5 - parent: 1668 - type: Transform - - uid: 2381 - components: - - pos: 22.5,10.5 - parent: 1668 - type: Transform - - uid: 2383 - components: - - pos: 34.5,10.5 - parent: 1668 - type: Transform - - uid: 2384 - components: - - pos: 24.5,21.5 - parent: 1668 - type: Transform - - uid: 2385 - components: - - pos: 32.5,21.5 - parent: 1668 - type: Transform - - uid: 2386 - components: - - pos: 18.5,18.5 - parent: 1668 - type: Transform - - uid: 2422 - components: - - pos: 28.5,23.5 - parent: 1668 - type: Transform - - uid: 3178 - components: - - pos: 6.5,10.5 - parent: 1668 - type: Transform - - uid: 3179 - components: - - pos: 13.5,15.5 - parent: 1668 - type: Transform - - uid: 3456 - components: - - pos: -20.5,2.5 - parent: 1668 - type: Transform - - uid: 3457 - components: - - pos: -21.5,6.5 - parent: 1668 - type: Transform - - uid: 3458 - components: - - pos: -24.5,8.5 - parent: 1668 - type: Transform - - uid: 3460 - components: - - pos: -25.5,-0.5 - parent: 1668 - type: Transform - - uid: 3461 - components: - - pos: -10.5,-0.5 - parent: 1668 - type: Transform - - uid: 3856 - components: - - pos: -18.5,-3.5 - parent: 1668 - type: Transform - - uid: 3857 - components: - - pos: -18.5,-9.5 - parent: 1668 - type: Transform - - uid: 3858 - components: - - pos: -23.5,-3.5 - parent: 1668 - type: Transform - - uid: 4624 - components: - - pos: -7.5,-19.5 - parent: 1668 - type: Transform - - uid: 4625 - components: - - pos: -5.5,-19.5 - parent: 1668 - type: Transform - - uid: 4626 - components: - - pos: 4.5,-19.5 - parent: 1668 - type: Transform - - uid: 4627 - components: - - pos: 6.5,-19.5 - parent: 1668 - type: Transform - - uid: 4628 - components: - - pos: 13.5,-18.5 - parent: 1668 - type: Transform - - uid: 4629 - components: - - pos: -14.5,-18.5 - parent: 1668 - type: Transform - - uid: 5375 - components: - - pos: 18.5,-20.5 - parent: 1668 - type: Transform - - uid: 5382 - components: - - pos: 17.5,-23.5 - parent: 1668 - type: Transform - - uid: 6561 - components: - - pos: -18.5,-27.5 - parent: 1668 - type: Transform - - uid: 6562 - components: - - pos: -3.5,-31.5 - parent: 1668 - type: Transform - - uid: 6563 - components: - - pos: 2.5,-31.5 - parent: 1668 - type: Transform -- proto: PottedPlant22 - entities: - - uid: 544 - components: - - pos: 19.5,-0.5 - parent: 1668 - type: Transform - - uid: 603 - components: - - name: security plant - type: MetaData - - pos: 13.5,4.5 - parent: 1668 - type: Transform - - uid: 706 - components: - - pos: -6.5,4.5 - parent: 1668 - type: Transform - - uid: 707 - components: - - pos: 5.5,-5.5 - parent: 1668 - type: Transform - - uid: 804 - components: - - pos: 0.5,-13.5 - parent: 1668 - type: Transform - - uid: 2193 - components: - - pos: -2.5,16.5 - parent: 1668 - type: Transform - - uid: 2387 - components: - - pos: 23.5,10.5 - parent: 1668 - type: Transform - - uid: 2388 - components: - - pos: 33.5,10.5 - parent: 1668 - type: Transform - - uid: 2389 - components: - - pos: 34.5,21.5 - parent: 1668 - type: Transform - - uid: 2390 - components: - - pos: 22.5,21.5 - parent: 1668 - type: Transform - - uid: 2391 - components: - - pos: 25.5,21.5 - parent: 1668 - type: Transform - - uid: 2392 - components: - - pos: 31.5,21.5 - parent: 1668 - type: Transform - - uid: 2393 - components: - - pos: 18.5,22.5 - parent: 1668 - type: Transform - - uid: 2394 - components: - - pos: 16.5,12.5 - parent: 1668 - type: Transform - - uid: 3180 - components: - - pos: 6.5,15.5 - parent: 1668 - type: Transform - - uid: 3181 - components: - - pos: 14.5,10.5 - parent: 1668 - type: Transform - - uid: 3453 - components: - - pos: -22.5,2.5 - parent: 1668 - type: Transform - - uid: 3454 - components: - - pos: -24.5,6.5 - parent: 1668 - type: Transform - - uid: 3455 - components: - - pos: -22.5,8.5 - parent: 1668 - type: Transform - - uid: 3853 - components: - - pos: -21.5,-9.5 - parent: 1668 - type: Transform - - uid: 3854 - components: - - pos: -19.5,-9.5 - parent: 1668 - type: Transform - - uid: 3855 - components: - - pos: -19.5,-3.5 - parent: 1668 - type: Transform - - uid: 4620 - components: - - pos: -4.5,-19.5 - parent: 1668 - type: Transform - - uid: 4621 - components: - - pos: 3.5,-19.5 - parent: 1668 - type: Transform - - uid: 4622 - components: - - pos: 7.5,-19.5 - parent: 1668 - type: Transform - - uid: 4623 - components: - - pos: -8.5,-19.5 - parent: 1668 - type: Transform - - uid: 5377 - components: - - pos: 27.5,-25.5 - parent: 1668 - type: Transform - - uid: 5383 - components: - - pos: 17.5,-27.5 - parent: 1668 - type: Transform - - uid: 6564 - components: - - pos: -14.5,-33.5 - parent: 1668 - type: Transform - - uid: 6565 - components: - - pos: 13.5,-33.5 - parent: 1668 - type: Transform -- proto: PottedPlantBioluminscent - entities: - - uid: 6566 - components: - - pos: -0.5,-41.5 - parent: 1668 - type: Transform -- proto: PowerCellRecharger - entities: - - uid: 1448 - components: - - pos: 12.5,6.5 - parent: 1668 - type: Transform - - uid: 1458 - components: - - pos: -4.5,-10.5 - parent: 1668 - type: Transform - - uid: 5376 - components: - - pos: 21.5,-21.5 - parent: 1668 - type: Transform - - uid: 5378 - components: - - pos: 26.5,-26.5 - parent: 1668 - type: Transform -- proto: PowerDrill - entities: - - uid: 3698 - components: - - pos: -16.54512,6.5009594 - parent: 1668 - type: Transform -- proto: Poweredlight - entities: - - uid: 510 - components: - - pos: 20.5,-10.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 523 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-8.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 524 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-8.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 525 - components: - - pos: 26.5,8.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 526 - components: - - pos: 21.5,8.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 527 - components: - - pos: 31.5,8.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 576 - components: - - pos: 17.5,-4.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 577 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-7.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 578 - components: - - rot: 3.141592653589793 rad - pos: 17.5,3.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 580 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-0.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 581 - components: - - rot: 3.141592653589793 rad - pos: 34.5,-6.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 582 - components: - - pos: 34.5,5.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 583 - components: - - pos: 23.5,5.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 584 - components: - - pos: 29.5,5.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 585 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-6.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 586 - components: - - rot: 3.141592653589793 rad - pos: 23.5,-6.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 587 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-3.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 588 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,2.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 737 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-13.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 738 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-9.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 739 - components: - - pos: 12.5,-11.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 740 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-9.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1384 - components: - - pos: 7.5,1.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1385 - components: - - pos: 17.5,1.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1386 - components: - - pos: -8.5,1.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1387 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-2.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1388 - components: - - pos: -2.5,1.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1389 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,4.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1390 - components: - - pos: 5.5,4.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1393 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-5.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1396 - components: - - pos: 1.5,4.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1481 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,6.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1484 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-9.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1485 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-13.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2151 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,16.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2152 - components: - - pos: -11.5,17.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2153 - components: - - rot: 3.141592653589793 rad - pos: -14.5,14.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2154 - components: - - pos: -8.5,12.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2155 - components: - - rot: 3.141592653589793 rad - pos: -9.5,8.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2156 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,8.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2157 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,13.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2158 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,15.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2159 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-16.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2219 - components: - - pos: -11.5,31.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2220 - components: - - pos: -7.5,31.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2221 - components: - - rot: 3.141592653589793 rad - pos: -8.5,19.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2222 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,28.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2223 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,22.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2351 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,1.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 2723 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,8.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2724 - components: - - pos: 4.5,14.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2725 - components: - - pos: 6.5,15.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2726 - components: - - pos: 13.5,15.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2727 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,13.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2729 - components: - - rot: 3.141592653589793 rad - pos: 23.5,10.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2730 - components: - - rot: 3.141592653589793 rad - pos: 33.5,10.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2731 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,19.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2732 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,15.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2733 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,19.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2734 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,15.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2735 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,20.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2736 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,20.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2739 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,20.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2908 - components: - - pos: 17.5,8.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 2931 - components: - - pos: 12.5,32.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2932 - components: - - pos: 6.5,32.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2933 - components: - - pos: 9.5,32.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2934 - components: - - rot: 3.141592653589793 rad - pos: 9.5,27.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2939 - components: - - pos: 9.5,25.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2940 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,26.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2941 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,26.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2942 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,19.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3135 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,6.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 3701 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,14.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3702 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,10.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3703 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,10.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3704 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,10.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3705 - components: - - pos: -21.5,6.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3706 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,4.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3707 - components: - - pos: -15.5,6.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3708 - components: - - pos: -11.5,6.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4167 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,6.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4168 - components: - - rot: 3.141592653589793 rad - pos: -33.5,3.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4169 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-2.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4170 - components: - - pos: -31.5,1.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4171 - components: - - pos: -27.5,0.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4172 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,4.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4174 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-1.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4175 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-9.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4176 - components: - - pos: -17.5,-3.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4177 - components: - - pos: -12.5,-3.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4178 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-9.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4329 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-9.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 4334 - components: - - pos: -26.5,-3.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 4340 - components: - - pos: -8.5,-4.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 4392 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-7.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 4396 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-7.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 4397 - components: - - pos: 7.5,-4.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 4399 - components: - - pos: 18.5,16.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 4400 - components: - - pos: 28.5,23.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 4402 - components: - - pos: 34.5,23.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 4499 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,6.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 4596 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-28.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4597 - components: - - pos: -8.5,-21.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4598 - components: - - pos: 7.5,-21.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4599 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-28.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4600 - components: - - pos: -3.5,-25.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4601 - components: - - pos: 2.5,-25.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4603 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-22.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4604 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-22.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4637 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-29.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4638 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-29.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4694 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-11.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5056 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5353 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-26.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5354 - components: - - pos: 14.5,-23.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5357 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-28.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5358 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-19.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5359 - components: - - pos: 13.5,-18.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5360 - components: - - pos: 18.5,-20.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5361 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-26.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5362 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-20.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5363 - components: - - rot: 3.141592653589793 rad - pos: 34.5,-13.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5364 - components: - - pos: 31.5,-15.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5365 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-13.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5366 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-16.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5367 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-14.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5408 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-32.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5452 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,8.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5582 - components: - - pos: 16.5,-29.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5826 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-19.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5827 - components: - - pos: -14.5,-18.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5828 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-19.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5829 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-19.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5830 - components: - - pos: -2.5,-9.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5831 - components: - - pos: 1.5,-9.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5847 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,33.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5849 - components: - - pos: 3.5,-15.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5850 - components: - - pos: -4.5,-15.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5851 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-16.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5852 - components: - - pos: -4.5,-9.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5853 - components: - - pos: 3.5,-9.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5884 - components: - - pos: 12.5,6.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5885 - components: - - pos: 9.5,1.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5886 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-2.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5933 - components: - - pos: -17.5,-31.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6102 - components: - - pos: -16.5,-23.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6154 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-25.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6155 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-29.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6228 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-13.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6463 - components: - - pos: -5.5,-39.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6464 - components: - - pos: 4.5,-39.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6465 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-41.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6466 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-43.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6467 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-39.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6468 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-39.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6469 - components: - - pos: -11.5,-30.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6470 - components: - - pos: 10.5,-30.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6471 - components: - - pos: 3.5,-31.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6472 - components: - - pos: -4.5,-31.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6473 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-37.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6474 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-37.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6609 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,18.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6723 - components: - - pos: -15.5,2.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6724 - components: - - pos: -11.5,2.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6725 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-1.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6730 - components: - - rot: 3.141592653589793 rad - pos: 28.5,10.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6760 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-7.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6761 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-7.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6766 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,6.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6784 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-22.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6874 - components: - - pos: 31.5,-28.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6875 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-31.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6883 - components: - - pos: 22.5,23.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6920 - components: - - pos: 2.5,18.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6921 - components: - - pos: -3.5,18.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6944 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,16.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound -- proto: PoweredlightLED - entities: - - uid: 5584 - components: - - pos: 22.5,-28.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: PoweredlightSodium - entities: - - uid: 3245 - components: - - rot: 3.141592653589793 rad - pos: -1.5,26.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5227 - components: - - rot: 3.141592653589793 rad - pos: 34.5,-26.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5229 - components: - - pos: 34.5,-20.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5878 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-12.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: PoweredSmallLight - entities: - - uid: 2050 - components: - - pos: -1.5,24.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2051 - components: - - pos: -2.5,21.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2052 - components: - - pos: 1.5,21.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2217 - components: - - pos: -15.5,28.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2218 - components: - - rot: 3.141592653589793 rad - pos: -15.5,24.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2740 - components: - - pos: 14.5,19.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2762 - components: - - pos: 16.5,22.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2831 - components: - - rot: 3.141592653589793 rad - pos: 5.5,21.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2929 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,31.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2930 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,31.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2935 - components: - - pos: 16.5,25.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2936 - components: - - pos: 16.5,28.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2937 - components: - - pos: 2.5,28.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2938 - components: - - pos: 2.5,25.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2943 - components: - - pos: 5.5,19.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4504 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-22.5 - parent: 1668 - type: Transform - - uid: 5368 - components: - - pos: 16.5,-17.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5369 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-15.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6782 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-28.5 - parent: 1668 - type: Transform -- proto: Protolathe - entities: - - uid: 5311 - components: - - pos: 24.5,-26.5 - parent: 1668 - type: Transform -- proto: Rack - entities: - - uid: 1662 - components: - - pos: -11.5,17.5 - parent: 1668 - type: Transform - - uid: 2167 - components: - - pos: -3.5,16.5 - parent: 1668 - type: Transform - - uid: 2195 - components: - - pos: -1.5,24.5 - parent: 1668 - type: Transform - - uid: 2200 - components: - - pos: 15.5,30.5 - parent: 1668 - type: Transform - - uid: 2201 - components: - - pos: 3.5,30.5 - parent: 1668 - type: Transform - - uid: 2889 - components: - - pos: 3.5,32.5 - parent: 1668 - type: Transform - - uid: 2890 - components: - - pos: 15.5,32.5 - parent: 1668 - type: Transform - - uid: 3117 - components: - - pos: 5.5,32.5 - parent: 1668 - type: Transform - - uid: 3118 - components: - - pos: 6.5,32.5 - parent: 1668 - type: Transform - - uid: 3119 - components: - - pos: 12.5,32.5 - parent: 1668 - type: Transform - - uid: 3120 - components: - - pos: 13.5,32.5 - parent: 1668 - type: Transform - - uid: 5327 - components: - - pos: 24.5,-13.5 - parent: 1668 - type: Transform - - uid: 5340 - components: - - pos: 21.5,-17.5 - parent: 1668 - type: Transform - - uid: 6449 - components: - - pos: -6.5,-40.5 - parent: 1668 - type: Transform - - uid: 6450 - components: - - pos: -6.5,-42.5 - parent: 1668 - type: Transform - - uid: 6451 - components: - - pos: 5.5,-42.5 - parent: 1668 - type: Transform - - uid: 6452 - components: - - pos: 5.5,-40.5 - parent: 1668 - type: Transform -- proto: RadioHandheld - entities: - - uid: 3903 - components: - - pos: -13.516307,-6.3210163 - parent: 1668 - type: Transform - - uid: 3904 - components: - - pos: -13.344432,-6.4147663 - parent: 1668 - type: Transform -- proto: Railing - entities: - - uid: 1075 - components: - - pos: 34.5,-4.5 - parent: 1668 - type: Transform - - uid: 1076 - components: - - rot: 3.141592653589793 rad - pos: 34.5,-4.5 - parent: 1668 - type: Transform - - uid: 1077 - components: - - rot: 3.141592653589793 rad - pos: 34.5,3.5 - parent: 1668 - type: Transform - - uid: 1078 - components: - - pos: 34.5,3.5 - parent: 1668 - type: Transform - - uid: 4434 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-25.5 - parent: 1668 - type: Transform - - uid: 4435 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-26.5 - parent: 1668 - type: Transform - - uid: 4436 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-25.5 - parent: 1668 - type: Transform - - uid: 4438 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-26.5 - parent: 1668 - type: Transform - - uid: 4439 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-26.5 - parent: 1668 - type: Transform - - uid: 4440 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-25.5 - parent: 1668 - type: Transform - - uid: 4454 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-29.5 - parent: 1668 - type: Transform - - uid: 4455 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-28.5 - parent: 1668 - type: Transform - - uid: 4456 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-29.5 - parent: 1668 - type: Transform - - uid: 4457 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-29.5 - parent: 1668 - type: Transform - - uid: 4460 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-28.5 - parent: 1668 - type: Transform - - uid: 4461 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-29.5 - parent: 1668 - type: Transform - - uid: 4462 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-28.5 - parent: 1668 - type: Transform - - uid: 4463 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-28.5 - parent: 1668 - type: Transform - - uid: 4464 - components: - - pos: 0.5,-27.5 - parent: 1668 - type: Transform - - uid: 4465 - components: - - pos: -1.5,-27.5 - parent: 1668 - type: Transform - - uid: 4468 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-25.5 - parent: 1668 - type: Transform - - uid: 4469 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-26.5 - parent: 1668 - type: Transform - - uid: 5216 - components: - - pos: 34.5,-20.5 - parent: 1668 - type: Transform - - uid: 5218 - components: - - pos: 32.5,-20.5 - parent: 1668 - type: Transform - - uid: 5220 - components: - - pos: 30.5,-20.5 - parent: 1668 - type: Transform - - uid: 5221 - components: - - rot: 3.141592653589793 rad - pos: 34.5,-26.5 - parent: 1668 - type: Transform - - uid: 5223 - components: - - rot: 3.141592653589793 rad - pos: 32.5,-26.5 - parent: 1668 - type: Transform - - uid: 5225 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-26.5 - parent: 1668 - type: Transform - - uid: 5226 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-25.5 - parent: 1668 - type: Transform - - uid: 5228 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-23.5 - parent: 1668 - type: Transform - - uid: 5230 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-21.5 - parent: 1668 - type: Transform - - uid: 6144 - components: - - pos: -22.5,-23.5 - parent: 1668 - type: Transform - - uid: 6145 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-27.5 - parent: 1668 - type: Transform -- proto: RailingCornerSmall - entities: - - uid: 4471 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-27.5 - parent: 1668 - type: Transform - - uid: 4473 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-27.5 - parent: 1668 - type: Transform - - uid: 5231 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-26.5 - parent: 1668 - type: Transform - - uid: 5232 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-20.5 - parent: 1668 - type: Transform -- proto: RandomDrinkBottle - entities: - - uid: 4607 - components: - - pos: 10.5,-27.5 - parent: 1668 - type: Transform - - uid: 4610 - components: - - pos: 8.5,-21.5 - parent: 1668 - type: Transform -- proto: RandomDrinkGlass - entities: - - uid: 4611 - components: - - pos: 7.5,-26.5 - parent: 1668 - type: Transform - - uid: 4612 - components: - - pos: 7.5,-25.5 - parent: 1668 - type: Transform - - uid: 4613 - components: - - pos: 3.5,-26.5 - parent: 1668 - type: Transform - - uid: 4614 - components: - - pos: -4.5,-26.5 - parent: 1668 - type: Transform -- proto: RandomFoodBakedSingle - entities: - - uid: 4616 - components: - - pos: -3.5,-29.5 - parent: 1668 - type: Transform -- proto: RandomFoodMeal - entities: - - uid: 4608 - components: - - pos: -8.5,-26.5 - parent: 1668 - type: Transform - - uid: 4609 - components: - - pos: -8.5,-27.5 - parent: 1668 - type: Transform -- proto: RandomFoodSingle - entities: - - uid: 4605 - components: - - pos: -4.5,-25.5 - parent: 1668 - type: Transform - - uid: 4606 - components: - - pos: 2.5,-28.5 - parent: 1668 - type: Transform -- proto: RCD - entities: - - uid: 6514 - components: - - pos: 5.473581,-41.167587 - parent: 1668 - type: Transform -- proto: RCDAmmo - entities: - - uid: 6515 - components: - - pos: 5.2691145,-41.308212 - parent: 1668 - type: Transform - - uid: 6516 - components: - - pos: 5.8159895,-41.323837 - parent: 1668 - type: Transform -- proto: ReagentContainerFlour - entities: - - uid: 4594 - components: - - pos: -10.626896,-28.3469 - parent: 1668 - type: Transform - - uid: 4595 - components: - - pos: -10.376896,-28.50315 - parent: 1668 - type: Transform -- proto: Recycler - entities: - - uid: 5908 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-31.5 - parent: 1668 - type: Transform - - links: - - 5907 - type: DeviceLinkSink -- proto: ReinforcedPlasmaWindow - entities: - - uid: 2791 - components: - - pos: 6.5,30.5 - parent: 1668 - type: Transform - - uid: 2812 - components: - - pos: 12.5,30.5 - parent: 1668 - type: Transform - - uid: 2813 - components: - - pos: 5.5,30.5 - parent: 1668 - type: Transform - - uid: 2877 - components: - - pos: 13.5,30.5 - parent: 1668 - type: Transform - - uid: 5108 - components: - - pos: 28.5,-25.5 - parent: 1668 - type: Transform - - uid: 5109 - components: - - pos: 28.5,-24.5 - parent: 1668 - type: Transform - - uid: 5110 - components: - - pos: 28.5,-23.5 - parent: 1668 - type: Transform - - uid: 5111 - components: - - pos: 28.5,-22.5 - parent: 1668 - type: Transform - - uid: 5112 - components: - - pos: 28.5,-21.5 - parent: 1668 - type: Transform - - uid: 5167 - components: - - pos: 31.5,-19.5 - parent: 1668 - type: Transform - - uid: 5168 - components: - - pos: 33.5,-19.5 - parent: 1668 - type: Transform -- proto: ReinforcedWindow - entities: - - uid: 50 - components: - - pos: 1.5,-3.5 - parent: 1668 - type: Transform - - uid: 51 - components: - - pos: 2.5,-3.5 - parent: 1668 - type: Transform - - uid: 52 - components: - - pos: 3.5,-2.5 - parent: 1668 - type: Transform - - uid: 53 - components: - - pos: 3.5,-1.5 - parent: 1668 - type: Transform - - uid: 54 - components: - - pos: 3.5,-0.5 - parent: 1668 - type: Transform - - uid: 55 - components: - - pos: 3.5,1.5 - parent: 1668 - type: Transform - - uid: 56 - components: - - pos: 3.5,2.5 - parent: 1668 - type: Transform - - uid: 57 - components: - - pos: 2.5,2.5 - parent: 1668 - type: Transform - - uid: 58 - components: - - pos: 0.5,2.5 - parent: 1668 - type: Transform - - uid: 59 - components: - - pos: -1.5,2.5 - parent: 1668 - type: Transform - - uid: 60 - components: - - pos: -0.5,2.5 - parent: 1668 - type: Transform - - uid: 61 - components: - - pos: -3.5,2.5 - parent: 1668 - type: Transform - - uid: 62 - components: - - pos: -4.5,2.5 - parent: 1668 - type: Transform - - uid: 63 - components: - - pos: -4.5,1.5 - parent: 1668 - type: Transform - - uid: 64 - components: - - pos: -4.5,-0.5 - parent: 1668 - type: Transform - - uid: 65 - components: - - pos: -4.5,-1.5 - parent: 1668 - type: Transform - - uid: 66 - components: - - pos: -4.5,-2.5 - parent: 1668 - type: Transform - - uid: 67 - components: - - pos: -3.5,-3.5 - parent: 1668 - type: Transform - - uid: 68 - components: - - pos: -2.5,-3.5 - parent: 1668 - type: Transform - - uid: 69 - components: - - pos: -0.5,-3.5 - parent: 1668 - type: Transform - - uid: 77 - components: - - pos: 6.5,-4.5 - parent: 1668 - type: Transform - - uid: 92 - components: - - pos: 2.5,5.5 - parent: 1668 - type: Transform - - uid: 93 - components: - - pos: 4.5,7.5 - parent: 1668 - type: Transform - - uid: 94 - components: - - pos: 3.5,6.5 - parent: 1668 - type: Transform - - uid: 95 - components: - - pos: 4.5,5.5 - parent: 1668 - type: Transform - - uid: 103 - components: - - pos: 8.5,5.5 - parent: 1668 - type: Transform - - uid: 104 - components: - - pos: 7.5,4.5 - parent: 1668 - type: Transform - - uid: 109 - components: - - pos: 18.5,-0.5 - parent: 1668 - type: Transform - - uid: 110 - components: - - pos: 16.5,-0.5 - parent: 1668 - type: Transform - - uid: 111 - components: - - pos: 8.5,-0.5 - parent: 1668 - type: Transform - - uid: 112 - components: - - pos: 6.5,-0.5 - parent: 1668 - type: Transform - - uid: 124 - components: - - pos: 8.5,20.5 - parent: 1668 - type: Transform - - uid: 134 - components: - - pos: 6.5,-5.5 - parent: 1668 - type: Transform - - uid: 135 - components: - - pos: 8.5,-4.5 - parent: 1668 - type: Transform - - uid: 136 - components: - - pos: 8.5,-5.5 - parent: 1668 - type: Transform - - uid: 150 - components: - - pos: -1.5,-24.5 - parent: 1668 - type: Transform - - uid: 151 - components: - - pos: 2.5,-6.5 - parent: 1668 - type: Transform - - uid: 152 - components: - - pos: 3.5,-7.5 - parent: 1668 - type: Transform - - uid: 153 - components: - - pos: 5.5,-7.5 - parent: 1668 - type: Transform - - uid: 161 - components: - - pos: 9.5,-8.5 - parent: 1668 - type: Transform - - uid: 162 - components: - - pos: 10.5,-8.5 - parent: 1668 - type: Transform - - uid: 163 - components: - - pos: 11.5,-8.5 - parent: 1668 - type: Transform - - uid: 164 - components: - - pos: 13.5,-8.5 - parent: 1668 - type: Transform - - uid: 165 - components: - - pos: 15.5,-8.5 - parent: 1668 - type: Transform - - uid: 166 - components: - - pos: 14.5,-8.5 - parent: 1668 - type: Transform - - uid: 167 - components: - - pos: 12.5,-9.5 - parent: 1668 - type: Transform - - uid: 168 - components: - - pos: 11.5,-10.5 - parent: 1668 - type: Transform - - uid: 169 - components: - - pos: 10.5,-10.5 - parent: 1668 - type: Transform - - uid: 170 - components: - - pos: 9.5,-10.5 - parent: 1668 - type: Transform - - uid: 171 - components: - - pos: 13.5,-10.5 - parent: 1668 - type: Transform - - uid: 172 - components: - - pos: 14.5,-10.5 - parent: 1668 - type: Transform - - uid: 173 - components: - - pos: 15.5,-10.5 - parent: 1668 - type: Transform - - uid: 183 - components: - - pos: 16.5,-9.5 - parent: 1668 - type: Transform - - uid: 190 - components: - - pos: 17.5,-5.5 - parent: 1668 - type: Transform - - uid: 206 - components: - - pos: 7.5,-10.5 - parent: 1668 - type: Transform - - uid: 207 - components: - - pos: 6.5,-9.5 - parent: 1668 - type: Transform - - uid: 214 - components: - - pos: 2.5,-10.5 - parent: 1668 - type: Transform - - uid: 215 - components: - - pos: 2.5,-13.5 - parent: 1668 - type: Transform - - uid: 220 - components: - - pos: 11.5,2.5 - parent: 1668 - type: Transform - - uid: 221 - components: - - pos: 13.5,2.5 - parent: 1668 - type: Transform - - uid: 222 - components: - - pos: 15.5,2.5 - parent: 1668 - type: Transform - - uid: 226 - components: - - pos: 7.5,-14.5 - parent: 1668 - type: Transform - - uid: 227 - components: - - pos: 6.5,-13.5 - parent: 1668 - type: Transform - - uid: 228 - components: - - pos: 7.5,-12.5 - parent: 1668 - type: Transform - - uid: 243 - components: - - pos: 17.5,4.5 - parent: 1668 - type: Transform - - uid: 244 - components: - - pos: 17.5,6.5 - parent: 1668 - type: Transform - - uid: 247 - components: - - pos: 16.5,3.5 - parent: 1668 - type: Transform - - uid: 259 - components: - - pos: 9.5,7.5 - parent: 1668 - type: Transform - - uid: 260 - components: - - pos: 10.5,7.5 - parent: 1668 - type: Transform - - uid: 261 - components: - - pos: 11.5,7.5 - parent: 1668 - type: Transform - - uid: 262 - components: - - pos: 13.5,7.5 - parent: 1668 - type: Transform - - uid: 263 - components: - - pos: 14.5,7.5 - parent: 1668 - type: Transform - - uid: 264 - components: - - pos: 11.5,9.5 - parent: 1668 - type: Transform - - uid: 265 - components: - - pos: 10.5,9.5 - parent: 1668 - type: Transform - - uid: 266 - components: - - pos: 9.5,9.5 - parent: 1668 - type: Transform - - uid: 267 - components: - - pos: 3.5,8.5 - parent: 1668 - type: Transform - - uid: 268 - components: - - pos: 14.5,9.5 - parent: 1668 - type: Transform - - uid: 269 - components: - - pos: 7.5,9.5 - parent: 1668 - type: Transform - - uid: 270 - components: - - pos: 6.5,9.5 - parent: 1668 - type: Transform - - uid: 271 - components: - - pos: 8.5,8.5 - parent: 1668 - type: Transform - - uid: 272 - components: - - pos: 12.5,8.5 - parent: 1668 - type: Transform - - uid: 275 - components: - - pos: 13.5,9.5 - parent: 1668 - type: Transform - - uid: 301 - components: - - pos: 11.5,-3.5 - parent: 1668 - type: Transform - - uid: 302 - components: - - pos: 13.5,-3.5 - parent: 1668 - type: Transform - - uid: 303 - components: - - pos: 15.5,-3.5 - parent: 1668 - type: Transform - - uid: 307 - components: - - pos: 0.5,-6.5 - parent: 1668 - type: Transform - - uid: 308 - components: - - pos: -1.5,-6.5 - parent: 1668 - type: Transform - - uid: 309 - components: - - pos: -1.5,-8.5 - parent: 1668 - type: Transform - - uid: 310 - components: - - pos: 0.5,-8.5 - parent: 1668 - type: Transform - - uid: 336 - components: - - pos: -7.5,-5.5 - parent: 1668 - type: Transform - - uid: 337 - components: - - pos: -7.5,-4.5 - parent: 1668 - type: Transform - - uid: 338 - components: - - pos: -3.5,-6.5 - parent: 1668 - type: Transform - - uid: 339 - components: - - pos: -4.5,-7.5 - parent: 1668 - type: Transform - - uid: 340 - components: - - pos: -6.5,-7.5 - parent: 1668 - type: Transform - - uid: 348 - components: - - pos: 21.5,6.5 - parent: 1668 - type: Transform - - uid: 355 - components: - - pos: 31.5,6.5 - parent: 1668 - type: Transform - - uid: 360 - components: - - pos: 24.5,7.5 - parent: 1668 - type: Transform - - uid: 361 - components: - - pos: 28.5,7.5 - parent: 1668 - type: Transform - - uid: 393 - components: - - pos: 31.5,-7.5 - parent: 1668 - type: Transform - - uid: 396 - components: - - pos: 23.5,-8.5 - parent: 1668 - type: Transform - - uid: 401 - components: - - pos: 29.5,-8.5 - parent: 1668 - type: Transform - - uid: 408 - components: - - pos: 21.5,-7.5 - parent: 1668 - type: Transform - - uid: 442 - components: - - pos: 35.5,1.5 - parent: 1668 - type: Transform - - uid: 443 - components: - - pos: 35.5,3.5 - parent: 1668 - type: Transform - - uid: 444 - components: - - pos: 35.5,5.5 - parent: 1668 - type: Transform - - uid: 445 - components: - - pos: 35.5,-2.5 - parent: 1668 - type: Transform - - uid: 446 - components: - - pos: 35.5,-4.5 - parent: 1668 - type: Transform - - uid: 447 - components: - - pos: 35.5,-6.5 - parent: 1668 - type: Transform - - uid: 462 - components: - - pos: 33.5,5.5 - parent: 1668 - type: Transform - - uid: 463 - components: - - pos: 33.5,3.5 - parent: 1668 - type: Transform - - uid: 464 - components: - - pos: 33.5,1.5 - parent: 1668 - type: Transform - - uid: 465 - components: - - pos: 33.5,-2.5 - parent: 1668 - type: Transform - - uid: 466 - components: - - pos: 33.5,-4.5 - parent: 1668 - type: Transform - - uid: 467 - components: - - pos: 33.5,-6.5 - parent: 1668 - type: Transform - - uid: 471 - components: - - pos: 34.5,-1.5 - parent: 1668 - type: Transform - - uid: 472 - components: - - pos: 34.5,0.5 - parent: 1668 - type: Transform - - uid: 670 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 1668 - type: Transform - - uid: 671 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 1668 - type: Transform - - uid: 676 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,4.5 - parent: 1668 - type: Transform - - uid: 677 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 1668 - type: Transform - - uid: 682 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,7.5 - parent: 1668 - type: Transform - - uid: 683 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,7.5 - parent: 1668 - type: Transform - - uid: 684 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,5.5 - parent: 1668 - type: Transform - - uid: 685 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,5.5 - parent: 1668 - type: Transform - - uid: 700 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,6.5 - parent: 1668 - type: Transform - - uid: 701 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,6.5 - parent: 1668 - type: Transform - - uid: 705 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,8.5 - parent: 1668 - type: Transform - - uid: 741 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-10.5 - parent: 1668 - type: Transform - - uid: 744 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-13.5 - parent: 1668 - type: Transform - - uid: 758 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-14.5 - parent: 1668 - type: Transform - - uid: 759 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-13.5 - parent: 1668 - type: Transform - - uid: 760 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-12.5 - parent: 1668 - type: Transform - - uid: 761 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-10.5 - parent: 1668 - type: Transform - - uid: 762 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-9.5 - parent: 1668 - type: Transform - - uid: 778 - components: - - pos: -2.5,-14.5 - parent: 1668 - type: Transform - - uid: 779 - components: - - pos: -1.5,-14.5 - parent: 1668 - type: Transform - - uid: 780 - components: - - pos: 0.5,-14.5 - parent: 1668 - type: Transform - - uid: 781 - components: - - pos: 1.5,-14.5 - parent: 1668 - type: Transform - - uid: 819 - components: - - pos: -10.5,32.5 - parent: 1668 - type: Transform - - uid: 828 - components: - - pos: 9.5,-17.5 - parent: 1668 - type: Transform - - uid: 829 - components: - - pos: 11.5,-16.5 - parent: 1668 - type: Transform - - uid: 830 - components: - - pos: 8.5,-16.5 - parent: 1668 - type: Transform - - uid: 831 - components: - - pos: 10.5,-17.5 - parent: 1668 - type: Transform - - uid: 1193 - components: - - pos: -8.5,32.5 - parent: 1668 - type: Transform - - uid: 1417 - components: - - pos: -4.5,11.5 - parent: 1668 - type: Transform - - uid: 1418 - components: - - pos: -3.5,17.5 - parent: 1668 - type: Transform - - uid: 1419 - components: - - pos: 2.5,17.5 - parent: 1668 - type: Transform - - uid: 1420 - components: - - pos: 3.5,16.5 - parent: 1668 - type: Transform - - uid: 1421 - components: - - pos: 3.5,14.5 - parent: 1668 - type: Transform - - uid: 1422 - components: - - pos: 3.5,12.5 - parent: 1668 - type: Transform - - uid: 1423 - components: - - pos: 3.5,10.5 - parent: 1668 - type: Transform - - uid: 1466 - components: - - pos: 16.5,-4.5 - parent: 1668 - type: Transform - - uid: 1518 - components: - - pos: -16.5,17.5 - parent: 1668 - type: Transform - - uid: 1519 - components: - - pos: -16.5,18.5 - parent: 1668 - type: Transform - - uid: 1520 - components: - - pos: -15.5,18.5 - parent: 1668 - type: Transform - - uid: 1521 - components: - - pos: -13.5,18.5 - parent: 1668 - type: Transform - - uid: 1522 - components: - - pos: -12.5,18.5 - parent: 1668 - type: Transform - - uid: 1539 - components: - - pos: -14.5,20.5 - parent: 1668 - type: Transform - - uid: 1540 - components: - - pos: -14.5,21.5 - parent: 1668 - type: Transform - - uid: 1541 - components: - - pos: -14.5,22.5 - parent: 1668 - type: Transform - - uid: 1542 - components: - - pos: -14.5,23.5 - parent: 1668 - type: Transform - - uid: 1543 - components: - - pos: -15.5,23.5 - parent: 1668 - type: Transform - - uid: 1544 - components: - - pos: -16.5,23.5 - parent: 1668 - type: Transform - - uid: 1545 - components: - - pos: -14.5,29.5 - parent: 1668 - type: Transform - - uid: 1546 - components: - - pos: -15.5,29.5 - parent: 1668 - type: Transform - - uid: 1547 - components: - - pos: -16.5,29.5 - parent: 1668 - type: Transform - - uid: 1548 - components: - - pos: -14.5,30.5 - parent: 1668 - type: Transform - - uid: 1549 - components: - - pos: -14.5,26.5 - parent: 1668 - type: Transform - - uid: 1550 - components: - - pos: -15.5,26.5 - parent: 1668 - type: Transform - - uid: 1551 - components: - - pos: -16.5,26.5 - parent: 1668 - type: Transform - - uid: 1566 - components: - - pos: -12.5,32.5 - parent: 1668 - type: Transform - - uid: 1572 - components: - - pos: -6.5,32.5 - parent: 1668 - type: Transform - - uid: 1999 - components: - - pos: 5.5,10.5 - parent: 1668 - type: Transform - - uid: 2000 - components: - - pos: 5.5,12.5 - parent: 1668 - type: Transform - - uid: 2001 - components: - - pos: 5.5,14.5 - parent: 1668 - type: Transform - - uid: 2242 - components: - - pos: 15.5,10.5 - parent: 1668 - type: Transform - - uid: 2243 - components: - - pos: 15.5,12.5 - parent: 1668 - type: Transform - - uid: 2244 - components: - - pos: 15.5,14.5 - parent: 1668 - type: Transform - - uid: 2276 - components: - - pos: 23.5,14.5 - parent: 1668 - type: Transform - - uid: 2277 - components: - - pos: 33.5,14.5 - parent: 1668 - type: Transform - - uid: 2278 - components: - - pos: 31.5,14.5 - parent: 1668 - type: Transform - - uid: 2279 - components: - - pos: 30.5,14.5 - parent: 1668 - type: Transform - - uid: 2280 - components: - - pos: 29.5,14.5 - parent: 1668 - type: Transform - - uid: 2281 - components: - - pos: 27.5,14.5 - parent: 1668 - type: Transform - - uid: 2282 - components: - - pos: 26.5,14.5 - parent: 1668 - type: Transform - - uid: 2283 - components: - - pos: 25.5,14.5 - parent: 1668 - type: Transform - - uid: 2337 - components: - - pos: 24.5,15.5 - parent: 1668 - type: Transform - - uid: 2338 - components: - - pos: 24.5,16.5 - parent: 1668 - type: Transform - - uid: 2339 - components: - - pos: 24.5,17.5 - parent: 1668 - type: Transform - - uid: 2341 - components: - - pos: 24.5,19.5 - parent: 1668 - type: Transform - - uid: 2505 - components: - - pos: 10.5,16.5 - parent: 1668 - type: Transform - - uid: 2506 - components: - - pos: 10.5,17.5 - parent: 1668 - type: Transform - - uid: 2507 - components: - - pos: 10.5,18.5 - parent: 1668 - type: Transform - - uid: 2509 - components: - - pos: 8.5,16.5 - parent: 1668 - type: Transform - - uid: 2556 - components: - - pos: 14.5,21.5 - parent: 1668 - type: Transform - - uid: 2755 - components: - - pos: 4.5,24.5 - parent: 1668 - type: Transform - - uid: 2771 - components: - - pos: 14.5,24.5 - parent: 1668 - type: Transform - - uid: 2777 - components: - - pos: 10.5,26.5 - parent: 1668 - type: Transform - - uid: 2778 - components: - - pos: 11.5,26.5 - parent: 1668 - type: Transform - - uid: 2779 - components: - - pos: 11.5,27.5 - parent: 1668 - type: Transform - - uid: 2780 - components: - - pos: 8.5,26.5 - parent: 1668 - type: Transform - - uid: 2781 - components: - - pos: 7.5,26.5 - parent: 1668 - type: Transform - - uid: 2782 - components: - - pos: 7.5,27.5 - parent: 1668 - type: Transform - - uid: 2786 - components: - - pos: 7.5,29.5 - parent: 1668 - type: Transform - - uid: 2787 - components: - - pos: 11.5,29.5 - parent: 1668 - type: Transform - - uid: 2858 - components: - - pos: 14.5,27.5 - parent: 1668 - type: Transform - - uid: 2859 - components: - - pos: 4.5,27.5 - parent: 1668 - type: Transform - - uid: 2906 - components: - - pos: 10.5,-15.5 - parent: 1668 - type: Transform - - uid: 3126 - components: - - pos: 7.5,7.5 - parent: 1668 - type: Transform - - uid: 3127 - components: - - pos: 6.5,7.5 - parent: 1668 - type: Transform - - uid: 3128 - components: - - pos: 9.5,-15.5 - parent: 1668 - type: Transform - - uid: 3248 - components: - - pos: 17.5,-32.5 - parent: 1668 - type: Transform - - uid: 3249 - components: - - pos: 16.5,-32.5 - parent: 1668 - type: Transform - - uid: 3250 - components: - - pos: 15.5,-32.5 - parent: 1668 - type: Transform - - uid: 3287 - components: - - pos: -10.5,1.5 - parent: 1668 - type: Transform - - uid: 3288 - components: - - pos: -11.5,1.5 - parent: 1668 - type: Transform - - uid: 3289 - components: - - pos: -12.5,1.5 - parent: 1668 - type: Transform - - uid: 3290 - components: - - pos: -14.5,1.5 - parent: 1668 - type: Transform - - uid: 3291 - components: - - pos: -15.5,1.5 - parent: 1668 - type: Transform - - uid: 3292 - components: - - pos: -16.5,1.5 - parent: 1668 - type: Transform - - uid: 3293 - components: - - pos: -13.5,2.5 - parent: 1668 - type: Transform - - uid: 3327 - components: - - pos: -27.5,8.5 - parent: 1668 - type: Transform - - uid: 3328 - components: - - pos: -27.5,9.5 - parent: 1668 - type: Transform - - uid: 3329 - components: - - pos: -27.5,12.5 - parent: 1668 - type: Transform - - uid: 3330 - components: - - pos: -27.5,11.5 - parent: 1668 - type: Transform - - uid: 3385 - components: - - pos: -28.5,-0.5 - parent: 1668 - type: Transform - - uid: 3386 - components: - - pos: -26.5,-0.5 - parent: 1668 - type: Transform - - uid: 3933 - components: - - pos: -33.5,7.5 - parent: 1668 - type: Transform - - uid: 3934 - components: - - pos: -32.5,7.5 - parent: 1668 - type: Transform - - uid: 3935 - components: - - pos: -30.5,7.5 - parent: 1668 - type: Transform - - uid: 3939 - components: - - pos: -34.5,3.5 - parent: 1668 - type: Transform - - uid: 3940 - components: - - pos: -34.5,4.5 - parent: 1668 - type: Transform - - uid: 3941 - components: - - pos: -34.5,5.5 - parent: 1668 - type: Transform - - uid: 3942 - components: - - pos: -34.5,6.5 - parent: 1668 - type: Transform - - uid: 3972 - components: - - pos: -34.5,-2.5 - parent: 1668 - type: Transform - - uid: 3973 - components: - - pos: -34.5,-0.5 - parent: 1668 - type: Transform - - uid: 3974 - components: - - pos: -34.5,1.5 - parent: 1668 - type: Transform - - uid: 3975 - components: - - pos: -32.5,1.5 - parent: 1668 - type: Transform - - uid: 3976 - components: - - pos: -32.5,-2.5 - parent: 1668 - type: Transform - - uid: 3977 - components: - - pos: -32.5,-0.5 - parent: 1668 - type: Transform - - uid: 3978 - components: - - pos: -33.5,-0.5 - parent: 1668 - type: Transform - - uid: 4222 - components: - - pos: -11.5,-17.5 - parent: 1668 - type: Transform - - uid: 4223 - components: - - pos: -10.5,-17.5 - parent: 1668 - type: Transform - - uid: 4224 - components: - - pos: -9.5,-16.5 - parent: 1668 - type: Transform - - uid: 4225 - components: - - pos: -12.5,-16.5 - parent: 1668 - type: Transform - - uid: 4265 - components: - - pos: 0.5,-20.5 - parent: 1668 - type: Transform - - uid: 4305 - components: - - pos: -4.5,-21.5 - parent: 1668 - type: Transform - - uid: 4306 - components: - - pos: -4.5,-22.5 - parent: 1668 - type: Transform - - uid: 4307 - components: - - pos: -4.5,-23.5 - parent: 1668 - type: Transform - - uid: 4308 - components: - - pos: -2.5,-23.5 - parent: 1668 - type: Transform - - uid: 4309 - components: - - pos: -2.5,-22.5 - parent: 1668 - type: Transform - - uid: 4310 - components: - - pos: -2.5,-21.5 - parent: 1668 - type: Transform - - uid: 4311 - components: - - pos: 1.5,-21.5 - parent: 1668 - type: Transform - - uid: 4312 - components: - - pos: 1.5,-22.5 - parent: 1668 - type: Transform - - uid: 4313 - components: - - pos: 1.5,-23.5 - parent: 1668 - type: Transform - - uid: 4314 - components: - - pos: 3.5,-23.5 - parent: 1668 - type: Transform - - uid: 4315 - components: - - pos: 3.5,-22.5 - parent: 1668 - type: Transform - - uid: 4316 - components: - - pos: 3.5,-21.5 - parent: 1668 - type: Transform - - uid: 4354 - components: - - pos: -5.5,-30.5 - parent: 1668 - type: Transform - - uid: 4355 - components: - - pos: -7.5,-30.5 - parent: 1668 - type: Transform - - uid: 4365 - components: - - pos: 4.5,-30.5 - parent: 1668 - type: Transform - - uid: 4367 - components: - - pos: 6.5,-30.5 - parent: 1668 - type: Transform - - uid: 4651 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-30.5 - parent: 1668 - type: Transform - - uid: 4652 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-30.5 - parent: 1668 - type: Transform - - uid: 4653 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-30.5 - parent: 1668 - type: Transform - - uid: 4663 - components: - - pos: -1.5,-34.5 - parent: 1668 - type: Transform - - uid: 4664 - components: - - pos: -0.5,-34.5 - parent: 1668 - type: Transform - - uid: 4665 - components: - - pos: 0.5,-34.5 - parent: 1668 - type: Transform - - uid: 4752 - components: - - pos: 17.5,-22.5 - parent: 1668 - type: Transform - - uid: 4753 - components: - - pos: 15.5,-22.5 - parent: 1668 - type: Transform - - uid: 5333 - components: - - pos: 21.5,-23.5 - parent: 1668 - type: Transform - - uid: 5334 - components: - - pos: 20.5,-23.5 - parent: 1668 - type: Transform - - uid: 5335 - components: - - pos: 19.5,-23.5 - parent: 1668 - type: Transform - - uid: 5880 - components: - - pos: -0.5,-40.5 - parent: 1668 - type: Transform - - uid: 5910 - components: - - pos: -17.5,-34.5 - parent: 1668 - type: Transform - - uid: 5911 - components: - - pos: -18.5,-34.5 - parent: 1668 - type: Transform - - uid: 5912 - components: - - pos: -19.5,-34.5 - parent: 1668 - type: Transform - - uid: 5914 - components: - - pos: -20.5,-31.5 - parent: 1668 - type: Transform - - uid: 5915 - components: - - pos: -20.5,-32.5 - parent: 1668 - type: Transform - - uid: 5916 - components: - - pos: -20.5,-33.5 - parent: 1668 - type: Transform - - uid: 5947 - components: - - pos: -15.5,-25.5 - parent: 1668 - type: Transform - - uid: 5948 - components: - - pos: -17.5,-25.5 - parent: 1668 - type: Transform - - uid: 5976 - components: - - pos: -23.5,-27.5 - parent: 1668 - type: Transform - - uid: 5977 - components: - - pos: -21.5,-27.5 - parent: 1668 - type: Transform - - uid: 5978 - components: - - pos: -21.5,-23.5 - parent: 1668 - type: Transform - - uid: 5979 - components: - - pos: -23.5,-23.5 - parent: 1668 - type: Transform - - uid: 5980 - components: - - pos: -23.5,-25.5 - parent: 1668 - type: Transform - - uid: 5981 - components: - - pos: -22.5,-25.5 - parent: 1668 - type: Transform - - uid: 5982 - components: - - pos: -21.5,-25.5 - parent: 1668 - type: Transform - - uid: 5990 - components: - - pos: -20.5,-21.5 - parent: 1668 - type: Transform - - uid: 5991 - components: - - pos: -19.5,-21.5 - parent: 1668 - type: Transform - - uid: 5992 - components: - - pos: -18.5,-21.5 - parent: 1668 - type: Transform - - uid: 6024 - components: - - pos: -2.5,-33.5 - parent: 1668 - type: Transform - - uid: 6025 - components: - - pos: -2.5,-32.5 - parent: 1668 - type: Transform - - uid: 6156 - components: - - pos: -2.5,-31.5 - parent: 1668 - type: Transform - - uid: 6157 - components: - - pos: 1.5,-33.5 - parent: 1668 - type: Transform - - uid: 6158 - components: - - pos: 1.5,-32.5 - parent: 1668 - type: Transform - - uid: 6159 - components: - - pos: 1.5,-31.5 - parent: 1668 - type: Transform - - uid: 6275 - components: - - pos: -0.5,-38.5 - parent: 1668 - type: Transform - - uid: 6288 - components: - - pos: -0.5,-46.5 - parent: 1668 - type: Transform - - uid: 6289 - components: - - pos: -0.5,-45.5 - parent: 1668 - type: Transform - - uid: 6290 - components: - - pos: -0.5,-44.5 - parent: 1668 - type: Transform - - uid: 6291 - components: - - pos: -2.5,-46.5 - parent: 1668 - type: Transform - - uid: 6295 - components: - - pos: -2.5,-44.5 - parent: 1668 - type: Transform - - uid: 6296 - components: - - pos: 1.5,-46.5 - parent: 1668 - type: Transform - - uid: 6300 - components: - - pos: 1.5,-44.5 - parent: 1668 - type: Transform - - uid: 6707 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-32.5 - parent: 1668 - type: Transform - - uid: 6770 - components: - - pos: -1.5,-20.5 - parent: 1668 - type: Transform - - uid: 6771 - components: - - pos: 0.5,-24.5 - parent: 1668 - type: Transform - - uid: 6783 - components: - - pos: 5.5,6.5 - parent: 1668 - type: Transform - - uid: 6847 - components: - - pos: 15.5,8.5 - parent: 1668 - type: Transform -- proto: RubberStampCentcom - entities: - - uid: 2917 - components: - - pos: 0.630217,1.1330963 - parent: 1668 - type: Transform - - uid: 3749 - components: - - pos: -20.5068,11.16328 - parent: 1668 - type: Transform -- proto: RubberStampQm - entities: - - uid: 2234 - components: - - pos: -12.516554,9.632545 - parent: 1668 - type: Transform -- proto: RubberStampTrader - entities: - - uid: 2233 - components: - - pos: -12.532179,11.55442 - parent: 1668 - type: Transform -- proto: SecurityTechFab - entities: - - uid: 2874 - components: - - pos: 9.5,32.5 - parent: 1668 - type: Transform -- proto: SheetPlasteel - entities: - - uid: 6510 - components: - - pos: 4.2860384,-39.471622 - parent: 1668 - type: Transform - - uid: 6511 - components: - - pos: 4.3329134,-39.549747 - parent: 1668 - type: Transform -- proto: SheetRGlass - entities: - - uid: 6512 - components: - - pos: 3.8797882,-39.455997 - parent: 1668 - type: Transform - - uid: 6513 - components: - - pos: 3.9579132,-39.565372 - parent: 1668 - type: Transform -- proto: SheetSteel - entities: - - uid: 6508 - components: - - pos: 3.4901893,-39.558212 - parent: 1668 - type: Transform - - uid: 6509 - components: - - pos: 3.5839393,-39.448837 - parent: 1668 - type: Transform -- proto: ShowcaseRobotAntique - entities: - - uid: 6931 - components: - - pos: -6.5,8.5 - parent: 1668 - type: Transform -- proto: ShuttersRadiationOpen - entities: - - uid: 6879 - components: - - pos: 21.5,-23.5 - parent: 1668 - type: Transform - - uid: 6880 - components: - - pos: 20.5,-23.5 - parent: 1668 - type: Transform - - uid: 6881 - components: - - pos: 19.5,-23.5 - parent: 1668 - type: Transform -- proto: SignalButton - entities: - - uid: 789 - components: - - pos: -4.5,-8.5 - parent: 1668 - type: Transform - - linkedPorts: - 786: - - Pressed: Toggle - 787: - - Pressed: Toggle - 788: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 1611 - components: - - pos: -14.5,23.5 - parent: 1668 - type: Transform - - linkedPorts: - 1607: - - Pressed: Toggle - 1610: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 1612 - components: - - pos: -14.5,29.5 - parent: 1668 - type: Transform - - linkedPorts: - 1608: - - Pressed: Toggle - 1609: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 1804 - components: - - pos: -2.5,19.5 - parent: 1668 - type: Transform - - linkedPorts: - 1552: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 2712 - components: - - pos: 7.5,17.5 - parent: 1668 - type: Transform - - linkedPorts: - 2150: - - Pressed: Toggle - 2149: - - Pressed: Toggle - 2148: - - Pressed: Toggle - 2147: - - Pressed: Toggle - 2146: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 2920 - components: - - pos: -16.5,-4.5 - parent: 1668 - type: Transform - - linkedPorts: - 3789: - - Pressed: Toggle - 3788: - - Pressed: Toggle - 3787: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 2927 - components: - - name: le funny admin button - type: MetaData - - pos: 4.5,32.5 - parent: 1668 - type: Transform - - linkedPorts: - 2926: - - Pressed: Toggle - 2925: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 2928 - components: - - name: le funny admin button - type: MetaData - - pos: 14.5,32.5 - parent: 1668 - type: Transform - - linkedPorts: - 2886: - - Pressed: Toggle - 2790: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 5242 - components: - - pos: 28.5,-20.5 - parent: 1668 - type: Transform - - linkedPorts: - 5238: - - Pressed: Toggle - 5237: - - Pressed: Toggle - 5236: - - Pressed: Toggle - 5235: - - Pressed: Toggle - 5234: - - Pressed: Toggle - 5239: - - Pressed: Toggle - 5241: - - Pressed: Toggle - 5240: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 6442 - components: - - pos: 1.5,-40.5 - parent: 1668 - type: Transform - - linkedPorts: - 6521: - - Pressed: Toggle - 6525: - - Pressed: Toggle - 6524: - - Pressed: Toggle - 6523: - - Pressed: Toggle - 6522: - - Pressed: Toggle - type: DeviceLinkSource -- proto: SignalButtonExt1 - entities: - - uid: 715 - components: - - name: East Checkpoint Doors - type: MetaData - - pos: 16.5,4.5 - parent: 1668 - type: Transform -- proto: SignalButtonExt2 - entities: - - uid: 721 - components: - - name: West Checkpoint Doors - type: MetaData - - pos: 8.5,4.5 - parent: 1668 - type: Transform -- proto: SignAtmosMinsky - entities: - - uid: 6888 - components: - - pos: 14.5,-29.5 - parent: 1668 - type: Transform -- proto: SignCargo - entities: - - uid: 2207 - components: - - pos: -4.5,13.5 - parent: 1668 - type: Transform -- proto: SignChemistry1 - entities: - - uid: 6764 - components: - - pos: 8.5,-10.5 - parent: 1668 - type: Transform -- proto: SignCloning - entities: - - uid: 6763 - components: - - pos: 13.5,-17.5 - parent: 1668 - type: Transform -- proto: SignDirectionalEng - entities: - - uid: 2882 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-17.5 - parent: 1668 - type: Transform - - uid: 6593 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-34.5 - parent: 1668 - type: Transform -- proto: SignDoors - entities: - - uid: 545 - components: - - pos: 18.5,-0.5 - parent: 1668 - type: Transform - - uid: 546 - components: - - pos: 16.5,-0.5 - parent: 1668 - type: Transform - - uid: 547 - components: - - pos: 8.5,-0.5 - parent: 1668 - type: Transform - - uid: 548 - components: - - pos: 6.5,-0.5 - parent: 1668 - type: Transform - - uid: 795 - components: - - pos: -1.5,-8.5 - parent: 1668 - type: Transform - - uid: 796 - components: - - pos: 0.5,-6.5 - parent: 1668 - type: Transform - - uid: 2269 - components: - - pos: 5.5,12.5 - parent: 1668 - type: Transform - - uid: 2270 - components: - - pos: 3.5,12.5 - parent: 1668 - type: Transform - - uid: 2271 - components: - - pos: 15.5,12.5 - parent: 1668 - type: Transform - - uid: 2272 - components: - - pos: -1.5,5.5 - parent: 1668 - type: Transform - - uid: 2273 - components: - - pos: 0.5,7.5 - parent: 1668 - type: Transform - - uid: 3607 - components: - - pos: -7.5,-0.5 - parent: 1668 - type: Transform - - uid: 3608 - components: - - pos: -9.5,-0.5 - parent: 1668 - type: Transform - - uid: 3609 - components: - - pos: -26.5,-0.5 - parent: 1668 - type: Transform - - uid: 3610 - components: - - pos: -28.5,-0.5 - parent: 1668 - type: Transform -- proto: SignElectricalMed - entities: - - uid: 1533 - components: - - pos: -1.5,17.5 - parent: 1668 - type: Transform - - uid: 5351 - components: - - pos: 18.5,-13.5 - parent: 1668 - type: Transform -- proto: SignEngineering - entities: - - uid: 4970 - components: - - pos: 18.5,-24.5 - parent: 1668 - type: Transform -- proto: SignGravity - entities: - - uid: 5215 - components: - - pos: 31.5,-14.5 - parent: 1668 - type: Transform -- proto: SignInterrogation - entities: - - uid: 2830 - components: - - pos: 6.5,23.5 - parent: 1668 - type: Transform -- proto: SignKiddiePlaque - entities: - - uid: 4384 - components: - - pos: -3.5,-20.5 - parent: 1668 - type: Transform - - uid: 4385 - components: - - pos: -13.5,12.5 - parent: 1668 - type: Transform - - uid: 4386 - components: - - pos: 21.5,16.5 - parent: 1668 - type: Transform - - uid: 4387 - components: - - pos: 1.5,2.5 - parent: 1668 - type: Transform -- proto: SignMedical - entities: - - uid: 736 - components: - - pos: 5.5,-6.5 - parent: 1668 - type: Transform - - uid: 6762 - components: - - pos: 16.5,-3.5 - parent: 1668 - type: Transform -- proto: SignPlaque - entities: - - uid: 3770 - components: - - pos: -18.5,13.5 - parent: 1668 - type: Transform - - uid: 4381 - components: - - pos: -3.5,-24.5 - parent: 1668 - type: Transform - - uid: 4382 - components: - - pos: 2.5,-20.5 - parent: 1668 - type: Transform - - uid: 6645 - components: - - pos: -1.5,-3.5 - parent: 1668 - type: Transform -- proto: SignRadiationMed - entities: - - uid: 5348 - components: - - pos: 33.5,-14.5 - parent: 1668 - type: Transform - - uid: 5349 - components: - - pos: 34.5,-19.5 - parent: 1668 - type: Transform - - uid: 5350 - components: - - pos: 30.5,-19.5 - parent: 1668 - type: Transform -- proto: SignSecureMed - entities: - - uid: 776 - components: - - pos: -6.5,-6.5 - parent: 1668 - type: Transform - - uid: 3451 - components: - - pos: -20.5,1.5 - parent: 1668 - type: Transform - - uid: 3713 - components: - - pos: -17.5,6.5 - parent: 1668 - type: Transform - - uid: 3714 - components: - - pos: -13.5,4.5 - parent: 1668 - type: Transform - - uid: 3871 - components: - - pos: -16.5,-8.5 - parent: 1668 - type: Transform - - uid: 3872 - components: - - pos: -9.5,-4.5 - parent: 1668 - type: Transform - - uid: 3873 - components: - - pos: -9.5,-8.5 - parent: 1668 - type: Transform - - uid: 4151 - components: - - pos: -28.5,-2.5 - parent: 1668 - type: Transform - - uid: 6443 - components: - - pos: -3.5,-46.5 - parent: 1668 - type: Transform - - uid: 6444 - components: - - pos: 2.5,-46.5 - parent: 1668 - type: Transform - - uid: 6445 - components: - - pos: -2.5,-38.5 - parent: 1668 - type: Transform -- proto: SignSecureSmall - entities: - - uid: 3868 - components: - - pos: -23.5,-2.5 - parent: 1668 - type: Transform - - uid: 3869 - components: - - pos: -19.5,-2.5 - parent: 1668 - type: Transform -- proto: SignSpace - entities: - - uid: 1792 - components: - - pos: -15.5,23.5 - parent: 1668 - type: Transform - - uid: 1793 - components: - - pos: -15.5,29.5 - parent: 1668 - type: Transform - - uid: 2741 - components: - - pos: 0.5,22.5 - parent: 1668 - type: Transform - - uid: 5956 - components: - - pos: -15.5,-25.5 - parent: 1668 - type: Transform - - uid: 5957 - components: - - pos: -17.5,-25.5 - parent: 1668 - type: Transform - - uid: 6231 - components: - - pos: -32.5,-0.5 - parent: 1668 - type: Transform - - uid: 6232 - components: - - pos: -21.5,-25.5 - parent: 1668 - type: Transform -- proto: Sink - entities: - - uid: 3425 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,14.5 - parent: 1668 - type: Transform -- proto: SinkWide - entities: - - uid: 6619 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-27.5 - parent: 1668 - type: Transform - - uid: 6620 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-22.5 - parent: 1668 - type: Transform - - uid: 6877 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-24.5 - parent: 1668 - type: Transform - - uid: 6878 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-24.5 - parent: 1668 - type: Transform -- proto: SMESBasic - entities: - - uid: 327 - components: - - pos: 27.5,-30.5 - parent: 1668 - type: Transform - - uid: 5078 - components: - - pos: 22.5,-17.5 - parent: 1668 - type: Transform - - uid: 5079 - components: - - pos: 22.5,-15.5 - parent: 1668 - type: Transform - - uid: 5080 - components: - - pos: 22.5,-16.5 - parent: 1668 - type: Transform -- proto: SmokingPipeFilledTobacco - entities: - - uid: 3753 - components: - - pos: -18.510391,8.646521 - parent: 1668 - type: Transform -- proto: SoapDeluxe - entities: - - uid: 3424 - components: - - pos: -20.47715,15.560694 - parent: 1668 - type: Transform -- proto: SoapOmega - entities: - - uid: 6553 - components: - - pos: -4.4900203,-39.32435 - parent: 1668 - type: Transform -- proto: soda_dispenser - entities: - - uid: 4427 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-25.5 - parent: 1668 - type: Transform - - uid: 4429 - components: - - pos: 7.5,-21.5 - parent: 1668 - type: Transform -- proto: SpawnVehicleSecway - entities: - - uid: 2823 - components: - - pos: 11.5,25.5 - parent: 1668 - type: Transform -- proto: SS13Memorial - entities: - - uid: 486 - components: - - pos: 26.5,7.5 - parent: 1668 - type: Transform -- proto: StasisBed - entities: - - uid: 609 - components: - - pos: 11.5,-7.5 - parent: 1668 - type: Transform -- proto: StatueVenusBlue - entities: - - uid: 4180 - components: - - pos: -20.5,-6.5 - parent: 1668 - type: Transform -- proto: StatueVenusRed - entities: - - uid: 4179 - components: - - pos: -21.5,-6.5 - parent: 1668 - type: Transform -- proto: Stool - entities: - - uid: 2913 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-17.5 - parent: 1668 - type: Transform - - uid: 4251 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-16.5 - parent: 1668 - type: Transform - - uid: 5058 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-15.5 - parent: 1668 - type: Transform -- proto: StoolBar - entities: - - uid: 4412 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-25.5 - parent: 1668 - type: Transform - - uid: 4413 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-26.5 - parent: 1668 - type: Transform - - uid: 4414 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-27.5 - parent: 1668 - type: Transform -- proto: StorageCanister - entities: - - uid: 3661 - components: - - pos: -14.5,6.5 - parent: 1668 - type: Transform -- proto: Stunbaton - entities: - - uid: 2746 - components: - - pos: 4.4667654,19.499214 - parent: 1668 - type: Transform -- proto: SubstationBasic - entities: - - uid: 1130 - components: - - pos: 15.5,-13.5 - parent: 1668 - type: Transform - - uid: 1802 - components: - - pos: -3.5,20.5 - parent: 1668 - type: Transform - - uid: 1803 - components: - - pos: 2.5,20.5 - parent: 1668 - type: Transform - - uid: 2199 - components: - - pos: 27.5,-31.5 - parent: 1668 - type: Transform - - uid: 2521 - components: - - pos: 15.5,19.5 - parent: 1668 - type: Transform - - uid: 3432 - components: - - pos: -15.5,6.5 - parent: 1668 - type: Transform - - uid: 3949 - components: - - pos: -27.5,6.5 - parent: 1668 - type: Transform - - uid: 4815 - components: - - pos: 17.5,-17.5 - parent: 1668 - type: Transform - - uid: 4816 - components: - - pos: 15.5,-17.5 - parent: 1668 - type: Transform - - uid: 5958 - components: - - pos: -16.5,-29.5 - parent: 1668 - type: Transform -- proto: SurveillanceCameraCommand - entities: - - uid: 6817 - components: - - pos: -1.5,-2.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Operator Room - type: SurveillanceCamera - - uid: 6818 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-3.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Conference Room - type: SurveillanceCamera - - uid: 6819 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-6.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HighSec Storage Room - type: SurveillanceCamera - - uid: 6820 - components: - - rot: 3.141592653589793 rad - pos: -21.5,6.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Command Reception - type: SurveillanceCamera - - uid: 6821 - components: - - rot: 3.141592653589793 rad - pos: -22.5,12.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Command Conference Room - type: SurveillanceCamera - - uid: 6822 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,9.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Command Bedroom - type: SurveillanceCamera - - uid: 6825 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-41.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: ERT West Room - type: SurveillanceCamera - - uid: 6826 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-41.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: ERT East Room - type: SurveillanceCamera - - uid: 6827 - components: - - pos: -0.5,-43.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: ERT Central Room - type: SurveillanceCamera -- proto: SurveillanceCameraEngineering - entities: - - uid: 5407 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-31.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmospherics - type: SurveillanceCamera - - uid: 6790 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-20.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Eng Lobby - type: SurveillanceCamera - - uid: 6791 - components: - - pos: 23.5,-18.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Power Supply - type: SurveillanceCamera - - uid: 6792 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-23.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Power Generation - type: SurveillanceCamera - - uid: 6793 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-12.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Grav Generation - type: SurveillanceCamera - - uid: 6810 - components: - - rot: 3.141592653589793 rad - pos: 0.5,21.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: North Substation - type: SurveillanceCamera - - uid: 6823 - components: - - pos: -15.5,4.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Command Substation - type: SurveillanceCamera - - uid: 6824 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,4.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: West Substation - type: SurveillanceCamera - - uid: 6828 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-15.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Medbay Substation - type: SurveillanceCamera - - uid: 6829 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-18.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Eng Substation - type: SurveillanceCamera -- proto: SurveillanceCameraGeneral - entities: - - uid: 6830 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,0.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals East - type: SurveillanceCamera - - uid: 6831 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-0.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals West - type: SurveillanceCamera - - uid: 6832 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-17.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway North - type: SurveillanceCamera - - uid: 6833 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-25.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway West - type: SurveillanceCamera - - uid: 6834 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-25.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Docking SouthWest - type: SurveillanceCamera - - uid: 6835 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-31.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway SouthWest - type: SurveillanceCamera - - uid: 6836 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-31.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway SouthEast - type: SurveillanceCamera - - uid: 6837 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-25.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway East - type: SurveillanceCamera - - uid: 6838 - components: - - pos: 8.5,-19.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway NorthEast - type: SurveillanceCamera - - uid: 6839 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-0.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Docking West - type: SurveillanceCamera - - uid: 6840 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,5.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Waiting Room West - type: SurveillanceCamera - - uid: 6841 - components: - - pos: -17.5,-1.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: West Hallway - type: SurveillanceCamera -- proto: SurveillanceCameraMedical - entities: - - uid: 6794 - components: - - pos: 11.5,-14.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Cloning - type: SurveillanceCamera - - uid: 6795 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-12.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Chemistry - type: SurveillanceCamera - - uid: 6796 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-4.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medical - type: SurveillanceCamera -- proto: SurveillanceCameraRouterCommand - entities: - - uid: 6864 - components: - - pos: 29.5,-29.5 - parent: 1668 - type: Transform -- proto: SurveillanceCameraRouterEngineering - entities: - - uid: 6871 - components: - - pos: 32.5,-29.5 - parent: 1668 - type: Transform -- proto: SurveillanceCameraRouterGeneral - entities: - - uid: 6869 - components: - - pos: 29.5,-30.5 - parent: 1668 - type: Transform -- proto: SurveillanceCameraRouterMedical - entities: - - uid: 6870 - components: - - pos: 33.5,-29.5 - parent: 1668 - type: Transform -- proto: SurveillanceCameraRouterScience - entities: - - uid: 6873 - components: - - pos: 30.5,-29.5 - parent: 1668 - type: Transform -- proto: SurveillanceCameraRouterSecurity - entities: - - uid: 6867 - components: - - pos: 31.5,-30.5 - parent: 1668 - type: Transform -- proto: SurveillanceCameraRouterService - entities: - - uid: 6872 - components: - - pos: 31.5,-29.5 - parent: 1668 - type: Transform -- proto: SurveillanceCameraRouterSupply - entities: - - uid: 6868 - components: - - pos: 30.5,-30.5 - parent: 1668 - type: Transform -- proto: SurveillanceCameraSecurity - entities: - - uid: 6765 - components: - - pos: -3.5,-12.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Service checkpoint - type: SurveillanceCamera - - uid: 6801 - components: - - rot: 3.141592653589793 rad - pos: 29.5,19.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Court room north - type: SurveillanceCamera - - uid: 6802 - components: - - rot: 3.141592653589793 rad - pos: 24.5,13.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Court room south - type: SurveillanceCamera - - uid: 6803 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,20.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Judge room - type: SurveillanceCamera - - uid: 6804 - components: - - rot: 3.141592653589793 rad - pos: 10.5,15.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Brig lobby - type: SurveillanceCamera - - uid: 6805 - components: - - rot: 3.141592653589793 rad - pos: 6.5,19.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Warden room - type: SurveillanceCamera - - uid: 6806 - components: - - rot: 3.141592653589793 rad - pos: 6.5,22.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Interrogation room - type: SurveillanceCamera - - uid: 6807 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,26.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Brig west - type: SurveillanceCamera - - uid: 6808 - components: - - pos: 9.5,27.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - type: SurveillanceCamera - - uid: 6809 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,26.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Brig east - type: SurveillanceCamera - - uid: 6815 - components: - - rot: 3.141592653589793 rad - pos: 13.5,1.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Medbay checkpoint - type: SurveillanceCamera - - uid: 6816 - components: - - pos: 26.5,-11.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Arrivals checkpoint - type: SurveillanceCamera -- proto: SurveillanceCameraService - entities: - - uid: 6797 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-24.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Bar - type: SurveillanceCamera - - uid: 6798 - components: - - pos: -0.5,-29.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Canteen - type: SurveillanceCamera - - uid: 6799 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-24.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Kitchen - type: SurveillanceCamera - - uid: 6800 - components: - - pos: -16.5,-33.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Jani closet - type: SurveillanceCamera -- proto: SurveillanceCameraSupply - entities: - - uid: 6811 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,11.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo lobby - type: SurveillanceCamera - - uid: 6812 - components: - - rot: 3.141592653589793 rad - pos: -11.5,17.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo command room - type: SurveillanceCamera - - uid: 6813 - components: - - rot: 3.141592653589793 rad - pos: -11.5,31.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo bay north - type: SurveillanceCamera - - uid: 6814 - components: - - pos: -7.5,19.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo bay south - type: SurveillanceCamera -- proto: SurveillanceCameraWirelessRouterConstructed - entities: - - uid: 6866 - components: - - pos: 32.5,-30.5 - parent: 1668 - type: Transform -- proto: SurveillanceCameraWirelessRouterEntertainment - entities: - - uid: 6865 - components: - - pos: 33.5,-30.5 - parent: 1668 - type: Transform -- proto: Table - entities: - - uid: 528 - components: - - pos: 21.5,5.5 - parent: 1668 - type: Transform - - uid: 529 - components: - - pos: 31.5,5.5 - parent: 1668 - type: Transform - - uid: 530 - components: - - pos: 21.5,-6.5 - parent: 1668 - type: Transform - - uid: 631 - components: - - pos: 9.5,1.5 - parent: 1668 - type: Transform - - uid: 632 - components: - - pos: 15.5,1.5 - parent: 1668 - type: Transform - - uid: 633 - components: - - pos: 15.5,-2.5 - parent: 1668 - type: Transform - - uid: 807 - components: - - pos: -2.5,-9.5 - parent: 1668 - type: Transform - - uid: 808 - components: - - pos: 1.5,-9.5 - parent: 1668 - type: Transform - - uid: 1180 - components: - - pos: 17.5,-15.5 - parent: 1668 - type: Transform - - uid: 1181 - components: - - pos: 16.5,-15.5 - parent: 1668 - type: Transform - - uid: 2043 - components: - - pos: -1.5,19.5 - parent: 1668 - type: Transform - - uid: 2163 - components: - - pos: -0.5,12.5 - parent: 1668 - type: Transform - - uid: 2164 - components: - - pos: -3.5,12.5 - parent: 1668 - type: Transform - - uid: 2165 - components: - - pos: 2.5,8.5 - parent: 1668 - type: Transform - - uid: 2166 - components: - - pos: 2.5,16.5 - parent: 1668 - type: Transform - - uid: 2210 - components: - - pos: -6.5,31.5 - parent: 1668 - type: Transform - - uid: 2211 - components: - - pos: -7.5,31.5 - parent: 1668 - type: Transform - - uid: 2212 - components: - - pos: -5.5,24.5 - parent: 1668 - type: Transform - - uid: 2213 - components: - - pos: -5.5,25.5 - parent: 1668 - type: Transform - - uid: 2214 - components: - - pos: -5.5,26.5 - parent: 1668 - type: Transform - - uid: 2215 - components: - - pos: -11.5,31.5 - parent: 1668 - type: Transform - - uid: 2216 - components: - - pos: -10.5,31.5 - parent: 1668 - type: Transform - - uid: 2826 - components: - - pos: 5.5,21.5 - parent: 1668 - type: Transform - - uid: 3142 - components: - - pos: 10.5,25.5 - parent: 1668 - type: Transform - - uid: 3143 - components: - - pos: 9.5,25.5 - parent: 1668 - type: Transform - - uid: 3182 - components: - - pos: 10.5,15.5 - parent: 1668 - type: Transform - - uid: 3183 - components: - - pos: 10.5,10.5 - parent: 1668 - type: Transform - - uid: 3260 - components: - - pos: 8.5,23.5 - parent: 1668 - type: Transform - - uid: 5244 - components: - - pos: 27.5,-23.5 - parent: 1668 - type: Transform - - uid: 5245 - components: - - pos: 27.5,-22.5 - parent: 1668 - type: Transform - - uid: 5247 - components: - - pos: 26.5,-22.5 - parent: 1668 - type: Transform - - uid: 5248 - components: - - pos: 26.5,-23.5 - parent: 1668 - type: Transform - - uid: 5329 - components: - - pos: 34.5,-17.5 - parent: 1668 - type: Transform - - uid: 5330 - components: - - pos: 34.5,-16.5 - parent: 1668 - type: Transform - - uid: 5339 - components: - - pos: 21.5,-15.5 - parent: 1668 - type: Transform - - uid: 5421 - components: - - pos: 16.5,-29.5 - parent: 1668 - type: Transform - - uid: 6151 - components: - - pos: -19.5,-22.5 - parent: 1668 - type: Transform - - uid: 6270 - components: - - pos: 14.5,-27.5 - parent: 1668 - type: Transform - - uid: 6571 - components: - - pos: -12.5,-33.5 - parent: 1668 - type: Transform - - uid: 6572 - components: - - pos: -8.5,-33.5 - parent: 1668 - type: Transform - - uid: 6581 - components: - - pos: -10.5,-30.5 - parent: 1668 - type: Transform - - uid: 6582 - components: - - pos: 9.5,-30.5 - parent: 1668 - type: Transform - - uid: 6583 - components: - - pos: 11.5,-33.5 - parent: 1668 - type: Transform - - uid: 6584 - components: - - pos: 7.5,-33.5 - parent: 1668 - type: Transform - - uid: 6624 - components: - - pos: 1.5,-25.5 - parent: 1668 - type: Transform - - uid: 6625 - components: - - pos: 0.5,-25.5 - parent: 1668 - type: Transform -- proto: TableCarpet - entities: - - uid: 699 - components: - - pos: 18.5,14.5 - parent: 1668 - type: Transform - - uid: 6595 - components: - - pos: 18.5,12.5 - parent: 1668 - type: Transform - - uid: 6606 - components: - - pos: 18.5,13.5 - parent: 1668 - type: Transform -- proto: TableReinforced - entities: - - uid: 98 - components: - - pos: 3.5,-9.5 - parent: 1668 - type: Transform - - uid: 99 - components: - - pos: 3.5,-10.5 - parent: 1668 - type: Transform - - uid: 126 - components: - - pos: 9.5,16.5 - parent: 1668 - type: Transform - - uid: 216 - components: - - pos: 2.5,-12.5 - parent: 1668 - type: Transform - - uid: 217 - components: - - pos: 2.5,-11.5 - parent: 1668 - type: Transform - - uid: 218 - components: - - pos: 12.5,2.5 - parent: 1668 - type: Transform - - uid: 219 - components: - - pos: 14.5,2.5 - parent: 1668 - type: Transform - - uid: 489 - components: - - pos: 27.5,-7.5 - parent: 1668 - type: Transform - - uid: 491 - components: - - pos: 25.5,-7.5 - parent: 1668 - type: Transform - - uid: 494 - components: - - pos: 26.5,-7.5 - parent: 1668 - type: Transform - - uid: 500 - components: - - pos: 24.5,-9.5 - parent: 1668 - type: Transform - - uid: 501 - components: - - pos: 24.5,-8.5 - parent: 1668 - type: Transform - - uid: 503 - components: - - pos: 28.5,-11.5 - parent: 1668 - type: Transform - - uid: 504 - components: - - pos: 27.5,-11.5 - parent: 1668 - type: Transform - - uid: 505 - components: - - pos: 26.5,-11.5 - parent: 1668 - type: Transform - - uid: 513 - components: - - pos: 20.5,-10.5 - parent: 1668 - type: Transform - - uid: 514 - components: - - pos: 21.5,-10.5 - parent: 1668 - type: Transform - - uid: 596 - components: - - pos: 10.5,3.5 - parent: 1668 - type: Transform - - uid: 597 - components: - - pos: 10.5,4.5 - parent: 1668 - type: Transform - - uid: 598 - components: - - pos: 12.5,6.5 - parent: 1668 - type: Transform - - uid: 599 - components: - - pos: 13.5,6.5 - parent: 1668 - type: Transform - - uid: 600 - components: - - pos: 14.5,6.5 - parent: 1668 - type: Transform - - uid: 601 - components: - - pos: 15.5,6.5 - parent: 1668 - type: Transform - - uid: 613 - components: - - pos: 14.5,-7.5 - parent: 1668 - type: Transform - - uid: 614 - components: - - pos: 15.5,-7.5 - parent: 1668 - type: Transform - - uid: 615 - components: - - pos: 10.5,-7.5 - parent: 1668 - type: Transform - - uid: 618 - components: - - pos: 9.5,-4.5 - parent: 1668 - type: Transform - - uid: 641 - components: - - pos: -1.5,0.5 - parent: 1668 - type: Transform - - uid: 642 - components: - - pos: -0.5,1.5 - parent: 1668 - type: Transform - - uid: 643 - components: - - pos: 0.5,1.5 - parent: 1668 - type: Transform - - uid: 644 - components: - - pos: 0.5,0.5 - parent: 1668 - type: Transform - - uid: 645 - components: - - pos: 2.5,-2.5 - parent: 1668 - type: Transform - - uid: 646 - components: - - pos: 1.5,-2.5 - parent: 1668 - type: Transform - - uid: 647 - components: - - pos: -2.5,-2.5 - parent: 1668 - type: Transform - - uid: 648 - components: - - pos: -3.5,-2.5 - parent: 1668 - type: Transform - - uid: 770 - components: - - pos: -3.5,-12.5 - parent: 1668 - type: Transform - - uid: 771 - components: - - pos: -3.5,-11.5 - parent: 1668 - type: Transform - - uid: 794 - components: - - pos: 3.5,-17.5 - parent: 1668 - type: Transform - - uid: 805 - components: - - pos: 4.5,-17.5 - parent: 1668 - type: Transform - - uid: 809 - components: - - pos: -6.5,-13.5 - parent: 1668 - type: Transform - - uid: 810 - components: - - pos: -6.5,-12.5 - parent: 1668 - type: Transform - - uid: 811 - components: - - pos: -4.5,-10.5 - parent: 1668 - type: Transform - - uid: 812 - components: - - pos: -4.5,-9.5 - parent: 1668 - type: Transform - - uid: 1194 - components: - - pos: 13.5,-12.5 - parent: 1668 - type: Transform - - uid: 1433 - components: - - pos: -1.5,1.5 - parent: 1668 - type: Transform - - uid: 1617 - components: - - pos: -4.5,9.5 - parent: 1668 - type: Transform - - uid: 1618 - components: - - pos: -4.5,10.5 - parent: 1668 - type: Transform - - uid: 1636 - components: - - pos: -9.5,8.5 - parent: 1668 - type: Transform - - uid: 1637 - components: - - pos: -8.5,8.5 - parent: 1668 - type: Transform - - uid: 1638 - components: - - pos: -7.5,8.5 - parent: 1668 - type: Transform - - uid: 1639 - components: - - pos: -12.5,9.5 - parent: 1668 - type: Transform - - uid: 1640 - components: - - pos: -12.5,10.5 - parent: 1668 - type: Transform - - uid: 1641 - components: - - pos: -12.5,11.5 - parent: 1668 - type: Transform - - uid: 1642 - components: - - pos: -8.5,12.5 - parent: 1668 - type: Transform - - uid: 1643 - components: - - pos: -9.5,12.5 - parent: 1668 - type: Transform - - uid: 1654 - components: - - pos: -15.5,14.5 - parent: 1668 - type: Transform - - uid: 1655 - components: - - pos: -14.5,14.5 - parent: 1668 - type: Transform - - uid: 1656 - components: - - pos: -15.5,17.5 - parent: 1668 - type: Transform - - uid: 1657 - components: - - pos: -14.5,17.5 - parent: 1668 - type: Transform - - uid: 2423 - components: - - pos: 23.5,15.5 - parent: 1668 - type: Transform - - uid: 2424 - components: - - pos: 23.5,16.5 - parent: 1668 - type: Transform - - uid: 2720 - components: - - pos: 4.5,18.5 - parent: 1668 - type: Transform - - uid: 2721 - components: - - pos: 4.5,19.5 - parent: 1668 - type: Transform - - uid: 2822 - components: - - pos: 10.5,27.5 - parent: 1668 - type: Transform - - uid: 2875 - components: - - pos: 8.5,29.5 - parent: 1668 - type: Transform - - uid: 2878 - components: - - pos: 8.5,32.5 - parent: 1668 - type: Transform - - uid: 2879 - components: - - pos: 10.5,32.5 - parent: 1668 - type: Transform - - uid: 2891 - components: - - pos: 2.5,30.5 - parent: 1668 - type: Transform - - uid: 2892 - components: - - pos: 2.5,31.5 - parent: 1668 - type: Transform - - uid: 2893 - components: - - pos: 2.5,32.5 - parent: 1668 - type: Transform - - uid: 2894 - components: - - pos: 16.5,30.5 - parent: 1668 - type: Transform - - uid: 2895 - components: - - pos: 16.5,31.5 - parent: 1668 - type: Transform - - uid: 2896 - components: - - pos: 16.5,32.5 - parent: 1668 - type: Transform - - uid: 3079 - components: - - pos: 8.5,17.5 - parent: 1668 - type: Transform - - uid: 3255 - components: - - pos: 16.5,19.5 - parent: 1668 - type: Transform - - uid: 3412 - components: - - pos: -18.5,4.5 - parent: 1668 - type: Transform - - uid: 3413 - components: - - pos: -19.5,4.5 - parent: 1668 - type: Transform - - uid: 3414 - components: - - pos: -20.5,4.5 - parent: 1668 - type: Transform - - uid: 3415 - components: - - pos: -20.5,5.5 - parent: 1668 - type: Transform - - uid: 3416 - components: - - pos: -20.5,6.5 - parent: 1668 - type: Transform - - uid: 3632 - components: - - pos: -12.5,4.5 - parent: 1668 - type: Transform - - uid: 3633 - components: - - pos: -11.5,4.5 - parent: 1668 - type: Transform - - uid: 3634 - components: - - pos: -10.5,4.5 - parent: 1668 - type: Transform - - uid: 3635 - components: - - pos: -10.5,6.5 - parent: 1668 - type: Transform - - uid: 3636 - components: - - pos: -11.5,6.5 - parent: 1668 - type: Transform - - uid: 3637 - components: - - pos: -12.5,6.5 - parent: 1668 - type: Transform - - uid: 3697 - components: - - pos: -16.5,6.5 - parent: 1668 - type: Transform - - uid: 3798 - components: - - pos: -13.5,-9.5 - parent: 1668 - type: Transform - - uid: 3799 - components: - - pos: -12.5,-9.5 - parent: 1668 - type: Transform - - uid: 3800 - components: - - pos: -12.5,-3.5 - parent: 1668 - type: Transform - - uid: 3801 - components: - - pos: -13.5,-3.5 - parent: 1668 - type: Transform - - uid: 3802 - components: - - pos: -13.5,-7.5 - parent: 1668 - type: Transform - - uid: 3803 - components: - - pos: -13.5,-6.5 - parent: 1668 - type: Transform - - uid: 3804 - components: - - pos: -13.5,-5.5 - parent: 1668 - type: Transform - - uid: 3805 - components: - - pos: -12.5,-7.5 - parent: 1668 - type: Transform - - uid: 3806 - components: - - pos: -12.5,-6.5 - parent: 1668 - type: Transform - - uid: 3807 - components: - - pos: -12.5,-5.5 - parent: 1668 - type: Transform - - uid: 3808 - components: - - pos: -19.5,-7.5 - parent: 1668 - type: Transform - - uid: 3809 - components: - - pos: -19.5,-6.5 - parent: 1668 - type: Transform - - uid: 3810 - components: - - pos: -19.5,-5.5 - parent: 1668 - type: Transform - - uid: 3811 - components: - - pos: -20.5,-5.5 - parent: 1668 - type: Transform - - uid: 3812 - components: - - pos: -21.5,-5.5 - parent: 1668 - type: Transform - - uid: 3813 - components: - - pos: -22.5,-5.5 - parent: 1668 - type: Transform - - uid: 3814 - components: - - pos: -22.5,-6.5 - parent: 1668 - type: Transform - - uid: 3815 - components: - - pos: -24.5,-7.5 - parent: 1668 - type: Transform - - uid: 3816 - components: - - pos: -24.5,-6.5 - parent: 1668 - type: Transform - - uid: 3817 - components: - - pos: -22.5,-7.5 - parent: 1668 - type: Transform - - uid: 3819 - components: - - pos: -21.5,-7.5 - parent: 1668 - type: Transform - - uid: 3820 - components: - - pos: -20.5,-7.5 - parent: 1668 - type: Transform - - uid: 3822 - components: - - pos: -24.5,-5.5 - parent: 1668 - type: Transform - - uid: 4256 - components: - - pos: 2.5,-15.5 - parent: 1668 - type: Transform - - uid: 4263 - components: - - pos: 2.5,-16.5 - parent: 1668 - type: Transform - - uid: 4344 - components: - - pos: 6.5,-24.5 - parent: 1668 - type: Transform - - uid: 4347 - components: - - pos: -8.5,-25.5 - parent: 1668 - type: Transform - - uid: 4348 - components: - - pos: -8.5,-26.5 - parent: 1668 - type: Transform - - uid: 4349 - components: - - pos: -8.5,-27.5 - parent: 1668 - type: Transform - - uid: 4350 - components: - - pos: 7.5,-27.5 - parent: 1668 - type: Transform - - uid: 4351 - components: - - pos: 7.5,-26.5 - parent: 1668 - type: Transform - - uid: 4352 - components: - - pos: 7.5,-25.5 - parent: 1668 - type: Transform - - uid: 4430 - components: - - pos: 3.5,-25.5 - parent: 1668 - type: Transform - - uid: 4431 - components: - - pos: 3.5,-26.5 - parent: 1668 - type: Transform - - uid: 4432 - components: - - pos: -4.5,-25.5 - parent: 1668 - type: Transform - - uid: 4433 - components: - - pos: -4.5,-26.5 - parent: 1668 - type: Transform - - uid: 4452 - components: - - pos: 2.5,-29.5 - parent: 1668 - type: Transform - - uid: 4459 - components: - - pos: -3.5,-29.5 - parent: 1668 - type: Transform - - uid: 4466 - components: - - pos: -3.5,-28.5 - parent: 1668 - type: Transform - - uid: 4467 - components: - - pos: 2.5,-28.5 - parent: 1668 - type: Transform - - uid: 4582 - components: - - pos: -10.5,-28.5 - parent: 1668 - type: Transform - - uid: 4583 - components: - - pos: -9.5,-28.5 - parent: 1668 - type: Transform - - uid: 4584 - components: - - pos: -11.5,-28.5 - parent: 1668 - type: Transform - - uid: 4586 - components: - - pos: -11.5,-26.5 - parent: 1668 - type: Transform - - uid: 4587 - components: - - pos: -11.5,-25.5 - parent: 1668 - type: Transform - - uid: 4588 - components: - - pos: -11.5,-24.5 - parent: 1668 - type: Transform - - uid: 4749 - components: - - pos: 16.5,-22.5 - parent: 1668 - type: Transform - - uid: 5312 - components: - - pos: 25.5,-26.5 - parent: 1668 - type: Transform - - uid: 5313 - components: - - pos: 26.5,-26.5 - parent: 1668 - type: Transform - - uid: 5315 - components: - - pos: 20.5,-22.5 - parent: 1668 - type: Transform - - uid: 5316 - components: - - pos: 21.5,-22.5 - parent: 1668 - type: Transform - - uid: 5317 - components: - - pos: 21.5,-21.5 - parent: 1668 - type: Transform - - uid: 6453 - components: - - pos: -6.5,-43.5 - parent: 1668 - type: Transform - - uid: 6454 - components: - - pos: -6.5,-41.5 - parent: 1668 - type: Transform - - uid: 6455 - components: - - pos: -6.5,-39.5 - parent: 1668 - type: Transform - - uid: 6456 - components: - - pos: -5.5,-39.5 - parent: 1668 - type: Transform - - uid: 6457 - components: - - pos: -4.5,-39.5 - parent: 1668 - type: Transform - - uid: 6458 - components: - - pos: 4.5,-39.5 - parent: 1668 - type: Transform - - uid: 6459 - components: - - pos: 5.5,-39.5 - parent: 1668 - type: Transform - - uid: 6460 - components: - - pos: 3.5,-39.5 - parent: 1668 - type: Transform - - uid: 6461 - components: - - pos: 5.5,-41.5 - parent: 1668 - type: Transform - - uid: 6462 - components: - - pos: 5.5,-43.5 - parent: 1668 - type: Transform - - uid: 6767 - components: - - pos: 2.5,-17.5 - parent: 1668 - type: Transform -- proto: TableWood - entities: - - uid: 2352 - components: - - pos: 32.5,15.5 - parent: 1668 - type: Transform - - uid: 2353 - components: - - pos: 32.5,16.5 - parent: 1668 - type: Transform - - uid: 2354 - components: - - pos: 32.5,17.5 - parent: 1668 - type: Transform - - uid: 2355 - components: - - pos: 32.5,18.5 - parent: 1668 - type: Transform - - uid: 2356 - components: - - pos: 32.5,19.5 - parent: 1668 - type: Transform - - uid: 2357 - components: - - pos: 27.5,20.5 - parent: 1668 - type: Transform - - uid: 2358 - components: - - pos: 28.5,20.5 - parent: 1668 - type: Transform - - uid: 2359 - components: - - pos: 29.5,20.5 - parent: 1668 - type: Transform - - uid: 2360 - components: - - pos: 29.5,21.5 - parent: 1668 - type: Transform - - uid: 2361 - components: - - pos: 27.5,21.5 - parent: 1668 - type: Transform - - uid: 2362 - components: - - pos: 30.5,20.5 - parent: 1668 - type: Transform - - uid: 2363 - components: - - pos: 26.5,20.5 - parent: 1668 - type: Transform - - uid: 2364 - components: - - pos: 22.5,23.5 - parent: 1668 - type: Transform - - uid: 2365 - components: - - pos: 34.5,23.5 - parent: 1668 - type: Transform - - uid: 2366 - components: - - pos: 30.5,23.5 - parent: 1668 - type: Transform - - uid: 2367 - components: - - pos: 29.5,23.5 - parent: 1668 - type: Transform - - uid: 2368 - components: - - pos: 27.5,23.5 - parent: 1668 - type: Transform - - uid: 2369 - components: - - pos: 26.5,23.5 - parent: 1668 - type: Transform - - uid: 2411 - components: - - pos: 27.5,17.5 - parent: 1668 - type: Transform - - uid: 2412 - components: - - pos: 26.5,17.5 - parent: 1668 - type: Transform - - uid: 2413 - components: - - pos: 30.5,17.5 - parent: 1668 - type: Transform - - uid: 2414 - components: - - pos: 29.5,17.5 - parent: 1668 - type: Transform - - uid: 2435 - components: - - pos: 28.5,10.5 - parent: 1668 - type: Transform - - uid: 2436 - components: - - pos: 34.5,11.5 - parent: 1668 - type: Transform - - uid: 2437 - components: - - pos: 34.5,12.5 - parent: 1668 - type: Transform - - uid: 2486 - components: - - pos: 20.5,20.5 - parent: 1668 - type: Transform - - uid: 2487 - components: - - pos: 19.5,20.5 - parent: 1668 - type: Transform - - uid: 2488 - components: - - pos: 19.5,21.5 - parent: 1668 - type: Transform - - uid: 3394 - components: - - pos: -25.5,8.5 - parent: 1668 - type: Transform - - uid: 3395 - components: - - pos: -26.5,8.5 - parent: 1668 - type: Transform - - uid: 3396 - components: - - pos: -26.5,9.5 - parent: 1668 - type: Transform - - uid: 3397 - components: - - pos: -26.5,11.5 - parent: 1668 - type: Transform - - uid: 3398 - components: - - pos: -26.5,12.5 - parent: 1668 - type: Transform - - uid: 3399 - components: - - pos: -25.5,12.5 - parent: 1668 - type: Transform - - uid: 3400 - components: - - pos: -15.5,12.5 - parent: 1668 - type: Transform - - uid: 3401 - components: - - pos: -14.5,12.5 - parent: 1668 - type: Transform - - uid: 3402 - components: - - pos: -16.5,12.5 - parent: 1668 - type: Transform - - uid: 3403 - components: - - pos: -16.5,8.5 - parent: 1668 - type: Transform - - uid: 3404 - components: - - pos: -19.5,10.5 - parent: 1668 - type: Transform - - uid: 3405 - components: - - pos: -20.5,10.5 - parent: 1668 - type: Transform - - uid: 3406 - components: - - pos: -20.5,11.5 - parent: 1668 - type: Transform - - uid: 3407 - components: - - pos: -20.5,12.5 - parent: 1668 - type: Transform - - uid: 3409 - components: - - pos: -18.5,8.5 - parent: 1668 - type: Transform - - uid: 3410 - components: - - pos: -24.5,4.5 - parent: 1668 - type: Transform - - uid: 3411 - components: - - pos: -23.5,4.5 - parent: 1668 - type: Transform - - uid: 3417 - components: - - pos: -23.5,2.5 - parent: 1668 - type: Transform - - uid: 3418 - components: - - pos: -18.5,2.5 - parent: 1668 - type: Transform - - uid: 3445 - components: - - pos: -23.5,10.5 - parent: 1668 - type: Transform - - uid: 3446 - components: - - pos: -23.5,11.5 - parent: 1668 - type: Transform - - uid: 3829 - components: - - pos: -26.5,-9.5 - parent: 1668 - type: Transform - - uid: 3830 - components: - - pos: -27.5,-9.5 - parent: 1668 - type: Transform - - uid: 3831 - components: - - pos: -27.5,-4.5 - parent: 1668 - type: Transform - - uid: 3832 - components: - - pos: -27.5,-3.5 - parent: 1668 - type: Transform - - uid: 3833 - components: - - pos: -26.5,-3.5 - parent: 1668 - type: Transform - - uid: 3834 - components: - - pos: -24.5,-3.5 - parent: 1668 - type: Transform - - uid: 3835 - components: - - pos: -17.5,-9.5 - parent: 1668 - type: Transform - - uid: 3836 - components: - - pos: -17.5,-3.5 - parent: 1668 - type: Transform - - uid: 4184 - components: - - pos: -27.5,-8.5 - parent: 1668 - type: Transform - - uid: 4369 - components: - - pos: -3.5,-23.5 - parent: 1668 - type: Transform - - uid: 4370 - components: - - pos: -3.5,-22.5 - parent: 1668 - type: Transform - - uid: 4371 - components: - - pos: -3.5,-21.5 - parent: 1668 - type: Transform - - uid: 4372 - components: - - pos: 2.5,-23.5 - parent: 1668 - type: Transform - - uid: 4373 - components: - - pos: 2.5,-22.5 - parent: 1668 - type: Transform - - uid: 4374 - components: - - pos: 2.5,-21.5 - parent: 1668 - type: Transform - - uid: 4418 - components: - - pos: 10.5,-27.5 - parent: 1668 - type: Transform - - uid: 4419 - components: - - pos: 8.5,-21.5 - parent: 1668 - type: Transform - - uid: 4420 - components: - - pos: 7.5,-21.5 - parent: 1668 - type: Transform - - uid: 4421 - components: - - pos: 6.5,-21.5 - parent: 1668 - type: Transform - - uid: 4422 - components: - - pos: 10.5,-21.5 - parent: 1668 - type: Transform - - uid: 4423 - components: - - pos: 10.5,-25.5 - parent: 1668 - type: Transform - - uid: 4424 - components: - - pos: 10.5,-24.5 - parent: 1668 - type: Transform - - uid: 6728 - components: - - pos: 18.5,10.5 - parent: 1668 - type: Transform -- proto: TelecomServerFilled - entities: - - uid: 3121 - components: - - pos: 4.5,-15.5 - parent: 1668 - type: Transform -- proto: Telecrystal5 - entities: - - uid: 3772 - components: - - pos: -10.611931,6.5603595 - parent: 1668 - type: Transform -- proto: TintedWindow - entities: - - uid: 2752 - components: - - pos: 7.5,22.5 - parent: 1668 - type: Transform - - uid: 2760 - components: - - pos: 7.5,21.5 - parent: 1668 - type: Transform -- proto: ToiletEmpty - entities: - - uid: 3420 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,15.5 - parent: 1668 - type: Transform -- proto: ToolboxMechanicalFilled - entities: - - uid: 3900 - components: - - pos: -12.610057,-7.2428913 - parent: 1668 - type: Transform -- proto: ToyFigurineAtmosTech - entities: - - uid: 6889 - components: - - pos: 16.377594,-29.299969 - parent: 1668 - type: Transform -- proto: ToyFigurineBartender - entities: - - uid: 6898 - components: - - pos: 6.5385118,-24.247501 - parent: 1668 - type: Transform -- proto: ToyFigurineCargoTech - entities: - - uid: 6897 - components: - - pos: -5.366757,26.262602 - parent: 1668 - type: Transform -- proto: ToyFigurineChef - entities: - - uid: 6899 - components: - - pos: -10.860091,-28.497501 - parent: 1668 - type: Transform -- proto: ToyFigurineChemist - entities: - - uid: 6901 - components: - - pos: 3.7089076,-9.834605 - parent: 1668 - type: Transform -- proto: ToyFigurineChiefEngineer - entities: - - uid: 6892 - components: - - pos: 27.221512,-23.216656 - parent: 1668 - type: Transform -- proto: ToyFigurineChiefMedicalOfficer - entities: - - uid: 6900 - components: - - pos: 13.343676,-12.106804 - parent: 1668 - type: Transform -- proto: ToyFigurineClown - entities: - - uid: 6907 - components: - - pos: -8.574588,-33.40033 - parent: 1668 - type: Transform -- proto: ToyFigurineEngineer - entities: - - uid: 6891 - components: - - pos: 26.955887,-23.01353 - parent: 1668 - type: Transform -- proto: ToyFigurineJanitor - entities: - - uid: 6905 - components: - - pos: -18.176952,-31.706894 - parent: 1668 - type: Transform -- proto: ToyFigurineLawyer - entities: - - uid: 6904 - components: - - pos: 19.429096,21.772528 - parent: 1668 - type: Transform -- proto: ToyFigurineLibrarian - entities: - - uid: 6903 - components: - - pos: 18.65788,12.674046 - parent: 1668 - type: Transform -- proto: ToyFigurineMedicalDoctor - entities: - - uid: 6902 - components: - - pos: 9.723116,-4.147105 - parent: 1668 - type: Transform -- proto: ToyFigurineMime - entities: - - uid: 6908 - components: - - pos: 9.395194,-30.337831 - parent: 1668 - type: Transform -- proto: ToyFigurineQuartermaster - entities: - - uid: 6896 - components: - - pos: -15.016072,14.885906 - parent: 1668 - type: Transform -- proto: ToyFigurineRatKing - entities: - - uid: 6906 - components: - - pos: 18.512383,13.407988 - parent: 1668 - type: Transform -- proto: ToyFigurineSalvage - entities: - - uid: 6895 - components: - - pos: -5.514065,26.593782 - parent: 1668 - type: Transform -- proto: ToyFigurineSecurity - entities: - - uid: 6893 - components: - - pos: 27.445951,-11.38564 - parent: 1668 - type: Transform -- proto: ToyFigurineWarden - entities: - - uid: 6894 - components: - - pos: 4.3459373,19.764877 - parent: 1668 - type: Transform -- proto: ToyRubberDuck - entities: - - uid: 3423 - components: - - pos: -20.47715,15.513819 - parent: 1668 - type: Transform -- proto: TrashBag - entities: - - uid: 6504 - components: - - pos: -4.433973,-39.464462 - parent: 1668 - type: Transform -- proto: trayScanner - entities: - - uid: 6547 - components: - - pos: 4.8927507,-39.44935 - parent: 1668 - type: Transform -- proto: TwoWayLever - entities: - - uid: 1588 - components: - - pos: -12.5,23.5 - parent: 1668 - type: Transform - - nextSignalLeft: True - type: TwoWayLever - - linkedPorts: - 1576: - - Left: Forward - - Right: Reverse - - Middle: Off - 1577: - - Left: Forward - - Right: Reverse - - Middle: Off - 1578: - - Left: Forward - - Right: Reverse - - Middle: Off - 1579: - - Left: Forward - - Right: Reverse - - Middle: Off - 1580: - - Left: Forward - - Right: Reverse - - Middle: Off - 1581: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - uid: 1589 - components: - - pos: -12.5,29.5 - parent: 1668 - type: Transform - - nextSignalLeft: True - type: TwoWayLever - - linkedPorts: - 1582: - - Left: Forward - - Right: Reverse - - Middle: Off - 1583: - - Left: Forward - - Right: Reverse - - Middle: Off - 1584: - - Left: Forward - - Right: Reverse - - Middle: Off - 1585: - - Left: Forward - - Right: Reverse - - Middle: Off - 1586: - - Left: Forward - - Right: Reverse - - Middle: Off - 1587: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - uid: 5906 - components: - - pos: -18.5,-32.5 - parent: 1668 - type: Transform - - linkedPorts: - 5902: - - Left: Forward - - Right: Reverse - - Middle: Off - 5903: - - Left: Forward - - Right: Reverse - - Middle: Off - 5904: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - uid: 5907 - components: - - pos: -18.5,-31.5 - parent: 1668 - type: Transform - - linkedPorts: - 5908: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource -- proto: VehicleKeySecway - entities: - - uid: 3149 - components: - - pos: 10.387553,25.600338 - parent: 1668 - type: Transform -- proto: VendingMachineAmmo - entities: - - uid: 2821 - components: - - flags: SessionSpecific - type: MetaData - - pos: 8.5,27.5 - parent: 1668 - type: Transform -- proto: VendingMachineBooze - entities: - - uid: 3408 - components: - - flags: SessionSpecific - type: MetaData - - pos: -20.5,8.5 - parent: 1668 - type: Transform - - uid: 4415 - components: - - flags: SessionSpecific - type: MetaData - - pos: 10.5,-26.5 - parent: 1668 - type: Transform - - uid: 4416 - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,-21.5 - parent: 1668 - type: Transform -- proto: VendingMachineCargoDrobe - entities: - - uid: 2209 - components: - - flags: SessionSpecific - type: MetaData - - pos: -5.5,31.5 - parent: 1668 - type: Transform -- proto: VendingMachineCart - entities: - - uid: 764 - components: - - flags: SessionSpecific - type: MetaData - - pos: -25.5,-9.5 - parent: 1668 - type: Transform -- proto: VendingMachineCentDrobe - entities: - - uid: 649 - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,1.5 - parent: 1668 - type: Transform - - uid: 2444 - components: - - flags: SessionSpecific - type: MetaData - - pos: -14.5,10.5 - parent: 1668 - type: Transform -- proto: VendingMachineChang - entities: - - uid: 1406 - components: - - flags: SessionSpecific - type: MetaData - - pos: -2.5,1.5 - parent: 1668 - type: Transform - - uid: 2445 - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,-15.5 - parent: 1668 - type: Transform - - uid: 6573 - components: - - flags: SessionSpecific - type: MetaData - - pos: -10.5,-33.5 - parent: 1668 - type: Transform -- proto: VendingMachineChefvend - entities: - - uid: 4262 - components: - - flags: SessionSpecific - type: MetaData - - pos: -10.5,-21.5 - parent: 1668 - type: Transform -- proto: VendingMachineChemicals - entities: - - uid: 3122 - components: - - flags: SessionSpecific - type: MetaData - - pos: 5.5,-9.5 - parent: 1668 - type: Transform -- proto: VendingMachineCigs - entities: - - uid: 2439 - components: - - flags: SessionSpecific - type: MetaData - - pos: 29.5,10.5 - parent: 1668 - type: Transform - - uid: 6574 - components: - - flags: SessionSpecific - type: MetaData - - pos: -5.5,-37.5 - parent: 1668 - type: Transform -- proto: VendingMachineClothing - entities: - - uid: 2738 - components: - - flags: SessionSpecific - type: MetaData - - pos: -5.5,-17.5 - parent: 1668 - type: Transform - - uid: 6150 - components: - - flags: SessionSpecific - type: MetaData - - pos: -20.5,-29.5 - parent: 1668 - type: Transform -- proto: VendingMachineCoffee - entities: - - uid: 2438 - components: - - flags: SessionSpecific - type: MetaData - - pos: 27.5,10.5 - parent: 1668 - type: Transform - - uid: 5463 - components: - - flags: SessionSpecific - type: MetaData - - pos: 15.5,-31.5 - parent: 1668 - type: Transform - - uid: 6591 - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,-33.5 - parent: 1668 - type: Transform -- proto: VendingMachineCola - entities: - - uid: 2192 - components: - - flags: SessionSpecific - type: MetaData - - pos: -0.5,13.5 - parent: 1668 - type: Transform - - uid: 4403 - components: - - flags: SessionSpecific - type: MetaData - - pos: 6.5,-15.5 - parent: 1668 - type: Transform -- proto: VendingMachineColaBlack - entities: - - uid: 6729 - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,-13.5 - parent: 1668 - type: Transform -- proto: VendingMachineCondiments - entities: - - uid: 6626 - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,-25.5 - parent: 1668 - type: Transform -- proto: VendingMachineDinnerware - entities: - - uid: 4578 - components: - - flags: SessionSpecific - type: MetaData - - pos: -11.5,-21.5 - parent: 1668 - type: Transform -- proto: VendingMachineDiscount - entities: - - uid: 3185 - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,10.5 - parent: 1668 - type: Transform - - uid: 6651 - components: - - flags: SessionSpecific - type: MetaData - - pos: -7.5,-15.5 - parent: 1668 - type: Transform -- proto: VendingMachineDonut - entities: - - uid: 3186 - components: - - flags: SessionSpecific - type: MetaData - - pos: 11.5,10.5 - parent: 1668 - type: Transform -- proto: VendingMachineEngivend - entities: - - uid: 5250 - components: - - flags: SessionSpecific - type: MetaData - - pos: 23.5,-20.5 - parent: 1668 - type: Transform -- proto: VendingMachineGames - entities: - - uid: 6608 - components: - - flags: SessionSpecific - type: MetaData - - pos: 16.5,10.5 - parent: 1668 - type: Transform -- proto: VendingMachineLawDrobe - entities: - - uid: 2489 - components: - - flags: SessionSpecific - type: MetaData - - pos: 18.5,23.5 - parent: 1668 - type: Transform -- proto: VendingMachineMedical - entities: - - uid: 617 - components: - - flags: SessionSpecific - type: MetaData - - pos: 15.5,-5.5 - parent: 1668 - type: Transform - - uid: 6601 - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,-12.5 - parent: 1668 - type: Transform -- proto: VendingMachinePwrGame - entities: - - uid: 6634 - components: - - flags: SessionSpecific - type: MetaData - - pos: -2.5,-15.5 - parent: 1668 - type: Transform -- proto: VendingMachineSalvage - entities: - - uid: 6938 - components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,31.5 - parent: 1668 - type: Transform -- proto: VendingMachineSec - entities: - - uid: 2820 - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,27.5 - parent: 1668 - type: Transform - - uid: 3259 - components: - - flags: SessionSpecific - type: MetaData - - pos: 8.5,21.5 - parent: 1668 - type: Transform - - uid: 5457 - components: - - flags: SessionSpecific - type: MetaData - - pos: 28.5,-10.5 - parent: 1668 - type: Transform -- proto: VendingMachineSnack - entities: - - uid: 4166 - components: - - flags: SessionSpecific - type: MetaData - - pos: -29.5,3.5 - parent: 1668 - type: Transform - - uid: 4401 - components: - - flags: SessionSpecific - type: MetaData - - pos: 7.5,-15.5 - parent: 1668 - type: Transform -- proto: VendingMachineSnackOrange - entities: - - uid: 6726 - components: - - flags: SessionSpecific - type: MetaData - - pos: -2.5,-13.5 - parent: 1668 - type: Transform -- proto: VendingMachineSnackTeal - entities: - - uid: 6727 - components: - - flags: SessionSpecific - type: MetaData - - pos: -0.5,11.5 - parent: 1668 - type: Transform -- proto: VendingMachineSoda - entities: - - uid: 6648 - components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,-15.5 - parent: 1668 - type: Transform -- proto: VendingMachineTankDispenserEngineering - entities: - - uid: 6556 - components: - - flags: SessionSpecific - type: MetaData - - pos: -2.5,-45.5 - parent: 1668 - type: Transform -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 2045 - components: - - flags: SessionSpecific - type: MetaData - - pos: -3.5,23.5 - parent: 1668 - type: Transform - - uid: 4286 - components: - - flags: SessionSpecific - type: MetaData - - pos: 10.5,29.5 - parent: 1668 - type: Transform - - uid: 6555 - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,-45.5 - parent: 1668 - type: Transform -- proto: VendingMachineTheater - entities: - - uid: 2448 - components: - - flags: SessionSpecific - type: MetaData - - pos: -5.5,-15.5 - parent: 1668 - type: Transform -- proto: VendingMachineWallMedical - entities: - - uid: 6615 - components: - - flags: SessionSpecific - type: MetaData - - pos: 6.5,-10.5 - parent: 1668 - type: Transform -- proto: VendingMachineWinter - entities: - - uid: 2443 - components: - - flags: SessionSpecific - type: MetaData - - pos: -5.5,-16.5 - parent: 1668 - type: Transform -- proto: VendingMachineYouTool - entities: - - uid: 5251 - components: - - flags: SessionSpecific - type: MetaData - - pos: 23.5,-21.5 - parent: 1668 - type: Transform -- proto: WallmountTelescreen - entities: - - uid: 3449 - components: - - pos: -18.5,7.5 - parent: 1668 - type: Transform -- proto: WallmountTelevision - entities: - - uid: 3452 - components: - - pos: -23.5,1.5 - parent: 1668 - type: Transform -- proto: WallRiveted - entities: - - uid: 1 - components: - - pos: 10.5,2.5 - parent: 1668 - type: Transform - - uid: 2 - components: - - pos: 9.5,2.5 - parent: 1668 - type: Transform - - uid: 3 - components: - - pos: 8.5,1.5 - parent: 1668 - type: Transform - - uid: 4 - components: - - pos: 8.5,2.5 - parent: 1668 - type: Transform - - uid: 5 - components: - - pos: 7.5,2.5 - parent: 1668 - type: Transform - - uid: 6 - components: - - pos: 6.5,2.5 - parent: 1668 - type: Transform - - uid: 7 - components: - - pos: 6.5,1.5 - parent: 1668 - type: Transform - - uid: 8 - components: - - pos: 10.5,-3.5 - parent: 1668 - type: Transform - - uid: 9 - components: - - pos: 9.5,-3.5 - parent: 1668 - type: Transform - - uid: 10 - components: - - pos: 8.5,-2.5 - parent: 1668 - type: Transform - - uid: 11 - components: - - pos: 8.5,-3.5 - parent: 1668 - type: Transform - - uid: 12 - components: - - pos: 7.5,-3.5 - parent: 1668 - type: Transform - - uid: 13 - components: - - pos: 6.5,-3.5 - parent: 1668 - type: Transform - - uid: 14 - components: - - pos: 6.5,-2.5 - parent: 1668 - type: Transform - - uid: 70 - components: - - pos: 3.5,-3.5 - parent: 1668 - type: Transform - - uid: 71 - components: - - pos: -4.5,-3.5 - parent: 1668 - type: Transform - - uid: 72 - components: - - pos: -1.5,-3.5 - parent: 1668 - type: Transform - - uid: 73 - components: - - pos: 0.5,-3.5 - parent: 1668 - type: Transform - - uid: 74 - components: - - pos: 1.5,2.5 - parent: 1668 - type: Transform - - uid: 75 - components: - - pos: -2.5,2.5 - parent: 1668 - type: Transform - - uid: 78 - components: - - pos: 5.5,7.5 - parent: 1668 - type: Transform - - uid: 86 - components: - - pos: 3.5,5.5 - parent: 1668 - type: Transform - - uid: 87 - components: - - pos: 3.5,7.5 - parent: 1668 - type: Transform - - uid: 88 - components: - - pos: 2.5,7.5 - parent: 1668 - type: Transform - - uid: 89 - components: - - pos: 1.5,7.5 - parent: 1668 - type: Transform - - uid: 90 - components: - - pos: 1.5,6.5 - parent: 1668 - type: Transform - - uid: 91 - components: - - pos: 1.5,5.5 - parent: 1668 - type: Transform - - uid: 96 - components: - - pos: 5.5,5.5 - parent: 1668 - type: Transform - - uid: 97 - components: - - pos: 8.5,6.5 - parent: 1668 - type: Transform - - uid: 100 - components: - - pos: 6.5,5.5 - parent: 1668 - type: Transform - - uid: 101 - components: - - pos: 6.5,4.5 - parent: 1668 - type: Transform - - uid: 102 - components: - - pos: 8.5,4.5 - parent: 1668 - type: Transform - - uid: 113 - components: - - pos: 16.5,1.5 - parent: 1668 - type: Transform - - uid: 114 - components: - - pos: 16.5,2.5 - parent: 1668 - type: Transform - - uid: 115 - components: - - pos: 17.5,2.5 - parent: 1668 - type: Transform - - uid: 116 - components: - - pos: 18.5,2.5 - parent: 1668 - type: Transform - - uid: 117 - components: - - pos: 18.5,1.5 - parent: 1668 - type: Transform - - uid: 118 - components: - - pos: 18.5,-2.5 - parent: 1668 - type: Transform - - uid: 119 - components: - - pos: 18.5,-3.5 - parent: 1668 - type: Transform - - uid: 120 - components: - - pos: 17.5,-3.5 - parent: 1668 - type: Transform - - uid: 121 - components: - - pos: 16.5,-2.5 - parent: 1668 - type: Transform - - uid: 122 - components: - - pos: 16.5,-3.5 - parent: 1668 - type: Transform - - uid: 137 - components: - - pos: 8.5,-6.5 - parent: 1668 - type: Transform - - uid: 138 - components: - - pos: 7.5,-6.5 - parent: 1668 - type: Transform - - uid: 139 - components: - - pos: 6.5,-6.5 - parent: 1668 - type: Transform - - uid: 140 - components: - - pos: 5.5,-6.5 - parent: 1668 - type: Transform - - uid: 141 - components: - - pos: 3.5,-6.5 - parent: 1668 - type: Transform - - uid: 142 - components: - - pos: 1.5,-6.5 - parent: 1668 - type: Transform - - uid: 143 - components: - - pos: 1.5,-7.5 - parent: 1668 - type: Transform - - uid: 144 - components: - - pos: 1.5,-8.5 - parent: 1668 - type: Transform - - uid: 145 - components: - - pos: 2.5,-8.5 - parent: 1668 - type: Transform - - uid: 146 - components: - - pos: 3.5,-8.5 - parent: 1668 - type: Transform - - uid: 147 - components: - - pos: 5.5,-8.5 - parent: 1668 - type: Transform - - uid: 148 - components: - - pos: 6.5,-8.5 - parent: 1668 - type: Transform - - uid: 149 - components: - - pos: 7.5,-8.5 - parent: 1668 - type: Transform - - uid: 174 - components: - - pos: 8.5,-7.5 - parent: 1668 - type: Transform - - uid: 175 - components: - - pos: 8.5,-8.5 - parent: 1668 - type: Transform - - uid: 176 - components: - - pos: 8.5,-9.5 - parent: 1668 - type: Transform - - uid: 177 - components: - - pos: 8.5,-10.5 - parent: 1668 - type: Transform - - uid: 178 - components: - - pos: 12.5,-10.5 - parent: 1668 - type: Transform - - uid: 179 - components: - - pos: 12.5,-8.5 - parent: 1668 - type: Transform - - uid: 180 - components: - - pos: 16.5,-7.5 - parent: 1668 - type: Transform - - uid: 181 - components: - - pos: 16.5,-8.5 - parent: 1668 - type: Transform - - uid: 182 - components: - - pos: 16.5,-10.5 - parent: 1668 - type: Transform - - uid: 184 - components: - - pos: 18.5,-7.5 - parent: 1668 - type: Transform - - uid: 185 - components: - - pos: 16.5,-5.5 - parent: 1668 - type: Transform - - uid: 187 - components: - - pos: 18.5,-4.5 - parent: 1668 - type: Transform - - uid: 188 - components: - - pos: 18.5,-5.5 - parent: 1668 - type: Transform - - uid: 208 - components: - - pos: 6.5,-10.5 - parent: 1668 - type: Transform - - uid: 209 - components: - - pos: 18.5,-8.5 - parent: 1668 - type: Transform - - uid: 210 - components: - - pos: 18.5,-10.5 - parent: 1668 - type: Transform - - uid: 211 - components: - - pos: 18.5,-9.5 - parent: 1668 - type: Transform - - uid: 213 - components: - - pos: 2.5,-9.5 - parent: 1668 - type: Transform - - uid: 229 - components: - - pos: 8.5,-14.5 - parent: 1668 - type: Transform - - uid: 230 - components: - - pos: 8.5,-13.5 - parent: 1668 - type: Transform - - uid: 231 - components: - - pos: 8.5,-12.5 - parent: 1668 - type: Transform - - uid: 232 - components: - - pos: 6.5,-14.5 - parent: 1668 - type: Transform - - uid: 233 - components: - - pos: 5.5,-14.5 - parent: 1668 - type: Transform - - uid: 234 - components: - - pos: 4.5,-14.5 - parent: 1668 - type: Transform - - uid: 235 - components: - - pos: 3.5,-14.5 - parent: 1668 - type: Transform - - uid: 236 - components: - - pos: 2.5,-14.5 - parent: 1668 - type: Transform - - uid: 237 - components: - - pos: 6.5,-12.5 - parent: 1668 - type: Transform - - uid: 248 - components: - - pos: 16.5,4.5 - parent: 1668 - type: Transform - - uid: 249 - components: - - pos: 18.5,3.5 - parent: 1668 - type: Transform - - uid: 250 - components: - - pos: 18.5,4.5 - parent: 1668 - type: Transform - - uid: 251 - components: - - pos: 18.5,6.5 - parent: 1668 - type: Transform - - uid: 252 - components: - - pos: 18.5,7.5 - parent: 1668 - type: Transform - - uid: 253 - components: - - pos: 18.5,8.5 - parent: 1668 - type: Transform - - uid: 256 - components: - - pos: 16.5,7.5 - parent: 1668 - type: Transform - - uid: 257 - components: - - pos: 16.5,6.5 - parent: 1668 - type: Transform - - uid: 258 - components: - - pos: 15.5,7.5 - parent: 1668 - type: Transform - - uid: 273 - components: - - pos: 8.5,7.5 - parent: 1668 - type: Transform - - uid: 274 - components: - - pos: 8.5,9.5 - parent: 1668 - type: Transform - - uid: 276 - components: - - pos: 12.5,9.5 - parent: 1668 - type: Transform - - uid: 277 - components: - - pos: 12.5,7.5 - parent: 1668 - type: Transform - - uid: 293 - components: - - pos: 3.5,9.5 - parent: 1668 - type: Transform - - uid: 294 - components: - - pos: 4.5,9.5 - parent: 1668 - type: Transform - - uid: 295 - components: - - pos: 5.5,9.5 - parent: 1668 - type: Transform - - uid: 296 - components: - - pos: 5.5,8.5 - parent: 1668 - type: Transform - - uid: 300 - components: - - pos: 15.5,9.5 - parent: 1668 - type: Transform - - uid: 315 - components: - - pos: -2.5,-6.5 - parent: 1668 - type: Transform - - uid: 316 - components: - - pos: -2.5,-7.5 - parent: 1668 - type: Transform - - uid: 317 - components: - - pos: -2.5,-8.5 - parent: 1668 - type: Transform - - uid: 318 - components: - - pos: -3.5,-8.5 - parent: 1668 - type: Transform - - uid: 319 - components: - - pos: -4.5,-8.5 - parent: 1668 - type: Transform - - uid: 320 - components: - - pos: -4.5,-6.5 - parent: 1668 - type: Transform - - uid: 321 - components: - - pos: -6.5,-6.5 - parent: 1668 - type: Transform - - uid: 322 - components: - - pos: -7.5,-6.5 - parent: 1668 - type: Transform - - uid: 323 - components: - - pos: -8.5,-6.5 - parent: 1668 - type: Transform - - uid: 324 - components: - - pos: -6.5,-8.5 - parent: 1668 - type: Transform - - uid: 325 - components: - - pos: -7.5,-8.5 - parent: 1668 - type: Transform - - uid: 326 - components: - - pos: -8.5,-8.5 - parent: 1668 - type: Transform - - uid: 328 - components: - - pos: -7.5,-3.5 - parent: 1668 - type: Transform - - uid: 329 - components: - - pos: -8.5,-3.5 - parent: 1668 - type: Transform - - uid: 330 - components: - - pos: -9.5,-3.5 - parent: 1668 - type: Transform - - uid: 331 - components: - - pos: -9.5,-4.5 - parent: 1668 - type: Transform - - uid: 332 - components: - - pos: -9.5,-5.5 - parent: 1668 - type: Transform - - uid: 333 - components: - - pos: -9.5,-6.5 - parent: 1668 - type: Transform - - uid: 334 - components: - - pos: -9.5,-7.5 - parent: 1668 - type: Transform - - uid: 335 - components: - - pos: -9.5,-8.5 - parent: 1668 - type: Transform - - uid: 346 - components: - - pos: 19.5,6.5 - parent: 1668 - type: Transform - - uid: 349 - components: - - pos: 22.5,6.5 - parent: 1668 - type: Transform - - uid: 350 - components: - - pos: 23.5,6.5 - parent: 1668 - type: Transform - - uid: 351 - components: - - pos: 24.5,6.5 - parent: 1668 - type: Transform - - uid: 352 - components: - - pos: 28.5,6.5 - parent: 1668 - type: Transform - - uid: 353 - components: - - pos: 29.5,6.5 - parent: 1668 - type: Transform - - uid: 354 - components: - - pos: 30.5,6.5 - parent: 1668 - type: Transform - - uid: 356 - components: - - pos: 32.5,6.5 - parent: 1668 - type: Transform - - uid: 357 - components: - - pos: 33.5,6.5 - parent: 1668 - type: Transform - - uid: 358 - components: - - pos: 34.5,6.5 - parent: 1668 - type: Transform - - uid: 359 - components: - - pos: 35.5,6.5 - parent: 1668 - type: Transform - - uid: 362 - components: - - pos: 18.5,9.5 - parent: 1668 - type: Transform - - uid: 363 - components: - - pos: 19.5,9.5 - parent: 1668 - type: Transform - - uid: 364 - components: - - pos: 20.5,9.5 - parent: 1668 - type: Transform - - uid: 365 - components: - - pos: 21.5,9.5 - parent: 1668 - type: Transform - - uid: 366 - components: - - pos: 22.5,9.5 - parent: 1668 - type: Transform - - uid: 367 - components: - - pos: 23.5,9.5 - parent: 1668 - type: Transform - - uid: 368 - components: - - pos: 24.5,9.5 - parent: 1668 - type: Transform - - uid: 369 - components: - - pos: 25.5,9.5 - parent: 1668 - type: Transform - - uid: 370 - components: - - pos: 26.5,9.5 - parent: 1668 - type: Transform - - uid: 371 - components: - - pos: 27.5,9.5 - parent: 1668 - type: Transform - - uid: 372 - components: - - pos: 28.5,9.5 - parent: 1668 - type: Transform - - uid: 373 - components: - - pos: 29.5,9.5 - parent: 1668 - type: Transform - - uid: 374 - components: - - pos: 30.5,9.5 - parent: 1668 - type: Transform - - uid: 375 - components: - - pos: 31.5,9.5 - parent: 1668 - type: Transform - - uid: 376 - components: - - pos: 32.5,9.5 - parent: 1668 - type: Transform - - uid: 377 - components: - - pos: 33.5,9.5 - parent: 1668 - type: Transform - - uid: 378 - components: - - pos: 34.5,9.5 - parent: 1668 - type: Transform - - uid: 379 - components: - - pos: 35.5,9.5 - parent: 1668 - type: Transform - - uid: 380 - components: - - pos: 35.5,8.5 - parent: 1668 - type: Transform - - uid: 381 - components: - - pos: 35.5,7.5 - parent: 1668 - type: Transform - - uid: 382 - components: - - pos: 34.5,8.5 - parent: 1668 - type: Transform - - uid: 383 - components: - - pos: 34.5,7.5 - parent: 1668 - type: Transform - - uid: 384 - components: - - pos: 28.5,8.5 - parent: 1668 - type: Transform - - uid: 385 - components: - - pos: 24.5,8.5 - parent: 1668 - type: Transform - - uid: 386 - components: - - pos: 35.5,-7.5 - parent: 1668 - type: Transform - - uid: 387 - components: - - pos: 35.5,-8.5 - parent: 1668 - type: Transform - - uid: 388 - components: - - pos: 35.5,-9.5 - parent: 1668 - type: Transform - - uid: 389 - components: - - pos: 34.5,-9.5 - parent: 1668 - type: Transform - - uid: 390 - components: - - pos: 34.5,-8.5 - parent: 1668 - type: Transform - - uid: 391 - components: - - pos: 34.5,-7.5 - parent: 1668 - type: Transform - - uid: 392 - components: - - pos: 33.5,-7.5 - parent: 1668 - type: Transform - - uid: 394 - components: - - pos: 32.5,-7.5 - parent: 1668 - type: Transform - - uid: 395 - components: - - pos: 30.5,-7.5 - parent: 1668 - type: Transform - - uid: 397 - components: - - pos: 32.5,-9.5 - parent: 1668 - type: Transform - - uid: 398 - components: - - pos: 23.5,-9.5 - parent: 1668 - type: Transform - - uid: 399 - components: - - pos: 30.5,-9.5 - parent: 1668 - type: Transform - - uid: 400 - components: - - pos: 28.5,-7.5 - parent: 1668 - type: Transform - - uid: 402 - components: - - pos: 33.5,-9.5 - parent: 1668 - type: Transform - - uid: 403 - components: - - pos: 29.5,-9.5 - parent: 1668 - type: Transform - - uid: 404 - components: - - pos: 31.5,-9.5 - parent: 1668 - type: Transform - - uid: 405 - components: - - pos: 29.5,-7.5 - parent: 1668 - type: Transform - - uid: 406 - components: - - pos: 19.5,-7.5 - parent: 1668 - type: Transform - - uid: 407 - components: - - pos: 20.5,-7.5 - parent: 1668 - type: Transform - - uid: 409 - components: - - pos: 22.5,-7.5 - parent: 1668 - type: Transform - - uid: 410 - components: - - pos: 23.5,-7.5 - parent: 1668 - type: Transform - - uid: 411 - components: - - pos: 24.5,-7.5 - parent: 1668 - type: Transform - - uid: 412 - components: - - pos: 22.5,-9.5 - parent: 1668 - type: Transform - - uid: 413 - components: - - pos: 21.5,-9.5 - parent: 1668 - type: Transform - - uid: 414 - components: - - pos: 20.5,-9.5 - parent: 1668 - type: Transform - - uid: 415 - components: - - pos: 19.5,-9.5 - parent: 1668 - type: Transform - - uid: 416 - components: - - pos: 23.5,-10.5 - parent: 1668 - type: Transform - - uid: 417 - components: - - pos: 29.5,-10.5 - parent: 1668 - type: Transform - - uid: 418 - components: - - pos: 29.5,-11.5 - parent: 1668 - type: Transform - - uid: 419 - components: - - pos: 29.5,-12.5 - parent: 1668 - type: Transform - - uid: 420 - components: - - pos: 28.5,-12.5 - parent: 1668 - type: Transform - - uid: 421 - components: - - pos: 27.5,-12.5 - parent: 1668 - type: Transform - - uid: 422 - components: - - pos: 26.5,-12.5 - parent: 1668 - type: Transform - - uid: 423 - components: - - pos: 25.5,-12.5 - parent: 1668 - type: Transform - - uid: 424 - components: - - pos: 24.5,-12.5 - parent: 1668 - type: Transform - - uid: 425 - components: - - pos: 23.5,-12.5 - parent: 1668 - type: Transform - - uid: 426 - components: - - pos: 22.5,-12.5 - parent: 1668 - type: Transform - - uid: 427 - components: - - pos: 21.5,-12.5 - parent: 1668 - type: Transform - - uid: 428 - components: - - pos: 20.5,-12.5 - parent: 1668 - type: Transform - - uid: 429 - components: - - pos: 19.5,-12.5 - parent: 1668 - type: Transform - - uid: 430 - components: - - pos: 18.5,-12.5 - parent: 1668 - type: Transform - - uid: 431 - components: - - pos: 35.5,-1.5 - parent: 1668 - type: Transform - - uid: 432 - components: - - pos: 35.5,-0.5 - parent: 1668 - type: Transform - - uid: 433 - components: - - pos: 35.5,0.5 - parent: 1668 - type: Transform - - uid: 468 - components: - - pos: 33.5,-1.5 - parent: 1668 - type: Transform - - uid: 470 - components: - - pos: 33.5,0.5 - parent: 1668 - type: Transform - - uid: 658 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-2.5 - parent: 1668 - type: Transform - - uid: 659 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-2.5 - parent: 1668 - type: Transform - - uid: 660 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,1.5 - parent: 1668 - type: Transform - - uid: 661 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,2.5 - parent: 1668 - type: Transform - - uid: 662 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,2.5 - parent: 1668 - type: Transform - - uid: 663 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,2.5 - parent: 1668 - type: Transform - - uid: 664 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,1.5 - parent: 1668 - type: Transform - - uid: 665 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,3.5 - parent: 1668 - type: Transform - - uid: 666 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,4.5 - parent: 1668 - type: Transform - - uid: 667 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,5.5 - parent: 1668 - type: Transform - - uid: 668 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,5.5 - parent: 1668 - type: Transform - - uid: 669 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,5.5 - parent: 1668 - type: Transform - - uid: 686 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,5.5 - parent: 1668 - type: Transform - - uid: 687 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,5.5 - parent: 1668 - type: Transform - - uid: 689 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,6.5 - parent: 1668 - type: Transform - - uid: 690 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,7.5 - parent: 1668 - type: Transform - - uid: 691 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,7.5 - parent: 1668 - type: Transform - - uid: 692 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,7.5 - parent: 1668 - type: Transform - - uid: 693 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,6.5 - parent: 1668 - type: Transform - - uid: 694 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,7.5 - parent: 1668 - type: Transform - - uid: 695 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,7.5 - parent: 1668 - type: Transform - - uid: 696 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,7.5 - parent: 1668 - type: Transform - - uid: 697 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,5.5 - parent: 1668 - type: Transform - - uid: 698 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,7.5 - parent: 1668 - type: Transform - - uid: 724 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-9.5 - parent: 1668 - type: Transform - - uid: 726 - components: - - pos: 14.5,-12.5 - parent: 1668 - type: Transform - - uid: 727 - components: - - pos: 15.5,-12.5 - parent: 1668 - type: Transform - - uid: 728 - components: - - pos: 16.5,-12.5 - parent: 1668 - type: Transform - - uid: 745 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-14.5 - parent: 1668 - type: Transform - - uid: 746 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-14.5 - parent: 1668 - type: Transform - - uid: 747 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-14.5 - parent: 1668 - type: Transform - - uid: 748 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-14.5 - parent: 1668 - type: Transform - - uid: 749 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-14.5 - parent: 1668 - type: Transform - - uid: 750 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-14.5 - parent: 1668 - type: Transform - - uid: 751 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-15.5 - parent: 1668 - type: Transform - - uid: 752 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-13.5 - parent: 1668 - type: Transform - - uid: 753 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-12.5 - parent: 1668 - type: Transform - - uid: 754 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-10.5 - parent: 1668 - type: Transform - - uid: 755 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-9.5 - parent: 1668 - type: Transform - - uid: 756 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-10.5 - parent: 1668 - type: Transform - - uid: 757 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 1668 - type: Transform - - uid: 806 - components: - - pos: 35.5,-29.5 - parent: 1668 - type: Transform - - uid: 826 - components: - - pos: -13.5,11.5 - parent: 1668 - type: Transform - - uid: 827 - components: - - pos: -13.5,12.5 - parent: 1668 - type: Transform - - uid: 832 - components: - - pos: 11.5,-15.5 - parent: 1668 - type: Transform - - uid: 835 - components: - - pos: 8.5,-15.5 - parent: 1668 - type: Transform - - uid: 837 - components: - - pos: 14.5,-15.5 - parent: 1668 - type: Transform - - uid: 838 - components: - - pos: 14.5,-14.5 - parent: 1668 - type: Transform - - uid: 839 - components: - - pos: 14.5,-13.5 - parent: 1668 - type: Transform - - uid: 840 - components: - - pos: 8.5,-17.5 - parent: 1668 - type: Transform - - uid: 841 - components: - - pos: 11.5,-17.5 - parent: 1668 - type: Transform - - uid: 842 - components: - - pos: 13.5,-17.5 - parent: 1668 - type: Transform - - uid: 843 - components: - - pos: 14.5,-17.5 - parent: 1668 - type: Transform - - uid: 844 - components: - - pos: 14.5,-16.5 - parent: 1668 - type: Transform - - uid: 851 - components: - - pos: -13.5,10.5 - parent: 1668 - type: Transform - - uid: 898 - components: - - pos: 20.5,6.5 - parent: 1668 - type: Transform - - uid: 1080 - components: - - pos: -13.5,9.5 - parent: 1668 - type: Transform - - uid: 1081 - components: - - pos: -13.5,8.5 - parent: 1668 - type: Transform - - uid: 1082 - components: - - pos: -13.5,7.5 - parent: 1668 - type: Transform - - uid: 1083 - components: - - pos: -12.5,7.5 - parent: 1668 - type: Transform - - uid: 1084 - components: - - pos: -11.5,7.5 - parent: 1668 - type: Transform - - uid: 1085 - components: - - pos: -10.5,7.5 - parent: 1668 - type: Transform - - uid: 1132 - components: - - pos: 15.5,-16.5 - parent: 1668 - type: Transform - - uid: 1133 - components: - - pos: 16.5,-16.5 - parent: 1668 - type: Transform - - uid: 1134 - components: - - pos: 17.5,-16.5 - parent: 1668 - type: Transform - - uid: 1135 - components: - - pos: 18.5,-16.5 - parent: 1668 - type: Transform - - uid: 1136 - components: - - pos: 18.5,-15.5 - parent: 1668 - type: Transform - - uid: 1138 - components: - - pos: 18.5,-13.5 - parent: 1668 - type: Transform - - uid: 1139 - components: - - pos: 29.5,-14.5 - parent: 1668 - type: Transform - - uid: 1141 - components: - - pos: 35.5,-13.5 - parent: 1668 - type: Transform - - uid: 1142 - components: - - pos: 35.5,-14.5 - parent: 1668 - type: Transform - - uid: 1143 - components: - - pos: 35.5,-15.5 - parent: 1668 - type: Transform - - uid: 1144 - components: - - pos: 35.5,-16.5 - parent: 1668 - type: Transform - - uid: 1145 - components: - - pos: 35.5,-17.5 - parent: 1668 - type: Transform - - uid: 1152 - components: - - pos: 35.5,-11.5 - parent: 1668 - type: Transform - - uid: 1183 - components: - - pos: 35.5,-12.5 - parent: 1668 - type: Transform - - uid: 1184 - components: - - pos: 35.5,-10.5 - parent: 1668 - type: Transform - - uid: 1322 - components: - - pos: -2.5,5.5 - parent: 1668 - type: Transform - - uid: 1392 - components: - - pos: 35.5,-30.5 - parent: 1668 - type: Transform - - uid: 1394 - components: - - pos: 35.5,-31.5 - parent: 1668 - type: Transform - - uid: 1395 - components: - - pos: 35.5,-32.5 - parent: 1668 - type: Transform - - uid: 1408 - components: - - pos: -4.5,17.5 - parent: 1668 - type: Transform - - uid: 1409 - components: - - pos: -2.5,17.5 - parent: 1668 - type: Transform - - uid: 1410 - components: - - pos: 1.5,17.5 - parent: 1668 - type: Transform - - uid: 1411 - components: - - pos: 3.5,17.5 - parent: 1668 - type: Transform - - uid: 1412 - components: - - pos: 3.5,15.5 - parent: 1668 - type: Transform - - uid: 1413 - components: - - pos: -4.5,16.5 - parent: 1668 - type: Transform - - uid: 1414 - components: - - pos: -4.5,14.5 - parent: 1668 - type: Transform - - uid: 1415 - components: - - pos: -4.5,13.5 - parent: 1668 - type: Transform - - uid: 1416 - components: - - pos: -4.5,12.5 - parent: 1668 - type: Transform - - uid: 1490 - components: - - pos: -5.5,13.5 - parent: 1668 - type: Transform - - uid: 1491 - components: - - pos: -7.5,13.5 - parent: 1668 - type: Transform - - uid: 1492 - components: - - pos: -9.5,13.5 - parent: 1668 - type: Transform - - uid: 1493 - components: - - pos: -8.5,13.5 - parent: 1668 - type: Transform - - uid: 1494 - components: - - pos: -8.5,14.5 - parent: 1668 - type: Transform - - uid: 1495 - components: - - pos: -11.5,13.5 - parent: 1668 - type: Transform - - uid: 1496 - components: - - pos: -12.5,13.5 - parent: 1668 - type: Transform - - uid: 1497 - components: - - pos: -13.5,13.5 - parent: 1668 - type: Transform - - uid: 1498 - components: - - pos: -14.5,13.5 - parent: 1668 - type: Transform - - uid: 1499 - components: - - pos: -15.5,13.5 - parent: 1668 - type: Transform - - uid: 1500 - components: - - pos: -16.5,13.5 - parent: 1668 - type: Transform - - uid: 1501 - components: - - pos: -16.5,14.5 - parent: 1668 - type: Transform - - uid: 1502 - components: - - pos: -16.5,15.5 - parent: 1668 - type: Transform - - uid: 1503 - components: - - pos: -16.5,16.5 - parent: 1668 - type: Transform - - uid: 1504 - components: - - pos: -14.5,18.5 - parent: 1668 - type: Transform - - uid: 1505 - components: - - pos: -8.5,16.5 - parent: 1668 - type: Transform - - uid: 1506 - components: - - pos: -8.5,17.5 - parent: 1668 - type: Transform - - uid: 1507 - components: - - pos: -8.5,18.5 - parent: 1668 - type: Transform - - uid: 1508 - components: - - pos: -7.5,18.5 - parent: 1668 - type: Transform - - uid: 1509 - components: - - pos: -4.5,18.5 - parent: 1668 - type: Transform - - uid: 1510 - components: - - pos: -5.5,18.5 - parent: 1668 - type: Transform - - uid: 1511 - components: - - pos: -9.5,18.5 - parent: 1668 - type: Transform - - uid: 1512 - components: - - pos: -11.5,18.5 - parent: 1668 - type: Transform - - uid: 1523 - components: - - pos: -2.5,18.5 - parent: 1668 - type: Transform - - uid: 1524 - components: - - pos: -2.5,19.5 - parent: 1668 - type: Transform - - uid: 1525 - components: - - pos: -3.5,19.5 - parent: 1668 - type: Transform - - uid: 1526 - components: - - pos: -4.5,19.5 - parent: 1668 - type: Transform - - uid: 1527 - components: - - pos: 1.5,18.5 - parent: 1668 - type: Transform - - uid: 1528 - components: - - pos: 1.5,19.5 - parent: 1668 - type: Transform - - uid: 1529 - components: - - pos: 2.5,19.5 - parent: 1668 - type: Transform - - uid: 1530 - components: - - pos: 3.5,19.5 - parent: 1668 - type: Transform - - uid: 1531 - components: - - pos: 3.5,18.5 - parent: 1668 - type: Transform - - uid: 1532 - components: - - pos: 0.5,17.5 - parent: 1668 - type: Transform - - uid: 1535 - components: - - pos: -1.5,17.5 - parent: 1668 - type: Transform - - uid: 1536 - components: - - pos: 3.5,21.5 - parent: 1668 - type: Transform - - uid: 1537 - components: - - pos: 3.5,20.5 - parent: 1668 - type: Transform - - uid: 1538 - components: - - pos: -14.5,19.5 - parent: 1668 - type: Transform - - uid: 1553 - components: - - pos: -4.5,20.5 - parent: 1668 - type: Transform - - uid: 1554 - components: - - pos: -4.5,22.5 - parent: 1668 - type: Transform - - uid: 1555 - components: - - pos: -4.5,23.5 - parent: 1668 - type: Transform - - uid: 1556 - components: - - pos: -4.5,24.5 - parent: 1668 - type: Transform - - uid: 1557 - components: - - pos: -4.5,25.5 - parent: 1668 - type: Transform - - uid: 1558 - components: - - pos: -4.5,26.5 - parent: 1668 - type: Transform - - uid: 1559 - components: - - pos: -4.5,27.5 - parent: 1668 - type: Transform - - uid: 1560 - components: - - pos: -4.5,28.5 - parent: 1668 - type: Transform - - uid: 1561 - components: - - pos: -4.5,29.5 - parent: 1668 - type: Transform - - uid: 1562 - components: - - pos: -4.5,30.5 - parent: 1668 - type: Transform - - uid: 1563 - components: - - pos: -4.5,31.5 - parent: 1668 - type: Transform - - uid: 1564 - components: - - pos: -4.5,32.5 - parent: 1668 - type: Transform - - uid: 1565 - components: - - pos: -5.5,32.5 - parent: 1668 - type: Transform - - uid: 1567 - components: - - pos: -11.5,32.5 - parent: 1668 - type: Transform - - uid: 1568 - components: - - pos: -11.5,34.5 - parent: 1668 - type: Transform - - uid: 1569 - components: - - pos: -7.5,33.5 - parent: 1668 - type: Transform - - uid: 1570 - components: - - pos: -7.5,32.5 - parent: 1668 - type: Transform - - uid: 1571 - components: - - pos: -11.5,33.5 - parent: 1668 - type: Transform - - uid: 1573 - components: - - pos: -13.5,32.5 - parent: 1668 - type: Transform - - uid: 1574 - components: - - pos: -14.5,32.5 - parent: 1668 - type: Transform - - uid: 1575 - components: - - pos: -14.5,31.5 - parent: 1668 - type: Transform - - uid: 1664 - components: - - pos: -7.5,34.5 - parent: 1668 - type: Transform - - uid: 1665 - components: - - pos: -8.5,34.5 - parent: 1668 - type: Transform - - uid: 1666 - components: - - pos: -10.5,34.5 - parent: 1668 - type: Transform - - uid: 1794 - components: - - pos: 3.5,22.5 - parent: 1668 - type: Transform - - uid: 1795 - components: - - pos: 2.5,22.5 - parent: 1668 - type: Transform - - uid: 1796 - components: - - pos: 1.5,22.5 - parent: 1668 - type: Transform - - uid: 1797 - components: - - pos: 0.5,22.5 - parent: 1668 - type: Transform - - uid: 1798 - components: - - pos: 0.5,23.5 - parent: 1668 - type: Transform - - uid: 1799 - components: - - pos: -1.5,22.5 - parent: 1668 - type: Transform - - uid: 1800 - components: - - pos: -2.5,22.5 - parent: 1668 - type: Transform - - uid: 1801 - components: - - pos: -3.5,22.5 - parent: 1668 - type: Transform - - uid: 1994 - components: - - pos: 4.5,15.5 - parent: 1668 - type: Transform - - uid: 1995 - components: - - pos: 5.5,15.5 - parent: 1668 - type: Transform - - uid: 1996 - components: - - pos: 5.5,16.5 - parent: 1668 - type: Transform - - uid: 1997 - components: - - pos: 5.5,17.5 - parent: 1668 - type: Transform - - uid: 1998 - components: - - pos: 4.5,17.5 - parent: 1668 - type: Transform - - uid: 2005 - components: - - pos: 0.5,24.5 - parent: 1668 - type: Transform - - uid: 2006 - components: - - pos: 0.5,25.5 - parent: 1668 - type: Transform - - uid: 2007 - components: - - pos: -0.5,25.5 - parent: 1668 - type: Transform - - uid: 2008 - components: - - pos: -1.5,25.5 - parent: 1668 - type: Transform - - uid: 2009 - components: - - pos: -3.5,25.5 - parent: 1668 - type: Transform - - uid: 2238 - components: - - pos: 17.5,9.5 - parent: 1668 - type: Transform - - uid: 2239 - components: - - pos: 16.5,9.5 - parent: 1668 - type: Transform - - uid: 2245 - components: - - pos: 15.5,15.5 - parent: 1668 - type: Transform - - uid: 2251 - components: - - pos: 15.5,16.5 - parent: 1668 - type: Transform - - uid: 2252 - components: - - pos: 15.5,17.5 - parent: 1668 - type: Transform - - uid: 2253 - components: - - pos: 16.5,17.5 - parent: 1668 - type: Transform - - uid: 2254 - components: - - pos: 17.5,17.5 - parent: 1668 - type: Transform - - uid: 2255 - components: - - pos: 18.5,17.5 - parent: 1668 - type: Transform - - uid: 2256 - components: - - pos: 20.5,17.5 - parent: 1668 - type: Transform - - uid: 2257 - components: - - pos: 21.5,10.5 - parent: 1668 - type: Transform - - uid: 2258 - components: - - pos: 21.5,13.5 - parent: 1668 - type: Transform - - uid: 2259 - components: - - pos: 21.5,14.5 - parent: 1668 - type: Transform - - uid: 2260 - components: - - pos: 21.5,15.5 - parent: 1668 - type: Transform - - uid: 2261 - components: - - pos: 21.5,16.5 - parent: 1668 - type: Transform - - uid: 2262 - components: - - pos: 21.5,17.5 - parent: 1668 - type: Transform - - uid: 2263 - components: - - pos: 35.5,10.5 - parent: 1668 - type: Transform - - uid: 2264 - components: - - pos: 35.5,11.5 - parent: 1668 - type: Transform - - uid: 2265 - components: - - pos: 35.5,12.5 - parent: 1668 - type: Transform - - uid: 2266 - components: - - pos: 35.5,13.5 - parent: 1668 - type: Transform - - uid: 2267 - components: - - pos: 35.5,14.5 - parent: 1668 - type: Transform - - uid: 2268 - components: - - pos: 35.5,15.5 - parent: 1668 - type: Transform - - uid: 2274 - components: - - pos: 24.5,14.5 - parent: 1668 - type: Transform - - uid: 2275 - components: - - pos: 32.5,14.5 - parent: 1668 - type: Transform - - uid: 2292 - components: - - pos: 35.5,16.5 - parent: 1668 - type: Transform - - uid: 2293 - components: - - pos: 35.5,17.5 - parent: 1668 - type: Transform - - uid: 2294 - components: - - pos: 35.5,18.5 - parent: 1668 - type: Transform - - uid: 2295 - components: - - pos: 35.5,19.5 - parent: 1668 - type: Transform - - uid: 2296 - components: - - pos: 35.5,20.5 - parent: 1668 - type: Transform - - uid: 2297 - components: - - pos: 35.5,21.5 - parent: 1668 - type: Transform - - uid: 2298 - components: - - pos: 35.5,22.5 - parent: 1668 - type: Transform - - uid: 2301 - components: - - pos: 17.5,18.5 - parent: 1668 - type: Transform - - uid: 2302 - components: - - pos: 17.5,19.5 - parent: 1668 - type: Transform - - uid: 2303 - components: - - pos: 17.5,20.5 - parent: 1668 - type: Transform - - uid: 2304 - components: - - pos: 17.5,21.5 - parent: 1668 - type: Transform - - uid: 2305 - components: - - pos: 17.5,22.5 - parent: 1668 - type: Transform - - uid: 2306 - components: - - pos: 17.5,23.5 - parent: 1668 - type: Transform - - uid: 2307 - components: - - pos: 17.5,24.5 - parent: 1668 - type: Transform - - uid: 2308 - components: - - pos: 18.5,24.5 - parent: 1668 - type: Transform - - uid: 2309 - components: - - pos: 19.5,24.5 - parent: 1668 - type: Transform - - uid: 2310 - components: - - pos: 20.5,24.5 - parent: 1668 - type: Transform - - uid: 2311 - components: - - pos: 21.5,24.5 - parent: 1668 - type: Transform - - uid: 2312 - components: - - pos: 21.5,23.5 - parent: 1668 - type: Transform - - uid: 2313 - components: - - pos: 21.5,19.5 - parent: 1668 - type: Transform - - uid: 2314 - components: - - pos: 21.5,20.5 - parent: 1668 - type: Transform - - uid: 2315 - components: - - pos: 21.5,21.5 - parent: 1668 - type: Transform - - uid: 2318 - components: - - pos: 35.5,23.5 - parent: 1668 - type: Transform - - uid: 2319 - components: - - pos: 35.5,24.5 - parent: 1668 - type: Transform - - uid: 2320 - components: - - pos: 34.5,24.5 - parent: 1668 - type: Transform - - uid: 2321 - components: - - pos: 33.5,24.5 - parent: 1668 - type: Transform - - uid: 2322 - components: - - pos: 32.5,24.5 - parent: 1668 - type: Transform - - uid: 2323 - components: - - pos: 31.5,24.5 - parent: 1668 - type: Transform - - uid: 2324 - components: - - pos: 30.5,24.5 - parent: 1668 - type: Transform - - uid: 2325 - components: - - pos: 29.5,24.5 - parent: 1668 - type: Transform - - uid: 2326 - components: - - pos: 28.5,24.5 - parent: 1668 - type: Transform - - uid: 2327 - components: - - pos: 27.5,24.5 - parent: 1668 - type: Transform - - uid: 2328 - components: - - pos: 26.5,24.5 - parent: 1668 - type: Transform - - uid: 2329 - components: - - pos: 25.5,24.5 - parent: 1668 - type: Transform - - uid: 2330 - components: - - pos: 24.5,24.5 - parent: 1668 - type: Transform - - uid: 2331 - components: - - pos: 23.5,24.5 - parent: 1668 - type: Transform - - uid: 2332 - components: - - pos: 22.5,24.5 - parent: 1668 - type: Transform - - uid: 2333 - components: - - pos: 22.5,20.5 - parent: 1668 - type: Transform - - uid: 2334 - components: - - pos: 24.5,20.5 - parent: 1668 - type: Transform - - uid: 2335 - components: - - pos: 34.5,20.5 - parent: 1668 - type: Transform - - uid: 2336 - components: - - pos: 32.5,20.5 - parent: 1668 - type: Transform - - uid: 2350 - components: - - pos: 35.5,-28.5 - parent: 1668 - type: Transform - - uid: 2501 - components: - - pos: 13.5,16.5 - parent: 1668 - type: Transform - - uid: 2502 - components: - - pos: 13.5,17.5 - parent: 1668 - type: Transform - - uid: 2503 - components: - - pos: 13.5,18.5 - parent: 1668 - type: Transform - - uid: 2504 - components: - - pos: 13.5,19.5 - parent: 1668 - type: Transform - - uid: 2508 - components: - - pos: 10.5,19.5 - parent: 1668 - type: Transform - - uid: 2514 - components: - - pos: 7.5,16.5 - parent: 1668 - type: Transform - - uid: 2515 - components: - - pos: 6.5,16.5 - parent: 1668 - type: Transform - - uid: 2516 - components: - - pos: 10.5,20.5 - parent: 1668 - type: Transform - - uid: 2517 - components: - - pos: 13.5,20.5 - parent: 1668 - type: Transform - - uid: 2518 - components: - - pos: 14.5,20.5 - parent: 1668 - type: Transform - - uid: 2519 - components: - - pos: 15.5,20.5 - parent: 1668 - type: Transform - - uid: 2520 - components: - - pos: 16.5,20.5 - parent: 1668 - type: Transform - - uid: 2547 - components: - - pos: 7.5,20.5 - parent: 1668 - type: Transform - - uid: 2548 - components: - - pos: 6.5,20.5 - parent: 1668 - type: Transform - - uid: 2549 - components: - - pos: 5.5,20.5 - parent: 1668 - type: Transform - - uid: 2550 - components: - - pos: 4.5,20.5 - parent: 1668 - type: Transform - - uid: 2551 - components: - - pos: 7.5,17.5 - parent: 1668 - type: Transform - - uid: 2552 - components: - - pos: 7.5,18.5 - parent: 1668 - type: Transform - - uid: 2559 - components: - - pos: 16.5,23.5 - parent: 1668 - type: Transform - - uid: 2560 - components: - - pos: 15.5,23.5 - parent: 1668 - type: Transform - - uid: 2561 - components: - - pos: 14.5,23.5 - parent: 1668 - type: Transform - - uid: 2748 - components: - - pos: 3.5,26.5 - parent: 1668 - type: Transform - - uid: 2749 - components: - - pos: 4.5,26.5 - parent: 1668 - type: Transform - - uid: 2750 - components: - - pos: 1.5,26.5 - parent: 1668 - type: Transform - - uid: 2751 - components: - - pos: 4.5,23.5 - parent: 1668 - type: Transform - - uid: 2753 - components: - - pos: 3.5,23.5 - parent: 1668 - type: Transform - - uid: 2757 - components: - - pos: 6.5,23.5 - parent: 1668 - type: Transform - - uid: 2759 - components: - - pos: 7.5,23.5 - parent: 1668 - type: Transform - - uid: 2761 - components: - - pos: 2.5,26.5 - parent: 1668 - type: Transform - - uid: 2766 - components: - - pos: 17.5,25.5 - parent: 1668 - type: Transform - - uid: 2767 - components: - - pos: 17.5,26.5 - parent: 1668 - type: Transform - - uid: 2768 - components: - - pos: 16.5,26.5 - parent: 1668 - type: Transform - - uid: 2769 - components: - - pos: 15.5,26.5 - parent: 1668 - type: Transform - - uid: 2770 - components: - - pos: 14.5,26.5 - parent: 1668 - type: Transform - - uid: 2783 - components: - - pos: 9.5,26.5 - parent: 1668 - type: Transform - - uid: 2788 - components: - - pos: 11.5,30.5 - parent: 1668 - type: Transform - - uid: 2789 - components: - - pos: 7.5,30.5 - parent: 1668 - type: Transform - - uid: 2793 - components: - - pos: 7.5,32.5 - parent: 1668 - type: Transform - - uid: 2794 - components: - - pos: 14.5,33.5 - parent: 1668 - type: Transform - - uid: 2795 - components: - - pos: 13.5,33.5 - parent: 1668 - type: Transform - - uid: 2796 - components: - - pos: 12.5,33.5 - parent: 1668 - type: Transform - - uid: 2797 - components: - - pos: 11.5,33.5 - parent: 1668 - type: Transform - - uid: 2798 - components: - - pos: 10.5,33.5 - parent: 1668 - type: Transform - - uid: 2799 - components: - - pos: 9.5,33.5 - parent: 1668 - type: Transform - - uid: 2800 - components: - - pos: 8.5,33.5 - parent: 1668 - type: Transform - - uid: 2801 - components: - - pos: 7.5,33.5 - parent: 1668 - type: Transform - - uid: 2802 - components: - - pos: 6.5,33.5 - parent: 1668 - type: Transform - - uid: 2803 - components: - - pos: 5.5,33.5 - parent: 1668 - type: Transform - - uid: 2804 - components: - - pos: 4.5,33.5 - parent: 1668 - type: Transform - - uid: 2805 - components: - - pos: 3.5,33.5 - parent: 1668 - type: Transform - - uid: 2806 - components: - - pos: 2.5,33.5 - parent: 1668 - type: Transform - - uid: 2807 - components: - - pos: 1.5,33.5 - parent: 1668 - type: Transform - - uid: 2814 - components: - - pos: 11.5,32.5 - parent: 1668 - type: Transform - - uid: 2833 - components: - - rot: 3.141592653589793 rad - pos: 2.5,23.5 - parent: 1668 - type: Transform - - uid: 2834 - components: - - pos: 1.5,23.5 - parent: 1668 - type: Transform - - uid: 2835 - components: - - pos: 1.5,24.5 - parent: 1668 - type: Transform - - uid: 2836 - components: - - pos: 1.5,25.5 - parent: 1668 - type: Transform - - uid: 2837 - components: - - pos: 1.5,27.5 - parent: 1668 - type: Transform - - uid: 2838 - components: - - pos: 1.5,28.5 - parent: 1668 - type: Transform - - uid: 2839 - components: - - pos: 1.5,29.5 - parent: 1668 - type: Transform - - uid: 2840 - components: - - pos: 1.5,30.5 - parent: 1668 - type: Transform - - uid: 2841 - components: - - pos: 1.5,31.5 - parent: 1668 - type: Transform - - uid: 2842 - components: - - pos: 1.5,32.5 - parent: 1668 - type: Transform - - uid: 2843 - components: - - pos: 17.5,27.5 - parent: 1668 - type: Transform - - uid: 2844 - components: - - pos: 17.5,28.5 - parent: 1668 - type: Transform - - uid: 2845 - components: - - pos: 17.5,29.5 - parent: 1668 - type: Transform - - uid: 2846 - components: - - pos: 17.5,30.5 - parent: 1668 - type: Transform - - uid: 2847 - components: - - pos: 17.5,31.5 - parent: 1668 - type: Transform - - uid: 2848 - components: - - pos: 17.5,32.5 - parent: 1668 - type: Transform - - uid: 2849 - components: - - pos: 17.5,33.5 - parent: 1668 - type: Transform - - uid: 2850 - components: - - pos: 16.5,33.5 - parent: 1668 - type: Transform - - uid: 2851 - components: - - pos: 15.5,33.5 - parent: 1668 - type: Transform - - uid: 2852 - components: - - pos: 16.5,29.5 - parent: 1668 - type: Transform - - uid: 2853 - components: - - pos: 14.5,29.5 - parent: 1668 - type: Transform - - uid: 2854 - components: - - pos: 15.5,29.5 - parent: 1668 - type: Transform - - uid: 2855 - components: - - pos: 2.5,29.5 - parent: 1668 - type: Transform - - uid: 2856 - components: - - pos: 3.5,29.5 - parent: 1668 - type: Transform - - uid: 2857 - components: - - pos: 4.5,29.5 - parent: 1668 - type: Transform - - uid: 2883 - components: - - pos: 4.5,32.5 - parent: 1668 - type: Transform - - uid: 2884 - components: - - pos: 14.5,32.5 - parent: 1668 - type: Transform - - uid: 2885 - components: - - pos: 4.5,30.5 - parent: 1668 - type: Transform - - uid: 2888 - components: - - pos: 14.5,30.5 - parent: 1668 - type: Transform - - uid: 3140 - components: - - pos: 33.5,-0.5 - parent: 1668 - type: Transform - - uid: 3184 - components: - - pos: 0.5,26.5 - parent: 1668 - type: Transform - - uid: 3187 - components: - - pos: 0.5,27.5 - parent: 1668 - type: Transform - - uid: 3188 - components: - - pos: 0.5,28.5 - parent: 1668 - type: Transform - - uid: 3189 - components: - - pos: 0.5,29.5 - parent: 1668 - type: Transform - - uid: 3190 - components: - - pos: 0.5,30.5 - parent: 1668 - type: Transform - - uid: 3191 - components: - - pos: 0.5,31.5 - parent: 1668 - type: Transform - - uid: 3192 - components: - - pos: 0.5,32.5 - parent: 1668 - type: Transform - - uid: 3193 - components: - - pos: 0.5,33.5 - parent: 1668 - type: Transform - - uid: 3194 - components: - - pos: 0.5,34.5 - parent: 1668 - type: Transform - - uid: 3195 - components: - - pos: 1.5,34.5 - parent: 1668 - type: Transform - - uid: 3196 - components: - - pos: 2.5,34.5 - parent: 1668 - type: Transform - - uid: 3197 - components: - - pos: 3.5,34.5 - parent: 1668 - type: Transform - - uid: 3198 - components: - - pos: 4.5,34.5 - parent: 1668 - type: Transform - - uid: 3199 - components: - - pos: 5.5,34.5 - parent: 1668 - type: Transform - - uid: 3200 - components: - - pos: 6.5,34.5 - parent: 1668 - type: Transform - - uid: 3201 - components: - - pos: 7.5,34.5 - parent: 1668 - type: Transform - - uid: 3202 - components: - - pos: 8.5,34.5 - parent: 1668 - type: Transform - - uid: 3203 - components: - - pos: 9.5,34.5 - parent: 1668 - type: Transform - - uid: 3204 - components: - - pos: 10.5,34.5 - parent: 1668 - type: Transform - - uid: 3205 - components: - - pos: 11.5,34.5 - parent: 1668 - type: Transform - - uid: 3206 - components: - - pos: 12.5,34.5 - parent: 1668 - type: Transform - - uid: 3207 - components: - - pos: 13.5,34.5 - parent: 1668 - type: Transform - - uid: 3208 - components: - - pos: 14.5,34.5 - parent: 1668 - type: Transform - - uid: 3209 - components: - - pos: 15.5,34.5 - parent: 1668 - type: Transform - - uid: 3210 - components: - - pos: 16.5,34.5 - parent: 1668 - type: Transform - - uid: 3211 - components: - - pos: 17.5,34.5 - parent: 1668 - type: Transform - - uid: 3212 - components: - - pos: 18.5,34.5 - parent: 1668 - type: Transform - - uid: 3213 - components: - - pos: 18.5,33.5 - parent: 1668 - type: Transform - - uid: 3214 - components: - - pos: 18.5,32.5 - parent: 1668 - type: Transform - - uid: 3215 - components: - - pos: 18.5,31.5 - parent: 1668 - type: Transform - - uid: 3216 - components: - - pos: 18.5,30.5 - parent: 1668 - type: Transform - - uid: 3217 - components: - - pos: 18.5,29.5 - parent: 1668 - type: Transform - - uid: 3218 - components: - - pos: 18.5,28.5 - parent: 1668 - type: Transform - - uid: 3219 - components: - - pos: 18.5,27.5 - parent: 1668 - type: Transform - - uid: 3220 - components: - - pos: 18.5,26.5 - parent: 1668 - type: Transform - - uid: 3221 - components: - - pos: 18.5,25.5 - parent: 1668 - type: Transform - - uid: 3222 - components: - - pos: 35.5,25.5 - parent: 1668 - type: Transform - - uid: 3223 - components: - - pos: 34.5,25.5 - parent: 1668 - type: Transform - - uid: 3224 - components: - - pos: 33.5,25.5 - parent: 1668 - type: Transform - - uid: 3225 - components: - - pos: 32.5,25.5 - parent: 1668 - type: Transform - - uid: 3226 - components: - - pos: 31.5,25.5 - parent: 1668 - type: Transform - - uid: 3227 - components: - - pos: 30.5,25.5 - parent: 1668 - type: Transform - - uid: 3228 - components: - - pos: 29.5,25.5 - parent: 1668 - type: Transform - - uid: 3229 - components: - - pos: 28.5,25.5 - parent: 1668 - type: Transform - - uid: 3230 - components: - - pos: 27.5,25.5 - parent: 1668 - type: Transform - - uid: 3231 - components: - - pos: 26.5,25.5 - parent: 1668 - type: Transform - - uid: 3232 - components: - - pos: 25.5,25.5 - parent: 1668 - type: Transform - - uid: 3233 - components: - - pos: 24.5,25.5 - parent: 1668 - type: Transform - - uid: 3234 - components: - - pos: 23.5,25.5 - parent: 1668 - type: Transform - - uid: 3235 - components: - - pos: 22.5,25.5 - parent: 1668 - type: Transform - - uid: 3236 - components: - - pos: 21.5,25.5 - parent: 1668 - type: Transform - - uid: 3237 - components: - - pos: 20.5,25.5 - parent: 1668 - type: Transform - - uid: 3238 - components: - - pos: 19.5,25.5 - parent: 1668 - type: Transform - - uid: 3262 - components: - - pos: -10.5,-10.5 - parent: 1668 - type: Transform - - uid: 3263 - components: - - pos: -11.5,-10.5 - parent: 1668 - type: Transform - - uid: 3264 - components: - - pos: -12.5,-10.5 - parent: 1668 - type: Transform - - uid: 3265 - components: - - pos: -13.5,-10.5 - parent: 1668 - type: Transform - - uid: 3266 - components: - - pos: -14.5,-10.5 - parent: 1668 - type: Transform - - uid: 3267 - components: - - pos: -15.5,-10.5 - parent: 1668 - type: Transform - - uid: 3268 - components: - - pos: -16.5,-10.5 - parent: 1668 - type: Transform - - uid: 3269 - components: - - pos: -17.5,-10.5 - parent: 1668 - type: Transform - - uid: 3270 - components: - - pos: -18.5,-10.5 - parent: 1668 - type: Transform - - uid: 3271 - components: - - pos: -19.5,-10.5 - parent: 1668 - type: Transform - - uid: 3272 - components: - - pos: -20.5,-10.5 - parent: 1668 - type: Transform - - uid: 3273 - components: - - pos: -21.5,-10.5 - parent: 1668 - type: Transform - - uid: 3274 - components: - - pos: -17.5,13.5 - parent: 1668 - type: Transform - - uid: 3275 - components: - - pos: -18.5,13.5 - parent: 1668 - type: Transform - - uid: 3276 - components: - - pos: -19.5,13.5 - parent: 1668 - type: Transform - - uid: 3277 - components: - - pos: -19.5,14.5 - parent: 1668 - type: Transform - - uid: 3278 - components: - - pos: -19.5,15.5 - parent: 1668 - type: Transform - - uid: 3279 - components: - - pos: -19.5,16.5 - parent: 1668 - type: Transform - - uid: 3280 - components: - - pos: -20.5,16.5 - parent: 1668 - type: Transform - - uid: 3281 - components: - - pos: -21.5,16.5 - parent: 1668 - type: Transform - - uid: 3282 - components: - - pos: -22.5,16.5 - parent: 1668 - type: Transform - - uid: 3283 - components: - - pos: -22.5,15.5 - parent: 1668 - type: Transform - - uid: 3284 - components: - - pos: -22.5,14.5 - parent: 1668 - type: Transform - - uid: 3285 - components: - - pos: -22.5,13.5 - parent: 1668 - type: Transform - - uid: 3286 - components: - - pos: -20.5,13.5 - parent: 1668 - type: Transform - - uid: 3294 - components: - - pos: -10.5,3.5 - parent: 1668 - type: Transform - - uid: 3295 - components: - - pos: -11.5,3.5 - parent: 1668 - type: Transform - - uid: 3296 - components: - - pos: -12.5,3.5 - parent: 1668 - type: Transform - - uid: 3297 - components: - - pos: -13.5,3.5 - parent: 1668 - type: Transform - - uid: 3298 - components: - - pos: -14.5,3.5 - parent: 1668 - type: Transform - - uid: 3299 - components: - - pos: -15.5,3.5 - parent: 1668 - type: Transform - - uid: 3300 - components: - - pos: -16.5,3.5 - parent: 1668 - type: Transform - - uid: 3301 - components: - - pos: -17.5,3.5 - parent: 1668 - type: Transform - - uid: 3302 - components: - - pos: -17.5,2.5 - parent: 1668 - type: Transform - - uid: 3303 - components: - - pos: -17.5,1.5 - parent: 1668 - type: Transform - - uid: 3304 - components: - - pos: -13.5,1.5 - parent: 1668 - type: Transform - - uid: 3305 - components: - - pos: -10.5,-2.5 - parent: 1668 - type: Transform - - uid: 3306 - components: - - pos: -11.5,-2.5 - parent: 1668 - type: Transform - - uid: 3307 - components: - - pos: -12.5,-2.5 - parent: 1668 - type: Transform - - uid: 3308 - components: - - pos: -13.5,-2.5 - parent: 1668 - type: Transform - - uid: 3309 - components: - - pos: -14.5,-2.5 - parent: 1668 - type: Transform - - uid: 3310 - components: - - pos: -15.5,-2.5 - parent: 1668 - type: Transform - - uid: 3311 - components: - - pos: -16.5,-2.5 - parent: 1668 - type: Transform - - uid: 3312 - components: - - pos: -17.5,-2.5 - parent: 1668 - type: Transform - - uid: 3313 - components: - - pos: -16.5,-3.5 - parent: 1668 - type: Transform - - uid: 3314 - components: - - pos: -16.5,-4.5 - parent: 1668 - type: Transform - - uid: 3315 - components: - - pos: -16.5,-9.5 - parent: 1668 - type: Transform - - uid: 3316 - components: - - pos: -16.5,-8.5 - parent: 1668 - type: Transform - - uid: 3317 - components: - - pos: -18.5,1.5 - parent: 1668 - type: Transform - - uid: 3318 - components: - - pos: -19.5,1.5 - parent: 1668 - type: Transform - - uid: 3319 - components: - - pos: -20.5,1.5 - parent: 1668 - type: Transform - - uid: 3320 - components: - - pos: -23.5,13.5 - parent: 1668 - type: Transform - - uid: 3321 - components: - - pos: -24.5,13.5 - parent: 1668 - type: Transform - - uid: 3322 - components: - - pos: -25.5,13.5 - parent: 1668 - type: Transform - - uid: 3323 - components: - - pos: -26.5,13.5 - parent: 1668 - type: Transform - - uid: 3324 - components: - - pos: -27.5,13.5 - parent: 1668 - type: Transform - - uid: 3325 - components: - - pos: -27.5,10.5 - parent: 1668 - type: Transform - - uid: 3326 - components: - - pos: -27.5,7.5 - parent: 1668 - type: Transform - - uid: 3331 - components: - - pos: -17.5,12.5 - parent: 1668 - type: Transform - - uid: 3332 - components: - - pos: -17.5,10.5 - parent: 1668 - type: Transform - - uid: 3333 - components: - - pos: -17.5,9.5 - parent: 1668 - type: Transform - - uid: 3334 - components: - - pos: -17.5,8.5 - parent: 1668 - type: Transform - - uid: 3335 - components: - - pos: -17.5,7.5 - parent: 1668 - type: Transform - - uid: 3336 - components: - - pos: -13.5,6.5 - parent: 1668 - type: Transform - - uid: 3337 - components: - - pos: -13.5,4.5 - parent: 1668 - type: Transform - - uid: 3338 - components: - - pos: -14.5,7.5 - parent: 1668 - type: Transform - - uid: 3339 - components: - - pos: -15.5,7.5 - parent: 1668 - type: Transform - - uid: 3340 - components: - - pos: -16.5,7.5 - parent: 1668 - type: Transform - - uid: 3341 - components: - - pos: -17.5,4.5 - parent: 1668 - type: Transform - - uid: 3342 - components: - - pos: -17.5,6.5 - parent: 1668 - type: Transform - - uid: 3343 - components: - - pos: -18.5,7.5 - parent: 1668 - type: Transform - - uid: 3344 - components: - - pos: -20.5,7.5 - parent: 1668 - type: Transform - - uid: 3345 - components: - - pos: -21.5,7.5 - parent: 1668 - type: Transform - - uid: 3346 - components: - - pos: -22.5,7.5 - parent: 1668 - type: Transform - - uid: 3347 - components: - - pos: -22.5,1.5 - parent: 1668 - type: Transform - - uid: 3348 - components: - - pos: -26.5,7.5 - parent: 1668 - type: Transform - - uid: 3349 - components: - - pos: -25.5,7.5 - parent: 1668 - type: Transform - - uid: 3350 - components: - - pos: -24.5,7.5 - parent: 1668 - type: Transform - - uid: 3351 - components: - - pos: -25.5,6.5 - parent: 1668 - type: Transform - - uid: 3352 - components: - - pos: -23.5,1.5 - parent: 1668 - type: Transform - - uid: 3353 - components: - - pos: -24.5,1.5 - parent: 1668 - type: Transform - - uid: 3354 - components: - - pos: -25.5,1.5 - parent: 1668 - type: Transform - - uid: 3355 - components: - - pos: -25.5,2.5 - parent: 1668 - type: Transform - - uid: 3356 - components: - - pos: -25.5,3.5 - parent: 1668 - type: Transform - - uid: 3357 - components: - - pos: -25.5,4.5 - parent: 1668 - type: Transform - - uid: 3358 - components: - - pos: -25.5,5.5 - parent: 1668 - type: Transform - - uid: 3359 - components: - - pos: -28.5,1.5 - parent: 1668 - type: Transform - - uid: 3360 - components: - - pos: -28.5,2.5 - parent: 1668 - type: Transform - - uid: 3361 - components: - - pos: -28.5,3.5 - parent: 1668 - type: Transform - - uid: 3362 - components: - - pos: -26.5,1.5 - parent: 1668 - type: Transform - - uid: 3363 - components: - - pos: -28.5,5.5 - parent: 1668 - type: Transform - - uid: 3364 - components: - - pos: -28.5,6.5 - parent: 1668 - type: Transform - - uid: 3365 - components: - - pos: -28.5,7.5 - parent: 1668 - type: Transform - - uid: 3366 - components: - - pos: -27.5,1.5 - parent: 1668 - type: Transform - - uid: 3367 - components: - - pos: -22.5,-10.5 - parent: 1668 - type: Transform - - uid: 3368 - components: - - pos: -23.5,-10.5 - parent: 1668 - type: Transform - - uid: 3369 - components: - - pos: -24.5,-10.5 - parent: 1668 - type: Transform - - uid: 3370 - components: - - pos: -25.5,-10.5 - parent: 1668 - type: Transform - - uid: 3371 - components: - - pos: -26.5,-10.5 - parent: 1668 - type: Transform - - uid: 3372 - components: - - pos: -27.5,-10.5 - parent: 1668 - type: Transform - - uid: 3373 - components: - - pos: -28.5,-10.5 - parent: 1668 - type: Transform - - uid: 3374 - components: - - pos: -18.5,-2.5 - parent: 1668 - type: Transform - - uid: 3375 - components: - - pos: -19.5,-2.5 - parent: 1668 - type: Transform - - uid: 3376 - components: - - pos: -23.5,-2.5 - parent: 1668 - type: Transform - - uid: 3377 - components: - - pos: -24.5,-2.5 - parent: 1668 - type: Transform - - uid: 3378 - components: - - pos: -25.5,-2.5 - parent: 1668 - type: Transform - - uid: 3379 - components: - - pos: -26.5,-2.5 - parent: 1668 - type: Transform - - uid: 3380 - components: - - pos: -27.5,-2.5 - parent: 1668 - type: Transform - - uid: 3381 - components: - - pos: -28.5,-2.5 - parent: 1668 - type: Transform - - uid: 3382 - components: - - pos: -28.5,-3.5 - parent: 1668 - type: Transform - - uid: 3383 - components: - - pos: -28.5,-4.5 - parent: 1668 - type: Transform - - uid: 3384 - components: - - pos: -28.5,-9.5 - parent: 1668 - type: Transform - - uid: 3443 - components: - - pos: -17.5,14.5 - parent: 1668 - type: Transform - - uid: 3444 - components: - - pos: -18.5,14.5 - parent: 1668 - type: Transform - - uid: 3780 - components: - - pos: -21.5,-2.5 - parent: 1668 - type: Transform - - uid: 3783 - components: - - pos: -28.5,-5.5 - parent: 1668 - type: Transform - - uid: 3784 - components: - - pos: -28.5,-6.5 - parent: 1668 - type: Transform - - uid: 3785 - components: - - pos: -28.5,-7.5 - parent: 1668 - type: Transform - - uid: 3786 - components: - - pos: -28.5,-8.5 - parent: 1668 - type: Transform - - uid: 3919 - components: - - pos: -29.5,2.5 - parent: 1668 - type: Transform - - uid: 3920 - components: - - pos: -31.5,2.5 - parent: 1668 - type: Transform - - uid: 3921 - components: - - pos: -32.5,2.5 - parent: 1668 - type: Transform - - uid: 3922 - components: - - pos: -33.5,2.5 - parent: 1668 - type: Transform - - uid: 3923 - components: - - pos: -34.5,2.5 - parent: 1668 - type: Transform - - uid: 3924 - components: - - pos: -34.5,-3.5 - parent: 1668 - type: Transform - - uid: 3925 - components: - - pos: -33.5,-3.5 - parent: 1668 - type: Transform - - uid: 3926 - components: - - pos: -32.5,-3.5 - parent: 1668 - type: Transform - - uid: 3927 - components: - - pos: -31.5,-3.5 - parent: 1668 - type: Transform - - uid: 3928 - components: - - pos: -30.5,-3.5 - parent: 1668 - type: Transform - - uid: 3929 - components: - - pos: -29.5,-3.5 - parent: 1668 - type: Transform - - uid: 3930 - components: - - pos: -29.5,7.5 - parent: 1668 - type: Transform - - uid: 3931 - components: - - pos: -31.5,7.5 - parent: 1668 - type: Transform - - uid: 3932 - components: - - pos: -34.5,7.5 - parent: 1668 - type: Transform - - uid: 4188 - components: - - pos: 5.5,-15.5 - parent: 1668 - type: Transform - - uid: 4190 - components: - - pos: 5.5,-17.5 - parent: 1668 - type: Transform - - uid: 4191 - components: - - pos: -6.5,-17.5 - parent: 1668 - type: Transform - - uid: 4192 - components: - - pos: -6.5,-16.5 - parent: 1668 - type: Transform - - uid: 4193 - components: - - pos: -6.5,-19.5 - parent: 1668 - type: Transform - - uid: 4194 - components: - - pos: 5.5,-19.5 - parent: 1668 - type: Transform - - uid: 4195 - components: - - pos: 5.5,-20.5 - parent: 1668 - type: Transform - - uid: 4196 - components: - - pos: 4.5,-20.5 - parent: 1668 - type: Transform - - uid: 4197 - components: - - pos: 3.5,-20.5 - parent: 1668 - type: Transform - - uid: 4198 - components: - - pos: 2.5,-20.5 - parent: 1668 - type: Transform - - uid: 4199 - components: - - pos: 1.5,-20.5 - parent: 1668 - type: Transform - - uid: 4202 - components: - - pos: -2.5,-20.5 - parent: 1668 - type: Transform - - uid: 4203 - components: - - pos: -3.5,-20.5 - parent: 1668 - type: Transform - - uid: 4204 - components: - - pos: -4.5,-20.5 - parent: 1668 - type: Transform - - uid: 4205 - components: - - pos: -5.5,-20.5 - parent: 1668 - type: Transform - - uid: 4206 - components: - - pos: -6.5,-20.5 - parent: 1668 - type: Transform - - uid: 4207 - components: - - pos: 14.5,-18.5 - parent: 1668 - type: Transform - - uid: 4208 - components: - - pos: 14.5,-19.5 - parent: 1668 - type: Transform - - uid: 4209 - components: - - pos: 14.5,-20.5 - parent: 1668 - type: Transform - - uid: 4210 - components: - - pos: 11.5,-20.5 - parent: 1668 - type: Transform - - uid: 4211 - components: - - pos: 10.5,-20.5 - parent: 1668 - type: Transform - - uid: 4212 - components: - - pos: 9.5,-20.5 - parent: 1668 - type: Transform - - uid: 4213 - components: - - pos: 8.5,-20.5 - parent: 1668 - type: Transform - - uid: 4214 - components: - - pos: 7.5,-20.5 - parent: 1668 - type: Transform - - uid: 4215 - components: - - pos: 6.5,-20.5 - parent: 1668 - type: Transform - - uid: 4216 - components: - - pos: -9.5,-15.5 - parent: 1668 - type: Transform - - uid: 4217 - components: - - pos: -10.5,-15.5 - parent: 1668 - type: Transform - - uid: 4218 - components: - - pos: -11.5,-15.5 - parent: 1668 - type: Transform - - uid: 4219 - components: - - pos: -12.5,-15.5 - parent: 1668 - type: Transform - - uid: 4220 - components: - - pos: -9.5,-17.5 - parent: 1668 - type: Transform - - uid: 4221 - components: - - pos: -12.5,-17.5 - parent: 1668 - type: Transform - - uid: 4234 - components: - - pos: -14.5,-17.5 - parent: 1668 - type: Transform - - uid: 4235 - components: - - pos: -15.5,-17.5 - parent: 1668 - type: Transform - - uid: 4236 - components: - - pos: -15.5,-16.5 - parent: 1668 - type: Transform - - uid: 4237 - components: - - pos: -15.5,-15.5 - parent: 1668 - type: Transform - - uid: 4238 - components: - - pos: -14.5,-15.5 - parent: 1668 - type: Transform - - uid: 4239 - components: - - pos: -15.5,-19.5 - parent: 1668 - type: Transform - - uid: 4240 - components: - - pos: -15.5,-18.5 - parent: 1668 - type: Transform - - uid: 4244 - components: - - pos: -12.5,-20.5 - parent: 1668 - type: Transform - - uid: 4245 - components: - - pos: -11.5,-20.5 - parent: 1668 - type: Transform - - uid: 4246 - components: - - pos: -10.5,-20.5 - parent: 1668 - type: Transform - - uid: 4247 - components: - - pos: -9.5,-20.5 - parent: 1668 - type: Transform - - uid: 4248 - components: - - pos: -8.5,-20.5 - parent: 1668 - type: Transform - - uid: 4249 - components: - - pos: -7.5,-20.5 - parent: 1668 - type: Transform - - uid: 4250 - components: - - pos: -15.5,-20.5 - parent: 1668 - type: Transform - - uid: 4267 - components: - - pos: -12.5,-21.5 - parent: 1668 - type: Transform - - uid: 4268 - components: - - pos: 11.5,-21.5 - parent: 1668 - type: Transform - - uid: 4269 - components: - - pos: -12.5,-23.5 - parent: 1668 - type: Transform - - uid: 4270 - components: - - pos: -6.5,-21.5 - parent: 1668 - type: Transform - - uid: 4271 - components: - - pos: -6.5,-22.5 - parent: 1668 - type: Transform - - uid: 4272 - components: - - pos: -6.5,-23.5 - parent: 1668 - type: Transform - - uid: 4273 - components: - - pos: -6.5,-24.5 - parent: 1668 - type: Transform - - uid: 4274 - components: - - pos: -8.5,-24.5 - parent: 1668 - type: Transform - - uid: 4275 - components: - - pos: -8.5,-28.5 - parent: 1668 - type: Transform - - uid: 4276 - components: - - pos: -8.5,-29.5 - parent: 1668 - type: Transform - - uid: 4277 - components: - - pos: -9.5,-29.5 - parent: 1668 - type: Transform - - uid: 4278 - components: - - pos: -10.5,-29.5 - parent: 1668 - type: Transform - - uid: 4279 - components: - - pos: -11.5,-29.5 - parent: 1668 - type: Transform - - uid: 4280 - components: - - pos: -12.5,-29.5 - parent: 1668 - type: Transform - - uid: 4281 - components: - - pos: -12.5,-28.5 - parent: 1668 - type: Transform - - uid: 4282 - components: - - pos: -12.5,-27.5 - parent: 1668 - type: Transform - - uid: 4283 - components: - - pos: -12.5,-26.5 - parent: 1668 - type: Transform - - uid: 4284 - components: - - pos: -12.5,-25.5 - parent: 1668 - type: Transform - - uid: 4285 - components: - - pos: -12.5,-24.5 - parent: 1668 - type: Transform - - uid: 4288 - components: - - pos: 11.5,-29.5 - parent: 1668 - type: Transform - - uid: 4289 - components: - - pos: 10.5,-29.5 - parent: 1668 - type: Transform - - uid: 4290 - components: - - pos: 9.5,-29.5 - parent: 1668 - type: Transform - - uid: 4291 - components: - - pos: 8.5,-29.5 - parent: 1668 - type: Transform - - uid: 4292 - components: - - pos: 7.5,-29.5 - parent: 1668 - type: Transform - - uid: 4293 - components: - - pos: 11.5,-28.5 - parent: 1668 - type: Transform - - uid: 4294 - components: - - pos: 11.5,-27.5 - parent: 1668 - type: Transform - - uid: 4295 - components: - - pos: 11.5,-26.5 - parent: 1668 - type: Transform - - uid: 4296 - components: - - pos: 11.5,-25.5 - parent: 1668 - type: Transform - - uid: 4297 - components: - - pos: 11.5,-24.5 - parent: 1668 - type: Transform - - uid: 4298 - components: - - pos: 11.5,-23.5 - parent: 1668 - type: Transform - - uid: 4300 - components: - - pos: 7.5,-24.5 - parent: 1668 - type: Transform - - uid: 4301 - components: - - pos: 5.5,-24.5 - parent: 1668 - type: Transform - - uid: 4302 - components: - - pos: 5.5,-23.5 - parent: 1668 - type: Transform - - uid: 4303 - components: - - pos: 5.5,-22.5 - parent: 1668 - type: Transform - - uid: 4304 - components: - - pos: 5.5,-21.5 - parent: 1668 - type: Transform - - uid: 4330 - components: - - pos: -2.5,-24.5 - parent: 1668 - type: Transform - - uid: 4331 - components: - - pos: -3.5,-24.5 - parent: 1668 - type: Transform - - uid: 4332 - components: - - pos: -4.5,-24.5 - parent: 1668 - type: Transform - - uid: 4333 - components: - - pos: -5.5,-24.5 - parent: 1668 - type: Transform - - uid: 4335 - components: - - pos: 1.5,-24.5 - parent: 1668 - type: Transform - - uid: 4336 - components: - - pos: 2.5,-24.5 - parent: 1668 - type: Transform - - uid: 4337 - components: - - pos: 3.5,-24.5 - parent: 1668 - type: Transform - - uid: 4338 - components: - - pos: 4.5,-24.5 - parent: 1668 - type: Transform - - uid: 4353 - components: - - pos: -8.5,-30.5 - parent: 1668 - type: Transform - - uid: 4356 - components: - - pos: -4.5,-30.5 - parent: 1668 - type: Transform - - uid: 4357 - components: - - pos: -3.5,-30.5 - parent: 1668 - type: Transform - - uid: 4358 - components: - - pos: -2.5,-30.5 - parent: 1668 - type: Transform - - uid: 4362 - components: - - pos: 1.5,-30.5 - parent: 1668 - type: Transform - - uid: 4363 - components: - - pos: 2.5,-30.5 - parent: 1668 - type: Transform - - uid: 4364 - components: - - pos: 3.5,-30.5 - parent: 1668 - type: Transform - - uid: 4368 - components: - - pos: 7.5,-30.5 - parent: 1668 - type: Transform - - uid: 4641 - components: - - pos: -15.5,-27.5 - parent: 1668 - type: Transform - - uid: 4642 - components: - - pos: -15.5,-28.5 - parent: 1668 - type: Transform - - uid: 4643 - components: - - pos: -15.5,-23.5 - parent: 1668 - type: Transform - - uid: 4644 - components: - - pos: -15.5,-22.5 - parent: 1668 - type: Transform - - uid: 4645 - components: - - pos: -15.5,-21.5 - parent: 1668 - type: Transform - - uid: 4646 - components: - - pos: -16.5,-28.5 - parent: 1668 - type: Transform - - uid: 4647 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-29.5 - parent: 1668 - type: Transform - - uid: 4648 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-30.5 - parent: 1668 - type: Transform - - uid: 4654 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-34.5 - parent: 1668 - type: Transform - - uid: 4655 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-34.5 - parent: 1668 - type: Transform - - uid: 4656 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-34.5 - parent: 1668 - type: Transform - - uid: 4657 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-34.5 - parent: 1668 - type: Transform - - uid: 4658 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-34.5 - parent: 1668 - type: Transform - - uid: 4659 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-34.5 - parent: 1668 - type: Transform - - uid: 4660 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-34.5 - parent: 1668 - type: Transform - - uid: 4661 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-34.5 - parent: 1668 - type: Transform - - uid: 4662 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-34.5 - parent: 1668 - type: Transform - - uid: 4666 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-34.5 - parent: 1668 - type: Transform - - uid: 4670 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-34.5 - parent: 1668 - type: Transform - - uid: 4674 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-34.5 - parent: 1668 - type: Transform - - uid: 4675 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-34.5 - parent: 1668 - type: Transform - - uid: 4676 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-34.5 - parent: 1668 - type: Transform - - uid: 4677 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-34.5 - parent: 1668 - type: Transform - - uid: 4678 - components: - - pos: 29.5,-13.5 - parent: 1668 - type: Transform - - uid: 4679 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-34.5 - parent: 1668 - type: Transform - - uid: 4680 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-34.5 - parent: 1668 - type: Transform - - uid: 4681 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-34.5 - parent: 1668 - type: Transform - - uid: 4682 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-32.5 - parent: 1668 - type: Transform - - uid: 4683 - components: - - pos: 14.5,-33.5 - parent: 1668 - type: Transform - - uid: 4684 - components: - - pos: 35.5,-18.5 - parent: 1668 - type: Transform - - uid: 4685 - components: - - pos: 35.5,-19.5 - parent: 1668 - type: Transform - - uid: 4686 - components: - - pos: 35.5,-20.5 - parent: 1668 - type: Transform - - uid: 4687 - components: - - pos: 35.5,-22.5 - parent: 1668 - type: Transform - - uid: 4688 - components: - - pos: 35.5,-23.5 - parent: 1668 - type: Transform - - uid: 4689 - components: - - pos: 35.5,-24.5 - parent: 1668 - type: Transform - - uid: 4690 - components: - - pos: 35.5,-21.5 - parent: 1668 - type: Transform - - uid: 4691 - components: - - pos: 35.5,-25.5 - parent: 1668 - type: Transform - - uid: 4692 - components: - - pos: 35.5,-26.5 - parent: 1668 - type: Transform - - uid: 4693 - components: - - pos: 35.5,-27.5 - parent: 1668 - type: Transform - - uid: 4699 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-34.5 - parent: 1668 - type: Transform - - uid: 4700 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-34.5 - parent: 1668 - type: Transform - - uid: 4701 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-34.5 - parent: 1668 - type: Transform - - uid: 4704 - components: - - pos: 22.5,-33.5 - parent: 1668 - type: Transform - - uid: 4705 - components: - - pos: 21.5,-33.5 - parent: 1668 - type: Transform - - uid: 4706 - components: - - pos: 26.5,-31.5 - parent: 1668 - type: Transform - - uid: 4707 - components: - - pos: 26.5,-32.5 - parent: 1668 - type: Transform - - uid: 4708 - components: - - pos: 26.5,-30.5 - parent: 1668 - type: Transform - - uid: 4709 - components: - - pos: 26.5,-29.5 - parent: 1668 - type: Transform - - uid: 4710 - components: - - pos: 26.5,-28.5 - parent: 1668 - type: Transform - - uid: 4717 - components: - - pos: 20.5,-33.5 - parent: 1668 - type: Transform - - uid: 4718 - components: - - pos: 23.5,-33.5 - parent: 1668 - type: Transform - - uid: 4719 - components: - - pos: 24.5,-33.5 - parent: 1668 - type: Transform - - uid: 4720 - components: - - pos: 18.5,-32.5 - parent: 1668 - type: Transform - - uid: 4724 - components: - - pos: 14.5,-21.5 - parent: 1668 - type: Transform - - uid: 4725 - components: - - pos: 14.5,-22.5 - parent: 1668 - type: Transform - - uid: 4726 - components: - - pos: 22.5,-27.5 - parent: 1668 - type: Transform - - uid: 4727 - components: - - pos: 21.5,-27.5 - parent: 1668 - type: Transform - - uid: 4728 - components: - - pos: 20.5,-27.5 - parent: 1668 - type: Transform - - uid: 4729 - components: - - pos: 18.5,-22.5 - parent: 1668 - type: Transform - - uid: 4730 - components: - - pos: 18.5,-23.5 - parent: 1668 - type: Transform - - uid: 4731 - components: - - pos: 18.5,-24.5 - parent: 1668 - type: Transform - - uid: 4732 - components: - - pos: 19.5,-27.5 - parent: 1668 - type: Transform - - uid: 4733 - components: - - pos: 18.5,-26.5 - parent: 1668 - type: Transform - - uid: 4734 - components: - - pos: 18.5,-27.5 - parent: 1668 - type: Transform - - uid: 4735 - components: - - pos: 18.5,-28.5 - parent: 1668 - type: Transform - - uid: 4736 - components: - - pos: 17.5,-28.5 - parent: 1668 - type: Transform - - uid: 4737 - components: - - pos: 16.5,-28.5 - parent: 1668 - type: Transform - - uid: 4738 - components: - - pos: 15.5,-28.5 - parent: 1668 - type: Transform - - uid: 4739 - components: - - pos: 14.5,-28.5 - parent: 1668 - type: Transform - - uid: 4740 - components: - - pos: 14.5,-29.5 - parent: 1668 - type: Transform - - uid: 4741 - components: - - pos: 18.5,-33.5 - parent: 1668 - type: Transform - - uid: 4742 - components: - - pos: 14.5,-31.5 - parent: 1668 - type: Transform - - uid: 4743 - components: - - pos: 22.5,-26.5 - parent: 1668 - type: Transform - - uid: 4744 - components: - - pos: 19.5,-33.5 - parent: 1668 - type: Transform - - uid: 4745 - components: - - pos: 25.5,-33.5 - parent: 1668 - type: Transform - - uid: 4747 - components: - - pos: 22.5,-23.5 - parent: 1668 - type: Transform - - uid: 4748 - components: - - pos: 22.5,-24.5 - parent: 1668 - type: Transform - - uid: 4758 - components: - - pos: 15.5,-19.5 - parent: 1668 - type: Transform - - uid: 4759 - components: - - pos: 17.5,-19.5 - parent: 1668 - type: Transform - - uid: 4760 - components: - - pos: 18.5,-19.5 - parent: 1668 - type: Transform - - uid: 4761 - components: - - pos: 18.5,-18.5 - parent: 1668 - type: Transform - - uid: 5041 - components: - - pos: 22.5,-22.5 - parent: 1668 - type: Transform - - uid: 5042 - components: - - pos: 22.5,-21.5 - parent: 1668 - type: Transform - - uid: 5043 - components: - - pos: 22.5,-20.5 - parent: 1668 - type: Transform - - uid: 5044 - components: - - pos: 22.5,-19.5 - parent: 1668 - type: Transform - - uid: 5048 - components: - - pos: 30.5,-14.5 - parent: 1668 - type: Transform - - uid: 5049 - components: - - pos: 33.5,-14.5 - parent: 1668 - type: Transform - - uid: 5050 - components: - - pos: 34.5,-14.5 - parent: 1668 - type: Transform - - uid: 5052 - components: - - pos: 31.5,-14.5 - parent: 1668 - type: Transform - - uid: 5053 - components: - - pos: 24.5,-27.5 - parent: 1668 - type: Transform - - uid: 5054 - components: - - pos: 25.5,-27.5 - parent: 1668 - type: Transform - - uid: 5055 - components: - - pos: 26.5,-27.5 - parent: 1668 - type: Transform - - uid: 5057 - components: - - pos: 28.5,-27.5 - parent: 1668 - type: Transform - - uid: 5059 - components: - - pos: 30.5,-27.5 - parent: 1668 - type: Transform - - uid: 5060 - components: - - pos: 31.5,-27.5 - parent: 1668 - type: Transform - - uid: 5061 - components: - - pos: 32.5,-27.5 - parent: 1668 - type: Transform - - uid: 5062 - components: - - pos: 33.5,-27.5 - parent: 1668 - type: Transform - - uid: 5063 - components: - - pos: 34.5,-27.5 - parent: 1668 - type: Transform - - uid: 5102 - components: - - pos: 29.5,-15.5 - parent: 1668 - type: Transform - - uid: 5103 - components: - - pos: 29.5,-19.5 - parent: 1668 - type: Transform - - uid: 5104 - components: - - pos: 28.5,-19.5 - parent: 1668 - type: Transform - - uid: 5105 - components: - - pos: 27.5,-19.5 - parent: 1668 - type: Transform - - uid: 5106 - components: - - pos: 23.5,-19.5 - parent: 1668 - type: Transform - - uid: 5107 - components: - - pos: 28.5,-20.5 - parent: 1668 - type: Transform - - uid: 5113 - components: - - pos: 28.5,-26.5 - parent: 1668 - type: Transform - - uid: 5119 - components: - - pos: 30.5,-19.5 - parent: 1668 - type: Transform - - uid: 5120 - components: - - pos: 34.5,-19.5 - parent: 1668 - type: Transform - - uid: 5344 - components: - - pos: 33.5,-32.5 - parent: 1668 - type: Transform - - uid: 5355 - components: - - pos: 31.5,-32.5 - parent: 1668 - type: Transform - - uid: 5388 - components: - - pos: 18.5,-31.5 - parent: 1668 - type: Transform - - uid: 5390 - components: - - pos: 18.5,-29.5 - parent: 1668 - type: Transform - - uid: 5392 - components: - - pos: 32.5,-32.5 - parent: 1668 - type: Transform - - uid: 5396 - components: - - pos: 26.5,-33.5 - parent: 1668 - type: Transform - - uid: 5405 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-31.5 - parent: 1668 - type: Transform - - uid: 5409 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-31.5 - parent: 1668 - type: Transform - - uid: 5784 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-34.5 - parent: 1668 - type: Transform - - uid: 5864 - components: - - pos: -17.5,-28.5 - parent: 1668 - type: Transform - - uid: 5879 - components: - - pos: -3.5,-39.5 - parent: 1668 - type: Transform - - uid: 5881 - components: - - pos: -3.5,-40.5 - parent: 1668 - type: Transform - - uid: 5882 - components: - - pos: -2.5,-38.5 - parent: 1668 - type: Transform - - uid: 5905 - components: - - pos: -3.5,-38.5 - parent: 1668 - type: Transform - - uid: 5909 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-34.5 - parent: 1668 - type: Transform - - uid: 5913 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-34.5 - parent: 1668 - type: Transform - - uid: 5917 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-30.5 - parent: 1668 - type: Transform - - uid: 5918 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-30.5 - parent: 1668 - type: Transform - - uid: 5919 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-30.5 - parent: 1668 - type: Transform - - uid: 5920 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-30.5 - parent: 1668 - type: Transform - - uid: 5921 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-30.5 - parent: 1668 - type: Transform - - uid: 5930 - components: - - pos: -15.5,-33.5 - parent: 1668 - type: Transform - - uid: 5931 - components: - - pos: -15.5,-31.5 - parent: 1668 - type: Transform - - uid: 5941 - components: - - pos: -17.5,-27.5 - parent: 1668 - type: Transform - - uid: 5942 - components: - - pos: -16.5,-22.5 - parent: 1668 - type: Transform - - uid: 5943 - components: - - pos: -17.5,-22.5 - parent: 1668 - type: Transform - - uid: 5944 - components: - - pos: -17.5,-23.5 - parent: 1668 - type: Transform - - uid: 5963 - components: - - pos: -21.5,-30.5 - parent: 1668 - type: Transform - - uid: 5964 - components: - - pos: -21.5,-29.5 - parent: 1668 - type: Transform - - uid: 5965 - components: - - pos: -22.5,-29.5 - parent: 1668 - type: Transform - - uid: 5966 - components: - - pos: -23.5,-29.5 - parent: 1668 - type: Transform - - uid: 5967 - components: - - pos: -23.5,-21.5 - parent: 1668 - type: Transform - - uid: 5968 - components: - - pos: -22.5,-21.5 - parent: 1668 - type: Transform - - uid: 5969 - components: - - pos: -21.5,-21.5 - parent: 1668 - type: Transform - - uid: 5970 - components: - - pos: -17.5,-21.5 - parent: 1668 - type: Transform - - uid: 5971 - components: - - pos: -16.5,-21.5 - parent: 1668 - type: Transform - - uid: 5972 - components: - - pos: -23.5,-28.5 - parent: 1668 - type: Transform - - uid: 5973 - components: - - pos: -23.5,-22.5 - parent: 1668 - type: Transform - - uid: 5974 - components: - - pos: -21.5,-28.5 - parent: 1668 - type: Transform - - uid: 5975 - components: - - pos: -21.5,-22.5 - parent: 1668 - type: Transform - - uid: 6101 - components: - - pos: 28.5,-32.5 - parent: 1668 - type: Transform - - uid: 6233 - components: - - pos: -6.5,-35.5 - parent: 1668 - type: Transform - - uid: 6234 - components: - - pos: -6.5,-36.5 - parent: 1668 - type: Transform - - uid: 6235 - components: - - pos: -6.5,-37.5 - parent: 1668 - type: Transform - - uid: 6236 - components: - - pos: -6.5,-38.5 - parent: 1668 - type: Transform - - uid: 6237 - components: - - pos: -5.5,-38.5 - parent: 1668 - type: Transform - - uid: 6238 - components: - - pos: -4.5,-38.5 - parent: 1668 - type: Transform - - uid: 6241 - components: - - pos: 1.5,-38.5 - parent: 1668 - type: Transform - - uid: 6242 - components: - - pos: 2.5,-38.5 - parent: 1668 - type: Transform - - uid: 6246 - components: - - pos: 3.5,-38.5 - parent: 1668 - type: Transform - - uid: 6247 - components: - - pos: 4.5,-38.5 - parent: 1668 - type: Transform - - uid: 6248 - components: - - pos: 5.5,-38.5 - parent: 1668 - type: Transform - - uid: 6249 - components: - - pos: 5.5,-37.5 - parent: 1668 - type: Transform - - uid: 6250 - components: - - pos: 5.5,-36.5 - parent: 1668 - type: Transform - - uid: 6251 - components: - - pos: 5.5,-35.5 - parent: 1668 - type: Transform - - uid: 6271 - components: - - pos: -2.5,-40.5 - parent: 1668 - type: Transform - - uid: 6272 - components: - - pos: 2.5,-39.5 - parent: 1668 - type: Transform - - uid: 6273 - components: - - pos: 2.5,-40.5 - parent: 1668 - type: Transform - - uid: 6274 - components: - - pos: 1.5,-40.5 - parent: 1668 - type: Transform - - uid: 6292 - components: - - pos: -3.5,-44.5 - parent: 1668 - type: Transform - - uid: 6293 - components: - - pos: -3.5,-45.5 - parent: 1668 - type: Transform - - uid: 6294 - components: - - pos: -3.5,-46.5 - parent: 1668 - type: Transform - - uid: 6297 - components: - - pos: 2.5,-44.5 - parent: 1668 - type: Transform - - uid: 6298 - components: - - pos: 2.5,-45.5 - parent: 1668 - type: Transform - - uid: 6299 - components: - - pos: 2.5,-46.5 - parent: 1668 - type: Transform - - uid: 6361 - components: - - pos: -4.5,-44.5 - parent: 1668 - type: Transform - - uid: 6362 - components: - - pos: -5.5,-44.5 - parent: 1668 - type: Transform - - uid: 6363 - components: - - pos: -6.5,-44.5 - parent: 1668 - type: Transform - - uid: 6364 - components: - - pos: -7.5,-44.5 - parent: 1668 - type: Transform - - uid: 6365 - components: - - pos: -7.5,-43.5 - parent: 1668 - type: Transform - - uid: 6366 - components: - - pos: -7.5,-42.5 - parent: 1668 - type: Transform - - uid: 6367 - components: - - pos: -7.5,-41.5 - parent: 1668 - type: Transform - - uid: 6368 - components: - - pos: -7.5,-40.5 - parent: 1668 - type: Transform - - uid: 6369 - components: - - pos: -7.5,-39.5 - parent: 1668 - type: Transform - - uid: 6370 - components: - - pos: -7.5,-38.5 - parent: 1668 - type: Transform - - uid: 6371 - components: - - pos: -7.5,-37.5 - parent: 1668 - type: Transform - - uid: 6372 - components: - - pos: -7.5,-36.5 - parent: 1668 - type: Transform - - uid: 6373 - components: - - pos: -7.5,-35.5 - parent: 1668 - type: Transform - - uid: 6374 - components: - - pos: 6.5,-35.5 - parent: 1668 - type: Transform - - uid: 6375 - components: - - pos: 6.5,-36.5 - parent: 1668 - type: Transform - - uid: 6376 - components: - - pos: 6.5,-37.5 - parent: 1668 - type: Transform - - uid: 6377 - components: - - pos: 6.5,-38.5 - parent: 1668 - type: Transform - - uid: 6378 - components: - - pos: 6.5,-39.5 - parent: 1668 - type: Transform - - uid: 6379 - components: - - pos: 6.5,-40.5 - parent: 1668 - type: Transform - - uid: 6380 - components: - - pos: 6.5,-41.5 - parent: 1668 - type: Transform - - uid: 6381 - components: - - pos: 6.5,-42.5 - parent: 1668 - type: Transform - - uid: 6382 - components: - - pos: 6.5,-43.5 - parent: 1668 - type: Transform - - uid: 6383 - components: - - pos: 6.5,-44.5 - parent: 1668 - type: Transform - - uid: 6384 - components: - - pos: 5.5,-44.5 - parent: 1668 - type: Transform - - uid: 6385 - components: - - pos: 4.5,-44.5 - parent: 1668 - type: Transform - - uid: 6386 - components: - - pos: 3.5,-44.5 - parent: 1668 - type: Transform - - uid: 6387 - components: - - pos: 2.5,-43.5 - parent: 1668 - type: Transform - - uid: 6388 - components: - - pos: 2.5,-41.5 - parent: 1668 - type: Transform - - uid: 6389 - components: - - pos: -3.5,-43.5 - parent: 1668 - type: Transform - - uid: 6390 - components: - - pos: -3.5,-41.5 - parent: 1668 - type: Transform - - uid: 6534 - components: - - pos: 7.5,-35.5 - parent: 1668 - type: Transform - - uid: 6535 - components: - - pos: 8.5,-35.5 - parent: 1668 - type: Transform - - uid: 6536 - components: - - pos: 9.5,-35.5 - parent: 1668 - type: Transform - - uid: 6537 - components: - - pos: 10.5,-35.5 - parent: 1668 - type: Transform - - uid: 6538 - components: - - pos: 11.5,-35.5 - parent: 1668 - type: Transform - - uid: 6539 - components: - - pos: 12.5,-35.5 - parent: 1668 - type: Transform - - uid: 6540 - components: - - pos: 13.5,-35.5 - parent: 1668 - type: Transform - - uid: 6541 - components: - - pos: 14.5,-35.5 - parent: 1668 - type: Transform - - uid: 6542 - components: - - pos: 15.5,-35.5 - parent: 1668 - type: Transform - - uid: 6543 - components: - - pos: 15.5,-34.5 - parent: 1668 - type: Transform - - uid: 6544 - components: - - pos: 15.5,-33.5 - parent: 1668 - type: Transform - - uid: 6545 - components: - - pos: 16.5,-33.5 - parent: 1668 - type: Transform - - uid: 6546 - components: - - pos: 17.5,-33.5 - parent: 1668 - type: Transform - - uid: 6772 - components: - - pos: 27.5,-32.5 - parent: 1668 - type: Transform - - uid: 6778 - components: - - pos: 30.5,-32.5 - parent: 1668 - type: Transform - - uid: 6785 - components: - - pos: 29.5,-32.5 - parent: 1668 - type: Transform - - uid: 6788 - components: - - pos: 29.5,-27.5 - parent: 1668 - type: Transform - - uid: 6842 - components: - - pos: 34.5,-32.5 - parent: 1668 - type: Transform -- proto: WardrobeCargoFilled - entities: - - uid: 2208 - components: - - pos: -5.5,19.5 - parent: 1668 - type: Transform -- proto: WardrobePrisonFilled - entities: - - uid: 2765 - components: - - pos: 15.5,21.5 - parent: 1668 - type: Transform - - uid: 2773 - components: - - pos: 15.5,24.5 - parent: 1668 - type: Transform - - uid: 2871 - components: - - pos: 2.5,24.5 - parent: 1668 - type: Transform - - uid: 2872 - components: - - pos: 2.5,27.5 - parent: 1668 - type: Transform - - uid: 2873 - components: - - pos: 15.5,27.5 - parent: 1668 - type: Transform -- proto: WarpPoint - entities: - - uid: 6637 - components: - - pos: -0.5,3.5 - parent: 1668 - type: Transform - - location: Centcomm - type: WarpPoint -- proto: WaterCooler - entities: - - uid: 5318 - components: - - pos: 27.5,-20.5 - parent: 1668 - type: Transform -- proto: WaterTankFull - entities: - - uid: 128 - components: - - pos: -27.5,2.5 - parent: 1668 - type: Transform - - uid: 2042 - components: - - pos: -1.5,18.5 - parent: 1668 - type: Transform -- proto: WeaponAdvancedLaser - entities: - - uid: 3130 - components: - - pos: 10.557603,32.615883 - parent: 1668 - type: Transform - - uid: 3131 - components: - - pos: 10.604478,32.490883 - parent: 1668 - type: Transform - - uid: 3132 - components: - - pos: 10.651353,32.365883 - parent: 1668 - type: Transform -- proto: WeaponCapacitorRecharger - entities: - - uid: 1446 - components: - - pos: 2.5,-2.5 - parent: 1668 - type: Transform - - uid: 1447 - components: - - pos: 10.5,3.5 - parent: 1668 - type: Transform - - uid: 1449 - components: - - pos: -6.5,-13.5 - parent: 1668 - type: Transform - - uid: 2471 - components: - - pos: 23.5,15.5 - parent: 1668 - type: Transform - - uid: 2747 - components: - - pos: 8.5,17.5 - parent: 1668 - type: Transform - - uid: 2824 - components: - - pos: 10.5,27.5 - parent: 1668 - type: Transform - - uid: 3261 - components: - - pos: 8.5,23.5 - parent: 1668 - type: Transform - - uid: 3734 - components: - - pos: -26.5,9.5 - parent: 1668 - type: Transform - - uid: 3859 - components: - - pos: -17.5,-3.5 - parent: 1668 - type: Transform - - uid: 4695 - components: - - pos: 24.5,-9.5 - parent: 1668 - type: Transform -- proto: WeaponDisabler - entities: - - uid: 4697 - components: - - pos: 20.88646,-10.507892 - parent: 1668 - type: Transform - - uid: 6548 - components: - - pos: 5.3912725,-39.402473 - parent: 1668 - type: Transform -- proto: WeaponPistolMk58 - entities: - - uid: 3902 - components: - - pos: -12.469432,-9.508516 - parent: 1668 - type: Transform -- proto: WeaponPulseCarbine - entities: - - uid: 2202 - components: - - pos: 6.5531197,32.415283 - parent: 1668 - type: Transform - - uid: 2203 - components: - - pos: 6.5062447,32.64966 - parent: 1668 - type: Transform - - uid: 3124 - components: - - pos: 12.544843,32.634033 - parent: 1668 - type: Transform - - uid: 3125 - components: - - pos: 12.669843,32.477783 - parent: 1668 - type: Transform -- proto: WeaponPulsePistol - entities: - - uid: 4389 - components: - - pos: 5.546056,32.663063 - parent: 1668 - type: Transform - - uid: 4390 - components: - - pos: 5.686681,32.522438 - parent: 1668 - type: Transform - - uid: 4721 - components: - - pos: 13.653802,32.491188 - parent: 1668 - type: Transform - - uid: 4722 - components: - - pos: 13.481927,32.663063 - parent: 1668 - type: Transform -- proto: WeaponRevolverDeckard - entities: - - uid: 3768 - components: - - pos: -12.392023,4.511138 - parent: 1668 - type: Transform -- proto: WeaponRevolverMateba - entities: - - uid: 1436 - components: - - pos: 2.4898672,30.350563 - parent: 1668 - type: Transform - - uid: 1445 - components: - - pos: 2.6461172,30.288063 - parent: 1668 - type: Transform - - uid: 1456 - components: - - pos: 16.456459,30.319313 - parent: 1668 - type: Transform - - uid: 6611 - components: - - pos: 16.628334,30.272438 - parent: 1668 - type: Transform -- proto: WeaponSniperHristov - entities: - - uid: 3138 - components: - - pos: 8.479478,29.789814 - parent: 1668 - type: Transform -- proto: WeaponSubMachineGunAtreides - entities: - - uid: 6603 - components: - - pos: 8.51666,29.42835 - parent: 1668 - type: Transform -- proto: WeaponSubMachineGunWt550 - entities: - - uid: 3129 - components: - - pos: 4.532072,18.989985 - parent: 1668 - type: Transform - - uid: 3895 - components: - - pos: -13.438182,-3.4256558 - parent: 1668 - type: Transform -- proto: WeaponTaser - entities: - - uid: 79 - components: - - pos: 10.5444565,3.9803991 - parent: 1668 - type: Transform - - uid: 1459 - components: - - pos: -4.4574313,-9.606358 - parent: 1668 - type: Transform - - uid: 3727 - components: - - pos: -25.555511,12.593331 - parent: 1668 - type: Transform - - uid: 6780 - components: - - pos: 26.613934,-11.4401045 - parent: 1668 - type: Transform -- proto: WeaponXrayCannon - entities: - - uid: 3136 - components: - - pos: 8.510728,32.664814 - parent: 1668 - type: Transform - - uid: 3137 - components: - - pos: 8.526353,32.55544 - parent: 1668 - type: Transform -- proto: WelderExperimental - entities: - - uid: 3699 - components: - - pos: -16.435745,6.6259594 - parent: 1668 - type: Transform - - uid: 4394 - components: - - pos: 21.568373,-15.468605 - parent: 1668 - type: Transform -- proto: WelderIndustrial - entities: - - uid: 5374 - components: - - pos: 26.560297,-23.266705 - parent: 1668 - type: Transform -- proto: WelderIndustrialAdvanced - entities: - - uid: 2196 - components: - - pos: -1.3562617,24.407354 - parent: 1668 - type: Transform -- proto: WeldingFuelTankFull - entities: - - uid: 127 - components: - - pos: -26.5,6.5 - parent: 1668 - type: Transform - - uid: 2041 - components: - - pos: 0.5,18.5 - parent: 1668 - type: Transform -- proto: WeldingFuelTankHighCapacity - entities: - - uid: 6843 - components: - - pos: 26.5,-13.5 - parent: 1668 - type: Transform - - uid: 6844 - components: - - pos: 25.5,-13.5 - parent: 1668 - type: Transform -- proto: WetFloorSign - entities: - - uid: 5883 - components: - - pos: -17.066446,-31.95819 - parent: 1668 - type: Transform -- proto: Windoor - entities: - - uid: 563 - components: - - pos: 12.5,2.5 - parent: 1668 - type: Transform - - uid: 564 - components: - - pos: 14.5,2.5 - parent: 1668 - type: Transform - - uid: 2409 - components: - - pos: 25.5,20.5 - parent: 1668 - type: Transform - - uid: 2410 - components: - - pos: 31.5,20.5 - parent: 1668 - type: Transform - - uid: 2710 - components: - - pos: 9.5,16.5 - parent: 1668 - type: Transform - - uid: 4255 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-16.5 - parent: 1668 - type: Transform - - uid: 6848 - components: - - pos: 3.5,-17.5 - parent: 1668 - type: Transform -- proto: WindoorBarLocked - entities: - - uid: 4410 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-28.5 - parent: 1668 - type: Transform -- proto: WindoorSecure - entities: - - uid: 2345 - components: - - pos: 34.5,14.5 - parent: 1668 - type: Transform - - uid: 3760 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,11.5 - parent: 1668 - type: Transform - - uid: 3761 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,9.5 - parent: 1668 - type: Transform -- proto: WindoorSecureArmoryLocked - entities: - - uid: 2554 - components: - - rot: 3.141592653589793 rad - pos: 9.5,16.5 - parent: 1668 - type: Transform -- proto: WindoorSecureBrigLocked - entities: - - uid: 2425 - components: - - pos: 28.5,20.5 - parent: 1668 - type: Transform -- proto: WindoorSecureCargoLocked - entities: - - uid: 1621 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,9.5 - parent: 1668 - type: Transform - - uid: 1622 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,10.5 - parent: 1668 - type: Transform -- proto: WindoorSecureCommandLocked - entities: - - uid: 4230 - components: - - pos: -12.5,-3.5 - parent: 1668 - type: Transform - - uid: 4231 - components: - - pos: -13.5,-3.5 - parent: 1668 - type: Transform - - uid: 4232 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-9.5 - parent: 1668 - type: Transform - - uid: 4233 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-9.5 - parent: 1668 - type: Transform -- proto: WindoorSecureEngineeringLocked - entities: - - uid: 4757 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-22.5 - parent: 1668 - type: Transform -- proto: WindoorSecureMedicalLocked - entities: - - uid: 732 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-11.5 - parent: 1668 - type: Transform - - uid: 734 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-12.5 - parent: 1668 - type: Transform - - uid: 1198 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-15.5 - parent: 1668 - type: Transform -- proto: WindoorSecureSecurityLocked - entities: - - uid: 497 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-7.5 - parent: 1668 - type: Transform - - uid: 561 - components: - - rot: 3.141592653589793 rad - pos: 12.5,2.5 - parent: 1668 - type: Transform - - uid: 562 - components: - - rot: 3.141592653589793 rad - pos: 14.5,2.5 - parent: 1668 - type: Transform - - uid: 790 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-11.5 - parent: 1668 - type: Transform - - uid: 791 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-12.5 - parent: 1668 - type: Transform - - uid: 2558 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,22.5 - parent: 1668 - type: Transform - - links: - - 6649 - type: DeviceLinkSink - - uid: 2776 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,25.5 - parent: 1668 - type: Transform - - links: - - 3906 - type: DeviceLinkSink - - uid: 2832 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,25.5 - parent: 1668 - type: Transform - - links: - - 3723 - type: DeviceLinkSink - - uid: 2862 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,28.5 - parent: 1668 - type: Transform - - links: - - 6602 - type: DeviceLinkSink - - uid: 2863 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,28.5 - parent: 1668 - type: Transform - - links: - - 3870 - type: DeviceLinkSink -- proto: WindowReinforcedDirectional - entities: - - uid: 485 - components: - - pos: 25.5,6.5 - parent: 1668 - type: Transform - - uid: 487 - components: - - pos: 26.5,6.5 - parent: 1668 - type: Transform - - uid: 488 - components: - - pos: 27.5,6.5 - parent: 1668 - type: Transform - - uid: 490 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-7.5 - parent: 1668 - type: Transform - - uid: 496 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-7.5 - parent: 1668 - type: Transform - - uid: 619 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-7.5 - parent: 1668 - type: Transform - - uid: 626 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-7.5 - parent: 1668 - type: Transform - - uid: 1086 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-9.5 - parent: 1668 - type: Transform - - uid: 1087 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-9.5 - parent: 1668 - type: Transform - - uid: 1197 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-15.5 - parent: 1668 - type: Transform - - uid: 2395 - components: - - pos: 26.5,22.5 - parent: 1668 - type: Transform - - uid: 2396 - components: - - pos: 25.5,22.5 - parent: 1668 - type: Transform - - uid: 2397 - components: - - pos: 31.5,22.5 - parent: 1668 - type: Transform - - uid: 2398 - components: - - pos: 30.5,22.5 - parent: 1668 - type: Transform - - uid: 2399 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,21.5 - parent: 1668 - type: Transform - - uid: 2400 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,21.5 - parent: 1668 - type: Transform - - uid: 2401 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,20.5 - parent: 1668 - type: Transform - - uid: 2402 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,21.5 - parent: 1668 - type: Transform - - uid: 2403 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,20.5 - parent: 1668 - type: Transform - - uid: 2404 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,21.5 - parent: 1668 - type: Transform - - uid: 2405 - components: - - pos: 27.5,20.5 - parent: 1668 - type: Transform - - uid: 2406 - components: - - pos: 29.5,20.5 - parent: 1668 - type: Transform - - uid: 2407 - components: - - pos: 30.5,20.5 - parent: 1668 - type: Transform - - uid: 2408 - components: - - pos: 26.5,20.5 - parent: 1668 - type: Transform - - uid: 2440 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-15.5 - parent: 1668 - type: Transform - - uid: 3757 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,8.5 - parent: 1668 - type: Transform - - uid: 3758 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,12.5 - parent: 1668 - type: Transform - - uid: 3759 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,10.5 - parent: 1668 - type: Transform - - uid: 3892 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-3.5 - parent: 1668 - type: Transform - - uid: 3893 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-3.5 - parent: 1668 - type: Transform - - uid: 4254 - components: - - pos: 2.5,-17.5 - parent: 1668 - type: Transform - - uid: 4411 - components: - - pos: 7.5,-27.5 - parent: 1668 - type: Transform - - uid: 5217 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-15.5 - parent: 1668 - type: Transform - - uid: 5219 - components: - - pos: 4.5,-17.5 - parent: 1668 - type: Transform - - uid: 5386 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-28.5 - parent: 1668 - type: Transform - - uid: 5397 - components: - - pos: 19.5,-29.5 - parent: 1668 - type: Transform - - uid: 5398 - components: - - pos: 20.5,-29.5 - parent: 1668 - type: Transform - - uid: 5410 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-29.5 - parent: 1668 - type: Transform - - uid: 5411 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-28.5 - parent: 1668 - type: Transform - - uid: 5416 - components: - - pos: 24.5,-29.5 - parent: 1668 - type: Transform - - uid: 5417 - components: - - pos: 25.5,-29.5 - parent: 1668 - type: Transform - - uid: 5453 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-17.5 - parent: 1668 - type: Transform - - uid: 5454 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-16.5 - parent: 1668 - type: Transform - - uid: 5928 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-31.5 - parent: 1668 - type: Transform - - uid: 5929 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-32.5 - parent: 1668 - type: Transform - - uid: 6314 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-29.5 - parent: 1668 - type: Transform - - uid: 6787 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-17.5 - parent: 1668 - type: Transform -- proto: Wrench - entities: - - uid: 6720 - components: - - pos: 9.506623,-4.4162817 - parent: 1668 - type: Transform -- proto: YellowOxygenTankFilled - entities: - - uid: 3901 - components: - - pos: -12.625682,-7.0710163 - parent: 1668 - type: Transform -... +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand + 14: FloorBar + 17: FloorBlueCircuit + 29: FloorDark + 38: FloorDarkPlastic + 47: FloorGrass + 54: FloorGreenCircuit + 60: FloorKitchen + 61: FloorLaundry + 62: FloorLino + 77: FloorReinforced + 89: FloorSteel + 104: FloorTechMaint + 108: FloorWhite + 118: FloorWood + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 1668 + components: + - name: Central Command + type: MetaData + - parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAWQAAAAABWQAAAAADWQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAADAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABeQAAAAAABwAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAAAeQAAAAAALwAAAAAALwAAAAAAeQAAAAAAHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAdgAAAAADPgAAAAAAPgAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABHQAAAAADHQAAAAACHQAAAAABWQAAAAAAWQAAAAACeQAAAAAAHQAAAAADdgAAAAADPgAAAAAAPgAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAABdgAAAAADPgAAAAAAPgAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: WQAAAAABWQAAAAADHQAAAAABHQAAAAADHQAAAAABeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAABwAAAAAAeQAAAAAAHQAAAAADWQAAAAACWQAAAAACWQAAAAADHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAADWQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAALwAAAAAAeQAAAAAAHQAAAAAAeQAAAAAALwAAAAAALwAAAAAAeQAAAAAAbAAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACbAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAALwAAAAAAeQAAAAAAbAAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACbAAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACeQAAAAAALwAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAbAAAAAADeQAAAAAAPgAAAAAAdgAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAPgAAAAAAdgAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABHQAAAAAAHQAAAAAAHQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAPgAAAAAAdgAAAAABHQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAC + version: 6 + -1,0: + ind: -1,0 + tiles: WQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAHQAAAAADHQAAAAAAHQAAAAADWQAAAAAAWQAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADLwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACeQAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAACHQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADPgAAAAAAHQAAAAACeQAAAAAAHQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADPgAAAAAAHQAAAAABeQAAAAAAHQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADPgAAAAAAHQAAAAADeQAAAAAAHQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACHQAAAAABHQAAAAACeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADHQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABHQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAC + version: 6 + 0,0: + ind: 0,0 + tiles: HQAAAAABHQAAAAADHQAAAAACHQAAAAADWQAAAAACWQAAAAACHQAAAAABHQAAAAABHQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAAAeQAAAAAALwAAAAAAeQAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAALwAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAHQAAAAACHQAAAAAAHQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAHQAAAAABWQAAAAADWQAAAAABWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABHQAAAAAAHQAAAAAAHQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABHQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABeQAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: aAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAACeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAACeQAAAAAALwAAAAAALwAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAABwAAAAAAeQAAAAAAHQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACeQAAAAAAHQAAAAABeQAAAAAAHQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAHQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAB + version: 6 + 1,0: + ind: 1,0 + tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAHQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAABwAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAABwAAAAAABwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAADHQAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAADHQAAAAACdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAAAdgAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAHQAAAAAAHQAAAAABdgAAAAAAHQAAAAADHQAAAAACHQAAAAAADgAAAAABDgAAAAACDgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAaAAAAAAAdgAAAAABHQAAAAABHQAAAAACHQAAAAADDgAAAAAADgAAAAABHQAAAAAAHQAAAAABdgAAAAAAdgAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAADgAAAAACDgAAAAACDgAAAAADDgAAAAABDgAAAAABDgAAAAADHQAAAAAAHQAAAAACdgAAAAAAdgAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAADgAAAAADDgAAAAAAHQAAAAABHQAAAAAAHQAAAAAADgAAAAADHQAAAAACHQAAAAAAdgAAAAABdgAAAAABHQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABDgAAAAAADgAAAAACHQAAAAAAHQAAAAAAHQAAAAAADgAAAAADHQAAAAADHQAAAAAAdgAAAAACdgAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAdgAAAAADdgAAAAACHQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACHQAAAAABeQAAAAAAHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABHQAAAAACeQAAAAAAHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAACHQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAWQAAAAACWQAAAAABHQAAAAACHQAAAAACHQAAAAABeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAAAWQAAAAACWQAAAAABeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: HQAAAAADHQAAAAABJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAADHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAaAAAAAAAaAAAAAAAJgAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAJgAAAAADHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAJgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAATQAAAAAANgAAAAAANgAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAADeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAADeQAAAAAATQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACHQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAHQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABHQAAAAACWQAAAAADWQAAAAAB + version: 6 + -1,-2: + ind: -1,-2 + tiles: eQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAADDgAAAAABDgAAAAAAHQAAAAADHQAAAAACHQAAAAAAdgAAAAADdgAAAAABeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAADgAAAAADDgAAAAABDgAAAAADHQAAAAABHQAAAAABHQAAAAABdgAAAAAAdgAAAAADeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAACPAAAAAAAPAAAAAAAHQAAAAACDgAAAAADDgAAAAABDgAAAAADDgAAAAABDgAAAAADDgAAAAAADgAAAAABDgAAAAABHQAAAAADWQAAAAAAWQAAAAABeQAAAAAAHQAAAAABPAAAAAAAPAAAAAAAHQAAAAABDgAAAAADDgAAAAADHQAAAAAAHQAAAAAAHQAAAAAADgAAAAACDgAAAAACDgAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAADPAAAAAAAPAAAAAAAHQAAAAADDgAAAAADDgAAAAADHQAAAAACHQAAAAABHQAAAAABDgAAAAAADgAAAAADDgAAAAABHQAAAAABWQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAACPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAWQAAAAADWQAAAAADHQAAAAAAHQAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAADeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: WQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAdgAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAdgAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: WQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: HQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAABHQAAAAABAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: WQAAAAABWQAAAAAAWQAAAAACeQAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAABwAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAAAHQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAWQAAAAADWQAAAAADWQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAABTQAAAAAA + version: 6 + 2,-2: + ind: 2,-2 + tiles: HQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAANgAAAAAANgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: HQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAACaAAAAAAAeQAAAAAAHQAAAAAAdgAAAAABdgAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAADdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAaAAAAAAAeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADeQAAAAAAHQAAAAADdgAAAAADdgAAAAAAHQAAAAACHQAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAADdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,1: + ind: -2,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: WQAAAAACWQAAAAAAWQAAAAAAHQAAAAADHQAAAAABHQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADeQAAAAAALwAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAdgAAAAACdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAHQAAAAABdgAAAAADdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABdgAAAAADdgAAAAADdgAAAAABdgAAAAABdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAA + version: 6 + -1,2: + ind: -1,2 + tiles: AAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: HQAAAAADPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: eQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAACHQAAAAADeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: TQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAWQAAAAAAHQAAAAABWQAAAAABHQAAAAACWQAAAAABHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAADHQAAAAADWQAAAAACHQAAAAADWQAAAAACHQAAAAACWQAAAAABHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACWQAAAAAANgAAAAAANgAAAAAAWQAAAAAAWQAAAAADHQAAAAABHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAADHQAAAAABWQAAAAAAHQAAAAACWQAAAAACHQAAAAADWQAAAAAAHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABWQAAAAACHQAAAAACWQAAAAADHQAAAAADWQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADHQAAAAAAHQAAAAACHQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAC + version: 6 + -3,-1: + ind: -3,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -3,0: + ind: -3,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-3: + ind: -1,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAHQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-3: + ind: 0,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAACeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAA + version: 6 + 1,-3: + ind: 1,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -2,-3: + ind: -2,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAC + version: 6 + -2,-2: + ind: -2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAHQAAAAABHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA + version: 6 + 2,-3: + ind: 2,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - id: centcomm + type: BecomesStation + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + angle: -1.5707963267948966 rad + color: '#DE3A3A96' + id: Arrows + decals: + 522: 8,28 + - node: + angle: 1.5707963267948966 rad + color: '#DE3A3A96' + id: Arrows + decals: + 521: 10,28 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 787: 29,-22 + 788: 33,-27 + 800: 32,-14 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 401: -11,28 + 474: 15,31 + 476: 5,31 + 911: 19,-26 + 977: 3,-43 + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 781: 33,-21 + 782: 31,-21 + 786: 29,-26 + 915: 17,-31 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 376: -6,15 + 400: -11,24 + 475: 3,31 + 477: 13,31 + 910: 21,-26 + 978: -5,-43 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 790: 31,-27 + - node: + angle: -3.141592653589793 rad + color: '#52B4E9C3' + id: ArrowsGreyscale + decals: + 308: 11,-15 + - node: + color: '#DE3A3A96' + id: Bot + decals: + 302: 9,6 + 303: 13,4 + 534: 8,31 + 535: 10,31 + 536: 12,31 + 538: 6,31 + 762: 22,-11 + 763: 19,-11 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 49: 31,-6 + 50: 31,-4 + 51: 30,-6 + 52: 30,-4 + 53: 31,2 + 54: 30,2 + 55: 31,4 + 56: 30,4 + 103: 14,-3 + 104: 12,-3 + 235: -3,-13 + 236: 1,-13 + 237: -1,-12 + 277: 4,0 + 278: -6,0 + 372: -4,10 + 373: -4,15 + 377: -6,16 + 378: -6,17 + 379: -6,14 + 382: -7,28 + 383: -8,28 + 384: -9,28 + 385: -7,26 + 386: -8,26 + 387: -9,26 + 388: -7,24 + 389: -8,24 + 390: -9,24 + 391: -7,22 + 392: -8,22 + 393: -9,22 + 565: 9,15 + 567: 14,13 + 568: 14,11 + 569: 6,11 + 570: 6,13 + 575: 11,25 + 576: 8,22 + 577: -1,13 + 578: -1,11 + 580: -34,1 + 581: -34,-3 + 584: -31,-2 + 585: -30,-2 + 586: -31,0 + 587: -30,0 + 619: -22,0 + 620: -21,-2 + 621: -23,-2 + 622: -14,-1 + 674: -15,-8 + 675: -15,-7 + 676: -15,-6 + 677: -12,-8 + 678: -12,-7 + 679: -12,-6 + 714: 4,25 + 715: 4,28 + 716: 14,28 + 717: 14,25 + 718: 14,22 + 783: 29,-23 + 784: 29,-25 + 791: 32,-12 + 796: 32,-13 + 797: 31,-12 + 798: 32,-11 + 799: 33,-12 + 896: 23,-24 + 897: 23,-23 + 898: 28,-14 + 899: 27,-14 + 900: 34,-19 + 901: 34,-16 + 908: 17,-26 + 909: 23,-26 + 912: 17,-32 + 913: 16,-32 + 932: -20,-27 + 933: -19,-27 + 934: -20,-25 + 935: -19,-25 + 979: -5,-41 + 980: -5,-44 + 987: 3,-41 + 988: 3,-44 + 1231: 21,-27 + 1232: 20,-27 + 1233: 19,-27 + - node: + color: '#FFFFFFFF' + id: BotLeft + decals: + 574: 8,25 + 792: 33,-11 + 793: 31,-13 + 983: -6,-42 + 984: -6,-43 + 985: 4,-43 + 986: 4,-42 + - node: + color: '#FFFFFFFF' + id: BotRight + decals: + 794: 33,-13 + 795: 31,-11 + 1160: 13,-15 + 1161: 13,-14 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 1094: 19,15 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 1100: 17,15 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 1098: 19,11 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 1099: 17,11 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 1095: 19,14 + 1096: 19,13 + 1097: 19,12 + 1108: 33,21 + 1109: 33,22 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 1102: 18,15 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 1101: 18,11 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 1103: 17,12 + 1104: 17,13 + 1105: 17,14 + 1106: 23,21 + 1107: 23,22 + - node: + color: '#52B4E996' + id: BrickTileSteelCornerNe + decals: + 1120: 5,-10 + - node: + color: '#52B4E996' + id: BrickTileSteelCornerNw + decals: + 1119: 3,-10 + - node: + color: '#52B4E996' + id: BrickTileSteelCornerSe + decals: + 1121: 5,-14 + - node: + color: '#52B4E996' + id: BrickTileSteelCornerSw + decals: + 1115: 3,-14 + - node: + color: '#52B4E996' + id: BrickTileSteelInnerNe + decals: + 1142: 5,-12 + - node: + color: '#52B4E996' + id: BrickTileSteelInnerSe + decals: + 1141: 5,-12 + 1150: 13,-12 + - node: + color: '#52B4E996' + id: BrickTileSteelInnerSw + decals: + 1143: 9,-12 + - node: + color: '#52B4E996' + id: BrickTileSteelLineE + decals: + 1123: 5,-11 + 1124: 5,-13 + 1147: 13,-15 + 1148: 13,-14 + 1149: 13,-13 + - node: + color: '#52B4E996' + id: BrickTileSteelLineN + decals: + 1128: 15,-12 + 1129: 14,-12 + 1130: 13,-12 + 1131: 12,-12 + 1132: 11,-12 + 1133: 10,-12 + 1134: 9,-12 + 1135: 7,-12 + 1136: 6,-12 + 1139: 8,-12 + 1151: 16,-12 + - node: + color: '#52B4E996' + id: BrickTileSteelLineS + decals: + 1122: 4,-14 + 1137: 7,-12 + 1138: 6,-12 + 1140: 8,-12 + 1152: 16,-12 + 1153: 15,-12 + 1154: 14,-12 + - node: + color: '#52B4E996' + id: BrickTileSteelLineW + decals: + 1116: 3,-13 + 1117: 3,-12 + 1118: 3,-11 + 1144: 9,-13 + 1145: 9,-14 + 1146: 9,-15 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerNe + decals: + 1166: 1,-16 + 1171: 4,-19 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerNw + decals: + 1167: -3,-16 + 1170: -6,-19 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerSe + decals: + 1168: 4,-20 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerSw + decals: + 1169: -6,-20 + - node: + color: '#9FED5896' + id: BrickTileWhiteInnerNe + decals: + 1173: 1,-19 + - node: + color: '#9FED5896' + id: BrickTileWhiteInnerNw + decals: + 1172: -3,-19 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineE + decals: + 1174: 1,-18 + - node: + color: '#79150096' + id: BrickTileWhiteLineN + decals: + 1229: 33,-32 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineN + decals: + 1175: 2,-19 + 1185: 0,-16 + 1186: -2,-16 + - node: + color: '#A4610696' + id: BrickTileWhiteLineN + decals: + 1227: 30,-32 + - node: + color: '#D4D4D428' + id: BrickTileWhiteLineN + decals: + 1230: 32,-32 + - node: + color: '#D4D4D496' + id: BrickTileWhiteLineN + decals: + 1226: 29,-32 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 1228: 31,-32 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineS + decals: + 1221: 29,-29 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 1225: 33,-29 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineS + decals: + 1176: 2,-20 + 1177: 1,-20 + 1178: 0,-20 + 1179: -2,-20 + 1180: -3,-20 + 1181: -4,-20 + 1182: -5,-20 + 1193: 3,-20 + 1223: 31,-29 + - node: + color: '#D381C996' + id: BrickTileWhiteLineS + decals: + 1222: 30,-29 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 1224: 32,-29 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineW + decals: + 1183: -3,-18 + 1184: -3,-17 + - node: + color: '#FFFFFFFF' + id: Bushb1 + decals: + 1242: -9,6 + - node: + color: '#FFFFFFFF' + id: Bushb3 + decals: + 452: 10,8 + 726: 9.488686,-17.018105 + - node: + color: '#FFFFFFFF' + id: Bushc1 + decals: + 723: -11.564524,-16.986855 + - node: + color: '#FFFFFFFF' + id: Bushe1 + decals: + 150: 25.445843,7.7053776 + 179: 11.130266,-9.945588 + 317: -4,18 + 458: 10.845012,7.992337 + - node: + color: '#FFFFFFFF' + id: Bushe2 + decals: + 149: 26.461468,7.8616276 + 180: 14.583391,-9.976838 + 181: 13.520891,-10.008088 + - node: + color: '#FFFFFFFF' + id: Bushe3 + decals: + 151: 28.82894,6.877252 + 152: 23.178217,6.861627 + 316: 2,18 + 459: 9.048137,8.023587 + 1114: 17.154882,7.7859535 + - node: + color: '#FFFFFFFF' + id: Bushe4 + decals: + 153: 18.801558,6.901756 + 154: 33.138065,6.979881 + - node: + color: '#FFFFFFFF' + id: Bushf1 + decals: + 178: 9.755266,-9.992463 + 457: 10.782512,8.007962 + - node: + color: '#FFFFFFFF' + id: Bushf2 + decals: + 177: 10.411516,-10.008088 + 315: -4,18 + 456: 9.141887,8.007962 + - node: + color: '#FFFFFFFF' + id: Bushf3 + decals: + 176: 14.052141,-10.008088 + 314: 2,18 + - node: + color: '#FFFFFFFF' + id: Bushg1 + decals: + 649: -11.486805,2.0009332 + - node: + color: '#FFFFFFFF' + id: Bushh1 + decals: + 313: -4,18 + 460: 13.141887,8.086087 + 461: 6.0012617,8.086087 + 468: 8.798137,7.961087 + 724: -10.814524,-16.955605 + 728: 8.848061,-16.97123 + - node: + color: '#FFFFFFFF' + id: Bushh2 + decals: + 725: -12.142649,-17.03373 + - node: + color: '#FFFFFFFF' + id: Bushh3 + decals: + 185: 10.099016,-9.945588 + 312: 2,18 + 467: 11.282512,7.929837 + 727: 10.098061,-16.97123 + 1111: 16.470638,7.9648323 + - node: + color: '#FFFFFFFF' + id: Bushi1 + decals: + 141: 22.818914,7.5022526 + 142: 19.100164,8.142878 + 143: 27.037664,6.330377 + 144: 29.052135,7.267877 + 145: 32.06776,8.049128 + 171: 32.98406,-8.985069 + 173: 17.014437,2.9736261 + 174: 16.998812,6.958001 + 175: 17.020891,-5.0002565 + 195: 7.009032,-9.986469 + 198: -3.9782841,6.046785 + 201: -8.985234,-13.989886 + 643: -16.924305,2.0790582 + 644: -10.93993,2.0321832 + 712: -5.975403,-22.996408 + - node: + color: '#FFFFFFFF' + id: Bushi2 + decals: + 172: 19.006546,-8.953819 + 196: 6.9877787,-14.02815 + 197: -8.025159,5.99991 + 202: -9.047734,-10.021136 + 713: 3.9464722,-22.996408 + - node: + color: '#FFFFFFFF' + id: Bushi3 + decals: + 645: -12.93993,1.9853082 + - node: + color: '#FFFFFFFF' + id: Bushj1 + decals: + 170: 30.968433,-8.891319 + - node: + color: '#FFFFFFFF' + id: Bushj2 + decals: + 169: 20.959995,-9.000694 + 462: 13.579387,8.023587 + - node: + color: '#FFFFFFFF' + id: Bushj3 + decals: + 464: 6.5325117,8.164212 + - node: + color: '#FFFFFFFF' + id: Bushk2 + decals: + 311: 4,16 + - node: + color: '#FFFFFFFF' + id: Bushk3 + decals: + 148: 20.972792,7.5335026 + 647: -16.03368,2.0478082 + - node: + color: '#FFFFFFFF' + id: Bushl1 + decals: + 190: 7.116846,-5.379048 + - node: + color: '#FFFFFFFF' + id: Bushl2 + decals: + 646: -15.03368,2.0165582 + - node: + color: '#FFFFFFFF' + id: Bushl4 + decals: + 648: -12.00243,1.9853082 + 711: -6.022278,-23.574533 + - node: + color: '#FFFFFFFF' + id: Bushm1 + decals: + 147: 31.989635,7.5335026 + - node: + color: '#FFFFFFFF' + id: Bushm2 + decals: + 223: 3.9493294,6.054844 + 708: 4.008972,-23.668283 + - node: + color: '#FFFFFFFF' + id: Bushm3 + decals: + 146: 30.208385,7.5960026 + 224: -9.056177,3.4392257 + 709: 4.008972,-22.558908 + - node: + color: '#FFFFFFFF' + id: Bushm4 + decals: + 710: -6.022278,-22.512033 + - node: + color: '#FFFFFFFF' + id: Bushn1 + decals: + 200: 34.054134,-1.0223641 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Caution + decals: + 1295: 23,-27 + - node: + color: '#52B4E996' + id: CheckerNESW + decals: + 68: 12,-5 + 69: 13,-5 + 70: 14,-5 + 71: 15,-5 + 72: 15,-6 + 73: 15,-7 + 74: 15,-8 + 75: 11,-5 + 76: 10,-5 + 77: 9,-5 + 78: 9,-6 + 79: 9,-7 + 80: 9,-8 + - node: + color: '#D4D4D428' + id: CheckerNWSE + decals: + 27: 31,-3 + 28: 30,-2 + 29: 29,-1 + 30: 21,1 + 31: 22,0 + 32: 23,-1 + 1194: -1,-19 + 1195: -1,-18 + 1196: -1,-17 + 1197: 0,-18 + 1198: -2,-18 + 1199: 0,-17 + 1200: -2,-17 + 1201: -2,-19 + 1202: 0,-19 + - node: + color: '#DE3A3A96' + id: Delivery + decals: + 525: 13,32 + 526: 12,32 + 527: 6,32 + 528: 5,32 + 529: 3,32 + 530: 3,30 + 531: 15,30 + 533: 15,32 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 45: 32,4 + 46: 32,2 + 47: 32,-4 + 48: 32,-6 + 99: 12,1 + 100: 14,1 + 380: -8,17 + 381: -8,16 + 394: -10,22 + 395: -10,24 + 396: -10,26 + 397: -10,28 + 402: -14,30 + 403: -14,31 + 406: -14,22 + 407: -14,21 + 408: -14,20 + 582: -32,-2 + 583: -32,0 + 719: 6,-16 + 720: 7,-16 + 721: -9,-16 + 722: -8,-16 + 785: 29,-24 + 905: 32,-15 + 906: 16,-24 + 914: 15,-32 + 930: -21,-27 + 931: -21,-25 + 981: -6,-41 + 982: -6,-44 + 989: 4,-44 + 990: 4,-41 + 1240: 22,-26 + 1241: 18,-26 + 1251: -4,-35 + 1252: -5,-35 + 1253: -6,-35 + 1254: 2,-35 + 1255: 3,-35 + 1256: 4,-35 + 1257: 12,-30 + 1258: 13,-30 + 1259: 12,-21 + 1260: 13,-21 + 1261: -15,-21 + 1262: -14,-21 + 1263: -14,-30 + 1264: -15,-30 + 1265: -5,-6 + 1266: -5,-5 + 1267: -6,-4 + 1268: -7,-4 + 1269: -7,2 + 1270: -6,2 + 1271: -5,3 + 1272: -5,4 + 1273: 3,3 + 1274: 3,4 + 1275: 4,2 + 1276: 5,2 + 1277: 5,-4 + 1278: 4,-4 + 1279: 3,-5 + 1280: 3,-6 + 1281: -9,-12 + 1282: -14,-17 + 1288: -10,33 + - node: + color: '#52B4E996' + id: DeliveryGreyscale + decals: + 1125: 4,-7 + 1126: 17,-7 + 1127: 17,-12 + 1155: 16,-12 + 1156: 8,-12 + 1157: 16,-7 + 1158: 12,-4 + 1159: 14,-4 + - node: + color: '#FFFFFFFF' + id: DeliveryGreyscale + decals: + 1283: 4,-8 + 1284: -6,-8 + 1285: -6,6 + 1286: 7,3 + 1287: 17,5 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 57: 32,2 + 58: 32,-5 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 59: 31,-6 + 60: 32,3 + 61: 31,4 + 62: 29,4 + - node: + color: '#FFFFFFFF' + id: Flowersbr1 + decals: + 189: 7.054346,-5.972798 + 218: -8.98181,3.039219 + 219: 4.0382257,5.992344 + 641: -12.455555,2.0009332 + 705: -5.959778,-23.277658 + - node: + color: '#FFFFFFFF' + id: Flowersbr2 + decals: + 140: 25.64704,7.7835026 + 163: 21.006866,-8.969444 + 164: 21.928741,-8.985069 + 165: 32.30374,-9.031944 + 640: -17.09618,2.0009332 + - node: + color: '#FFFFFFFF' + id: Flowersbr3 + decals: + 137: 31.017263,7.330377 + 138: 20.33454,7.330377 + 139: 26.99079,6.721002 + 188: 6.991846,-5.004048 + 210: -4.0670047,-7.975866 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 166: 31.131866,-9.000694 + 167: 20.241241,-8.953819 + 168: 32.80374,-9.000694 + 220: 7.0694757,4.992344 + 221: 3.9757257,7.992344 + 1165: 7,-8 + - node: + color: '#FFFFFFFF' + id: Flowerspv2 + decals: + 194: 5.962157,-7.9708443 + 207: -7.8673525,-7.959863 + 642: -14.90868,2.0634332 + 706: 4.102722,-23.308908 + 707: -5.991028,-22.152658 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 134: 21.940147,6.877252 + 135: 26.987022,7.6116276 + 136: 32.829765,6.955377 + 208: -8.9611025,-5.006738 + 310: 4,16 + 1164: -9,-8 + - node: + color: '#FFFFFFFF' + id: Flowersy1 + decals: + 193: 2.0246568,-7.9552193 + - node: + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 217: -8.91931,3.929844 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 222: 1.9913507,6.023594 + 704: -5.975403,-23.949533 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 129: 25.080772,6.455377 + 130: 29.596397,7.017877 + 131: 32.737022,7.9397526 + 132: 21.674522,8.017878 + 133: 19.190147,7.174127 + 161: 30.038116,-9.047569 + 162: 18.959991,-8.985069 + 182: 15.052141,-10.039338 + 183: 9.052141,-9.976838 + 184: 13.005266,-9.992463 + 209: -9.0236025,-5.991113 + 463: 6.6731367,7.961087 + 639: -13.12743,2.0009332 + 703: 4.024597,-22.012033 + 1112: 6.9923015,5.882874 + 1113: 6.0391765,5.945374 + - node: + color: '#334E6DC8' + id: FullTileOverlayGreyscale + decals: + 9: 27,-1 + 10: 26,-1 + 11: 25,-1 + 12: 27,-2 + 39: 25,0 + 680: -24,-5 + 681: -22,-5 + 682: -20,-5 + 683: -18,-5 + 684: -19,-6 + 685: -18,-7 + 686: -19,-8 + 687: -18,-9 + 688: -20,-9 + 689: -22,-9 + 690: -21,-8 + 691: -21,-6 + 692: -20,-7 + 693: -23,-8 + 694: -23,-6 + 695: -24,-7 + 696: -24,-9 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 63: 10,-7 + 64: 11,-6 + 65: 12,-7 + 66: 13,-6 + 67: 14,-7 + - node: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + decals: + 480: 14,28 + 481: 14,25 + 482: 14,22 + 483: 4,25 + 484: 4,28 + 500: 9,27 + 501: 9,28 + 502: 9,29 + 503: 9,30 + 504: 9,31 + 505: 9,32 + - node: + color: '#EFB34196' + id: FullTileOverlayGreyscale + decals: + 824: 19,-23 + 825: 20,-23 + 826: 21,-23 + - node: + color: '#FFFFFFFF' + id: Grassa4 + decals: + 455: 14,8 + - node: + color: '#FFFFFFFF' + id: Grassb1 + decals: + 453: 9,8 + 465: 11.391887,8.179837 + 466: 7.2825117,8.054837 + - node: + color: '#FFFFFFFF' + id: Grassb5 + decals: + 454: 13,8 + 1110: 16.017513,8.027332 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 123: 30.685312,7.0542355 + 124: 33.18531,8.16361 + 125: 22.82111,7.9761105 + 126: 26.85236,8.13236 + 127: 24.842615,8.147985 + 128: 19.093754,6.9448605 + 160: 32.92874,-8.891319 + 636: -12.75243,1.9384332 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 192: 2.0715318,-7.9395943 + 635: -14.955555,2.0165582 + 702: 3.9620972,-23.215158 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 117: 31.288973,7.8974113 + 118: 22.757723,7.1474113 + 119: 20.210848,7.8817863 + 120: 25.163973,7.1167355 + 121: 26.195223,6.1636105 + 122: 29.242098,7.9917355 + 156: 20.2297,-9.031944 + 157: 30.694366,-8.953819 + 204: -8.907109,-5.8244467 + 213: 1.9943819,6.0206404 + 214: 3.947507,8.005015 + 637: -11.986805,1.9696832 + 701: -6.084778,-23.808908 + - node: + color: '#FFFFFFFF' + id: Grasse2 + decals: + 113: 31.617165,7.1005363 + 114: 26.992098,6.2724113 + 115: 21.070223,7.2411613 + 116: 20.007723,6.9442863 + 187: 7.054346,-5.004048 + 205: -8.985234,-5.0900717 + 206: -3.9383593,-7.9338217 + 211: -8.996265,3.0206404 + 212: -8.965015,3.9112654 + 216: 6.954139,4.9425154 + 634: -15.861805,1.9071832 + 638: -11.049305,1.8915582 + 699: 3.9464722,-22.418283 + 700: -5.928528,-22.652658 + 1162: 7,-8 + 1163: -9,-8 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 105: 25.217262,6.1942863 + 106: 26.967262,7.3974113 + 107: 25.389137,7.8036613 + 108: 21.686012,7.6161613 + 109: 19.107887,7.5067863 + 110: 29.420387,7.0224113 + 111: 30.092262,7.5849113 + 112: 32.41404,7.2099113 + 155: 19.2922,-8.953819 + 158: 31.506866,-8.985069 + 159: 21.444366,-8.953819 + 186: 7.023096,-5.941548 + 191: 5.962157,-8.002094 + 199: 34.00726,-1.0379891 + 203: -7.9071093,-7.9963217 + 215: 4.041257,6.0675154 + 309: 4,16 + 633: -16.674305,2.0478082 + 697: 4,-24 + 698: -6,-22 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale + decals: + 289: -1,1 + 656: -11,-5 + 657: -12,-5 + 658: -13,-5 + 659: -14,-5 + 660: -15,-5 + 661: -16,-5 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale + decals: + 88: 10,1 + 362: 1,16 + 363: 0,16 + 364: -1,16 + 365: -2,16 + 366: -3,16 + 563: 7,15 + 732: 8,-20 + 735: 10,-20 + 736: 12,-20 + 741: -10,-20 + 742: -12,-20 + 743: -14,-20 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale + decals: + 322: -8,11 + 323: -9,11 + 324: -10,11 + 325: -11,11 + 334: -12,16 + 335: -13,16 + 336: -14,16 + 424: -7,31 + 425: -8,31 + 426: -9,31 + 427: -11,31 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + decals: + 86: 13,1 + 87: 11,1 + 557: 13,15 + 558: 10,15 + 559: 8,15 + 753: 28,-9 + 754: 27,-9 + 755: 26,-9 + 756: 25,-9 + 757: 24,-9 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale180 + decals: + 618: -22,-2 + 650: -16,-9 + 651: -15,-9 + 652: -14,-9 + 653: -13,-9 + 654: -12,-9 + 655: -11,-9 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 84: 13,-3 + 85: 11,-3 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale180 + decals: + 354: 1,8 + 355: 0,8 + 356: -1,8 + 357: -2,8 + 358: -3,8 + 548: 13,10 + 549: 12,10 + 550: 11,10 + 551: 10,10 + 552: 9,10 + 553: 8,10 + 554: 7,10 + 579: 10,-3 + 733: 9,-19 + 734: 11,-19 + 744: -11,-19 + 745: -13,-19 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale180 + decals: + 328: -8,9 + 329: -10,9 + 330: -11,9 + 331: -9,9 + 332: -13,15 + 333: -14,15 + 341: -12,15 + 441: -8,19 + 442: -9,19 + 443: -10,19 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + decals: + 292: 13,3 + 293: 15,3 + 294: 11,3 + 519: 10,21 + 520: 9,21 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + decals: + 818: 15,-22 + 819: 16,-22 + 820: 17,-22 + 821: 18,-22 + 822: 19,-22 + 823: 20,-22 + 827: 21,-22 + 843: 26,-27 + 844: 25,-27 + 845: 24,-27 + 866: 28,-19 + 867: 27,-19 + 868: 23,-19 + 869: 22,-19 + 870: 30,-19 + 871: 34,-19 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale270 + decals: + 0: 28,-1 + 3: 28,1 + 4: 28,0 + 5: 28,-2 + 17: 23,1 + 18: 29,-3 + 19: 29,-2 + 33: 25,-3 + 44: 25,-2 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + decals: + 96: 9,-2 + 97: 9,-1 + 98: 9,0 + 564: 6,14 + 602: -26,-1 + 739: -8,-18 + 918: -14,-24 + 920: -14,-26 + 921: -14,-28 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + decals: + 327: -12,10 + 342: -4,11 + 343: -4,12 + 344: -4,13 + 429: -12,30 + 430: -12,29 + 431: -12,28 + 432: -12,27 + 433: -12,26 + 434: -12,25 + 435: -12,24 + 436: -12,23 + 437: -12,22 + 438: -12,21 + 439: -12,20 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + decals: + 485: 5,24 + 486: 5,25 + 487: 5,26 + 488: 5,27 + 489: 5,28 + 490: 5,29 + 506: 11,16 + 507: 11,17 + 508: 11,18 + 509: 11,19 + 510: 11,20 + 555: 6,12 + 572: 8,22 + 573: 8,23 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale270 + decals: + 828: 23,-21 + 829: 23,-22 + 830: 23,-23 + 831: 23,-24 + 832: 23,-25 + 833: 23,-27 + 892: 19,-19 + 893: 19,-17 + 894: 19,-16 + 895: 19,-14 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale90 + decals: + 1: 24,-1 + 2: 27,1 + 6: 24,-2 + 7: 24,-3 + 8: 24,0 + 13: 23,1 + 14: 23,0 + 22: 29,-3 + 38: 27,0 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale90 + decals: + 93: 15,-2 + 94: 15,-1 + 95: 15,0 + 352: 2,9 + 360: 2,15 + 561: 14,14 + 588: -11,-1 + 730: 6,-18 + 917: -15,-23 + 919: -15,-25 + 922: -15,-27 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + decals: + 326: -7,10 + 413: -6,20 + 414: -6,22 + 415: -6,23 + 416: -6,24 + 417: -6,25 + 418: -6,26 + 419: -6,27 + 420: -6,28 + 421: -6,29 + 422: -6,30 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + decals: + 240: -5,-14 + 241: -5,-13 + 242: -5,-12 + 243: -5,-11 + 244: -5,-10 + 367: 2,10 + 368: 2,11 + 369: 2,12 + 370: 2,13 + 371: 2,14 + 491: 13,21 + 492: 13,22 + 493: 13,23 + 494: 13,24 + 495: 13,25 + 496: 13,27 + 497: 13,26 + 498: 13,28 + 499: 13,29 + 511: 12,16 + 512: 12,17 + 513: 12,18 + 514: 12,19 + 515: 12,20 + 556: 14,12 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale90 + decals: + 834: 27,-27 + 835: 27,-26 + 836: 27,-22 + 837: 27,-21 + 838: 27,-24 + 839: 27,-23 + 840: 27,-25 + 847: 21,-21 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 374: -4,9 + 375: -4,14 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 398: -14,25 + 399: -14,27 + 404: -13,30 + 405: -13,31 + 409: -13,20 + 410: -13,21 + 411: -13,22 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 101: 14,0 + 102: 12,0 + 238: 1,-12 + 239: -3,-12 + 566: 9,14 + 907: 16,-25 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale + decals: + 15: 23,0 + 35: 28,-3 + 279: -4,1 + 280: -4,-1 + 281: -4,-2 + 286: -3,1 + 287: -2,1 + 291: -4,-3 + 616: -23,0 + 973: -3,-42 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + decals: + 307: 10,-13 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale + decals: + 232: -2,-10 + 257: -7,1 + 258: -7,0 + 259: -4,4 + 260: -3,4 + 261: -2,4 + 599: -26,0 + 600: -25,0 + 601: -24,0 + 625: -33,5 + 626: -32,5 + 925: -21,-23 + 940: 8,-31 + 941: 9,-31 + 942: 10,-31 + 943: 11,-31 + 944: 12,-22 + 956: 2,-32 + 957: 3,-32 + 958: 4,-32 + 959: 6,-32 + 960: 7,-32 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + decals: + 254: -7,3 + 255: -7,4 + 256: -6,4 + 347: -8,17 + 350: -8,16 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale + decals: + 1206: 0,-20 + 1207: -1,-20 + 1208: -2,-20 + 1209: -3,-20 + 1210: -4,-20 + 1211: -5,-20 + 1212: 1,-20 + 1213: 2,-20 + 1214: 3,-20 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + decals: + 233: -3,-11 + 545: 11,15 + 759: 19,-11 + 760: 20,-11 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + decals: + 872: 30,-16 + 873: 31,-16 + 877: 19,-25 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale180 + decals: + 20: 29,-2 + 34: 24,1 + 961: 1,-38 + 962: 2,-38 + 963: 3,-38 + 964: 4,-38 + 971: 4,-37 + 972: 4,-36 + 974: 1,-44 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 245: 4,-6 + 246: 5,-6 + 247: 5,-5 + 304: 12,-15 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale180 + decals: + 230: 0,-14 + 272: 0,-6 + 273: 1,-6 + 274: 2,-6 + 275: 5,-3 + 276: 5,-2 + 606: -20,-2 + 607: -19,-2 + 608: -18,-2 + 609: -17,-2 + 610: -16,-2 + 611: -15,-2 + 612: -14,-2 + 613: -13,-2 + 614: -12,-2 + 615: -11,-2 + 629: -30,4 + 630: -31,4 + 738: -9,-17 + 746: -15,-19 + 747: 0,-24 + 748: 0,-23 + 749: 0,-22 + 928: -19,-29 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + decals: + 345: -6,14 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale180 + decals: + 1203: -2,-16 + 1204: -1,-16 + 1205: 0,-16 + 1215: 1,-19 + 1216: 2,-19 + 1217: 3,-19 + 1218: -3,-19 + 1219: -4,-19 + 1220: -5,-19 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale180 + decals: + 295: 10,3 + 516: 12,21 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale180 + decals: + 808: 13,-29 + 809: 17,-28 + 810: 16,-28 + 811: 15,-28 + 812: 14,-28 + 813: 17,-27 + 841: 23,-27 + 878: 21,-27 + 929: -19,-30 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale270 + decals: + 40: 28,-3 + 965: -3,-38 + 966: -4,-38 + 967: -6,-38 + 968: -5,-38 + 969: -6,-37 + 970: -6,-36 + 975: -3,-44 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + decals: + 305: 10,-15 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale270 + decals: + 229: -2,-14 + 267: -7,-2 + 268: -7,-3 + 269: -4,-6 + 270: -3,-6 + 271: -2,-6 + 603: -26,-2 + 604: -25,-2 + 605: -24,-2 + 631: -32,4 + 632: -33,4 + 729: 7,-17 + 737: 13,-19 + 750: -2,-24 + 751: -2,-23 + 752: -2,-22 + 916: -14,-22 + 926: -21,-30 + 927: -21,-29 + 945: 12,-29 + 946: 12,-28 + 947: 12,-24 + 948: 12,-25 + 949: 12,-26 + 950: 12,-27 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + decals: + 346: -8,14 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale270 + decals: + 248: -6,-6 + 249: -7,-6 + 250: -7,-5 + 517: 13,21 + 518: 11,21 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + decals: + 842: 27,-27 + 879: 19,-27 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale90 + decals: + 41: 24,1 + 282: 2,-2 + 283: 2,-1 + 284: 2,1 + 285: 1,1 + 288: 0,1 + 290: 2,-3 + 617: -21,0 + 976: 1,-42 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + decals: + 234: 1,-11 + 306: 12,-13 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale90 + decals: + 231: 0,-10 + 262: 0,4 + 263: 1,4 + 264: 2,4 + 265: 5,1 + 266: 5,0 + 589: -11,0 + 590: -12,0 + 591: -13,0 + 592: -14,0 + 593: -15,0 + 594: -16,0 + 595: -17,0 + 596: -18,0 + 597: -20,0 + 598: -19,0 + 627: -31,5 + 628: -30,5 + 923: -15,-29 + 924: -19,-23 + 936: -10,-31 + 937: -12,-31 + 938: -11,-31 + 939: -13,-31 + 951: -4,-32 + 952: -5,-32 + 953: -6,-32 + 954: -8,-32 + 955: -9,-32 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + decals: + 348: -6,17 + 349: -6,16 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + decals: + 251: 5,3 + 252: 5,4 + 253: 4,4 + 296: 15,6 + 297: 14,6 + 298: 13,6 + 299: 12,6 + 300: 11,6 + 301: 10,6 + 544: 12,15 + 758: 22,-11 + 761: 21,-11 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale90 + decals: + 806: 13,-22 + 807: 13,-23 + 814: 17,-25 + 815: 17,-24 + 816: 15,-24 + 817: 14,-24 + 846: 21,-22 + 874: 34,-16 + 875: 33,-16 + 876: 21,-25 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 780: 32,-21 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale + decals: + 91: 9,1 + 226: -3,-10 + 359: -4,16 + 562: 6,15 + 623: -34,5 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale + decals: + 319: -12,11 + 338: -15,16 + 428: -12,31 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 92: 15,-3 + 228: 1,-14 + 353: 2,8 + 547: 14,10 + 740: -9,-19 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 320: -7,9 + 340: -11,15 + 412: -6,19 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 21: 30,-3 + 36: 25,1 + 37: 26,0 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 90: 9,-3 + 227: -3,-14 + 351: -4,8 + 546: 6,10 + 624: -34,4 + 731: 7,-19 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 321: -12,9 + 337: -15,15 + 440: -12,19 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 571: 8,21 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 16: 22,1 + 42: 27,-3 + 43: 26,-2 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 89: 15,1 + 225: 1,-10 + 361: 2,16 + 560: 14,15 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 318: -7,11 + 339: -11,16 + 423: -6,31 + - node: + color: '#FFFFFFFF' + id: WarnBox + decals: + 23: 34,-6 + 24: 34,-4 + 25: 34,2 + 26: 34,4 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 1290: 20,-30 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 1289: 24,-30 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleNE + decals: + 1250: 28,-32 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleNW + decals: + 1249: 34,-32 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleSE + decals: + 1248: 28,-29 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleSW + decals: + 1247: 34,-29 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 891: 21,-19 + 904: 31,-16 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 890: 23,-19 + 903: 33,-16 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 774: 29,-21 + 888: 21,-15 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 768: 29,-27 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 889: 23,-15 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 469: 3,30 + 470: 3,31 + 473: 3,32 + 478: 10,28 + 775: 29,-26 + 776: 29,-25 + 777: 29,-24 + 778: 29,-23 + 779: 29,-22 + 860: 29,-19 + 861: 29,-18 + 862: 29,-17 + 885: 21,-18 + 886: 21,-17 + 887: 21,-16 + 1293: 20,-29 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleE + decals: + 1190: 1,-17 + 1245: 28,-31 + 1246: 28,-30 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleN + decals: + 1188: 3,-19 + 1189: -1,-16 + 1191: -4,-19 + 1192: -5,-19 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleS + decals: + 1187: -1,-20 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleW + decals: + 1243: 34,-31 + 1244: 34,-30 + - node: + color: '#DE3A3A96' + id: WarnLineN + decals: + 523: 13,31 + 524: 5,31 + 537: 12,31 + 539: 12,31 + 540: 13,31 + 541: 5,31 + 542: 6,31 + 543: 6,31 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 668: -11,-9 + 669: -12,-9 + 670: -13,-9 + 671: -14,-9 + 672: -15,-9 + 673: -16,-9 + 769: 34,-21 + 770: 33,-21 + 771: 32,-21 + 772: 31,-21 + 773: 30,-21 + 801: 34,-14 + 802: 33,-14 + 803: 32,-14 + 804: 31,-14 + 805: 30,-14 + 854: 26,-20 + 855: 25,-20 + 856: 24,-20 + 857: 21,-20 + 858: 20,-20 + 859: 19,-20 + 883: 22,-15 + 1234: 19,-26 + 1235: 20,-26 + 1236: 21,-26 + 1291: 19,-30 + 1292: 25,-30 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 444: -14,25 + 445: -14,27 + 446: -14,26 + 447: -14,24 + 448: -14,28 + 449: -14,29 + 450: -14,23 + 471: 15,30 + 472: 15,31 + 479: 8,28 + 532: 15,32 + 863: 29,-19 + 864: 29,-18 + 865: 29,-17 + 880: 23,-18 + 881: 23,-17 + 882: 23,-16 + 1294: 24,-29 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 81: 11,-8 + 82: 12,-8 + 83: 13,-8 + 451: -10,31 + 662: -11,-5 + 663: -12,-5 + 664: -13,-5 + 665: -14,-5 + 666: -15,-5 + 667: -16,-5 + 764: 34,-27 + 765: 33,-27 + 766: 32,-27 + 767: 30,-27 + 789: 31,-27 + 848: 26,-20 + 849: 24,-20 + 850: 25,-20 + 851: 21,-20 + 852: 20,-20 + 853: 19,-20 + 884: 22,-19 + 902: 32,-16 + 1237: 21,-26 + 1238: 20,-26 + 1239: 19,-26 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 1031: 24,21 + 1064: -24,2 + 1092: 22,10 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 1032: 32,21 + 1090: 34,10 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSe + decals: + 1083: -3,-28 + 1091: 22,13 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSw + decals: + 1082: 1,-28 + 1093: 34,13 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 991: 20,19 + 992: 20,20 + 993: 20,21 + 994: 20,22 + 995: 20,18 + 1001: 18,18 + 1002: 18,19 + 1003: 18,20 + 1004: 18,21 + 1005: 18,22 + 1014: 30,18 + 1015: 30,17 + 1016: 30,16 + 1022: 24,22 + 1060: -24,3 + 1061: -24,4 + 1062: -24,5 + 1063: -24,6 + 1065: -23,10 + 1066: -23,11 + 1086: 22,11 + 1087: 22,12 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 1009: 26,18 + 1010: 27,18 + 1011: 28,18 + 1012: 29,18 + 1013: 30,18 + 1024: 31,21 + 1025: 30,21 + 1026: 29,21 + 1027: 28,21 + 1028: 27,21 + 1029: 26,21 + 1030: 25,21 + 1044: 23,10 + 1045: 24,10 + 1046: 25,10 + 1047: 26,10 + 1048: 27,10 + 1049: 28,10 + 1050: 29,10 + 1051: 30,10 + 1052: 31,10 + 1053: 32,10 + 1054: 33,10 + 1055: -19,2 + 1056: -20,2 + 1057: -21,2 + 1058: -22,2 + 1059: -23,2 + 1074: -22,8 + 1075: -23,8 + 1076: -24,8 + 1077: -25,8 + 1078: -26,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 1017: 30,16 + 1018: 29,16 + 1019: 28,16 + 1020: 27,16 + 1021: 26,16 + 1033: 33,13 + 1034: 32,13 + 1035: 31,13 + 1036: 30,13 + 1037: 29,13 + 1038: 28,13 + 1039: 27,13 + 1040: 26,13 + 1041: 23,13 + 1042: 24,13 + 1043: 25,13 + 1069: -22,12 + 1070: -23,12 + 1071: -24,12 + 1072: -25,12 + 1073: -26,12 + 1079: 0,-28 + 1080: -1,-28 + 1081: -2,-28 + 1084: 1,0 + 1085: -3,0 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 996: 19,18 + 997: 19,19 + 998: 19,20 + 999: 19,21 + 1000: 19,22 + 1006: 26,16 + 1007: 26,17 + 1008: 26,18 + 1023: 32,22 + 1067: -25,10 + 1068: -25,11 + 1088: 34,11 + 1089: 34,12 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 65535 + 0,-1: + 0: 65535 + -4,-4: + 0: 52431 + -4,-3: + 0: 65532 + -4,-2: + 0: 65535 + -4,-1: + 0: 65535 + -3,-4: + 0: 64719 + -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 + 0,-4: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 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,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,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,-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,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 + 0,-8: + 0: 65535 + 0,-7: + 0: 65535 + 0,-6: + 0: 65535 + 0,-5: + 0: 65535 + 1,-8: + 0: 65535 + 1,-7: + 0: 65535 + 1,-6: + 0: 65535 + 1,-5: + 0: 65535 + 2,-8: + 0: 65535 + 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,-6: + 0: 65535 + 4,-5: + 0: 65535 + 5,-6: + 0: 65535 + 5,-5: + 0: 65535 + 6,-6: + 0: 65535 + 6,-5: + 0: 65535 + 7,-6: + 0: 65535 + 7,-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,0: + 0: 65535 + 8,1: + 0: 65535 + 8,2: + 0: 65535 + 8,3: + 0: 65535 + 8,-4: + 0: 65535 + 8,-3: + 0: 65535 + 8,-2: + 0: 65535 + 8,-1: + 0: 65535 + -4,4: + 0: 61439 + -4,5: + 0: 65262 + -4,6: + 0: 65535 + -4,7: + 0: 61183 + -3,4: + 0: 65535 + -3,5: + 0: 65535 + -3,6: + 0: 65535 + -3,7: + 0: 65535 + -2,4: + 0: 65535 + -2,5: + 0: 65535 + -2,6: + 0: 65535 + -2,7: + 0: 65535 + -1,4: + 0: 65535 + -1,5: + 0: 65535 + -1,6: + 0: 12287 + -1,7: + 0: 12079 + 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 + 8,-6: + 0: 65535 + 8,-5: + 0: 65535 + 4,4: + 0: 65535 + 4,5: + 0: 65535 + 4,6: + 0: 30719 + 4,7: + 0: 30583 + 5,4: + 0: 65535 + 5,5: + 0: 65535 + 5,6: + 0: 255 + 6,4: + 0: 65535 + 6,5: + 0: 65535 + 6,6: + 0: 255 + 7,4: + 0: 65535 + 7,5: + 0: 65535 + 7,6: + 0: 255 + -6,4: + 0: 14 + -5,4: + 0: 2185 + -5,5: + 0: 32768 + -5,6: + 0: 34952 + -5,7: + 0: 136 + -8,0: + 0: 65535 + -8,1: + 0: 65535 + -7,0: + 0: 65535 + -7,1: + 0: 65535 + -7,2: + 0: 65535 + -7,3: + 0: 255 + -6,0: + 0: 65535 + -6,1: + 0: 65535 + -6,2: + 0: 65535 + -6,3: + 0: 61183 + -5,0: + 0: 65535 + -5,1: + 0: 65535 + -5,2: + 0: 65535 + -5,3: + 0: 65535 + -4,8: + 0: 14 + -3,8: + 0: 4095 + -2,8: + 0: 287 + -1,8: + 0: 15 + 8,4: + 0: 65535 + 8,5: + 0: 65535 + 8,6: + 0: 255 + 0,8: + 0: 4095 + 1,8: + 0: 4095 + 2,8: + 0: 4095 + 3,8: + 0: 4095 + 4,8: + 0: 1911 + -8,-1: + 0: 65535 + -8,-3: + 0: 34944 + -8,-2: + 0: 34952 + -7,-3: + 0: 65520 + -7,-2: + 0: 65535 + -7,-1: + 0: 65535 + -6,-3: + 0: 65520 + -6,-2: + 0: 65535 + -6,-1: + 0: 65535 + -5,-3: + 0: 65520 + -5,-2: + 0: 65535 + -5,-1: + 0: 65535 + -9,-1: + 0: 61166 + -9,0: + 0: 61166 + -9,1: + 0: 61166 + -4,-9: + 0: 65520 + -3,-9: + 0: 65520 + -2,-9: + 0: 65535 + -1,-9: + 0: 65535 + 0,-9: + 0: 65535 + 1,-9: + 0: 65535 + 2,-9: + 0: 65535 + 3,-9: + 0: 65535 + 4,-8: + 0: 30719 + 1: 34816 + 4,-7: + 0: 65535 + 5,-8: + 0: 61183 + 1: 4352 + 5,-7: + 0: 65535 + 6,-8: + 0: 52479 + 2: 13056 + 6,-7: + 0: 65535 + 7,-8: + 0: 65535 + 7,-7: + 0: 65535 + 8,-8: + 0: 65535 + 8,-7: + 0: 65535 + 4,-9: + 0: 65280 + 5,-9: + 0: 65280 + 6,-9: + 0: 65280 + 7,-9: + 0: 61440 + 8,-9: + 0: 61440 + -5,-4: + 0: 8 + -2,-12: + 0: 61440 + -2,-11: + 0: 65535 + -2,-10: + 0: 65535 + -1,-12: + 0: 65520 + -1,-11: + 0: 65535 + -1,-10: + 0: 65535 + 0,-12: + 0: 63344 + 0,-11: + 0: 65535 + 0,-10: + 0: 65535 + 1,-12: + 0: 28672 + 1,-11: + 0: 30583 + 1,-10: + 0: 30583 + -6,-9: + 0: 52352 + -5,-9: + 0: 65520 + -6,-8: + 0: 65484 + -6,-7: + 0: 65535 + -6,-6: + 0: 4095 + -5,-8: + 0: 65535 + -5,-7: + 0: 65535 + -5,-6: + 0: 36863 + -5,-5: + 0: 34952 + 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.15 + moles: + - 6666.982 + - 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 + chunkSize: 4 + type: GridAtmosphere + - type: OccluderTree + - type: Shuttle + - type: RadiationGridResistance + - shakeTimes: 10 + type: GravityShake + - type: GasTileOverlay + - type: SpreaderGrid + - type: GridPathfinding +- proto: AcousticGuitarInstrument + entities: + - uid: 1455 + components: + - pos: 15.537778,1.6263883 + parent: 1668 + type: Transform + - uid: 2742 + components: + - pos: 4.5448904,18.624214 + parent: 1668 + type: Transform +- proto: AirCanister + entities: + - uid: 3695 + components: + - pos: -16.5,4.5 + parent: 1668 + type: Transform +- proto: Airlock + entities: + - uid: 5314 + components: + - pos: 5.5,-16.5 + parent: 1668 + type: Transform +- proto: AirlockArmoryLocked + entities: + - uid: 2555 + components: + - pos: 7.5,19.5 + parent: 1668 + type: Transform +- proto: AirlockAtmosphericsLocked + entities: + - uid: 4746 + components: + - pos: 14.5,-30.5 + parent: 1668 + type: Transform + - uid: 5403 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-30.5 + parent: 1668 + type: Transform + - uid: 5404 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-27.5 + parent: 1668 + type: Transform +- proto: AirlockBarLocked + entities: + - uid: 4343 + components: + - pos: 11.5,-22.5 + parent: 1668 + type: Transform +- proto: AirlockBrigGlassLocked + entities: + - uid: 2299 + components: + - pos: 28.5,14.5 + parent: 1668 + type: Transform + - uid: 2316 + components: + - pos: 23.5,20.5 + parent: 1668 + type: Transform + - uid: 2340 + components: + - pos: 24.5,18.5 + parent: 1668 + type: Transform + - uid: 2342 + components: + - pos: 22.5,14.5 + parent: 1668 + type: Transform +- proto: AirlockBrigLocked + entities: + - uid: 2300 + components: + - pos: 21.5,22.5 + parent: 1668 + type: Transform + - uid: 2317 + components: + - pos: 19.5,17.5 + parent: 1668 + type: Transform + - uid: 2343 + components: + - pos: 33.5,20.5 + parent: 1668 + type: Transform + - uid: 2344 + components: + - pos: 21.5,18.5 + parent: 1668 + type: Transform +- proto: AirlockCargoGlassLocked + entities: + - uid: 1191 + components: + - pos: -5.5,7.5 + parent: 1668 + type: Transform + - uid: 1629 + components: + - pos: -6.5,13.5 + parent: 1668 + type: Transform + - uid: 1630 + components: + - pos: -10.5,13.5 + parent: 1668 + type: Transform + - uid: 1631 + components: + - pos: -8.5,15.5 + parent: 1668 + type: Transform +- proto: AirlockCargoLocked + entities: + - uid: 1192 + components: + - pos: -5.5,5.5 + parent: 1668 + type: Transform + - uid: 1632 + components: + - pos: -10.5,18.5 + parent: 1668 + type: Transform + - uid: 1633 + components: + - pos: -6.5,18.5 + parent: 1668 + type: Transform +- proto: AirlockCommandGlassLocked + entities: + - uid: 6395 + components: + - pos: -3.5,-42.5 + parent: 1668 + type: Transform + - uid: 6396 + components: + - pos: 2.5,-42.5 + parent: 1668 + type: Transform +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 5175 + components: + - pos: 32.5,-19.5 + parent: 1668 + type: Transform +- proto: AirlockEngineeringLocked + entities: + - uid: 1131 + components: + - pos: 17.5,-12.5 + parent: 1668 + type: Transform + - uid: 1177 + components: + - pos: 18.5,-14.5 + parent: 1668 + type: Transform + - uid: 1534 + components: + - pos: -0.5,17.5 + parent: 1668 + type: Transform + - uid: 2522 + components: + - pos: 14.5,16.5 + parent: 1668 + type: Transform + - uid: 3948 + components: + - pos: -28.5,4.5 + parent: 1668 + type: Transform + - uid: 4755 + components: + - pos: 18.5,-25.5 + parent: 1668 + type: Transform + - uid: 4756 + components: + - pos: 22.5,-25.5 + parent: 1668 + type: Transform + - uid: 4763 + components: + - pos: 16.5,-19.5 + parent: 1668 + type: Transform + - uid: 6005 + components: + - pos: -17.5,-29.5 + parent: 1668 + type: Transform +- proto: AirlockExternalGlass + entities: + - uid: 481 + components: + - pos: 33.5,4.5 + parent: 1668 + type: Transform + - uid: 482 + components: + - pos: 33.5,2.5 + parent: 1668 + type: Transform + - uid: 483 + components: + - pos: 33.5,-3.5 + parent: 1668 + type: Transform + - uid: 484 + components: + - pos: 33.5,-5.5 + parent: 1668 + type: Transform + - uid: 1615 + components: + - pos: -14.5,25.5 + parent: 1668 + type: Transform + - uid: 1616 + components: + - pos: -14.5,27.5 + parent: 1668 + type: Transform + - uid: 3970 + components: + - pos: -32.5,-1.5 + parent: 1668 + type: Transform + - uid: 3971 + components: + - pos: -32.5,0.5 + parent: 1668 + type: Transform + - uid: 6284 + components: + - pos: -1.5,-44.5 + parent: 1668 + type: Transform + - uid: 6285 + components: + - pos: 0.5,-44.5 + parent: 1668 + type: Transform +- proto: AirlockExternalGlassLocked + entities: + - uid: 1673 + components: + - pos: -9.5,32.5 + parent: 1668 + type: Transform + - uid: 2010 + components: + - pos: -0.5,22.5 + parent: 1668 + type: Transform + - uid: 4243 + components: + - pos: -13.5,-17.5 + parent: 1668 + type: Transform + - uid: 5961 + components: + - pos: -21.5,-26.5 + parent: 1668 + type: Transform + - uid: 5962 + components: + - pos: -21.5,-24.5 + parent: 1668 + type: Transform +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 434 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,4.5 + parent: 1668 + type: Transform + - uid: 435 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,2.5 + parent: 1668 + type: Transform + - uid: 436 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-3.5 + parent: 1668 + type: Transform + - uid: 437 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-5.5 + parent: 1668 + type: Transform +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 1613 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,25.5 + parent: 1668 + type: Transform + - uid: 1614 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,27.5 + parent: 1668 + type: Transform + - uid: 1672 + components: + - rot: 3.141592653589793 rad + pos: -9.5,34.5 + parent: 1668 + type: Transform + - uid: 3968 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-1.5 + parent: 1668 + type: Transform + - uid: 3969 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,0.5 + parent: 1668 + type: Transform + - uid: 5959 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-24.5 + parent: 1668 + type: Transform + - uid: 5960 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-26.5 + parent: 1668 + type: Transform + - uid: 6282 + components: + - pos: -1.5,-46.5 + parent: 1668 + type: Transform + - uid: 6283 + components: + - pos: 0.5,-46.5 + parent: 1668 + type: Transform +- proto: AirlockExternalLocked + entities: + - uid: 777 + components: + - pos: -9.5,-11.5 + parent: 1668 + type: Transform + - uid: 2011 + components: + - pos: -2.5,25.5 + parent: 1668 + type: Transform + - uid: 4242 + components: + - pos: -13.5,-15.5 + parent: 1668 + type: Transform +- proto: AirlockFreezer + entities: + - uid: 3419 + components: + - pos: -21.5,13.5 + parent: 1668 + type: Transform +- proto: AirlockGlass + entities: + - uid: 3947 + components: + - pos: -30.5,2.5 + parent: 1668 + type: Transform + - uid: 4258 + components: + - pos: -0.5,-14.5 + parent: 1668 + type: Transform + - uid: 4259 + components: + - pos: 21.5,12.5 + parent: 1668 + type: Transform + - uid: 4260 + components: + - pos: 21.5,11.5 + parent: 1668 + type: Transform + - uid: 4287 + components: + - pos: -6.5,-18.5 + parent: 1668 + type: Transform + - uid: 4339 + components: + - pos: 5.5,-18.5 + parent: 1668 + type: Transform + - uid: 4575 + components: + - pos: -0.5,-24.5 + parent: 1668 + type: Transform + - uid: 6577 + components: + - pos: -6.5,-30.5 + parent: 1668 + type: Transform + - uid: 6578 + components: + - pos: 5.5,-30.5 + parent: 1668 + type: Transform + - uid: 6592 + components: + - pos: -0.5,-20.5 + parent: 1668 + type: Transform +- proto: AirlockKitchenGlassLocked + entities: + - uid: 4342 + components: + - pos: -7.5,-24.5 + parent: 1668 + type: Transform +- proto: AirlockKitchenLocked + entities: + - uid: 4341 + components: + - pos: -12.5,-22.5 + parent: 1668 + type: Transform +- proto: AirlockMedicalGlassLocked + entities: + - uid: 557 + components: + - pos: 12.5,-3.5 + parent: 1668 + type: Transform + - uid: 558 + components: + - pos: 14.5,-3.5 + parent: 1668 + type: Transform + - uid: 730 + components: + - pos: 4.5,-8.5 + parent: 1668 + type: Transform +- proto: AirlockMedicalLocked + entities: + - uid: 574 + components: + - pos: 16.5,-6.5 + parent: 1668 + type: Transform + - uid: 729 + components: + - pos: 4.5,-6.5 + parent: 1668 + type: Transform + - uid: 731 + components: + - pos: 8.5,-11.5 + parent: 1668 + type: Transform + - uid: 852 + components: + - pos: 16.5,-11.5 + parent: 1668 + type: Transform + - uid: 854 + components: + - pos: 12.5,-17.5 + parent: 1668 + type: Transform +- proto: AirlockSecurityGlassLocked + entities: + - uid: 130 + components: + - pos: -7.5,-11.5 + parent: 1668 + type: Transform + - uid: 774 + components: + - pos: -5.5,-8.5 + parent: 1668 + type: Transform + - uid: 974 + components: + - pos: 23.5,-11.5 + parent: 1668 + type: Transform + - uid: 2497 + components: + - pos: 12.5,16.5 + parent: 1668 + type: Transform + - uid: 2498 + components: + - pos: 11.5,16.5 + parent: 1668 + type: Transform + - uid: 2499 + components: + - pos: 12.5,19.5 + parent: 1668 + type: Transform + - uid: 2500 + components: + - pos: 11.5,19.5 + parent: 1668 + type: Transform +- proto: AirlockSecurityLocked + entities: + - uid: 509 + components: + - pos: 18.5,-11.5 + parent: 1668 + type: Transform + - uid: 549 + components: + - pos: 18.5,5.5 + parent: 1668 + type: Transform + - uid: 550 + components: + - pos: 16.5,5.5 + parent: 1668 + type: Transform + - uid: 551 + components: + - pos: 8.5,3.5 + parent: 1668 + type: Transform + - uid: 552 + components: + - pos: 6.5,3.5 + parent: 1668 + type: Transform + - uid: 775 + components: + - pos: -5.5,-6.5 + parent: 1668 + type: Transform + - uid: 2825 + components: + - pos: 5.5,23.5 + parent: 1668 + type: Transform +- proto: APCBasic + entities: + - uid: 688 + components: + - pos: -3.5,5.5 + parent: 1668 + type: Transform + - uid: 856 + components: + - pos: 20.5,6.5 + parent: 1668 + type: Transform + - uid: 905 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-7.5 + parent: 1668 + type: Transform + - uid: 963 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-10.5 + parent: 1668 + type: Transform + - uid: 977 + components: + - pos: 10.5,-3.5 + parent: 1668 + type: Transform + - uid: 978 + components: + - pos: 12.5,7.5 + parent: 1668 + type: Transform + - uid: 979 + components: + - pos: 9.5,2.5 + parent: 1668 + type: Transform + - uid: 1088 + components: + - pos: -2.5,2.5 + parent: 1668 + type: Transform + - uid: 1201 + components: + - pos: 12.5,-10.5 + parent: 1668 + type: Transform + - uid: 1235 + components: + - pos: 3.5,-8.5 + parent: 1668 + type: Transform + - uid: 1341 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 1668 + type: Transform + - uid: 1674 + components: + - pos: -14.5,18.5 + parent: 1668 + type: Transform + - uid: 1675 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,17.5 + parent: 1668 + type: Transform + - uid: 1676 + components: + - pos: -8.5,13.5 + parent: 1668 + type: Transform + - uid: 1677 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,19.5 + parent: 1668 + type: Transform + - uid: 1955 + components: + - pos: 1.5,17.5 + parent: 1668 + type: Transform + - uid: 2013 + components: + - pos: -1.5,22.5 + parent: 1668 + type: Transform + - uid: 2562 + components: + - pos: 7.5,16.5 + parent: 1668 + type: Transform + - uid: 2563 + components: + - pos: 17.5,17.5 + parent: 1668 + type: Transform + - uid: 2564 + components: + - pos: 24.5,14.5 + parent: 1668 + type: Transform + - uid: 2565 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,19.5 + parent: 1668 + type: Transform + - uid: 2566 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,21.5 + parent: 1668 + type: Transform + - uid: 2944 + components: + - pos: 9.5,26.5 + parent: 1668 + type: Transform + - uid: 2945 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,18.5 + parent: 1668 + type: Transform + - uid: 2946 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,30.5 + parent: 1668 + type: Transform + - uid: 3463 + components: + - pos: -22.5,7.5 + parent: 1668 + type: Transform + - uid: 3464 + components: + - pos: -16.5,13.5 + parent: 1668 + type: Transform + - uid: 3465 + components: + - pos: -22.5,13.5 + parent: 1668 + type: Transform + - uid: 3466 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,6.5 + parent: 1668 + type: Transform + - uid: 3986 + components: + - pos: -31.5,2.5 + parent: 1668 + type: Transform + - uid: 3987 + components: + - pos: -31.5,7.5 + parent: 1668 + type: Transform + - uid: 3988 + components: + - pos: -21.5,-2.5 + parent: 1668 + type: Transform + - uid: 3989 + components: + - pos: -13.5,-2.5 + parent: 1668 + type: Transform + - uid: 3990 + components: + - pos: -17.5,1.5 + parent: 1668 + type: Transform + - uid: 4361 + components: + - pos: 34.5,-9.5 + parent: 1668 + type: Transform + - uid: 4475 + components: + - pos: -2.5,-24.5 + parent: 1668 + type: Transform + - uid: 4476 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-24.5 + parent: 1668 + type: Transform + - uid: 4477 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-24.5 + parent: 1668 + type: Transform + - uid: 4478 + components: + - pos: -9.5,-17.5 + parent: 1668 + type: Transform + - uid: 4479 + components: + - pos: 8.5,-17.5 + parent: 1668 + type: Transform + - uid: 4480 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-20.5 + parent: 1668 + type: Transform + - uid: 4977 + components: + - pos: 20.5,-12.5 + parent: 1668 + type: Transform + - uid: 4992 + components: + - pos: 18.5,-19.5 + parent: 1668 + type: Transform + - uid: 5133 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-23.5 + parent: 1668 + type: Transform + - uid: 5146 + components: + - pos: 29.5,-19.5 + parent: 1668 + type: Transform + - uid: 5257 + components: + - pos: 30.5,-14.5 + parent: 1668 + type: Transform + - uid: 5321 + components: + - pos: 32.5,-27.5 + parent: 1668 + type: Transform + - uid: 5423 + components: + - pos: 16.5,-28.5 + parent: 1668 + type: Transform + - uid: 5934 + components: + - pos: -16.5,-30.5 + parent: 1668 + type: Transform + - uid: 6004 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-22.5 + parent: 1668 + type: Transform + - uid: 6103 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-28.5 + parent: 1668 + type: Transform + - uid: 6180 + components: + - pos: 7.5,-30.5 + parent: 1668 + type: Transform + - uid: 6181 + components: + - pos: -8.5,-30.5 + parent: 1668 + type: Transform + - uid: 6277 + components: + - pos: -2.5,-34.5 + parent: 1668 + type: Transform + - uid: 6397 + components: + - pos: -2.5,-40.5 + parent: 1668 + type: Transform +- proto: Ash + entities: + - uid: 3828 + components: + - pos: -10.652057,6.7775984 + parent: 1668 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 438 + components: + - pos: 35.5,-5.5 + parent: 1668 + type: Transform + - uid: 439 + components: + - pos: 35.5,-3.5 + parent: 1668 + type: Transform + - uid: 440 + components: + - pos: 35.5,2.5 + parent: 1668 + type: Transform + - uid: 441 + components: + - pos: 35.5,4.5 + parent: 1668 + type: Transform + - uid: 553 + components: + - pos: 7.5,3.5 + parent: 1668 + type: Transform + - uid: 554 + components: + - pos: 17.5,5.5 + parent: 1668 + type: Transform + - uid: 555 + components: + - pos: 17.5,-6.5 + parent: 1668 + type: Transform + - uid: 556 + components: + - pos: 4.5,-7.5 + parent: 1668 + type: Transform + - uid: 763 + components: + - pos: -8.5,-11.5 + parent: 1668 + type: Transform + - uid: 1473 + components: + - pos: -5.5,6.5 + parent: 1668 + type: Transform + - uid: 1474 + components: + - pos: -5.5,-7.5 + parent: 1668 + type: Transform + - uid: 1634 + components: + - pos: -16.5,25.5 + parent: 1668 + type: Transform + - uid: 1635 + components: + - pos: -16.5,27.5 + parent: 1668 + type: Transform + - uid: 1671 + components: + - pos: -9.5,33.5 + parent: 1668 + type: Transform + - uid: 2012 + components: + - pos: -2.5,25.5 + parent: 1668 + type: Transform + - uid: 2921 + components: + - pos: 17.5,-11.5 + parent: 1668 + type: Transform + - uid: 4144 + components: + - pos: -34.5,-1.5 + parent: 1668 + type: Transform + - uid: 4145 + components: + - pos: -34.5,0.5 + parent: 1668 + type: Transform + - uid: 4241 + components: + - pos: -13.5,-16.5 + parent: 1668 + type: Transform + - uid: 5996 + components: + - pos: -23.5,-26.5 + parent: 1668 + type: Transform + - uid: 5997 + components: + - pos: -23.5,-24.5 + parent: 1668 + type: Transform + - uid: 6286 + components: + - pos: -1.5,-46.5 + parent: 1668 + type: Transform + - uid: 6287 + components: + - pos: 0.5,-46.5 + parent: 1668 + type: Transform +- proto: AtmosFixNitrogenMarker + entities: + - uid: 6789 + components: + - pos: 25.5,-28.5 + parent: 1668 + type: Transform + - uid: 6963 + components: + - pos: 24.5,-29.5 + parent: 1668 + type: Transform + - uid: 6964 + components: + - pos: 24.5,-29.5 + parent: 1668 + type: Transform + - uid: 6965 + components: + - pos: 24.5,-28.5 + parent: 1668 + type: Transform + - uid: 6966 + components: + - pos: 25.5,-29.5 + parent: 1668 + type: Transform +- proto: AtmosFixOxygenMarker + entities: + - uid: 5051 + components: + - pos: 19.5,-28.5 + parent: 1668 + type: Transform + - uid: 6967 + components: + - pos: 19.5,-28.5 + parent: 1668 + type: Transform + - uid: 6968 + components: + - pos: 19.5,-29.5 + parent: 1668 + type: Transform + - uid: 6969 + components: + - pos: 20.5,-28.5 + parent: 1668 + type: Transform + - uid: 6970 + components: + - pos: 20.5,-29.5 + parent: 1668 + type: Transform +- proto: Autolathe + entities: + - uid: 5310 + components: + - pos: 19.5,-22.5 + parent: 1668 + type: Transform +- proto: BarSignTheLooseGoose + entities: + - uid: 4345 + components: + - pos: 4.5,-24.5 + parent: 1668 + type: Transform + - uid: 4346 + components: + - pos: -5.5,-24.5 + parent: 1668 + type: Transform +- proto: Bed + entities: + - uid: 2718 + components: + - pos: 5.5,18.5 + parent: 1668 + type: Transform + - uid: 2763 + components: + - pos: 16.5,21.5 + parent: 1668 + type: Transform + - uid: 2774 + components: + - pos: 16.5,24.5 + parent: 1668 + type: Transform + - uid: 2864 + components: + - pos: 3.5,24.5 + parent: 1668 + type: Transform + - uid: 2865 + components: + - pos: 3.5,27.5 + parent: 1668 + type: Transform + - uid: 2866 + components: + - pos: 16.5,27.5 + parent: 1668 + type: Transform + - uid: 3624 + components: + - pos: -15.5,8.5 + parent: 1668 + type: Transform +- proto: BedsheetCentcom + entities: + - uid: 3625 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,8.5 + parent: 1668 + type: Transform + - uid: 6643 + components: + - pos: 13.5,-7.5 + parent: 1668 + type: Transform +- proto: BedsheetHOS + entities: + - uid: 2719 + components: + - name: Warden's + type: MetaData + - pos: 5.5,18.5 + parent: 1668 + type: Transform +- proto: BedsheetMedical + entities: + - uid: 1199 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-14.5 + parent: 1668 + type: Transform + - uid: 1200 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-13.5 + parent: 1668 + type: Transform +- proto: BedsheetOrange + entities: + - uid: 2764 + components: + - pos: 16.5,21.5 + parent: 1668 + type: Transform + - uid: 2775 + components: + - pos: 16.5,24.5 + parent: 1668 + type: Transform + - uid: 2867 + components: + - pos: 3.5,24.5 + parent: 1668 + type: Transform + - uid: 2868 + components: + - pos: 3.5,27.5 + parent: 1668 + type: Transform + - uid: 2869 + components: + - pos: 16.5,27.5 + parent: 1668 + type: Transform +- proto: BiomassReclaimer + entities: + - uid: 6604 + components: + - pos: 13.5,-15.5 + parent: 1668 + type: Transform +- proto: BlastDoor + entities: + - uid: 1552 + components: + - pos: -4.5,21.5 + parent: 1668 + type: Transform + - links: + - 1804 + type: DeviceLinkSink + - uid: 1607 + components: + - pos: -16.5,24.5 + parent: 1668 + type: Transform + - links: + - 1611 + type: DeviceLinkSink + - uid: 1608 + components: + - pos: -16.5,28.5 + parent: 1668 + type: Transform + - links: + - 1612 + type: DeviceLinkSink + - uid: 1609 + components: + - pos: -14.5,28.5 + parent: 1668 + type: Transform + - links: + - 1612 + type: DeviceLinkSink + - uid: 1610 + components: + - pos: -14.5,24.5 + parent: 1668 + type: Transform + - links: + - 1611 + type: DeviceLinkSink + - uid: 2790 + components: + - pos: 11.5,31.5 + parent: 1668 + type: Transform + - links: + - 2928 + type: DeviceLinkSink + - uid: 2886 + components: + - pos: 14.5,31.5 + parent: 1668 + type: Transform + - links: + - 2928 + type: DeviceLinkSink + - uid: 2925 + components: + - pos: 7.5,31.5 + parent: 1668 + type: Transform + - links: + - 2927 + type: DeviceLinkSink + - uid: 2926 + components: + - pos: 4.5,31.5 + parent: 1668 + type: Transform + - links: + - 2927 + type: DeviceLinkSink + - uid: 3787 + components: + - pos: -16.5,-7.5 + parent: 1668 + type: Transform + - links: + - 2920 + type: DeviceLinkSink + - uid: 3788 + components: + - pos: -16.5,-6.5 + parent: 1668 + type: Transform + - links: + - 2920 + type: DeviceLinkSink + - uid: 3789 + components: + - pos: -16.5,-5.5 + parent: 1668 + type: Transform + - links: + - 2920 + type: DeviceLinkSink + - uid: 4762 + components: + - pos: 18.5,-17.5 + parent: 1668 + type: Transform +- proto: BlastDoorExterior1Open + entities: + - uid: 710 + components: + - pos: 17.5,1.5 + parent: 1668 + type: Transform + - uid: 711 + components: + - pos: 17.5,0.5 + parent: 1668 + type: Transform + - uid: 712 + components: + - pos: 17.5,-0.5 + parent: 1668 + type: Transform + - uid: 713 + components: + - pos: 17.5,-1.5 + parent: 1668 + type: Transform + - uid: 714 + components: + - pos: 17.5,-2.5 + parent: 1668 + type: Transform +- proto: BlastDoorExterior2Open + entities: + - uid: 716 + components: + - pos: 7.5,-2.5 + parent: 1668 + type: Transform + - uid: 717 + components: + - pos: 7.5,-1.5 + parent: 1668 + type: Transform + - uid: 718 + components: + - pos: 7.5,-0.5 + parent: 1668 + type: Transform + - uid: 719 + components: + - pos: 7.5,0.5 + parent: 1668 + type: Transform + - uid: 720 + components: + - pos: 7.5,1.5 + parent: 1668 + type: Transform +- proto: BlastDoorOpen + entities: + - uid: 786 + components: + - pos: -1.5,-7.5 + parent: 1668 + type: Transform + - links: + - 789 + type: DeviceLinkSink + - uid: 787 + components: + - pos: -0.5,-7.5 + parent: 1668 + type: Transform + - links: + - 789 + type: DeviceLinkSink + - uid: 788 + components: + - pos: 0.5,-7.5 + parent: 1668 + type: Transform + - links: + - 789 + type: DeviceLinkSink + - uid: 1430 + components: + - pos: -1.5,6.5 + parent: 1668 + type: Transform + - uid: 1431 + components: + - pos: -0.5,6.5 + parent: 1668 + type: Transform + - uid: 1432 + components: + - pos: 0.5,6.5 + parent: 1668 + type: Transform + - uid: 1437 + components: + - pos: -8.5,-2.5 + parent: 1668 + type: Transform + - uid: 1438 + components: + - pos: -8.5,-1.5 + parent: 1668 + type: Transform + - uid: 1439 + components: + - pos: -8.5,-0.5 + parent: 1668 + type: Transform + - uid: 1440 + components: + - pos: -8.5,0.5 + parent: 1668 + type: Transform + - uid: 1441 + components: + - pos: -8.5,1.5 + parent: 1668 + type: Transform + - uid: 2146 + components: + - pos: 4.5,10.5 + parent: 1668 + type: Transform + - links: + - 2712 + type: DeviceLinkSink + - uid: 2147 + components: + - pos: 4.5,11.5 + parent: 1668 + type: Transform + - links: + - 2712 + type: DeviceLinkSink + - uid: 2148 + components: + - pos: 4.5,12.5 + parent: 1668 + type: Transform + - links: + - 2712 + type: DeviceLinkSink + - uid: 2149 + components: + - pos: 4.5,13.5 + parent: 1668 + type: Transform + - links: + - 2712 + type: DeviceLinkSink + - uid: 2150 + components: + - pos: 4.5,14.5 + parent: 1668 + type: Transform + - links: + - 2712 + type: DeviceLinkSink + - uid: 3864 + components: + - pos: -27.5,-1.5 + parent: 1668 + type: Transform + - uid: 3865 + components: + - pos: -27.5,-0.5 + parent: 1668 + type: Transform + - uid: 3866 + components: + - pos: -27.5,0.5 + parent: 1668 + type: Transform + - uid: 5234 + components: + - pos: 28.5,-25.5 + parent: 1668 + type: Transform + - links: + - 5242 + type: DeviceLinkSink + - uid: 5235 + components: + - pos: 28.5,-24.5 + parent: 1668 + type: Transform + - links: + - 5242 + type: DeviceLinkSink + - uid: 5236 + components: + - pos: 28.5,-23.5 + parent: 1668 + type: Transform + - links: + - 5242 + type: DeviceLinkSink + - uid: 5237 + components: + - pos: 28.5,-22.5 + parent: 1668 + type: Transform + - links: + - 5242 + type: DeviceLinkSink + - uid: 5238 + components: + - pos: 28.5,-21.5 + parent: 1668 + type: Transform + - links: + - 5242 + type: DeviceLinkSink + - uid: 5239 + components: + - pos: 31.5,-19.5 + parent: 1668 + type: Transform + - links: + - 5242 + type: DeviceLinkSink + - uid: 5240 + components: + - pos: 33.5,-19.5 + parent: 1668 + type: Transform + - links: + - 5242 + type: DeviceLinkSink + - uid: 5241 + components: + - pos: 32.5,-19.5 + parent: 1668 + type: Transform + - links: + - 5242 + type: DeviceLinkSink + - uid: 5951 + components: + - pos: -16.5,-27.5 + parent: 1668 + type: Transform + - uid: 5952 + components: + - pos: -16.5,-26.5 + parent: 1668 + type: Transform + - uid: 5953 + components: + - pos: -16.5,-25.5 + parent: 1668 + type: Transform + - uid: 5954 + components: + - pos: -16.5,-24.5 + parent: 1668 + type: Transform + - uid: 5955 + components: + - pos: -16.5,-23.5 + parent: 1668 + type: Transform + - uid: 6521 + components: + - pos: -2.5,-39.5 + parent: 1668 + type: Transform + - links: + - 6442 + type: DeviceLinkSink + - uid: 6522 + components: + - pos: -1.5,-39.5 + parent: 1668 + type: Transform + - links: + - 6442 + type: DeviceLinkSink + - uid: 6523 + components: + - pos: -0.5,-39.5 + parent: 1668 + type: Transform + - links: + - 6442 + type: DeviceLinkSink + - uid: 6524 + components: + - pos: 0.5,-39.5 + parent: 1668 + type: Transform + - links: + - 6442 + type: DeviceLinkSink + - uid: 6525 + components: + - pos: 1.5,-39.5 + parent: 1668 + type: Transform + - links: + - 6442 + type: DeviceLinkSink +- proto: Bookshelf + entities: + - uid: 2370 + components: + - pos: 23.5,23.5 + parent: 1668 + type: Transform + - uid: 2371 + components: + - pos: 24.5,23.5 + parent: 1668 + type: Transform + - uid: 2372 + components: + - pos: 25.5,23.5 + parent: 1668 + type: Transform + - uid: 2373 + components: + - pos: 32.5,23.5 + parent: 1668 + type: Transform + - uid: 2374 + components: + - pos: 33.5,23.5 + parent: 1668 + type: Transform + - uid: 2375 + components: + - pos: 31.5,23.5 + parent: 1668 + type: Transform + - uid: 2376 + components: + - pos: 26.5,10.5 + parent: 1668 + type: Transform + - uid: 2377 + components: + - pos: 25.5,10.5 + parent: 1668 + type: Transform + - uid: 2378 + components: + - pos: 24.5,10.5 + parent: 1668 + type: Transform + - uid: 2379 + components: + - pos: 30.5,10.5 + parent: 1668 + type: Transform + - uid: 2380 + components: + - pos: 31.5,10.5 + parent: 1668 + type: Transform + - uid: 2382 + components: + - pos: 32.5,10.5 + parent: 1668 + type: Transform + - uid: 3433 + components: + - pos: -24.5,2.5 + parent: 1668 + type: Transform + - uid: 3434 + components: + - pos: -26.5,10.5 + parent: 1668 + type: Transform + - uid: 3821 + components: + - pos: -25.5,-3.5 + parent: 1668 + type: Transform + - uid: 4185 + components: + - pos: -27.5,-7.5 + parent: 1668 + type: Transform + - uid: 4186 + components: + - pos: -27.5,-6.5 + parent: 1668 + type: Transform + - uid: 4187 + components: + - pos: -27.5,-5.5 + parent: 1668 + type: Transform +- proto: BookshelfFilled + entities: + - uid: 3631 + components: + - pos: 20.5,10.5 + parent: 1668 + type: Transform + - uid: 3716 + components: + - pos: 16.5,16.5 + parent: 1668 + type: Transform + - uid: 3717 + components: + - pos: 16.5,15.5 + parent: 1668 + type: Transform + - uid: 6607 + components: + - pos: 19.5,10.5 + parent: 1668 + type: Transform + - uid: 6650 + components: + - pos: 17.5,10.5 + parent: 1668 + type: Transform + - uid: 6933 + components: + - pos: 20.5,14.5 + parent: 1668 + type: Transform + - uid: 6934 + components: + - pos: 20.5,15.5 + parent: 1668 + type: Transform + - uid: 6935 + components: + - pos: 20.5,16.5 + parent: 1668 + type: Transform +- proto: BoozeDispenser + entities: + - uid: 4426 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-24.5 + parent: 1668 + type: Transform + - uid: 4428 + components: + - pos: 6.5,-21.5 + parent: 1668 + type: Transform +- proto: BoxFlashbang + entities: + - uid: 1450 + components: + - pos: 13.475631,6.6059804 + parent: 1668 + type: Transform +- proto: BoxFolderBlack + entities: + - uid: 2236 + components: + - pos: -8.478459,8.547297 + parent: 1668 + type: Transform + - uid: 3750 + components: + - pos: -20.479141,11.485098 + parent: 1668 + type: Transform +- proto: BoxFolderBlue + entities: + - uid: 1443 + components: + - pos: -0.35287756,1.4752237 + parent: 1668 + type: Transform + - uid: 2462 + components: + - pos: 30.518238,17.551378 + parent: 1668 + type: Transform + - uid: 2463 + components: + - pos: 29.486988,21.410753 + parent: 1668 + type: Transform + - uid: 3839 + components: + - pos: -24.426022,-5.7340455 + parent: 1668 + type: Transform +- proto: BoxFolderCentCom + entities: + - uid: 6987 + components: + - pos: 0.751516,0.4821344 + parent: 1668 + type: Transform + - uid: 6990 + components: + - pos: -20.40427,4.6069345 + parent: 1668 + type: Transform +- proto: BoxFolderCentComClipboard + entities: + - uid: 2198 + components: + - pos: -1.5118587,0.6696344 + parent: 1668 + type: Transform + - uid: 6991 + components: + - pos: -20.46677,5.55778 + parent: 1668 + type: Transform +- proto: BoxFolderRed + entities: + - uid: 1398 + components: + - pos: -3.4754791,-12.432284 + parent: 1668 + type: Transform + - uid: 1444 + components: + - pos: -0.22787756,1.6627237 + parent: 1668 + type: Transform + - uid: 2461 + components: + - pos: 27.393238,17.582628 + parent: 1668 + type: Transform + - uid: 3838 + components: + - pos: -24.551022,-5.5465455 + parent: 1668 + type: Transform +- proto: BoxFolderWhite + entities: + - uid: 1397 + components: + - pos: 2.5401459,-12.541659 + parent: 1668 + type: Transform +- proto: BoxFolderYellow + entities: + - uid: 2230 + components: + - pos: -15.424221,14.516905 + parent: 1668 + type: Transform + - uid: 2231 + components: + - pos: -8.454054,12.663795 + parent: 1668 + type: Transform + - uid: 2232 + components: + - pos: -12.532179,10.67942 + parent: 1668 + type: Transform + - uid: 6612 + components: + - pos: 2.170168,-2.5148773 + parent: 1668 + type: Transform + - uid: 6618 + components: + - pos: 2.060793,-2.4055023 + parent: 1668 + type: Transform +- proto: BoxHandcuff + entities: + - uid: 516 + components: + - pos: 21.459097,-10.359755 + parent: 1668 + type: Transform + - uid: 1453 + components: + - pos: 15.460006,6.6372304 + parent: 1668 + type: Transform + - uid: 3150 + components: + - pos: 10.465678,25.678463 + parent: 1668 + type: Transform + - uid: 3898 + components: + - pos: -12.656932,-5.6960163 + parent: 1668 + type: Transform +- proto: BoxLatexGloves + entities: + - uid: 4391 + components: + - pos: 10.34866,-7.2899737 + parent: 1668 + type: Transform +- proto: BoxPDA + entities: + - uid: 1457 + components: + - pos: 1.5702643,-2.4016738 + parent: 1668 + type: Transform +- proto: BoxSterileMask + entities: + - uid: 627 + components: + - pos: 10.430174,-7.5213776 + parent: 1668 + type: Transform +- proto: BoxZiptie + entities: + - uid: 4696 + components: + - pos: 28.527084,-11.476642 + parent: 1668 + type: Transform +- proto: BriefcaseBrownFilled + entities: + - uid: 2468 + components: + - pos: 34.408863,23.770128 + parent: 1668 + type: Transform + - uid: 2469 + components: + - pos: 34.533863,23.582628 + parent: 1668 + type: Transform + - uid: 2470 + components: + - pos: 32.486988,19.707628 + parent: 1668 + type: Transform +- proto: BrigTimer + entities: + - uid: 3723 + components: + - pos: 4.5,26.5 + parent: 1668 + type: Transform + - linkedPorts: + 2832: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource + - uid: 3870 + components: + - pos: 14.5,29.5 + parent: 1668 + type: Transform + - linkedPorts: + 2863: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource + - uid: 3906 + components: + - pos: 14.5,26.5 + parent: 1668 + type: Transform + - linkedPorts: + 2776: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource + - uid: 6602 + components: + - pos: 4.5,29.5 + parent: 1668 + type: Transform + - linkedPorts: + 2862: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource + - uid: 6649 + components: + - pos: 14.5,23.5 + parent: 1668 + type: Transform + - linkedPorts: + 2558: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource +- proto: C4 + entities: + - uid: 1079 + components: + - pos: -12.328807,-3.4569058 + parent: 1668 + type: Transform + - uid: 3894 + components: + - pos: -12.516307,-3.4100308 + parent: 1668 + type: Transform +- proto: CableApcExtension + entities: + - uid: 857 + components: + - pos: 20.5,6.5 + parent: 1668 + type: Transform + - uid: 858 + components: + - pos: 20.5,5.5 + parent: 1668 + type: Transform + - uid: 859 + components: + - pos: 20.5,4.5 + parent: 1668 + type: Transform + - uid: 860 + components: + - pos: 20.5,3.5 + parent: 1668 + type: Transform + - uid: 861 + components: + - pos: 20.5,2.5 + parent: 1668 + type: Transform + - uid: 862 + components: + - pos: 21.5,2.5 + parent: 1668 + type: Transform + - uid: 863 + components: + - pos: 22.5,2.5 + parent: 1668 + type: Transform + - uid: 864 + components: + - pos: 23.5,2.5 + parent: 1668 + type: Transform + - uid: 865 + components: + - pos: 24.5,2.5 + parent: 1668 + type: Transform + - uid: 866 + components: + - pos: 25.5,2.5 + parent: 1668 + type: Transform + - uid: 867 + components: + - pos: 26.5,2.5 + parent: 1668 + type: Transform + - uid: 868 + components: + - pos: 27.5,2.5 + parent: 1668 + type: Transform + - uid: 869 + components: + - pos: 28.5,2.5 + parent: 1668 + type: Transform + - uid: 870 + components: + - pos: 29.5,2.5 + parent: 1668 + type: Transform + - uid: 871 + components: + - pos: 30.5,2.5 + parent: 1668 + type: Transform + - uid: 872 + components: + - pos: 31.5,2.5 + parent: 1668 + type: Transform + - uid: 873 + components: + - pos: 32.5,2.5 + parent: 1668 + type: Transform + - uid: 874 + components: + - pos: 33.5,2.5 + parent: 1668 + type: Transform + - uid: 875 + components: + - pos: 34.5,2.5 + parent: 1668 + type: Transform + - uid: 876 + components: + - pos: 21.5,4.5 + parent: 1668 + type: Transform + - uid: 877 + components: + - pos: 22.5,4.5 + parent: 1668 + type: Transform + - uid: 878 + components: + - pos: 23.5,4.5 + parent: 1668 + type: Transform + - uid: 879 + components: + - pos: 24.5,4.5 + parent: 1668 + type: Transform + - uid: 880 + components: + - pos: 25.5,4.5 + parent: 1668 + type: Transform + - uid: 881 + components: + - pos: 26.5,4.5 + parent: 1668 + type: Transform + - uid: 882 + components: + - pos: 27.5,4.5 + parent: 1668 + type: Transform + - uid: 883 + components: + - pos: 28.5,4.5 + parent: 1668 + type: Transform + - uid: 884 + components: + - pos: 29.5,4.5 + parent: 1668 + type: Transform + - uid: 885 + components: + - pos: 30.5,4.5 + parent: 1668 + type: Transform + - uid: 886 + components: + - pos: 31.5,4.5 + parent: 1668 + type: Transform + - uid: 887 + components: + - pos: 32.5,4.5 + parent: 1668 + type: Transform + - uid: 888 + components: + - pos: 33.5,4.5 + parent: 1668 + type: Transform + - uid: 889 + components: + - pos: 26.5,5.5 + parent: 1668 + type: Transform + - uid: 890 + components: + - pos: 30.5,6.5 + parent: 1668 + type: Transform + - uid: 891 + components: + - pos: 28.5,6.5 + parent: 1668 + type: Transform + - uid: 892 + components: + - pos: 20.5,-2.5 + parent: 1668 + type: Transform + - uid: 893 + components: + - pos: 24.5,7.5 + parent: 1668 + type: Transform + - uid: 894 + components: + - pos: 20.5,-1.5 + parent: 1668 + type: Transform + - uid: 895 + components: + - pos: 20.5,-0.5 + parent: 1668 + type: Transform + - uid: 896 + components: + - pos: 32.5,1.5 + parent: 1668 + type: Transform + - uid: 897 + components: + - pos: 32.5,0.5 + parent: 1668 + type: Transform + - uid: 899 + components: + - pos: 29.5,6.5 + parent: 1668 + type: Transform + - uid: 900 + components: + - pos: 28.5,7.5 + parent: 1668 + type: Transform + - uid: 901 + components: + - pos: 31.5,5.5 + parent: 1668 + type: Transform + - uid: 902 + components: + - pos: 24.5,6.5 + parent: 1668 + type: Transform + - uid: 903 + components: + - pos: 23.5,6.5 + parent: 1668 + type: Transform + - uid: 904 + components: + - pos: 22.5,6.5 + parent: 1668 + type: Transform + - uid: 906 + components: + - pos: 20.5,-7.5 + parent: 1668 + type: Transform + - uid: 907 + components: + - pos: 20.5,-6.5 + parent: 1668 + type: Transform + - uid: 908 + components: + - pos: 20.5,-5.5 + parent: 1668 + type: Transform + - uid: 909 + components: + - pos: 20.5,-4.5 + parent: 1668 + type: Transform + - uid: 910 + components: + - pos: 20.5,-3.5 + parent: 1668 + type: Transform + - uid: 911 + components: + - pos: 21.5,-3.5 + parent: 1668 + type: Transform + - uid: 912 + components: + - pos: 22.5,-3.5 + parent: 1668 + type: Transform + - uid: 913 + components: + - pos: 23.5,-3.5 + parent: 1668 + type: Transform + - uid: 914 + components: + - pos: 24.5,-3.5 + parent: 1668 + type: Transform + - uid: 915 + components: + - pos: 25.5,-3.5 + parent: 1668 + type: Transform + - uid: 916 + components: + - pos: 26.5,-3.5 + parent: 1668 + type: Transform + - uid: 917 + components: + - pos: 27.5,-3.5 + parent: 1668 + type: Transform + - uid: 918 + components: + - pos: 28.5,-3.5 + parent: 1668 + type: Transform + - uid: 919 + components: + - pos: 29.5,-3.5 + parent: 1668 + type: Transform + - uid: 920 + components: + - pos: 30.5,-3.5 + parent: 1668 + type: Transform + - uid: 921 + components: + - pos: 31.5,-3.5 + parent: 1668 + type: Transform + - uid: 922 + components: + - pos: 32.5,-3.5 + parent: 1668 + type: Transform + - uid: 923 + components: + - pos: 33.5,-3.5 + parent: 1668 + type: Transform + - uid: 924 + components: + - pos: 34.5,-3.5 + parent: 1668 + type: Transform + - uid: 925 + components: + - pos: 21.5,-5.5 + parent: 1668 + type: Transform + - uid: 926 + components: + - pos: 22.5,-5.5 + parent: 1668 + type: Transform + - uid: 927 + components: + - pos: 23.5,-5.5 + parent: 1668 + type: Transform + - uid: 928 + components: + - pos: 24.5,-5.5 + parent: 1668 + type: Transform + - uid: 929 + components: + - pos: 25.5,-5.5 + parent: 1668 + type: Transform + - uid: 930 + components: + - pos: 26.5,-5.5 + parent: 1668 + type: Transform + - uid: 931 + components: + - pos: 27.5,-5.5 + parent: 1668 + type: Transform + - uid: 932 + components: + - pos: 28.5,-5.5 + parent: 1668 + type: Transform + - uid: 933 + components: + - pos: 29.5,-5.5 + parent: 1668 + type: Transform + - uid: 934 + components: + - pos: 30.5,-5.5 + parent: 1668 + type: Transform + - uid: 935 + components: + - pos: 31.5,-5.5 + parent: 1668 + type: Transform + - uid: 936 + components: + - pos: 32.5,-5.5 + parent: 1668 + type: Transform + - uid: 937 + components: + - pos: 33.5,-5.5 + parent: 1668 + type: Transform + - uid: 938 + components: + - pos: 31.5,-6.5 + parent: 1668 + type: Transform + - uid: 939 + components: + - pos: 31.5,-7.5 + parent: 1668 + type: Transform + - uid: 940 + components: + - pos: 21.5,-7.5 + parent: 1668 + type: Transform + - uid: 941 + components: + - pos: 21.5,6.5 + parent: 1668 + type: Transform + - uid: 942 + components: + - pos: 31.5,6.5 + parent: 1668 + type: Transform + - uid: 943 + components: + - pos: 33.5,3.5 + parent: 1668 + type: Transform + - uid: 944 + components: + - pos: 33.5,5.5 + parent: 1668 + type: Transform + - uid: 945 + components: + - pos: 33.5,1.5 + parent: 1668 + type: Transform + - uid: 946 + components: + - pos: 35.5,2.5 + parent: 1668 + type: Transform + - uid: 947 + components: + - pos: 35.5,1.5 + parent: 1668 + type: Transform + - uid: 948 + components: + - pos: 35.5,3.5 + parent: 1668 + type: Transform + - uid: 949 + components: + - pos: 35.5,4.5 + parent: 1668 + type: Transform + - uid: 950 + components: + - pos: 35.5,5.5 + parent: 1668 + type: Transform + - uid: 951 + components: + - pos: 35.5,-3.5 + parent: 1668 + type: Transform + - uid: 952 + components: + - pos: 35.5,-2.5 + parent: 1668 + type: Transform + - uid: 953 + components: + - pos: 35.5,-4.5 + parent: 1668 + type: Transform + - uid: 954 + components: + - pos: 35.5,-5.5 + parent: 1668 + type: Transform + - uid: 955 + components: + - pos: 35.5,-6.5 + parent: 1668 + type: Transform + - uid: 956 + components: + - pos: 33.5,-6.5 + parent: 1668 + type: Transform + - uid: 957 + components: + - pos: 33.5,-4.5 + parent: 1668 + type: Transform + - uid: 958 + components: + - pos: 33.5,-2.5 + parent: 1668 + type: Transform + - uid: 959 + components: + - pos: 34.5,-2.5 + parent: 1668 + type: Transform + - uid: 960 + components: + - pos: 34.5,-1.5 + parent: 1668 + type: Transform + - uid: 961 + components: + - pos: 34.5,0.5 + parent: 1668 + type: Transform + - uid: 962 + components: + - pos: 34.5,1.5 + parent: 1668 + type: Transform + - uid: 964 + components: + - pos: 23.5,-10.5 + parent: 1668 + type: Transform + - uid: 965 + components: + - pos: 24.5,-10.5 + parent: 1668 + type: Transform + - uid: 966 + components: + - pos: 25.5,-10.5 + parent: 1668 + type: Transform + - uid: 967 + components: + - pos: 26.5,-10.5 + parent: 1668 + type: Transform + - uid: 968 + components: + - pos: 26.5,-9.5 + parent: 1668 + type: Transform + - uid: 969 + components: + - pos: 26.5,-8.5 + parent: 1668 + type: Transform + - uid: 970 + components: + - pos: 26.5,-11.5 + parent: 1668 + type: Transform + - uid: 971 + components: + - pos: 22.5,-10.5 + parent: 1668 + type: Transform + - uid: 972 + components: + - pos: 22.5,-11.5 + parent: 1668 + type: Transform + - uid: 973 + components: + - pos: 21.5,-11.5 + parent: 1668 + type: Transform + - uid: 975 + components: + - pos: 20.5,-10.5 + parent: 1668 + type: Transform + - uid: 976 + components: + - pos: 32.5,-0.5 + parent: 1668 + type: Transform + - uid: 980 + components: + - pos: 9.5,2.5 + parent: 1668 + type: Transform + - uid: 981 + components: + - pos: 9.5,1.5 + parent: 1668 + type: Transform + - uid: 982 + components: + - pos: 9.5,0.5 + parent: 1668 + type: Transform + - uid: 983 + components: + - pos: 9.5,-0.5 + parent: 1668 + type: Transform + - uid: 984 + components: + - pos: 9.5,-1.5 + parent: 1668 + type: Transform + - uid: 985 + components: + - pos: 9.5,-2.5 + parent: 1668 + type: Transform + - uid: 986 + components: + - pos: 10.5,-0.5 + parent: 1668 + type: Transform + - uid: 987 + components: + - pos: 11.5,-0.5 + parent: 1668 + type: Transform + - uid: 988 + components: + - pos: 12.5,-0.5 + parent: 1668 + type: Transform + - uid: 989 + components: + - pos: 13.5,-0.5 + parent: 1668 + type: Transform + - uid: 990 + components: + - pos: 14.5,-0.5 + parent: 1668 + type: Transform + - uid: 991 + components: + - pos: 15.5,-0.5 + parent: 1668 + type: Transform + - uid: 992 + components: + - pos: 15.5,0.5 + parent: 1668 + type: Transform + - uid: 993 + components: + - pos: 16.5,0.5 + parent: 1668 + type: Transform + - uid: 994 + components: + - pos: 16.5,-0.5 + parent: 1668 + type: Transform + - uid: 995 + components: + - pos: 17.5,-0.5 + parent: 1668 + type: Transform + - uid: 996 + components: + - pos: 18.5,-0.5 + parent: 1668 + type: Transform + - uid: 997 + components: + - pos: 8.5,-0.5 + parent: 1668 + type: Transform + - uid: 998 + components: + - pos: 5.5,0.5 + parent: 1668 + type: Transform + - uid: 999 + components: + - pos: 6.5,-0.5 + parent: 1668 + type: Transform + - uid: 1000 + components: + - pos: 10.5,-3.5 + parent: 1668 + type: Transform + - uid: 1001 + components: + - pos: 10.5,-4.5 + parent: 1668 + type: Transform + - uid: 1002 + components: + - pos: 10.5,-5.5 + parent: 1668 + type: Transform + - uid: 1003 + components: + - pos: 10.5,-6.5 + parent: 1668 + type: Transform + - uid: 1004 + components: + - pos: 10.5,-7.5 + parent: 1668 + type: Transform + - uid: 1005 + components: + - pos: 11.5,-6.5 + parent: 1668 + type: Transform + - uid: 1006 + components: + - pos: 12.5,-6.5 + parent: 1668 + type: Transform + - uid: 1007 + components: + - pos: 13.5,-6.5 + parent: 1668 + type: Transform + - uid: 1008 + components: + - pos: 14.5,-6.5 + parent: 1668 + type: Transform + - uid: 1009 + components: + - pos: 15.5,-6.5 + parent: 1668 + type: Transform + - uid: 1010 + components: + - pos: 16.5,-6.5 + parent: 1668 + type: Transform + - uid: 1011 + components: + - pos: 17.5,-6.5 + parent: 1668 + type: Transform + - uid: 1012 + components: + - pos: 17.5,-5.5 + parent: 1668 + type: Transform + - uid: 1013 + components: + - pos: 13.5,-5.5 + parent: 1668 + type: Transform + - uid: 1014 + components: + - pos: 13.5,-4.5 + parent: 1668 + type: Transform + - uid: 1015 + components: + - pos: 13.5,-3.5 + parent: 1668 + type: Transform + - uid: 1016 + components: + - pos: 12.5,-3.5 + parent: 1668 + type: Transform + - uid: 1017 + components: + - pos: 11.5,-3.5 + parent: 1668 + type: Transform + - uid: 1018 + components: + - pos: 14.5,-3.5 + parent: 1668 + type: Transform + - uid: 1019 + components: + - pos: 15.5,-3.5 + parent: 1668 + type: Transform + - uid: 1020 + components: + - pos: 12.5,7.5 + parent: 1668 + type: Transform + - uid: 1021 + components: + - pos: 12.5,6.5 + parent: 1668 + type: Transform + - uid: 1022 + components: + - pos: 12.5,5.5 + parent: 1668 + type: Transform + - uid: 1023 + components: + - pos: 12.5,4.5 + parent: 1668 + type: Transform + - uid: 1024 + components: + - pos: 12.5,3.5 + parent: 1668 + type: Transform + - uid: 1025 + components: + - pos: 12.5,2.5 + parent: 1668 + type: Transform + - uid: 1026 + components: + - pos: 13.5,2.5 + parent: 1668 + type: Transform + - uid: 1027 + components: + - pos: 14.5,2.5 + parent: 1668 + type: Transform + - uid: 1028 + components: + - pos: 15.5,2.5 + parent: 1668 + type: Transform + - uid: 1029 + components: + - pos: 11.5,2.5 + parent: 1668 + type: Transform + - uid: 1030 + components: + - pos: 13.5,5.5 + parent: 1668 + type: Transform + - uid: 1031 + components: + - pos: 14.5,5.5 + parent: 1668 + type: Transform + - uid: 1032 + components: + - pos: 15.5,5.5 + parent: 1668 + type: Transform + - uid: 1033 + components: + - pos: 16.5,5.5 + parent: 1668 + type: Transform + - uid: 1034 + components: + - pos: 17.5,5.5 + parent: 1668 + type: Transform + - uid: 1035 + components: + - pos: 17.5,4.5 + parent: 1668 + type: Transform + - uid: 1036 + components: + - pos: 17.5,6.5 + parent: 1668 + type: Transform + - uid: 1037 + components: + - pos: 13.5,7.5 + parent: 1668 + type: Transform + - uid: 1038 + components: + - pos: 14.5,7.5 + parent: 1668 + type: Transform + - uid: 1039 + components: + - pos: 11.5,7.5 + parent: 1668 + type: Transform + - uid: 1040 + components: + - pos: 10.5,7.5 + parent: 1668 + type: Transform + - uid: 1041 + components: + - pos: 9.5,7.5 + parent: 1668 + type: Transform + - uid: 1042 + components: + - pos: 11.5,5.5 + parent: 1668 + type: Transform + - uid: 1043 + components: + - pos: 10.5,5.5 + parent: 1668 + type: Transform + - uid: 1044 + components: + - pos: 9.5,5.5 + parent: 1668 + type: Transform + - uid: 1045 + components: + - pos: 8.5,5.5 + parent: 1668 + type: Transform + - uid: 1046 + components: + - pos: 9.5,4.5 + parent: 1668 + type: Transform + - uid: 1047 + components: + - pos: 8.5,4.5 + parent: 1668 + type: Transform + - uid: 1048 + components: + - pos: 8.5,3.5 + parent: 1668 + type: Transform + - uid: 1049 + components: + - pos: 7.5,3.5 + parent: 1668 + type: Transform + - uid: 1050 + components: + - pos: 7.5,4.5 + parent: 1668 + type: Transform + - uid: 1051 + components: + - pos: 12.5,8.5 + parent: 1668 + type: Transform + - uid: 1052 + components: + - pos: 12.5,9.5 + parent: 1668 + type: Transform + - uid: 1053 + components: + - pos: 13.5,9.5 + parent: 1668 + type: Transform + - uid: 1054 + components: + - pos: 14.5,9.5 + parent: 1668 + type: Transform + - uid: 1055 + components: + - pos: 11.5,9.5 + parent: 1668 + type: Transform + - uid: 1056 + components: + - pos: 10.5,9.5 + parent: 1668 + type: Transform + - uid: 1057 + components: + - pos: 9.5,9.5 + parent: 1668 + type: Transform + - uid: 1058 + components: + - pos: 8.5,9.5 + parent: 1668 + type: Transform + - uid: 1059 + components: + - pos: 7.5,9.5 + parent: 1668 + type: Transform + - uid: 1060 + components: + - pos: 6.5,9.5 + parent: 1668 + type: Transform + - uid: 1061 + components: + - pos: 8.5,8.5 + parent: 1668 + type: Transform + - uid: 1062 + components: + - pos: 28.5,1.5 + parent: 1668 + type: Transform + - uid: 1063 + components: + - pos: 28.5,0.5 + parent: 1668 + type: Transform + - uid: 1064 + components: + - pos: 28.5,-0.5 + parent: 1668 + type: Transform + - uid: 1068 + components: + - pos: 24.5,-2.5 + parent: 1668 + type: Transform + - uid: 1069 + components: + - pos: 24.5,-1.5 + parent: 1668 + type: Transform + - uid: 1070 + components: + - pos: 24.5,-0.5 + parent: 1668 + type: Transform + - uid: 1089 + components: + - pos: -2.5,2.5 + parent: 1668 + type: Transform + - uid: 1090 + components: + - pos: -2.5,1.5 + parent: 1668 + type: Transform + - uid: 1091 + components: + - pos: -2.5,0.5 + parent: 1668 + type: Transform + - uid: 1092 + components: + - pos: -2.5,-0.5 + parent: 1668 + type: Transform + - uid: 1093 + components: + - pos: -2.5,-1.5 + parent: 1668 + type: Transform + - uid: 1094 + components: + - pos: -1.5,0.5 + parent: 1668 + type: Transform + - uid: 1095 + components: + - pos: -0.5,0.5 + parent: 1668 + type: Transform + - uid: 1096 + components: + - pos: 0.5,0.5 + parent: 1668 + type: Transform + - uid: 1097 + components: + - pos: 1.5,0.5 + parent: 1668 + type: Transform + - uid: 1098 + components: + - pos: 2.5,0.5 + parent: 1668 + type: Transform + - uid: 1099 + components: + - pos: 2.5,1.5 + parent: 1668 + type: Transform + - uid: 1100 + components: + - pos: 2.5,2.5 + parent: 1668 + type: Transform + - uid: 1101 + components: + - pos: 3.5,2.5 + parent: 1668 + type: Transform + - uid: 1102 + components: + - pos: 3.5,1.5 + parent: 1668 + type: Transform + - uid: 1103 + components: + - pos: -3.5,1.5 + parent: 1668 + type: Transform + - uid: 1104 + components: + - pos: -4.5,1.5 + parent: 1668 + type: Transform + - uid: 1105 + components: + - pos: -4.5,2.5 + parent: 1668 + type: Transform + - uid: 1106 + components: + - pos: -3.5,2.5 + parent: 1668 + type: Transform + - uid: 1107 + components: + - pos: -1.5,2.5 + parent: 1668 + type: Transform + - uid: 1108 + components: + - pos: -0.5,2.5 + parent: 1668 + type: Transform + - uid: 1109 + components: + - pos: 0.5,2.5 + parent: 1668 + type: Transform + - uid: 1110 + components: + - pos: -3.5,-0.5 + parent: 1668 + type: Transform + - uid: 1111 + components: + - pos: -4.5,-0.5 + parent: 1668 + type: Transform + - uid: 1112 + components: + - pos: -4.5,-1.5 + parent: 1668 + type: Transform + - uid: 1113 + components: + - pos: -4.5,-2.5 + parent: 1668 + type: Transform + - uid: 1114 + components: + - pos: -2.5,-2.5 + parent: 1668 + type: Transform + - uid: 1115 + components: + - pos: -2.5,-3.5 + parent: 1668 + type: Transform + - uid: 1116 + components: + - pos: -3.5,-3.5 + parent: 1668 + type: Transform + - uid: 1117 + components: + - pos: -1.5,-1.5 + parent: 1668 + type: Transform + - uid: 1118 + components: + - pos: -0.5,-1.5 + parent: 1668 + type: Transform + - uid: 1119 + components: + - pos: -0.5,-2.5 + parent: 1668 + type: Transform + - uid: 1120 + components: + - pos: -0.5,-3.5 + parent: 1668 + type: Transform + - uid: 1121 + components: + - pos: 0.5,-1.5 + parent: 1668 + type: Transform + - uid: 1122 + components: + - pos: 1.5,-1.5 + parent: 1668 + type: Transform + - uid: 1123 + components: + - pos: 2.5,-1.5 + parent: 1668 + type: Transform + - uid: 1124 + components: + - pos: 3.5,-1.5 + parent: 1668 + type: Transform + - uid: 1125 + components: + - pos: 3.5,-0.5 + parent: 1668 + type: Transform + - uid: 1126 + components: + - pos: 3.5,-2.5 + parent: 1668 + type: Transform + - uid: 1127 + components: + - pos: 1.5,-2.5 + parent: 1668 + type: Transform + - uid: 1128 + components: + - pos: 1.5,-3.5 + parent: 1668 + type: Transform + - uid: 1129 + components: + - pos: 2.5,-3.5 + parent: 1668 + type: Transform + - uid: 1137 + components: + - pos: 21.5,-10.5 + parent: 1668 + type: Transform + - uid: 1202 + components: + - pos: 10.5,-8.5 + parent: 1668 + type: Transform + - uid: 1203 + components: + - pos: 11.5,-8.5 + parent: 1668 + type: Transform + - uid: 1204 + components: + - pos: 9.5,-8.5 + parent: 1668 + type: Transform + - uid: 1205 + components: + - pos: 14.5,-7.5 + parent: 1668 + type: Transform + - uid: 1206 + components: + - pos: 14.5,-8.5 + parent: 1668 + type: Transform + - uid: 1207 + components: + - pos: 15.5,-8.5 + parent: 1668 + type: Transform + - uid: 1208 + components: + - pos: 13.5,-8.5 + parent: 1668 + type: Transform + - uid: 1209 + components: + - pos: 12.5,-10.5 + parent: 1668 + type: Transform + - uid: 1210 + components: + - pos: 12.5,-9.5 + parent: 1668 + type: Transform + - uid: 1211 + components: + - pos: 13.5,-10.5 + parent: 1668 + type: Transform + - uid: 1212 + components: + - pos: 14.5,-10.5 + parent: 1668 + type: Transform + - uid: 1213 + components: + - pos: 15.5,-10.5 + parent: 1668 + type: Transform + - uid: 1214 + components: + - pos: 16.5,-10.5 + parent: 1668 + type: Transform + - uid: 1215 + components: + - pos: 16.5,-9.5 + parent: 1668 + type: Transform + - uid: 1216 + components: + - pos: 11.5,-10.5 + parent: 1668 + type: Transform + - uid: 1217 + components: + - pos: 10.5,-10.5 + parent: 1668 + type: Transform + - uid: 1218 + components: + - pos: 9.5,-10.5 + parent: 1668 + type: Transform + - uid: 1219 + components: + - pos: 12.5,-11.5 + parent: 1668 + type: Transform + - uid: 1220 + components: + - pos: 12.5,-12.5 + parent: 1668 + type: Transform + - uid: 1221 + components: + - pos: 12.5,-13.5 + parent: 1668 + type: Transform + - uid: 1222 + components: + - pos: 12.5,-14.5 + parent: 1668 + type: Transform + - uid: 1223 + components: + - pos: 12.5,-14.5 + parent: 1668 + type: Transform + - uid: 1224 + components: + - pos: 12.5,-16.5 + parent: 1668 + type: Transform + - uid: 1225 + components: + - pos: 12.5,-15.5 + parent: 1668 + type: Transform + - uid: 1226 + components: + - pos: 11.5,-16.5 + parent: 1668 + type: Transform + - uid: 1227 + components: + - pos: 11.5,-11.5 + parent: 1668 + type: Transform + - uid: 1228 + components: + - pos: 10.5,-11.5 + parent: 1668 + type: Transform + - uid: 1229 + components: + - pos: 9.5,-11.5 + parent: 1668 + type: Transform + - uid: 1230 + components: + - pos: 13.5,-11.5 + parent: 1668 + type: Transform + - uid: 1231 + components: + - pos: 14.5,-11.5 + parent: 1668 + type: Transform + - uid: 1232 + components: + - pos: 15.5,-11.5 + parent: 1668 + type: Transform + - uid: 1233 + components: + - pos: 11.5,-14.5 + parent: 1668 + type: Transform + - uid: 1234 + components: + - pos: 10.5,-14.5 + parent: 1668 + type: Transform + - uid: 1236 + components: + - pos: 3.5,-8.5 + parent: 1668 + type: Transform + - uid: 1237 + components: + - pos: 3.5,-9.5 + parent: 1668 + type: Transform + - uid: 1238 + components: + - pos: 4.5,-9.5 + parent: 1668 + type: Transform + - uid: 1239 + components: + - pos: 4.5,-10.5 + parent: 1668 + type: Transform + - uid: 1240 + components: + - pos: 4.5,-11.5 + parent: 1668 + type: Transform + - uid: 1241 + components: + - pos: 4.5,-12.5 + parent: 1668 + type: Transform + - uid: 1242 + components: + - pos: 4.5,-13.5 + parent: 1668 + type: Transform + - uid: 1243 + components: + - pos: 5.5,-11.5 + parent: 1668 + type: Transform + - uid: 1244 + components: + - pos: 6.5,-11.5 + parent: 1668 + type: Transform + - uid: 1245 + components: + - pos: 7.5,-11.5 + parent: 1668 + type: Transform + - uid: 1246 + components: + - pos: 7.5,-10.5 + parent: 1668 + type: Transform + - uid: 1247 + components: + - pos: 5.5,-9.5 + parent: 1668 + type: Transform + - uid: 1248 + components: + - pos: 6.5,-9.5 + parent: 1668 + type: Transform + - uid: 1249 + components: + - pos: 7.5,-12.5 + parent: 1668 + type: Transform + - uid: 1250 + components: + - pos: 5.5,-13.5 + parent: 1668 + type: Transform + - uid: 1251 + components: + - pos: 6.5,-13.5 + parent: 1668 + type: Transform + - uid: 1252 + components: + - pos: 3.5,-10.5 + parent: 1668 + type: Transform + - uid: 1253 + components: + - pos: 2.5,-10.5 + parent: 1668 + type: Transform + - uid: 1254 + components: + - pos: 3.5,-13.5 + parent: 1668 + type: Transform + - uid: 1255 + components: + - pos: 2.5,-13.5 + parent: 1668 + type: Transform + - uid: 1256 + components: + - pos: 4.5,-8.5 + parent: 1668 + type: Transform + - uid: 1257 + components: + - pos: 4.5,-7.5 + parent: 1668 + type: Transform + - uid: 1258 + components: + - pos: 5.5,-7.5 + parent: 1668 + type: Transform + - uid: 1259 + components: + - pos: 3.5,-7.5 + parent: 1668 + type: Transform + - uid: 1260 + components: + - pos: -1.5,-6.5 + parent: 1668 + type: Transform + - uid: 1261 + components: + - pos: -1.5,-5.5 + parent: 1668 + type: Transform + - uid: 1262 + components: + - pos: -0.5,-5.5 + parent: 1668 + type: Transform + - uid: 1263 + components: + - pos: 0.5,-5.5 + parent: 1668 + type: Transform + - uid: 1264 + components: + - pos: 0.5,-6.5 + parent: 1668 + type: Transform + - uid: 1265 + components: + - pos: 1.5,-5.5 + parent: 1668 + type: Transform + - uid: 1266 + components: + - pos: 2.5,-5.5 + parent: 1668 + type: Transform + - uid: 1267 + components: + - pos: 2.5,-6.5 + parent: 1668 + type: Transform + - uid: 1268 + components: + - pos: 3.5,-5.5 + parent: 1668 + type: Transform + - uid: 1269 + components: + - pos: 4.5,-5.5 + parent: 1668 + type: Transform + - uid: 1270 + components: + - pos: 5.5,-5.5 + parent: 1668 + type: Transform + - uid: 1271 + components: + - pos: 6.5,-5.5 + parent: 1668 + type: Transform + - uid: 1272 + components: + - pos: 6.5,-4.5 + parent: 1668 + type: Transform + - uid: 1273 + components: + - pos: 5.5,-4.5 + parent: 1668 + type: Transform + - uid: 1274 + components: + - pos: 5.5,-3.5 + parent: 1668 + type: Transform + - uid: 1275 + components: + - pos: 5.5,-2.5 + parent: 1668 + type: Transform + - uid: 1276 + components: + - pos: 9.5,-5.5 + parent: 1668 + type: Transform + - uid: 1277 + components: + - pos: 8.5,-5.5 + parent: 1668 + type: Transform + - uid: 1278 + components: + - pos: 8.5,-4.5 + parent: 1668 + type: Transform + - uid: 1279 + components: + - pos: 5.5,-1.5 + parent: 1668 + type: Transform + - uid: 1280 + components: + - pos: 5.5,-0.5 + parent: 1668 + type: Transform + - uid: 1281 + components: + - pos: 5.5,1.5 + parent: 1668 + type: Transform + - uid: 1282 + components: + - pos: 5.5,2.5 + parent: 1668 + type: Transform + - uid: 1283 + components: + - pos: 5.5,3.5 + parent: 1668 + type: Transform + - uid: 1284 + components: + - pos: 5.5,4.5 + parent: 1668 + type: Transform + - uid: 1285 + components: + - pos: 4.5,4.5 + parent: 1668 + type: Transform + - uid: 1286 + components: + - pos: 3.5,4.5 + parent: 1668 + type: Transform + - uid: 1287 + components: + - pos: 2.5,4.5 + parent: 1668 + type: Transform + - uid: 1288 + components: + - pos: 1.5,4.5 + parent: 1668 + type: Transform + - uid: 1289 + components: + - pos: 0.5,4.5 + parent: 1668 + type: Transform + - uid: 1290 + components: + - pos: -0.5,4.5 + parent: 1668 + type: Transform + - uid: 1291 + components: + - pos: -1.5,4.5 + parent: 1668 + type: Transform + - uid: 1292 + components: + - pos: -2.5,4.5 + parent: 1668 + type: Transform + - uid: 1293 + components: + - pos: -3.5,4.5 + parent: 1668 + type: Transform + - uid: 1294 + components: + - pos: -4.5,4.5 + parent: 1668 + type: Transform + - uid: 1295 + components: + - pos: -5.5,4.5 + parent: 1668 + type: Transform + - uid: 1296 + components: + - pos: -6.5,4.5 + parent: 1668 + type: Transform + - uid: 1297 + components: + - pos: -6.5,3.5 + parent: 1668 + type: Transform + - uid: 1298 + components: + - pos: -6.5,2.5 + parent: 1668 + type: Transform + - uid: 1299 + components: + - pos: -6.5,1.5 + parent: 1668 + type: Transform + - uid: 1300 + components: + - pos: -6.5,0.5 + parent: 1668 + type: Transform + - uid: 1301 + components: + - pos: -6.5,-0.5 + parent: 1668 + type: Transform + - uid: 1302 + components: + - pos: -6.5,-1.5 + parent: 1668 + type: Transform + - uid: 1303 + components: + - pos: -6.5,-2.5 + parent: 1668 + type: Transform + - uid: 1304 + components: + - pos: -6.5,-3.5 + parent: 1668 + type: Transform + - uid: 1305 + components: + - pos: -6.5,-4.5 + parent: 1668 + type: Transform + - uid: 1306 + components: + - pos: -6.5,-5.5 + parent: 1668 + type: Transform + - uid: 1307 + components: + - pos: -5.5,-5.5 + parent: 1668 + type: Transform + - uid: 1308 + components: + - pos: -4.5,-5.5 + parent: 1668 + type: Transform + - uid: 1309 + components: + - pos: -3.5,-5.5 + parent: 1668 + type: Transform + - uid: 1310 + components: + - pos: -2.5,-5.5 + parent: 1668 + type: Transform + - uid: 1311 + components: + - pos: -3.5,-6.5 + parent: 1668 + type: Transform + - uid: 1312 + components: + - pos: -7.5,-5.5 + parent: 1668 + type: Transform + - uid: 1313 + components: + - pos: -7.5,-4.5 + parent: 1668 + type: Transform + - uid: 1314 + components: + - pos: -7.5,-0.5 + parent: 1668 + type: Transform + - uid: 1315 + components: + - pos: -7.5,3.5 + parent: 1668 + type: Transform + - uid: 1316 + components: + - pos: -7.5,4.5 + parent: 1668 + type: Transform + - uid: 1317 + components: + - pos: -1.5,5.5 + parent: 1668 + type: Transform + - uid: 1318 + components: + - pos: 0.5,5.5 + parent: 1668 + type: Transform + - uid: 1319 + components: + - pos: 2.5,5.5 + parent: 1668 + type: Transform + - uid: 1320 + components: + - pos: 4.5,5.5 + parent: 1668 + type: Transform + - uid: 1342 + components: + - pos: -3.5,-9.5 + parent: 1668 + type: Transform + - uid: 1343 + components: + - pos: -2.5,-9.5 + parent: 1668 + type: Transform + - uid: 1344 + components: + - pos: -1.5,-9.5 + parent: 1668 + type: Transform + - uid: 1345 + components: + - pos: -0.5,-9.5 + parent: 1668 + type: Transform + - uid: 1346 + components: + - pos: 0.5,-9.5 + parent: 1668 + type: Transform + - uid: 1347 + components: + - pos: 0.5,-8.5 + parent: 1668 + type: Transform + - uid: 1348 + components: + - pos: -1.5,-8.5 + parent: 1668 + type: Transform + - uid: 1349 + components: + - pos: -0.5,-10.5 + parent: 1668 + type: Transform + - uid: 1350 + components: + - pos: -0.5,-11.5 + parent: 1668 + type: Transform + - uid: 1351 + components: + - pos: -0.5,-12.5 + parent: 1668 + type: Transform + - uid: 1352 + components: + - pos: -0.5,-13.5 + parent: 1668 + type: Transform + - uid: 1353 + components: + - pos: -1.5,-13.5 + parent: 1668 + type: Transform + - uid: 1354 + components: + - pos: -1.5,-14.5 + parent: 1668 + type: Transform + - uid: 1355 + components: + - pos: -2.5,-14.5 + parent: 1668 + type: Transform + - uid: 1356 + components: + - pos: 0.5,-13.5 + parent: 1668 + type: Transform + - uid: 1357 + components: + - pos: 0.5,-14.5 + parent: 1668 + type: Transform + - uid: 1358 + components: + - pos: 1.5,-14.5 + parent: 1668 + type: Transform + - uid: 1359 + components: + - pos: -4.5,-9.5 + parent: 1668 + type: Transform + - uid: 1360 + components: + - pos: -5.5,-9.5 + parent: 1668 + type: Transform + - uid: 1361 + components: + - pos: -5.5,-8.5 + parent: 1668 + type: Transform + - uid: 1362 + components: + - pos: -5.5,-7.5 + parent: 1668 + type: Transform + - uid: 1363 + components: + - pos: -4.5,-7.5 + parent: 1668 + type: Transform + - uid: 1364 + components: + - pos: -6.5,-7.5 + parent: 1668 + type: Transform + - uid: 1365 + components: + - pos: -5.5,-10.5 + parent: 1668 + type: Transform + - uid: 1366 + components: + - pos: -5.5,-11.5 + parent: 1668 + type: Transform + - uid: 1367 + components: + - pos: -6.5,-11.5 + parent: 1668 + type: Transform + - uid: 1368 + components: + - pos: -7.5,-11.5 + parent: 1668 + type: Transform + - uid: 1369 + components: + - pos: -8.5,-11.5 + parent: 1668 + type: Transform + - uid: 1370 + components: + - pos: -8.5,-10.5 + parent: 1668 + type: Transform + - uid: 1371 + components: + - pos: -8.5,-12.5 + parent: 1668 + type: Transform + - uid: 1372 + components: + - pos: -5.5,-12.5 + parent: 1668 + type: Transform + - uid: 1373 + components: + - pos: -5.5,-13.5 + parent: 1668 + type: Transform + - uid: 1374 + components: + - pos: -4.5,-10.5 + parent: 1668 + type: Transform + - uid: 1375 + components: + - pos: -3.5,-10.5 + parent: 1668 + type: Transform + - uid: 1376 + components: + - pos: -3.5,-13.5 + parent: 1668 + type: Transform + - uid: 1377 + components: + - pos: -4.5,-13.5 + parent: 1668 + type: Transform + - uid: 1378 + components: + - pos: -6.5,-13.5 + parent: 1668 + type: Transform + - uid: 1379 + components: + - pos: -7.5,-13.5 + parent: 1668 + type: Transform + - uid: 1380 + components: + - pos: -7.5,-14.5 + parent: 1668 + type: Transform + - uid: 1381 + components: + - pos: -8.5,-14.5 + parent: 1668 + type: Transform + - uid: 1382 + components: + - pos: -6.5,-9.5 + parent: 1668 + type: Transform + - uid: 1383 + components: + - pos: -7.5,-9.5 + parent: 1668 + type: Transform + - uid: 1468 + components: + - pos: 15.5,-4.5 + parent: 1668 + type: Transform + - uid: 1469 + components: + - pos: 16.5,-4.5 + parent: 1668 + type: Transform + - uid: 1470 + components: + - pos: 15.5,4.5 + parent: 1668 + type: Transform + - uid: 1471 + components: + - pos: 15.5,3.5 + parent: 1668 + type: Transform + - uid: 1472 + components: + - pos: 16.5,3.5 + parent: 1668 + type: Transform + - uid: 1678 + components: + - pos: -6.5,16.5 + parent: 1668 + type: Transform + - uid: 1679 + components: + - pos: -6.5,15.5 + parent: 1668 + type: Transform + - uid: 1680 + components: + - pos: -6.5,17.5 + parent: 1668 + type: Transform + - uid: 1681 + components: + - pos: -5.5,17.5 + parent: 1668 + type: Transform + - uid: 1682 + components: + - pos: -4.5,17.5 + parent: 1668 + type: Transform + - uid: 1683 + components: + - pos: -8.5,13.5 + parent: 1668 + type: Transform + - uid: 1684 + components: + - pos: -8.5,12.5 + parent: 1668 + type: Transform + - uid: 1685 + components: + - pos: -8.5,11.5 + parent: 1668 + type: Transform + - uid: 1686 + components: + - pos: -8.5,10.5 + parent: 1668 + type: Transform + - uid: 1687 + components: + - pos: -8.5,9.5 + parent: 1668 + type: Transform + - uid: 1688 + components: + - pos: -7.5,9.5 + parent: 1668 + type: Transform + - uid: 1689 + components: + - pos: -6.5,9.5 + parent: 1668 + type: Transform + - uid: 1690 + components: + - pos: -5.5,9.5 + parent: 1668 + type: Transform + - uid: 1691 + components: + - pos: -5.5,8.5 + parent: 1668 + type: Transform + - uid: 1692 + components: + - pos: -4.5,8.5 + parent: 1668 + type: Transform + - uid: 1693 + components: + - pos: -5.5,7.5 + parent: 1668 + type: Transform + - uid: 1694 + components: + - pos: -5.5,6.5 + parent: 1668 + type: Transform + - uid: 1695 + components: + - pos: -4.5,6.5 + parent: 1668 + type: Transform + - uid: 1696 + components: + - pos: -6.5,6.5 + parent: 1668 + type: Transform + - uid: 1697 + components: + - pos: -9.5,9.5 + parent: 1668 + type: Transform + - uid: 1698 + components: + - pos: -10.5,9.5 + parent: 1668 + type: Transform + - uid: 1699 + components: + - pos: -11.5,9.5 + parent: 1668 + type: Transform + - uid: 1700 + components: + - pos: -9.5,11.5 + parent: 1668 + type: Transform + - uid: 1701 + components: + - pos: -10.5,11.5 + parent: 1668 + type: Transform + - uid: 1702 + components: + - pos: -11.5,11.5 + parent: 1668 + type: Transform + - uid: 1703 + components: + - pos: -7.5,11.5 + parent: 1668 + type: Transform + - uid: 1704 + components: + - pos: -6.5,11.5 + parent: 1668 + type: Transform + - uid: 1705 + components: + - pos: -6.5,12.5 + parent: 1668 + type: Transform + - uid: 1706 + components: + - pos: -14.5,18.5 + parent: 1668 + type: Transform + - uid: 1707 + components: + - pos: -14.5,17.5 + parent: 1668 + type: Transform + - uid: 1708 + components: + - pos: -15.5,17.5 + parent: 1668 + type: Transform + - uid: 1709 + components: + - pos: -16.5,17.5 + parent: 1668 + type: Transform + - uid: 1710 + components: + - pos: -16.5,18.5 + parent: 1668 + type: Transform + - uid: 1711 + components: + - pos: -15.5,18.5 + parent: 1668 + type: Transform + - uid: 1712 + components: + - pos: -13.5,18.5 + parent: 1668 + type: Transform + - uid: 1713 + components: + - pos: -12.5,18.5 + parent: 1668 + type: Transform + - uid: 1714 + components: + - pos: -14.5,16.5 + parent: 1668 + type: Transform + - uid: 1715 + components: + - pos: -14.5,15.5 + parent: 1668 + type: Transform + - uid: 1716 + components: + - pos: -13.5,15.5 + parent: 1668 + type: Transform + - uid: 1717 + components: + - pos: -12.5,15.5 + parent: 1668 + type: Transform + - uid: 1718 + components: + - pos: -11.5,15.5 + parent: 1668 + type: Transform + - uid: 1719 + components: + - pos: -10.5,15.5 + parent: 1668 + type: Transform + - uid: 1720 + components: + - pos: -9.5,15.5 + parent: 1668 + type: Transform + - uid: 1721 + components: + - pos: -10.5,14.5 + parent: 1668 + type: Transform + - uid: 1722 + components: + - pos: -10.5,16.5 + parent: 1668 + type: Transform + - uid: 1723 + components: + - pos: -10.5,17.5 + parent: 1668 + type: Transform + - uid: 1724 + components: + - pos: -4.5,19.5 + parent: 1668 + type: Transform + - uid: 1725 + components: + - pos: -5.5,19.5 + parent: 1668 + type: Transform + - uid: 1726 + components: + - pos: -6.5,19.5 + parent: 1668 + type: Transform + - uid: 1727 + components: + - pos: -7.5,19.5 + parent: 1668 + type: Transform + - uid: 1728 + components: + - pos: -8.5,19.5 + parent: 1668 + type: Transform + - uid: 1729 + components: + - pos: -9.5,19.5 + parent: 1668 + type: Transform + - uid: 1730 + components: + - pos: -10.5,19.5 + parent: 1668 + type: Transform + - uid: 1731 + components: + - pos: -11.5,19.5 + parent: 1668 + type: Transform + - uid: 1732 + components: + - pos: -11.5,20.5 + parent: 1668 + type: Transform + - uid: 1733 + components: + - pos: -11.5,21.5 + parent: 1668 + type: Transform + - uid: 1734 + components: + - pos: -11.5,22.5 + parent: 1668 + type: Transform + - uid: 1735 + components: + - pos: -11.5,23.5 + parent: 1668 + type: Transform + - uid: 1736 + components: + - pos: -11.5,24.5 + parent: 1668 + type: Transform + - uid: 1737 + components: + - pos: -11.5,25.5 + parent: 1668 + type: Transform + - uid: 1738 + components: + - pos: -11.5,26.5 + parent: 1668 + type: Transform + - uid: 1739 + components: + - pos: -11.5,27.5 + parent: 1668 + type: Transform + - uid: 1740 + components: + - pos: -11.5,28.5 + parent: 1668 + type: Transform + - uid: 1741 + components: + - pos: -11.5,29.5 + parent: 1668 + type: Transform + - uid: 1742 + components: + - pos: -11.5,30.5 + parent: 1668 + type: Transform + - uid: 1743 + components: + - pos: -11.5,31.5 + parent: 1668 + type: Transform + - uid: 1744 + components: + - pos: -12.5,31.5 + parent: 1668 + type: Transform + - uid: 1745 + components: + - pos: -12.5,32.5 + parent: 1668 + type: Transform + - uid: 1746 + components: + - pos: -10.5,31.5 + parent: 1668 + type: Transform + - uid: 1747 + components: + - pos: -9.5,31.5 + parent: 1668 + type: Transform + - uid: 1748 + components: + - pos: -8.5,31.5 + parent: 1668 + type: Transform + - uid: 1749 + components: + - pos: -7.5,31.5 + parent: 1668 + type: Transform + - uid: 1750 + components: + - pos: -6.5,31.5 + parent: 1668 + type: Transform + - uid: 1751 + components: + - pos: -6.5,32.5 + parent: 1668 + type: Transform + - uid: 1752 + components: + - pos: -9.5,32.5 + parent: 1668 + type: Transform + - uid: 1753 + components: + - pos: -9.5,33.5 + parent: 1668 + type: Transform + - uid: 1754 + components: + - pos: -12.5,30.5 + parent: 1668 + type: Transform + - uid: 1755 + components: + - pos: -13.5,30.5 + parent: 1668 + type: Transform + - uid: 1756 + components: + - pos: -14.5,30.5 + parent: 1668 + type: Transform + - uid: 1757 + components: + - pos: -14.5,29.5 + parent: 1668 + type: Transform + - uid: 1758 + components: + - pos: -15.5,29.5 + parent: 1668 + type: Transform + - uid: 1759 + components: + - pos: -16.5,29.5 + parent: 1668 + type: Transform + - uid: 1760 + components: + - pos: -12.5,26.5 + parent: 1668 + type: Transform + - uid: 1761 + components: + - pos: -13.5,26.5 + parent: 1668 + type: Transform + - uid: 1762 + components: + - pos: -14.5,26.5 + parent: 1668 + type: Transform + - uid: 1763 + components: + - pos: -15.5,26.5 + parent: 1668 + type: Transform + - uid: 1764 + components: + - pos: -16.5,26.5 + parent: 1668 + type: Transform + - uid: 1765 + components: + - pos: -12.5,23.5 + parent: 1668 + type: Transform + - uid: 1766 + components: + - pos: -13.5,23.5 + parent: 1668 + type: Transform + - uid: 1767 + components: + - pos: -14.5,23.5 + parent: 1668 + type: Transform + - uid: 1768 + components: + - pos: -15.5,23.5 + parent: 1668 + type: Transform + - uid: 1769 + components: + - pos: -16.5,23.5 + parent: 1668 + type: Transform + - uid: 1770 + components: + - pos: -14.5,22.5 + parent: 1668 + type: Transform + - uid: 1771 + components: + - pos: -14.5,21.5 + parent: 1668 + type: Transform + - uid: 1772 + components: + - pos: -14.5,20.5 + parent: 1668 + type: Transform + - uid: 1773 + components: + - pos: -10.5,23.5 + parent: 1668 + type: Transform + - uid: 1774 + components: + - pos: -9.5,23.5 + parent: 1668 + type: Transform + - uid: 1775 + components: + - pos: -8.5,23.5 + parent: 1668 + type: Transform + - uid: 1776 + components: + - pos: -7.5,23.5 + parent: 1668 + type: Transform + - uid: 1777 + components: + - pos: -6.5,23.5 + parent: 1668 + type: Transform + - uid: 1778 + components: + - pos: -6.5,20.5 + parent: 1668 + type: Transform + - uid: 1779 + components: + - pos: -6.5,21.5 + parent: 1668 + type: Transform + - uid: 1780 + components: + - pos: -6.5,22.5 + parent: 1668 + type: Transform + - uid: 1781 + components: + - pos: -6.5,24.5 + parent: 1668 + type: Transform + - uid: 1782 + components: + - pos: -6.5,25.5 + parent: 1668 + type: Transform + - uid: 1783 + components: + - pos: -6.5,26.5 + parent: 1668 + type: Transform + - uid: 1784 + components: + - pos: -6.5,27.5 + parent: 1668 + type: Transform + - uid: 1785 + components: + - pos: -6.5,28.5 + parent: 1668 + type: Transform + - uid: 1786 + components: + - pos: -6.5,29.5 + parent: 1668 + type: Transform + - uid: 1787 + components: + - pos: -6.5,30.5 + parent: 1668 + type: Transform + - uid: 1788 + components: + - pos: -7.5,27.5 + parent: 1668 + type: Transform + - uid: 1789 + components: + - pos: -8.5,27.5 + parent: 1668 + type: Transform + - uid: 1790 + components: + - pos: -9.5,27.5 + parent: 1668 + type: Transform + - uid: 1791 + components: + - pos: -10.5,27.5 + parent: 1668 + type: Transform + - uid: 1956 + components: + - pos: 1.5,17.5 + parent: 1668 + type: Transform + - uid: 1957 + components: + - pos: 1.5,16.5 + parent: 1668 + type: Transform + - uid: 1958 + components: + - pos: 1.5,15.5 + parent: 1668 + type: Transform + - uid: 1959 + components: + - pos: 1.5,14.5 + parent: 1668 + type: Transform + - uid: 1960 + components: + - pos: 1.5,13.5 + parent: 1668 + type: Transform + - uid: 1961 + components: + - pos: 1.5,12.5 + parent: 1668 + type: Transform + - uid: 1962 + components: + - pos: 1.5,11.5 + parent: 1668 + type: Transform + - uid: 1963 + components: + - pos: 1.5,10.5 + parent: 1668 + type: Transform + - uid: 1964 + components: + - pos: 1.5,9.5 + parent: 1668 + type: Transform + - uid: 1965 + components: + - pos: 1.5,8.5 + parent: 1668 + type: Transform + - uid: 1966 + components: + - pos: 2.5,8.5 + parent: 1668 + type: Transform + - uid: 1967 + components: + - pos: 3.5,8.5 + parent: 1668 + type: Transform + - uid: 1968 + components: + - pos: 2.5,10.5 + parent: 1668 + type: Transform + - uid: 1969 + components: + - pos: 3.5,10.5 + parent: 1668 + type: Transform + - uid: 1970 + components: + - pos: 2.5,12.5 + parent: 1668 + type: Transform + - uid: 1971 + components: + - pos: 3.5,12.5 + parent: 1668 + type: Transform + - uid: 1972 + components: + - pos: 2.5,14.5 + parent: 1668 + type: Transform + - uid: 1973 + components: + - pos: 3.5,14.5 + parent: 1668 + type: Transform + - uid: 1974 + components: + - pos: 2.5,16.5 + parent: 1668 + type: Transform + - uid: 1975 + components: + - pos: 3.5,16.5 + parent: 1668 + type: Transform + - uid: 1976 + components: + - pos: 2.5,17.5 + parent: 1668 + type: Transform + - uid: 1977 + components: + - pos: -3.5,17.5 + parent: 1668 + type: Transform + - uid: 1978 + components: + - pos: 0.5,15.5 + parent: 1668 + type: Transform + - uid: 1979 + components: + - pos: -0.5,15.5 + parent: 1668 + type: Transform + - uid: 1980 + components: + - pos: -1.5,15.5 + parent: 1668 + type: Transform + - uid: 1981 + components: + - pos: -2.5,15.5 + parent: 1668 + type: Transform + - uid: 1982 + components: + - pos: -2.5,14.5 + parent: 1668 + type: Transform + - uid: 1983 + components: + - pos: -2.5,13.5 + parent: 1668 + type: Transform + - uid: 1984 + components: + - pos: -2.5,12.5 + parent: 1668 + type: Transform + - uid: 1985 + components: + - pos: -2.5,11.5 + parent: 1668 + type: Transform + - uid: 1986 + components: + - pos: -2.5,10.5 + parent: 1668 + type: Transform + - uid: 1987 + components: + - pos: -2.5,9.5 + parent: 1668 + type: Transform + - uid: 1988 + components: + - pos: -2.5,8.5 + parent: 1668 + type: Transform + - uid: 1989 + components: + - pos: -1.5,8.5 + parent: 1668 + type: Transform + - uid: 1990 + components: + - pos: -1.5,7.5 + parent: 1668 + type: Transform + - uid: 1991 + components: + - pos: 0.5,8.5 + parent: 1668 + type: Transform + - uid: 1992 + components: + - pos: 0.5,7.5 + parent: 1668 + type: Transform + - uid: 1993 + components: + - pos: -0.5,8.5 + parent: 1668 + type: Transform + - uid: 2020 + components: + - pos: -1.5,22.5 + parent: 1668 + type: Transform + - uid: 2021 + components: + - pos: -1.5,23.5 + parent: 1668 + type: Transform + - uid: 2022 + components: + - pos: -1.5,24.5 + parent: 1668 + type: Transform + - uid: 2023 + components: + - pos: -2.5,24.5 + parent: 1668 + type: Transform + - uid: 2024 + components: + - pos: -1.5,21.5 + parent: 1668 + type: Transform + - uid: 2025 + components: + - pos: -1.5,20.5 + parent: 1668 + type: Transform + - uid: 2026 + components: + - pos: -0.5,20.5 + parent: 1668 + type: Transform + - uid: 2027 + components: + - pos: -0.5,19.5 + parent: 1668 + type: Transform + - uid: 2028 + components: + - pos: -0.5,18.5 + parent: 1668 + type: Transform + - uid: 2029 + components: + - pos: 0.5,20.5 + parent: 1668 + type: Transform + - uid: 2030 + components: + - pos: 1.5,20.5 + parent: 1668 + type: Transform + - uid: 2031 + components: + - pos: -2.5,21.5 + parent: 1668 + type: Transform + - uid: 2057 + components: + - pos: -3.5,5.5 + parent: 1668 + type: Transform + - uid: 2567 + components: + - pos: 17.5,17.5 + parent: 1668 + type: Transform + - uid: 2568 + components: + - pos: 17.5,16.5 + parent: 1668 + type: Transform + - uid: 2569 + components: + - pos: 17.5,15.5 + parent: 1668 + type: Transform + - uid: 2570 + components: + - pos: 17.5,14.5 + parent: 1668 + type: Transform + - uid: 2571 + components: + - pos: 17.5,13.5 + parent: 1668 + type: Transform + - uid: 2572 + components: + - pos: 17.5,12.5 + parent: 1668 + type: Transform + - uid: 2573 + components: + - pos: 17.5,11.5 + parent: 1668 + type: Transform + - uid: 2574 + components: + - pos: 16.5,12.5 + parent: 1668 + type: Transform + - uid: 2575 + components: + - pos: 15.5,12.5 + parent: 1668 + type: Transform + - uid: 2576 + components: + - pos: 16.5,14.5 + parent: 1668 + type: Transform + - uid: 2577 + components: + - pos: 15.5,14.5 + parent: 1668 + type: Transform + - uid: 2578 + components: + - pos: 17.5,10.5 + parent: 1668 + type: Transform + - uid: 2579 + components: + - pos: 16.5,10.5 + parent: 1668 + type: Transform + - uid: 2580 + components: + - pos: 15.5,10.5 + parent: 1668 + type: Transform + - uid: 2581 + components: + - pos: 18.5,11.5 + parent: 1668 + type: Transform + - uid: 2582 + components: + - pos: 19.5,11.5 + parent: 1668 + type: Transform + - uid: 2583 + components: + - pos: 20.5,11.5 + parent: 1668 + type: Transform + - uid: 2584 + components: + - pos: 18.5,14.5 + parent: 1668 + type: Transform + - uid: 2585 + components: + - pos: 19.5,14.5 + parent: 1668 + type: Transform + - uid: 2586 + components: + - pos: 20.5,14.5 + parent: 1668 + type: Transform + - uid: 2587 + components: + - pos: 19.5,15.5 + parent: 1668 + type: Transform + - uid: 2588 + components: + - pos: 21.5,20.5 + parent: 1668 + type: Transform + - uid: 2589 + components: + - pos: 20.5,20.5 + parent: 1668 + type: Transform + - uid: 2590 + components: + - pos: 19.5,20.5 + parent: 1668 + type: Transform + - uid: 2591 + components: + - pos: 18.5,20.5 + parent: 1668 + type: Transform + - uid: 2592 + components: + - pos: 19.5,19.5 + parent: 1668 + type: Transform + - uid: 2593 + components: + - pos: 19.5,18.5 + parent: 1668 + type: Transform + - uid: 2594 + components: + - pos: 19.5,21.5 + parent: 1668 + type: Transform + - uid: 2595 + components: + - pos: 19.5,22.5 + parent: 1668 + type: Transform + - uid: 2596 + components: + - pos: 21.5,21.5 + parent: 1668 + type: Transform + - uid: 2597 + components: + - pos: 22.5,21.5 + parent: 1668 + type: Transform + - uid: 2598 + components: + - pos: 23.5,21.5 + parent: 1668 + type: Transform + - uid: 2599 + components: + - pos: 23.5,22.5 + parent: 1668 + type: Transform + - uid: 2600 + components: + - pos: 24.5,22.5 + parent: 1668 + type: Transform + - uid: 2601 + components: + - pos: 25.5,22.5 + parent: 1668 + type: Transform + - uid: 2602 + components: + - pos: 26.5,22.5 + parent: 1668 + type: Transform + - uid: 2603 + components: + - pos: 27.5,22.5 + parent: 1668 + type: Transform + - uid: 2604 + components: + - pos: 28.5,22.5 + parent: 1668 + type: Transform + - uid: 2605 + components: + - pos: 29.5,22.5 + parent: 1668 + type: Transform + - uid: 2606 + components: + - pos: 30.5,22.5 + parent: 1668 + type: Transform + - uid: 2607 + components: + - pos: 31.5,22.5 + parent: 1668 + type: Transform + - uid: 2608 + components: + - pos: 32.5,22.5 + parent: 1668 + type: Transform + - uid: 2609 + components: + - pos: 33.5,22.5 + parent: 1668 + type: Transform + - uid: 2610 + components: + - pos: 34.5,22.5 + parent: 1668 + type: Transform + - uid: 2611 + components: + - pos: 33.5,21.5 + parent: 1668 + type: Transform + - uid: 2612 + components: + - pos: 28.5,21.5 + parent: 1668 + type: Transform + - uid: 2613 + components: + - pos: 20.5,21.5 + parent: 1668 + type: Transform + - uid: 2614 + components: + - pos: 23.5,20.5 + parent: 1668 + type: Transform + - uid: 2615 + components: + - pos: 23.5,19.5 + parent: 1668 + type: Transform + - uid: 2616 + components: + - pos: 23.5,18.5 + parent: 1668 + type: Transform + - uid: 2617 + components: + - pos: 23.5,17.5 + parent: 1668 + type: Transform + - uid: 2618 + components: + - pos: 23.5,16.5 + parent: 1668 + type: Transform + - uid: 2619 + components: + - pos: 23.5,15.5 + parent: 1668 + type: Transform + - uid: 2620 + components: + - pos: 24.5,17.5 + parent: 1668 + type: Transform + - uid: 2621 + components: + - pos: 24.5,16.5 + parent: 1668 + type: Transform + - uid: 2622 + components: + - pos: 24.5,15.5 + parent: 1668 + type: Transform + - uid: 2623 + components: + - pos: 24.5,19.5 + parent: 1668 + type: Transform + - uid: 2624 + components: + - pos: 24.5,14.5 + parent: 1668 + type: Transform + - uid: 2625 + components: + - pos: 24.5,13.5 + parent: 1668 + type: Transform + - uid: 2626 + components: + - pos: 25.5,13.5 + parent: 1668 + type: Transform + - uid: 2627 + components: + - pos: 26.5,13.5 + parent: 1668 + type: Transform + - uid: 2628 + components: + - pos: 27.5,13.5 + parent: 1668 + type: Transform + - uid: 2629 + components: + - pos: 28.5,13.5 + parent: 1668 + type: Transform + - uid: 2630 + components: + - pos: 29.5,13.5 + parent: 1668 + type: Transform + - uid: 2631 + components: + - pos: 30.5,13.5 + parent: 1668 + type: Transform + - uid: 2632 + components: + - pos: 31.5,13.5 + parent: 1668 + type: Transform + - uid: 2633 + components: + - pos: 32.5,13.5 + parent: 1668 + type: Transform + - uid: 2634 + components: + - pos: 33.5,13.5 + parent: 1668 + type: Transform + - uid: 2635 + components: + - pos: 33.5,14.5 + parent: 1668 + type: Transform + - uid: 2636 + components: + - pos: 31.5,14.5 + parent: 1668 + type: Transform + - uid: 2637 + components: + - pos: 30.5,14.5 + parent: 1668 + type: Transform + - uid: 2638 + components: + - pos: 29.5,14.5 + parent: 1668 + type: Transform + - uid: 2639 + components: + - pos: 27.5,14.5 + parent: 1668 + type: Transform + - uid: 2640 + components: + - pos: 26.5,14.5 + parent: 1668 + type: Transform + - uid: 2641 + components: + - pos: 25.5,14.5 + parent: 1668 + type: Transform + - uid: 2642 + components: + - pos: 28.5,14.5 + parent: 1668 + type: Transform + - uid: 2643 + components: + - pos: 28.5,15.5 + parent: 1668 + type: Transform + - uid: 2644 + components: + - pos: 28.5,16.5 + parent: 1668 + type: Transform + - uid: 2645 + components: + - pos: 28.5,17.5 + parent: 1668 + type: Transform + - uid: 2646 + components: + - pos: 28.5,18.5 + parent: 1668 + type: Transform + - uid: 2647 + components: + - pos: 29.5,18.5 + parent: 1668 + type: Transform + - uid: 2648 + components: + - pos: 30.5,18.5 + parent: 1668 + type: Transform + - uid: 2649 + components: + - pos: 31.5,18.5 + parent: 1668 + type: Transform + - uid: 2650 + components: + - pos: 27.5,18.5 + parent: 1668 + type: Transform + - uid: 2651 + components: + - pos: 26.5,18.5 + parent: 1668 + type: Transform + - uid: 2652 + components: + - pos: 25.5,18.5 + parent: 1668 + type: Transform + - uid: 2653 + components: + - pos: 27.5,15.5 + parent: 1668 + type: Transform + - uid: 2654 + components: + - pos: 26.5,15.5 + parent: 1668 + type: Transform + - uid: 2655 + components: + - pos: 29.5,15.5 + parent: 1668 + type: Transform + - uid: 2656 + components: + - pos: 30.5,15.5 + parent: 1668 + type: Transform + - uid: 2657 + components: + - pos: 24.5,12.5 + parent: 1668 + type: Transform + - uid: 2658 + components: + - pos: 23.5,12.5 + parent: 1668 + type: Transform + - uid: 2659 + components: + - pos: 22.5,12.5 + parent: 1668 + type: Transform + - uid: 2660 + components: + - pos: 33.5,12.5 + parent: 1668 + type: Transform + - uid: 2661 + components: + - pos: 34.5,12.5 + parent: 1668 + type: Transform + - uid: 2662 + components: + - pos: 33.5,11.5 + parent: 1668 + type: Transform + - uid: 2663 + components: + - pos: 32.5,11.5 + parent: 1668 + type: Transform + - uid: 2664 + components: + - pos: 31.5,11.5 + parent: 1668 + type: Transform + - uid: 2665 + components: + - pos: 30.5,11.5 + parent: 1668 + type: Transform + - uid: 2666 + components: + - pos: 29.5,11.5 + parent: 1668 + type: Transform + - uid: 2667 + components: + - pos: 28.5,11.5 + parent: 1668 + type: Transform + - uid: 2668 + components: + - pos: 27.5,11.5 + parent: 1668 + type: Transform + - uid: 2669 + components: + - pos: 26.5,11.5 + parent: 1668 + type: Transform + - uid: 2670 + components: + - pos: 25.5,11.5 + parent: 1668 + type: Transform + - uid: 2671 + components: + - pos: 24.5,11.5 + parent: 1668 + type: Transform + - uid: 2672 + components: + - pos: 23.5,11.5 + parent: 1668 + type: Transform + - uid: 2673 + components: + - pos: 35.5,19.5 + parent: 1668 + type: Transform + - uid: 2674 + components: + - pos: 34.5,19.5 + parent: 1668 + type: Transform + - uid: 2675 + components: + - pos: 33.5,19.5 + parent: 1668 + type: Transform + - uid: 2676 + components: + - pos: 33.5,18.5 + parent: 1668 + type: Transform + - uid: 2677 + components: + - pos: 33.5,17.5 + parent: 1668 + type: Transform + - uid: 2678 + components: + - pos: 33.5,16.5 + parent: 1668 + type: Transform + - uid: 2679 + components: + - pos: 7.5,16.5 + parent: 1668 + type: Transform + - uid: 2680 + components: + - pos: 7.5,15.5 + parent: 1668 + type: Transform + - uid: 2681 + components: + - pos: 7.5,14.5 + parent: 1668 + type: Transform + - uid: 2682 + components: + - pos: 7.5,13.5 + parent: 1668 + type: Transform + - uid: 2683 + components: + - pos: 7.5,12.5 + parent: 1668 + type: Transform + - uid: 2684 + components: + - pos: 7.5,11.5 + parent: 1668 + type: Transform + - uid: 2685 + components: + - pos: 6.5,12.5 + parent: 1668 + type: Transform + - uid: 2686 + components: + - pos: 5.5,12.5 + parent: 1668 + type: Transform + - uid: 2687 + components: + - pos: 6.5,14.5 + parent: 1668 + type: Transform + - uid: 2688 + components: + - pos: 5.5,14.5 + parent: 1668 + type: Transform + - uid: 2689 + components: + - pos: 8.5,14.5 + parent: 1668 + type: Transform + - uid: 2690 + components: + - pos: 9.5,14.5 + parent: 1668 + type: Transform + - uid: 2691 + components: + - pos: 10.5,14.5 + parent: 1668 + type: Transform + - uid: 2692 + components: + - pos: 11.5,14.5 + parent: 1668 + type: Transform + - uid: 2693 + components: + - pos: 12.5,14.5 + parent: 1668 + type: Transform + - uid: 2694 + components: + - pos: 8.5,12.5 + parent: 1668 + type: Transform + - uid: 2695 + components: + - pos: 9.5,12.5 + parent: 1668 + type: Transform + - uid: 2696 + components: + - pos: 10.5,12.5 + parent: 1668 + type: Transform + - uid: 2697 + components: + - pos: 11.5,12.5 + parent: 1668 + type: Transform + - uid: 2698 + components: + - pos: 12.5,12.5 + parent: 1668 + type: Transform + - uid: 2699 + components: + - pos: 13.5,14.5 + parent: 1668 + type: Transform + - uid: 2700 + components: + - pos: 13.5,15.5 + parent: 1668 + type: Transform + - uid: 2701 + components: + - pos: 14.5,15.5 + parent: 1668 + type: Transform + - uid: 2702 + components: + - pos: 14.5,16.5 + parent: 1668 + type: Transform + - uid: 2703 + components: + - pos: 14.5,17.5 + parent: 1668 + type: Transform + - uid: 2704 + components: + - pos: 14.5,18.5 + parent: 1668 + type: Transform + - uid: 2705 + components: + - pos: 15.5,18.5 + parent: 1668 + type: Transform + - uid: 2706 + components: + - pos: 13.5,13.5 + parent: 1668 + type: Transform + - uid: 2707 + components: + - pos: 13.5,12.5 + parent: 1668 + type: Transform + - uid: 2708 + components: + - pos: 13.5,11.5 + parent: 1668 + type: Transform + - uid: 2709 + components: + - pos: 10.5,13.5 + parent: 1668 + type: Transform + - uid: 2711 + components: + - pos: 10.5,11.5 + parent: 1668 + type: Transform + - uid: 2743 + components: + - pos: 10.5,22.5 + parent: 1668 + type: Transform + - uid: 3033 + components: + - pos: 7.5,30.5 + parent: 1668 + type: Transform + - uid: 3034 + components: + - pos: 8.5,30.5 + parent: 1668 + type: Transform + - uid: 3035 + components: + - pos: 9.5,30.5 + parent: 1668 + type: Transform + - uid: 3036 + components: + - pos: 9.5,31.5 + parent: 1668 + type: Transform + - uid: 3037 + components: + - pos: 10.5,31.5 + parent: 1668 + type: Transform + - uid: 3038 + components: + - pos: 11.5,31.5 + parent: 1668 + type: Transform + - uid: 3039 + components: + - pos: 12.5,31.5 + parent: 1668 + type: Transform + - uid: 3040 + components: + - pos: 13.5,31.5 + parent: 1668 + type: Transform + - uid: 3041 + components: + - pos: 14.5,31.5 + parent: 1668 + type: Transform + - uid: 3042 + components: + - pos: 15.5,31.5 + parent: 1668 + type: Transform + - uid: 3043 + components: + - pos: 8.5,31.5 + parent: 1668 + type: Transform + - uid: 3044 + components: + - pos: 7.5,31.5 + parent: 1668 + type: Transform + - uid: 3045 + components: + - pos: 6.5,31.5 + parent: 1668 + type: Transform + - uid: 3046 + components: + - pos: 5.5,31.5 + parent: 1668 + type: Transform + - uid: 3047 + components: + - pos: 4.5,31.5 + parent: 1668 + type: Transform + - uid: 3048 + components: + - pos: 3.5,31.5 + parent: 1668 + type: Transform + - uid: 3049 + components: + - pos: 9.5,29.5 + parent: 1668 + type: Transform + - uid: 3050 + components: + - pos: 9.5,28.5 + parent: 1668 + type: Transform + - uid: 3051 + components: + - pos: 8.5,29.5 + parent: 1668 + type: Transform + - uid: 3052 + components: + - pos: 7.5,29.5 + parent: 1668 + type: Transform + - uid: 3053 + components: + - pos: 10.5,29.5 + parent: 1668 + type: Transform + - uid: 3054 + components: + - pos: 11.5,29.5 + parent: 1668 + type: Transform + - uid: 3055 + components: + - pos: 9.5,26.5 + parent: 1668 + type: Transform + - uid: 3056 + components: + - pos: 9.5,25.5 + parent: 1668 + type: Transform + - uid: 3057 + components: + - pos: 8.5,25.5 + parent: 1668 + type: Transform + - uid: 3058 + components: + - pos: 8.5,26.5 + parent: 1668 + type: Transform + - uid: 3059 + components: + - pos: 7.5,26.5 + parent: 1668 + type: Transform + - uid: 3060 + components: + - pos: 7.5,27.5 + parent: 1668 + type: Transform + - uid: 3061 + components: + - pos: 10.5,25.5 + parent: 1668 + type: Transform + - uid: 3062 + components: + - pos: 10.5,26.5 + parent: 1668 + type: Transform + - uid: 3063 + components: + - pos: 11.5,26.5 + parent: 1668 + type: Transform + - uid: 3064 + components: + - pos: 11.5,27.5 + parent: 1668 + type: Transform + - uid: 3065 + components: + - pos: 9.5,24.5 + parent: 1668 + type: Transform + - uid: 3066 + components: + - pos: 9.5,23.5 + parent: 1668 + type: Transform + - uid: 3067 + components: + - pos: 9.5,22.5 + parent: 1668 + type: Transform + - uid: 3068 + components: + - pos: 8.5,22.5 + parent: 1668 + type: Transform + - uid: 3069 + components: + - pos: 7.5,22.5 + parent: 1668 + type: Transform + - uid: 3070 + components: + - pos: 7.5,21.5 + parent: 1668 + type: Transform + - uid: 3071 + components: + - pos: 7.5,18.5 + parent: 1668 + type: Transform + - uid: 3072 + components: + - pos: 6.5,18.5 + parent: 1668 + type: Transform + - uid: 3073 + components: + - pos: 5.5,18.5 + parent: 1668 + type: Transform + - uid: 3074 + components: + - pos: 8.5,18.5 + parent: 1668 + type: Transform + - uid: 3075 + components: + - pos: 9.5,18.5 + parent: 1668 + type: Transform + - uid: 3076 + components: + - pos: 10.5,18.5 + parent: 1668 + type: Transform + - uid: 3077 + components: + - pos: 10.5,17.5 + parent: 1668 + type: Transform + - uid: 3078 + components: + - pos: 10.5,16.5 + parent: 1668 + type: Transform + - uid: 3080 + components: + - pos: 8.5,16.5 + parent: 1668 + type: Transform + - uid: 3081 + components: + - pos: 8.5,20.5 + parent: 1668 + type: Transform + - uid: 3082 + components: + - pos: 8.5,19.5 + parent: 1668 + type: Transform + - uid: 3083 + components: + - pos: 11.5,22.5 + parent: 1668 + type: Transform + - uid: 3084 + components: + - pos: 12.5,22.5 + parent: 1668 + type: Transform + - uid: 3085 + components: + - pos: 13.5,22.5 + parent: 1668 + type: Transform + - uid: 3086 + components: + - pos: 14.5,22.5 + parent: 1668 + type: Transform + - uid: 3087 + components: + - pos: 15.5,22.5 + parent: 1668 + type: Transform + - uid: 3088 + components: + - pos: 11.5,25.5 + parent: 1668 + type: Transform + - uid: 3089 + components: + - pos: 12.5,25.5 + parent: 1668 + type: Transform + - uid: 3090 + components: + - pos: 13.5,25.5 + parent: 1668 + type: Transform + - uid: 3091 + components: + - pos: 14.5,25.5 + parent: 1668 + type: Transform + - uid: 3092 + components: + - pos: 15.5,25.5 + parent: 1668 + type: Transform + - uid: 3093 + components: + - pos: 13.5,26.5 + parent: 1668 + type: Transform + - uid: 3094 + components: + - pos: 13.5,27.5 + parent: 1668 + type: Transform + - uid: 3095 + components: + - pos: 13.5,28.5 + parent: 1668 + type: Transform + - uid: 3096 + components: + - pos: 14.5,28.5 + parent: 1668 + type: Transform + - uid: 3097 + components: + - pos: 15.5,28.5 + parent: 1668 + type: Transform + - uid: 3098 + components: + - pos: 7.5,25.5 + parent: 1668 + type: Transform + - uid: 3099 + components: + - pos: 6.5,25.5 + parent: 1668 + type: Transform + - uid: 3100 + components: + - pos: 5.5,25.5 + parent: 1668 + type: Transform + - uid: 3101 + components: + - pos: 4.5,25.5 + parent: 1668 + type: Transform + - uid: 3102 + components: + - pos: 3.5,25.5 + parent: 1668 + type: Transform + - uid: 3103 + components: + - pos: 5.5,26.5 + parent: 1668 + type: Transform + - uid: 3104 + components: + - pos: 5.5,27.5 + parent: 1668 + type: Transform + - uid: 3105 + components: + - pos: 5.5,28.5 + parent: 1668 + type: Transform + - uid: 3106 + components: + - pos: 4.5,28.5 + parent: 1668 + type: Transform + - uid: 3107 + components: + - pos: 3.5,28.5 + parent: 1668 + type: Transform + - uid: 3108 + components: + - pos: 4.5,24.5 + parent: 1668 + type: Transform + - uid: 3109 + components: + - pos: 4.5,27.5 + parent: 1668 + type: Transform + - uid: 3110 + components: + - pos: 14.5,27.5 + parent: 1668 + type: Transform + - uid: 3111 + components: + - pos: 14.5,24.5 + parent: 1668 + type: Transform + - uid: 3112 + components: + - pos: 14.5,21.5 + parent: 1668 + type: Transform + - uid: 3113 + components: + - pos: 6.5,30.5 + parent: 1668 + type: Transform + - uid: 3114 + components: + - pos: 5.5,30.5 + parent: 1668 + type: Transform + - uid: 3115 + components: + - pos: 12.5,30.5 + parent: 1668 + type: Transform + - uid: 3116 + components: + - pos: 13.5,30.5 + parent: 1668 + type: Transform + - uid: 3467 + components: + - pos: -22.5,12.5 + parent: 1668 + type: Transform + - uid: 3468 + components: + - pos: -22.5,13.5 + parent: 1668 + type: Transform + - uid: 3469 + components: + - pos: -21.5,12.5 + parent: 1668 + type: Transform + - uid: 3470 + components: + - pos: -21.5,13.5 + parent: 1668 + type: Transform + - uid: 3471 + components: + - pos: -21.5,14.5 + parent: 1668 + type: Transform + - uid: 3472 + components: + - pos: -21.5,11.5 + parent: 1668 + type: Transform + - uid: 3473 + components: + - pos: -21.5,10.5 + parent: 1668 + type: Transform + - uid: 3474 + components: + - pos: -21.5,9.5 + parent: 1668 + type: Transform + - uid: 3475 + components: + - pos: -20.5,11.5 + parent: 1668 + type: Transform + - uid: 3476 + components: + - pos: -19.5,11.5 + parent: 1668 + type: Transform + - uid: 3477 + components: + - pos: -22.5,11.5 + parent: 1668 + type: Transform + - uid: 3478 + components: + - pos: -23.5,11.5 + parent: 1668 + type: Transform + - uid: 3479 + components: + - pos: -24.5,11.5 + parent: 1668 + type: Transform + - uid: 3480 + components: + - pos: -25.5,11.5 + parent: 1668 + type: Transform + - uid: 3481 + components: + - pos: -26.5,11.5 + parent: 1668 + type: Transform + - uid: 3482 + components: + - pos: -27.5,11.5 + parent: 1668 + type: Transform + - uid: 3483 + components: + - pos: -27.5,12.5 + parent: 1668 + type: Transform + - uid: 3484 + components: + - pos: -25.5,10.5 + parent: 1668 + type: Transform + - uid: 3485 + components: + - pos: -25.5,9.5 + parent: 1668 + type: Transform + - uid: 3486 + components: + - pos: -26.5,9.5 + parent: 1668 + type: Transform + - uid: 3487 + components: + - pos: -27.5,9.5 + parent: 1668 + type: Transform + - uid: 3488 + components: + - pos: -27.5,8.5 + parent: 1668 + type: Transform + - uid: 3489 + components: + - pos: -22.5,7.5 + parent: 1668 + type: Transform + - uid: 3490 + components: + - pos: -22.5,6.5 + parent: 1668 + type: Transform + - uid: 3491 + components: + - pos: -22.5,5.5 + parent: 1668 + type: Transform + - uid: 3492 + components: + - pos: -22.5,4.5 + parent: 1668 + type: Transform + - uid: 3493 + components: + - pos: -22.5,3.5 + parent: 1668 + type: Transform + - uid: 3494 + components: + - pos: -22.5,2.5 + parent: 1668 + type: Transform + - uid: 3495 + components: + - pos: -21.5,3.5 + parent: 1668 + type: Transform + - uid: 3496 + components: + - pos: -20.5,3.5 + parent: 1668 + type: Transform + - uid: 3497 + components: + - pos: -19.5,3.5 + parent: 1668 + type: Transform + - uid: 3498 + components: + - pos: -18.5,3.5 + parent: 1668 + type: Transform + - uid: 3499 + components: + - pos: -21.5,5.5 + parent: 1668 + type: Transform + - uid: 3500 + components: + - pos: -20.5,5.5 + parent: 1668 + type: Transform + - uid: 3501 + components: + - pos: -19.5,5.5 + parent: 1668 + type: Transform + - uid: 3502 + components: + - pos: -23.5,5.5 + parent: 1668 + type: Transform + - uid: 3503 + components: + - pos: -23.5,3.5 + parent: 1668 + type: Transform + - uid: 3504 + components: + - pos: -13.5,6.5 + parent: 1668 + type: Transform + - uid: 3505 + components: + - pos: -14.5,6.5 + parent: 1668 + type: Transform + - uid: 3506 + components: + - pos: -14.5,5.5 + parent: 1668 + type: Transform + - uid: 3507 + components: + - pos: -12.5,6.5 + parent: 1668 + type: Transform + - uid: 3508 + components: + - pos: -12.5,5.5 + parent: 1668 + type: Transform + - uid: 3509 + components: + - pos: -11.5,5.5 + parent: 1668 + type: Transform + - uid: 3510 + components: + - pos: -15.5,5.5 + parent: 1668 + type: Transform + - uid: 3511 + components: + - pos: -16.5,5.5 + parent: 1668 + type: Transform + - uid: 3512 + components: + - pos: -10.5,5.5 + parent: 1668 + type: Transform + - uid: 3513 + components: + - pos: -16.5,13.5 + parent: 1668 + type: Transform + - uid: 3514 + components: + - pos: -16.5,12.5 + parent: 1668 + type: Transform + - uid: 3515 + components: + - pos: -15.5,12.5 + parent: 1668 + type: Transform + - uid: 3516 + components: + - pos: -15.5,11.5 + parent: 1668 + type: Transform + - uid: 3517 + components: + - pos: -15.5,10.5 + parent: 1668 + type: Transform + - uid: 3518 + components: + - pos: -15.5,9.5 + parent: 1668 + type: Transform + - uid: 3519 + components: + - pos: -20.5,9.5 + parent: 1668 + type: Transform + - uid: 3520 + components: + - pos: -19.5,9.5 + parent: 1668 + type: Transform + - uid: 3521 + components: + - pos: -22.5,9.5 + parent: 1668 + type: Transform + - uid: 3522 + components: + - pos: -23.5,9.5 + parent: 1668 + type: Transform + - uid: 3991 + components: + - pos: -31.5,2.5 + parent: 1668 + type: Transform + - uid: 3992 + components: + - pos: -31.5,1.5 + parent: 1668 + type: Transform + - uid: 3993 + components: + - pos: -31.5,0.5 + parent: 1668 + type: Transform + - uid: 3994 + components: + - pos: -31.5,-0.5 + parent: 1668 + type: Transform + - uid: 3995 + components: + - pos: -31.5,-1.5 + parent: 1668 + type: Transform + - uid: 3996 + components: + - pos: -31.5,-2.5 + parent: 1668 + type: Transform + - uid: 3997 + components: + - pos: -32.5,-2.5 + parent: 1668 + type: Transform + - uid: 3998 + components: + - pos: -33.5,-2.5 + parent: 1668 + type: Transform + - uid: 3999 + components: + - pos: -34.5,-2.5 + parent: 1668 + type: Transform + - uid: 4000 + components: + - pos: -32.5,-0.5 + parent: 1668 + type: Transform + - uid: 4001 + components: + - pos: -33.5,-0.5 + parent: 1668 + type: Transform + - uid: 4002 + components: + - pos: -34.5,-0.5 + parent: 1668 + type: Transform + - uid: 4003 + components: + - pos: -32.5,1.5 + parent: 1668 + type: Transform + - uid: 4004 + components: + - pos: -33.5,1.5 + parent: 1668 + type: Transform + - uid: 4005 + components: + - pos: -34.5,1.5 + parent: 1668 + type: Transform + - uid: 4006 + components: + - pos: -30.5,-0.5 + parent: 1668 + type: Transform + - uid: 4007 + components: + - pos: -29.5,-0.5 + parent: 1668 + type: Transform + - uid: 4008 + components: + - pos: -28.5,-0.5 + parent: 1668 + type: Transform + - uid: 4009 + components: + - pos: -26.5,-0.5 + parent: 1668 + type: Transform + - uid: 4010 + components: + - pos: -25.5,-0.5 + parent: 1668 + type: Transform + - uid: 4011 + components: + - pos: -24.5,-0.5 + parent: 1668 + type: Transform + - uid: 4012 + components: + - pos: -23.5,-0.5 + parent: 1668 + type: Transform + - uid: 4013 + components: + - pos: -22.5,-0.5 + parent: 1668 + type: Transform + - uid: 4014 + components: + - pos: -21.5,-0.5 + parent: 1668 + type: Transform + - uid: 4015 + components: + - pos: -20.5,-0.5 + parent: 1668 + type: Transform + - uid: 4016 + components: + - pos: -19.5,-0.5 + parent: 1668 + type: Transform + - uid: 4017 + components: + - pos: -18.5,-0.5 + parent: 1668 + type: Transform + - uid: 4018 + components: + - pos: -17.5,-0.5 + parent: 1668 + type: Transform + - uid: 4019 + components: + - pos: -16.5,-0.5 + parent: 1668 + type: Transform + - uid: 4020 + components: + - pos: -15.5,-0.5 + parent: 1668 + type: Transform + - uid: 4021 + components: + - pos: -14.5,-0.5 + parent: 1668 + type: Transform + - uid: 4022 + components: + - pos: -13.5,-0.5 + parent: 1668 + type: Transform + - uid: 4023 + components: + - pos: -12.5,-0.5 + parent: 1668 + type: Transform + - uid: 4024 + components: + - pos: -11.5,-0.5 + parent: 1668 + type: Transform + - uid: 4025 + components: + - pos: -10.5,-0.5 + parent: 1668 + type: Transform + - uid: 4026 + components: + - pos: -9.5,-0.5 + parent: 1668 + type: Transform + - uid: 4027 + components: + - pos: -14.5,0.5 + parent: 1668 + type: Transform + - uid: 4028 + components: + - pos: -14.5,1.5 + parent: 1668 + type: Transform + - uid: 4029 + components: + - pos: -15.5,1.5 + parent: 1668 + type: Transform + - uid: 4030 + components: + - pos: -16.5,1.5 + parent: 1668 + type: Transform + - uid: 4031 + components: + - pos: -12.5,0.5 + parent: 1668 + type: Transform + - uid: 4032 + components: + - pos: -12.5,1.5 + parent: 1668 + type: Transform + - uid: 4033 + components: + - pos: -11.5,1.5 + parent: 1668 + type: Transform + - uid: 4034 + components: + - pos: -10.5,1.5 + parent: 1668 + type: Transform + - uid: 4035 + components: + - pos: -13.5,1.5 + parent: 1668 + type: Transform + - uid: 4036 + components: + - pos: -13.5,2.5 + parent: 1668 + type: Transform + - uid: 4037 + components: + - pos: -17.5,0.5 + parent: 1668 + type: Transform + - uid: 4038 + components: + - pos: -17.5,1.5 + parent: 1668 + type: Transform + - uid: 4039 + components: + - pos: -21.5,-2.5 + parent: 1668 + type: Transform + - uid: 4040 + components: + - pos: -21.5,-3.5 + parent: 1668 + type: Transform + - uid: 4041 + components: + - pos: -21.5,-4.5 + parent: 1668 + type: Transform + - uid: 4042 + components: + - pos: -21.5,-5.5 + parent: 1668 + type: Transform + - uid: 4043 + components: + - pos: -21.5,-6.5 + parent: 1668 + type: Transform + - uid: 4044 + components: + - pos: -21.5,-7.5 + parent: 1668 + type: Transform + - uid: 4045 + components: + - pos: -21.5,-8.5 + parent: 1668 + type: Transform + - uid: 4046 + components: + - pos: -22.5,-5.5 + parent: 1668 + type: Transform + - uid: 4047 + components: + - pos: -23.5,-5.5 + parent: 1668 + type: Transform + - uid: 4048 + components: + - pos: -24.5,-5.5 + parent: 1668 + type: Transform + - uid: 4049 + components: + - pos: -25.5,-5.5 + parent: 1668 + type: Transform + - uid: 4050 + components: + - pos: -26.5,-5.5 + parent: 1668 + type: Transform + - uid: 4051 + components: + - pos: -26.5,-6.5 + parent: 1668 + type: Transform + - uid: 4052 + components: + - pos: -26.5,-7.5 + parent: 1668 + type: Transform + - uid: 4053 + components: + - pos: -25.5,-7.5 + parent: 1668 + type: Transform + - uid: 4054 + components: + - pos: -24.5,-7.5 + parent: 1668 + type: Transform + - uid: 4055 + components: + - pos: -23.5,-7.5 + parent: 1668 + type: Transform + - uid: 4056 + components: + - pos: -22.5,-7.5 + parent: 1668 + type: Transform + - uid: 4057 + components: + - pos: -20.5,-5.5 + parent: 1668 + type: Transform + - uid: 4058 + components: + - pos: -19.5,-5.5 + parent: 1668 + type: Transform + - uid: 4059 + components: + - pos: -18.5,-5.5 + parent: 1668 + type: Transform + - uid: 4060 + components: + - pos: -17.5,-5.5 + parent: 1668 + type: Transform + - uid: 4061 + components: + - pos: -17.5,-6.5 + parent: 1668 + type: Transform + - uid: 4062 + components: + - pos: -17.5,-7.5 + parent: 1668 + type: Transform + - uid: 4063 + components: + - pos: -18.5,-7.5 + parent: 1668 + type: Transform + - uid: 4064 + components: + - pos: -19.5,-7.5 + parent: 1668 + type: Transform + - uid: 4065 + components: + - pos: -20.5,-7.5 + parent: 1668 + type: Transform + - uid: 4066 + components: + - pos: -26.5,-4.5 + parent: 1668 + type: Transform + - uid: 4067 + components: + - pos: -26.5,-8.5 + parent: 1668 + type: Transform + - uid: 4068 + components: + - pos: -17.5,-8.5 + parent: 1668 + type: Transform + - uid: 4069 + components: + - pos: -17.5,-4.5 + parent: 1668 + type: Transform + - uid: 4070 + components: + - pos: -13.5,-2.5 + parent: 1668 + type: Transform + - uid: 4071 + components: + - pos: -13.5,-3.5 + parent: 1668 + type: Transform + - uid: 4072 + components: + - pos: -13.5,-4.5 + parent: 1668 + type: Transform + - uid: 4073 + components: + - pos: -13.5,-5.5 + parent: 1668 + type: Transform + - uid: 4074 + components: + - pos: -13.5,-6.5 + parent: 1668 + type: Transform + - uid: 4075 + components: + - pos: -13.5,-7.5 + parent: 1668 + type: Transform + - uid: 4076 + components: + - pos: -13.5,-8.5 + parent: 1668 + type: Transform + - uid: 4077 + components: + - pos: -12.5,-8.5 + parent: 1668 + type: Transform + - uid: 4078 + components: + - pos: -11.5,-8.5 + parent: 1668 + type: Transform + - uid: 4079 + components: + - pos: -12.5,-4.5 + parent: 1668 + type: Transform + - uid: 4080 + components: + - pos: -11.5,-4.5 + parent: 1668 + type: Transform + - uid: 4081 + components: + - pos: -14.5,-4.5 + parent: 1668 + type: Transform + - uid: 4082 + components: + - pos: -14.5,-8.5 + parent: 1668 + type: Transform + - uid: 4083 + components: + - pos: -11.5,-6.5 + parent: 1668 + type: Transform + - uid: 4084 + components: + - pos: -12.5,-6.5 + parent: 1668 + type: Transform + - uid: 4085 + components: + - pos: -31.5,7.5 + parent: 1668 + type: Transform + - uid: 4086 + components: + - pos: -31.5,6.5 + parent: 1668 + type: Transform + - uid: 4087 + components: + - pos: -31.5,5.5 + parent: 1668 + type: Transform + - uid: 4088 + components: + - pos: -31.5,4.5 + parent: 1668 + type: Transform + - uid: 4089 + components: + - pos: -32.5,4.5 + parent: 1668 + type: Transform + - uid: 4090 + components: + - pos: -33.5,4.5 + parent: 1668 + type: Transform + - uid: 4091 + components: + - pos: -34.5,4.5 + parent: 1668 + type: Transform + - uid: 4092 + components: + - pos: -34.5,3.5 + parent: 1668 + type: Transform + - uid: 4093 + components: + - pos: -34.5,5.5 + parent: 1668 + type: Transform + - uid: 4094 + components: + - pos: -34.5,6.5 + parent: 1668 + type: Transform + - uid: 4095 + components: + - pos: -32.5,6.5 + parent: 1668 + type: Transform + - uid: 4096 + components: + - pos: -32.5,7.5 + parent: 1668 + type: Transform + - uid: 4097 + components: + - pos: -33.5,7.5 + parent: 1668 + type: Transform + - uid: 4098 + components: + - pos: -30.5,7.5 + parent: 1668 + type: Transform + - uid: 4099 + components: + - pos: -30.5,4.5 + parent: 1668 + type: Transform + - uid: 4100 + components: + - pos: -29.5,4.5 + parent: 1668 + type: Transform + - uid: 4101 + components: + - pos: -28.5,4.5 + parent: 1668 + type: Transform + - uid: 4102 + components: + - pos: -27.5,4.5 + parent: 1668 + type: Transform + - uid: 4103 + components: + - pos: -27.5,3.5 + parent: 1668 + type: Transform + - uid: 4104 + components: + - pos: -27.5,5.5 + parent: 1668 + type: Transform + - uid: 4481 + components: + - pos: 1.5,-20.5 + parent: 1668 + type: Transform + - uid: 4482 + components: + - pos: 1.5,-19.5 + parent: 1668 + type: Transform + - uid: 4483 + components: + - pos: 1.5,-18.5 + parent: 1668 + type: Transform + - uid: 4484 + components: + - pos: 1.5,-17.5 + parent: 1668 + type: Transform + - uid: 4485 + components: + - pos: 1.5,-16.5 + parent: 1668 + type: Transform + - uid: 4486 + components: + - pos: 0.5,-18.5 + parent: 1668 + type: Transform + - uid: 4487 + components: + - pos: -0.5,-18.5 + parent: 1668 + type: Transform + - uid: 4488 + components: + - pos: -1.5,-18.5 + parent: 1668 + type: Transform + - uid: 4489 + components: + - pos: -2.5,-18.5 + parent: 1668 + type: Transform + - uid: 4490 + components: + - pos: -3.5,-18.5 + parent: 1668 + type: Transform + - uid: 4491 + components: + - pos: -10.5,-24.5 + parent: 1668 + type: Transform + - uid: 4492 + components: + - pos: -5.5,-18.5 + parent: 1668 + type: Transform + - uid: 4493 + components: + - pos: -4.5,-17.5 + parent: 1668 + type: Transform + - uid: 4494 + components: + - pos: -4.5,-16.5 + parent: 1668 + type: Transform + - uid: 4495 + components: + - pos: -8.5,-24.5 + parent: 1668 + type: Transform + - uid: 4496 + components: + - pos: -9.5,-24.5 + parent: 1668 + type: Transform + - uid: 4497 + components: + - pos: 3.5,-17.5 + parent: 1668 + type: Transform + - uid: 4498 + components: + - pos: 3.5,-16.5 + parent: 1668 + type: Transform + - uid: 4500 + components: + - pos: -1.5,-17.5 + parent: 1668 + type: Transform + - uid: 4501 + components: + - pos: -1.5,-16.5 + parent: 1668 + type: Transform + - uid: 4502 + components: + - pos: 2.5,-17.5 + parent: 1668 + type: Transform + - uid: 4503 + components: + - pos: 3.5,-15.5 + parent: 1668 + type: Transform + - uid: 4505 + components: + - pos: -4.5,-15.5 + parent: 1668 + type: Transform + - uid: 4506 + components: + - pos: -3.5,-15.5 + parent: 1668 + type: Transform + - uid: 4507 + components: + - pos: -3.5,-17.5 + parent: 1668 + type: Transform + - uid: 4508 + components: + - pos: -5.5,-17.5 + parent: 1668 + type: Transform + - uid: 4509 + components: + - pos: 4.5,-17.5 + parent: 1668 + type: Transform + - uid: 4510 + components: + - pos: -10.5,-25.5 + parent: 1668 + type: Transform + - uid: 4511 + components: + - pos: -10.5,-26.5 + parent: 1668 + type: Transform + - uid: 4512 + components: + - pos: -10.5,-27.5 + parent: 1668 + type: Transform + - uid: 4513 + components: + - pos: -10.5,-23.5 + parent: 1668 + type: Transform + - uid: 4514 + components: + - pos: -10.5,-22.5 + parent: 1668 + type: Transform + - uid: 4515 + components: + - pos: -9.5,-22.5 + parent: 1668 + type: Transform + - uid: 4516 + components: + - pos: -8.5,-22.5 + parent: 1668 + type: Transform + - uid: 4517 + components: + - pos: 7.5,-24.5 + parent: 1668 + type: Transform + - uid: 4518 + components: + - pos: 8.5,-24.5 + parent: 1668 + type: Transform + - uid: 4519 + components: + - pos: 9.5,-24.5 + parent: 1668 + type: Transform + - uid: 4520 + components: + - pos: 9.5,-25.5 + parent: 1668 + type: Transform + - uid: 4521 + components: + - pos: 9.5,-26.5 + parent: 1668 + type: Transform + - uid: 4522 + components: + - pos: 9.5,-27.5 + parent: 1668 + type: Transform + - uid: 4523 + components: + - pos: 9.5,-23.5 + parent: 1668 + type: Transform + - uid: 4524 + components: + - pos: 9.5,-22.5 + parent: 1668 + type: Transform + - uid: 4525 + components: + - pos: 8.5,-22.5 + parent: 1668 + type: Transform + - uid: 4526 + components: + - pos: 7.5,-22.5 + parent: 1668 + type: Transform + - uid: 4527 + components: + - pos: -2.5,-24.5 + parent: 1668 + type: Transform + - uid: 4528 + components: + - pos: -2.5,-25.5 + parent: 1668 + type: Transform + - uid: 4529 + components: + - pos: -2.5,-26.5 + parent: 1668 + type: Transform + - uid: 4530 + components: + - pos: -2.5,-27.5 + parent: 1668 + type: Transform + - uid: 4531 + components: + - pos: -1.5,-27.5 + parent: 1668 + type: Transform + - uid: 4532 + components: + - pos: -0.5,-27.5 + parent: 1668 + type: Transform + - uid: 4533 + components: + - pos: 0.5,-27.5 + parent: 1668 + type: Transform + - uid: 4534 + components: + - pos: 1.5,-27.5 + parent: 1668 + type: Transform + - uid: 4535 + components: + - pos: 2.5,-27.5 + parent: 1668 + type: Transform + - uid: 4536 + components: + - pos: 3.5,-27.5 + parent: 1668 + type: Transform + - uid: 4537 + components: + - pos: 4.5,-27.5 + parent: 1668 + type: Transform + - uid: 4538 + components: + - pos: 5.5,-27.5 + parent: 1668 + type: Transform + - uid: 4539 + components: + - pos: -4.5,-27.5 + parent: 1668 + type: Transform + - uid: 4540 + components: + - pos: -3.5,-27.5 + parent: 1668 + type: Transform + - uid: 4541 + components: + - pos: -5.5,-27.5 + parent: 1668 + type: Transform + - uid: 4542 + components: + - pos: -6.5,-27.5 + parent: 1668 + type: Transform + - uid: 4543 + components: + - pos: 5.5,-28.5 + parent: 1668 + type: Transform + - uid: 4544 + components: + - pos: -6.5,-28.5 + parent: 1668 + type: Transform + - uid: 4545 + components: + - pos: -6.5,-26.5 + parent: 1668 + type: Transform + - uid: 4546 + components: + - pos: 5.5,-26.5 + parent: 1668 + type: Transform + - uid: 4547 + components: + - pos: -0.5,-26.5 + parent: 1668 + type: Transform + - uid: 4548 + components: + - pos: -0.5,-28.5 + parent: 1668 + type: Transform + - uid: 4549 + components: + - pos: -0.5,-25.5 + parent: 1668 + type: Transform + - uid: 4550 + components: + - pos: -0.5,-24.5 + parent: 1668 + type: Transform + - uid: 4551 + components: + - pos: -0.5,-23.5 + parent: 1668 + type: Transform + - uid: 4552 + components: + - pos: -0.5,-22.5 + parent: 1668 + type: Transform + - uid: 4553 + components: + - pos: 2.5,-22.5 + parent: 1668 + type: Transform + - uid: 4554 + components: + - pos: -1.5,-22.5 + parent: 1668 + type: Transform + - uid: 4555 + components: + - pos: -2.5,-22.5 + parent: 1668 + type: Transform + - uid: 4556 + components: + - pos: -2.5,-23.5 + parent: 1668 + type: Transform + - uid: 4557 + components: + - pos: -2.5,-21.5 + parent: 1668 + type: Transform + - uid: 4558 + components: + - pos: -3.5,-22.5 + parent: 1668 + type: Transform + - uid: 4559 + components: + - pos: -4.5,-22.5 + parent: 1668 + type: Transform + - uid: 4560 + components: + - pos: -4.5,-23.5 + parent: 1668 + type: Transform + - uid: 4561 + components: + - pos: -4.5,-21.5 + parent: 1668 + type: Transform + - uid: 4562 + components: + - pos: 1.5,-21.5 + parent: 1668 + type: Transform + - uid: 4563 + components: + - pos: 1.5,-22.5 + parent: 1668 + type: Transform + - uid: 4564 + components: + - pos: 1.5,-23.5 + parent: 1668 + type: Transform + - uid: 4565 + components: + - pos: 3.5,-22.5 + parent: 1668 + type: Transform + - uid: 4566 + components: + - pos: 3.5,-21.5 + parent: 1668 + type: Transform + - uid: 4567 + components: + - pos: 3.5,-23.5 + parent: 1668 + type: Transform + - uid: 4898 + components: + - pos: 8.5,-17.5 + parent: 1668 + type: Transform + - uid: 4899 + components: + - pos: 8.5,-18.5 + parent: 1668 + type: Transform + - uid: 4900 + components: + - pos: 8.5,-19.5 + parent: 1668 + type: Transform + - uid: 4901 + components: + - pos: 9.5,-19.5 + parent: 1668 + type: Transform + - uid: 4902 + components: + - pos: 10.5,-19.5 + parent: 1668 + type: Transform + - uid: 4903 + components: + - pos: 11.5,-19.5 + parent: 1668 + type: Transform + - uid: 4904 + components: + - pos: 12.5,-19.5 + parent: 1668 + type: Transform + - uid: 4905 + components: + - pos: 13.5,-19.5 + parent: 1668 + type: Transform + - uid: 4906 + components: + - pos: 7.5,-18.5 + parent: 1668 + type: Transform + - uid: 4907 + components: + - pos: 6.5,-18.5 + parent: 1668 + type: Transform + - uid: 4908 + components: + - pos: 6.5,-17.5 + parent: 1668 + type: Transform + - uid: 4909 + components: + - pos: 6.5,-16.5 + parent: 1668 + type: Transform + - uid: 4910 + components: + - pos: -9.5,-17.5 + parent: 1668 + type: Transform + - uid: 4911 + components: + - pos: -9.5,-18.5 + parent: 1668 + type: Transform + - uid: 4912 + components: + - pos: -8.5,-18.5 + parent: 1668 + type: Transform + - uid: 4913 + components: + - pos: -8.5,-17.5 + parent: 1668 + type: Transform + - uid: 4914 + components: + - pos: -8.5,-16.5 + parent: 1668 + type: Transform + - uid: 4915 + components: + - pos: -9.5,-19.5 + parent: 1668 + type: Transform + - uid: 4916 + components: + - pos: -10.5,-19.5 + parent: 1668 + type: Transform + - uid: 4917 + components: + - pos: -11.5,-19.5 + parent: 1668 + type: Transform + - uid: 4918 + components: + - pos: -12.5,-19.5 + parent: 1668 + type: Transform + - uid: 4919 + components: + - pos: -13.5,-19.5 + parent: 1668 + type: Transform + - uid: 4920 + components: + - pos: -13.5,-18.5 + parent: 1668 + type: Transform + - uid: 4921 + components: + - pos: -13.5,-17.5 + parent: 1668 + type: Transform + - uid: 4922 + components: + - pos: -13.5,-16.5 + parent: 1668 + type: Transform + - uid: 4993 + components: + - pos: 18.5,-19.5 + parent: 1668 + type: Transform + - uid: 4994 + components: + - pos: 18.5,-20.5 + parent: 1668 + type: Transform + - uid: 4995 + components: + - pos: 17.5,-20.5 + parent: 1668 + type: Transform + - uid: 4996 + components: + - pos: 16.5,-20.5 + parent: 1668 + type: Transform + - uid: 4997 + components: + - pos: 16.5,-19.5 + parent: 1668 + type: Transform + - uid: 4998 + components: + - pos: 16.5,-18.5 + parent: 1668 + type: Transform + - uid: 4999 + components: + - pos: 20.5,-12.5 + parent: 1668 + type: Transform + - uid: 5000 + components: + - pos: 20.5,-13.5 + parent: 1668 + type: Transform + - uid: 5001 + components: + - pos: 20.5,-14.5 + parent: 1668 + type: Transform + - uid: 5002 + components: + - pos: 20.5,-15.5 + parent: 1668 + type: Transform + - uid: 5003 + components: + - pos: 19.5,-10.5 + parent: 1668 + type: Transform + - uid: 5004 + components: + - pos: 19.5,-14.5 + parent: 1668 + type: Transform + - uid: 5005 + components: + - pos: 18.5,-14.5 + parent: 1668 + type: Transform + - uid: 5006 + components: + - pos: 17.5,-14.5 + parent: 1668 + type: Transform + - uid: 5007 + components: + - pos: 16.5,-14.5 + parent: 1668 + type: Transform + - uid: 5008 + components: + - pos: 15.5,-14.5 + parent: 1668 + type: Transform + - uid: 5009 + components: + - pos: 21.5,-14.5 + parent: 1668 + type: Transform + - uid: 5010 + components: + - pos: 22.5,-14.5 + parent: 1668 + type: Transform + - uid: 5011 + components: + - pos: 19.5,-19.5 + parent: 1668 + type: Transform + - uid: 5012 + components: + - pos: 20.5,-19.5 + parent: 1668 + type: Transform + - uid: 5013 + components: + - pos: 21.5,-19.5 + parent: 1668 + type: Transform + - uid: 5014 + components: + - pos: 21.5,-18.5 + parent: 1668 + type: Transform + - uid: 5015 + components: + - pos: 21.5,-17.5 + parent: 1668 + type: Transform + - uid: 5016 + components: + - pos: 21.5,-20.5 + parent: 1668 + type: Transform + - uid: 5017 + components: + - pos: 21.5,-21.5 + parent: 1668 + type: Transform + - uid: 5018 + components: + - pos: 21.5,-22.5 + parent: 1668 + type: Transform + - uid: 5019 + components: + - pos: 16.5,-21.5 + parent: 1668 + type: Transform + - uid: 5020 + components: + - pos: 16.5,-22.5 + parent: 1668 + type: Transform + - uid: 5021 + components: + - pos: 16.5,-23.5 + parent: 1668 + type: Transform + - uid: 5022 + components: + - pos: 16.5,-24.5 + parent: 1668 + type: Transform + - uid: 5023 + components: + - pos: 16.5,-25.5 + parent: 1668 + type: Transform + - uid: 5024 + components: + - pos: 16.5,-26.5 + parent: 1668 + type: Transform + - uid: 5026 + components: + - pos: 15.5,-24.5 + parent: 1668 + type: Transform + - uid: 5027 + components: + - pos: 14.5,-24.5 + parent: 1668 + type: Transform + - uid: 5028 + components: + - pos: 13.5,-24.5 + parent: 1668 + type: Transform + - uid: 5029 + components: + - pos: 13.5,-23.5 + parent: 1668 + type: Transform + - uid: 5030 + components: + - pos: 13.5,-22.5 + parent: 1668 + type: Transform + - uid: 5031 + components: + - pos: 13.5,-21.5 + parent: 1668 + type: Transform + - uid: 5032 + components: + - pos: 13.5,-25.5 + parent: 1668 + type: Transform + - uid: 5033 + components: + - pos: 13.5,-26.5 + parent: 1668 + type: Transform + - uid: 5034 + components: + - pos: 13.5,-27.5 + parent: 1668 + type: Transform + - uid: 5035 + components: + - pos: 13.5,-28.5 + parent: 1668 + type: Transform + - uid: 5036 + components: + - pos: 17.5,-25.5 + parent: 1668 + type: Transform + - uid: 5037 + components: + - pos: 18.5,-25.5 + parent: 1668 + type: Transform + - uid: 5038 + components: + - pos: 19.5,-25.5 + parent: 1668 + type: Transform + - uid: 5039 + components: + - pos: 20.5,-25.5 + parent: 1668 + type: Transform + - uid: 5040 + components: + - pos: 21.5,-25.5 + parent: 1668 + type: Transform + - uid: 5121 + components: + - pos: 34.5,-9.5 + parent: 1668 + type: Transform + - uid: 5122 + components: + - pos: 34.5,-10.5 + parent: 1668 + type: Transform + - uid: 5123 + components: + - pos: 34.5,-11.5 + parent: 1668 + type: Transform + - uid: 5124 + components: + - pos: 34.5,-12.5 + parent: 1668 + type: Transform + - uid: 5125 + components: + - pos: 34.5,-13.5 + parent: 1668 + type: Transform + - uid: 5126 + components: + - pos: 33.5,-13.5 + parent: 1668 + type: Transform + - uid: 5127 + components: + - pos: 32.5,-13.5 + parent: 1668 + type: Transform + - uid: 5128 + components: + - pos: 32.5,-14.5 + parent: 1668 + type: Transform + - uid: 5129 + components: + - pos: 31.5,-13.5 + parent: 1668 + type: Transform + - uid: 5130 + components: + - pos: 30.5,-13.5 + parent: 1668 + type: Transform + - uid: 5131 + components: + - pos: 30.5,-12.5 + parent: 1668 + type: Transform + - uid: 5132 + components: + - pos: 30.5,-11.5 + parent: 1668 + type: Transform + - uid: 5134 + components: + - pos: 22.5,-23.5 + parent: 1668 + type: Transform + - uid: 5135 + components: + - pos: 23.5,-23.5 + parent: 1668 + type: Transform + - uid: 5136 + components: + - pos: 24.5,-23.5 + parent: 1668 + type: Transform + - uid: 5137 + components: + - pos: 25.5,-23.5 + parent: 1668 + type: Transform + - uid: 5138 + components: + - pos: 26.5,-23.5 + parent: 1668 + type: Transform + - uid: 5139 + components: + - pos: 25.5,-24.5 + parent: 1668 + type: Transform + - uid: 5140 + components: + - pos: 25.5,-25.5 + parent: 1668 + type: Transform + - uid: 5141 + components: + - pos: 25.5,-26.5 + parent: 1668 + type: Transform + - uid: 5142 + components: + - pos: 25.5,-22.5 + parent: 1668 + type: Transform + - uid: 5143 + components: + - pos: 25.5,-21.5 + parent: 1668 + type: Transform + - uid: 5144 + components: + - pos: 25.5,-20.5 + parent: 1668 + type: Transform + - uid: 5145 + components: + - pos: 25.5,-19.5 + parent: 1668 + type: Transform + - uid: 5147 + components: + - pos: 29.5,-19.5 + parent: 1668 + type: Transform + - uid: 5148 + components: + - pos: 29.5,-20.5 + parent: 1668 + type: Transform + - uid: 5149 + components: + - pos: 29.5,-21.5 + parent: 1668 + type: Transform + - uid: 5150 + components: + - pos: 29.5,-22.5 + parent: 1668 + type: Transform + - uid: 5151 + components: + - pos: 29.5,-23.5 + parent: 1668 + type: Transform + - uid: 5152 + components: + - pos: 29.5,-24.5 + parent: 1668 + type: Transform + - uid: 5153 + components: + - pos: 29.5,-25.5 + parent: 1668 + type: Transform + - uid: 5154 + components: + - pos: 28.5,-25.5 + parent: 1668 + type: Transform + - uid: 5155 + components: + - pos: 28.5,-24.5 + parent: 1668 + type: Transform + - uid: 5156 + components: + - pos: 28.5,-23.5 + parent: 1668 + type: Transform + - uid: 5157 + components: + - pos: 28.5,-22.5 + parent: 1668 + type: Transform + - uid: 5158 + components: + - pos: 28.5,-21.5 + parent: 1668 + type: Transform + - uid: 5159 + components: + - pos: 30.5,-25.5 + parent: 1668 + type: Transform + - uid: 5160 + components: + - pos: 31.5,-25.5 + parent: 1668 + type: Transform + - uid: 5161 + components: + - pos: 32.5,-25.5 + parent: 1668 + type: Transform + - uid: 5162 + components: + - pos: 33.5,-25.5 + parent: 1668 + type: Transform + - uid: 5163 + components: + - pos: 30.5,-21.5 + parent: 1668 + type: Transform + - uid: 5164 + components: + - pos: 31.5,-21.5 + parent: 1668 + type: Transform + - uid: 5165 + components: + - pos: 32.5,-21.5 + parent: 1668 + type: Transform + - uid: 5166 + components: + - pos: 33.5,-21.5 + parent: 1668 + type: Transform + - uid: 5171 + components: + - pos: 31.5,-20.5 + parent: 1668 + type: Transform + - uid: 5172 + components: + - pos: 31.5,-19.5 + parent: 1668 + type: Transform + - uid: 5173 + components: + - pos: 33.5,-20.5 + parent: 1668 + type: Transform + - uid: 5174 + components: + - pos: 33.5,-19.5 + parent: 1668 + type: Transform + - uid: 5258 + components: + - pos: 30.5,-14.5 + parent: 1668 + type: Transform + - uid: 5259 + components: + - pos: 30.5,-15.5 + parent: 1668 + type: Transform + - uid: 5260 + components: + - pos: 30.5,-16.5 + parent: 1668 + type: Transform + - uid: 5261 + components: + - pos: 30.5,-17.5 + parent: 1668 + type: Transform + - uid: 5262 + components: + - pos: 31.5,-17.5 + parent: 1668 + type: Transform + - uid: 5263 + components: + - pos: 32.5,-17.5 + parent: 1668 + type: Transform + - uid: 5264 + components: + - pos: 33.5,-17.5 + parent: 1668 + type: Transform + - uid: 5265 + components: + - pos: 29.5,-17.5 + parent: 1668 + type: Transform + - uid: 5266 + components: + - pos: 28.5,-17.5 + parent: 1668 + type: Transform + - uid: 5267 + components: + - pos: 27.5,-17.5 + parent: 1668 + type: Transform + - uid: 5268 + components: + - pos: 26.5,-17.5 + parent: 1668 + type: Transform + - uid: 5269 + components: + - pos: 25.5,-17.5 + parent: 1668 + type: Transform + - uid: 5270 + components: + - pos: 24.5,-17.5 + parent: 1668 + type: Transform + - uid: 5271 + components: + - pos: 24.5,-16.5 + parent: 1668 + type: Transform + - uid: 5272 + components: + - pos: 24.5,-15.5 + parent: 1668 + type: Transform + - uid: 5273 + components: + - pos: 24.5,-14.5 + parent: 1668 + type: Transform + - uid: 5274 + components: + - pos: 27.5,-16.5 + parent: 1668 + type: Transform + - uid: 5275 + components: + - pos: 27.5,-15.5 + parent: 1668 + type: Transform + - uid: 5276 + components: + - pos: 27.5,-14.5 + parent: 1668 + type: Transform + - uid: 5441 + components: + - pos: 15.5,-22.5 + parent: 1668 + type: Transform + - uid: 5442 + components: + - pos: 17.5,-22.5 + parent: 1668 + type: Transform + - uid: 5443 + components: + - pos: 16.5,-28.5 + parent: 1668 + type: Transform + - uid: 5444 + components: + - pos: 16.5,-29.5 + parent: 1668 + type: Transform + - uid: 5445 + components: + - pos: 16.5,-30.5 + parent: 1668 + type: Transform + - uid: 5446 + components: + - pos: 16.5,-31.5 + parent: 1668 + type: Transform + - uid: 5447 + components: + - pos: 17.5,-30.5 + parent: 1668 + type: Transform + - uid: 5448 + components: + - pos: 18.5,-30.5 + parent: 1668 + type: Transform + - uid: 5449 + components: + - pos: 18.5,-31.5 + parent: 1668 + type: Transform + - uid: 5450 + components: + - pos: 18.5,-29.5 + parent: 1668 + type: Transform + - uid: 5585 + components: + - pos: 21.5,-26.5 + parent: 1668 + type: Transform + - uid: 5935 + components: + - pos: -16.5,-30.5 + parent: 1668 + type: Transform + - uid: 5936 + components: + - pos: -16.5,-31.5 + parent: 1668 + type: Transform + - uid: 5937 + components: + - pos: -16.5,-32.5 + parent: 1668 + type: Transform + - uid: 5938 + components: + - pos: -16.5,-33.5 + parent: 1668 + type: Transform + - uid: 5939 + components: + - pos: -17.5,-33.5 + parent: 1668 + type: Transform + - uid: 5940 + components: + - pos: -18.5,-33.5 + parent: 1668 + type: Transform + - uid: 6067 + components: + - pos: -17.5,-22.5 + parent: 1668 + type: Transform + - uid: 6068 + components: + - pos: -18.5,-22.5 + parent: 1668 + type: Transform + - uid: 6069 + components: + - pos: -19.5,-22.5 + parent: 1668 + type: Transform + - uid: 6070 + components: + - pos: -19.5,-23.5 + parent: 1668 + type: Transform + - uid: 6071 + components: + - pos: -19.5,-24.5 + parent: 1668 + type: Transform + - uid: 6072 + components: + - pos: -19.5,-25.5 + parent: 1668 + type: Transform + - uid: 6073 + components: + - pos: -19.5,-26.5 + parent: 1668 + type: Transform + - uid: 6074 + components: + - pos: -19.5,-27.5 + parent: 1668 + type: Transform + - uid: 6075 + components: + - pos: -19.5,-28.5 + parent: 1668 + type: Transform + - uid: 6076 + components: + - pos: -20.5,-26.5 + parent: 1668 + type: Transform + - uid: 6077 + components: + - pos: -21.5,-26.5 + parent: 1668 + type: Transform + - uid: 6078 + components: + - pos: -22.5,-26.5 + parent: 1668 + type: Transform + - uid: 6079 + components: + - pos: -20.5,-24.5 + parent: 1668 + type: Transform + - uid: 6080 + components: + - pos: -21.5,-24.5 + parent: 1668 + type: Transform + - uid: 6081 + components: + - pos: -22.5,-24.5 + parent: 1668 + type: Transform + - uid: 6082 + components: + - pos: -19.5,-21.5 + parent: 1668 + type: Transform + - uid: 6083 + components: + - pos: -18.5,-21.5 + parent: 1668 + type: Transform + - uid: 6084 + components: + - pos: -20.5,-21.5 + parent: 1668 + type: Transform + - uid: 6085 + components: + - pos: -21.5,-23.5 + parent: 1668 + type: Transform + - uid: 6086 + components: + - pos: -21.5,-25.5 + parent: 1668 + type: Transform + - uid: 6087 + components: + - pos: -21.5,-27.5 + parent: 1668 + type: Transform + - uid: 6088 + components: + - pos: -22.5,-25.5 + parent: 1668 + type: Transform + - uid: 6089 + components: + - pos: -23.5,-25.5 + parent: 1668 + type: Transform + - uid: 6090 + components: + - pos: -23.5,-26.5 + parent: 1668 + type: Transform + - uid: 6091 + components: + - pos: -23.5,-27.5 + parent: 1668 + type: Transform + - uid: 6092 + components: + - pos: -23.5,-23.5 + parent: 1668 + type: Transform + - uid: 6093 + components: + - pos: -23.5,-24.5 + parent: 1668 + type: Transform + - uid: 6094 + components: + - pos: -18.5,-34.5 + parent: 1668 + type: Transform + - uid: 6095 + components: + - pos: -17.5,-34.5 + parent: 1668 + type: Transform + - uid: 6096 + components: + - pos: -19.5,-34.5 + parent: 1668 + type: Transform + - uid: 6097 + components: + - pos: -19.5,-33.5 + parent: 1668 + type: Transform + - uid: 6098 + components: + - pos: -20.5,-33.5 + parent: 1668 + type: Transform + - uid: 6099 + components: + - pos: -20.5,-32.5 + parent: 1668 + type: Transform + - uid: 6100 + components: + - pos: -20.5,-31.5 + parent: 1668 + type: Transform + - uid: 6112 + components: + - pos: -15.5,-28.5 + parent: 1668 + type: Transform + - uid: 6113 + components: + - pos: -14.5,-28.5 + parent: 1668 + type: Transform + - uid: 6114 + components: + - pos: -13.5,-28.5 + parent: 1668 + type: Transform + - uid: 6115 + components: + - pos: -13.5,-29.5 + parent: 1668 + type: Transform + - uid: 6116 + components: + - pos: -13.5,-30.5 + parent: 1668 + type: Transform + - uid: 6117 + components: + - pos: -13.5,-31.5 + parent: 1668 + type: Transform + - uid: 6118 + components: + - pos: -13.5,-32.5 + parent: 1668 + type: Transform + - uid: 6119 + components: + - pos: -13.5,-33.5 + parent: 1668 + type: Transform + - uid: 6120 + components: + - pos: -13.5,-27.5 + parent: 1668 + type: Transform + - uid: 6121 + components: + - pos: -13.5,-26.5 + parent: 1668 + type: Transform + - uid: 6122 + components: + - pos: -13.5,-25.5 + parent: 1668 + type: Transform + - uid: 6123 + components: + - pos: -13.5,-24.5 + parent: 1668 + type: Transform + - uid: 6124 + components: + - pos: -13.5,-23.5 + parent: 1668 + type: Transform + - uid: 6125 + components: + - pos: -13.5,-22.5 + parent: 1668 + type: Transform + - uid: 6126 + components: + - pos: -13.5,-21.5 + parent: 1668 + type: Transform + - uid: 6127 + components: + - pos: 15.5,-30.5 + parent: 1668 + type: Transform + - uid: 6128 + components: + - pos: 14.5,-30.5 + parent: 1668 + type: Transform + - uid: 6129 + components: + - pos: 13.5,-30.5 + parent: 1668 + type: Transform + - uid: 6131 + components: + - pos: 13.5,-32.5 + parent: 1668 + type: Transform + - uid: 6132 + components: + - pos: 13.5,-33.5 + parent: 1668 + type: Transform + - uid: 6133 + components: + - pos: -0.5,-29.5 + parent: 1668 + type: Transform + - uid: 6134 + components: + - pos: -0.5,-30.5 + parent: 1668 + type: Transform + - uid: 6135 + components: + - pos: -1.5,-30.5 + parent: 1668 + type: Transform + - uid: 6136 + components: + - pos: 0.5,-30.5 + parent: 1668 + type: Transform + - uid: 6202 + components: + - pos: -8.5,-30.5 + parent: 1668 + type: Transform + - uid: 6203 + components: + - pos: -8.5,-31.5 + parent: 1668 + type: Transform + - uid: 6204 + components: + - pos: -8.5,-33.5 + parent: 1668 + type: Transform + - uid: 6205 + components: + - pos: -8.5,-32.5 + parent: 1668 + type: Transform + - uid: 6206 + components: + - pos: -7.5,-32.5 + parent: 1668 + type: Transform + - uid: 6207 + components: + - pos: -6.5,-32.5 + parent: 1668 + type: Transform + - uid: 6208 + components: + - pos: -5.5,-32.5 + parent: 1668 + type: Transform + - uid: 6209 + components: + - pos: -4.5,-32.5 + parent: 1668 + type: Transform + - uid: 6210 + components: + - pos: -9.5,-32.5 + parent: 1668 + type: Transform + - uid: 6211 + components: + - pos: -10.5,-32.5 + parent: 1668 + type: Transform + - uid: 6212 + components: + - pos: -11.5,-32.5 + parent: 1668 + type: Transform + - uid: 6213 + components: + - pos: 7.5,-30.5 + parent: 1668 + type: Transform + - uid: 6214 + components: + - pos: 7.5,-31.5 + parent: 1668 + type: Transform + - uid: 6215 + components: + - pos: 7.5,-32.5 + parent: 1668 + type: Transform + - uid: 6216 + components: + - pos: 7.5,-33.5 + parent: 1668 + type: Transform + - uid: 6217 + components: + - pos: 6.5,-32.5 + parent: 1668 + type: Transform + - uid: 6218 + components: + - pos: 5.5,-32.5 + parent: 1668 + type: Transform + - uid: 6219 + components: + - pos: 4.5,-32.5 + parent: 1668 + type: Transform + - uid: 6220 + components: + - pos: 3.5,-32.5 + parent: 1668 + type: Transform + - uid: 6221 + components: + - pos: 8.5,-32.5 + parent: 1668 + type: Transform + - uid: 6222 + components: + - pos: 9.5,-32.5 + parent: 1668 + type: Transform + - uid: 6223 + components: + - pos: 10.5,-32.5 + parent: 1668 + type: Transform + - uid: 6224 + components: + - pos: 11.5,-32.5 + parent: 1668 + type: Transform + - uid: 6225 + components: + - pos: 12.5,-32.5 + parent: 1668 + type: Transform + - uid: 6346 + components: + - pos: -2.5,-34.5 + parent: 1668 + type: Transform + - uid: 6347 + components: + - pos: -2.5,-35.5 + parent: 1668 + type: Transform + - uid: 6348 + components: + - pos: -2.5,-36.5 + parent: 1668 + type: Transform + - uid: 6349 + components: + - pos: -2.5,-37.5 + parent: 1668 + type: Transform + - uid: 6350 + components: + - pos: -1.5,-36.5 + parent: 1668 + type: Transform + - uid: 6351 + components: + - pos: -0.5,-36.5 + parent: 1668 + type: Transform + - uid: 6352 + components: + - pos: 0.5,-36.5 + parent: 1668 + type: Transform + - uid: 6353 + components: + - pos: 1.5,-36.5 + parent: 1668 + type: Transform + - uid: 6354 + components: + - pos: 2.5,-36.5 + parent: 1668 + type: Transform + - uid: 6355 + components: + - pos: 3.5,-36.5 + parent: 1668 + type: Transform + - uid: 6356 + components: + - pos: -3.5,-36.5 + parent: 1668 + type: Transform + - uid: 6357 + components: + - pos: -4.5,-36.5 + parent: 1668 + type: Transform + - uid: 6358 + components: + - pos: -5.5,-36.5 + parent: 1668 + type: Transform + - uid: 6359 + components: + - pos: -0.5,-37.5 + parent: 1668 + type: Transform + - uid: 6360 + components: + - pos: -0.5,-38.5 + parent: 1668 + type: Transform + - uid: 6409 + components: + - pos: -2.5,-40.5 + parent: 1668 + type: Transform + - uid: 6410 + components: + - pos: -2.5,-41.5 + parent: 1668 + type: Transform + - uid: 6411 + components: + - pos: -2.5,-42.5 + parent: 1668 + type: Transform + - uid: 6412 + components: + - pos: -2.5,-43.5 + parent: 1668 + type: Transform + - uid: 6413 + components: + - pos: -1.5,-42.5 + parent: 1668 + type: Transform + - uid: 6414 + components: + - pos: -0.5,-42.5 + parent: 1668 + type: Transform + - uid: 6415 + components: + - pos: 0.5,-42.5 + parent: 1668 + type: Transform + - uid: 6416 + components: + - pos: 1.5,-42.5 + parent: 1668 + type: Transform + - uid: 6417 + components: + - pos: 2.5,-42.5 + parent: 1668 + type: Transform + - uid: 6418 + components: + - pos: 3.5,-42.5 + parent: 1668 + type: Transform + - uid: 6419 + components: + - pos: 4.5,-42.5 + parent: 1668 + type: Transform + - uid: 6420 + components: + - pos: 4.5,-41.5 + parent: 1668 + type: Transform + - uid: 6421 + components: + - pos: 4.5,-40.5 + parent: 1668 + type: Transform + - uid: 6422 + components: + - pos: -3.5,-42.5 + parent: 1668 + type: Transform + - uid: 6423 + components: + - pos: -4.5,-42.5 + parent: 1668 + type: Transform + - uid: 6424 + components: + - pos: -5.5,-42.5 + parent: 1668 + type: Transform + - uid: 6425 + components: + - pos: -5.5,-41.5 + parent: 1668 + type: Transform + - uid: 6426 + components: + - pos: -5.5,-40.5 + parent: 1668 + type: Transform + - uid: 6427 + components: + - pos: -0.5,-41.5 + parent: 1668 + type: Transform + - uid: 6428 + components: + - pos: -0.5,-40.5 + parent: 1668 + type: Transform + - uid: 6429 + components: + - pos: -0.5,-43.5 + parent: 1668 + type: Transform + - uid: 6430 + components: + - pos: -0.5,-44.5 + parent: 1668 + type: Transform + - uid: 6431 + components: + - pos: -0.5,-45.5 + parent: 1668 + type: Transform + - uid: 6432 + components: + - pos: -0.5,-46.5 + parent: 1668 + type: Transform + - uid: 6433 + components: + - pos: -2.5,-44.5 + parent: 1668 + type: Transform + - uid: 6434 + components: + - pos: -2.5,-45.5 + parent: 1668 + type: Transform + - uid: 6435 + components: + - pos: -2.5,-46.5 + parent: 1668 + type: Transform + - uid: 6436 + components: + - pos: 1.5,-44.5 + parent: 1668 + type: Transform + - uid: 6437 + components: + - pos: 1.5,-43.5 + parent: 1668 + type: Transform + - uid: 6438 + components: + - pos: 1.5,-45.5 + parent: 1668 + type: Transform + - uid: 6439 + components: + - pos: 1.5,-46.5 + parent: 1668 + type: Transform + - uid: 6774 + components: + - pos: 26.5,-26.5 + parent: 1668 + type: Transform + - uid: 6776 + components: + - pos: 27.5,-26.5 + parent: 1668 + type: Transform + - uid: 6854 + components: + - pos: 32.5,-27.5 + parent: 1668 + type: Transform + - uid: 6855 + components: + - pos: 32.5,-28.5 + parent: 1668 + type: Transform + - uid: 6856 + components: + - pos: 32.5,-29.5 + parent: 1668 + type: Transform + - uid: 6857 + components: + - pos: 32.5,-30.5 + parent: 1668 + type: Transform + - uid: 6858 + components: + - pos: 32.5,-31.5 + parent: 1668 + type: Transform + - uid: 6859 + components: + - pos: 31.5,-30.5 + parent: 1668 + type: Transform + - uid: 6860 + components: + - pos: 30.5,-30.5 + parent: 1668 + type: Transform + - uid: 6861 + components: + - pos: 29.5,-30.5 + parent: 1668 + type: Transform + - uid: 6862 + components: + - pos: 28.5,-30.5 + parent: 1668 + type: Transform + - uid: 6863 + components: + - pos: 33.5,-30.5 + parent: 1668 + type: Transform + - uid: 6971 + components: + - pos: 19.5,-30.5 + parent: 1668 + type: Transform + - uid: 6972 + components: + - pos: 20.5,-30.5 + parent: 1668 + type: Transform + - uid: 6973 + components: + - pos: 21.5,-30.5 + parent: 1668 + type: Transform + - uid: 6974 + components: + - pos: 22.5,-30.5 + parent: 1668 + type: Transform + - uid: 6975 + components: + - pos: 22.5,-29.5 + parent: 1668 + type: Transform + - uid: 6976 + components: + - pos: 22.5,-31.5 + parent: 1668 + type: Transform +- proto: CableHV + entities: + - uid: 1391 + components: + - pos: 27.5,-31.5 + parent: 1668 + type: Transform + - uid: 1465 + components: + - pos: 26.5,-25.5 + parent: 1668 + type: Transform + - uid: 1475 + components: + - pos: 15.5,-13.5 + parent: 1668 + type: Transform + - uid: 1476 + components: + - pos: 16.5,-13.5 + parent: 1668 + type: Transform + - uid: 1477 + components: + - pos: 17.5,-13.5 + parent: 1668 + type: Transform + - uid: 1478 + components: + - pos: 17.5,-14.5 + parent: 1668 + type: Transform + - uid: 1479 + components: + - pos: 18.5,-14.5 + parent: 1668 + type: Transform + - uid: 1480 + components: + - pos: 19.5,-14.5 + parent: 1668 + type: Transform + - uid: 1482 + components: + - pos: 25.5,-25.5 + parent: 1668 + type: Transform + - uid: 1659 + components: + - pos: 18.5,-25.5 + parent: 1668 + type: Transform + - uid: 1864 + components: + - pos: -3.5,20.5 + parent: 1668 + type: Transform + - uid: 1865 + components: + - pos: -2.5,20.5 + parent: 1668 + type: Transform + - uid: 1866 + components: + - pos: -1.5,20.5 + parent: 1668 + type: Transform + - uid: 1867 + components: + - pos: -0.5,20.5 + parent: 1668 + type: Transform + - uid: 1868 + components: + - pos: 0.5,20.5 + parent: 1668 + type: Transform + - uid: 1869 + components: + - pos: 1.5,20.5 + parent: 1668 + type: Transform + - uid: 1870 + components: + - pos: 2.5,20.5 + parent: 1668 + type: Transform + - uid: 1871 + components: + - pos: -0.5,19.5 + parent: 1668 + type: Transform + - uid: 1872 + components: + - pos: -0.5,18.5 + parent: 1668 + type: Transform + - uid: 1873 + components: + - pos: -0.5,17.5 + parent: 1668 + type: Transform + - uid: 1874 + components: + - pos: -0.5,16.5 + parent: 1668 + type: Transform + - uid: 1875 + components: + - pos: -0.5,15.5 + parent: 1668 + type: Transform + - uid: 1876 + components: + - pos: -0.5,14.5 + parent: 1668 + type: Transform + - uid: 1877 + components: + - pos: -0.5,13.5 + parent: 1668 + type: Transform + - uid: 1878 + components: + - pos: -0.5,12.5 + parent: 1668 + type: Transform + - uid: 1879 + components: + - pos: -0.5,11.5 + parent: 1668 + type: Transform + - uid: 1880 + components: + - pos: -0.5,10.5 + parent: 1668 + type: Transform + - uid: 1881 + components: + - pos: -0.5,9.5 + parent: 1668 + type: Transform + - uid: 1882 + components: + - pos: -0.5,8.5 + parent: 1668 + type: Transform + - uid: 1883 + components: + - pos: -0.5,7.5 + parent: 1668 + type: Transform + - uid: 1884 + components: + - pos: -0.5,6.5 + parent: 1668 + type: Transform + - uid: 1885 + components: + - pos: -0.5,5.5 + parent: 1668 + type: Transform + - uid: 1886 + components: + - pos: -0.5,4.5 + parent: 1668 + type: Transform + - uid: 1887 + components: + - pos: -0.5,3.5 + parent: 1668 + type: Transform + - uid: 1888 + components: + - pos: 0.5,3.5 + parent: 1668 + type: Transform + - uid: 1889 + components: + - pos: 1.5,3.5 + parent: 1668 + type: Transform + - uid: 1890 + components: + - pos: 2.5,3.5 + parent: 1668 + type: Transform + - uid: 1891 + components: + - pos: 3.5,3.5 + parent: 1668 + type: Transform + - uid: 1892 + components: + - pos: 4.5,3.5 + parent: 1668 + type: Transform + - uid: 1893 + components: + - pos: 4.5,2.5 + parent: 1668 + type: Transform + - uid: 1894 + components: + - pos: 4.5,1.5 + parent: 1668 + type: Transform + - uid: 1895 + components: + - pos: 4.5,0.5 + parent: 1668 + type: Transform + - uid: 1896 + components: + - pos: 4.5,-0.5 + parent: 1668 + type: Transform + - uid: 1897 + components: + - pos: 17.5,-12.5 + parent: 1668 + type: Transform + - uid: 1898 + components: + - pos: 17.5,-11.5 + parent: 1668 + type: Transform + - uid: 1899 + components: + - pos: 16.5,-11.5 + parent: 1668 + type: Transform + - uid: 1900 + components: + - pos: 15.5,-11.5 + parent: 1668 + type: Transform + - uid: 1901 + components: + - pos: 14.5,-11.5 + parent: 1668 + type: Transform + - uid: 1902 + components: + - pos: 13.5,-11.5 + parent: 1668 + type: Transform + - uid: 1903 + components: + - pos: 12.5,-11.5 + parent: 1668 + type: Transform + - uid: 1904 + components: + - pos: 11.5,-11.5 + parent: 1668 + type: Transform + - uid: 1905 + components: + - pos: 10.5,-11.5 + parent: 1668 + type: Transform + - uid: 1906 + components: + - pos: 9.5,-11.5 + parent: 1668 + type: Transform + - uid: 1907 + components: + - pos: 8.5,-11.5 + parent: 1668 + type: Transform + - uid: 1908 + components: + - pos: 7.5,-11.5 + parent: 1668 + type: Transform + - uid: 1909 + components: + - pos: 6.5,-11.5 + parent: 1668 + type: Transform + - uid: 1910 + components: + - pos: 5.5,-11.5 + parent: 1668 + type: Transform + - uid: 1911 + components: + - pos: 4.5,-11.5 + parent: 1668 + type: Transform + - uid: 1912 + components: + - pos: 3.5,-11.5 + parent: 1668 + type: Transform + - uid: 1913 + components: + - pos: 2.5,-11.5 + parent: 1668 + type: Transform + - uid: 1914 + components: + - pos: 1.5,-11.5 + parent: 1668 + type: Transform + - uid: 1915 + components: + - pos: 0.5,-11.5 + parent: 1668 + type: Transform + - uid: 1916 + components: + - pos: -0.5,-11.5 + parent: 1668 + type: Transform + - uid: 1917 + components: + - pos: -0.5,-10.5 + parent: 1668 + type: Transform + - uid: 1918 + components: + - pos: -0.5,-9.5 + parent: 1668 + type: Transform + - uid: 1919 + components: + - pos: -0.5,-8.5 + parent: 1668 + type: Transform + - uid: 1920 + components: + - pos: -0.5,-7.5 + parent: 1668 + type: Transform + - uid: 1921 + components: + - pos: -0.5,-6.5 + parent: 1668 + type: Transform + - uid: 1922 + components: + - pos: -1.5,-5.5 + parent: 1668 + type: Transform + - uid: 1923 + components: + - pos: -0.5,-4.5 + parent: 1668 + type: Transform + - uid: 1924 + components: + - pos: 0.5,-4.5 + parent: 1668 + type: Transform + - uid: 1925 + components: + - pos: 1.5,-4.5 + parent: 1668 + type: Transform + - uid: 1926 + components: + - pos: 2.5,-4.5 + parent: 1668 + type: Transform + - uid: 1927 + components: + - pos: 3.5,-4.5 + parent: 1668 + type: Transform + - uid: 1928 + components: + - pos: 4.5,-4.5 + parent: 1668 + type: Transform + - uid: 1929 + components: + - pos: 4.5,-3.5 + parent: 1668 + type: Transform + - uid: 1930 + components: + - pos: 4.5,-2.5 + parent: 1668 + type: Transform + - uid: 1931 + components: + - pos: 4.5,-1.5 + parent: 1668 + type: Transform + - uid: 1932 + components: + - pos: 17.5,-10.5 + parent: 1668 + type: Transform + - uid: 1933 + components: + - pos: 17.5,-9.5 + parent: 1668 + type: Transform + - uid: 1934 + components: + - pos: 17.5,-8.5 + parent: 1668 + type: Transform + - uid: 1935 + components: + - pos: 17.5,-7.5 + parent: 1668 + type: Transform + - uid: 1936 + components: + - pos: 17.5,-6.5 + parent: 1668 + type: Transform + - uid: 1937 + components: + - pos: 16.5,-6.5 + parent: 1668 + type: Transform + - uid: 1938 + components: + - pos: 15.5,-6.5 + parent: 1668 + type: Transform + - uid: 1939 + components: + - pos: 14.5,-6.5 + parent: 1668 + type: Transform + - uid: 1940 + components: + - pos: 13.5,-6.5 + parent: 1668 + type: Transform + - uid: 1941 + components: + - pos: 12.5,-6.5 + parent: 1668 + type: Transform + - uid: 1942 + components: + - pos: 12.5,-5.5 + parent: 1668 + type: Transform + - uid: 1943 + components: + - pos: 12.5,-4.5 + parent: 1668 + type: Transform + - uid: 1944 + components: + - pos: 12.5,-3.5 + parent: 1668 + type: Transform + - uid: 1945 + components: + - pos: 12.5,-2.5 + parent: 1668 + type: Transform + - uid: 1946 + components: + - pos: 12.5,-1.5 + parent: 1668 + type: Transform + - uid: 1947 + components: + - pos: 12.5,-0.5 + parent: 1668 + type: Transform + - uid: 1948 + components: + - pos: 11.5,-0.5 + parent: 1668 + type: Transform + - uid: 1949 + components: + - pos: 10.5,-0.5 + parent: 1668 + type: Transform + - uid: 1950 + components: + - pos: 9.5,-0.5 + parent: 1668 + type: Transform + - uid: 1951 + components: + - pos: 8.5,-0.5 + parent: 1668 + type: Transform + - uid: 1952 + components: + - pos: 7.5,-0.5 + parent: 1668 + type: Transform + - uid: 1953 + components: + - pos: 6.5,-0.5 + parent: 1668 + type: Transform + - uid: 1954 + components: + - pos: 5.5,-0.5 + parent: 1668 + type: Transform + - uid: 2523 + components: + - pos: 0.5,12.5 + parent: 1668 + type: Transform + - uid: 2524 + components: + - pos: 1.5,12.5 + parent: 1668 + type: Transform + - uid: 2525 + components: + - pos: 2.5,12.5 + parent: 1668 + type: Transform + - uid: 2526 + components: + - pos: 3.5,12.5 + parent: 1668 + type: Transform + - uid: 2527 + components: + - pos: 4.5,12.5 + parent: 1668 + type: Transform + - uid: 2528 + components: + - pos: 5.5,12.5 + parent: 1668 + type: Transform + - uid: 2529 + components: + - pos: 6.5,12.5 + parent: 1668 + type: Transform + - uid: 2530 + components: + - pos: 7.5,12.5 + parent: 1668 + type: Transform + - uid: 2531 + components: + - pos: 8.5,12.5 + parent: 1668 + type: Transform + - uid: 2532 + components: + - pos: 9.5,12.5 + parent: 1668 + type: Transform + - uid: 2533 + components: + - pos: 10.5,12.5 + parent: 1668 + type: Transform + - uid: 2534 + components: + - pos: 11.5,12.5 + parent: 1668 + type: Transform + - uid: 2535 + components: + - pos: 12.5,12.5 + parent: 1668 + type: Transform + - uid: 2536 + components: + - pos: 13.5,12.5 + parent: 1668 + type: Transform + - uid: 2537 + components: + - pos: 14.5,12.5 + parent: 1668 + type: Transform + - uid: 2538 + components: + - pos: 14.5,13.5 + parent: 1668 + type: Transform + - uid: 2539 + components: + - pos: 14.5,14.5 + parent: 1668 + type: Transform + - uid: 2540 + components: + - pos: 14.5,15.5 + parent: 1668 + type: Transform + - uid: 2541 + components: + - pos: 14.5,16.5 + parent: 1668 + type: Transform + - uid: 2542 + components: + - pos: 14.5,17.5 + parent: 1668 + type: Transform + - uid: 2543 + components: + - pos: 14.5,18.5 + parent: 1668 + type: Transform + - uid: 2544 + components: + - pos: 15.5,18.5 + parent: 1668 + type: Transform + - uid: 2545 + components: + - pos: 15.5,19.5 + parent: 1668 + type: Transform + - uid: 3257 + components: + - pos: 16.5,18.5 + parent: 1668 + type: Transform + - uid: 3523 + components: + - pos: -1.5,-4.5 + parent: 1668 + type: Transform + - uid: 3524 + components: + - pos: -1.5,-6.5 + parent: 1668 + type: Transform + - uid: 3525 + components: + - pos: -1.5,4.5 + parent: 1668 + type: Transform + - uid: 3526 + components: + - pos: -2.5,4.5 + parent: 1668 + type: Transform + - uid: 3527 + components: + - pos: -3.5,4.5 + parent: 1668 + type: Transform + - uid: 3528 + components: + - pos: -4.5,4.5 + parent: 1668 + type: Transform + - uid: 3529 + components: + - pos: -5.5,4.5 + parent: 1668 + type: Transform + - uid: 3530 + components: + - pos: -6.5,4.5 + parent: 1668 + type: Transform + - uid: 3531 + components: + - pos: -2.5,-4.5 + parent: 1668 + type: Transform + - uid: 3532 + components: + - pos: -3.5,-4.5 + parent: 1668 + type: Transform + - uid: 3533 + components: + - pos: -4.5,-4.5 + parent: 1668 + type: Transform + - uid: 3534 + components: + - pos: -5.5,-4.5 + parent: 1668 + type: Transform + - uid: 3535 + components: + - pos: -6.5,-4.5 + parent: 1668 + type: Transform + - uid: 3536 + components: + - pos: -6.5,-3.5 + parent: 1668 + type: Transform + - uid: 3537 + components: + - pos: -6.5,-2.5 + parent: 1668 + type: Transform + - uid: 3538 + components: + - pos: -6.5,-1.5 + parent: 1668 + type: Transform + - uid: 3539 + components: + - pos: -6.5,-0.5 + parent: 1668 + type: Transform + - uid: 3540 + components: + - pos: -6.5,0.5 + parent: 1668 + type: Transform + - uid: 3541 + components: + - pos: -6.5,1.5 + parent: 1668 + type: Transform + - uid: 3542 + components: + - pos: -6.5,2.5 + parent: 1668 + type: Transform + - uid: 3543 + components: + - pos: -6.5,3.5 + parent: 1668 + type: Transform + - uid: 3544 + components: + - pos: -7.5,-0.5 + parent: 1668 + type: Transform + - uid: 3545 + components: + - pos: -8.5,-0.5 + parent: 1668 + type: Transform + - uid: 3546 + components: + - pos: -9.5,-0.5 + parent: 1668 + type: Transform + - uid: 3547 + components: + - pos: -10.5,-0.5 + parent: 1668 + type: Transform + - uid: 3548 + components: + - pos: -11.5,-0.5 + parent: 1668 + type: Transform + - uid: 3549 + components: + - pos: -12.5,-0.5 + parent: 1668 + type: Transform + - uid: 3550 + components: + - pos: -13.5,-0.5 + parent: 1668 + type: Transform + - uid: 3551 + components: + - pos: -14.5,-0.5 + parent: 1668 + type: Transform + - uid: 3552 + components: + - pos: -15.5,-0.5 + parent: 1668 + type: Transform + - uid: 3553 + components: + - pos: -16.5,-0.5 + parent: 1668 + type: Transform + - uid: 3554 + components: + - pos: -17.5,-0.5 + parent: 1668 + type: Transform + - uid: 3555 + components: + - pos: -18.5,-0.5 + parent: 1668 + type: Transform + - uid: 3556 + components: + - pos: -19.5,-0.5 + parent: 1668 + type: Transform + - uid: 3557 + components: + - pos: -20.5,0.5 + parent: 1668 + type: Transform + - uid: 3558 + components: + - pos: -19.5,0.5 + parent: 1668 + type: Transform + - uid: 3559 + components: + - pos: -21.5,0.5 + parent: 1668 + type: Transform + - uid: 3560 + components: + - pos: -21.5,1.5 + parent: 1668 + type: Transform + - uid: 3561 + components: + - pos: -21.5,2.5 + parent: 1668 + type: Transform + - uid: 3562 + components: + - pos: -21.5,3.5 + parent: 1668 + type: Transform + - uid: 3563 + components: + - pos: -21.5,4.5 + parent: 1668 + type: Transform + - uid: 3564 + components: + - pos: -21.5,5.5 + parent: 1668 + type: Transform + - uid: 3565 + components: + - pos: -20.5,5.5 + parent: 1668 + type: Transform + - uid: 3566 + components: + - pos: -19.5,5.5 + parent: 1668 + type: Transform + - uid: 3567 + components: + - pos: -18.5,5.5 + parent: 1668 + type: Transform + - uid: 3568 + components: + - pos: -17.5,5.5 + parent: 1668 + type: Transform + - uid: 3569 + components: + - pos: -16.5,5.5 + parent: 1668 + type: Transform + - uid: 3570 + components: + - pos: -15.5,5.5 + parent: 1668 + type: Transform + - uid: 3571 + components: + - pos: -15.5,6.5 + parent: 1668 + type: Transform + - uid: 3574 + components: + - pos: -15.5,4.5 + parent: 1668 + type: Transform + - uid: 3950 + components: + - pos: -22.5,0.5 + parent: 1668 + type: Transform + - uid: 3951 + components: + - pos: -23.5,0.5 + parent: 1668 + type: Transform + - uid: 3952 + components: + - pos: -24.5,0.5 + parent: 1668 + type: Transform + - uid: 3953 + components: + - pos: -25.5,0.5 + parent: 1668 + type: Transform + - uid: 3954 + components: + - pos: -26.5,0.5 + parent: 1668 + type: Transform + - uid: 3955 + components: + - pos: -27.5,0.5 + parent: 1668 + type: Transform + - uid: 3956 + components: + - pos: -28.5,0.5 + parent: 1668 + type: Transform + - uid: 3957 + components: + - pos: -29.5,0.5 + parent: 1668 + type: Transform + - uid: 3958 + components: + - pos: -30.5,0.5 + parent: 1668 + type: Transform + - uid: 3959 + components: + - pos: -30.5,1.5 + parent: 1668 + type: Transform + - uid: 3960 + components: + - pos: -30.5,2.5 + parent: 1668 + type: Transform + - uid: 3961 + components: + - pos: -30.5,3.5 + parent: 1668 + type: Transform + - uid: 3962 + components: + - pos: -30.5,4.5 + parent: 1668 + type: Transform + - uid: 3963 + components: + - pos: -29.5,4.5 + parent: 1668 + type: Transform + - uid: 3964 + components: + - pos: -28.5,4.5 + parent: 1668 + type: Transform + - uid: 3965 + components: + - pos: -27.5,4.5 + parent: 1668 + type: Transform + - uid: 3966 + components: + - pos: -27.5,5.5 + parent: 1668 + type: Transform + - uid: 3967 + components: + - pos: -27.5,6.5 + parent: 1668 + type: Transform + - uid: 4359 + components: + - pos: 22.5,-16.5 + parent: 1668 + type: Transform + - uid: 4360 + components: + - pos: 22.5,-15.5 + parent: 1668 + type: Transform + - uid: 4577 + components: + - pos: 24.5,-25.5 + parent: 1668 + type: Transform + - uid: 4580 + components: + - pos: 19.5,-25.5 + parent: 1668 + type: Transform + - uid: 4634 + components: + - pos: 27.5,-27.5 + parent: 1668 + type: Transform + - uid: 4667 + components: + - pos: 5.5,-28.5 + parent: 1668 + type: Transform + - uid: 4668 + components: + - pos: 5.5,-27.5 + parent: 1668 + type: Transform + - uid: 4669 + components: + - pos: 5.5,-29.5 + parent: 1668 + type: Transform + - uid: 4764 + components: + - pos: 17.5,-17.5 + parent: 1668 + type: Transform + - uid: 4765 + components: + - pos: 16.5,-17.5 + parent: 1668 + type: Transform + - uid: 4766 + components: + - pos: 16.5,-18.5 + parent: 1668 + type: Transform + - uid: 4767 + components: + - pos: 16.5,-19.5 + parent: 1668 + type: Transform + - uid: 4768 + components: + - pos: 16.5,-20.5 + parent: 1668 + type: Transform + - uid: 4769 + components: + - pos: 17.5,-20.5 + parent: 1668 + type: Transform + - uid: 4770 + components: + - pos: 18.5,-20.5 + parent: 1668 + type: Transform + - uid: 4771 + components: + - pos: 19.5,-20.5 + parent: 1668 + type: Transform + - uid: 4772 + components: + - pos: 20.5,-20.5 + parent: 1668 + type: Transform + - uid: 4773 + components: + - pos: 20.5,-19.5 + parent: 1668 + type: Transform + - uid: 4774 + components: + - pos: 20.5,-18.5 + parent: 1668 + type: Transform + - uid: 4775 + components: + - pos: 20.5,-17.5 + parent: 1668 + type: Transform + - uid: 4776 + components: + - pos: 20.5,-16.5 + parent: 1668 + type: Transform + - uid: 4777 + components: + - pos: 20.5,-15.5 + parent: 1668 + type: Transform + - uid: 4778 + components: + - pos: 20.5,-14.5 + parent: 1668 + type: Transform + - uid: 4779 + components: + - pos: 16.5,-21.5 + parent: 1668 + type: Transform + - uid: 4780 + components: + - pos: 16.5,-22.5 + parent: 1668 + type: Transform + - uid: 4781 + components: + - pos: 16.5,-23.5 + parent: 1668 + type: Transform + - uid: 4782 + components: + - pos: 16.5,-24.5 + parent: 1668 + type: Transform + - uid: 4783 + components: + - pos: 16.5,-25.5 + parent: 1668 + type: Transform + - uid: 4784 + components: + - pos: 15.5,-25.5 + parent: 1668 + type: Transform + - uid: 4785 + components: + - pos: 14.5,-25.5 + parent: 1668 + type: Transform + - uid: 4786 + components: + - pos: 13.5,-25.5 + parent: 1668 + type: Transform + - uid: 4787 + components: + - pos: 12.5,-25.5 + parent: 1668 + type: Transform + - uid: 4788 + components: + - pos: 12.5,-24.5 + parent: 1668 + type: Transform + - uid: 4789 + components: + - pos: 12.5,-23.5 + parent: 1668 + type: Transform + - uid: 4790 + components: + - pos: 12.5,-22.5 + parent: 1668 + type: Transform + - uid: 4791 + components: + - pos: 12.5,-21.5 + parent: 1668 + type: Transform + - uid: 4792 + components: + - pos: 12.5,-20.5 + parent: 1668 + type: Transform + - uid: 4793 + components: + - pos: 12.5,-19.5 + parent: 1668 + type: Transform + - uid: 4794 + components: + - pos: 12.5,-18.5 + parent: 1668 + type: Transform + - uid: 4795 + components: + - pos: 11.5,-18.5 + parent: 1668 + type: Transform + - uid: 4796 + components: + - pos: 10.5,-18.5 + parent: 1668 + type: Transform + - uid: 4797 + components: + - pos: 9.5,-18.5 + parent: 1668 + type: Transform + - uid: 4798 + components: + - pos: 8.5,-18.5 + parent: 1668 + type: Transform + - uid: 4799 + components: + - pos: 7.5,-18.5 + parent: 1668 + type: Transform + - uid: 4800 + components: + - pos: 6.5,-18.5 + parent: 1668 + type: Transform + - uid: 4801 + components: + - pos: 5.5,-18.5 + parent: 1668 + type: Transform + - uid: 4802 + components: + - pos: 4.5,-18.5 + parent: 1668 + type: Transform + - uid: 4803 + components: + - pos: 3.5,-18.5 + parent: 1668 + type: Transform + - uid: 4804 + components: + - pos: 2.5,-18.5 + parent: 1668 + type: Transform + - uid: 4805 + components: + - pos: 1.5,-18.5 + parent: 1668 + type: Transform + - uid: 4806 + components: + - pos: 0.5,-18.5 + parent: 1668 + type: Transform + - uid: 4808 + components: + - pos: -0.5,-17.5 + parent: 1668 + type: Transform + - uid: 4809 + components: + - pos: -0.5,-16.5 + parent: 1668 + type: Transform + - uid: 4810 + components: + - pos: -0.5,-15.5 + parent: 1668 + type: Transform + - uid: 4811 + components: + - pos: -0.5,-14.5 + parent: 1668 + type: Transform + - uid: 4812 + components: + - pos: -0.5,-13.5 + parent: 1668 + type: Transform + - uid: 4813 + components: + - pos: -0.5,-12.5 + parent: 1668 + type: Transform + - uid: 4814 + components: + - pos: 15.5,-17.5 + parent: 1668 + type: Transform + - uid: 4856 + components: + - pos: 0.5,-17.5 + parent: 1668 + type: Transform + - uid: 4972 + components: + - pos: 15.5,-21.5 + parent: 1668 + type: Transform + - uid: 4974 + components: + - pos: 18.5,-17.5 + parent: 1668 + type: Transform + - uid: 4975 + components: + - pos: 19.5,-17.5 + parent: 1668 + type: Transform + - uid: 5071 + components: + - pos: 22.5,-17.5 + parent: 1668 + type: Transform + - uid: 5072 + components: + - pos: 23.5,-15.5 + parent: 1668 + type: Transform + - uid: 5073 + components: + - pos: 23.5,-16.5 + parent: 1668 + type: Transform + - uid: 5074 + components: + - pos: 23.5,-17.5 + parent: 1668 + type: Transform + - uid: 5081 + components: + - pos: 21.5,-16.5 + parent: 1668 + type: Transform + - uid: 5082 + components: + - pos: 21.5,-17.5 + parent: 1668 + type: Transform + - uid: 5083 + components: + - pos: 21.5,-15.5 + parent: 1668 + type: Transform + - uid: 5084 + components: + - pos: 24.5,-16.5 + parent: 1668 + type: Transform + - uid: 5085 + components: + - pos: 25.5,-16.5 + parent: 1668 + type: Transform + - uid: 5086 + components: + - pos: 26.5,-16.5 + parent: 1668 + type: Transform + - uid: 5087 + components: + - pos: 27.5,-16.5 + parent: 1668 + type: Transform + - uid: 5088 + components: + - pos: 28.5,-16.5 + parent: 1668 + type: Transform + - uid: 5089 + components: + - pos: 29.5,-16.5 + parent: 1668 + type: Transform + - uid: 5090 + components: + - pos: 30.5,-16.5 + parent: 1668 + type: Transform + - uid: 5091 + components: + - pos: 31.5,-16.5 + parent: 1668 + type: Transform + - uid: 5092 + components: + - pos: 32.5,-16.5 + parent: 1668 + type: Transform + - uid: 5093 + components: + - pos: 32.5,-17.5 + parent: 1668 + type: Transform + - uid: 5094 + components: + - pos: 32.5,-18.5 + parent: 1668 + type: Transform + - uid: 5095 + components: + - pos: 32.5,-19.5 + parent: 1668 + type: Transform + - uid: 5096 + components: + - pos: 32.5,-20.5 + parent: 1668 + type: Transform + - uid: 5097 + components: + - pos: 32.5,-21.5 + parent: 1668 + type: Transform + - uid: 5098 + components: + - pos: 32.5,-22.5 + parent: 1668 + type: Transform + - uid: 5099 + components: + - pos: 32.5,-23.5 + parent: 1668 + type: Transform + - uid: 5100 + components: + - pos: 32.5,-24.5 + parent: 1668 + type: Transform + - uid: 5101 + components: + - pos: 32.5,-25.5 + parent: 1668 + type: Transform + - uid: 5185 + components: + - pos: 31.5,-25.5 + parent: 1668 + type: Transform + - uid: 5186 + components: + - pos: 30.5,-25.5 + parent: 1668 + type: Transform + - uid: 5187 + components: + - pos: 33.5,-25.5 + parent: 1668 + type: Transform + - uid: 5188 + components: + - pos: 34.5,-25.5 + parent: 1668 + type: Transform + - uid: 5189 + components: + - pos: 34.5,-23.5 + parent: 1668 + type: Transform + - uid: 5190 + components: + - pos: 33.5,-23.5 + parent: 1668 + type: Transform + - uid: 5191 + components: + - pos: 31.5,-23.5 + parent: 1668 + type: Transform + - uid: 5192 + components: + - pos: 30.5,-23.5 + parent: 1668 + type: Transform + - uid: 5193 + components: + - pos: 31.5,-21.5 + parent: 1668 + type: Transform + - uid: 5194 + components: + - pos: 30.5,-21.5 + parent: 1668 + type: Transform + - uid: 5195 + components: + - pos: 33.5,-21.5 + parent: 1668 + type: Transform + - uid: 5196 + components: + - pos: 34.5,-21.5 + parent: 1668 + type: Transform + - uid: 5341 + components: + - pos: 27.5,-26.5 + parent: 1668 + type: Transform + - uid: 5342 + components: + - pos: 20.5,-25.5 + parent: 1668 + type: Transform + - uid: 5343 + components: + - pos: 23.5,-25.5 + parent: 1668 + type: Transform + - uid: 5370 + components: + - pos: 22.5,-25.5 + parent: 1668 + type: Transform + - uid: 5393 + components: + - pos: 27.5,-25.5 + parent: 1668 + type: Transform + - uid: 5807 + components: + - pos: -3.5,-27.5 + parent: 1668 + type: Transform + - uid: 5808 + components: + - pos: 1.5,-27.5 + parent: 1668 + type: Transform + - uid: 5809 + components: + - pos: 2.5,-27.5 + parent: 1668 + type: Transform + - uid: 5810 + components: + - pos: 3.5,-27.5 + parent: 1668 + type: Transform + - uid: 5811 + components: + - pos: 4.5,-27.5 + parent: 1668 + type: Transform + - uid: 5812 + components: + - pos: -1.5,-27.5 + parent: 1668 + type: Transform + - uid: 5813 + components: + - pos: -2.5,-27.5 + parent: 1668 + type: Transform + - uid: 6006 + components: + - pos: 12.5,-26.5 + parent: 1668 + type: Transform + - uid: 6007 + components: + - pos: 12.5,-27.5 + parent: 1668 + type: Transform + - uid: 6008 + components: + - pos: 12.5,-28.5 + parent: 1668 + type: Transform + - uid: 6009 + components: + - pos: 12.5,-29.5 + parent: 1668 + type: Transform + - uid: 6010 + components: + - pos: 12.5,-30.5 + parent: 1668 + type: Transform + - uid: 6011 + components: + - pos: 12.5,-31.5 + parent: 1668 + type: Transform + - uid: 6012 + components: + - pos: 11.5,-31.5 + parent: 1668 + type: Transform + - uid: 6013 + components: + - pos: 10.5,-31.5 + parent: 1668 + type: Transform + - uid: 6014 + components: + - pos: 9.5,-31.5 + parent: 1668 + type: Transform + - uid: 6015 + components: + - pos: 8.5,-31.5 + parent: 1668 + type: Transform + - uid: 6016 + components: + - pos: 7.5,-31.5 + parent: 1668 + type: Transform + - uid: 6017 + components: + - pos: 6.5,-31.5 + parent: 1668 + type: Transform + - uid: 6018 + components: + - pos: 5.5,-31.5 + parent: 1668 + type: Transform + - uid: 6019 + components: + - pos: -6.5,-28.5 + parent: 1668 + type: Transform + - uid: 6020 + components: + - pos: -6.5,-27.5 + parent: 1668 + type: Transform + - uid: 6021 + components: + - pos: -5.5,-27.5 + parent: 1668 + type: Transform + - uid: 6022 + components: + - pos: -0.5,-27.5 + parent: 1668 + type: Transform + - uid: 6023 + components: + - pos: 5.5,-30.5 + parent: 1668 + type: Transform + - uid: 6026 + components: + - pos: 0.5,-27.5 + parent: 1668 + type: Transform + - uid: 6027 + components: + - pos: -4.5,-27.5 + parent: 1668 + type: Transform + - uid: 6028 + components: + - pos: -6.5,-30.5 + parent: 1668 + type: Transform + - uid: 6029 + components: + - pos: -6.5,-29.5 + parent: 1668 + type: Transform + - uid: 6030 + components: + - pos: -6.5,-31.5 + parent: 1668 + type: Transform + - uid: 6031 + components: + - pos: -7.5,-31.5 + parent: 1668 + type: Transform + - uid: 6032 + components: + - pos: -8.5,-31.5 + parent: 1668 + type: Transform + - uid: 6033 + components: + - pos: -9.5,-31.5 + parent: 1668 + type: Transform + - uid: 6034 + components: + - pos: -10.5,-31.5 + parent: 1668 + type: Transform + - uid: 6035 + components: + - pos: -11.5,-31.5 + parent: 1668 + type: Transform + - uid: 6036 + components: + - pos: -12.5,-31.5 + parent: 1668 + type: Transform + - uid: 6037 + components: + - pos: -13.5,-31.5 + parent: 1668 + type: Transform + - uid: 6038 + components: + - pos: -14.5,-31.5 + parent: 1668 + type: Transform + - uid: 6039 + components: + - pos: -14.5,-30.5 + parent: 1668 + type: Transform + - uid: 6040 + components: + - pos: -14.5,-29.5 + parent: 1668 + type: Transform + - uid: 6041 + components: + - pos: -14.5,-28.5 + parent: 1668 + type: Transform + - uid: 6042 + components: + - pos: -14.5,-27.5 + parent: 1668 + type: Transform + - uid: 6043 + components: + - pos: -14.5,-26.5 + parent: 1668 + type: Transform + - uid: 6044 + components: + - pos: -14.5,-25.5 + parent: 1668 + type: Transform + - uid: 6045 + components: + - pos: -15.5,-25.5 + parent: 1668 + type: Transform + - uid: 6046 + components: + - pos: -16.5,-25.5 + parent: 1668 + type: Transform + - uid: 6047 + components: + - pos: -17.5,-25.5 + parent: 1668 + type: Transform + - uid: 6048 + components: + - pos: -18.5,-25.5 + parent: 1668 + type: Transform + - uid: 6049 + components: + - pos: -18.5,-26.5 + parent: 1668 + type: Transform + - uid: 6050 + components: + - pos: -18.5,-27.5 + parent: 1668 + type: Transform + - uid: 6051 + components: + - pos: -18.5,-28.5 + parent: 1668 + type: Transform + - uid: 6052 + components: + - pos: -18.5,-29.5 + parent: 1668 + type: Transform + - uid: 6053 + components: + - pos: -17.5,-29.5 + parent: 1668 + type: Transform + - uid: 6054 + components: + - pos: -16.5,-29.5 + parent: 1668 + type: Transform + - uid: 6166 + components: + - pos: -6.5,-32.5 + parent: 1668 + type: Transform + - uid: 6167 + components: + - pos: -5.5,-32.5 + parent: 1668 + type: Transform + - uid: 6168 + components: + - pos: -4.5,-32.5 + parent: 1668 + type: Transform + - uid: 6169 + components: + - pos: -3.5,-32.5 + parent: 1668 + type: Transform + - uid: 6170 + components: + - pos: -2.5,-32.5 + parent: 1668 + type: Transform + - uid: 6171 + components: + - pos: -2.5,-33.5 + parent: 1668 + type: Transform + - uid: 6172 + components: + - pos: -2.5,-31.5 + parent: 1668 + type: Transform + - uid: 6173 + components: + - pos: 5.5,-32.5 + parent: 1668 + type: Transform + - uid: 6174 + components: + - pos: 4.5,-32.5 + parent: 1668 + type: Transform + - uid: 6175 + components: + - pos: 3.5,-32.5 + parent: 1668 + type: Transform + - uid: 6176 + components: + - pos: 2.5,-32.5 + parent: 1668 + type: Transform + - uid: 6177 + components: + - pos: 1.5,-32.5 + parent: 1668 + type: Transform + - uid: 6178 + components: + - pos: 1.5,-33.5 + parent: 1668 + type: Transform + - uid: 6179 + components: + - pos: 1.5,-31.5 + parent: 1668 + type: Transform + - uid: 6253 + components: + - pos: -3.5,-33.5 + parent: 1668 + type: Transform + - uid: 6254 + components: + - pos: -3.5,-34.5 + parent: 1668 + type: Transform + - uid: 6255 + components: + - pos: -3.5,-35.5 + parent: 1668 + type: Transform + - uid: 6256 + components: + - pos: -2.5,-35.5 + parent: 1668 + type: Transform + - uid: 6257 + components: + - pos: -1.5,-35.5 + parent: 1668 + type: Transform + - uid: 6258 + components: + - pos: -0.5,-35.5 + parent: 1668 + type: Transform + - uid: 6259 + components: + - pos: 0.5,-35.5 + parent: 1668 + type: Transform + - uid: 6260 + components: + - pos: 1.5,-35.5 + parent: 1668 + type: Transform + - uid: 6261 + components: + - pos: 2.5,-35.5 + parent: 1668 + type: Transform + - uid: 6262 + components: + - pos: 2.5,-34.5 + parent: 1668 + type: Transform + - uid: 6263 + components: + - pos: 2.5,-33.5 + parent: 1668 + type: Transform + - uid: 6264 + components: + - pos: -0.5,-34.5 + parent: 1668 + type: Transform + - uid: 6265 + components: + - pos: 0.5,-34.5 + parent: 1668 + type: Transform + - uid: 6266 + components: + - pos: -1.5,-34.5 + parent: 1668 + type: Transform + - uid: 6594 + components: + - pos: 27.5,-29.5 + parent: 1668 + type: Transform + - uid: 6631 + components: + - pos: 27.5,-28.5 + parent: 1668 + type: Transform + - uid: 6773 + components: + - pos: 17.5,-25.5 + parent: 1668 + type: Transform + - uid: 6777 + components: + - pos: 27.5,-30.5 + parent: 1668 + type: Transform + - uid: 6786 + components: + - pos: 21.5,-25.5 + parent: 1668 + type: Transform +- proto: CableMV + entities: + - uid: 1146 + components: + - pos: 15.5,-13.5 + parent: 1668 + type: Transform + - uid: 1147 + components: + - pos: 16.5,-13.5 + parent: 1668 + type: Transform + - uid: 1148 + components: + - pos: 17.5,-13.5 + parent: 1668 + type: Transform + - uid: 1149 + components: + - pos: 17.5,-12.5 + parent: 1668 + type: Transform + - uid: 1150 + components: + - pos: 17.5,-11.5 + parent: 1668 + type: Transform + - uid: 1151 + components: + - pos: 18.5,-11.5 + parent: 1668 + type: Transform + - uid: 1153 + components: + - pos: 19.5,-11.5 + parent: 1668 + type: Transform + - uid: 1154 + components: + - pos: 21.5,-11.5 + parent: 1668 + type: Transform + - uid: 1155 + components: + - pos: 22.5,-11.5 + parent: 1668 + type: Transform + - uid: 1156 + components: + - pos: 23.5,-11.5 + parent: 1668 + type: Transform + - uid: 1157 + components: + - pos: 23.5,-10.5 + parent: 1668 + type: Transform + - uid: 1158 + components: + - pos: 17.5,-10.5 + parent: 1668 + type: Transform + - uid: 1159 + components: + - pos: 17.5,-9.5 + parent: 1668 + type: Transform + - uid: 1160 + components: + - pos: 17.5,-8.5 + parent: 1668 + type: Transform + - uid: 1161 + components: + - pos: 17.5,-7.5 + parent: 1668 + type: Transform + - uid: 1162 + components: + - pos: 17.5,-6.5 + parent: 1668 + type: Transform + - uid: 1163 + components: + - pos: 18.5,-6.5 + parent: 1668 + type: Transform + - uid: 1164 + components: + - pos: 19.5,-6.5 + parent: 1668 + type: Transform + - uid: 1165 + components: + - pos: 20.5,-6.5 + parent: 1668 + type: Transform + - uid: 1166 + components: + - pos: 20.5,-7.5 + parent: 1668 + type: Transform + - uid: 1167 + components: + - pos: 16.5,-6.5 + parent: 1668 + type: Transform + - uid: 1168 + components: + - pos: 15.5,-6.5 + parent: 1668 + type: Transform + - uid: 1169 + components: + - pos: 13.5,-6.5 + parent: 1668 + type: Transform + - uid: 1170 + components: + - pos: 14.5,-6.5 + parent: 1668 + type: Transform + - uid: 1171 + components: + - pos: 12.5,-6.5 + parent: 1668 + type: Transform + - uid: 1172 + components: + - pos: 11.5,-6.5 + parent: 1668 + type: Transform + - uid: 1173 + components: + - pos: 10.5,-6.5 + parent: 1668 + type: Transform + - uid: 1174 + components: + - pos: 10.5,-5.5 + parent: 1668 + type: Transform + - uid: 1175 + components: + - pos: 10.5,-4.5 + parent: 1668 + type: Transform + - uid: 1176 + components: + - pos: 10.5,-3.5 + parent: 1668 + type: Transform + - uid: 1182 + components: + - pos: 19.5,-10.5 + parent: 1668 + type: Transform + - uid: 1321 + components: + - pos: -3.5,4.5 + parent: 1668 + type: Transform + - uid: 1323 + components: + - pos: 16.5,-11.5 + parent: 1668 + type: Transform + - uid: 1324 + components: + - pos: 15.5,-11.5 + parent: 1668 + type: Transform + - uid: 1325 + components: + - pos: 14.5,-11.5 + parent: 1668 + type: Transform + - uid: 1326 + components: + - pos: 13.5,-11.5 + parent: 1668 + type: Transform + - uid: 1327 + components: + - pos: 12.5,-11.5 + parent: 1668 + type: Transform + - uid: 1328 + components: + - pos: 12.5,-10.5 + parent: 1668 + type: Transform + - uid: 1329 + components: + - pos: 11.5,-11.5 + parent: 1668 + type: Transform + - uid: 1330 + components: + - pos: 10.5,-11.5 + parent: 1668 + type: Transform + - uid: 1331 + components: + - pos: 9.5,-11.5 + parent: 1668 + type: Transform + - uid: 1332 + components: + - pos: 8.5,-11.5 + parent: 1668 + type: Transform + - uid: 1333 + components: + - pos: 7.5,-11.5 + parent: 1668 + type: Transform + - uid: 1334 + components: + - pos: 6.5,-11.5 + parent: 1668 + type: Transform + - uid: 1335 + components: + - pos: 5.5,-11.5 + parent: 1668 + type: Transform + - uid: 1336 + components: + - pos: 4.5,-11.5 + parent: 1668 + type: Transform + - uid: 1337 + components: + - pos: 3.5,-11.5 + parent: 1668 + type: Transform + - uid: 1338 + components: + - pos: 3.5,-10.5 + parent: 1668 + type: Transform + - uid: 1339 + components: + - pos: 3.5,-9.5 + parent: 1668 + type: Transform + - uid: 1340 + components: + - pos: 3.5,-8.5 + parent: 1668 + type: Transform + - uid: 1483 + components: + - pos: 27.5,-31.5 + parent: 1668 + type: Transform + - uid: 1486 + components: + - pos: 28.5,-31.5 + parent: 1668 + type: Transform + - uid: 1487 + components: + - pos: 30.5,-31.5 + parent: 1668 + type: Transform + - uid: 1658 + components: + - pos: 31.5,-31.5 + parent: 1668 + type: Transform + - uid: 1805 + components: + - pos: -3.5,20.5 + parent: 1668 + type: Transform + - uid: 1806 + components: + - pos: -3.5,21.5 + parent: 1668 + type: Transform + - uid: 1807 + components: + - pos: -4.5,21.5 + parent: 1668 + type: Transform + - uid: 1808 + components: + - pos: -5.5,21.5 + parent: 1668 + type: Transform + - uid: 1809 + components: + - pos: -5.5,20.5 + parent: 1668 + type: Transform + - uid: 1810 + components: + - pos: -5.5,19.5 + parent: 1668 + type: Transform + - uid: 1811 + components: + - pos: -4.5,19.5 + parent: 1668 + type: Transform + - uid: 1812 + components: + - pos: -6.5,19.5 + parent: 1668 + type: Transform + - uid: 1813 + components: + - pos: -6.5,18.5 + parent: 1668 + type: Transform + - uid: 1814 + components: + - pos: -6.5,17.5 + parent: 1668 + type: Transform + - uid: 1815 + components: + - pos: -5.5,17.5 + parent: 1668 + type: Transform + - uid: 1816 + components: + - pos: -4.5,17.5 + parent: 1668 + type: Transform + - uid: 1817 + components: + - pos: -6.5,16.5 + parent: 1668 + type: Transform + - uid: 1818 + components: + - pos: -6.5,15.5 + parent: 1668 + type: Transform + - uid: 1819 + components: + - pos: -6.5,14.5 + parent: 1668 + type: Transform + - uid: 1820 + components: + - pos: -6.5,13.5 + parent: 1668 + type: Transform + - uid: 1821 + components: + - pos: -6.5,12.5 + parent: 1668 + type: Transform + - uid: 1822 + components: + - pos: -7.5,12.5 + parent: 1668 + type: Transform + - uid: 1823 + components: + - pos: -8.5,12.5 + parent: 1668 + type: Transform + - uid: 1824 + components: + - pos: -8.5,13.5 + parent: 1668 + type: Transform + - uid: 1825 + components: + - pos: -5.5,12.5 + parent: 1668 + type: Transform + - uid: 1826 + components: + - pos: -5.5,11.5 + parent: 1668 + type: Transform + - uid: 1827 + components: + - pos: -4.5,11.5 + parent: 1668 + type: Transform + - uid: 1828 + components: + - pos: -7.5,19.5 + parent: 1668 + type: Transform + - uid: 1829 + components: + - pos: -8.5,19.5 + parent: 1668 + type: Transform + - uid: 1830 + components: + - pos: -9.5,19.5 + parent: 1668 + type: Transform + - uid: 1831 + components: + - pos: -10.5,19.5 + parent: 1668 + type: Transform + - uid: 1832 + components: + - pos: -10.5,18.5 + parent: 1668 + type: Transform + - uid: 1833 + components: + - pos: -10.5,17.5 + parent: 1668 + type: Transform + - uid: 1834 + components: + - pos: -11.5,17.5 + parent: 1668 + type: Transform + - uid: 1835 + components: + - pos: -12.5,17.5 + parent: 1668 + type: Transform + - uid: 1836 + components: + - pos: -13.5,17.5 + parent: 1668 + type: Transform + - uid: 1837 + components: + - pos: -14.5,17.5 + parent: 1668 + type: Transform + - uid: 1838 + components: + - pos: -14.5,18.5 + parent: 1668 + type: Transform + - uid: 1839 + components: + - pos: 2.5,20.5 + parent: 1668 + type: Transform + - uid: 1840 + components: + - pos: 1.5,20.5 + parent: 1668 + type: Transform + - uid: 1841 + components: + - pos: 0.5,20.5 + parent: 1668 + type: Transform + - uid: 1842 + components: + - pos: -0.5,20.5 + parent: 1668 + type: Transform + - uid: 1843 + components: + - pos: -0.5,19.5 + parent: 1668 + type: Transform + - uid: 1844 + components: + - pos: -0.5,18.5 + parent: 1668 + type: Transform + - uid: 1845 + components: + - pos: -0.5,17.5 + parent: 1668 + type: Transform + - uid: 1846 + components: + - pos: -0.5,16.5 + parent: 1668 + type: Transform + - uid: 1847 + components: + - pos: -0.5,15.5 + parent: 1668 + type: Transform + - uid: 1848 + components: + - pos: -0.5,14.5 + parent: 1668 + type: Transform + - uid: 1849 + components: + - pos: -0.5,13.5 + parent: 1668 + type: Transform + - uid: 1850 + components: + - pos: -0.5,12.5 + parent: 1668 + type: Transform + - uid: 1851 + components: + - pos: -0.5,11.5 + parent: 1668 + type: Transform + - uid: 1852 + components: + - pos: -0.5,10.5 + parent: 1668 + type: Transform + - uid: 1853 + components: + - pos: -0.5,9.5 + parent: 1668 + type: Transform + - uid: 1854 + components: + - pos: -0.5,8.5 + parent: 1668 + type: Transform + - uid: 1855 + components: + - pos: -0.5,7.5 + parent: 1668 + type: Transform + - uid: 1856 + components: + - pos: -0.5,6.5 + parent: 1668 + type: Transform + - uid: 1857 + components: + - pos: -0.5,5.5 + parent: 1668 + type: Transform + - uid: 1858 + components: + - pos: -0.5,4.5 + parent: 1668 + type: Transform + - uid: 1859 + components: + - pos: -1.5,4.5 + parent: 1668 + type: Transform + - uid: 1860 + components: + - pos: -2.5,4.5 + parent: 1668 + type: Transform + - uid: 1862 + components: + - pos: -2.5,3.5 + parent: 1668 + type: Transform + - uid: 1863 + components: + - pos: -2.5,2.5 + parent: 1668 + type: Transform + - uid: 2014 + components: + - pos: 0.5,16.5 + parent: 1668 + type: Transform + - uid: 2015 + components: + - pos: 1.5,16.5 + parent: 1668 + type: Transform + - uid: 2016 + components: + - pos: 1.5,17.5 + parent: 1668 + type: Transform + - uid: 2017 + components: + - pos: -0.5,21.5 + parent: 1668 + type: Transform + - uid: 2018 + components: + - pos: -1.5,21.5 + parent: 1668 + type: Transform + - uid: 2019 + components: + - pos: -1.5,22.5 + parent: 1668 + type: Transform + - uid: 2056 + components: + - pos: -3.5,5.5 + parent: 1668 + type: Transform + - uid: 2947 + components: + - pos: 15.5,19.5 + parent: 1668 + type: Transform + - uid: 2948 + components: + - pos: 15.5,18.5 + parent: 1668 + type: Transform + - uid: 2949 + components: + - pos: 14.5,18.5 + parent: 1668 + type: Transform + - uid: 2950 + components: + - pos: 14.5,17.5 + parent: 1668 + type: Transform + - uid: 2951 + components: + - pos: 14.5,16.5 + parent: 1668 + type: Transform + - uid: 2952 + components: + - pos: 14.5,15.5 + parent: 1668 + type: Transform + - uid: 2953 + components: + - pos: 14.5,14.5 + parent: 1668 + type: Transform + - uid: 2954 + components: + - pos: 14.5,13.5 + parent: 1668 + type: Transform + - uid: 2955 + components: + - pos: 15.5,13.5 + parent: 1668 + type: Transform + - uid: 2956 + components: + - pos: 16.5,13.5 + parent: 1668 + type: Transform + - uid: 2957 + components: + - pos: 17.5,13.5 + parent: 1668 + type: Transform + - uid: 2958 + components: + - pos: 17.5,14.5 + parent: 1668 + type: Transform + - uid: 2959 + components: + - pos: 17.5,15.5 + parent: 1668 + type: Transform + - uid: 2960 + components: + - pos: 17.5,16.5 + parent: 1668 + type: Transform + - uid: 2961 + components: + - pos: 17.5,17.5 + parent: 1668 + type: Transform + - uid: 2962 + components: + - pos: 17.5,12.5 + parent: 1668 + type: Transform + - uid: 2963 + components: + - pos: 18.5,12.5 + parent: 1668 + type: Transform + - uid: 2964 + components: + - pos: 19.5,12.5 + parent: 1668 + type: Transform + - uid: 2965 + components: + - pos: 20.5,12.5 + parent: 1668 + type: Transform + - uid: 2966 + components: + - pos: 21.5,12.5 + parent: 1668 + type: Transform + - uid: 2967 + components: + - pos: 22.5,12.5 + parent: 1668 + type: Transform + - uid: 2968 + components: + - pos: 23.5,12.5 + parent: 1668 + type: Transform + - uid: 2969 + components: + - pos: 24.5,12.5 + parent: 1668 + type: Transform + - uid: 2970 + components: + - pos: 24.5,13.5 + parent: 1668 + type: Transform + - uid: 2971 + components: + - pos: 24.5,14.5 + parent: 1668 + type: Transform + - uid: 2972 + components: + - pos: 19.5,13.5 + parent: 1668 + type: Transform + - uid: 2973 + components: + - pos: 19.5,14.5 + parent: 1668 + type: Transform + - uid: 2974 + components: + - pos: 19.5,15.5 + parent: 1668 + type: Transform + - uid: 2975 + components: + - pos: 19.5,16.5 + parent: 1668 + type: Transform + - uid: 2976 + components: + - pos: 19.5,17.5 + parent: 1668 + type: Transform + - uid: 2977 + components: + - pos: 19.5,18.5 + parent: 1668 + type: Transform + - uid: 2978 + components: + - pos: 19.5,19.5 + parent: 1668 + type: Transform + - uid: 2979 + components: + - pos: 19.5,20.5 + parent: 1668 + type: Transform + - uid: 2980 + components: + - pos: 19.5,21.5 + parent: 1668 + type: Transform + - uid: 2981 + components: + - pos: 20.5,21.5 + parent: 1668 + type: Transform + - uid: 2982 + components: + - pos: 21.5,21.5 + parent: 1668 + type: Transform + - uid: 2983 + components: + - pos: 25.5,12.5 + parent: 1668 + type: Transform + - uid: 2984 + components: + - pos: 26.5,12.5 + parent: 1668 + type: Transform + - uid: 2985 + components: + - pos: 27.5,12.5 + parent: 1668 + type: Transform + - uid: 2986 + components: + - pos: 28.5,12.5 + parent: 1668 + type: Transform + - uid: 2987 + components: + - pos: 29.5,12.5 + parent: 1668 + type: Transform + - uid: 2988 + components: + - pos: 30.5,12.5 + parent: 1668 + type: Transform + - uid: 2989 + components: + - pos: 31.5,12.5 + parent: 1668 + type: Transform + - uid: 2990 + components: + - pos: 32.5,12.5 + parent: 1668 + type: Transform + - uid: 2991 + components: + - pos: 33.5,12.5 + parent: 1668 + type: Transform + - uid: 2992 + components: + - pos: 34.5,12.5 + parent: 1668 + type: Transform + - uid: 2993 + components: + - pos: 34.5,13.5 + parent: 1668 + type: Transform + - uid: 2994 + components: + - pos: 34.5,14.5 + parent: 1668 + type: Transform + - uid: 2995 + components: + - pos: 34.5,15.5 + parent: 1668 + type: Transform + - uid: 2996 + components: + - pos: 34.5,16.5 + parent: 1668 + type: Transform + - uid: 2997 + components: + - pos: 34.5,17.5 + parent: 1668 + type: Transform + - uid: 2998 + components: + - pos: 34.5,18.5 + parent: 1668 + type: Transform + - uid: 2999 + components: + - pos: 34.5,19.5 + parent: 1668 + type: Transform + - uid: 3000 + components: + - pos: 35.5,19.5 + parent: 1668 + type: Transform + - uid: 3001 + components: + - pos: 13.5,15.5 + parent: 1668 + type: Transform + - uid: 3002 + components: + - pos: 12.5,15.5 + parent: 1668 + type: Transform + - uid: 3003 + components: + - pos: 11.5,15.5 + parent: 1668 + type: Transform + - uid: 3004 + components: + - pos: 10.5,15.5 + parent: 1668 + type: Transform + - uid: 3005 + components: + - pos: 9.5,15.5 + parent: 1668 + type: Transform + - uid: 3006 + components: + - pos: 8.5,15.5 + parent: 1668 + type: Transform + - uid: 3007 + components: + - pos: 7.5,15.5 + parent: 1668 + type: Transform + - uid: 3008 + components: + - pos: 7.5,16.5 + parent: 1668 + type: Transform + - uid: 3009 + components: + - pos: 11.5,16.5 + parent: 1668 + type: Transform + - uid: 3010 + components: + - pos: 11.5,17.5 + parent: 1668 + type: Transform + - uid: 3011 + components: + - pos: 11.5,18.5 + parent: 1668 + type: Transform + - uid: 3012 + components: + - pos: 11.5,19.5 + parent: 1668 + type: Transform + - uid: 3013 + components: + - pos: 11.5,20.5 + parent: 1668 + type: Transform + - uid: 3014 + components: + - pos: 11.5,21.5 + parent: 1668 + type: Transform + - uid: 3015 + components: + - pos: 10.5,21.5 + parent: 1668 + type: Transform + - uid: 3016 + components: + - pos: 9.5,21.5 + parent: 1668 + type: Transform + - uid: 3017 + components: + - pos: 9.5,20.5 + parent: 1668 + type: Transform + - uid: 3018 + components: + - pos: 9.5,19.5 + parent: 1668 + type: Transform + - uid: 3019 + components: + - pos: 9.5,18.5 + parent: 1668 + type: Transform + - uid: 3020 + components: + - pos: 8.5,18.5 + parent: 1668 + type: Transform + - uid: 3021 + components: + - pos: 7.5,18.5 + parent: 1668 + type: Transform + - uid: 3022 + components: + - pos: 9.5,22.5 + parent: 1668 + type: Transform + - uid: 3023 + components: + - pos: 9.5,23.5 + parent: 1668 + type: Transform + - uid: 3024 + components: + - pos: 9.5,24.5 + parent: 1668 + type: Transform + - uid: 3025 + components: + - pos: 9.5,25.5 + parent: 1668 + type: Transform + - uid: 3026 + components: + - pos: 9.5,26.5 + parent: 1668 + type: Transform + - uid: 3027 + components: + - pos: 9.5,27.5 + parent: 1668 + type: Transform + - uid: 3028 + components: + - pos: 9.5,28.5 + parent: 1668 + type: Transform + - uid: 3029 + components: + - pos: 9.5,29.5 + parent: 1668 + type: Transform + - uid: 3030 + components: + - pos: 9.5,30.5 + parent: 1668 + type: Transform + - uid: 3031 + components: + - pos: 8.5,30.5 + parent: 1668 + type: Transform + - uid: 3032 + components: + - pos: 7.5,30.5 + parent: 1668 + type: Transform + - uid: 3575 + components: + - pos: -15.5,6.5 + parent: 1668 + type: Transform + - uid: 3576 + components: + - pos: -15.5,5.5 + parent: 1668 + type: Transform + - uid: 3578 + components: + - pos: -14.5,6.5 + parent: 1668 + type: Transform + - uid: 3579 + components: + - pos: -13.5,6.5 + parent: 1668 + type: Transform + - uid: 3580 + components: + - pos: -16.5,5.5 + parent: 1668 + type: Transform + - uid: 3581 + components: + - pos: -17.5,5.5 + parent: 1668 + type: Transform + - uid: 3582 + components: + - pos: -18.5,5.5 + parent: 1668 + type: Transform + - uid: 3583 + components: + - pos: -19.5,5.5 + parent: 1668 + type: Transform + - uid: 3584 + components: + - pos: -20.5,5.5 + parent: 1668 + type: Transform + - uid: 3585 + components: + - pos: -21.5,5.5 + parent: 1668 + type: Transform + - uid: 3586 + components: + - pos: -22.5,5.5 + parent: 1668 + type: Transform + - uid: 3587 + components: + - pos: -22.5,6.5 + parent: 1668 + type: Transform + - uid: 3588 + components: + - pos: -22.5,7.5 + parent: 1668 + type: Transform + - uid: 3589 + components: + - pos: -22.5,8.5 + parent: 1668 + type: Transform + - uid: 3590 + components: + - pos: -22.5,9.5 + parent: 1668 + type: Transform + - uid: 3591 + components: + - pos: -22.5,10.5 + parent: 1668 + type: Transform + - uid: 3592 + components: + - pos: -22.5,11.5 + parent: 1668 + type: Transform + - uid: 3593 + components: + - pos: -22.5,12.5 + parent: 1668 + type: Transform + - uid: 3594 + components: + - pos: -22.5,13.5 + parent: 1668 + type: Transform + - uid: 3595 + components: + - pos: -21.5,11.5 + parent: 1668 + type: Transform + - uid: 3596 + components: + - pos: -20.5,11.5 + parent: 1668 + type: Transform + - uid: 3597 + components: + - pos: -19.5,11.5 + parent: 1668 + type: Transform + - uid: 3598 + components: + - pos: -18.5,11.5 + parent: 1668 + type: Transform + - uid: 3599 + components: + - pos: -17.5,11.5 + parent: 1668 + type: Transform + - uid: 3600 + components: + - pos: -16.5,11.5 + parent: 1668 + type: Transform + - uid: 3601 + components: + - pos: -16.5,12.5 + parent: 1668 + type: Transform + - uid: 3602 + components: + - pos: -16.5,13.5 + parent: 1668 + type: Transform + - uid: 4105 + components: + - pos: -31.5,2.5 + parent: 1668 + type: Transform + - uid: 4106 + components: + - pos: -31.5,3.5 + parent: 1668 + type: Transform + - uid: 4107 + components: + - pos: -31.5,4.5 + parent: 1668 + type: Transform + - uid: 4108 + components: + - pos: -31.5,5.5 + parent: 1668 + type: Transform + - uid: 4109 + components: + - pos: -31.5,6.5 + parent: 1668 + type: Transform + - uid: 4110 + components: + - pos: -30.5,4.5 + parent: 1668 + type: Transform + - uid: 4111 + components: + - pos: -29.5,4.5 + parent: 1668 + type: Transform + - uid: 4112 + components: + - pos: -28.5,4.5 + parent: 1668 + type: Transform + - uid: 4113 + components: + - pos: -27.5,4.5 + parent: 1668 + type: Transform + - uid: 4114 + components: + - pos: -27.5,5.5 + parent: 1668 + type: Transform + - uid: 4115 + components: + - pos: -27.5,6.5 + parent: 1668 + type: Transform + - uid: 4116 + components: + - pos: -31.5,7.5 + parent: 1668 + type: Transform + - uid: 4117 + components: + - pos: -31.5,1.5 + parent: 1668 + type: Transform + - uid: 4118 + components: + - pos: -31.5,0.5 + parent: 1668 + type: Transform + - uid: 4119 + components: + - pos: -31.5,-0.5 + parent: 1668 + type: Transform + - uid: 4120 + components: + - pos: -30.5,-0.5 + parent: 1668 + type: Transform + - uid: 4121 + components: + - pos: -29.5,-0.5 + parent: 1668 + type: Transform + - uid: 4122 + components: + - pos: -28.5,-0.5 + parent: 1668 + type: Transform + - uid: 4123 + components: + - pos: -27.5,-0.5 + parent: 1668 + type: Transform + - uid: 4124 + components: + - pos: -26.5,-0.5 + parent: 1668 + type: Transform + - uid: 4125 + components: + - pos: -25.5,-0.5 + parent: 1668 + type: Transform + - uid: 4126 + components: + - pos: -24.5,-0.5 + parent: 1668 + type: Transform + - uid: 4127 + components: + - pos: -23.5,-0.5 + parent: 1668 + type: Transform + - uid: 4128 + components: + - pos: -22.5,-0.5 + parent: 1668 + type: Transform + - uid: 4129 + components: + - pos: -21.5,-0.5 + parent: 1668 + type: Transform + - uid: 4130 + components: + - pos: -21.5,-1.5 + parent: 1668 + type: Transform + - uid: 4131 + components: + - pos: -21.5,-2.5 + parent: 1668 + type: Transform + - uid: 4132 + components: + - pos: -20.5,-0.5 + parent: 1668 + type: Transform + - uid: 4133 + components: + - pos: -19.5,-0.5 + parent: 1668 + type: Transform + - uid: 4134 + components: + - pos: -18.5,-0.5 + parent: 1668 + type: Transform + - uid: 4135 + components: + - pos: -17.5,-0.5 + parent: 1668 + type: Transform + - uid: 4136 + components: + - pos: -17.5,0.5 + parent: 1668 + type: Transform + - uid: 4137 + components: + - pos: -17.5,1.5 + parent: 1668 + type: Transform + - uid: 4138 + components: + - pos: -16.5,-0.5 + parent: 1668 + type: Transform + - uid: 4139 + components: + - pos: -15.5,-0.5 + parent: 1668 + type: Transform + - uid: 4140 + components: + - pos: -14.5,-0.5 + parent: 1668 + type: Transform + - uid: 4141 + components: + - pos: -13.5,-0.5 + parent: 1668 + type: Transform + - uid: 4142 + components: + - pos: -13.5,-1.5 + parent: 1668 + type: Transform + - uid: 4143 + components: + - pos: -13.5,-2.5 + parent: 1668 + type: Transform + - uid: 4257 + components: + - pos: 29.5,-31.5 + parent: 1668 + type: Transform + - uid: 4807 + components: + - pos: 0.5,-17.5 + parent: 1668 + type: Transform + - uid: 4817 + components: + - pos: 15.5,-17.5 + parent: 1668 + type: Transform + - uid: 4818 + components: + - pos: 15.5,-18.5 + parent: 1668 + type: Transform + - uid: 4819 + components: + - pos: 16.5,-18.5 + parent: 1668 + type: Transform + - uid: 4820 + components: + - pos: 16.5,-19.5 + parent: 1668 + type: Transform + - uid: 4821 + components: + - pos: 16.5,-20.5 + parent: 1668 + type: Transform + - uid: 4822 + components: + - pos: 16.5,-21.5 + parent: 1668 + type: Transform + - uid: 4823 + components: + - pos: 16.5,-22.5 + parent: 1668 + type: Transform + - uid: 4824 + components: + - pos: 16.5,-23.5 + parent: 1668 + type: Transform + - uid: 4825 + components: + - pos: 15.5,-23.5 + parent: 1668 + type: Transform + - uid: 4826 + components: + - pos: 14.5,-23.5 + parent: 1668 + type: Transform + - uid: 4827 + components: + - pos: 13.5,-23.5 + parent: 1668 + type: Transform + - uid: 4828 + components: + - pos: 13.5,-22.5 + parent: 1668 + type: Transform + - uid: 4829 + components: + - pos: 12.5,-22.5 + parent: 1668 + type: Transform + - uid: 4830 + components: + - pos: 11.5,-22.5 + parent: 1668 + type: Transform + - uid: 4831 + components: + - pos: 10.5,-22.5 + parent: 1668 + type: Transform + - uid: 4832 + components: + - pos: 9.5,-22.5 + parent: 1668 + type: Transform + - uid: 4833 + components: + - pos: 8.5,-22.5 + parent: 1668 + type: Transform + - uid: 4834 + components: + - pos: 8.5,-23.5 + parent: 1668 + type: Transform + - uid: 4835 + components: + - pos: 8.5,-24.5 + parent: 1668 + type: Transform + - uid: 4836 + components: + - pos: 7.5,-24.5 + parent: 1668 + type: Transform + - uid: 4837 + components: + - pos: 12.5,-21.5 + parent: 1668 + type: Transform + - uid: 4838 + components: + - pos: 12.5,-20.5 + parent: 1668 + type: Transform + - uid: 4839 + components: + - pos: 12.5,-19.5 + parent: 1668 + type: Transform + - uid: 4840 + components: + - pos: 11.5,-19.5 + parent: 1668 + type: Transform + - uid: 4841 + components: + - pos: 10.5,-19.5 + parent: 1668 + type: Transform + - uid: 4842 + components: + - pos: 9.5,-19.5 + parent: 1668 + type: Transform + - uid: 4843 + components: + - pos: 8.5,-19.5 + parent: 1668 + type: Transform + - uid: 4844 + components: + - pos: 8.5,-18.5 + parent: 1668 + type: Transform + - uid: 4845 + components: + - pos: 8.5,-17.5 + parent: 1668 + type: Transform + - uid: 4846 + components: + - pos: 7.5,-18.5 + parent: 1668 + type: Transform + - uid: 4847 + components: + - pos: 6.5,-18.5 + parent: 1668 + type: Transform + - uid: 4848 + components: + - pos: 5.5,-18.5 + parent: 1668 + type: Transform + - uid: 4849 + components: + - pos: 4.5,-18.5 + parent: 1668 + type: Transform + - uid: 4850 + components: + - pos: 3.5,-18.5 + parent: 1668 + type: Transform + - uid: 4851 + components: + - pos: 2.5,-18.5 + parent: 1668 + type: Transform + - uid: 4852 + components: + - pos: 1.5,-18.5 + parent: 1668 + type: Transform + - uid: 4853 + components: + - pos: 1.5,-19.5 + parent: 1668 + type: Transform + - uid: 4854 + components: + - pos: 1.5,-20.5 + parent: 1668 + type: Transform + - uid: 4855 + components: + - pos: 0.5,-18.5 + parent: 1668 + type: Transform + - uid: 4857 + components: + - pos: -0.5,-17.5 + parent: 1668 + type: Transform + - uid: 4858 + components: + - pos: -0.5,-16.5 + parent: 1668 + type: Transform + - uid: 4859 + components: + - pos: -0.5,-15.5 + parent: 1668 + type: Transform + - uid: 4860 + components: + - pos: -0.5,-14.5 + parent: 1668 + type: Transform + - uid: 4861 + components: + - pos: -0.5,-13.5 + parent: 1668 + type: Transform + - uid: 4862 + components: + - pos: -0.5,-12.5 + parent: 1668 + type: Transform + - uid: 4863 + components: + - pos: -0.5,-11.5 + parent: 1668 + type: Transform + - uid: 4864 + components: + - pos: -0.5,-10.5 + parent: 1668 + type: Transform + - uid: 4865 + components: + - pos: -0.5,-9.5 + parent: 1668 + type: Transform + - uid: 4866 + components: + - pos: -1.5,-9.5 + parent: 1668 + type: Transform + - uid: 4867 + components: + - pos: -2.5,-9.5 + parent: 1668 + type: Transform + - uid: 4868 + components: + - pos: -3.5,-9.5 + parent: 1668 + type: Transform + - uid: 4869 + components: + - pos: -0.5,-19.5 + parent: 1668 + type: Transform + - uid: 4870 + components: + - pos: -0.5,-20.5 + parent: 1668 + type: Transform + - uid: 4871 + components: + - pos: -0.5,-21.5 + parent: 1668 + type: Transform + - uid: 4872 + components: + - pos: -0.5,-22.5 + parent: 1668 + type: Transform + - uid: 4873 + components: + - pos: -0.5,-23.5 + parent: 1668 + type: Transform + - uid: 4874 + components: + - pos: -0.5,-24.5 + parent: 1668 + type: Transform + - uid: 4875 + components: + - pos: -0.5,-25.5 + parent: 1668 + type: Transform + - uid: 4876 + components: + - pos: -1.5,-25.5 + parent: 1668 + type: Transform + - uid: 4877 + components: + - pos: -2.5,-25.5 + parent: 1668 + type: Transform + - uid: 4878 + components: + - pos: -2.5,-24.5 + parent: 1668 + type: Transform + - uid: 4879 + components: + - pos: -3.5,-25.5 + parent: 1668 + type: Transform + - uid: 4880 + components: + - pos: -4.5,-25.5 + parent: 1668 + type: Transform + - uid: 4881 + components: + - pos: -5.5,-25.5 + parent: 1668 + type: Transform + - uid: 4882 + components: + - pos: -6.5,-25.5 + parent: 1668 + type: Transform + - uid: 4883 + components: + - pos: -7.5,-25.5 + parent: 1668 + type: Transform + - uid: 4884 + components: + - pos: -8.5,-25.5 + parent: 1668 + type: Transform + - uid: 4885 + components: + - pos: -9.5,-25.5 + parent: 1668 + type: Transform + - uid: 4886 + components: + - pos: -9.5,-24.5 + parent: 1668 + type: Transform + - uid: 4887 + components: + - pos: -8.5,-24.5 + parent: 1668 + type: Transform + - uid: 4888 + components: + - pos: -1.5,-18.5 + parent: 1668 + type: Transform + - uid: 4889 + components: + - pos: -2.5,-18.5 + parent: 1668 + type: Transform + - uid: 4890 + components: + - pos: -3.5,-18.5 + parent: 1668 + type: Transform + - uid: 4891 + components: + - pos: -4.5,-18.5 + parent: 1668 + type: Transform + - uid: 4892 + components: + - pos: -5.5,-18.5 + parent: 1668 + type: Transform + - uid: 4893 + components: + - pos: -6.5,-18.5 + parent: 1668 + type: Transform + - uid: 4894 + components: + - pos: -7.5,-18.5 + parent: 1668 + type: Transform + - uid: 4895 + components: + - pos: -8.5,-18.5 + parent: 1668 + type: Transform + - uid: 4896 + components: + - pos: -9.5,-18.5 + parent: 1668 + type: Transform + - uid: 4897 + components: + - pos: -9.5,-17.5 + parent: 1668 + type: Transform + - uid: 4966 + components: + - pos: -1.5,-19.5 + parent: 1668 + type: Transform + - uid: 4967 + components: + - pos: -1.5,-17.5 + parent: 1668 + type: Transform + - uid: 4976 + components: + - pos: 17.5,-17.5 + parent: 1668 + type: Transform + - uid: 4978 + components: + - pos: 18.5,-17.5 + parent: 1668 + type: Transform + - uid: 4979 + components: + - pos: 19.5,-17.5 + parent: 1668 + type: Transform + - uid: 4980 + components: + - pos: 20.5,-17.5 + parent: 1668 + type: Transform + - uid: 4981 + components: + - pos: 20.5,-16.5 + parent: 1668 + type: Transform + - uid: 4982 + components: + - pos: 20.5,-15.5 + parent: 1668 + type: Transform + - uid: 4983 + components: + - pos: 20.5,-14.5 + parent: 1668 + type: Transform + - uid: 4984 + components: + - pos: 20.5,-13.5 + parent: 1668 + type: Transform + - uid: 4985 + components: + - pos: 20.5,-12.5 + parent: 1668 + type: Transform + - uid: 4986 + components: + - pos: 20.5,-10.5 + parent: 1668 + type: Transform + - uid: 4987 + components: + - pos: 21.5,-10.5 + parent: 1668 + type: Transform + - uid: 4988 + components: + - pos: 20.5,-18.5 + parent: 1668 + type: Transform + - uid: 4989 + components: + - pos: 20.5,-19.5 + parent: 1668 + type: Transform + - uid: 4990 + components: + - pos: 19.5,-19.5 + parent: 1668 + type: Transform + - uid: 4991 + components: + - pos: 18.5,-19.5 + parent: 1668 + type: Transform + - uid: 5277 + components: + - pos: 21.5,-18.5 + parent: 1668 + type: Transform + - uid: 5278 + components: + - pos: 22.5,-18.5 + parent: 1668 + type: Transform + - uid: 5279 + components: + - pos: 23.5,-18.5 + parent: 1668 + type: Transform + - uid: 5280 + components: + - pos: 24.5,-18.5 + parent: 1668 + type: Transform + - uid: 5281 + components: + - pos: 25.5,-18.5 + parent: 1668 + type: Transform + - uid: 5282 + components: + - pos: 26.5,-18.5 + parent: 1668 + type: Transform + - uid: 5283 + components: + - pos: 27.5,-18.5 + parent: 1668 + type: Transform + - uid: 5284 + components: + - pos: 28.5,-18.5 + parent: 1668 + type: Transform + - uid: 5285 + components: + - pos: 29.5,-18.5 + parent: 1668 + type: Transform + - uid: 5286 + components: + - pos: 29.5,-19.5 + parent: 1668 + type: Transform + - uid: 5287 + components: + - pos: 30.5,-18.5 + parent: 1668 + type: Transform + - uid: 5288 + components: + - pos: 30.5,-17.5 + parent: 1668 + type: Transform + - uid: 5289 + components: + - pos: 30.5,-16.5 + parent: 1668 + type: Transform + - uid: 5290 + components: + - pos: 30.5,-15.5 + parent: 1668 + type: Transform + - uid: 5291 + components: + - pos: 30.5,-14.5 + parent: 1668 + type: Transform + - uid: 5292 + components: + - pos: 30.5,-13.5 + parent: 1668 + type: Transform + - uid: 5293 + components: + - pos: 30.5,-12.5 + parent: 1668 + type: Transform + - uid: 5294 + components: + - pos: 30.5,-11.5 + parent: 1668 + type: Transform + - uid: 5295 + components: + - pos: 30.5,-10.5 + parent: 1668 + type: Transform + - uid: 5296 + components: + - pos: 31.5,-10.5 + parent: 1668 + type: Transform + - uid: 5297 + components: + - pos: 32.5,-10.5 + parent: 1668 + type: Transform + - uid: 5298 + components: + - pos: 33.5,-10.5 + parent: 1668 + type: Transform + - uid: 5299 + components: + - pos: 34.5,-10.5 + parent: 1668 + type: Transform + - uid: 5300 + components: + - pos: 34.5,-9.5 + parent: 1668 + type: Transform + - uid: 5301 + components: + - pos: 22.5,-23.5 + parent: 1668 + type: Transform + - uid: 5302 + components: + - pos: 23.5,-23.5 + parent: 1668 + type: Transform + - uid: 5303 + components: + - pos: 24.5,-23.5 + parent: 1668 + type: Transform + - uid: 5304 + components: + - pos: 24.5,-22.5 + parent: 1668 + type: Transform + - uid: 5305 + components: + - pos: 24.5,-21.5 + parent: 1668 + type: Transform + - uid: 5306 + components: + - pos: 24.5,-20.5 + parent: 1668 + type: Transform + - uid: 5307 + components: + - pos: 24.5,-19.5 + parent: 1668 + type: Transform + - uid: 5424 + components: + - pos: 16.5,-28.5 + parent: 1668 + type: Transform + - uid: 5425 + components: + - pos: 16.5,-27.5 + parent: 1668 + type: Transform + - uid: 5426 + components: + - pos: 16.5,-26.5 + parent: 1668 + type: Transform + - uid: 5427 + components: + - pos: 16.5,-25.5 + parent: 1668 + type: Transform + - uid: 5428 + components: + - pos: 17.5,-25.5 + parent: 1668 + type: Transform + - uid: 5429 + components: + - pos: 18.5,-25.5 + parent: 1668 + type: Transform + - uid: 5430 + components: + - pos: 19.5,-25.5 + parent: 1668 + type: Transform + - uid: 5431 + components: + - pos: 20.5,-25.5 + parent: 1668 + type: Transform + - uid: 5432 + components: + - pos: 21.5,-25.5 + parent: 1668 + type: Transform + - uid: 5433 + components: + - pos: 22.5,-25.5 + parent: 1668 + type: Transform + - uid: 5434 + components: + - pos: 23.5,-25.5 + parent: 1668 + type: Transform + - uid: 5435 + components: + - pos: 24.5,-25.5 + parent: 1668 + type: Transform + - uid: 5436 + components: + - pos: 24.5,-24.5 + parent: 1668 + type: Transform + - uid: 5437 + components: + - pos: 20.5,-24.5 + parent: 1668 + type: Transform + - uid: 5438 + components: + - pos: 20.5,-23.5 + parent: 1668 + type: Transform + - uid: 5439 + components: + - pos: 21.5,-23.5 + parent: 1668 + type: Transform + - uid: 5440 + components: + - pos: 19.5,-23.5 + parent: 1668 + type: Transform + - uid: 5832 + components: + - pos: 10.5,6.5 + parent: 1668 + type: Transform + - uid: 5833 + components: + - pos: 9.5,6.5 + parent: 1668 + type: Transform + - uid: 5834 + components: + - pos: 9.5,5.5 + parent: 1668 + type: Transform + - uid: 5835 + components: + - pos: 9.5,4.5 + parent: 1668 + type: Transform + - uid: 5836 + components: + - pos: 9.5,3.5 + parent: 1668 + type: Transform + - uid: 5837 + components: + - pos: 9.5,2.5 + parent: 1668 + type: Transform + - uid: 5838 + components: + - pos: 9.5,1.5 + parent: 1668 + type: Transform + - uid: 5839 + components: + - pos: 10.5,1.5 + parent: 1668 + type: Transform + - uid: 5840 + components: + - pos: 10.5,0.5 + parent: 1668 + type: Transform + - uid: 5841 + components: + - pos: 10.5,-0.5 + parent: 1668 + type: Transform + - uid: 5842 + components: + - pos: 10.5,-1.5 + parent: 1668 + type: Transform + - uid: 5843 + components: + - pos: 10.5,-2.5 + parent: 1668 + type: Transform + - uid: 5844 + components: + - pos: 11.5,6.5 + parent: 1668 + type: Transform + - uid: 5845 + components: + - pos: 12.5,6.5 + parent: 1668 + type: Transform + - uid: 5846 + components: + - pos: 12.5,7.5 + parent: 1668 + type: Transform + - uid: 5854 + components: + - pos: 20.5,6.5 + parent: 1668 + type: Transform + - uid: 5855 + components: + - pos: 20.5,5.5 + parent: 1668 + type: Transform + - uid: 5856 + components: + - pos: 19.5,5.5 + parent: 1668 + type: Transform + - uid: 5857 + components: + - pos: 18.5,5.5 + parent: 1668 + type: Transform + - uid: 5858 + components: + - pos: 17.5,5.5 + parent: 1668 + type: Transform + - uid: 5859 + components: + - pos: 16.5,5.5 + parent: 1668 + type: Transform + - uid: 5860 + components: + - pos: 15.5,5.5 + parent: 1668 + type: Transform + - uid: 5861 + components: + - pos: 14.5,5.5 + parent: 1668 + type: Transform + - uid: 5862 + components: + - pos: 13.5,5.5 + parent: 1668 + type: Transform + - uid: 5863 + components: + - pos: 12.5,5.5 + parent: 1668 + type: Transform + - uid: 5865 + components: + - pos: 20.5,4.5 + parent: 1668 + type: Transform + - uid: 5866 + components: + - pos: 20.5,3.5 + parent: 1668 + type: Transform + - uid: 5867 + components: + - pos: 20.5,2.5 + parent: 1668 + type: Transform + - uid: 5868 + components: + - pos: 20.5,1.5 + parent: 1668 + type: Transform + - uid: 5869 + components: + - pos: 20.5,0.5 + parent: 1668 + type: Transform + - uid: 5870 + components: + - pos: 20.5,-0.5 + parent: 1668 + type: Transform + - uid: 5871 + components: + - pos: 20.5,-1.5 + parent: 1668 + type: Transform + - uid: 5872 + components: + - pos: 20.5,-2.5 + parent: 1668 + type: Transform + - uid: 5873 + components: + - pos: 20.5,-3.5 + parent: 1668 + type: Transform + - uid: 5874 + components: + - pos: 20.5,-4.5 + parent: 1668 + type: Transform + - uid: 5875 + components: + - pos: 20.5,-5.5 + parent: 1668 + type: Transform + - uid: 6055 + components: + - pos: -16.5,-29.5 + parent: 1668 + type: Transform + - uid: 6056 + components: + - pos: -16.5,-30.5 + parent: 1668 + type: Transform + - uid: 6057 + components: + - pos: -17.5,-29.5 + parent: 1668 + type: Transform + - uid: 6058 + components: + - pos: -18.5,-29.5 + parent: 1668 + type: Transform + - uid: 6059 + components: + - pos: -18.5,-28.5 + parent: 1668 + type: Transform + - uid: 6060 + components: + - pos: -18.5,-27.5 + parent: 1668 + type: Transform + - uid: 6061 + components: + - pos: -18.5,-26.5 + parent: 1668 + type: Transform + - uid: 6062 + components: + - pos: -18.5,-25.5 + parent: 1668 + type: Transform + - uid: 6063 + components: + - pos: -18.5,-24.5 + parent: 1668 + type: Transform + - uid: 6064 + components: + - pos: -18.5,-23.5 + parent: 1668 + type: Transform + - uid: 6065 + components: + - pos: -18.5,-22.5 + parent: 1668 + type: Transform + - uid: 6066 + components: + - pos: -17.5,-22.5 + parent: 1668 + type: Transform + - uid: 6104 + components: + - pos: -17.5,-26.5 + parent: 1668 + type: Transform + - uid: 6105 + components: + - pos: -16.5,-26.5 + parent: 1668 + type: Transform + - uid: 6106 + components: + - pos: -15.5,-26.5 + parent: 1668 + type: Transform + - uid: 6107 + components: + - pos: -14.5,-26.5 + parent: 1668 + type: Transform + - uid: 6108 + components: + - pos: -14.5,-27.5 + parent: 1668 + type: Transform + - uid: 6109 + components: + - pos: -14.5,-28.5 + parent: 1668 + type: Transform + - uid: 6110 + components: + - pos: -14.5,-28.5 + parent: 1668 + type: Transform + - uid: 6111 + components: + - pos: -15.5,-28.5 + parent: 1668 + type: Transform + - uid: 6182 + components: + - pos: -14.5,-29.5 + parent: 1668 + type: Transform + - uid: 6183 + components: + - pos: -14.5,-30.5 + parent: 1668 + type: Transform + - uid: 6184 + components: + - pos: -13.5,-30.5 + parent: 1668 + type: Transform + - uid: 6185 + components: + - pos: -12.5,-30.5 + parent: 1668 + type: Transform + - uid: 6186 + components: + - pos: -11.5,-30.5 + parent: 1668 + type: Transform + - uid: 6187 + components: + - pos: -10.5,-30.5 + parent: 1668 + type: Transform + - uid: 6188 + components: + - pos: -9.5,-30.5 + parent: 1668 + type: Transform + - uid: 6189 + components: + - pos: -8.5,-30.5 + parent: 1668 + type: Transform + - uid: 6190 + components: + - pos: 7.5,-30.5 + parent: 1668 + type: Transform + - uid: 6191 + components: + - pos: 8.5,-30.5 + parent: 1668 + type: Transform + - uid: 6192 + components: + - pos: 9.5,-30.5 + parent: 1668 + type: Transform + - uid: 6193 + components: + - pos: 10.5,-30.5 + parent: 1668 + type: Transform + - uid: 6194 + components: + - pos: 11.5,-30.5 + parent: 1668 + type: Transform + - uid: 6195 + components: + - pos: 12.5,-30.5 + parent: 1668 + type: Transform + - uid: 6196 + components: + - pos: 13.5,-30.5 + parent: 1668 + type: Transform + - uid: 6197 + components: + - pos: 13.5,-29.5 + parent: 1668 + type: Transform + - uid: 6198 + components: + - pos: 13.5,-28.5 + parent: 1668 + type: Transform + - uid: 6199 + components: + - pos: 13.5,-27.5 + parent: 1668 + type: Transform + - uid: 6200 + components: + - pos: 14.5,-27.5 + parent: 1668 + type: Transform + - uid: 6201 + components: + - pos: 15.5,-27.5 + parent: 1668 + type: Transform + - uid: 6336 + components: + - pos: -8.5,-31.5 + parent: 1668 + type: Transform + - uid: 6337 + components: + - pos: -7.5,-31.5 + parent: 1668 + type: Transform + - uid: 6338 + components: + - pos: -6.5,-31.5 + parent: 1668 + type: Transform + - uid: 6339 + components: + - pos: -5.5,-31.5 + parent: 1668 + type: Transform + - uid: 6340 + components: + - pos: -4.5,-31.5 + parent: 1668 + type: Transform + - uid: 6341 + components: + - pos: -3.5,-31.5 + parent: 1668 + type: Transform + - uid: 6342 + components: + - pos: -3.5,-32.5 + parent: 1668 + type: Transform + - uid: 6343 + components: + - pos: -3.5,-33.5 + parent: 1668 + type: Transform + - uid: 6344 + components: + - pos: -3.5,-34.5 + parent: 1668 + type: Transform + - uid: 6345 + components: + - pos: -2.5,-34.5 + parent: 1668 + type: Transform + - uid: 6398 + components: + - pos: -2.5,-35.5 + parent: 1668 + type: Transform + - uid: 6399 + components: + - pos: -2.5,-36.5 + parent: 1668 + type: Transform + - uid: 6400 + components: + - pos: -2.5,-36.5 + parent: 1668 + type: Transform + - uid: 6401 + components: + - pos: -1.5,-37.5 + parent: 1668 + type: Transform + - uid: 6402 + components: + - pos: -2.5,-37.5 + parent: 1668 + type: Transform + - uid: 6403 + components: + - pos: -1.5,-38.5 + parent: 1668 + type: Transform + - uid: 6404 + components: + - pos: -1.5,-39.5 + parent: 1668 + type: Transform + - uid: 6405 + components: + - pos: -1.5,-40.5 + parent: 1668 + type: Transform + - uid: 6406 + components: + - pos: -1.5,-41.5 + parent: 1668 + type: Transform + - uid: 6407 + components: + - pos: -2.5,-41.5 + parent: 1668 + type: Transform + - uid: 6408 + components: + - pos: -2.5,-40.5 + parent: 1668 + type: Transform + - uid: 6849 + components: + - pos: 32.5,-31.5 + parent: 1668 + type: Transform + - uid: 6850 + components: + - pos: 32.5,-30.5 + parent: 1668 + type: Transform + - uid: 6851 + components: + - pos: 32.5,-29.5 + parent: 1668 + type: Transform + - uid: 6852 + components: + - pos: 32.5,-28.5 + parent: 1668 + type: Transform + - uid: 6853 + components: + - pos: 32.5,-27.5 + parent: 1668 + type: Transform +- proto: CableTerminal + entities: + - uid: 2191 + components: + - pos: 27.5,-29.5 + parent: 1668 + type: Transform + - uid: 5075 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-15.5 + parent: 1668 + type: Transform + - uid: 5076 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-16.5 + parent: 1668 + type: Transform + - uid: 5077 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-17.5 + parent: 1668 + type: Transform +- proto: CargoPallet + entities: + - uid: 6924 + components: + - pos: -6.5,26.5 + parent: 1668 + type: Transform + - uid: 6925 + components: + - pos: -7.5,26.5 + parent: 1668 + type: Transform + - uid: 6926 + components: + - pos: -8.5,26.5 + parent: 1668 + type: Transform + - uid: 6927 + components: + - pos: -6.5,28.5 + parent: 1668 + type: Transform + - uid: 6928 + components: + - pos: -7.5,28.5 + parent: 1668 + type: Transform + - uid: 6929 + components: + - pos: -8.5,28.5 + parent: 1668 + type: Transform +- proto: Carpet + entities: + - uid: 2714 + components: + - pos: 6.5,18.5 + parent: 1668 + type: Transform + - uid: 2715 + components: + - pos: 6.5,19.5 + parent: 1668 + type: Transform + - uid: 2716 + components: + - pos: 5.5,18.5 + parent: 1668 + type: Transform + - uid: 2717 + components: + - pos: 5.5,19.5 + parent: 1668 + type: Transform +- proto: CarpetBlue + entities: + - uid: 640 + components: + - pos: -1.5,0.5 + parent: 1668 + type: Transform + - uid: 1425 + components: + - pos: -1.5,-0.5 + parent: 1668 + type: Transform + - uid: 1426 + components: + - pos: -0.5,0.5 + parent: 1668 + type: Transform + - uid: 1427 + components: + - pos: -0.5,-0.5 + parent: 1668 + type: Transform + - uid: 1428 + components: + - pos: 0.5,0.5 + parent: 1668 + type: Transform + - uid: 1429 + components: + - pos: 0.5,-0.5 + parent: 1668 + type: Transform +- proto: CarpetGreen + entities: + - uid: 3728 + components: + - pos: -16.5,10.5 + parent: 1668 + type: Transform + - uid: 3729 + components: + - pos: -16.5,11.5 + parent: 1668 + type: Transform + - uid: 3730 + components: + - pos: -15.5,10.5 + parent: 1668 + type: Transform + - uid: 3731 + components: + - pos: -15.5,11.5 + parent: 1668 + type: Transform + - uid: 3732 + components: + - pos: -19.5,11.5 + parent: 1668 + type: Transform + - uid: 3733 + components: + - pos: -19.5,10.5 + parent: 1668 + type: Transform + - uid: 3735 + components: + - pos: -18.5,11.5 + parent: 1668 + type: Transform + - uid: 3736 + components: + - pos: -18.5,10.5 + parent: 1668 + type: Transform + - uid: 3738 + components: + - pos: -19.5,5.5 + parent: 1668 + type: Transform + - uid: 3739 + components: + - pos: -19.5,6.5 + parent: 1668 + type: Transform + - uid: 3740 + components: + - pos: -18.5,5.5 + parent: 1668 + type: Transform + - uid: 3741 + components: + - pos: -18.5,6.5 + parent: 1668 + type: Transform + - uid: 6978 + components: + - pos: 30.5,-1.5 + parent: 1668 + type: Transform + - uid: 6979 + components: + - pos: 30.5,-0.5 + parent: 1668 + type: Transform + - uid: 6980 + components: + - pos: 30.5,0.5 + parent: 1668 + type: Transform + - uid: 6981 + components: + - pos: 31.5,-1.5 + parent: 1668 + type: Transform + - uid: 6982 + components: + - pos: 31.5,-0.5 + parent: 1668 + type: Transform + - uid: 6983 + components: + - pos: 31.5,0.5 + parent: 1668 + type: Transform + - uid: 6984 + components: + - pos: 32.5,-1.5 + parent: 1668 + type: Transform + - uid: 6985 + components: + - pos: 32.5,-0.5 + parent: 1668 + type: Transform + - uid: 6986 + components: + - pos: 32.5,0.5 + parent: 1668 + type: Transform +- proto: Catwalk + entities: + - uid: 347 + components: + - pos: 34.5,2.5 + parent: 1668 + type: Transform + - uid: 1065 + components: + - pos: 34.5,-3.5 + parent: 1668 + type: Transform + - uid: 1066 + components: + - pos: 34.5,-5.5 + parent: 1668 + type: Transform + - uid: 1067 + components: + - pos: 34.5,4.5 + parent: 1668 + type: Transform + - uid: 1179 + components: + - pos: 16.5,-13.5 + parent: 1668 + type: Transform + - uid: 2032 + components: + - pos: -0.5,18.5 + parent: 1668 + type: Transform + - uid: 2033 + components: + - pos: -0.5,19.5 + parent: 1668 + type: Transform + - uid: 2034 + components: + - pos: -0.5,20.5 + parent: 1668 + type: Transform + - uid: 2035 + components: + - pos: 0.5,20.5 + parent: 1668 + type: Transform + - uid: 2036 + components: + - pos: 1.5,20.5 + parent: 1668 + type: Transform + - uid: 2037 + components: + - pos: -1.5,20.5 + parent: 1668 + type: Transform + - uid: 2038 + components: + - pos: -2.5,20.5 + parent: 1668 + type: Transform + - uid: 2046 + components: + - pos: -0.5,23.5 + parent: 1668 + type: Transform + - uid: 2047 + components: + - pos: -1.5,23.5 + parent: 1668 + type: Transform + - uid: 2048 + components: + - pos: -2.5,23.5 + parent: 1668 + type: Transform + - uid: 2049 + components: + - pos: -2.5,24.5 + parent: 1668 + type: Transform + - uid: 3239 + components: + - pos: -2.5,26.5 + parent: 1668 + type: Transform + - uid: 3240 + components: + - pos: -2.5,27.5 + parent: 1668 + type: Transform + - uid: 3241 + components: + - pos: -2.5,28.5 + parent: 1668 + type: Transform + - uid: 3242 + components: + - pos: -2.5,29.5 + parent: 1668 + type: Transform + - uid: 3243 + components: + - pos: -2.5,30.5 + parent: 1668 + type: Transform + - uid: 3244 + components: + - pos: -2.5,31.5 + parent: 1668 + type: Transform + - uid: 3246 + components: + - rot: 3.141592653589793 rad + pos: -2.5,32.5 + parent: 1668 + type: Transform + - uid: 3251 + components: + - pos: 14.5,17.5 + parent: 1668 + type: Transform + - uid: 3252 + components: + - pos: 14.5,18.5 + parent: 1668 + type: Transform + - uid: 3253 + components: + - pos: 15.5,18.5 + parent: 1668 + type: Transform + - uid: 3709 + components: + - pos: -16.5,4.5 + parent: 1668 + type: Transform + - uid: 3710 + components: + - pos: -15.5,4.5 + parent: 1668 + type: Transform + - uid: 3711 + components: + - pos: -14.5,4.5 + parent: 1668 + type: Transform + - uid: 3712 + components: + - pos: -14.5,6.5 + parent: 1668 + type: Transform + - uid: 4146 + components: + - pos: -33.5,0.5 + parent: 1668 + type: Transform + - uid: 4147 + components: + - pos: -33.5,-1.5 + parent: 1668 + type: Transform + - uid: 4181 + components: + - pos: -27.5,3.5 + parent: 1668 + type: Transform + - uid: 4182 + components: + - pos: -27.5,4.5 + parent: 1668 + type: Transform + - uid: 4183 + components: + - pos: -27.5,5.5 + parent: 1668 + type: Transform + - uid: 4568 + components: + - pos: -13.5,-14.5 + parent: 1668 + type: Transform + - uid: 4569 + components: + - pos: -13.5,-13.5 + parent: 1668 + type: Transform + - uid: 4570 + components: + - pos: -13.5,-12.5 + parent: 1668 + type: Transform + - uid: 4571 + components: + - pos: -13.5,-11.5 + parent: 1668 + type: Transform + - uid: 4572 + components: + - pos: -12.5,-11.5 + parent: 1668 + type: Transform + - uid: 4573 + components: + - pos: -11.5,-11.5 + parent: 1668 + type: Transform + - uid: 4574 + components: + - pos: -10.5,-11.5 + parent: 1668 + type: Transform + - uid: 5197 + components: + - pos: 32.5,-24.5 + parent: 1668 + type: Transform + - uid: 5198 + components: + - pos: 31.5,-25.5 + parent: 1668 + type: Transform + - uid: 5199 + components: + - pos: 33.5,-25.5 + parent: 1668 + type: Transform + - uid: 5200 + components: + - pos: 32.5,-25.5 + parent: 1668 + type: Transform + - uid: 5201 + components: + - pos: 30.5,-25.5 + parent: 1668 + type: Transform + - uid: 5202 + components: + - pos: 34.5,-25.5 + parent: 1668 + type: Transform + - uid: 5203 + components: + - pos: 34.5,-23.5 + parent: 1668 + type: Transform + - uid: 5204 + components: + - pos: 33.5,-23.5 + parent: 1668 + type: Transform + - uid: 5205 + components: + - pos: 32.5,-23.5 + parent: 1668 + type: Transform + - uid: 5206 + components: + - pos: 31.5,-23.5 + parent: 1668 + type: Transform + - uid: 5207 + components: + - pos: 30.5,-23.5 + parent: 1668 + type: Transform + - uid: 5208 + components: + - pos: 32.5,-22.5 + parent: 1668 + type: Transform + - uid: 5209 + components: + - pos: 30.5,-21.5 + parent: 1668 + type: Transform + - uid: 5210 + components: + - pos: 31.5,-21.5 + parent: 1668 + type: Transform + - uid: 5211 + components: + - pos: 32.5,-21.5 + parent: 1668 + type: Transform + - uid: 5212 + components: + - pos: 33.5,-21.5 + parent: 1668 + type: Transform + - uid: 5213 + components: + - pos: 34.5,-21.5 + parent: 1668 + type: Transform + - uid: 5323 + components: + - pos: 24.5,-16.5 + parent: 1668 + type: Transform + - uid: 5324 + components: + - pos: 25.5,-16.5 + parent: 1668 + type: Transform + - uid: 5325 + components: + - pos: 26.5,-16.5 + parent: 1668 + type: Transform + - uid: 5326 + components: + - pos: 27.5,-16.5 + parent: 1668 + type: Transform + - uid: 6142 + components: + - pos: -22.5,-26.5 + parent: 1668 + type: Transform + - uid: 6143 + components: + - pos: -22.5,-24.5 + parent: 1668 + type: Transform + - uid: 6440 + components: + - pos: -1.5,-45.5 + parent: 1668 + type: Transform + - uid: 6441 + components: + - pos: 0.5,-45.5 + parent: 1668 + type: Transform +- proto: CentcomIDCard + entities: + - uid: 3721 + components: + - pos: -16.521366,8.567018 + parent: 1668 + type: Transform +- proto: CentcomPDA + entities: + - uid: 6617 + components: + - pos: -20.428675,10.647655 + parent: 1668 + type: Transform +- proto: Chair + entities: + - uid: 517 + components: + - pos: 22.5,5.5 + parent: 1668 + type: Transform + - uid: 518 + components: + - pos: 23.5,5.5 + parent: 1668 + type: Transform + - uid: 519 + components: + - pos: 24.5,5.5 + parent: 1668 + type: Transform + - uid: 520 + components: + - pos: 28.5,5.5 + parent: 1668 + type: Transform + - uid: 521 + components: + - pos: 29.5,5.5 + parent: 1668 + type: Transform + - uid: 522 + components: + - pos: 30.5,5.5 + parent: 1668 + type: Transform + - uid: 532 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-6.5 + parent: 1668 + type: Transform + - uid: 533 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-6.5 + parent: 1668 + type: Transform + - uid: 534 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-6.5 + parent: 1668 + type: Transform + - uid: 535 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-6.5 + parent: 1668 + type: Transform + - uid: 536 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-6.5 + parent: 1668 + type: Transform + - uid: 537 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-6.5 + parent: 1668 + type: Transform + - uid: 538 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-4.5 + parent: 1668 + type: Transform + - uid: 539 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-2.5 + parent: 1668 + type: Transform + - uid: 540 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,1.5 + parent: 1668 + type: Transform + - uid: 541 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,3.5 + parent: 1668 + type: Transform + - uid: 634 + components: + - pos: 10.5,1.5 + parent: 1668 + type: Transform + - uid: 635 + components: + - pos: 11.5,1.5 + parent: 1668 + type: Transform + - uid: 636 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-2.5 + parent: 1668 + type: Transform + - uid: 637 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 1668 + type: Transform + - uid: 638 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-2.5 + parent: 1668 + type: Transform + - uid: 639 + components: + - pos: 13.5,1.5 + parent: 1668 + type: Transform + - uid: 1644 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,11.5 + parent: 1668 + type: Transform + - uid: 1645 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,13.5 + parent: 1668 + type: Transform + - uid: 2168 + components: + - pos: 1.5,16.5 + parent: 1668 + type: Transform + - uid: 2169 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,15.5 + parent: 1668 + type: Transform + - uid: 2170 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,14.5 + parent: 1668 + type: Transform + - uid: 2171 + components: + - rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 1668 + type: Transform + - uid: 2172 + components: + - rot: 3.141592653589793 rad + pos: -2.5,8.5 + parent: 1668 + type: Transform + - uid: 2173 + components: + - rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 1668 + type: Transform + - uid: 2174 + components: + - rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 1668 + type: Transform + - uid: 2175 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,9.5 + parent: 1668 + type: Transform + - uid: 2176 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 1668 + type: Transform + - uid: 2415 + components: + - rot: 3.141592653589793 rad + pos: 27.5,16.5 + parent: 1668 + type: Transform + - uid: 2416 + components: + - rot: 3.141592653589793 rad + pos: 26.5,16.5 + parent: 1668 + type: Transform + - uid: 2417 + components: + - rot: 3.141592653589793 rad + pos: 29.5,16.5 + parent: 1668 + type: Transform + - uid: 2418 + components: + - rot: 3.141592653589793 rad + pos: 30.5,16.5 + parent: 1668 + type: Transform + - uid: 2419 + components: + - pos: 26.5,21.5 + parent: 1668 + type: Transform + - uid: 2420 + components: + - pos: 30.5,21.5 + parent: 1668 + type: Transform + - uid: 2427 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,15.5 + parent: 1668 + type: Transform + - uid: 2428 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,16.5 + parent: 1668 + type: Transform + - uid: 2429 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,17.5 + parent: 1668 + type: Transform + - uid: 2430 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,18.5 + parent: 1668 + type: Transform + - uid: 2431 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,15.5 + parent: 1668 + type: Transform + - uid: 2432 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,16.5 + parent: 1668 + type: Transform + - uid: 2433 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,17.5 + parent: 1668 + type: Transform + - uid: 2434 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,18.5 + parent: 1668 + type: Transform + - uid: 2441 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-16.5 + parent: 1668 + type: Transform + - uid: 2472 + components: + - rot: 3.141592653589793 rad + pos: 25.5,13.5 + parent: 1668 + type: Transform + - uid: 2473 + components: + - rot: 3.141592653589793 rad + pos: 26.5,13.5 + parent: 1668 + type: Transform + - uid: 2474 + components: + - rot: 3.141592653589793 rad + pos: 27.5,13.5 + parent: 1668 + type: Transform + - uid: 2475 + components: + - rot: 3.141592653589793 rad + pos: 29.5,13.5 + parent: 1668 + type: Transform + - uid: 2476 + components: + - rot: 3.141592653589793 rad + pos: 30.5,13.5 + parent: 1668 + type: Transform + - uid: 2477 + components: + - rot: 3.141592653589793 rad + pos: 31.5,13.5 + parent: 1668 + type: Transform + - uid: 2478 + components: + - rot: 3.141592653589793 rad + pos: 32.5,12.5 + parent: 1668 + type: Transform + - uid: 2479 + components: + - rot: 3.141592653589793 rad + pos: 31.5,12.5 + parent: 1668 + type: Transform + - uid: 2480 + components: + - rot: 3.141592653589793 rad + pos: 30.5,12.5 + parent: 1668 + type: Transform + - uid: 2481 + components: + - rot: 3.141592653589793 rad + pos: 29.5,12.5 + parent: 1668 + type: Transform + - uid: 2482 + components: + - rot: 3.141592653589793 rad + pos: 27.5,12.5 + parent: 1668 + type: Transform + - uid: 2483 + components: + - rot: 3.141592653589793 rad + pos: 26.5,12.5 + parent: 1668 + type: Transform + - uid: 2484 + components: + - rot: 3.141592653589793 rad + pos: 25.5,12.5 + parent: 1668 + type: Transform + - uid: 2485 + components: + - rot: 3.141592653589793 rad + pos: 24.5,12.5 + parent: 1668 + type: Transform + - uid: 2827 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,21.5 + parent: 1668 + type: Transform + - uid: 2828 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,21.5 + parent: 1668 + type: Transform + - uid: 3172 + components: + - pos: 8.5,15.5 + parent: 1668 + type: Transform + - uid: 3173 + components: + - pos: 7.5,15.5 + parent: 1668 + type: Transform + - uid: 3174 + components: + - rot: 3.141592653589793 rad + pos: 12.5,10.5 + parent: 1668 + type: Transform + - uid: 3175 + components: + - rot: 3.141592653589793 rad + pos: 8.5,10.5 + parent: 1668 + type: Transform + - uid: 3176 + components: + - rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 1668 + type: Transform + - uid: 3177 + components: + - rot: 3.141592653589793 rad + pos: 13.5,10.5 + parent: 1668 + type: Transform + - uid: 3827 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,23.5 + parent: 1668 + type: Transform + - uid: 4152 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,1.5 + parent: 1668 + type: Transform + - uid: 4153 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-0.5 + parent: 1668 + type: Transform + - uid: 4154 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-2.5 + parent: 1668 + type: Transform + - uid: 4155 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-2.5 + parent: 1668 + type: Transform + - uid: 4156 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-0.5 + parent: 1668 + type: Transform + - uid: 4157 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,1.5 + parent: 1668 + type: Transform + - uid: 4160 + components: + - pos: -31.5,6.5 + parent: 1668 + type: Transform + - uid: 4161 + components: + - pos: -32.5,6.5 + parent: 1668 + type: Transform + - uid: 4162 + components: + - pos: -33.5,6.5 + parent: 1668 + type: Transform + - uid: 4163 + components: + - rot: 3.141592653589793 rad + pos: -31.5,3.5 + parent: 1668 + type: Transform + - uid: 4164 + components: + - rot: 3.141592653589793 rad + pos: -32.5,3.5 + parent: 1668 + type: Transform + - uid: 4165 + components: + - rot: 3.141592653589793 rad + pos: -33.5,3.5 + parent: 1668 + type: Transform + - uid: 5246 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-24.5 + parent: 1668 + type: Transform + - uid: 5249 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-24.5 + parent: 1668 + type: Transform + - uid: 5308 + components: + - pos: 27.5,-21.5 + parent: 1668 + type: Transform + - uid: 5309 + components: + - pos: 26.5,-21.5 + parent: 1668 + type: Transform + - uid: 5384 + components: + - pos: 15.5,-23.5 + parent: 1668 + type: Transform + - uid: 5385 + components: + - pos: 14.5,-23.5 + parent: 1668 + type: Transform + - uid: 6148 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-22.5 + parent: 1668 + type: Transform + - uid: 6149 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-22.5 + parent: 1668 + type: Transform + - uid: 6152 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-28.5 + parent: 1668 + type: Transform + - uid: 6153 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-27.5 + parent: 1668 + type: Transform + - uid: 6240 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-27.5 + parent: 1668 + type: Transform + - uid: 6243 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-27.5 + parent: 1668 + type: Transform + - uid: 6391 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-43.5 + parent: 1668 + type: Transform + - uid: 6392 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-41.5 + parent: 1668 + type: Transform + - uid: 6393 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-43.5 + parent: 1668 + type: Transform + - uid: 6394 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-41.5 + parent: 1668 + type: Transform + - uid: 6567 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-33.5 + parent: 1668 + type: Transform + - uid: 6568 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-33.5 + parent: 1668 + type: Transform + - uid: 6569 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-33.5 + parent: 1668 + type: Transform + - uid: 6570 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-33.5 + parent: 1668 + type: Transform + - uid: 6579 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-30.5 + parent: 1668 + type: Transform + - uid: 6580 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-30.5 + parent: 1668 + type: Transform + - uid: 6585 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-30.5 + parent: 1668 + type: Transform + - uid: 6586 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-30.5 + parent: 1668 + type: Transform + - uid: 6587 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-33.5 + parent: 1668 + type: Transform + - uid: 6588 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-33.5 + parent: 1668 + type: Transform + - uid: 6589 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-33.5 + parent: 1668 + type: Transform + - uid: 6590 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-33.5 + parent: 1668 + type: Transform + - uid: 6748 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-17.5 + parent: 1668 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 506 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-8.5 + parent: 1668 + type: Transform + - uid: 507 + components: + - pos: 27.5,-10.5 + parent: 1668 + type: Transform + - uid: 604 + components: + - pos: 12.5,3.5 + parent: 1668 + type: Transform + - uid: 605 + components: + - pos: 14.5,3.5 + parent: 1668 + type: Transform + - uid: 817 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 1668 + type: Transform + - uid: 818 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 1668 + type: Transform + - uid: 1401 + components: + - pos: -1.5,-1.5 + parent: 1668 + type: Transform + - uid: 1402 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1668 + type: Transform + - uid: 1403 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1668 + type: Transform + - uid: 1404 + components: + - pos: 0.5,-1.5 + parent: 1668 + type: Transform + - uid: 1405 + components: + - rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1668 + type: Transform + - uid: 1646 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 1668 + type: Transform + - uid: 1647 + components: + - pos: -8.5,9.5 + parent: 1668 + type: Transform + - uid: 1648 + components: + - rot: 3.141592653589793 rad + pos: -8.5,11.5 + parent: 1668 + type: Transform + - uid: 1649 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,10.5 + parent: 1668 + type: Transform + - uid: 2744 + components: + - pos: 9.5,17.5 + parent: 1668 + type: Transform + - uid: 3621 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,4.5 + parent: 1668 + type: Transform + - uid: 3622 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,5.5 + parent: 1668 + type: Transform + - uid: 3623 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,5.5 + parent: 1668 + type: Transform + - uid: 3880 + components: + - pos: -21.5,-4.5 + parent: 1668 + type: Transform + - uid: 3881 + components: + - pos: -20.5,-4.5 + parent: 1668 + type: Transform + - uid: 3882 + components: + - pos: -19.5,-4.5 + parent: 1668 + type: Transform + - uid: 3883 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-5.5 + parent: 1668 + type: Transform + - uid: 3884 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-6.5 + parent: 1668 + type: Transform + - uid: 3885 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-7.5 + parent: 1668 + type: Transform + - uid: 3886 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-8.5 + parent: 1668 + type: Transform + - uid: 3887 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-8.5 + parent: 1668 + type: Transform + - uid: 3888 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-8.5 + parent: 1668 + type: Transform + - uid: 5243 + components: + - pos: 3.5,-16.5 + parent: 1668 + type: Transform + - uid: 5336 + components: + - pos: 16.5,-21.5 + parent: 1668 + type: Transform + - uid: 5337 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-21.5 + parent: 1668 + type: Transform + - uid: 6939 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,30.5 + parent: 1668 + type: Transform + - uid: 6940 + components: + - pos: -10.5,30.5 + parent: 1668 + type: Transform + - uid: 6941 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,25.5 + parent: 1668 + type: Transform +- proto: ChairWood + entities: + - uid: 4617 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-29.5 + parent: 1668 + type: Transform +- proto: CheapRollerBed + entities: + - uid: 6496 + components: + - pos: -4.516034,-43.401173 + parent: 1668 + type: Transform +- proto: chem_master + entities: + - uid: 825 + components: + - pos: 4.5,-13.5 + parent: 1668 + type: Transform + - uid: 4425 + components: + - pos: 10.5,-23.5 + parent: 1668 + type: Transform +- proto: ChemDispenser + entities: + - uid: 824 + components: + - pos: 3.5,-13.5 + parent: 1668 + type: Transform +- proto: ChemistryHotplate + entities: + - uid: 254 + components: + - pos: 3.5,-10.5 + parent: 1668 + type: Transform +- proto: ChessBoard + entities: + - uid: 3762 + components: + - pos: -23.529772,4.584259 + parent: 1668 + type: Transform +- proto: CigarGold + entities: + - uid: 2465 + components: + - pos: 30.393238,23.676378 + parent: 1668 + type: Transform + - uid: 2466 + components: + - pos: 30.502613,23.598253 + parent: 1668 + type: Transform + - uid: 3746 + components: + - pos: -23.553053,10.781973 + parent: 1668 + type: Transform + - uid: 3747 + components: + - pos: -23.443678,10.672598 + parent: 1668 + type: Transform + - uid: 3877 + components: + - pos: -26.36634,-3.4881558 + parent: 1668 + type: Transform + - uid: 3878 + components: + - pos: -26.30384,-3.5194058 + parent: 1668 + type: Transform +- proto: CloningPod + entities: + - uid: 722 + components: + - pos: 11.5,-13.5 + parent: 1668 + type: Transform + - links: + - 575 + type: DeviceLinkSink + - containers: + - machine_parts + - machine_board + type: Construction +- proto: ClosetBase + entities: + - uid: 2491 + components: + - pos: 20.5,23.5 + parent: 1668 + type: Transform +- proto: ClosetChefFilled + entities: + - uid: 4579 + components: + - pos: -9.5,-21.5 + parent: 1668 + type: Transform +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 1071 + components: + - pos: 34.5,-2.5 + parent: 1668 + type: Transform + - uid: 1072 + components: + - pos: 34.5,5.5 + parent: 1668 + type: Transform + - uid: 2044 + components: + - pos: -3.5,24.5 + parent: 1668 + type: Transform + - uid: 4148 + components: + - pos: -33.5,1.5 + parent: 1668 + type: Transform + - uid: 4149 + components: + - pos: -33.5,-2.5 + parent: 1668 + type: Transform + - uid: 4159 + components: + - pos: -30.5,6.5 + parent: 1668 + type: Transform + - uid: 5352 + components: + - pos: 20.5,-26.5 + parent: 1668 + type: Transform + - uid: 6147 + components: + - pos: -22.5,-22.5 + parent: 1668 + type: Transform + - uid: 6252 + components: + - pos: -14.5,-16.5 + parent: 1668 + type: Transform +- proto: ClosetFireFilled + entities: + - uid: 1073 + components: + - pos: 34.5,1.5 + parent: 1668 + type: Transform + - uid: 1074 + components: + - pos: 34.5,-6.5 + parent: 1668 + type: Transform + - uid: 4158 + components: + - pos: -29.5,6.5 + parent: 1668 + type: Transform + - uid: 5356 + components: + - pos: 19.5,-26.5 + parent: 1668 + type: Transform + - uid: 6146 + components: + - pos: -22.5,-28.5 + parent: 1668 + type: Transform +- proto: ClosetL3JanitorFilled + entities: + - uid: 6229 + components: + - pos: -16.5,-31.5 + parent: 1668 + type: Transform +- proto: ClosetLegalFilled + entities: + - uid: 2490 + components: + - pos: 19.5,23.5 + parent: 1668 + type: Transform +- proto: ClosetRadiationSuitFilled + entities: + - uid: 2442 + components: + - pos: 21.5,-26.5 + parent: 1668 + type: Transform + - uid: 5331 + components: + - pos: 34.5,-15.5 + parent: 1668 + type: Transform + - uid: 5332 + components: + - pos: 34.5,-18.5 + parent: 1668 + type: Transform +- proto: ClosetToolFilled + entities: + - uid: 3254 + components: + - pos: 14.5,19.5 + parent: 1668 + type: Transform +- proto: ClothingBackpackDuffelCargo + entities: + - uid: 6932 + components: + - pos: -5.4863143,25.64425 + parent: 1668 + type: Transform +- proto: ClothingBackpackERTEngineer + entities: + - uid: 6482 + components: + - pos: 5.405767,-40.385548 + parent: 1668 + type: Transform +- proto: ClothingBackpackERTJanitor + entities: + - uid: 6475 + components: + - pos: -6.572158,-40.432423 + parent: 1668 + type: Transform +- proto: ClothingBackpackERTMedical + entities: + - uid: 6477 + components: + - pos: -6.603408,-42.385548 + parent: 1668 + type: Transform +- proto: ClothingBackpackERTSecurity + entities: + - uid: 2901 + components: + - pos: 16.642612,32.410297 + parent: 1668 + type: Transform + - uid: 2902 + components: + - pos: 16.439487,32.566547 + parent: 1668 + type: Transform + - uid: 2903 + components: + - pos: 2.6113625,32.457172 + parent: 1668 + type: Transform + - uid: 2904 + components: + - pos: 2.4551125,32.613422 + parent: 1668 + type: Transform + - uid: 6480 + components: + - pos: 5.390142,-42.369923 + parent: 1668 + type: Transform +- proto: ClothingBackpackSatchelCaptain + entities: + - uid: 3774 + components: + - pos: -11.518181,4.5291095 + parent: 1668 + type: Transform +- proto: ClothingBackpackSatchelHolding + entities: + - uid: 3737 + components: + - pos: -26.540686,12.537982 + parent: 1668 + type: Transform +- proto: ClothingBeltChiefEngineerFilled + entities: + - uid: 6518 + components: + - pos: 5.5354643,-41.589462 + parent: 1668 + type: Transform + - uid: 6956 + components: + - pos: 20.568373,-22.468605 + parent: 1668 + type: Transform +- proto: ClothingBeltJanitorFilled + entities: + - uid: 6517 + components: + - pos: -6.514548,-41.214462 + parent: 1668 + type: Transform +- proto: ClothingBeltMedicalFilled + entities: + - uid: 6520 + components: + - pos: -6.5086355,-43.355087 + parent: 1668 + type: Transform +- proto: ClothingBeltSecurityFilled + entities: + - uid: 1460 + components: + - pos: -6.4730563,-12.590733 + parent: 1668 + type: Transform + - uid: 3151 + components: + - pos: 9.512553,25.678463 + parent: 1668 + type: Transform + - uid: 3152 + components: + - pos: 9.637553,25.537838 + parent: 1668 + type: Transform + - uid: 6519 + components: + - pos: 5.5468187,-43.386337 + parent: 1668 + type: Transform +- proto: ClothingBeltSheathFilled + entities: + - uid: 3725 + components: + - pos: -15.72449,12.605259 + parent: 1668 + type: Transform +- proto: ClothingBeltUtilityFilled + entities: + - uid: 2241 + components: + - pos: -9.339353,8.480244 + parent: 1668 + type: Transform + - uid: 3909 + components: + - pos: -13.494019,-9.4266615 + parent: 1668 + type: Transform + - uid: 5345 + components: + - pos: 25.530863,-26.462372 + parent: 1668 + type: Transform +- proto: ClothingEyesGlassesChemical + entities: + - uid: 6846 + components: + - pos: 3.5108106,-10.103214 + parent: 1668 + type: Transform +- proto: ClothingEyesGlassesMeson + entities: + - uid: 6498 + components: + - pos: 5.4943223,-41.167587 + parent: 1668 + type: Transform +- proto: ClothingEyesGlassesSecurity + entities: + - uid: 2204 + components: + - pos: 16.59961,30.616188 + parent: 1668 + type: Transform + - uid: 2205 + components: + - pos: 16.490234,30.741188 + parent: 1668 + type: Transform + - uid: 4173 + components: + - pos: 2.5571308,30.616188 + parent: 1668 + type: Transform + - uid: 4388 + components: + - pos: 2.4477558,30.694313 + parent: 1668 + type: Transform + - uid: 6499 + components: + - pos: 5.4786973,-43.183212 + parent: 1668 + type: Transform +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 2449 + components: + - pos: -15.8832245,12.471813 + parent: 1668 + type: Transform + - uid: 6947 + components: + - pos: -27.440563,-8.922831 + parent: 1668 + type: Transform + - uid: 6948 + components: + - pos: -27.440563,-8.922831 + parent: 1668 + type: Transform + - uid: 6949 + components: + - pos: -27.440563,-8.922831 + parent: 1668 + type: Transform +- proto: ClothingEyesHudDiagnostic + entities: + - uid: 5371 + components: + - pos: 26.529047,-22.34483 + parent: 1668 + type: Transform +- proto: ClothingHandsGlovesColorBlue + entities: + - uid: 6950 + components: + - pos: -26.706188,-9.407206 + parent: 1668 + type: Transform + - uid: 6951 + components: + - pos: -26.706188,-9.407206 + parent: 1668 + type: Transform + - uid: 6952 + components: + - pos: -26.706188,-9.407206 + parent: 1668 + type: Transform +- proto: ClothingHandsGlovesColorOrange + entities: + - uid: 6484 + components: + - pos: -6.483972,-40.260548 + parent: 1668 + type: Transform +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 6486 + components: + - pos: 5.5487814,-40.276173 + parent: 1668 + type: Transform +- proto: ClothingHandsGlovesCombat + entities: + - uid: 255 + components: + - pos: 2.4165058,30.959938 + parent: 1668 + type: Transform + - uid: 297 + components: + - pos: 2.6508808,30.850563 + parent: 1668 + type: Transform + - uid: 823 + components: + - pos: 16.41518,30.975563 + parent: 1668 + type: Transform + - uid: 833 + components: + - pos: 16.57143,30.913063 + parent: 1668 + type: Transform + - uid: 3724 + components: + - pos: -16.552616,8.708888 + parent: 1668 + type: Transform + - uid: 6485 + components: + - pos: 5.5331564,-42.244923 + parent: 1668 + type: Transform +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 6483 + components: + - pos: -6.499597,-42.244923 + parent: 1668 + type: Transform +- proto: ClothingHeadHatHairflower + entities: + - uid: 6605 + components: + - pos: -11.182456,6.7149878 + parent: 1668 + type: Transform +- proto: ClothingHeadHatWelding + entities: + - uid: 2197 + components: + - pos: -1.4187617,24.501104 + parent: 1668 + type: Transform + - uid: 3700 + components: + - pos: -16.435745,6.5478344 + parent: 1668 + type: Transform + - uid: 5372 + components: + - pos: 27.357172,-22.34483 + parent: 1668 + type: Transform + - uid: 5373 + components: + - pos: 27.544672,-22.46983 + parent: 1668 + type: Transform +- proto: ClothingHeadsetAltCentCom + entities: + - uid: 1435 + components: + - pos: 0.47396702,1.5393463 + parent: 1668 + type: Transform + - uid: 3823 + components: + - pos: 2.6429226,32.7473 + parent: 1668 + type: Transform + - uid: 3824 + components: + - pos: 2.7522976,32.637924 + parent: 1668 + type: Transform + - uid: 3825 + components: + - pos: 16.661858,32.6848 + parent: 1668 + type: Transform + - uid: 3826 + components: + - pos: 16.771233,32.575424 + parent: 1668 + type: Transform +- proto: ClothingMaskBreathMedical + entities: + - uid: 6502 + components: + - pos: -6.496473,-43.620712 + parent: 1668 + type: Transform +- proto: ClothingMaskGas + entities: + - uid: 2224 + components: + - pos: -11.500146,17.576977 + parent: 1668 + type: Transform + - uid: 6503 + components: + - pos: -6.480848,-41.464462 + parent: 1668 + type: Transform +- proto: ClothingMaskGasAtmos + entities: + - uid: 5346 + components: + - pos: 21.493792,-17.470217 + parent: 1668 + type: Transform + - uid: 6501 + components: + - pos: 5.5099473,-41.480087 + parent: 1668 + type: Transform +- proto: ClothingMaskGasDeathSquad + entities: + - uid: 299 + components: + - pos: 16.360958,32.006813 + parent: 1668 + type: Transform + - uid: 821 + components: + - pos: 2.59024,31.975563 + parent: 1668 + type: Transform + - uid: 822 + components: + - pos: 2.34024,32.022438 + parent: 1668 + type: Transform + - uid: 1434 + components: + - pos: 16.595333,31.897438 + parent: 1668 + type: Transform +- proto: ClothingMaskGasSecurity + entities: + - uid: 6500 + components: + - pos: 5.5255723,-43.620712 + parent: 1668 + type: Transform +- proto: ClothingNeckBronzeheart + entities: + - uid: 4377 + components: + - pos: -3.5,-21.5 + parent: 1668 + type: Transform +- proto: ClothingNeckCloakNanotrasen + entities: + - uid: 2452 + components: + - pos: -27.456188,-9.313456 + parent: 1668 + type: Transform + - uid: 2737 + components: + - pos: -27.456188,-9.313456 + parent: 1668 + type: Transform + - uid: 4266 + components: + - pos: -27.456188,-9.313456 + parent: 1668 + type: Transform + - uid: 4615 + components: + - pos: -27.456188,-9.313456 + parent: 1668 + type: Transform + - uid: 6610 + components: + - pos: -12.45408,6.654963 + parent: 1668 + type: Transform +- proto: ClothingNeckGoldmedal + entities: + - uid: 4378 + components: + - pos: 2.5,-21.5 + parent: 1668 + type: Transform +- proto: ClothingNeckLawyerbadge + entities: + - uid: 4379 + components: + - pos: -3.5,-23.5 + parent: 1668 + type: Transform + - uid: 6936 + components: + - pos: 19.539907,21.362776 + parent: 1668 + type: Transform +- proto: ClothingOuterArmorCaptainCarapace + entities: + - uid: 3771 + components: + - pos: -12.455681,6.5291095 + parent: 1668 + type: Transform +- proto: ClothingOuterHardsuitDeathsquad + entities: + - uid: 2897 + components: + - pos: 3.403695,32.551796 + parent: 1668 + type: Transform + - uid: 2898 + components: + - pos: 3.653695,32.69242 + parent: 1668 + type: Transform + - uid: 2899 + components: + - pos: 15.372445,32.53617 + parent: 1668 + type: Transform + - group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + It provides the following protection: + + - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=yellow]Slash[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=yellow]Heat[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=yellow]Radiation[/color] damage reduced by [color=lightblue]90%[/color]. + + - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=orange]Explosion[/color] damage reduced by [color=lightblue]80%[/color]. + priority: 0 + component: Armor + title: null + type: GroupExamine + - uid: 2900 + components: + - pos: 15.653695,32.676796 + parent: 1668 + type: Transform + - group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + It provides the following protection: + + - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=yellow]Slash[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=yellow]Heat[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=yellow]Radiation[/color] damage reduced by [color=lightblue]90%[/color]. + + - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=orange]Explosion[/color] damage reduced by [color=lightblue]80%[/color]. + priority: 0 + component: Armor + title: null + type: GroupExamine +- proto: ClothingOuterHardsuitERTEngineer + entities: + - uid: 6481 + components: + - pos: 5.687017,-40.432423 + parent: 1668 + type: Transform +- proto: ClothingOuterHardsuitERTJanitor + entities: + - uid: 6476 + components: + - pos: -6.322158,-40.432423 + parent: 1668 + type: Transform +- proto: ClothingOuterHardsuitERTMedical + entities: + - uid: 6478 + components: + - pos: -6.306533,-42.385548 + parent: 1668 + type: Transform +- proto: ClothingOuterHardsuitERTSecurity + entities: + - uid: 6479 + components: + - pos: 5.655767,-42.432423 + parent: 1668 + type: Transform +- proto: ClothingShoesBootsLaceup + entities: + - uid: 3722 + components: + - pos: -16.568241,9.145143 + parent: 1668 + type: Transform + - uid: 6953 + components: + - pos: -27.518688,-8.610331 + parent: 1668 + type: Transform + - uid: 6954 + components: + - pos: -27.518688,-8.610331 + parent: 1668 + type: Transform + - uid: 6955 + components: + - pos: -27.518688,-8.610331 + parent: 1668 + type: Transform +- proto: ClothingShoesBootsMag + entities: + - uid: 6487 + components: + - pos: 5.422375,-40.776173 + parent: 1668 + type: Transform + - uid: 6488 + components: + - pos: 5.391125,-42.760548 + parent: 1668 + type: Transform + - uid: 6490 + components: + - pos: -6.663386,-42.678055 + parent: 1668 + type: Transform +- proto: ClothingShoesBootsMagAdv + entities: + - uid: 2909 + components: + - pos: 3.4296377,30.58716 + parent: 1668 + type: Transform + - uid: 2910 + components: + - pos: 3.6171377,30.446535 + parent: 1668 + type: Transform + - uid: 2911 + components: + - pos: 15.407025,30.634035 + parent: 1668 + type: Transform + - uid: 2912 + components: + - pos: 15.6414,30.415285 + parent: 1668 + type: Transform +- proto: ClothingShoesGaloshes + entities: + - uid: 6489 + components: + - pos: -6.647761,-40.740555 + parent: 1668 + type: Transform +- proto: ClothingShoesLeather + entities: + - uid: 3775 + components: + - pos: -10.574664,4.498021 + parent: 1668 + type: Transform +- proto: ClothingUniformJumpsuitDeathSquad + entities: + - uid: 2206 + components: + - pos: 15.35466,32.444313 + parent: 1668 + type: Transform + - uid: 2722 + components: + - pos: 3.637115,32.584938 + parent: 1668 + type: Transform + - uid: 4398 + components: + - pos: 3.40274,32.428688 + parent: 1668 + type: Transform + - uid: 4723 + components: + - pos: 15.651535,32.600563 + parent: 1668 + type: Transform +- proto: ClothingUniformJumpsuitEngineeringHazard + entities: + - uid: 6494 + components: + - pos: 5.560579,-40.369923 + parent: 1668 + type: Transform +- proto: ClothingUniformJumpsuitJanitor + entities: + - uid: 6491 + components: + - pos: -6.4606533,-40.401173 + parent: 1668 + type: Transform +- proto: ClothingUniformJumpsuitNanotrasen + entities: + - uid: 2446 + components: + - pos: -27.362438,-9.485331 + parent: 1668 + type: Transform + - uid: 2451 + components: + - pos: -27.362438,-9.485331 + parent: 1668 + type: Transform + - uid: 2453 + components: + - pos: -27.362438,-9.485331 + parent: 1668 + type: Transform + - uid: 2728 + components: + - pos: -27.362438,-9.485331 + parent: 1668 + type: Transform +- proto: ClothingUniformJumpsuitParamedic + entities: + - uid: 6492 + components: + - pos: -6.500409,-42.323048 + parent: 1668 + type: Transform +- proto: ClothingUniformJumpsuitSec + entities: + - uid: 6493 + components: + - pos: 5.5288286,-42.276173 + parent: 1668 + type: Transform +- proto: ComfyChair + entities: + - uid: 502 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,12.5 + parent: 1668 + type: Transform + - uid: 2194 + components: + - pos: -0.5,24.5 + parent: 1668 + type: Transform + - uid: 2421 + components: + - pos: 28.5,21.5 + parent: 1668 + type: Transform + - uid: 2447 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,9.5 + parent: 1668 + type: Transform + - uid: 2450 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,14.5 + parent: 1668 + type: Transform + - uid: 2492 + components: + - pos: 20.5,21.5 + parent: 1668 + type: Transform + - uid: 2493 + components: + - rot: 3.141592653589793 rad + pos: 20.5,19.5 + parent: 1668 + type: Transform + - uid: 2494 + components: + - rot: 3.141592653589793 rad + pos: 19.5,19.5 + parent: 1668 + type: Transform + - uid: 3171 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,13.5 + parent: 1668 + type: Transform + - uid: 3611 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,11.5 + parent: 1668 + type: Transform + - uid: 3612 + components: + - rot: 3.141592653589793 rad + pos: -15.5,11.5 + parent: 1668 + type: Transform + - uid: 3613 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,10.5 + parent: 1668 + type: Transform + - uid: 3614 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,11.5 + parent: 1668 + type: Transform + - uid: 3615 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,11.5 + parent: 1668 + type: Transform + - uid: 3616 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,10.5 + parent: 1668 + type: Transform + - uid: 3617 + components: + - pos: -24.5,5.5 + parent: 1668 + type: Transform + - uid: 3618 + components: + - pos: -23.5,5.5 + parent: 1668 + type: Transform + - uid: 3619 + components: + - rot: 3.141592653589793 rad + pos: -23.5,3.5 + parent: 1668 + type: Transform + - uid: 3620 + components: + - rot: 3.141592653589793 rad + pos: -24.5,3.5 + parent: 1668 + type: Transform + - uid: 3718 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,12.5 + parent: 1668 + type: Transform + - uid: 3879 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-6.5 + parent: 1668 + type: Transform + - uid: 4189 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,13.5 + parent: 1668 + type: Transform + - uid: 4437 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-26.5 + parent: 1668 + type: Transform + - uid: 4441 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-29.5 + parent: 1668 + type: Transform + - uid: 4442 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-29.5 + parent: 1668 + type: Transform + - uid: 4443 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-25.5 + parent: 1668 + type: Transform + - uid: 4444 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-26.5 + parent: 1668 + type: Transform + - uid: 4445 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-25.5 + parent: 1668 + type: Transform + - uid: 4446 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-26.5 + parent: 1668 + type: Transform + - uid: 4447 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-25.5 + parent: 1668 + type: Transform + - uid: 4448 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-26.5 + parent: 1668 + type: Transform + - uid: 4449 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-25.5 + parent: 1668 + type: Transform + - uid: 4450 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-28.5 + parent: 1668 + type: Transform + - uid: 4451 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-28.5 + parent: 1668 + type: Transform + - uid: 4453 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-29.5 + parent: 1668 + type: Transform + - uid: 4458 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-28.5 + parent: 1668 + type: Transform + - uid: 4470 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-28.5 + parent: 1668 + type: Transform + - uid: 4472 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-29.5 + parent: 1668 + type: Transform + - uid: 5422 + components: + - pos: 17.5,-29.5 + parent: 1668 + type: Transform + - uid: 6614 + components: + - pos: 18.5,15.5 + parent: 1668 + type: Transform + - uid: 6616 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,14.5 + parent: 1668 + type: Transform +- proto: ComputerAlert + entities: + - uid: 655 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1668 + type: Transform + - uid: 4973 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-20.5 + parent: 1668 + type: Transform + - uid: 5338 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-16.5 + parent: 1668 + type: Transform +- proto: computerBodyScanner + entities: + - uid: 611 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 1668 + type: Transform +- proto: ComputerCargoBounty + entities: + - uid: 6923 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,23.5 + parent: 1668 + type: Transform +- proto: ComputerCargoOrders + entities: + - uid: 1624 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,11.5 + parent: 1668 + type: Transform + - uid: 1650 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,16.5 + parent: 1668 + type: Transform + - uid: 1653 + components: + - rot: 3.141592653589793 rad + pos: -13.5,14.5 + parent: 1668 + type: Transform +- proto: ComputerCargoShuttle + entities: + - uid: 1625 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,12.5 + parent: 1668 + type: Transform + - uid: 1651 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,15.5 + parent: 1668 + type: Transform + - uid: 1652 + components: + - rot: 3.141592653589793 rad + pos: -12.5,14.5 + parent: 1668 + type: Transform + - uid: 3818 + components: + - pos: -13.5,17.5 + parent: 1668 + type: Transform +- proto: ComputerCloningConsole + entities: + - uid: 575 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-13.5 + parent: 1668 + type: Transform + - linkedPorts: + 722: + - CloningPodSender: CloningPodReceiver + type: DeviceLinkSource +- proto: ComputerComms + entities: + - uid: 652 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1668 + type: Transform + - uid: 3447 + components: + - pos: -19.5,12.5 + parent: 1668 + type: Transform + - uid: 3629 + components: + - pos: -18.5,6.5 + parent: 1668 + type: Transform + - uid: 3630 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,11.5 + parent: 1668 + type: Transform + - uid: 3837 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-7.5 + parent: 1668 + type: Transform +- proto: ComputerCrewMonitoring + entities: + - uid: 593 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,3.5 + parent: 1668 + type: Transform + - uid: 608 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-4.5 + parent: 1668 + type: Transform + - uid: 656 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1668 + type: Transform +- proto: ComputerCriminalRecords + entities: + - uid: 498 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-8.5 + parent: 1668 + type: Transform + - uid: 590 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,3.5 + parent: 1668 + type: Transform + - uid: 591 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,4.5 + parent: 1668 + type: Transform + - uid: 653 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 1668 + type: Transform + - uid: 813 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-13.5 + parent: 1668 + type: Transform + - uid: 2426 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,17.5 + parent: 1668 + type: Transform + - uid: 3258 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,22.5 + parent: 1668 + type: Transform +- proto: ComputerId + entities: + - uid: 589 + components: + - rot: 3.141592653589793 rad + pos: 13.5,3.5 + parent: 1668 + type: Transform + - uid: 651 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1668 + type: Transform + - uid: 3448 + components: + - pos: -18.5,12.5 + parent: 1668 + type: Transform + - uid: 3907 + components: + - pos: -25.5,-5.5 + parent: 1668 + type: Transform +- proto: ComputerMedicalRecords + entities: + - uid: 657 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1668 + type: Transform +- proto: ComputerPalletConsole + entities: + - uid: 6930 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,27.5 + parent: 1668 + type: Transform +- proto: ComputerPowerMonitoring + entities: + - uid: 3256 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,18.5 + parent: 1668 + type: Transform + - uid: 3573 + components: + - rot: 3.141592653589793 rad + pos: -15.5,4.5 + parent: 1668 + type: Transform + - uid: 4971 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-21.5 + parent: 1668 + type: Transform +- proto: ComputerShuttleCargo + entities: + - uid: 3719 + components: + - pos: -12.5,17.5 + parent: 1668 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 3720 + components: + - pos: 3.5,-15.5 + parent: 1668 + type: Transform +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 499 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-9.5 + parent: 1668 + type: Transform + - uid: 592 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,4.5 + parent: 1668 + type: Transform + - uid: 654 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1668 + type: Transform + - uid: 814 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-13.5 + parent: 1668 + type: Transform + - uid: 2745 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,18.5 + parent: 1668 + type: Transform +- proto: ComputerTelevision + entities: + - uid: 3715 + components: + - pos: -14.5,12.5 + parent: 1668 + type: Transform +- proto: ConveyorBelt + entities: + - uid: 1576 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,24.5 + parent: 1668 + type: Transform + - links: + - 1588 + type: DeviceLinkSink + - uid: 1577 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,24.5 + parent: 1668 + type: Transform + - links: + - 1588 + type: DeviceLinkSink + - uid: 1578 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,24.5 + parent: 1668 + type: Transform + - links: + - 1588 + type: DeviceLinkSink + - uid: 1579 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,24.5 + parent: 1668 + type: Transform + - links: + - 1588 + type: DeviceLinkSink + - uid: 1580 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,24.5 + parent: 1668 + type: Transform + - links: + - 1588 + type: DeviceLinkSink + - uid: 1581 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,24.5 + parent: 1668 + type: Transform + - links: + - 1588 + type: DeviceLinkSink + - uid: 1582 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,28.5 + parent: 1668 + type: Transform + - links: + - 1589 + type: DeviceLinkSink + - uid: 1583 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,28.5 + parent: 1668 + type: Transform + - links: + - 1589 + type: DeviceLinkSink + - uid: 1584 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,28.5 + parent: 1668 + type: Transform + - links: + - 1589 + type: DeviceLinkSink + - uid: 1585 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,28.5 + parent: 1668 + type: Transform + - links: + - 1589 + type: DeviceLinkSink + - uid: 1586 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,28.5 + parent: 1668 + type: Transform + - links: + - 1589 + type: DeviceLinkSink + - uid: 1587 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,28.5 + parent: 1668 + type: Transform + - links: + - 1589 + type: DeviceLinkSink + - uid: 5902 + components: + - pos: -19.5,-33.5 + parent: 1668 + type: Transform + - links: + - 5906 + type: DeviceLinkSink + - uid: 5903 + components: + - pos: -19.5,-32.5 + parent: 1668 + type: Transform + - links: + - 5906 + type: DeviceLinkSink + - uid: 5904 + components: + - pos: -19.5,-31.5 + parent: 1668 + type: Transform + - links: + - 5906 + type: DeviceLinkSink +- proto: CrateArmoryLaser + entities: + - uid: 6533 + components: + - pos: -7.5,22.5 + parent: 1668 + type: Transform +- proto: CrateArmoryShotgun + entities: + - uid: 6532 + components: + - pos: -9.5,24.5 + parent: 1668 + type: Transform +- proto: CrateArmorySMG + entities: + - uid: 6531 + components: + - pos: -6.5,26.5 + parent: 1668 + type: Transform +- proto: CrateEmergencyRadiation + entities: + - uid: 5379 + components: + - pos: 23.5,-13.5 + parent: 1668 + type: Transform +- proto: CrateEngineeringCableBulk + entities: + - uid: 5328 + components: + - pos: 30.5,-15.5 + parent: 1668 + type: Transform +- proto: CrateEngineeringCableLV + entities: + - uid: 5380 + components: + - pos: 19.5,-13.5 + parent: 1668 + type: Transform +- proto: CrateEngineeringCableMV + entities: + - uid: 5381 + components: + - pos: 16.5,-13.5 + parent: 1668 + type: Transform +- proto: CrateFoodPizza + entities: + - uid: 6528 + components: + - pos: -8.5,22.5 + parent: 1668 + type: Transform +- proto: CrateFunPlushie + entities: + - uid: 6530 + components: + - pos: -8.5,28.5 + parent: 1668 + type: Transform +- proto: CrateHydroponicsSeedsExotic + entities: + - uid: 6527 + components: + - pos: -5.5,17.5 + parent: 1668 + type: Transform +- proto: CrateMedicalSurgery + entities: + - uid: 629 + components: + - pos: 10.5,-4.5 + parent: 1668 + type: Transform +- proto: CrateMousetrapBoxes + entities: + - uid: 6529 + components: + - pos: -7.5,26.5 + parent: 1668 + type: Transform +- proto: CrowbarRed + entities: + - uid: 515 + components: + - pos: 20.552847,-10.547255 + parent: 1668 + type: Transform + - uid: 1451 + components: + - pos: 14.506881,6.5434804 + parent: 1668 + type: Transform + - uid: 2225 + components: + - pos: -11.468896,17.467602 + parent: 1668 + type: Transform + - uid: 2467 + components: + - pos: 22.533863,23.410753 + parent: 1668 + type: Transform + - uid: 2870 + components: + - pos: 4.569995,19.321579 + parent: 1668 + type: Transform + - uid: 3899 + components: + - pos: -12.531932,-6.3835163 + parent: 1668 + type: Transform + - uid: 5347 + components: + - pos: 21.478167,-17.501467 + parent: 1668 + type: Transform +- proto: CryoPod + entities: + - uid: 6642 + components: + - pos: 11.5,-4.5 + parent: 1668 + type: Transform +- proto: DeathsquadPDA + entities: + - uid: 298 + components: + - pos: 2.579019,31.366188 + parent: 1668 + type: Transform + - uid: 579 + components: + - pos: 16.399555,31.459938 + parent: 1668 + type: Transform + - uid: 820 + components: + - pos: 16.587055,31.366188 + parent: 1668 + type: Transform + - uid: 834 + components: + - pos: 2.407144,31.491188 + parent: 1668 + type: Transform +- proto: DefibrillatorCabinetFilled + entities: + - uid: 2914 + components: + - pos: 10.5,2.5 + parent: 1668 + type: Transform + - uid: 3123 + components: + - pos: 19.5,6.5 + parent: 1668 + type: Transform + - uid: 3133 + components: + - pos: 11.5,-17.5 + parent: 1668 + type: Transform + - uid: 3139 + components: + - pos: 0.5,-3.5 + parent: 1668 + type: Transform + - uid: 6644 + components: + - pos: 9.5,-3.5 + parent: 1668 + type: Transform +- proto: DeployableBarrier + entities: + - uid: 3144 + components: + - pos: 6.5,29.5 + parent: 1668 + type: Transform + - uid: 3145 + components: + - pos: 5.5,29.5 + parent: 1668 + type: Transform + - uid: 3146 + components: + - pos: 12.5,29.5 + parent: 1668 + type: Transform + - uid: 3147 + components: + - pos: 13.5,29.5 + parent: 1668 + type: Transform +- proto: DiceBag + entities: + - uid: 3763 + components: + - pos: -24.498522,4.631134 + parent: 1668 + type: Transform +- proto: DisposalBend + entities: + - uid: 2059 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,14.5 + parent: 1668 + type: Transform + - uid: 2073 + components: + - rot: 3.141592653589793 rad + pos: -10.5,10.5 + parent: 1668 + type: Transform + - uid: 2074 + components: + - pos: -5.5,10.5 + parent: 1668 + type: Transform + - uid: 2076 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1668 + type: Transform + - uid: 2086 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-4.5 + parent: 1668 + type: Transform + - uid: 2091 + components: + - pos: -0.5,-4.5 + parent: 1668 + type: Transform + - uid: 2093 + components: + - pos: 31.5,-5.5 + parent: 1668 + type: Transform + - uid: 2117 + components: + - pos: 20.5,-1.5 + parent: 1668 + type: Transform + - uid: 2118 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-5.5 + parent: 1668 + type: Transform + - uid: 2125 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1668 + type: Transform + - uid: 2129 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 1668 + type: Transform + - uid: 2179 + components: + - pos: -0.5,8.5 + parent: 1668 + type: Transform + - uid: 2180 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1668 + type: Transform + - uid: 3639 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,2.5 + parent: 1668 + type: Transform + - uid: 3852 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 1668 + type: Transform + - uid: 4649 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-32.5 + parent: 1668 + type: Transform + - uid: 4650 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-33.5 + parent: 1668 + type: Transform + - uid: 4925 + components: + - pos: -11.5,-22.5 + parent: 1668 + type: Transform + - uid: 4949 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-18.5 + parent: 1668 + type: Transform + - uid: 4951 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 1668 + type: Transform + - uid: 4952 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-18.5 + parent: 1668 + type: Transform + - uid: 5897 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-32.5 + parent: 1668 + type: Transform +- proto: DisposalJunction + entities: + - uid: 2082 + components: + - pos: -5.5,-0.5 + parent: 1668 + type: Transform + - uid: 4948 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 1668 + type: Transform +- proto: DisposalJunctionFlipped + entities: + - uid: 2080 + components: + - pos: -5.5,3.5 + parent: 1668 + type: Transform + - uid: 2081 + components: + - pos: -5.5,0.5 + parent: 1668 + type: Transform + - uid: 2120 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 1668 + type: Transform + - uid: 2134 + components: + - pos: -0.5,-5.5 + parent: 1668 + type: Transform + - uid: 3640 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-0.5 + parent: 1668 + type: Transform + - uid: 4927 + components: + - pos: -13.5,-22.5 + parent: 1668 + type: Transform +- proto: DisposalPipe + entities: + - uid: 2060 + components: + - pos: -10.5,13.5 + parent: 1668 + type: Transform + - uid: 2061 + components: + - pos: -10.5,12.5 + parent: 1668 + type: Transform + - uid: 2062 + components: + - pos: -10.5,11.5 + parent: 1668 + type: Transform + - uid: 2063 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,10.5 + parent: 1668 + type: Transform + - uid: 2064 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,10.5 + parent: 1668 + type: Transform + - uid: 2065 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,10.5 + parent: 1668 + type: Transform + - uid: 2066 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,10.5 + parent: 1668 + type: Transform + - uid: 2067 + components: + - rot: 3.141592653589793 rad + pos: -5.5,9.5 + parent: 1668 + type: Transform + - uid: 2068 + components: + - rot: 3.141592653589793 rad + pos: -5.5,8.5 + parent: 1668 + type: Transform + - uid: 2069 + components: + - rot: 3.141592653589793 rad + pos: -5.5,7.5 + parent: 1668 + type: Transform + - uid: 2070 + components: + - rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 1668 + type: Transform + - uid: 2071 + components: + - rot: 3.141592653589793 rad + pos: -5.5,5.5 + parent: 1668 + type: Transform + - uid: 2072 + components: + - rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 1668 + type: Transform + - uid: 2077 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1668 + type: Transform + - uid: 2078 + components: + - pos: -5.5,1.5 + parent: 1668 + type: Transform + - uid: 2079 + components: + - pos: -5.5,2.5 + parent: 1668 + type: Transform + - uid: 2083 + components: + - pos: -5.5,-1.5 + parent: 1668 + type: Transform + - uid: 2084 + components: + - pos: -5.5,-2.5 + parent: 1668 + type: Transform + - uid: 2085 + components: + - pos: -5.5,-3.5 + parent: 1668 + type: Transform + - uid: 2087 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1668 + type: Transform + - uid: 2088 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1668 + type: Transform + - uid: 2089 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1668 + type: Transform + - uid: 2090 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1668 + type: Transform + - uid: 2094 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-5.5 + parent: 1668 + type: Transform + - uid: 2095 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-5.5 + parent: 1668 + type: Transform + - uid: 2096 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-5.5 + parent: 1668 + type: Transform + - uid: 2097 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-5.5 + parent: 1668 + type: Transform + - uid: 2098 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-5.5 + parent: 1668 + type: Transform + - uid: 2099 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-5.5 + parent: 1668 + type: Transform + - uid: 2100 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-5.5 + parent: 1668 + type: Transform + - uid: 2101 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-5.5 + parent: 1668 + type: Transform + - uid: 2102 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-5.5 + parent: 1668 + type: Transform + - uid: 2103 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-5.5 + parent: 1668 + type: Transform + - uid: 2104 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-4.5 + parent: 1668 + type: Transform + - uid: 2105 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-3.5 + parent: 1668 + type: Transform + - uid: 2106 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-2.5 + parent: 1668 + type: Transform + - uid: 2107 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-1.5 + parent: 1668 + type: Transform + - uid: 2108 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-1.5 + parent: 1668 + type: Transform + - uid: 2109 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-1.5 + parent: 1668 + type: Transform + - uid: 2110 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-1.5 + parent: 1668 + type: Transform + - uid: 2111 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-1.5 + parent: 1668 + type: Transform + - uid: 2112 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 1668 + type: Transform + - uid: 2113 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 1668 + type: Transform + - uid: 2114 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 1668 + type: Transform + - uid: 2115 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 1668 + type: Transform + - uid: 2116 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 1668 + type: Transform + - uid: 2121 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1668 + type: Transform + - uid: 2122 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1668 + type: Transform + - uid: 2123 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1668 + type: Transform + - uid: 2124 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1668 + type: Transform + - uid: 2126 + components: + - pos: 4.5,-2.5 + parent: 1668 + type: Transform + - uid: 2127 + components: + - pos: 4.5,-3.5 + parent: 1668 + type: Transform + - uid: 2128 + components: + - pos: 4.5,-4.5 + parent: 1668 + type: Transform + - uid: 2130 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1668 + type: Transform + - uid: 2131 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1668 + type: Transform + - uid: 2132 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1668 + type: Transform + - uid: 2133 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1668 + type: Transform + - uid: 2135 + components: + - pos: -0.5,-6.5 + parent: 1668 + type: Transform + - uid: 2136 + components: + - pos: -0.5,-7.5 + parent: 1668 + type: Transform + - uid: 2137 + components: + - pos: -0.5,-8.5 + parent: 1668 + type: Transform + - uid: 2138 + components: + - pos: -0.5,-9.5 + parent: 1668 + type: Transform + - uid: 2139 + components: + - pos: -0.5,-10.5 + parent: 1668 + type: Transform + - uid: 2140 + components: + - pos: -0.5,-11.5 + parent: 1668 + type: Transform + - uid: 2141 + components: + - pos: -0.5,-12.5 + parent: 1668 + type: Transform + - uid: 2181 + components: + - rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1668 + type: Transform + - uid: 2182 + components: + - rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 1668 + type: Transform + - uid: 2183 + components: + - rot: 3.141592653589793 rad + pos: -0.5,6.5 + parent: 1668 + type: Transform + - uid: 2184 + components: + - rot: 3.141592653589793 rad + pos: -0.5,7.5 + parent: 1668 + type: Transform + - uid: 2185 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1668 + type: Transform + - uid: 2186 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,8.5 + parent: 1668 + type: Transform + - uid: 2187 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1668 + type: Transform + - uid: 2188 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1668 + type: Transform + - uid: 2189 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1668 + type: Transform + - uid: 2190 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1668 + type: Transform + - uid: 3641 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,2.5 + parent: 1668 + type: Transform + - uid: 3642 + components: + - pos: -21.5,1.5 + parent: 1668 + type: Transform + - uid: 3643 + components: + - pos: -21.5,0.5 + parent: 1668 + type: Transform + - uid: 3644 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-0.5 + parent: 1668 + type: Transform + - uid: 3645 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 1668 + type: Transform + - uid: 3646 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 1668 + type: Transform + - uid: 3647 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 1668 + type: Transform + - uid: 3648 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-0.5 + parent: 1668 + type: Transform + - uid: 3649 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 1668 + type: Transform + - uid: 3650 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-0.5 + parent: 1668 + type: Transform + - uid: 3651 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 1668 + type: Transform + - uid: 3652 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 1668 + type: Transform + - uid: 3653 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 1668 + type: Transform + - uid: 3654 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 1668 + type: Transform + - uid: 3655 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 1668 + type: Transform + - uid: 3656 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 1668 + type: Transform + - uid: 3657 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1668 + type: Transform + - uid: 3658 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1668 + type: Transform + - uid: 3844 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-8.5 + parent: 1668 + type: Transform + - uid: 3845 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-7.5 + parent: 1668 + type: Transform + - uid: 3846 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-6.5 + parent: 1668 + type: Transform + - uid: 3847 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-5.5 + parent: 1668 + type: Transform + - uid: 3848 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-4.5 + parent: 1668 + type: Transform + - uid: 3849 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-3.5 + parent: 1668 + type: Transform + - uid: 3850 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-2.5 + parent: 1668 + type: Transform + - uid: 3851 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-1.5 + parent: 1668 + type: Transform + - uid: 4926 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-22.5 + parent: 1668 + type: Transform + - uid: 4928 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-21.5 + parent: 1668 + type: Transform + - uid: 4929 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-20.5 + parent: 1668 + type: Transform + - uid: 4930 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-19.5 + parent: 1668 + type: Transform + - uid: 4931 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-18.5 + parent: 1668 + type: Transform + - uid: 4932 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-18.5 + parent: 1668 + type: Transform + - uid: 4933 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-18.5 + parent: 1668 + type: Transform + - uid: 4934 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-18.5 + parent: 1668 + type: Transform + - uid: 4935 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-18.5 + parent: 1668 + type: Transform + - uid: 4936 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-18.5 + parent: 1668 + type: Transform + - uid: 4937 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-18.5 + parent: 1668 + type: Transform + - uid: 4938 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-18.5 + parent: 1668 + type: Transform + - uid: 4939 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-18.5 + parent: 1668 + type: Transform + - uid: 4940 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-18.5 + parent: 1668 + type: Transform + - uid: 4941 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-18.5 + parent: 1668 + type: Transform + - uid: 4942 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 1668 + type: Transform + - uid: 4943 + components: + - pos: -0.5,-17.5 + parent: 1668 + type: Transform + - uid: 4944 + components: + - pos: -0.5,-16.5 + parent: 1668 + type: Transform + - uid: 4945 + components: + - pos: -0.5,-15.5 + parent: 1668 + type: Transform + - uid: 4946 + components: + - pos: -0.5,-14.5 + parent: 1668 + type: Transform + - uid: 4947 + components: + - pos: -0.5,-13.5 + parent: 1668 + type: Transform + - uid: 4953 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 1668 + type: Transform + - uid: 4954 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-18.5 + parent: 1668 + type: Transform + - uid: 4955 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-18.5 + parent: 1668 + type: Transform + - uid: 4956 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-18.5 + parent: 1668 + type: Transform + - uid: 4957 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-18.5 + parent: 1668 + type: Transform + - uid: 4958 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-18.5 + parent: 1668 + type: Transform + - uid: 4959 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-18.5 + parent: 1668 + type: Transform + - uid: 4960 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-18.5 + parent: 1668 + type: Transform + - uid: 4961 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-18.5 + parent: 1668 + type: Transform + - uid: 4962 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 1668 + type: Transform + - uid: 4963 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1668 + type: Transform + - uid: 4964 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 1668 + type: Transform + - uid: 4965 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 1668 + type: Transform + - uid: 5785 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-32.5 + parent: 1668 + type: Transform + - uid: 5888 + components: + - pos: -13.5,-23.5 + parent: 1668 + type: Transform + - uid: 5889 + components: + - pos: -13.5,-24.5 + parent: 1668 + type: Transform + - uid: 5890 + components: + - pos: -13.5,-25.5 + parent: 1668 + type: Transform + - uid: 5891 + components: + - pos: -13.5,-26.5 + parent: 1668 + type: Transform + - uid: 5892 + components: + - pos: -13.5,-27.5 + parent: 1668 + type: Transform + - uid: 5893 + components: + - pos: -13.5,-28.5 + parent: 1668 + type: Transform + - uid: 5894 + components: + - pos: -13.5,-29.5 + parent: 1668 + type: Transform + - uid: 5895 + components: + - pos: -13.5,-30.5 + parent: 1668 + type: Transform + - uid: 5896 + components: + - pos: -13.5,-31.5 + parent: 1668 + type: Transform + - uid: 5898 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-32.5 + parent: 1668 + type: Transform + - uid: 5899 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-33.5 + parent: 1668 + type: Transform + - uid: 5900 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-33.5 + parent: 1668 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 2058 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,14.5 + parent: 1668 + type: Transform + - uid: 2075 + components: + - pos: -3.5,1.5 + parent: 1668 + type: Transform + - uid: 2092 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-6.5 + parent: 1668 + type: Transform + - uid: 2119 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-2.5 + parent: 1668 + type: Transform + - uid: 2178 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1668 + type: Transform + - uid: 3638 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,2.5 + parent: 1668 + type: Transform + - uid: 3843 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-9.5 + parent: 1668 + type: Transform + - uid: 4924 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-23.5 + parent: 1668 + type: Transform + - uid: 4950 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-16.5 + parent: 1668 + type: Transform + - uid: 5901 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-33.5 + parent: 1668 + type: Transform +- proto: DisposalUnit + entities: + - uid: 531 + components: + - pos: 31.5,-6.5 + parent: 1668 + type: Transform + - uid: 630 + components: + - pos: 9.5,-2.5 + parent: 1668 + type: Transform + - uid: 836 + components: + - pos: 13.5,-16.5 + parent: 1668 + type: Transform + - uid: 1407 + components: + - pos: -3.5,1.5 + parent: 1668 + type: Transform + - uid: 1663 + components: + - pos: -9.5,14.5 + parent: 1668 + type: Transform + - uid: 2177 + components: + - pos: -3.5,8.5 + parent: 1668 + type: Transform + - uid: 3462 + components: + - pos: -19.5,2.5 + parent: 1668 + type: Transform + - uid: 3842 + components: + - pos: -22.5,-9.5 + parent: 1668 + type: Transform + - uid: 4923 + components: + - pos: -11.5,-23.5 + parent: 1668 + type: Transform +- proto: Dresser + entities: + - uid: 3435 + components: + - pos: -14.5,8.5 + parent: 1668 + type: Transform +- proto: DrinkFlask + entities: + - uid: 3773 + components: + - pos: -11.533806,6.6228595 + parent: 1668 + type: Transform +- proto: DrinkGoldenCup + entities: + - uid: 3769 + components: + - pos: -26.535545,11.773157 + parent: 1668 + type: Transform + - uid: 4375 + components: + - pos: -3.5,-22.5 + parent: 1668 + type: Transform + - uid: 4376 + components: + - pos: 2.5,-22.5 + parent: 1668 + type: Transform +- proto: DrinkHotCoffee + entities: + - uid: 5464 + components: + - pos: 16.572073,-29.470444 + parent: 1668 + type: Transform +- proto: DrinkMugHeart + entities: + - uid: 1399 + components: + - pos: 2.5713959,-11.619784 + parent: 1668 + type: Transform +- proto: DrinkShaker + entities: + - uid: 6621 + components: + - pos: 10.4809675,-21.408005 + parent: 1668 + type: Transform +- proto: DrinkShotGlass + entities: + - uid: 3889 + components: + - pos: -24.572554,-3.3475308 + parent: 1668 + type: Transform + - uid: 3890 + components: + - pos: -24.400679,-3.4725308 + parent: 1668 + type: Transform +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 3875 + components: + - pos: -27.52259,-4.144406 + parent: 1668 + type: Transform +- proto: EmergencyLight + entities: + - uid: 3155 + components: + - pos: 9.5,25.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 3156 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,29.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 3157 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,29.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 3158 + components: + - pos: 7.5,15.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 3159 + components: + - pos: 24.5,13.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 3160 + components: + - pos: 29.5,23.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 3161 + components: + - pos: 23.5,5.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 3162 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-6.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 3163 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-2.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 3164 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 3165 + components: + - pos: -6.5,4.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 3166 + components: + - pos: -2.5,-9.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 3167 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,26.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 3168 + components: + - pos: -2.5,16.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 3169 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,31.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 3170 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,31.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight +- proto: EpinephrineChemistryBottle + entities: + - uid: 1462 + components: + - pos: 13.808971,-12.626007 + parent: 1668 + type: Transform + - uid: 1463 + components: + - pos: 13.818524,-12.297882 + parent: 1668 + type: Transform + - uid: 6550 + components: + - pos: -6.2556453,-39.464973 + parent: 1668 + type: Transform + - uid: 6551 + components: + - pos: -6.2087703,-39.339973 + parent: 1668 + type: Transform + - uid: 6552 + components: + - pos: -6.1462703,-39.246223 + parent: 1668 + type: Transform +- proto: ExtinguisherCabinetFilled + entities: + - uid: 628 + components: + - pos: 16.5,-5.5 + parent: 1668 + type: Transform + - uid: 2237 + components: + - pos: 8.5,6.5 + parent: 1668 + type: Transform + - uid: 3908 + components: + - pos: -16.5,-3.5 + parent: 1668 + type: Transform + - uid: 3910 + components: + - pos: -9.5,-5.5 + parent: 1668 + type: Transform + - uid: 3911 + components: + - pos: -13.5,10.5 + parent: 1668 + type: Transform + - uid: 3912 + components: + - pos: -4.5,16.5 + parent: 1668 + type: Transform + - uid: 3913 + components: + - pos: 15.5,15.5 + parent: 1668 + type: Transform + - uid: 3914 + components: + - pos: 21.5,17.5 + parent: 1668 + type: Transform + - uid: 3915 + components: + - pos: 13.5,18.5 + parent: 1668 + type: Transform + - uid: 3916 + components: + - pos: 18.5,2.5 + parent: 1668 + type: Transform + - uid: 3917 + components: + - pos: 18.5,-3.5 + parent: 1668 + type: Transform + - uid: 3918 + components: + - pos: 2.5,-9.5 + parent: 1668 + type: Transform + - uid: 4150 + components: + - pos: -28.5,1.5 + parent: 1668 + type: Transform +- proto: FaxMachineCentcom + entities: + - uid: 76 + components: + - pos: -2.5,-2.5 + parent: 1668 + type: Transform + - name: CentComm + type: FaxMachine +- proto: filingCabinet + entities: + - uid: 594 + components: + - pos: 10.5,6.5 + parent: 1668 + type: Transform + - uid: 595 + components: + - pos: 11.5,6.5 + parent: 1668 + type: Transform + - uid: 650 + components: + - pos: 1.5,1.5 + parent: 1668 + type: Transform + - uid: 816 + components: + - pos: -6.5,-9.5 + parent: 1668 + type: Transform + - uid: 3840 + components: + - pos: -24.5,-9.5 + parent: 1668 + type: Transform + - uid: 3841 + components: + - pos: -23.5,-9.5 + parent: 1668 + type: Transform +- proto: filingCabinetDrawer + entities: + - uid: 1628 + components: + - pos: -12.5,12.5 + parent: 1668 + type: Transform + - uid: 1660 + components: + - pos: -11.5,14.5 + parent: 1668 + type: Transform +- proto: filingCabinetTall + entities: + - uid: 1626 + components: + - pos: -12.5,8.5 + parent: 1668 + type: Transform + - uid: 1627 + components: + - pos: -11.5,8.5 + parent: 1668 + type: Transform + - uid: 1661 + components: + - pos: -9.5,17.5 + parent: 1668 + type: Transform +- proto: FireAxeCabinetFilled + entities: + - uid: 6647 + components: + - pos: 15.5,-28.5 + parent: 1668 + type: Transform +- proto: FirelockGlass + entities: + - uid: 15 + components: + - pos: 5.5,-3.5 + parent: 1668 + type: Transform + - uid: 16 + components: + - pos: 4.5,-3.5 + parent: 1668 + type: Transform + - uid: 17 + components: + - pos: 3.5,-4.5 + parent: 1668 + type: Transform + - uid: 18 + components: + - pos: 3.5,-5.5 + parent: 1668 + type: Transform + - uid: 19 + components: + - pos: 5.5,2.5 + parent: 1668 + type: Transform + - uid: 20 + components: + - pos: 4.5,2.5 + parent: 1668 + type: Transform + - uid: 21 + components: + - pos: 3.5,4.5 + parent: 1668 + type: Transform + - uid: 22 + components: + - pos: 3.5,3.5 + parent: 1668 + type: Transform + - uid: 23 + components: + - pos: -4.5,4.5 + parent: 1668 + type: Transform + - uid: 24 + components: + - pos: -4.5,3.5 + parent: 1668 + type: Transform + - uid: 25 + components: + - pos: -6.5,2.5 + parent: 1668 + type: Transform + - uid: 26 + components: + - pos: -5.5,2.5 + parent: 1668 + type: Transform + - uid: 27 + components: + - pos: -6.5,-3.5 + parent: 1668 + type: Transform + - uid: 28 + components: + - pos: -5.5,-3.5 + parent: 1668 + type: Transform + - uid: 29 + components: + - pos: -4.5,-4.5 + parent: 1668 + type: Transform + - uid: 125 + components: + - pos: 9.5,16.5 + parent: 1668 + type: Transform + - uid: 131 + components: + - pos: -4.5,-5.5 + parent: 1668 + type: Transform + - uid: 492 + components: + - pos: 25.5,-7.5 + parent: 1668 + type: Transform + - uid: 493 + components: + - pos: 26.5,-7.5 + parent: 1668 + type: Transform + - uid: 495 + components: + - pos: 27.5,-7.5 + parent: 1668 + type: Transform + - uid: 559 + components: + - pos: 12.5,2.5 + parent: 1668 + type: Transform + - uid: 560 + components: + - pos: 14.5,2.5 + parent: 1668 + type: Transform + - uid: 733 + components: + - pos: 2.5,-11.5 + parent: 1668 + type: Transform + - uid: 735 + components: + - pos: 2.5,-12.5 + parent: 1668 + type: Transform + - uid: 772 + components: + - pos: -3.5,-12.5 + parent: 1668 + type: Transform + - uid: 773 + components: + - pos: -3.5,-11.5 + parent: 1668 + type: Transform + - uid: 1619 + components: + - pos: -4.5,9.5 + parent: 1668 + type: Transform + - uid: 1620 + components: + - pos: -4.5,10.5 + parent: 1668 + type: Transform + - uid: 4299 + components: + - pos: 6.5,-24.5 + parent: 1668 + type: Transform + - uid: 4404 + components: + - pos: -8.5,-27.5 + parent: 1668 + type: Transform + - uid: 4405 + components: + - pos: -8.5,-26.5 + parent: 1668 + type: Transform + - uid: 4406 + components: + - pos: -8.5,-25.5 + parent: 1668 + type: Transform + - uid: 4407 + components: + - pos: 7.5,-27.5 + parent: 1668 + type: Transform + - uid: 4408 + components: + - pos: 7.5,-26.5 + parent: 1668 + type: Transform + - uid: 4409 + components: + - pos: 7.5,-25.5 + parent: 1668 + type: Transform + - uid: 4630 + components: + - pos: -13.5,-20.5 + parent: 1668 + type: Transform + - uid: 4631 + components: + - pos: -14.5,-20.5 + parent: 1668 + type: Transform + - uid: 4632 + components: + - pos: 13.5,-20.5 + parent: 1668 + type: Transform + - uid: 4633 + components: + - pos: 12.5,-20.5 + parent: 1668 + type: Transform + - uid: 4754 + components: + - pos: 16.5,-22.5 + parent: 1668 + type: Transform + - uid: 4968 + components: + - pos: 12.5,-29.5 + parent: 1668 + type: Transform + - uid: 4969 + components: + - pos: 13.5,-29.5 + parent: 1668 + type: Transform + - uid: 5045 + components: + - pos: 19.5,-19.5 + parent: 1668 + type: Transform + - uid: 5046 + components: + - pos: 20.5,-19.5 + parent: 1668 + type: Transform + - uid: 5047 + components: + - pos: 21.5,-19.5 + parent: 1668 + type: Transform + - uid: 5222 + components: + - pos: 25.5,-19.5 + parent: 1668 + type: Transform + - uid: 5224 + components: + - pos: 24.5,-19.5 + parent: 1668 + type: Transform + - uid: 5233 + components: + - pos: 26.5,-19.5 + parent: 1668 + type: Transform + - uid: 5254 + components: + - pos: 29.5,-18.5 + parent: 1668 + type: Transform + - uid: 5255 + components: + - pos: 29.5,-17.5 + parent: 1668 + type: Transform + - uid: 5256 + components: + - pos: 29.5,-16.5 + parent: 1668 + type: Transform + - uid: 5876 + components: + - pos: -14.5,-29.5 + parent: 1668 + type: Transform + - uid: 5877 + components: + - pos: -13.5,-29.5 + parent: 1668 + type: Transform + - uid: 6239 + components: + - pos: 3.5,-34.5 + parent: 1668 + type: Transform + - uid: 6244 + components: + - pos: 2.5,-34.5 + parent: 1668 + type: Transform + - uid: 6245 + components: + - pos: 4.5,-34.5 + parent: 1668 + type: Transform + - uid: 6267 + components: + - pos: -5.5,-34.5 + parent: 1668 + type: Transform + - uid: 6268 + components: + - pos: -4.5,-34.5 + parent: 1668 + type: Transform + - uid: 6269 + components: + - pos: -3.5,-34.5 + parent: 1668 + type: Transform +- proto: Fireplace + entities: + - uid: 3393 + components: + - pos: -23.5,12.5 + parent: 1668 + type: Transform +- proto: Flash + entities: + - uid: 1452 + components: + - pos: 10.538131,4.4341054 + parent: 1668 + type: Transform + - uid: 3748 + components: + - pos: -26.453917,8.594473 + parent: 1668 + type: Transform + - uid: 4698 + components: + - pos: 24.48021,-8.554767 + parent: 1668 + type: Transform +- proto: FloorDrain + entities: + - uid: 3421 + components: + - pos: -20.5,15.5 + parent: 1668 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 6622 + components: + - pos: 12.5,-16.5 + parent: 1668 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 6623 + components: + - pos: -16.5,-33.5 + parent: 1668 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 6718 + components: + - pos: -8.5,-22.5 + parent: 1668 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 6876 + components: + - pos: 20.5,-25.5 + parent: 1668 + type: Transform + - fixtures: {} + type: Fixtures +- proto: FloraTreeChristmas02 + entities: + - uid: 6977 + components: + - pos: 31.480457,-0.78125 + parent: 1668 + type: Transform +- proto: FoodBoxDonkpocketPizza + entities: + - uid: 2227 + components: + - pos: -14.517971,17.62628 + parent: 1668 + type: Transform + - uid: 3905 + components: + - pos: -13.406932,-7.1178913 + parent: 1668 + type: Transform +- proto: FoodBoxDonut + entities: + - uid: 1400 + components: + - pos: -3.5536041,-11.463534 + parent: 1668 + type: Transform + - uid: 2496 + components: + - pos: 28.583382,10.652384 + parent: 1668 + type: Transform + - uid: 3745 + components: + - pos: -23.474928,11.563223 + parent: 1668 + type: Transform + - uid: 3752 + components: + - pos: -19.463516,4.614471 + parent: 1668 + type: Transform + - uid: 3874 + components: + - pos: -27.444466,-3.3787808 + parent: 1668 + type: Transform + - uid: 3891 + components: + - pos: -22.447554,-6.441281 + parent: 1668 + type: Transform +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 4592 + components: + - pos: -11.611271,-26.1594 + parent: 1668 + type: Transform + - uid: 4593 + components: + - pos: -11.470646,-26.268776 + parent: 1668 + type: Transform +- proto: FoodCondimentPacketPepper + entities: + - uid: 4619 + components: + - pos: 2.4944715,-29.54472 + parent: 1668 + type: Transform +- proto: FoodCondimentPacketSalt + entities: + - uid: 4618 + components: + - pos: 2.4007215,-29.404095 + parent: 1668 + type: Transform +- proto: FoodMeat + entities: + - uid: 5459 + components: + - flags: InContainer + type: MetaData + - parent: 5458 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5460 + components: + - flags: InContainer + type: MetaData + - parent: 5458 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5461 + components: + - flags: InContainer + type: MetaData + - parent: 5458 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5462 + components: + - flags: InContainer + type: MetaData + - parent: 5458 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5848 + components: + - flags: InContainer + type: MetaData + - parent: 5458 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodPlateSmall + entities: + - uid: 6627 + components: + - pos: 0.5503339,-25.456686 + parent: 1668 + type: Transform + - uid: 6628 + components: + - pos: 0.5503339,-25.394186 + parent: 1668 + type: Transform + - uid: 6629 + components: + - pos: 0.5503339,-25.316061 + parent: 1668 + type: Transform +- proto: FoodSaladColeslaw + entities: + - uid: 6937 + components: + - pos: 19.664907,20.706526 + parent: 1668 + type: Transform +- proto: FoodTartGapple + entities: + - uid: 4380 + components: + - pos: 2.5,-23.5 + parent: 1668 + type: Transform +- proto: ForkPlastic + entities: + - uid: 4200 + components: + - pos: 0.20438054,-25.436565 + parent: 1668 + type: Transform + - uid: 4252 + components: + - pos: 0.20438054,-25.436565 + parent: 1668 + type: Transform + - uid: 5451 + components: + - pos: 0.20438054,-25.436565 + parent: 1668 + type: Transform +- proto: GasFilter + entities: + - uid: 6652 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasMinerNitrogenStation + entities: + - uid: 4715 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-29.5 + parent: 1668 + type: Transform +- proto: GasMinerOxygenStation + entities: + - uid: 4703 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-29.5 + parent: 1668 + type: Transform +- proto: GasMixer + entities: + - uid: 5070 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-30.5 + parent: 1668 + type: Transform +- proto: GasPassiveVent + entities: + - uid: 5399 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 1668 + type: Transform + - uid: 5414 + components: + - anchored: False + rot: -1.5707963267948966 rad + pos: 25.5,-32.5 + parent: 1668 + type: Transform + - canCollide: True + bodyType: Dynamic + type: Physics + - uid: 6141 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-32.5 + parent: 1668 + type: Transform + - uid: 6312 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-28.5 + parent: 1668 + type: Transform +- proto: GasPipeBend + entities: + - uid: 3660 + components: + - pos: -16.5,5.5 + parent: 1668 + type: Transform + - uid: 3670 + components: + - rot: 3.141592653589793 rad + pos: -23.5,5.5 + parent: 1668 + type: Transform + - uid: 3674 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,9.5 + parent: 1668 + type: Transform + - uid: 3675 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,9.5 + parent: 1668 + type: Transform + - uid: 3676 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,11.5 + parent: 1668 + type: Transform + - uid: 3684 + components: + - pos: -15.5,11.5 + parent: 1668 + type: Transform + - uid: 3686 + components: + - rot: 3.141592653589793 rad + pos: -15.5,9.5 + parent: 1668 + type: Transform + - uid: 4712 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-32.5 + parent: 1668 + type: Transform + - uid: 4714 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-31.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4716 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-30.5 + parent: 1668 + type: Transform + - uid: 5067 + components: + - pos: 21.5,-28.5 + parent: 1668 + type: Transform + - uid: 5069 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-28.5 + parent: 1668 + type: Transform + - uid: 5389 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-32.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5503 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5513 + components: + - pos: 13.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5519 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5529 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5539 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5540 + components: + - pos: 0.5,-17.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5541 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-17.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5555 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5560 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5596 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-4.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5597 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5598 + components: + - pos: 4.5,3.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5599 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5661 + components: + - pos: -20.5,-1.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5699 + components: + - rot: 3.141592653589793 rad + pos: -10.5,10.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5711 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,27.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5787 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6308 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-37.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6309 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-37.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6311 + components: + - pos: 21.5,-31.5 + parent: 1668 + type: Transform + - uid: 6656 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-6.5 + parent: 1668 + type: Transform + - uid: 6657 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-6.5 + parent: 1668 + type: Transform + - uid: 6660 + components: + - pos: 12.5,-2.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6663 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-2.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6664 + components: + - pos: 9.5,-1.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6665 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6666 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6667 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6678 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6679 + components: + - pos: 5.5,-10.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6680 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-11.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6681 + components: + - pos: 12.5,-11.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6711 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-29.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6712 + components: + - pos: 15.5,-29.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6713 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-32.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 3678 + components: + - pos: -21.5,9.5 + parent: 1668 + type: Transform + - uid: 5492 + components: + - pos: 25.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5571 + components: + - pos: -0.5,-11.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6310 + components: + - pos: -0.5,-37.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 3664 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,5.5 + parent: 1668 + type: Transform + - uid: 3665 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,5.5 + parent: 1668 + type: Transform + - uid: 3666 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,5.5 + parent: 1668 + type: Transform + - uid: 3667 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,5.5 + parent: 1668 + type: Transform + - uid: 3668 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,5.5 + parent: 1668 + type: Transform + - uid: 3669 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,5.5 + parent: 1668 + type: Transform + - uid: 3672 + components: + - rot: 3.141592653589793 rad + pos: -23.5,7.5 + parent: 1668 + type: Transform + - uid: 3673 + components: + - rot: 3.141592653589793 rad + pos: -23.5,8.5 + parent: 1668 + type: Transform + - uid: 3677 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,9.5 + parent: 1668 + type: Transform + - uid: 3679 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,9.5 + parent: 1668 + type: Transform + - uid: 3680 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,9.5 + parent: 1668 + type: Transform + - uid: 3681 + components: + - pos: -18.5,10.5 + parent: 1668 + type: Transform + - uid: 3682 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,11.5 + parent: 1668 + type: Transform + - uid: 3683 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,11.5 + parent: 1668 + type: Transform + - uid: 3685 + components: + - pos: -15.5,10.5 + parent: 1668 + type: Transform + - uid: 3690 + components: + - pos: -21.5,10.5 + parent: 1668 + type: Transform + - uid: 3691 + components: + - pos: -21.5,11.5 + parent: 1668 + type: Transform + - uid: 3692 + components: + - pos: -21.5,12.5 + parent: 1668 + type: Transform + - uid: 3693 + components: + - pos: -21.5,13.5 + parent: 1668 + type: Transform + - uid: 4702 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-32.5 + parent: 1668 + type: Transform + - uid: 4711 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-30.5 + parent: 1668 + type: Transform + - uid: 4713 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-29.5 + parent: 1668 + type: Transform + - uid: 5068 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-29.5 + parent: 1668 + type: Transform + - uid: 5387 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-30.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5391 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-31.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5394 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-30.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5401 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-30.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5402 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-30.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5406 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-32.5 + parent: 1668 + type: Transform + - uid: 5418 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-30.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5419 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-30.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5466 + components: + - pos: 13.5,-29.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5467 + components: + - pos: 13.5,-28.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5468 + components: + - pos: 13.5,-27.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5469 + components: + - pos: 13.5,-26.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5471 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5472 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5479 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5480 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5481 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5482 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5483 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5484 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5485 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5486 + components: + - pos: 25.5,-24.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5487 + components: + - pos: 25.5,-23.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5488 + components: + - pos: 25.5,-22.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5489 + components: + - pos: 25.5,-21.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5490 + components: + - pos: 25.5,-20.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5491 + components: + - pos: 25.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5493 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5494 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5495 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5496 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5497 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5498 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5499 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5500 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5501 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5502 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5504 + components: + - pos: 20.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5508 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-24.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5509 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-23.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5511 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-21.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5512 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-20.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5514 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5515 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5516 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5517 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5518 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5522 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5523 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5524 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5525 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5526 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5527 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5531 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5532 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5533 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5534 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5535 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5536 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5545 + components: + - pos: -0.5,-20.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5546 + components: + - pos: -0.5,-21.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5547 + components: + - pos: -0.5,-22.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5548 + components: + - pos: -0.5,-23.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5549 + components: + - pos: -0.5,-24.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5550 + components: + - pos: -0.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5552 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-22.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5553 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-22.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5556 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5557 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5558 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5559 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5561 + components: + - pos: -13.5,-20.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5562 + components: + - pos: -13.5,-21.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5564 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-22.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5567 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-15.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5568 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-14.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5569 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-13.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5570 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5574 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5575 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5576 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-11.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5577 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5578 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5579 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5580 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5586 + components: + - pos: -0.5,-10.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5587 + components: + - pos: -0.5,-9.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5588 + components: + - pos: -0.5,-8.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5589 + components: + - pos: -0.5,-7.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5590 + components: + - pos: -0.5,-6.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5591 + components: + - pos: -0.5,-5.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5600 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5601 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5602 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5603 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5604 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-3.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5605 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5606 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-1.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5608 + components: + - rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5609 + components: + - rot: 3.141592653589793 rad + pos: -5.5,2.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5610 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5611 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5612 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5614 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5615 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5616 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5617 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5618 + components: + - pos: 4.5,2.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5619 + components: + - pos: 4.5,1.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5620 + components: + - pos: 4.5,0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5621 + components: + - pos: 4.5,-1.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5622 + components: + - pos: 4.5,-2.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5623 + components: + - pos: 4.5,-3.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5624 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5625 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5626 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5629 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5630 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5631 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5632 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5633 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5634 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5635 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5636 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5637 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5638 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5639 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5640 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5641 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5642 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5644 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5645 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5646 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5647 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5648 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5649 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5650 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5651 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5653 + components: + - pos: -30.5,-1.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5654 + components: + - pos: -30.5,0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5655 + components: + - pos: -30.5,1.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5656 + components: + - pos: -30.5,2.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5657 + components: + - pos: -30.5,3.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5662 + components: + - pos: -20.5,-2.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5668 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5672 + components: + - pos: -0.5,4.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5673 + components: + - pos: -0.5,5.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5674 + components: + - pos: -0.5,6.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5675 + components: + - pos: -0.5,7.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5676 + components: + - pos: -0.5,8.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5677 + components: + - pos: -0.5,9.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5680 + components: + - pos: -0.5,11.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5681 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,10.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5682 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,10.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5683 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,10.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5684 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,10.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5685 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,10.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5686 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5687 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5688 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5689 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5690 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5691 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5692 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5693 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5694 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5695 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5701 + components: + - pos: -10.5,17.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5702 + components: + - pos: -10.5,18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5703 + components: + - pos: -10.5,19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5704 + components: + - pos: -10.5,20.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5705 + components: + - pos: -10.5,21.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5706 + components: + - pos: -10.5,22.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5708 + components: + - pos: -10.5,24.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5709 + components: + - pos: -10.5,25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5710 + components: + - pos: -10.5,26.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5715 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,10.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5716 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,10.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5717 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5718 + components: + - pos: -10.5,11.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5719 + components: + - pos: -10.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5720 + components: + - pos: -10.5,13.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5721 + components: + - pos: -10.5,14.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5722 + components: + - pos: -10.5,15.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5725 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5726 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5727 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5728 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5729 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5730 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5732 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5733 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5734 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5735 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5736 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5737 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5738 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5739 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5740 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5745 + components: + - pos: 11.5,13.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5746 + components: + - pos: 11.5,14.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5747 + components: + - pos: 11.5,15.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5748 + components: + - pos: 11.5,16.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5749 + components: + - pos: 11.5,17.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5750 + components: + - pos: 11.5,18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5751 + components: + - pos: 11.5,19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5752 + components: + - pos: 11.5,20.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5753 + components: + - pos: 11.5,21.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5754 + components: + - pos: 11.5,22.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5755 + components: + - pos: 11.5,23.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5757 + components: + - pos: 28.5,13.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5758 + components: + - pos: 28.5,14.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5759 + components: + - pos: 28.5,15.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5760 + components: + - pos: 28.5,16.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5761 + components: + - pos: 28.5,17.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5762 + components: + - pos: 28.5,18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5766 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5767 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5768 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5769 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5770 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5771 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5773 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5774 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5775 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5776 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5777 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5778 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5790 + components: + - pos: -13.5,-30.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5791 + components: + - pos: -13.5,-29.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5792 + components: + - pos: -13.5,-28.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5793 + components: + - pos: -13.5,-27.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5794 + components: + - pos: -13.5,-26.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5796 + components: + - pos: -13.5,-24.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5798 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5799 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5800 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5801 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5802 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5803 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5804 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5816 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5817 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5818 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5819 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5820 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5821 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5822 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5823 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5998 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5999 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6000 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6001 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6002 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6130 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6137 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-32.5 + parent: 1668 + type: Transform + - uid: 6138 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-32.5 + parent: 1668 + type: Transform + - uid: 6139 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-32.5 + parent: 1668 + type: Transform + - uid: 6226 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6315 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-36.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6316 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-35.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6317 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-34.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6318 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-33.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6319 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-37.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6320 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-37.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6321 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-37.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6322 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-37.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6323 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-37.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6324 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-37.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6325 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-37.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6326 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-37.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6327 + components: + - pos: 4.5,-36.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6328 + components: + - pos: 4.5,-35.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6329 + components: + - pos: 4.5,-34.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6330 + components: + - pos: 4.5,-33.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6331 + components: + - pos: -0.5,-38.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6332 + components: + - pos: -0.5,-39.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6333 + components: + - pos: -0.5,-40.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6658 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-4.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6659 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-3.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6661 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6662 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6668 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6669 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6670 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6671 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6672 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6673 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6674 + components: + - pos: 4.5,-6.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6675 + components: + - pos: 4.5,-7.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6676 + components: + - pos: 4.5,-8.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6677 + components: + - pos: 4.5,-9.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6682 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6683 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6684 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6685 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6686 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-11.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6687 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-11.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6688 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-12.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6689 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-13.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6690 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-14.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6691 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-15.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6692 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-16.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6693 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6694 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-18.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6695 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-19.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6696 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-20.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6697 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-21.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6698 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-22.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6699 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-23.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6700 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-24.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6701 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-25.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6702 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-26.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6703 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-27.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6704 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-28.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6710 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-32.5 + parent: 1668 + type: Transform + - uid: 6714 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-31.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6715 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-30.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6716 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-29.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6717 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-29.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 3671 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,6.5 + parent: 1668 + type: Transform + - uid: 5465 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-30.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5470 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5473 + components: + - pos: 16.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5477 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5478 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5510 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-22.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5520 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5528 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5530 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5537 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5542 + components: + - pos: -0.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5543 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-17.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5544 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5563 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-22.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5572 + components: + - pos: -1.5,-11.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5592 + components: + - pos: -0.5,-4.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5593 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5594 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5595 + components: + - rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5607 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5613 + components: + - rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5627 + components: + - pos: 0.5,-4.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5628 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5643 + components: + - pos: -21.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5652 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5660 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-1.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5665 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5678 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5679 + components: + - pos: -0.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5698 + components: + - pos: -6.5,10.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5700 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,16.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5707 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,23.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5723 + components: + - rot: 3.141592653589793 rad + pos: 10.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5724 + components: + - rot: 3.141592653589793 rad + pos: 11.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5731 + components: + - rot: 3.141592653589793 rad + pos: 18.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5741 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5772 + components: + - pos: 12.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5786 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5788 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-31.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5789 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-31.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5795 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5797 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-23.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5805 + components: + - pos: 4.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5815 + components: + - pos: -5.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6640 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 1668 + type: Transform + - uid: 6653 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-5.5 + parent: 1668 + type: Transform + - uid: 6654 + components: + - pos: 12.5,-6.5 + parent: 1668 + type: Transform + - uid: 6708 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-32.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6709 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-32.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 3577 + components: + - rot: 3.141592653589793 rad + pos: -14.5,4.5 + parent: 1668 + type: Transform + - uid: 3659 + components: + - pos: -14.5,6.5 + parent: 1668 + type: Transform + - uid: 3662 + components: + - rot: 3.141592653589793 rad + pos: -16.5,4.5 + parent: 1668 + type: Transform + - uid: 6655 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-7.5 + parent: 1668 + type: Transform + - uid: 6705 + components: + - pos: 16.5,-31.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6706 + components: + - pos: 17.5,-31.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPressurePump + entities: + - uid: 3663 + components: + - rot: 3.141592653589793 rad + pos: -14.5,5.5 + parent: 1668 + type: Transform + - uid: 5395 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-30.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5400 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-31.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasThermoMachineFreezer + entities: + - uid: 6641 + components: + - pos: 13.5,-4.5 + parent: 1668 + type: Transform +- proto: GasVentPump + entities: + - uid: 3687 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,9.5 + parent: 1668 + type: Transform + - uid: 3688 + components: + - rot: 3.141592653589793 rad + pos: -21.5,8.5 + parent: 1668 + type: Transform + - uid: 3689 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,6.5 + parent: 1668 + type: Transform + - uid: 3694 + components: + - pos: -21.5,14.5 + parent: 1668 + type: Transform + - uid: 5474 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-26.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5475 + components: + - pos: 20.5,-24.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5476 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5505 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-20.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5506 + components: + - pos: 25.5,-17.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5507 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5521 + components: + - pos: 7.5,-17.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5538 + components: + - pos: -8.5,-17.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5551 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-26.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5554 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-22.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5565 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-22.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5566 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5573 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5581 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5583 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5658 + components: + - pos: -30.5,4.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5659 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-2.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5663 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5664 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-3.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5666 + components: + - pos: -6.5,0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5667 + components: + - pos: 5.5,0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5669 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5670 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5671 + components: + - pos: -1.5,4.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5696 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5697 + components: + - rot: 3.141592653589793 rad + pos: -6.5,9.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5712 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,27.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5713 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,23.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5714 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,16.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5742 + components: + - pos: 10.5,13.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5743 + components: + - rot: 3.141592653589793 rad + pos: 28.5,11.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5744 + components: + - pos: 18.5,13.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5756 + components: + - pos: 11.5,24.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5763 + components: + - pos: 28.5,19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5779 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-1.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5780 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5806 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5814 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5824 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-31.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5825 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-31.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5887 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-23.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6003 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6227 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6334 + components: + - pos: -0.5,-36.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6335 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-41.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 6140 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-32.5 + parent: 1668 + type: Transform +- proto: GeneratorBasic15kW + entities: + - uid: 5176 + components: + - pos: 30.5,-21.5 + parent: 1668 + type: Transform + - uid: 5177 + components: + - pos: 30.5,-25.5 + parent: 1668 + type: Transform + - uid: 5178 + components: + - pos: 30.5,-23.5 + parent: 1668 + type: Transform + - uid: 5179 + components: + - pos: 34.5,-25.5 + parent: 1668 + type: Transform + - uid: 5180 + components: + - pos: 34.5,-23.5 + parent: 1668 + type: Transform + - uid: 5181 + components: + - pos: 34.5,-21.5 + parent: 1668 + type: Transform + - uid: 5455 + components: + - pos: 32.5,-24.5 + parent: 1668 + type: Transform + - uid: 5456 + components: + - pos: 32.5,-22.5 + parent: 1668 + type: Transform + - uid: 6596 + components: + - pos: 33.5,-25.5 + parent: 1668 + type: Transform + - uid: 6597 + components: + - pos: 31.5,-25.5 + parent: 1668 + type: Transform + - uid: 6598 + components: + - pos: 33.5,-23.5 + parent: 1668 + type: Transform + - uid: 6599 + components: + - pos: 31.5,-23.5 + parent: 1668 + type: Transform + - uid: 6635 + components: + - pos: 31.5,-21.5 + parent: 1668 + type: Transform + - uid: 6636 + components: + - pos: 33.5,-21.5 + parent: 1668 + type: Transform +- proto: GeneratorRTG + entities: + - uid: 5182 + components: + - pos: 32.5,-25.5 + parent: 1668 + type: Transform + - uid: 5183 + components: + - pos: 32.5,-23.5 + parent: 1668 + type: Transform + - uid: 5184 + components: + - pos: 32.5,-21.5 + parent: 1668 + type: Transform +- proto: GravityGenerator + entities: + - uid: 1140 + components: + - pos: 32.5,-11.5 + parent: 1668 + type: Transform +- proto: Grille + entities: + - uid: 30 + components: + - pos: -0.5,-3.5 + parent: 1668 + type: Transform + - uid: 31 + components: + - pos: 2.5,-3.5 + parent: 1668 + type: Transform + - uid: 32 + components: + - pos: 3.5,-1.5 + parent: 1668 + type: Transform + - uid: 33 + components: + - pos: 3.5,-0.5 + parent: 1668 + type: Transform + - uid: 34 + components: + - pos: 3.5,1.5 + parent: 1668 + type: Transform + - uid: 35 + components: + - pos: 2.5,2.5 + parent: 1668 + type: Transform + - uid: 36 + components: + - pos: 3.5,2.5 + parent: 1668 + type: Transform + - uid: 37 + components: + - pos: 0.5,2.5 + parent: 1668 + type: Transform + - uid: 38 + components: + - pos: -0.5,2.5 + parent: 1668 + type: Transform + - uid: 39 + components: + - pos: -1.5,2.5 + parent: 1668 + type: Transform + - uid: 40 + components: + - pos: -3.5,2.5 + parent: 1668 + type: Transform + - uid: 41 + components: + - pos: -4.5,2.5 + parent: 1668 + type: Transform + - uid: 42 + components: + - pos: -4.5,1.5 + parent: 1668 + type: Transform + - uid: 43 + components: + - pos: -4.5,-0.5 + parent: 1668 + type: Transform + - uid: 44 + components: + - pos: -4.5,-1.5 + parent: 1668 + type: Transform + - uid: 45 + components: + - pos: -4.5,-2.5 + parent: 1668 + type: Transform + - uid: 46 + components: + - pos: -3.5,-3.5 + parent: 1668 + type: Transform + - uid: 47 + components: + - pos: -2.5,-3.5 + parent: 1668 + type: Transform + - uid: 80 + components: + - pos: 8.5,5.5 + parent: 1668 + type: Transform + - uid: 81 + components: + - pos: 7.5,4.5 + parent: 1668 + type: Transform + - uid: 82 + components: + - pos: 4.5,7.5 + parent: 1668 + type: Transform + - uid: 83 + components: + - pos: 3.5,6.5 + parent: 1668 + type: Transform + - uid: 84 + components: + - pos: 2.5,5.5 + parent: 1668 + type: Transform + - uid: 85 + components: + - pos: 4.5,5.5 + parent: 1668 + type: Transform + - uid: 105 + components: + - pos: 18.5,-0.5 + parent: 1668 + type: Transform + - uid: 106 + components: + - pos: 16.5,-0.5 + parent: 1668 + type: Transform + - uid: 107 + components: + - pos: 8.5,-0.5 + parent: 1668 + type: Transform + - uid: 108 + components: + - pos: 6.5,-0.5 + parent: 1668 + type: Transform + - uid: 132 + components: + - pos: 1.5,-3.5 + parent: 1668 + type: Transform + - uid: 133 + components: + - pos: 3.5,-2.5 + parent: 1668 + type: Transform + - uid: 154 + components: + - pos: 5.5,-7.5 + parent: 1668 + type: Transform + - uid: 155 + components: + - pos: 3.5,-7.5 + parent: 1668 + type: Transform + - uid: 156 + components: + - pos: 2.5,-6.5 + parent: 1668 + type: Transform + - uid: 157 + components: + - pos: 6.5,-5.5 + parent: 1668 + type: Transform + - uid: 158 + components: + - pos: 6.5,-4.5 + parent: 1668 + type: Transform + - uid: 159 + components: + - pos: 8.5,-5.5 + parent: 1668 + type: Transform + - uid: 160 + components: + - pos: 8.5,-4.5 + parent: 1668 + type: Transform + - uid: 186 + components: + - pos: 16.5,3.5 + parent: 1668 + type: Transform + - uid: 189 + components: + - pos: 17.5,-5.5 + parent: 1668 + type: Transform + - uid: 191 + components: + - pos: 9.5,-8.5 + parent: 1668 + type: Transform + - uid: 192 + components: + - pos: 10.5,-8.5 + parent: 1668 + type: Transform + - uid: 193 + components: + - pos: 11.5,-8.5 + parent: 1668 + type: Transform + - uid: 194 + components: + - pos: 12.5,-9.5 + parent: 1668 + type: Transform + - uid: 195 + components: + - pos: 9.5,-10.5 + parent: 1668 + type: Transform + - uid: 196 + components: + - pos: 10.5,-10.5 + parent: 1668 + type: Transform + - uid: 197 + components: + - pos: 11.5,-10.5 + parent: 1668 + type: Transform + - uid: 198 + components: + - pos: 13.5,-10.5 + parent: 1668 + type: Transform + - uid: 199 + components: + - pos: 14.5,-10.5 + parent: 1668 + type: Transform + - uid: 200 + components: + - pos: 15.5,-10.5 + parent: 1668 + type: Transform + - uid: 201 + components: + - pos: 15.5,-8.5 + parent: 1668 + type: Transform + - uid: 202 + components: + - pos: 13.5,-8.5 + parent: 1668 + type: Transform + - uid: 203 + components: + - pos: 14.5,-8.5 + parent: 1668 + type: Transform + - uid: 204 + components: + - pos: 6.5,-9.5 + parent: 1668 + type: Transform + - uid: 205 + components: + - pos: 7.5,-10.5 + parent: 1668 + type: Transform + - uid: 212 + components: + - pos: 16.5,-9.5 + parent: 1668 + type: Transform + - uid: 223 + components: + - pos: 15.5,2.5 + parent: 1668 + type: Transform + - uid: 224 + components: + - pos: 13.5,2.5 + parent: 1668 + type: Transform + - uid: 225 + components: + - pos: 11.5,2.5 + parent: 1668 + type: Transform + - uid: 238 + components: + - pos: 7.5,-12.5 + parent: 1668 + type: Transform + - uid: 239 + components: + - pos: 6.5,-13.5 + parent: 1668 + type: Transform + - uid: 240 + components: + - pos: 7.5,-14.5 + parent: 1668 + type: Transform + - uid: 241 + components: + - pos: 2.5,-13.5 + parent: 1668 + type: Transform + - uid: 242 + components: + - pos: 2.5,-10.5 + parent: 1668 + type: Transform + - uid: 245 + components: + - pos: 17.5,6.5 + parent: 1668 + type: Transform + - uid: 246 + components: + - pos: 17.5,4.5 + parent: 1668 + type: Transform + - uid: 278 + components: + - pos: 3.5,8.5 + parent: 1668 + type: Transform + - uid: 279 + components: + - pos: 6.5,9.5 + parent: 1668 + type: Transform + - uid: 280 + components: + - pos: 7.5,9.5 + parent: 1668 + type: Transform + - uid: 281 + components: + - pos: 8.5,8.5 + parent: 1668 + type: Transform + - uid: 282 + components: + - pos: 9.5,7.5 + parent: 1668 + type: Transform + - uid: 283 + components: + - pos: 10.5,7.5 + parent: 1668 + type: Transform + - uid: 284 + components: + - pos: 11.5,7.5 + parent: 1668 + type: Transform + - uid: 285 + components: + - pos: 13.5,7.5 + parent: 1668 + type: Transform + - uid: 286 + components: + - pos: 14.5,7.5 + parent: 1668 + type: Transform + - uid: 287 + components: + - pos: 12.5,8.5 + parent: 1668 + type: Transform + - uid: 288 + components: + - pos: 14.5,9.5 + parent: 1668 + type: Transform + - uid: 289 + components: + - pos: 13.5,9.5 + parent: 1668 + type: Transform + - uid: 290 + components: + - pos: 11.5,9.5 + parent: 1668 + type: Transform + - uid: 291 + components: + - pos: 10.5,9.5 + parent: 1668 + type: Transform + - uid: 292 + components: + - pos: 9.5,9.5 + parent: 1668 + type: Transform + - uid: 304 + components: + - pos: 15.5,-3.5 + parent: 1668 + type: Transform + - uid: 305 + components: + - pos: 13.5,-3.5 + parent: 1668 + type: Transform + - uid: 306 + components: + - pos: 11.5,-3.5 + parent: 1668 + type: Transform + - uid: 311 + components: + - pos: 0.5,-8.5 + parent: 1668 + type: Transform + - uid: 312 + components: + - pos: -1.5,-8.5 + parent: 1668 + type: Transform + - uid: 313 + components: + - pos: -1.5,-6.5 + parent: 1668 + type: Transform + - uid: 314 + components: + - pos: 0.5,-6.5 + parent: 1668 + type: Transform + - uid: 341 + components: + - pos: -6.5,-7.5 + parent: 1668 + type: Transform + - uid: 342 + components: + - pos: -4.5,-7.5 + parent: 1668 + type: Transform + - uid: 343 + components: + - pos: -3.5,-6.5 + parent: 1668 + type: Transform + - uid: 344 + components: + - pos: -7.5,-5.5 + parent: 1668 + type: Transform + - uid: 345 + components: + - pos: -7.5,-4.5 + parent: 1668 + type: Transform + - uid: 448 + components: + - pos: 35.5,-6.5 + parent: 1668 + type: Transform + - uid: 449 + components: + - pos: 35.5,-4.5 + parent: 1668 + type: Transform + - uid: 450 + components: + - pos: 35.5,-2.5 + parent: 1668 + type: Transform + - uid: 451 + components: + - pos: 35.5,1.5 + parent: 1668 + type: Transform + - uid: 452 + components: + - pos: 35.5,3.5 + parent: 1668 + type: Transform + - uid: 453 + components: + - pos: 35.5,5.5 + parent: 1668 + type: Transform + - uid: 454 + components: + - pos: 21.5,-7.5 + parent: 1668 + type: Transform + - uid: 455 + components: + - pos: 23.5,-8.5 + parent: 1668 + type: Transform + - uid: 456 + components: + - pos: 29.5,-8.5 + parent: 1668 + type: Transform + - uid: 457 + components: + - pos: 31.5,-7.5 + parent: 1668 + type: Transform + - uid: 458 + components: + - pos: 31.5,6.5 + parent: 1668 + type: Transform + - uid: 459 + components: + - pos: 28.5,7.5 + parent: 1668 + type: Transform + - uid: 460 + components: + - pos: 24.5,7.5 + parent: 1668 + type: Transform + - uid: 461 + components: + - pos: 21.5,6.5 + parent: 1668 + type: Transform + - uid: 473 + components: + - pos: 33.5,-6.5 + parent: 1668 + type: Transform + - uid: 474 + components: + - pos: 33.5,-4.5 + parent: 1668 + type: Transform + - uid: 475 + components: + - pos: 33.5,-2.5 + parent: 1668 + type: Transform + - uid: 476 + components: + - pos: 34.5,-1.5 + parent: 1668 + type: Transform + - uid: 477 + components: + - pos: 34.5,0.5 + parent: 1668 + type: Transform + - uid: 478 + components: + - pos: 33.5,1.5 + parent: 1668 + type: Transform + - uid: 479 + components: + - pos: 33.5,3.5 + parent: 1668 + type: Transform + - uid: 480 + components: + - pos: 33.5,5.5 + parent: 1668 + type: Transform + - uid: 672 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 1668 + type: Transform + - uid: 673 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1668 + type: Transform + - uid: 674 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 1668 + type: Transform + - uid: 675 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,4.5 + parent: 1668 + type: Transform + - uid: 678 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1668 + type: Transform + - uid: 679 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1668 + type: Transform + - uid: 680 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1668 + type: Transform + - uid: 681 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1668 + type: Transform + - uid: 702 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1668 + type: Transform + - uid: 703 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,6.5 + parent: 1668 + type: Transform + - uid: 704 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,8.5 + parent: 1668 + type: Transform + - uid: 725 + components: + - pos: 3.5,14.5 + parent: 1668 + type: Transform + - uid: 742 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 1668 + type: Transform + - uid: 743 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-13.5 + parent: 1668 + type: Transform + - uid: 765 + components: + - pos: -7.5,-9.5 + parent: 1668 + type: Transform + - uid: 766 + components: + - pos: -8.5,-10.5 + parent: 1668 + type: Transform + - uid: 767 + components: + - pos: -8.5,-12.5 + parent: 1668 + type: Transform + - uid: 768 + components: + - pos: -7.5,-13.5 + parent: 1668 + type: Transform + - uid: 769 + components: + - pos: -8.5,-14.5 + parent: 1668 + type: Transform + - uid: 782 + components: + - pos: 1.5,-14.5 + parent: 1668 + type: Transform + - uid: 783 + components: + - pos: 0.5,-14.5 + parent: 1668 + type: Transform + - uid: 784 + components: + - pos: -1.5,-14.5 + parent: 1668 + type: Transform + - uid: 785 + components: + - pos: -2.5,-14.5 + parent: 1668 + type: Transform + - uid: 845 + components: + - pos: 8.5,-16.5 + parent: 1668 + type: Transform + - uid: 846 + components: + - pos: 9.5,-17.5 + parent: 1668 + type: Transform + - uid: 847 + components: + - pos: 10.5,-17.5 + parent: 1668 + type: Transform + - uid: 848 + components: + - pos: 11.5,-16.5 + parent: 1668 + type: Transform + - uid: 849 + components: + - pos: -4.5,11.5 + parent: 1668 + type: Transform + - uid: 850 + components: + - pos: -3.5,17.5 + parent: 1668 + type: Transform + - uid: 853 + components: + - pos: 3.5,16.5 + parent: 1668 + type: Transform + - uid: 855 + components: + - pos: 2.5,17.5 + parent: 1668 + type: Transform + - uid: 1424 + components: + - pos: -10.5,32.5 + parent: 1668 + type: Transform + - uid: 1467 + components: + - pos: 16.5,-4.5 + parent: 1668 + type: Transform + - uid: 1488 + components: + - pos: 3.5,12.5 + parent: 1668 + type: Transform + - uid: 1489 + components: + - pos: 3.5,10.5 + parent: 1668 + type: Transform + - uid: 1513 + components: + - pos: -13.5,18.5 + parent: 1668 + type: Transform + - uid: 1514 + components: + - pos: -12.5,18.5 + parent: 1668 + type: Transform + - uid: 1515 + components: + - pos: -16.5,17.5 + parent: 1668 + type: Transform + - uid: 1516 + components: + - pos: -16.5,18.5 + parent: 1668 + type: Transform + - uid: 1517 + components: + - pos: -15.5,18.5 + parent: 1668 + type: Transform + - uid: 1594 + components: + - pos: -14.5,20.5 + parent: 1668 + type: Transform + - uid: 1595 + components: + - pos: -14.5,21.5 + parent: 1668 + type: Transform + - uid: 1596 + components: + - pos: -14.5,22.5 + parent: 1668 + type: Transform + - uid: 1597 + components: + - pos: -14.5,23.5 + parent: 1668 + type: Transform + - uid: 1598 + components: + - pos: -15.5,23.5 + parent: 1668 + type: Transform + - uid: 1599 + components: + - pos: -16.5,23.5 + parent: 1668 + type: Transform + - uid: 1600 + components: + - pos: -16.5,26.5 + parent: 1668 + type: Transform + - uid: 1601 + components: + - pos: -15.5,26.5 + parent: 1668 + type: Transform + - uid: 1602 + components: + - pos: -14.5,26.5 + parent: 1668 + type: Transform + - uid: 1603 + components: + - pos: -16.5,29.5 + parent: 1668 + type: Transform + - uid: 1604 + components: + - pos: -15.5,29.5 + parent: 1668 + type: Transform + - uid: 1605 + components: + - pos: -14.5,29.5 + parent: 1668 + type: Transform + - uid: 1606 + components: + - pos: -14.5,30.5 + parent: 1668 + type: Transform + - uid: 1667 + components: + - pos: -8.5,32.5 + parent: 1668 + type: Transform + - uid: 1669 + components: + - pos: -6.5,32.5 + parent: 1668 + type: Transform + - uid: 1670 + components: + - pos: -12.5,32.5 + parent: 1668 + type: Transform + - uid: 2002 + components: + - pos: 5.5,10.5 + parent: 1668 + type: Transform + - uid: 2003 + components: + - pos: 5.5,12.5 + parent: 1668 + type: Transform + - uid: 2004 + components: + - pos: 5.5,14.5 + parent: 1668 + type: Transform + - uid: 2246 + components: + - pos: 15.5,14.5 + parent: 1668 + type: Transform + - uid: 2247 + components: + - pos: 15.5,12.5 + parent: 1668 + type: Transform + - uid: 2248 + components: + - pos: 15.5,10.5 + parent: 1668 + type: Transform + - uid: 2284 + components: + - pos: 23.5,14.5 + parent: 1668 + type: Transform + - uid: 2285 + components: + - pos: 25.5,14.5 + parent: 1668 + type: Transform + - uid: 2286 + components: + - pos: 26.5,14.5 + parent: 1668 + type: Transform + - uid: 2287 + components: + - pos: 27.5,14.5 + parent: 1668 + type: Transform + - uid: 2288 + components: + - pos: 29.5,14.5 + parent: 1668 + type: Transform + - uid: 2289 + components: + - pos: 30.5,14.5 + parent: 1668 + type: Transform + - uid: 2290 + components: + - pos: 31.5,14.5 + parent: 1668 + type: Transform + - uid: 2291 + components: + - pos: 33.5,14.5 + parent: 1668 + type: Transform + - uid: 2346 + components: + - pos: 24.5,15.5 + parent: 1668 + type: Transform + - uid: 2347 + components: + - pos: 24.5,16.5 + parent: 1668 + type: Transform + - uid: 2348 + components: + - pos: 24.5,17.5 + parent: 1668 + type: Transform + - uid: 2349 + components: + - pos: 24.5,19.5 + parent: 1668 + type: Transform + - uid: 2510 + components: + - pos: 10.5,16.5 + parent: 1668 + type: Transform + - uid: 2511 + components: + - pos: 10.5,17.5 + parent: 1668 + type: Transform + - uid: 2512 + components: + - pos: 10.5,18.5 + parent: 1668 + type: Transform + - uid: 2513 + components: + - pos: 8.5,16.5 + parent: 1668 + type: Transform + - uid: 2546 + components: + - pos: 8.5,20.5 + parent: 1668 + type: Transform + - uid: 2557 + components: + - pos: 14.5,21.5 + parent: 1668 + type: Transform + - uid: 2754 + components: + - pos: 4.5,24.5 + parent: 1668 + type: Transform + - uid: 2756 + components: + - pos: 7.5,21.5 + parent: 1668 + type: Transform + - uid: 2758 + components: + - pos: 7.5,22.5 + parent: 1668 + type: Transform + - uid: 2772 + components: + - pos: 14.5,24.5 + parent: 1668 + type: Transform + - uid: 2792 + components: + - pos: 13.5,30.5 + parent: 1668 + type: Transform + - uid: 2808 + components: + - pos: 8.5,26.5 + parent: 1668 + type: Transform + - uid: 2809 + components: + - pos: 7.5,26.5 + parent: 1668 + type: Transform + - uid: 2810 + components: + - pos: 7.5,27.5 + parent: 1668 + type: Transform + - uid: 2811 + components: + - pos: 7.5,29.5 + parent: 1668 + type: Transform + - uid: 2815 + components: + - pos: 6.5,30.5 + parent: 1668 + type: Transform + - uid: 2816 + components: + - pos: 11.5,29.5 + parent: 1668 + type: Transform + - uid: 2817 + components: + - pos: 11.5,27.5 + parent: 1668 + type: Transform + - uid: 2818 + components: + - pos: 11.5,26.5 + parent: 1668 + type: Transform + - uid: 2819 + components: + - pos: 10.5,26.5 + parent: 1668 + type: Transform + - uid: 2860 + components: + - pos: 4.5,27.5 + parent: 1668 + type: Transform + - uid: 2861 + components: + - pos: 14.5,27.5 + parent: 1668 + type: Transform + - uid: 2880 + components: + - pos: 12.5,30.5 + parent: 1668 + type: Transform + - uid: 2887 + components: + - pos: 5.5,30.5 + parent: 1668 + type: Transform + - uid: 2907 + components: + - pos: 7.5,7.5 + parent: 1668 + type: Transform + - uid: 3134 + components: + - pos: 6.5,7.5 + parent: 1668 + type: Transform + - uid: 3141 + components: + - pos: 9.5,-15.5 + parent: 1668 + type: Transform + - uid: 3247 + components: + - pos: 10.5,-15.5 + parent: 1668 + type: Transform + - uid: 3387 + components: + - pos: -26.5,-0.5 + parent: 1668 + type: Transform + - uid: 3388 + components: + - pos: -28.5,-0.5 + parent: 1668 + type: Transform + - uid: 3389 + components: + - pos: -27.5,11.5 + parent: 1668 + type: Transform + - uid: 3390 + components: + - pos: -27.5,12.5 + parent: 1668 + type: Transform + - uid: 3391 + components: + - pos: -27.5,8.5 + parent: 1668 + type: Transform + - uid: 3392 + components: + - pos: -27.5,9.5 + parent: 1668 + type: Transform + - uid: 3436 + components: + - pos: -13.5,2.5 + parent: 1668 + type: Transform + - uid: 3437 + components: + - pos: -10.5,1.5 + parent: 1668 + type: Transform + - uid: 3438 + components: + - pos: -11.5,1.5 + parent: 1668 + type: Transform + - uid: 3439 + components: + - pos: -12.5,1.5 + parent: 1668 + type: Transform + - uid: 3440 + components: + - pos: -14.5,1.5 + parent: 1668 + type: Transform + - uid: 3441 + components: + - pos: -15.5,1.5 + parent: 1668 + type: Transform + - uid: 3442 + components: + - pos: -16.5,1.5 + parent: 1668 + type: Transform + - uid: 3936 + components: + - pos: -30.5,7.5 + parent: 1668 + type: Transform + - uid: 3937 + components: + - pos: -32.5,7.5 + parent: 1668 + type: Transform + - uid: 3938 + components: + - pos: -33.5,7.5 + parent: 1668 + type: Transform + - uid: 3943 + components: + - pos: -34.5,6.5 + parent: 1668 + type: Transform + - uid: 3944 + components: + - pos: -34.5,5.5 + parent: 1668 + type: Transform + - uid: 3945 + components: + - pos: -34.5,4.5 + parent: 1668 + type: Transform + - uid: 3946 + components: + - pos: -34.5,3.5 + parent: 1668 + type: Transform + - uid: 3979 + components: + - pos: -32.5,-0.5 + parent: 1668 + type: Transform + - uid: 3980 + components: + - pos: -33.5,-0.5 + parent: 1668 + type: Transform + - uid: 3981 + components: + - pos: -34.5,-0.5 + parent: 1668 + type: Transform + - uid: 3982 + components: + - pos: -34.5,-2.5 + parent: 1668 + type: Transform + - uid: 3983 + components: + - pos: -32.5,-2.5 + parent: 1668 + type: Transform + - uid: 3984 + components: + - pos: -32.5,1.5 + parent: 1668 + type: Transform + - uid: 3985 + components: + - pos: -34.5,1.5 + parent: 1668 + type: Transform + - uid: 4201 + components: + - pos: 15.5,8.5 + parent: 1668 + type: Transform + - uid: 4226 + components: + - pos: -9.5,-16.5 + parent: 1668 + type: Transform + - uid: 4227 + components: + - pos: -10.5,-17.5 + parent: 1668 + type: Transform + - uid: 4228 + components: + - pos: -11.5,-17.5 + parent: 1668 + type: Transform + - uid: 4229 + components: + - pos: -12.5,-16.5 + parent: 1668 + type: Transform + - uid: 4264 + components: + - pos: 0.5,-20.5 + parent: 1668 + type: Transform + - uid: 4317 + components: + - pos: -4.5,-23.5 + parent: 1668 + type: Transform + - uid: 4318 + components: + - pos: -4.5,-22.5 + parent: 1668 + type: Transform + - uid: 4319 + components: + - pos: -4.5,-21.5 + parent: 1668 + type: Transform + - uid: 4320 + components: + - pos: -2.5,-23.5 + parent: 1668 + type: Transform + - uid: 4321 + components: + - pos: -2.5,-22.5 + parent: 1668 + type: Transform + - uid: 4322 + components: + - pos: -2.5,-21.5 + parent: 1668 + type: Transform + - uid: 4323 + components: + - pos: 3.5,-23.5 + parent: 1668 + type: Transform + - uid: 4324 + components: + - pos: 3.5,-22.5 + parent: 1668 + type: Transform + - uid: 4325 + components: + - pos: 3.5,-21.5 + parent: 1668 + type: Transform + - uid: 4326 + components: + - pos: 1.5,-23.5 + parent: 1668 + type: Transform + - uid: 4327 + components: + - pos: 1.5,-22.5 + parent: 1668 + type: Transform + - uid: 4328 + components: + - pos: 1.5,-21.5 + parent: 1668 + type: Transform + - uid: 4366 + components: + - pos: 4.5,-30.5 + parent: 1668 + type: Transform + - uid: 4602 + components: + - pos: 6.5,-30.5 + parent: 1668 + type: Transform + - uid: 4671 + components: + - pos: -1.5,-34.5 + parent: 1668 + type: Transform + - uid: 4672 + components: + - pos: -0.5,-34.5 + parent: 1668 + type: Transform + - uid: 4673 + components: + - pos: 0.5,-34.5 + parent: 1668 + type: Transform + - uid: 4750 + components: + - pos: 15.5,-22.5 + parent: 1668 + type: Transform + - uid: 4751 + components: + - pos: 17.5,-22.5 + parent: 1668 + type: Transform + - uid: 5025 + components: + - pos: 19.5,-23.5 + parent: 1668 + type: Transform + - uid: 5064 + components: + - pos: 20.5,-23.5 + parent: 1668 + type: Transform + - uid: 5065 + components: + - pos: 21.5,-23.5 + parent: 1668 + type: Transform + - uid: 5114 + components: + - pos: 28.5,-25.5 + parent: 1668 + type: Transform + - uid: 5115 + components: + - pos: 28.5,-24.5 + parent: 1668 + type: Transform + - uid: 5116 + components: + - pos: 28.5,-23.5 + parent: 1668 + type: Transform + - uid: 5117 + components: + - pos: 28.5,-22.5 + parent: 1668 + type: Transform + - uid: 5118 + components: + - pos: 28.5,-21.5 + parent: 1668 + type: Transform + - uid: 5169 + components: + - pos: 31.5,-19.5 + parent: 1668 + type: Transform + - uid: 5170 + components: + - pos: 33.5,-19.5 + parent: 1668 + type: Transform + - uid: 5320 + components: + - pos: -1.5,-24.5 + parent: 1668 + type: Transform + - uid: 5412 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-32.5 + parent: 1668 + type: Transform + - uid: 5781 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-30.5 + parent: 1668 + type: Transform + - uid: 5782 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-30.5 + parent: 1668 + type: Transform + - uid: 5783 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-30.5 + parent: 1668 + type: Transform + - uid: 5922 + components: + - pos: -20.5,-33.5 + parent: 1668 + type: Transform + - uid: 5923 + components: + - pos: -20.5,-32.5 + parent: 1668 + type: Transform + - uid: 5924 + components: + - pos: -20.5,-31.5 + parent: 1668 + type: Transform + - uid: 5925 + components: + - pos: -18.5,-34.5 + parent: 1668 + type: Transform + - uid: 5926 + components: + - pos: -17.5,-34.5 + parent: 1668 + type: Transform + - uid: 5927 + components: + - pos: -19.5,-34.5 + parent: 1668 + type: Transform + - uid: 5949 + components: + - pos: -15.5,-25.5 + parent: 1668 + type: Transform + - uid: 5950 + components: + - pos: -17.5,-25.5 + parent: 1668 + type: Transform + - uid: 5983 + components: + - pos: -21.5,-27.5 + parent: 1668 + type: Transform + - uid: 5984 + components: + - pos: -23.5,-27.5 + parent: 1668 + type: Transform + - uid: 5985 + components: + - pos: -23.5,-25.5 + parent: 1668 + type: Transform + - uid: 5986 + components: + - pos: -22.5,-25.5 + parent: 1668 + type: Transform + - uid: 5987 + components: + - pos: -21.5,-25.5 + parent: 1668 + type: Transform + - uid: 5988 + components: + - pos: -21.5,-23.5 + parent: 1668 + type: Transform + - uid: 5989 + components: + - pos: -23.5,-23.5 + parent: 1668 + type: Transform + - uid: 5993 + components: + - pos: -18.5,-21.5 + parent: 1668 + type: Transform + - uid: 5994 + components: + - pos: -19.5,-21.5 + parent: 1668 + type: Transform + - uid: 5995 + components: + - pos: -20.5,-21.5 + parent: 1668 + type: Transform + - uid: 6160 + components: + - pos: -2.5,-33.5 + parent: 1668 + type: Transform + - uid: 6161 + components: + - pos: -2.5,-32.5 + parent: 1668 + type: Transform + - uid: 6162 + components: + - pos: -2.5,-31.5 + parent: 1668 + type: Transform + - uid: 6163 + components: + - pos: 1.5,-33.5 + parent: 1668 + type: Transform + - uid: 6164 + components: + - pos: 1.5,-32.5 + parent: 1668 + type: Transform + - uid: 6165 + components: + - pos: 1.5,-31.5 + parent: 1668 + type: Transform + - uid: 6280 + components: + - pos: -0.5,-38.5 + parent: 1668 + type: Transform + - uid: 6281 + components: + - pos: -0.5,-40.5 + parent: 1668 + type: Transform + - uid: 6301 + components: + - pos: -2.5,-46.5 + parent: 1668 + type: Transform + - uid: 6302 + components: + - pos: -2.5,-44.5 + parent: 1668 + type: Transform + - uid: 6303 + components: + - pos: -0.5,-46.5 + parent: 1668 + type: Transform + - uid: 6304 + components: + - pos: -0.5,-45.5 + parent: 1668 + type: Transform + - uid: 6305 + components: + - pos: -0.5,-44.5 + parent: 1668 + type: Transform + - uid: 6306 + components: + - pos: 1.5,-46.5 + parent: 1668 + type: Transform + - uid: 6307 + components: + - pos: 1.5,-44.5 + parent: 1668 + type: Transform + - uid: 6575 + components: + - pos: -5.5,-30.5 + parent: 1668 + type: Transform + - uid: 6576 + components: + - pos: -7.5,-30.5 + parent: 1668 + type: Transform + - uid: 6768 + components: + - pos: -1.5,-20.5 + parent: 1668 + type: Transform + - uid: 6769 + components: + - pos: 0.5,-24.5 + parent: 1668 + type: Transform + - uid: 6779 + components: + - pos: 5.5,6.5 + parent: 1668 + type: Transform +- proto: GroundTobacco + entities: + - uid: 3755 + components: + - pos: -18.558027,8.843213 + parent: 1668 + type: Transform + - uid: 3756 + components: + - pos: -18.370527,8.827588 + parent: 1668 + type: Transform +- proto: GunSafeShotgunKammerer + entities: + - uid: 6526 + components: + - pos: 10.5,30.5 + parent: 1668 + type: Transform +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 2923 + components: + - pos: 8.5,30.5 + parent: 1668 + type: Transform +- proto: Handcuffs + entities: + - uid: 3751 + components: + - pos: -25.604141,8.625723 + parent: 1668 + type: Transform +- proto: HandheldCrewMonitor + entities: + - uid: 1461 + components: + - pos: 13.504195,-12.438507 + parent: 1668 + type: Transform +- proto: HandheldHealthAnalyzer + entities: + - uid: 6497 + components: + - pos: -6.516034,-43.276962 + parent: 1668 + type: Transform +- proto: HandLabeler + entities: + - uid: 2228 + components: + - pos: -14.611721,14.56378 + parent: 1668 + type: Transform + - uid: 2229 + components: + - pos: -9.361721,12.50128 + parent: 1668 + type: Transform + - uid: 2240 + components: + - pos: -3.4985683,16.513187 + parent: 1668 + type: Transform +- proto: HighSecArmoryLocked + entities: + - uid: 2553 + components: + - pos: 9.5,20.5 + parent: 1668 + type: Transform + - uid: 2784 + components: + - pos: 7.5,28.5 + parent: 1668 + type: Transform + - uid: 2785 + components: + - pos: 11.5,28.5 + parent: 1668 + type: Transform +- proto: HighSecCaptainLocked + entities: + - uid: 3427 + components: + - pos: -17.5,5.5 + parent: 1668 + type: Transform + - uid: 3428 + components: + - pos: -21.5,1.5 + parent: 1668 + type: Transform + - uid: 3429 + components: + - pos: -19.5,7.5 + parent: 1668 + type: Transform + - uid: 3430 + components: + - pos: -23.5,7.5 + parent: 1668 + type: Transform + - uid: 3431 + components: + - pos: -17.5,11.5 + parent: 1668 + type: Transform + - uid: 3572 + components: + - pos: -13.5,5.5 + parent: 1668 + type: Transform +- proto: HighSecCommandLocked + entities: + - uid: 48 + components: + - pos: 3.5,0.5 + parent: 1668 + type: Transform + - uid: 49 + components: + - pos: -4.5,0.5 + parent: 1668 + type: Transform + - uid: 123 + components: + - pos: 32.5,-14.5 + parent: 1668 + type: Transform + - uid: 3781 + components: + - pos: -22.5,-2.5 + parent: 1668 + type: Transform + - uid: 3782 + components: + - pos: -20.5,-2.5 + parent: 1668 + type: Transform + - uid: 6276 + components: + - pos: -1.5,-38.5 + parent: 1668 + type: Transform + - uid: 6278 + components: + - pos: -1.5,-40.5 + parent: 1668 + type: Transform + - uid: 6279 + components: + - pos: 0.5,-38.5 + parent: 1668 + type: Transform + - uid: 6313 + components: + - pos: 0.5,-40.5 + parent: 1668 + type: Transform + - uid: 6775 + components: + - pos: 27.5,-27.5 + parent: 1668 + type: Transform +- proto: HighSecDoor + entities: + - uid: 565 + components: + - pos: 18.5,-6.5 + parent: 1668 + type: Transform + - uid: 566 + components: + - pos: 18.5,-1.5 + parent: 1668 + type: Transform + - uid: 567 + components: + - pos: 18.5,0.5 + parent: 1668 + type: Transform + - uid: 568 + components: + - pos: 16.5,0.5 + parent: 1668 + type: Transform + - uid: 569 + components: + - pos: 16.5,-1.5 + parent: 1668 + type: Transform + - uid: 570 + components: + - pos: 8.5,-1.5 + parent: 1668 + type: Transform + - uid: 571 + components: + - pos: 6.5,-1.5 + parent: 1668 + type: Transform + - uid: 572 + components: + - pos: 6.5,0.5 + parent: 1668 + type: Transform + - uid: 573 + components: + - pos: 8.5,0.5 + parent: 1668 + type: Transform + - uid: 792 + components: + - pos: -0.5,-8.5 + parent: 1668 + type: Transform + - uid: 793 + components: + - pos: -0.5,-6.5 + parent: 1668 + type: Transform + - uid: 1185 + components: + - pos: -9.5,-1.5 + parent: 1668 + type: Transform + - uid: 1186 + components: + - pos: -9.5,0.5 + parent: 1668 + type: Transform + - uid: 1187 + components: + - pos: -7.5,0.5 + parent: 1668 + type: Transform + - uid: 1188 + components: + - pos: -7.5,-1.5 + parent: 1668 + type: Transform + - uid: 1189 + components: + - pos: -0.5,5.5 + parent: 1668 + type: Transform + - uid: 1190 + components: + - pos: -0.5,7.5 + parent: 1668 + type: Transform + - uid: 2142 + components: + - pos: 5.5,11.5 + parent: 1668 + type: Transform + - uid: 2143 + components: + - pos: 5.5,13.5 + parent: 1668 + type: Transform + - uid: 2144 + components: + - pos: 3.5,13.5 + parent: 1668 + type: Transform + - uid: 2145 + components: + - pos: 3.5,11.5 + parent: 1668 + type: Transform + - uid: 2249 + components: + - pos: 15.5,11.5 + parent: 1668 + type: Transform + - uid: 2250 + components: + - pos: 15.5,13.5 + parent: 1668 + type: Transform + - uid: 3860 + components: + - pos: -26.5,-1.5 + parent: 1668 + type: Transform + - uid: 3861 + components: + - pos: -28.5,-1.5 + parent: 1668 + type: Transform + - uid: 3862 + components: + - pos: -28.5,0.5 + parent: 1668 + type: Transform + - uid: 3863 + components: + - pos: -26.5,0.5 + parent: 1668 + type: Transform + - uid: 4639 + components: + - pos: -15.5,-24.5 + parent: 1668 + type: Transform + - uid: 4640 + components: + - pos: -15.5,-26.5 + parent: 1668 + type: Transform + - uid: 5932 + components: + - pos: -15.5,-32.5 + parent: 1668 + type: Transform + - uid: 5945 + components: + - pos: -17.5,-26.5 + parent: 1668 + type: Transform + - uid: 5946 + components: + - pos: -17.5,-24.5 + parent: 1668 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 3422 + components: + - pos: -20.5,15.5 + parent: 1668 + type: Transform +- proto: Hypospray + entities: + - uid: 6549 + components: + - pos: -6.5056453,-39.44935 + parent: 1668 + type: Transform +- proto: JanitorialTrolley + entities: + - uid: 2881 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-31.5 + parent: 1668 + type: Transform + - uid: 6495 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-40.5 + parent: 1668 + type: Transform +- proto: JawsOfLife + entities: + - uid: 4261 + components: + - pos: 21.501507,-22.363987 + parent: 1668 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 2226 + components: + - pos: -15.5,17.5 + parent: 1668 + type: Transform + - uid: 4585 + components: + - pos: -11.5,-24.5 + parent: 1668 + type: Transform + - uid: 4589 + components: + - pos: -11.5,-28.5 + parent: 1668 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 2922 + components: + - pos: 3.5,-9.5 + parent: 1668 + type: Transform + - uid: 4590 + components: + - pos: -11.5,-25.5 + parent: 1668 + type: Transform + - uid: 4591 + components: + - pos: -9.5,-28.5 + parent: 1668 + type: Transform +- proto: KitchenSpike + entities: + - uid: 4581 + components: + - pos: -7.5,-21.5 + parent: 1668 + type: Transform +- proto: KnifePlastic + entities: + - uid: 3726 + components: + - pos: 0.9231305,-25.45219 + parent: 1668 + type: Transform + - uid: 4253 + components: + - pos: 0.9231305,-25.45219 + parent: 1668 + type: Transform + - uid: 5214 + components: + - pos: 0.9231305,-25.45219 + parent: 1668 + type: Transform +- proto: Lamp + entities: + - uid: 1442 + components: + - pos: -0.93100256,1.9752237 + parent: 1668 + type: Transform + - uid: 2829 + components: + - pos: 5.496662,21.877665 + parent: 1668 + type: Transform + - uid: 3626 + components: + - pos: -20.472635,6.7337127 + parent: 1668 + type: Transform + - uid: 3627 + components: + - pos: -20.48826,12.764963 + parent: 1668 + type: Transform +- proto: LampGold + entities: + - uid: 3628 + components: + - pos: -16.37576,12.926986 + parent: 1668 + type: Transform +- proto: LargeBeaker + entities: + - uid: 5066 + components: + - pos: -10.010703,-28.243814 + parent: 1668 + type: Transform +- proto: Lighter + entities: + - uid: 3754 + components: + - pos: -18.379215,8.381029 + parent: 1668 + type: Transform +- proto: LockerAtmosphericsFilledHardsuit + entities: + - uid: 3790 + components: + - pos: 15.5,-29.5 + parent: 1668 + type: Transform +- proto: LockerBoozeFilled + entities: + - uid: 4417 + components: + - pos: 10.5,-28.5 + parent: 1668 + type: Transform +- proto: LockerChemistryFilled + entities: + - uid: 2876 + components: + - pos: 5.5,-13.5 + parent: 1668 + type: Transform +- proto: LockerChiefEngineerFilledHardsuit + entities: + - uid: 5253 + components: + - pos: -15.5,-3.5 + parent: 1668 + type: Transform + - uid: 5420 + components: + - pos: -14.5,-3.5 + parent: 1668 + type: Transform +- proto: LockerChiefMedicalOfficerFilledHardsuit + entities: + - uid: 3794 + components: + - pos: -14.5,-9.5 + parent: 1668 + type: Transform + - uid: 3795 + components: + - pos: -15.5,-9.5 + parent: 1668 + type: Transform +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 1178 + components: + - pos: 15.5,-15.5 + parent: 1668 + type: Transform + - uid: 2039 + components: + - pos: 2.5,21.5 + parent: 1668 + type: Transform + - uid: 5322 + components: + - pos: 27.5,-13.5 + parent: 1668 + type: Transform +- proto: LockerEngineerFilledHardsuit + entities: + - uid: 3796 + components: + - pos: 23.5,-23.5 + parent: 1668 + type: Transform + - uid: 5252 + components: + - pos: 23.5,-22.5 + parent: 1668 + type: Transform +- proto: LockerEvidence + entities: + - uid: 3148 + components: + - pos: 8.5,25.5 + parent: 1668 + type: Transform +- proto: LockerFreezer + entities: + - uid: 5458 + components: + - pos: -8.5,-21.5 + parent: 1668 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5459 + - 5460 + - 5461 + - 5462 + - 5848 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 3797 + components: + - pos: -11.5,-3.5 + parent: 1668 + type: Transform +- proto: LockerHeadOfSecurityFilledHardsuit + entities: + - uid: 3792 + components: + - pos: -11.5,-9.5 + parent: 1668 + type: Transform + - uid: 3793 + components: + - pos: -10.5,-9.5 + parent: 1668 + type: Transform +- proto: LockerQuarterMasterFilled + entities: + - uid: 2235 + components: + - pos: -8.5,19.5 + parent: 1668 + type: Transform +- proto: LockerResearchDirectorFilledHardsuit + entities: + - uid: 3791 + components: + - pos: -10.5,-3.5 + parent: 1668 + type: Transform +- proto: LockerSecurityFilled + entities: + - uid: 511 + components: + - pos: 19.5,-10.5 + parent: 1668 + type: Transform + - uid: 512 + components: + - pos: 22.5,-10.5 + parent: 1668 + type: Transform + - uid: 815 + components: + - pos: -6.5,-10.5 + parent: 1668 + type: Transform +- proto: LockerWardenFilled + entities: + - uid: 2713 + components: + - pos: 6.5,17.5 + parent: 1668 + type: Transform +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 129 + components: + - pos: -26.5,2.5 + parent: 1668 + type: Transform + - uid: 2040 + components: + - pos: 0.5,19.5 + parent: 1668 + type: Transform + - uid: 5319 + components: + - pos: 28.5,-13.5 + parent: 1668 + type: Transform +- proto: MagazinePistolSubMachineGunTopMounted + entities: + - uid: 3153 + components: + - pos: 4.5554476,19.207918 + parent: 1668 + type: Transform + - uid: 3154 + components: + - pos: 4.5710726,19.317293 + parent: 1668 + type: Transform + - uid: 3896 + components: + - pos: -13.453807,-3.1600308 + parent: 1668 + type: Transform +- proto: MaterialBiomass + entities: + - uid: 2495 + components: + - pos: 13.210049,-12.580112 + parent: 1668 + type: Transform +- proto: MedalCase + entities: + - uid: 6922 + components: + - pos: -18.47654,4.596927 + parent: 1668 + type: Transform +- proto: MedicalBed + entities: + - uid: 612 + components: + - pos: 13.5,-7.5 + parent: 1668 + type: Transform + - uid: 1195 + components: + - pos: 13.5,-14.5 + parent: 1668 + type: Transform + - uid: 1196 + components: + - pos: 13.5,-13.5 + parent: 1668 + type: Transform +- proto: MedicalScanner + entities: + - uid: 723 + components: + - pos: 9.5,-14.5 + parent: 1668 + type: Transform +- proto: MedicalTechFab + entities: + - uid: 616 + components: + - pos: 9.5,-7.5 + parent: 1668 + type: Transform +- proto: MedkitBruteFilled + entities: + - uid: 622 + components: + - pos: 14.703841,-7.3571634 + parent: 1668 + type: Transform +- proto: MedkitBurnFilled + entities: + - uid: 621 + components: + - pos: 14.594466,-7.4821634 + parent: 1668 + type: Transform +- proto: MedkitCombatFilled + entities: + - uid: 6506 + components: + - pos: -5.324598,-39.292587 + parent: 1668 + type: Transform +- proto: MedkitFilled + entities: + - uid: 620 + components: + - pos: 14.516341,-7.5759134 + parent: 1668 + type: Transform + - uid: 1454 + components: + - pos: 15.537778,-2.524952 + parent: 1668 + type: Transform + - uid: 3897 + components: + - pos: -13.438182,-5.5085163 + parent: 1668 + type: Transform + - uid: 6507 + components: + - pos: -5.527723,-39.558212 + parent: 1668 + type: Transform +- proto: MedkitOxygenFilled + entities: + - uid: 625 + components: + - pos: 15.547591,-7.3884134 + parent: 1668 + type: Transform + - uid: 6554 + components: + - pos: -5.4431453,-39.4181 + parent: 1668 + type: Transform +- proto: MedkitRadiationFilled + entities: + - uid: 623 + components: + - pos: 15.266341,-7.6071634 + parent: 1668 + type: Transform +- proto: MedkitToxinFilled + entities: + - uid: 624 + components: + - pos: 15.406966,-7.4977884 + parent: 1668 + type: Transform +- proto: Mirror + entities: + - uid: 3426 + components: + - pos: -19.5,14.5 + parent: 1668 + type: Transform + - uid: 6845 + components: + - pos: -4.5,-14.5 + parent: 1668 + type: Transform +- proto: MopItem + entities: + - uid: 6230 + components: + - pos: -17.485325,-31.461966 + parent: 1668 + type: Transform + - uid: 6505 + components: + - pos: -4.496473,-39.433212 + parent: 1668 + type: Transform +- proto: NitrogenCanister + entities: + - uid: 5413 + components: + - pos: 25.5,-28.5 + parent: 1668 + type: Transform +- proto: Omnitool + entities: + - uid: 4393 + components: + - pos: 24.630873,-13.468605 + parent: 1668 + type: Transform +- proto: OperatingTable + entities: + - uid: 610 + components: + - pos: 9.5,-5.5 + parent: 1668 + type: Transform +- proto: OxygenCanister + entities: + - uid: 5415 + components: + - pos: 19.5,-28.5 + parent: 1668 + type: Transform + - uid: 6719 + components: + - pos: 12.5,-7.5 + parent: 1668 + type: Transform +- proto: PaintingAmogusTriptych + entities: + - uid: 3766 + components: + - pos: -21.5,7.5 + parent: 1668 + type: Transform + - uid: 6942 + components: + - pos: -14.5,7.5 + parent: 1668 + type: Transform +- proto: PaintingHelloWorld + entities: + - uid: 3767 + components: + - pos: -17.5,3.5 + parent: 1668 + type: Transform +- proto: PaintingNightHawks + entities: + - uid: 3779 + components: + - pos: -25.5,4.5 + parent: 1668 + type: Transform +- proto: PaintingSadClown + entities: + - uid: 6943 + components: + - pos: -16.5,7.5 + parent: 1668 + type: Transform +- proto: PaintingSaturn + entities: + - uid: 3776 + components: + - pos: -9.5,5.5 + parent: 1668 + type: Transform +- proto: PaintingTheGreatWave + entities: + - uid: 3743 + components: + - pos: -20.5,13.5 + parent: 1668 + type: Transform +- proto: PaintingTheSonOfMan + entities: + - uid: 3744 + components: + - pos: -17.5,9.5 + parent: 1668 + type: Transform +- proto: Paper + entities: + - uid: 2915 + components: + - pos: 0.536467,0.64872134 + parent: 1668 + type: Transform + - uid: 2916 + components: + - pos: 0.44271702,0.72684634 + parent: 1668 + type: Transform + - uid: 2919 + components: + - pos: 0.645842,0.55497134 + parent: 1668 + type: Transform +- proto: PaperBin10 + entities: + - uid: 6630 + components: + - pos: -3.5,-2.5 + parent: 1668 + type: Transform +- proto: ParchisBoard + entities: + - uid: 3764 + components: + - pos: -23.482897,2.599884 + parent: 1668 + type: Transform +- proto: PenCentcom + entities: + - uid: 2905 + components: + - pos: -20.468134,12.0128975 + parent: 1668 + type: Transform + - uid: 2924 + components: + - pos: 0.16146702,1.3987213 + parent: 1668 + type: Transform + - uid: 6600 + components: + - pos: -1.4166579,1.6018463 + parent: 1668 + type: Transform +- proto: PercentileDie + entities: + - uid: 3765 + components: + - pos: -18.522638,2.6762333 + parent: 1668 + type: Transform +- proto: PhoneInstrument + entities: + - uid: 2464 + components: + - pos: 29.471363,23.660753 + parent: 1668 + type: Transform + - uid: 3742 + components: + - pos: -19.555511,10.655831 + parent: 1668 + type: Transform + - uid: 3876 + components: + - pos: -26.67884,-3.3787808 + parent: 1668 + type: Transform +- proto: PianoInstrument + entities: + - uid: 4474 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-29.5 + parent: 1668 + type: Transform +- proto: PlaqueAtmos + entities: + - uid: 4383 + components: + - pos: 2.5,-24.5 + parent: 1668 + type: Transform + - uid: 6646 + components: + - pos: 17.5,-28.5 + parent: 1668 + type: Transform +- proto: PlasticFlapsAirtightClear + entities: + - uid: 1590 + components: + - pos: -16.5,24.5 + parent: 1668 + type: Transform + - uid: 1591 + components: + - pos: -14.5,24.5 + parent: 1668 + type: Transform + - uid: 1592 + components: + - pos: -16.5,28.5 + parent: 1668 + type: Transform + - uid: 1593 + components: + - pos: -14.5,28.5 + parent: 1668 + type: Transform + - uid: 1623 + components: + - pos: -4.5,15.5 + parent: 1668 + type: Transform +- proto: PlushieAtmosian + entities: + - uid: 6890 + components: + - pos: 17.549469,-29.409344 + parent: 1668 + type: Transform +- proto: PortableScrubber + entities: + - uid: 3696 + components: + - pos: -14.5,4.5 + parent: 1668 + type: Transform + - uid: 5764 + components: + - pos: 16.5,-31.5 + parent: 1668 + type: Transform + - uid: 5765 + components: + - pos: 17.5,-31.5 + parent: 1668 + type: Transform +- proto: PosterContrabandBeachStarYamamoto + entities: + - uid: 6638 + components: + - desc: A picture depicting a woman at the beach. Neat. + name: Beach Star Bratton! + type: MetaData + - pos: 15.5,33.5 + parent: 1668 + type: Transform +- proto: PosterContrabandC20r + entities: + - uid: 6734 + components: + - pos: 9.5,33.5 + parent: 1668 + type: Transform +- proto: PosterContrabandEAT + entities: + - uid: 6737 + components: + - pos: -12.5,-26.5 + parent: 1668 + type: Transform +- proto: PosterContrabandHighEffectEngineering + entities: + - uid: 4576 + components: + - pos: 22.5,-20.5 + parent: 1668 + type: Transform +- proto: PosterContrabandMissingGloves + entities: + - uid: 6945 + components: + - pos: 14.5,-21.5 + parent: 1668 + type: Transform +- proto: PosterContrabandRedRum + entities: + - uid: 6918 + components: + - pos: -4.5,25.5 + parent: 1668 + type: Transform +- proto: PosterContrabandRobustSoftdrinks + entities: + - uid: 6958 + components: + - pos: -7.5,-14.5 + parent: 1668 + type: Transform +- proto: PosterContrabandSpaceUp + entities: + - uid: 6746 + components: + - pos: 29.5,-7.5 + parent: 1668 + type: Transform +- proto: PosterContrabandTools + entities: + - uid: 6731 + components: + - pos: 22.5,-21.5 + parent: 1668 + type: Transform +- proto: PosterContrabandUnreadableAnnouncement + entities: + - uid: 6917 + components: + - pos: -8.5,18.5 + parent: 1668 + type: Transform +- proto: PosterContrabandVoteWeh + entities: + - uid: 6745 + components: + - pos: 29.5,6.5 + parent: 1668 + type: Transform +- proto: PosterLegitAnatomyPoster + entities: + - uid: 6733 + components: + - pos: 8.5,-6.5 + parent: 1668 + type: Transform +- proto: PosterLegitCarpMount + entities: + - uid: 6740 + components: + - pos: 8.5,33.5 + parent: 1668 + type: Transform + - uid: 6915 + components: + - pos: -9.5,7.5 + parent: 1668 + type: Transform +- proto: PosterLegitCleanliness + entities: + - uid: 6735 + components: + - pos: -15.5,-31.5 + parent: 1668 + type: Transform + - uid: 6736 + components: + - pos: -9.5,-20.5 + parent: 1668 + type: Transform +- proto: PosterLegitCohibaRobustoAd + entities: + - uid: 6732 + components: + - pos: 11.5,-24.5 + parent: 1668 + type: Transform +- proto: PosterLegitEnlist + entities: + - uid: 6633 + components: + - pos: 6.5,16.5 + parent: 1668 + type: Transform + - uid: 6639 + components: + - pos: 3.5,33.5 + parent: 1668 + type: Transform +- proto: PosterLegitHelpOthers + entities: + - uid: 6738 + components: + - pos: 11.5,-27.5 + parent: 1668 + type: Transform +- proto: PosterLegitHereForYourSafety + entities: + - uid: 6959 + components: + - pos: 5.5,-19.5 + parent: 1668 + type: Transform +- proto: PosterLegitHighClassMartini + entities: + - uid: 6739 + components: + - pos: 8.5,-20.5 + parent: 1668 + type: Transform +- proto: PosterLegitJustAWeekAway + entities: + - uid: 6741 + components: + - pos: 33.5,-0.5 + parent: 1668 + type: Transform +- proto: PosterLegitLoveIan + entities: + - uid: 6957 + components: + - pos: -6.5,-16.5 + parent: 1668 + type: Transform + - uid: 6960 + components: + - pos: -14.5,-2.5 + parent: 1668 + type: Transform +- proto: PosterLegitNanomichiAd + entities: + - uid: 3778 + components: + - pos: -25.5,6.5 + parent: 1668 + type: Transform +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 469 + components: + - pos: -24.5,13.5 + parent: 1668 + type: Transform + - uid: 797 + components: + - pos: -2.5,-8.5 + parent: 1668 + type: Transform + - uid: 798 + components: + - pos: -2.5,-6.5 + parent: 1668 + type: Transform + - uid: 799 + components: + - pos: 1.5,-6.5 + parent: 1668 + type: Transform + - uid: 800 + components: + - pos: 1.5,-8.5 + parent: 1668 + type: Transform + - uid: 801 + components: + - pos: 3.5,-3.5 + parent: 1668 + type: Transform + - uid: 802 + components: + - pos: -4.5,-3.5 + parent: 1668 + type: Transform + - uid: 1464 + components: + - pos: 14.5,30.5 + parent: 1668 + type: Transform + - uid: 1861 + components: + - pos: -2.5,5.5 + parent: 1668 + type: Transform + - uid: 2053 + components: + - pos: 1.5,5.5 + parent: 1668 + type: Transform + - uid: 2054 + components: + - pos: -2.5,7.5 + parent: 1668 + type: Transform + - uid: 2055 + components: + - pos: 1.5,7.5 + parent: 1668 + type: Transform + - uid: 2454 + components: + - pos: 21.5,10.5 + parent: 1668 + type: Transform + - uid: 2455 + components: + - pos: 21.5,13.5 + parent: 1668 + type: Transform + - uid: 2456 + components: + - pos: 28.5,24.5 + parent: 1668 + type: Transform + - uid: 2457 + components: + - pos: 30.5,24.5 + parent: 1668 + type: Transform + - uid: 2458 + components: + - pos: 26.5,24.5 + parent: 1668 + type: Transform + - uid: 2459 + components: + - pos: 34.5,20.5 + parent: 1668 + type: Transform + - uid: 2460 + components: + - pos: 22.5,20.5 + parent: 1668 + type: Transform + - uid: 2918 + components: + - pos: -19.5,13.5 + parent: 1668 + type: Transform + - uid: 3450 + components: + - pos: -13.5,1.5 + parent: 1668 + type: Transform + - uid: 3603 + components: + - pos: -11.5,7.5 + parent: 1668 + type: Transform + - uid: 3604 + components: + - pos: -15.5,7.5 + parent: 1668 + type: Transform + - uid: 3605 + components: + - pos: -11.5,-2.5 + parent: 1668 + type: Transform + - uid: 3606 + components: + - pos: -17.5,-2.5 + parent: 1668 + type: Transform + - uid: 3777 + components: + - pos: -25.5,2.5 + parent: 1668 + type: Transform + - uid: 3867 + components: + - pos: -25.5,-2.5 + parent: 1668 + type: Transform + - uid: 4395 + components: + - pos: 1.5,-24.5 + parent: 1668 + type: Transform + - uid: 4635 + components: + - pos: -3.5,-14.5 + parent: 1668 + type: Transform + - uid: 4636 + components: + - pos: 2.5,-14.5 + parent: 1668 + type: Transform + - uid: 6446 + components: + - pos: 1.5,-38.5 + parent: 1668 + type: Transform + - uid: 6447 + components: + - pos: -3.5,-40.5 + parent: 1668 + type: Transform + - uid: 6448 + components: + - pos: 2.5,-40.5 + parent: 1668 + type: Transform + - uid: 6557 + components: + - pos: -17.5,-23.5 + parent: 1668 + type: Transform + - uid: 6558 + components: + - pos: -15.5,-27.5 + parent: 1668 + type: Transform + - uid: 6559 + components: + - pos: 1.5,-30.5 + parent: 1668 + type: Transform + - uid: 6560 + components: + - pos: -2.5,-30.5 + parent: 1668 + type: Transform + - uid: 6613 + components: + - pos: 4.5,30.5 + parent: 1668 + type: Transform + - uid: 6632 + components: + - pos: 13.5,16.5 + parent: 1668 + type: Transform + - uid: 6721 + components: + - pos: 16.5,1.5 + parent: 1668 + type: Transform + - uid: 6722 + components: + - pos: 8.5,-2.5 + parent: 1668 + type: Transform + - uid: 6882 + components: + - pos: -2.5,-20.5 + parent: 1668 + type: Transform +- proto: PosterLegitNTTGC + entities: + - uid: 6884 + components: + - pos: 18.5,17.5 + parent: 1668 + type: Transform +- proto: PosterLegitPeriodicTable + entities: + - uid: 6913 + components: + - pos: 5.5,-14.5 + parent: 1668 + type: Transform +- proto: PosterLegitRenault + entities: + - uid: 6962 + components: + - pos: -9.5,-6.5 + parent: 1668 + type: Transform +- proto: PosterLegitReportCrimes + entities: + - uid: 6743 + components: + - pos: -19.5,1.5 + parent: 1668 + type: Transform +- proto: PosterLegitSafetyEyeProtection + entities: + - uid: 6914 + components: + - pos: 5.5,-8.5 + parent: 1668 + type: Transform +- proto: PosterLegitSafetyMothDelam + entities: + - uid: 6912 + components: + - pos: 23.5,-12.5 + parent: 1668 + type: Transform +- proto: PosterLegitSafetyMothEpi + entities: + - uid: 6910 + components: + - pos: 12.5,-8.5 + parent: 1668 + type: Transform +- proto: PosterLegitSafetyMothHardhat + entities: + - uid: 6911 + components: + - pos: 14.5,-20.5 + parent: 1668 + type: Transform +- proto: PosterLegitSafetyMothMeth + entities: + - uid: 6909 + components: + - pos: 6.5,-12.5 + parent: 1668 + type: Transform +- proto: PosterLegitSafetyMothPiping + entities: + - uid: 6887 + components: + - pos: 14.5,-31.5 + parent: 1668 + type: Transform +- proto: PosterLegitSafetyReport + entities: + - uid: 6747 + components: + - pos: 23.5,-7.5 + parent: 1668 + type: Transform +- proto: PosterLegitSecWatch + entities: + - uid: 6781 + components: + - pos: 26.5,-12.5 + parent: 1668 + type: Transform +- proto: PosterLegitUeNo + entities: + - uid: 6744 + components: + - pos: 23.5,6.5 + parent: 1668 + type: Transform +- proto: PosterLegitVacation + entities: + - uid: 6885 + components: + - pos: 8.5,9.5 + parent: 1668 + type: Transform + - uid: 6886 + components: + - pos: 18.5,-4.5 + parent: 1668 + type: Transform + - uid: 6919 + components: + - pos: -4.5,28.5 + parent: 1668 + type: Transform + - uid: 6946 + components: + - pos: -8.5,-29.5 + parent: 1668 + type: Transform +- proto: PosterLegitWalk + entities: + - uid: 6961 + components: + - pos: 19.5,-7.5 + parent: 1668 + type: Transform +- proto: PosterLegitWorkForAFuture + entities: + - uid: 6742 + components: + - pos: 10.5,33.5 + parent: 1668 + type: Transform + - uid: 6916 + components: + - pos: -12.5,13.5 + parent: 1668 + type: Transform +- proto: PosterMapBagel + entities: + - uid: 6749 + components: + - pos: 3.5,5.5 + parent: 1668 + type: Transform +- proto: PosterMapDelta + entities: + - uid: 6750 + components: + - pos: 3.5,-6.5 + parent: 1668 + type: Transform +- proto: PosterMapLighthouse + entities: + - uid: 6754 + components: + - pos: -11.5,-20.5 + parent: 1668 + type: Transform +- proto: PosterMapMarathon + entities: + - uid: 6751 + components: + - pos: 6.5,-3.5 + parent: 1668 + type: Transform +- proto: PosterMapMetaRight + entities: + - uid: 6752 + components: + - pos: 9.5,-29.5 + parent: 1668 + type: Transform +- proto: PosterMapMoose + entities: + - uid: 6755 + components: + - pos: 10.5,-20.5 + parent: 1668 + type: Transform +- proto: PosterMapOrigin + entities: + - uid: 6759 + components: + - pos: -4.5,5.5 + parent: 1668 + type: Transform +- proto: PosterMapPillar + entities: + - uid: 6753 + components: + - pos: -5.5,-20.5 + parent: 1668 + type: Transform +- proto: PosterMapSaltern + entities: + - uid: 6756 + components: + - pos: -10.5,-29.5 + parent: 1668 + type: Transform +- proto: PosterMapSplit + entities: + - uid: 6757 + components: + - pos: -7.5,-3.5 + parent: 1668 + type: Transform +- proto: PosterMapWaystation + entities: + - uid: 6758 + components: + - pos: -4.5,-6.5 + parent: 1668 + type: Transform +- proto: PottedPlant15 + entities: + - uid: 3459 + components: + - pos: -24.5,12.5 + parent: 1668 + type: Transform +- proto: PottedPlant21 + entities: + - uid: 508 + components: + - pos: 24.5,-10.5 + parent: 1668 + type: Transform + - uid: 542 + components: + - pos: 19.5,-5.5 + parent: 1668 + type: Transform + - uid: 543 + components: + - pos: 19.5,4.5 + parent: 1668 + type: Transform + - uid: 602 + components: + - name: security plant + type: MetaData + - pos: 9.5,6.5 + parent: 1668 + type: Transform + - uid: 606 + components: + - pos: 9.5,-0.5 + parent: 1668 + type: Transform + - uid: 607 + components: + - pos: 15.5,-0.5 + parent: 1668 + type: Transform + - uid: 708 + components: + - pos: -6.5,-5.5 + parent: 1668 + type: Transform + - uid: 709 + components: + - pos: 5.5,4.5 + parent: 1668 + type: Transform + - uid: 803 + components: + - pos: -1.5,-13.5 + parent: 1668 + type: Transform + - uid: 2160 + components: + - pos: 0.5,16.5 + parent: 1668 + type: Transform + - uid: 2161 + components: + - pos: -1.5,16.5 + parent: 1668 + type: Transform + - uid: 2162 + components: + - pos: 2.5,12.5 + parent: 1668 + type: Transform + - uid: 2381 + components: + - pos: 22.5,10.5 + parent: 1668 + type: Transform + - uid: 2383 + components: + - pos: 34.5,10.5 + parent: 1668 + type: Transform + - uid: 2384 + components: + - pos: 24.5,21.5 + parent: 1668 + type: Transform + - uid: 2385 + components: + - pos: 32.5,21.5 + parent: 1668 + type: Transform + - uid: 2386 + components: + - pos: 18.5,18.5 + parent: 1668 + type: Transform + - uid: 2422 + components: + - pos: 28.5,23.5 + parent: 1668 + type: Transform + - uid: 3178 + components: + - pos: 6.5,10.5 + parent: 1668 + type: Transform + - uid: 3179 + components: + - pos: 13.5,15.5 + parent: 1668 + type: Transform + - uid: 3456 + components: + - pos: -20.5,2.5 + parent: 1668 + type: Transform + - uid: 3457 + components: + - pos: -21.5,6.5 + parent: 1668 + type: Transform + - uid: 3458 + components: + - pos: -24.5,8.5 + parent: 1668 + type: Transform + - uid: 3460 + components: + - pos: -25.5,-0.5 + parent: 1668 + type: Transform + - uid: 3461 + components: + - pos: -10.5,-0.5 + parent: 1668 + type: Transform + - uid: 3856 + components: + - pos: -18.5,-3.5 + parent: 1668 + type: Transform + - uid: 3857 + components: + - pos: -18.5,-9.5 + parent: 1668 + type: Transform + - uid: 3858 + components: + - pos: -23.5,-3.5 + parent: 1668 + type: Transform + - uid: 4624 + components: + - pos: -7.5,-19.5 + parent: 1668 + type: Transform + - uid: 4625 + components: + - pos: -5.5,-19.5 + parent: 1668 + type: Transform + - uid: 4626 + components: + - pos: 4.5,-19.5 + parent: 1668 + type: Transform + - uid: 4627 + components: + - pos: 6.5,-19.5 + parent: 1668 + type: Transform + - uid: 4628 + components: + - pos: 13.5,-18.5 + parent: 1668 + type: Transform + - uid: 4629 + components: + - pos: -14.5,-18.5 + parent: 1668 + type: Transform + - uid: 5375 + components: + - pos: 18.5,-20.5 + parent: 1668 + type: Transform + - uid: 5382 + components: + - pos: 17.5,-23.5 + parent: 1668 + type: Transform + - uid: 6561 + components: + - pos: -18.5,-27.5 + parent: 1668 + type: Transform + - uid: 6562 + components: + - pos: -3.5,-31.5 + parent: 1668 + type: Transform + - uid: 6563 + components: + - pos: 2.5,-31.5 + parent: 1668 + type: Transform +- proto: PottedPlant22 + entities: + - uid: 544 + components: + - pos: 19.5,-0.5 + parent: 1668 + type: Transform + - uid: 603 + components: + - name: security plant + type: MetaData + - pos: 13.5,4.5 + parent: 1668 + type: Transform + - uid: 706 + components: + - pos: -6.5,4.5 + parent: 1668 + type: Transform + - uid: 707 + components: + - pos: 5.5,-5.5 + parent: 1668 + type: Transform + - uid: 804 + components: + - pos: 0.5,-13.5 + parent: 1668 + type: Transform + - uid: 2193 + components: + - pos: -2.5,16.5 + parent: 1668 + type: Transform + - uid: 2387 + components: + - pos: 23.5,10.5 + parent: 1668 + type: Transform + - uid: 2388 + components: + - pos: 33.5,10.5 + parent: 1668 + type: Transform + - uid: 2389 + components: + - pos: 34.5,21.5 + parent: 1668 + type: Transform + - uid: 2390 + components: + - pos: 22.5,21.5 + parent: 1668 + type: Transform + - uid: 2391 + components: + - pos: 25.5,21.5 + parent: 1668 + type: Transform + - uid: 2392 + components: + - pos: 31.5,21.5 + parent: 1668 + type: Transform + - uid: 2393 + components: + - pos: 18.5,22.5 + parent: 1668 + type: Transform + - uid: 2394 + components: + - pos: 16.5,12.5 + parent: 1668 + type: Transform + - uid: 3180 + components: + - pos: 6.5,15.5 + parent: 1668 + type: Transform + - uid: 3181 + components: + - pos: 14.5,10.5 + parent: 1668 + type: Transform + - uid: 3453 + components: + - pos: -22.5,2.5 + parent: 1668 + type: Transform + - uid: 3454 + components: + - pos: -24.5,6.5 + parent: 1668 + type: Transform + - uid: 3455 + components: + - pos: -22.5,8.5 + parent: 1668 + type: Transform + - uid: 3853 + components: + - pos: -21.5,-9.5 + parent: 1668 + type: Transform + - uid: 3854 + components: + - pos: -19.5,-9.5 + parent: 1668 + type: Transform + - uid: 3855 + components: + - pos: -19.5,-3.5 + parent: 1668 + type: Transform + - uid: 4620 + components: + - pos: -4.5,-19.5 + parent: 1668 + type: Transform + - uid: 4621 + components: + - pos: 3.5,-19.5 + parent: 1668 + type: Transform + - uid: 4622 + components: + - pos: 7.5,-19.5 + parent: 1668 + type: Transform + - uid: 4623 + components: + - pos: -8.5,-19.5 + parent: 1668 + type: Transform + - uid: 5377 + components: + - pos: 27.5,-25.5 + parent: 1668 + type: Transform + - uid: 5383 + components: + - pos: 17.5,-27.5 + parent: 1668 + type: Transform + - uid: 6564 + components: + - pos: -14.5,-33.5 + parent: 1668 + type: Transform + - uid: 6565 + components: + - pos: 13.5,-33.5 + parent: 1668 + type: Transform +- proto: PottedPlantBioluminscent + entities: + - uid: 6566 + components: + - pos: -0.5,-41.5 + parent: 1668 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 1448 + components: + - pos: 12.5,6.5 + parent: 1668 + type: Transform + - uid: 1458 + components: + - pos: -4.5,-10.5 + parent: 1668 + type: Transform + - uid: 5376 + components: + - pos: 21.5,-21.5 + parent: 1668 + type: Transform + - uid: 5378 + components: + - pos: 26.5,-26.5 + parent: 1668 + type: Transform +- proto: PowerDrill + entities: + - uid: 3698 + components: + - pos: -16.54512,6.5009594 + parent: 1668 + type: Transform +- proto: Poweredlight + entities: + - uid: 510 + components: + - pos: 20.5,-10.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 523 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-8.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 524 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-8.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 525 + components: + - pos: 26.5,8.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 526 + components: + - pos: 21.5,8.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 527 + components: + - pos: 31.5,8.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 576 + components: + - pos: 17.5,-4.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 577 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-7.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 578 + components: + - rot: 3.141592653589793 rad + pos: 17.5,3.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 580 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-0.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 581 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-6.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 582 + components: + - pos: 34.5,5.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 583 + components: + - pos: 23.5,5.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 584 + components: + - pos: 29.5,5.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 585 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-6.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 586 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-6.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 587 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-3.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 588 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,2.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 737 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-13.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 738 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 739 + components: + - pos: 12.5,-11.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 740 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-9.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1384 + components: + - pos: 7.5,1.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1385 + components: + - pos: 17.5,1.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1386 + components: + - pos: -8.5,1.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1387 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1388 + components: + - pos: -2.5,1.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1389 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,4.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1390 + components: + - pos: 5.5,4.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1393 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1396 + components: + - pos: 1.5,4.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1481 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1484 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1485 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-13.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2151 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,16.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2152 + components: + - pos: -11.5,17.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2153 + components: + - rot: 3.141592653589793 rad + pos: -14.5,14.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2154 + components: + - pos: -8.5,12.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2155 + components: + - rot: 3.141592653589793 rad + pos: -9.5,8.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2156 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2157 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,13.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2158 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,15.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2159 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-16.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2219 + components: + - pos: -11.5,31.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2220 + components: + - pos: -7.5,31.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2221 + components: + - rot: 3.141592653589793 rad + pos: -8.5,19.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2222 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,28.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2223 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,22.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2351 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1668 + type: Transform + - uid: 2723 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2724 + components: + - pos: 4.5,14.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2725 + components: + - pos: 6.5,15.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2726 + components: + - pos: 13.5,15.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2727 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,13.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2729 + components: + - rot: 3.141592653589793 rad + pos: 23.5,10.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2730 + components: + - rot: 3.141592653589793 rad + pos: 33.5,10.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2731 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,19.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2732 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,15.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2733 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,19.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2734 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,15.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2735 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,20.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2736 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,20.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2739 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,20.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2908 + components: + - pos: 17.5,8.5 + parent: 1668 + type: Transform + - uid: 2931 + components: + - pos: 12.5,32.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2932 + components: + - pos: 6.5,32.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2933 + components: + - pos: 9.5,32.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2934 + components: + - rot: 3.141592653589793 rad + pos: 9.5,27.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2939 + components: + - pos: 9.5,25.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2940 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,26.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2941 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,26.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2942 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,19.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3135 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 1668 + type: Transform + - uid: 3701 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,14.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3702 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,10.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3703 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,10.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3704 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,10.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3705 + components: + - pos: -21.5,6.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3706 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,4.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3707 + components: + - pos: -15.5,6.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3708 + components: + - pos: -11.5,6.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4167 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,6.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4168 + components: + - rot: 3.141592653589793 rad + pos: -33.5,3.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4169 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-2.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4170 + components: + - pos: -31.5,1.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4171 + components: + - pos: -27.5,0.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4172 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,4.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4174 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-1.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4175 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-9.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4176 + components: + - pos: -17.5,-3.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4177 + components: + - pos: -12.5,-3.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4178 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-9.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4329 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-9.5 + parent: 1668 + type: Transform + - uid: 4334 + components: + - pos: -26.5,-3.5 + parent: 1668 + type: Transform + - uid: 4340 + components: + - pos: -8.5,-4.5 + parent: 1668 + type: Transform + - uid: 4392 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1668 + type: Transform + - uid: 4396 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 1668 + type: Transform + - uid: 4397 + components: + - pos: 7.5,-4.5 + parent: 1668 + type: Transform + - uid: 4399 + components: + - pos: 18.5,16.5 + parent: 1668 + type: Transform + - uid: 4400 + components: + - pos: 28.5,23.5 + parent: 1668 + type: Transform + - uid: 4402 + components: + - pos: 34.5,23.5 + parent: 1668 + type: Transform + - uid: 4499 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1668 + type: Transform + - uid: 4596 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-28.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4597 + components: + - pos: -8.5,-21.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4598 + components: + - pos: 7.5,-21.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4599 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-28.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4600 + components: + - pos: -3.5,-25.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4601 + components: + - pos: 2.5,-25.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4603 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-22.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4604 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-22.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4637 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-29.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4638 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-29.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4694 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-11.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5056 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1668 + type: Transform + - uid: 5353 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-26.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5354 + components: + - pos: 14.5,-23.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5357 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-28.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5358 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-19.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5359 + components: + - pos: 13.5,-18.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5360 + components: + - pos: 18.5,-20.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5361 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-26.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5362 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-20.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5363 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-13.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5364 + components: + - pos: 31.5,-15.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5365 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-13.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5366 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-16.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5367 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-14.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5408 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-32.5 + parent: 1668 + type: Transform + - uid: 5452 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,8.5 + parent: 1668 + type: Transform + - uid: 5582 + components: + - pos: 16.5,-29.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5826 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-19.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5827 + components: + - pos: -14.5,-18.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5828 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-19.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5829 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-19.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5830 + components: + - pos: -2.5,-9.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5831 + components: + - pos: 1.5,-9.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5847 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,33.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5849 + components: + - pos: 3.5,-15.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5850 + components: + - pos: -4.5,-15.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5851 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-16.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5852 + components: + - pos: -4.5,-9.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5853 + components: + - pos: 3.5,-9.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5884 + components: + - pos: 12.5,6.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5885 + components: + - pos: 9.5,1.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5886 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5933 + components: + - pos: -17.5,-31.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6102 + components: + - pos: -16.5,-23.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6154 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-25.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6155 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-29.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6228 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-13.5 + parent: 1668 + type: Transform + - uid: 6463 + components: + - pos: -5.5,-39.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6464 + components: + - pos: 4.5,-39.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6465 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-41.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6466 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-43.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6467 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-39.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6468 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-39.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6469 + components: + - pos: -11.5,-30.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6470 + components: + - pos: 10.5,-30.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6471 + components: + - pos: 3.5,-31.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6472 + components: + - pos: -4.5,-31.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6473 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-37.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6474 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-37.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6609 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,18.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6723 + components: + - pos: -15.5,2.5 + parent: 1668 + type: Transform + - uid: 6724 + components: + - pos: -11.5,2.5 + parent: 1668 + type: Transform + - uid: 6725 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-1.5 + parent: 1668 + type: Transform + - uid: 6730 + components: + - rot: 3.141592653589793 rad + pos: 28.5,10.5 + parent: 1668 + type: Transform + - uid: 6760 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 1668 + type: Transform + - uid: 6761 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 1668 + type: Transform + - uid: 6766 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,6.5 + parent: 1668 + type: Transform + - uid: 6784 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-22.5 + parent: 1668 + type: Transform + - uid: 6874 + components: + - pos: 31.5,-28.5 + parent: 1668 + type: Transform + - uid: 6875 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-31.5 + parent: 1668 + type: Transform + - uid: 6883 + components: + - pos: 22.5,23.5 + parent: 1668 + type: Transform + - uid: 6920 + components: + - pos: 2.5,18.5 + parent: 1668 + type: Transform + - uid: 6921 + components: + - pos: -3.5,18.5 + parent: 1668 + type: Transform + - uid: 6944 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,16.5 + parent: 1668 + type: Transform +- proto: PoweredlightLED + entities: + - uid: 5584 + components: + - pos: 22.5,-28.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredlightSodium + entities: + - uid: 3245 + components: + - rot: 3.141592653589793 rad + pos: -1.5,26.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5227 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-26.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5229 + components: + - pos: 34.5,-20.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5878 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLight + entities: + - uid: 2050 + components: + - pos: -1.5,24.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2051 + components: + - pos: -2.5,21.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2052 + components: + - pos: 1.5,21.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2217 + components: + - pos: -15.5,28.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2218 + components: + - rot: 3.141592653589793 rad + pos: -15.5,24.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2740 + components: + - pos: 14.5,19.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2762 + components: + - pos: 16.5,22.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2831 + components: + - rot: 3.141592653589793 rad + pos: 5.5,21.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2929 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,31.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2930 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,31.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2935 + components: + - pos: 16.5,25.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2936 + components: + - pos: 16.5,28.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2937 + components: + - pos: 2.5,28.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2938 + components: + - pos: 2.5,25.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2943 + components: + - pos: 5.5,19.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4504 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-22.5 + parent: 1668 + type: Transform + - uid: 5368 + components: + - pos: 16.5,-17.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5369 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-15.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6782 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-28.5 + parent: 1668 + type: Transform +- proto: Protolathe + entities: + - uid: 5311 + components: + - pos: 24.5,-26.5 + parent: 1668 + type: Transform +- proto: Rack + entities: + - uid: 1662 + components: + - pos: -11.5,17.5 + parent: 1668 + type: Transform + - uid: 2167 + components: + - pos: -3.5,16.5 + parent: 1668 + type: Transform + - uid: 2195 + components: + - pos: -1.5,24.5 + parent: 1668 + type: Transform + - uid: 2200 + components: + - pos: 15.5,30.5 + parent: 1668 + type: Transform + - uid: 2201 + components: + - pos: 3.5,30.5 + parent: 1668 + type: Transform + - uid: 2889 + components: + - pos: 3.5,32.5 + parent: 1668 + type: Transform + - uid: 2890 + components: + - pos: 15.5,32.5 + parent: 1668 + type: Transform + - uid: 3117 + components: + - pos: 5.5,32.5 + parent: 1668 + type: Transform + - uid: 3118 + components: + - pos: 6.5,32.5 + parent: 1668 + type: Transform + - uid: 3119 + components: + - pos: 12.5,32.5 + parent: 1668 + type: Transform + - uid: 3120 + components: + - pos: 13.5,32.5 + parent: 1668 + type: Transform + - uid: 5327 + components: + - pos: 24.5,-13.5 + parent: 1668 + type: Transform + - uid: 5340 + components: + - pos: 21.5,-17.5 + parent: 1668 + type: Transform + - uid: 6449 + components: + - pos: -6.5,-40.5 + parent: 1668 + type: Transform + - uid: 6450 + components: + - pos: -6.5,-42.5 + parent: 1668 + type: Transform + - uid: 6451 + components: + - pos: 5.5,-42.5 + parent: 1668 + type: Transform + - uid: 6452 + components: + - pos: 5.5,-40.5 + parent: 1668 + type: Transform +- proto: RadioHandheld + entities: + - uid: 3903 + components: + - pos: -13.516307,-6.3210163 + parent: 1668 + type: Transform + - uid: 3904 + components: + - pos: -13.344432,-6.4147663 + parent: 1668 + type: Transform +- proto: Railing + entities: + - uid: 1075 + components: + - pos: 34.5,-4.5 + parent: 1668 + type: Transform + - uid: 1076 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-4.5 + parent: 1668 + type: Transform + - uid: 1077 + components: + - rot: 3.141592653589793 rad + pos: 34.5,3.5 + parent: 1668 + type: Transform + - uid: 1078 + components: + - pos: 34.5,3.5 + parent: 1668 + type: Transform + - uid: 4434 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-25.5 + parent: 1668 + type: Transform + - uid: 4435 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-26.5 + parent: 1668 + type: Transform + - uid: 4436 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-25.5 + parent: 1668 + type: Transform + - uid: 4438 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-26.5 + parent: 1668 + type: Transform + - uid: 4439 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-26.5 + parent: 1668 + type: Transform + - uid: 4440 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-25.5 + parent: 1668 + type: Transform + - uid: 4454 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-29.5 + parent: 1668 + type: Transform + - uid: 4455 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-28.5 + parent: 1668 + type: Transform + - uid: 4456 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-29.5 + parent: 1668 + type: Transform + - uid: 4457 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-29.5 + parent: 1668 + type: Transform + - uid: 4460 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-28.5 + parent: 1668 + type: Transform + - uid: 4461 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-29.5 + parent: 1668 + type: Transform + - uid: 4462 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-28.5 + parent: 1668 + type: Transform + - uid: 4463 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-28.5 + parent: 1668 + type: Transform + - uid: 4464 + components: + - pos: 0.5,-27.5 + parent: 1668 + type: Transform + - uid: 4465 + components: + - pos: -1.5,-27.5 + parent: 1668 + type: Transform + - uid: 4468 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-25.5 + parent: 1668 + type: Transform + - uid: 4469 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-26.5 + parent: 1668 + type: Transform + - uid: 5216 + components: + - pos: 34.5,-20.5 + parent: 1668 + type: Transform + - uid: 5218 + components: + - pos: 32.5,-20.5 + parent: 1668 + type: Transform + - uid: 5220 + components: + - pos: 30.5,-20.5 + parent: 1668 + type: Transform + - uid: 5221 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-26.5 + parent: 1668 + type: Transform + - uid: 5223 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-26.5 + parent: 1668 + type: Transform + - uid: 5225 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-26.5 + parent: 1668 + type: Transform + - uid: 5226 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-25.5 + parent: 1668 + type: Transform + - uid: 5228 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-23.5 + parent: 1668 + type: Transform + - uid: 5230 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-21.5 + parent: 1668 + type: Transform + - uid: 6144 + components: + - pos: -22.5,-23.5 + parent: 1668 + type: Transform + - uid: 6145 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-27.5 + parent: 1668 + type: Transform +- proto: RailingCornerSmall + entities: + - uid: 4471 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-27.5 + parent: 1668 + type: Transform + - uid: 4473 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-27.5 + parent: 1668 + type: Transform + - uid: 5231 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-26.5 + parent: 1668 + type: Transform + - uid: 5232 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-20.5 + parent: 1668 + type: Transform +- proto: RandomDrinkBottle + entities: + - uid: 4607 + components: + - pos: 10.5,-27.5 + parent: 1668 + type: Transform + - uid: 4610 + components: + - pos: 8.5,-21.5 + parent: 1668 + type: Transform +- proto: RandomDrinkGlass + entities: + - uid: 4611 + components: + - pos: 7.5,-26.5 + parent: 1668 + type: Transform + - uid: 4612 + components: + - pos: 7.5,-25.5 + parent: 1668 + type: Transform + - uid: 4613 + components: + - pos: 3.5,-26.5 + parent: 1668 + type: Transform + - uid: 4614 + components: + - pos: -4.5,-26.5 + parent: 1668 + type: Transform +- proto: RandomFoodBakedSingle + entities: + - uid: 4616 + components: + - pos: -3.5,-29.5 + parent: 1668 + type: Transform +- proto: RandomFoodMeal + entities: + - uid: 4608 + components: + - pos: -8.5,-26.5 + parent: 1668 + type: Transform + - uid: 4609 + components: + - pos: -8.5,-27.5 + parent: 1668 + type: Transform +- proto: RandomFoodSingle + entities: + - uid: 4605 + components: + - pos: -4.5,-25.5 + parent: 1668 + type: Transform + - uid: 4606 + components: + - pos: 2.5,-28.5 + parent: 1668 + type: Transform +- proto: RCD + entities: + - uid: 6514 + components: + - pos: 5.473581,-41.167587 + parent: 1668 + type: Transform +- proto: RCDAmmo + entities: + - uid: 6515 + components: + - pos: 5.2691145,-41.308212 + parent: 1668 + type: Transform + - uid: 6516 + components: + - pos: 5.8159895,-41.323837 + parent: 1668 + type: Transform +- proto: ReagentContainerFlour + entities: + - uid: 4594 + components: + - pos: -10.626896,-28.3469 + parent: 1668 + type: Transform + - uid: 4595 + components: + - pos: -10.376896,-28.50315 + parent: 1668 + type: Transform +- proto: Recycler + entities: + - uid: 5908 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-31.5 + parent: 1668 + type: Transform + - links: + - 5907 + type: DeviceLinkSink +- proto: ReinforcedPlasmaWindow + entities: + - uid: 2791 + components: + - pos: 6.5,30.5 + parent: 1668 + type: Transform + - uid: 2812 + components: + - pos: 12.5,30.5 + parent: 1668 + type: Transform + - uid: 2813 + components: + - pos: 5.5,30.5 + parent: 1668 + type: Transform + - uid: 2877 + components: + - pos: 13.5,30.5 + parent: 1668 + type: Transform + - uid: 5108 + components: + - pos: 28.5,-25.5 + parent: 1668 + type: Transform + - uid: 5109 + components: + - pos: 28.5,-24.5 + parent: 1668 + type: Transform + - uid: 5110 + components: + - pos: 28.5,-23.5 + parent: 1668 + type: Transform + - uid: 5111 + components: + - pos: 28.5,-22.5 + parent: 1668 + type: Transform + - uid: 5112 + components: + - pos: 28.5,-21.5 + parent: 1668 + type: Transform + - uid: 5167 + components: + - pos: 31.5,-19.5 + parent: 1668 + type: Transform + - uid: 5168 + components: + - pos: 33.5,-19.5 + parent: 1668 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 50 + components: + - pos: 1.5,-3.5 + parent: 1668 + type: Transform + - uid: 51 + components: + - pos: 2.5,-3.5 + parent: 1668 + type: Transform + - uid: 52 + components: + - pos: 3.5,-2.5 + parent: 1668 + type: Transform + - uid: 53 + components: + - pos: 3.5,-1.5 + parent: 1668 + type: Transform + - uid: 54 + components: + - pos: 3.5,-0.5 + parent: 1668 + type: Transform + - uid: 55 + components: + - pos: 3.5,1.5 + parent: 1668 + type: Transform + - uid: 56 + components: + - pos: 3.5,2.5 + parent: 1668 + type: Transform + - uid: 57 + components: + - pos: 2.5,2.5 + parent: 1668 + type: Transform + - uid: 58 + components: + - pos: 0.5,2.5 + parent: 1668 + type: Transform + - uid: 59 + components: + - pos: -1.5,2.5 + parent: 1668 + type: Transform + - uid: 60 + components: + - pos: -0.5,2.5 + parent: 1668 + type: Transform + - uid: 61 + components: + - pos: -3.5,2.5 + parent: 1668 + type: Transform + - uid: 62 + components: + - pos: -4.5,2.5 + parent: 1668 + type: Transform + - uid: 63 + components: + - pos: -4.5,1.5 + parent: 1668 + type: Transform + - uid: 64 + components: + - pos: -4.5,-0.5 + parent: 1668 + type: Transform + - uid: 65 + components: + - pos: -4.5,-1.5 + parent: 1668 + type: Transform + - uid: 66 + components: + - pos: -4.5,-2.5 + parent: 1668 + type: Transform + - uid: 67 + components: + - pos: -3.5,-3.5 + parent: 1668 + type: Transform + - uid: 68 + components: + - pos: -2.5,-3.5 + parent: 1668 + type: Transform + - uid: 69 + components: + - pos: -0.5,-3.5 + parent: 1668 + type: Transform + - uid: 77 + components: + - pos: 6.5,-4.5 + parent: 1668 + type: Transform + - uid: 92 + components: + - pos: 2.5,5.5 + parent: 1668 + type: Transform + - uid: 93 + components: + - pos: 4.5,7.5 + parent: 1668 + type: Transform + - uid: 94 + components: + - pos: 3.5,6.5 + parent: 1668 + type: Transform + - uid: 95 + components: + - pos: 4.5,5.5 + parent: 1668 + type: Transform + - uid: 103 + components: + - pos: 8.5,5.5 + parent: 1668 + type: Transform + - uid: 104 + components: + - pos: 7.5,4.5 + parent: 1668 + type: Transform + - uid: 109 + components: + - pos: 18.5,-0.5 + parent: 1668 + type: Transform + - uid: 110 + components: + - pos: 16.5,-0.5 + parent: 1668 + type: Transform + - uid: 111 + components: + - pos: 8.5,-0.5 + parent: 1668 + type: Transform + - uid: 112 + components: + - pos: 6.5,-0.5 + parent: 1668 + type: Transform + - uid: 124 + components: + - pos: 8.5,20.5 + parent: 1668 + type: Transform + - uid: 134 + components: + - pos: 6.5,-5.5 + parent: 1668 + type: Transform + - uid: 135 + components: + - pos: 8.5,-4.5 + parent: 1668 + type: Transform + - uid: 136 + components: + - pos: 8.5,-5.5 + parent: 1668 + type: Transform + - uid: 150 + components: + - pos: -1.5,-24.5 + parent: 1668 + type: Transform + - uid: 151 + components: + - pos: 2.5,-6.5 + parent: 1668 + type: Transform + - uid: 152 + components: + - pos: 3.5,-7.5 + parent: 1668 + type: Transform + - uid: 153 + components: + - pos: 5.5,-7.5 + parent: 1668 + type: Transform + - uid: 161 + components: + - pos: 9.5,-8.5 + parent: 1668 + type: Transform + - uid: 162 + components: + - pos: 10.5,-8.5 + parent: 1668 + type: Transform + - uid: 163 + components: + - pos: 11.5,-8.5 + parent: 1668 + type: Transform + - uid: 164 + components: + - pos: 13.5,-8.5 + parent: 1668 + type: Transform + - uid: 165 + components: + - pos: 15.5,-8.5 + parent: 1668 + type: Transform + - uid: 166 + components: + - pos: 14.5,-8.5 + parent: 1668 + type: Transform + - uid: 167 + components: + - pos: 12.5,-9.5 + parent: 1668 + type: Transform + - uid: 168 + components: + - pos: 11.5,-10.5 + parent: 1668 + type: Transform + - uid: 169 + components: + - pos: 10.5,-10.5 + parent: 1668 + type: Transform + - uid: 170 + components: + - pos: 9.5,-10.5 + parent: 1668 + type: Transform + - uid: 171 + components: + - pos: 13.5,-10.5 + parent: 1668 + type: Transform + - uid: 172 + components: + - pos: 14.5,-10.5 + parent: 1668 + type: Transform + - uid: 173 + components: + - pos: 15.5,-10.5 + parent: 1668 + type: Transform + - uid: 183 + components: + - pos: 16.5,-9.5 + parent: 1668 + type: Transform + - uid: 190 + components: + - pos: 17.5,-5.5 + parent: 1668 + type: Transform + - uid: 206 + components: + - pos: 7.5,-10.5 + parent: 1668 + type: Transform + - uid: 207 + components: + - pos: 6.5,-9.5 + parent: 1668 + type: Transform + - uid: 214 + components: + - pos: 2.5,-10.5 + parent: 1668 + type: Transform + - uid: 215 + components: + - pos: 2.5,-13.5 + parent: 1668 + type: Transform + - uid: 220 + components: + - pos: 11.5,2.5 + parent: 1668 + type: Transform + - uid: 221 + components: + - pos: 13.5,2.5 + parent: 1668 + type: Transform + - uid: 222 + components: + - pos: 15.5,2.5 + parent: 1668 + type: Transform + - uid: 226 + components: + - pos: 7.5,-14.5 + parent: 1668 + type: Transform + - uid: 227 + components: + - pos: 6.5,-13.5 + parent: 1668 + type: Transform + - uid: 228 + components: + - pos: 7.5,-12.5 + parent: 1668 + type: Transform + - uid: 243 + components: + - pos: 17.5,4.5 + parent: 1668 + type: Transform + - uid: 244 + components: + - pos: 17.5,6.5 + parent: 1668 + type: Transform + - uid: 247 + components: + - pos: 16.5,3.5 + parent: 1668 + type: Transform + - uid: 259 + components: + - pos: 9.5,7.5 + parent: 1668 + type: Transform + - uid: 260 + components: + - pos: 10.5,7.5 + parent: 1668 + type: Transform + - uid: 261 + components: + - pos: 11.5,7.5 + parent: 1668 + type: Transform + - uid: 262 + components: + - pos: 13.5,7.5 + parent: 1668 + type: Transform + - uid: 263 + components: + - pos: 14.5,7.5 + parent: 1668 + type: Transform + - uid: 264 + components: + - pos: 11.5,9.5 + parent: 1668 + type: Transform + - uid: 265 + components: + - pos: 10.5,9.5 + parent: 1668 + type: Transform + - uid: 266 + components: + - pos: 9.5,9.5 + parent: 1668 + type: Transform + - uid: 267 + components: + - pos: 3.5,8.5 + parent: 1668 + type: Transform + - uid: 268 + components: + - pos: 14.5,9.5 + parent: 1668 + type: Transform + - uid: 269 + components: + - pos: 7.5,9.5 + parent: 1668 + type: Transform + - uid: 270 + components: + - pos: 6.5,9.5 + parent: 1668 + type: Transform + - uid: 271 + components: + - pos: 8.5,8.5 + parent: 1668 + type: Transform + - uid: 272 + components: + - pos: 12.5,8.5 + parent: 1668 + type: Transform + - uid: 275 + components: + - pos: 13.5,9.5 + parent: 1668 + type: Transform + - uid: 301 + components: + - pos: 11.5,-3.5 + parent: 1668 + type: Transform + - uid: 302 + components: + - pos: 13.5,-3.5 + parent: 1668 + type: Transform + - uid: 303 + components: + - pos: 15.5,-3.5 + parent: 1668 + type: Transform + - uid: 307 + components: + - pos: 0.5,-6.5 + parent: 1668 + type: Transform + - uid: 308 + components: + - pos: -1.5,-6.5 + parent: 1668 + type: Transform + - uid: 309 + components: + - pos: -1.5,-8.5 + parent: 1668 + type: Transform + - uid: 310 + components: + - pos: 0.5,-8.5 + parent: 1668 + type: Transform + - uid: 336 + components: + - pos: -7.5,-5.5 + parent: 1668 + type: Transform + - uid: 337 + components: + - pos: -7.5,-4.5 + parent: 1668 + type: Transform + - uid: 338 + components: + - pos: -3.5,-6.5 + parent: 1668 + type: Transform + - uid: 339 + components: + - pos: -4.5,-7.5 + parent: 1668 + type: Transform + - uid: 340 + components: + - pos: -6.5,-7.5 + parent: 1668 + type: Transform + - uid: 348 + components: + - pos: 21.5,6.5 + parent: 1668 + type: Transform + - uid: 355 + components: + - pos: 31.5,6.5 + parent: 1668 + type: Transform + - uid: 360 + components: + - pos: 24.5,7.5 + parent: 1668 + type: Transform + - uid: 361 + components: + - pos: 28.5,7.5 + parent: 1668 + type: Transform + - uid: 393 + components: + - pos: 31.5,-7.5 + parent: 1668 + type: Transform + - uid: 396 + components: + - pos: 23.5,-8.5 + parent: 1668 + type: Transform + - uid: 401 + components: + - pos: 29.5,-8.5 + parent: 1668 + type: Transform + - uid: 408 + components: + - pos: 21.5,-7.5 + parent: 1668 + type: Transform + - uid: 442 + components: + - pos: 35.5,1.5 + parent: 1668 + type: Transform + - uid: 443 + components: + - pos: 35.5,3.5 + parent: 1668 + type: Transform + - uid: 444 + components: + - pos: 35.5,5.5 + parent: 1668 + type: Transform + - uid: 445 + components: + - pos: 35.5,-2.5 + parent: 1668 + type: Transform + - uid: 446 + components: + - pos: 35.5,-4.5 + parent: 1668 + type: Transform + - uid: 447 + components: + - pos: 35.5,-6.5 + parent: 1668 + type: Transform + - uid: 462 + components: + - pos: 33.5,5.5 + parent: 1668 + type: Transform + - uid: 463 + components: + - pos: 33.5,3.5 + parent: 1668 + type: Transform + - uid: 464 + components: + - pos: 33.5,1.5 + parent: 1668 + type: Transform + - uid: 465 + components: + - pos: 33.5,-2.5 + parent: 1668 + type: Transform + - uid: 466 + components: + - pos: 33.5,-4.5 + parent: 1668 + type: Transform + - uid: 467 + components: + - pos: 33.5,-6.5 + parent: 1668 + type: Transform + - uid: 471 + components: + - pos: 34.5,-1.5 + parent: 1668 + type: Transform + - uid: 472 + components: + - pos: 34.5,0.5 + parent: 1668 + type: Transform + - uid: 670 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 1668 + type: Transform + - uid: 671 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1668 + type: Transform + - uid: 676 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,4.5 + parent: 1668 + type: Transform + - uid: 677 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 1668 + type: Transform + - uid: 682 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1668 + type: Transform + - uid: 683 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1668 + type: Transform + - uid: 684 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1668 + type: Transform + - uid: 685 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1668 + type: Transform + - uid: 700 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,6.5 + parent: 1668 + type: Transform + - uid: 701 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1668 + type: Transform + - uid: 705 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,8.5 + parent: 1668 + type: Transform + - uid: 741 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 1668 + type: Transform + - uid: 744 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-13.5 + parent: 1668 + type: Transform + - uid: 758 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-14.5 + parent: 1668 + type: Transform + - uid: 759 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-13.5 + parent: 1668 + type: Transform + - uid: 760 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 1668 + type: Transform + - uid: 761 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 1668 + type: Transform + - uid: 762 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 1668 + type: Transform + - uid: 778 + components: + - pos: -2.5,-14.5 + parent: 1668 + type: Transform + - uid: 779 + components: + - pos: -1.5,-14.5 + parent: 1668 + type: Transform + - uid: 780 + components: + - pos: 0.5,-14.5 + parent: 1668 + type: Transform + - uid: 781 + components: + - pos: 1.5,-14.5 + parent: 1668 + type: Transform + - uid: 819 + components: + - pos: -10.5,32.5 + parent: 1668 + type: Transform + - uid: 828 + components: + - pos: 9.5,-17.5 + parent: 1668 + type: Transform + - uid: 829 + components: + - pos: 11.5,-16.5 + parent: 1668 + type: Transform + - uid: 830 + components: + - pos: 8.5,-16.5 + parent: 1668 + type: Transform + - uid: 831 + components: + - pos: 10.5,-17.5 + parent: 1668 + type: Transform + - uid: 1193 + components: + - pos: -8.5,32.5 + parent: 1668 + type: Transform + - uid: 1417 + components: + - pos: -4.5,11.5 + parent: 1668 + type: Transform + - uid: 1418 + components: + - pos: -3.5,17.5 + parent: 1668 + type: Transform + - uid: 1419 + components: + - pos: 2.5,17.5 + parent: 1668 + type: Transform + - uid: 1420 + components: + - pos: 3.5,16.5 + parent: 1668 + type: Transform + - uid: 1421 + components: + - pos: 3.5,14.5 + parent: 1668 + type: Transform + - uid: 1422 + components: + - pos: 3.5,12.5 + parent: 1668 + type: Transform + - uid: 1423 + components: + - pos: 3.5,10.5 + parent: 1668 + type: Transform + - uid: 1466 + components: + - pos: 16.5,-4.5 + parent: 1668 + type: Transform + - uid: 1518 + components: + - pos: -16.5,17.5 + parent: 1668 + type: Transform + - uid: 1519 + components: + - pos: -16.5,18.5 + parent: 1668 + type: Transform + - uid: 1520 + components: + - pos: -15.5,18.5 + parent: 1668 + type: Transform + - uid: 1521 + components: + - pos: -13.5,18.5 + parent: 1668 + type: Transform + - uid: 1522 + components: + - pos: -12.5,18.5 + parent: 1668 + type: Transform + - uid: 1539 + components: + - pos: -14.5,20.5 + parent: 1668 + type: Transform + - uid: 1540 + components: + - pos: -14.5,21.5 + parent: 1668 + type: Transform + - uid: 1541 + components: + - pos: -14.5,22.5 + parent: 1668 + type: Transform + - uid: 1542 + components: + - pos: -14.5,23.5 + parent: 1668 + type: Transform + - uid: 1543 + components: + - pos: -15.5,23.5 + parent: 1668 + type: Transform + - uid: 1544 + components: + - pos: -16.5,23.5 + parent: 1668 + type: Transform + - uid: 1545 + components: + - pos: -14.5,29.5 + parent: 1668 + type: Transform + - uid: 1546 + components: + - pos: -15.5,29.5 + parent: 1668 + type: Transform + - uid: 1547 + components: + - pos: -16.5,29.5 + parent: 1668 + type: Transform + - uid: 1548 + components: + - pos: -14.5,30.5 + parent: 1668 + type: Transform + - uid: 1549 + components: + - pos: -14.5,26.5 + parent: 1668 + type: Transform + - uid: 1550 + components: + - pos: -15.5,26.5 + parent: 1668 + type: Transform + - uid: 1551 + components: + - pos: -16.5,26.5 + parent: 1668 + type: Transform + - uid: 1566 + components: + - pos: -12.5,32.5 + parent: 1668 + type: Transform + - uid: 1572 + components: + - pos: -6.5,32.5 + parent: 1668 + type: Transform + - uid: 1999 + components: + - pos: 5.5,10.5 + parent: 1668 + type: Transform + - uid: 2000 + components: + - pos: 5.5,12.5 + parent: 1668 + type: Transform + - uid: 2001 + components: + - pos: 5.5,14.5 + parent: 1668 + type: Transform + - uid: 2242 + components: + - pos: 15.5,10.5 + parent: 1668 + type: Transform + - uid: 2243 + components: + - pos: 15.5,12.5 + parent: 1668 + type: Transform + - uid: 2244 + components: + - pos: 15.5,14.5 + parent: 1668 + type: Transform + - uid: 2276 + components: + - pos: 23.5,14.5 + parent: 1668 + type: Transform + - uid: 2277 + components: + - pos: 33.5,14.5 + parent: 1668 + type: Transform + - uid: 2278 + components: + - pos: 31.5,14.5 + parent: 1668 + type: Transform + - uid: 2279 + components: + - pos: 30.5,14.5 + parent: 1668 + type: Transform + - uid: 2280 + components: + - pos: 29.5,14.5 + parent: 1668 + type: Transform + - uid: 2281 + components: + - pos: 27.5,14.5 + parent: 1668 + type: Transform + - uid: 2282 + components: + - pos: 26.5,14.5 + parent: 1668 + type: Transform + - uid: 2283 + components: + - pos: 25.5,14.5 + parent: 1668 + type: Transform + - uid: 2337 + components: + - pos: 24.5,15.5 + parent: 1668 + type: Transform + - uid: 2338 + components: + - pos: 24.5,16.5 + parent: 1668 + type: Transform + - uid: 2339 + components: + - pos: 24.5,17.5 + parent: 1668 + type: Transform + - uid: 2341 + components: + - pos: 24.5,19.5 + parent: 1668 + type: Transform + - uid: 2505 + components: + - pos: 10.5,16.5 + parent: 1668 + type: Transform + - uid: 2506 + components: + - pos: 10.5,17.5 + parent: 1668 + type: Transform + - uid: 2507 + components: + - pos: 10.5,18.5 + parent: 1668 + type: Transform + - uid: 2509 + components: + - pos: 8.5,16.5 + parent: 1668 + type: Transform + - uid: 2556 + components: + - pos: 14.5,21.5 + parent: 1668 + type: Transform + - uid: 2755 + components: + - pos: 4.5,24.5 + parent: 1668 + type: Transform + - uid: 2771 + components: + - pos: 14.5,24.5 + parent: 1668 + type: Transform + - uid: 2777 + components: + - pos: 10.5,26.5 + parent: 1668 + type: Transform + - uid: 2778 + components: + - pos: 11.5,26.5 + parent: 1668 + type: Transform + - uid: 2779 + components: + - pos: 11.5,27.5 + parent: 1668 + type: Transform + - uid: 2780 + components: + - pos: 8.5,26.5 + parent: 1668 + type: Transform + - uid: 2781 + components: + - pos: 7.5,26.5 + parent: 1668 + type: Transform + - uid: 2782 + components: + - pos: 7.5,27.5 + parent: 1668 + type: Transform + - uid: 2786 + components: + - pos: 7.5,29.5 + parent: 1668 + type: Transform + - uid: 2787 + components: + - pos: 11.5,29.5 + parent: 1668 + type: Transform + - uid: 2858 + components: + - pos: 14.5,27.5 + parent: 1668 + type: Transform + - uid: 2859 + components: + - pos: 4.5,27.5 + parent: 1668 + type: Transform + - uid: 2906 + components: + - pos: 10.5,-15.5 + parent: 1668 + type: Transform + - uid: 3126 + components: + - pos: 7.5,7.5 + parent: 1668 + type: Transform + - uid: 3127 + components: + - pos: 6.5,7.5 + parent: 1668 + type: Transform + - uid: 3128 + components: + - pos: 9.5,-15.5 + parent: 1668 + type: Transform + - uid: 3248 + components: + - pos: 17.5,-32.5 + parent: 1668 + type: Transform + - uid: 3249 + components: + - pos: 16.5,-32.5 + parent: 1668 + type: Transform + - uid: 3250 + components: + - pos: 15.5,-32.5 + parent: 1668 + type: Transform + - uid: 3287 + components: + - pos: -10.5,1.5 + parent: 1668 + type: Transform + - uid: 3288 + components: + - pos: -11.5,1.5 + parent: 1668 + type: Transform + - uid: 3289 + components: + - pos: -12.5,1.5 + parent: 1668 + type: Transform + - uid: 3290 + components: + - pos: -14.5,1.5 + parent: 1668 + type: Transform + - uid: 3291 + components: + - pos: -15.5,1.5 + parent: 1668 + type: Transform + - uid: 3292 + components: + - pos: -16.5,1.5 + parent: 1668 + type: Transform + - uid: 3293 + components: + - pos: -13.5,2.5 + parent: 1668 + type: Transform + - uid: 3327 + components: + - pos: -27.5,8.5 + parent: 1668 + type: Transform + - uid: 3328 + components: + - pos: -27.5,9.5 + parent: 1668 + type: Transform + - uid: 3329 + components: + - pos: -27.5,12.5 + parent: 1668 + type: Transform + - uid: 3330 + components: + - pos: -27.5,11.5 + parent: 1668 + type: Transform + - uid: 3385 + components: + - pos: -28.5,-0.5 + parent: 1668 + type: Transform + - uid: 3386 + components: + - pos: -26.5,-0.5 + parent: 1668 + type: Transform + - uid: 3933 + components: + - pos: -33.5,7.5 + parent: 1668 + type: Transform + - uid: 3934 + components: + - pos: -32.5,7.5 + parent: 1668 + type: Transform + - uid: 3935 + components: + - pos: -30.5,7.5 + parent: 1668 + type: Transform + - uid: 3939 + components: + - pos: -34.5,3.5 + parent: 1668 + type: Transform + - uid: 3940 + components: + - pos: -34.5,4.5 + parent: 1668 + type: Transform + - uid: 3941 + components: + - pos: -34.5,5.5 + parent: 1668 + type: Transform + - uid: 3942 + components: + - pos: -34.5,6.5 + parent: 1668 + type: Transform + - uid: 3972 + components: + - pos: -34.5,-2.5 + parent: 1668 + type: Transform + - uid: 3973 + components: + - pos: -34.5,-0.5 + parent: 1668 + type: Transform + - uid: 3974 + components: + - pos: -34.5,1.5 + parent: 1668 + type: Transform + - uid: 3975 + components: + - pos: -32.5,1.5 + parent: 1668 + type: Transform + - uid: 3976 + components: + - pos: -32.5,-2.5 + parent: 1668 + type: Transform + - uid: 3977 + components: + - pos: -32.5,-0.5 + parent: 1668 + type: Transform + - uid: 3978 + components: + - pos: -33.5,-0.5 + parent: 1668 + type: Transform + - uid: 4222 + components: + - pos: -11.5,-17.5 + parent: 1668 + type: Transform + - uid: 4223 + components: + - pos: -10.5,-17.5 + parent: 1668 + type: Transform + - uid: 4224 + components: + - pos: -9.5,-16.5 + parent: 1668 + type: Transform + - uid: 4225 + components: + - pos: -12.5,-16.5 + parent: 1668 + type: Transform + - uid: 4265 + components: + - pos: 0.5,-20.5 + parent: 1668 + type: Transform + - uid: 4305 + components: + - pos: -4.5,-21.5 + parent: 1668 + type: Transform + - uid: 4306 + components: + - pos: -4.5,-22.5 + parent: 1668 + type: Transform + - uid: 4307 + components: + - pos: -4.5,-23.5 + parent: 1668 + type: Transform + - uid: 4308 + components: + - pos: -2.5,-23.5 + parent: 1668 + type: Transform + - uid: 4309 + components: + - pos: -2.5,-22.5 + parent: 1668 + type: Transform + - uid: 4310 + components: + - pos: -2.5,-21.5 + parent: 1668 + type: Transform + - uid: 4311 + components: + - pos: 1.5,-21.5 + parent: 1668 + type: Transform + - uid: 4312 + components: + - pos: 1.5,-22.5 + parent: 1668 + type: Transform + - uid: 4313 + components: + - pos: 1.5,-23.5 + parent: 1668 + type: Transform + - uid: 4314 + components: + - pos: 3.5,-23.5 + parent: 1668 + type: Transform + - uid: 4315 + components: + - pos: 3.5,-22.5 + parent: 1668 + type: Transform + - uid: 4316 + components: + - pos: 3.5,-21.5 + parent: 1668 + type: Transform + - uid: 4354 + components: + - pos: -5.5,-30.5 + parent: 1668 + type: Transform + - uid: 4355 + components: + - pos: -7.5,-30.5 + parent: 1668 + type: Transform + - uid: 4365 + components: + - pos: 4.5,-30.5 + parent: 1668 + type: Transform + - uid: 4367 + components: + - pos: 6.5,-30.5 + parent: 1668 + type: Transform + - uid: 4651 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-30.5 + parent: 1668 + type: Transform + - uid: 4652 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-30.5 + parent: 1668 + type: Transform + - uid: 4653 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-30.5 + parent: 1668 + type: Transform + - uid: 4663 + components: + - pos: -1.5,-34.5 + parent: 1668 + type: Transform + - uid: 4664 + components: + - pos: -0.5,-34.5 + parent: 1668 + type: Transform + - uid: 4665 + components: + - pos: 0.5,-34.5 + parent: 1668 + type: Transform + - uid: 4752 + components: + - pos: 17.5,-22.5 + parent: 1668 + type: Transform + - uid: 4753 + components: + - pos: 15.5,-22.5 + parent: 1668 + type: Transform + - uid: 5333 + components: + - pos: 21.5,-23.5 + parent: 1668 + type: Transform + - uid: 5334 + components: + - pos: 20.5,-23.5 + parent: 1668 + type: Transform + - uid: 5335 + components: + - pos: 19.5,-23.5 + parent: 1668 + type: Transform + - uid: 5880 + components: + - pos: -0.5,-40.5 + parent: 1668 + type: Transform + - uid: 5910 + components: + - pos: -17.5,-34.5 + parent: 1668 + type: Transform + - uid: 5911 + components: + - pos: -18.5,-34.5 + parent: 1668 + type: Transform + - uid: 5912 + components: + - pos: -19.5,-34.5 + parent: 1668 + type: Transform + - uid: 5914 + components: + - pos: -20.5,-31.5 + parent: 1668 + type: Transform + - uid: 5915 + components: + - pos: -20.5,-32.5 + parent: 1668 + type: Transform + - uid: 5916 + components: + - pos: -20.5,-33.5 + parent: 1668 + type: Transform + - uid: 5947 + components: + - pos: -15.5,-25.5 + parent: 1668 + type: Transform + - uid: 5948 + components: + - pos: -17.5,-25.5 + parent: 1668 + type: Transform + - uid: 5976 + components: + - pos: -23.5,-27.5 + parent: 1668 + type: Transform + - uid: 5977 + components: + - pos: -21.5,-27.5 + parent: 1668 + type: Transform + - uid: 5978 + components: + - pos: -21.5,-23.5 + parent: 1668 + type: Transform + - uid: 5979 + components: + - pos: -23.5,-23.5 + parent: 1668 + type: Transform + - uid: 5980 + components: + - pos: -23.5,-25.5 + parent: 1668 + type: Transform + - uid: 5981 + components: + - pos: -22.5,-25.5 + parent: 1668 + type: Transform + - uid: 5982 + components: + - pos: -21.5,-25.5 + parent: 1668 + type: Transform + - uid: 5990 + components: + - pos: -20.5,-21.5 + parent: 1668 + type: Transform + - uid: 5991 + components: + - pos: -19.5,-21.5 + parent: 1668 + type: Transform + - uid: 5992 + components: + - pos: -18.5,-21.5 + parent: 1668 + type: Transform + - uid: 6024 + components: + - pos: -2.5,-33.5 + parent: 1668 + type: Transform + - uid: 6025 + components: + - pos: -2.5,-32.5 + parent: 1668 + type: Transform + - uid: 6156 + components: + - pos: -2.5,-31.5 + parent: 1668 + type: Transform + - uid: 6157 + components: + - pos: 1.5,-33.5 + parent: 1668 + type: Transform + - uid: 6158 + components: + - pos: 1.5,-32.5 + parent: 1668 + type: Transform + - uid: 6159 + components: + - pos: 1.5,-31.5 + parent: 1668 + type: Transform + - uid: 6275 + components: + - pos: -0.5,-38.5 + parent: 1668 + type: Transform + - uid: 6288 + components: + - pos: -0.5,-46.5 + parent: 1668 + type: Transform + - uid: 6289 + components: + - pos: -0.5,-45.5 + parent: 1668 + type: Transform + - uid: 6290 + components: + - pos: -0.5,-44.5 + parent: 1668 + type: Transform + - uid: 6291 + components: + - pos: -2.5,-46.5 + parent: 1668 + type: Transform + - uid: 6295 + components: + - pos: -2.5,-44.5 + parent: 1668 + type: Transform + - uid: 6296 + components: + - pos: 1.5,-46.5 + parent: 1668 + type: Transform + - uid: 6300 + components: + - pos: 1.5,-44.5 + parent: 1668 + type: Transform + - uid: 6707 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-32.5 + parent: 1668 + type: Transform + - uid: 6770 + components: + - pos: -1.5,-20.5 + parent: 1668 + type: Transform + - uid: 6771 + components: + - pos: 0.5,-24.5 + parent: 1668 + type: Transform + - uid: 6783 + components: + - pos: 5.5,6.5 + parent: 1668 + type: Transform + - uid: 6847 + components: + - pos: 15.5,8.5 + parent: 1668 + type: Transform +- proto: RubberStampCentcom + entities: + - uid: 2917 + components: + - pos: 0.630217,1.1330963 + parent: 1668 + type: Transform + - uid: 3749 + components: + - pos: -20.5068,11.16328 + parent: 1668 + type: Transform +- proto: RubberStampQm + entities: + - uid: 2234 + components: + - pos: -12.516554,9.632545 + parent: 1668 + type: Transform +- proto: RubberStampTrader + entities: + - uid: 2233 + components: + - pos: -12.532179,11.55442 + parent: 1668 + type: Transform +- proto: Screen + entities: + - uid: 6988 + components: + - pos: 33.5,3.5 + parent: 1668 + type: Transform + - uid: 6989 + components: + - pos: 33.5,-4.5 + parent: 1668 + type: Transform +- proto: SecurityTechFab + entities: + - uid: 2874 + components: + - pos: 9.5,32.5 + parent: 1668 + type: Transform +- proto: SheetPlasteel + entities: + - uid: 6510 + components: + - pos: 4.2860384,-39.471622 + parent: 1668 + type: Transform + - uid: 6511 + components: + - pos: 4.3329134,-39.549747 + parent: 1668 + type: Transform +- proto: SheetRGlass + entities: + - uid: 6512 + components: + - pos: 3.8797882,-39.455997 + parent: 1668 + type: Transform + - uid: 6513 + components: + - pos: 3.9579132,-39.565372 + parent: 1668 + type: Transform +- proto: SheetSteel + entities: + - uid: 6508 + components: + - pos: 3.4901893,-39.558212 + parent: 1668 + type: Transform + - uid: 6509 + components: + - pos: 3.5839393,-39.448837 + parent: 1668 + type: Transform +- proto: ShowcaseRobotAntique + entities: + - uid: 6931 + components: + - pos: -6.5,8.5 + parent: 1668 + type: Transform +- proto: ShuttersRadiationOpen + entities: + - uid: 6879 + components: + - pos: 21.5,-23.5 + parent: 1668 + type: Transform + - uid: 6880 + components: + - pos: 20.5,-23.5 + parent: 1668 + type: Transform + - uid: 6881 + components: + - pos: 19.5,-23.5 + parent: 1668 + type: Transform +- proto: SignalButton + entities: + - uid: 789 + components: + - pos: -4.5,-8.5 + parent: 1668 + type: Transform + - linkedPorts: + 786: + - Pressed: Toggle + 787: + - Pressed: Toggle + 788: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 1611 + components: + - pos: -14.5,23.5 + parent: 1668 + type: Transform + - linkedPorts: + 1607: + - Pressed: Toggle + 1610: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 1612 + components: + - pos: -14.5,29.5 + parent: 1668 + type: Transform + - linkedPorts: + 1608: + - Pressed: Toggle + 1609: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 1804 + components: + - pos: -2.5,19.5 + parent: 1668 + type: Transform + - linkedPorts: + 1552: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 2712 + components: + - pos: 7.5,17.5 + parent: 1668 + type: Transform + - linkedPorts: + 2150: + - Pressed: Toggle + 2149: + - Pressed: Toggle + 2148: + - Pressed: Toggle + 2147: + - Pressed: Toggle + 2146: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 2920 + components: + - pos: -16.5,-4.5 + parent: 1668 + type: Transform + - linkedPorts: + 3789: + - Pressed: Toggle + 3788: + - Pressed: Toggle + 3787: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 2927 + components: + - name: le funny admin button + type: MetaData + - pos: 4.5,32.5 + parent: 1668 + type: Transform + - linkedPorts: + 2926: + - Pressed: Toggle + 2925: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 2928 + components: + - name: le funny admin button + type: MetaData + - pos: 14.5,32.5 + parent: 1668 + type: Transform + - linkedPorts: + 2886: + - Pressed: Toggle + 2790: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 5242 + components: + - pos: 28.5,-20.5 + parent: 1668 + type: Transform + - linkedPorts: + 5238: + - Pressed: Toggle + 5237: + - Pressed: Toggle + 5236: + - Pressed: Toggle + 5235: + - Pressed: Toggle + 5234: + - Pressed: Toggle + 5239: + - Pressed: Toggle + 5241: + - Pressed: Toggle + 5240: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 6442 + components: + - pos: 1.5,-40.5 + parent: 1668 + type: Transform + - linkedPorts: + 6521: + - Pressed: Toggle + 6525: + - Pressed: Toggle + 6524: + - Pressed: Toggle + 6523: + - Pressed: Toggle + 6522: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignalButtonExt1 + entities: + - uid: 715 + components: + - name: East Checkpoint Doors + type: MetaData + - pos: 16.5,4.5 + parent: 1668 + type: Transform +- proto: SignalButtonExt2 + entities: + - uid: 721 + components: + - name: West Checkpoint Doors + type: MetaData + - pos: 8.5,4.5 + parent: 1668 + type: Transform +- proto: SignAtmosMinsky + entities: + - uid: 6888 + components: + - pos: 14.5,-29.5 + parent: 1668 + type: Transform +- proto: SignCargo + entities: + - uid: 2207 + components: + - pos: -4.5,13.5 + parent: 1668 + type: Transform +- proto: SignChemistry1 + entities: + - uid: 6764 + components: + - pos: 8.5,-10.5 + parent: 1668 + type: Transform +- proto: SignCloning + entities: + - uid: 6763 + components: + - pos: 13.5,-17.5 + parent: 1668 + type: Transform +- proto: SignDirectionalEng + entities: + - uid: 2882 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-17.5 + parent: 1668 + type: Transform + - uid: 6593 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-34.5 + parent: 1668 + type: Transform +- proto: SignDoors + entities: + - uid: 545 + components: + - pos: 18.5,-0.5 + parent: 1668 + type: Transform + - uid: 546 + components: + - pos: 16.5,-0.5 + parent: 1668 + type: Transform + - uid: 547 + components: + - pos: 8.5,-0.5 + parent: 1668 + type: Transform + - uid: 548 + components: + - pos: 6.5,-0.5 + parent: 1668 + type: Transform + - uid: 795 + components: + - pos: -1.5,-8.5 + parent: 1668 + type: Transform + - uid: 796 + components: + - pos: 0.5,-6.5 + parent: 1668 + type: Transform + - uid: 2269 + components: + - pos: 5.5,12.5 + parent: 1668 + type: Transform + - uid: 2270 + components: + - pos: 3.5,12.5 + parent: 1668 + type: Transform + - uid: 2271 + components: + - pos: 15.5,12.5 + parent: 1668 + type: Transform + - uid: 2272 + components: + - pos: -1.5,5.5 + parent: 1668 + type: Transform + - uid: 2273 + components: + - pos: 0.5,7.5 + parent: 1668 + type: Transform + - uid: 3607 + components: + - pos: -7.5,-0.5 + parent: 1668 + type: Transform + - uid: 3608 + components: + - pos: -9.5,-0.5 + parent: 1668 + type: Transform + - uid: 3609 + components: + - pos: -26.5,-0.5 + parent: 1668 + type: Transform + - uid: 3610 + components: + - pos: -28.5,-0.5 + parent: 1668 + type: Transform +- proto: SignElectricalMed + entities: + - uid: 1533 + components: + - pos: -1.5,17.5 + parent: 1668 + type: Transform + - uid: 5351 + components: + - pos: 18.5,-13.5 + parent: 1668 + type: Transform +- proto: SignEngineering + entities: + - uid: 4970 + components: + - pos: 18.5,-24.5 + parent: 1668 + type: Transform +- proto: SignGravity + entities: + - uid: 5215 + components: + - pos: 31.5,-14.5 + parent: 1668 + type: Transform +- proto: SignInterrogation + entities: + - uid: 2830 + components: + - pos: 6.5,23.5 + parent: 1668 + type: Transform +- proto: SignKiddiePlaque + entities: + - uid: 4384 + components: + - pos: -3.5,-20.5 + parent: 1668 + type: Transform + - uid: 4385 + components: + - pos: -13.5,12.5 + parent: 1668 + type: Transform + - uid: 4386 + components: + - pos: 21.5,16.5 + parent: 1668 + type: Transform + - uid: 4387 + components: + - pos: 1.5,2.5 + parent: 1668 + type: Transform +- proto: SignMedical + entities: + - uid: 736 + components: + - pos: 5.5,-6.5 + parent: 1668 + type: Transform + - uid: 6762 + components: + - pos: 16.5,-3.5 + parent: 1668 + type: Transform +- proto: SignPlaque + entities: + - uid: 3770 + components: + - pos: -18.5,13.5 + parent: 1668 + type: Transform + - uid: 4381 + components: + - pos: -3.5,-24.5 + parent: 1668 + type: Transform + - uid: 4382 + components: + - pos: 2.5,-20.5 + parent: 1668 + type: Transform + - uid: 6645 + components: + - pos: -1.5,-3.5 + parent: 1668 + type: Transform +- proto: SignRadiationMed + entities: + - uid: 5348 + components: + - pos: 33.5,-14.5 + parent: 1668 + type: Transform + - uid: 5349 + components: + - pos: 34.5,-19.5 + parent: 1668 + type: Transform + - uid: 5350 + components: + - pos: 30.5,-19.5 + parent: 1668 + type: Transform +- proto: SignSecureMed + entities: + - uid: 776 + components: + - pos: -6.5,-6.5 + parent: 1668 + type: Transform + - uid: 3451 + components: + - pos: -20.5,1.5 + parent: 1668 + type: Transform + - uid: 3713 + components: + - pos: -17.5,6.5 + parent: 1668 + type: Transform + - uid: 3714 + components: + - pos: -13.5,4.5 + parent: 1668 + type: Transform + - uid: 3871 + components: + - pos: -16.5,-8.5 + parent: 1668 + type: Transform + - uid: 3872 + components: + - pos: -9.5,-4.5 + parent: 1668 + type: Transform + - uid: 3873 + components: + - pos: -9.5,-8.5 + parent: 1668 + type: Transform + - uid: 4151 + components: + - pos: -28.5,-2.5 + parent: 1668 + type: Transform + - uid: 6443 + components: + - pos: -3.5,-46.5 + parent: 1668 + type: Transform + - uid: 6444 + components: + - pos: 2.5,-46.5 + parent: 1668 + type: Transform + - uid: 6445 + components: + - pos: -2.5,-38.5 + parent: 1668 + type: Transform +- proto: SignSecureSmall + entities: + - uid: 3868 + components: + - pos: -23.5,-2.5 + parent: 1668 + type: Transform + - uid: 3869 + components: + - pos: -19.5,-2.5 + parent: 1668 + type: Transform +- proto: SignSpace + entities: + - uid: 1792 + components: + - pos: -15.5,23.5 + parent: 1668 + type: Transform + - uid: 1793 + components: + - pos: -15.5,29.5 + parent: 1668 + type: Transform + - uid: 2741 + components: + - pos: 0.5,22.5 + parent: 1668 + type: Transform + - uid: 5956 + components: + - pos: -15.5,-25.5 + parent: 1668 + type: Transform + - uid: 5957 + components: + - pos: -17.5,-25.5 + parent: 1668 + type: Transform + - uid: 6231 + components: + - pos: -32.5,-0.5 + parent: 1668 + type: Transform + - uid: 6232 + components: + - pos: -21.5,-25.5 + parent: 1668 + type: Transform +- proto: Sink + entities: + - uid: 3425 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,14.5 + parent: 1668 + type: Transform +- proto: SinkWide + entities: + - uid: 6619 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-27.5 + parent: 1668 + type: Transform + - uid: 6620 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-22.5 + parent: 1668 + type: Transform + - uid: 6877 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-24.5 + parent: 1668 + type: Transform + - uid: 6878 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-24.5 + parent: 1668 + type: Transform +- proto: SMESBasic + entities: + - uid: 327 + components: + - pos: 27.5,-30.5 + parent: 1668 + type: Transform + - uid: 5078 + components: + - pos: 22.5,-17.5 + parent: 1668 + type: Transform + - uid: 5079 + components: + - pos: 22.5,-15.5 + parent: 1668 + type: Transform + - uid: 5080 + components: + - pos: 22.5,-16.5 + parent: 1668 + type: Transform +- proto: SmokingPipeFilledTobacco + entities: + - uid: 3753 + components: + - pos: -18.510391,8.646521 + parent: 1668 + type: Transform +- proto: SoapDeluxe + entities: + - uid: 3424 + components: + - pos: -20.47715,15.560694 + parent: 1668 + type: Transform +- proto: SoapOmega + entities: + - uid: 6553 + components: + - pos: -4.4900203,-39.32435 + parent: 1668 + type: Transform +- proto: soda_dispenser + entities: + - uid: 4427 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-25.5 + parent: 1668 + type: Transform + - uid: 4429 + components: + - pos: 7.5,-21.5 + parent: 1668 + type: Transform +- proto: SpawnVehicleSecway + entities: + - uid: 2823 + components: + - pos: 11.5,25.5 + parent: 1668 + type: Transform +- proto: SS13Memorial + entities: + - uid: 486 + components: + - pos: 26.5,7.5 + parent: 1668 + type: Transform +- proto: StasisBed + entities: + - uid: 609 + components: + - pos: 11.5,-7.5 + parent: 1668 + type: Transform +- proto: StatueVenusBlue + entities: + - uid: 4180 + components: + - pos: -20.5,-6.5 + parent: 1668 + type: Transform +- proto: StatueVenusRed + entities: + - uid: 4179 + components: + - pos: -21.5,-6.5 + parent: 1668 + type: Transform +- proto: Stool + entities: + - uid: 2913 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-17.5 + parent: 1668 + type: Transform + - uid: 4251 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-16.5 + parent: 1668 + type: Transform + - uid: 5058 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-15.5 + parent: 1668 + type: Transform +- proto: StoolBar + entities: + - uid: 4412 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-25.5 + parent: 1668 + type: Transform + - uid: 4413 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-26.5 + parent: 1668 + type: Transform + - uid: 4414 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-27.5 + parent: 1668 + type: Transform +- proto: StorageCanister + entities: + - uid: 3661 + components: + - pos: -14.5,6.5 + parent: 1668 + type: Transform +- proto: Stunbaton + entities: + - uid: 2746 + components: + - pos: 4.4667654,19.499214 + parent: 1668 + type: Transform +- proto: SubstationBasic + entities: + - uid: 1130 + components: + - pos: 15.5,-13.5 + parent: 1668 + type: Transform + - uid: 1802 + components: + - pos: -3.5,20.5 + parent: 1668 + type: Transform + - uid: 1803 + components: + - pos: 2.5,20.5 + parent: 1668 + type: Transform + - uid: 2199 + components: + - pos: 27.5,-31.5 + parent: 1668 + type: Transform + - uid: 2521 + components: + - pos: 15.5,19.5 + parent: 1668 + type: Transform + - uid: 3432 + components: + - pos: -15.5,6.5 + parent: 1668 + type: Transform + - uid: 3949 + components: + - pos: -27.5,6.5 + parent: 1668 + type: Transform + - uid: 4815 + components: + - pos: 17.5,-17.5 + parent: 1668 + type: Transform + - uid: 4816 + components: + - pos: 15.5,-17.5 + parent: 1668 + type: Transform + - uid: 5958 + components: + - pos: -16.5,-29.5 + parent: 1668 + type: Transform +- proto: SurveillanceCameraCommand + entities: + - uid: 6817 + components: + - pos: -1.5,-2.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Operator Room + type: SurveillanceCamera + - uid: 6818 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-3.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Conference Room + type: SurveillanceCamera + - uid: 6819 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-6.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HighSec Storage Room + type: SurveillanceCamera + - uid: 6820 + components: + - rot: 3.141592653589793 rad + pos: -21.5,6.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Command Reception + type: SurveillanceCamera + - uid: 6821 + components: + - rot: 3.141592653589793 rad + pos: -22.5,12.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Command Conference Room + type: SurveillanceCamera + - uid: 6822 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,9.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Command Bedroom + type: SurveillanceCamera + - uid: 6825 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-41.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: ERT West Room + type: SurveillanceCamera + - uid: 6826 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-41.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: ERT East Room + type: SurveillanceCamera + - uid: 6827 + components: + - pos: -0.5,-43.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: ERT Central Room + type: SurveillanceCamera +- proto: SurveillanceCameraEngineering + entities: + - uid: 5407 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-31.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmospherics + type: SurveillanceCamera + - uid: 6790 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-20.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Eng Lobby + type: SurveillanceCamera + - uid: 6791 + components: + - pos: 23.5,-18.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Power Supply + type: SurveillanceCamera + - uid: 6792 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-23.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Power Generation + type: SurveillanceCamera + - uid: 6793 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-12.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Grav Generation + type: SurveillanceCamera + - uid: 6810 + components: + - rot: 3.141592653589793 rad + pos: 0.5,21.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: North Substation + type: SurveillanceCamera + - uid: 6823 + components: + - pos: -15.5,4.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Command Substation + type: SurveillanceCamera + - uid: 6824 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,4.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: West Substation + type: SurveillanceCamera + - uid: 6828 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-15.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Medbay Substation + type: SurveillanceCamera + - uid: 6829 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-18.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Eng Substation + type: SurveillanceCamera +- proto: SurveillanceCameraGeneral + entities: + - uid: 6830 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,0.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Arrivals East + type: SurveillanceCamera + - uid: 6831 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-0.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Arrivals West + type: SurveillanceCamera + - uid: 6832 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-17.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Service Hallway North + type: SurveillanceCamera + - uid: 6833 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-25.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Service Hallway West + type: SurveillanceCamera + - uid: 6834 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-25.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Docking SouthWest + type: SurveillanceCamera + - uid: 6835 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-31.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Service Hallway SouthWest + type: SurveillanceCamera + - uid: 6836 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-31.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Service Hallway SouthEast + type: SurveillanceCamera + - uid: 6837 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-25.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Service Hallway East + type: SurveillanceCamera + - uid: 6838 + components: + - pos: 8.5,-19.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Service Hallway NorthEast + type: SurveillanceCamera + - uid: 6839 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-0.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Docking West + type: SurveillanceCamera + - uid: 6840 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,5.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Waiting Room West + type: SurveillanceCamera + - uid: 6841 + components: + - pos: -17.5,-1.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: West Hallway + type: SurveillanceCamera +- proto: SurveillanceCameraMedical + entities: + - uid: 6794 + components: + - pos: 11.5,-14.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Cloning + type: SurveillanceCamera + - uid: 6795 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Chemistry + type: SurveillanceCamera + - uid: 6796 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-4.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Medical + type: SurveillanceCamera +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 6864 + components: + - pos: 29.5,-29.5 + parent: 1668 + type: Transform +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 6871 + components: + - pos: 32.5,-29.5 + parent: 1668 + type: Transform +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 6869 + components: + - pos: 29.5,-30.5 + parent: 1668 + type: Transform +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 6870 + components: + - pos: 33.5,-29.5 + parent: 1668 + type: Transform +- proto: SurveillanceCameraRouterScience + entities: + - uid: 6873 + components: + - pos: 30.5,-29.5 + parent: 1668 + type: Transform +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 6867 + components: + - pos: 31.5,-30.5 + parent: 1668 + type: Transform +- proto: SurveillanceCameraRouterService + entities: + - uid: 6872 + components: + - pos: 31.5,-29.5 + parent: 1668 + type: Transform +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 6868 + components: + - pos: 30.5,-30.5 + parent: 1668 + type: Transform +- proto: SurveillanceCameraSecurity + entities: + - uid: 6765 + components: + - pos: -3.5,-12.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Service checkpoint + type: SurveillanceCamera + - uid: 6801 + components: + - rot: 3.141592653589793 rad + pos: 29.5,19.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Court room north + type: SurveillanceCamera + - uid: 6802 + components: + - rot: 3.141592653589793 rad + pos: 24.5,13.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Court room south + type: SurveillanceCamera + - uid: 6803 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,20.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Judge room + type: SurveillanceCamera + - uid: 6804 + components: + - rot: 3.141592653589793 rad + pos: 10.5,15.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Brig lobby + type: SurveillanceCamera + - uid: 6805 + components: + - rot: 3.141592653589793 rad + pos: 6.5,19.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Warden room + type: SurveillanceCamera + - uid: 6806 + components: + - rot: 3.141592653589793 rad + pos: 6.5,22.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Interrogation room + type: SurveillanceCamera + - uid: 6807 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,26.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Brig west + type: SurveillanceCamera + - uid: 6808 + components: + - pos: 9.5,27.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory + type: SurveillanceCamera + - uid: 6809 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,26.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Brig east + type: SurveillanceCamera + - uid: 6815 + components: + - rot: 3.141592653589793 rad + pos: 13.5,1.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Medbay checkpoint + type: SurveillanceCamera + - uid: 6816 + components: + - pos: 26.5,-11.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Arrivals checkpoint + type: SurveillanceCamera +- proto: SurveillanceCameraService + entities: + - uid: 6797 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-24.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Bar + type: SurveillanceCamera + - uid: 6798 + components: + - pos: -0.5,-29.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Canteen + type: SurveillanceCamera + - uid: 6799 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-24.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Kitchen + type: SurveillanceCamera + - uid: 6800 + components: + - pos: -16.5,-33.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Jani closet + type: SurveillanceCamera +- proto: SurveillanceCameraSupply + entities: + - uid: 6811 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,11.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo lobby + type: SurveillanceCamera + - uid: 6812 + components: + - rot: 3.141592653589793 rad + pos: -11.5,17.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo command room + type: SurveillanceCamera + - uid: 6813 + components: + - rot: 3.141592653589793 rad + pos: -11.5,31.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo bay north + type: SurveillanceCamera + - uid: 6814 + components: + - pos: -7.5,19.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo bay south + type: SurveillanceCamera +- proto: SurveillanceCameraWirelessRouterConstructed + entities: + - uid: 6866 + components: + - pos: 32.5,-30.5 + parent: 1668 + type: Transform +- proto: SurveillanceCameraWirelessRouterEntertainment + entities: + - uid: 6865 + components: + - pos: 33.5,-30.5 + parent: 1668 + type: Transform +- proto: Table + entities: + - uid: 528 + components: + - pos: 21.5,5.5 + parent: 1668 + type: Transform + - uid: 529 + components: + - pos: 31.5,5.5 + parent: 1668 + type: Transform + - uid: 530 + components: + - pos: 21.5,-6.5 + parent: 1668 + type: Transform + - uid: 631 + components: + - pos: 9.5,1.5 + parent: 1668 + type: Transform + - uid: 632 + components: + - pos: 15.5,1.5 + parent: 1668 + type: Transform + - uid: 633 + components: + - pos: 15.5,-2.5 + parent: 1668 + type: Transform + - uid: 807 + components: + - pos: -2.5,-9.5 + parent: 1668 + type: Transform + - uid: 808 + components: + - pos: 1.5,-9.5 + parent: 1668 + type: Transform + - uid: 1180 + components: + - pos: 17.5,-15.5 + parent: 1668 + type: Transform + - uid: 1181 + components: + - pos: 16.5,-15.5 + parent: 1668 + type: Transform + - uid: 2043 + components: + - pos: -1.5,19.5 + parent: 1668 + type: Transform + - uid: 2163 + components: + - pos: -0.5,12.5 + parent: 1668 + type: Transform + - uid: 2164 + components: + - pos: -3.5,12.5 + parent: 1668 + type: Transform + - uid: 2165 + components: + - pos: 2.5,8.5 + parent: 1668 + type: Transform + - uid: 2166 + components: + - pos: 2.5,16.5 + parent: 1668 + type: Transform + - uid: 2210 + components: + - pos: -6.5,31.5 + parent: 1668 + type: Transform + - uid: 2211 + components: + - pos: -7.5,31.5 + parent: 1668 + type: Transform + - uid: 2212 + components: + - pos: -5.5,24.5 + parent: 1668 + type: Transform + - uid: 2213 + components: + - pos: -5.5,25.5 + parent: 1668 + type: Transform + - uid: 2214 + components: + - pos: -5.5,26.5 + parent: 1668 + type: Transform + - uid: 2215 + components: + - pos: -11.5,31.5 + parent: 1668 + type: Transform + - uid: 2216 + components: + - pos: -10.5,31.5 + parent: 1668 + type: Transform + - uid: 2826 + components: + - pos: 5.5,21.5 + parent: 1668 + type: Transform + - uid: 3142 + components: + - pos: 10.5,25.5 + parent: 1668 + type: Transform + - uid: 3143 + components: + - pos: 9.5,25.5 + parent: 1668 + type: Transform + - uid: 3182 + components: + - pos: 10.5,15.5 + parent: 1668 + type: Transform + - uid: 3183 + components: + - pos: 10.5,10.5 + parent: 1668 + type: Transform + - uid: 3260 + components: + - pos: 8.5,23.5 + parent: 1668 + type: Transform + - uid: 5244 + components: + - pos: 27.5,-23.5 + parent: 1668 + type: Transform + - uid: 5245 + components: + - pos: 27.5,-22.5 + parent: 1668 + type: Transform + - uid: 5247 + components: + - pos: 26.5,-22.5 + parent: 1668 + type: Transform + - uid: 5248 + components: + - pos: 26.5,-23.5 + parent: 1668 + type: Transform + - uid: 5329 + components: + - pos: 34.5,-17.5 + parent: 1668 + type: Transform + - uid: 5330 + components: + - pos: 34.5,-16.5 + parent: 1668 + type: Transform + - uid: 5339 + components: + - pos: 21.5,-15.5 + parent: 1668 + type: Transform + - uid: 5421 + components: + - pos: 16.5,-29.5 + parent: 1668 + type: Transform + - uid: 6151 + components: + - pos: -19.5,-22.5 + parent: 1668 + type: Transform + - uid: 6270 + components: + - pos: 14.5,-27.5 + parent: 1668 + type: Transform + - uid: 6571 + components: + - pos: -12.5,-33.5 + parent: 1668 + type: Transform + - uid: 6572 + components: + - pos: -8.5,-33.5 + parent: 1668 + type: Transform + - uid: 6581 + components: + - pos: -10.5,-30.5 + parent: 1668 + type: Transform + - uid: 6582 + components: + - pos: 9.5,-30.5 + parent: 1668 + type: Transform + - uid: 6583 + components: + - pos: 11.5,-33.5 + parent: 1668 + type: Transform + - uid: 6584 + components: + - pos: 7.5,-33.5 + parent: 1668 + type: Transform + - uid: 6624 + components: + - pos: 1.5,-25.5 + parent: 1668 + type: Transform + - uid: 6625 + components: + - pos: 0.5,-25.5 + parent: 1668 + type: Transform +- proto: TableCarpet + entities: + - uid: 699 + components: + - pos: 18.5,14.5 + parent: 1668 + type: Transform + - uid: 6595 + components: + - pos: 18.5,12.5 + parent: 1668 + type: Transform + - uid: 6606 + components: + - pos: 18.5,13.5 + parent: 1668 + type: Transform +- proto: TableReinforced + entities: + - uid: 98 + components: + - pos: 3.5,-9.5 + parent: 1668 + type: Transform + - uid: 99 + components: + - pos: 3.5,-10.5 + parent: 1668 + type: Transform + - uid: 126 + components: + - pos: 9.5,16.5 + parent: 1668 + type: Transform + - uid: 216 + components: + - pos: 2.5,-12.5 + parent: 1668 + type: Transform + - uid: 217 + components: + - pos: 2.5,-11.5 + parent: 1668 + type: Transform + - uid: 218 + components: + - pos: 12.5,2.5 + parent: 1668 + type: Transform + - uid: 219 + components: + - pos: 14.5,2.5 + parent: 1668 + type: Transform + - uid: 489 + components: + - pos: 27.5,-7.5 + parent: 1668 + type: Transform + - uid: 491 + components: + - pos: 25.5,-7.5 + parent: 1668 + type: Transform + - uid: 494 + components: + - pos: 26.5,-7.5 + parent: 1668 + type: Transform + - uid: 500 + components: + - pos: 24.5,-9.5 + parent: 1668 + type: Transform + - uid: 501 + components: + - pos: 24.5,-8.5 + parent: 1668 + type: Transform + - uid: 503 + components: + - pos: 28.5,-11.5 + parent: 1668 + type: Transform + - uid: 504 + components: + - pos: 27.5,-11.5 + parent: 1668 + type: Transform + - uid: 505 + components: + - pos: 26.5,-11.5 + parent: 1668 + type: Transform + - uid: 513 + components: + - pos: 20.5,-10.5 + parent: 1668 + type: Transform + - uid: 514 + components: + - pos: 21.5,-10.5 + parent: 1668 + type: Transform + - uid: 596 + components: + - pos: 10.5,3.5 + parent: 1668 + type: Transform + - uid: 597 + components: + - pos: 10.5,4.5 + parent: 1668 + type: Transform + - uid: 598 + components: + - pos: 12.5,6.5 + parent: 1668 + type: Transform + - uid: 599 + components: + - pos: 13.5,6.5 + parent: 1668 + type: Transform + - uid: 600 + components: + - pos: 14.5,6.5 + parent: 1668 + type: Transform + - uid: 601 + components: + - pos: 15.5,6.5 + parent: 1668 + type: Transform + - uid: 613 + components: + - pos: 14.5,-7.5 + parent: 1668 + type: Transform + - uid: 614 + components: + - pos: 15.5,-7.5 + parent: 1668 + type: Transform + - uid: 615 + components: + - pos: 10.5,-7.5 + parent: 1668 + type: Transform + - uid: 618 + components: + - pos: 9.5,-4.5 + parent: 1668 + type: Transform + - uid: 641 + components: + - pos: -1.5,0.5 + parent: 1668 + type: Transform + - uid: 642 + components: + - pos: -0.5,1.5 + parent: 1668 + type: Transform + - uid: 643 + components: + - pos: 0.5,1.5 + parent: 1668 + type: Transform + - uid: 644 + components: + - pos: 0.5,0.5 + parent: 1668 + type: Transform + - uid: 645 + components: + - pos: 2.5,-2.5 + parent: 1668 + type: Transform + - uid: 646 + components: + - pos: 1.5,-2.5 + parent: 1668 + type: Transform + - uid: 647 + components: + - pos: -2.5,-2.5 + parent: 1668 + type: Transform + - uid: 648 + components: + - pos: -3.5,-2.5 + parent: 1668 + type: Transform + - uid: 770 + components: + - pos: -3.5,-12.5 + parent: 1668 + type: Transform + - uid: 771 + components: + - pos: -3.5,-11.5 + parent: 1668 + type: Transform + - uid: 794 + components: + - pos: 3.5,-17.5 + parent: 1668 + type: Transform + - uid: 805 + components: + - pos: 4.5,-17.5 + parent: 1668 + type: Transform + - uid: 809 + components: + - pos: -6.5,-13.5 + parent: 1668 + type: Transform + - uid: 810 + components: + - pos: -6.5,-12.5 + parent: 1668 + type: Transform + - uid: 811 + components: + - pos: -4.5,-10.5 + parent: 1668 + type: Transform + - uid: 812 + components: + - pos: -4.5,-9.5 + parent: 1668 + type: Transform + - uid: 1194 + components: + - pos: 13.5,-12.5 + parent: 1668 + type: Transform + - uid: 1433 + components: + - pos: -1.5,1.5 + parent: 1668 + type: Transform + - uid: 1617 + components: + - pos: -4.5,9.5 + parent: 1668 + type: Transform + - uid: 1618 + components: + - pos: -4.5,10.5 + parent: 1668 + type: Transform + - uid: 1636 + components: + - pos: -9.5,8.5 + parent: 1668 + type: Transform + - uid: 1637 + components: + - pos: -8.5,8.5 + parent: 1668 + type: Transform + - uid: 1638 + components: + - pos: -7.5,8.5 + parent: 1668 + type: Transform + - uid: 1639 + components: + - pos: -12.5,9.5 + parent: 1668 + type: Transform + - uid: 1640 + components: + - pos: -12.5,10.5 + parent: 1668 + type: Transform + - uid: 1641 + components: + - pos: -12.5,11.5 + parent: 1668 + type: Transform + - uid: 1642 + components: + - pos: -8.5,12.5 + parent: 1668 + type: Transform + - uid: 1643 + components: + - pos: -9.5,12.5 + parent: 1668 + type: Transform + - uid: 1654 + components: + - pos: -15.5,14.5 + parent: 1668 + type: Transform + - uid: 1655 + components: + - pos: -14.5,14.5 + parent: 1668 + type: Transform + - uid: 1656 + components: + - pos: -15.5,17.5 + parent: 1668 + type: Transform + - uid: 1657 + components: + - pos: -14.5,17.5 + parent: 1668 + type: Transform + - uid: 2423 + components: + - pos: 23.5,15.5 + parent: 1668 + type: Transform + - uid: 2424 + components: + - pos: 23.5,16.5 + parent: 1668 + type: Transform + - uid: 2720 + components: + - pos: 4.5,18.5 + parent: 1668 + type: Transform + - uid: 2721 + components: + - pos: 4.5,19.5 + parent: 1668 + type: Transform + - uid: 2822 + components: + - pos: 10.5,27.5 + parent: 1668 + type: Transform + - uid: 2875 + components: + - pos: 8.5,29.5 + parent: 1668 + type: Transform + - uid: 2878 + components: + - pos: 8.5,32.5 + parent: 1668 + type: Transform + - uid: 2879 + components: + - pos: 10.5,32.5 + parent: 1668 + type: Transform + - uid: 2891 + components: + - pos: 2.5,30.5 + parent: 1668 + type: Transform + - uid: 2892 + components: + - pos: 2.5,31.5 + parent: 1668 + type: Transform + - uid: 2893 + components: + - pos: 2.5,32.5 + parent: 1668 + type: Transform + - uid: 2894 + components: + - pos: 16.5,30.5 + parent: 1668 + type: Transform + - uid: 2895 + components: + - pos: 16.5,31.5 + parent: 1668 + type: Transform + - uid: 2896 + components: + - pos: 16.5,32.5 + parent: 1668 + type: Transform + - uid: 3079 + components: + - pos: 8.5,17.5 + parent: 1668 + type: Transform + - uid: 3255 + components: + - pos: 16.5,19.5 + parent: 1668 + type: Transform + - uid: 3412 + components: + - pos: -18.5,4.5 + parent: 1668 + type: Transform + - uid: 3413 + components: + - pos: -19.5,4.5 + parent: 1668 + type: Transform + - uid: 3414 + components: + - pos: -20.5,4.5 + parent: 1668 + type: Transform + - uid: 3415 + components: + - pos: -20.5,5.5 + parent: 1668 + type: Transform + - uid: 3416 + components: + - pos: -20.5,6.5 + parent: 1668 + type: Transform + - uid: 3632 + components: + - pos: -12.5,4.5 + parent: 1668 + type: Transform + - uid: 3633 + components: + - pos: -11.5,4.5 + parent: 1668 + type: Transform + - uid: 3634 + components: + - pos: -10.5,4.5 + parent: 1668 + type: Transform + - uid: 3635 + components: + - pos: -10.5,6.5 + parent: 1668 + type: Transform + - uid: 3636 + components: + - pos: -11.5,6.5 + parent: 1668 + type: Transform + - uid: 3637 + components: + - pos: -12.5,6.5 + parent: 1668 + type: Transform + - uid: 3697 + components: + - pos: -16.5,6.5 + parent: 1668 + type: Transform + - uid: 3798 + components: + - pos: -13.5,-9.5 + parent: 1668 + type: Transform + - uid: 3799 + components: + - pos: -12.5,-9.5 + parent: 1668 + type: Transform + - uid: 3800 + components: + - pos: -12.5,-3.5 + parent: 1668 + type: Transform + - uid: 3801 + components: + - pos: -13.5,-3.5 + parent: 1668 + type: Transform + - uid: 3802 + components: + - pos: -13.5,-7.5 + parent: 1668 + type: Transform + - uid: 3803 + components: + - pos: -13.5,-6.5 + parent: 1668 + type: Transform + - uid: 3804 + components: + - pos: -13.5,-5.5 + parent: 1668 + type: Transform + - uid: 3805 + components: + - pos: -12.5,-7.5 + parent: 1668 + type: Transform + - uid: 3806 + components: + - pos: -12.5,-6.5 + parent: 1668 + type: Transform + - uid: 3807 + components: + - pos: -12.5,-5.5 + parent: 1668 + type: Transform + - uid: 3808 + components: + - pos: -19.5,-7.5 + parent: 1668 + type: Transform + - uid: 3809 + components: + - pos: -19.5,-6.5 + parent: 1668 + type: Transform + - uid: 3810 + components: + - pos: -19.5,-5.5 + parent: 1668 + type: Transform + - uid: 3811 + components: + - pos: -20.5,-5.5 + parent: 1668 + type: Transform + - uid: 3812 + components: + - pos: -21.5,-5.5 + parent: 1668 + type: Transform + - uid: 3813 + components: + - pos: -22.5,-5.5 + parent: 1668 + type: Transform + - uid: 3814 + components: + - pos: -22.5,-6.5 + parent: 1668 + type: Transform + - uid: 3815 + components: + - pos: -24.5,-7.5 + parent: 1668 + type: Transform + - uid: 3816 + components: + - pos: -24.5,-6.5 + parent: 1668 + type: Transform + - uid: 3817 + components: + - pos: -22.5,-7.5 + parent: 1668 + type: Transform + - uid: 3819 + components: + - pos: -21.5,-7.5 + parent: 1668 + type: Transform + - uid: 3820 + components: + - pos: -20.5,-7.5 + parent: 1668 + type: Transform + - uid: 3822 + components: + - pos: -24.5,-5.5 + parent: 1668 + type: Transform + - uid: 4256 + components: + - pos: 2.5,-15.5 + parent: 1668 + type: Transform + - uid: 4263 + components: + - pos: 2.5,-16.5 + parent: 1668 + type: Transform + - uid: 4344 + components: + - pos: 6.5,-24.5 + parent: 1668 + type: Transform + - uid: 4347 + components: + - pos: -8.5,-25.5 + parent: 1668 + type: Transform + - uid: 4348 + components: + - pos: -8.5,-26.5 + parent: 1668 + type: Transform + - uid: 4349 + components: + - pos: -8.5,-27.5 + parent: 1668 + type: Transform + - uid: 4350 + components: + - pos: 7.5,-27.5 + parent: 1668 + type: Transform + - uid: 4351 + components: + - pos: 7.5,-26.5 + parent: 1668 + type: Transform + - uid: 4352 + components: + - pos: 7.5,-25.5 + parent: 1668 + type: Transform + - uid: 4430 + components: + - pos: 3.5,-25.5 + parent: 1668 + type: Transform + - uid: 4431 + components: + - pos: 3.5,-26.5 + parent: 1668 + type: Transform + - uid: 4432 + components: + - pos: -4.5,-25.5 + parent: 1668 + type: Transform + - uid: 4433 + components: + - pos: -4.5,-26.5 + parent: 1668 + type: Transform + - uid: 4452 + components: + - pos: 2.5,-29.5 + parent: 1668 + type: Transform + - uid: 4459 + components: + - pos: -3.5,-29.5 + parent: 1668 + type: Transform + - uid: 4466 + components: + - pos: -3.5,-28.5 + parent: 1668 + type: Transform + - uid: 4467 + components: + - pos: 2.5,-28.5 + parent: 1668 + type: Transform + - uid: 4582 + components: + - pos: -10.5,-28.5 + parent: 1668 + type: Transform + - uid: 4583 + components: + - pos: -9.5,-28.5 + parent: 1668 + type: Transform + - uid: 4584 + components: + - pos: -11.5,-28.5 + parent: 1668 + type: Transform + - uid: 4586 + components: + - pos: -11.5,-26.5 + parent: 1668 + type: Transform + - uid: 4587 + components: + - pos: -11.5,-25.5 + parent: 1668 + type: Transform + - uid: 4588 + components: + - pos: -11.5,-24.5 + parent: 1668 + type: Transform + - uid: 4749 + components: + - pos: 16.5,-22.5 + parent: 1668 + type: Transform + - uid: 5312 + components: + - pos: 25.5,-26.5 + parent: 1668 + type: Transform + - uid: 5313 + components: + - pos: 26.5,-26.5 + parent: 1668 + type: Transform + - uid: 5315 + components: + - pos: 20.5,-22.5 + parent: 1668 + type: Transform + - uid: 5316 + components: + - pos: 21.5,-22.5 + parent: 1668 + type: Transform + - uid: 5317 + components: + - pos: 21.5,-21.5 + parent: 1668 + type: Transform + - uid: 6453 + components: + - pos: -6.5,-43.5 + parent: 1668 + type: Transform + - uid: 6454 + components: + - pos: -6.5,-41.5 + parent: 1668 + type: Transform + - uid: 6455 + components: + - pos: -6.5,-39.5 + parent: 1668 + type: Transform + - uid: 6456 + components: + - pos: -5.5,-39.5 + parent: 1668 + type: Transform + - uid: 6457 + components: + - pos: -4.5,-39.5 + parent: 1668 + type: Transform + - uid: 6458 + components: + - pos: 4.5,-39.5 + parent: 1668 + type: Transform + - uid: 6459 + components: + - pos: 5.5,-39.5 + parent: 1668 + type: Transform + - uid: 6460 + components: + - pos: 3.5,-39.5 + parent: 1668 + type: Transform + - uid: 6461 + components: + - pos: 5.5,-41.5 + parent: 1668 + type: Transform + - uid: 6462 + components: + - pos: 5.5,-43.5 + parent: 1668 + type: Transform + - uid: 6767 + components: + - pos: 2.5,-17.5 + parent: 1668 + type: Transform +- proto: TableWood + entities: + - uid: 2352 + components: + - pos: 32.5,15.5 + parent: 1668 + type: Transform + - uid: 2353 + components: + - pos: 32.5,16.5 + parent: 1668 + type: Transform + - uid: 2354 + components: + - pos: 32.5,17.5 + parent: 1668 + type: Transform + - uid: 2355 + components: + - pos: 32.5,18.5 + parent: 1668 + type: Transform + - uid: 2356 + components: + - pos: 32.5,19.5 + parent: 1668 + type: Transform + - uid: 2357 + components: + - pos: 27.5,20.5 + parent: 1668 + type: Transform + - uid: 2358 + components: + - pos: 28.5,20.5 + parent: 1668 + type: Transform + - uid: 2359 + components: + - pos: 29.5,20.5 + parent: 1668 + type: Transform + - uid: 2360 + components: + - pos: 29.5,21.5 + parent: 1668 + type: Transform + - uid: 2361 + components: + - pos: 27.5,21.5 + parent: 1668 + type: Transform + - uid: 2362 + components: + - pos: 30.5,20.5 + parent: 1668 + type: Transform + - uid: 2363 + components: + - pos: 26.5,20.5 + parent: 1668 + type: Transform + - uid: 2364 + components: + - pos: 22.5,23.5 + parent: 1668 + type: Transform + - uid: 2365 + components: + - pos: 34.5,23.5 + parent: 1668 + type: Transform + - uid: 2366 + components: + - pos: 30.5,23.5 + parent: 1668 + type: Transform + - uid: 2367 + components: + - pos: 29.5,23.5 + parent: 1668 + type: Transform + - uid: 2368 + components: + - pos: 27.5,23.5 + parent: 1668 + type: Transform + - uid: 2369 + components: + - pos: 26.5,23.5 + parent: 1668 + type: Transform + - uid: 2411 + components: + - pos: 27.5,17.5 + parent: 1668 + type: Transform + - uid: 2412 + components: + - pos: 26.5,17.5 + parent: 1668 + type: Transform + - uid: 2413 + components: + - pos: 30.5,17.5 + parent: 1668 + type: Transform + - uid: 2414 + components: + - pos: 29.5,17.5 + parent: 1668 + type: Transform + - uid: 2435 + components: + - pos: 28.5,10.5 + parent: 1668 + type: Transform + - uid: 2436 + components: + - pos: 34.5,11.5 + parent: 1668 + type: Transform + - uid: 2437 + components: + - pos: 34.5,12.5 + parent: 1668 + type: Transform + - uid: 2486 + components: + - pos: 20.5,20.5 + parent: 1668 + type: Transform + - uid: 2487 + components: + - pos: 19.5,20.5 + parent: 1668 + type: Transform + - uid: 2488 + components: + - pos: 19.5,21.5 + parent: 1668 + type: Transform + - uid: 3394 + components: + - pos: -25.5,8.5 + parent: 1668 + type: Transform + - uid: 3395 + components: + - pos: -26.5,8.5 + parent: 1668 + type: Transform + - uid: 3396 + components: + - pos: -26.5,9.5 + parent: 1668 + type: Transform + - uid: 3397 + components: + - pos: -26.5,11.5 + parent: 1668 + type: Transform + - uid: 3398 + components: + - pos: -26.5,12.5 + parent: 1668 + type: Transform + - uid: 3399 + components: + - pos: -25.5,12.5 + parent: 1668 + type: Transform + - uid: 3400 + components: + - pos: -15.5,12.5 + parent: 1668 + type: Transform + - uid: 3401 + components: + - pos: -14.5,12.5 + parent: 1668 + type: Transform + - uid: 3402 + components: + - pos: -16.5,12.5 + parent: 1668 + type: Transform + - uid: 3403 + components: + - pos: -16.5,8.5 + parent: 1668 + type: Transform + - uid: 3404 + components: + - pos: -19.5,10.5 + parent: 1668 + type: Transform + - uid: 3405 + components: + - pos: -20.5,10.5 + parent: 1668 + type: Transform + - uid: 3406 + components: + - pos: -20.5,11.5 + parent: 1668 + type: Transform + - uid: 3407 + components: + - pos: -20.5,12.5 + parent: 1668 + type: Transform + - uid: 3409 + components: + - pos: -18.5,8.5 + parent: 1668 + type: Transform + - uid: 3410 + components: + - pos: -24.5,4.5 + parent: 1668 + type: Transform + - uid: 3411 + components: + - pos: -23.5,4.5 + parent: 1668 + type: Transform + - uid: 3417 + components: + - pos: -23.5,2.5 + parent: 1668 + type: Transform + - uid: 3418 + components: + - pos: -18.5,2.5 + parent: 1668 + type: Transform + - uid: 3445 + components: + - pos: -23.5,10.5 + parent: 1668 + type: Transform + - uid: 3446 + components: + - pos: -23.5,11.5 + parent: 1668 + type: Transform + - uid: 3829 + components: + - pos: -26.5,-9.5 + parent: 1668 + type: Transform + - uid: 3830 + components: + - pos: -27.5,-9.5 + parent: 1668 + type: Transform + - uid: 3831 + components: + - pos: -27.5,-4.5 + parent: 1668 + type: Transform + - uid: 3832 + components: + - pos: -27.5,-3.5 + parent: 1668 + type: Transform + - uid: 3833 + components: + - pos: -26.5,-3.5 + parent: 1668 + type: Transform + - uid: 3834 + components: + - pos: -24.5,-3.5 + parent: 1668 + type: Transform + - uid: 3835 + components: + - pos: -17.5,-9.5 + parent: 1668 + type: Transform + - uid: 3836 + components: + - pos: -17.5,-3.5 + parent: 1668 + type: Transform + - uid: 4184 + components: + - pos: -27.5,-8.5 + parent: 1668 + type: Transform + - uid: 4369 + components: + - pos: -3.5,-23.5 + parent: 1668 + type: Transform + - uid: 4370 + components: + - pos: -3.5,-22.5 + parent: 1668 + type: Transform + - uid: 4371 + components: + - pos: -3.5,-21.5 + parent: 1668 + type: Transform + - uid: 4372 + components: + - pos: 2.5,-23.5 + parent: 1668 + type: Transform + - uid: 4373 + components: + - pos: 2.5,-22.5 + parent: 1668 + type: Transform + - uid: 4374 + components: + - pos: 2.5,-21.5 + parent: 1668 + type: Transform + - uid: 4418 + components: + - pos: 10.5,-27.5 + parent: 1668 + type: Transform + - uid: 4419 + components: + - pos: 8.5,-21.5 + parent: 1668 + type: Transform + - uid: 4420 + components: + - pos: 7.5,-21.5 + parent: 1668 + type: Transform + - uid: 4421 + components: + - pos: 6.5,-21.5 + parent: 1668 + type: Transform + - uid: 4422 + components: + - pos: 10.5,-21.5 + parent: 1668 + type: Transform + - uid: 4423 + components: + - pos: 10.5,-25.5 + parent: 1668 + type: Transform + - uid: 4424 + components: + - pos: 10.5,-24.5 + parent: 1668 + type: Transform + - uid: 6728 + components: + - pos: 18.5,10.5 + parent: 1668 + type: Transform +- proto: TelecomServerFilled + entities: + - uid: 3121 + components: + - pos: 4.5,-15.5 + parent: 1668 + type: Transform +- proto: Telecrystal5 + entities: + - uid: 3772 + components: + - pos: -10.611931,6.5603595 + parent: 1668 + type: Transform +- proto: TintedWindow + entities: + - uid: 2752 + components: + - pos: 7.5,22.5 + parent: 1668 + type: Transform + - uid: 2760 + components: + - pos: 7.5,21.5 + parent: 1668 + type: Transform +- proto: ToiletEmpty + entities: + - uid: 3420 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,15.5 + parent: 1668 + type: Transform +- proto: ToolboxMechanicalFilled + entities: + - uid: 3900 + components: + - pos: -12.610057,-7.2428913 + parent: 1668 + type: Transform +- proto: ToyFigurineAtmosTech + entities: + - uid: 6889 + components: + - pos: 16.377594,-29.299969 + parent: 1668 + type: Transform +- proto: ToyFigurineBartender + entities: + - uid: 6898 + components: + - pos: 6.5385118,-24.247501 + parent: 1668 + type: Transform +- proto: ToyFigurineCargoTech + entities: + - uid: 6897 + components: + - pos: -5.366757,26.262602 + parent: 1668 + type: Transform +- proto: ToyFigurineChef + entities: + - uid: 6899 + components: + - pos: -10.860091,-28.497501 + parent: 1668 + type: Transform +- proto: ToyFigurineChemist + entities: + - uid: 6901 + components: + - pos: 3.7089076,-9.834605 + parent: 1668 + type: Transform +- proto: ToyFigurineChiefEngineer + entities: + - uid: 6892 + components: + - pos: 27.221512,-23.216656 + parent: 1668 + type: Transform +- proto: ToyFigurineChiefMedicalOfficer + entities: + - uid: 6900 + components: + - pos: 13.343676,-12.106804 + parent: 1668 + type: Transform +- proto: ToyFigurineClown + entities: + - uid: 6907 + components: + - pos: -8.574588,-33.40033 + parent: 1668 + type: Transform +- proto: ToyFigurineEngineer + entities: + - uid: 6891 + components: + - pos: 26.955887,-23.01353 + parent: 1668 + type: Transform +- proto: ToyFigurineJanitor + entities: + - uid: 6905 + components: + - pos: -18.176952,-31.706894 + parent: 1668 + type: Transform +- proto: ToyFigurineLawyer + entities: + - uid: 6904 + components: + - pos: 19.429096,21.772528 + parent: 1668 + type: Transform +- proto: ToyFigurineLibrarian + entities: + - uid: 6903 + components: + - pos: 18.65788,12.674046 + parent: 1668 + type: Transform +- proto: ToyFigurineMedicalDoctor + entities: + - uid: 6902 + components: + - pos: 9.723116,-4.147105 + parent: 1668 + type: Transform +- proto: ToyFigurineMime + entities: + - uid: 6908 + components: + - pos: 9.395194,-30.337831 + parent: 1668 + type: Transform +- proto: ToyFigurineQuartermaster + entities: + - uid: 6896 + components: + - pos: -15.016072,14.885906 + parent: 1668 + type: Transform +- proto: ToyFigurineRatKing + entities: + - uid: 6906 + components: + - pos: 18.512383,13.407988 + parent: 1668 + type: Transform +- proto: ToyFigurineSalvage + entities: + - uid: 6895 + components: + - pos: -5.514065,26.593782 + parent: 1668 + type: Transform +- proto: ToyFigurineSecurity + entities: + - uid: 6893 + components: + - pos: 27.445951,-11.38564 + parent: 1668 + type: Transform +- proto: ToyFigurineWarden + entities: + - uid: 6894 + components: + - pos: 4.3459373,19.764877 + parent: 1668 + type: Transform +- proto: ToyRubberDuck + entities: + - uid: 3423 + components: + - pos: -20.47715,15.513819 + parent: 1668 + type: Transform +- proto: TrashBag + entities: + - uid: 6504 + components: + - pos: -4.433973,-39.464462 + parent: 1668 + type: Transform +- proto: trayScanner + entities: + - uid: 6547 + components: + - pos: 4.8927507,-39.44935 + parent: 1668 + type: Transform +- proto: TwoWayLever + entities: + - uid: 1588 + components: + - pos: -12.5,23.5 + parent: 1668 + type: Transform + - nextSignalLeft: True + type: TwoWayLever + - linkedPorts: + 1576: + - Left: Forward + - Right: Reverse + - Middle: Off + 1577: + - Left: Forward + - Right: Reverse + - Middle: Off + 1578: + - Left: Forward + - Right: Reverse + - Middle: Off + 1579: + - Left: Forward + - Right: Reverse + - Middle: Off + 1580: + - Left: Forward + - Right: Reverse + - Middle: Off + 1581: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 1589 + components: + - pos: -12.5,29.5 + parent: 1668 + type: Transform + - nextSignalLeft: True + type: TwoWayLever + - linkedPorts: + 1582: + - Left: Forward + - Right: Reverse + - Middle: Off + 1583: + - Left: Forward + - Right: Reverse + - Middle: Off + 1584: + - Left: Forward + - Right: Reverse + - Middle: Off + 1585: + - Left: Forward + - Right: Reverse + - Middle: Off + 1586: + - Left: Forward + - Right: Reverse + - Middle: Off + 1587: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 5906 + components: + - pos: -18.5,-32.5 + parent: 1668 + type: Transform + - linkedPorts: + 5902: + - Left: Forward + - Right: Reverse + - Middle: Off + 5903: + - Left: Forward + - Right: Reverse + - Middle: Off + 5904: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 5907 + components: + - pos: -18.5,-31.5 + parent: 1668 + type: Transform + - linkedPorts: + 5908: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource +- proto: VehicleKeySecway + entities: + - uid: 3149 + components: + - pos: 10.387553,25.600338 + parent: 1668 + type: Transform +- proto: VendingMachineAmmo + entities: + - uid: 2821 + components: + - flags: SessionSpecific + type: MetaData + - pos: 8.5,27.5 + parent: 1668 + type: Transform +- proto: VendingMachineBooze + entities: + - uid: 3408 + components: + - flags: SessionSpecific + type: MetaData + - pos: -20.5,8.5 + parent: 1668 + type: Transform + - uid: 4415 + components: + - flags: SessionSpecific + type: MetaData + - pos: 10.5,-26.5 + parent: 1668 + type: Transform + - uid: 4416 + components: + - flags: SessionSpecific + type: MetaData + - pos: 9.5,-21.5 + parent: 1668 + type: Transform +- proto: VendingMachineCargoDrobe + entities: + - uid: 2209 + components: + - flags: SessionSpecific + type: MetaData + - pos: -5.5,31.5 + parent: 1668 + type: Transform +- proto: VendingMachineCart + entities: + - uid: 764 + components: + - flags: SessionSpecific + type: MetaData + - pos: -25.5,-9.5 + parent: 1668 + type: Transform +- proto: VendingMachineCentDrobe + entities: + - uid: 649 + components: + - flags: SessionSpecific + type: MetaData + - pos: 2.5,1.5 + parent: 1668 + type: Transform + - uid: 2444 + components: + - flags: SessionSpecific + type: MetaData + - pos: -14.5,10.5 + parent: 1668 + type: Transform +- proto: VendingMachineChang + entities: + - uid: 1406 + components: + - flags: SessionSpecific + type: MetaData + - pos: -2.5,1.5 + parent: 1668 + type: Transform + - uid: 2445 + components: + - flags: SessionSpecific + type: MetaData + - pos: 1.5,-15.5 + parent: 1668 + type: Transform + - uid: 6573 + components: + - flags: SessionSpecific + type: MetaData + - pos: -10.5,-33.5 + parent: 1668 + type: Transform +- proto: VendingMachineChefvend + entities: + - uid: 4262 + components: + - flags: SessionSpecific + type: MetaData + - pos: -10.5,-21.5 + parent: 1668 + type: Transform +- proto: VendingMachineChemicals + entities: + - uid: 3122 + components: + - flags: SessionSpecific + type: MetaData + - pos: 5.5,-9.5 + parent: 1668 + type: Transform +- proto: VendingMachineCigs + entities: + - uid: 2439 + components: + - flags: SessionSpecific + type: MetaData + - pos: 29.5,10.5 + parent: 1668 + type: Transform + - uid: 6574 + components: + - flags: SessionSpecific + type: MetaData + - pos: -5.5,-37.5 + parent: 1668 + type: Transform +- proto: VendingMachineClothing + entities: + - uid: 2738 + components: + - flags: SessionSpecific + type: MetaData + - pos: -5.5,-17.5 + parent: 1668 + type: Transform + - uid: 6150 + components: + - flags: SessionSpecific + type: MetaData + - pos: -20.5,-29.5 + parent: 1668 + type: Transform +- proto: VendingMachineCoffee + entities: + - uid: 2438 + components: + - flags: SessionSpecific + type: MetaData + - pos: 27.5,10.5 + parent: 1668 + type: Transform + - uid: 5463 + components: + - flags: SessionSpecific + type: MetaData + - pos: 15.5,-31.5 + parent: 1668 + type: Transform + - uid: 6591 + components: + - flags: SessionSpecific + type: MetaData + - pos: 9.5,-33.5 + parent: 1668 + type: Transform +- proto: VendingMachineCola + entities: + - uid: 2192 + components: + - flags: SessionSpecific + type: MetaData + - pos: -0.5,13.5 + parent: 1668 + type: Transform + - uid: 4403 + components: + - flags: SessionSpecific + type: MetaData + - pos: 6.5,-15.5 + parent: 1668 + type: Transform +- proto: VendingMachineColaBlack + entities: + - uid: 6729 + components: + - flags: SessionSpecific + type: MetaData + - pos: 1.5,-13.5 + parent: 1668 + type: Transform +- proto: VendingMachineCondiments + entities: + - uid: 6626 + components: + - flags: SessionSpecific + type: MetaData + - pos: 1.5,-25.5 + parent: 1668 + type: Transform +- proto: VendingMachineDinnerware + entities: + - uid: 4578 + components: + - flags: SessionSpecific + type: MetaData + - pos: -11.5,-21.5 + parent: 1668 + type: Transform +- proto: VendingMachineDiscount + entities: + - uid: 3185 + components: + - flags: SessionSpecific + type: MetaData + - pos: 9.5,10.5 + parent: 1668 + type: Transform + - uid: 6651 + components: + - flags: SessionSpecific + type: MetaData + - pos: -7.5,-15.5 + parent: 1668 + type: Transform +- proto: VendingMachineDonut + entities: + - uid: 3186 + components: + - flags: SessionSpecific + type: MetaData + - pos: 11.5,10.5 + parent: 1668 + type: Transform +- proto: VendingMachineEngivend + entities: + - uid: 5250 + components: + - flags: SessionSpecific + type: MetaData + - pos: 23.5,-20.5 + parent: 1668 + type: Transform +- proto: VendingMachineGames + entities: + - uid: 6608 + components: + - flags: SessionSpecific + type: MetaData + - pos: 16.5,10.5 + parent: 1668 + type: Transform +- proto: VendingMachineLawDrobe + entities: + - uid: 2489 + components: + - flags: SessionSpecific + type: MetaData + - pos: 18.5,23.5 + parent: 1668 + type: Transform +- proto: VendingMachineMedical + entities: + - uid: 617 + components: + - flags: SessionSpecific + type: MetaData + - pos: 15.5,-5.5 + parent: 1668 + type: Transform + - uid: 6601 + components: + - flags: SessionSpecific + type: MetaData + - pos: 9.5,-12.5 + parent: 1668 + type: Transform +- proto: VendingMachinePwrGame + entities: + - uid: 6634 + components: + - flags: SessionSpecific + type: MetaData + - pos: -2.5,-15.5 + parent: 1668 + type: Transform +- proto: VendingMachineSalvage + entities: + - uid: 6938 + components: + - flags: SessionSpecific + type: MetaData + - pos: -8.5,31.5 + parent: 1668 + type: Transform +- proto: VendingMachineSec + entities: + - uid: 2820 + components: + - flags: SessionSpecific + type: MetaData + - pos: 9.5,27.5 + parent: 1668 + type: Transform + - uid: 3259 + components: + - flags: SessionSpecific + type: MetaData + - pos: 8.5,21.5 + parent: 1668 + type: Transform + - uid: 5457 + components: + - flags: SessionSpecific + type: MetaData + - pos: 28.5,-10.5 + parent: 1668 + type: Transform +- proto: VendingMachineSnack + entities: + - uid: 4166 + components: + - flags: SessionSpecific + type: MetaData + - pos: -29.5,3.5 + parent: 1668 + type: Transform + - uid: 4401 + components: + - flags: SessionSpecific + type: MetaData + - pos: 7.5,-15.5 + parent: 1668 + type: Transform +- proto: VendingMachineSnackOrange + entities: + - uid: 6726 + components: + - flags: SessionSpecific + type: MetaData + - pos: -2.5,-13.5 + parent: 1668 + type: Transform +- proto: VendingMachineSnackTeal + entities: + - uid: 6727 + components: + - flags: SessionSpecific + type: MetaData + - pos: -0.5,11.5 + parent: 1668 + type: Transform +- proto: VendingMachineSoda + entities: + - uid: 6648 + components: + - flags: SessionSpecific + type: MetaData + - pos: -8.5,-15.5 + parent: 1668 + type: Transform +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 6556 + components: + - flags: SessionSpecific + type: MetaData + - pos: -2.5,-45.5 + parent: 1668 + type: Transform +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 2045 + components: + - flags: SessionSpecific + type: MetaData + - pos: -3.5,23.5 + parent: 1668 + type: Transform + - uid: 4286 + components: + - flags: SessionSpecific + type: MetaData + - pos: 10.5,29.5 + parent: 1668 + type: Transform + - uid: 6555 + components: + - flags: SessionSpecific + type: MetaData + - pos: 1.5,-45.5 + parent: 1668 + type: Transform +- proto: VendingMachineTheater + entities: + - uid: 2448 + components: + - flags: SessionSpecific + type: MetaData + - pos: -5.5,-15.5 + parent: 1668 + type: Transform +- proto: VendingMachineWallMedical + entities: + - uid: 6615 + components: + - flags: SessionSpecific + type: MetaData + - pos: 6.5,-10.5 + parent: 1668 + type: Transform +- proto: VendingMachineWinter + entities: + - uid: 2443 + components: + - flags: SessionSpecific + type: MetaData + - pos: -5.5,-16.5 + parent: 1668 + type: Transform +- proto: VendingMachineYouTool + entities: + - uid: 5251 + components: + - flags: SessionSpecific + type: MetaData + - pos: 23.5,-21.5 + parent: 1668 + type: Transform +- proto: WallmountTelescreen + entities: + - uid: 3449 + components: + - pos: -18.5,7.5 + parent: 1668 + type: Transform +- proto: WallmountTelevision + entities: + - uid: 3452 + components: + - pos: -23.5,1.5 + parent: 1668 + type: Transform +- proto: WallRiveted + entities: + - uid: 1 + components: + - pos: 10.5,2.5 + parent: 1668 + type: Transform + - uid: 2 + components: + - pos: 9.5,2.5 + parent: 1668 + type: Transform + - uid: 3 + components: + - pos: 8.5,1.5 + parent: 1668 + type: Transform + - uid: 4 + components: + - pos: 8.5,2.5 + parent: 1668 + type: Transform + - uid: 5 + components: + - pos: 7.5,2.5 + parent: 1668 + type: Transform + - uid: 6 + components: + - pos: 6.5,2.5 + parent: 1668 + type: Transform + - uid: 7 + components: + - pos: 6.5,1.5 + parent: 1668 + type: Transform + - uid: 8 + components: + - pos: 10.5,-3.5 + parent: 1668 + type: Transform + - uid: 9 + components: + - pos: 9.5,-3.5 + parent: 1668 + type: Transform + - uid: 10 + components: + - pos: 8.5,-2.5 + parent: 1668 + type: Transform + - uid: 11 + components: + - pos: 8.5,-3.5 + parent: 1668 + type: Transform + - uid: 12 + components: + - pos: 7.5,-3.5 + parent: 1668 + type: Transform + - uid: 13 + components: + - pos: 6.5,-3.5 + parent: 1668 + type: Transform + - uid: 14 + components: + - pos: 6.5,-2.5 + parent: 1668 + type: Transform + - uid: 70 + components: + - pos: 3.5,-3.5 + parent: 1668 + type: Transform + - uid: 71 + components: + - pos: -4.5,-3.5 + parent: 1668 + type: Transform + - uid: 72 + components: + - pos: -1.5,-3.5 + parent: 1668 + type: Transform + - uid: 73 + components: + - pos: 0.5,-3.5 + parent: 1668 + type: Transform + - uid: 74 + components: + - pos: 1.5,2.5 + parent: 1668 + type: Transform + - uid: 75 + components: + - pos: -2.5,2.5 + parent: 1668 + type: Transform + - uid: 78 + components: + - pos: 5.5,7.5 + parent: 1668 + type: Transform + - uid: 86 + components: + - pos: 3.5,5.5 + parent: 1668 + type: Transform + - uid: 87 + components: + - pos: 3.5,7.5 + parent: 1668 + type: Transform + - uid: 88 + components: + - pos: 2.5,7.5 + parent: 1668 + type: Transform + - uid: 89 + components: + - pos: 1.5,7.5 + parent: 1668 + type: Transform + - uid: 90 + components: + - pos: 1.5,6.5 + parent: 1668 + type: Transform + - uid: 91 + components: + - pos: 1.5,5.5 + parent: 1668 + type: Transform + - uid: 96 + components: + - pos: 5.5,5.5 + parent: 1668 + type: Transform + - uid: 97 + components: + - pos: 8.5,6.5 + parent: 1668 + type: Transform + - uid: 100 + components: + - pos: 6.5,5.5 + parent: 1668 + type: Transform + - uid: 101 + components: + - pos: 6.5,4.5 + parent: 1668 + type: Transform + - uid: 102 + components: + - pos: 8.5,4.5 + parent: 1668 + type: Transform + - uid: 113 + components: + - pos: 16.5,1.5 + parent: 1668 + type: Transform + - uid: 114 + components: + - pos: 16.5,2.5 + parent: 1668 + type: Transform + - uid: 115 + components: + - pos: 17.5,2.5 + parent: 1668 + type: Transform + - uid: 116 + components: + - pos: 18.5,2.5 + parent: 1668 + type: Transform + - uid: 117 + components: + - pos: 18.5,1.5 + parent: 1668 + type: Transform + - uid: 118 + components: + - pos: 18.5,-2.5 + parent: 1668 + type: Transform + - uid: 119 + components: + - pos: 18.5,-3.5 + parent: 1668 + type: Transform + - uid: 120 + components: + - pos: 17.5,-3.5 + parent: 1668 + type: Transform + - uid: 121 + components: + - pos: 16.5,-2.5 + parent: 1668 + type: Transform + - uid: 122 + components: + - pos: 16.5,-3.5 + parent: 1668 + type: Transform + - uid: 137 + components: + - pos: 8.5,-6.5 + parent: 1668 + type: Transform + - uid: 138 + components: + - pos: 7.5,-6.5 + parent: 1668 + type: Transform + - uid: 139 + components: + - pos: 6.5,-6.5 + parent: 1668 + type: Transform + - uid: 140 + components: + - pos: 5.5,-6.5 + parent: 1668 + type: Transform + - uid: 141 + components: + - pos: 3.5,-6.5 + parent: 1668 + type: Transform + - uid: 142 + components: + - pos: 1.5,-6.5 + parent: 1668 + type: Transform + - uid: 143 + components: + - pos: 1.5,-7.5 + parent: 1668 + type: Transform + - uid: 144 + components: + - pos: 1.5,-8.5 + parent: 1668 + type: Transform + - uid: 145 + components: + - pos: 2.5,-8.5 + parent: 1668 + type: Transform + - uid: 146 + components: + - pos: 3.5,-8.5 + parent: 1668 + type: Transform + - uid: 147 + components: + - pos: 5.5,-8.5 + parent: 1668 + type: Transform + - uid: 148 + components: + - pos: 6.5,-8.5 + parent: 1668 + type: Transform + - uid: 149 + components: + - pos: 7.5,-8.5 + parent: 1668 + type: Transform + - uid: 174 + components: + - pos: 8.5,-7.5 + parent: 1668 + type: Transform + - uid: 175 + components: + - pos: 8.5,-8.5 + parent: 1668 + type: Transform + - uid: 176 + components: + - pos: 8.5,-9.5 + parent: 1668 + type: Transform + - uid: 177 + components: + - pos: 8.5,-10.5 + parent: 1668 + type: Transform + - uid: 178 + components: + - pos: 12.5,-10.5 + parent: 1668 + type: Transform + - uid: 179 + components: + - pos: 12.5,-8.5 + parent: 1668 + type: Transform + - uid: 180 + components: + - pos: 16.5,-7.5 + parent: 1668 + type: Transform + - uid: 181 + components: + - pos: 16.5,-8.5 + parent: 1668 + type: Transform + - uid: 182 + components: + - pos: 16.5,-10.5 + parent: 1668 + type: Transform + - uid: 184 + components: + - pos: 18.5,-7.5 + parent: 1668 + type: Transform + - uid: 185 + components: + - pos: 16.5,-5.5 + parent: 1668 + type: Transform + - uid: 187 + components: + - pos: 18.5,-4.5 + parent: 1668 + type: Transform + - uid: 188 + components: + - pos: 18.5,-5.5 + parent: 1668 + type: Transform + - uid: 208 + components: + - pos: 6.5,-10.5 + parent: 1668 + type: Transform + - uid: 209 + components: + - pos: 18.5,-8.5 + parent: 1668 + type: Transform + - uid: 210 + components: + - pos: 18.5,-10.5 + parent: 1668 + type: Transform + - uid: 211 + components: + - pos: 18.5,-9.5 + parent: 1668 + type: Transform + - uid: 213 + components: + - pos: 2.5,-9.5 + parent: 1668 + type: Transform + - uid: 229 + components: + - pos: 8.5,-14.5 + parent: 1668 + type: Transform + - uid: 230 + components: + - pos: 8.5,-13.5 + parent: 1668 + type: Transform + - uid: 231 + components: + - pos: 8.5,-12.5 + parent: 1668 + type: Transform + - uid: 232 + components: + - pos: 6.5,-14.5 + parent: 1668 + type: Transform + - uid: 233 + components: + - pos: 5.5,-14.5 + parent: 1668 + type: Transform + - uid: 234 + components: + - pos: 4.5,-14.5 + parent: 1668 + type: Transform + - uid: 235 + components: + - pos: 3.5,-14.5 + parent: 1668 + type: Transform + - uid: 236 + components: + - pos: 2.5,-14.5 + parent: 1668 + type: Transform + - uid: 237 + components: + - pos: 6.5,-12.5 + parent: 1668 + type: Transform + - uid: 248 + components: + - pos: 16.5,4.5 + parent: 1668 + type: Transform + - uid: 249 + components: + - pos: 18.5,3.5 + parent: 1668 + type: Transform + - uid: 250 + components: + - pos: 18.5,4.5 + parent: 1668 + type: Transform + - uid: 251 + components: + - pos: 18.5,6.5 + parent: 1668 + type: Transform + - uid: 252 + components: + - pos: 18.5,7.5 + parent: 1668 + type: Transform + - uid: 253 + components: + - pos: 18.5,8.5 + parent: 1668 + type: Transform + - uid: 256 + components: + - pos: 16.5,7.5 + parent: 1668 + type: Transform + - uid: 257 + components: + - pos: 16.5,6.5 + parent: 1668 + type: Transform + - uid: 258 + components: + - pos: 15.5,7.5 + parent: 1668 + type: Transform + - uid: 273 + components: + - pos: 8.5,7.5 + parent: 1668 + type: Transform + - uid: 274 + components: + - pos: 8.5,9.5 + parent: 1668 + type: Transform + - uid: 276 + components: + - pos: 12.5,9.5 + parent: 1668 + type: Transform + - uid: 277 + components: + - pos: 12.5,7.5 + parent: 1668 + type: Transform + - uid: 293 + components: + - pos: 3.5,9.5 + parent: 1668 + type: Transform + - uid: 294 + components: + - pos: 4.5,9.5 + parent: 1668 + type: Transform + - uid: 295 + components: + - pos: 5.5,9.5 + parent: 1668 + type: Transform + - uid: 296 + components: + - pos: 5.5,8.5 + parent: 1668 + type: Transform + - uid: 300 + components: + - pos: 15.5,9.5 + parent: 1668 + type: Transform + - uid: 315 + components: + - pos: -2.5,-6.5 + parent: 1668 + type: Transform + - uid: 316 + components: + - pos: -2.5,-7.5 + parent: 1668 + type: Transform + - uid: 317 + components: + - pos: -2.5,-8.5 + parent: 1668 + type: Transform + - uid: 318 + components: + - pos: -3.5,-8.5 + parent: 1668 + type: Transform + - uid: 319 + components: + - pos: -4.5,-8.5 + parent: 1668 + type: Transform + - uid: 320 + components: + - pos: -4.5,-6.5 + parent: 1668 + type: Transform + - uid: 321 + components: + - pos: -6.5,-6.5 + parent: 1668 + type: Transform + - uid: 322 + components: + - pos: -7.5,-6.5 + parent: 1668 + type: Transform + - uid: 323 + components: + - pos: -8.5,-6.5 + parent: 1668 + type: Transform + - uid: 324 + components: + - pos: -6.5,-8.5 + parent: 1668 + type: Transform + - uid: 325 + components: + - pos: -7.5,-8.5 + parent: 1668 + type: Transform + - uid: 326 + components: + - pos: -8.5,-8.5 + parent: 1668 + type: Transform + - uid: 328 + components: + - pos: -7.5,-3.5 + parent: 1668 + type: Transform + - uid: 329 + components: + - pos: -8.5,-3.5 + parent: 1668 + type: Transform + - uid: 330 + components: + - pos: -9.5,-3.5 + parent: 1668 + type: Transform + - uid: 331 + components: + - pos: -9.5,-4.5 + parent: 1668 + type: Transform + - uid: 332 + components: + - pos: -9.5,-5.5 + parent: 1668 + type: Transform + - uid: 333 + components: + - pos: -9.5,-6.5 + parent: 1668 + type: Transform + - uid: 334 + components: + - pos: -9.5,-7.5 + parent: 1668 + type: Transform + - uid: 335 + components: + - pos: -9.5,-8.5 + parent: 1668 + type: Transform + - uid: 346 + components: + - pos: 19.5,6.5 + parent: 1668 + type: Transform + - uid: 349 + components: + - pos: 22.5,6.5 + parent: 1668 + type: Transform + - uid: 350 + components: + - pos: 23.5,6.5 + parent: 1668 + type: Transform + - uid: 351 + components: + - pos: 24.5,6.5 + parent: 1668 + type: Transform + - uid: 352 + components: + - pos: 28.5,6.5 + parent: 1668 + type: Transform + - uid: 353 + components: + - pos: 29.5,6.5 + parent: 1668 + type: Transform + - uid: 354 + components: + - pos: 30.5,6.5 + parent: 1668 + type: Transform + - uid: 356 + components: + - pos: 32.5,6.5 + parent: 1668 + type: Transform + - uid: 357 + components: + - pos: 33.5,6.5 + parent: 1668 + type: Transform + - uid: 358 + components: + - pos: 34.5,6.5 + parent: 1668 + type: Transform + - uid: 359 + components: + - pos: 35.5,6.5 + parent: 1668 + type: Transform + - uid: 362 + components: + - pos: 18.5,9.5 + parent: 1668 + type: Transform + - uid: 363 + components: + - pos: 19.5,9.5 + parent: 1668 + type: Transform + - uid: 364 + components: + - pos: 20.5,9.5 + parent: 1668 + type: Transform + - uid: 365 + components: + - pos: 21.5,9.5 + parent: 1668 + type: Transform + - uid: 366 + components: + - pos: 22.5,9.5 + parent: 1668 + type: Transform + - uid: 367 + components: + - pos: 23.5,9.5 + parent: 1668 + type: Transform + - uid: 368 + components: + - pos: 24.5,9.5 + parent: 1668 + type: Transform + - uid: 369 + components: + - pos: 25.5,9.5 + parent: 1668 + type: Transform + - uid: 370 + components: + - pos: 26.5,9.5 + parent: 1668 + type: Transform + - uid: 371 + components: + - pos: 27.5,9.5 + parent: 1668 + type: Transform + - uid: 372 + components: + - pos: 28.5,9.5 + parent: 1668 + type: Transform + - uid: 373 + components: + - pos: 29.5,9.5 + parent: 1668 + type: Transform + - uid: 374 + components: + - pos: 30.5,9.5 + parent: 1668 + type: Transform + - uid: 375 + components: + - pos: 31.5,9.5 + parent: 1668 + type: Transform + - uid: 376 + components: + - pos: 32.5,9.5 + parent: 1668 + type: Transform + - uid: 377 + components: + - pos: 33.5,9.5 + parent: 1668 + type: Transform + - uid: 378 + components: + - pos: 34.5,9.5 + parent: 1668 + type: Transform + - uid: 379 + components: + - pos: 35.5,9.5 + parent: 1668 + type: Transform + - uid: 380 + components: + - pos: 35.5,8.5 + parent: 1668 + type: Transform + - uid: 381 + components: + - pos: 35.5,7.5 + parent: 1668 + type: Transform + - uid: 382 + components: + - pos: 34.5,8.5 + parent: 1668 + type: Transform + - uid: 383 + components: + - pos: 34.5,7.5 + parent: 1668 + type: Transform + - uid: 384 + components: + - pos: 28.5,8.5 + parent: 1668 + type: Transform + - uid: 385 + components: + - pos: 24.5,8.5 + parent: 1668 + type: Transform + - uid: 386 + components: + - pos: 35.5,-7.5 + parent: 1668 + type: Transform + - uid: 387 + components: + - pos: 35.5,-8.5 + parent: 1668 + type: Transform + - uid: 388 + components: + - pos: 35.5,-9.5 + parent: 1668 + type: Transform + - uid: 389 + components: + - pos: 34.5,-9.5 + parent: 1668 + type: Transform + - uid: 390 + components: + - pos: 34.5,-8.5 + parent: 1668 + type: Transform + - uid: 391 + components: + - pos: 34.5,-7.5 + parent: 1668 + type: Transform + - uid: 392 + components: + - pos: 33.5,-7.5 + parent: 1668 + type: Transform + - uid: 394 + components: + - pos: 32.5,-7.5 + parent: 1668 + type: Transform + - uid: 395 + components: + - pos: 30.5,-7.5 + parent: 1668 + type: Transform + - uid: 397 + components: + - pos: 32.5,-9.5 + parent: 1668 + type: Transform + - uid: 398 + components: + - pos: 23.5,-9.5 + parent: 1668 + type: Transform + - uid: 399 + components: + - pos: 30.5,-9.5 + parent: 1668 + type: Transform + - uid: 400 + components: + - pos: 28.5,-7.5 + parent: 1668 + type: Transform + - uid: 402 + components: + - pos: 33.5,-9.5 + parent: 1668 + type: Transform + - uid: 403 + components: + - pos: 29.5,-9.5 + parent: 1668 + type: Transform + - uid: 404 + components: + - pos: 31.5,-9.5 + parent: 1668 + type: Transform + - uid: 405 + components: + - pos: 29.5,-7.5 + parent: 1668 + type: Transform + - uid: 406 + components: + - pos: 19.5,-7.5 + parent: 1668 + type: Transform + - uid: 407 + components: + - pos: 20.5,-7.5 + parent: 1668 + type: Transform + - uid: 409 + components: + - pos: 22.5,-7.5 + parent: 1668 + type: Transform + - uid: 410 + components: + - pos: 23.5,-7.5 + parent: 1668 + type: Transform + - uid: 411 + components: + - pos: 24.5,-7.5 + parent: 1668 + type: Transform + - uid: 412 + components: + - pos: 22.5,-9.5 + parent: 1668 + type: Transform + - uid: 413 + components: + - pos: 21.5,-9.5 + parent: 1668 + type: Transform + - uid: 414 + components: + - pos: 20.5,-9.5 + parent: 1668 + type: Transform + - uid: 415 + components: + - pos: 19.5,-9.5 + parent: 1668 + type: Transform + - uid: 416 + components: + - pos: 23.5,-10.5 + parent: 1668 + type: Transform + - uid: 417 + components: + - pos: 29.5,-10.5 + parent: 1668 + type: Transform + - uid: 418 + components: + - pos: 29.5,-11.5 + parent: 1668 + type: Transform + - uid: 419 + components: + - pos: 29.5,-12.5 + parent: 1668 + type: Transform + - uid: 420 + components: + - pos: 28.5,-12.5 + parent: 1668 + type: Transform + - uid: 421 + components: + - pos: 27.5,-12.5 + parent: 1668 + type: Transform + - uid: 422 + components: + - pos: 26.5,-12.5 + parent: 1668 + type: Transform + - uid: 423 + components: + - pos: 25.5,-12.5 + parent: 1668 + type: Transform + - uid: 424 + components: + - pos: 24.5,-12.5 + parent: 1668 + type: Transform + - uid: 425 + components: + - pos: 23.5,-12.5 + parent: 1668 + type: Transform + - uid: 426 + components: + - pos: 22.5,-12.5 + parent: 1668 + type: Transform + - uid: 427 + components: + - pos: 21.5,-12.5 + parent: 1668 + type: Transform + - uid: 428 + components: + - pos: 20.5,-12.5 + parent: 1668 + type: Transform + - uid: 429 + components: + - pos: 19.5,-12.5 + parent: 1668 + type: Transform + - uid: 430 + components: + - pos: 18.5,-12.5 + parent: 1668 + type: Transform + - uid: 431 + components: + - pos: 35.5,-1.5 + parent: 1668 + type: Transform + - uid: 432 + components: + - pos: 35.5,-0.5 + parent: 1668 + type: Transform + - uid: 433 + components: + - pos: 35.5,0.5 + parent: 1668 + type: Transform + - uid: 468 + components: + - pos: 33.5,-1.5 + parent: 1668 + type: Transform + - uid: 470 + components: + - pos: 33.5,0.5 + parent: 1668 + type: Transform + - uid: 658 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 1668 + type: Transform + - uid: 659 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 1668 + type: Transform + - uid: 660 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1668 + type: Transform + - uid: 661 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1668 + type: Transform + - uid: 662 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,2.5 + parent: 1668 + type: Transform + - uid: 663 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,2.5 + parent: 1668 + type: Transform + - uid: 664 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1668 + type: Transform + - uid: 665 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,3.5 + parent: 1668 + type: Transform + - uid: 666 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,4.5 + parent: 1668 + type: Transform + - uid: 667 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,5.5 + parent: 1668 + type: Transform + - uid: 668 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,5.5 + parent: 1668 + type: Transform + - uid: 669 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,5.5 + parent: 1668 + type: Transform + - uid: 686 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1668 + type: Transform + - uid: 687 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1668 + type: Transform + - uid: 689 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1668 + type: Transform + - uid: 690 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1668 + type: Transform + - uid: 691 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,7.5 + parent: 1668 + type: Transform + - uid: 692 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,7.5 + parent: 1668 + type: Transform + - uid: 693 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,6.5 + parent: 1668 + type: Transform + - uid: 694 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,7.5 + parent: 1668 + type: Transform + - uid: 695 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,7.5 + parent: 1668 + type: Transform + - uid: 696 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,7.5 + parent: 1668 + type: Transform + - uid: 697 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,5.5 + parent: 1668 + type: Transform + - uid: 698 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,7.5 + parent: 1668 + type: Transform + - uid: 724 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 1668 + type: Transform + - uid: 726 + components: + - pos: 14.5,-12.5 + parent: 1668 + type: Transform + - uid: 727 + components: + - pos: 15.5,-12.5 + parent: 1668 + type: Transform + - uid: 728 + components: + - pos: 16.5,-12.5 + parent: 1668 + type: Transform + - uid: 745 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-14.5 + parent: 1668 + type: Transform + - uid: 746 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-14.5 + parent: 1668 + type: Transform + - uid: 747 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-14.5 + parent: 1668 + type: Transform + - uid: 748 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-14.5 + parent: 1668 + type: Transform + - uid: 749 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-14.5 + parent: 1668 + type: Transform + - uid: 750 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-14.5 + parent: 1668 + type: Transform + - uid: 751 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-15.5 + parent: 1668 + type: Transform + - uid: 752 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-13.5 + parent: 1668 + type: Transform + - uid: 753 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-12.5 + parent: 1668 + type: Transform + - uid: 754 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-10.5 + parent: 1668 + type: Transform + - uid: 755 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 1668 + type: Transform + - uid: 756 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-10.5 + parent: 1668 + type: Transform + - uid: 757 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 1668 + type: Transform + - uid: 806 + components: + - pos: 35.5,-29.5 + parent: 1668 + type: Transform + - uid: 826 + components: + - pos: -13.5,11.5 + parent: 1668 + type: Transform + - uid: 827 + components: + - pos: -13.5,12.5 + parent: 1668 + type: Transform + - uid: 832 + components: + - pos: 11.5,-15.5 + parent: 1668 + type: Transform + - uid: 835 + components: + - pos: 8.5,-15.5 + parent: 1668 + type: Transform + - uid: 837 + components: + - pos: 14.5,-15.5 + parent: 1668 + type: Transform + - uid: 838 + components: + - pos: 14.5,-14.5 + parent: 1668 + type: Transform + - uid: 839 + components: + - pos: 14.5,-13.5 + parent: 1668 + type: Transform + - uid: 840 + components: + - pos: 8.5,-17.5 + parent: 1668 + type: Transform + - uid: 841 + components: + - pos: 11.5,-17.5 + parent: 1668 + type: Transform + - uid: 842 + components: + - pos: 13.5,-17.5 + parent: 1668 + type: Transform + - uid: 843 + components: + - pos: 14.5,-17.5 + parent: 1668 + type: Transform + - uid: 844 + components: + - pos: 14.5,-16.5 + parent: 1668 + type: Transform + - uid: 851 + components: + - pos: -13.5,10.5 + parent: 1668 + type: Transform + - uid: 898 + components: + - pos: 20.5,6.5 + parent: 1668 + type: Transform + - uid: 1080 + components: + - pos: -13.5,9.5 + parent: 1668 + type: Transform + - uid: 1081 + components: + - pos: -13.5,8.5 + parent: 1668 + type: Transform + - uid: 1082 + components: + - pos: -13.5,7.5 + parent: 1668 + type: Transform + - uid: 1083 + components: + - pos: -12.5,7.5 + parent: 1668 + type: Transform + - uid: 1084 + components: + - pos: -11.5,7.5 + parent: 1668 + type: Transform + - uid: 1085 + components: + - pos: -10.5,7.5 + parent: 1668 + type: Transform + - uid: 1132 + components: + - pos: 15.5,-16.5 + parent: 1668 + type: Transform + - uid: 1133 + components: + - pos: 16.5,-16.5 + parent: 1668 + type: Transform + - uid: 1134 + components: + - pos: 17.5,-16.5 + parent: 1668 + type: Transform + - uid: 1135 + components: + - pos: 18.5,-16.5 + parent: 1668 + type: Transform + - uid: 1136 + components: + - pos: 18.5,-15.5 + parent: 1668 + type: Transform + - uid: 1138 + components: + - pos: 18.5,-13.5 + parent: 1668 + type: Transform + - uid: 1139 + components: + - pos: 29.5,-14.5 + parent: 1668 + type: Transform + - uid: 1141 + components: + - pos: 35.5,-13.5 + parent: 1668 + type: Transform + - uid: 1142 + components: + - pos: 35.5,-14.5 + parent: 1668 + type: Transform + - uid: 1143 + components: + - pos: 35.5,-15.5 + parent: 1668 + type: Transform + - uid: 1144 + components: + - pos: 35.5,-16.5 + parent: 1668 + type: Transform + - uid: 1145 + components: + - pos: 35.5,-17.5 + parent: 1668 + type: Transform + - uid: 1152 + components: + - pos: 35.5,-11.5 + parent: 1668 + type: Transform + - uid: 1183 + components: + - pos: 35.5,-12.5 + parent: 1668 + type: Transform + - uid: 1184 + components: + - pos: 35.5,-10.5 + parent: 1668 + type: Transform + - uid: 1322 + components: + - pos: -2.5,5.5 + parent: 1668 + type: Transform + - uid: 1392 + components: + - pos: 35.5,-30.5 + parent: 1668 + type: Transform + - uid: 1394 + components: + - pos: 35.5,-31.5 + parent: 1668 + type: Transform + - uid: 1395 + components: + - pos: 35.5,-32.5 + parent: 1668 + type: Transform + - uid: 1408 + components: + - pos: -4.5,17.5 + parent: 1668 + type: Transform + - uid: 1409 + components: + - pos: -2.5,17.5 + parent: 1668 + type: Transform + - uid: 1410 + components: + - pos: 1.5,17.5 + parent: 1668 + type: Transform + - uid: 1411 + components: + - pos: 3.5,17.5 + parent: 1668 + type: Transform + - uid: 1412 + components: + - pos: 3.5,15.5 + parent: 1668 + type: Transform + - uid: 1413 + components: + - pos: -4.5,16.5 + parent: 1668 + type: Transform + - uid: 1414 + components: + - pos: -4.5,14.5 + parent: 1668 + type: Transform + - uid: 1415 + components: + - pos: -4.5,13.5 + parent: 1668 + type: Transform + - uid: 1416 + components: + - pos: -4.5,12.5 + parent: 1668 + type: Transform + - uid: 1490 + components: + - pos: -5.5,13.5 + parent: 1668 + type: Transform + - uid: 1491 + components: + - pos: -7.5,13.5 + parent: 1668 + type: Transform + - uid: 1492 + components: + - pos: -9.5,13.5 + parent: 1668 + type: Transform + - uid: 1493 + components: + - pos: -8.5,13.5 + parent: 1668 + type: Transform + - uid: 1494 + components: + - pos: -8.5,14.5 + parent: 1668 + type: Transform + - uid: 1495 + components: + - pos: -11.5,13.5 + parent: 1668 + type: Transform + - uid: 1496 + components: + - pos: -12.5,13.5 + parent: 1668 + type: Transform + - uid: 1497 + components: + - pos: -13.5,13.5 + parent: 1668 + type: Transform + - uid: 1498 + components: + - pos: -14.5,13.5 + parent: 1668 + type: Transform + - uid: 1499 + components: + - pos: -15.5,13.5 + parent: 1668 + type: Transform + - uid: 1500 + components: + - pos: -16.5,13.5 + parent: 1668 + type: Transform + - uid: 1501 + components: + - pos: -16.5,14.5 + parent: 1668 + type: Transform + - uid: 1502 + components: + - pos: -16.5,15.5 + parent: 1668 + type: Transform + - uid: 1503 + components: + - pos: -16.5,16.5 + parent: 1668 + type: Transform + - uid: 1504 + components: + - pos: -14.5,18.5 + parent: 1668 + type: Transform + - uid: 1505 + components: + - pos: -8.5,16.5 + parent: 1668 + type: Transform + - uid: 1506 + components: + - pos: -8.5,17.5 + parent: 1668 + type: Transform + - uid: 1507 + components: + - pos: -8.5,18.5 + parent: 1668 + type: Transform + - uid: 1508 + components: + - pos: -7.5,18.5 + parent: 1668 + type: Transform + - uid: 1509 + components: + - pos: -4.5,18.5 + parent: 1668 + type: Transform + - uid: 1510 + components: + - pos: -5.5,18.5 + parent: 1668 + type: Transform + - uid: 1511 + components: + - pos: -9.5,18.5 + parent: 1668 + type: Transform + - uid: 1512 + components: + - pos: -11.5,18.5 + parent: 1668 + type: Transform + - uid: 1523 + components: + - pos: -2.5,18.5 + parent: 1668 + type: Transform + - uid: 1524 + components: + - pos: -2.5,19.5 + parent: 1668 + type: Transform + - uid: 1525 + components: + - pos: -3.5,19.5 + parent: 1668 + type: Transform + - uid: 1526 + components: + - pos: -4.5,19.5 + parent: 1668 + type: Transform + - uid: 1527 + components: + - pos: 1.5,18.5 + parent: 1668 + type: Transform + - uid: 1528 + components: + - pos: 1.5,19.5 + parent: 1668 + type: Transform + - uid: 1529 + components: + - pos: 2.5,19.5 + parent: 1668 + type: Transform + - uid: 1530 + components: + - pos: 3.5,19.5 + parent: 1668 + type: Transform + - uid: 1531 + components: + - pos: 3.5,18.5 + parent: 1668 + type: Transform + - uid: 1532 + components: + - pos: 0.5,17.5 + parent: 1668 + type: Transform + - uid: 1535 + components: + - pos: -1.5,17.5 + parent: 1668 + type: Transform + - uid: 1536 + components: + - pos: 3.5,21.5 + parent: 1668 + type: Transform + - uid: 1537 + components: + - pos: 3.5,20.5 + parent: 1668 + type: Transform + - uid: 1538 + components: + - pos: -14.5,19.5 + parent: 1668 + type: Transform + - uid: 1553 + components: + - pos: -4.5,20.5 + parent: 1668 + type: Transform + - uid: 1554 + components: + - pos: -4.5,22.5 + parent: 1668 + type: Transform + - uid: 1555 + components: + - pos: -4.5,23.5 + parent: 1668 + type: Transform + - uid: 1556 + components: + - pos: -4.5,24.5 + parent: 1668 + type: Transform + - uid: 1557 + components: + - pos: -4.5,25.5 + parent: 1668 + type: Transform + - uid: 1558 + components: + - pos: -4.5,26.5 + parent: 1668 + type: Transform + - uid: 1559 + components: + - pos: -4.5,27.5 + parent: 1668 + type: Transform + - uid: 1560 + components: + - pos: -4.5,28.5 + parent: 1668 + type: Transform + - uid: 1561 + components: + - pos: -4.5,29.5 + parent: 1668 + type: Transform + - uid: 1562 + components: + - pos: -4.5,30.5 + parent: 1668 + type: Transform + - uid: 1563 + components: + - pos: -4.5,31.5 + parent: 1668 + type: Transform + - uid: 1564 + components: + - pos: -4.5,32.5 + parent: 1668 + type: Transform + - uid: 1565 + components: + - pos: -5.5,32.5 + parent: 1668 + type: Transform + - uid: 1567 + components: + - pos: -11.5,32.5 + parent: 1668 + type: Transform + - uid: 1568 + components: + - pos: -11.5,34.5 + parent: 1668 + type: Transform + - uid: 1569 + components: + - pos: -7.5,33.5 + parent: 1668 + type: Transform + - uid: 1570 + components: + - pos: -7.5,32.5 + parent: 1668 + type: Transform + - uid: 1571 + components: + - pos: -11.5,33.5 + parent: 1668 + type: Transform + - uid: 1573 + components: + - pos: -13.5,32.5 + parent: 1668 + type: Transform + - uid: 1574 + components: + - pos: -14.5,32.5 + parent: 1668 + type: Transform + - uid: 1575 + components: + - pos: -14.5,31.5 + parent: 1668 + type: Transform + - uid: 1664 + components: + - pos: -7.5,34.5 + parent: 1668 + type: Transform + - uid: 1665 + components: + - pos: -8.5,34.5 + parent: 1668 + type: Transform + - uid: 1666 + components: + - pos: -10.5,34.5 + parent: 1668 + type: Transform + - uid: 1794 + components: + - pos: 3.5,22.5 + parent: 1668 + type: Transform + - uid: 1795 + components: + - pos: 2.5,22.5 + parent: 1668 + type: Transform + - uid: 1796 + components: + - pos: 1.5,22.5 + parent: 1668 + type: Transform + - uid: 1797 + components: + - pos: 0.5,22.5 + parent: 1668 + type: Transform + - uid: 1798 + components: + - pos: 0.5,23.5 + parent: 1668 + type: Transform + - uid: 1799 + components: + - pos: -1.5,22.5 + parent: 1668 + type: Transform + - uid: 1800 + components: + - pos: -2.5,22.5 + parent: 1668 + type: Transform + - uid: 1801 + components: + - pos: -3.5,22.5 + parent: 1668 + type: Transform + - uid: 1994 + components: + - pos: 4.5,15.5 + parent: 1668 + type: Transform + - uid: 1995 + components: + - pos: 5.5,15.5 + parent: 1668 + type: Transform + - uid: 1996 + components: + - pos: 5.5,16.5 + parent: 1668 + type: Transform + - uid: 1997 + components: + - pos: 5.5,17.5 + parent: 1668 + type: Transform + - uid: 1998 + components: + - pos: 4.5,17.5 + parent: 1668 + type: Transform + - uid: 2005 + components: + - pos: 0.5,24.5 + parent: 1668 + type: Transform + - uid: 2006 + components: + - pos: 0.5,25.5 + parent: 1668 + type: Transform + - uid: 2007 + components: + - pos: -0.5,25.5 + parent: 1668 + type: Transform + - uid: 2008 + components: + - pos: -1.5,25.5 + parent: 1668 + type: Transform + - uid: 2009 + components: + - pos: -3.5,25.5 + parent: 1668 + type: Transform + - uid: 2238 + components: + - pos: 17.5,9.5 + parent: 1668 + type: Transform + - uid: 2239 + components: + - pos: 16.5,9.5 + parent: 1668 + type: Transform + - uid: 2245 + components: + - pos: 15.5,15.5 + parent: 1668 + type: Transform + - uid: 2251 + components: + - pos: 15.5,16.5 + parent: 1668 + type: Transform + - uid: 2252 + components: + - pos: 15.5,17.5 + parent: 1668 + type: Transform + - uid: 2253 + components: + - pos: 16.5,17.5 + parent: 1668 + type: Transform + - uid: 2254 + components: + - pos: 17.5,17.5 + parent: 1668 + type: Transform + - uid: 2255 + components: + - pos: 18.5,17.5 + parent: 1668 + type: Transform + - uid: 2256 + components: + - pos: 20.5,17.5 + parent: 1668 + type: Transform + - uid: 2257 + components: + - pos: 21.5,10.5 + parent: 1668 + type: Transform + - uid: 2258 + components: + - pos: 21.5,13.5 + parent: 1668 + type: Transform + - uid: 2259 + components: + - pos: 21.5,14.5 + parent: 1668 + type: Transform + - uid: 2260 + components: + - pos: 21.5,15.5 + parent: 1668 + type: Transform + - uid: 2261 + components: + - pos: 21.5,16.5 + parent: 1668 + type: Transform + - uid: 2262 + components: + - pos: 21.5,17.5 + parent: 1668 + type: Transform + - uid: 2263 + components: + - pos: 35.5,10.5 + parent: 1668 + type: Transform + - uid: 2264 + components: + - pos: 35.5,11.5 + parent: 1668 + type: Transform + - uid: 2265 + components: + - pos: 35.5,12.5 + parent: 1668 + type: Transform + - uid: 2266 + components: + - pos: 35.5,13.5 + parent: 1668 + type: Transform + - uid: 2267 + components: + - pos: 35.5,14.5 + parent: 1668 + type: Transform + - uid: 2268 + components: + - pos: 35.5,15.5 + parent: 1668 + type: Transform + - uid: 2274 + components: + - pos: 24.5,14.5 + parent: 1668 + type: Transform + - uid: 2275 + components: + - pos: 32.5,14.5 + parent: 1668 + type: Transform + - uid: 2292 + components: + - pos: 35.5,16.5 + parent: 1668 + type: Transform + - uid: 2293 + components: + - pos: 35.5,17.5 + parent: 1668 + type: Transform + - uid: 2294 + components: + - pos: 35.5,18.5 + parent: 1668 + type: Transform + - uid: 2295 + components: + - pos: 35.5,19.5 + parent: 1668 + type: Transform + - uid: 2296 + components: + - pos: 35.5,20.5 + parent: 1668 + type: Transform + - uid: 2297 + components: + - pos: 35.5,21.5 + parent: 1668 + type: Transform + - uid: 2298 + components: + - pos: 35.5,22.5 + parent: 1668 + type: Transform + - uid: 2301 + components: + - pos: 17.5,18.5 + parent: 1668 + type: Transform + - uid: 2302 + components: + - pos: 17.5,19.5 + parent: 1668 + type: Transform + - uid: 2303 + components: + - pos: 17.5,20.5 + parent: 1668 + type: Transform + - uid: 2304 + components: + - pos: 17.5,21.5 + parent: 1668 + type: Transform + - uid: 2305 + components: + - pos: 17.5,22.5 + parent: 1668 + type: Transform + - uid: 2306 + components: + - pos: 17.5,23.5 + parent: 1668 + type: Transform + - uid: 2307 + components: + - pos: 17.5,24.5 + parent: 1668 + type: Transform + - uid: 2308 + components: + - pos: 18.5,24.5 + parent: 1668 + type: Transform + - uid: 2309 + components: + - pos: 19.5,24.5 + parent: 1668 + type: Transform + - uid: 2310 + components: + - pos: 20.5,24.5 + parent: 1668 + type: Transform + - uid: 2311 + components: + - pos: 21.5,24.5 + parent: 1668 + type: Transform + - uid: 2312 + components: + - pos: 21.5,23.5 + parent: 1668 + type: Transform + - uid: 2313 + components: + - pos: 21.5,19.5 + parent: 1668 + type: Transform + - uid: 2314 + components: + - pos: 21.5,20.5 + parent: 1668 + type: Transform + - uid: 2315 + components: + - pos: 21.5,21.5 + parent: 1668 + type: Transform + - uid: 2318 + components: + - pos: 35.5,23.5 + parent: 1668 + type: Transform + - uid: 2319 + components: + - pos: 35.5,24.5 + parent: 1668 + type: Transform + - uid: 2320 + components: + - pos: 34.5,24.5 + parent: 1668 + type: Transform + - uid: 2321 + components: + - pos: 33.5,24.5 + parent: 1668 + type: Transform + - uid: 2322 + components: + - pos: 32.5,24.5 + parent: 1668 + type: Transform + - uid: 2323 + components: + - pos: 31.5,24.5 + parent: 1668 + type: Transform + - uid: 2324 + components: + - pos: 30.5,24.5 + parent: 1668 + type: Transform + - uid: 2325 + components: + - pos: 29.5,24.5 + parent: 1668 + type: Transform + - uid: 2326 + components: + - pos: 28.5,24.5 + parent: 1668 + type: Transform + - uid: 2327 + components: + - pos: 27.5,24.5 + parent: 1668 + type: Transform + - uid: 2328 + components: + - pos: 26.5,24.5 + parent: 1668 + type: Transform + - uid: 2329 + components: + - pos: 25.5,24.5 + parent: 1668 + type: Transform + - uid: 2330 + components: + - pos: 24.5,24.5 + parent: 1668 + type: Transform + - uid: 2331 + components: + - pos: 23.5,24.5 + parent: 1668 + type: Transform + - uid: 2332 + components: + - pos: 22.5,24.5 + parent: 1668 + type: Transform + - uid: 2333 + components: + - pos: 22.5,20.5 + parent: 1668 + type: Transform + - uid: 2334 + components: + - pos: 24.5,20.5 + parent: 1668 + type: Transform + - uid: 2335 + components: + - pos: 34.5,20.5 + parent: 1668 + type: Transform + - uid: 2336 + components: + - pos: 32.5,20.5 + parent: 1668 + type: Transform + - uid: 2350 + components: + - pos: 35.5,-28.5 + parent: 1668 + type: Transform + - uid: 2501 + components: + - pos: 13.5,16.5 + parent: 1668 + type: Transform + - uid: 2502 + components: + - pos: 13.5,17.5 + parent: 1668 + type: Transform + - uid: 2503 + components: + - pos: 13.5,18.5 + parent: 1668 + type: Transform + - uid: 2504 + components: + - pos: 13.5,19.5 + parent: 1668 + type: Transform + - uid: 2508 + components: + - pos: 10.5,19.5 + parent: 1668 + type: Transform + - uid: 2514 + components: + - pos: 7.5,16.5 + parent: 1668 + type: Transform + - uid: 2515 + components: + - pos: 6.5,16.5 + parent: 1668 + type: Transform + - uid: 2516 + components: + - pos: 10.5,20.5 + parent: 1668 + type: Transform + - uid: 2517 + components: + - pos: 13.5,20.5 + parent: 1668 + type: Transform + - uid: 2518 + components: + - pos: 14.5,20.5 + parent: 1668 + type: Transform + - uid: 2519 + components: + - pos: 15.5,20.5 + parent: 1668 + type: Transform + - uid: 2520 + components: + - pos: 16.5,20.5 + parent: 1668 + type: Transform + - uid: 2547 + components: + - pos: 7.5,20.5 + parent: 1668 + type: Transform + - uid: 2548 + components: + - pos: 6.5,20.5 + parent: 1668 + type: Transform + - uid: 2549 + components: + - pos: 5.5,20.5 + parent: 1668 + type: Transform + - uid: 2550 + components: + - pos: 4.5,20.5 + parent: 1668 + type: Transform + - uid: 2551 + components: + - pos: 7.5,17.5 + parent: 1668 + type: Transform + - uid: 2552 + components: + - pos: 7.5,18.5 + parent: 1668 + type: Transform + - uid: 2559 + components: + - pos: 16.5,23.5 + parent: 1668 + type: Transform + - uid: 2560 + components: + - pos: 15.5,23.5 + parent: 1668 + type: Transform + - uid: 2561 + components: + - pos: 14.5,23.5 + parent: 1668 + type: Transform + - uid: 2748 + components: + - pos: 3.5,26.5 + parent: 1668 + type: Transform + - uid: 2749 + components: + - pos: 4.5,26.5 + parent: 1668 + type: Transform + - uid: 2750 + components: + - pos: 1.5,26.5 + parent: 1668 + type: Transform + - uid: 2751 + components: + - pos: 4.5,23.5 + parent: 1668 + type: Transform + - uid: 2753 + components: + - pos: 3.5,23.5 + parent: 1668 + type: Transform + - uid: 2757 + components: + - pos: 6.5,23.5 + parent: 1668 + type: Transform + - uid: 2759 + components: + - pos: 7.5,23.5 + parent: 1668 + type: Transform + - uid: 2761 + components: + - pos: 2.5,26.5 + parent: 1668 + type: Transform + - uid: 2766 + components: + - pos: 17.5,25.5 + parent: 1668 + type: Transform + - uid: 2767 + components: + - pos: 17.5,26.5 + parent: 1668 + type: Transform + - uid: 2768 + components: + - pos: 16.5,26.5 + parent: 1668 + type: Transform + - uid: 2769 + components: + - pos: 15.5,26.5 + parent: 1668 + type: Transform + - uid: 2770 + components: + - pos: 14.5,26.5 + parent: 1668 + type: Transform + - uid: 2783 + components: + - pos: 9.5,26.5 + parent: 1668 + type: Transform + - uid: 2788 + components: + - pos: 11.5,30.5 + parent: 1668 + type: Transform + - uid: 2789 + components: + - pos: 7.5,30.5 + parent: 1668 + type: Transform + - uid: 2793 + components: + - pos: 7.5,32.5 + parent: 1668 + type: Transform + - uid: 2794 + components: + - pos: 14.5,33.5 + parent: 1668 + type: Transform + - uid: 2795 + components: + - pos: 13.5,33.5 + parent: 1668 + type: Transform + - uid: 2796 + components: + - pos: 12.5,33.5 + parent: 1668 + type: Transform + - uid: 2797 + components: + - pos: 11.5,33.5 + parent: 1668 + type: Transform + - uid: 2798 + components: + - pos: 10.5,33.5 + parent: 1668 + type: Transform + - uid: 2799 + components: + - pos: 9.5,33.5 + parent: 1668 + type: Transform + - uid: 2800 + components: + - pos: 8.5,33.5 + parent: 1668 + type: Transform + - uid: 2801 + components: + - pos: 7.5,33.5 + parent: 1668 + type: Transform + - uid: 2802 + components: + - pos: 6.5,33.5 + parent: 1668 + type: Transform + - uid: 2803 + components: + - pos: 5.5,33.5 + parent: 1668 + type: Transform + - uid: 2804 + components: + - pos: 4.5,33.5 + parent: 1668 + type: Transform + - uid: 2805 + components: + - pos: 3.5,33.5 + parent: 1668 + type: Transform + - uid: 2806 + components: + - pos: 2.5,33.5 + parent: 1668 + type: Transform + - uid: 2807 + components: + - pos: 1.5,33.5 + parent: 1668 + type: Transform + - uid: 2814 + components: + - pos: 11.5,32.5 + parent: 1668 + type: Transform + - uid: 2833 + components: + - rot: 3.141592653589793 rad + pos: 2.5,23.5 + parent: 1668 + type: Transform + - uid: 2834 + components: + - pos: 1.5,23.5 + parent: 1668 + type: Transform + - uid: 2835 + components: + - pos: 1.5,24.5 + parent: 1668 + type: Transform + - uid: 2836 + components: + - pos: 1.5,25.5 + parent: 1668 + type: Transform + - uid: 2837 + components: + - pos: 1.5,27.5 + parent: 1668 + type: Transform + - uid: 2838 + components: + - pos: 1.5,28.5 + parent: 1668 + type: Transform + - uid: 2839 + components: + - pos: 1.5,29.5 + parent: 1668 + type: Transform + - uid: 2840 + components: + - pos: 1.5,30.5 + parent: 1668 + type: Transform + - uid: 2841 + components: + - pos: 1.5,31.5 + parent: 1668 + type: Transform + - uid: 2842 + components: + - pos: 1.5,32.5 + parent: 1668 + type: Transform + - uid: 2843 + components: + - pos: 17.5,27.5 + parent: 1668 + type: Transform + - uid: 2844 + components: + - pos: 17.5,28.5 + parent: 1668 + type: Transform + - uid: 2845 + components: + - pos: 17.5,29.5 + parent: 1668 + type: Transform + - uid: 2846 + components: + - pos: 17.5,30.5 + parent: 1668 + type: Transform + - uid: 2847 + components: + - pos: 17.5,31.5 + parent: 1668 + type: Transform + - uid: 2848 + components: + - pos: 17.5,32.5 + parent: 1668 + type: Transform + - uid: 2849 + components: + - pos: 17.5,33.5 + parent: 1668 + type: Transform + - uid: 2850 + components: + - pos: 16.5,33.5 + parent: 1668 + type: Transform + - uid: 2851 + components: + - pos: 15.5,33.5 + parent: 1668 + type: Transform + - uid: 2852 + components: + - pos: 16.5,29.5 + parent: 1668 + type: Transform + - uid: 2853 + components: + - pos: 14.5,29.5 + parent: 1668 + type: Transform + - uid: 2854 + components: + - pos: 15.5,29.5 + parent: 1668 + type: Transform + - uid: 2855 + components: + - pos: 2.5,29.5 + parent: 1668 + type: Transform + - uid: 2856 + components: + - pos: 3.5,29.5 + parent: 1668 + type: Transform + - uid: 2857 + components: + - pos: 4.5,29.5 + parent: 1668 + type: Transform + - uid: 2883 + components: + - pos: 4.5,32.5 + parent: 1668 + type: Transform + - uid: 2884 + components: + - pos: 14.5,32.5 + parent: 1668 + type: Transform + - uid: 2885 + components: + - pos: 4.5,30.5 + parent: 1668 + type: Transform + - uid: 2888 + components: + - pos: 14.5,30.5 + parent: 1668 + type: Transform + - uid: 3140 + components: + - pos: 33.5,-0.5 + parent: 1668 + type: Transform + - uid: 3184 + components: + - pos: 0.5,26.5 + parent: 1668 + type: Transform + - uid: 3187 + components: + - pos: 0.5,27.5 + parent: 1668 + type: Transform + - uid: 3188 + components: + - pos: 0.5,28.5 + parent: 1668 + type: Transform + - uid: 3189 + components: + - pos: 0.5,29.5 + parent: 1668 + type: Transform + - uid: 3190 + components: + - pos: 0.5,30.5 + parent: 1668 + type: Transform + - uid: 3191 + components: + - pos: 0.5,31.5 + parent: 1668 + type: Transform + - uid: 3192 + components: + - pos: 0.5,32.5 + parent: 1668 + type: Transform + - uid: 3193 + components: + - pos: 0.5,33.5 + parent: 1668 + type: Transform + - uid: 3194 + components: + - pos: 0.5,34.5 + parent: 1668 + type: Transform + - uid: 3195 + components: + - pos: 1.5,34.5 + parent: 1668 + type: Transform + - uid: 3196 + components: + - pos: 2.5,34.5 + parent: 1668 + type: Transform + - uid: 3197 + components: + - pos: 3.5,34.5 + parent: 1668 + type: Transform + - uid: 3198 + components: + - pos: 4.5,34.5 + parent: 1668 + type: Transform + - uid: 3199 + components: + - pos: 5.5,34.5 + parent: 1668 + type: Transform + - uid: 3200 + components: + - pos: 6.5,34.5 + parent: 1668 + type: Transform + - uid: 3201 + components: + - pos: 7.5,34.5 + parent: 1668 + type: Transform + - uid: 3202 + components: + - pos: 8.5,34.5 + parent: 1668 + type: Transform + - uid: 3203 + components: + - pos: 9.5,34.5 + parent: 1668 + type: Transform + - uid: 3204 + components: + - pos: 10.5,34.5 + parent: 1668 + type: Transform + - uid: 3205 + components: + - pos: 11.5,34.5 + parent: 1668 + type: Transform + - uid: 3206 + components: + - pos: 12.5,34.5 + parent: 1668 + type: Transform + - uid: 3207 + components: + - pos: 13.5,34.5 + parent: 1668 + type: Transform + - uid: 3208 + components: + - pos: 14.5,34.5 + parent: 1668 + type: Transform + - uid: 3209 + components: + - pos: 15.5,34.5 + parent: 1668 + type: Transform + - uid: 3210 + components: + - pos: 16.5,34.5 + parent: 1668 + type: Transform + - uid: 3211 + components: + - pos: 17.5,34.5 + parent: 1668 + type: Transform + - uid: 3212 + components: + - pos: 18.5,34.5 + parent: 1668 + type: Transform + - uid: 3213 + components: + - pos: 18.5,33.5 + parent: 1668 + type: Transform + - uid: 3214 + components: + - pos: 18.5,32.5 + parent: 1668 + type: Transform + - uid: 3215 + components: + - pos: 18.5,31.5 + parent: 1668 + type: Transform + - uid: 3216 + components: + - pos: 18.5,30.5 + parent: 1668 + type: Transform + - uid: 3217 + components: + - pos: 18.5,29.5 + parent: 1668 + type: Transform + - uid: 3218 + components: + - pos: 18.5,28.5 + parent: 1668 + type: Transform + - uid: 3219 + components: + - pos: 18.5,27.5 + parent: 1668 + type: Transform + - uid: 3220 + components: + - pos: 18.5,26.5 + parent: 1668 + type: Transform + - uid: 3221 + components: + - pos: 18.5,25.5 + parent: 1668 + type: Transform + - uid: 3222 + components: + - pos: 35.5,25.5 + parent: 1668 + type: Transform + - uid: 3223 + components: + - pos: 34.5,25.5 + parent: 1668 + type: Transform + - uid: 3224 + components: + - pos: 33.5,25.5 + parent: 1668 + type: Transform + - uid: 3225 + components: + - pos: 32.5,25.5 + parent: 1668 + type: Transform + - uid: 3226 + components: + - pos: 31.5,25.5 + parent: 1668 + type: Transform + - uid: 3227 + components: + - pos: 30.5,25.5 + parent: 1668 + type: Transform + - uid: 3228 + components: + - pos: 29.5,25.5 + parent: 1668 + type: Transform + - uid: 3229 + components: + - pos: 28.5,25.5 + parent: 1668 + type: Transform + - uid: 3230 + components: + - pos: 27.5,25.5 + parent: 1668 + type: Transform + - uid: 3231 + components: + - pos: 26.5,25.5 + parent: 1668 + type: Transform + - uid: 3232 + components: + - pos: 25.5,25.5 + parent: 1668 + type: Transform + - uid: 3233 + components: + - pos: 24.5,25.5 + parent: 1668 + type: Transform + - uid: 3234 + components: + - pos: 23.5,25.5 + parent: 1668 + type: Transform + - uid: 3235 + components: + - pos: 22.5,25.5 + parent: 1668 + type: Transform + - uid: 3236 + components: + - pos: 21.5,25.5 + parent: 1668 + type: Transform + - uid: 3237 + components: + - pos: 20.5,25.5 + parent: 1668 + type: Transform + - uid: 3238 + components: + - pos: 19.5,25.5 + parent: 1668 + type: Transform + - uid: 3262 + components: + - pos: -10.5,-10.5 + parent: 1668 + type: Transform + - uid: 3263 + components: + - pos: -11.5,-10.5 + parent: 1668 + type: Transform + - uid: 3264 + components: + - pos: -12.5,-10.5 + parent: 1668 + type: Transform + - uid: 3265 + components: + - pos: -13.5,-10.5 + parent: 1668 + type: Transform + - uid: 3266 + components: + - pos: -14.5,-10.5 + parent: 1668 + type: Transform + - uid: 3267 + components: + - pos: -15.5,-10.5 + parent: 1668 + type: Transform + - uid: 3268 + components: + - pos: -16.5,-10.5 + parent: 1668 + type: Transform + - uid: 3269 + components: + - pos: -17.5,-10.5 + parent: 1668 + type: Transform + - uid: 3270 + components: + - pos: -18.5,-10.5 + parent: 1668 + type: Transform + - uid: 3271 + components: + - pos: -19.5,-10.5 + parent: 1668 + type: Transform + - uid: 3272 + components: + - pos: -20.5,-10.5 + parent: 1668 + type: Transform + - uid: 3273 + components: + - pos: -21.5,-10.5 + parent: 1668 + type: Transform + - uid: 3274 + components: + - pos: -17.5,13.5 + parent: 1668 + type: Transform + - uid: 3275 + components: + - pos: -18.5,13.5 + parent: 1668 + type: Transform + - uid: 3276 + components: + - pos: -19.5,13.5 + parent: 1668 + type: Transform + - uid: 3277 + components: + - pos: -19.5,14.5 + parent: 1668 + type: Transform + - uid: 3278 + components: + - pos: -19.5,15.5 + parent: 1668 + type: Transform + - uid: 3279 + components: + - pos: -19.5,16.5 + parent: 1668 + type: Transform + - uid: 3280 + components: + - pos: -20.5,16.5 + parent: 1668 + type: Transform + - uid: 3281 + components: + - pos: -21.5,16.5 + parent: 1668 + type: Transform + - uid: 3282 + components: + - pos: -22.5,16.5 + parent: 1668 + type: Transform + - uid: 3283 + components: + - pos: -22.5,15.5 + parent: 1668 + type: Transform + - uid: 3284 + components: + - pos: -22.5,14.5 + parent: 1668 + type: Transform + - uid: 3285 + components: + - pos: -22.5,13.5 + parent: 1668 + type: Transform + - uid: 3286 + components: + - pos: -20.5,13.5 + parent: 1668 + type: Transform + - uid: 3294 + components: + - pos: -10.5,3.5 + parent: 1668 + type: Transform + - uid: 3295 + components: + - pos: -11.5,3.5 + parent: 1668 + type: Transform + - uid: 3296 + components: + - pos: -12.5,3.5 + parent: 1668 + type: Transform + - uid: 3297 + components: + - pos: -13.5,3.5 + parent: 1668 + type: Transform + - uid: 3298 + components: + - pos: -14.5,3.5 + parent: 1668 + type: Transform + - uid: 3299 + components: + - pos: -15.5,3.5 + parent: 1668 + type: Transform + - uid: 3300 + components: + - pos: -16.5,3.5 + parent: 1668 + type: Transform + - uid: 3301 + components: + - pos: -17.5,3.5 + parent: 1668 + type: Transform + - uid: 3302 + components: + - pos: -17.5,2.5 + parent: 1668 + type: Transform + - uid: 3303 + components: + - pos: -17.5,1.5 + parent: 1668 + type: Transform + - uid: 3304 + components: + - pos: -13.5,1.5 + parent: 1668 + type: Transform + - uid: 3305 + components: + - pos: -10.5,-2.5 + parent: 1668 + type: Transform + - uid: 3306 + components: + - pos: -11.5,-2.5 + parent: 1668 + type: Transform + - uid: 3307 + components: + - pos: -12.5,-2.5 + parent: 1668 + type: Transform + - uid: 3308 + components: + - pos: -13.5,-2.5 + parent: 1668 + type: Transform + - uid: 3309 + components: + - pos: -14.5,-2.5 + parent: 1668 + type: Transform + - uid: 3310 + components: + - pos: -15.5,-2.5 + parent: 1668 + type: Transform + - uid: 3311 + components: + - pos: -16.5,-2.5 + parent: 1668 + type: Transform + - uid: 3312 + components: + - pos: -17.5,-2.5 + parent: 1668 + type: Transform + - uid: 3313 + components: + - pos: -16.5,-3.5 + parent: 1668 + type: Transform + - uid: 3314 + components: + - pos: -16.5,-4.5 + parent: 1668 + type: Transform + - uid: 3315 + components: + - pos: -16.5,-9.5 + parent: 1668 + type: Transform + - uid: 3316 + components: + - pos: -16.5,-8.5 + parent: 1668 + type: Transform + - uid: 3317 + components: + - pos: -18.5,1.5 + parent: 1668 + type: Transform + - uid: 3318 + components: + - pos: -19.5,1.5 + parent: 1668 + type: Transform + - uid: 3319 + components: + - pos: -20.5,1.5 + parent: 1668 + type: Transform + - uid: 3320 + components: + - pos: -23.5,13.5 + parent: 1668 + type: Transform + - uid: 3321 + components: + - pos: -24.5,13.5 + parent: 1668 + type: Transform + - uid: 3322 + components: + - pos: -25.5,13.5 + parent: 1668 + type: Transform + - uid: 3323 + components: + - pos: -26.5,13.5 + parent: 1668 + type: Transform + - uid: 3324 + components: + - pos: -27.5,13.5 + parent: 1668 + type: Transform + - uid: 3325 + components: + - pos: -27.5,10.5 + parent: 1668 + type: Transform + - uid: 3326 + components: + - pos: -27.5,7.5 + parent: 1668 + type: Transform + - uid: 3331 + components: + - pos: -17.5,12.5 + parent: 1668 + type: Transform + - uid: 3332 + components: + - pos: -17.5,10.5 + parent: 1668 + type: Transform + - uid: 3333 + components: + - pos: -17.5,9.5 + parent: 1668 + type: Transform + - uid: 3334 + components: + - pos: -17.5,8.5 + parent: 1668 + type: Transform + - uid: 3335 + components: + - pos: -17.5,7.5 + parent: 1668 + type: Transform + - uid: 3336 + components: + - pos: -13.5,6.5 + parent: 1668 + type: Transform + - uid: 3337 + components: + - pos: -13.5,4.5 + parent: 1668 + type: Transform + - uid: 3338 + components: + - pos: -14.5,7.5 + parent: 1668 + type: Transform + - uid: 3339 + components: + - pos: -15.5,7.5 + parent: 1668 + type: Transform + - uid: 3340 + components: + - pos: -16.5,7.5 + parent: 1668 + type: Transform + - uid: 3341 + components: + - pos: -17.5,4.5 + parent: 1668 + type: Transform + - uid: 3342 + components: + - pos: -17.5,6.5 + parent: 1668 + type: Transform + - uid: 3343 + components: + - pos: -18.5,7.5 + parent: 1668 + type: Transform + - uid: 3344 + components: + - pos: -20.5,7.5 + parent: 1668 + type: Transform + - uid: 3345 + components: + - pos: -21.5,7.5 + parent: 1668 + type: Transform + - uid: 3346 + components: + - pos: -22.5,7.5 + parent: 1668 + type: Transform + - uid: 3347 + components: + - pos: -22.5,1.5 + parent: 1668 + type: Transform + - uid: 3348 + components: + - pos: -26.5,7.5 + parent: 1668 + type: Transform + - uid: 3349 + components: + - pos: -25.5,7.5 + parent: 1668 + type: Transform + - uid: 3350 + components: + - pos: -24.5,7.5 + parent: 1668 + type: Transform + - uid: 3351 + components: + - pos: -25.5,6.5 + parent: 1668 + type: Transform + - uid: 3352 + components: + - pos: -23.5,1.5 + parent: 1668 + type: Transform + - uid: 3353 + components: + - pos: -24.5,1.5 + parent: 1668 + type: Transform + - uid: 3354 + components: + - pos: -25.5,1.5 + parent: 1668 + type: Transform + - uid: 3355 + components: + - pos: -25.5,2.5 + parent: 1668 + type: Transform + - uid: 3356 + components: + - pos: -25.5,3.5 + parent: 1668 + type: Transform + - uid: 3357 + components: + - pos: -25.5,4.5 + parent: 1668 + type: Transform + - uid: 3358 + components: + - pos: -25.5,5.5 + parent: 1668 + type: Transform + - uid: 3359 + components: + - pos: -28.5,1.5 + parent: 1668 + type: Transform + - uid: 3360 + components: + - pos: -28.5,2.5 + parent: 1668 + type: Transform + - uid: 3361 + components: + - pos: -28.5,3.5 + parent: 1668 + type: Transform + - uid: 3362 + components: + - pos: -26.5,1.5 + parent: 1668 + type: Transform + - uid: 3363 + components: + - pos: -28.5,5.5 + parent: 1668 + type: Transform + - uid: 3364 + components: + - pos: -28.5,6.5 + parent: 1668 + type: Transform + - uid: 3365 + components: + - pos: -28.5,7.5 + parent: 1668 + type: Transform + - uid: 3366 + components: + - pos: -27.5,1.5 + parent: 1668 + type: Transform + - uid: 3367 + components: + - pos: -22.5,-10.5 + parent: 1668 + type: Transform + - uid: 3368 + components: + - pos: -23.5,-10.5 + parent: 1668 + type: Transform + - uid: 3369 + components: + - pos: -24.5,-10.5 + parent: 1668 + type: Transform + - uid: 3370 + components: + - pos: -25.5,-10.5 + parent: 1668 + type: Transform + - uid: 3371 + components: + - pos: -26.5,-10.5 + parent: 1668 + type: Transform + - uid: 3372 + components: + - pos: -27.5,-10.5 + parent: 1668 + type: Transform + - uid: 3373 + components: + - pos: -28.5,-10.5 + parent: 1668 + type: Transform + - uid: 3374 + components: + - pos: -18.5,-2.5 + parent: 1668 + type: Transform + - uid: 3375 + components: + - pos: -19.5,-2.5 + parent: 1668 + type: Transform + - uid: 3376 + components: + - pos: -23.5,-2.5 + parent: 1668 + type: Transform + - uid: 3377 + components: + - pos: -24.5,-2.5 + parent: 1668 + type: Transform + - uid: 3378 + components: + - pos: -25.5,-2.5 + parent: 1668 + type: Transform + - uid: 3379 + components: + - pos: -26.5,-2.5 + parent: 1668 + type: Transform + - uid: 3380 + components: + - pos: -27.5,-2.5 + parent: 1668 + type: Transform + - uid: 3381 + components: + - pos: -28.5,-2.5 + parent: 1668 + type: Transform + - uid: 3382 + components: + - pos: -28.5,-3.5 + parent: 1668 + type: Transform + - uid: 3383 + components: + - pos: -28.5,-4.5 + parent: 1668 + type: Transform + - uid: 3384 + components: + - pos: -28.5,-9.5 + parent: 1668 + type: Transform + - uid: 3443 + components: + - pos: -17.5,14.5 + parent: 1668 + type: Transform + - uid: 3444 + components: + - pos: -18.5,14.5 + parent: 1668 + type: Transform + - uid: 3780 + components: + - pos: -21.5,-2.5 + parent: 1668 + type: Transform + - uid: 3783 + components: + - pos: -28.5,-5.5 + parent: 1668 + type: Transform + - uid: 3784 + components: + - pos: -28.5,-6.5 + parent: 1668 + type: Transform + - uid: 3785 + components: + - pos: -28.5,-7.5 + parent: 1668 + type: Transform + - uid: 3786 + components: + - pos: -28.5,-8.5 + parent: 1668 + type: Transform + - uid: 3919 + components: + - pos: -29.5,2.5 + parent: 1668 + type: Transform + - uid: 3920 + components: + - pos: -31.5,2.5 + parent: 1668 + type: Transform + - uid: 3921 + components: + - pos: -32.5,2.5 + parent: 1668 + type: Transform + - uid: 3922 + components: + - pos: -33.5,2.5 + parent: 1668 + type: Transform + - uid: 3923 + components: + - pos: -34.5,2.5 + parent: 1668 + type: Transform + - uid: 3924 + components: + - pos: -34.5,-3.5 + parent: 1668 + type: Transform + - uid: 3925 + components: + - pos: -33.5,-3.5 + parent: 1668 + type: Transform + - uid: 3926 + components: + - pos: -32.5,-3.5 + parent: 1668 + type: Transform + - uid: 3927 + components: + - pos: -31.5,-3.5 + parent: 1668 + type: Transform + - uid: 3928 + components: + - pos: -30.5,-3.5 + parent: 1668 + type: Transform + - uid: 3929 + components: + - pos: -29.5,-3.5 + parent: 1668 + type: Transform + - uid: 3930 + components: + - pos: -29.5,7.5 + parent: 1668 + type: Transform + - uid: 3931 + components: + - pos: -31.5,7.5 + parent: 1668 + type: Transform + - uid: 3932 + components: + - pos: -34.5,7.5 + parent: 1668 + type: Transform + - uid: 4188 + components: + - pos: 5.5,-15.5 + parent: 1668 + type: Transform + - uid: 4190 + components: + - pos: 5.5,-17.5 + parent: 1668 + type: Transform + - uid: 4191 + components: + - pos: -6.5,-17.5 + parent: 1668 + type: Transform + - uid: 4192 + components: + - pos: -6.5,-16.5 + parent: 1668 + type: Transform + - uid: 4193 + components: + - pos: -6.5,-19.5 + parent: 1668 + type: Transform + - uid: 4194 + components: + - pos: 5.5,-19.5 + parent: 1668 + type: Transform + - uid: 4195 + components: + - pos: 5.5,-20.5 + parent: 1668 + type: Transform + - uid: 4196 + components: + - pos: 4.5,-20.5 + parent: 1668 + type: Transform + - uid: 4197 + components: + - pos: 3.5,-20.5 + parent: 1668 + type: Transform + - uid: 4198 + components: + - pos: 2.5,-20.5 + parent: 1668 + type: Transform + - uid: 4199 + components: + - pos: 1.5,-20.5 + parent: 1668 + type: Transform + - uid: 4202 + components: + - pos: -2.5,-20.5 + parent: 1668 + type: Transform + - uid: 4203 + components: + - pos: -3.5,-20.5 + parent: 1668 + type: Transform + - uid: 4204 + components: + - pos: -4.5,-20.5 + parent: 1668 + type: Transform + - uid: 4205 + components: + - pos: -5.5,-20.5 + parent: 1668 + type: Transform + - uid: 4206 + components: + - pos: -6.5,-20.5 + parent: 1668 + type: Transform + - uid: 4207 + components: + - pos: 14.5,-18.5 + parent: 1668 + type: Transform + - uid: 4208 + components: + - pos: 14.5,-19.5 + parent: 1668 + type: Transform + - uid: 4209 + components: + - pos: 14.5,-20.5 + parent: 1668 + type: Transform + - uid: 4210 + components: + - pos: 11.5,-20.5 + parent: 1668 + type: Transform + - uid: 4211 + components: + - pos: 10.5,-20.5 + parent: 1668 + type: Transform + - uid: 4212 + components: + - pos: 9.5,-20.5 + parent: 1668 + type: Transform + - uid: 4213 + components: + - pos: 8.5,-20.5 + parent: 1668 + type: Transform + - uid: 4214 + components: + - pos: 7.5,-20.5 + parent: 1668 + type: Transform + - uid: 4215 + components: + - pos: 6.5,-20.5 + parent: 1668 + type: Transform + - uid: 4216 + components: + - pos: -9.5,-15.5 + parent: 1668 + type: Transform + - uid: 4217 + components: + - pos: -10.5,-15.5 + parent: 1668 + type: Transform + - uid: 4218 + components: + - pos: -11.5,-15.5 + parent: 1668 + type: Transform + - uid: 4219 + components: + - pos: -12.5,-15.5 + parent: 1668 + type: Transform + - uid: 4220 + components: + - pos: -9.5,-17.5 + parent: 1668 + type: Transform + - uid: 4221 + components: + - pos: -12.5,-17.5 + parent: 1668 + type: Transform + - uid: 4234 + components: + - pos: -14.5,-17.5 + parent: 1668 + type: Transform + - uid: 4235 + components: + - pos: -15.5,-17.5 + parent: 1668 + type: Transform + - uid: 4236 + components: + - pos: -15.5,-16.5 + parent: 1668 + type: Transform + - uid: 4237 + components: + - pos: -15.5,-15.5 + parent: 1668 + type: Transform + - uid: 4238 + components: + - pos: -14.5,-15.5 + parent: 1668 + type: Transform + - uid: 4239 + components: + - pos: -15.5,-19.5 + parent: 1668 + type: Transform + - uid: 4240 + components: + - pos: -15.5,-18.5 + parent: 1668 + type: Transform + - uid: 4244 + components: + - pos: -12.5,-20.5 + parent: 1668 + type: Transform + - uid: 4245 + components: + - pos: -11.5,-20.5 + parent: 1668 + type: Transform + - uid: 4246 + components: + - pos: -10.5,-20.5 + parent: 1668 + type: Transform + - uid: 4247 + components: + - pos: -9.5,-20.5 + parent: 1668 + type: Transform + - uid: 4248 + components: + - pos: -8.5,-20.5 + parent: 1668 + type: Transform + - uid: 4249 + components: + - pos: -7.5,-20.5 + parent: 1668 + type: Transform + - uid: 4250 + components: + - pos: -15.5,-20.5 + parent: 1668 + type: Transform + - uid: 4267 + components: + - pos: -12.5,-21.5 + parent: 1668 + type: Transform + - uid: 4268 + components: + - pos: 11.5,-21.5 + parent: 1668 + type: Transform + - uid: 4269 + components: + - pos: -12.5,-23.5 + parent: 1668 + type: Transform + - uid: 4270 + components: + - pos: -6.5,-21.5 + parent: 1668 + type: Transform + - uid: 4271 + components: + - pos: -6.5,-22.5 + parent: 1668 + type: Transform + - uid: 4272 + components: + - pos: -6.5,-23.5 + parent: 1668 + type: Transform + - uid: 4273 + components: + - pos: -6.5,-24.5 + parent: 1668 + type: Transform + - uid: 4274 + components: + - pos: -8.5,-24.5 + parent: 1668 + type: Transform + - uid: 4275 + components: + - pos: -8.5,-28.5 + parent: 1668 + type: Transform + - uid: 4276 + components: + - pos: -8.5,-29.5 + parent: 1668 + type: Transform + - uid: 4277 + components: + - pos: -9.5,-29.5 + parent: 1668 + type: Transform + - uid: 4278 + components: + - pos: -10.5,-29.5 + parent: 1668 + type: Transform + - uid: 4279 + components: + - pos: -11.5,-29.5 + parent: 1668 + type: Transform + - uid: 4280 + components: + - pos: -12.5,-29.5 + parent: 1668 + type: Transform + - uid: 4281 + components: + - pos: -12.5,-28.5 + parent: 1668 + type: Transform + - uid: 4282 + components: + - pos: -12.5,-27.5 + parent: 1668 + type: Transform + - uid: 4283 + components: + - pos: -12.5,-26.5 + parent: 1668 + type: Transform + - uid: 4284 + components: + - pos: -12.5,-25.5 + parent: 1668 + type: Transform + - uid: 4285 + components: + - pos: -12.5,-24.5 + parent: 1668 + type: Transform + - uid: 4288 + components: + - pos: 11.5,-29.5 + parent: 1668 + type: Transform + - uid: 4289 + components: + - pos: 10.5,-29.5 + parent: 1668 + type: Transform + - uid: 4290 + components: + - pos: 9.5,-29.5 + parent: 1668 + type: Transform + - uid: 4291 + components: + - pos: 8.5,-29.5 + parent: 1668 + type: Transform + - uid: 4292 + components: + - pos: 7.5,-29.5 + parent: 1668 + type: Transform + - uid: 4293 + components: + - pos: 11.5,-28.5 + parent: 1668 + type: Transform + - uid: 4294 + components: + - pos: 11.5,-27.5 + parent: 1668 + type: Transform + - uid: 4295 + components: + - pos: 11.5,-26.5 + parent: 1668 + type: Transform + - uid: 4296 + components: + - pos: 11.5,-25.5 + parent: 1668 + type: Transform + - uid: 4297 + components: + - pos: 11.5,-24.5 + parent: 1668 + type: Transform + - uid: 4298 + components: + - pos: 11.5,-23.5 + parent: 1668 + type: Transform + - uid: 4300 + components: + - pos: 7.5,-24.5 + parent: 1668 + type: Transform + - uid: 4301 + components: + - pos: 5.5,-24.5 + parent: 1668 + type: Transform + - uid: 4302 + components: + - pos: 5.5,-23.5 + parent: 1668 + type: Transform + - uid: 4303 + components: + - pos: 5.5,-22.5 + parent: 1668 + type: Transform + - uid: 4304 + components: + - pos: 5.5,-21.5 + parent: 1668 + type: Transform + - uid: 4330 + components: + - pos: -2.5,-24.5 + parent: 1668 + type: Transform + - uid: 4331 + components: + - pos: -3.5,-24.5 + parent: 1668 + type: Transform + - uid: 4332 + components: + - pos: -4.5,-24.5 + parent: 1668 + type: Transform + - uid: 4333 + components: + - pos: -5.5,-24.5 + parent: 1668 + type: Transform + - uid: 4335 + components: + - pos: 1.5,-24.5 + parent: 1668 + type: Transform + - uid: 4336 + components: + - pos: 2.5,-24.5 + parent: 1668 + type: Transform + - uid: 4337 + components: + - pos: 3.5,-24.5 + parent: 1668 + type: Transform + - uid: 4338 + components: + - pos: 4.5,-24.5 + parent: 1668 + type: Transform + - uid: 4353 + components: + - pos: -8.5,-30.5 + parent: 1668 + type: Transform + - uid: 4356 + components: + - pos: -4.5,-30.5 + parent: 1668 + type: Transform + - uid: 4357 + components: + - pos: -3.5,-30.5 + parent: 1668 + type: Transform + - uid: 4358 + components: + - pos: -2.5,-30.5 + parent: 1668 + type: Transform + - uid: 4362 + components: + - pos: 1.5,-30.5 + parent: 1668 + type: Transform + - uid: 4363 + components: + - pos: 2.5,-30.5 + parent: 1668 + type: Transform + - uid: 4364 + components: + - pos: 3.5,-30.5 + parent: 1668 + type: Transform + - uid: 4368 + components: + - pos: 7.5,-30.5 + parent: 1668 + type: Transform + - uid: 4641 + components: + - pos: -15.5,-27.5 + parent: 1668 + type: Transform + - uid: 4642 + components: + - pos: -15.5,-28.5 + parent: 1668 + type: Transform + - uid: 4643 + components: + - pos: -15.5,-23.5 + parent: 1668 + type: Transform + - uid: 4644 + components: + - pos: -15.5,-22.5 + parent: 1668 + type: Transform + - uid: 4645 + components: + - pos: -15.5,-21.5 + parent: 1668 + type: Transform + - uid: 4646 + components: + - pos: -16.5,-28.5 + parent: 1668 + type: Transform + - uid: 4647 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-29.5 + parent: 1668 + type: Transform + - uid: 4648 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-30.5 + parent: 1668 + type: Transform + - uid: 4654 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-34.5 + parent: 1668 + type: Transform + - uid: 4655 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-34.5 + parent: 1668 + type: Transform + - uid: 4656 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-34.5 + parent: 1668 + type: Transform + - uid: 4657 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-34.5 + parent: 1668 + type: Transform + - uid: 4658 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-34.5 + parent: 1668 + type: Transform + - uid: 4659 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-34.5 + parent: 1668 + type: Transform + - uid: 4660 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-34.5 + parent: 1668 + type: Transform + - uid: 4661 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-34.5 + parent: 1668 + type: Transform + - uid: 4662 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-34.5 + parent: 1668 + type: Transform + - uid: 4666 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-34.5 + parent: 1668 + type: Transform + - uid: 4670 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-34.5 + parent: 1668 + type: Transform + - uid: 4674 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-34.5 + parent: 1668 + type: Transform + - uid: 4675 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-34.5 + parent: 1668 + type: Transform + - uid: 4676 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-34.5 + parent: 1668 + type: Transform + - uid: 4677 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-34.5 + parent: 1668 + type: Transform + - uid: 4678 + components: + - pos: 29.5,-13.5 + parent: 1668 + type: Transform + - uid: 4679 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-34.5 + parent: 1668 + type: Transform + - uid: 4680 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-34.5 + parent: 1668 + type: Transform + - uid: 4681 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-34.5 + parent: 1668 + type: Transform + - uid: 4682 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-32.5 + parent: 1668 + type: Transform + - uid: 4683 + components: + - pos: 14.5,-33.5 + parent: 1668 + type: Transform + - uid: 4684 + components: + - pos: 35.5,-18.5 + parent: 1668 + type: Transform + - uid: 4685 + components: + - pos: 35.5,-19.5 + parent: 1668 + type: Transform + - uid: 4686 + components: + - pos: 35.5,-20.5 + parent: 1668 + type: Transform + - uid: 4687 + components: + - pos: 35.5,-22.5 + parent: 1668 + type: Transform + - uid: 4688 + components: + - pos: 35.5,-23.5 + parent: 1668 + type: Transform + - uid: 4689 + components: + - pos: 35.5,-24.5 + parent: 1668 + type: Transform + - uid: 4690 + components: + - pos: 35.5,-21.5 + parent: 1668 + type: Transform + - uid: 4691 + components: + - pos: 35.5,-25.5 + parent: 1668 + type: Transform + - uid: 4692 + components: + - pos: 35.5,-26.5 + parent: 1668 + type: Transform + - uid: 4693 + components: + - pos: 35.5,-27.5 + parent: 1668 + type: Transform + - uid: 4699 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-34.5 + parent: 1668 + type: Transform + - uid: 4700 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-34.5 + parent: 1668 + type: Transform + - uid: 4701 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-34.5 + parent: 1668 + type: Transform + - uid: 4704 + components: + - pos: 22.5,-33.5 + parent: 1668 + type: Transform + - uid: 4705 + components: + - pos: 21.5,-33.5 + parent: 1668 + type: Transform + - uid: 4706 + components: + - pos: 26.5,-31.5 + parent: 1668 + type: Transform + - uid: 4707 + components: + - pos: 26.5,-32.5 + parent: 1668 + type: Transform + - uid: 4708 + components: + - pos: 26.5,-30.5 + parent: 1668 + type: Transform + - uid: 4709 + components: + - pos: 26.5,-29.5 + parent: 1668 + type: Transform + - uid: 4710 + components: + - pos: 26.5,-28.5 + parent: 1668 + type: Transform + - uid: 4717 + components: + - pos: 20.5,-33.5 + parent: 1668 + type: Transform + - uid: 4718 + components: + - pos: 23.5,-33.5 + parent: 1668 + type: Transform + - uid: 4719 + components: + - pos: 24.5,-33.5 + parent: 1668 + type: Transform + - uid: 4720 + components: + - pos: 18.5,-32.5 + parent: 1668 + type: Transform + - uid: 4724 + components: + - pos: 14.5,-21.5 + parent: 1668 + type: Transform + - uid: 4725 + components: + - pos: 14.5,-22.5 + parent: 1668 + type: Transform + - uid: 4726 + components: + - pos: 22.5,-27.5 + parent: 1668 + type: Transform + - uid: 4727 + components: + - pos: 21.5,-27.5 + parent: 1668 + type: Transform + - uid: 4728 + components: + - pos: 20.5,-27.5 + parent: 1668 + type: Transform + - uid: 4729 + components: + - pos: 18.5,-22.5 + parent: 1668 + type: Transform + - uid: 4730 + components: + - pos: 18.5,-23.5 + parent: 1668 + type: Transform + - uid: 4731 + components: + - pos: 18.5,-24.5 + parent: 1668 + type: Transform + - uid: 4732 + components: + - pos: 19.5,-27.5 + parent: 1668 + type: Transform + - uid: 4733 + components: + - pos: 18.5,-26.5 + parent: 1668 + type: Transform + - uid: 4734 + components: + - pos: 18.5,-27.5 + parent: 1668 + type: Transform + - uid: 4735 + components: + - pos: 18.5,-28.5 + parent: 1668 + type: Transform + - uid: 4736 + components: + - pos: 17.5,-28.5 + parent: 1668 + type: Transform + - uid: 4737 + components: + - pos: 16.5,-28.5 + parent: 1668 + type: Transform + - uid: 4738 + components: + - pos: 15.5,-28.5 + parent: 1668 + type: Transform + - uid: 4739 + components: + - pos: 14.5,-28.5 + parent: 1668 + type: Transform + - uid: 4740 + components: + - pos: 14.5,-29.5 + parent: 1668 + type: Transform + - uid: 4741 + components: + - pos: 18.5,-33.5 + parent: 1668 + type: Transform + - uid: 4742 + components: + - pos: 14.5,-31.5 + parent: 1668 + type: Transform + - uid: 4743 + components: + - pos: 22.5,-26.5 + parent: 1668 + type: Transform + - uid: 4744 + components: + - pos: 19.5,-33.5 + parent: 1668 + type: Transform + - uid: 4745 + components: + - pos: 25.5,-33.5 + parent: 1668 + type: Transform + - uid: 4747 + components: + - pos: 22.5,-23.5 + parent: 1668 + type: Transform + - uid: 4748 + components: + - pos: 22.5,-24.5 + parent: 1668 + type: Transform + - uid: 4758 + components: + - pos: 15.5,-19.5 + parent: 1668 + type: Transform + - uid: 4759 + components: + - pos: 17.5,-19.5 + parent: 1668 + type: Transform + - uid: 4760 + components: + - pos: 18.5,-19.5 + parent: 1668 + type: Transform + - uid: 4761 + components: + - pos: 18.5,-18.5 + parent: 1668 + type: Transform + - uid: 5041 + components: + - pos: 22.5,-22.5 + parent: 1668 + type: Transform + - uid: 5042 + components: + - pos: 22.5,-21.5 + parent: 1668 + type: Transform + - uid: 5043 + components: + - pos: 22.5,-20.5 + parent: 1668 + type: Transform + - uid: 5044 + components: + - pos: 22.5,-19.5 + parent: 1668 + type: Transform + - uid: 5048 + components: + - pos: 30.5,-14.5 + parent: 1668 + type: Transform + - uid: 5049 + components: + - pos: 33.5,-14.5 + parent: 1668 + type: Transform + - uid: 5050 + components: + - pos: 34.5,-14.5 + parent: 1668 + type: Transform + - uid: 5052 + components: + - pos: 31.5,-14.5 + parent: 1668 + type: Transform + - uid: 5053 + components: + - pos: 24.5,-27.5 + parent: 1668 + type: Transform + - uid: 5054 + components: + - pos: 25.5,-27.5 + parent: 1668 + type: Transform + - uid: 5055 + components: + - pos: 26.5,-27.5 + parent: 1668 + type: Transform + - uid: 5057 + components: + - pos: 28.5,-27.5 + parent: 1668 + type: Transform + - uid: 5059 + components: + - pos: 30.5,-27.5 + parent: 1668 + type: Transform + - uid: 5060 + components: + - pos: 31.5,-27.5 + parent: 1668 + type: Transform + - uid: 5061 + components: + - pos: 32.5,-27.5 + parent: 1668 + type: Transform + - uid: 5062 + components: + - pos: 33.5,-27.5 + parent: 1668 + type: Transform + - uid: 5063 + components: + - pos: 34.5,-27.5 + parent: 1668 + type: Transform + - uid: 5102 + components: + - pos: 29.5,-15.5 + parent: 1668 + type: Transform + - uid: 5103 + components: + - pos: 29.5,-19.5 + parent: 1668 + type: Transform + - uid: 5104 + components: + - pos: 28.5,-19.5 + parent: 1668 + type: Transform + - uid: 5105 + components: + - pos: 27.5,-19.5 + parent: 1668 + type: Transform + - uid: 5106 + components: + - pos: 23.5,-19.5 + parent: 1668 + type: Transform + - uid: 5107 + components: + - pos: 28.5,-20.5 + parent: 1668 + type: Transform + - uid: 5113 + components: + - pos: 28.5,-26.5 + parent: 1668 + type: Transform + - uid: 5119 + components: + - pos: 30.5,-19.5 + parent: 1668 + type: Transform + - uid: 5120 + components: + - pos: 34.5,-19.5 + parent: 1668 + type: Transform + - uid: 5344 + components: + - pos: 33.5,-32.5 + parent: 1668 + type: Transform + - uid: 5355 + components: + - pos: 31.5,-32.5 + parent: 1668 + type: Transform + - uid: 5388 + components: + - pos: 18.5,-31.5 + parent: 1668 + type: Transform + - uid: 5390 + components: + - pos: 18.5,-29.5 + parent: 1668 + type: Transform + - uid: 5392 + components: + - pos: 32.5,-32.5 + parent: 1668 + type: Transform + - uid: 5396 + components: + - pos: 26.5,-33.5 + parent: 1668 + type: Transform + - uid: 5405 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-31.5 + parent: 1668 + type: Transform + - uid: 5409 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-31.5 + parent: 1668 + type: Transform + - uid: 5784 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-34.5 + parent: 1668 + type: Transform + - uid: 5864 + components: + - pos: -17.5,-28.5 + parent: 1668 + type: Transform + - uid: 5879 + components: + - pos: -3.5,-39.5 + parent: 1668 + type: Transform + - uid: 5881 + components: + - pos: -3.5,-40.5 + parent: 1668 + type: Transform + - uid: 5882 + components: + - pos: -2.5,-38.5 + parent: 1668 + type: Transform + - uid: 5905 + components: + - pos: -3.5,-38.5 + parent: 1668 + type: Transform + - uid: 5909 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-34.5 + parent: 1668 + type: Transform + - uid: 5913 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-34.5 + parent: 1668 + type: Transform + - uid: 5917 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-30.5 + parent: 1668 + type: Transform + - uid: 5918 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-30.5 + parent: 1668 + type: Transform + - uid: 5919 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-30.5 + parent: 1668 + type: Transform + - uid: 5920 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-30.5 + parent: 1668 + type: Transform + - uid: 5921 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-30.5 + parent: 1668 + type: Transform + - uid: 5930 + components: + - pos: -15.5,-33.5 + parent: 1668 + type: Transform + - uid: 5931 + components: + - pos: -15.5,-31.5 + parent: 1668 + type: Transform + - uid: 5941 + components: + - pos: -17.5,-27.5 + parent: 1668 + type: Transform + - uid: 5942 + components: + - pos: -16.5,-22.5 + parent: 1668 + type: Transform + - uid: 5943 + components: + - pos: -17.5,-22.5 + parent: 1668 + type: Transform + - uid: 5944 + components: + - pos: -17.5,-23.5 + parent: 1668 + type: Transform + - uid: 5963 + components: + - pos: -21.5,-30.5 + parent: 1668 + type: Transform + - uid: 5964 + components: + - pos: -21.5,-29.5 + parent: 1668 + type: Transform + - uid: 5965 + components: + - pos: -22.5,-29.5 + parent: 1668 + type: Transform + - uid: 5966 + components: + - pos: -23.5,-29.5 + parent: 1668 + type: Transform + - uid: 5967 + components: + - pos: -23.5,-21.5 + parent: 1668 + type: Transform + - uid: 5968 + components: + - pos: -22.5,-21.5 + parent: 1668 + type: Transform + - uid: 5969 + components: + - pos: -21.5,-21.5 + parent: 1668 + type: Transform + - uid: 5970 + components: + - pos: -17.5,-21.5 + parent: 1668 + type: Transform + - uid: 5971 + components: + - pos: -16.5,-21.5 + parent: 1668 + type: Transform + - uid: 5972 + components: + - pos: -23.5,-28.5 + parent: 1668 + type: Transform + - uid: 5973 + components: + - pos: -23.5,-22.5 + parent: 1668 + type: Transform + - uid: 5974 + components: + - pos: -21.5,-28.5 + parent: 1668 + type: Transform + - uid: 5975 + components: + - pos: -21.5,-22.5 + parent: 1668 + type: Transform + - uid: 6101 + components: + - pos: 28.5,-32.5 + parent: 1668 + type: Transform + - uid: 6233 + components: + - pos: -6.5,-35.5 + parent: 1668 + type: Transform + - uid: 6234 + components: + - pos: -6.5,-36.5 + parent: 1668 + type: Transform + - uid: 6235 + components: + - pos: -6.5,-37.5 + parent: 1668 + type: Transform + - uid: 6236 + components: + - pos: -6.5,-38.5 + parent: 1668 + type: Transform + - uid: 6237 + components: + - pos: -5.5,-38.5 + parent: 1668 + type: Transform + - uid: 6238 + components: + - pos: -4.5,-38.5 + parent: 1668 + type: Transform + - uid: 6241 + components: + - pos: 1.5,-38.5 + parent: 1668 + type: Transform + - uid: 6242 + components: + - pos: 2.5,-38.5 + parent: 1668 + type: Transform + - uid: 6246 + components: + - pos: 3.5,-38.5 + parent: 1668 + type: Transform + - uid: 6247 + components: + - pos: 4.5,-38.5 + parent: 1668 + type: Transform + - uid: 6248 + components: + - pos: 5.5,-38.5 + parent: 1668 + type: Transform + - uid: 6249 + components: + - pos: 5.5,-37.5 + parent: 1668 + type: Transform + - uid: 6250 + components: + - pos: 5.5,-36.5 + parent: 1668 + type: Transform + - uid: 6251 + components: + - pos: 5.5,-35.5 + parent: 1668 + type: Transform + - uid: 6271 + components: + - pos: -2.5,-40.5 + parent: 1668 + type: Transform + - uid: 6272 + components: + - pos: 2.5,-39.5 + parent: 1668 + type: Transform + - uid: 6273 + components: + - pos: 2.5,-40.5 + parent: 1668 + type: Transform + - uid: 6274 + components: + - pos: 1.5,-40.5 + parent: 1668 + type: Transform + - uid: 6292 + components: + - pos: -3.5,-44.5 + parent: 1668 + type: Transform + - uid: 6293 + components: + - pos: -3.5,-45.5 + parent: 1668 + type: Transform + - uid: 6294 + components: + - pos: -3.5,-46.5 + parent: 1668 + type: Transform + - uid: 6297 + components: + - pos: 2.5,-44.5 + parent: 1668 + type: Transform + - uid: 6298 + components: + - pos: 2.5,-45.5 + parent: 1668 + type: Transform + - uid: 6299 + components: + - pos: 2.5,-46.5 + parent: 1668 + type: Transform + - uid: 6361 + components: + - pos: -4.5,-44.5 + parent: 1668 + type: Transform + - uid: 6362 + components: + - pos: -5.5,-44.5 + parent: 1668 + type: Transform + - uid: 6363 + components: + - pos: -6.5,-44.5 + parent: 1668 + type: Transform + - uid: 6364 + components: + - pos: -7.5,-44.5 + parent: 1668 + type: Transform + - uid: 6365 + components: + - pos: -7.5,-43.5 + parent: 1668 + type: Transform + - uid: 6366 + components: + - pos: -7.5,-42.5 + parent: 1668 + type: Transform + - uid: 6367 + components: + - pos: -7.5,-41.5 + parent: 1668 + type: Transform + - uid: 6368 + components: + - pos: -7.5,-40.5 + parent: 1668 + type: Transform + - uid: 6369 + components: + - pos: -7.5,-39.5 + parent: 1668 + type: Transform + - uid: 6370 + components: + - pos: -7.5,-38.5 + parent: 1668 + type: Transform + - uid: 6371 + components: + - pos: -7.5,-37.5 + parent: 1668 + type: Transform + - uid: 6372 + components: + - pos: -7.5,-36.5 + parent: 1668 + type: Transform + - uid: 6373 + components: + - pos: -7.5,-35.5 + parent: 1668 + type: Transform + - uid: 6374 + components: + - pos: 6.5,-35.5 + parent: 1668 + type: Transform + - uid: 6375 + components: + - pos: 6.5,-36.5 + parent: 1668 + type: Transform + - uid: 6376 + components: + - pos: 6.5,-37.5 + parent: 1668 + type: Transform + - uid: 6377 + components: + - pos: 6.5,-38.5 + parent: 1668 + type: Transform + - uid: 6378 + components: + - pos: 6.5,-39.5 + parent: 1668 + type: Transform + - uid: 6379 + components: + - pos: 6.5,-40.5 + parent: 1668 + type: Transform + - uid: 6380 + components: + - pos: 6.5,-41.5 + parent: 1668 + type: Transform + - uid: 6381 + components: + - pos: 6.5,-42.5 + parent: 1668 + type: Transform + - uid: 6382 + components: + - pos: 6.5,-43.5 + parent: 1668 + type: Transform + - uid: 6383 + components: + - pos: 6.5,-44.5 + parent: 1668 + type: Transform + - uid: 6384 + components: + - pos: 5.5,-44.5 + parent: 1668 + type: Transform + - uid: 6385 + components: + - pos: 4.5,-44.5 + parent: 1668 + type: Transform + - uid: 6386 + components: + - pos: 3.5,-44.5 + parent: 1668 + type: Transform + - uid: 6387 + components: + - pos: 2.5,-43.5 + parent: 1668 + type: Transform + - uid: 6388 + components: + - pos: 2.5,-41.5 + parent: 1668 + type: Transform + - uid: 6389 + components: + - pos: -3.5,-43.5 + parent: 1668 + type: Transform + - uid: 6390 + components: + - pos: -3.5,-41.5 + parent: 1668 + type: Transform + - uid: 6534 + components: + - pos: 7.5,-35.5 + parent: 1668 + type: Transform + - uid: 6535 + components: + - pos: 8.5,-35.5 + parent: 1668 + type: Transform + - uid: 6536 + components: + - pos: 9.5,-35.5 + parent: 1668 + type: Transform + - uid: 6537 + components: + - pos: 10.5,-35.5 + parent: 1668 + type: Transform + - uid: 6538 + components: + - pos: 11.5,-35.5 + parent: 1668 + type: Transform + - uid: 6539 + components: + - pos: 12.5,-35.5 + parent: 1668 + type: Transform + - uid: 6540 + components: + - pos: 13.5,-35.5 + parent: 1668 + type: Transform + - uid: 6541 + components: + - pos: 14.5,-35.5 + parent: 1668 + type: Transform + - uid: 6542 + components: + - pos: 15.5,-35.5 + parent: 1668 + type: Transform + - uid: 6543 + components: + - pos: 15.5,-34.5 + parent: 1668 + type: Transform + - uid: 6544 + components: + - pos: 15.5,-33.5 + parent: 1668 + type: Transform + - uid: 6545 + components: + - pos: 16.5,-33.5 + parent: 1668 + type: Transform + - uid: 6546 + components: + - pos: 17.5,-33.5 + parent: 1668 + type: Transform + - uid: 6772 + components: + - pos: 27.5,-32.5 + parent: 1668 + type: Transform + - uid: 6778 + components: + - pos: 30.5,-32.5 + parent: 1668 + type: Transform + - uid: 6785 + components: + - pos: 29.5,-32.5 + parent: 1668 + type: Transform + - uid: 6788 + components: + - pos: 29.5,-27.5 + parent: 1668 + type: Transform + - uid: 6842 + components: + - pos: 34.5,-32.5 + parent: 1668 + type: Transform +- proto: WardrobeCargoFilled + entities: + - uid: 2208 + components: + - pos: -5.5,19.5 + parent: 1668 + type: Transform +- proto: WardrobePrisonFilled + entities: + - uid: 2765 + components: + - pos: 15.5,21.5 + parent: 1668 + type: Transform + - uid: 2773 + components: + - pos: 15.5,24.5 + parent: 1668 + type: Transform + - uid: 2871 + components: + - pos: 2.5,24.5 + parent: 1668 + type: Transform + - uid: 2872 + components: + - pos: 2.5,27.5 + parent: 1668 + type: Transform + - uid: 2873 + components: + - pos: 15.5,27.5 + parent: 1668 + type: Transform +- proto: WarpPoint + entities: + - uid: 6637 + components: + - pos: -0.5,3.5 + parent: 1668 + type: Transform + - location: Centcomm + type: WarpPoint +- proto: WaterCooler + entities: + - uid: 5318 + components: + - pos: 27.5,-20.5 + parent: 1668 + type: Transform +- proto: WaterTankFull + entities: + - uid: 128 + components: + - pos: -27.5,2.5 + parent: 1668 + type: Transform + - uid: 2042 + components: + - pos: -1.5,18.5 + parent: 1668 + type: Transform +- proto: WeaponAdvancedLaser + entities: + - uid: 3130 + components: + - pos: 10.557603,32.615883 + parent: 1668 + type: Transform + - uid: 3131 + components: + - pos: 10.604478,32.490883 + parent: 1668 + type: Transform + - uid: 3132 + components: + - pos: 10.651353,32.365883 + parent: 1668 + type: Transform +- proto: WeaponCapacitorRecharger + entities: + - uid: 1446 + components: + - pos: 2.5,-2.5 + parent: 1668 + type: Transform + - uid: 1447 + components: + - pos: 10.5,3.5 + parent: 1668 + type: Transform + - uid: 1449 + components: + - pos: -6.5,-13.5 + parent: 1668 + type: Transform + - uid: 2471 + components: + - pos: 23.5,15.5 + parent: 1668 + type: Transform + - uid: 2747 + components: + - pos: 8.5,17.5 + parent: 1668 + type: Transform + - uid: 2824 + components: + - pos: 10.5,27.5 + parent: 1668 + type: Transform + - uid: 3261 + components: + - pos: 8.5,23.5 + parent: 1668 + type: Transform + - uid: 3734 + components: + - pos: -26.5,9.5 + parent: 1668 + type: Transform + - uid: 3859 + components: + - pos: -17.5,-3.5 + parent: 1668 + type: Transform + - uid: 4695 + components: + - pos: 24.5,-9.5 + parent: 1668 + type: Transform +- proto: WeaponDisabler + entities: + - uid: 4697 + components: + - pos: 20.88646,-10.507892 + parent: 1668 + type: Transform + - uid: 6548 + components: + - pos: 5.3912725,-39.402473 + parent: 1668 + type: Transform +- proto: WeaponPistolMk58 + entities: + - uid: 3902 + components: + - pos: -12.469432,-9.508516 + parent: 1668 + type: Transform +- proto: WeaponPulseCarbine + entities: + - uid: 2202 + components: + - pos: 6.5531197,32.415283 + parent: 1668 + type: Transform + - uid: 2203 + components: + - pos: 6.5062447,32.64966 + parent: 1668 + type: Transform + - uid: 3124 + components: + - pos: 12.544843,32.634033 + parent: 1668 + type: Transform + - uid: 3125 + components: + - pos: 12.669843,32.477783 + parent: 1668 + type: Transform +- proto: WeaponPulsePistol + entities: + - uid: 4389 + components: + - pos: 5.546056,32.663063 + parent: 1668 + type: Transform + - uid: 4390 + components: + - pos: 5.686681,32.522438 + parent: 1668 + type: Transform + - uid: 4721 + components: + - pos: 13.653802,32.491188 + parent: 1668 + type: Transform + - uid: 4722 + components: + - pos: 13.481927,32.663063 + parent: 1668 + type: Transform +- proto: WeaponRevolverDeckard + entities: + - uid: 3768 + components: + - pos: -12.392023,4.511138 + parent: 1668 + type: Transform +- proto: WeaponRevolverMateba + entities: + - uid: 1436 + components: + - pos: 2.4898672,30.350563 + parent: 1668 + type: Transform + - uid: 1445 + components: + - pos: 2.6461172,30.288063 + parent: 1668 + type: Transform + - uid: 1456 + components: + - pos: 16.456459,30.319313 + parent: 1668 + type: Transform + - uid: 6611 + components: + - pos: 16.628334,30.272438 + parent: 1668 + type: Transform +- proto: WeaponSniperHristov + entities: + - uid: 3138 + components: + - pos: 8.479478,29.789814 + parent: 1668 + type: Transform +- proto: WeaponSubMachineGunAtreides + entities: + - uid: 6603 + components: + - pos: 8.51666,29.42835 + parent: 1668 + type: Transform +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 3129 + components: + - pos: 4.532072,18.989985 + parent: 1668 + type: Transform + - uid: 3895 + components: + - pos: -13.438182,-3.4256558 + parent: 1668 + type: Transform +- proto: WeaponTaser + entities: + - uid: 79 + components: + - pos: 10.5444565,3.9803991 + parent: 1668 + type: Transform + - uid: 1459 + components: + - pos: -4.4574313,-9.606358 + parent: 1668 + type: Transform + - uid: 3727 + components: + - pos: -25.555511,12.593331 + parent: 1668 + type: Transform + - uid: 6780 + components: + - pos: 26.613934,-11.4401045 + parent: 1668 + type: Transform +- proto: WeaponXrayCannon + entities: + - uid: 3136 + components: + - pos: 8.510728,32.664814 + parent: 1668 + type: Transform + - uid: 3137 + components: + - pos: 8.526353,32.55544 + parent: 1668 + type: Transform +- proto: WelderExperimental + entities: + - uid: 3699 + components: + - pos: -16.435745,6.6259594 + parent: 1668 + type: Transform + - uid: 4394 + components: + - pos: 21.568373,-15.468605 + parent: 1668 + type: Transform +- proto: WelderIndustrial + entities: + - uid: 5374 + components: + - pos: 26.560297,-23.266705 + parent: 1668 + type: Transform +- proto: WelderIndustrialAdvanced + entities: + - uid: 2196 + components: + - pos: -1.3562617,24.407354 + parent: 1668 + type: Transform +- proto: WeldingFuelTankFull + entities: + - uid: 127 + components: + - pos: -26.5,6.5 + parent: 1668 + type: Transform + - uid: 2041 + components: + - pos: 0.5,18.5 + parent: 1668 + type: Transform +- proto: WeldingFuelTankHighCapacity + entities: + - uid: 6843 + components: + - pos: 26.5,-13.5 + parent: 1668 + type: Transform + - uid: 6844 + components: + - pos: 25.5,-13.5 + parent: 1668 + type: Transform +- proto: WetFloorSign + entities: + - uid: 5883 + components: + - pos: -17.066446,-31.95819 + parent: 1668 + type: Transform +- proto: Windoor + entities: + - uid: 563 + components: + - pos: 12.5,2.5 + parent: 1668 + type: Transform + - uid: 564 + components: + - pos: 14.5,2.5 + parent: 1668 + type: Transform + - uid: 2409 + components: + - pos: 25.5,20.5 + parent: 1668 + type: Transform + - uid: 2410 + components: + - pos: 31.5,20.5 + parent: 1668 + type: Transform + - uid: 2710 + components: + - pos: 9.5,16.5 + parent: 1668 + type: Transform + - uid: 4255 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-16.5 + parent: 1668 + type: Transform + - uid: 6848 + components: + - pos: 3.5,-17.5 + parent: 1668 + type: Transform +- proto: WindoorBarLocked + entities: + - uid: 4410 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-28.5 + parent: 1668 + type: Transform +- proto: WindoorSecure + entities: + - uid: 2345 + components: + - pos: 34.5,14.5 + parent: 1668 + type: Transform + - uid: 3760 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,11.5 + parent: 1668 + type: Transform + - uid: 3761 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,9.5 + parent: 1668 + type: Transform +- proto: WindoorSecureArmoryLocked + entities: + - uid: 2554 + components: + - rot: 3.141592653589793 rad + pos: 9.5,16.5 + parent: 1668 + type: Transform +- proto: WindoorSecureBrigLocked + entities: + - uid: 2425 + components: + - pos: 28.5,20.5 + parent: 1668 + type: Transform +- proto: WindoorSecureCargoLocked + entities: + - uid: 1621 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,9.5 + parent: 1668 + type: Transform + - uid: 1622 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,10.5 + parent: 1668 + type: Transform +- proto: WindoorSecureCommandLocked + entities: + - uid: 4230 + components: + - pos: -12.5,-3.5 + parent: 1668 + type: Transform + - uid: 4231 + components: + - pos: -13.5,-3.5 + parent: 1668 + type: Transform + - uid: 4232 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-9.5 + parent: 1668 + type: Transform + - uid: 4233 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-9.5 + parent: 1668 + type: Transform +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 4757 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-22.5 + parent: 1668 + type: Transform +- proto: WindoorSecureMedicalLocked + entities: + - uid: 732 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 1668 + type: Transform + - uid: 734 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 1668 + type: Transform + - uid: 1198 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-15.5 + parent: 1668 + type: Transform +- proto: WindoorSecureSecurityLocked + entities: + - uid: 497 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-7.5 + parent: 1668 + type: Transform + - uid: 561 + components: + - rot: 3.141592653589793 rad + pos: 12.5,2.5 + parent: 1668 + type: Transform + - uid: 562 + components: + - rot: 3.141592653589793 rad + pos: 14.5,2.5 + parent: 1668 + type: Transform + - uid: 790 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 1668 + type: Transform + - uid: 791 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-12.5 + parent: 1668 + type: Transform + - uid: 2558 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,22.5 + parent: 1668 + type: Transform + - links: + - 6649 + type: DeviceLinkSink + - uid: 2776 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,25.5 + parent: 1668 + type: Transform + - links: + - 3906 + type: DeviceLinkSink + - uid: 2832 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,25.5 + parent: 1668 + type: Transform + - links: + - 3723 + type: DeviceLinkSink + - uid: 2862 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,28.5 + parent: 1668 + type: Transform + - links: + - 6602 + type: DeviceLinkSink + - uid: 2863 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,28.5 + parent: 1668 + type: Transform + - links: + - 3870 + type: DeviceLinkSink +- proto: WindowReinforcedDirectional + entities: + - uid: 485 + components: + - pos: 25.5,6.5 + parent: 1668 + type: Transform + - uid: 487 + components: + - pos: 26.5,6.5 + parent: 1668 + type: Transform + - uid: 488 + components: + - pos: 27.5,6.5 + parent: 1668 + type: Transform + - uid: 490 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-7.5 + parent: 1668 + type: Transform + - uid: 496 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-7.5 + parent: 1668 + type: Transform + - uid: 619 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-7.5 + parent: 1668 + type: Transform + - uid: 626 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 1668 + type: Transform + - uid: 1086 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-9.5 + parent: 1668 + type: Transform + - uid: 1087 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-9.5 + parent: 1668 + type: Transform + - uid: 1197 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-15.5 + parent: 1668 + type: Transform + - uid: 2395 + components: + - pos: 26.5,22.5 + parent: 1668 + type: Transform + - uid: 2396 + components: + - pos: 25.5,22.5 + parent: 1668 + type: Transform + - uid: 2397 + components: + - pos: 31.5,22.5 + parent: 1668 + type: Transform + - uid: 2398 + components: + - pos: 30.5,22.5 + parent: 1668 + type: Transform + - uid: 2399 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,21.5 + parent: 1668 + type: Transform + - uid: 2400 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,21.5 + parent: 1668 + type: Transform + - uid: 2401 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,20.5 + parent: 1668 + type: Transform + - uid: 2402 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,21.5 + parent: 1668 + type: Transform + - uid: 2403 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,20.5 + parent: 1668 + type: Transform + - uid: 2404 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,21.5 + parent: 1668 + type: Transform + - uid: 2405 + components: + - pos: 27.5,20.5 + parent: 1668 + type: Transform + - uid: 2406 + components: + - pos: 29.5,20.5 + parent: 1668 + type: Transform + - uid: 2407 + components: + - pos: 30.5,20.5 + parent: 1668 + type: Transform + - uid: 2408 + components: + - pos: 26.5,20.5 + parent: 1668 + type: Transform + - uid: 2440 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-15.5 + parent: 1668 + type: Transform + - uid: 3757 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,8.5 + parent: 1668 + type: Transform + - uid: 3758 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,12.5 + parent: 1668 + type: Transform + - uid: 3759 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,10.5 + parent: 1668 + type: Transform + - uid: 3892 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-3.5 + parent: 1668 + type: Transform + - uid: 3893 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-3.5 + parent: 1668 + type: Transform + - uid: 4254 + components: + - pos: 2.5,-17.5 + parent: 1668 + type: Transform + - uid: 4411 + components: + - pos: 7.5,-27.5 + parent: 1668 + type: Transform + - uid: 5217 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 1668 + type: Transform + - uid: 5219 + components: + - pos: 4.5,-17.5 + parent: 1668 + type: Transform + - uid: 5386 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-28.5 + parent: 1668 + type: Transform + - uid: 5397 + components: + - pos: 19.5,-29.5 + parent: 1668 + type: Transform + - uid: 5398 + components: + - pos: 20.5,-29.5 + parent: 1668 + type: Transform + - uid: 5410 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-29.5 + parent: 1668 + type: Transform + - uid: 5411 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 1668 + type: Transform + - uid: 5416 + components: + - pos: 24.5,-29.5 + parent: 1668 + type: Transform + - uid: 5417 + components: + - pos: 25.5,-29.5 + parent: 1668 + type: Transform + - uid: 5453 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-17.5 + parent: 1668 + type: Transform + - uid: 5454 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-16.5 + parent: 1668 + type: Transform + - uid: 5928 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-31.5 + parent: 1668 + type: Transform + - uid: 5929 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-32.5 + parent: 1668 + type: Transform + - uid: 6314 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-29.5 + parent: 1668 + type: Transform + - uid: 6787 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 1668 + type: Transform +- proto: Wrench + entities: + - uid: 6720 + components: + - pos: 9.506623,-4.4162817 + parent: 1668 + type: Transform +- proto: YellowOxygenTankFilled + entities: + - uid: 3901 + components: + - pos: -12.625682,-7.0710163 + parent: 1668 + type: Transform +... diff --git a/Resources/Maps/edge.yml b/Resources/Maps/edge.yml index 88042c3996..cec7153529 100644 --- a/Resources/Maps/edge.yml +++ b/Resources/Maps/edge.yml @@ -5,59 +5,59 @@ tilemap: 0: Space 1: FloorArcadeBlue 2: FloorArcadeBlue2 - 12: FloorBar - 14: FloorBlue - 15: FloorBlueCircuit - 18: FloorCarpetClown - 19: FloorCarpetOffice - 23: FloorConcrete - 24: FloorConcreteMono - 26: FloorDark - 30: FloorDarkMini - 31: FloorDarkMono - 34: FloorDarkPavementVertical - 35: FloorDarkPlastic - 38: FloorEighties - 41: FloorFreezer - 42: FloorGlass - 44: FloorGrass - 47: FloorGrassLight - 49: FloorGrayConcreteMono - 51: FloorGreenCircuit - 52: FloorGym - 53: FloorHull - 54: FloorHullReinforced - 55: FloorHydro - 57: FloorKitchen - 58: FloorLaundry - 61: FloorMetalDiamond - 62: FloorMime - 63: FloorMono - 66: FloorOldConcreteSmooth - 68: FloorPlanetGrass - 70: FloorRGlass - 71: FloorReinforced - 72: FloorReinforcedHardened - 74: FloorShowroom - 76: FloorShuttleOrange - 78: FloorShuttleRed - 79: FloorShuttleWhite - 83: FloorSteel - 84: FloorSteelCheckerDark - 89: FloorSteelHerringbone - 91: FloorSteelMono - 93: FloorSteelPavement - 94: FloorSteelPavementVertical - 95: FloorTechMaint - 96: FloorTechMaint2 - 97: FloorTechMaint3 - 99: FloorWhite - 100: FloorWhiteDiagonal - 108: FloorWhitePlastic - 109: FloorWood - 110: FloorWoodTile - 111: Lattice - 112: Plating + 14: FloorBar + 17: FloorBlue + 18: FloorBlueCircuit + 21: FloorCarpetClown + 22: FloorCarpetOffice + 27: FloorConcrete + 28: FloorConcreteMono + 30: FloorDark + 34: FloorDarkMini + 35: FloorDarkMono + 38: FloorDarkPavementVertical + 39: FloorDarkPlastic + 42: FloorEighties + 45: FloorFreezer + 46: FloorGlass + 48: FloorGrass + 51: FloorGrassLight + 53: FloorGrayConcreteMono + 55: FloorGreenCircuit + 56: FloorGym + 57: FloorHull + 58: FloorHullReinforced + 59: FloorHydro + 61: FloorKitchen + 62: FloorLaundry + 65: FloorMetalDiamond + 66: FloorMime + 70: FloorMono + 73: FloorOldConcreteSmooth + 75: FloorPlanetGrass + 77: FloorRGlass + 78: FloorReinforced + 79: FloorReinforcedHardened + 81: FloorShowroom + 83: FloorShuttleOrange + 85: FloorShuttleRed + 86: FloorShuttleWhite + 90: FloorSteel + 92: FloorSteelCheckerDark + 98: FloorSteelHerringbone + 101: FloorSteelMono + 103: FloorSteelPavement + 104: FloorSteelPavementVertical + 105: FloorTechMaint + 106: FloorTechMaint2 + 107: FloorTechMaint3 + 109: FloorWhite + 110: FloorWhiteDiagonal + 118: FloorWhitePlastic + 119: FloorWood + 120: FloorWoodTile + 121: Lattice + 122: Plating entities: - proto: "" entities: @@ -81,273 +81,273 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: UwAAAAACKgAAAAAAKgAAAAACcAAAAAAAUwAAAAACUwAAAAADKgAAAAABKgAAAAABUwAAAAABUwAAAAACKgAAAAABUwAAAAABKgAAAAAAKgAAAAACUwAAAAADKgAAAAACKgAAAAACUwAAAAACUwAAAAABXwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAAAKgAAAAAAUwAAAAABUwAAAAAAKgAAAAACUwAAAAAAKgAAAAAAUwAAAAADLwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAABLwAAAAADKgAAAAADUwAAAAACLwAAAAAAcAAAAAAAYQAAAAABYQAAAAAAcAAAAAAAYQAAAAAAYQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAPwAAAAAAPwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACKgAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYwAAAAADKgAAAAADKgAAAAABKgAAAAABKgAAAAADYwAAAAACYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAACYwAAAAADYwAAAAACYwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAADYwAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAADYwAAAAADYwAAAAABYwAAAAADYQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAYAAAAAAAYwAAAAABYwAAAAADYwAAAAACPwAAAAAAYwAAAAACYwAAAAAAYwAAAAADYwAAAAABYwAAAAABYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAABYwAAAAADcAAAAAAAYwAAAAADYwAAAAABYwAAAAADYwAAAAACYwAAAAACYwAAAAADYQAAAAAAYQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAABYwAAAAAAcAAAAAAAcAAAAAAAPwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAABcAAAAAAAYwAAAAADYwAAAAACYwAAAAADcAAAAAAAYwAAAAAAYwAAAAACYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAABYwAAAAABPwAAAAAAYwAAAAAAYwAAAAADYwAAAAAAcAAAAAAAYwAAAAAAZAAAAAABYQAAAAABYQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAACYwAAAAABcAAAAAAAYwAAAAACYwAAAAAAYwAAAAAAPwAAAAAAYwAAAAADZAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAADYwAAAAACcAAAAAAAYwAAAAABYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAYQAAAAACYQAAAAADYAAAAAAAYwAAAAAAYwAAAAACYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAADYQAAAAACYQAAAAABcAAAAAAAYwAAAAACYwAAAAABYwAAAAACYwAAAAABYwAAAAADYwAAAAAC + tiles: WgAAAAACLgAAAAAALgAAAAACegAAAAAAWgAAAAACWgAAAAADLgAAAAABLgAAAAABWgAAAAABWgAAAAACLgAAAAABWgAAAAABLgAAAAAALgAAAAACWgAAAAADLgAAAAACLgAAAAACWgAAAAACWgAAAAABaQAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAABWgAAAAABWgAAAAACWgAAAAAALgAAAAAAWgAAAAABWgAAAAAALgAAAAACWgAAAAAALgAAAAAAWgAAAAADMwAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAMwAAAAABWgAAAAABWgAAAAACWgAAAAABWgAAAAABMwAAAAADLgAAAAADWgAAAAACMwAAAAAAegAAAAAAawAAAAABawAAAAAAegAAAAAAawAAAAAAawAAAAABegAAAAAAegAAAAAAegAAAAAARgAAAAAARgAAAAAAegAAAAAAegAAAAAAWgAAAAACLgAAAAADWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAbQAAAAADLgAAAAADLgAAAAABLgAAAAABLgAAAAADbQAAAAACagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAAAbQAAAAACbQAAAAADbQAAAAACbQAAAAAAbQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAAAbQAAAAADbQAAAAAAegAAAAAAbQAAAAAAbQAAAAAAbQAAAAADbQAAAAADbQAAAAABbQAAAAADawAAAAADegAAAAAAegAAAAAAegAAAAAAawAAAAAAagAAAAAAbQAAAAABbQAAAAADbQAAAAACRgAAAAAAbQAAAAACbQAAAAAAbQAAAAADbQAAAAABbQAAAAABbQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAABbQAAAAADegAAAAAAbQAAAAADbQAAAAABbQAAAAADbQAAAAACbQAAAAACbQAAAAADawAAAAAAawAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAABbQAAAAAAegAAAAAAegAAAAAARgAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAAAbQAAAAAAbQAAAAABegAAAAAAbQAAAAADbQAAAAACbQAAAAADegAAAAAAbQAAAAAAbQAAAAACagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAABbQAAAAABRgAAAAAAbQAAAAAAbQAAAAADbQAAAAAAegAAAAAAbQAAAAAAbgAAAAABawAAAAABawAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAACbQAAAAABegAAAAAAbQAAAAACbQAAAAAAbQAAAAAARgAAAAAAbQAAAAADbgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAAAbQAAAAADbQAAAAACegAAAAAAbQAAAAABbQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAAAawAAAAACawAAAAADagAAAAAAbQAAAAAAbQAAAAACbQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAADawAAAAACawAAAAABegAAAAAAbQAAAAACbQAAAAABbQAAAAACbQAAAAABbQAAAAADbQAAAAAC version: 6 0,-1: ind: 0,-1 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADcAAAAAAAUwAAAAAAKgAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACKgAAAAAAUwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAABRgAAAAADUwAAAAAAKgAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAABRwAAAAAAYQAAAAAAYQAAAAABcAAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAACRgAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAACRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARgAAAAACcAAAAAAARwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAACcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAADRwAAAAAAcAAAAAAAYQAAAAACYQAAAAAAcAAAAAAAKgAAAAAAKgAAAAAAKgAAAAACKgAAAAACKgAAAAABRgAAAAACUwAAAAABKgAAAAADKgAAAAAAKgAAAAAAUwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARgAAAAADRgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAAARwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAARwAAAAAAYAAAAAAAUwAAAAAAKgAAAAAAKgAAAAADUwAAAAACUwAAAAABKgAAAAAAKgAAAAADUwAAAAAARgAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAACRwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAABRwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAADcAAAAAAAUwAAAAAAUwAAAAACKgAAAAAAKgAAAAADUwAAAAAAUwAAAAAAUwAAAAACKgAAAAABUwAAAAAAcAAAAAAAUwAAAAAAKgAAAAAAKgAAAAAAKgAAAAABUwAAAAADXwAAAAAAUwAAAAAAUwAAAAABKgAAAAACKgAAAAAAUwAAAAAAUwAAAAACKgAAAAADUwAAAAAALwAAAAADcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAARgAAAAAAcAAAAAAAcAAAAAAARgAAAAABcAAAAAAAKgAAAAAAUwAAAAAALwAAAAABcAAAAAAAcAAAAAAAcAAAAAAARgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAALwAAAAAALwAAAAABUwAAAAADUwAAAAABKgAAAAAAUwAAAAABUwAAAAADXwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAADKgAAAAAAUwAAAAAAUwAAAAADKgAAAAAAUwAAAAAD + tiles: egAAAAAAegAAAAAAegAAAAAAAQAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAADegAAAAAAWgAAAAAALgAAAAAAWgAAAAAAWgAAAAACWgAAAAABWgAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAADegAAAAAAegAAAAAAegAAAAAAWgAAAAACLgAAAAAAWgAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAagAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAABTQAAAAADWgAAAAAALgAAAAADWgAAAAADWgAAAAABWgAAAAACWgAAAAABTgAAAAAAawAAAAAAawAAAAABegAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAAAWgAAAAACTQAAAAACWgAAAAABWgAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAACTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAACegAAAAAATgAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAACegAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAAAWgAAAAADTgAAAAAAegAAAAAAawAAAAACawAAAAAAegAAAAAALgAAAAAALgAAAAAALgAAAAACLgAAAAACLgAAAAABTQAAAAACWgAAAAABLgAAAAADLgAAAAAALgAAAAAAWgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAADTQAAAAACegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAAATgAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAACegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAATgAAAAAAagAAAAAAWgAAAAAALgAAAAAALgAAAAADWgAAAAACWgAAAAABLgAAAAAALgAAAAADWgAAAAAATQAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAABWgAAAAACTgAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAACWgAAAAACWgAAAAAAWgAAAAACWgAAAAABegAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAABWgAAAAABTgAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAABWgAAAAADegAAAAAAWgAAAAAAWgAAAAACLgAAAAAALgAAAAADWgAAAAAAWgAAAAAAWgAAAAACLgAAAAABWgAAAAAAegAAAAAAWgAAAAAALgAAAAAALgAAAAAALgAAAAABWgAAAAADaQAAAAAAWgAAAAAAWgAAAAABLgAAAAACLgAAAAAAWgAAAAAAWgAAAAACLgAAAAADWgAAAAAAMwAAAAADegAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAAAWgAAAAABegAAAAAAegAAAAAATQAAAAAAegAAAAAAegAAAAAATQAAAAABegAAAAAALgAAAAAAWgAAAAAAMwAAAAABegAAAAAAegAAAAAAegAAAAAATQAAAAADegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAAMwAAAAAAMwAAAAABWgAAAAADWgAAAAABLgAAAAAAWgAAAAABWgAAAAADaQAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAADLgAAAAAAWgAAAAAAWgAAAAADLgAAAAAAWgAAAAAD version: 6 -1,0: ind: -1,0 - tiles: UwAAAAABUwAAAAACUwAAAAACKgAAAAAAXwAAAAAAUwAAAAABUwAAAAABUwAAAAACKgAAAAACUwAAAAACUwAAAAACUwAAAAACKgAAAAABcAAAAAAAKgAAAAAAKgAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAACcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAABXwAAAAAAUwAAAAACUwAAAAABcAAAAAAARgAAAAACRgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAcAAAAAAALwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAUwAAAAACKgAAAAACUwAAAAABcAAAAAAALwAAAAACUwAAAAADKgAAAAADKgAAAAADUwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAKgAAAAADcAAAAAAAUwAAAAADKgAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACRgAAAAABUwAAAAADUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAABKgAAAAAAUwAAAAAAKgAAAAABKgAAAAAAUwAAAAACKgAAAAAAKgAAAAAAUwAAAAAARgAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAUwAAAAAAKgAAAAAAUwAAAAABUwAAAAACYAAAAAAAYQAAAAACcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAUwAAAAABKgAAAAACUwAAAAABcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAYQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAARgAAAAAAUwAAAAABUwAAAAABcAAAAAAAYAAAAAAAYAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAKgAAAAACUwAAAAABXwAAAAAAYAAAAAAAYAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAUwAAAAAAKgAAAAACcAAAAAAAYQAAAAABYQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAABYAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: WgAAAAABWgAAAAACWgAAAAACLgAAAAAAaQAAAAAAWgAAAAABWgAAAAABWgAAAAACLgAAAAACWgAAAAACWgAAAAACWgAAAAACLgAAAAABegAAAAAALgAAAAAALgAAAAABWgAAAAABWgAAAAADWgAAAAABWgAAAAACegAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAACWgAAAAACWgAAAAADWgAAAAABaQAAAAAAWgAAAAACWgAAAAABegAAAAAATQAAAAACTQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAAAegAAAAAAMwAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAWgAAAAACLgAAAAACWgAAAAABegAAAAAAMwAAAAACWgAAAAADLgAAAAADLgAAAAADWgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAWgAAAAAAWgAAAAAALgAAAAADegAAAAAAWgAAAAADLgAAAAAAWgAAAAACWgAAAAABWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAACTQAAAAABWgAAAAADWgAAAAADWgAAAAABegAAAAAAegAAAAAAegAAAAAALgAAAAABLgAAAAAAWgAAAAAALgAAAAABLgAAAAAAWgAAAAACLgAAAAAALgAAAAAAWgAAAAAATQAAAAABWgAAAAAAWgAAAAAAWgAAAAACWgAAAAABegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAWgAAAAAALgAAAAAAWgAAAAABWgAAAAACagAAAAAAawAAAAACegAAAAAALQAAAAAAegAAAAAAegAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAegAAAAAAWgAAAAABLgAAAAACWgAAAAABegAAAAAAegAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAawAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAATQAAAAAAWgAAAAABWgAAAAABegAAAAAAagAAAAAAagAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAALgAAAAACWgAAAAABaQAAAAAAagAAAAAAagAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAWgAAAAAALgAAAAACegAAAAAAawAAAAABawAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAADWgAAAAAAegAAAAAAegAAAAAAegAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAPQAAAAAAPQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAABWgAAAAABagAAAAAAegAAAAAAegAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: cAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAUwAAAAAAUwAAAAAARwAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABKgAAAAACUwAAAAAAUwAAAAADUwAAAAADKgAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAACYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADKgAAAAAAUwAAAAAAUwAAAAAAUwAAAAADKgAAAAACUwAAAAADUwAAAAABUwAAAAACcAAAAAAAYQAAAAAAYQAAAAACcAAAAAAAcAAAAAAAUwAAAAABLwAAAAABLwAAAAACLwAAAAADcAAAAAAAcAAAAAAAcAAAAAAARgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAAAbQAAAAADbQAAAAADbQAAAAADbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAbQAAAAAAbQAAAAAADAAAAAABDAAAAAADDAAAAAACDAAAAAABDAAAAAADDAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAJgAAAAAAJgAAAAAARgAAAAACbQAAAAACbQAAAAAADAAAAAACDAAAAAAAKgAAAAACKgAAAAACKgAAAAABKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAbQAAAAABbQAAAAABDAAAAAABKgAAAAADDAAAAAAADAAAAAABDAAAAAADDAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAACDAAAAAAAKgAAAAABDAAAAAADDAAAAAABDAAAAAACDAAAAAABYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAbQAAAAACbQAAAAACcAAAAAAAbQAAAAAAbQAAAAACDAAAAAADKgAAAAABDAAAAAADDAAAAAADDAAAAAADDAAAAAACcAAAAAAAYQAAAAACYQAAAAADUwAAAAADcAAAAAAAbQAAAAADbQAAAAAARgAAAAAAbQAAAAABbQAAAAADDAAAAAABKgAAAAAADAAAAAABDAAAAAACDAAAAAAAXwAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAbQAAAAABbQAAAAACcAAAAAAAbQAAAAADbQAAAAACDAAAAAABDAAAAAAADAAAAAADDAAAAAACDAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACKgAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAABDAAAAAACDAAAAAACcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAALwAAAAACUwAAAAAAUwAAAAADLwAAAAABLwAAAAAALwAAAAABcAAAAAAAcAAAAAAAcAAAAAAARgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALwAAAAADUwAAAAADUwAAAAACUwAAAAADKgAAAAADUwAAAAABXwAAAAAAUwAAAAADUwAAAAADKgAAAAACUwAAAAACUwAAAAADUwAAAAADKgAAAAABUwAAAAAAXwAAAAAAUwAAAAAAUwAAAAAB + tiles: egAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAABWgAAAAACegAAAAAAWgAAAAAAWgAAAAAATgAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAABLgAAAAACWgAAAAAAWgAAAAADWgAAAAADLgAAAAACWgAAAAADWgAAAAADWgAAAAACWgAAAAACagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAADLgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADLgAAAAACWgAAAAADWgAAAAABWgAAAAACegAAAAAAawAAAAAAawAAAAACegAAAAAAegAAAAAAWgAAAAABMwAAAAABMwAAAAACMwAAAAADegAAAAAAegAAAAAAegAAAAAATQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAADdwAAAAAAdwAAAAAAdwAAAAADdwAAAAADdwAAAAADdwAAAAADdwAAAAABegAAAAAAegAAAAAAegAAAAAAWgAAAAADegAAAAAAKgAAAAAAKgAAAAAAegAAAAAAdwAAAAAAdwAAAAAADgAAAAABDgAAAAADDgAAAAACDgAAAAABDgAAAAADDgAAAAABegAAAAAAegAAAAAAegAAAAAAWgAAAAABegAAAAAAKgAAAAAAKgAAAAAATQAAAAACdwAAAAACdwAAAAAADgAAAAACDgAAAAAALgAAAAACLgAAAAACLgAAAAABLgAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADegAAAAAAKgAAAAAAKgAAAAAAegAAAAAAdwAAAAABdwAAAAABDgAAAAABLgAAAAADDgAAAAAADgAAAAABDgAAAAADDgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAADdwAAAAACDgAAAAAALgAAAAABDgAAAAADDgAAAAABDgAAAAACDgAAAAABagAAAAAAegAAAAAAegAAAAAAWgAAAAABegAAAAAAdwAAAAACdwAAAAACegAAAAAAdwAAAAAAdwAAAAACDgAAAAADLgAAAAABDgAAAAADDgAAAAADDgAAAAADDgAAAAACegAAAAAAawAAAAACawAAAAADWgAAAAADegAAAAAAdwAAAAADdwAAAAAATQAAAAAAdwAAAAABdwAAAAADDgAAAAABLgAAAAAADgAAAAABDgAAAAACDgAAAAAAaQAAAAAAegAAAAAAagAAAAAAegAAAAAAWgAAAAABegAAAAAAdwAAAAABdwAAAAACegAAAAAAdwAAAAADdwAAAAACDgAAAAABDgAAAAAADgAAAAADDgAAAAACDgAAAAAAaQAAAAAAegAAAAAAWgAAAAACLgAAAAADWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAADdwAAAAABDgAAAAACDgAAAAACegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAMwAAAAACWgAAAAAAWgAAAAADMwAAAAABMwAAAAAAMwAAAAABegAAAAAAegAAAAAAegAAAAAATQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMwAAAAADWgAAAAADWgAAAAACWgAAAAADLgAAAAADWgAAAAABaQAAAAAAWgAAAAADWgAAAAADLgAAAAACWgAAAAACWgAAAAADWgAAAAADLgAAAAABWgAAAAAAaQAAAAAAWgAAAAAAWgAAAAAB version: 6 1,0: ind: 1,0 - tiles: XwAAAAAAUwAAAAAAKgAAAAABKgAAAAADUwAAAAABKgAAAAACKgAAAAAAUwAAAAACKgAAAAABKgAAAAADUwAAAAAAKgAAAAADKgAAAAADUwAAAAAAKgAAAAACKgAAAAACcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAABYwAAAAABYwAAAAACYwAAAAABYwAAAAABYwAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAASgAAAAAAcAAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAACYwAAAAAAYwAAAAAAYwAAAAABcAAAAAAAbQAAAAAAbQAAAAADbQAAAAACIwAAAAAAcAAAAAAANAAAAAACNAAAAAADcAAAAAAAYwAAAAABYwAAAAADYwAAAAAAYwAAAAACYwAAAAAAYwAAAAACYwAAAAABcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAACIwAAAAAAcAAAAAAANAAAAAADNAAAAAACPwAAAAAAYwAAAAABYwAAAAAAYwAAAAADYwAAAAADYwAAAAABYwAAAAAAYwAAAAADXwAAAAAAIwAAAAABIwAAAAAAIwAAAAACIwAAAAACcAAAAAAANAAAAAACNAAAAAACPwAAAAAAYwAAAAACYwAAAAADYwAAAAADYwAAAAADYwAAAAABYwAAAAAAYwAAAAAAcAAAAAAAIwAAAAABIwAAAAAAIwAAAAACIwAAAAACcAAAAAAANAAAAAACNAAAAAADcAAAAAAAYwAAAAACYwAAAAADYwAAAAADYwAAAAABYwAAAAAAYwAAAAACYwAAAAABcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAANAAAAAACNAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAPwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAANAAAAAABNAAAAAADYwAAAAABYwAAAAAAYwAAAAADYwAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANAAAAAABNAAAAAACZAAAAAABZAAAAAABZAAAAAACYwAAAAADcAAAAAAAYwAAAAADYwAAAAADYwAAAAABcAAAAAAAYwAAAAABYwAAAAACYwAAAAABYwAAAAAAcAAAAAAANAAAAAADNAAAAAADZAAAAAAAZAAAAAADZAAAAAAAYwAAAAADcAAAAAAAYwAAAAACYwAAAAABYwAAAAADcAAAAAAAYwAAAAAAYwAAAAADYwAAAAAAYwAAAAABcAAAAAAASgAAAAAASgAAAAAAYwAAAAAAYwAAAAACYwAAAAABYwAAAAAAcAAAAAAAYwAAAAAAYwAAAAABYwAAAAABPwAAAAAAYwAAAAACYwAAAAABYwAAAAABYwAAAAABcAAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAPwAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAADYwAAAAADcAAAAAAAYwAAAAACYwAAAAABYwAAAAAAYwAAAAACcAAAAAAAYAAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAABYwAAAAADPwAAAAAAYwAAAAACYwAAAAADYwAAAAAAcAAAAAAAYwAAAAACYwAAAAACYwAAAAACYwAAAAABcAAAAAAAbQAAAAADbQAAAAAB + tiles: aQAAAAAAWgAAAAAALgAAAAABLgAAAAADWgAAAAABLgAAAAACLgAAAAAAWgAAAAACLgAAAAABLgAAAAADWgAAAAAALgAAAAADLgAAAAADWgAAAAAALgAAAAACLgAAAAACegAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAADWgAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAACWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAABbQAAAAABbQAAAAACbQAAAAABbQAAAAABbQAAAAABegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAUQAAAAAAUQAAAAAAegAAAAAAbQAAAAABbQAAAAABbQAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAABegAAAAAAdwAAAAAAdwAAAAADdwAAAAACJwAAAAAAegAAAAAAOAAAAAACOAAAAAADegAAAAAAbQAAAAABbQAAAAADbQAAAAAAbQAAAAACbQAAAAAAbQAAAAACbQAAAAABegAAAAAAdwAAAAAAdwAAAAAAdwAAAAACJwAAAAAAegAAAAAAOAAAAAADOAAAAAACRgAAAAAAbQAAAAABbQAAAAAAbQAAAAADbQAAAAADbQAAAAABbQAAAAAAbQAAAAADaQAAAAAAJwAAAAABJwAAAAAAJwAAAAACJwAAAAACegAAAAAAOAAAAAACOAAAAAACRgAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAADbQAAAAABbQAAAAAAbQAAAAAAegAAAAAAJwAAAAABJwAAAAAAJwAAAAACJwAAAAACegAAAAAAOAAAAAACOAAAAAADegAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAABbQAAAAAAbQAAAAACbQAAAAABegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAOAAAAAACOAAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAARgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAOAAAAAABOAAAAAADbQAAAAABbQAAAAAAbQAAAAADbQAAAAAAegAAAAAAbQAAAAACbQAAAAAAbQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAOAAAAAABOAAAAAACbgAAAAABbgAAAAABbgAAAAACbQAAAAADegAAAAAAbQAAAAADbQAAAAADbQAAAAABegAAAAAAbQAAAAABbQAAAAACbQAAAAABbQAAAAAAegAAAAAAOAAAAAADOAAAAAADbgAAAAAAbgAAAAADbgAAAAAAbQAAAAADegAAAAAAbQAAAAACbQAAAAABbQAAAAADegAAAAAAbQAAAAAAbQAAAAADbQAAAAAAbQAAAAABegAAAAAAUQAAAAAAUQAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAAAegAAAAAAbQAAAAAAbQAAAAABbQAAAAABRgAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAABegAAAAAAUQAAAAAAUQAAAAAAegAAAAAAegAAAAAARgAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAADbQAAAAADegAAAAAAbQAAAAACbQAAAAABbQAAAAAAbQAAAAACegAAAAAAagAAAAAAegAAAAAAbQAAAAADbQAAAAADbQAAAAABbQAAAAADRgAAAAAAbQAAAAACbQAAAAADbQAAAAAAegAAAAAAbQAAAAACbQAAAAACbQAAAAACbQAAAAABegAAAAAAdwAAAAADdwAAAAAB version: 6 1,-1: ind: 1,-1 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAACUwAAAAADUwAAAAACRgAAAAACUwAAAAACKgAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAACKgAAAAACXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAKgAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAACRgAAAAADUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAADUwAAAAADUwAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAACUwAAAAABKgAAAAAAUwAAAAADcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAACcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAKgAAAAABcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAAAcAAAAAAARwAAAAAAKgAAAAABKgAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAADGgAAAAADcAAAAAAAbQAAAAACbQAAAAABEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAKgAAAAABUwAAAAABUwAAAAADUwAAAAACRwAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAABbQAAAAACRgAAAAADUwAAAAADKgAAAAAAUwAAAAACUwAAAAADXwAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAACcAAAAAAAbQAAAAADbQAAAAADbQAAAAABbQAAAAADbQAAAAACcAAAAAAAUwAAAAADUwAAAAACKgAAAAADUwAAAAAARwAAAAAAKgAAAAAAGgAAAAACKgAAAAACGgAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABKgAAAAABcAAAAAAAKgAAAAADGgAAAAACKgAAAAADGgAAAAADcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAACcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAagAAAAAAWgAAAAACWgAAAAADWgAAAAACTQAAAAACWgAAAAACLgAAAAADWgAAAAABWgAAAAACWgAAAAABWgAAAAACLgAAAAACaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAAAegAAAAAAWgAAAAAAWgAAAAAALgAAAAABWgAAAAAAWgAAAAACWgAAAAADWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAACegAAAAAAWgAAAAACWgAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAACTQAAAAADWgAAAAABWgAAAAAAWgAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAABegAAAAAAWgAAAAAAWgAAAAADWgAAAAACegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAADWgAAAAADWgAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAWgAAAAACWgAAAAABLgAAAAAAWgAAAAADegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAACegAAAAAAWgAAAAADWgAAAAAAWgAAAAAALgAAAAABegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAAAegAAAAAATgAAAAAALgAAAAABLgAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAADFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAADegAAAAAAdwAAAAACdwAAAAABFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAALgAAAAABWgAAAAABWgAAAAADWgAAAAACTgAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAAAegAAAAAAdwAAAAADdwAAAAACdwAAAAADdwAAAAABdwAAAAACTQAAAAADWgAAAAADLgAAAAAAWgAAAAACWgAAAAADaQAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAACegAAAAAAdwAAAAADdwAAAAADdwAAAAABdwAAAAADdwAAAAACegAAAAAAWgAAAAADWgAAAAACLgAAAAADWgAAAAAATgAAAAAALgAAAAAAHgAAAAACLgAAAAACHgAAAAADegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAABLgAAAAABegAAAAAALgAAAAADHgAAAAACLgAAAAADHgAAAAADegAAAAAAWgAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAADWgAAAAADWgAAAAADWgAAAAACWgAAAAACWgAAAAACegAAAAAAegAAAAAATgAAAAAATgAAAAAAaQAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAABWgAAAAACWgAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAABWgAAAAAA version: 6 -1,1: ind: -1,1 - tiles: cAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAXgAAAAACUwAAAAADUwAAAAADcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAXgAAAAABUwAAAAAAKgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAXgAAAAABUwAAAAACUwAAAAACcAAAAAAATAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARgAAAAADcAAAAAAADAAAAAAADAAAAAACDAAAAAAAcAAAAAAAXgAAAAABUwAAAAABUwAAAAABXwAAAAAATwAAAAAAcAAAAAAAbQAAAAABEwAAAAAAEwAAAAAAcAAAAAAAXgAAAAABDAAAAAADDAAAAAADDAAAAAAADAAAAAACcAAAAAAAXgAAAAABUwAAAAAAKgAAAAAAcAAAAAAATAAAAAAAYAAAAAAAbQAAAAABEwAAAAAAEwAAAAAAcAAAAAAAXgAAAAAADAAAAAABDAAAAAACDAAAAAACDAAAAAAADAAAAAAAXgAAAAACUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADEwAAAAAAEwAAAAAAcAAAAAAAXgAAAAABDAAAAAACDAAAAAAADAAAAAACDAAAAAACDAAAAAABXgAAAAABUwAAAAACUwAAAAACcAAAAAAAbwAAAAAAcAAAAAAAbQAAAAADEwAAAAAAEwAAAAAAcAAAAAAAXgAAAAACDAAAAAACDAAAAAACDAAAAAAADAAAAAABDAAAAAACXgAAAAAAUwAAAAAAKgAAAAADcAAAAAAAbwAAAAAAcAAAAAAARgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAWQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACWQAAAAABUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADKgAAAAACUwAAAAACXwAAAAAAUwAAAAADKgAAAAAAUwAAAAACUwAAAAACUwAAAAAAKgAAAAAAUwAAAAACUwAAAAAAUwAAAAABYAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAKgAAAAAAXwAAAAAAUwAAAAACUwAAAAABKgAAAAAAUwAAAAABUwAAAAABUwAAAAADKgAAAAAAUwAAAAAAKgAAAAACcAAAAAAAcAAAAAAALwAAAAABLwAAAAADUwAAAAADUwAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbQAAAAADbQAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAARwAAAAAARwAAAAAARwAAAAAAXwAAAAAAbQAAAAAAbQAAAAADcAAAAAAAYQAAAAACcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbQAAAAADKgAAAAAC + tiles: egAAAAAALQAAAAAAegAAAAAAegAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAaAAAAAACWgAAAAADWgAAAAADegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAaAAAAAABWgAAAAAALgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAaAAAAAABWgAAAAACWgAAAAACegAAAAAAUwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAADegAAAAAADgAAAAAADgAAAAACDgAAAAAAegAAAAAAaAAAAAABWgAAAAABWgAAAAABaQAAAAAAVgAAAAAAegAAAAAAdwAAAAABFgAAAAAAFgAAAAAAegAAAAAAaAAAAAABDgAAAAADDgAAAAADDgAAAAAADgAAAAACegAAAAAAaAAAAAABWgAAAAAALgAAAAAAegAAAAAAUwAAAAAAagAAAAAAdwAAAAABFgAAAAAAFgAAAAAAegAAAAAAaAAAAAAADgAAAAABDgAAAAACDgAAAAACDgAAAAAADgAAAAAAaAAAAAACWgAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAdwAAAAADFgAAAAAAFgAAAAAAegAAAAAAaAAAAAABDgAAAAACDgAAAAAADgAAAAACDgAAAAACDgAAAAABaAAAAAABWgAAAAACWgAAAAACegAAAAAAeQAAAAAAegAAAAAAdwAAAAADFgAAAAAAFgAAAAAAegAAAAAAaAAAAAACDgAAAAACDgAAAAACDgAAAAAADgAAAAABDgAAAAACaAAAAAAAWgAAAAAALgAAAAADegAAAAAAeQAAAAAAegAAAAAATQAAAAADegAAAAAAegAAAAAAegAAAAAAYgAAAAAAZwAAAAACZwAAAAABZwAAAAAAZwAAAAAAZwAAAAACYgAAAAABWgAAAAADWgAAAAACegAAAAAAegAAAAAAWgAAAAACWgAAAAADLgAAAAACWgAAAAACaQAAAAAAWgAAAAADLgAAAAAAWgAAAAACWgAAAAACWgAAAAAALgAAAAAAWgAAAAACWgAAAAAAWgAAAAABagAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAAALgAAAAAAaQAAAAAAWgAAAAACWgAAAAABLgAAAAAAWgAAAAABWgAAAAABWgAAAAADLgAAAAAAWgAAAAAALgAAAAACegAAAAAAegAAAAAAMwAAAAABMwAAAAADWgAAAAADWgAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAdwAAAAADdwAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAATgAAAAAATgAAAAAATgAAAAAAaQAAAAAAdwAAAAAAdwAAAAADegAAAAAAawAAAAACegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAdwAAAAADLgAAAAAC version: 6 0,1: ind: 0,1 - tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAACYwAAAAABYwAAAAADYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAADcAAAAAAAcAAAAAAAPwAAAAAAPwAAAAAAcAAAAAAAcAAAAAAATAAAAAAATAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAABYwAAAAABcAAAAAAAYwAAAAABYwAAAAAAcAAAAAAAPwAAAAAATwAAAAAATgAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAABcAAAAAAAYwAAAAADYwAAAAADcAAAAAAAPwAAAAAATAAAAAAATAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAAAYwAAAAABcAAAAAAAYwAAAAACYwAAAAAAcAAAAAAAPwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAAAYwAAAAADPwAAAAAAYwAAAAABYwAAAAABcAAAAAAAPwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAYwAAAAACYwAAAAABcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAACcAAAAAAAYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAABbQAAAAACbQAAAAACcAAAAAAAYwAAAAAAYwAAAAABcAAAAAAAYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAADbQAAAAABPwAAAAAAYwAAAAADYwAAAAAAPwAAAAAAYwAAAAABcAAAAAAAcAAAAAAAYQAAAAAAYQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAABcAAAAAAAYwAAAAADYwAAAAAAcAAAAAAAYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAABbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADKgAAAAABbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAACbQAAAAABbQAAAAADbQAAAAADegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAADegAAAAAAegAAAAAARgAAAAAARgAAAAAAegAAAAAAegAAAAAAUwAAAAAAUwAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAABbQAAAAABegAAAAAAbQAAAAABbQAAAAAAegAAAAAARgAAAAAAVgAAAAAAVQAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAADbQAAAAABegAAAAAAbQAAAAADbQAAAAADegAAAAAARgAAAAAAUwAAAAAAUwAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAAAbQAAAAABegAAAAAAbQAAAAACbQAAAAAAegAAAAAARgAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAAAbQAAAAADRgAAAAAAbQAAAAABbQAAAAABegAAAAAARgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAegAAAAAAbQAAAAACbQAAAAABegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAACegAAAAAAbQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAABdwAAAAABdwAAAAACdwAAAAACegAAAAAAbQAAAAAAbQAAAAABegAAAAAAbQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAADdwAAAAADdwAAAAABRgAAAAAAbQAAAAADbQAAAAAARgAAAAAAbQAAAAABegAAAAAAegAAAAAAawAAAAAAawAAAAADegAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAADdwAAAAADdwAAAAABegAAAAAAbQAAAAADbQAAAAAAegAAAAAAbQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAACdwAAAAADdwAAAAABegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAABdwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAABdwAAAAABdwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAADLgAAAAABdwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 1,1: ind: 1,1 - tiles: YwAAAAACYwAAAAAAYwAAAAADYwAAAAAAPwAAAAAAYwAAAAACYwAAAAACYwAAAAAAcAAAAAAAYwAAAAACYwAAAAACYwAAAAAAYwAAAAABcAAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAPwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAADYwAAAAABcAAAAAAAcAAAAAAAPwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAACcAAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAPwAAAAAAPwAAAAAAcAAAAAAAPwAAAAAAcAAAAAAAYwAAAAADYwAAAAABYwAAAAAAPwAAAAAAGgAAAAACGgAAAAABGgAAAAABGgAAAAAAGgAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPwAAAAAAcAAAAAAAcAAAAAAAPwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAABGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcAAAAAAAYwAAAAABYwAAAAADYwAAAAADcAAAAAAAGgAAAAACGgAAAAAAGgAAAAABGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAADPwAAAAAAGgAAAAADGgAAAAAAGgAAAAAAGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAYwAAAAADYwAAAAACcAAAAAAAYwAAAAADYwAAAAABYwAAAAACYwAAAAAAYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAADcAAAAAAAYwAAAAADYwAAAAAAYwAAAAACYwAAAAAAYwAAAAADYwAAAAABYwAAAAACYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAACcAAAAAAAYwAAAAAAYwAAAAADYwAAAAACYwAAAAACYwAAAAACYwAAAAACYwAAAAADYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAADcAAAAAAAYwAAAAADYwAAAAABYwAAAAADYwAAAAADYwAAAAAAYwAAAAACYwAAAAACYwAAAAABcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAKgAAAAACKgAAAAAAKgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + tiles: bQAAAAACbQAAAAAAbQAAAAADbQAAAAAARgAAAAAAbQAAAAACbQAAAAACbQAAAAAAegAAAAAAbQAAAAACbQAAAAACbQAAAAAAbQAAAAABegAAAAAAdwAAAAAAdwAAAAAAegAAAAAARgAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAADbQAAAAABegAAAAAAegAAAAAARgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAegAAAAAAbQAAAAAAbQAAAAAAbQAAAAACegAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAADHgAAAAAAegAAAAAAegAAAAAARgAAAAAARgAAAAAAegAAAAAARgAAAAAAegAAAAAAbQAAAAADbQAAAAABbQAAAAAARgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAAAHgAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAARgAAAAAAegAAAAAAegAAAAAARgAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAADHgAAAAACegAAAAAAegAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAegAAAAAAbQAAAAABbQAAAAADbQAAAAADegAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAACbQAAAAAAbQAAAAADRgAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAADHgAAAAADegAAAAAAegAAAAAAbQAAAAADbQAAAAACegAAAAAAbQAAAAADbQAAAAABbQAAAAACbQAAAAAAbQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAADegAAAAAAbQAAAAADbQAAAAAAbQAAAAACbQAAAAAAbQAAAAADbQAAAAABbQAAAAACbQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAACegAAAAAAbQAAAAAAbQAAAAADbQAAAAACbQAAAAACbQAAAAACbQAAAAACbQAAAAADbQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAADegAAAAAAbQAAAAADbQAAAAABbQAAAAADbQAAAAADbQAAAAAAbQAAAAACbQAAAAACbQAAAAABegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAAAawAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAALgAAAAACLgAAAAAALgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: UwAAAAAAUwAAAAABRwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAABUwAAAAABGAAAAAACGAAAAAACGAAAAAADGAAAAAADGAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAADUwAAAAACGAAAAAACFwAAAAAAFwAAAAACFwAAAAABFwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAABGAAAAAACFwAAAAADFwAAAAACFwAAAAABFwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADYQAAAAADYQAAAAADYQAAAAACcAAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAGgAAAAADGgAAAAADcAAAAAAAGgAAAAABcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAGgAAAAACGgAAAAABcAAAAAAAGgAAAAABcAAAAAAAUwAAAAABKgAAAAACUwAAAAAAKgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAUwAAAAABUwAAAAAAKgAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADcAAAAAAAGgAAAAABcAAAAAAAUwAAAAACKgAAAAADUwAAAAAAKgAAAAACcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAGgAAAAADcAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAYQAAAAACYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAADKgAAAAADUwAAAAACcAAAAAAA + tiles: WgAAAAAAWgAAAAABTgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAABWgAAAAACWgAAAAADWgAAAAABWgAAAAADWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADWgAAAAACWgAAAAABWgAAAAABWgAAAAACWgAAAAABWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAADWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAADWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAABWgAAAAABHAAAAAACHAAAAAACHAAAAAADHAAAAAADHAAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAADWgAAAAACHAAAAAACGwAAAAAAGwAAAAACGwAAAAABGwAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAABHAAAAAACGwAAAAADGwAAAAACGwAAAAABGwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAADawAAAAADawAAAAADawAAAAACegAAAAAAegAAAAAAawAAAAAAegAAAAAAHgAAAAADHgAAAAADegAAAAAAHgAAAAABegAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAAAegAAAAAAHgAAAAACHgAAAAABegAAAAAAHgAAAAABegAAAAAAWgAAAAABLgAAAAACWgAAAAAALgAAAAADegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAegAAAAAAWgAAAAABWgAAAAAALgAAAAADWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAADegAAAAAAHgAAAAABegAAAAAAWgAAAAACLgAAAAADWgAAAAAALgAAAAACegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAACegAAAAAAHgAAAAADegAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAAAegAAAAAAegAAAAAAawAAAAACagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAADWgAAAAACWgAAAAACWgAAAAACWgAAAAADLgAAAAADWgAAAAACegAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: JgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAJgAAAAAAbQAAAAABbgAAAAABbQAAAAABPQAAAAAAcAAAAAAAUwAAAAADUwAAAAABJgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAJgAAAAAAbQAAAAAAbQAAAAACbQAAAAABPQAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAACbQAAAAAAbQAAAAAAPQAAAAAAcAAAAAAAUwAAAAADUwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAPQAAAAAARwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAABcAAAAAAAUwAAAAABUwAAAAABPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAACRgAAAAAAUwAAAAAARgAAAAADPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAACRwAAAAAAUwAAAAAARgAAAAACUwAAAAADRgAAAAABHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAABRwAAAAAAUwAAAAADcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAHwAAAAABHwAAAAABcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAARwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAYAAAAAAAHwAAAAAAHwAAAAABcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABRwAAAAAAUwAAAAADcAAAAAAAYQAAAAADcAAAAAAAHwAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAACYQAAAAACcAAAAAAAUwAAAAADUwAAAAACRwAAAAAAUwAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAYQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAABUwAAAAABRwAAAAAAUwAAAAABYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABRwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARgAAAAAARgAAAAACRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAADcAAAAAAAUwAAAAADUwAAAAAARwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAABcAAAAAAAUwAAAAADKgAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAAA + tiles: KgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAKgAAAAAAdwAAAAABeAAAAAABdwAAAAABQQAAAAAAegAAAAAAWgAAAAADWgAAAAABKgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAKgAAAAAAdwAAAAAAdwAAAAACdwAAAAABQQAAAAAAegAAAAAAWgAAAAADWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAACdwAAAAAAdwAAAAAAQQAAAAAAegAAAAAAWgAAAAADWgAAAAABIwAAAAAAIwAAAAACIwAAAAAAIwAAAAADIwAAAAAAIwAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAQQAAAAAATgAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAACQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAeQAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAABegAAAAAAWgAAAAABWgAAAAABQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAACTQAAAAAAWgAAAAAATQAAAAADQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAACTgAAAAAAWgAAAAAATQAAAAACWgAAAAADTQAAAAABIwAAAAADIwAAAAACIwAAAAABIwAAAAAAIwAAAAAAIwAAAAAAegAAAAAAeQAAAAAAegAAAAAAWgAAAAABWgAAAAABTgAAAAAAWgAAAAADegAAAAAAWgAAAAADWgAAAAADegAAAAAAegAAAAAAegAAAAAAIwAAAAAAIwAAAAABIwAAAAABegAAAAAAeQAAAAAAegAAAAAAWgAAAAAAWgAAAAAATgAAAAAAWgAAAAABegAAAAAAegAAAAAAagAAAAAAIwAAAAAAIwAAAAABegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAABTgAAAAAAWgAAAAADegAAAAAAawAAAAADegAAAAAAIwAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAACawAAAAACegAAAAAAWgAAAAADWgAAAAACTgAAAAAAWgAAAAAAegAAAAAAawAAAAAAegAAAAAAegAAAAAAawAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAWgAAAAABWgAAAAABTgAAAAAAWgAAAAABagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAABTgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAawAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAATQAAAAACTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAADegAAAAAAWgAAAAADWgAAAAAATgAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAAAegAAAAAAegAAAAAAegAAAAAAAQAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAABegAAAAAAWgAAAAADLgAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAUwAAAAACRwAAAAAAPQAAAAAAHgAAAAABHgAAAAACHgAAAAAAJgAAAAAAcAAAAAAADwAAAAAARwAAAAAAHwAAAAABHwAAAAACHwAAAAABcAAAAAAAUwAAAAADcAAAAAAAUwAAAAAARwAAAAAAcAAAAAAAKgAAAAADKgAAAAAAKgAAAAAAJgAAAAAAcAAAAAAADwAAAAAARwAAAAAAHwAAAAACHwAAAAACHwAAAAAAcAAAAAAAUwAAAAABcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADwAAAAAARwAAAAAAHwAAAAADHwAAAAACHwAAAAACPQAAAAAAUwAAAAACcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAADcAAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADcAAAAAAAUwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAcAAAAAAAMwAAAAAAMwAAAAAAHwAAAAADMwAAAAAAMwAAAAAAcAAAAAAAUwAAAAABcAAAAAAARwAAAAAAcAAAAAAAHwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAcAAAAAAAcAAAAAAAHwAAAAACHwAAAAACcAAAAAAAUwAAAAADUwAAAAABRwAAAAAAUwAAAAACUwAAAAACcAAAAAAAUwAAAAABcAAAAAAARwAAAAAAcAAAAAAAHwAAAAABRwAAAAAARwAAAAAAHwAAAAABHwAAAAACcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABPQAAAAAAUwAAAAADcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAABPQAAAAAAUwAAAAADUwAAAAABRwAAAAAAcAAAAAAAcAAAAAAAHwAAAAABHwAAAAADcAAAAAAAHwAAAAADcAAAAAAAUwAAAAADUwAAAAACRwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAADUwAAAAADRwAAAAAAcAAAAAAAcAAAAAAAHwAAAAACHwAAAAAARwAAAAAAHwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACRwAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAUwAAAAACUwAAAAABRwAAAAAAcAAAAAAAUwAAAAACUwAAAAADRwAAAAAARwAAAAAARwAAAAAAXwAAAAAAUwAAAAACKgAAAAADUwAAAAACKgAAAAABUwAAAAAAPQAAAAAAUwAAAAABUwAAAAADRwAAAAAAPQAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAADXwAAAAAAUwAAAAACUwAAAAACKgAAAAAAUwAAAAADUwAAAAABcAAAAAAAUwAAAAACUwAAAAAARwAAAAAAcAAAAAAAUwAAAAADRwAAAAAARwAAAAAAUwAAAAAARwAAAAAAcAAAAAAAUwAAAAACKgAAAAACUwAAAAACKgAAAAAAUwAAAAADXwAAAAAAUwAAAAACUwAAAAAARwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAABRwAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAWgAAAAADegAAAAAAWgAAAAACTgAAAAAAQQAAAAAAIgAAAAABIgAAAAACIgAAAAAAKgAAAAAAegAAAAAAEgAAAAAATgAAAAAAIwAAAAABIwAAAAACIwAAAAABegAAAAAAWgAAAAADegAAAAAAWgAAAAAATgAAAAAAegAAAAAALgAAAAADLgAAAAAALgAAAAAAKgAAAAAAegAAAAAAEgAAAAAATgAAAAAAIwAAAAACIwAAAAACIwAAAAAAegAAAAAAWgAAAAABegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEgAAAAAATgAAAAAAIwAAAAADIwAAAAACIwAAAAACQQAAAAAAWgAAAAACegAAAAAATgAAAAAAegAAAAAAegAAAAAAIwAAAAADIwAAAAACIwAAAAABIwAAAAADegAAAAAAIwAAAAAAIwAAAAABIwAAAAACIwAAAAACIwAAAAADegAAAAAAWgAAAAAAegAAAAAATgAAAAAAegAAAAAAIwAAAAADIwAAAAAAIwAAAAAAIwAAAAABIwAAAAAAegAAAAAANwAAAAAANwAAAAAAIwAAAAADNwAAAAAANwAAAAAAegAAAAAAWgAAAAABegAAAAAATgAAAAAAegAAAAAAIwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAIwAAAAAAegAAAAAAegAAAAAAIwAAAAACIwAAAAACegAAAAAAWgAAAAADWgAAAAABTgAAAAAAWgAAAAACWgAAAAACegAAAAAAWgAAAAABegAAAAAATgAAAAAAegAAAAAAIwAAAAABTgAAAAAATgAAAAAAIwAAAAABIwAAAAACegAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAAAWgAAAAABQQAAAAAAWgAAAAADegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAACWgAAAAABQQAAAAAAWgAAAAADWgAAAAABTgAAAAAAegAAAAAAegAAAAAAIwAAAAABIwAAAAADegAAAAAAIwAAAAADegAAAAAAWgAAAAADWgAAAAACTgAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAADWgAAAAADTgAAAAAAegAAAAAAegAAAAAAIwAAAAACIwAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAACTgAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAABWgAAAAAAegAAAAAAWgAAAAACWgAAAAABTgAAAAAAegAAAAAAWgAAAAACWgAAAAADTgAAAAAATgAAAAAATgAAAAAAaQAAAAAAWgAAAAACLgAAAAADWgAAAAACLgAAAAABWgAAAAAAQQAAAAAAWgAAAAABWgAAAAADTgAAAAAAQQAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAADaQAAAAAAWgAAAAACWgAAAAACLgAAAAAAWgAAAAADWgAAAAABegAAAAAAWgAAAAACWgAAAAAATgAAAAAAegAAAAAAWgAAAAADTgAAAAAATgAAAAAAWgAAAAAATgAAAAAAegAAAAAAWgAAAAACLgAAAAACWgAAAAACLgAAAAAAWgAAAAADaQAAAAAAWgAAAAACWgAAAAAATgAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAABTgAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAUwAAAAABKgAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARgAAAAACRgAAAAADRgAAAAADRgAAAAADRgAAAAACRgAAAAABXwAAAAAAUwAAAAAAUwAAAAABKgAAAAACAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAABcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAABcAAAAAAAcAAAAAAARgAAAAACRgAAAAAARgAAAAADRgAAAAABRgAAAAACRgAAAAACXwAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAACcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAUwAAAAADKgAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACKgAAAAADYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAABcAAAAAAAYAAAAAAAUwAAAAACUwAAAAACUwAAAAADcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAYQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAYQAAAAACcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACKgAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAADcAAAAAAAUwAAAAACUwAAAAADKgAAAAAC + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAABWgAAAAABWgAAAAAAegAAAAAAWgAAAAABLgAAAAACWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAACTQAAAAADTQAAAAADTQAAAAADTQAAAAACTQAAAAABaQAAAAAAWgAAAAAAWgAAAAABLgAAAAACAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAABWgAAAAACWgAAAAABWgAAAAABegAAAAAAWgAAAAABWgAAAAADWgAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAABegAAAAAAegAAAAAATQAAAAACTQAAAAAATQAAAAADTQAAAAABTQAAAAACTQAAAAACaQAAAAAAWgAAAAABWgAAAAACWgAAAAABegAAAAAAegAAAAAAegAAAAAAawAAAAACegAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAACWgAAAAABWgAAAAABegAAAAAAWgAAAAADLgAAAAADWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAACLgAAAAADagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAABegAAAAAAagAAAAAAWgAAAAACWgAAAAACWgAAAAADegAAAAAAawAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAACegAAAAAAawAAAAABegAAAAAAegAAAAAAegAAAAAAawAAAAAAawAAAAACegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACLgAAAAABWgAAAAACegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAADegAAAAAAWgAAAAACWgAAAAADLgAAAAAC version: 6 -2,-1: ind: -2,-1 - tiles: GgAAAAABGgAAAAABcAAAAAAAGgAAAAABGgAAAAAARwAAAAAARwAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAABGgAAAAADcAAAAAAAUwAAAAABUwAAAAACUwAAAAABGgAAAAABGgAAAAAAXwAAAAAAGgAAAAABGgAAAAADRwAAAAAARwAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAGgAAAAAAGgAAAAACcAAAAAAAGgAAAAADGgAAAAACRwAAAAAARwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAABGgAAAAABcAAAAAAAUwAAAAACKgAAAAAAUwAAAAAAGgAAAAACGgAAAAACcAAAAAAAGgAAAAACGgAAAAAARwAAAAAARwAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAAAGgAAAAADcAAAAAAAUwAAAAABUwAAAAADKgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAARwAAAAAARwAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAADcAAAAAAAUwAAAAADUwAAAAABUwAAAAACGgAAAAACGgAAAAADGgAAAAADGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADGgAAAAACGgAAAAADGgAAAAAAGgAAAAABGgAAAAADXwAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAAAGgAAAAADGgAAAAADcAAAAAAAUwAAAAABKgAAAAADUwAAAAAAGgAAAAADGgAAAAACGgAAAAAAGgAAAAAAGgAAAAAAXwAAAAAAGgAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAAAXwAAAAAAUwAAAAADUwAAAAAAKgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAUwAAAAABUwAAAAAAUwAAAAABGgAAAAADcAAAAAAAKgAAAAABKgAAAAABKgAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAGgAAAAABcAAAAAAAKgAAAAADKgAAAAACKgAAAAADcAAAAAAAUwAAAAABKgAAAAADUwAAAAAAUwAAAAAAUwAAAAACKgAAAAABcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAGgAAAAAAcAAAAAAAKgAAAAACKgAAAAADKgAAAAAAcAAAAAAAUwAAAAADUwAAAAABKgAAAAABKgAAAAADKgAAAAACUwAAAAAAXwAAAAAAUwAAAAAAKgAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAKgAAAAAAUwAAAAACUwAAAAABUwAAAAADKgAAAAAAXwAAAAAAUwAAAAACUwAAAAADKgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAYQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAYwAAAAACYwAAAAACcAAAAAAAYQAAAAAAcAAAAAAAYAAAAAAAKgAAAAABUwAAAAACUwAAAAADUwAAAAAAKgAAAAAAXwAAAAAAUwAAAAACUwAAAAABKgAAAAABUwAAAAAA + tiles: HgAAAAABHgAAAAABegAAAAAAHgAAAAABHgAAAAAATgAAAAAATgAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAADegAAAAAAWgAAAAABWgAAAAACWgAAAAABHgAAAAABHgAAAAAAaQAAAAAAHgAAAAABHgAAAAADTgAAAAAATgAAAAAAegAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAADegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAHgAAAAAAHgAAAAACegAAAAAAHgAAAAADHgAAAAACTgAAAAAATgAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAABegAAAAAAWgAAAAACLgAAAAAAWgAAAAAAHgAAAAACHgAAAAACegAAAAAAHgAAAAACHgAAAAAATgAAAAAATgAAAAAAegAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAADegAAAAAAWgAAAAABWgAAAAADLgAAAAACegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAATgAAAAAATgAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAADegAAAAAAWgAAAAADWgAAAAABWgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAAAHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAADHgAAAAACHgAAAAADHgAAAAAAHgAAAAABHgAAAAADaQAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAAAHgAAAAADHgAAAAADegAAAAAAWgAAAAABLgAAAAADWgAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAAAHgAAAAAAaQAAAAAAHgAAAAADWgAAAAADWgAAAAACWgAAAAACWgAAAAACWgAAAAAAaQAAAAAAWgAAAAADWgAAAAAALgAAAAAAHgAAAAACegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAHgAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAABWgAAAAADegAAAAAAWgAAAAABWgAAAAAAWgAAAAABHgAAAAADegAAAAAALgAAAAABLgAAAAABLgAAAAABegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAHgAAAAABegAAAAAALgAAAAADLgAAAAACLgAAAAADegAAAAAAWgAAAAABLgAAAAADWgAAAAAAWgAAAAAAWgAAAAACLgAAAAABegAAAAAAWgAAAAADWgAAAAAAWgAAAAAAHgAAAAAAegAAAAAALgAAAAACLgAAAAADLgAAAAAAegAAAAAAWgAAAAADWgAAAAABLgAAAAABLgAAAAADLgAAAAACWgAAAAAAaQAAAAAAWgAAAAAALgAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAWgAAAAAALgAAAAAAWgAAAAACWgAAAAABWgAAAAADLgAAAAAAaQAAAAAAWgAAAAACWgAAAAADLgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAABegAAAAAAWgAAAAACWgAAAAACWgAAAAAAagAAAAAAegAAAAAAegAAAAAAawAAAAABegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAAAbQAAAAACbQAAAAACegAAAAAAawAAAAAAegAAAAAAagAAAAAALgAAAAABWgAAAAACWgAAAAADWgAAAAAALgAAAAAAaQAAAAAAWgAAAAACWgAAAAABLgAAAAABWgAAAAAA version: 6 -2,0: ind: -2,0 - tiles: YwAAAAAAYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACKgAAAAACUwAAAAACUwAAAAABUwAAAAACXwAAAAAAUwAAAAABUwAAAAAAUwAAAAABKgAAAAAAYwAAAAADYwAAAAAAZAAAAAADZAAAAAABZAAAAAACcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAYwAAAAADYwAAAAABZAAAAAADZAAAAAABZAAAAAACXwAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAACYwAAAAAAYwAAAAACYwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAANwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAADUwAAAAACNwAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAANwAAAAAANwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAXwAAAAAAUwAAAAACKgAAAAACNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAADKgAAAAACUwAAAAAAUwAAAAADXwAAAAAAUwAAAAACUwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAAAXwAAAAAAUwAAAAACUwAAAAACNwAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAKgAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAABKgAAAAACcAAAAAAAUwAAAAABUwAAAAADcAAAAAAADgAAAAAADgAAAAAAcAAAAAAAUwAAAAACKgAAAAABcAAAAAAANwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAACcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAADgAAAAAADgAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAANwAAAAAAKgAAAAADUwAAAAABKgAAAAAAUwAAAAAAUwAAAAABKQAAAAAAUwAAAAAAUwAAAAACcAAAAAAADgAAAAAADgAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAANwAAAAAAUwAAAAACKgAAAAADUwAAAAABNwAAAAAANwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAADgAAAAAADgAAAAAAcAAAAAAAKgAAAAABUwAAAAABRgAAAAAAUwAAAAABKgAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAADUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABKgAAAAAAcAAAAAAAcAAAAAAANwAAAAAAUwAAAAABcAAAAAAAYQAAAAACcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADKgAAAAAAUwAAAAABUwAAAAADXwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAANwAAAAAAUwAAAAACcAAAAAAAYQAAAAADcAAAAAAAcAAAAAAAKgAAAAACUwAAAAADUwAAAAACKgAAAAACUwAAAAACXwAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAA + tiles: bQAAAAAAbQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACLgAAAAACWgAAAAACWgAAAAABWgAAAAACaQAAAAAAWgAAAAABWgAAAAAAWgAAAAABLgAAAAAAbQAAAAADbQAAAAAAbgAAAAADbgAAAAABbgAAAAACegAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAACWgAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAAAbQAAAAADbQAAAAABbgAAAAADbgAAAAABbgAAAAACaQAAAAAAWgAAAAADWgAAAAABWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAACbQAAAAACbQAAAAAAbQAAAAACbQAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAOwAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAADWgAAAAACOwAAAAAAegAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAOwAAAAAAOwAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAaQAAAAAAWgAAAAACLgAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAALgAAAAAALgAAAAADLgAAAAACWgAAAAAAWgAAAAADaQAAAAAAWgAAAAACWgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAACWgAAAAABWgAAAAAAaQAAAAAAWgAAAAACWgAAAAACOwAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAALgAAAAADWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAABLgAAAAACegAAAAAAWgAAAAABWgAAAAADegAAAAAAEQAAAAAAEQAAAAAAegAAAAAAWgAAAAACLgAAAAABegAAAAAAOwAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAADWgAAAAACegAAAAAAWgAAAAADWgAAAAAAegAAAAAAEQAAAAAAEQAAAAAAegAAAAAAWgAAAAAAWgAAAAACegAAAAAAOwAAAAAALgAAAAADWgAAAAABLgAAAAAAWgAAAAAAWgAAAAABLQAAAAAAWgAAAAAAWgAAAAACegAAAAAAEQAAAAAAEQAAAAAAegAAAAAAWgAAAAADWgAAAAABegAAAAAAOwAAAAAAWgAAAAACLgAAAAADWgAAAAABOwAAAAAAOwAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAEQAAAAAAEQAAAAAAegAAAAAALgAAAAABWgAAAAABTQAAAAAAWgAAAAABLgAAAAADWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAADWgAAAAACegAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAABLgAAAAAAegAAAAAAegAAAAAAOwAAAAAAWgAAAAABegAAAAAAawAAAAACegAAAAAAegAAAAAAWgAAAAADWgAAAAADLgAAAAAAWgAAAAABWgAAAAADaQAAAAAAWgAAAAAAWgAAAAABWgAAAAAAegAAAAAAOwAAAAAAWgAAAAACegAAAAAAawAAAAADegAAAAAAegAAAAAALgAAAAACWgAAAAADWgAAAAACLgAAAAACWgAAAAACaQAAAAAAWgAAAAACWgAAAAADWgAAAAADegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAA version: 6 -2,1: ind: -2,1 - tiles: UwAAAAABKgAAAAACUwAAAAAAUwAAAAADKgAAAAACcAAAAAAAKgAAAAABUwAAAAABUwAAAAABcAAAAAAAYQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAUwAAAAAAKgAAAAABUwAAAAACYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAADIwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAABIwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAADcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAbQAAAAABbQAAAAACbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAADIwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAACcAAAAAAAKgAAAAABUwAAAAAAcAAAAAAAbQAAAAADKgAAAAABbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAbQAAAAAAKgAAAAABbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAABcAAAAAAAUwAAAAAAUwAAAAADRgAAAAADbQAAAAACKgAAAAAAbQAAAAACcAAAAAAAcAAAAAAAYQAAAAADcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAAAUwAAAAADcAAAAAAAbQAAAAADbQAAAAACbQAAAAABcAAAAAAAYAAAAAAAcAAAAAAALwAAAAAAbQAAAAADbQAAAAADbQAAAAABLwAAAAACLwAAAAAAUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAKgAAAAADbgAAAAAAbgAAAAADbgAAAAAAKgAAAAADKgAAAAADXwAAAAAAUwAAAAABUwAAAAACUwAAAAACKgAAAAADUwAAAAACUwAAAAACUwAAAAACKgAAAAADUwAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAACbQAAAAACbQAAAAABXwAAAAAAKgAAAAABUwAAAAADUwAAAAAAUwAAAAABKgAAAAAAUwAAAAABUwAAAAACUwAAAAAAKgAAAAAAbQAAAAAAbQAAAAABbQAAAAADbQAAAAABbQAAAAAAbQAAAAABcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAADLwAAAAAALwAAAAAAKgAAAAACbQAAAAADbQAAAAACbQAAAAADKgAAAAADKgAAAAACcAAAAAAAUwAAAAADUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbgAAAAADbgAAAAACbgAAAAADbQAAAAAAbQAAAAADcAAAAAAAKgAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAABbQAAAAACbQAAAAAAbQAAAAADbQAAAAACcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAACbQAAAAABbQAAAAADbQAAAAABKgAAAAABKgAAAAABcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: WgAAAAABLgAAAAACWgAAAAAAWgAAAAADLgAAAAACegAAAAAALgAAAAABWgAAAAABWgAAAAABegAAAAAAawAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAWgAAAAAALgAAAAABWgAAAAACagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAADJwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAABJwAAAAACegAAAAAAegAAAAAAegAAAAAAawAAAAADegAAAAAAWgAAAAADWgAAAAABegAAAAAAdwAAAAABdwAAAAACdwAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAADJwAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAACegAAAAAALgAAAAABWgAAAAAAegAAAAAAdwAAAAADLgAAAAABdwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAAAegAAAAAAWgAAAAADWgAAAAACegAAAAAAdwAAAAAALgAAAAABdwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAABegAAAAAAWgAAAAAAWgAAAAADTQAAAAADdwAAAAACLgAAAAAAdwAAAAACegAAAAAAegAAAAAAawAAAAADegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAAAWgAAAAADegAAAAAAdwAAAAADdwAAAAACdwAAAAABegAAAAAAagAAAAAAegAAAAAAMwAAAAAAdwAAAAADdwAAAAADdwAAAAABMwAAAAACMwAAAAAAWgAAAAACWgAAAAADWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAAALgAAAAADeAAAAAAAeAAAAAADeAAAAAAALgAAAAADLgAAAAADaQAAAAAAWgAAAAABWgAAAAACWgAAAAACLgAAAAADWgAAAAACWgAAAAACWgAAAAACLgAAAAADWgAAAAAAdwAAAAABdwAAAAACdwAAAAADdwAAAAACdwAAAAACdwAAAAABaQAAAAAALgAAAAABWgAAAAADWgAAAAAAWgAAAAABLgAAAAAAWgAAAAABWgAAAAACWgAAAAAALgAAAAAAdwAAAAAAdwAAAAABdwAAAAADdwAAAAABdwAAAAAAdwAAAAABegAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAACWgAAAAADWgAAAAAAWgAAAAADMwAAAAAAMwAAAAAALgAAAAACdwAAAAADdwAAAAACdwAAAAADLgAAAAADLgAAAAACegAAAAAAWgAAAAADWgAAAAABWgAAAAADegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAADeAAAAAADeAAAAAACeAAAAAADdwAAAAAAdwAAAAADegAAAAAALgAAAAAAWgAAAAACWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAABdwAAAAACdwAAAAAAdwAAAAADdwAAAAACegAAAAAAWgAAAAACWgAAAAABWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAACdwAAAAABdwAAAAADdwAAAAABLgAAAAABLgAAAAABegAAAAAAWgAAAAAAWgAAAAABWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: IwAAAAABIwAAAAAAIwAAAAADcAAAAAAAGgAAAAABGgAAAAAAPQAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAGgAAAAAAIwAAAAABIwAAAAAAIwAAAAACcAAAAAAAGgAAAAADGgAAAAACcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAADcAAAAAAAGgAAAAAAIwAAAAAAIwAAAAABIwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAADcAAAAAAAGgAAAAACIwAAAAAAIwAAAAACIwAAAAABcAAAAAAAGgAAAAABGgAAAAACPQAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAPQAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAADXwAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAADGgAAAAACGgAAAAABGgAAAAADGgAAAAADGgAAAAABXwAAAAAAGgAAAAADGgAAAAABGgAAAAAAGgAAAAADGgAAAAABXwAAAAAAGgAAAAABGgAAAAABGgAAAAADGgAAAAADGgAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAABXwAAAAAAGgAAAAAAGgAAAAABcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAcAAAAAAAGgAAAAADcAAAAAAATgAAAAAATgAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAACcAAAAAAAGgAAAAABGgAAAAADcAAAAAAAXwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAXwAAAAAAGgAAAAABGgAAAAAAGgAAAAAAGgAAAAABcAAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAACcAAAAAAATgAAAAAATgAAAAAARwAAAAAARwAAAAAATgAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAABGgAAAAADcAAAAAAAGgAAAAABGgAAAAADGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAGgAAAAADGgAAAAACcAAAAAAAcAAAAAAATgAAAAAARwAAAAAARwAAAAAATgAAAAAATgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAATgAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAACYQAAAAAAcAAAAAAAcAAAAAAATgAAAAAARwAAAAAARwAAAAAATgAAAAAATgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAAC + tiles: JwAAAAABJwAAAAAAJwAAAAADegAAAAAAHgAAAAABHgAAAAAAQQAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAAAWgAAAAADegAAAAAAHgAAAAAAJwAAAAABJwAAAAAAJwAAAAACegAAAAAAHgAAAAADHgAAAAACegAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAACWgAAAAADegAAAAAAHgAAAAAAJwAAAAAAJwAAAAABJwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAADWgAAAAADegAAAAAAHgAAAAACJwAAAAAAJwAAAAACJwAAAAABegAAAAAAHgAAAAABHgAAAAACQQAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAABWgAAAAAAegAAAAAAHgAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAABegAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADegAAAAAAegAAAAAAQQAAAAAAHgAAAAAAHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAADegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAADaQAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAADHgAAAAADHgAAAAABaQAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAADHgAAAAABaQAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAABaQAAAAAAHgAAAAAAHgAAAAABegAAAAAAHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAAAegAAAAAAHgAAAAADegAAAAAAVQAAAAAAVQAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAACegAAAAAAHgAAAAABHgAAAAADegAAAAAAaQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAaQAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABegAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAACegAAAAAAVQAAAAAAVQAAAAAATgAAAAAATgAAAAAAVQAAAAAAegAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAADegAAAAAAHgAAAAABHgAAAAADHgAAAAADHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAHgAAAAADHgAAAAACegAAAAAAegAAAAAAVQAAAAAATgAAAAAATgAAAAAAVQAAAAAAVQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAVQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAACawAAAAAAegAAAAAAegAAAAAAVQAAAAAATgAAAAAATgAAAAAAVQAAAAAAVQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAAAbQAAAAAC version: 6 -3,0: ind: -3,0 - tiles: YQAAAAACcAAAAAAAcAAAAAAAcAAAAAAATgAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYQAAAAACcAAAAAAAcAAAAAAAcAAAAAAATgAAAAAARwAAAAAATgAAAAAARwAAAAAATgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAABYQAAAAAAYQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAADYQAAAAACcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAACcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAACXwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAACKgAAAAACKgAAAAAAKgAAAAADUwAAAAABUwAAAAADKgAAAAACKgAAAAAAKgAAAAADXwAAAAAAUwAAAAAAKgAAAAAAKgAAAAADKgAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARgAAAAADcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAKgAAAAAALwAAAAABcAAAAAAAUwAAAAABKgAAAAABUwAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAUwAAAAACUwAAAAAAKgAAAAACLwAAAAACcAAAAAAAKgAAAAACUwAAAAACUwAAAAACcAAAAAAAPgAAAAAAKgAAAAACKgAAAAADKgAAAAACKgAAAAADEgAAAAAAcAAAAAAAKgAAAAABUwAAAAABKgAAAAABcAAAAAAAcAAAAAAAUwAAAAAAKgAAAAABUwAAAAABcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAKgAAAAACUwAAAAAAKgAAAAADcAAAAAAAWwAAAAABUwAAAAACUwAAAAABKgAAAAABcAAAAAAAcAAAAAAARgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAKgAAAAADcAAAAAAAWwAAAAAAUwAAAAABKgAAAAADUwAAAAACcAAAAAAAUwAAAAACKgAAAAADUwAAAAACUwAAAAADKgAAAAAAUwAAAAAAUwAAAAADKgAAAAACUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAKgAAAAACUwAAAAACUwAAAAACXwAAAAAAKgAAAAABUwAAAAACUwAAAAABKgAAAAAAUwAAAAABUwAAAAABKgAAAAABKgAAAAABUwAAAAABUwAAAAACUwAAAAAAXwAAAAAAUwAAAAACKgAAAAAAUwAAAAABXwAAAAAAUwAAAAAAKgAAAAACUwAAAAADUwAAAAAAKgAAAAADUwAAAAADUwAAAAAD + tiles: awAAAAACegAAAAAAegAAAAAAegAAAAAAVQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAAAbQAAAAAAawAAAAACegAAAAAAegAAAAAAegAAAAAAVQAAAAAATgAAAAAAVQAAAAAATgAAAAAAVQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAACbQAAAAABawAAAAAAawAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAACbQAAAAADawAAAAACegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAACbQAAAAACegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAADWgAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAACaQAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAABWgAAAAABWgAAAAABWgAAAAACLgAAAAACLgAAAAAALgAAAAADWgAAAAABWgAAAAADLgAAAAACLgAAAAAALgAAAAADaQAAAAAAWgAAAAAALgAAAAAALgAAAAADLgAAAAADWgAAAAAAWgAAAAACWgAAAAABWgAAAAACWgAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAABWgAAAAAAWgAAAAADegAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAAAWgAAAAAAWgAAAAACegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAADegAAAAAAegAAAAAAWgAAAAADWgAAAAAALgAAAAAAMwAAAAABegAAAAAAWgAAAAABLgAAAAABWgAAAAAAegAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAWgAAAAACWgAAAAAALgAAAAACMwAAAAACegAAAAAALgAAAAACWgAAAAACWgAAAAACegAAAAAAQgAAAAAALgAAAAACLgAAAAADLgAAAAACLgAAAAADFQAAAAAAegAAAAAALgAAAAABWgAAAAABLgAAAAABegAAAAAAegAAAAAAWgAAAAAALgAAAAABWgAAAAABegAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAALgAAAAACWgAAAAAALgAAAAADegAAAAAAZQAAAAABWgAAAAACWgAAAAABLgAAAAABegAAAAAAegAAAAAATQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAAALgAAAAADegAAAAAAZQAAAAAAWgAAAAABLgAAAAADWgAAAAACegAAAAAAWgAAAAACLgAAAAADWgAAAAACWgAAAAADLgAAAAAAWgAAAAAAWgAAAAADLgAAAAACWgAAAAACWgAAAAACegAAAAAAegAAAAAALgAAAAACWgAAAAACWgAAAAACaQAAAAAALgAAAAABWgAAAAACWgAAAAABLgAAAAAAWgAAAAABWgAAAAABLgAAAAABLgAAAAABWgAAAAABWgAAAAACWgAAAAAAaQAAAAAAWgAAAAACLgAAAAAAWgAAAAABaQAAAAAAWgAAAAAALgAAAAACWgAAAAADWgAAAAAALgAAAAADWgAAAAADWgAAAAAD version: 6 -3,1: ind: -3,1 - tiles: UwAAAAADUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAUwAAAAAAUwAAAAADKgAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACKgAAAAABUwAAAAAAKgAAAAADUwAAAAABUwAAAAACUwAAAAABXwAAAAAAUwAAAAACKgAAAAADUwAAAAADcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAKgAAAAACUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAKgAAAAADUwAAAAACUwAAAAABcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAKgAAAAAAcAAAAAAAWwAAAAACUwAAAAADKgAAAAADUwAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAKgAAAAABUwAAAAABKgAAAAAAcAAAAAAAWwAAAAACUwAAAAACUwAAAAABKgAAAAABcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAKgAAAAACUwAAAAACKgAAAAADcAAAAAAAcAAAAAAAUwAAAAADKgAAAAABUwAAAAADcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAKgAAAAAALwAAAAACcAAAAAAAKgAAAAAAUwAAAAABUwAAAAADYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABKgAAAAADLwAAAAAAcAAAAAAAUwAAAAAAKgAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAADYQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAKgAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALwAAAAACbQAAAAABKgAAAAACbQAAAAACbQAAAAABcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAUwAAAAADUwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAKgAAAAACbQAAAAADbQAAAAACbQAAAAABbQAAAAAAcAAAAAAAKgAAAAACUwAAAAAAKgAAAAACUwAAAAADUwAAAAADKgAAAAABKgAAAAACKgAAAAAAUwAAAAADXwAAAAAAbQAAAAACbQAAAAADKgAAAAACbQAAAAAAbQAAAAAAXwAAAAAAKgAAAAABUwAAAAAAKgAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAACcAAAAAAAbQAAAAACbQAAAAADKgAAAAABbQAAAAADbQAAAAABXwAAAAAAKgAAAAABUwAAAAADKgAAAAAAUwAAAAADUwAAAAAAKgAAAAADKgAAAAADKgAAAAAAUwAAAAAAXwAAAAAAKgAAAAADbQAAAAACbQAAAAAAbQAAAAACbQAAAAACcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAAAXwAAAAAAbQAAAAAAbQAAAAABKgAAAAAAbQAAAAACbQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAbQAAAAABbQAAAAABbQAAAAACcAAAAAAAKgAAAAAD + tiles: WgAAAAADWgAAAAADWgAAAAAAWgAAAAADegAAAAAAWgAAAAAAWgAAAAADLgAAAAABegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAACLgAAAAABWgAAAAAALgAAAAADWgAAAAABWgAAAAACWgAAAAABaQAAAAAAWgAAAAACLgAAAAADWgAAAAADegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAALgAAAAACWgAAAAABWgAAAAACegAAAAAAegAAAAAALgAAAAADWgAAAAACWgAAAAABegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAKgAAAAAAKgAAAAAAegAAAAAAWgAAAAAAWgAAAAAALgAAAAAAegAAAAAAZQAAAAACWgAAAAADLgAAAAADWgAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAKgAAAAAAKgAAAAAAegAAAAAALgAAAAABWgAAAAABLgAAAAAAegAAAAAAZQAAAAACWgAAAAACWgAAAAABLgAAAAABegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAKgAAAAAAKgAAAAAAegAAAAAALgAAAAACWgAAAAACLgAAAAADegAAAAAAegAAAAAAWgAAAAADLgAAAAABWgAAAAADegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAAALgAAAAAAMwAAAAACegAAAAAALgAAAAAAWgAAAAABWgAAAAADagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAABLgAAAAADMwAAAAAAegAAAAAAWgAAAAAALgAAAAADWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAADawAAAAABegAAAAAAegAAAAAAegAAAAAAaQAAAAAALgAAAAADegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMwAAAAACdwAAAAABLgAAAAACdwAAAAACdwAAAAABegAAAAAAWgAAAAAAWgAAAAABWgAAAAADegAAAAAAWgAAAAADWgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAALgAAAAACdwAAAAADdwAAAAACdwAAAAABdwAAAAAAegAAAAAALgAAAAACWgAAAAAALgAAAAACWgAAAAADWgAAAAADLgAAAAABLgAAAAACLgAAAAAAWgAAAAADaQAAAAAAdwAAAAACdwAAAAADLgAAAAACdwAAAAAAdwAAAAAAaQAAAAAALgAAAAABWgAAAAAALgAAAAABWgAAAAADWgAAAAADWgAAAAACWgAAAAABWgAAAAABWgAAAAACegAAAAAAdwAAAAACdwAAAAADLgAAAAABdwAAAAADdwAAAAABaQAAAAAALgAAAAABWgAAAAADLgAAAAAAWgAAAAADWgAAAAAALgAAAAADLgAAAAADLgAAAAAAWgAAAAAAaQAAAAAALgAAAAADdwAAAAACdwAAAAAAdwAAAAACdwAAAAACegAAAAAAWgAAAAAAWgAAAAACWgAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAADWgAAAAAAaQAAAAAAdwAAAAAAdwAAAAABLgAAAAAAdwAAAAACdwAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAdwAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADegAAAAAAdwAAAAABdwAAAAABdwAAAAACegAAAAAALgAAAAAD version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAYQAAAAACcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAMQAAAAACMQAAAAADMQAAAAACYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAYQAAAAAAMQAAAAACMQAAAAAAMQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADcAAAAAAAYAAAAAAAcAAAAAAAGgAAAAABGgAAAAADcAAAAAAAYQAAAAABMQAAAAAAMQAAAAABMQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAUwAAAAADcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAawAAAAACegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAANQAAAAACNQAAAAADNQAAAAACagAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAADegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAABegAAAAAAawAAAAAANQAAAAACNQAAAAAANQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAADegAAAAAAagAAAAAAegAAAAAAHgAAAAABHgAAAAADegAAAAAAawAAAAABNQAAAAAANQAAAAABNQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAWgAAAAADegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABLwAAAAABLwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAKgAAAAAAUwAAAAACKgAAAAADUwAAAAABKgAAAAADUwAAAAADKgAAAAACUwAAAAABcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABKgAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABKgAAAAAAUwAAAAACKgAAAAABUwAAAAAAKgAAAAAAUwAAAAADKgAAAAACUwAAAAADYAAAAAAAcAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAACLwAAAAABLwAAAAACLwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAACYAAAAAAAcAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAACegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABMwAAAAABMwAAAAADWgAAAAADWgAAAAADWgAAAAAAWgAAAAACWgAAAAACWgAAAAACegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAALgAAAAAAWgAAAAACLgAAAAADWgAAAAABLgAAAAADWgAAAAADLgAAAAACWgAAAAABegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAAAWgAAAAABWgAAAAABLgAAAAAAWgAAAAACWgAAAAADegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABLgAAAAAAWgAAAAACLgAAAAABWgAAAAAALgAAAAAAWgAAAAADLgAAAAACWgAAAAADagAAAAAAegAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAACMwAAAAABMwAAAAACMwAAAAACWgAAAAABWgAAAAADWgAAAAABWgAAAAADWgAAAAADegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAACagAAAAAAegAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: OgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAXwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADKgAAAAABUwAAAAADUwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAAAAANwAAAAAANwAAAAAALAAAAAAAcAAAAAAALwAAAAACUwAAAAAAKgAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAAAAANwAAAAAANwAAAAAALAAAAAAAcAAAAAAALwAAAAAAUwAAAAADUwAAAAABKgAAAAACYAAAAAAAcAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABDAAAAAADDAAAAAADDAAAAAACcAAAAAAALwAAAAADUwAAAAADUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABDAAAAAADDAAAAAACDAAAAAABcAAAAAAALwAAAAADUwAAAAABUwAAAAABUwAAAAADYAAAAAAAcAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAADAAAAAACDAAAAAADcAAAAAAALwAAAAABUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAADKgAAAAABKgAAAAADXwAAAAAAcAAAAAAAUwAAAAAAKgAAAAABUwAAAAAAUwAAAAAARwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAADcAAAAAAAUwAAAAADUwAAAAACKgAAAAADUwAAAAACRwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAACGgAAAAAAGgAAAAABXwAAAAAAUwAAAAACUwAAAAAAUwAAAAADKgAAAAADRwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABKgAAAAADGgAAAAADKgAAAAACRwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAADRwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAKgAAAAACGgAAAAADKgAAAAABcAAAAAAAKgAAAAACUwAAAAABUwAAAAAAUwAAAAACRwAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAUwAAAAAAKgAAAAAAUwAAAAADUwAAAAADYAAAAAAAcAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAACcAAAAAAAUwAAAAAAUwAAAAADKgAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: PgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAaQAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAACegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAADLgAAAAABWgAAAAADWgAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAMAAAAAAAegAAAAAAMwAAAAACWgAAAAAALgAAAAABWgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAMAAAAAAAegAAAAAAMwAAAAAAWgAAAAADWgAAAAABLgAAAAACagAAAAAAegAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAADDgAAAAADDgAAAAACegAAAAAAMwAAAAADWgAAAAADWgAAAAADWgAAAAACegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAADDgAAAAACDgAAAAABegAAAAAAMwAAAAADWgAAAAABWgAAAAABWgAAAAADagAAAAAAegAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAACDgAAAAADegAAAAAAMwAAAAABWgAAAAAAWgAAAAADWgAAAAABegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADLgAAAAABLgAAAAADaQAAAAAAegAAAAAAWgAAAAAALgAAAAABWgAAAAAAWgAAAAAATgAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAADegAAAAAAWgAAAAADWgAAAAACLgAAAAADWgAAAAACTgAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAABaQAAAAAAWgAAAAACWgAAAAAAWgAAAAADLgAAAAADTgAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABLgAAAAADHgAAAAADLgAAAAACTgAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAADTgAAAAAAWgAAAAABWgAAAAAAWgAAAAADWgAAAAAAagAAAAAAegAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAALgAAAAACHgAAAAADLgAAAAABegAAAAAALgAAAAACWgAAAAABWgAAAAAAWgAAAAACTgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAHgAAAAACHgAAAAACegAAAAAAegAAAAAAWgAAAAAALgAAAAAAWgAAAAADWgAAAAADagAAAAAAegAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAACegAAAAAAWgAAAAAAWgAAAAADLgAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,0: ind: 2,0 - tiles: UwAAAAACKgAAAAABKgAAAAABUwAAAAABXwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAKgAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAADcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAYQAAAAABcAAAAAAAYQAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAACNAAAAAACNAAAAAADNAAAAAABNAAAAAACNAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAACNAAAAAADNAAAAAAANAAAAAACNAAAAAAANAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAACNAAAAAADNAAAAAAANAAAAAAANAAAAAABNAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAADNAAAAAAANAAAAAAANAAAAAABNAAAAAADNAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAABNAAAAAABNAAAAAADNAAAAAABNAAAAAABNAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAANAAAAAABNAAAAAAANAAAAAAANAAAAAACNAAAAAABNAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAANAAAAAADNAAAAAACNAAAAAADNAAAAAABNAAAAAACNAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANAAAAAACNAAAAAADNAAAAAADNAAAAAABNAAAAAAANAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAIwAAAAADIwAAAAACIwAAAAADSgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbQAAAAACbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAA + tiles: WgAAAAACLgAAAAABLgAAAAABWgAAAAABaQAAAAAAWgAAAAAAWgAAAAABWgAAAAAALgAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAADegAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAegAAAAAAawAAAAABegAAAAAAawAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAACOAAAAAACOAAAAAADOAAAAAABOAAAAAACOAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAACOAAAAAADOAAAAAAAOAAAAAACOAAAAAAAOAAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAACOAAAAAADOAAAAAAAOAAAAAAAOAAAAAABOAAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAADOAAAAAAAOAAAAAAAOAAAAAABOAAAAAADOAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAABOAAAAAABOAAAAAADOAAAAAABOAAAAAABOAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAOAAAAAABOAAAAAAAOAAAAAAAOAAAAAACOAAAAAABOAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAOAAAAAADOAAAAAACOAAAAAADOAAAAAABOAAAAAACOAAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAOAAAAAACOAAAAAADOAAAAAADOAAAAAABOAAAAAAAOAAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAUQAAAAAAJwAAAAADJwAAAAACJwAAAAADUQAAAAAAUQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAdwAAAAACdwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAA version: 6 2,1: ind: 2,1 - tiles: bQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: dwAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,0: ind: -4,0 - tiles: bwAAAAAAbwAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAABcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAbQAAAAABbQAAAAAAbQAAAAABbQAAAAADbQAAAAABbQAAAAACbQAAAAABbQAAAAABcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALwAAAAABUwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAALwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAALwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAAAUwAAAAACKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAUwAAAAABUwAAAAADKgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAADUwAAAAACUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAKgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACKgAAAAAA + tiles: eQAAAAAAeQAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAdwAAAAACdwAAAAABdwAAAAABdwAAAAAAdwAAAAABdwAAAAACdwAAAAADdwAAAAABegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAdwAAAAABdwAAAAAAdwAAAAABdwAAAAADdwAAAAABdwAAAAACdwAAAAABdwAAAAABegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAdwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAMwAAAAABWgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAMwAAAAADWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAMwAAAAADWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAegAAAAAAegAAAAAAagAAAAAAWgAAAAAAWgAAAAACLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAWgAAAAABWgAAAAADLgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAegAAAAAAegAAAAAAagAAAAAAWgAAAAADWgAAAAACWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAAALgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAACLgAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: bwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAAAbQAAAAACbQAAAAADbQAAAAAAbQAAAAADbQAAAAADbQAAAAAAbQAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAADbQAAAAAAbQAAAAACbQAAAAAAbQAAAAACbQAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAcAAAAAAAbQAAAAABbQAAAAABbQAAAAABbQAAAAADbQAAAAACbQAAAAABbQAAAAAAbQAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAbQAAAAADbQAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAABbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAANQAAAAAARAAAAAAARAAAAAADRAAAAAABRAAAAAABRAAAAAACcAAAAAAAbQAAAAABbQAAAAADbQAAAAABPQAAAAAARwAAAAAARwAAAAAAXwAAAAAAGgAAAAABGgAAAAAANQAAAAAARAAAAAADRAAAAAACRAAAAAAARAAAAAAARAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAAAPQAAAAAARwAAAAAARwAAAAAAXwAAAAAAGgAAAAACGgAAAAABNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAPQAAAAAAbQAAAAADbQAAAAACbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANQAAAAAARAAAAAACRAAAAAADRAAAAAADRAAAAAABRAAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAADPQAAAAAAYwAAAAADYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANQAAAAAARAAAAAADRAAAAAACRAAAAAADRAAAAAABRAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAABPQAAAAAAGgAAAAABGgAAAAABGgAAAAACGgAAAAABGgAAAAADGgAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAbQAAAAADbQAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAADGgAAAAAAGgAAAAACbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAbQAAAAABbQAAAAACPQAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAAAGgAAAAABGgAAAAABbwAAAAAAAAAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAbQAAAAACbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAbQAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAAAbQAAAAAAbQAAAAABbQAAAAADcAAAAAAA + tiles: eQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAACdwAAAAABdwAAAAABdwAAAAAAdwAAAAACdwAAAAADdwAAAAAAdwAAAAADdwAAAAADdwAAAAAAdwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAdwAAAAADdwAAAAADdwAAAAADdwAAAAAAdwAAAAACdwAAAAAAdwAAAAACdwAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAABHgAAAAAAegAAAAAAdwAAAAABdwAAAAABdwAAAAABdwAAAAADdwAAAAACdwAAAAABdwAAAAAAdwAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAACegAAAAAAdwAAAAADdwAAAAAAdwAAAAACdwAAAAAAdwAAAAAAdwAAAAACegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAABdwAAAAABdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAOQAAAAAASwAAAAAASwAAAAADSwAAAAABSwAAAAABSwAAAAACegAAAAAAdwAAAAABdwAAAAADdwAAAAABQQAAAAAATgAAAAAATgAAAAAAaQAAAAAAHgAAAAABHgAAAAAAOQAAAAAASwAAAAADSwAAAAACSwAAAAAASwAAAAAASwAAAAAAegAAAAAAdwAAAAAAdwAAAAACdwAAAAAAQQAAAAAATgAAAAAATgAAAAAAaQAAAAAAHgAAAAACHgAAAAABOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAQQAAAAAAdwAAAAADdwAAAAACdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAOQAAAAAASwAAAAACSwAAAAADSwAAAAADSwAAAAABSwAAAAAAegAAAAAAdwAAAAABdwAAAAACdwAAAAADQQAAAAAAbQAAAAADbQAAAAAAegAAAAAAegAAAAAAegAAAAAAOQAAAAAASwAAAAADSwAAAAACSwAAAAADSwAAAAABSwAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAABQQAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAABHgAAAAADHgAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAPQAAAAAAPQAAAAAAdwAAAAADdwAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAAAHgAAAAACeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAPQAAAAAAPQAAAAAAdwAAAAABdwAAAAACQQAAAAAAHgAAAAADHgAAAAABHgAAAAADHgAAAAAAHgAAAAABHgAAAAABeQAAAAAAAAAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAdwAAAAACdwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAdwAAAAAAdwAAAAADdwAAAAACdwAAAAADdwAAAAAAdwAAAAAAdwAAAAABdwAAAAADegAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAgAAAAAAAgAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAgAAAAAAAgAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAgAAAAAAAgAAAAAAegAAAAAAWgAAAAACWgAAAAADegAAAAAAWgAAAAADWgAAAAADegAAAAAAKgAAAAAAKgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAgAAAAAAAgAAAAAAegAAAAAAWgAAAAAAWgAAAAACegAAAAAAWgAAAAABWgAAAAAAegAAAAAAKgAAAAAAKgAAAAAAegAAAAAA version: 6 -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAKgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABKgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAABUwAAAAABUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAKgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAABUwAAAAAAKgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAABLgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAegAAAAAAegAAAAAAagAAAAAAWgAAAAABWgAAAAABWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAWgAAAAACWgAAAAAALgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAegAAAAAAegAAAAAAagAAAAAAWgAAAAABWgAAAAAALgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAdwAAAAADdwAAAAABdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAdwAAAAADdwAAAAABdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAdwAAAAAAdwAAAAADdwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAdwAAAAACdwAAAAADdwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAdwAAAAAAdwAAAAACdwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAABdwAAAAADdwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAANQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAOQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAagAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: PQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAPQAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAPQAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAPQAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAUwAAAAAAUwAAAAABRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAPQAAAAAARwAAAAAAUwAAAAAAUwAAAAACRwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAUwAAAAACUwAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAUwAAAAABUwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAUwAAAAACUwAAAAABRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAUwAAAAADUwAAAAADPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAPQAAAAAAUwAAAAACUwAAAAADPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAUwAAAAABRwAAAAAAcAAAAAAAHgAAAAADHgAAAAAAHgAAAAACcAAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAADcAAAAAAAUwAAAAAARwAAAAAAcAAAAAAAKgAAAAADKgAAAAABKgAAAAABcAAAAAAA + tiles: QQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAQQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAQQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAQQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAWgAAAAAAWgAAAAABTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAQQAAAAAATgAAAAAAWgAAAAAAWgAAAAACTgAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAWgAAAAACWgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAWgAAAAABWgAAAAAATgAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAWgAAAAACWgAAAAABTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAQQAAAAAAWgAAAAADWgAAAAADQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAQQAAAAAAWgAAAAACWgAAAAADQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAWgAAAAABTgAAAAAAegAAAAAAIgAAAAADIgAAAAAAIgAAAAACQQAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAADegAAAAAAWgAAAAAATgAAAAAAegAAAAAALgAAAAADLgAAAAABLgAAAAABegAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAANgAAAAAAcAAAAAAANQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANQAAAAAAcAAAAAAAcAAAAAAANQAAAAAANQAAAAAAcAAAAAAANgAAAAAAcAAAAAAANQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAABcAAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIgAAAAADIgAAAAACIgAAAAABcAAAAAAAHwAAAAAAcAAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAHwAAAAADcAAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAARgAAAAADRgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAAAPQAAAAAAcAAAAAAAUwAAAAAARgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAJgAAAAAAbQAAAAAAbQAAAAACbQAAAAADPQAAAAAAcAAAAAAAUwAAAAACRgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAJgAAAAAAbQAAAAAAbQAAAAAAbQAAAAADPQAAAAAAcAAAAAAAUwAAAAABUwAAAAAD + tiles: egAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAATwAAAAAATwAAAAAATwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAOQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAATwAAAAAATwAAAAAATwAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAOQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAATwAAAAAATwAAAAAATwAAAAAAegAAAAAAOgAAAAAAegAAAAAAOQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAOQAAAAAAegAAAAAAegAAAAAAOQAAAAAAOQAAAAAAegAAAAAAOgAAAAAAegAAAAAAOQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAATwAAAAAATwAAAAAATwAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAABegAAAAAAWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJgAAAAADJgAAAAACJgAAAAABegAAAAAAIwAAAAAAegAAAAAAWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAATQAAAAAATQAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAIwAAAAADegAAAAAAWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAATQAAAAADTQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAADdwAAAAAAQQAAAAAAegAAAAAAWgAAAAAATQAAAAAAOgAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAKgAAAAAAdwAAAAAAdwAAAAACdwAAAAADQQAAAAAAegAAAAAAWgAAAAACTQAAAAADegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAKgAAAAAAdwAAAAAAdwAAAAAAdwAAAAADQQAAAAAAegAAAAAAWgAAAAABWgAAAAAD version: 6 1,-3: ind: 1,-3 - tiles: bwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAABcAAAAAAARwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAADcAAAAAAARwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAABRwAAAAAAUwAAAAABUwAAAAACUwAAAAACRwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAAaQAAAAAAegAAAAAAaQAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAABegAAAAAATgAAAAAAaQAAAAAAegAAAAAAaQAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAADegAAAAAATgAAAAAAaQAAAAAAegAAAAAAaQAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADWgAAAAABTgAAAAAAWgAAAAABWgAAAAACWgAAAAACTgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,2: ind: -3,2 - tiles: UwAAAAABUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAUwAAAAACKgAAAAAAKgAAAAABKgAAAAAAUwAAAAABXwAAAAAAbQAAAAADbQAAAAADbQAAAAABcAAAAAAAbQAAAAACKgAAAAABUwAAAAABKgAAAAACKgAAAAACXwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAADcAAAAAAAXwAAAAAAKgAAAAABUwAAAAADRwAAAAAARwAAAAAAcAAAAAAAUwAAAAABKgAAAAABKgAAAAADKgAAAAAARwAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAAAcAAAAAAAGgAAAAADKgAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAAARwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACKgAAAAACUwAAAAACcAAAAAAADwAAAAAADwAAAAAADwAAAAAAcAAAAAAAKgAAAAADKgAAAAACRwAAAAAAcAAAAAAAGgAAAAACGgAAAAAAXwAAAAAAcAAAAAAAKgAAAAACUwAAAAABUwAAAAACcAAAAAAADwAAAAAADwAAAAAADwAAAAAAcAAAAAAAUwAAAAACUwAAAAACRwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAcAAAAAAAKgAAAAACKgAAAAACXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAKgAAAAABIwAAAAABIwAAAAADcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAABIwAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAACIwAAAAAAcAAAAAAAUwAAAAABUwAAAAACQgAAAAAAQgAAAAACUwAAAAABUwAAAAAAUwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAADIwAAAAAAIwAAAAABIwAAAAACIwAAAAAAIwAAAAABIwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAADcAAAAAAAcAAAAAAAIwAAAAACIwAAAAABIwAAAAACIwAAAAABRwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAYQAAAAACcAAAAAAAcAAAAAAAIwAAAAAAIwAAAAACIwAAAAACIwAAAAADRwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAA + tiles: WgAAAAABWgAAAAAAWgAAAAADWgAAAAABegAAAAAAWgAAAAACLgAAAAAALgAAAAABLgAAAAAAWgAAAAABaQAAAAAAdwAAAAADdwAAAAADdwAAAAABegAAAAAAdwAAAAACLgAAAAABWgAAAAABLgAAAAACLgAAAAACaQAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAAAegAAAAAAdwAAAAAAdwAAAAADdwAAAAADegAAAAAAaQAAAAAALgAAAAABWgAAAAADTgAAAAAATgAAAAAAegAAAAAAWgAAAAABLgAAAAABLgAAAAADLgAAAAAATgAAAAAAegAAAAAAdwAAAAAAdwAAAAADdwAAAAAAegAAAAAAHgAAAAADLgAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAABWgAAAAAATgAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACLgAAAAACWgAAAAACegAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAegAAAAAALgAAAAADLgAAAAACTgAAAAAAegAAAAAAHgAAAAACHgAAAAAAaQAAAAAAegAAAAAALgAAAAACWgAAAAABWgAAAAACegAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAegAAAAAAWgAAAAACWgAAAAACTgAAAAAAegAAAAAAHgAAAAABHgAAAAAAegAAAAAALgAAAAACLgAAAAACaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAADegAAAAAAegAAAAAALgAAAAABJwAAAAABJwAAAAADegAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAADegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAABJwAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAACJwAAAAAAegAAAAAAWgAAAAABWgAAAAACSQAAAAAASQAAAAACWgAAAAABWgAAAAAAWgAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAADJwAAAAAAJwAAAAABJwAAAAACJwAAAAAAJwAAAAABJwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAADegAAAAAAegAAAAAAJwAAAAACJwAAAAABJwAAAAACJwAAAAABTgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAawAAAAACegAAAAAAegAAAAAAJwAAAAAAJwAAAAACJwAAAAACJwAAAAADTgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAACegAAAAAAAAAAAAAAAAAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAABegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,2: ind: -4,2 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABRwAAAAAARwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAADKgAAAAADUwAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACKgAAAAABUwAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACKgAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAAAKgAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAIwAAAAADIwAAAAABbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAIwAAAAADIwAAAAACAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAIwAAAAABIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABTgAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAWgAAAAADLgAAAAADWgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACLgAAAAABWgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACLgAAAAABWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAWgAAAAAALgAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAJwAAAAADJwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAJwAAAAADJwAAAAACAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAJwAAAAABJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -2,2: ind: -2,2 - tiles: bQAAAAABbQAAAAACbQAAAAACbQAAAAADbQAAAAABbQAAAAACcAAAAAAAKgAAAAADUwAAAAAAUwAAAAABcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAALwAAAAAALwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACXwAAAAAARwAAAAAARwAAAAAAXwAAAAAAGgAAAAACGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAACcAAAAAAAKgAAAAABUwAAAAABUwAAAAACXwAAAAAARwAAAAAARwAAAAAAXwAAAAAAGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACKgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAADbQAAAAADbQAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARgAAAAABRgAAAAABRgAAAAADRgAAAAACRgAAAAACRgAAAAACRgAAAAAARgAAAAADRgAAAAABcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAABYwAAAAABYwAAAAABKgAAAAACGgAAAAACGgAAAAABGgAAAAAAGgAAAAABcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAYQAAAAADYQAAAAACYAAAAAAAYwAAAAABYwAAAAADYwAAAAAAKgAAAAADKgAAAAAAKgAAAAABGgAAAAADGgAAAAADGgAAAAACcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAACKgAAAAADKgAAAAABKgAAAAADKgAAAAAAKgAAAAABGgAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAKgAAAAADKgAAAAABKgAAAAACKgAAAAABKgAAAAAAKgAAAAAAKgAAAAABcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAKgAAAAAAKgAAAAABKgAAAAACKgAAAAABKgAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAA + tiles: dwAAAAABdwAAAAACdwAAAAACdwAAAAADdwAAAAABdwAAAAACegAAAAAALgAAAAADWgAAAAAAWgAAAAABegAAAAAAagAAAAAAegAAAAAAegAAAAAAMwAAAAAAMwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAACaQAAAAAATgAAAAAATgAAAAAAaQAAAAAAHgAAAAACHgAAAAADHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAWgAAAAADWgAAAAABWgAAAAACegAAAAAATgAAAAAATgAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAACegAAAAAALgAAAAABWgAAAAABWgAAAAACaQAAAAAATgAAAAAATgAAAAAAaQAAAAAAHgAAAAADHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAACLgAAAAADegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAABegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAdwAAAAADdwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAABdwAAAAADdwAAAAADdwAAAAAAdwAAAAABdwAAAAACdwAAAAADdwAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAABTQAAAAABTQAAAAADTQAAAAACTQAAAAACTQAAAAACTQAAAAAATQAAAAADTQAAAAABegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAABbQAAAAABbQAAAAABLgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAABegAAAAAAAAAAAAAAegAAAAAAegAAAAAAawAAAAADawAAAAACagAAAAAAbQAAAAABbQAAAAADbQAAAAAALgAAAAADLgAAAAAALgAAAAABHgAAAAADHgAAAAADHgAAAAACegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAACLgAAAAADLgAAAAABLgAAAAADLgAAAAAALgAAAAABHgAAAAAAHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAALgAAAAADLgAAAAABLgAAAAACLgAAAAABLgAAAAAALgAAAAAALgAAAAABegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAALgAAAAAALgAAAAABLgAAAAACLgAAAAABLgAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAA version: 6 -1,2: ind: -1,2 - tiles: cAAAAAAAYQAAAAACcAAAAAAAHwAAAAAAGgAAAAACKgAAAAABKgAAAAABGgAAAAACHwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAADbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAABGgAAAAACKgAAAAABKgAAAAABGgAAAAACHwAAAAACcAAAAAAAGgAAAAACGgAAAAADGgAAAAAAcAAAAAAAbQAAAAABKgAAAAACGgAAAAABGgAAAAACcAAAAAAAHwAAAAACGgAAAAADKgAAAAADKgAAAAABGgAAAAAAHwAAAAACcAAAAAAAGgAAAAADGgAAAAAAGgAAAAADXwAAAAAAbQAAAAAAbQAAAAABGgAAAAAAGgAAAAACXwAAAAAAHwAAAAADGgAAAAACKgAAAAADKgAAAAACGgAAAAADHwAAAAABXwAAAAAAGgAAAAADGgAAAAAAGgAAAAACcAAAAAAAbQAAAAACKgAAAAACGgAAAAADGgAAAAABcAAAAAAAHwAAAAABGgAAAAABGgAAAAABGgAAAAADGgAAAAAAHwAAAAABcAAAAAAAGgAAAAADGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAIwAAAAABRgAAAAACRgAAAAABIwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAADcAAAAAAAbQAAAAADbQAAAAABGgAAAAADGgAAAAAAGgAAAAADGgAAAAABGgAAAAACRgAAAAACRgAAAAACGgAAAAABGgAAAAABGgAAAAACGgAAAAADGgAAAAACGgAAAAACXwAAAAAAbQAAAAADbQAAAAADLwAAAAACLwAAAAABGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAAALwAAAAADLwAAAAADcAAAAAAAbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAAKgAAAAACKgAAAAAAKgAAAAAAKgAAAAABRwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAKgAAAAADKgAAAAABKgAAAAAAKgAAAAABKgAAAAAAKgAAAAACKgAAAAADKgAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAADKgAAAAADKgAAAAABKgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAA + tiles: egAAAAAAawAAAAACegAAAAAAIwAAAAAAHgAAAAACLgAAAAABLgAAAAABHgAAAAACIwAAAAACegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAdwAAAAADdwAAAAADegAAAAAAegAAAAAAegAAAAAAIwAAAAABHgAAAAACLgAAAAABLgAAAAABHgAAAAACIwAAAAACegAAAAAAHgAAAAACHgAAAAADHgAAAAAAegAAAAAAdwAAAAABLgAAAAACHgAAAAABHgAAAAACegAAAAAAIwAAAAACHgAAAAADLgAAAAADLgAAAAABHgAAAAAAIwAAAAACegAAAAAAHgAAAAADHgAAAAAAHgAAAAADaQAAAAAAdwAAAAAAdwAAAAABHgAAAAAAHgAAAAACaQAAAAAAIwAAAAADHgAAAAACLgAAAAADLgAAAAACHgAAAAADIwAAAAABaQAAAAAAHgAAAAADHgAAAAAAHgAAAAACegAAAAAAdwAAAAACLgAAAAACHgAAAAADHgAAAAABegAAAAAAIwAAAAABHgAAAAABHgAAAAABHgAAAAADHgAAAAAAIwAAAAABegAAAAAAHgAAAAADHgAAAAACHgAAAAADegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAACegAAAAAAegAAAAAAJwAAAAABTQAAAAACTQAAAAABJwAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAADegAAAAAAdwAAAAADdwAAAAABHgAAAAADHgAAAAAAHgAAAAADHgAAAAABHgAAAAACTQAAAAACTQAAAAACHgAAAAABHgAAAAABHgAAAAACHgAAAAADHgAAAAACHgAAAAACaQAAAAAAdwAAAAADdwAAAAADMwAAAAACMwAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAABHgAAAAADHgAAAAAAMwAAAAADMwAAAAADegAAAAAAdwAAAAADdwAAAAABegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAACeQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAALgAAAAACLgAAAAAALgAAAAAALgAAAAABTgAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAegAAAAAALgAAAAADLgAAAAABLgAAAAAALgAAAAABLgAAAAAALgAAAAACLgAAAAADLgAAAAACegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAADLgAAAAADLgAAAAABLgAAAAACegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA version: 6 0,2: ind: 0,2 - tiles: KgAAAAADbQAAAAADbQAAAAACRgAAAAAARgAAAAADRwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbQAAAAADKgAAAAABbQAAAAADRgAAAAACRgAAAAAARwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAKgAAAAABbQAAAAADbQAAAAAARgAAAAACRgAAAAAARwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbQAAAAABKgAAAAABbQAAAAABRgAAAAAARgAAAAABRwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAARwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAARwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAACbAAAAAADcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: LgAAAAADdwAAAAADdwAAAAACTQAAAAAATQAAAAADTgAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAADLgAAAAABdwAAAAADTQAAAAACTQAAAAAATgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAALgAAAAABdwAAAAADdwAAAAAATQAAAAACTQAAAAAATgAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAABLgAAAAABdwAAAAABTQAAAAAATQAAAAABTgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAATgAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACdgAAAAADegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: AAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAA + tiles: AAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAATwAAAAAATwAAAAAATwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAOQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAATwAAAAAATwAAAAAATwAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAOQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: cAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: egAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -2,-4: ind: -2,-4 - tiles: AAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAANQAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAANQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAANQAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAANQAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAANQAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAANQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAANQAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAANQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAANQAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAANQAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAANQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAANQAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAANQAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAANQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANQAAAAAA + tiles: AAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAOQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAOQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAOQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAOQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAOQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAOQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAOQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAOQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAOQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAOQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAOQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAOQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAOQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAOQAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -3,-4: ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -5,-1: ind: -5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAA version: 6 -1,-5: ind: -1,-5 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAADwAAAAAAGgAAAAACGgAAAAACGgAAAAABDwAAAAAAGgAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAAAcAAAAAAAGgAAAAAAGgAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAARgAAAAADGgAAAAABcAAAAAAAGgAAAAAADwAAAAAADwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAADwAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAGgAAAAACRgAAAAABRwAAAAAAGgAAAAAADwAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAGgAAAAACcAAAAAAADwAAAAAAGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARgAAAAABGgAAAAABcAAAAAAAGgAAAAABDwAAAAAADwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAADwAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAGgAAAAABGgAAAAADcAAAAAAAGgAAAAABGgAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAACDwAAAAAAGgAAAAAAGgAAAAABGgAAAAACDwAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAARgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAABKgAAAAADKgAAAAACKgAAAAACKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAABKgAAAAADKgAAAAAAKgAAAAABKgAAAAADKgAAAAACKgAAAAADKgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAKgAAAAAAKgAAAAACKgAAAAADKgAAAAADKgAAAAADKgAAAAADbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAEgAAAAAAHgAAAAACHgAAAAACHgAAAAABEgAAAAAAHgAAAAADegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAAAegAAAAAAHgAAAAAAHgAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAATQAAAAADHgAAAAABegAAAAAAHgAAAAAAEgAAAAAAEgAAAAAAegAAAAAAegAAAAAAHgAAAAAAegAAAAAAEgAAAAAAHgAAAAACegAAAAAAegAAAAAAegAAAAAAAAAAAAAAHgAAAAACTQAAAAABTgAAAAAAHgAAAAAAEgAAAAAAegAAAAAAegAAAAAANwAAAAAAHgAAAAACegAAAAAAEgAAAAAAHgAAAAADHgAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAABHgAAAAABegAAAAAAHgAAAAABEgAAAAAAEgAAAAAAegAAAAAAegAAAAAAHgAAAAACegAAAAAAEgAAAAAAHgAAAAADegAAAAAAegAAAAAAegAAAAAAAAAAAAAAHgAAAAABHgAAAAADegAAAAAAHgAAAAABHgAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAHgAAAAADegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAADHgAAAAACEgAAAAAAHgAAAAAAHgAAAAABHgAAAAACEgAAAAAAHgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAANwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAATQAAAAACHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAABLgAAAAADLgAAAAACLgAAAAACLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAABLgAAAAADLgAAAAAALgAAAAABLgAAAAADLgAAAAACLgAAAAADLgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALgAAAAAALgAAAAACLgAAAAADLgAAAAADLgAAAAADLgAAAAADeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAA version: 6 -2,-5: ind: -2,-5 - tiles: cAAAAAAADwAAAAAAGgAAAAADDwAAAAAADwAAAAAAGgAAAAACGgAAAAABGgAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAABGgAAAAADcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAADwAAAAAAGgAAAAADDwAAAAAADwAAAAAAGgAAAAACMwAAAAAAMwAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAABGgAAAAADcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAADwAAAAAAGgAAAAACRgAAAAADRgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABRgAAAAADRgAAAAAAGgAAAAADcAAAAAAAGgAAAAAARgAAAAADcAAAAAAAGgAAAAACRgAAAAACGgAAAAADGgAAAAABRgAAAAADRwAAAAAAGgAAAAAARwAAAAAAGgAAAAABGgAAAAADGgAAAAADGgAAAAADRwAAAAAARgAAAAACGgAAAAAAcAAAAAAADwAAAAAAGgAAAAADRgAAAAAARgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABRgAAAAABRgAAAAACGgAAAAACcAAAAAAAGgAAAAAARgAAAAAAcAAAAAAADwAAAAAAGgAAAAAADwAAAAAADwAAAAAAGgAAAAADMwAAAAAAMwAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAADGgAAAAACcAAAAAAAGgAAAAADGgAAAAADcAAAAAAADwAAAAAAGgAAAAACDwAAAAAADwAAAAAAGgAAAAAAGgAAAAACGgAAAAACcAAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADwAAAAAADwAAAAAAGgAAAAADMwAAAAAAMwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAANQAAAAAAKgAAAAACKgAAAAAAKgAAAAABKgAAAAADKgAAAAABKgAAAAAAKgAAAAADKgAAAAADKgAAAAAAKgAAAAACKgAAAAADAAAAAAAAAAAAAAAAcAAAAAAAKgAAAAADNQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAKgAAAAADNQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAKgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAANQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAANQAAAAAA + tiles: egAAAAAAEgAAAAAAHgAAAAADEgAAAAAAEgAAAAAAHgAAAAACHgAAAAABHgAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAADegAAAAAAegAAAAAATgAAAAAAegAAAAAAEgAAAAAAHgAAAAADEgAAAAAAEgAAAAAAHgAAAAACNwAAAAAANwAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAADegAAAAAAHgAAAAAAHgAAAAACegAAAAAAEgAAAAAAHgAAAAACTQAAAAADTQAAAAADHgAAAAACegAAAAAAegAAAAAAegAAAAAAHgAAAAABTQAAAAADTQAAAAAAHgAAAAADegAAAAAAHgAAAAAATQAAAAADegAAAAAAHgAAAAACTQAAAAACHgAAAAADHgAAAAABTQAAAAADTgAAAAAAHgAAAAAATgAAAAAAHgAAAAABHgAAAAADHgAAAAADHgAAAAADTgAAAAAATQAAAAACHgAAAAAAegAAAAAAEgAAAAAAHgAAAAADTQAAAAAATQAAAAAAHgAAAAADegAAAAAAegAAAAAAegAAAAAAHgAAAAABTQAAAAABTQAAAAACHgAAAAACegAAAAAAHgAAAAAATQAAAAAAegAAAAAAEgAAAAAAHgAAAAAAEgAAAAAAEgAAAAAAHgAAAAADNwAAAAAANwAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAACegAAAAAAHgAAAAADHgAAAAADegAAAAAAEgAAAAAAHgAAAAACEgAAAAAAEgAAAAAAHgAAAAAAHgAAAAACHgAAAAACegAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAACegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAEgAAAAAAEgAAAAAAHgAAAAADNwAAAAAANwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAADAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAOQAAAAAALgAAAAACLgAAAAAALgAAAAABLgAAAAADLgAAAAABLgAAAAAALgAAAAADLgAAAAADLgAAAAAALgAAAAACLgAAAAADAAAAAAAAAAAAAAAAegAAAAAALgAAAAADOQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAegAAAAAAeQAAAAAALgAAAAAAAAAAAAAAAAAAAAAAegAAAAAALgAAAAADOQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAALgAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAAOQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAOQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAOQAAAAAA version: 6 -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAKgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAKgAAAAACKgAAAAAAKgAAAAACAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAKgAAAAAAKgAAAAACKgAAAAACAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAKgAAAAABKgAAAAABKgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAKgAAAAACKgAAAAABKgAAAAABAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAKgAAAAACKgAAAAABKgAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAKgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAKgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAKgAAAAADKgAAAAADKgAAAAACKgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALgAAAAACLgAAAAAALgAAAAACAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALgAAAAAALgAAAAACLgAAAAACAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALgAAAAABLgAAAAABLgAAAAACegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALgAAAAACLgAAAAABLgAAAAABAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALgAAAAACLgAAAAABLgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALgAAAAADLgAAAAADLgAAAAACLgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAA version: 6 0,-6: ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAABKgAAAAACbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAABbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAABbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAABLgAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-5: ind: 0,-5 - tiles: AAAAAAAAKgAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAACKgAAAAAAKgAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAADKgAAAAAAKgAAAAABbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAKgAAAAAAKgAAAAACKgAAAAACbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAADKgAAAAADKgAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAACKgAAAAAAKgAAAAADbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAACbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAACKgAAAAABbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAALgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACLgAAAAAALgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADLgAAAAAALgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAALgAAAAAALgAAAAACLgAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADLgAAAAADLgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACLgAAAAAALgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACLgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-6: ind: -1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAACKgAAAAABKgAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAABKgAAAAADKgAAAAAAKgAAAAADKgAAAAABKgAAAAADKgAAAAADKgAAAAACbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAACKgAAAAABKgAAAAABKgAAAAAARgAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAADLgAAAAACLgAAAAABLgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAABLgAAAAADLgAAAAAALgAAAAADLgAAAAABLgAAAAADLgAAAAADLgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACLgAAAAABLgAAAAABLgAAAAAATQAAAAAAHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAABHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAANwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-6: ind: -3,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAKgAAAAADKgAAAAABKgAAAAABKgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAKgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAKgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAKgAAAAADAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALgAAAAADLgAAAAABLgAAAAABLgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-6: ind: -2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAKgAAAAACKgAAAAADKgAAAAACKgAAAAADKgAAAAABKgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAKgAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAKgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAKgAAAAABKgAAAAADKgAAAAAAKgAAAAACKgAAAAAAKgAAAAADKgAAAAADKgAAAAABKgAAAAACKgAAAAAAKgAAAAABKgAAAAABAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADRgAAAAABcAAAAAAAcAAAAAAAcAAAAAAADwAAAAAADwAAAAAAGgAAAAABMwAAAAAAMwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALgAAAAACLgAAAAADLgAAAAACLgAAAAADLgAAAAABLgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALgAAAAABLgAAAAADLgAAAAAALgAAAAACLgAAAAAALgAAAAADLgAAAAADLgAAAAABLgAAAAACLgAAAAAALgAAAAABLgAAAAABAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAACAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADTQAAAAABegAAAAAAegAAAAAAegAAAAAAEgAAAAAAEgAAAAAAHgAAAAABNwAAAAAANwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAAC version: 6 3,0: ind: 3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAA version: 6 3,1: ind: 3,1 - tiles: AAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,0: ind: 4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,2: ind: 1,2 - tiles: bwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAKgAAAAABKgAAAAABKgAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAKgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAegAAAAAALgAAAAABLgAAAAABLgAAAAADegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAALgAAAAACegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,3: ind: -1,3 - tiles: AAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,3: ind: -2,3 - tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,3: ind: -3,3 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAARwAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAARwAAAAAAGgAAAAABRwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAATgAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAATgAAAAAAHgAAAAABTgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA version: 6 -4,3: ind: -4,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA version: 6 -3,4: ind: -3,4 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,4: ind: -4,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,2: ind: -5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,1: ind: -5,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 type: MapGrid - type: Broadphase - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 + angularDamping: 10000 + linearDamping: 10000 fixedRotation: False bodyType: Dynamic type: Physics @@ -355,7 +355,9 @@ entities: type: Fixtures - type: OccluderTree - type: SpreaderGrid - - type: Shuttle + - angularDamping: 10000 + linearDamping: 10000 + type: Shuttle - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg @@ -426,6 +428,12 @@ entities: decals: 292: 4,-23 293: 3,-23 + - node: + color: '#FFFFFFFF' + id: BotLeftGreyscale + decals: + 2692: -1,-22 + 2693: -2,-22 - node: color: '#FFFFFFFF' id: BotRight @@ -5054,7 +5062,8 @@ entities: -10,-3: 0: 65535 -10,-2: - 0: 65535 + 0: 57343 + 2: 8192 -10,-1: 0: 65535 -9,-4: @@ -5451,11 +5460,11 @@ entities: 0: 65535 1,-12: 0: 61937 - 2: 14 - 3: 3584 + 3: 14 + 4: 3584 1,-11: 0: 65521 - 4: 14 + 5: 14 1,-10: 0: 65535 2,-12: @@ -5560,14 +5569,15 @@ entities: 0: 63487 0,-14: 0: 65522 + 3: 12 0,-13: 0: 65535 1,-14: 0: 65521 1,-13: 0: 61937 - 2: 14 - 5: 3584 + 3: 14 + 6: 3584 2,-14: 0: 12848 2,-13: @@ -5936,7 +5946,7 @@ entities: 0: 1908 -16,7: 0: 40704 - 2: 24576 + 3: 24576 -15,7: 0: 65280 -12,10: @@ -5953,7 +5963,7 @@ entities: 0: 65535 -16,9: 0: 65439 - 2: 96 + 3: 96 -16,10: 0: 231 -15,8: @@ -6090,12 +6100,17 @@ entities: 0: 4095 5,-12: 0: 883 + 3: 3212 3,-13: 0: 51200 4,-13: 0: 65392 + 3: 128 5,-13: 0: 4096 + 3: 59184 + 6,-12: + 3: 305 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -6127,6 +6142,21 @@ entities: - 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: @@ -6210,26 +6240,6 @@ entities: - pos: -30.5,17.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10226 - - 7475 - - 7476 - - 7384 - - 7356 - - 7481 - - 7480 - - 10349 - - 10428 - - 10558 - - 10386 - - 10567 - - 10348 - - 10561 - - 10375 - - 10376 - - 10560 - - 10346 - type: DeviceNetwork - devices: - 10226 - 7475 @@ -6250,30 +6260,25 @@ entities: - 10560 - 10346 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 6 components: - pos: -59.5,-4.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10426 - - 10309 - - 7450 - type: DeviceNetwork - devices: - 10426 - 10309 - 7450 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 7 components: - pos: -31.5,8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7418 - - 7472 - type: DeviceNetwork - devices: - 7554 - 7553 @@ -6293,15 +6298,14 @@ entities: - 7472 - 7483 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 8 components: - rot: 3.141592653589793 rad pos: 6.5,-40.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10582 - type: DeviceNetwork - devices: - 7560 - 7561 @@ -6312,25 +6316,14 @@ entities: - 7364 - 10582 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 9 components: - rot: 3.141592653589793 rad pos: -39.5,25.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7408 - - 7407 - - 7493 - - 7492 - - 7406 - - 7405 - - 10298 - - 7495 - - 10530 - - 7502 - - 7368 - type: DeviceNetwork - devices: - 7408 - 7407 @@ -6344,18 +6337,14 @@ entities: - 7502 - 7368 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 10 components: - rot: -1.5707963267948966 rad pos: 16.5,4.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7398 - - 7404 - - 7409 - - 7410 - type: DeviceNetwork - devices: - 7534 - 7535 @@ -6374,14 +6363,13 @@ entities: - 10476 - 10283 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 11 components: - pos: 17.5,-23.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10233 - type: DeviceNetwork - devices: - 7421 - 7422 @@ -6390,28 +6378,14 @@ entities: - 10410 - 10228 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 12 components: - rot: 1.5707963267948966 rad pos: 20.5,17.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10238 - - 10473 - - 7371 - - 7372 - - 7381 - - 10280 - - 10469 - - 7524 - - 7531 - - 7530 - - 10279 - - 10468 - - 10575 - - 10392 - type: DeviceNetwork - devices: - 7524 - 10473 @@ -6428,33 +6402,27 @@ entities: - 10469 - 10280 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 13 components: - rot: -1.5707963267948966 rad pos: 3.5,31.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7510 - - 10335 - - 10539 - - 7509 - type: DeviceNetwork - devices: - 7509 - 10539 - 10335 - 7510 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 14 components: - pos: 14.5,-11.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7396 - - 7397 - type: DeviceNetwork - devices: - 7425 - 7542 @@ -6468,14 +6436,13 @@ entities: - 7396 - 7397 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 15 components: - pos: -18.5,28.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10578 - type: DeviceNetwork - devices: - 7504 - 7503 @@ -6492,32 +6459,14 @@ entities: - 7428 - 10578 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 16 components: - rot: -1.5707963267948966 rad pos: -22.5,3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7562 - - 7471 - - 7482 - - 7414 - - 7415 - - 7472 - - 7418 - - 7475 - - 7476 - - 7477 - - 7478 - - 7360 - - 10495 - - 10297 - - 10299 - - 10529 - - 10300 - - 10496 - type: DeviceNetwork - devices: - 7562 - 7471 @@ -6538,20 +6487,13 @@ entities: - 10300 - 10496 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 17 components: - pos: -47.5,-5.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10274 - - 10521 - - 7444 - - 7443 - - 7442 - - 7436 - - 7437 - type: DeviceNetwork - devices: - 10521 - 10274 @@ -6561,21 +6503,14 @@ entities: - 7437 - 7442 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 18 components: - rot: -1.5707963267948966 rad pos: -54.5,-1.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7449 - - 7448 - - 10519 - - 10311 - - 10310 - - 10427 - - 10242 - type: DeviceNetwork - devices: - 7449 - 7448 @@ -6585,23 +6520,14 @@ entities: - 10427 - 10242 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 19 components: - rot: -1.5707963267948966 rad pos: -45.5,35.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7495 - - 7496 - - 10550 - - 10339 - - 7369 - - 10537 - - 7497 - - 7499 - - 7494 - type: DeviceNetwork - devices: - 7495 - 7496 @@ -6613,15 +6539,14 @@ entities: - 7499 - 7494 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 20 components: - rot: 1.5707963267948966 rad pos: -17.5,-36.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 434 - type: DeviceNetwork - devices: - 7375 - 7376 @@ -6640,15 +6565,14 @@ entities: - 10356 - 434 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 21 components: - rot: -1.5707963267948966 rad pos: 13.5,-23.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10403 - type: DeviceNetwork - devices: - 10581 - 10264 @@ -6661,24 +6585,14 @@ entities: - 7560 - 7561 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 22 components: - rot: 1.5707963267948966 rad pos: -19.5,-1.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7471 - - 7562 - - 7520 - - 7419 - - 7470 - - 7469 - - 10493 - - 10284 - - 10422 - - 10239 - type: DeviceNetwork - devices: - 7471 - 7562 @@ -6691,19 +6605,14 @@ entities: - 10422 - 10239 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 23 components: - rot: 1.5707963267948966 rad pos: -43.5,32.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7495 - - 7496 - - 10550 - - 10339 - - 7369 - type: DeviceNetwork - devices: - 7495 - 7496 @@ -6711,15 +6620,13 @@ entities: - 10339 - 7369 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 24 components: - pos: -29.5,33.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7408 - - 7407 - type: DeviceNetwork - devices: - 7502 - 7407 @@ -6730,21 +6637,14 @@ entities: - 7500 - 7365 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 25 components: - rot: -1.5707963267948966 rad pos: -44.5,20.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7551 - - 7552 - - 10380 - - 7554 - - 7553 - - 10345 - - 10556 - type: DeviceNetwork - devices: - 10345 - 10556 @@ -6754,30 +6654,21 @@ entities: - 7552 - 7551 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 26 components: - rot: 3.141592653589793 rad pos: -25.5,37.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 27 components: - pos: -30.5,-7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7463 - - 7462 - - 10505 - - 10301 - - 10502 - - 7439 - - 7438 - - 10504 - - 10365 - - 10527 - - 10377 - type: DeviceNetwork - devices: - 7463 - 7462 @@ -6791,14 +6682,13 @@ entities: - 10527 - 10377 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 28 components: - pos: 7.5,-8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7358 - type: DeviceNetwork - devices: - 10414 - 10230 @@ -6812,23 +6702,14 @@ entities: - 7389 - 7395 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 29 components: - rot: 1.5707963267948966 rad pos: -43.5,14.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7492 - - 7493 - - 7378 - - 7491 - - 7490 - - 7481 - - 7480 - - 7551 - - 7552 - type: DeviceNetwork - devices: - 7552 - 7551 @@ -6840,15 +6721,14 @@ entities: - 7493 - 7492 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 30 components: - rot: 1.5707963267948966 rad pos: 36.5,-13.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10226 - type: DeviceNetwork - devices: - 7489 - 7488 @@ -6860,16 +6740,14 @@ entities: - 10439 - 10226 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 31 components: - rot: 3.141592653589793 rad pos: -24.5,-10.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7394 - - 7391 - type: DeviceNetwork - devices: - 7463 - 7462 @@ -6882,16 +6760,14 @@ entities: - 7391 - 7394 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 32 components: - rot: 1.5707963267948966 rad pos: 22.5,-3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7420 - - 7434 - type: DeviceNetwork - devices: - 7426 - 7479 @@ -6909,24 +6785,14 @@ entities: - 10254 - 10448 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 33 components: - rot: -1.5707963267948966 rad pos: 14.5,22.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7525 - - 7526 - - 10287 - - 10483 - - 10418 - - 10368 - - 10467 - - 10225 - - 10288 - - 10466 - type: DeviceNetwork - devices: - 7525 - 7526 @@ -6939,22 +6805,13 @@ entities: - 10288 - 10466 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 34 components: - pos: 33.5,-17.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7487 - - 7488 - - 7489 - - 10257 - - 10431 - - 10435 - - 10258 - - 10447 - - 10247 - type: DeviceNetwork - devices: - 7487 - 7488 @@ -6966,21 +6823,13 @@ entities: - 10447 - 10247 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 35 components: - pos: 8.5,2.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7459 - - 7458 - - 10285 - - 10478 - - 10477 - - 7460 - - 7534 - - 7535 - type: DeviceNetwork - devices: - 7459 - 7458 @@ -6991,32 +6840,27 @@ entities: - 7534 - 7535 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 36 components: - rot: 1.5707963267948966 rad pos: -13.5,34.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7511 - - 10546 - - 10333 - - 7512 - type: DeviceNetwork - devices: - 7512 - 10333 - 10546 - 7511 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 37 components: - pos: -12.5,-31.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7359 - type: DeviceNetwork - devices: - 10383 - 7514 @@ -7029,19 +6873,20 @@ entities: - 10434 - 7359 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 38 components: - pos: -10.5,40.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 39 components: - pos: 26.5,23.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10461 - type: DeviceNetwork - devices: - 7371 - 7372 @@ -7049,27 +6894,14 @@ entities: - 10461 - 10278 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 40 components: - rot: 1.5707963267948966 rad pos: -5.5,19.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10551 - - 10337 - - 7506 - - 7505 - - 7504 - - 7503 - - 7413 - - 7403 - - 7402 - - 7557 - - 7519 - - 7518 - - 10382 - type: DeviceNetwork - devices: - 10551 - 10337 @@ -7085,16 +6917,14 @@ entities: - 7518 - 10382 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 41 components: - rot: -1.5707963267948966 rad pos: -33.5,-14.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7393 - - 7392 - type: DeviceNetwork - devices: - 10503 - 10373 @@ -7116,14 +6946,13 @@ entities: - 7393 - 7392 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 42 components: - pos: -0.5,5.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7357 - type: DeviceNetwork - devices: - 7458 - 7459 @@ -7133,14 +6962,13 @@ entities: - 10289 - 7357 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 43 components: - pos: -5.5,8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7383 - type: DeviceNetwork - devices: - 10485 - 10291 @@ -7153,29 +6981,13 @@ entities: - 7519 - 7383 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 44 components: - pos: -53.5,-10.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7445 - - 7446 - - 7447 - - 10312 - - 10515 - - 10306 - - 10514 - - 10516 - - 10305 - - 10313 - - 10520 - - 10513 - - 10314 - - 10307 - - 10517 - - 10308 - type: DeviceNetwork - devices: - 7445 - 7446 @@ -7194,14 +7006,13 @@ entities: - 10517 - 10308 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 45 components: - pos: -11.5,-11.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10480 - type: DeviceNetwork - devices: - 10480 - 7522 @@ -7215,15 +7026,14 @@ entities: - 10317 - 10429 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 46 components: - rot: -1.5707963267948966 rad pos: -15.5,-20.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 433 - type: DeviceNetwork - devices: - 7375 - 7376 @@ -7235,20 +7045,13 @@ entities: - 7537 - 433 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 47 components: - pos: -5.5,-28.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10251 - - 7528 - - 10441 - - 7529 - - 7540 - - 10440 - - 10245 - type: DeviceNetwork - devices: - 10251 - 7528 @@ -7258,15 +7061,13 @@ entities: - 10440 - 10245 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 48 components: - pos: 0.5,-21.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10413 - - 10241 - type: DeviceNetwork - devices: - 10450 - 7539 @@ -7275,23 +7076,14 @@ entities: - 10413 - 10241 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 49 components: - rot: 1.5707963267948966 rad pos: -11.5,-3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10500 - - 10371 - - 10498 - - 10366 - - 10497 - - 7521 - - 7522 - - 10372 - - 10499 - type: DeviceNetwork - devices: - 10500 - 10371 @@ -7303,23 +7095,13 @@ entities: - 10372 - 10499 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 50 components: - pos: -15.5,-73.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10399 - - 438 - - 436 - - 435 - - 437 - - 439 - - 7385 - - 7386 - - 7388 - - 7387 - type: DeviceNetwork - devices: - 10399 - 438 @@ -7332,18 +7114,14 @@ entities: - 7388 - 7387 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 51 components: - rot: -1.5707963267948966 rad pos: 13.5,14.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7410 - - 7409 - - 7398 - - 7404 - type: DeviceNetwork - devices: - 7525 - 7526 @@ -7362,26 +7140,26 @@ entities: - 7398 - 7404 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 52 components: + - name: burn chamber air alarm + type: MetaData - rot: 1.5707963267948966 rad pos: -5.5,-50.5 parent: 2 type: Transform + - devices: + - 10583 + type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 53 components: - pos: -4.5,-41.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7416 - - 7566 - - 7565 - - 7564 - - 7563 - - 7363 - - 7364 - type: DeviceNetwork - devices: - 10584 - 10407 @@ -7397,6 +7175,8 @@ entities: - 442 - 7364 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - proto: AirCanister entities: - uid: 54 @@ -7404,51 +7184,71 @@ entities: - pos: -22.5,-23.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 55 components: - pos: -5.5,-34.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 56 components: - pos: -5.5,-35.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 57 components: - pos: -23.5,-23.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 58 components: - pos: 19.5,18.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 59 components: - pos: -14.5,-83.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 60 components: - pos: 18.9538,-25.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 61 components: - pos: 7.5,-41.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 62 components: - pos: -2.5,-35.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 63 components: - pos: -3.5,-35.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: Airlock entities: - uid: 64 @@ -7528,14 +7328,12 @@ entities: type: Transform - uid: 77 components: - - rot: 3.141592653589793 rad - pos: 3.5,-37.5 + - pos: 3.5,-37.5 parent: 2 type: Transform - uid: 78 components: - - rot: 3.141592653589793 rad - pos: 3.5,-38.5 + - pos: 3.5,-38.5 parent: 2 type: Transform - uid: 79 @@ -7557,104 +7355,6 @@ entities: - pos: -11.5,-4.5 parent: 2 type: Transform -- proto: AirlockBrigGlassLocked - entities: - - uid: 82 - components: - - pos: -26.5,-9.5 - parent: 2 - type: Transform - - uid: 83 - components: - - pos: -46.5,-5.5 - parent: 2 - type: Transform - - uid: 84 - components: - - pos: -41.5,-15.5 - parent: 2 - type: Transform - - links: - - 753 - type: DeviceLinkSink - - uid: 85 - components: - - pos: -44.5,-9.5 - parent: 2 - type: Transform - - uid: 86 - components: - - pos: -24.5,-6.5 - parent: 2 - type: Transform - - uid: 87 - components: - - pos: -26.5,-8.5 - parent: 2 - type: Transform - - uid: 88 - components: - - pos: -34.5,-8.5 - parent: 2 - type: Transform - - uid: 89 - components: - - pos: -34.5,-9.5 - parent: 2 - type: Transform - - uid: 90 - components: - - pos: -35.5,-16.5 - parent: 2 - type: Transform - - links: - - 754 - type: DeviceLinkSink - - uid: 91 - components: - - pos: -44.5,-8.5 - parent: 2 - type: Transform - - uid: 92 - components: - - pos: -39.5,-16.5 - parent: 2 - type: Transform - - links: - - 752 - type: DeviceLinkSink - - uid: 93 - components: - - pos: -41.5,-12.5 - parent: 2 - type: Transform - - links: - - 751 - type: DeviceLinkSink - - uid: 94 - components: - - pos: -22.5,22.5 - parent: 2 - type: Transform -- proto: AirlockBrigLocked - entities: - - uid: 95 - components: - - pos: -28.5,-7.5 - parent: 2 - type: Transform - - uid: 96 - components: - - pos: -19.5,-8.5 - parent: 2 - type: Transform - - uid: 97 - components: - - name: maintenance hatch - type: MetaData - - pos: -20.5,18.5 - parent: 2 - type: Transform - proto: AirlockCaptainLocked entities: - uid: 98 @@ -8033,41 +7733,109 @@ entities: - pos: -31.5,-29.5 parent: 2 type: Transform + - links: + - 165 + type: DeviceLinkSink + - linkedPorts: + 165: + - DoorStatus: DoorBolt + type: DeviceLinkSource - uid: 165 components: - pos: -29.5,-27.5 parent: 2 type: Transform + - links: + - 164 + type: DeviceLinkSink + - linkedPorts: + 164: + - DoorStatus: DoorBolt + type: DeviceLinkSource - uid: 166 components: - pos: -23.5,-46.5 parent: 2 type: Transform + - links: + - 167 + type: DeviceLinkSink + - linkedPorts: + 167: + - DoorStatus: DoorBolt + type: DeviceLinkSource - uid: 167 components: - pos: -20.5,-46.5 parent: 2 type: Transform + - links: + - 166 + type: DeviceLinkSink + - linkedPorts: + 166: + - DoorStatus: DoorBolt + type: DeviceLinkSource - uid: 168 components: - pos: -17.5,-47.5 parent: 2 type: Transform + - links: + - 169 + - 170 + type: DeviceLinkSink + - linkedPorts: + 169: + - DoorStatus: DoorBolt + 170: + - DoorStatus: DoorBolt + type: DeviceLinkSource - uid: 169 components: - pos: -17.5,-50.5 parent: 2 type: Transform + - links: + - 168 + - 171 + type: DeviceLinkSink + - linkedPorts: + 168: + - DoorStatus: DoorBolt + 171: + - DoorStatus: DoorBolt + type: DeviceLinkSource - uid: 170 components: - pos: -15.5,-50.5 parent: 2 type: Transform + - links: + - 168 + - 171 + type: DeviceLinkSink + - linkedPorts: + 168: + - DoorStatus: DoorBolt + 171: + - DoorStatus: DoorBolt + type: DeviceLinkSource - uid: 171 components: - pos: -15.5,-47.5 parent: 2 type: Transform + - links: + - 169 + - 170 + type: DeviceLinkSink + - linkedPorts: + 169: + - DoorStatus: DoorBolt + 170: + - DoorStatus: DoorBolt + type: DeviceLinkSource - proto: AirlockExternalGlassAtmosphericsLocked entities: - uid: 172 @@ -8075,26 +7843,64 @@ entities: - pos: -8.5,-50.5 parent: 2 type: Transform + - links: + - 174 + type: DeviceLinkSink + - linkedPorts: + 174: + - DoorStatus: DoorBolt + type: DeviceLinkSource - uid: 173 components: - pos: 1.5,-52.5 parent: 2 type: Transform + - links: + - 176 + type: DeviceLinkSink + - linkedPorts: + 176: + - DoorStatus: DoorBolt + type: DeviceLinkSource - uid: 174 components: - pos: -5.5,-51.5 parent: 2 type: Transform + - links: + - 172 + type: DeviceLinkSink + - linkedPorts: + 172: + - DoorStatus: DoorBolt + type: DeviceLinkSource - uid: 175 components: - pos: 3.5,-52.5 parent: 2 type: Transform + - links: + - 176 + type: DeviceLinkSink + - linkedPorts: + 176: + - DoorStatus: DoorBolt + type: DeviceLinkSource - uid: 176 components: - pos: 2.5,-54.5 parent: 2 type: Transform + - links: + - 173 + - 175 + type: DeviceLinkSink + - linkedPorts: + 173: + - DoorStatus: DoorBolt + 175: + - DoorStatus: DoorBolt + type: DeviceLinkSource - proto: AirlockExternalGlassCargoLocked entities: - uid: 177 @@ -8177,8 +7983,8 @@ entities: parent: 2 type: Transform - links: - - 202 - 192 + - 202 type: DeviceLinkSink - linkedPorts: 202: @@ -8191,15 +7997,16 @@ entities: - pos: 10.5,-44.5 parent: 2 type: Transform - - links: + - invokeCounter: 1 + links: - 191 - 201 type: DeviceLinkSink - linkedPorts: - 191: - - DoorStatus: DoorBolt 201: - DoorStatus: DoorBolt + 191: + - DoorStatus: DoorBolt type: DeviceLinkSource - uid: 193 components: @@ -8216,11 +8023,25 @@ entities: - pos: -53.5,48.5 parent: 2 type: Transform + - links: + - 196 + type: DeviceLinkSink + - linkedPorts: + 196: + - DoorStatus: DoorBolt + type: DeviceLinkSource - uid: 196 components: - pos: -55.5,48.5 parent: 2 type: Transform + - links: + - 195 + type: DeviceLinkSink + - linkedPorts: + 195: + - DoorStatus: DoorBolt + type: DeviceLinkSource - uid: 197 components: - rot: 3.141592653589793 rad @@ -8264,15 +8085,16 @@ entities: - pos: 11.5,-44.5 parent: 2 type: Transform - - links: + - invokeCounter: 1 + links: - 191 - 201 type: DeviceLinkSink - linkedPorts: - 191: - - DoorStatus: DoorBolt 201: - DoorStatus: DoorBolt + 191: + - DoorStatus: DoorBolt type: DeviceLinkSource - proto: AirlockExternalGlassShuttleArrivals entities: @@ -8394,6 +8216,13 @@ entities: pos: -53.5,-6.5 parent: 2 type: Transform +- proto: AirlockFreezerHydroponicsLocked + entities: + - uid: 290 + components: + - pos: -16.5,10.5 + parent: 2 + type: Transform - proto: AirlockFreezerKitchenHydroLocked entities: - uid: 222 @@ -8554,7 +8383,8 @@ entities: type: Transform - uid: 252 components: - - pos: -8.5,-1.5 + - rot: -1.5707963267948966 rad + pos: -8.5,-1.5 parent: 2 type: Transform - uid: 253 @@ -8708,7 +8538,8 @@ entities: type: Transform - uid: 279 components: - - pos: -17.5,-14.5 + - rot: -1.5707963267948966 rad + pos: -17.5,-14.5 parent: 2 type: Transform - uid: 280 @@ -8768,13 +8599,6 @@ entities: - pos: -29.5,-14.5 parent: 2 type: Transform -- proto: AirlockHydroGlassLocked - entities: - - uid: 290 - components: - - pos: -16.5,10.5 - parent: 2 - type: Transform - proto: AirlockHydroponicsLocked entities: - uid: 291 @@ -8804,6 +8628,13 @@ entities: pos: -10.5,19.5 parent: 2 type: Transform +- proto: AirlockLawyerLocked + entities: + - uid: 97 + components: + - pos: -22.5,22.5 + parent: 2 + type: Transform - proto: AirlockMailLocked entities: - uid: 295 @@ -8979,6 +8810,13 @@ entities: - pos: -12.5,17.5 parent: 2 type: Transform +- proto: AirlockMaintLawyerLocked + entities: + - uid: 94 + components: + - pos: -20.5,18.5 + parent: 2 + type: Transform - proto: AirlockMaintLocked entities: - uid: 323 @@ -9164,6 +9002,13 @@ entities: - pos: 5.5,7.5 parent: 2 type: Transform +- proto: AirlockMaintReporterLocked + entities: + - uid: 425 + components: + - pos: -15.5,21.5 + parent: 2 + type: Transform - proto: AirlockMaintRnDLocked entities: - uid: 356 @@ -9193,14 +9038,22 @@ entities: - pos: -37.5,-21.5 parent: 2 type: Transform - - uid: 361 + - uid: 362 components: - - pos: -28.5,-16.5 + - pos: -22.5,-17.5 parent: 2 type: Transform - - uid: 362 + - uid: 366 components: - - pos: -22.5,-17.5 + - rot: 3.141592653589793 rad + pos: -44.5,-18.5 + parent: 2 + type: Transform +- proto: AirlockMaintSecurityLawyerLocked + entities: + - uid: 361 + components: + - pos: -28.5,-16.5 parent: 2 type: Transform - uid: 363 @@ -9210,7 +9063,7 @@ entities: type: Transform - uid: 364 components: - - pos: -32.5,-3.5 + - pos: -28.5,-3.5 parent: 2 type: Transform - uid: 365 @@ -9218,15 +9071,21 @@ entities: - pos: -35.5,-20.5 parent: 2 type: Transform - - uid: 366 + - uid: 367 components: - - rot: 3.141592653589793 rad - pos: -44.5,-18.5 + - pos: -37.5,-17.5 parent: 2 type: Transform - - uid: 367 + - uid: 12827 components: - - pos: -37.5,-17.5 + - pos: -32.5,-3.5 + parent: 2 + type: Transform +- proto: AirlockMaintServiceLocked + entities: + - uid: 427 + components: + - pos: 19.5,-15.5 parent: 2 type: Transform - proto: AirlockMantisLocked @@ -9350,6 +9209,13 @@ entities: - pos: 11.5,25.5 parent: 2 type: Transform +- proto: AirlockMusicianLocked + entities: + - uid: 431 + components: + - pos: -11.5,-8.5 + parent: 2 + type: Transform - proto: AirlockQuartermasterGlassLocked entities: - uid: 389 @@ -9357,6 +9223,13 @@ entities: - pos: 5.5,-14.5 parent: 2 type: Transform +- proto: AirlockReporterLocked + entities: + - uid: 424 + components: + - pos: -14.5,24.5 + parent: 2 + type: Transform - proto: AirlockResearchDirectorLocked entities: - uid: 390 @@ -9504,6 +9377,38 @@ entities: type: Transform - proto: AirlockSecurityGlassLocked entities: + - uid: 84 + components: + - pos: -41.5,-15.5 + parent: 2 + type: Transform + - links: + - 753 + type: DeviceLinkSink + - uid: 90 + components: + - pos: -35.5,-16.5 + parent: 2 + type: Transform + - links: + - 754 + type: DeviceLinkSink + - uid: 92 + components: + - pos: -39.5,-16.5 + parent: 2 + type: Transform + - links: + - 752 + type: DeviceLinkSink + - uid: 93 + components: + - pos: -41.5,-12.5 + parent: 2 + type: Transform + - links: + - 751 + type: DeviceLinkSink - uid: 416 components: - pos: -50.5,-8.5 @@ -9524,6 +9429,60 @@ entities: - pos: -53.5,-9.5 parent: 2 type: Transform +- proto: AirlockSecurityLawyerGlassLocked + entities: + - uid: 82 + components: + - pos: -26.5,-9.5 + parent: 2 + type: Transform + - uid: 83 + components: + - pos: -46.5,-5.5 + parent: 2 + type: Transform + - uid: 85 + components: + - pos: -44.5,-9.5 + parent: 2 + type: Transform + - uid: 86 + components: + - pos: -24.5,-6.5 + parent: 2 + type: Transform + - uid: 87 + components: + - pos: -26.5,-8.5 + parent: 2 + type: Transform + - uid: 88 + components: + - pos: -34.5,-8.5 + parent: 2 + type: Transform + - uid: 89 + components: + - pos: -34.5,-9.5 + parent: 2 + type: Transform + - uid: 91 + components: + - pos: -44.5,-8.5 + parent: 2 + type: Transform +- proto: AirlockSecurityLawyerLocked + entities: + - uid: 95 + components: + - pos: -28.5,-7.5 + parent: 2 + type: Transform + - uid: 96 + components: + - pos: -19.5,-8.5 + parent: 2 + type: Transform - proto: AirlockSecurityLocked entities: - uid: 420 @@ -9548,32 +9507,14 @@ entities: - pos: 23.5,-12.5 parent: 2 type: Transform - - uid: 424 - components: - - pos: -14.5,24.5 - parent: 2 - type: Transform - proto: AirlockServiceLocked entities: - - uid: 425 - components: - - name: maintenance hatch - type: MetaData - - pos: -15.5,21.5 - parent: 2 - type: Transform - uid: 426 components: - rot: 1.5707963267948966 rad pos: 34.5,-13.5 parent: 2 type: Transform - - uid: 427 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-15.5 - parent: 2 - type: Transform - uid: 428 components: - pos: 30.5,14.5 @@ -9591,12 +9532,6 @@ entities: - pos: -34.5,8.5 parent: 2 type: Transform - - uid: 431 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-8.5 - parent: 2 - type: Transform - proto: AirlockVirologyLocked entities: - uid: 432 @@ -9611,58 +9546,36 @@ entities: - pos: -16.5,-27.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 46 - type: DeviceNetwork - uid: 434 components: - pos: -18.5,-38.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 20 - - 7349 - type: DeviceNetwork - uid: 435 components: - pos: -28.5,-76.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 50 - type: DeviceNetwork - uid: 436 components: - pos: -21.5,-76.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 50 - type: DeviceNetwork - uid: 437 components: - pos: -4.5,-76.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 50 - type: DeviceNetwork - uid: 438 components: - pos: -15.5,-71.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 50 - type: DeviceNetwork - uid: 439 components: - pos: -15.5,-81.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 50 - type: DeviceNetwork - uid: 440 components: - rot: 1.5707963267948966 rad @@ -9675,18 +9588,12 @@ entities: pos: -1.5,-45.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7353 - type: DeviceNetwork - uid: 442 components: - rot: 1.5707963267948966 rad pos: -6.5,-38.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7353 - type: DeviceNetwork - proto: AltarSpawner entities: - uid: 443 @@ -10051,6 +9958,10 @@ entities: - pos: -8.5,-25.5 parent: 2 type: Transform + - hasAccess: True + lastExternalState: Good + lastChargeState: Full + type: Apc - uid: 506 components: - pos: -52.5,-7.5 @@ -10470,11 +10381,6 @@ entities: - pos: -6.5,-16.5 parent: 2 type: Transform - - uid: 584 - components: - - pos: 19.5,-13.5 - parent: 2 - type: Transform - uid: 585 components: - pos: 4.5,-11.5 @@ -11043,12 +10949,18 @@ entities: pos: -9.5,-48.5 parent: 2 type: Transform + - links: + - 13593 + type: DeviceLinkSink - uid: 680 components: - rot: 3.141592653589793 rad pos: -9.5,-49.5 parent: 2 type: Transform + - links: + - 13593 + type: DeviceLinkSink - proto: BlastDoorBridgeOpen entities: - uid: 681 @@ -11057,18 +10969,27 @@ entities: pos: 2.5,42.5 parent: 2 type: Transform + - links: + - 17439 + type: DeviceLinkSink - uid: 682 components: - rot: 3.141592653589793 rad pos: 3.5,39.5 parent: 2 type: Transform + - links: + - 17439 + type: DeviceLinkSink - uid: 683 components: - rot: 3.141592653589793 rad pos: 3.5,38.5 parent: 2 type: Transform + - links: + - 17439 + type: DeviceLinkSink - proto: BlastDoorOpen entities: - uid: 684 @@ -11693,11 +11614,6 @@ entities: - pos: -31.5,-0.5 parent: 2 type: Transform - - uid: 773 - components: - - pos: 17.5,-49.5 - parent: 2 - type: Transform - uid: 774 components: - pos: -34.5,0.5 @@ -22433,16 +22349,6 @@ entities: - pos: 9.5,-38.5 parent: 2 type: Transform - - uid: 2921 - components: - - pos: 17.5,-47.5 - parent: 2 - type: Transform - - uid: 2922 - components: - - pos: 17.5,-48.5 - parent: 2 - type: Transform - uid: 2923 components: - pos: -0.5,-38.5 @@ -22908,6 +22814,36 @@ entities: - pos: 1.5,-44.5 parent: 2 type: Transform + - uid: 5692 + components: + - pos: 21.5,-46.5 + parent: 2 + type: Transform + - uid: 6158 + components: + - pos: 22.5,-46.5 + parent: 2 + type: Transform + - uid: 12577 + components: + - pos: 20.5,-47.5 + parent: 2 + type: Transform + - uid: 12777 + components: + - pos: 23.5,-46.5 + parent: 2 + type: Transform + - uid: 17430 + components: + - pos: 20.5,-48.5 + parent: 2 + type: Transform + - uid: 17431 + components: + - pos: 20.5,-49.5 + parent: 2 + type: Transform - proto: CableApcStack entities: - uid: 3016 @@ -22969,11 +22905,6 @@ entities: type: Transform - proto: CableHV entities: - - uid: 3026 - components: - - pos: -16.5,-60.5 - parent: 2 - type: Transform - uid: 3027 components: - pos: -44.5,57.5 @@ -26269,49 +26200,19 @@ entities: - pos: -32.5,40.5 parent: 2 type: Transform - - uid: 3686 - components: - - pos: -16.5,-59.5 - parent: 2 - type: Transform - - uid: 3687 - components: - - pos: -16.5,-58.5 - parent: 2 - type: Transform - - uid: 3688 - components: - - pos: -16.5,-57.5 - parent: 2 - type: Transform - uid: 3689 components: - - pos: -16.5,-56.5 + - pos: -18.5,-75.5 parent: 2 type: Transform - uid: 3690 components: - - pos: -16.5,-55.5 - parent: 2 - type: Transform - - uid: 3691 - components: - - pos: -16.5,-54.5 - parent: 2 - type: Transform - - uid: 3692 - components: - - pos: -16.5,-52.5 + - pos: -17.5,-75.5 parent: 2 type: Transform - uid: 3693 components: - - pos: -16.5,-53.5 - parent: 2 - type: Transform - - uid: 3694 - components: - - pos: -16.5,-51.5 + - pos: -18.5,-77.5 parent: 2 type: Transform - uid: 3695 @@ -26369,21 +26270,6 @@ entities: - pos: -16.5,-40.5 parent: 2 type: Transform - - uid: 3706 - components: - - pos: -16.5,-61.5 - parent: 2 - type: Transform - - uid: 3707 - components: - - pos: -16.5,-63.5 - parent: 2 - type: Transform - - uid: 3708 - components: - - pos: -16.5,-64.5 - parent: 2 - type: Transform - uid: 3709 components: - pos: -16.5,-65.5 @@ -26509,11 +26395,6 @@ entities: - pos: -16.5,-34.5 parent: 2 type: Transform - - uid: 3734 - components: - - pos: -16.5,-62.5 - parent: 2 - type: Transform - uid: 3735 components: - pos: -19.5,26.5 @@ -26784,6 +26665,46 @@ entities: - pos: 28.5,25.5 parent: 2 type: Transform + - uid: 6263 + components: + - pos: -13.5,-82.5 + parent: 2 + type: Transform + - uid: 9756 + components: + - pos: -17.5,-77.5 + parent: 2 + type: Transform + - uid: 11958 + components: + - pos: -13.5,-81.5 + parent: 2 + type: Transform + - uid: 12567 + components: + - pos: -17.5,-71.5 + parent: 2 + type: Transform + - uid: 13119 + components: + - pos: -18.5,-71.5 + parent: 2 + type: Transform + - uid: 17435 + components: + - pos: -15.5,-71.5 + parent: 2 + type: Transform + - uid: 17436 + components: + - pos: -14.5,-71.5 + parent: 2 + type: Transform + - uid: 17437 + components: + - pos: -13.5,-71.5 + parent: 2 + type: Transform - proto: CableHVStack entities: - uid: 3789 @@ -32968,11 +32889,15 @@ entities: - pos: 7.5,-47.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 5014 components: - pos: 0.5,-35.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: CargoRequestComputerCircuitboard entities: - uid: 5015 @@ -33822,11 +33747,6 @@ entities: - pos: 2.5,-31.5 parent: 2 type: Transform - - uid: 5170 - components: - - pos: 0.5,-33.5 - parent: 2 - type: Transform - uid: 5171 components: - pos: -27.5,-17.5 @@ -33919,11 +33839,6 @@ entities: - pos: 2.5,-37.5 parent: 2 type: Transform - - uid: 5189 - components: - - pos: 17.5,-48.5 - parent: 2 - type: Transform - uid: 5190 components: - pos: -24.5,-27.5 @@ -34617,11 +34532,6 @@ entities: - pos: 59.5,4.5 parent: 2 type: Transform - - uid: 5328 - components: - - pos: 17.5,-47.5 - parent: 2 - type: Transform - uid: 5329 components: - rot: 3.141592653589793 rad @@ -36636,11 +36546,6 @@ entities: - pos: 10.5,-43.5 parent: 2 type: Transform - - uid: 5692 - components: - - pos: 20.5,-46.5 - parent: 2 - type: Transform - uid: 5693 components: - pos: -22.5,-46.5 @@ -36652,18 +36557,6 @@ entities: pos: -8.5,-39.5 parent: 2 type: Transform - - uid: 5695 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-43.5 - parent: 2 - type: Transform - - uid: 5696 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-52.5 - parent: 2 - type: Transform - uid: 5697 components: - rot: -1.5707963267948966 rad @@ -36694,18 +36587,6 @@ entities: pos: 3.5,-53.5 parent: 2 type: Transform - - uid: 5702 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-52.5 - parent: 2 - type: Transform - - uid: 5703 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-54.5 - parent: 2 - type: Transform - uid: 5704 components: - rot: -1.5707963267948966 rad @@ -36742,12 +36623,6 @@ entities: pos: 3.5,-41.5 parent: 2 type: Transform - - uid: 5710 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-51.5 - parent: 2 - type: Transform - uid: 5711 components: - rot: 3.141592653589793 rad @@ -36766,12 +36641,6 @@ entities: pos: -8.5,-51.5 parent: 2 type: Transform - - uid: 5714 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-50.5 - parent: 2 - type: Transform - uid: 5715 components: - rot: 3.141592653589793 rad @@ -36849,6 +36718,36 @@ entities: - pos: -9.5,-49.5 parent: 2 type: Transform + - uid: 12810 + components: + - pos: 23.5,-46.5 + parent: 2 + type: Transform + - uid: 12814 + components: + - pos: 22.5,-46.5 + parent: 2 + type: Transform + - uid: 13118 + components: + - pos: 21.5,-46.5 + parent: 2 + type: Transform + - uid: 17432 + components: + - pos: 20.5,-46.5 + parent: 2 + type: Transform + - uid: 17433 + components: + - pos: 20.5,-47.5 + parent: 2 + type: Transform + - uid: 17434 + components: + - pos: 20.5,-48.5 + parent: 2 + type: Transform - proto: CellRechargerCircuitboard entities: - uid: 5730 @@ -37712,6 +37611,12 @@ entities: pos: -1.5,-50.5 parent: 2 type: Transform + - uid: 12586 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-22.5 + parent: 2 + type: Transform - proto: ChairOfficeLight entities: - uid: 5879 @@ -37915,12 +37820,6 @@ entities: pos: -36.5,11.5 parent: 2 type: Transform - - uid: 5913 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,11.5 - parent: 2 - type: Transform - uid: 5914 components: - pos: -33.5,14.5 @@ -38047,6 +37946,12 @@ entities: pos: -31.532867,-14.156494 parent: 2 type: Transform + - uid: 11939 + components: + - rot: 3.141592653589793 rad + pos: -34.5,10.5 + parent: 2 + type: Transform - proto: CheapLighter entities: - uid: 5936 @@ -38242,6 +38147,13 @@ entities: - pos: -14.560801,-29.289936 parent: 2 type: Transform +- proto: CleanerDispenser + entities: + - uid: 6245 + components: + - pos: 2.5,10.5 + parent: 2 + type: Transform - proto: CloningPod entities: - uid: 5968 @@ -38459,6 +38371,11 @@ entities: - pos: -0.5,12.5 parent: 2 type: Transform + - uid: 6246 + components: + - pos: 22.5,-13.5 + parent: 2 + type: Transform - proto: ClosetL3JanitorFilled entities: - uid: 6009 @@ -38725,11 +38642,11 @@ entities: pos: 32.67021,-16.227297 parent: 2 type: Transform -- proto: ClothingHandsGlovesCombat +- proto: ClothingHandsGlovesColorYellow entities: - - uid: 6053 + - uid: 5695 components: - - pos: -8.5,-39.5 + - pos: -8.356562,-39.588528 parent: 2 type: Transform - proto: ClothingHandsGlovesLatex @@ -39411,10 +39328,10 @@ entities: pos: -6.5,43.5 parent: 2 type: Transform - - uid: 6158 + - uid: 12815 components: - rot: -1.5707963267948966 rad - pos: 20.5,-46.5 + pos: 23.5,-46.5 parent: 2 type: Transform - proto: ComputerResearchAndDevelopment @@ -39892,9 +39809,9 @@ entities: - pos: -52.5,34.5 parent: 2 type: Transform - - uid: 6222 + - uid: 13471 components: - - pos: 14.5,-45.5 + - pos: 17.5,-45.5 parent: 2 type: Transform - proto: CrateChemistryS @@ -39977,11 +39894,6 @@ entities: - pos: -11.5,-45.5 parent: 2 type: Transform - - uid: 6237 - components: - - pos: -13.5,-44.5 - parent: 2 - type: Transform - uid: 6238 components: - pos: -13.5,-43.5 @@ -39989,6 +39901,11 @@ entities: type: Transform - proto: CrateEngineeringSingularityContainment entities: + - uid: 6237 + components: + - pos: -11.5,-43.5 + parent: 2 + type: Transform - uid: 6239 components: - pos: -11.5,-42.5 @@ -39999,11 +39916,6 @@ entities: - pos: -10.5,-43.5 parent: 2 type: Transform - - uid: 6241 - components: - - pos: -11.5,-43.5 - parent: 2 - type: Transform - uid: 6242 components: - pos: -12.5,-42.5 @@ -40014,23 +39926,8 @@ entities: - pos: -10.5,-42.5 parent: 2 type: Transform - - uid: 6244 - components: - - pos: -12.5,-44.5 - parent: 2 - type: Transform - proto: CrateEngineeringSingularityEmitter entities: - - uid: 6245 - components: - - pos: -11.5,-44.5 - parent: 2 - type: Transform - - uid: 6246 - components: - - pos: -10.5,-44.5 - parent: 2 - type: Transform - uid: 6247 components: - pos: -11.5,-46.5 @@ -40118,14 +40015,14 @@ entities: type: Transform - proto: CrateGenericSteel entities: - - uid: 6262 + - uid: 2921 components: - - pos: 14.5,-22.5 + - pos: 19.5,-45.5 parent: 2 type: Transform - - uid: 6263 + - uid: 6262 components: - - pos: 16.5,-45.5 + - pos: 14.5,-22.5 parent: 2 type: Transform - proto: CrateHydroponics @@ -40278,11 +40175,15 @@ entities: - pos: 16.5,21.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 6283 components: - pos: 18.5,21.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: CyborgEndoskeleton entities: - uid: 6284 @@ -40805,6 +40706,12 @@ entities: pos: -8.5,-37.5 parent: 2 type: Transform + - uid: 12897 + components: + - rot: 3.141592653589793 rad + pos: -11.5,17.5 + parent: 2 + type: Transform - proto: DisposalJunction entities: - uid: 6369 @@ -40936,6 +40843,11 @@ entities: - pos: -24.5,17.5 parent: 2 type: Transform + - uid: 6786 + components: + - pos: -4.5,17.5 + parent: 2 + type: Transform - proto: DisposalJunctionFlipped entities: - uid: 6393 @@ -41058,6 +40970,36 @@ entities: type: Transform - proto: DisposalPipe entities: + - uid: 3026 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,17.5 + parent: 2 + type: Transform + - uid: 3686 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,17.5 + parent: 2 + type: Transform + - uid: 3687 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,17.5 + parent: 2 + type: Transform + - uid: 3688 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,17.5 + parent: 2 + type: Transform + - uid: 3706 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,17.5 + parent: 2 + type: Transform - uid: 6414 components: - pos: 0.5,0.5 @@ -43210,11 +43152,6 @@ entities: - pos: -4.5,16.5 parent: 2 type: Transform - - uid: 6786 - components: - - pos: -4.5,17.5 - parent: 2 - type: Transform - uid: 6787 components: - pos: -4.5,18.5 @@ -44376,6 +44313,12 @@ entities: - pos: -8.5,-39.5 parent: 2 type: Transform + - uid: 13228 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,17.5 + parent: 2 + type: Transform - proto: DisposalTrunk entities: - uid: 6985 @@ -44680,6 +44623,16 @@ entities: pos: -8.5,-40.5 parent: 2 type: Transform + - uid: 14748 + components: + - pos: -11.5,18.5 + parent: 2 + type: Transform + - uid: 17440 + components: + - pos: -33.5,-4.5 + parent: 2 + type: Transform - proto: DisposalUnit entities: - uid: 7038 @@ -45209,15 +45162,15 @@ entities: footstepSound: !type:SoundCollectionSpecifier params: variation: null - playoffset: 0 + playOffsetSeconds: 0 loop: False referenceDistance: 1 rolloffFactor: 1 - maxdistance: 25 - busname: Master - pitchscale: 1 + maxDistance: 20 + busName: Master + pitch: 1 volume: 0 - attenuation: Default + attenuation: LinearDistanceClamped collection: FootstepWater flavor: gintonic flavorMinimum: 0.1 @@ -45312,15 +45265,15 @@ entities: footstepSound: !type:SoundCollectionSpecifier params: variation: null - playoffset: 0 + playOffsetSeconds: 0 loop: False referenceDistance: 1 rolloffFactor: 1 - maxdistance: 25 - busname: Master - pitchscale: 1 + maxDistance: 20 + busName: Master + pitch: 1 volume: 0 - attenuation: Default + attenuation: LinearDistanceClamped collection: FootstepWater flavor: whiskeycola flavorMinimum: 0.1 @@ -45858,12 +45811,6 @@ entities: pos: 7.5,-11.5 parent: 2 type: Transform - - uid: 7198 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-27.5 - parent: 2 - type: Transform - uid: 7199 components: - rot: -1.5707963267948966 rad @@ -46180,6 +46127,12 @@ entities: pos: 13.5,-17.5 parent: 2 type: Transform + - uid: 13222 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-25.5 + parent: 2 + type: Transform - proto: Emitter entities: - uid: 7254 @@ -46532,6 +46485,20 @@ entities: type: Transform - name: reporter's office type: FaxMachine + - uid: 7695 + components: + - pos: -2.5,-33.5 + parent: 2 + type: Transform + - name: chief engineer + type: FaxMachine + - uid: 17424 + components: + - pos: -7.5,-15.5 + parent: 2 + type: Transform + - name: engineering + type: FaxMachine - proto: FaxMachineCaptain entities: - uid: 7315 @@ -46593,15 +46560,13 @@ entities: - pos: 7.5,27.5 parent: 2 type: Transform -- proto: filingCabinetDrawer +- proto: filingCabinetDrawerRandom entities: - uid: 7324 components: - - pos: 14.5,-34.5 + - pos: 14.259292,-34.5 parent: 2 type: Transform -- proto: filingCabinetDrawerRandom - entities: - uid: 7325 components: - pos: 10.5,-8.5 @@ -46673,10 +46638,6 @@ entities: - pos: -25.5,-6.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7394 - - 7391 - type: DeviceNetwork - devices: - 7394 - 7391 @@ -46684,20 +46645,14 @@ entities: - 7462 - 7463 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 7338 components: - rot: 1.5707963267948966 rad pos: 8.5,-23.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7422 - - 7421 - - 7425 - - 7542 - - 7561 - - 7560 - type: DeviceNetwork - devices: - 7422 - 7421 @@ -46706,34 +46661,26 @@ entities: - 7561 - 7560 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 7339 components: - pos: 31.5,-17.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7487 - - 7488 - - 7489 - type: DeviceNetwork - devices: - 7487 - 7488 - 7489 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 7340 components: - rot: 1.5707963267948966 rad pos: 36.5,-7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7489 - - 7488 - - 7467 - - 7435 - - 7379 - type: DeviceNetwork - devices: - 7489 - 7488 @@ -46741,24 +46688,14 @@ entities: - 7435 - 7379 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 7341 components: - rot: 1.5707963267948966 rad pos: 9.5,6.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7534 - - 7535 - - 7524 - - 7523 - - 7367 - - 7461 - - 7404 - - 7398 - - 7409 - - 7410 - type: DeviceNetwork - devices: - 7535 - 7534 @@ -46771,35 +46708,26 @@ entities: - 7524 - 7523 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 7342 components: - rot: 1.5707963267948966 rad pos: 11.5,23.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7382 - - 7525 - - 7526 - type: DeviceNetwork - devices: - 7382 - 7525 - 7526 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 7343 components: - pos: -28.5,17.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7481 - - 7480 - - 7356 - - 7384 - - 7475 - - 7476 - type: DeviceNetwork - devices: - 7356 - 7481 @@ -46808,42 +46736,28 @@ entities: - 7475 - 7476 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 7344 components: - rot: -1.5707963267948966 rad pos: -44.5,21.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7551 - - 7552 - - 7553 - - 7554 - type: DeviceNetwork - devices: - 7551 - 7552 - 7553 - 7554 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 7345 components: - rot: 3.141592653589793 rad pos: 9.5,-1.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7396 - - 7397 - - 7395 - - 7389 - - 7460 - - 7534 - - 7535 - - 7459 - - 7458 - - 7358 - type: DeviceNetwork - devices: - 7396 - 7397 @@ -46856,20 +46770,14 @@ entities: - 7458 - 7358 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 7346 components: - rot: -1.5707963267948966 rad pos: 24.5,17.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7524 - - 7523 - - 7372 - - 7371 - - 7531 - - 7530 - type: DeviceNetwork - devices: - 7524 - 7523 @@ -46878,15 +46786,13 @@ entities: - 7531 - 7530 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 7347 components: - pos: -39.5,-7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7393 - - 7392 - type: DeviceNetwork - devices: - 7438 - 7439 @@ -46896,27 +46802,14 @@ entities: - 7393 - 7392 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 7348 components: - rot: -1.5707963267948966 rad pos: -50.5,-7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7443 - - 7444 - - 7445 - - 7446 - - 7447 - - 7449 - - 7448 - - 7453 - - 7452 - - 7451 - - 7454 - - 7455 - - 7450 - type: DeviceNetwork - devices: - 7443 - 7444 @@ -46932,41 +46825,28 @@ entities: - 7455 - 7450 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 7349 components: - rot: 1.5707963267948966 rad pos: -17.5,-35.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 434 - - 7529 - - 7533 - - 7532 - type: DeviceNetwork - devices: - 434 - 7529 - 7533 - 7532 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 7350 components: - rot: 1.5707963267948966 rad pos: 22.5,-2.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7426 - - 7479 - - 7460 - - 7435 - - 7465 - - 7466 - - 7468 - - 7473 - - 7474 - type: DeviceNetwork - devices: - 7426 - 7479 @@ -46978,30 +46858,26 @@ entities: - 7473 - 7474 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 7351 components: - pos: 28.5,23.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7371 - - 7372 - - 7381 - type: DeviceNetwork - devices: - 7371 - 7372 - 7381 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 7352 components: - rot: 3.141592653589793 rad pos: -0.5,-4.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7357 - type: DeviceNetwork - devices: - 7357 - 7457 @@ -47009,22 +46885,13 @@ entities: - 7459 - 7458 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 7353 components: - pos: -5.5,-41.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7566 - - 7565 - - 7564 - - 7563 - - 7363 - - 7364 - - 7416 - - 441 - - 442 - type: DeviceNetwork - devices: - 7566 - 7565 @@ -47036,6 +46903,8 @@ entities: - 441 - 442 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - proto: FireAxeCabinetFilled entities: - uid: 7354 @@ -47055,45 +46924,27 @@ entities: - pos: -37.5,12.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 5 - - 7343 - type: DeviceNetwork - uid: 7357 components: - pos: 2.5,-4.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 42 - - 7352 - type: DeviceNetwork - uid: 7358 components: - pos: 6.5,-1.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7345 - - 28 - type: DeviceNetwork - uid: 7359 components: - pos: -14.5,-33.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 37 - type: DeviceNetwork - uid: 7360 components: - rot: -1.5707963267948966 rad pos: -23.5,12.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 16 - type: DeviceNetwork - uid: 7361 components: - pos: -35.5,42.5 @@ -47109,19 +46960,11 @@ entities: - pos: 3.5,-38.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 53 - - 7353 - type: DeviceNetwork - uid: 7364 components: - pos: 3.5,-37.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 53 - - 7353 - type: DeviceNetwork - uid: 7365 components: - pos: -32.5,33.5 @@ -47137,26 +46980,16 @@ entities: - pos: 9.5,7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7341 - type: DeviceNetwork - uid: 7368 components: - pos: -35.5,30.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9 - type: DeviceNetwork - uid: 7369 components: - pos: -37.5,32.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 23 - - 19 - type: DeviceNetwork - uid: 7370 components: - pos: 25.5,-17.5 @@ -47167,21 +47000,11 @@ entities: - pos: 24.5,22.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7346 - - 7351 - - 12 - type: DeviceNetwork - uid: 7372 components: - pos: 24.5,19.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7346 - - 7351 - - 12 - type: DeviceNetwork - uid: 7373 components: - pos: -7.5,40.5 @@ -47213,18 +47036,12 @@ entities: pos: -39.5,22.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 29 - type: DeviceNetwork - uid: 7379 components: - rot: 1.5707963267948966 rad pos: 40.5,2.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7340 - type: DeviceNetwork - uid: 7380 components: - rot: 1.5707963267948966 rad @@ -47236,76 +47053,47 @@ entities: - pos: 26.5,17.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7351 - - 12 - type: DeviceNetwork - uid: 7382 components: - rot: 3.141592653589793 rad pos: 13.5,27.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7342 - type: DeviceNetwork - uid: 7383 components: - pos: -2.5,11.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 43 - type: DeviceNetwork - uid: 7384 components: - pos: -28.5,13.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7343 - - 5 - type: DeviceNetwork - uid: 7385 components: - pos: -16.5,-73.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 50 - type: DeviceNetwork - uid: 7386 components: - pos: -18.5,-76.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 50 - type: DeviceNetwork - uid: 7387 components: - pos: -13.5,-76.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 50 - type: DeviceNetwork - uid: 7388 components: - pos: -16.5,-79.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 50 - type: DeviceNetwork - uid: 7389 components: - pos: 9.5,-6.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7345 - type: DeviceNetwork - proto: FirelockEdge entities: - uid: 7390 @@ -47320,77 +47108,45 @@ entities: pos: -22.5,-6.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7337 - - 31 - type: DeviceNetwork - uid: 7392 components: - pos: -42.5,-7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7347 - - 41 - type: DeviceNetwork - uid: 7393 components: - pos: -41.5,-7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7347 - - 41 - type: DeviceNetwork - uid: 7394 components: - rot: 3.141592653589793 rad pos: -21.5,-6.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7337 - - 31 - type: DeviceNetwork - uid: 7395 components: - rot: 1.5707963267948966 rad pos: 9.5,-3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7345 - type: DeviceNetwork - uid: 7396 components: - rot: 3.141592653589793 rad pos: 13.5,-7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 14 - - 7345 - type: DeviceNetwork - uid: 7397 components: - rot: 3.141592653589793 rad pos: 12.5,-7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 14 - - 7345 - type: DeviceNetwork - uid: 7398 components: - pos: 15.5,9.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10 - - 51 - - 7341 - type: DeviceNetwork - uid: 7399 components: - rot: 3.141592653589793 rad @@ -47414,85 +47170,50 @@ entities: - pos: -6.5,19.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 40 - type: DeviceNetwork - uid: 7403 components: - pos: -7.5,19.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 40 - type: DeviceNetwork - uid: 7404 components: - pos: 14.5,9.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10 - - 51 - - 7341 - type: DeviceNetwork - uid: 7405 components: - rot: -1.5707963267948966 rad pos: -43.5,28.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9 - type: DeviceNetwork - uid: 7406 components: - rot: -1.5707963267948966 rad pos: -43.5,27.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9 - type: DeviceNetwork - uid: 7407 components: - rot: 1.5707963267948966 rad pos: -33.5,29.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 24 - - 9 - type: DeviceNetwork - uid: 7408 components: - rot: 1.5707963267948966 rad pos: -33.5,28.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 24 - - 9 - type: DeviceNetwork - uid: 7409 components: - pos: 18.5,9.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10 - - 51 - - 7341 - type: DeviceNetwork - uid: 7410 components: - pos: 19.5,9.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 10 - - 51 - - 7341 - type: DeviceNetwork - uid: 7411 components: - rot: 3.141592653589793 rad @@ -47510,37 +47231,24 @@ entities: - pos: -8.5,19.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 40 - type: DeviceNetwork - uid: 7414 components: - rot: -1.5707963267948966 rad pos: -22.5,5.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 16 - type: DeviceNetwork - uid: 7415 components: - rot: -1.5707963267948966 rad pos: -22.5,6.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 16 - type: DeviceNetwork - uid: 7416 components: - rot: -1.5707963267948966 rad pos: -4.5,-51.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 53 - - 7353 - type: DeviceNetwork - proto: FirelockGlass entities: - uid: 7417 @@ -47553,42 +47261,26 @@ entities: - pos: -26.5,6.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 16 - - 7 - type: DeviceNetwork - uid: 7419 components: - pos: -11.5,-0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 22 - type: DeviceNetwork - uid: 7420 components: - pos: 34.5,2.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 32 - type: DeviceNetwork - uid: 7421 components: - pos: 13.5,-25.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7338 - type: DeviceNetwork - uid: 7422 components: - pos: 13.5,-26.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7338 - type: DeviceNetwork - uid: 7423 components: - rot: 1.5707963267948966 rad @@ -47605,17 +47297,11 @@ entities: - pos: 10.5,-18.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7338 - type: DeviceNetwork - uid: 7426 components: - pos: 18.5,-2.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7350 - type: DeviceNetwork - uid: 7427 components: - pos: -21.5,33.5 @@ -47656,50 +47342,31 @@ entities: - pos: 33.5,2.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 32 - type: DeviceNetwork - uid: 7435 components: - pos: 36.5,0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7340 - - 7350 - type: DeviceNetwork - uid: 7436 components: - pos: -44.5,-9.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 17 - type: DeviceNetwork - uid: 7437 components: - pos: -44.5,-8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 17 - type: DeviceNetwork - uid: 7438 components: - pos: -34.5,-9.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 27 - type: DeviceNetwork - uid: 7439 components: - pos: -34.5,-8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 27 - type: DeviceNetwork - uid: 7440 components: - pos: -37.5,-7.5 @@ -47715,121 +47382,71 @@ entities: - pos: -46.5,-5.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 17 - type: DeviceNetwork - uid: 7443 components: - pos: -50.5,-8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7348 - - 17 - type: DeviceNetwork - uid: 7444 components: - pos: -50.5,-9.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7348 - - 17 - type: DeviceNetwork - uid: 7445 components: - pos: -54.5,-10.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7348 - - 44 - type: DeviceNetwork - uid: 7446 components: - pos: -55.5,-10.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7348 - - 44 - type: DeviceNetwork - uid: 7447 components: - pos: -56.5,-10.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7348 - - 44 - type: DeviceNetwork - uid: 7448 components: - pos: -56.5,-5.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7348 - - 18 - type: DeviceNetwork - uid: 7449 components: - pos: -55.5,-5.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7348 - - 18 - type: DeviceNetwork - uid: 7450 components: - pos: -57.5,-7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7348 - - 6 - type: DeviceNetwork - uid: 7451 components: - pos: -58.5,-13.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7348 - type: DeviceNetwork - uid: 7452 components: - pos: -58.5,-15.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7348 - type: DeviceNetwork - uid: 7453 components: - pos: -55.5,-15.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7348 - type: DeviceNetwork - uid: 7454 components: - pos: -52.5,-15.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7348 - type: DeviceNetwork - uid: 7455 components: - pos: -49.5,-15.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7348 - type: DeviceNetwork - uid: 7456 components: - pos: -2.5,1.5 @@ -47845,55 +47462,33 @@ entities: - pos: 3.5,-0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 35 - - 7345 - type: DeviceNetwork - uid: 7459 components: - pos: 3.5,1.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 35 - - 7345 - type: DeviceNetwork - uid: 7460 components: - pos: 16.5,0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7350 - - 35 - - 7345 - type: DeviceNetwork - uid: 7461 components: - pos: 11.5,9.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7341 - type: DeviceNetwork - uid: 7462 components: - rot: 3.141592653589793 rad pos: -26.5,-8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 27 - type: DeviceNetwork - uid: 7463 components: - rot: 3.141592653589793 rad pos: -26.5,-9.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 27 - type: DeviceNetwork - uid: 7464 components: - rot: 3.141592653589793 rad @@ -47905,164 +47500,100 @@ entities: - pos: 32.5,-1.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7350 - type: DeviceNetwork - uid: 7466 components: - pos: 31.5,-1.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7350 - type: DeviceNetwork - uid: 7467 components: - pos: 36.5,-5.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7340 - type: DeviceNetwork - uid: 7468 components: - pos: 27.5,-4.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7350 - type: DeviceNetwork - uid: 7469 components: - rot: 3.141592653589793 rad pos: -17.5,-6.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 22 - type: DeviceNetwork - uid: 7470 components: - rot: 3.141592653589793 rad pos: -16.5,-6.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 22 - type: DeviceNetwork - uid: 7471 components: - pos: -20.5,-0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 16 - - 22 - type: DeviceNetwork - uid: 7472 components: - rot: 3.141592653589793 rad pos: -26.5,5.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7 - - 16 - type: DeviceNetwork - uid: 7473 components: - pos: 25.5,-6.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7350 - type: DeviceNetwork - uid: 7474 components: - pos: 24.5,-6.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7350 - type: DeviceNetwork - uid: 7475 components: - rot: 3.141592653589793 rad pos: -26.5,14.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7343 - - 5 - - 16 - type: DeviceNetwork - uid: 7476 components: - rot: 3.141592653589793 rad pos: -26.5,15.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7343 - - 5 - - 16 - type: DeviceNetwork - uid: 7477 components: - rot: 3.141592653589793 rad pos: -24.5,18.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 16 - type: DeviceNetwork - uid: 7478 components: - rot: 3.141592653589793 rad pos: -23.5,18.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 16 - type: DeviceNetwork - uid: 7479 components: - pos: 22.5,-4.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7350 - type: DeviceNetwork - uid: 7480 components: - rot: 3.141592653589793 rad pos: -39.5,15.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 29 - - 7343 - - 5 - type: DeviceNetwork - uid: 7481 components: - rot: 3.141592653589793 rad pos: -39.5,14.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 29 - - 7343 - - 5 - type: DeviceNetwork - uid: 7482 components: - pos: -26.5,2.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 16 - type: DeviceNetwork - uid: 7483 components: - pos: -31.5,4.5 @@ -48088,106 +47619,63 @@ entities: - pos: 29.5,-17.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7339 - - 34 - type: DeviceNetwork - uid: 7488 components: - pos: 38.5,-14.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7340 - - 7339 - - 34 - type: DeviceNetwork - uid: 7489 components: - pos: 39.5,-14.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7340 - - 7339 - - 34 - type: DeviceNetwork - uid: 7490 components: - rot: 3.141592653589793 rad pos: -40.5,8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 29 - type: DeviceNetwork - uid: 7491 components: - rot: 3.141592653589793 rad pos: -42.5,8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 29 - type: DeviceNetwork - uid: 7492 components: - rot: 3.141592653589793 rad pos: -42.5,24.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 29 - - 9 - type: DeviceNetwork - uid: 7493 components: - rot: 3.141592653589793 rad pos: -40.5,24.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 29 - - 9 - type: DeviceNetwork - uid: 7494 components: - rot: 3.141592653589793 rad pos: -46.5,31.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 19 - type: DeviceNetwork - uid: 7495 components: - rot: 3.141592653589793 rad pos: -41.5,30.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 23 - - 19 - - 9 - type: DeviceNetwork - uid: 7496 components: - rot: 3.141592653589793 rad pos: -43.5,33.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 23 - - 19 - type: DeviceNetwork - uid: 7497 components: - pos: -51.5,36.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 19 - type: DeviceNetwork - uid: 7498 components: - pos: -22.5,22.5 @@ -48198,9 +47686,6 @@ entities: - pos: -51.5,33.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 19 - type: DeviceNetwork - uid: 7500 components: - pos: -25.5,26.5 @@ -48216,41 +47701,26 @@ entities: - pos: -33.5,26.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9 - type: DeviceNetwork - uid: 7503 components: - pos: -11.5,26.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 40 - type: DeviceNetwork - uid: 7504 components: - pos: -11.5,25.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 40 - type: DeviceNetwork - uid: 7505 components: - pos: -5.5,28.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 40 - type: DeviceNetwork - uid: 7506 components: - pos: -3.5,28.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 40 - type: DeviceNetwork - uid: 7507 components: - pos: -3.5,32.5 @@ -48266,33 +47736,21 @@ entities: - pos: -2.5,30.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 13 - type: DeviceNetwork - uid: 7510 components: - pos: -2.5,34.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 13 - type: DeviceNetwork - uid: 7511 components: - pos: -6.5,35.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 36 - type: DeviceNetwork - uid: 7512 components: - pos: -13.5,35.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 36 - type: DeviceNetwork - uid: 7513 components: - pos: 9.5,-9.5 @@ -48323,78 +47781,46 @@ entities: - pos: -4.5,15.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 40 - type: DeviceNetwork - uid: 7519 components: - pos: -3.5,15.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 40 - type: DeviceNetwork - uid: 7520 components: - pos: -11.5,0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 22 - type: DeviceNetwork - uid: 7521 components: - pos: -8.5,-1.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 49 - type: DeviceNetwork - uid: 7522 components: - pos: -8.5,-11.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 49 - type: DeviceNetwork - uid: 7523 components: - pos: 24.5,6.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7346 - - 7341 - type: DeviceNetwork - uid: 7524 components: - pos: 22.5,9.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7346 - - 12 - - 7341 - type: DeviceNetwork - uid: 7525 components: - pos: 13.5,17.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7342 - - 33 - type: DeviceNetwork - uid: 7526 components: - pos: 12.5,17.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7342 - - 33 - type: DeviceNetwork - uid: 7527 components: - pos: -5.5,-23.5 @@ -48405,72 +47831,41 @@ entities: - pos: -9.5,-28.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 47 - type: DeviceNetwork - uid: 7529 components: - pos: -9.5,-33.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 47 - - 7349 - type: DeviceNetwork - uid: 7530 components: - pos: 20.5,15.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7346 - - 12 - type: DeviceNetwork - uid: 7531 components: - pos: 20.5,16.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7346 - - 12 - type: DeviceNetwork - uid: 7532 components: - pos: -18.5,-29.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7349 - type: DeviceNetwork - uid: 7533 components: - pos: -16.5,-29.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7349 - type: DeviceNetwork - uid: 7534 components: - pos: 13.5,3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 35 - - 7341 - - 7345 - type: DeviceNetwork - uid: 7535 components: - pos: 12.5,3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 35 - - 7341 - - 7345 - type: DeviceNetwork - uid: 7536 components: - pos: -16.5,-14.5 @@ -48496,9 +47891,6 @@ entities: - pos: -7.5,-25.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 47 - type: DeviceNetwork - uid: 7541 components: - pos: 1.5,-15.5 @@ -48509,9 +47901,6 @@ entities: - pos: 9.5,-18.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7338 - type: DeviceNetwork - uid: 7543 components: - pos: -31.5,22.5 @@ -48558,42 +47947,24 @@ entities: pos: -43.5,17.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 29 - - 7344 - - 25 - type: DeviceNetwork - uid: 7552 components: - rot: -1.5707963267948966 rad pos: -43.5,15.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 29 - - 7344 - - 25 - type: DeviceNetwork - uid: 7553 components: - rot: -1.5707963267948966 rad pos: -46.5,8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7344 - - 25 - type: DeviceNetwork - uid: 7554 components: - rot: -1.5707963267948966 rad pos: -48.5,8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7344 - - 25 - type: DeviceNetwork - uid: 7555 components: - rot: -1.5707963267948966 rad @@ -48611,9 +47982,6 @@ entities: pos: -10.5,19.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 40 - type: DeviceNetwork - uid: 7558 components: - pos: 17.5,29.5 @@ -48629,62 +47997,36 @@ entities: - pos: 11.5,-35.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7338 - type: DeviceNetwork - uid: 7561 components: - pos: 10.5,-35.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 7338 - type: DeviceNetwork - uid: 7562 components: - pos: -20.5,0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 16 - - 22 - type: DeviceNetwork - uid: 7563 components: - pos: -7.5,-36.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 53 - - 7353 - type: DeviceNetwork - uid: 7564 components: - pos: -6.5,-36.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 53 - - 7353 - type: DeviceNetwork - uid: 7565 components: - pos: -4.5,-38.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 53 - - 7353 - type: DeviceNetwork - uid: 7566 components: - pos: -4.5,-39.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 53 - - 7353 - type: DeviceNetwork - proto: Fireplace entities: - uid: 7567 @@ -48970,10 +48312,10 @@ entities: type: Transform - proto: FoodCartHot entities: - - uid: 7612 + - uid: 3734 components: - rot: -1.5707963267948966 rad - pos: -6.5,16.5 + pos: -6.5,17.5 parent: 2 type: Transform - proto: FoodCondimentBottleBBQ @@ -49428,6 +48770,13 @@ entities: - pos: -58.25037,-3.1736562 parent: 2 type: Transform +- proto: FuelDispenser + entities: + - uid: 12841 + components: + - pos: -15.5,-27.5 + parent: 2 + type: Transform - proto: GasAnalyzer entities: - uid: 7682 @@ -49445,6 +48794,8 @@ entities: pos: 17.5,19.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 7684 @@ -49455,6 +48806,8 @@ entities: pos: 16.5,19.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 7685 @@ -49462,93 +48815,128 @@ entities: - pos: -56.5,36.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 7686 components: - pos: -56.5,32.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: GasFilterFlipped entities: - uid: 7687 components: + - name: oxygen filter + type: MetaData - rot: 3.141592653589793 rad pos: -0.5,-44.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#800080FF' type: AtmosPipeColor - uid: 7688 components: + - name: nitrogen filter + type: MetaData - rot: 3.141592653589793 rad pos: -0.5,-42.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#800080FF' type: AtmosPipeColor - uid: 7689 components: + - name: plasma filter + type: MetaData - rot: 3.141592653589793 rad pos: -0.5,-48.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#800080FF' type: AtmosPipeColor - uid: 7690 components: + - name: carbon dioxide filter + type: MetaData - rot: 3.141592653589793 rad pos: -0.5,-46.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#800080FF' type: AtmosPipeColor - uid: 7691 components: + - name: burn chamber filter + type: MetaData - rot: -1.5707963267948966 rad pos: -5.5,-43.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#66FF00FF' type: AtmosPipeColor - proto: GasMinerCarbonDioxide entities: - - uid: 7692 + - uid: 6053 components: - - rot: 1.5707963267948966 rad - pos: 6.5,-47.5 + - pos: 6.5,-47.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: GasMinerNitrogenStation entities: - - uid: 7693 + - uid: 7692 components: - - rot: 3.141592653589793 rad - pos: 6.5,-43.5 + - pos: 6.5,-43.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: GasMinerOxygen entities: - - uid: 7694 + - uid: 7693 components: - - rot: -1.5707963267948966 rad - pos: 6.5,-45.5 + - pos: 6.5,-45.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: GasMinerPlasma entities: - - uid: 7695 + - uid: 7694 components: - - rot: 1.5707963267948966 rad - pos: 6.5,-49.5 + - pos: 6.5,-49.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: GasMixer entities: - uid: 7696 components: + - name: air mixer + type: MetaData - rot: 3.141592653589793 rad pos: -2.5,-43.5 parent: 2 type: Transform + - inletTwoConcentration: 0.79 + inletOneConcentration: 0.21 + type: GasMixer + - joinedGrid: 2 + type: AtmosDevice - color: '#0000FFFF' type: AtmosPipeColor - uid: 7697 @@ -49557,22 +48945,32 @@ entities: pos: -57.5,34.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: GasMixerFlipped entities: - uid: 7698 components: + - name: oxygen burn mixer + type: MetaData - rot: 3.141592653589793 rad pos: -2.5,-47.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#66FF00FF' type: AtmosPipeColor - uid: 7699 components: + - name: plasma mixer + type: MetaData - rot: 3.141592653589793 rad pos: -2.5,-49.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#66FF00FF' type: AtmosPipeColor - proto: GasOutletInjector @@ -49582,25 +48980,93 @@ entities: - pos: -61.5,37.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 7701 components: - rot: 3.141592653589793 rad pos: -61.5,31.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 7702 components: - pos: -54.5,39.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 7703 components: - rot: 3.141592653589793 rad pos: -6.5,-48.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#66FF00FF' type: AtmosPipeColor + - uid: 7707 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-49.5 + parent: 2 + type: Transform + - joinedGrid: 2 + type: AtmosDevice + - color: '#800080FF' + type: AtmosPipeColor + - uid: 7709 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-51.5 + parent: 2 + type: Transform + - joinedGrid: 2 + type: AtmosDevice + - color: '#800080FF' + type: AtmosPipeColor + - uid: 7710 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-47.5 + parent: 2 + type: Transform + - joinedGrid: 2 + type: AtmosDevice + - color: '#800080FF' + type: AtmosPipeColor + - uid: 7711 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-45.5 + parent: 2 + type: Transform + - joinedGrid: 2 + type: AtmosDevice + - color: '#800080FF' + type: AtmosPipeColor + - uid: 7716 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-43.5 + parent: 2 + type: Transform + - joinedGrid: 2 + type: AtmosDevice + - color: '#800080FF' + type: AtmosPipeColor + - uid: 17426 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-41.5 + parent: 2 + type: Transform + - joinedGrid: 2 + type: AtmosDevice + - color: '#00008BFF' + type: AtmosPipeColor - proto: GasPassiveGate entities: - uid: 7704 @@ -49609,6 +49075,8 @@ entities: pos: -48.5,-7.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 7705 @@ -49617,6 +49085,8 @@ entities: pos: -52.5,33.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 7706 @@ -49625,118 +49095,120 @@ entities: pos: -12.5,10.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - proto: GasPassiveVent entities: - - uid: 7707 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-41.5 - parent: 2 - type: Transform - - color: '#800080FF' - type: AtmosPipeColor - uid: 7708 components: - rot: 3.141592653589793 rad pos: 6.5,-41.5 parent: 2 type: Transform - - uid: 7709 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-49.5 - parent: 2 - type: Transform - - uid: 7710 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-51.5 - parent: 2 - type: Transform - - uid: 7711 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-47.5 - parent: 2 - type: Transform + - joinedGrid: 2 + type: AtmosDevice + - color: '#00008BFF' + type: AtmosPipeColor - uid: 7712 components: - rot: 1.5707963267948966 rad pos: -59.5,37.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 7713 components: - pos: -55.5,39.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 7714 components: - pos: -62.5,37.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 7715 components: - rot: 3.141592653589793 rad pos: -62.5,31.5 parent: 2 type: Transform - - uid: 7716 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-45.5 - parent: 2 - type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 7717 components: - rot: -1.5707963267948966 rad pos: 5.5,-43.5 parent: 2 type: Transform - - uid: 7718 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-43.5 - parent: 2 - type: Transform + - joinedGrid: 2 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 7719 components: - rot: -1.5707963267948966 rad pos: 5.5,-51.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice + - color: '#800080FF' + type: AtmosPipeColor - uid: 7720 components: - rot: -1.5707963267948966 rad pos: 5.5,-49.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice + - color: '#CB00F5FF' + type: AtmosPipeColor - uid: 7721 components: - rot: -1.5707963267948966 rad pos: 5.5,-47.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice + - color: '#808080FF' + type: AtmosPipeColor - uid: 7722 components: - rot: -1.5707963267948966 rad pos: 5.5,-45.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 7723 components: - rot: -1.5707963267948966 rad pos: 3.5,-40.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice + - color: '#800080FF' + type: AtmosPipeColor - uid: 7724 components: - rot: 3.141592653589793 rad pos: -4.5,-53.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#66FF00FF' type: AtmosPipeColor - uid: 7725 @@ -49745,6 +49217,8 @@ entities: pos: -0.5,-53.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#800080FF' type: AtmosPipeColor - proto: GasPipeBend @@ -49777,12 +49251,16 @@ entities: - pos: 6.5,-40.5 parent: 2 type: Transform + - color: '#00008BFF' + type: AtmosPipeColor - uid: 7730 components: - rot: 3.141592653589793 rad pos: 4.5,-40.5 parent: 2 type: Transform + - color: '#00008BFF' + type: AtmosPipeColor - uid: 7731 components: - rot: 3.141592653589793 rad @@ -49796,6 +49274,8 @@ entities: - pos: 4.5,-39.5 parent: 2 type: Transform + - color: '#00008BFF' + type: AtmosPipeColor - uid: 7733 components: - rot: 3.141592653589793 rad @@ -49910,6 +49390,8 @@ entities: - pos: 6.5,-48.5 parent: 2 type: Transform + - color: '#800080FF' + type: AtmosPipeColor - uid: 7748 components: - pos: 19.5,20.5 @@ -50039,11 +49521,15 @@ entities: - pos: 6.5,-44.5 parent: 2 type: Transform + - color: '#800080FF' + type: AtmosPipeColor - uid: 7767 components: - pos: 6.5,-46.5 parent: 2 type: Transform + - color: '#800080FF' + type: AtmosPipeColor - uid: 7768 components: - pos: -39.5,40.5 @@ -51162,11 +50648,15 @@ entities: - pos: 6.5,-50.5 parent: 2 type: Transform + - color: '#800080FF' + type: AtmosPipeColor - uid: 7913 components: - pos: 6.5,-42.5 parent: 2 type: Transform + - color: '#800080FF' + type: AtmosPipeColor - uid: 7914 components: - pos: -0.5,-39.5 @@ -51511,13 +51001,18 @@ entities: type: AtmosPipeColor - proto: GasPipeStraight entities: + - uid: 3691 + components: + - pos: -16.5,-54.5 + parent: 2 + type: Transform - uid: 7962 components: - rot: 1.5707963267948966 rad pos: -0.5,-43.5 parent: 2 type: Transform - - color: '#EE4B2BFF' + - color: '#FF1212FF' type: AtmosPipeColor - uid: 7963 components: @@ -51525,6 +51020,8 @@ entities: pos: 5.5,-40.5 parent: 2 type: Transform + - color: '#00008BFF' + type: AtmosPipeColor - uid: 7964 components: - rot: -1.5707963267948966 rad @@ -51563,19 +51060,23 @@ entities: pos: 3.5,-39.5 parent: 2 type: Transform + - color: '#00008BFF' + type: AtmosPipeColor - uid: 7969 components: - rot: -1.5707963267948966 rad pos: 2.5,-39.5 parent: 2 type: Transform + - color: '#00008BFF' + type: AtmosPipeColor - uid: 7970 components: - rot: 1.5707963267948966 rad pos: 0.5,-43.5 parent: 2 type: Transform - - color: '#EE4B2BFF' + - color: '#FF1212FF' type: AtmosPipeColor - uid: 7971 components: @@ -51583,18 +51084,24 @@ entities: pos: 4.5,-45.5 parent: 2 type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 7972 components: - rot: -1.5707963267948966 rad pos: 3.5,-45.5 parent: 2 type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 7973 components: - rot: -1.5707963267948966 rad pos: 4.5,-49.5 parent: 2 type: Transform + - color: '#CB00F5FF' + type: AtmosPipeColor - uid: 7974 components: - rot: 1.5707963267948966 rad @@ -51609,6 +51116,8 @@ entities: pos: 2.5,-46.5 parent: 2 type: Transform + - color: '#800080FF' + type: AtmosPipeColor - uid: 7976 components: - pos: -2.5,-42.5 @@ -51629,7 +51138,7 @@ entities: pos: 3.5,-41.5 parent: 2 type: Transform - - color: '#800080FF' + - color: '#00008BFF' type: AtmosPipeColor - uid: 7979 components: @@ -51637,24 +51146,32 @@ entities: pos: 3.5,-47.5 parent: 2 type: Transform + - color: '#808080FF' + type: AtmosPipeColor - uid: 7980 components: - rot: -1.5707963267948966 rad pos: 4.5,-51.5 parent: 2 type: Transform + - color: '#800080FF' + type: AtmosPipeColor - uid: 7981 components: - rot: -1.5707963267948966 rad pos: 2.5,-45.5 parent: 2 type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 7982 components: - rot: 1.5707963267948966 rad pos: 4.5,-50.5 parent: 2 type: Transform + - color: '#800080FF' + type: AtmosPipeColor - uid: 7983 components: - pos: -0.5,-49.5 @@ -51684,48 +51201,64 @@ entities: pos: 4.5,-48.5 parent: 2 type: Transform + - color: '#800080FF' + type: AtmosPipeColor - uid: 7987 components: - rot: -1.5707963267948966 rad pos: 4.5,-46.5 parent: 2 type: Transform + - color: '#800080FF' + type: AtmosPipeColor - uid: 7988 components: - rot: 1.5707963267948966 rad pos: 3.5,-42.5 parent: 2 type: Transform + - color: '#800080FF' + type: AtmosPipeColor - uid: 7989 components: - rot: 1.5707963267948966 rad pos: 5.5,-42.5 parent: 2 type: Transform + - color: '#800080FF' + type: AtmosPipeColor - uid: 7990 components: - rot: -1.5707963267948966 rad pos: 5.5,-48.5 parent: 2 type: Transform + - color: '#800080FF' + type: AtmosPipeColor - uid: 7991 components: - rot: -1.5707963267948966 rad pos: 3.5,-44.5 parent: 2 type: Transform + - color: '#800080FF' + type: AtmosPipeColor - uid: 7992 components: - rot: -1.5707963267948966 rad pos: 5.5,-44.5 parent: 2 type: Transform + - color: '#800080FF' + type: AtmosPipeColor - uid: 7993 components: - rot: -1.5707963267948966 rad pos: 2.5,-43.5 parent: 2 type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 7994 components: - pos: -6.5,-36.5 @@ -51761,6 +51294,8 @@ entities: pos: 2.5,-50.5 parent: 2 type: Transform + - color: '#800080FF' + type: AtmosPipeColor - uid: 7999 components: - pos: -46.5,-14.5 @@ -52213,6 +51748,8 @@ entities: pos: 2.5,-51.5 parent: 2 type: Transform + - color: '#800080FF' + type: AtmosPipeColor - uid: 8059 components: - rot: 1.5707963267948966 rad @@ -52235,24 +51772,32 @@ entities: pos: 3.5,-50.5 parent: 2 type: Transform + - color: '#800080FF' + type: AtmosPipeColor - uid: 8062 components: - rot: -1.5707963267948966 rad pos: 2.5,-49.5 parent: 2 type: Transform + - color: '#CB00F5FF' + type: AtmosPipeColor - uid: 8063 components: - rot: -1.5707963267948966 rad pos: 2.5,-44.5 parent: 2 type: Transform + - color: '#800080FF' + type: AtmosPipeColor - uid: 8064 components: - rot: 1.5707963267948966 rad pos: 2.5,-42.5 parent: 2 type: Transform + - color: '#800080FF' + type: AtmosPipeColor - uid: 8065 components: - rot: 1.5707963267948966 rad @@ -52291,18 +51836,24 @@ entities: pos: 4.5,-42.5 parent: 2 type: Transform + - color: '#800080FF' + type: AtmosPipeColor - uid: 8070 components: - rot: -1.5707963267948966 rad pos: 3.5,-48.5 parent: 2 type: Transform + - color: '#800080FF' + type: AtmosPipeColor - uid: 8071 components: - rot: -1.5707963267948966 rad pos: 2.5,-48.5 parent: 2 type: Transform + - color: '#800080FF' + type: AtmosPipeColor - uid: 8072 components: - rot: 1.5707963267948966 rad @@ -52814,12 +52365,16 @@ entities: pos: 2.5,-47.5 parent: 2 type: Transform + - color: '#808080FF' + type: AtmosPipeColor - uid: 8146 components: - rot: 1.5707963267948966 rad pos: 2.5,-40.5 parent: 2 type: Transform + - color: '#800080FF' + type: AtmosPipeColor - uid: 8147 components: - rot: -1.5707963267948966 rad @@ -52850,6 +52405,8 @@ entities: pos: 4.5,-44.5 parent: 2 type: Transform + - color: '#800080FF' + type: AtmosPipeColor - uid: 8151 components: - rot: -1.5707963267948966 rad @@ -53034,12 +52591,16 @@ entities: pos: 3.5,-49.5 parent: 2 type: Transform + - color: '#CB00F5FF' + type: AtmosPipeColor - uid: 8175 components: - rot: -1.5707963267948966 rad pos: 3.5,-51.5 parent: 2 type: Transform + - color: '#800080FF' + type: AtmosPipeColor - uid: 8176 components: - rot: 3.141592653589793 rad @@ -65243,14 +64804,6 @@ entities: type: Transform - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 9756 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-54.5 - parent: 2 - type: Transform - - color: '#ADD8E6FF' - type: AtmosPipeColor - uid: 9757 components: - rot: 3.141592653589793 rad @@ -65605,12 +65158,16 @@ entities: pos: 4.5,-47.5 parent: 2 type: Transform + - color: '#808080FF' + type: AtmosPipeColor - uid: 9803 components: - rot: -1.5707963267948966 rad pos: 3.5,-43.5 parent: 2 type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 9804 components: - rot: 1.5707963267948966 rad @@ -65633,6 +65190,8 @@ entities: pos: 5.5,-50.5 parent: 2 type: Transform + - color: '#800080FF' + type: AtmosPipeColor - uid: 9807 components: - rot: 3.141592653589793 rad @@ -65647,19 +65206,23 @@ entities: pos: 3.5,-46.5 parent: 2 type: Transform + - color: '#800080FF' + type: AtmosPipeColor - uid: 9809 components: - rot: -1.5707963267948966 rad pos: 5.5,-46.5 parent: 2 type: Transform + - color: '#800080FF' + type: AtmosPipeColor - uid: 9810 components: - rot: 1.5707963267948966 rad pos: 4.5,-41.5 parent: 2 type: Transform - - color: '#800080FF' + - color: '#0335FCFF' type: AtmosPipeColor - uid: 9811 components: @@ -65667,7 +65230,7 @@ entities: pos: 2.5,-41.5 parent: 2 type: Transform - - color: '#800080FF' + - color: '#00008BFF' type: AtmosPipeColor - uid: 9812 components: @@ -65683,6 +65246,8 @@ entities: pos: 4.5,-43.5 parent: 2 type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 9814 components: - rot: 1.5707963267948966 rad @@ -65782,7 +65347,7 @@ entities: pos: -1.5,-49.5 parent: 2 type: Transform - - color: '#EE4B2BFF' + - color: '#CB00F5FF' type: AtmosPipeColor - uid: 9827 components: @@ -65790,7 +65355,7 @@ entities: pos: -1.5,-43.5 parent: 2 type: Transform - - color: '#EE4B2BFF' + - color: '#FF1212FF' type: AtmosPipeColor - uid: 9828 components: @@ -65798,7 +65363,7 @@ entities: pos: -0.5,-49.5 parent: 2 type: Transform - - color: '#EE4B2BFF' + - color: '#CB00F5FF' type: AtmosPipeColor - uid: 9829 components: @@ -65838,7 +65403,7 @@ entities: pos: 0.5,-49.5 parent: 2 type: Transform - - color: '#EE4B2BFF' + - color: '#CB00F5FF' type: AtmosPipeColor - uid: 9834 components: @@ -68429,7 +67994,7 @@ entities: pos: -2.5,-45.5 parent: 2 type: Transform - - color: '#0000FFFF' + - color: '#0335FCFF' type: AtmosPipeColor - uid: 10169 components: @@ -68478,38 +68043,42 @@ entities: - pos: -2.5,-35.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 10175 components: - rot: -1.5707963267948966 rad pos: -3.5,-47.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#66FF00FF' type: AtmosPipeColor - - uid: 10176 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-83.5 - parent: 2 - type: Transform - uid: 10177 components: - rot: 1.5707963267948966 rad pos: -55.5,36.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 10178 components: - rot: -1.5707963267948966 rad pos: -47.5,-6.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 10179 components: - rot: 1.5707963267948966 rad pos: -8.5,-35.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10180 @@ -68518,6 +68087,8 @@ entities: pos: -5.5,-35.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10181 @@ -68526,6 +68097,8 @@ entities: pos: -8.5,-34.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10182 @@ -68533,12 +68106,16 @@ entities: - pos: -3.5,-35.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 10183 components: - rot: -1.5707963267948966 rad pos: -5.5,-34.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10184 @@ -68547,18 +68124,24 @@ entities: pos: 19.5,18.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 10185 components: - rot: 3.141592653589793 rad pos: -55.5,33.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 10186 components: - rot: 1.5707963267948966 rad pos: -18.5,13.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10187 @@ -68567,6 +68150,8 @@ entities: pos: -3.5,-48.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#66FF00FF' type: AtmosPipeColor - uid: 10188 @@ -68574,6 +68159,8 @@ entities: - pos: -4.5,-42.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#66FF00FF' type: AtmosPipeColor - uid: 10189 @@ -68581,54 +68168,80 @@ entities: - pos: -5.5,-42.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice + - color: '#66FF00FF' + type: AtmosPipeColor - uid: 10190 components: - rot: -1.5707963267948966 rad pos: -3.5,-49.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#66FF00FF' type: AtmosPipeColor - proto: GasPressurePump entities: - uid: 10191 components: + - name: air output pump + type: MetaData - rot: -1.5707963267948966 rad pos: 1.5,-39.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#00008BFF' type: AtmosPipeColor - uid: 10192 components: + - name: plasma pump + type: MetaData - rot: -1.5707963267948966 rad pos: 1.5,-49.5 parent: 2 type: Transform - - color: '#EE4B2BFF' + - joinedGrid: 2 + type: AtmosDevice + - color: '#CB00F5FF' type: AtmosPipeColor - uid: 10193 components: + - name: oxygen input pump + type: MetaData - rot: 1.5707963267948966 rad pos: 1.5,-44.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#800080FF' type: AtmosPipeColor - uid: 10194 components: + - name: plasma input pump + type: MetaData - rot: 1.5707963267948966 rad pos: 1.5,-48.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#800080FF' type: AtmosPipeColor - uid: 10195 components: + - name: waste input pump + type: MetaData - rot: 1.5707963267948966 rad pos: 1.5,-50.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#800080FF' type: AtmosPipeColor - uid: 10196 @@ -68637,25 +68250,35 @@ entities: pos: -48.5,-6.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#34EB43FF' type: AtmosPipeColor - uid: 10197 components: + - name: waste pump + type: MetaData - pos: -7.5,-37.5 parent: 2 type: Transform - targetPressure: 4500 type: GasPressurePump + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10198 components: + - name: distribution pump + type: MetaData - rot: 3.141592653589793 rad pos: -6.5,-37.5 parent: 2 type: Transform - targetPressure: 200 type: GasPressurePump + - joinedGrid: 2 + type: AtmosDevice - color: '#00008BFF' type: AtmosPipeColor - uid: 10199 @@ -68668,14 +68291,20 @@ entities: type: Transform - targetPressure: 80 type: GasPressurePump + - joinedGrid: 2 + type: AtmosDevice - color: '#00FFFFFF' type: AtmosPipeColor - uid: 10200 components: + - name: oxygen pump + type: MetaData - rot: -1.5707963267948966 rad pos: 1.5,-45.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0000FFFF' type: AtmosPipeColor - uid: 10201 @@ -68684,69 +68313,103 @@ entities: pos: -53.5,36.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10202 components: + - name: nitrogen pump + type: MetaData - rot: -1.5707963267948966 rad pos: 1.5,-43.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#EE4B2BFF' type: AtmosPipeColor - uid: 10203 components: + - name: CO2 pump + type: MetaData - rot: -1.5707963267948966 rad pos: 1.5,-47.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#808080FF' type: AtmosPipeColor - uid: 10204 components: + - name: CO2 input pump + type: MetaData - rot: 1.5707963267948966 rad pos: 1.5,-46.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#800080FF' type: AtmosPipeColor - uid: 10205 components: + - name: burn chamber input pump + type: MetaData - pos: -6.5,-45.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#66FF00FF' type: AtmosPipeColor - uid: 10206 components: + - name: burn chamber output pump + type: MetaData - rot: 3.141592653589793 rad pos: -8.5,-45.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#66FF00FF' type: AtmosPipeColor - uid: 10207 components: + - name: air input pump + type: MetaData - rot: 1.5707963267948966 rad pos: 1.5,-41.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#00008BFF' type: AtmosPipeColor - uid: 10208 components: + - name: nitrogen input pump + type: MetaData - rot: 1.5707963267948966 rad pos: 1.5,-42.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#800080FF' type: AtmosPipeColor - uid: 10209 components: + - name: waste output pump + type: MetaData - rot: -1.5707963267948966 rad pos: 1.5,-51.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#800080FF' type: AtmosPipeColor - proto: GasRecycler @@ -68756,6 +68419,8 @@ entities: - pos: 2.5,-35.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: GasRecyclerMachineCircuitboard entities: - uid: 10211 @@ -68773,12 +68438,15 @@ entities: type: Transform - color: '#00FFFFFF' type: AtmosPipeColor + - joinedGrid: 2 + type: AtmosDevice - uid: 10213 components: - - rot: -1.5707963267948966 rad - pos: -8.5,-42.5 + - pos: -8.5,-42.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: GasThermoMachineFreezerEnabled entities: - uid: 10214 @@ -68789,14 +68457,17 @@ entities: type: Transform - color: '#00AABBFF' type: AtmosPipeColor + - joinedGrid: 2 + type: AtmosDevice - proto: GasThermoMachineHeater entities: - uid: 10215 components: - - rot: -1.5707963267948966 rad - pos: -8.5,-43.5 + - pos: -7.5,-42.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: GasValve entities: - uid: 10216 @@ -68807,6 +68478,8 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 2 + type: AtmosDevice - color: '#66FF00FF' type: AtmosPipeColor - uid: 10217 @@ -68817,25 +68490,35 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 2 + type: AtmosDevice - color: '#66FF00FF' type: AtmosPipeColor - uid: 10218 components: + - name: oxygen burn chamber valve + type: MetaData - pos: -2.5,-46.5 parent: 2 type: Transform - open: False type: GasValve + - joinedGrid: 2 + type: AtmosDevice - color: '#0000FFFF' type: AtmosPipeColor - uid: 10219 components: + - name: waste space valve + type: MetaData - rot: 1.5707963267948966 rad pos: 1.5,-40.5 parent: 2 type: Transform - open: False type: GasValve + - joinedGrid: 2 + type: AtmosDevice - color: '#800080FF' type: AtmosPipeColor - uid: 10220 @@ -68846,6 +68529,8 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 2 + type: AtmosDevice - uid: 10221 components: - rot: 1.5707963267948966 rad @@ -68854,12 +68539,16 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 2 + type: AtmosDevice - uid: 10222 components: - rot: 3.141592653589793 rad pos: -4.5,-51.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#66FF00FF' type: AtmosPipeColor - proto: GasVentPump @@ -68870,6 +68559,8 @@ entities: pos: 6.5,-10.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10224 @@ -68878,6 +68569,8 @@ entities: pos: 11.5,-16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10225 @@ -68886,9 +68579,8 @@ entities: pos: 10.5,24.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 33 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10226 @@ -68896,10 +68588,8 @@ entities: - pos: 39.5,1.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 30 - - 5 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10227 @@ -68907,6 +68597,8 @@ entities: - pos: 9.5,-36.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10228 @@ -68915,6 +68607,8 @@ entities: pos: 16.5,-32.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10229 @@ -68923,6 +68617,8 @@ entities: pos: 21.5,-22.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10230 @@ -68931,6 +68627,8 @@ entities: pos: 7.5,-15.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10231 @@ -68939,6 +68637,8 @@ entities: pos: 18.5,-21.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10232 @@ -68947,6 +68647,8 @@ entities: pos: 23.5,4.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10233 @@ -68954,9 +68656,8 @@ entities: - pos: 16.5,-24.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 11 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10234 @@ -68965,6 +68666,8 @@ entities: pos: 32.5,20.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10235 @@ -68972,6 +68675,8 @@ entities: - pos: 18.5,18.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10236 @@ -68980,6 +68685,8 @@ entities: pos: -28.5,-21.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10237 @@ -68988,6 +68695,8 @@ entities: pos: -0.5,38.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10238 @@ -68996,9 +68705,8 @@ entities: pos: 23.5,16.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 12 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10239 @@ -69007,9 +68715,8 @@ entities: pos: -15.5,-3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 22 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10240 @@ -69017,6 +68724,8 @@ entities: - pos: -46.5,39.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10241 @@ -69024,9 +68733,8 @@ entities: - pos: 5.5,-23.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 48 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10242 @@ -69035,15 +68743,16 @@ entities: pos: -54.5,-0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 18 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - uid: 10243 components: - rot: -1.5707963267948966 rad pos: -18.5,27.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10244 @@ -69052,6 +68761,8 @@ entities: pos: -26.5,-75.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10245 @@ -69060,9 +68771,8 @@ entities: pos: -3.5,-33.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 47 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10246 @@ -69070,6 +68780,8 @@ entities: - pos: -10.5,-27.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10247 @@ -69078,9 +68790,8 @@ entities: pos: 33.5,-15.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 34 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10248 @@ -69089,6 +68800,8 @@ entities: pos: 32.5,-4.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10249 @@ -69097,6 +68810,8 @@ entities: pos: 32.5,-8.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10250 @@ -69105,6 +68820,8 @@ entities: pos: -10.5,-32.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10251 @@ -69113,9 +68830,8 @@ entities: pos: -5.5,-29.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 47 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10252 @@ -69124,6 +68840,8 @@ entities: pos: -4.5,-25.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10253 @@ -69132,6 +68850,8 @@ entities: pos: -8.5,-24.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10254 @@ -69139,6 +68859,8 @@ entities: - pos: 26.5,2.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10255 @@ -69146,6 +68868,8 @@ entities: - pos: 26.5,-7.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10256 @@ -69154,6 +68878,8 @@ entities: pos: 30.5,-14.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10257 @@ -69161,9 +68887,8 @@ entities: - pos: 31.5,-18.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 34 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10258 @@ -69172,9 +68897,8 @@ entities: pos: 40.5,-15.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 34 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10259 @@ -69183,6 +68907,8 @@ entities: pos: 40.5,-13.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10260 @@ -69190,6 +68916,8 @@ entities: - pos: -7.5,-16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10261 @@ -69197,6 +68925,8 @@ entities: - pos: -3.5,-16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10262 @@ -69204,6 +68934,8 @@ entities: - pos: 35.5,1.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10263 @@ -69212,6 +68944,8 @@ entities: pos: 1.5,-20.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10264 @@ -69220,6 +68954,8 @@ entities: pos: 10.5,-29.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10265 @@ -69228,6 +68964,8 @@ entities: pos: 21.5,-12.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10266 @@ -69236,6 +68974,8 @@ entities: pos: 35.5,3.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10267 @@ -69244,6 +68984,8 @@ entities: pos: 35.5,12.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10268 @@ -69252,6 +68994,8 @@ entities: pos: 44.5,9.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10269 @@ -69260,6 +69004,8 @@ entities: pos: 39.5,3.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10270 @@ -69268,6 +69014,8 @@ entities: pos: -30.5,41.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10271 @@ -69275,6 +69023,8 @@ entities: - pos: 21.5,-8.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10272 @@ -69282,6 +69032,8 @@ entities: - pos: 18.5,-6.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10273 @@ -69290,6 +69042,8 @@ entities: pos: 17.5,0.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10274 @@ -69298,9 +69052,8 @@ entities: pos: -47.5,-9.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 17 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10275 @@ -69309,6 +69062,8 @@ entities: pos: 7.5,14.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10276 @@ -69316,6 +69071,8 @@ entities: - pos: 8.5,-2.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10277 @@ -69324,6 +69081,8 @@ entities: pos: 26.5,-20.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10278 @@ -69332,6 +69091,8 @@ entities: pos: 25.5,18.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10279 @@ -69340,9 +69101,8 @@ entities: pos: 21.5,21.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 12 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10280 @@ -69351,9 +69111,8 @@ entities: pos: 26.5,13.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 12 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10281 @@ -69362,6 +69121,8 @@ entities: pos: 8.5,-7.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10282 @@ -69370,6 +69131,8 @@ entities: pos: 15.5,12.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10283 @@ -69378,6 +69141,8 @@ entities: pos: 10.5,4.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10284 @@ -69386,9 +69151,8 @@ entities: pos: -13.5,0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 22 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10285 @@ -69397,9 +69161,8 @@ entities: pos: 8.5,0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 35 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10286 @@ -69408,6 +69171,8 @@ entities: pos: 23.5,7.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10287 @@ -69416,9 +69181,8 @@ entities: pos: 9.5,19.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 33 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10288 @@ -69427,9 +69191,8 @@ entities: pos: 16.5,24.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 33 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10289 @@ -69438,6 +69201,8 @@ entities: pos: 2.5,-3.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10290 @@ -69446,6 +69211,8 @@ entities: pos: 7.5,7.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10291 @@ -69454,6 +69221,8 @@ entities: pos: -5.5,4.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10292 @@ -69462,6 +69231,8 @@ entities: pos: -6.5,11.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10293 @@ -69470,6 +69241,8 @@ entities: pos: -0.5,7.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10294 @@ -69478,6 +69251,8 @@ entities: pos: -25.5,-3.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10295 @@ -69485,6 +69260,8 @@ entities: - pos: -7.5,15.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10296 @@ -69493,6 +69270,8 @@ entities: pos: -12.5,11.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#00AABBFF' type: AtmosPipeColor - uid: 10297 @@ -69501,9 +69280,8 @@ entities: pos: -23.5,0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 16 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10298 @@ -69511,9 +69289,8 @@ entities: - pos: -42.5,29.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10299 @@ -69522,9 +69299,8 @@ entities: pos: -23.5,6.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 16 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10300 @@ -69532,9 +69308,8 @@ entities: - pos: -24.5,15.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 16 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10301 @@ -69543,9 +69318,8 @@ entities: pos: -27.5,-10.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 27 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10302 @@ -69554,6 +69328,8 @@ entities: pos: -42.5,-6.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10303 @@ -69561,6 +69337,8 @@ entities: - pos: -37.5,-5.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10304 @@ -69569,6 +69347,8 @@ entities: pos: -39.5,-1.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10305 @@ -69577,9 +69357,8 @@ entities: pos: -56.5,-17.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 44 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#34EB43FF' type: AtmosPipeColor - uid: 10306 @@ -69588,9 +69367,8 @@ entities: pos: -59.5,-16.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 44 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#34EB43FF' type: AtmosPipeColor - uid: 10307 @@ -69599,9 +69377,8 @@ entities: pos: -49.5,-13.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 44 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#34EB43FF' type: AtmosPipeColor - uid: 10308 @@ -69610,9 +69387,8 @@ entities: pos: -54.5,-11.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 44 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#34EB43FF' type: AtmosPipeColor - uid: 10309 @@ -69621,9 +69397,8 @@ entities: pos: -58.5,-8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 6 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#34EB43FF' type: AtmosPipeColor - uid: 10310 @@ -69632,9 +69407,8 @@ entities: pos: -57.5,-0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 18 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#34EB43FF' type: AtmosPipeColor - uid: 10311 @@ -69643,9 +69417,8 @@ entities: pos: -52.5,-2.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 18 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#34EB43FF' type: AtmosPipeColor - uid: 10312 @@ -69654,9 +69427,8 @@ entities: pos: -59.5,-12.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 44 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#34EB43FF' type: AtmosPipeColor - uid: 10313 @@ -69665,9 +69437,8 @@ entities: pos: -53.5,-17.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 44 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#34EB43FF' type: AtmosPipeColor - uid: 10314 @@ -69676,9 +69447,8 @@ entities: pos: -50.5,-17.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 44 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#34EB43FF' type: AtmosPipeColor - uid: 10315 @@ -69687,6 +69457,8 @@ entities: pos: -54.5,-6.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#34EB43FF' type: AtmosPipeColor - uid: 10316 @@ -69695,6 +69467,8 @@ entities: pos: -31.5,2.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10317 @@ -69703,6 +69477,8 @@ entities: pos: -14.5,-13.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10318 @@ -69710,6 +69486,8 @@ entities: - pos: -20.5,-23.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10319 @@ -69718,6 +69496,8 @@ entities: pos: -18.5,-17.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10320 @@ -69726,6 +69506,8 @@ entities: pos: -30.5,25.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10321 @@ -69733,6 +69515,8 @@ entities: - pos: -28.5,9.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10322 @@ -69740,6 +69524,8 @@ entities: - pos: -44.5,29.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10323 @@ -69748,6 +69534,8 @@ entities: pos: -27.5,2.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10324 @@ -69756,6 +69544,8 @@ entities: pos: -36.5,2.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10325 @@ -69763,6 +69553,8 @@ entities: - pos: -20.5,-74.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10326 @@ -69771,6 +69563,8 @@ entities: pos: -43.5,6.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10327 @@ -69779,6 +69573,8 @@ entities: pos: -32.5,6.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10328 @@ -69786,6 +69582,8 @@ entities: - pos: -52.5,37.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10329 @@ -69793,6 +69591,8 @@ entities: - pos: -19.5,23.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10330 @@ -69801,6 +69601,8 @@ entities: pos: -22.5,29.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10331 @@ -69808,6 +69610,8 @@ entities: - pos: -22.5,40.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10332 @@ -69816,6 +69620,8 @@ entities: pos: -16.5,33.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10333 @@ -69824,9 +69630,8 @@ entities: pos: -11.5,35.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 36 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10334 @@ -69834,6 +69639,8 @@ entities: - pos: -11.5,43.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10335 @@ -69842,9 +69649,8 @@ entities: pos: -1.5,33.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 13 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10336 @@ -69853,6 +69659,8 @@ entities: pos: 2.5,26.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10337 @@ -69861,9 +69669,8 @@ entities: pos: -2.5,26.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 40 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10338 @@ -69872,6 +69679,8 @@ entities: pos: -36.5,32.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10339 @@ -69879,10 +69688,8 @@ entities: - pos: -41.5,34.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 23 - - 19 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10340 @@ -69891,6 +69698,8 @@ entities: pos: -12.5,22.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10341 @@ -69899,6 +69708,8 @@ entities: pos: -7.5,7.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10342 @@ -69907,6 +69718,8 @@ entities: pos: -19.5,9.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10343 @@ -69915,6 +69728,8 @@ entities: pos: -17.5,9.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10344 @@ -69923,6 +69738,8 @@ entities: pos: -14.5,4.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10345 @@ -69931,9 +69748,8 @@ entities: pos: -49.5,9.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 25 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10346 @@ -69942,9 +69758,8 @@ entities: pos: -27.5,14.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 5 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10347 @@ -69952,6 +69767,8 @@ entities: - pos: -42.5,16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10348 @@ -69960,9 +69777,8 @@ entities: pos: -30.5,10.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 5 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10349 @@ -69971,9 +69787,8 @@ entities: pos: -36.5,13.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 5 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10350 @@ -69981,6 +69796,8 @@ entities: - pos: -19.5,30.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10351 @@ -69989,6 +69806,8 @@ entities: pos: -48.5,47.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10352 @@ -69997,6 +69816,8 @@ entities: pos: -43.5,50.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10353 @@ -70005,6 +69826,8 @@ entities: pos: -41.5,47.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10354 @@ -70013,6 +69836,8 @@ entities: pos: -44.5,42.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10355 @@ -70021,6 +69846,8 @@ entities: pos: -34.5,-17.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10356 @@ -70029,6 +69856,8 @@ entities: pos: -22.5,-28.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10357 @@ -70037,6 +69866,8 @@ entities: pos: -28.5,-24.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10358 @@ -70045,6 +69876,8 @@ entities: pos: -40.5,-17.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10359 @@ -70053,6 +69886,8 @@ entities: pos: -36.5,23.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10360 @@ -70061,6 +69896,8 @@ entities: pos: -42.5,-11.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10361 @@ -70068,6 +69905,8 @@ entities: - pos: -38.5,-8.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10362 @@ -70076,6 +69915,8 @@ entities: pos: -25.5,-7.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10363 @@ -70084,6 +69925,8 @@ entities: pos: 25.5,5.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10364 @@ -70091,6 +69934,8 @@ entities: - pos: 27.5,8.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10365 @@ -70099,9 +69944,8 @@ entities: pos: -31.5,-14.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 27 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10366 @@ -70110,9 +69954,8 @@ entities: pos: -9.5,-8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 49 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10367 @@ -70121,6 +69964,8 @@ entities: pos: -42.5,-14.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10368 @@ -70129,9 +69974,8 @@ entities: pos: 12.5,23.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 33 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10369 @@ -70139,6 +69983,8 @@ entities: - pos: -20.5,34.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10370 @@ -70147,6 +69993,8 @@ entities: pos: -4.5,31.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10371 @@ -70155,9 +70003,8 @@ entities: pos: -13.5,-5.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 49 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10372 @@ -70166,9 +70013,8 @@ entities: pos: -12.5,-7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 49 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10373 @@ -70177,6 +70023,8 @@ entities: pos: -36.5,-11.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10374 @@ -70184,6 +70032,8 @@ entities: - pos: -34.5,10.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10375 @@ -70191,9 +70041,8 @@ entities: - pos: -30.5,19.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 5 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10376 @@ -70201,9 +70050,8 @@ entities: - pos: -33.5,19.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 5 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10377 @@ -70212,9 +70060,8 @@ entities: pos: -29.5,-5.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 27 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10378 @@ -70223,6 +70070,8 @@ entities: pos: -48.5,-4.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10379 @@ -70230,6 +70079,8 @@ entities: - pos: -46.5,-0.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10380 @@ -70237,9 +70088,8 @@ entities: - pos: -45.5,16.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 25 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10381 @@ -70248,6 +70098,8 @@ entities: pos: -45.5,-13.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10382 @@ -70256,9 +70108,8 @@ entities: pos: -2.5,16.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 40 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10383 @@ -70267,6 +70118,8 @@ entities: pos: -13.5,-39.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10384 @@ -70275,6 +70128,8 @@ entities: pos: -17.5,-44.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10385 @@ -70282,6 +70137,8 @@ entities: - pos: -0.5,-5.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10386 @@ -70289,9 +70146,8 @@ entities: - pos: -36.5,17.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 5 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10387 @@ -70300,6 +70156,8 @@ entities: pos: -47.5,37.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10388 @@ -70307,6 +70165,8 @@ entities: - pos: -14.5,-16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10389 @@ -70315,6 +70175,8 @@ entities: pos: 5.5,3.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10390 @@ -70323,6 +70185,8 @@ entities: pos: -16.5,22.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10391 @@ -70331,6 +70195,8 @@ entities: pos: -21.5,-12.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10392 @@ -70339,9 +70205,8 @@ entities: pos: 24.5,26.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 12 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10393 @@ -70350,6 +70215,8 @@ entities: pos: 13.5,30.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10394 @@ -70357,6 +70224,8 @@ entities: - pos: -43.5,-17.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10395 @@ -70365,6 +70234,8 @@ entities: pos: 10.5,-5.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10396 @@ -70373,6 +70244,8 @@ entities: pos: 10.5,-9.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10397 @@ -70381,6 +70254,8 @@ entities: pos: -16.5,-81.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10398 @@ -70389,6 +70264,8 @@ entities: pos: -17.5,-72.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10399 @@ -70396,9 +70273,8 @@ entities: - pos: -17.5,-74.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 50 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10400 @@ -70406,6 +70282,8 @@ entities: - pos: -11.5,-74.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10401 @@ -70414,6 +70292,8 @@ entities: pos: -13.5,-24.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10402 @@ -70422,6 +70302,8 @@ entities: pos: -0.5,10.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10403 @@ -70430,9 +70312,8 @@ entities: pos: 10.5,-21.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 21 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10404 @@ -70441,6 +70322,8 @@ entities: pos: 10.5,13.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10405 @@ -70449,6 +70332,8 @@ entities: pos: 32.5,16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10406 @@ -70457,6 +70342,8 @@ entities: pos: 5.5,-39.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10407 @@ -70464,6 +70351,8 @@ entities: - pos: -1.5,-37.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#00008BFF' type: AtmosPipeColor - uid: 10408 @@ -70471,6 +70360,8 @@ entities: - pos: -5.5,-37.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#00008BFF' type: AtmosPipeColor - proto: GasVentScrubber @@ -70481,6 +70372,8 @@ entities: pos: -35.5,41.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10410 @@ -70489,6 +70382,8 @@ entities: pos: 15.5,-32.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10411 @@ -70497,6 +70392,8 @@ entities: pos: 19.5,-27.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10412 @@ -70505,6 +70402,8 @@ entities: pos: 6.5,-37.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10413 @@ -70513,9 +70412,8 @@ entities: pos: -2.5,-27.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 48 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10414 @@ -70524,6 +70422,8 @@ entities: pos: 5.5,-16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10415 @@ -70532,6 +70432,8 @@ entities: pos: -17.5,-23.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10416 @@ -70540,6 +70442,8 @@ entities: pos: 10.5,-22.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10417 @@ -70548,6 +70452,8 @@ entities: pos: -47.5,-15.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10418 @@ -70556,9 +70462,8 @@ entities: pos: 13.5,20.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 33 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10419 @@ -70567,6 +70472,8 @@ entities: pos: 4.5,-6.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10420 @@ -70574,6 +70481,8 @@ entities: - pos: -3.5,-18.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10421 @@ -70582,6 +70491,8 @@ entities: pos: -0.5,11.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10422 @@ -70590,9 +70501,8 @@ entities: pos: -17.5,-2.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 22 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10423 @@ -70600,6 +70510,8 @@ entities: - pos: -33.5,6.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10424 @@ -70607,6 +70519,8 @@ entities: - pos: -40.5,42.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10425 @@ -70615,6 +70529,8 @@ entities: pos: -32.5,36.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10426 @@ -70623,9 +70539,8 @@ entities: pos: -59.5,-7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 6 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10427 @@ -70633,9 +70548,8 @@ entities: - pos: -55.5,0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 18 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10428 @@ -70644,9 +70558,8 @@ entities: pos: -34.5,14.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 5 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10429 @@ -70655,6 +70568,8 @@ entities: pos: -17.5,-12.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10430 @@ -70662,6 +70577,8 @@ entities: - pos: -7.5,-17.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10431 @@ -70670,9 +70587,8 @@ entities: pos: 29.5,-20.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 34 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10432 @@ -70681,6 +70597,8 @@ entities: pos: 31.5,-4.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10433 @@ -70689,6 +70607,8 @@ entities: pos: 29.5,-10.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10434 @@ -70696,6 +70616,8 @@ entities: - pos: -11.5,-29.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10435 @@ -70704,9 +70626,8 @@ entities: pos: 39.5,-20.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 34 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10436 @@ -70715,6 +70636,8 @@ entities: pos: -10.5,-34.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10437 @@ -70723,6 +70646,8 @@ entities: pos: -12.5,-37.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10438 @@ -70731,6 +70656,8 @@ entities: pos: 39.5,-11.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10439 @@ -70739,6 +70666,8 @@ entities: pos: 39.5,-1.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10440 @@ -70747,9 +70676,8 @@ entities: pos: -8.5,-26.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 47 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10441 @@ -70758,9 +70686,8 @@ entities: pos: -8.5,-31.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 47 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10442 @@ -70768,6 +70695,8 @@ entities: - pos: 26.5,9.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10443 @@ -70776,6 +70705,8 @@ entities: pos: 26.5,5.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10444 @@ -70784,6 +70715,8 @@ entities: pos: 25.5,-10.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10445 @@ -70792,6 +70725,8 @@ entities: pos: -8.5,-22.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10446 @@ -70799,6 +70734,8 @@ entities: - pos: 20.5,0.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10447 @@ -70807,9 +70744,8 @@ entities: pos: 34.5,-16.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 34 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10448 @@ -70817,6 +70753,8 @@ entities: - pos: 32.5,0.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10449 @@ -70824,6 +70762,8 @@ entities: - pos: 27.5,-15.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10450 @@ -70832,6 +70772,8 @@ entities: pos: -0.5,-22.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10451 @@ -70840,6 +70782,8 @@ entities: pos: 14.5,-21.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10452 @@ -70848,6 +70792,8 @@ entities: pos: 32.5,3.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10453 @@ -70855,6 +70801,8 @@ entities: - pos: 33.5,12.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10454 @@ -70863,6 +70811,8 @@ entities: pos: 18.5,-17.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10455 @@ -70870,6 +70820,8 @@ entities: - pos: 21.5,-13.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10456 @@ -70878,6 +70830,8 @@ entities: pos: 44.5,11.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10457 @@ -70885,6 +70839,8 @@ entities: - pos: 40.5,12.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10458 @@ -70892,6 +70848,8 @@ entities: - pos: 32.5,23.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10459 @@ -70900,6 +70858,8 @@ entities: pos: 20.5,-4.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10460 @@ -70908,6 +70868,8 @@ entities: pos: 20.5,28.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10461 @@ -70916,9 +70878,8 @@ entities: pos: 28.5,21.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 39 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10462 @@ -70927,6 +70888,8 @@ entities: pos: 6.5,15.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10463 @@ -70935,6 +70898,8 @@ entities: pos: 14.5,-13.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10464 @@ -70943,6 +70908,8 @@ entities: pos: 14.5,-9.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10465 @@ -70950,6 +70917,8 @@ entities: - pos: 7.5,-2.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10466 @@ -70958,9 +70927,8 @@ entities: pos: 16.5,25.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 33 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10467 @@ -70969,9 +70937,8 @@ entities: pos: 9.5,25.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 33 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10468 @@ -70979,9 +70946,8 @@ entities: - pos: 21.5,24.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 12 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10469 @@ -70990,9 +70956,8 @@ entities: pos: 26.5,12.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 12 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10470 @@ -71000,6 +70965,8 @@ entities: - pos: 13.5,-5.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10471 @@ -71007,6 +70974,8 @@ entities: - pos: 6.5,-11.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10472 @@ -71015,6 +70984,8 @@ entities: pos: 26.5,-19.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10473 @@ -71023,9 +70994,8 @@ entities: pos: 22.5,14.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 12 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10474 @@ -71034,6 +71004,8 @@ entities: pos: 16.5,12.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10475 @@ -71042,6 +71014,8 @@ entities: pos: 7.5,11.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10476 @@ -71049,6 +71023,8 @@ entities: - pos: 13.5,5.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10477 @@ -71057,9 +71033,8 @@ entities: pos: 14.5,0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 35 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10478 @@ -71068,9 +71043,8 @@ entities: pos: 11.5,0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 35 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10479 @@ -71078,6 +71052,8 @@ entities: - pos: 0.5,0.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10480 @@ -71086,9 +71062,8 @@ entities: pos: -7.5,-12.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 45 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10481 @@ -71097,6 +71072,8 @@ entities: pos: -1.5,-5.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10482 @@ -71104,6 +71081,8 @@ entities: - pos: 0.5,7.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10483 @@ -71112,9 +71091,8 @@ entities: pos: 9.5,21.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 33 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10484 @@ -71122,6 +71100,8 @@ entities: - pos: 20.5,7.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10485 @@ -71129,6 +71109,8 @@ entities: - pos: -5.5,0.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10486 @@ -71137,6 +71119,8 @@ entities: pos: -23.5,-4.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10487 @@ -71145,6 +71129,8 @@ entities: pos: -21.5,-8.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10488 @@ -71153,6 +71139,8 @@ entities: pos: -9.5,4.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10489 @@ -71161,6 +71149,8 @@ entities: pos: -13.5,4.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10490 @@ -71168,6 +71158,8 @@ entities: - pos: -14.5,11.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10491 @@ -71176,6 +71168,8 @@ entities: pos: -19.5,5.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10492 @@ -71184,6 +71178,8 @@ entities: pos: -20.5,10.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10493 @@ -71191,9 +71187,8 @@ entities: - pos: -14.5,0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 22 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10494 @@ -71202,6 +71197,8 @@ entities: pos: -28.5,-0.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10495 @@ -71209,9 +71206,8 @@ entities: - pos: -22.5,0.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 16 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10496 @@ -71220,9 +71216,8 @@ entities: pos: -24.5,16.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 16 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10497 @@ -71231,9 +71226,8 @@ entities: pos: -7.5,-8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 49 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10498 @@ -71242,9 +71236,8 @@ entities: pos: -7.5,-3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 49 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10499 @@ -71253,9 +71246,8 @@ entities: pos: -12.5,-8.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 49 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10500 @@ -71264,9 +71256,8 @@ entities: pos: -12.5,-4.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 49 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10501 @@ -71275,6 +71266,8 @@ entities: pos: -22.5,-14.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10502 @@ -71283,9 +71276,8 @@ entities: pos: -27.5,-14.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 27 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10503 @@ -71294,6 +71286,8 @@ entities: pos: -37.5,-14.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10504 @@ -71302,9 +71296,8 @@ entities: pos: -30.5,-14.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 27 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10505 @@ -71312,9 +71305,8 @@ entities: - pos: -32.5,-7.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 27 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10506 @@ -71322,6 +71314,8 @@ entities: - pos: -36.5,-5.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10507 @@ -71330,6 +71324,8 @@ entities: pos: -41.5,-5.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10508 @@ -71337,6 +71333,8 @@ entities: - pos: -42.5,-0.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10509 @@ -71345,6 +71343,8 @@ entities: pos: -42.5,-15.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10510 @@ -71353,6 +71353,8 @@ entities: pos: -42.5,-12.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10511 @@ -71361,6 +71363,8 @@ entities: pos: -39.5,-17.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10512 @@ -71369,6 +71373,8 @@ entities: pos: -35.5,-17.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10513 @@ -71377,9 +71383,8 @@ entities: pos: -49.5,-16.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 44 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10514 @@ -71388,9 +71393,8 @@ entities: pos: -58.5,-16.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 44 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10515 @@ -71398,9 +71402,8 @@ entities: - pos: -58.5,-12.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 44 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10516 @@ -71409,9 +71412,8 @@ entities: pos: -55.5,-16.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 44 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10517 @@ -71419,9 +71421,8 @@ entities: - pos: -52.5,-12.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 44 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10518 @@ -71429,6 +71430,8 @@ entities: - pos: -47.5,-3.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10519 @@ -71436,9 +71439,8 @@ entities: - pos: -52.5,-3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 18 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10520 @@ -71447,9 +71449,8 @@ entities: pos: -52.5,-16.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 44 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10521 @@ -71458,9 +71459,8 @@ entities: pos: -48.5,-9.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 17 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10522 @@ -71469,6 +71469,8 @@ entities: pos: -37.5,-22.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10523 @@ -71477,6 +71479,8 @@ entities: pos: -36.5,-20.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10524 @@ -71485,6 +71489,8 @@ entities: pos: -21.5,-23.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10525 @@ -71493,6 +71499,8 @@ entities: pos: -21.5,-19.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10526 @@ -71501,6 +71509,8 @@ entities: pos: 20.5,4.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10527 @@ -71508,9 +71518,8 @@ entities: - pos: -28.5,-6.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 27 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10528 @@ -71519,6 +71528,8 @@ entities: pos: -28.5,25.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10529 @@ -71527,9 +71538,8 @@ entities: pos: -24.5,6.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 16 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10530 @@ -71538,9 +71548,8 @@ entities: pos: -35.5,26.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 9 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10531 @@ -71549,6 +71558,8 @@ entities: pos: -48.5,40.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10532 @@ -71557,6 +71568,8 @@ entities: pos: -45.5,27.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10533 @@ -71565,6 +71578,8 @@ entities: pos: -28.5,2.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10534 @@ -71572,6 +71587,8 @@ entities: - pos: -42.5,6.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10535 @@ -71579,6 +71596,8 @@ entities: - pos: -35.5,32.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10536 @@ -71587,6 +71606,8 @@ entities: pos: -31.5,1.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10537 @@ -71594,9 +71615,8 @@ entities: - pos: -49.5,34.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 19 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10538 @@ -71605,6 +71625,8 @@ entities: pos: -35.5,37.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10539 @@ -71613,9 +71635,8 @@ entities: pos: 0.5,33.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 13 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10540 @@ -71623,6 +71644,8 @@ entities: - pos: -16.5,18.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10541 @@ -71631,6 +71654,8 @@ entities: pos: -21.5,20.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10542 @@ -71638,6 +71663,8 @@ entities: - pos: -24.5,40.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10543 @@ -71645,6 +71672,8 @@ entities: - pos: -26.5,35.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10544 @@ -71652,6 +71681,8 @@ entities: - pos: -15.5,35.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10545 @@ -71659,6 +71690,8 @@ entities: - pos: -19.5,35.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10546 @@ -71667,9 +71700,8 @@ entities: pos: -8.5,34.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 36 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10547 @@ -71677,6 +71709,8 @@ entities: - pos: -8.5,43.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10548 @@ -71684,6 +71718,8 @@ entities: - pos: 0.5,39.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10549 @@ -71691,6 +71727,8 @@ entities: - pos: 3.5,26.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10550 @@ -71698,10 +71736,8 @@ entities: - pos: -40.5,33.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 23 - - 19 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10551 @@ -71709,9 +71745,8 @@ entities: - pos: -7.5,22.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 40 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10552 @@ -71720,6 +71755,8 @@ entities: pos: -13.5,21.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10553 @@ -71728,6 +71765,8 @@ entities: pos: -7.5,16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10554 @@ -71735,6 +71774,8 @@ entities: - pos: -9.5,9.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10555 @@ -71743,6 +71784,8 @@ entities: pos: -46.5,2.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10556 @@ -71750,9 +71793,8 @@ entities: - pos: -46.5,13.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 25 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10557 @@ -71761,6 +71803,8 @@ entities: pos: -41.5,16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10558 @@ -71768,9 +71812,8 @@ entities: - pos: -37.5,18.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 5 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10559 @@ -71779,6 +71822,8 @@ entities: pos: -36.5,22.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10560 @@ -71786,9 +71831,8 @@ entities: - pos: -34.5,19.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 5 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10561 @@ -71796,9 +71840,8 @@ entities: - pos: -31.5,19.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 5 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10562 @@ -71807,6 +71850,8 @@ entities: pos: -37.5,10.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10563 @@ -71815,6 +71860,8 @@ entities: pos: -28.5,11.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10564 @@ -71823,6 +71870,8 @@ entities: pos: -26.5,20.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10565 @@ -71831,6 +71880,8 @@ entities: pos: -22.5,26.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10566 @@ -71839,6 +71890,8 @@ entities: pos: -50.5,46.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10567 @@ -71847,9 +71900,8 @@ entities: pos: -31.5,10.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 5 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10568 @@ -71858,6 +71910,8 @@ entities: pos: -39.5,-9.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10569 @@ -71866,6 +71920,8 @@ entities: pos: -19.5,-33.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10570 @@ -71874,6 +71930,8 @@ entities: pos: -4.5,29.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10571 @@ -71882,6 +71940,8 @@ entities: pos: -8.5,29.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10572 @@ -71889,6 +71949,8 @@ entities: - pos: 17.5,18.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10573 @@ -71896,6 +71958,8 @@ entities: - pos: -12.5,-17.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#ADD8E6FF' type: AtmosPipeColor - uid: 10574 @@ -71904,6 +71968,8 @@ entities: pos: -52.5,-9.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10575 @@ -71912,9 +71978,8 @@ entities: pos: 24.5,24.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 12 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10576 @@ -71923,6 +71988,8 @@ entities: pos: -13.5,-21.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10577 @@ -71931,6 +71998,8 @@ entities: pos: -52.5,32.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10578 @@ -71939,9 +72008,8 @@ entities: pos: -15.5,26.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 15 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10579 @@ -71949,6 +72017,8 @@ entities: - pos: 10.5,12.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10580 @@ -71957,6 +72027,8 @@ entities: pos: 31.5,16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10581 @@ -71965,6 +72037,8 @@ entities: pos: 10.5,-33.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10582 @@ -71973,9 +72047,8 @@ entities: pos: 11.5,-38.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 8 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5349FF' type: AtmosPipeColor - uid: 10583 @@ -71984,6 +72057,8 @@ entities: pos: -8.5,-48.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#66FF00FF' type: AtmosPipeColor - uid: 10584 @@ -71992,6 +72067,8 @@ entities: pos: -1.5,-40.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#800080FF' type: AtmosPipeColor - uid: 10585 @@ -72000,6 +72077,8 @@ entities: pos: -8.5,-38.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#800080FF' type: AtmosPipeColor - proto: GasVolumePump @@ -72010,30 +72089,44 @@ entities: pos: -4.5,-46.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#66FF00FF' type: AtmosPipeColor - uid: 10587 components: + - name: burn chamber waste pump + type: MetaData - rot: 3.141592653589793 rad pos: -3.5,-40.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#66FF00FF' type: AtmosPipeColor - uid: 10588 components: + - name: air tank pump + type: MetaData - rot: 3.141592653589793 rad pos: -3.5,-36.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#00008BFF' type: AtmosPipeColor - uid: 10589 components: + - name: air tank pump + type: MetaData - rot: 3.141592653589793 rad pos: -2.5,-36.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#00008BFF' type: AtmosPipeColor - uid: 10590 @@ -72042,6 +72135,8 @@ entities: pos: -3.5,-50.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#66FF00FF' type: AtmosPipeColor - proto: Gauze @@ -72087,6 +72182,38 @@ entities: - pos: -44.5,51.5 parent: 2 type: Transform +- proto: GeneratorWallmountAPU + entities: + - uid: 773 + components: + - pos: -13.5,-71.5 + parent: 2 + type: Transform + - uid: 2922 + components: + - pos: -18.5,-71.5 + parent: 2 + type: Transform + - uid: 3692 + components: + - pos: -18.5,-75.5 + parent: 2 + type: Transform + - uid: 3694 + components: + - pos: -18.5,-77.5 + parent: 2 + type: Transform + - uid: 12101 + components: + - pos: -13.5,-82.5 + parent: 2 + type: Transform + - uid: 12103 + components: + - pos: -13.5,-81.5 + parent: 2 + type: Transform - proto: Girder entities: - uid: 10598 @@ -72153,12 +72280,12 @@ entities: entities: - uid: 10608 components: - - pos: -7.423292,-15.38963 + - pos: -2.033538,-15.379829 parent: 2 type: Transform - uid: 10609 components: - - pos: -7.2774587,-15.441751 + - pos: -2.0525565,-15.607401 parent: 2 type: Transform - uid: 10610 @@ -72696,16 +72823,6 @@ entities: - pos: 1.5,-30.5 parent: 2 type: Transform - - uid: 10710 - components: - - pos: 6.5,-26.5 - parent: 2 - type: Transform - - uid: 10711 - components: - - pos: 6.5,-25.5 - parent: 2 - type: Transform - uid: 10712 components: - pos: 6.5,-24.5 @@ -72781,11 +72898,6 @@ entities: - pos: 6.5,-14.5 parent: 2 type: Transform - - uid: 10727 - components: - - pos: 5.5,-29.5 - parent: 2 - type: Transform - uid: 10728 components: - pos: 4.5,-29.5 @@ -76382,12 +76494,6 @@ entities: - pos: -58.5,3.5 parent: 2 type: Transform - - uid: 11396 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-25.5 - parent: 2 - type: Transform - uid: 11397 components: - pos: -6.5,-25.5 @@ -76807,11 +76913,6 @@ entities: - pos: 13.5,-31.5 parent: 2 type: Transform - - uid: 11480 - components: - - pos: 8.5,-26.5 - parent: 2 - type: Transform - uid: 11481 components: - rot: 1.5707963267948966 rad @@ -77047,6 +77148,16 @@ entities: - pos: 4.5,-52.5 parent: 2 type: Transform + - uid: 15024 + components: + - pos: 6.5,-27.5 + parent: 2 + type: Transform + - uid: 16100 + components: + - pos: 8.5,-27.5 + parent: 2 + type: Transform - proto: GrilleBroken entities: - uid: 11522 @@ -77608,7 +77719,7 @@ entities: - pos: -43.5,-2.5 parent: 2 type: Transform -- proto: GunSafeSubMachineGunVector +- proto: GunSafeSubMachineGunDrozd entities: - uid: 11630 components: @@ -77729,12 +77840,12 @@ entities: type: Transform - uid: 11651 components: - - pos: -2.319984,-15.5461235 + - pos: -2.596038,-15.598579 parent: 2 type: Transform - uid: 11652 components: - - pos: -2.194984,-15.202135 + - pos: -2.283538,-15.239204 parent: 2 type: Transform - proto: HoloprojectorSecurity @@ -77990,6 +78101,9 @@ entities: - pos: -7.4670944,-48.448364 parent: 2 type: Transform + - links: + - 13453 + type: DeviceLinkSink - proto: IngotGold entities: - uid: 11697 @@ -78319,13 +78433,18 @@ entities: type: Transform - proto: KitchenElectricGrill entities: - - uid: 11745 + - uid: 3708 components: - - pos: -8.5,17.5 + - pos: 28.5,-8.5 parent: 2 type: Transform - proto: KitchenMicrowave entities: + - uid: 11745 + components: + - pos: -6.5,16.5 + parent: 2 + type: Transform - uid: 11746 components: - pos: -10.5,12.5 @@ -78363,6 +78482,11 @@ entities: type: Transform - proto: KitchenReagentGrinder entities: + - uid: 3707 + components: + - pos: -9.5,17.5 + parent: 2 + type: Transform - uid: 11753 components: - pos: -9.5,12.5 @@ -78532,13 +78656,6 @@ entities: - pos: -6.7160864,-10.619381 parent: 2 type: Transform -- proto: LiquidOxygenCanister - entities: - - uid: 17424 - components: - - pos: 7.5,-43.5 - parent: 2 - type: Transform - proto: LockerAtmosphericsFilled entities: - uid: 11778 @@ -78608,6 +78725,13 @@ entities: - pos: 8.5,18.5 parent: 2 type: Transform +- proto: LockerClown + entities: + - uid: 12701 + components: + - pos: -33.5,11.5 + parent: 2 + type: Transform - proto: LockerDetectiveFilled entities: - uid: 11789 @@ -78687,6 +78811,13 @@ entities: - pos: -15.5,13.5 parent: 2 type: Transform +- proto: LockerFreezerVaultFilled + entities: + - uid: 16976 + components: + - pos: 0.50842816,20.89434 + parent: 2 + type: Transform - proto: LockerHeadOfPersonnelFilled entities: - uid: 11802 @@ -78730,7 +78861,14 @@ entities: - pos: 16.5,26.5 parent: 2 type: Transform -- proto: LockerParamedicFilled +- proto: LockerMime + entities: + - uid: 5913 + components: + - pos: -38.5,11.5 + parent: 2 + type: Transform +- proto: LockerParamedicFilledHardsuit entities: - uid: 11809 components: @@ -78822,7 +78960,7 @@ entities: - pos: -23.5,-14.5 parent: 2 type: Transform -- proto: LockerWardenFilled +- proto: LockerWardenFilledHardsuit entities: - uid: 11825 components: @@ -79473,16 +79611,6 @@ entities: - pos: -52.354904,-6.2620792 parent: 2 type: Transform - - uid: 11938 - components: - - pos: 22.348795,-13.526395 - parent: 2 - type: Transform - - uid: 11939 - components: - - pos: 22.661295,-13.573302 - parent: 2 - type: Transform - uid: 11940 components: - pos: -1.657238,12.537073 @@ -79539,11 +79667,20 @@ entities: type: Transform - proto: NitrogenCanister entities: + - uid: 7718 + components: + - pos: 7.5,-43.5 + parent: 2 + type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 11949 components: - pos: -0.5,-35.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: NitrousOxideCanister entities: - uid: 11950 @@ -79551,11 +79688,22 @@ entities: - pos: 1.5,-35.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 11951 components: - pos: -40.5,-6.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice +- proto: NoticeBoard + entities: + - uid: 12888 + components: + - pos: 1.5,5.5 + parent: 2 + type: Transform - proto: NuclearBomb entities: - uid: 11952 @@ -79596,9 +79744,9 @@ entities: type: Transform - proto: OreBox entities: - - uid: 11958 + - uid: 5189 components: - - pos: 18.5,-45.5 + - pos: 21.5,-45.5 parent: 2 type: Transform - proto: OreProcessor @@ -79629,26 +79777,36 @@ entities: - pos: -36.5,1.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 11963 components: - pos: 4.5,30.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 11964 components: - pos: -28.5,-19.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 11965 components: - pos: -0.5,-36.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 17425 components: - pos: 7.5,-45.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: PaintingAmogusTriptych entities: - uid: 11966 @@ -80306,11 +80464,15 @@ entities: - pos: 7.5,-49.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 12074 components: - pos: 1.5,-36.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: PlasmaReinforcedWindowDirectional entities: - uid: 12075 @@ -80474,21 +80636,11 @@ entities: type: Transform - proto: PortableGeneratorSuperPacman entities: - - uid: 12101 - components: - - pos: -14.5,-81.5 - parent: 2 - type: Transform - uid: 12102 components: - pos: -3.5,-26.5 parent: 2 type: Transform - - uid: 12103 - components: - - pos: -14.5,-82.5 - parent: 2 - type: Transform - proto: PortableScrubber entities: - uid: 12104 @@ -83229,11 +83381,6 @@ entities: pos: -34.5,-61.5 parent: 2 type: Transform - - uid: 12567 - components: - - pos: 17.5,-50.5 - parent: 2 - type: Transform - uid: 12568 components: - pos: -22.5,-42.5 @@ -83251,6 +83398,11 @@ entities: pos: -56.5,47.5 parent: 2 type: Transform + - uid: 17429 + components: + - pos: 20.5,-50.5 + parent: 2 + type: Transform - proto: PoweredlightLED entities: - uid: 12571 @@ -83285,14 +83437,14 @@ entities: type: Transform - proto: PoweredLightPostSmall entities: - - uid: 12576 + - uid: 5328 components: - - pos: 14.5,-48.5 + - pos: 17.5,-48.5 parent: 2 type: Transform - - uid: 12577 + - uid: 17427 components: - - pos: 20.5,-48.5 + - pos: 23.5,-48.5 parent: 2 type: Transform - proto: PoweredlightSodium @@ -83316,6 +83468,11 @@ entities: type: Transform - proto: PoweredSmallLight entities: + - uid: 6222 + components: + - pos: 12.5,-45.5 + parent: 2 + type: Transform - uid: 12581 components: - rot: 1.5707963267948966 rad @@ -83344,11 +83501,6 @@ entities: - pos: 9.5,-42.5 parent: 2 type: Transform - - uid: 12586 - components: - - pos: 9.5,-45.5 - parent: 2 - type: Transform - uid: 12587 components: - rot: 3.141592653589793 rad @@ -84060,16 +84212,6 @@ entities: - pos: 22.5,-11.5 parent: 2 type: Transform - - uid: 12701 - components: - - pos: 22.5,-13.5 - parent: 2 - type: Transform - - uid: 12702 - components: - - pos: -38.5,11.5 - parent: 2 - type: Transform - uid: 12703 components: - pos: 19.5,24.5 @@ -84239,7 +84381,8 @@ entities: type: Transform - uid: 12736 components: - - pos: -8.5,-38.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-42.5 parent: 2 type: Transform - proto: RadiationCollectorFullTank @@ -84469,12 +84612,6 @@ entities: pos: -9.5,37.5 parent: 2 type: Transform - - uid: 12777 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-48.5 - parent: 2 - type: Transform - uid: 12778 components: - pos: 11.5,-16.5 @@ -84507,8 +84644,19 @@ entities: pos: 11.5,-14.5 parent: 2 type: Transform + - uid: 14157 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-48.5 + parent: 2 + type: Transform - proto: RailingCorner entities: + - uid: 5702 + components: + - pos: 24.5,-47.5 + parent: 2 + type: Transform - uid: 12784 components: - rot: -1.5707963267948966 rad @@ -84659,11 +84807,6 @@ entities: pos: -10.5,38.5 parent: 2 type: Transform - - uid: 12810 - components: - - pos: 21.5,-47.5 - parent: 2 - type: Transform - uid: 12811 components: - rot: 1.5707963267948966 rad @@ -84683,16 +84826,16 @@ entities: type: Transform - proto: RailingCornerSmall entities: - - uid: 12814 + - uid: 5703 components: - rot: 3.141592653589793 rad - pos: 20.5,-47.5 + pos: 24.5,-46.5 parent: 2 type: Transform - - uid: 12815 + - uid: 13470 components: - rot: 3.141592653589793 rad - pos: 21.5,-46.5 + pos: 23.5,-47.5 parent: 2 type: Transform - proto: RandomAnimalSpawner @@ -84768,13 +84911,11 @@ entities: type: Transform - proto: RandomInstruments entities: - - uid: 12827 + - uid: 14915 components: - - pos: -38.5,11.5 + - pos: -33.5,10.5 parent: 2 type: Transform - - chance: 1 - type: RandomSpawner - proto: RandomItem entities: - uid: 12828 @@ -84846,9 +84987,14 @@ entities: type: Transform - proto: RandomPosterAny entities: - - uid: 12841 + - uid: 11938 components: - - pos: 2.5,10.5 + - pos: 2.5,12.5 + parent: 2 + type: Transform + - uid: 12702 + components: + - pos: 0.5,13.5 parent: 2 type: Transform - uid: 12842 @@ -84954,6 +85100,11 @@ entities: type: Transform - proto: RandomPosterLegit entities: + - uid: 7198 + components: + - pos: 7.5,-30.5 + parent: 2 + type: Transform - uid: 12861 components: - pos: 23.5,2.5 @@ -85082,11 +85233,6 @@ entities: - pos: 3.5,28.5 parent: 2 type: Transform - - uid: 12885 - components: - - pos: 8.5,-27.5 - parent: 2 - type: Transform - uid: 12886 components: - pos: -25.5,21.5 @@ -85097,11 +85243,6 @@ entities: - pos: -33.5,34.5 parent: 2 type: Transform - - uid: 12888 - components: - - pos: 1.5,5.5 - parent: 2 - type: Transform - uid: 12889 components: - pos: -6.5,-2.5 @@ -85142,11 +85283,6 @@ entities: - pos: -9.5,-40.5 parent: 2 type: Transform - - uid: 12897 - components: - - pos: 6.5,-29.5 - parent: 2 - type: Transform - uid: 12898 components: - pos: -19.5,-2.5 @@ -85282,6 +85418,21 @@ entities: - pos: 9.5,12.5 parent: 2 type: Transform + - uid: 13405 + components: + - pos: 6.5,-25.5 + parent: 2 + type: Transform + - uid: 13425 + components: + - pos: 8.5,-26.5 + parent: 2 + type: Transform + - uid: 17438 + components: + - pos: -1.5,5.5 + parent: 2 + type: Transform - proto: RandomSnacks entities: - uid: 12925 @@ -85735,6 +85886,11 @@ entities: type: DeviceLinkSink - proto: ReinforcedGirder entities: + - uid: 5696 + components: + - pos: 25.5,-46.5 + parent: 2 + type: Transform - uid: 13009 components: - pos: 4.5,-56.5 @@ -86280,19 +86436,14 @@ entities: - pos: 49.5,12.5 parent: 2 type: Transform - - uid: 13118 - components: - - pos: 22.5,-46.5 - parent: 2 - type: Transform - - uid: 13119 + - uid: 13120 components: - - pos: 17.5,-49.5 + - pos: -12.5,-51.5 parent: 2 type: Transform - - uid: 13120 + - uid: 17428 components: - - pos: -12.5,-51.5 + - pos: 20.5,-49.5 parent: 2 type: Transform - proto: ReinforcedPlasmaWindow @@ -86577,6 +86728,16 @@ entities: type: Transform - proto: ReinforcedWindow entities: + - uid: 10176 + components: + - pos: 6.5,-27.5 + parent: 2 + type: Transform + - uid: 12885 + components: + - pos: 8.5,-27.5 + parent: 2 + type: Transform - uid: 13170 components: - rot: 1.5707963267948966 rad @@ -86814,11 +86975,6 @@ entities: - pos: 3.5,-29.5 parent: 2 type: Transform - - uid: 13214 - components: - - pos: 5.5,-29.5 - parent: 2 - type: Transform - uid: 13215 components: - pos: 4.5,-29.5 @@ -86854,11 +87010,6 @@ entities: - pos: 31.5,-24.5 parent: 2 type: Transform - - uid: 13222 - components: - - pos: 6.5,-25.5 - parent: 2 - type: Transform - uid: 13223 components: - pos: 6.5,-24.5 @@ -86885,11 +87036,6 @@ entities: - pos: -19.5,-23.5 parent: 2 type: Transform - - uid: 13228 - components: - - pos: 6.5,-26.5 - parent: 2 - type: Transform - uid: 13229 components: - rot: 1.5707963267948966 rad @@ -87802,11 +87948,6 @@ entities: - pos: 6.5,-14.5 parent: 2 type: Transform - - uid: 13405 - components: - - pos: 8.5,-26.5 - parent: 2 - type: Transform - uid: 13406 components: - pos: 15.5,-35.5 @@ -87904,12 +88045,6 @@ entities: - pos: -51.5,28.5 parent: 2 type: Transform - - uid: 13425 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-25.5 - parent: 2 - type: Transform - uid: 13426 components: - pos: 27.5,3.5 @@ -88055,9 +88190,15 @@ entities: entities: - uid: 13453 components: - - pos: -7.5,-44.5 + - name: igniter remote + type: MetaData + - pos: -7.6044617,-45.35101 parent: 2 type: Transform + - linkedPorts: + 11696: + - Pressed: Trigger + type: DeviceLinkSource - proto: ResearchAndDevelopmentServer entities: - uid: 13454 @@ -88088,9 +88229,9 @@ entities: type: Transform - proto: Roboisseur entities: - - uid: 13458 + - uid: 13214 components: - - pos: -6.5,15.5 + - pos: -6.5,20.5 parent: 2 type: Transform - proto: RollerBed @@ -88129,7 +88270,7 @@ entities: entities: - uid: 13465 components: - - pos: -7.780299,-15.266973 + - pos: -7.980133,-15.275741 parent: 2 type: Transform - uid: 13466 @@ -88141,7 +88282,7 @@ entities: entities: - uid: 13467 components: - - pos: -7.894883,-15.527569 + - pos: -8.056363,-15.556316 parent: 2 type: Transform - uid: 13468 @@ -88151,21 +88292,21 @@ entities: type: Transform - proto: SalvageCanisterSpawner entities: - - uid: 13469 + - uid: 14149 components: - - pos: 4.5,-35.5 + - pos: 6.5,-35.5 parent: 2 type: Transform - - uid: 13470 + - uid: 14150 components: - - pos: 7.5,-36.5 + - pos: 7.5,-35.5 parent: 2 type: Transform - proto: SalvageMagnet entities: - - uid: 13471 + - uid: 12576 components: - - pos: 17.5,-45.5 + - pos: 20.5,-45.5 parent: 2 type: Transform - proto: SawImprov @@ -88507,7 +88648,7 @@ entities: entities: - uid: 13528 components: - - pos: -8.5,-38.5 + - pos: -6.512475,-42.389595 parent: 2 type: Transform - uid: 13529 @@ -89019,10 +89160,19 @@ entities: entities: - uid: 13593 components: + - name: blast door button + type: MetaData - rot: 1.5707963267948966 rad pos: -9.5,-45.5 parent: 2 type: Transform + - linkedPorts: + 679: + - Pressed: Toggle + 680: + - Pressed: Toggle + type: DeviceLinkSource + - type: ItemCooldown - uid: 13594 components: - pos: -11.5,40.5 @@ -89104,6 +89254,19 @@ entities: pos: -8.5,-77.5 parent: 2 type: Transform + - uid: 17439 + components: + - pos: 1.5,41.5 + parent: 2 + type: Transform + - linkedPorts: + 681: + - Pressed: Toggle + 682: + - Pressed: Toggle + 683: + - Pressed: Toggle + type: DeviceLinkSource - proto: SignalSwitchDirectional entities: - uid: 13599 @@ -90400,31 +90563,43 @@ entities: entities: - uid: 13777 components: + - name: AME/generator SMES 2 + type: MetaData - pos: -2.5,-24.5 parent: 2 type: Transform - uid: 13778 components: + - name: AME/generator SMES 1 + type: MetaData - pos: -3.5,-24.5 parent: 2 type: Transform - uid: 13779 components: + - name: Singularity SMES 2 + type: MetaData - pos: -20.5,-43.5 parent: 2 type: Transform - uid: 13780 components: + - name: Singularity SMES 1 + type: MetaData - pos: -20.5,-33.5 parent: 2 type: Transform - uid: 13781 components: + - name: Solars, North SMES + type: MetaData - pos: -44.5,50.5 parent: 2 type: Transform - uid: 13782 components: + - name: Solars, East SMES + type: MetaData - pos: 45.5,12.5 parent: 2 type: Transform @@ -91043,6 +91218,14 @@ entities: - pos: -49.5,-12.5 parent: 2 type: Transform +- proto: SpareIdCabinet + entities: + - uid: 16973 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,32.5 + parent: 2 + type: Transform - proto: SpawnMobBandito entities: - uid: 13893 @@ -92415,6 +92598,11 @@ entities: type: Transform - proto: StoolBar entities: + - uid: 5170 + components: + - pos: -6.5,20.5 + parent: 2 + type: Transform - uid: 14128 components: - rot: 1.5707963267948966 rad @@ -92537,51 +92725,69 @@ entities: type: Transform - proto: StorageCanister entities: - - uid: 14149 + - uid: 5710 components: - - pos: 5.5,-36.5 + - pos: -3.5,-44.5 parent: 2 type: Transform - - uid: 14150 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5714 components: - - pos: 7.5,-35.5 + - pos: -3.5,-45.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice + - uid: 13469 + components: + - pos: 4.5,-35.5 + parent: 2 + type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 14151 components: - pos: 4.5,-36.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 14152 components: - pos: 7.5,-51.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 14153 components: - pos: 2.5,-36.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 14154 components: - pos: -54.5,31.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 14155 components: - pos: -55.5,31.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 14156 components: - pos: -56.5,31.5 parent: 2 type: Transform - - uid: 14157 - components: - - pos: 5.5,-35.5 - parent: 2 - type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: SubstationBasic entities: - uid: 14158 @@ -92638,12 +92844,12 @@ entities: entities: - uid: 14168 components: - - pos: -6.5,-42.5 + - pos: -8.5,-37.5 parent: 2 type: Transform - uid: 14169 components: - - pos: -7.5,-42.5 + - pos: -8.5,-38.5 parent: 2 type: Transform - proto: SuitStorageEngi @@ -93205,6 +93411,17 @@ entities: nameSet: True id: treatment type: SurveillanceCamera + - uid: 17441 + components: + - rot: 3.141592653589793 rad + pos: 13.5,8.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: lobby + type: SurveillanceCamera - proto: SurveillanceCameraRouterCommand entities: - uid: 14230 @@ -93706,6 +93923,12 @@ entities: type: Transform - proto: Table entities: + - uid: 7612 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,16.5 + parent: 2 + type: Transform - uid: 14278 components: - pos: -8.5,-39.5 @@ -95790,7 +96013,7 @@ entities: entities: - uid: 14637 components: - - pos: -8.5,-38.5 + - pos: -6.4656,-42.514595 parent: 2 type: Transform - proto: TimerTrigger @@ -95980,11 +96203,11 @@ entities: - pos: 6.6968956,7.356404 parent: 2 type: Transform -- proto: ToolboxGolden +- proto: ToolboxGoldFilled entities: - uid: 14672 components: - - pos: 1.4926577,18.67008 + - pos: 1.5277321,18.725857 parent: 2 type: Transform - proto: ToolboxMechanical @@ -96623,11 +96846,9 @@ entities: type: Transform - proto: VendingMachineHappyHonk entities: - - uid: 14748 + - uid: 13458 components: - - flags: SessionSpecific - type: MetaData - - pos: -6.5,17.5 + - pos: -6.5,15.5 parent: 2 type: Transform - proto: VendingMachineHydrobe @@ -96859,6 +97080,11 @@ entities: type: Transform - proto: VendingMachineYouTool entities: + - uid: 584 + components: + - pos: 19.5,-13.5 + parent: 2 + type: Transform - uid: 14777 components: - flags: SessionSpecific @@ -96868,6 +97094,31 @@ entities: type: Transform - proto: WallReinforced entities: + - uid: 10710 + components: + - pos: 6.5,-25.5 + parent: 2 + type: Transform + - uid: 10711 + components: + - pos: 6.5,-26.5 + parent: 2 + type: Transform + - uid: 10727 + components: + - pos: 5.5,-29.5 + parent: 2 + type: Transform + - uid: 11396 + components: + - pos: 8.5,-26.5 + parent: 2 + type: Transform + - uid: 11480 + components: + - pos: 8.5,-25.5 + parent: 2 + type: Transform - uid: 14778 components: - rot: 1.5707963267948966 rad @@ -97622,11 +97873,6 @@ entities: - pos: -19.5,-12.5 parent: 2 type: Transform - - uid: 14915 - components: - - pos: -28.5,-3.5 - parent: 2 - type: Transform - uid: 14916 components: - pos: -19.5,-10.5 @@ -98172,11 +98418,6 @@ entities: - pos: 6.5,-28.5 parent: 2 type: Transform - - uid: 15024 - components: - - pos: 6.5,-27.5 - parent: 2 - type: Transform - uid: 15025 components: - pos: 0.5,-21.5 @@ -103804,11 +104045,6 @@ entities: - pos: -15.5,-21.5 parent: 2 type: Transform - - uid: 16100 - components: - - pos: 8.5,-27.5 - parent: 2 - type: Transform - uid: 16101 components: - pos: -15.5,-26.5 @@ -107649,7 +107885,7 @@ entities: entities: - uid: 16843 components: - - pos: -8.5,-37.5 + - pos: -5.5,-37.5 parent: 2 type: Transform - proto: WardrobeFormal @@ -107997,6 +108233,8 @@ entities: - pos: 0.5,-36.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: WeaponCapacitorRecharger entities: - uid: 16890 @@ -108313,18 +108551,6 @@ entities: pos: -41.5,0.5 parent: 2 type: Transform -- proto: WindoorSecureBrigLocked - entities: - - uid: 16941 - components: - - pos: -21.5,-6.5 - parent: 2 - type: Transform - - uid: 16942 - components: - - pos: -22.5,-6.5 - parent: 2 - type: Transform - proto: WindoorSecureCargoLocked entities: - uid: 16943 @@ -108518,14 +108744,32 @@ entities: pos: -33.5,29.5 parent: 2 type: Transform -- proto: WindoorSecureSecurityLocked +- proto: WindoorSecureSecurityLawyerLocked entities: - - uid: 16973 + - uid: 6241 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-10.5 + parent: 2 + type: Transform + - uid: 6244 components: - rot: 3.141592653589793 rad pos: -37.5,-10.5 parent: 2 type: Transform + - uid: 16941 + components: + - pos: -21.5,-6.5 + parent: 2 + type: Transform + - uid: 16942 + components: + - pos: -22.5,-6.5 + parent: 2 + type: Transform +- proto: WindoorSecureSecurityLocked + entities: - uid: 16974 components: - rot: -1.5707963267948966 rad @@ -108538,12 +108782,6 @@ entities: pos: -26.5,-14.5 parent: 2 type: Transform - - uid: 16976 - components: - - rot: 3.141592653589793 rad - pos: -38.5,-10.5 - parent: 2 - type: Transform - uid: 16977 components: - rot: 3.141592653589793 rad diff --git a/Resources/Maps/hive.yml b/Resources/Maps/hive.yml new file mode 100644 index 0000000000..8dcf2f7bfa --- /dev/null +++ b/Resources/Maps/hive.yml @@ -0,0 +1,168453 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 10: FloorAsteroidSandUnvariantized + 11: FloorAsteroidTile + 17: FloorBlue + 18: FloorBlueCircuit + 19: FloorBoxing + 20: FloorBrokenWood + 21: FloorCarpetClown + 22: FloorCarpetOffice + 26: FloorClown + 30: FloorDark + 31: FloorDarkDiagonal + 32: FloorDarkDiagonalMini + 35: FloorDarkMono + 36: FloorDarkOffset + 37: FloorDarkPavement + 38: FloorDarkPavementVertical + 39: FloorDarkPlastic + 41: FloorDirt + 42: FloorEighties + 43: FloorElevatorShaft + 45: FloorFreezer + 46: FloorGlass + 47: FloorGold + 48: FloorGrass + 50: FloorGrassJungle + 51: FloorGrassLight + 53: FloorGrayConcreteMono + 55: FloorGreenCircuit + 58: FloorHullReinforced + 59: FloorHydro + 61: FloorKitchen + 62: FloorLaundry + 63: FloorLino + 65: FloorMetalDiamond + 66: FloorMime + 77: FloorRGlass + 78: FloorReinforced + 79: FloorReinforcedHardened + 80: FloorRockVault + 81: FloorShowroom + 88: FloorSnow + 90: FloorSteel + 95: FloorSteelDiagonal + 97: FloorSteelDirty + 99: FloorSteelLime + 101: FloorSteelMono + 103: FloorSteelPavement + 105: FloorTechMaint + 106: FloorTechMaint2 + 107: FloorTechMaint3 + 109: FloorWhite + 114: FloorWhiteMono + 119: FloorWood + 120: FloorWoodTile + 121: Lattice + 122: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + - pos: -0.7395834,-0.59902763 + parent: 8 + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: egAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAACTgAAAAAAMwAAAAADMwAAAAACMwAAAAAAMwAAAAABWgAAAAADWgAAAAACWgAAAAAAWgAAAAACMwAAAAAAMwAAAAACegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAMwAAAAABMwAAAAADMwAAAAABMwAAAAACWgAAAAAAWgAAAAABWgAAAAADWgAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAABWgAAAAAAWgAAAAACTgAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAACWgAAAAABWgAAAAADWgAAAAADWgAAAAACegAAAAAAUAAAAAAAWgAAAAACWgAAAAABWgAAAAACTQAAAAAAWgAAAAABCgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAADUAAAAAAAUAAAAAAAWgAAAAABWgAAAAADWgAAAAACTQAAAAACWgAAAAADCgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADegAAAAAAUAAAAAAAWgAAAAACWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAegAAAAAAMwAAAAAAMwAAAAAAMwAAAAACMwAAAAADWgAAAAABWgAAAAABWgAAAAABWgAAAAABegAAAAAAUAAAAAAATgAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAAATgAAAAAAMwAAAAABMwAAAAACMwAAAAACMwAAAAACWgAAAAABWgAAAAABWgAAAAACWgAAAAACegAAAAAAegAAAAAAAAAAAAAATgAAAAAAWgAAAAAAWgAAAAADWgAAAAAATgAAAAAAMwAAAAAAMwAAAAABMwAAAAAAMwAAAAACWgAAAAADWgAAAAADWgAAAAAAWgAAAAACMwAAAAAAMwAAAAACAAAAAAAATgAAAAAAWgAAAAAAWgAAAAADWgAAAAADTgAAAAAAMwAAAAADMwAAAAACMwAAAAACMwAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAAAMwAAAAABMwAAAAACTgAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAWgAAAAACWgAAAAACTgAAAAAAegAAAAAAMwAAAAACWgAAAAAAWgAAAAABWgAAAAADWgAAAAABWgAAAAACWgAAAAACWgAAAAAAWgAAAAADWgAAAAACWgAAAAADWgAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAADWgAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAADWgAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAADWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAABegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAOwAAAAAATgAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAABWgAAAAADWgAAAAABWgAAAAADMwAAAAADMwAAAAADKQAAAAABKQAAAAACKQAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAACWgAAAAABWgAAAAACMwAAAAABMwAAAAAAKQAAAAAAKQAAAAACKQAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAATgAAAAAAWgAAAAADWgAAAAAATgAAAAAAegAAAAAAegAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: egAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAABWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACegAAAAAAWgAAAAADWgAAAAACWgAAAAABWgAAAAACTgAAAAAATgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAADWgAAAAADWgAAAAABWgAAAAABegAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAABWgAAAAACWgAAAAABWgAAAAAATgAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAABTgAAAAAAPgAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAABWgAAAAABWgAAAAADWgAAAAABWgAAAAACWgAAAAADWgAAAAAAWgAAAAADWgAAAAACPgAAAAAAPgAAAAAAWgAAAAADWgAAAAABWgAAAAACWgAAAAADWgAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAADTgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAACTgAAAAAAPgAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAABTgAAAAAAPgAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAHgAAAAADegAAAAAAJgAAAAADJgAAAAADegAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAACegAAAAAAegAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABegAAAAAAJgAAAAACJgAAAAADJgAAAAABWgAAAAAAWgAAAAACWgAAAAADWgAAAAADTgAAAAAAPgAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAADegAAAAAAJgAAAAABJgAAAAABJgAAAAADWgAAAAAAWgAAAAABWgAAAAACWgAAAAABTgAAAAAAPgAAAAAAegAAAAAAegAAAAAAHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAJgAAAAADJgAAAAACJgAAAAABWgAAAAABWgAAAAACWgAAAAAAWgAAAAAATgAAAAAAPgAAAAAAegAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAADHgAAAAADTgAAAAAAJgAAAAACJgAAAAAAJgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAABTgAAAAAATgAAAAAAegAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAABHgAAAAAAHgAAAAABJgAAAAABJgAAAAADJgAAAAADWgAAAAABWgAAAAADWgAAAAADWgAAAAAAWgAAAAABWgAAAAADegAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAAAHgAAAAABTgAAAAAAJgAAAAACJgAAAAACJgAAAAABWgAAAAABWgAAAAABWgAAAAACWgAAAAACWgAAAAABWgAAAAACegAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAAAHgAAAAACHgAAAAAAJgAAAAADJgAAAAABegAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAABWgAAAAABWgAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAAAegAAAAAAMwAAAAACegAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAABTgAAAAAAMwAAAAADMwAAAAACMwAAAAABMwAAAAABWgAAAAADWgAAAAAAWgAAAAACWgAAAAADMwAAAAADMwAAAAAC + version: 6 + -2,-2: + ind: -2,-2 + tiles: egAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAegAAAAAAaQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAeQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAeQAAAAAAaQAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAawAAAAABTgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAQQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAQQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWAAAAAAAWAAAAAAF + version: 6 + -1,-1: + ind: -1,-1 + tiles: WAAAAAAAWAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYQAAAAAAYQAAAAAAWgAAAAABegAAAAAAdwAAAAACdwAAAAABegAAAAAAQQAAAAAAaQAAAAAAegAAAAAAWAAAAAAAWAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAawAAAAADYQAAAAAAYQAAAAAAegAAAAAAdwAAAAABegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAWAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYQAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAAAegAAAAAAaQAAAAAAegAAAAAAWAAAAAABegAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAWgAAAAADWgAAAAADWgAAAAADTgAAAAAAWgAAAAADWgAAAAAAWgAAAAABegAAAAAAaQAAAAAAegAAAAAAWAAAAAAAegAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAADWgAAAAAAWgAAAAADWgAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAZQAAAAABZQAAAAACZQAAAAACWgAAAAABWgAAAAABWgAAAAACWgAAAAADWgAAAAABWgAAAAABWgAAAAACJAAAAAAAJAAAAAAAJAAAAAAAegAAAAAAaQAAAAAAQQAAAAAAZQAAAAADZQAAAAAAZQAAAAABegAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAADWgAAAAABJAAAAAAAJAAAAAAAJAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAZQAAAAADZQAAAAABZQAAAAAAegAAAAAAWgAAAAAAWgAAAAAAIwAAAAADIwAAAAACWgAAAAADWgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAAAIwAAAAABIwAAAAADWgAAAAAAWgAAAAACJAAAAAAAJAAAAAAAJAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAWgAAAAADWgAAAAACWgAAAAADegAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAACWgAAAAABWgAAAAABaQAAAAAAaQAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAAAegAAAAAAaQAAAAAAaQAAAAAAWgAAAAAAWgAAAAAAWgAAAAADTgAAAAAAQQAAAAAAWgAAAAADWgAAAAACQQAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAADWgAAAAAAegAAAAAAaQAAAAAAaQAAAAAAWgAAAAADWgAAAAACWgAAAAACegAAAAAAQQAAAAAAWgAAAAADWgAAAAAAQQAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAADWgAAAAABegAAAAAAaQAAAAAAaQAAAAAAWgAAAAABWgAAAAABWgAAAAADegAAAAAAegAAAAAAWgAAAAACTgAAAAAAWgAAAAAATgAAAAAAWgAAAAACTgAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAABWgAAAAAAWgAAAAADQQAAAAAAQQAAAAAAQQAAAAAAWgAAAAABWgAAAAAAWgAAAAABegAAAAAAQQAAAAAAaQAAAAAAQQAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: MwAAAAADMwAAAAACMwAAAAACMwAAAAABMwAAAAABMwAAAAADMwAAAAACMwAAAAADTgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAegAAAAAAegAAAAAAegAAAAAAMwAAAAAAMwAAAAAAMwAAAAACMwAAAAAAMwAAAAAAMwAAAAADTgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAegAAAAAAUAAAAAAAUAAAAAAAMwAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAACMwAAAAAAegAAAAAATgAAAAAACwAAAAAATgAAAAAATgAAAAAACwAAAAAAegAAAAAAegAAAAAAUAAAAAAAUAAAAAAAMwAAAAABMwAAAAADMwAAAAADMwAAAAAAMwAAAAACMwAAAAACMwAAAAACMwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAUAAAAAAAUAAAAAAAMwAAAAABMwAAAAADMwAAAAACMwAAAAACMwAAAAACMwAAAAAAMwAAAAACMwAAAAACCwAAAAAAMwAAAAAAMwAAAAABMwAAAAAACwAAAAAAMwAAAAABUAAAAAAAUAAAAAAAMwAAAAABMwAAAAADMwAAAAADMwAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAADCwAAAAAAMwAAAAABegAAAAAAegAAAAAACwAAAAAAegAAAAAAegAAAAAAegAAAAAAMwAAAAABMwAAAAADMwAAAAACMwAAAAACMwAAAAADMwAAAAADMwAAAAADMwAAAAAACwAAAAAAMwAAAAABegAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAABMwAAAAABMwAAAAADMwAAAAACMwAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAACCwAAAAAAMwAAAAAAegAAAAAACwAAAAAAegAAAAAACwAAAAAAMwAAAAAAMwAAAAACMwAAAAABMwAAAAABMwAAAAADMwAAAAADMwAAAAACMwAAAAABMwAAAAABMwAAAAABCwAAAAAAMwAAAAACegAAAAAACwAAAAAAegAAAAAACwAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAABMwAAAAAAMwAAAAADMwAAAAADMwAAAAACMwAAAAABegAAAAAACwAAAAAAMwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAADWgAAAAABWgAAAAABWgAAAAADWgAAAAABWgAAAAAAWgAAAAADWgAAAAADWgAAAAABTQAAAAACWgAAAAABWgAAAAABWgAAAAADTQAAAAACWgAAAAABWgAAAAADWgAAAAACTQAAAAABWgAAAAADWgAAAAAAWgAAAAACTQAAAAACWgAAAAAAWgAAAAACWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAABWgAAAAAAWgAAAAACegAAAAAAegAAAAAAWgAAAAADegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAWgAAAAACegAAAAAAWgAAAAABWgAAAAADWgAAAAADEwAAAAACEwAAAAABEwAAAAADEwAAAAAAEwAAAAAAWgAAAAACWgAAAAAAWgAAAAABHgAAAAAAegAAAAAAHgAAAAACegAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAABEwAAAAADEwAAAAADEwAAAAAAEwAAAAABEwAAAAAAWgAAAAABWgAAAAAAWgAAAAADHgAAAAACHgAAAAADIAAAAAAC + version: 6 + 1,-1: + ind: 1,-1 + tiles: TgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAdwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAdwAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAdwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAegAAAAAAdwAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAegAAAAAAdwAAAAABegAAAAAAegAAAAAAegAAAAAAPgAAAAAAegAAAAAAegAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAegAAAAAAdwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAegAAAAAAdwAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAegAAAAAAdwAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAegAAAAAAdwAAAAAATgAAAAAATgAAAAAAegAAAAAAPgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAKgAAAAAAKgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAABWgAAAAACWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAATQAAAAACWgAAAAACWgAAAAAAWgAAAAABTQAAAAABWgAAAAACWgAAAAADWgAAAAAATQAAAAABWgAAAAAAWgAAAAAAWgAAAAACTQAAAAADWgAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAAAWgAAAAAAWgAAAAAAMwAAAAABMwAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAADMwAAAAAAMwAAAAADegAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAegAAAAAAegAAAAAAegAAAAAAMwAAAAADMwAAAAACMwAAAAACMwAAAAABMwAAAAABMwAAAAACMwAAAAACMwAAAAADegAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAACwAAAAAACwAAAAAAegAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: WgAAAAADWgAAAAACQQAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAWgAAAAACTQAAAAADTQAAAAACWgAAAAADTgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAABWgAAAAABWgAAAAADWgAAAAAAWgAAAAADTQAAAAAAWgAAAAAAWgAAAAADWgAAAAACTQAAAAABWgAAAAACWgAAAAADWgAAAAABTQAAAAABWgAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADTQAAAAADWgAAAAACWgAAAAABWgAAAAAATQAAAAADWgAAAAADWgAAAAACWgAAAAACTQAAAAABTQAAAAACTQAAAAAAWgAAAAACTgAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAAATgAAAAAATgAAAAAATgAAAAAAbQAAAAACegAAAAAATgAAAAAAWgAAAAABTgAAAAAAWgAAAAACWgAAAAABQQAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAAAbQAAAAAAbQAAAAADbQAAAAACegAAAAAAWgAAAAADWgAAAAACWgAAAAABMwAAAAADegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAbQAAAAACbQAAAAABbQAAAAADbQAAAAADbQAAAAADegAAAAAAWgAAAAADWgAAAAABWgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAACbQAAAAABbQAAAAACbQAAAAAAbQAAAAAAegAAAAAAWgAAAAADWgAAAAACawAAAAABeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAAAbQAAAAAAbQAAAAABbQAAAAADbQAAAAACegAAAAAAWgAAAAABWgAAAAABWgAAAAADeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAACbQAAAAACbQAAAAABbQAAAAAAbQAAAAADegAAAAAAWgAAAAABWgAAAAADWgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAAAbQAAAAAAbQAAAAACbQAAAAABegAAAAAAWgAAAAABWgAAAAABWgAAAAABeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAKgAAAAAAKgAAAAAAegAAAAAAegAAAAAAaQAAAAAAYQAAAAAAWgAAAAAAYQAAAAAAWgAAAAACWgAAAAABWgAAAAACYQAAAAAAWgAAAAABegAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAADYQAAAAAAawAAAAADawAAAAACYQAAAAAAYQAAAAAAWgAAAAABPgAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAATQAAAAAATQAAAAAATQAAAAADTQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWAAAAAAAWAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAADTQAAAAACTQAAAAABegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAWAAAAAAAWAAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAWAAAAAAAWAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWAAAAAAAWAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADYQAAAAAAWgAAAAACWgAAAAADegAAAAAAWgAAAAABZQAAAAADZQAAAAACeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADYQAAAAAAYQAAAAAAZQAAAAACZQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYQAAAAAAZQAAAAAAZQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAACHgAAAAACegAAAAAAWgAAAAADWgAAAAABWgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAHgAAAAACHgAAAAAAQQAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAACeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAHgAAAAABHgAAAAABQQAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAADeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAHgAAAAACHgAAAAADQQAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAHgAAAAABHgAAAAABTgAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAACMwAAAAACegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAHgAAAAACHgAAAAABTgAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: WgAAAAACWgAAAAAAWgAAAAAATgAAAAAAWgAAAAADWgAAAAADWgAAAAACQQAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAAAegAAAAAAQQAAAAAAaQAAAAAAQQAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAABWgAAAAABWgAAAAABWgAAAAADWgAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAACWgAAAAAAWgAAAAABWgAAAAADWgAAAAACTQAAAAADWgAAAAABWgAAAAADWgAAAAACTQAAAAABWgAAAAADWgAAAAACWgAAAAABTQAAAAADWgAAAAAAWgAAAAAAWgAAAAADTQAAAAABWgAAAAABWgAAAAABWgAAAAABTQAAAAACWgAAAAAAWgAAAAAAWgAAAAAATQAAAAAAWgAAAAACWgAAAAACWgAAAAABTQAAAAADWgAAAAADWgAAAAADWgAAAAAATQAAAAACWgAAAAACWgAAAAABWgAAAAABWgAAAAADWgAAAAADWgAAAAABWgAAAAABWgAAAAABWgAAAAABWgAAAAABWgAAAAADWgAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAACTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAABWgAAAAAATgAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAACegAAAAAATgAAAAAAWgAAAAABWgAAAAACWgAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAABTgAAAAAAAAAAAAAAawAAAAACWgAAAAACWgAAAAADegAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAABWgAAAAABWgAAAAACWgAAAAADWgAAAAABWgAAAAADWgAAAAAATgAAAAAAAAAAAAAAawAAAAABawAAAAACWgAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAABWgAAAAABWgAAAAADegAAAAAATgAAAAAAawAAAAABWgAAAAADWgAAAAABegAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAACTgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAAAegAAAAAAWgAAAAADWgAAAAADegAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAABegAAAAAAWgAAAAACWgAAAAACegAAAAAAWgAAAAABWgAAAAADWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAADWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAADWgAAAAACegAAAAAAegAAAAAATgAAAAAATgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAATgAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAegAAAAAAOwAAAAAAegAAAAAAMwAAAAADMwAAAAAAMwAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAADegAAAAAAOwAAAAAAOwAAAAAAMwAAAAAAMwAAAAABMwAAAAAB + version: 6 + -2,1: + ind: -2,1 + tiles: egAAAAAAegAAAAAAKgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAAAWgAAAAACYQAAAAAAYQAAAAAAWgAAAAAAegAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAaQAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAABegAAAAAAegAAAAAAQQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: MwAAAAADMwAAAAAAKQAAAAABKQAAAAADKQAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABegAAAAAAYwAAAAAAMwAAAAADMwAAAAAAKQAAAAAAKQAAAAACKQAAAAADOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAADWgAAAAADegAAAAAAYwAAAAABLQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAPQAAAAAATgAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAYwAAAAAALQAAAAAALQAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAABWgAAAAACegAAAAAAWgAAAAABLQAAAAAALQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAACWgAAAAABegAAAAAAWgAAAAADLQAAAAAALQAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADegAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAPQAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAATgAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAACegAAAAAAWgAAAAACUQAAAAAAWgAAAAAAWgAAAAADWgAAAAABegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAABegAAAAAAWgAAAAAAegAAAAAAWgAAAAABawAAAAAAWgAAAAADegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAACegAAAAAAWgAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAADegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAegAAAAAAWgAAAAACegAAAAAAegAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAADegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAAAWgAAAAADTgAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAAAMgAAAAAAMgAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAWgAAAAADTQAAAAADTQAAAAACWgAAAAAAMgAAAAAAMgAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: QQAAAAAAawAAAAACQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAawAAAAADawAAAAADegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAAAawAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAegAAAAAAWAAAAAAAWAAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAWAAAAAAAWAAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAADdwAAAAACegAAAAAAQQAAAAAAaQAAAAAAegAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAIwAAAAACIwAAAAABIwAAAAABIwAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYwAAAAABIwAAAAABIwAAAAADegAAAAAAIwAAAAADIwAAAAABIwAAAAACIwAAAAADegAAAAAAIwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYwAAAAADYwAAAAADYwAAAAAAegAAAAAAIwAAAAADIwAAAAABIwAAAAACIwAAAAABegAAAAAAYwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYwAAAAABYwAAAAADYwAAAAAAegAAAAAATgAAAAAAIwAAAAADIwAAAAADTgAAAAAAegAAAAAAYwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAMwAAAAADYwAAAAACXwAAAAABXwAAAAACXwAAAAADXwAAAAAAXwAAAAACXwAAAAAAXwAAAAAAXwAAAAACXwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAMwAAAAABYwAAAAAAXwAAAAACZwAAAAACZwAAAAAAZwAAAAACZwAAAAADZwAAAAAAZwAAAAACZwAAAAAAZwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAMwAAAAACYwAAAAADXwAAAAAAZwAAAAADXwAAAAABXwAAAAAAXwAAAAADXwAAAAACXwAAAAABXwAAAAACZwAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYwAAAAAAXwAAAAADZwAAAAADZwAAAAACZwAAAAABZwAAAAACZwAAAAACZwAAAAADZwAAAAADZwAAAAABeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAXwAAAAABXwAAAAABXwAAAAACXwAAAAACXwAAAAACXwAAAAADXwAAAAADXwAAAAADXwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAACWgAAAAADTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAADegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAACWgAAAAACegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAABWgAAAAADTgAAAAAATgAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAACTgAAAAAATgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAACTgAAAAAATgAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: PgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAATgAAAAAAWgAAAAACWgAAAAADegAAAAAAegAAAAAAegAAAAAAOwAAAAAAOwAAAAAAMwAAAAABMwAAAAABMwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAATgAAAAAAWgAAAAACWgAAAAACegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAMwAAAAAAMwAAAAADMwAAAAABPgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAADWgAAAAACegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAAegAAAAAAegAAAAAAPgAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAACegAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAALQAAAAAALQAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAALQAAAAAALQAAAAAAaQAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAAAegAAAAAAegAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAALQAAAAAALQAAAAAAaQAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAADegAAAAAAaQAAAAAAegAAAAAAOwAAAAAAegAAAAAAegAAAAAAdwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAACegAAAAAAawAAAAACawAAAAAAaQAAAAAAegAAAAAAdwAAAAACdwAAAAAAdwAAAAABdwAAAAABUQAAAAAAUQAAAAAAegAAAAAAaQAAAAAAWgAAAAAAWgAAAAADWgAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAdwAAAAAAdwAAAAABdwAAAAABdwAAAAADegAAAAAAUQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAUQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAUAAAAAAAUAAAAAAAegAAAAAAQQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAYQAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAUAAAAAAAUAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYQAAAAAAWgAAAAADegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYQAAAAAAWgAAAAACegAAAAAAeQAAAAAA + version: 6 + -3,0: + ind: -3,0 + tiles: WgAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAABWgAAAAAAWgAAAAACWgAAAAABTgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADegAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAABWgAAAAABWgAAAAACWgAAAAACWgAAAAABWgAAAAACQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAWgAAAAAAWgAAAAADegAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAABWgAAAAABQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAWgAAAAADWgAAAAACWgAAAAABWgAAAAAATQAAAAADQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAABTgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAACWgAAAAADQQAAAAAAWgAAAAACegAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAABWgAAAAACQQAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAADWgAAAAACWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADQQAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAACWgAAAAACTQAAAAABYwAAAAADYwAAAAAAYwAAAAABegAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAADTgAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAADegAAAAAAWgAAAAAAWgAAAAABYwAAAAACYwAAAAADYwAAAAACegAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAAATgAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAADegAAAAAAWgAAAAACWgAAAAAAYwAAAAAAYwAAAAABYwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMwAAAAAAMwAAAAABYwAAAAAAYwAAAAABYwAAAAAATgAAAAAAeAAAAAABeAAAAAACeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAACeAAAAAAAeAAAAAACeAAAAAAATgAAAAAATgAAAAAATgAAAAAAYwAAAAACYwAAAAACYwAAAAADeAAAAAABeAAAAAABeAAAAAACeAAAAAADeAAAAAABeAAAAAABeAAAAAACeAAAAAADeAAAAAABeAAAAAADTgAAAAAAeQAAAAAAeQAAAAAAYwAAAAAAYwAAAAAAYwAAAAABTgAAAAAAeAAAAAAAeAAAAAABeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAACeAAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAADeAAAAAACeAAAAAAAeAAAAAABeAAAAAADeAAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAegAAAAAAegAAAAAAeAAAAAAAegAAAAAAeAAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAegAAAAAAeAAAAAACeAAAAAADegAAAAAAeAAAAAADeAAAAAACeAAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAKgAAAAAAKgAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: YwAAAAABegAAAAAAWgAAAAACWgAAAAAAWgAAAAAAEwAAAAACEwAAAAAAEwAAAAACEwAAAAAAEwAAAAAAWgAAAAAAWgAAAAABWgAAAAADHgAAAAACIAAAAAADIAAAAAABYwAAAAACYwAAAAAAWgAAAAADWgAAAAABWgAAAAAAEwAAAAADEwAAAAADEwAAAAAAEwAAAAAAEwAAAAABWgAAAAABWgAAAAABWgAAAAADHgAAAAACIAAAAAABIAAAAAACegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAAEwAAAAAAEwAAAAADEwAAAAAAEwAAAAABEwAAAAAAWgAAAAACWgAAAAADWgAAAAADHgAAAAACIAAAAAAAIAAAAAACWgAAAAAAWgAAAAABegAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAHgAAAAADHgAAAAACIAAAAAADWgAAAAABWgAAAAABegAAAAAAegAAAAAAYwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAACTQAAAAADTQAAAAACTQAAAAABHgAAAAABHgAAAAAAWgAAAAAAWgAAAAADYwAAAAADYwAAAAAAYwAAAAABegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAATQAAAAACTQAAAAACTQAAAAACTQAAAAABegAAAAAAegAAAAAAWgAAAAAAWgAAAAACegAAAAAAYwAAAAABYwAAAAACegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAATQAAAAAATQAAAAABTQAAAAAATQAAAAAAegAAAAAAUQAAAAAAWgAAAAACWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAATQAAAAADTQAAAAACTQAAAAAATQAAAAABegAAAAAAUQAAAAAAWgAAAAAAWgAAAAADegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAUQAAAAAAWgAAAAABWgAAAAABaQAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAaQAAAAAAegAAAAAAQQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAUQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAawAAAAABawAAAAABegAAAAAAQQAAAAAAMgAAAAAAMgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAMgAAAAAAMgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: IAAAAAAAIAAAAAABHgAAAAADegAAAAAAdwAAAAADdwAAAAADdwAAAAABegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAawAAAAADaQAAAAAAIAAAAAABHgAAAAACHgAAAAADegAAAAAAdwAAAAACdwAAAAADdwAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAIAAAAAACHgAAAAABegAAAAAAPwAAAAAAegAAAAAAdwAAAAAAegAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAaQAAAAAAaQAAAAAAIAAAAAADHgAAAAABPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAHgAAAAADHgAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAaQAAAAAAegAAAAAAagAAAAAAUQAAAAAAegAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAUQAAAAAAUQAAAAAAegAAAAAAdwAAAAADdwAAAAACdwAAAAACdwAAAAADPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAUQAAAAAAegAAAAAAdwAAAAACdwAAAAAAdwAAAAACdwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAeQAAAAAAegAAAAAAUQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAegAAAAAAagAAAAAAegAAAAAAaQAAAAAAQQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAaQAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA + version: 6 + 3,1: + ind: 3,1 + tiles: egAAAAAAaQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAQQAAAAAAaQAAAAAAegAAAAAAegAAAAAAeAAAAAADeAAAAAACeAAAAAACegAAAAAAZQAAAAABegAAAAAAaQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAQQAAAAAAaQAAAAAAegAAAAAAegAAAAAAeAAAAAADeAAAAAABeAAAAAADegAAAAAAZQAAAAADegAAAAAAagAAAAAAQQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAACeAAAAAACegAAAAAAegAAAAAAagAAAAAAegAAAAAAQQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAACeAAAAAACegAAAAAAZQAAAAABegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAeAAAAAACeAAAAAACeAAAAAABegAAAAAAZQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAeAAAAAACeAAAAAAAeAAAAAAAeAAAAAAAZQAAAAADegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAeAAAAAADeAAAAAABeAAAAAAAegAAAAAAZQAAAAADeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAZQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAZQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAZQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAZQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAZQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: cgAAAAADIwAAAAADcgAAAAACIwAAAAACegAAAAAAWgAAAAABWgAAAAAAWgAAAAABTgAAAAAAdwAAAAABeAAAAAACeAAAAAACeAAAAAAAeAAAAAABeAAAAAABdwAAAAABIwAAAAABcgAAAAACIwAAAAACcgAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAcgAAAAACTgAAAAAAegAAAAAAWgAAAAACTQAAAAAAWgAAAAAAWgAAAAADWgAAAAAAMwAAAAAAMwAAAAACMwAAAAAAMwAAAAABMwAAAAADWgAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACMwAAAAACMwAAAAADMwAAAAADMwAAAAAAMwAAAAABWgAAAAABMwAAAAADMwAAAAAACwAAAAAAMwAAAAACMwAAAAACWgAAAAADWgAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAADWgAAAAABWgAAAAABWgAAAAADWgAAAAACWgAAAAACegAAAAAAegAAAAAACwAAAAAAegAAAAAAegAAAAAAWgAAAAAATQAAAAADWgAAAAABWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAABWgAAAAABegAAAAAACwAAAAAACwAAAAAACwAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAADegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAACwAAAAAAegAAAAAACwAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAADPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAACwAAAAAAegAAAAAACwAAAAAAegAAAAAAWgAAAAABTQAAAAADWgAAAAAATgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAABTgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAWgAAAAACWgAAAAABWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADTgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAYwAAAAAAegAAAAAAWgAAAAABWgAAAAABTQAAAAAAWgAAAAABWgAAAAADWgAAAAAATQAAAAACWgAAAAABTgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAYwAAAAADYwAAAAADWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAADWgAAAAABWgAAAAACWgAAAAADTgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAYwAAAAAAYwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYwAAAAADYwAAAAACHgAAAAACHgAAAAADHgAAAAACdwAAAAABdwAAAAAAdwAAAAAAdwAAAAADegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAegAAAAAAIAAAAAACIAAAAAACHgAAAAACegAAAAAAdwAAAAABdwAAAAAAdwAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAawAAAAADawAAAAAB + version: 6 + 3,0: + ind: 3,0 + tiles: egAAAAAAQQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAYwAAAAABYwAAAAAAYwAAAAAAYwAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAbQAAAAACbQAAAAABegAAAAAAegAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAYwAAAAABTgAAAAAAYwAAAAADTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAAAbQAAAAAAWgAAAAABWgAAAAADWgAAAAACTgAAAAAAQQAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAACWgAAAAACWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAACWgAAAAADWgAAAAABWgAAAAACWgAAAAACWgAAAAABWgAAAAADTQAAAAABWgAAAAADWgAAAAADTQAAAAABWgAAAAADWgAAAAABTQAAAAACWgAAAAADWgAAAAADTQAAAAACWgAAAAABWgAAAAADWgAAAAABWgAAAAADWgAAAAACTQAAAAAAWgAAAAADWgAAAAAATQAAAAADWgAAAAAAWgAAAAAATQAAAAABWgAAAAACWgAAAAAATQAAAAADWgAAAAABWgAAAAABWgAAAAABWgAAAAADTgAAAAAAQQAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAADWgAAAAACWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYQAAAAAAWgAAAAADWgAAAAADWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYQAAAAAAWgAAAAADYQAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAZQAAAAADegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAABegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAZQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAZQAAAAAAYwAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAZQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAACZQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAQQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAADegAAAAAAegAAAAAATgAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: dwAAAAABdwAAAAACdwAAAAADdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAADdwAAAAADegAAAAAAeAAAAAADeAAAAAAAeAAAAAABeAAAAAACeAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAdwAAAAAAdwAAAAABdwAAAAAAdwAAAAAAegAAAAAAeAAAAAACeAAAAAACeAAAAAACeAAAAAADeAAAAAACeAAAAAAAeAAAAAABegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAACegAAAAAAegAAAAAAeAAAAAAAeAAAAAADeAAAAAACeAAAAAACeAAAAAADeAAAAAADeAAAAAABegAAAAAAQQAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAADdwAAAAAAdwAAAAADegAAAAAAeAAAAAAAeAAAAAACeAAAAAABeAAAAAADeAAAAAACeAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAADdwAAAAABdwAAAAADegAAAAAAeAAAAAACeAAAAAAAeAAAAAACeAAAAAAAeAAAAAADeAAAAAADeAAAAAACeAAAAAABeAAAAAADeAAAAAADegAAAAAAdwAAAAAAdwAAAAABdwAAAAAAdwAAAAACegAAAAAAeAAAAAAAeAAAAAADeAAAAAACegAAAAAAeAAAAAADeAAAAAACeAAAAAABeAAAAAABeAAAAAABegAAAAAAegAAAAAAdwAAAAABdwAAAAADdwAAAAABdwAAAAABegAAAAAATgAAAAAAeAAAAAADTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAACdwAAAAACdwAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAAAWgAAAAAAdwAAAAABdwAAAAABdwAAAAACdwAAAAADegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACTgAAAAAAdwAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAPwAAAAAATgAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAACWgAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAADWgAAAAABWgAAAAAAWgAAAAACegAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAACWgAAAAADWgAAAAADWgAAAAADWgAAAAABWgAAAAADTQAAAAADWgAAAAACWgAAAAACWgAAAAACTQAAAAACWgAAAAAAegAAAAAAdwAAAAADdwAAAAABdwAAAAACdwAAAAAAdwAAAAADdwAAAAADdwAAAAABWgAAAAADWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAACWgAAAAADWgAAAAACTgAAAAAAdwAAAAADdwAAAAACdwAAAAAAdwAAAAAAdwAAAAACdwAAAAACdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAACTgAAAAAAdwAAAAACeAAAAAADeAAAAAADeAAAAAAAeAAAAAACeAAAAAAAdwAAAAACIwAAAAADcgAAAAADIwAAAAAAcgAAAAADegAAAAAAWgAAAAADTQAAAAACWgAAAAAATgAAAAAAdwAAAAADeAAAAAADeAAAAAACeAAAAAADeAAAAAABeAAAAAAAdwAAAAAB + version: 6 + 3,-1: + ind: 3,-1 + tiles: egAAAAAAeQAAAAAAeQAAAAAAegAAAAAATQAAAAACUQAAAAAATQAAAAABUQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAIwAAAAABIwAAAAAAIwAAAAADIwAAAAACegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAACegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAAAbQAAAAADbQAAAAABegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAQQAAAAAAegAAAAAAegAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAADegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAQQAAAAAAegAAAAAAegAAAAAAbQAAAAAAbQAAAAADbQAAAAAAbQAAAAACaQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAADbQAAAAACbQAAAAACegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAAAbQAAAAADbQAAAAADWgAAAAADaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAbQAAAAACbQAAAAABTgAAAAAAbQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAAAegAAAAAAbQAAAAACegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAACegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAbQAAAAABbQAAAAADegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAbQAAAAAAbQAAAAACegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAbQAAAAAAbQAAAAACegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAYwAAAAABYwAAAAABYwAAAAABYwAAAAACegAAAAAAegAAAAAAaQAAAAAAegAAAAAATgAAAAAAbQAAAAADegAAAAAAQQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAYwAAAAABYwAAAAACYwAAAAABYwAAAAACegAAAAAAegAAAAAAQQAAAAAAegAAAAAAbQAAAAABbQAAAAAB + version: 6 + 2,-2: + ind: 2,-2 + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAAAAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAAAZQAAAAACegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAACZQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAABdwAAAAAAdwAAAAACegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: QQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAGgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAADYwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYwAAAAABYwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYwAAAAABYwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAATQAAAAABTQAAAAADegAAAAAAQQAAAAAAXwAAAAADYwAAAAABMwAAAAABTgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAABTQAAAAADegAAAAAAegAAAAAAXwAAAAACYwAAAAACMwAAAAADTgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAXwAAAAABYwAAAAABMwAAAAACTgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXwAAAAABYwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXwAAAAABQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAIAAAAAAAIAAAAAACIAAAAAAATgAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAegAAAAAAIAAAAAABIAAAAAAAIAAAAAABTgAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAdwAAAAAD + version: 6 + 4,0: + ind: 4,0 + tiles: bQAAAAABbQAAAAACbQAAAAADbQAAAAABbQAAAAABbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAABbQAAAAABbQAAAAABTgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAbQAAAAADbQAAAAADegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAABWgAAAAACWgAAAAABWgAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAACdwAAAAAAdwAAAAACWgAAAAADWgAAAAABTQAAAAABWgAAAAAAWgAAAAADTQAAAAABWgAAAAAAWgAAAAADTgAAAAAAZQAAAAABZQAAAAAAZQAAAAAATgAAAAAAdwAAAAAATQAAAAAAdwAAAAADWgAAAAADTQAAAAADWgAAAAACWgAAAAACTQAAAAAAWgAAAAACWgAAAAACWgAAAAADTgAAAAAAZQAAAAADZQAAAAABZQAAAAACTgAAAAAAdwAAAAADTQAAAAACdwAAAAADWgAAAAACWgAAAAADWgAAAAABWgAAAAADWgAAAAABWgAAAAADWgAAAAACWgAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAADdwAAAAADdwAAAAADZQAAAAACZQAAAAADTgAAAAAATgAAAAAAegAAAAAAZQAAAAADZQAAAAADegAAAAAATgAAAAAAZQAAAAADTgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAZQAAAAADZQAAAAAATgAAAAAATgAAAAAAegAAAAAAZQAAAAACZQAAAAADegAAAAAATgAAAAAAZQAAAAACTgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAZQAAAAABZQAAAAADZQAAAAAATgAAAAAAegAAAAAAZQAAAAABZQAAAAACegAAAAAATgAAAAAAZQAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAZQAAAAADegAAAAAATgAAAAAATgAAAAAAegAAAAAAZQAAAAADZQAAAAACegAAAAAATgAAAAAAZQAAAAADTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAAZQAAAAACZQAAAAADTgAAAAAATgAAAAAAZQAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZQAAAAADTgAAAAAATgAAAAAAZQAAAAABZQAAAAACZQAAAAABZQAAAAADZQAAAAABZQAAAAABZQAAAAACZQAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZQAAAAACegAAAAAATgAAAAAAZQAAAAAAZQAAAAADZQAAAAAAZQAAAAABZQAAAAABZQAAAAADZQAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZQAAAAADZQAAAAABZQAAAAADZQAAAAAAZQAAAAAAZQAAAAACZQAAAAADZQAAAAADZQAAAAADZQAAAAACTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAADZQAAAAAAZQAAAAABZQAAAAAAZQAAAAACZQAAAAADZQAAAAABZQAAAAADZQAAAAADZQAAAAACTgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAZQAAAAACegAAAAAAZQAAAAACTgAAAAAAegAAAAAATgAAAAAAZQAAAAACZQAAAAADZQAAAAABZQAAAAACTgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAA + version: 6 + 5,0: + ind: 5,0 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAMwAAAAABMwAAAAACTgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAdwAAAAADdwAAAAADdwAAAAACdwAAAAADdwAAAAADdwAAAAABdwAAAAABdwAAAAABdwAAAAACdwAAAAADdwAAAAACdwAAAAABdwAAAAADdwAAAAACdwAAAAACTgAAAAAAdwAAAAAAdwAAAAABdwAAAAADTQAAAAADTQAAAAAAdwAAAAABdwAAAAADTQAAAAADdwAAAAAAdwAAAAAATQAAAAADTQAAAAAAdwAAAAAAdwAAAAACTQAAAAADdwAAAAADdwAAAAABdwAAAAACdwAAAAAATQAAAAADTQAAAAADdwAAAAAAdwAAAAAATQAAAAACdwAAAAACdwAAAAABTQAAAAACTQAAAAADdwAAAAABdwAAAAAATQAAAAACdwAAAAADdwAAAAACdwAAAAABdwAAAAACdwAAAAABdwAAAAACdwAAAAABdwAAAAACdwAAAAAAdwAAAAABdwAAAAACdwAAAAACdwAAAAADdwAAAAADdwAAAAADdwAAAAABTgAAAAAAdwAAAAAAdwAAAAACTgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAHgAAAAACHgAAAAACHgAAAAAAegAAAAAAdwAAAAADdwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAADegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAABHgAAAAABHgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAABHgAAAAABTgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAQQAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAdwAAAAADdwAAAAAAegAAAAAAdwAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAdwAAAAACegAAAAAAegAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAAIwAAAAACIwAAAAACTgAAAAAATgAAAAAAegAAAAAAdwAAAAABdwAAAAADegAAAAAAdwAAAAABegAAAAAAQQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAACMgAAAAAAMgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAABMgAAAAAAMgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAWgAAAAABTQAAAAABTQAAAAACWgAAAAADMgAAAAAAMgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAABTQAAAAADTQAAAAABWgAAAAACWgAAAAABWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAABWgAAAAABWgAAAAABWgAAAAAAHgAAAAACHgAAAAACegAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAABdwAAAAADTgAAAAAATgAAAAAATgAAAAAAHgAAAAAAHgAAAAACQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAJQAAAAADJQAAAAACJQAAAAAAdwAAAAABdwAAAAADJQAAAAACJQAAAAABJQAAAAABHgAAAAACHgAAAAABegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAJQAAAAADJQAAAAADJQAAAAACIwAAAAADIwAAAAAAJQAAAAAAJQAAAAADJQAAAAAAHgAAAAAAHgAAAAABegAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAACTgAAAAAAJQAAAAAAJQAAAAAAJQAAAAADIwAAAAACIwAAAAAAJQAAAAABJQAAAAABJQAAAAACHgAAAAAAHgAAAAACTgAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAADHgAAAAADJQAAAAADJQAAAAABJQAAAAACIwAAAAABIwAAAAACJQAAAAADJQAAAAAAJQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAADTgAAAAAAJQAAAAABJQAAAAACJQAAAAACIwAAAAACIwAAAAADJQAAAAABJQAAAAAAJQAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAADHgAAAAABHgAAAAABHgAAAAACHgAAAAACJQAAAAACJQAAAAAAJQAAAAAAIwAAAAABIwAAAAADJQAAAAADJQAAAAADJQAAAAACHgAAAAACHgAAAAADTgAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAAAegAAAAAAJQAAAAAAJQAAAAABJQAAAAADIwAAAAADIwAAAAACJQAAAAACJQAAAAAAJQAAAAABHgAAAAAAHgAAAAADegAAAAAAHgAAAAADHgAAAAADHgAAAAACegAAAAAAegAAAAAATgAAAAAAHgAAAAABegAAAAAATgAAAAAAUAAAAAAATgAAAAAAegAAAAAAegAAAAAA + version: 6 + 0,-3: + ind: 0,-3 + tiles: YwAAAAABYwAAAAADYwAAAAADYwAAAAACYwAAAAACYwAAAAAAYwAAAAACYwAAAAABYwAAAAADYwAAAAACYwAAAAADYwAAAAAAYwAAAAADYwAAAAABYwAAAAADYwAAAAABYwAAAAACYwAAAAADYwAAAAACYwAAAAACYwAAAAACYwAAAAABYwAAAAADYwAAAAABYwAAAAACYwAAAAABYwAAAAABYwAAAAADYwAAAAACYwAAAAADYwAAAAACYwAAAAABegAAAAAAegAAAAAAegAAAAAATgAAAAAAJwAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAJQAAAAACWgAAAAAATgAAAAAAegAAAAAATgAAAAAAWgAAAAAAWgAAAAABegAAAAAAJwAAAAAAJwAAAAACJwAAAAADJwAAAAADJwAAAAAAJwAAAAADTgAAAAAAYwAAAAABJQAAAAADJQAAAAADYwAAAAAATgAAAAAAPQAAAAAAWgAAAAAAWgAAAAACegAAAAAAJwAAAAAAJwAAAAACJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAADTgAAAAAAYwAAAAADJQAAAAACJQAAAAADYwAAAAABTgAAAAAAPQAAAAAAWgAAAAABWgAAAAADegAAAAAAJwAAAAACJwAAAAADJwAAAAACJwAAAAAAegAAAAAAegAAAAAAegAAAAAAYwAAAAABJQAAAAACJQAAAAABYwAAAAABegAAAAAAegAAAAAAWgAAAAABWgAAAAABegAAAAAAJwAAAAACJwAAAAABegAAAAAAegAAAAAAegAAAAAAYwAAAAADYwAAAAABYwAAAAACJQAAAAAAJQAAAAADYwAAAAACUQAAAAAAegAAAAAAWgAAAAADegAAAAAAegAAAAAATgAAAAAAJwAAAAAAegAAAAAAYwAAAAACJQAAAAABJQAAAAABJQAAAAACJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAUQAAAAAAegAAAAAAYwAAAAAAYwAAAAADYwAAAAABYwAAAAADYwAAAAACYwAAAAAAYwAAAAADJQAAAAAAJQAAAAADJQAAAAACJQAAAAADTQAAAAACTQAAAAAAJQAAAAABJQAAAAABJQAAAAABYwAAAAABYwAAAAACYwAAAAABYwAAAAAAYwAAAAAAYwAAAAABYwAAAAACJQAAAAADJQAAAAADTQAAAAAAYwAAAAAATQAAAAABTQAAAAABYwAAAAAATQAAAAADJQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYwAAAAABJQAAAAADJQAAAAADYwAAAAACYwAAAAABYwAAAAACYwAAAAACYwAAAAADYwAAAAAAJQAAAAABegAAAAAAeAAAAAACeAAAAAABeAAAAAADeAAAAAAAegAAAAAAYwAAAAABJQAAAAABJQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAJQAAAAABeAAAAAABeAAAAAACeAAAAAACeAAAAAAAeAAAAAABegAAAAAAYwAAAAAAIwAAAAACIwAAAAACegAAAAAAIwAAAAABIwAAAAACIwAAAAABIwAAAAAAegAAAAAAIwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAIwAAAAACIwAAAAABIwAAAAAAIwAAAAADegAAAAAAQQAAAAAAeAAAAAAAeAAAAAAAeAAAAAABeAAAAAADeAAAAAADegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAADIwAAAAACIwAAAAAAQQAAAAAAegAAAAAAeAAAAAAAeAAAAAADeAAAAAABeAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAIwAAAAADIwAAAAAAIwAAAAACIwAAAAAAIwAAAAADIwAAAAADQQAAAAAA + version: 6 + 2,-3: + ind: 2,-3 + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACEQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADEQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADEQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAEQAAAAAAEQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABEQAAAAAAegAAAAAAawAAAAABaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAACaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAawAAAAABegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAATgAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: MgAAAAAAMgAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAMgAAAAAAMgAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAMgAAAAAAMgAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAABegAAAAAAegAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAABegAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAADegAAAAAAeAAAAAAAeAAAAAACeAAAAAABTgAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAAAegAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAACegAAAAAAeAAAAAACeAAAAAADeAAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAADHgAAAAABHgAAAAABHgAAAAABHgAAAAACHgAAAAADHgAAAAADHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAADHgAAAAABHgAAAAADegAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAADegAAAAAAeAAAAAAAeAAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAABeAAAAAACeAAAAAAAeAAAAAABegAAAAAATgAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAADTgAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAADHgAAAAABeAAAAAACeAAAAAAAeAAAAAACegAAAAAATgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAACTgAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAAAHgAAAAABegAAAAAAeAAAAAAAeAAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAA + version: 6 + 4,-1: + ind: 4,-1 + tiles: IwAAAAADegAAAAAAbQAAAAACbQAAAAACbQAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAAAbQAAAAACbQAAAAACbQAAAAAAbQAAAAABbQAAAAAAbQAAAAADbQAAAAACegAAAAAAegAAAAAAbQAAAAAAbQAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAABbQAAAAAAbQAAAAABbQAAAAADbQAAAAAAbQAAAAABbQAAAAADbQAAAAABbQAAAAABbQAAAAAAbQAAAAACbQAAAAAAbQAAAAABegAAAAAAegAAAAAAcgAAAAADcgAAAAACcgAAAAADegAAAAAATgAAAAAAbQAAAAADTgAAAAAAegAAAAAAbQAAAAABbQAAAAAAbQAAAAACbQAAAAADbQAAAAABbQAAAAAAbQAAAAACbQAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAAAbQAAAAAAbQAAAAADbQAAAAADegAAAAAAegAAAAAATgAAAAAAbQAAAAADbQAAAAAAbQAAAAABbQAAAAADbQAAAAADbQAAAAABbQAAAAAAbQAAAAABbQAAAAACbQAAAAACbQAAAAADbQAAAAACbQAAAAAAegAAAAAAHgAAAAADHgAAAAACbQAAAAACbQAAAAAAbQAAAAABbQAAAAACbQAAAAAAbQAAAAADbQAAAAABbQAAAAABbQAAAAADbQAAAAADbQAAAAABbQAAAAACbQAAAAABegAAAAAAHgAAAAABHgAAAAACbQAAAAAAbQAAAAABbQAAAAADbQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAACegAAAAAAHgAAAAAAHgAAAAABbQAAAAACbQAAAAAAbQAAAAABbQAAAAACTgAAAAAAbQAAAAABbQAAAAAAbQAAAAADegAAAAAAbQAAAAAAbQAAAAADbQAAAAABbQAAAAACegAAAAAAHgAAAAAAHgAAAAABbQAAAAADbQAAAAACbQAAAAADbQAAAAABbQAAAAABbQAAAAADbQAAAAABbQAAAAADegAAAAAAegAAAAAAbQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADbQAAAAADbQAAAAADbQAAAAAAbQAAAAACTgAAAAAAbQAAAAABbQAAAAABbQAAAAACegAAAAAATQAAAAADLgAAAAACTQAAAAACTQAAAAABTQAAAAACegAAAAAAHgAAAAACTgAAAAAATgAAAAAATgAAAAAAbQAAAAAAegAAAAAAbQAAAAADegAAAAAAegAAAAAAegAAAAAATQAAAAABLgAAAAACLgAAAAACLgAAAAAATQAAAAABegAAAAAAegAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAABegAAAAAAbQAAAAADbQAAAAACegAAAAAATQAAAAADTQAAAAADLgAAAAACLgAAAAADLgAAAAACTQAAAAAATgAAAAAAdwAAAAABbQAAAAACbQAAAAABbQAAAAADbQAAAAACbQAAAAABbQAAAAADbQAAAAACegAAAAAATQAAAAAALgAAAAABLgAAAAACLgAAAAACLgAAAAABLgAAAAADdwAAAAADdwAAAAABbQAAAAAAbQAAAAABbQAAAAAAbQAAAAABegAAAAAAbQAAAAACbQAAAAACegAAAAAATQAAAAAALgAAAAAATQAAAAABTQAAAAACTQAAAAAATQAAAAABegAAAAAAdwAAAAADTgAAAAAAbQAAAAACbQAAAAAATgAAAAAAegAAAAAAbQAAAAABTgAAAAAAegAAAAAALgAAAAACLgAAAAACTQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAABbQAAAAAAbQAAAAABbQAAAAADbQAAAAADbQAAAAACbQAAAAADbQAAAAACbQAAAAABbQAAAAABTgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 4,1: + ind: 4,1 + tiles: ZQAAAAACegAAAAAAZQAAAAADZQAAAAACegAAAAAATgAAAAAAZQAAAAABZQAAAAADZQAAAAACZQAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZQAAAAACegAAAAAAZQAAAAABZQAAAAACegAAAAAATgAAAAAAZQAAAAAAZQAAAAADZQAAAAABZQAAAAAAZQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAZQAAAAADZQAAAAABZQAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAZQAAAAABZQAAAAADZQAAAAAAZQAAAAABTgAAAAAATgAAAAAAZQAAAAACZQAAAAAAZQAAAAACTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAABZQAAAAABZQAAAAADZQAAAAAATgAAAAAATgAAAAAAZQAAAAABZQAAAAABZQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZQAAAAADZQAAAAABZQAAAAABZQAAAAACZQAAAAAAZQAAAAACZQAAAAAAZQAAAAABZQAAAAAAZQAAAAACZQAAAAABZQAAAAACZQAAAAADZQAAAAADZQAAAAADZQAAAAAAZQAAAAAAZQAAAAABZQAAAAAAZQAAAAAAegAAAAAAZQAAAAADZQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAAAZQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAACegAAAAAAZQAAAAACZQAAAAAAegAAAAAAZQAAAAABZQAAAAACZQAAAAACZQAAAAABZQAAAAADZQAAAAABZQAAAAADZQAAAAACZQAAAAACZQAAAAAAZQAAAAAAZQAAAAADegAAAAAAZQAAAAACZQAAAAACegAAAAAAZQAAAAAAZQAAAAABTgAAAAAAZQAAAAACZQAAAAADZQAAAAAAZQAAAAABZQAAAAACZQAAAAAAZQAAAAABZQAAAAACZQAAAAABZQAAAAADZQAAAAABZQAAAAACZQAAAAAAZQAAAAADZQAAAAABZQAAAAABZQAAAAAAZQAAAAACZQAAAAADZQAAAAACZQAAAAAAZQAAAAABZQAAAAABZQAAAAAAZQAAAAADZQAAAAAAZQAAAAAAZQAAAAADZQAAAAACZQAAAAABZQAAAAADZQAAAAADZQAAAAABZQAAAAACZQAAAAADZQAAAAADZQAAAAAAZQAAAAAAZQAAAAACZQAAAAACZQAAAAACegAAAAAAZQAAAAADZQAAAAADegAAAAAAZQAAAAAAZQAAAAAAegAAAAAAZQAAAAACZQAAAAACZQAAAAAAZQAAAAACZQAAAAAAZQAAAAAAZQAAAAABZQAAAAADZQAAAAADegAAAAAAZQAAAAABZQAAAAADegAAAAAAZQAAAAAAZQAAAAADegAAAAAAZQAAAAACZQAAAAACZQAAAAABZQAAAAADZQAAAAADZQAAAAADZQAAAAACZQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 3,-2: + ind: 3,-2 + tiles: aQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAATgAAAAAAZQAAAAAAZQAAAAABZQAAAAADQQAAAAAAQQAAAAAAZQAAAAADZQAAAAACZQAAAAADZQAAAAAAZQAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAATgAAAAAAZQAAAAAAZQAAAAABZQAAAAAAQQAAAAAAQQAAAAAAZQAAAAABZQAAAAACZQAAAAADZQAAAAAAZQAAAAAAQQAAAAAAZQAAAAAAZQAAAAACZQAAAAABZQAAAAADZQAAAAACZQAAAAABZQAAAAABZQAAAAABZQAAAAACZQAAAAAAZQAAAAACZQAAAAABZQAAAAAAZQAAAAABZQAAAAACZQAAAAABZQAAAAABZQAAAAAAZQAAAAADZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAADZQAAAAACZQAAAAABZQAAAAADZQAAAAAAZQAAAAADZQAAAAABZQAAAAAAZQAAAAADTgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAATQAAAAADUQAAAAAAegAAAAAAWgAAAAADegAAAAAAaQAAAAAAegAAAAAAegAAAAAAIwAAAAACIwAAAAABIwAAAAADIwAAAAADegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAUQAAAAAATQAAAAADegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAIwAAAAABIwAAAAAAIwAAAAABIwAAAAAD + version: 6 + 4,-2: + ind: 4,-2 + tiles: egAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAZQAAAAABegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAZQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAADZQAAAAABTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAADZQAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAIwAAAAAAIwAAAAADIwAAAAADIwAAAAAAegAAAAAAbQAAAAACbQAAAAACbQAAAAAAbQAAAAABbQAAAAACegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAIwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAADbQAAAAACbQAAAAADbQAAAAADegAAAAAAbQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAA + version: 6 + 2,-4: + ind: 2,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-4: + ind: 1,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAegAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAegAAAAAAQQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAQQAAAAAAegAAAAAAQQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAQQAAAAAAegAAAAAAQQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAQQAAAAAAegAAAAAAQQAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAQQAAAAAAegAAAAAAQQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAQQAAAAAAegAAAAAAQQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAQQAAAAAAegAAAAAAQQAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAYwAAAAAAQQAAAAAAYwAAAAADQQAAAAAAYwAAAAACYwAAAAADYwAAAAADYwAAAAAAYwAAAAABQQAAAAAAYwAAAAACQQAAAAAAYwAAAAADYwAAAAAAYwAAAAADegAAAAAAYwAAAAADYwAAAAACYwAAAAABYwAAAAAAYwAAAAACYwAAAAAAYwAAAAADYwAAAAAAYwAAAAACYwAAAAACYwAAAAAAYwAAAAACYwAAAAADYwAAAAABYwAAAAACegAAAAAA + version: 6 + 0,-4: + ind: 0,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAQQAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAQQAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAQQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAQQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAYwAAAAADQQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAABYwAAAAAAYwAAAAADQQAAAAAAYwAAAAACYwAAAAADYwAAAAAAYwAAAAADYwAAAAACYwAAAAACYwAAAAACYwAAAAAAYwAAAAACYwAAAAADYwAAAAABYwAAAAAAYwAAAAADYwAAAAACYwAAAAACYwAAAAABYwAAAAABYwAAAAABYwAAAAABYwAAAAABYwAAAAACYwAAAAADYwAAAAAC + version: 6 + -1,-4: + ind: -1,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYwAAAAADYwAAAAAAYwAAAAADYwAAAAACYwAAAAABYwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAAAYwAAAAADYwAAAAAB + version: 6 + -1,-3: + ind: -1,-3 + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAYwAAAAADYwAAAAADYwAAAAAAYwAAAAABYwAAAAADYwAAAAABYQAAAAAAYQAAAAAAYQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYwAAAAABYwAAAAABYwAAAAACYQAAAAAAYQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAACegAAAAAAWgAAAAADWgAAAAACWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAABegAAAAAAWgAAAAABWgAAAAABWgAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAACWgAAAAACWgAAAAADWgAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABegAAAAAAWgAAAAADWgAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAABdwAAAAABFAAAAAADegAAAAAAeAAAAAADeAAAAAACeAAAAAABegAAAAAAeAAAAAACeAAAAAACeAAAAAABYwAAAAADegAAAAAAegAAAAAAdwAAAAADFAAAAAAAFAAAAAADdwAAAAADFAAAAAAEegAAAAAAeAAAAAAAeAAAAAACeAAAAAACegAAAAAAFAAAAAAAeAAAAAABegAAAAAAYwAAAAAAegAAAAAAegAAAAAAegAAAAAAFAAAAAAEFAAAAAABFAAAAAADFAAAAAADegAAAAAAeAAAAAAAeAAAAAADeAAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAYwAAAAACegAAAAAAegAAAAAAegAAAAAAdwAAAAACFAAAAAACdwAAAAADdwAAAAADegAAAAAAeAAAAAABeAAAAAABeAAAAAADeAAAAAACYwAAAAACYwAAAAABYwAAAAACYwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAADegAAAAAAYwAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAYQAAAAAAawAAAAAAawAAAAADYQAAAAAAegAAAAAAeAAAAAACeAAAAAABeAAAAAACeAAAAAADegAAAAAAYwAAAAABegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAawAAAAABawAAAAABYQAAAAAAegAAAAAAeAAAAAAAeAAAAAACeAAAAAABeAAAAAAAegAAAAAAYwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYQAAAAAAYQAAAAAAegAAAAAAeAAAAAAAeAAAAAABeAAAAAACeAAAAAACegAAAAAAYwAAAAAB + version: 6 + -2,-3: + ind: -2,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAawAAAAACAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAawAAAAACAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAawAAAAABAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAawAAAAACAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeAAAAAAAeAAAAAADeAAAAAACeAAAAAABeAAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAADeAAAAAADeAAAAAADeAAAAAABeAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAawAAAAABaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA + version: 6 + 1,-3: + ind: 1,-3 + tiles: YwAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAADYwAAAAABYwAAAAABYwAAAAAAYwAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAACYwAAAAABegAAAAAAYwAAAAABYwAAAAADYwAAAAABYwAAAAABYwAAAAABYwAAAAACYwAAAAAAYwAAAAABYwAAAAACYwAAAAABYwAAAAADYwAAAAAAYwAAAAADYwAAAAADYwAAAAACegAAAAAATgAAAAAAegAAAAAAegAAAAAAPQAAAAAAegAAAAAAegAAAAAAYwAAAAADYwAAAAAAYwAAAAADYwAAAAAAYwAAAAADYwAAAAADYwAAAAACegAAAAAAegAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAYwAAAAAAYwAAAAAAYwAAAAADYwAAAAADYwAAAAADYwAAAAADYwAAAAABegAAAAAAEQAAAAAAEQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAYwAAAAAAYwAAAAADYwAAAAAAYwAAAAAAYwAAAAADYwAAAAAAYwAAAAAAegAAAAAAEQAAAAAAHwAAAAABPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEQAAAAAAHwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAYwAAAAADKQAAAAAAYwAAAAACYwAAAAAAYwAAAAABYwAAAAADYwAAAAABegAAAAAAEQAAAAAAHwAAAAAATgAAAAAAPQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYwAAAAABKQAAAAACYwAAAAADYwAAAAACYwAAAAACYwAAAAABYwAAAAAAegAAAAAAEQAAAAAAHwAAAAACJQAAAAAAYwAAAAADYwAAAAACYwAAAAADYwAAAAADYwAAAAAAYwAAAAACYwAAAAADYwAAAAABYwAAAAADYwAAAAADYwAAAAACYwAAAAADegAAAAAAEQAAAAAAHwAAAAABJQAAAAACYwAAAAADYwAAAAACYwAAAAACYwAAAAABYwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYwAAAAACegAAAAAAEQAAAAAAEQAAAAAAJQAAAAAAYwAAAAACYwAAAAACYwAAAAACYwAAAAACYwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAPwAAAAAAegAAAAAAegAAAAAAegAAAAAAJQAAAAAAYwAAAAAAegAAAAAAegAAAAAAQgAAAAAAegAAAAAAegAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAIwAAAAADYwAAAAACegAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAegAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAQQAAAAAAegAAAAAAegAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAQQAAAAAAQQAAAAAAegAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAegAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAegAAAAAAPwAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAegAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAegAAAAAAPwAAAAAAPwAAAAAAegAAAAAAPwAAAAAA + version: 6 + 5,-1: + ind: 5,-1 + tiles: bQAAAAACbQAAAAABbQAAAAABbQAAAAADbQAAAAAAbQAAAAABbQAAAAADbQAAAAABegAAAAAAQQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAbQAAAAABbQAAAAACbQAAAAAAbQAAAAADbQAAAAADbQAAAAACbQAAAAABbQAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAbQAAAAAAbQAAAAAAbQAAAAABbQAAAAABbQAAAAADbQAAAAAAbQAAAAADbQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAHgAAAAAATgAAAAAAegAAAAAAbQAAAAAAbQAAAAABbQAAAAAAbQAAAAABbQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAHgAAAAABHgAAAAADegAAAAAAbQAAAAADbQAAAAACbQAAAAAAbQAAAAABbQAAAAACegAAAAAAaQAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAaQAAAAAAHgAAAAABHgAAAAABegAAAAAAegAAAAAATgAAAAAAbQAAAAABTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAHgAAAAADHgAAAAABHgAAAAABegAAAAAAbQAAAAAAbQAAAAADbQAAAAAATgAAAAAAbQAAAAADbQAAAAAAbQAAAAAAbQAAAAACbQAAAAABegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAADHgAAAAABegAAAAAAbQAAAAACbQAAAAACbQAAAAADbQAAAAACbQAAAAAAbQAAAAAAbQAAAAACbQAAAAACbQAAAAACegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAAAegAAAAAATgAAAAAAbQAAAAABTgAAAAAAegAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAAAbQAAAAADTgAAAAAAeQAAAAAAegAAAAAAHgAAAAABHgAAAAABHgAAAAADegAAAAAAbQAAAAAAbQAAAAADbQAAAAADegAAAAAAbQAAAAABbQAAAAAAbQAAAAACbQAAAAAAbQAAAAADTgAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAACbQAAAAADbQAAAAABegAAAAAAbQAAAAADbQAAAAABbQAAAAACbQAAAAAAbQAAAAACegAAAAAAegAAAAAAegAAAAAAdwAAAAABdwAAAAAAegAAAAAAbQAAAAADbQAAAAABbQAAAAADbQAAAAABegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAdwAAAAABdwAAAAACegAAAAAAbQAAAAACbQAAAAACbQAAAAABbQAAAAADegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAdwAAAAABdwAAAAABegAAAAAAbQAAAAADbQAAAAAAbQAAAAADbQAAAAABegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAMwAAAAAAMwAAAAAA + version: 6 + 6,0: + ind: 6,0 + tiles: MwAAAAACdwAAAAACdwAAAAACdwAAAAADdwAAAAABdwAAAAACegAAAAAAeAAAAAACeAAAAAABeAAAAAADeAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAADdwAAAAAAdwAAAAACdwAAAAACdwAAAAACdwAAAAABdwAAAAACegAAAAAAeAAAAAABeAAAAAACeAAAAAADeAAAAAABegAAAAAAEgAAAAAAEgAAAAAAIwAAAAADIwAAAAACdwAAAAADdwAAAAACdwAAAAADdwAAAAACdwAAAAAAdwAAAAABegAAAAAAegAAAAAAegAAAAAAIwAAAAAAegAAAAAAegAAAAAAEgAAAAAAEgAAAAAAIwAAAAACEgAAAAAAdwAAAAACdwAAAAAAdwAAAAAAdwAAAAABdwAAAAAAdwAAAAABegAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAAAIwAAAAABIwAAAAABIwAAAAACIwAAAAADEgAAAAAAdwAAAAAAdwAAAAABdwAAAAAAdwAAAAACdwAAAAABdwAAAAAAIwAAAAADIwAAAAAAIwAAAAABIwAAAAABIwAAAAACIwAAAAAAIwAAAAADIwAAAAAAIwAAAAADEgAAAAAAdwAAAAACdwAAAAADdwAAAAADdwAAAAACdwAAAAABdwAAAAABegAAAAAAegAAAAAAIwAAAAADegAAAAAAegAAAAAAegAAAAAAEgAAAAAAEgAAAAAAIwAAAAABEgAAAAAAdwAAAAAAdwAAAAADdwAAAAABdwAAAAAAdwAAAAABdwAAAAABegAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAADegAAAAAAEgAAAAAAEgAAAAAAIwAAAAACIwAAAAACegAAAAAAdwAAAAACdwAAAAAAdwAAAAADdwAAAAACdwAAAAADegAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAABegAAAAAAegAAAAAAIwAAAAABIwAAAAACIwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAABegAAAAAANwAAAAAAIwAAAAAATQAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAACHgAAAAADHgAAAAADHgAAAAADegAAAAAANwAAAAAAIwAAAAAATQAAAAAATgAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAAAHgAAAAABHgAAAAACegAAAAAAIwAAAAAAIwAAAAAAIwAAAAABegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAACegAAAAAAIwAAAAABIwAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAATgAAAAAAeQAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAATgAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 5,-2: + ind: 5,-2 + tiles: eQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAACbQAAAAABbQAAAAADbQAAAAABbQAAAAACbQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAegAAAAAAHgAAAAAAegAAAAAAQQAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAegAAAAAAHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAHgAAAAACegAAAAAAPwAAAAAAPwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAABdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAYQAAAAAAPwAAAAAAdwAAAAABdwAAAAADPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAPwAAAAAAdwAAAAAAdwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAdwAAAAAAdwAAAAACPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAdwAAAAABdwAAAAABPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAaQAAAAAAaQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAdwAAAAAAdwAAAAABPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAdwAAAAAAdwAAAAAAPwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,3: + ind: 2,3 + tiles: PwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,2: + ind: -1,2 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAACHgAAAAACHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAAAHgAAAAABHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAADJAAAAAAAJAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAADJAAAAAAAJAAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAUAAAAAAAUAAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAHgAAAAAAHgAAAAADegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAUAAAAAAAUAAAAAAAIwAAAAADTgAAAAAAIwAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAAAHgAAAAADegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAUAAAAAAAUAAAAAAAIwAAAAADTgAAAAAAIwAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAABHgAAAAAAegAAAAAAegAAAAAATgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIwAAAAAATgAAAAAAIwAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAAAHgAAAAAA + version: 6 + -2,2: + ind: -2,2 + tiles: QQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAACeAAAAAACegAAAAAAegAAAAAAeAAAAAABeAAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAeAAAAAACeAAAAAADeAAAAAAAeAAAAAACeAAAAAAAeAAAAAAAeAAAAAACegAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAeAAAAAADeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAADeAAAAAAAeAAAAAADTgAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAeAAAAAABeAAAAAACeAAAAAABeAAAAAAAeAAAAAADeAAAAAADeAAAAAACTgAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAeAAAAAACeAAAAAABeAAAAAADeAAAAAADeAAAAAAAeAAAAAAATgAAAAAAAAAAAAAAegAAAAAAQQAAAAAAaQAAAAAA + version: 6 + -2,3: + ind: -2,3 + tiles: AAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAegAAAAAAQQAAAAAAaQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAQQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAawAAAAADaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAQQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,3: + ind: -1,3 + tiles: egAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAUAAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAUAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAQQAAAAAAQQAAAAAAegAAAAAAdwAAAAADFAAAAAACdwAAAAACegAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAQQAAAAAAaQAAAAAAegAAAAAAdwAAAAACdwAAAAACdwAAAAABegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAaQAAAAAAaQAAAAAAegAAAAAAFAAAAAAGdwAAAAAAFAAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATQAAAAABTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,3: + ind: 0,3 + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAABegAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAQQAAAAAAQQAAAAAAegAAAAAAHgAAAAACHgAAAAACHgAAAAABegAAAAAAHgAAAAACHgAAAAABHgAAAAABegAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAegAAAAAAaQAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAABHgAAAAABegAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACegAAAAAAHgAAAAABHgAAAAADHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAawAAAAAAawAAAAADawAAAAABQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAATQAAAAAATQAAAAABTQAAAAACTQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAATQAAAAABTQAAAAADTQAAAAABTQAAAAABTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAATQAAAAADTQAAAAABTQAAAAADTgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,3: + ind: 1,3 + tiles: egAAAAAAHgAAAAABHgAAAAAAHgAAAAAAegAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAegAAAAAAIwAAAAACIwAAAAAAIwAAAAABIwAAAAACQQAAAAAAQQAAAAAAegAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAABHgAAAAADUAAAAAAAUAAAAAAAUAAAAAAAegAAAAAAawAAAAACIwAAAAACawAAAAADawAAAAABawAAAAACIwAAAAACPwAAAAAAegAAAAAAHgAAAAABHgAAAAABHgAAAAABegAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAegAAAAAAIwAAAAAAIwAAAAAAIwAAAAACIwAAAAACIwAAAAAAIwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAUAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAABTQAAAAADTQAAAAADTQAAAAADTQAAAAAATQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATQAAAAACTQAAAAADTQAAAAACTQAAAAABTQAAAAABTQAAAAACTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATQAAAAABTQAAAAABTQAAAAAATQAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,2: + ind: 3,2 + tiles: egAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAADTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAADTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAABegAAAAAAHgAAAAABTQAAAAABHgAAAAABHgAAAAADTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAACTQAAAAAATQAAAAAAHgAAAAAATgAAAAAATQAAAAAATQAAAAAATQAAAAABHgAAAAADTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAAAHgAAAAABTQAAAAAATQAAAAABTQAAAAADTQAAAAABHgAAAAABHgAAAAAATQAAAAAAHgAAAAABHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAegAAAAAAegAAAAAAHgAAAAAATQAAAAACTQAAAAADHgAAAAABTgAAAAAATQAAAAACTQAAAAABTQAAAAAAHgAAAAABTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAABegAAAAAAHgAAAAAATQAAAAADHgAAAAADHgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAABTgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-1: + ind: -3,-1 + tiles: WgAAAAAAWgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAACegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAQQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAWgAAAAACWgAAAAABWgAAAAABWgAAAAABWgAAAAABegAAAAAAWgAAAAABWgAAAAACegAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAegAAAAAATgAAAAAATgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAACWgAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAMwAAAAAAMwAAAAAA + version: 6 + -4,-1: + ind: -4,-1 + tiles: egAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAADWgAAAAACWgAAAAABTgAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAADWgAAAAABWgAAAAAATgAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAegAAAAAAegAAAAAATgAAAAAAaQAAAAAAegAAAAAAaQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAMwAAAAAAWgAAAAADWgAAAAACWgAAAAACMwAAAAADTgAAAAAAaQAAAAAAegAAAAAAaQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAMwAAAAABWgAAAAADWgAAAAAAWgAAAAAAMwAAAAADTgAAAAAAaQAAAAAAegAAAAAAaQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAMwAAAAACWgAAAAAAWgAAAAADWgAAAAAAMwAAAAAATgAAAAAAaQAAAAAAegAAAAAAaQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAYQAAAAAAWgAAAAAAWgAAAAAAWgAAAAACegAAAAAATgAAAAAAaQAAAAAAegAAAAAAaQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAYQAAAAAAWgAAAAACWgAAAAACWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAADegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAWgAAAAABWgAAAAADegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAADWgAAAAABaQAAAAAAaQAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAAegAAAAAAQQAAAAAAegAAAAAAQQAAAAAAegAAAAAAdwAAAAADdwAAAAADdwAAAAACegAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAACTgAAAAAAWgAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAACdwAAAAADegAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAADWgAAAAABWgAAAAABegAAAAAAWgAAAAAAegAAAAAAegAAAAAAdwAAAAADdwAAAAADdwAAAAACdwAAAAACegAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAABTgAAAAAAWgAAAAABWgAAAAABTgAAAAAAWgAAAAABegAAAAAAegAAAAAAdwAAAAADdwAAAAAAdwAAAAABdwAAAAACdwAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAAATgAAAAAAWgAAAAADWgAAAAAATgAAAAAAWgAAAAAA + version: 6 + -5,-1: + ind: -5,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAA + version: 6 + -5,0: + ind: -5,0 + tiles: egAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAATgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAATgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAATgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAATgAAAAAAaQAAAAAAeQAAAAAAegAAAAAATgAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAQQAAAAAAAAAAAAAAegAAAAAATgAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAeQAAAAAAegAAAAAATgAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAATgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAATgAAAAAAaQAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAANQAAAAAANQAAAAADNQAAAAADegAAAAAANQAAAAAANQAAAAADNQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAANQAAAAACNQAAAAADNQAAAAACegAAAAAANQAAAAADNQAAAAAANQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAANQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAA + version: 6 + -4,0: + ind: -4,0 + tiles: egAAAAAAegAAAAAAdwAAAAABdwAAAAADdwAAAAABdwAAAAACegAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAAATgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAADegAAAAAAegAAAAAATgAAAAAAKwAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAADTgAAAAAAWgAAAAACegAAAAAAegAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAegAAAAAAYwAAAAABYwAAAAACYwAAAAACYwAAAAADYwAAAAAATgAAAAAAWgAAAAABWgAAAAACTgAAAAAAWgAAAAACegAAAAAAegAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAegAAAAAAYwAAAAABYwAAAAAAYwAAAAACYwAAAAABYwAAAAAAYwAAAAADWgAAAAACWgAAAAADegAAAAAAWgAAAAABegAAAAAAegAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAegAAAAAAYwAAAAADYwAAAAABYwAAAAAAYwAAAAABYwAAAAADTgAAAAAAWgAAAAACWgAAAAACegAAAAAAWgAAAAABaQAAAAAAegAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAegAAAAAAYwAAAAACYwAAAAACYwAAAAAAYwAAAAADYwAAAAACTgAAAAAAWgAAAAAAWgAAAAADegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAAAWgAAAAAAegAAAAAAYwAAAAAAaQAAAAAAegAAAAAAYQAAAAAAWgAAAAABWgAAAAAAWgAAAAABegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAAWgAAAAABegAAAAAAYwAAAAACaQAAAAAAegAAAAAAWgAAAAADWgAAAAABawAAAAADWgAAAAABegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAATgAAAAAATgAAAAAAWgAAAAABWgAAAAABTgAAAAAAYwAAAAAAaQAAAAAAegAAAAAAYQAAAAAAWgAAAAADWgAAAAAAWgAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAATgAAAAAATgAAAAAAWgAAAAACWgAAAAACYwAAAAAAYwAAAAABQQAAAAAAegAAAAAAYQAAAAAAWgAAAAADWgAAAAAAYQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAADWgAAAAAATgAAAAAAYwAAAAACaQAAAAAAegAAAAAAegAAAAAAegAAAAAAYQAAAAAAYQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAACegAAAAAAYwAAAAADaQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAADWgAAAAADegAAAAAAegAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAWgAAAAAAWgAAAAAAegAAAAAAUQAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAADWgAAAAADegAAAAAAUQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAABegAAAAAAegAAAAAA + version: 6 + -4,-2: + ind: -4,-2 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAYwAAAAADYwAAAAADYwAAAAABYwAAAAAAYwAAAAABegAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAATgAAAAAAYwAAAAABYwAAAAADYwAAAAABYwAAAAAAYwAAAAADYwAAAAACegAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAATgAAAAAAYwAAAAAAYwAAAAABYwAAAAABYwAAAAACYwAAAAABYwAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAATgAAAAAAYwAAAAACYwAAAAAAYwAAAAABYwAAAAACYwAAAAAAYwAAAAABTgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAegAAAAAAYwAAAAADYwAAAAACYwAAAAABYwAAAAAAYwAAAAADYwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAeAAAAAABegAAAAAATgAAAAAATgAAAAAAWgAAAAADTgAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAeQAAAAAATgAAAAAAeAAAAAADeAAAAAABegAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAACegAAAAAAaQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAeQAAAAAATgAAAAAAeAAAAAADeAAAAAADegAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAACegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAADegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAATgAAAAAAeAAAAAACeAAAAAACegAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAACegAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAATgAAAAAAeAAAAAAAeAAAAAACeAAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAADegAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAACegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAABWgAAAAABWgAAAAADTgAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAADWgAAAAADWgAAAAAATgAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA + version: 6 + -3,-2: + ind: -3,-2 + tiles: egAAAAAAegAAAAAAZQAAAAADZQAAAAABQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAawAAAAAAUQAAAAAAegAAAAAAZQAAAAAAZQAAAAAAQQAAAAAAQQAAAAAAZQAAAAACZQAAAAADQQAAAAAAQQAAAAAAZQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAUQAAAAAAegAAAAAAZQAAAAACZQAAAAACQQAAAAAAQQAAAAAAZQAAAAABZQAAAAADQQAAAAAAQQAAAAAAZQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAPgAAAAAAZQAAAAABZQAAAAABZQAAAAADZQAAAAABZQAAAAABZQAAAAABZQAAAAABZQAAAAABZQAAAAADZQAAAAABegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAPgAAAAAAegAAAAAAZQAAAAACZQAAAAACZQAAAAAAZQAAAAACZQAAAAACZQAAAAAAZQAAAAACZQAAAAACZQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAZQAAAAACZQAAAAACTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAABWgAAAAABWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAADegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAWgAAAAABegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAABQQAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAACQQAAAAAAWgAAAAABegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAABegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAawAAAAADawAAAAADegAAAAAAWgAAAAACWgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAawAAAAADaQAAAAAAawAAAAAAawAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAUAAAAAAAegAAAAAAaQAAAAAAawAAAAABaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAA + version: 6 + -4,1: + ind: -4,1 + tiles: egAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAMwAAAAAAWgAAAAABWgAAAAADWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAMwAAAAADWgAAAAABWgAAAAACWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAMwAAAAADWgAAAAAAWgAAAAABWgAAAAADMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAMwAAAAAAWgAAAAAAWgAAAAAAWgAAAAADMwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAMwAAAAABWgAAAAABWgAAAAABWgAAAAADMwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAeQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAA + version: 6 + -3,1: + ind: -3,1 + tiles: egAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAKgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAKgAAAAAAKgAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAQQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAA + version: 6 + -4,2: + ind: -4,2 + tiles: eQAAAAAATgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAQQAAAAAAegAAAAAAQQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,2: + ind: -3,2 + tiles: TgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAQQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAawAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -3,-3: + ind: -3,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAZQAAAAABQQAAAAAAQQAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAZQAAAAACQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAZQAAAAACZQAAAAADZQAAAAAAZQAAAAABZQAAAAACZQAAAAACTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAABZQAAAAACZQAAAAADQQAAAAAAQQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAZQAAAAABZQAAAAAAZQAAAAADZQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAACZQAAAAADZQAAAAADZQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAABZQAAAAACZQAAAAACZQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAZQAAAAADZQAAAAACQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAATgAAAAAAZQAAAAAAZQAAAAACQQAAAAAAQQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAATgAAAAAAZQAAAAAAZQAAAAACQQAAAAAAQQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAawAAAAAC + version: 6 + -3,3: + ind: -3,3 + tiles: egAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-4: + ind: -3,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,1: + ind: 5,1 + tiles: TgAAAAAAIwAAAAAAIwAAAAACTgAAAAAATgAAAAAAegAAAAAAdwAAAAABdwAAAAADdwAAAAACdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAXwAAAAADXwAAAAAAXwAAAAABXwAAAAAAZQAAAAADegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAXwAAAAADXwAAAAACXwAAAAABXwAAAAACegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAXwAAAAAAXwAAAAABXwAAAAADXwAAAAABegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAATgAAAAAAZQAAAAAAZQAAAAAAZQAAAAADTgAAAAAAegAAAAAAXwAAAAADXwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAZQAAAAACZQAAAAADZQAAAAACZQAAAAACZQAAAAADXwAAAAACXwAAAAADXwAAAAACegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAXwAAAAABXwAAAAABegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAACZQAAAAABZQAAAAABZQAAAAABTQAAAAACTQAAAAAATQAAAAADTQAAAAAATQAAAAABTQAAAAABTQAAAAABTQAAAAADTgAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAZQAAAAAAZQAAAAACZQAAAAABZQAAAAABTQAAAAADTQAAAAADTQAAAAAATQAAAAADTQAAAAADTQAAAAACTQAAAAACTQAAAAADTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAACZQAAAAADZQAAAAABZQAAAAAATgAAAAAATQAAAAAATQAAAAADTQAAAAACTQAAAAACTQAAAAABegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAABZQAAAAACZQAAAAADZQAAAAADTgAAAAAATQAAAAADTQAAAAADTQAAAAADTQAAAAACTQAAAAABTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAADZQAAAAABZQAAAAABZQAAAAABegAAAAAATQAAAAABTQAAAAADTQAAAAADTQAAAAADTQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAABZQAAAAACZQAAAAABZQAAAAAAegAAAAAATQAAAAABTQAAAAADTQAAAAABegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA + version: 6 + 6,1: + ind: 6,1 + tiles: egAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATwAAAAAATwAAAAAATwAAAAAATgAAAAAATwAAAAAAOgAAAAAATwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATwAAAAAATwAAAAAATwAAAAAATgAAAAAATwAAAAAAOgAAAAAATwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATwAAAAAATwAAAAAATwAAAAAATgAAAAAATwAAAAAATwAAAAAATwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA + version: 6 + 6,-1: + ind: 6,-1 + tiles: eQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAaQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAegAAAAAAeAAAAAACeAAAAAADeAAAAAADegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAMwAAAAAAMwAAAAADegAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeAAAAAADeAAAAAAAeAAAAAACegAAAAAAUQAAAAAAegAAAAAAegAAAAAAegAAAAAAMwAAAAACMwAAAAABegAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAegAAAAAAeAAAAAADeAAAAAADeAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAegAAAAAAegAAAAAAMwAAAAADMwAAAAABegAAAAAAegAAAAAALwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAAAegAAAAAAegAAAAAAUQAAAAAAUQAAAAAAegAAAAAATgAAAAAA + version: 6 + 7,-1: + ind: 7,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAA + version: 6 + 7,0: + ind: 7,0 + tiles: IwAAAAADIwAAAAADIwAAAAABegAAAAAAegAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAANwAAAAAATgAAAAAAIwAAAAAAIwAAAAAAIwAAAAADIwAAAAACTgAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAANwAAAAAATgAAAAAAEgAAAAAAIwAAAAABTQAAAAADTQAAAAADTgAAAAAAAAAAAAAAAAAAAAAATwAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAEgAAAAAAIwAAAAACTQAAAAADTQAAAAACTgAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATgAAAAAATgAAAAAAEgAAAAAAIwAAAAACTQAAAAACTQAAAAAATgAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATgAAAAAATgAAAAAAEgAAAAAAIwAAAAADTQAAAAAATQAAAAADTgAAAAAAAAAAAAAAAAAAAAAATwAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAIwAAAAABIwAAAAACIwAAAAABIwAAAAADTgAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAANwAAAAAATgAAAAAAIwAAAAAAIwAAAAABIwAAAAAAegAAAAAAegAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAANwAAAAAATgAAAAAATQAAAAAATQAAAAABIwAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAATQAAAAACTQAAAAABIwAAAAADTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAIwAAAAACIwAAAAAAIwAAAAACTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 7,1: + ind: 7,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA + version: 6 + 8,1: + ind: 8,1 + tiles: AAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 8,0: + ind: 8,0 + tiles: TgAAAAAATgAAAAAANwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAANwAAAAAATgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAEgAAAAAAEgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAEgAAAAAAEgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAANwAAAAAATgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAANwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 8,-1: + ind: 8,-1 + tiles: AAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 8,-2: + ind: 8,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 6,-2: + ind: 6,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 7,-2: + ind: 7,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,1: + ind: -5,1 + tiles: AAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAA + version: 6 + -5,2: + ind: -5,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,2: + ind: 5,2 + tiles: TgAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,2: + ind: 4,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,-3: + ind: -4,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAZQAAAAAAZQAAAAADZQAAAAABZQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZQAAAAACZQAAAAACZQAAAAACZQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAZQAAAAAAZQAAAAABZQAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAZQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAZQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAZQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -4,3: + ind: -4,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,4: + ind: -3,4 + tiles: AAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-3: + ind: 3,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAA + version: 6 + 4,-3: + ind: 4,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 6,2: + ind: 6,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 7,2: + ind: 7,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 8,2: + ind: 8,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,3: + ind: 3,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,4: + ind: -4,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-4: + ind: -2,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,-3: + ind: 5,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-4: + ind: 3,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,-4: + ind: 4,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -6,0: + ind: -6,0 + tiles: egAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -6,-1: + ind: -6,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -7,-1: + ind: -7,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAA + version: 6 + -7,0: + ind: -7,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -6,1: + ind: -6,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -7,1: + ind: -7,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,-4: + ind: 5,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA + version: 6 + 6,-3: + ind: 6,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 6,-4: + ind: 6,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,-2: + ind: -5,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,-3: + ind: -5,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 10000 + linearDamping: 10000 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - angularDamping: 10000 + linearDamping: 10000 + type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + angle: 1.5707963267948966 rad + color: '#F9FFFEFF' + id: 1 + decals: + 673: 82.29773,-20.971786 + - node: + angle: 1.5707963267948966 rad + color: '#F9FFFEFF' + id: 2 + decals: + 674: 80.25606,-21.044754 + - node: + angle: 1.5707963267948966 rad + color: '#F9FFFEFF' + id: 3 + decals: + 675: 78.29773,-21.023907 + - node: + color: '#DE3A3A96' + id: Arrows + decals: + 4833: 7,-38 + 4834: 7,-38 + 4835: 8,-38 + 4836: 8,-38 + 4847: 11,-42 + 4848: 11,-44 + 4849: 11,-46 + 4850: 11,-46 + 4851: 11,-44 + 4852: 11,-42 + - node: + angle: 3.141592653589793 rad + color: '#DE3A3A96' + id: Arrows + decals: + 4837: 15,-38 + 4838: 15,-38 + 4839: 16,-38 + 4840: 16,-38 + 4841: 12,-42 + 4842: 12,-44 + 4843: 12,-46 + 4844: 12,-42 + 4845: 12,-44 + 4846: 12,-46 + - node: + color: '#0000FBFF' + id: ArrowsGreyscale + decals: + 4674: -52.228264,22.926834 + 4675: -51.759514,22.91641 + - node: + angle: -7.853981633974483 rad + color: '#52B4E996' + id: ArrowsGreyscale + decals: + 11: 9.233474,-8.72483 + - node: + angle: -4.71238898038469 rad + color: '#52B4E996' + id: ArrowsGreyscale + decals: + 10: 8.515765,-4.2123203 + - node: + angle: -3.141592653589793 rad + color: '#52B4E996' + id: ArrowsGreyscale + decals: + 8: 7.486599,-7.749152 + 9: 7.486599,-5.7435927 + - node: + angle: 3.141592653589793 rad + color: '#52B4E9F3' + id: ArrowsGreyscale + decals: + 196: 69,-5 + 197: 69,-4 + 198: 69,-3 + - node: + angle: 3.141592653589793 rad + color: '#D381C996' + id: ArrowsGreyscale + decals: + 84: -10,47 + 85: -10,46 + 86: -8,47 + 87: -8,46 + - node: + color: '#F9FFFEFF' + id: ArrowsGreyscale + decals: + 676: 33.51661,45.785362 + 677: 33.870777,46.191895 + 678: 33.13119,46.191895 + 679: 34.29786,46.556725 + 680: 32.73536,46.556725 + - node: + color: '#FF2E26FF' + id: ArrowsGreyscale + decals: + 4676: -38.229725,32.950005 + 4677: -37.760975,32.92916 + - node: + color: '#FFFFFFFF' + id: Basalt1 + decals: + 199: 9.019701,5.3337154 + - node: + color: '#FFFFFFFF' + id: Basalt2 + decals: + 204: 23.70171,6.4253902 + - node: + color: '#FFFFFFFF' + id: Basalt3 + decals: + 202: 21.337126,8.712261 + 205: 17.370682,0.5151075 + - node: + color: '#FFFFFFFF' + id: Basalt5 + decals: + 201: 6.919083,-0.013748169 + 203: 17.60796,8.753957 + 206: 26.876282,3.9360175 + - node: + color: '#FFFFFFFF' + id: Basalt6 + decals: + 207: 27.032532,8.449569 + - node: + color: '#FFFFFFFF' + id: Basalt7 + decals: + 200: 6.1342845,0.3093922 + 208: 23.081793,-1.9859071 + - node: + angle: 6.283185307179586 rad + color: '#1D1D21FF' + id: Blasto + decals: + 5070: -2.0095859,-42.515045 + - node: + angle: 6.283185307179586 rad + color: '#EFB34196' + id: Blasto + decals: + 5069: -1.9679192,-42.504623 + - node: + angle: -7.853981633974483 rad + color: '#FFFFFFFF' + id: Bot + decals: + 12: -14,-3 + 13: -41,-2 + 14: -42,-2 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 15: -15,7 + 16: -14,7 + 17: -16,7 + 18: 15,-16 + 19: 16,-16 + 98: -14,46 + 99: -14,45 + 100: -14,44 + 101: -13,44 + 102: -13,46 + 103: -13,45 + 108: 34,-1 + 109: 35,-1 + 110: -37,24 + 111: -37,23 + 633: -36,-29 + 634: -36,-30 + 635: -35,-29 + 636: -35,-30 + 653: 48,-30 + 654: 49,-30 + 4578: -60,27 + 4579: -59,27 + 4580: -58,25 + 4581: -58,26 + 5337: -73,-1 + 5338: -72,-1 + 5633: -12,-3 + 5634: -12,-4 + - node: + color: '#DE3A3ABF' + id: Box + decals: + 4732: 7,-36 + 4733: 7,-36 + 4734: 8,-36 + 4735: 8,-36 + 4736: 16,-36 + 4737: 16,-36 + 4738: 15,-36 + 4739: 15,-36 + 4740: 15,-31 + 4741: 15,-31 + 4742: 16,-31 + 4743: 16,-31 + 4744: 7,-31 + 4745: 7,-31 + 4746: 8,-31 + 4747: 8,-31 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 1861: -9,0 + 1862: -10,-1 + 1863: -8,-1 + 1868: -9,-4 + 5694: -44,-31 + 5695: -43,-31 + - node: + angle: 3.141592653589793 rad + color: '#D381C996' + id: BoxGreyscale + decals: + 88: -10,45 + 89: -8,45 + - node: + color: '#791500BF' + id: BrickTileSteelBox + decals: + 4706: 26,20 + 4707: 27,20 + 4708: 28,20 + 4709: 29,20 + 4710: 29,21 + 4711: 28,21 + 4712: 27,21 + 4713: 26,21 + 4714: 26,22 + 4715: 27,22 + 4716: 28,22 + 4717: 27,23 + 4718: 26,23 + 4719: 28,23 + 4720: 29,22 + 4721: 29,23 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 447: 15,-25 + 464: 16,-24 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 446: 8,-25 + 463: 7,-24 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 448: 15,-27 + 465: 16,-28 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 449: 8,-27 + 466: 7,-28 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndE + decals: + 490: 14,-26 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndW + decals: + 489: 9,-26 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 467: 16,-25 + 468: 16,-26 + 469: 16,-27 + 491: 15,-26 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 451: 9,-25 + 452: 10,-25 + 453: 11,-25 + 454: 12,-25 + 455: 13,-25 + 456: 14,-25 + 470: 8,-24 + 471: 9,-24 + 472: 10,-24 + 473: 11,-24 + 474: 12,-24 + 475: 13,-24 + 476: 14,-24 + 477: 15,-24 + 492: 10,-26 + 493: 11,-26 + 494: 12,-26 + 495: 13,-26 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 457: 9,-27 + 458: 10,-27 + 459: 11,-27 + 460: 12,-27 + 461: 13,-27 + 462: 14,-27 + 481: 8,-28 + 482: 9,-28 + 483: 10,-28 + 484: 11,-28 + 485: 12,-28 + 486: 13,-28 + 487: 14,-28 + 488: 15,-28 + 496: 10,-26 + 497: 11,-26 + 498: 12,-26 + 499: 13,-26 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 450: 8,-26 + 478: 7,-27 + 479: 7,-26 + 480: 7,-25 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNe + decals: + 1780: 107,11 + 4543: 114,10 + 4548: 110,11 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNe + decals: + 848: -21,12 + 1585: 87,-12 + 1616: 86,-3 + 1647: 82,-7 + 1722: 71,-7 + 1728: 70,-3 + 1729: 67,-3 + 1755: 74,0 + - node: + color: '#79150096' + id: BrickTileWhiteCornerNe + decals: + 4881: 33,20 + 4882: 33,20 + 4885: 34,17 + 4886: 34,17 + - node: + color: '#80C71FBF' + id: BrickTileWhiteCornerNe + decals: + 4529: 92,-6 + - node: + color: '#8932B8C1' + id: BrickTileWhiteCornerNe + decals: + 1064: -14,12 + 1074: -18,19 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerNe + decals: + 761: 8,-12 + 4982: -4,21 + 4997: 8,17 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerNe + decals: + 0: -4,-7 + 5449: -14,0 + 5479: -5,0 + 5565: -38,-28 + 5566: -56,-27 + 5574: -56,-21 + 5607: -4,-12 + 5624: -10,-3 + 5653: -4,-3 + 5666: -43,-40 + - node: + color: '#B02E26BF' + id: BrickTileWhiteCornerNe + decals: + 4685: 25,18 + 4693: 24,17 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNe + decals: + 1106: 15,38 + 1130: 9,51 + 1141: 6,46 + 1142: 5,47 + 1161: 1,47 + 1221: 20,46 + 1222: 22,42 + - node: + color: '#DC801DBF' + id: BrickTileWhiteCornerNe + decals: + 1450: 64,29 + 1451: 67,29 + 1452: 70,29 + 1492: 83,29 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe + decals: + 106: 82,16 + 817: -22,-1 + 823: -21,-6 + 1292: 75,4 + 1427: 67,22 + 4804: 13,-32 + 4831: 17,-36 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNe + decals: + 869: -36,7 + 902: -41,7 + 952: -50,20 + 1001: -50,-15 + 1021: -46,4 + 1030: -41,-15 + 2028: -54,5 + - node: + color: '#FF9242B2' + id: BrickTileWhiteCornerNe + decals: + 1671: 76,-9 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNw + decals: + 1774: 99,11 + 1837: 109,11 + 4637: 97,10 + 4664: 92,8 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNw + decals: + 847: -25,12 + 1520: 62,-3 + 1543: 60,-13 + 1614: 84,-9 + 1615: 83,-3 + 1629: 83,-12 + 1648: 79,-7 + 1649: 78,-9 + 1658: 78,-14 + - node: + color: '#79150096' + id: BrickTileWhiteCornerNw + decals: + 4853: 30,20 + 4854: 30,20 + 4915: 29,19 + 4916: 29,19 + - node: + color: '#80C71FBF' + id: BrickTileWhiteCornerNw + decals: + 4535: 88,-6 + - node: + color: '#8932B8C0' + id: BrickTileWhiteCornerNw + decals: + 4568: -21,19 + 4569: -25,16 + - node: + color: '#8932B8C1' + id: BrickTileWhiteCornerNw + decals: + 1058: -19,12 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerNw + decals: + 722: 22,-44 + 768: 0,-12 + 782: 0,-17 + 4962: 9,21 + 4988: 5,17 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerNw + decals: + 4: -6,-7 + 5444: -19,0 + 5453: -12,0 + 5500: -8,-3 + 5528: -46,-28 + 5683: -49,-36 + - node: + color: '#B02E26BF' + id: BrickTileWhiteCornerNw + decals: + 4687: 21,18 + 4692: 22,17 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNw + decals: + 1105: 8,38 + 1128: 7,51 + 1143: 3,47 + 1164: -2,47 + 1218: 17,46 + 1219: 22,46 + 1220: 17,42 + - node: + color: '#DC801DBF' + id: BrickTileWhiteCornerNw + decals: + 1453: 72,29 + 1454: 69,29 + 1455: 66,29 + 1456: 63,29 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNw + decals: + 104: 81,16 + 809: -25,-6 + 816: -23,-1 + 1290: 73,4 + 1334: 63,14 + 1423: 63,22 + 4811: 10,-32 + 4830: 6,-36 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNw + decals: + 870: -39,7 + 891: -49,4 + 899: -44,7 + 990: -53,-9 + 1023: -48,-15 + 2024: -58,5 + - node: + color: '#FF9242B2' + id: BrickTileWhiteCornerNw + decals: + 1669: 73,-9 + 1670: 69,-11 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSe + decals: + 1783: 107,8 + 1786: 106,6 + 1814: 114,0 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSe + decals: + 1531: 61,-7 + 1532: 60,-8 + 1562: 73,-18 + 1578: 85,-17 + 1581: 87,-16 + 1617: 86,-7 + 1645: 81,-12 + 1646: 82,-10 + 1714: 71,-9 + 1726: 70,-5 + 1754: 74,-1 + - node: + color: '#80C71FC0' + id: BrickTileWhiteCornerSe + decals: + 1593: 86,-10 + 1603: 92,-10 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerSe + decals: + 785: 3,-18 + 786: 4,-17 + 787: 8,-16 + 4975: -4,15 + 4994: 8,14 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerSe + decals: + 1: -4,-10 + 5421: -8,-13 + 5433: -14,-6 + 5471: -7,-10 + 5487: -10,0 + 5517: -41,-31 + 5554: -39,-26 + 5570: -56,-25 + 5600: -56,-31 + 5609: -4,-14 + 5632: -5,-1 + 5687: -48,-42 + - node: + color: '#B02E26BF' + id: BrickTileWhiteCornerSe + decals: + 4686: 25,14 + 4691: 24,15 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSe + decals: + 1145: 6,42 + 1183: 1,39 + 1223: 20,44 + 1224: 27,39 + 1225: 22,39 + - node: + color: '#DC801DBF' + id: BrickTileWhiteCornerSe + decals: + 1446: 67,24 + 1447: 64,24 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSe + decals: + 105: 82,15 + 808: -21,-7 + 1293: 75,3 + 1387: 83,20 + 1416: 67,19 + 4807: 13,-35 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSe + decals: + 860: -36,0 + 878: -44,-3 + 924: -46,6 + 1003: -50,-13 + 1031: -41,-19 + 1929: -50,-19 + 2017: -54,2 + - node: + color: '#FF9242B2' + id: BrickTileWhiteCornerSe + decals: + 1672: 76,-13 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSw + decals: + 1790: 103,6 + 1799: 103,3 + 1809: 110,1 + 1811: 111,0 + 1838: 109,10 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSw + decals: + 1516: 62,-1 + 1522: 62,-5 + 1535: 60,-11 + 1544: 60,-14 + 1553: 66,-16 + 1558: 69,-18 + 1573: 80,-17 + 1611: 84,-10 + 1612: 84,-7 + 1613: 83,-5 + 1650: 78,-12 + 1713: 69,-9 + - node: + color: '#79150096' + id: BrickTileWhiteCornerSw + decals: + 4899: 31,14 + 4900: 31,14 + - node: + color: '#80C71FC0' + id: BrickTileWhiteCornerSw + decals: + 1602: 88,-10 + - node: + color: '#8932B8C1' + id: BrickTileWhiteCornerSw + decals: + 1053: -19,7 + 1077: -21,18 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerSw + decals: + 783: 0,-18 + 4963: 9,19 + 4971: -7,17 + 4991: 5,14 + 5411: 0,-13 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerSw + decals: + 5: -6,-10 + 5438: -19,-6 + 5481: -7,-1 + 5483: -8,0 + 5518: -42,-31 + 5536: -48,-26 + 5582: -59,-25 + 5594: -61,-30 + 5596: -60,-31 + - node: + color: '#B02E26BF' + id: BrickTileWhiteCornerSw + decals: + 4688: 21,14 + 4689: 22,15 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSw + decals: + 1126: 7,48 + 1144: 3,42 + 1177: -6,39 + 1226: 17,44 + 1227: 17,39 + 1228: 22,44 + 1229: 24,39 + - node: + color: '#DC801DBF' + id: BrickTileWhiteCornerSw + decals: + 1448: 63,24 + 1449: 66,24 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 107: 81,15 + 804: -25,-7 + 1295: 73,3 + 1330: 63,8 + 1347: 67,11 + 1385: 81,20 + 1420: 63,19 + 4808: 10,-35 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSw + decals: + 883: -49,-3 + 921: -49,6 + 991: -53,-10 + 1037: -48,-19 + 2021: -58,2 + - node: + color: '#FF9242B2' + id: BrickTileWhiteCornerSw + decals: + 1673: 69,-13 + - node: + color: '#334E6DC8' + id: BrickTileWhiteEndE + decals: + 4536: 115,1 + 4538: 115,6 + 4658: 95,10 + 4661: 95,8 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteEndE + decals: + 1324: 66,8 + 1361: 74,11 + 1369: 74,17 + 1389: 84,21 + - node: + color: '#334E6DC8' + id: BrickTileWhiteEndN + decals: + 4670: 90,9 + - node: + color: '#A4610696' + id: BrickTileWhiteEndN + decals: + 5538: -48,-24 + - node: + color: '#334E6DC8' + id: BrickTileWhiteEndS + decals: + 4666: 92,6 + 4667: 90,6 + - node: + color: '#79150096' + id: BrickTileWhiteEndS + decals: + 4905: 29,14 + 4906: 29,14 + - node: + color: '#A4610696' + id: BrickTileWhiteEndS + decals: + 5508: -38,-31 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteEndS + decals: + 1296: 73,6 + - node: + color: '#334E6DC8' + id: BrickTileWhiteEndW + decals: + 1843: 109,7 + 4671: 91,10 + - node: + color: '#9FED5896' + id: BrickTileWhiteEndW + decals: + 779: 0,-15 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNe + decals: + 1772: 100,11 + 1816: 113,1 + 1818: 110,1 + 1855: 104,4 + 4539: 114,6 + 4547: 110,10 + 4562: 110,7 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerNe + decals: + 829: -21,5 + 830: -25,5 + 1529: 61,-9 + 1588: 85,-12 + 1609: 85,-9 + 1635: 80,-14 + 1697: 67,-15 + 1710: 67,-8 + 1724: 69,-7 + 1725: 69,-3 + 1732: 67,-4 + 1737: 63,-3 + 1739: 63,0 + 1740: 70,0 + - node: + color: '#79150096' + id: BrickTileWhiteInnerNe + decals: + 4883: 33,17 + 4884: 33,17 + 4891: 34,14 + 4892: 34,14 + 4923: 32,20 + 4924: 32,20 + - node: + color: '#791500BF' + id: BrickTileWhiteInnerNe + decals: + 4699: 19,12 + 4704: 28,12 + - node: + color: '#8932B8C0' + id: BrickTileWhiteInnerNe + decals: + 1271: 55,5 + - node: + color: '#8932B8C1' + id: BrickTileWhiteInnerNe + decals: + 1046: -18,5 + 1060: -18,12 + - node: + color: '#9FED5896' + id: BrickTileWhiteInnerNe + decals: + 759: 8,-13 + 771: 3,-12 + 4977: -4,16 + 4983: -5,21 + 4987: -8,21 + - node: + color: '#A4610696' + id: BrickTileWhiteInnerNe + decals: + 5419: -8,-12 + 5450: -14,-1 + 5478: -6,0 + 5494: -14,-5 + 5540: -48,-26 + 5560: -43,-28 + 5567: -57,-27 + 5590: -61,-27 + 5603: -56,-29 + 5622: -10,-5 + 5625: -11,-3 + 5650: -4,-6 + 5667: -45,-40 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerNe + decals: + 1104: 12,38 + 1108: 15,36 + 1140: 6,45 + 1146: 5,46 + 1158: 1,45 + 1187: 1,40 + 1239: 20,45 + 1240: 27,45 + 1241: 27,43 + 1242: 27,40 + 1243: 22,41 + - node: + color: '#DC801DBF' + id: BrickTileWhiteInnerNe + decals: + 1443: 70,27 + 1444: 67,27 + 1445: 64,27 + 1488: 83,25 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNe + decals: + 822: -22,-6 + 1297: 65,5 + 1298: 70,5 + 1332: 64,8 + 1335: 64,14 + 1336: 66,14 + 1362: 73,11 + 1371: 72,17 + 1403: 70,21 + 1428: 67,21 + 4812: 12,-32 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerNe + decals: + 866: -36,5 + 907: -51,0 + 929: -46,10 + 934: -49,11 + 939: -51,9 + 948: -50,16 + 955: -52,20 + 1010: -51,-9 + 1020: -51,-6 + 1933: -51,-15 + 2015: -54,3 + - node: + color: '#FF9242B2' + id: BrickTileWhiteInnerNe + decals: + 1663: 75,-15 + 1667: 74,-9 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNw + decals: + 1773: 100,11 + 1797: 104,4 + 1817: 113,1 + 1842: 110,7 + 1847: 110,4 + 4552: 114,7 + 4639: 99,10 + 4640: 97,9 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerNw + decals: + 831: -25,5 + 832: -21,5 + 1519: 63,-3 + 1527: 63,-9 + 1540: 63,-13 + 1589: 85,-12 + 1610: 85,-9 + 1631: 83,-14 + 1636: 80,-14 + 1655: 79,-9 + 1659: 78,-15 + 1712: 69,-8 + 1731: 69,-4 + 1741: 69,0 + - node: + color: '#79150096' + id: BrickTileWhiteInnerNw + decals: + 4917: 30,19 + 4918: 30,19 + 4925: 32,20 + 4926: 32,20 + - node: + color: '#791500BF' + id: BrickTileWhiteInnerNw + decals: + 4700: 19,12 + 4705: 28,12 + - node: + color: '#80C71FC0' + id: BrickTileWhiteInnerNw + decals: + 1607: 88,-9 + - node: + color: '#8932B8C0' + id: BrickTileWhiteInnerNw + decals: + 1272: 55,5 + - node: + color: '#8932B8C1' + id: BrickTileWhiteInnerNw + decals: + 1047: -18,5 + 1059: -18,12 + 1082: -18,16 + 1088: -25,14 + - node: + color: '#9FED5896' + id: BrickTileWhiteInnerNw + decals: + 725: 22,-47 + 756: 10,-13 + 770: 3,-12 + 775: 2,-15 + 780: 2,-17 + 4946: 10,12 + 4961: 10,21 + 4966: -8,20 + 4984: -5,21 + - node: + color: '#A4610696' + id: BrickTileWhiteInnerNw + decals: + 5428: -10,-13 + 5452: -12,-1 + 5455: -11,0 + 5498: -8,-5 + 5527: -46,-29 + 5530: -44,-28 + 5549: -39,-26 + 5586: -57,-27 + 5616: -12,-10 + 5621: -11,-5 + 5674: -52,-42 + 5679: -49,-40 + 5686: -46,-36 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerNw + decals: + 1103: 11,38 + 1109: 8,36 + 1136: 7,50 + 1147: 3,45 + 1165: -2,46 + 1169: -2,43 + 1244: 17,45 + 1245: 22,45 + 1246: 24,41 + 1247: 17,41 + 1258: 27,46 + - node: + color: '#DC801DBF' + id: BrickTileWhiteInnerNw + decals: + 1440: 66,27 + 1441: 69,27 + 1442: 72,27 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNw + decals: + 811: -23,-6 + 1299: 69,5 + 1300: 64,5 + 1333: 63,13 + 1337: 64,14 + 1338: 66,14 + 1404: 70,14 + 1430: 69,21 + 4813: 11,-32 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerNw + decals: + 887: -49,0 + 894: -44,2 + 931: -46,11 + 937: -49,9 + 979: -52,-6 + 980: -52,-3 + 981: -52,3 + 982: -52,7 + 983: -52,14 + 989: -52,-9 + - node: + color: '#FF9242B2' + id: BrickTileWhiteInnerNw + decals: + 1664: 75,-15 + 1668: 74,-9 + 1685: 73,-11 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSe + decals: + 1784: 106,8 + 1788: 104,6 + 1803: 105,3 + 1813: 113,0 + 1823: 113,6 + 1834: 110,6 + 4537: 114,1 + 4559: 110,10 + 4651: 92,8 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerSe + decals: + 856: -25,7 + 1512: 63,2 + 1513: 70,2 + 1548: 63,-14 + 1564: 73,-16 + 1567: 75,-16 + 1579: 85,-16 + 1619: 85,-7 + 1652: 80,-12 + 1654: 81,-10 + 1709: 67,-8 + 1727: 69,-5 + 1733: 67,-4 + 1738: 63,-1 + 1744: 69,-1 + 1745: 73,-1 + - node: + color: '#79150096' + id: BrickTileWhiteInnerSe + decals: + 4903: 29,15 + 4904: 29,15 + - node: + color: '#80C71FC0' + id: BrickTileWhiteInnerSe + decals: + 1594: 85,-10 + 1595: 86,-9 + - node: + color: '#8932B8C1' + id: BrickTileWhiteInnerSe + decals: + 1051: -18,7 + - node: + color: '#9FED5896' + id: BrickTileWhiteInnerSe + decals: + 760: 8,-13 + 788: 3,-17 + 789: 2,-18 + 793: 4,-16 + 4976: -4,16 + 5064: -5,15 + - node: + color: '#A4610696' + id: BrickTileWhiteInnerSe + decals: + 5420: -8,-12 + 5425: -9,-13 + 5432: -14,-5 + 5434: -16,-6 + 5467: -7,-6 + 5476: -6,2 + 5486: -10,1 + 5488: -11,0 + 5491: -14,-1 + 5506: -6,-14 + 5515: -41,-29 + 5523: -45,-29 + 5558: -43,-26 + 5569: -57,-25 + 5602: -56,-29 + 5606: -8,-10 + 5716: -48,-40 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerSe + decals: + 1115: 13,36 + 1139: 6,45 + 1159: 1,44 + 1185: -2,39 + 1186: 1,40 + 1248: 20,45 + 1249: 27,45 + 1250: 27,43 + 1251: 27,40 + 1252: 22,41 + - node: + color: '#DC801DBF' + id: BrickTileWhiteInnerSe + decals: + 1438: 67,26 + 1439: 64,26 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSe + decals: + 1310: 64,13 + 1325: 65,8 + 1326: 70,11 + 1352: 73,11 + 1368: 73,17 + 1375: 72,21 + 1388: 83,21 + 1414: 67,21 + 1909: -24,2 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerSe + decals: + 858: -36,2 + 863: -37,0 + 876: -44,-1 + 916: -51,9 + 928: -46,10 + 946: -51,16 + 1004: -51,-13 + 1008: -50,-9 + 1018: -51,0 + 1019: -51,-6 + 1039: -47,-19 + 1282: 54,2 + 1931: -51,-19 + 2014: -54,3 + - node: + color: '#FF9242B2' + id: BrickTileWhiteInnerSe + decals: + 1666: 75,-13 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSw + decals: + 1789: 104,6 + 1798: 103,4 + 1804: 105,3 + 1807: 110,3 + 1810: 111,1 + 1812: 112,0 + 1835: 113,6 + 1839: 110,10 + 1844: 110,7 + 4555: 114,10 + 4647: 103,9 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerSw + decals: + 855: -21,7 + 1510: 62,2 + 1511: 69,2 + 1517: 63,-1 + 1523: 63,-5 + 1538: 63,-11 + 1547: 63,-14 + 1551: 66,-14 + 1556: 69,-16 + 1568: 75,-16 + 1572: 80,-16 + 1592: 85,-10 + 1618: 85,-7 + 1623: 84,-5 + 1653: 80,-12 + 1711: 69,-8 + 1730: 69,-4 + 1742: 69,-1 + 1743: 73,-1 + - node: + color: '#80C71FC0' + id: BrickTileWhiteInnerSw + decals: + 1601: 88,-9 + - node: + color: '#8932B8C1' + id: BrickTileWhiteInnerSw + decals: + 1050: -18,7 + 1080: -18,18 + 1096: -18,14 + - node: + color: '#9FED5896' + id: BrickTileWhiteInnerSw + decals: + 755: 10,-13 + 772: 2,-13 + 776: 2,-15 + 790: 2,-18 + 4960: 10,19 + 4968: -7,20 + 4973: -5,17 + - node: + color: '#A4610696' + id: BrickTileWhiteInnerSw + decals: + 5414: -6,-12 + 5426: -9,-13 + 5430: -12,-5 + 5435: -16,-6 + 5456: -11,2 + 5482: -7,0 + 5484: -8,1 + 5512: -38,-29 + 5520: -42,-29 + 5526: -46,-29 + 5532: -44,-26 + 5578: -59,-21 + 5584: -57,-25 + 5595: -60,-30 + 5611: -10,-10 + 5631: -11,-1 + 5668: -44,-40 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerSw + decals: + 1116: 10,36 + 1124: 9,48 + 1135: 7,50 + 1148: 3,44 + 1166: -2,46 + 1174: -6,42 + 1184: -2,39 + 1253: 17,41 + 1254: 17,45 + 1255: 22,45 + 1256: 24,41 + 1257: 24,44 + - node: + color: '#DC801DBF' + id: BrickTileWhiteInnerSw + decals: + 1435: 69,26 + 1437: 66,26 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSw + decals: + 1327: 64,8 + 1328: 69,11 + 1329: 63,13 + 1345: 67,13 + 1351: 73,11 + 1384: 81,21 + 1411: 70,21 + 1908: -25,2 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerSw + decals: + 864: -37,0 + 875: -42,-1 + 886: -49,0 + 918: -49,9 + 984: -52,14 + 985: -52,7 + 986: -52,3 + 987: -52,-3 + 988: -52,-6 + 992: -52,-10 + 1040: -47,-19 + 1281: 54,2 + - node: + color: '#FF9242B2' + id: BrickTileWhiteInnerSw + decals: + 1665: 75,-13 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineE + decals: + 1781: 107,10 + 1782: 107,9 + 1785: 106,7 + 1794: 104,5 + 1819: 113,2 + 1820: 113,3 + 1821: 113,4 + 1822: 113,5 + 1830: 110,2 + 1831: 110,3 + 1832: 110,4 + 1833: 110,5 + 4540: 114,7 + 4541: 114,8 + 4542: 114,9 + 4560: 110,9 + 4561: 110,8 + 4650: 92,7 + 4668: 90,7 + 4669: 90,8 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 833: -21,6 + 834: -21,7 + 835: -21,8 + 836: -21,9 + 837: -21,10 + 838: -21,11 + 839: -25,6 + 1530: 61,-8 + 1563: 73,-17 + 1582: 87,-15 + 1583: 87,-14 + 1584: 87,-13 + 1590: 85,-11 + 1624: 86,-6 + 1625: 86,-5 + 1626: 86,-4 + 1637: 80,-13 + 1642: 82,-8 + 1643: 82,-9 + 1644: 81,-11 + 1703: 67,-9 + 1704: 67,-7 + 1705: 67,-6 + 1706: 67,-5 + 1707: 71,-8 + 1708: 70,-4 + 1721: 69,-6 + 1764: 63,1 + 1765: 70,1 + - node: + color: '#79150096' + id: BrickTileWhiteLineE + decals: + 4887: 34,16 + 4888: 34,16 + 4889: 34,15 + 4890: 34,15 + 4919: 33,18 + 4920: 33,18 + 4921: 33,19 + 4922: 33,19 + - node: + color: '#80C71FBF' + id: BrickTileWhiteLineE + decals: + 4530: 92,-8 + 4531: 92,-7 + - node: + color: '#80C71FC0' + id: BrickTileWhiteLineE + decals: + 1604: 92,-9 + - node: + color: '#8932B8C1' + id: BrickTileWhiteLineE + decals: + 1048: -18,6 + 1065: -14,11 + 1066: -14,10 + 1067: -14,9 + 1068: -14,8 + 1069: -18,14 + 1070: -18,15 + 1071: -18,16 + 1072: -18,17 + 1073: -18,18 + 1098: -18,13 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineE + decals: + 791: 2,-19 + 797: 8,-15 + 798: 8,-14 + 4978: -4,17 + 4979: -4,18 + 4980: -4,19 + 4981: -4,20 + 4995: 8,15 + 4996: 8,16 + 5061: -5,14 + - node: + color: '#A4610696' + id: BrickTileWhiteLineE + decals: + 2: -4,-8 + 3: -4,-9 + 5424: -9,-14 + 5468: -7,-7 + 5469: -7,-8 + 5470: -7,-9 + 5477: -6,1 + 5492: -14,-2 + 5493: -14,-4 + 5509: -38,-30 + 5510: -38,-29 + 5516: -41,-30 + 5524: -45,-30 + 5539: -48,-25 + 5552: -39,-24 + 5553: -39,-25 + 5559: -43,-27 + 5568: -57,-26 + 5571: -56,-24 + 5572: -56,-23 + 5573: -56,-22 + 5601: -56,-30 + 5604: -56,-28 + 5605: -8,-11 + 5608: -4,-13 + 5623: -10,-4 + 5629: -11,-2 + 5630: -11,-1 + 5651: -4,-5 + 5652: -4,-4 + 5656: -45,-31 + 5657: -45,-32 + 5658: -45,-33 + 5659: -45,-34 + 5660: -45,-35 + 5661: -45,-36 + 5662: -45,-37 + 5663: -45,-38 + 5664: -45,-39 + 5713: -48,-41 + - node: + color: '#D381C996' + id: BrickTileWhiteLineE + decals: + 129: 12,42 + 130: 12,43 + 131: 12,44 + 132: 12,45 + 133: 12,46 + 136: 12,41 + 1107: 15,37 + 1117: 13,35 + 1119: 12,39 + 1120: 12,40 + 1131: 9,50 + 1132: 9,49 + 1133: 9,48 + 1134: 9,47 + 1153: 6,43 + 1154: 6,44 + 1160: 1,46 + 1188: 1,41 + 1189: 1,42 + 1190: 1,43 + 1230: 27,46 + 1231: 27,44 + 1232: 27,42 + 1233: 27,41 + 1234: 22,40 + - node: + color: '#DC801DBF' + id: BrickTileWhiteLineE + decals: + 1465: 64,25 + 1466: 67,25 + 1467: 64,28 + 1468: 67,28 + 1469: 70,28 + 1474: 70,23 + 1489: 83,26 + 1490: 83,27 + 1491: 83,28 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 818: -22,-2 + 819: -22,-3 + 820: -22,-4 + 821: -22,-5 + 1301: 70,9 + 1302: 65,6 + 1303: 64,9 + 1304: 64,12 + 1311: 70,6 + 1312: 70,7 + 1313: 70,8 + 1314: 70,10 + 1321: 65,7 + 1322: 64,10 + 1323: 64,11 + 1357: 73,7 + 1358: 73,8 + 1359: 73,9 + 1360: 73,10 + 1363: 73,12 + 1364: 73,13 + 1365: 73,14 + 1366: 73,15 + 1367: 73,16 + 1372: 72,18 + 1373: 72,19 + 1374: 72,20 + 1415: 67,20 + 1431: 70,22 + 4805: 13,-34 + 4806: 13,-33 + 4814: 12,-31 + 4815: 12,-30 + 4816: 12,-29 + 4832: 17,-37 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineE + decals: + 859: -36,1 + 871: -36,6 + 873: -41,-1 + 877: -44,-2 + 903: -41,6 + 904: -41,5 + 905: -41,4 + 908: -51,1 + 909: -51,2 + 910: -51,3 + 911: -51,4 + 912: -51,5 + 913: -51,6 + 914: -51,7 + 915: -51,8 + 925: -46,7 + 926: -46,8 + 927: -46,9 + 930: -46,11 + 940: -51,10 + 941: -51,11 + 942: -51,12 + 943: -51,13 + 944: -51,14 + 945: -51,15 + 949: -50,17 + 950: -50,18 + 951: -50,19 + 999: -50,-18 + 1000: -50,-16 + 1002: -51,-14 + 1005: -50,-12 + 1006: -50,-11 + 1007: -50,-10 + 1011: -51,-8 + 1012: -51,-7 + 1013: -51,-5 + 1014: -51,-4 + 1015: -51,-3 + 1016: -51,-2 + 1017: -51,-1 + 2016: -54,4 + - node: + color: '#FF923DB2' + id: BrickTileWhiteLineE + decals: + 1698: 67,-14 + 1699: 67,-13 + 1700: 67,-12 + 1701: 67,-11 + 1702: 67,-10 + - node: + color: '#FF9242B2' + id: BrickTileWhiteLineE + decals: + 1674: 75,-14 + 1678: 76,-12 + 1679: 76,-11 + 1680: 76,-10 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineN + decals: + 1775: 101,11 + 1776: 102,11 + 1777: 104,11 + 1778: 105,11 + 1779: 106,11 + 1793: 103,11 + 1796: 103,4 + 1815: 114,1 + 1828: 112,1 + 1829: 111,1 + 1848: 109,4 + 1849: 108,4 + 1852: 107,4 + 1853: 106,4 + 1854: 105,4 + 4544: 113,10 + 4545: 112,10 + 4546: 111,10 + 4549: 111,7 + 4550: 112,7 + 4551: 113,7 + 4638: 98,10 + 4641: 96,9 + 4656: 93,10 + 4657: 94,10 + 4662: 94,8 + 4663: 93,8 + 4672: 92,10 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 824: -20,5 + 825: -22,5 + 826: -23,5 + 827: -24,5 + 828: -26,5 + 849: -24,12 + 850: -23,12 + 851: -22,12 + 1528: 62,-9 + 1541: 62,-13 + 1542: 61,-13 + 1586: 86,-12 + 1587: 84,-12 + 1608: 86,-9 + 1627: 84,-3 + 1628: 85,-3 + 1632: 82,-14 + 1633: 81,-14 + 1634: 79,-14 + 1656: 80,-7 + 1657: 81,-7 + 1660: 77,-15 + 1691: 73,-15 + 1692: 72,-15 + 1693: 71,-15 + 1694: 70,-15 + 1695: 69,-15 + 1696: 68,-15 + 1723: 70,-7 + 1734: 66,-3 + 1735: 65,-3 + 1736: 64,-3 + 1756: 73,0 + 1757: 72,0 + 1758: 71,0 + 1759: 68,0 + 1760: 67,0 + 1761: 66,0 + 1762: 65,0 + 1763: 64,0 + - node: + color: '#79150096' + id: BrickTileWhiteLineN + decals: + 4927: 31,20 + 4928: 31,20 + - node: + color: '#791500BF' + id: BrickTileWhiteLineN + decals: + 1259: 22,12 + 1260: 24,12 + 1261: 21,12 + 1262: 25,12 + 1263: 26,12 + 1264: 27,12 + 1265: 29,12 + 1266: 30,12 + 1267: 31,12 + 1268: 32,12 + 4696: 20,12 + 4697: 18,12 + 4698: 17,12 + 4701: 23,12 + 4702: 33,12 + 4703: 34,12 + - node: + color: '#80C71FBF' + id: BrickTileWhiteLineN + decals: + 4532: 89,-6 + 4533: 91,-6 + 4534: 90,-6 + - node: + color: '#80C71FC0' + id: BrickTileWhiteLineN + decals: + 1596: 87,-9 + - node: + color: '#8932B8C0' + id: BrickTileWhiteLineN + decals: + 1269: 54,5 + 1270: 56,5 + 1273: 53,5 + 1274: 57,5 + 1275: 58,5 + 4570: -24,16 + - node: + color: '#8932B8C1' + id: BrickTileWhiteLineN + decals: + 1041: -19,5 + 1042: -17,5 + 1043: -16,5 + 1044: -15,5 + 1045: -14,5 + 1061: -17,12 + 1062: -16,12 + 1063: -15,12 + 1075: -19,19 + 1076: -20,19 + 1083: -19,16 + 1084: -20,16 + 1085: -21,16 + 1086: -22,16 + 1087: -23,16 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineN + decals: + 726: 21,-47 + 727: 20,-47 + 728: 19,-47 + 729: 18,-47 + 730: 17,-47 + 731: 16,-47 + 732: 15,-47 + 733: 14,-47 + 757: 9,-13 + 762: 7,-12 + 763: 6,-12 + 764: 5,-12 + 765: 4,-12 + 766: 2,-12 + 767: 1,-12 + 778: 1,-15 + 781: 1,-17 + 4947: 9,12 + 4948: 8,12 + 4949: 6,12 + 4950: 4,12 + 4951: 3,12 + 4952: 2,12 + 4953: 1,12 + 4954: 0,12 + 4955: -1,12 + 4956: -2,12 + 4957: -3,12 + 4958: -4,12 + 4959: 7,12 + 4985: -6,21 + 4986: -7,21 + 4998: 7,17 + 4999: 6,17 + - node: + color: '#A4610696' + id: BrickTileWhiteLineN + decals: + 5415: -6,-12 + 5416: -7,-12 + 5418: -5,-12 + 5445: -18,0 + 5446: -17,0 + 5447: -16,0 + 5448: -15,0 + 5451: -13,-1 + 5472: -11,-13 + 5495: -13,-5 + 5496: -12,-5 + 5497: -9,-5 + 5501: -7,-3 + 5502: -6,-3 + 5503: -5,-3 + 5529: -45,-28 + 5541: -47,-26 + 5542: -46,-26 + 5543: -45,-26 + 5544: -44,-26 + 5545: -43,-26 + 5546: -42,-26 + 5547: -41,-26 + 5548: -40,-26 + 5561: -42,-28 + 5562: -41,-28 + 5563: -40,-28 + 5564: -39,-28 + 5575: -57,-21 + 5576: -58,-21 + 5577: -59,-21 + 5587: -58,-27 + 5588: -59,-27 + 5589: -60,-27 + 5615: -13,-10 + 5649: -3,-6 + 5665: -44,-40 + 5676: -52,-40 + 5677: -51,-40 + 5678: -50,-40 + 5684: -48,-36 + 5685: -47,-36 + - node: + color: '#B02E26BF' + id: BrickTileWhiteLineN + decals: + 4690: 23,17 + - node: + color: '#D381C996' + id: BrickTileWhiteLineN + decals: + 1099: 9,38 + 1100: 10,38 + 1101: 13,38 + 1102: 14,38 + 1129: 8,51 + 1137: 7,45 + 1155: 4,47 + 1156: 2,45 + 1162: 0,47 + 1163: -1,47 + 1170: -3,43 + 1171: -4,43 + 1172: -5,43 + 1173: -6,43 + 1191: 16,45 + 1192: 18,46 + 1193: 19,46 + 1194: 21,45 + 1195: 23,46 + 1196: 24,46 + 1197: 25,46 + 1198: 26,46 + 1199: 16,41 + 1200: 23,41 + 1201: 18,42 + 1202: 19,42 + 1203: 20,42 + 1204: 21,42 + - node: + color: '#DC801DBF' + id: BrickTileWhiteLineN + decals: + 1470: 65,27 + 1471: 68,27 + 1472: 71,27 + 1493: 82,29 + 1494: 81,29 + 1495: 80,29 + 1496: 79,29 + 1497: 78,29 + 1498: 77,29 + 1499: 76,29 + 1500: 75,29 + 1501: 74,29 + 1502: 73,29 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 810: -24,-6 + 1283: 61,5 + 1284: 62,5 + 1285: 63,5 + 1286: 66,5 + 1287: 67,5 + 1288: 68,5 + 1289: 71,5 + 1291: 74,4 + 1331: 65,8 + 1339: 65,14 + 1340: 67,14 + 1341: 68,14 + 1342: 69,14 + 1370: 73,17 + 1390: 83,21 + 1391: 82,21 + 1392: 81,21 + 1393: 80,21 + 1394: 79,21 + 1395: 78,21 + 1396: 77,21 + 1397: 76,21 + 1398: 75,21 + 1399: 74,21 + 1400: 73,21 + 1401: 72,21 + 1402: 71,21 + 1424: 64,22 + 1425: 65,22 + 1426: 66,22 + 1429: 68,21 + 4822: 9,-38 + 4823: 10,-38 + 4824: 11,-38 + 4825: 12,-38 + 4826: 13,-38 + 4827: 14,-38 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineN + decals: + 865: -35,5 + 867: -37,7 + 868: -38,7 + 892: -48,4 + 893: -45,2 + 900: -43,7 + 901: -42,7 + 906: -50,0 + 932: -47,11 + 933: -48,11 + 938: -50,9 + 953: -51,20 + 1009: -50,-9 + 1024: -47,-15 + 1025: -46,-15 + 1026: -45,-15 + 1027: -44,-15 + 1028: -43,-15 + 1029: -42,-15 + 2012: -53,3 + 2025: -57,5 + 2026: -56,5 + 2027: -55,5 + - node: + color: '#FF9242B2' + id: BrickTileWhiteLineN + decals: + 1661: 76,-15 + 1662: 74,-15 + 1681: 75,-9 + 1682: 70,-11 + 1683: 71,-11 + 1684: 72,-11 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineS + decals: + 1787: 105,6 + 1800: 104,3 + 1801: 106,3 + 1802: 107,3 + 1805: 108,3 + 1806: 109,3 + 1836: 114,6 + 1850: 112,6 + 1851: 111,6 + 4556: 113,10 + 4557: 112,10 + 4558: 111,10 + 4642: 96,9 + 4643: 97,9 + 4644: 98,9 + 4645: 99,9 + 4646: 100,9 + 4648: 102,9 + 4649: 101,9 + 4652: 93,8 + 4653: 94,8 + 4659: 94,10 + 4660: 93,10 + 4673: 92,10 + - node: + color: '#3C44AAFF' + id: BrickTileWhiteLineS + decals: + 742: 0,-50 + 743: 2,-50 + 744: 3,-50 + 745: 4,-50 + 746: 5,-50 + 747: 6,-50 + 748: 7,-50 + 749: 9,-50 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 852: -24,7 + 853: -23,7 + 854: -22,7 + 1503: 61,2 + 1504: 64,2 + 1505: 65,2 + 1506: 66,2 + 1507: 67,2 + 1508: 68,2 + 1509: 71,2 + 1536: 61,-11 + 1537: 62,-11 + 1545: 61,-14 + 1546: 62,-14 + 1549: 64,-14 + 1550: 65,-14 + 1554: 67,-16 + 1555: 68,-16 + 1559: 70,-18 + 1560: 71,-18 + 1561: 72,-18 + 1565: 74,-16 + 1566: 76,-16 + 1569: 77,-16 + 1570: 78,-16 + 1571: 79,-16 + 1574: 81,-17 + 1575: 82,-17 + 1576: 83,-17 + 1577: 84,-17 + 1580: 86,-16 + 1651: 79,-12 + 1715: 70,-9 + 1746: 64,-1 + 1747: 65,-1 + 1748: 66,-1 + 1749: 67,-1 + 1750: 68,-1 + 1751: 70,-1 + 1752: 71,-1 + 1753: 72,-1 + - node: + color: '#79150096' + id: BrickTileWhiteLineS + decals: + 4893: 34,14 + 4894: 34,14 + 4895: 33,14 + 4896: 33,14 + 4897: 32,14 + 4898: 32,14 + 4901: 30,15 + 4902: 30,15 + - node: + color: '#80C71FC0' + id: BrickTileWhiteLineS + decals: + 1597: 87,-9 + 1598: 89,-10 + 1599: 90,-10 + 1600: 91,-10 + - node: + color: '#8932B8C1' + id: BrickTileWhiteLineS + decals: + 1052: -17,7 + 1078: -20,18 + 1079: -19,18 + 1089: -25,14 + 1090: -24,14 + 1091: -23,14 + 1092: -22,14 + 1093: -21,14 + 1094: -20,14 + 1095: -19,14 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineS + decals: + 758: 9,-13 + 769: 1,-13 + 777: 1,-15 + 784: 1,-18 + 794: 5,-16 + 795: 6,-16 + 796: 7,-16 + 4967: -8,20 + 4972: -6,17 + 4992: 6,14 + 4993: 7,14 + - node: + color: '#A4610696' + id: BrickTileWhiteLineS + decals: + 5412: -5,-14 + 5417: -7,-12 + 5427: -10,-13 + 5431: -13,-5 + 5436: -17,-6 + 5437: -18,-6 + 5457: -12,2 + 5458: -13,2 + 5459: -14,2 + 5460: -15,2 + 5461: -16,2 + 5462: -17,2 + 5463: -18,2 + 5464: -19,2 + 5465: -5,-6 + 5466: -6,-6 + 5473: -11,-13 + 5474: -4,2 + 5475: -5,2 + 5480: -6,-1 + 5485: -9,1 + 5489: -12,-1 + 5490: -13,-1 + 5504: -15,-6 + 5513: -39,-29 + 5514: -40,-29 + 5521: -43,-29 + 5522: -44,-29 + 5533: -45,-26 + 5534: -46,-26 + 5535: -47,-26 + 5555: -40,-26 + 5556: -41,-26 + 5557: -42,-26 + 5583: -58,-25 + 5597: -59,-31 + 5598: -58,-31 + 5599: -57,-31 + 5612: -11,-10 + 5613: -12,-10 + 5614: -13,-10 + 5647: -4,-6 + 5648: -3,-6 + 5669: -45,-40 + 5670: -49,-42 + 5671: -50,-42 + 5672: -51,-42 + 5673: -52,-42 + 5714: -46,-40 + 5715: -47,-40 + - node: + color: '#B02E26BF' + id: BrickTileWhiteLineS + decals: + 4694: 23,15 + - node: + color: '#B02E26FF' + id: BrickTileWhiteLineS + decals: + 734: 16,-50 + 735: 18,-50 + 736: 20,-50 + 737: 21,-50 + 738: 22,-50 + 739: 23,-50 + 740: 24,-50 + 741: 26,-50 + - node: + color: '#D381C996' + id: BrickTileWhiteLineS + decals: + 1111: 8,36 + 1112: 9,36 + 1113: 15,36 + 1114: 14,36 + 1125: 8,48 + 1138: 7,45 + 1151: 4,42 + 1152: 5,42 + 1157: 2,44 + 1178: -5,39 + 1179: -4,39 + 1180: -3,39 + 1181: -1,39 + 1182: 0,39 + 1205: 16,45 + 1206: 16,41 + 1207: 23,41 + 1208: 21,45 + 1209: 18,44 + 1210: 19,44 + 1211: 23,44 + 1212: 18,39 + 1213: 19,39 + 1214: 20,39 + 1215: 21,39 + 1216: 25,39 + 1217: 26,39 + - node: + color: '#DC801DBF' + id: BrickTileWhiteLineS + decals: + 1436: 68,26 + 1473: 65,26 + 1475: 71,24 + 1476: 72,24 + 1477: 73,24 + 1478: 74,24 + 1479: 75,24 + 1480: 76,24 + 1481: 77,24 + 1482: 78,24 + 1483: 79,24 + 1484: 80,24 + 1485: 81,24 + 1486: 82,24 + 1487: 83,24 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + decals: + 799: -20,2 + 800: -21,2 + 801: -22,2 + 802: -23,2 + 803: -26,2 + 805: -24,-7 + 806: -23,-7 + 807: -22,-7 + 1294: 74,3 + 1343: 65,13 + 1344: 66,13 + 1348: 68,11 + 1349: 71,11 + 1350: 72,11 + 1376: 73,21 + 1377: 74,21 + 1378: 75,21 + 1379: 76,21 + 1380: 77,21 + 1381: 78,21 + 1382: 79,21 + 1383: 80,21 + 1386: 82,20 + 1412: 69,21 + 1413: 68,21 + 1417: 66,19 + 1418: 65,19 + 1419: 64,19 + 4820: 11,-35 + 4821: 12,-35 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 857: -35,2 + 861: -38,0 + 862: -39,0 + 874: -43,-1 + 879: -45,-3 + 880: -46,-3 + 881: -47,-3 + 882: -48,-3 + 917: -50,9 + 922: -48,6 + 923: -47,6 + 947: -50,16 + 1032: -42,-19 + 1033: -43,-19 + 1034: -44,-19 + 1035: -45,-19 + 1036: -46,-19 + 1276: 53,2 + 1277: 55,2 + 1278: 56,2 + 1279: 57,2 + 1280: 58,2 + 2013: -53,3 + 2018: -55,2 + 2019: -56,2 + 2020: -57,2 + - node: + color: '#FF9242B2' + id: BrickTileWhiteLineS + decals: + 1686: 70,-13 + 1687: 71,-13 + 1688: 72,-13 + 1689: 73,-13 + 1690: 74,-13 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 1791: 103,7 + 1792: 103,8 + 1795: 104,5 + 1808: 110,2 + 1824: 113,2 + 1825: 113,3 + 1826: 113,4 + 1827: 113,5 + 1840: 110,9 + 1841: 110,8 + 1845: 110,6 + 1846: 110,5 + 4553: 114,8 + 4554: 114,9 + 4654: 90,7 + 4655: 90,8 + 4665: 92,7 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 840: -21,6 + 841: -25,6 + 842: -25,7 + 843: -25,8 + 844: -25,9 + 845: -25,10 + 846: -25,11 + 1514: 62,1 + 1515: 62,0 + 1518: 63,-2 + 1521: 62,-4 + 1524: 63,-6 + 1525: 63,-7 + 1526: 63,-8 + 1533: 60,-9 + 1534: 60,-10 + 1539: 63,-12 + 1552: 66,-15 + 1557: 69,-17 + 1591: 85,-11 + 1620: 85,-8 + 1621: 83,-4 + 1622: 84,-6 + 1630: 83,-13 + 1638: 80,-13 + 1639: 78,-11 + 1640: 78,-10 + 1641: 79,-8 + 1716: 69,-7 + 1717: 69,-6 + 1718: 69,-5 + 1719: 69,-3 + 1720: 69,-2 + 1766: 69,1 + - node: + color: '#79150096' + id: BrickTileWhiteLineW + decals: + 4907: 29,15 + 4908: 29,15 + 4909: 29,16 + 4910: 29,16 + 4911: 29,17 + 4912: 29,17 + 4913: 29,18 + 4914: 29,18 + - node: + color: '#80C71FC0' + id: BrickTileWhiteLineW + decals: + 1605: 88,-7 + 1606: 88,-8 + - node: + color: '#8932B8C0' + id: BrickTileWhiteLineW + decals: + 4571: -25,15 + - node: + color: '#8932B8C1' + id: BrickTileWhiteLineW + decals: + 1049: -18,6 + 1054: -19,8 + 1055: -19,9 + 1056: -19,10 + 1057: -19,11 + 1081: -18,17 + 1097: -18,13 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineW + decals: + 723: 22,-45 + 724: 22,-46 + 750: 10,-16 + 751: 10,-15 + 752: 10,-14 + 753: 10,-12 + 754: 10,-11 + 773: 2,-14 + 774: 2,-16 + 792: 2,-19 + 4936: 10,26 + 4937: 10,25 + 4938: 10,24 + 4939: 10,23 + 4940: 10,22 + 4941: 10,18 + 4942: 10,17 + 4943: 10,16 + 4944: 10,14 + 4945: 10,13 + 4964: 9,20 + 4965: -8,21 + 4969: -7,19 + 4970: -7,18 + 4974: -5,16 + 4989: 5,16 + 4990: 5,15 + 5062: -5,14 + 5063: -5,15 + - node: + color: '#A4610696' + id: BrickTileWhiteLineW + decals: + 6: -6,-9 + 7: -6,-8 + 5413: -6,-13 + 5422: -9,-14 + 5423: -9,-14 + 5429: -10,-12 + 5439: -19,-5 + 5440: -19,-4 + 5441: -19,-3 + 5442: -19,-2 + 5443: -19,-1 + 5454: -11,1 + 5499: -8,-4 + 5505: -6,-14 + 5511: -38,-30 + 5519: -42,-30 + 5525: -46,-30 + 5531: -44,-27 + 5537: -48,-25 + 5550: -39,-25 + 5551: -39,-24 + 5579: -59,-22 + 5580: -59,-23 + 5581: -59,-24 + 5585: -57,-26 + 5591: -61,-27 + 5592: -61,-28 + 5593: -61,-29 + 5610: -10,-11 + 5617: -12,-9 + 5618: -12,-8 + 5619: -12,-7 + 5620: -12,-6 + 5626: -11,-4 + 5627: -11,-3 + 5628: -11,-2 + 5675: -52,-41 + 5680: -49,-39 + 5681: -49,-38 + 5682: -49,-37 + 5688: -46,-35 + 5689: -46,-34 + 5690: -46,-33 + 5691: -46,-32 + 5692: -46,-31 + - node: + color: '#D381C996' + id: BrickTileWhiteLineW + decals: + 125: 11,42 + 126: 11,43 + 127: 11,44 + 128: 11,45 + 134: 11,46 + 135: 11,41 + 1110: 8,37 + 1118: 10,35 + 1121: 11,40 + 1122: 11,39 + 1123: 9,47 + 1127: 7,49 + 1149: 3,46 + 1150: 3,43 + 1167: -2,45 + 1168: -2,44 + 1175: -6,41 + 1176: -6,40 + 1235: 17,40 + 1236: 24,40 + 1237: 24,42 + 1238: 24,43 + - node: + color: '#DC801DBF' + id: BrickTileWhiteLineW + decals: + 1433: 69,23 + 1434: 69,25 + 1457: 63,25 + 1458: 63,26 + 1459: 63,27 + 1460: 63,28 + 1461: 66,28 + 1462: 69,28 + 1463: 72,28 + 1464: 66,25 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 812: -23,-5 + 813: -23,-4 + 814: -23,-3 + 815: -23,-2 + 1305: 69,6 + 1306: 69,9 + 1307: 63,12 + 1308: 63,9 + 1309: 64,6 + 1315: 69,7 + 1316: 69,8 + 1317: 69,10 + 1318: 64,7 + 1319: 63,10 + 1320: 63,11 + 1346: 67,12 + 1353: 73,10 + 1354: 73,9 + 1355: 73,8 + 1356: 73,7 + 1405: 70,15 + 1406: 70,16 + 1407: 70,17 + 1408: 70,18 + 1409: 70,19 + 1410: 70,20 + 1421: 63,20 + 1422: 63,21 + 1432: 69,22 + 4809: 10,-34 + 4810: 10,-33 + 4817: 11,-29 + 4818: 11,-30 + 4819: 11,-31 + 4828: 6,-38 + 4829: 6,-37 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineW + decals: + 872: -39,6 + 884: -49,-2 + 885: -49,-1 + 888: -49,1 + 889: -49,2 + 890: -49,3 + 895: -44,3 + 896: -44,4 + 897: -44,5 + 898: -44,6 + 919: -49,8 + 920: -49,7 + 935: -49,11 + 936: -49,10 + 954: -52,20 + 956: -52,19 + 957: -52,18 + 958: -52,17 + 959: -52,16 + 960: -52,15 + 961: -52,13 + 962: -52,12 + 963: -52,11 + 964: -52,10 + 965: -52,9 + 966: -52,8 + 967: -52,6 + 968: -52,5 + 969: -52,4 + 970: -52,2 + 971: -52,1 + 972: -52,0 + 973: -52,-1 + 974: -52,-2 + 975: -52,-4 + 976: -52,-5 + 977: -52,-7 + 978: -52,-8 + 993: -52,-11 + 994: -52,-12 + 995: -52,-13 + 996: -52,-14 + 997: -52,-16 + 998: -52,-18 + 1022: -48,-16 + 1038: -48,-18 + 1930: -52,-19 + 1932: -52,-15 + 2022: -58,3 + 2023: -58,4 + - node: + color: '#FF9242B2' + id: BrickTileWhiteLineW + decals: + 1675: 75,-14 + 1676: 69,-12 + 1677: 73,-10 + - node: + color: '#FFFFFFFF' + id: BushATwo + decals: + 638: 24.431492,5.744228 + - node: + color: '#169C9CFF' + id: BushCThree + decals: + 5055: -1.8366688,16.203144 + - node: + color: '#FFFF00FF' + id: BushDThree + decals: + 627: 8.490051,33.43228 + - node: + color: '#FFFF00FF' + id: Busha3 + decals: + 629: 6.1254687,31.931244 + - node: + color: '#FFFFFFFF' + id: Busha3 + decals: + 639: 23.421074,4.7539563 + - node: + angle: -6.283185307179586 rad + color: '#F9801DFF' + id: Bushb1 + decals: + 433: 18.191904,6.0937667 + - node: + angle: -6.283185307179586 rad + color: '#169C9CFF' + id: Bushc3 + decals: + 434: 16.57627,0.4865495 + - node: + color: '#FFFF00FF' + id: Bushd1 + decals: + 626: 9.073384,33.275925 + - node: + color: '#FFFF00FF' + id: Bushd3 + decals: + 628: 17.135885,31.430893 + - node: + color: '#FFFF00FF' + id: Bushe1 + decals: + 5052: -3.274169,13.95158 + - node: + color: '#FFFFFFFF' + id: Bushe1 + decals: + 623: 8.031718,34.08899 + - node: + angle: -6.283185307179586 rad + color: '#F9801DFF' + id: Bushe2 + decals: + 421: 6.0704503,-0.37480307 + 422: 6.903784,1.8559132 + - node: + color: '#FFFFFFFF' + id: Bushe2 + decals: + 622: 6.1775517,32.911087 + - node: + angle: -6.283185307179586 rad + color: '#F9801DFF' + id: Bushe4 + decals: + 420: 5.8517003,7.6307573 + 423: 9.091283,0.6363156 + 424: 7.935034,2.4188042 + - node: + color: '#FFFF00FF' + id: Bushe4 + decals: + 5051: 0.9654145,14.993971 + - node: + color: '#FFFFFFFF' + id: Bushe4 + decals: + 621: 16.167135,33.307198 + 624: 14.917135,33.33847 + - node: + color: '#F9801DFF' + id: Bushf1 + decals: + 4603: 97.00891,-2.922496 + - node: + angle: -6.283185307179586 rad + color: '#FFFFFFFF' + id: Bushf1 + decals: + 445: 7.125356,4.9482164 + - node: + color: '#169C9CFF' + id: Bushf3 + decals: + 2000: -53.14884,18.41473 + - node: + angle: -6.283185307179586 rad + color: '#F9801DFF' + id: Bushg1 + decals: + 425: 26.910645,6.301181 + - node: + color: '#FFFFFFFF' + id: Bushh1 + decals: + 625: 14.083801,34.10984 + - node: + angle: -6.283185307179586 rad + color: '#3AB3DAFF' + id: Bushi1 + decals: + 427: 16.662453,-1.9050739 + 428: 17.652035,-1.9259219 + - node: + color: '#FFFFFFFF' + id: Bushi1 + decals: + 500: 9.1753645,34.27253 + 508: 5.748282,33.188446 + 520: 9.1545315,33.751335 + 521: 6.5086985,32.959114 + 525: 9.133698,33.376076 + 526: 6.4774485,32.479614 + 535: 7.425365,32.427498 + 544: 6.3836985,31.458075 + 562: 13.85318,34.125107 + 568: 17.259432,33.614334 + 574: 13.862885,33.530945 + 578: 15.925386,33.259926 + 583: 15.967052,32.644913 + 589: 15.133719,32.196686 + 593: 17.144136,31.57125 + 601: 16.519136,31.19599 + 605: 15.904552,30.612251 + - node: + color: '#FFFFFFFF' + id: Bushi2 + decals: + 501: 8.571198,34.262108 + 506: 5.8211985,34.29338 + 507: 5.6961985,33.667946 + 509: 5.748282,32.656822 + 513: 5.7899485,30.843065 + 514: 6.394115,33.62625 + 515: 6.175365,33.720062 + 516: 6.9149485,33.782608 + 522: 7.154532,33.240562 + 527: 7.1649485,32.761063 + 531: 9.321198,32.771484 + 534: 8.102448,32.54216 + 536: 7.019115,32.14605 + 541: 9.2378645,31.729095 + 542: 8.5191145,31.478922 + 543: 7.9774485,31.249598 + 545: 7.1024485,31.593586 + 552: 9.164948,31.228748 + 563: 14.66568,34.229347 + 567: 17.321932,34.177223 + 569: 16.634432,33.624756 + 573: 14.152232,33.67688 + 575: 13.789969,33.030594 + 577: 15.164969,33.353737 + 579: 16.592054,33.09314 + 582: 16.623304,32.571945 + 584: 15.425385,32.769997 + 588: 14.321219,32.165413 + 590: 15.831636,32.207108 + 594: 16.737886,31.644218 + 600: 15.831636,31.123022 + 602: 17.217054,31.029207 + 606: 13.862885,30.71649 + - node: + angle: -6.283185307179586 rad + color: '#FED83DFF' + id: Bushi3 + decals: + 439: 21.251738,-1.9097083 + - node: + color: '#FFFFFFFF' + id: Bushi3 + decals: + 502: 7.9253645,34.25168 + 505: 6.029532,34.25168 + 510: 5.8211985,32.18775 + 512: 5.831615,31.270445 + 517: 7.5399485,33.77218 + 519: 8.914948,33.80345 + 523: 7.8420315,33.31353 + 528: 7.7899485,32.906998 + 530: 8.9566145,32.959114 + 533: 8.727448,32.44835 + 537: 6.3836985,31.968845 + 540: 8.8628645,31.947998 + 546: 7.5920315,31.468498 + 548: 7.0086985,31.082813 + 549: 7.4774485,30.91603 + 564: 15.488597,34.32316 + 566: 16.832348,34.093834 + 570: 15.912649,33.76027 + 572: 14.870982,33.854088 + 576: 14.487885,33.166107 + 581: 17.237886,32.63449 + 585: 14.967052,32.749153 + 587: 13.789969,32.40516 + 591: 16.53997,32.13414 + 595: 16.19622,31.696335 + 597: 14.362885,31.612946 + 599: 13.758719,31.268957 + 603: 17.081636,30.653946 + - node: + angle: -6.283185307179586 rad + color: '#FED83DFF' + id: Bushi4 + decals: + 441: 21.866322,-1.9722521 + - node: + color: '#FFFFFFFF' + id: Bushi4 + decals: + 503: 7.2899485,34.28295 + 504: 6.7274485,34.209984 + 511: 5.831615,31.739521 + 518: 8.2066145,33.80345 + 524: 8.508698,33.39692 + 529: 8.352448,32.948692 + 532: 9.227448,32.312836 + 538: 7.7170315,32.00012 + 539: 8.289948,32.010544 + 547: 6.342032,31.051542 + 550: 8.133698,30.863913 + 551: 8.7170315,30.988998 + 565: 16.13443,34.198074 + 571: 15.412648,33.854088 + 580: 17.175386,33.124413 + 586: 14.310802,32.728302 + 592: 17.22747,32.113297 + 596: 15.72747,31.602524 + 598: 13.758719,31.821426 + 604: 16.487886,30.580978 + - node: + color: '#FED83DFF' + id: Bushj1 + decals: + 1999: -53.08634,17.664207 + - node: + color: '#80C71FFF' + id: Bushj2 + decals: + 630: 14.083801,32.337776 + - node: + angle: -6.283185307179586 rad + color: '#C74EBDFF' + id: Bushj2 + decals: + 417: 8.63295,-0.8751502 + - node: + color: '#FED83DFF' + id: Bushj2 + decals: + 1998: -53.11759,19.332033 + - node: + angle: -6.283185307179586 rad + color: '#FFFFFFFF' + id: Bushj2 + decals: + 443: 23.241245,8.914062 + 444: 26.904371,8.277342 + - node: + angle: -6.283185307179586 rad + color: '#F9801DFF' + id: Bushj3 + decals: + 419: 6.5183673,8.131104 + - node: + angle: -6.283185307179586 rad + color: '#3AB3DAFF' + id: Bushk1 + decals: + 432: 5.9213023,1.1887747 + - node: + color: '#C6D83DFF' + id: Bushl2 + decals: + 1941: 95.40731,-0.21531916 + - node: + angle: -6.283185307179586 rad + color: '#18A2D5FF' + id: Bushn1 + decals: + 318: 9.073743,2.2660253 + - node: + angle: -6.283185307179586 rad + color: '#C74EBDFF' + id: Bushn1 + decals: + 416: 17.180063,-1.7524672 + - node: + color: '#D29A3DFF' + id: Bushn1 + decals: + 2003: -48.86759,19.008892 + - node: + angle: -6.283185307179586 rad + color: '#D5188DFF' + id: Bushn1 + decals: + 317: 9.104993,5.0283604 + - node: + angle: -6.283185307179586 rad + color: '#F9801DFF' + id: Bushn1 + decals: + 429: 17.193703,-1.7591395 + - node: + angle: -6.283185307179586 rad + color: '#FFFFFFFF' + id: Bushn1 + decals: + 316: 9.052909,2.2660253 + - node: + color: '#8932B8FF' + id: CheckerNESW + decals: + 32: 25,-14 + 33: 26,-14 + 34: 27,-14 + 35: 28,-14 + 36: 29,-14 + 37: 29,-15 + 38: 28,-15 + 39: 27,-15 + 40: 26,-15 + 41: 25,-15 + 42: 24,-15 + 43: 25,-16 + 44: 26,-16 + 45: 27,-16 + 46: 28,-16 + 47: 29,-16 + 48: 29,-17 + 49: 28,-17 + 50: 27,-17 + 51: 26,-17 + 52: 25,-17 + 53: 25,-18 + 54: 26,-18 + 55: 27,-18 + 56: 28,-18 + 57: 29,-18 + - node: + color: '#474F52FF' + id: CheckerNWSE + decals: + 153: 15,-7 + 154: 16,-7 + 155: 17,-7 + 156: 18,-7 + 157: 19,-7 + 158: 20,-7 + 159: 20,-8 + 160: 19,-8 + 161: 18,-8 + 162: 17,-8 + 163: 16,-8 + 164: 15,-8 + 165: 15,-9 + 166: 16,-9 + 167: 17,-9 + 168: 18,-9 + 169: 19,-9 + 170: 20,-9 + 171: 15,-11 + 172: 19,-6 + 173: 20,-11 + 174: 19,-11 + 175: 18,-11 + 176: 17,-11 + 177: 16,-11 + 178: 15,-12 + 179: 16,-12 + 180: 17,-12 + 181: 18,-12 + 182: 19,-12 + 183: 20,-12 + 184: 19,-13 + 185: 18,-13 + 186: 17,-13 + 187: 16,-13 + 188: 15,-13 + 189: 14,-13 + 190: 15,-14 + 191: 16,-14 + 192: 17,-14 + 193: 18,-14 + 194: 19,-14 + 195: 20,-14 + 2011: 19,-10 + - node: + color: '#C74EBDFF' + id: CheckerNWSE + decals: + 58: 25,-14 + 59: 26,-14 + 60: 27,-14 + 61: 28,-14 + 62: 29,-14 + 63: 29,-15 + 64: 28,-15 + 65: 27,-15 + 66: 26,-15 + 67: 25,-15 + 68: 24,-15 + 69: 25,-16 + 70: 26,-16 + 71: 27,-16 + 72: 28,-16 + 73: 29,-16 + 74: 29,-17 + 75: 28,-17 + 76: 27,-17 + 77: 26,-17 + 78: 25,-17 + 79: 25,-18 + 80: 26,-18 + 81: 27,-18 + 82: 28,-18 + 83: 29,-18 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 1911: 6,39 + 1912: 5,39 + 1913: 4,39 + 1914: 3,39 + 1915: 12,49 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 5382: -88,4 + 5717: -46,-41 + 5720: -47,-43 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: DeliveryGreyscale + decals: + 1916: 61,-16 + 1917: 61,-17 + 1918: 62,-17 + 1919: 63,-17 + - node: + color: '#FFFFFFFF' + id: DeliveryGreyscale + decals: + 137: -2,42 + 138: -1,42 + 139: -1,41 + 140: -2,41 + 5339: -75,4 + 5340: -74,4 + 5341: -73,4 + 5366: -84,11 + 5367: -92,11 + 5368: -95,8 + 5369: -92,8 + 5370: -88,8 + 5371: -84,8 + 5372: -81,8 + 5373: -84,4 + 5374: -92,4 + 5375: -95,0 + 5376: -92,0 + 5377: -88,0 + 5378: -84,0 + 5379: -81,0 + 5380: -84,-3 + 5381: -92,-3 + - node: + color: '#169C9CFF' + id: DiagonalCheckerAOverlay + decals: + 4722: 31,-40 + 4723: 32,-40 + 4724: 32,-41 + 4725: 31,-41 + 4726: 31,-42 + 4727: 32,-42 + 4728: 32,-43 + 4729: 31,-43 + 4730: 31,-44 + 4731: 32,-44 + - node: + cleanable: True + angle: 6.283185307179586 rad + color: '#1D1D21FF' + id: Dirt + decals: + 5071: -3.5462255,15.986721 + 5072: -3.4212255,15.736547 + 5073: -3.6503925,16.14308 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 2229: 22.534914,-36.539017 + 2230: 22.48262,-35.453293 + 2231: 22.542215,-34.42006 + 2256: 15.998362,-43.543457 + 2276: 5.295199,-24.01781 + 2277: 5.378532,-24.090778 + 2278: 5.795199,-24.069931 + 2279: 16.753532,-24.059507 + 2280: 16.836866,-24.080355 + 2281: 17.274366,-24.101202 + 2282: 17.711866,-24.080355 + 2372: -16.174568,-8.028676 + 2373: -16.080818,-8.112067 + 2374: -15.643319,-8.132915 + 2375: -15.028736,-8.800044 + 2376: -15.070402,-9.008523 + 2377: -15.216236,-9.74862 + 2378: -13.987069,-8.966826 + 2379: -13.195402,-10.040489 + 2380: -13.434986,-10.030066 + 2381: -13.612069,-10.009217 + 2382: -13.914152,-9.977946 + 2383: -14.518319,-10.019641 + 2411: -16.06057,-8.685382 + 2412: 9.517371,-21.011965 + 2413: 10.027787,-21.512314 + 2414: 13.525035,-21.02239 + 2415: 13.764619,-21.001541 + 2447: 0.790038,-12.972109 + 2448: 1.352538,-12.9512615 + 2449: 5.987955,-15.995043 + 2450: 6.4671216,-14.963076 + 2451: 6.925455,-14.942227 + 2452: 0.993474,-17.068705 + 2453: 1.524724,-17.037432 + 2454: 1.5038905,-16.474543 + 2455: -5.687143,-7.241135 + 2456: -5.187143,-8.283526 + 2457: -4.2704763,-8.710906 + 2458: -4.687143,-9.232101 + 2459: -4.72881,-10.222373 + 2467: -14.340512,-4.730744 + 2468: -15.435547,-1.2123308 + 2469: -14.643881,-1.1810591 + 2470: -11.70638,-0.48265743 + 2516: -9.013605,-2.3166645 + 2517: -9.107355,-1.628687 + 2518: -9.107355,-1.3576655 + 2519: -9.107355,-1.1074913 + 2520: -9.044855,-0.7113833 + 2521: -9.190689,-0.54460025 + 2522: -9.346939,-0.4507854 + 2523: -9.659439,-0.023405194 + 2524: -8.128189,0.20592046 + 2525: -7.8573546,0.6124531 + 2526: -7.7740216,0.852203 + 2528: -6.047054,-0.47503996 + 2529: -6.5053873,0.035731554 + 2530: -1.9876481,-0.46411896 + 2531: -0.98229563,2.5037103 + 2545: 9.96449,-8.988956 + 2546: 9.954073,-4.0897207 + 2547: 10.485323,-3.516406 + 2548: 14.682418,-3.0642853 + 2549: 14.984501,-3.0434372 + 2550: 15.255334,-3.0330136 + 2551: 15.442834,-3.7939587 + 2559: 19.488985,-3.0225892 + 2560: 19.988985,-3.5646324 + 2561: 19.447317,-3.522937 + 2562: 25.073025,-1.1043798 + 2563: 25.031359,-1.9799881 + 2564: 25.010525,-0.84378254 + 2565: 25.02094,-0.5623368 + 2566: 26.104275,-1.8340539 + 2567: 26.093859,-1.750662 + 2568: 26.11469,-1.3232824 + 2569: 26.135525,-0.87505424 + 2570: 26.11469,-0.3434348 + 2571: 25.70844,-0.3434348 + 2572: 25.979275,-0.26004362 + 2573: 27.135525,-1.77151 + 2574: 27.073025,-1.469217 + 2575: 27.041775,-1.1252278 + 2576: 27.041775,-0.8020867 + 2577: 27.02094,-0.5936084 + 2578: 28.125109,-1.8132058 + 2579: 28.062609,-1.4170972 + 2580: 28.05219,-1.0209886 + 2581: 28.05219,-0.81251097 + 2582: 28.08344,-0.426826 + 2583: 29.041775,-0.6248807 + 2584: 25.750109,1.0116729 + 2585: 25.937609,0.82404256 + 2595: 33.95524,2.086919 + 2596: 33.965656,1.7950497 + 2597: 33.98649,1.6074193 + 2598: 29.965656,5.076825 + 2599: 29.840656,5.8586183 + 2600: 29.48649,6.0254006 + 2601: 28.903156,6.390238 + 2602: 34.16357,5.921161 + 2603: 34.715656,5.9941287 + 2604: 35.059406,6.567444 + 2605: 35.04899,7.51602 + 2606: 35.04899,7.870432 + 2631: 35.50605,-2.2137337 + 2632: 35.651886,-2.317973 + 2633: 35.9123,-2.3700924 + 2634: 36.245636,-2.4430597 + 2635: 36.391468,-2.526451 + 2636: 36.683136,-1.9948316 + 2637: 36.495636,-1.6925387 + 2638: 36.245636,-1.390245 + 2639: 39.88105,1.3428807 + 2640: 39.870636,1.3324571 + 2641: 39.56855,0.88422894 + 2642: 39.56855,0.6340554 + 2643: 39.526886,-0.033074856 + 2644: 39.735218,-0.30409634 + 2645: 39.4748,1.2736292 + 2646: 39.578968,1.3987162 + 2647: 39.860218,1.5133791 + 2648: 35.5373,9.1463585 + 2649: 35.63105,9.156783 + 2650: 36.0998,9.302717 + 2651: 36.4748,9.22975 + 2652: 36.651886,8.864914 + 2653: 36.620636,8.468805 + 2654: 36.422718,7.832947 + 2655: 39.870636,5.9566436 + 2656: 39.81855,5.8315563 + 2657: 39.7873,5.7273173 + 2658: 40.058136,5.5501113 + 2659: 39.049316,-5.9143896 + 2660: 39.1639,-5.8726945 + 2661: 39.518066,-5.747607 + 2662: 39.52848,-5.570401 + 2663: 39.57015,-5.3514986 + 2664: 39.57015,-4.9866624 + 2665: 39.111816,-5.559977 + 2666: 13.702222,8.992252 + 2667: 13.556389,9.033948 + 2668: 13.545972,9.106915 + 2669: 13.639722,9.284122 + 2670: 14.004306,9.377937 + 2671: 14.035556,9.346665 + 2672: 14.223056,9.200731 + 2673: 8.976949,9.148611 + 2674: 9.101949,9.294546 + 2675: 9.310282,9.325817 + 2676: 9.362366,9.033948 + 2677: 9.372782,8.658688 + 2678: 9.112366,14.047847 + 2679: 9.101949,13.92276 + 2680: 9.279032,13.30775 + 2681: 9.320699,13.120119 + 2682: 9.310282,12.807402 + 2683: 9.237366,12.5885 + 2684: 9.174866,12.494685 + 2685: 9.133199,12.494685 + 2686: 8.768616,12.578076 + 2687: 8.529032,12.598925 + 2688: 8.226949,12.713587 + 2689: 7.8831987,12.765707 + 2690: 4.4160542,12.598984 + 2691: 4.1868873,13.057635 + 2692: 4.0410542,13.599678 + 2693: 3.4160542,18.768831 + 2694: 5.9160542,19.988428 + 2695: 9.280637,17.072578 + 2696: 9.249387,17.166395 + 2697: 8.791054,17.166395 + 2698: -2.4316368,18.125393 + 2699: -1.9420534,24.610117 + 2700: -1.4420534,24.72478 + 2701: -1.1920534,24.641388 + 2702: -0.23372006,24.578844 + 2703: -0.11913669,23.661541 + 2704: -1.5045534,12.87141 + 2722: 1.4603354,8.745133 + 2723: 1.1790854,9.130818 + 2724: 1.0436686,9.308024 + 2725: 0.9186686,9.328873 + 2726: 1.2832521,6.107885 + 2727: 1.1895021,5.930679 + 2728: 1.0540854,5.7534723 + 2729: 0.9499186,5.6075377 + 2730: 0.6165854,5.34694 + 2731: 0.29366863,5.326092 + 2732: -0.9042479,5.5137224 + 2733: -1.4042479,5.628385 + 2734: -1.6542479,5.763896 + 2735: -2.1438313,5.805592 + 2736: -2.5396647,5.930679 + 2737: -2.2271647,5.7951684 + 2738: -2.2063313,6.139157 + 2739: -2.2792478,8.640894 + 2740: -2.3313313,8.828525 + 2741: -2.3521647,9.0682745 + 2742: -2.2167478,9.255905 + 2743: -2.0292478,9.276752 + 2744: -1.7271649,9.172514 + 2745: 4.676457,1.2961984 + 2746: 4.374374,1.4525578 + 2747: 4.353541,1.9737523 + 2748: 4.676457,2.2135022 + 2749: 4.801457,3.0057194 + 2750: 4.791041,3.2975888 + 2751: 4.468124,4.2461643 + 2752: 3.738957,5.0905004 + 2753: -5.866013,6.191417 + 2754: -5.8139296,5.8578525 + 2755: -5.8139296,5.680646 + 2756: -5.897263,5.5451345 + 2757: -6.074346,5.440895 + 2758: -6.241013,5.4304724 + 2759: -6.5326796,5.4200478 + 2760: -6.918096,5.2428412 + 2761: -7.168096,5.076059 + 2762: -7.699346,5.21157 + 2763: -8.65768,5.440895 + 2764: -17.497477,5.2741127 + 2765: -17.945393,5.3887763 + 2766: -18.091227,5.5972548 + 2767: -18.20581,6.3998957 + 2768: -18.684977,6.54583 + 2769: -18.747477,6.775156 + 2770: -18.851643,7.192112 + 2771: -18.872477,7.9113617 + 2772: -18.89331,9.329014 + 2773: -16.070393,9.201753 + 2774: -16.216228,9.03497 + 2775: -15.997478,8.545047 + 2776: -15.7683115,8.65971 + 2777: -15.674561,8.972427 + 2778: -15.809978,9.233025 + 2779: -16.153728,9.316416 + 2780: -17.559977,12.626353 + 2781: -18.070393,12.866103 + 2782: -18.45581,12.980766 + 2783: -18.820393,13.272635 + 2784: -19.091227,13.595777 + 2785: -19.684977,13.606201 + 2786: -20.341227,13.449842 + 2787: -20.747477,13.28306 + 2788: -24.19224,13.437895 + 2789: -25.296408,13.469167 + 2790: -26.140158,13.865275 + 2791: -25.713074,14.219688 + 2792: -25.03599,14.334351 + 2793: -24.046408,15.262078 + 2794: -22.744324,15.82497 + 2795: -22.72349,15.82497 + 2796: -22.00474,15.897938 + 2797: -21.556824,15.82497 + 2798: -20.921408,15.793697 + 2799: -20.244324,15.856241 + 2800: -20.056824,16.06472 + 2801: -20.119324,16.106415 + 2802: -20.702658,16.179382 + 2803: -21.16099,16.20023 + 2804: -21.963074,16.127262 + 2805: -23.03599,16.06472 + 2806: -20.72349,15.793697 + 2807: -19.983908,15.835394 + 2808: -19.84849,15.710306 + 2809: -19.775574,15.408013 + 2810: -19.97349,15.335046 + 2811: -20.306824,15.335046 + 2812: -20.338074,15.6998825 + 2813: -20.046408,16.148111 + 2814: -19.681824,16.04387 + 2815: -19.556824,15.58522 + 2816: -20.369324,14.1884165 + 2817: -21.015158,14.938937 + 2818: -21.515158,15.220383 + 2819: -18.431,15.950056 + 2820: -18.21225,16.2315 + 2843: -14.474191,24.727575 + 2844: -13.859608,24.758846 + 2845: -13.640858,24.758846 + 2846: -13.140858,24.696302 + 2847: -12.588775,24.654608 + 2848: -12.234608,24.508673 + 2849: -12.005441,24.164684 + 2850: -11.786691,23.309923 + 2851: -11.734608,22.924238 + 2852: -11.713775,22.569826 + 2853: -11.776275,22.423891 + 2854: -11.630441,22.173717 + 2855: -11.474191,21.767185 + 2856: -11.328358,21.360653 + 2857: -11.245025,20.787338 + 2858: -11.370025,21.120903 + 2859: -11.286691,20.745642 + 2860: -11.057525,20.505892 + 2861: -10.609608,20.047241 + 2862: -10.349191,19.70325 + 2863: -10.255441,18.890186 + 2864: -10.328358,18.942307 + 2865: -10.828358,19.390535 + 2866: -14.651275,23.195261 + 2867: -14.526275,22.507282 + 2868: -14.432525,21.579556 + 2869: -14.317941,18.410686 + 2870: -14.265858,18.410686 + 2871: -14.474191,19.098665 + 2872: -14.505441,19.317568 + 2873: -14.338775,18.95273 + 2874: -14.067941,18.640013 + 2875: -13.807525,18.44196 + 2876: -13.901275,18.692133 + 2877: -14.307525,19.265448 + 2878: -14.036691,18.806795 + 2879: -13.630441,18.410686 + 2880: -13.036691,17.660166 + 2950: 9.32201,26.897726 + 2951: 9.32201,26.981117 + 2952: 9.32201,27.210443 + 2953: 9.35326,27.554432 + 2954: 9.44701,27.773335 + 2955: 9.644927,28.023508 + 2956: 9.94701,28.096476 + 2957: 10.25951,28.086052 + 2958: 10.030343,28.148596 + 2959: 9.47826,26.355684 + 2960: 9.374093,26.00127 + 2961: 9.405343,25.407108 + 2962: 10.94701,28.865932 + 2963: 11.092843,29.189074 + 2964: 11.301177,29.908323 + 2965: 11.082427,29.696571 + 2966: 7.0720105,35.85482 + 2967: 7.1032605,35.865242 + 2968: 7.2490935,35.990334 + 2969: 7.3115935,36.0633 + 2970: 16.092844,36.000755 + 2971: 15.79076,36.000755 + 2972: 15.22826,35.906937 + 2973: 14.332427,35.896515 + 2974: 14.051177,35.708885 + 2975: 15.079788,36.545486 + 2976: 15.111038,37.494064 + 2977: 14.777705,37.93186 + 2978: 13.798538,38.223732 + 2979: 13.433955,38.23416 + 2980: 13.961076,14.747074 + 2981: 14.398576,14.7366495 + 2982: 15.565243,14.601139 + 2983: 15.783993,14.580291 + 2984: 16.190243,14.330117 + 2985: 16.41941,14.079944 + 2986: 16.51316,13.579596 + 2987: 16.586077,13.058401 + 3014: 33.02947,13.1864605 + 3015: 32.946133,13.10307 + 3016: 25.949162,10.021938 + 3017: 27.001245,9.490318 + 3018: 24.980078,9.490318 + 3019: 36.46163,2.4862556 + 3020: 36.482464,2.9449077 + 3021: 36.544964,3.4869506 + 3022: 37.02413,3.0178752 + 3023: 37.54644,2.0453658 + 3024: 37.963104,4.0154834 + 3025: 37.473522,3.4734397 + 3046: 49.014137,2.0297396 + 3047: 50.03497,2.9261954 + 3048: 40.99941,-5.006298 + 3049: 41.87441,-5.027146 + 3050: 42.916077,-5.047993 + 3051: 42.87441,-5.986145 + 3052: 41.87441,-5.506645 + 3053: 40.99941,-6.965992 + 3054: 43.02024,-7.977111 + 3055: 45.009827,-6.997264 + 3056: 45.895245,-6.0799603 + 3057: 45.59316,-5.5379167 + 3058: 46.957745,-5.027146 + 3059: 40.23899,-8.008383 + 3084: 54.89909,7.97705 + 3085: 54.99284,6.9555073 + 3086: 54.972004,6.246681 + 3087: 54.96159,5.600399 + 3088: 55.48242,4.9749646 + 3089: 57.86784,5.6733665 + 3090: 58.315754,5.642095 + 3091: 58.96159,5.454465 + 3092: 59.26367,5.4336166 + 3093: 60.26367,5.3710737 + 3094: 60.347004,4.4224973 + 3095: 59.01367,1.1076958 + 3096: 58.909504,1.6497388 + 3097: 59.39909,1.9624557 + 3098: 56.02409,0.4354303 + 3099: 56.05534,0.17483234 + 3100: 56.065754,-0.023221731 + 3101: 56.23242,-0.12746072 + 3102: 56.46159,-0.28381944 + 3103: 57.07617,-0.888407 + 3104: 57.10742,-1.6076558 + 3105: 57.07617,-1.7327421 + 3106: 56.847004,-1.8578298 + 3107: 56.26367,-2.3269055 + 3108: 55.79492,-2.3373296 + 3109: 55.30534,-2.3373296 + 3110: 54.64909,-2.2956336 + 3111: 54.065754,-2.1705472 + 3112: 53.91992,-2.118427 + 3113: 53.64909,-1.7744381 + 3114: 53.46159,-0.9196787 + 3115: 53.70117,0.008049965 + 3116: 53.83659,0.15398431 + 3119: 54.033405,1.1566255 + 3120: 54.01257,1.3025606 + 3121: 53.939655,1.5006146 + 3122: 53.73132,1.646549 + 3123: 53.10632,2.1781683 + 3124: 62.02838,1.5311303 + 3125: 62.674213,0.9682393 + 3126: 63.05963,0.23856592 + 3127: 62.99713,-0.042879343 + 3128: 64.977554,-1.8335745 + 3129: 65.80047,-1.8752697 + 3130: 66.11297,-1.6563678 + 3161: 63.980347,5.4323235 + 3162: 63.657433,4.150183 + 3163: 63.751183,4.3586617 + 3164: 65.00118,6.9646378 + 3165: 66.98035,8.027876 + 3166: 66.29285,7.9757576 + 3167: 65.65743,7.277355 + 3168: 63.97992,12.982693 + 3169: 65.969505,16.006199 + 3170: 66.99033,17.017317 + 3171: 66.99033,17.017317 + 3198: 77.48547,20.980986 + 3199: 77.9438,20.93929 + 3200: 78.71464,20.93929 + 3201: 84.67627,20.970562 + 3202: 83.7596,20.866322 + 3243: 87.98266,16.00949 + 3244: 88.06599,16.989336 + 3245: 88.07641,18.052574 + 3246: 87.86807,17.896215 + 3247: 88.58682,16.958065 + 3248: 86.03474,17.05188 + 3249: 65.94324,25.035482 + 3250: 65.94324,25.035482 + 3251: 66.9849,29.038263 + 3252: 66.9849,29.038263 + 3253: 66.9849,29.038263 + 3254: 64.83907,25.066755 + 3255: 64.75574,25.327353 + 3256: 64.99532,25.61922 + 3257: 65.46407,25.681765 + 3258: 65.75574,25.504559 + 3259: 65.87032,25.212688 + 3260: 70.66199,27.432981 + 3261: 71.33907,27.474676 + 3262: 71.51615,27.53722 + 3263: 71.66199,27.77697 + 3264: 71.84949,28.246046 + 3265: 71.95365,29.017414 + 3266: 72.82865,29.35098 + 3267: 73.34949,29.361404 + 3268: 73.88074,29.48649 + 3269: 77.820175,29.114662 + 3270: 77.89309,28.885338 + 3271: 77.695175,28.541348 + 3272: 77.51809,28.33287 + 3273: 77.33059,28.030577 + 3274: 76.632675,27.425991 + 3275: 76.45559,27.248783 + 3276: 76.73684,27.624044 + 3277: 79.04747,23.164413 + 3278: 79.755806,23.34162 + 3279: 80.151634,23.497978 + 3280: 80.443306,23.706457 + 3281: 80.755806,24.029598 + 3282: 80.95372,24.915628 + 3300: 62.95171,29.024246 + 3301: 63.024628,28.534323 + 3302: 63.13921,28.169487 + 3303: 63.868378,27.80465 + 3391: 52.962475,-28.591238 + 3392: 53.743725,-28.601662 + 3393: 54.524975,-28.737173 + 3394: 54.59789,-29.102009 + 3395: 56.47164,-29.883802 + 3396: 55.56539,-29.070738 + 3397: 56.07581,-29.154129 + 3398: 58.969288,-29.98804 + 3399: 59.010952,-31.030432 + 3400: 59.95887,-30.99916 + 3401: 60.20887,-30.874073 + 3402: 60.625538,-30.38415 + 3403: 60.813038,-30.17567 + 3404: 54.938747,-27.272072 + 3405: 55.792915,-27.230377 + 3406: 56.824165,-27.18868 + 3407: 57.813747,-27.136562 + 3408: 58.532497,-27.18868 + 3409: 59.074165,-27.20953 + 3410: 59.490833,-27.251225 + 3411: 60.105415,-27.292921 + 3412: 60.699165,-27.313768 + 3413: 61.563747,-27.34504 + 3414: 62.219997,-27.313768 + 3415: 62.772083,-27.324192 + 3416: 63.93875,-27.334616 + 3417: 64.39709,-27.303345 + 3418: 64.699165,-27.418007 + 3419: 64.95959,-27.918354 + 3420: 65.17834,-28.57506 + 3421: 65.845,-28.324886 + 3422: 65.70959,-29.179647 + 3423: 65.72,-29.971865 + 3424: 65.70959,-31.00383 + 3425: 65.14709,-31.670961 + 3426: 64.87625,-31.681385 + 3427: 64.006645,-32.990463 + 3428: 51.9912,-29.036192 + 3429: 51.9912,-28.9528 + 3430: 52.04328,-28.660933 + 3431: 52.032867,-28.379486 + 3432: 52.02245,-28.098042 + 3433: 51.782867,-27.764477 + 3434: 51.7412,-27.941683 + 3435: 51.69953,-28.139736 + 3436: 51.626617,-28.49415 + 3437: 51.501617,-28.775595 + 3438: 51.29328,-28.984074 + 3439: 51.095367,-29.16128 + 3440: 50.157867,-29.526115 + 3441: 50.13703,-29.265518 + 3442: 49.407867,-29.557388 + 3443: 49.407867,-29.328062 + 3444: 48.720367,-29.96392 + 3445: 46.44953,-27.21201 + 3446: 46.970367,-27.24328 + 3447: 47.85578,-27.368368 + 3448: 49.29328,-27.493454 + 3449: 50.10578,-27.53515 + 3450: 50.94953,-27.555998 + 3451: 46.314117,-29.64078 + 3452: 45.907867,-29.098736 + 3453: 45.907867,-28.535845 + 3454: 45.45995,-28.066769 + 3507: 33.31333,-36.040535 + 3508: 33.396664,-36.040535 + 3509: 33.84458,-36.06138 + 3510: 34.1675,-36.603424 + 3511: 34.615414,-37.05165 + 3512: 35.334164,-37.802177 + 3513: 35.59458,-38.312943 + 3514: 35.75083,-38.604813 + 3515: 36.09458,-39.021774 + 3516: 36.98,-39.28237 + 3517: 33.959656,-40.96512 + 3518: 33.824238,-40.99639 + 3519: 33.667988,-40.652405 + 3520: 32.595074,-38.09855 + 3521: 30.807758,-47.013924 + 3522: 30.484842,-46.555267 + 3523: 29.734842,-46.325943 + 3524: 29.193174,-46.263405 + 3525: 28.672342,-46.367638 + 3526: 28.297342,-45.888138 + 3527: 28.266092,-45.565002 + 3528: 28.068174,-45.05423 + 3529: 27.911924,-44.407944 + 3530: 27.766092,-44.022263 + 3531: 27.484842,-43.865906 + 3532: 25.411924,-43.949295 + 3533: 25.005674,-44.08481 + 3534: 26.203592,-44.251587 + 3535: 27.078592,-44.58515 + 3536: 27.589008,-45.585846 + 3537: 26.776508,-45.94026 + 3538: 26.057758,-45.794327 + 3539: 23.964008,-45.710938 + 3540: 23.661924,-45.596275 + 3541: 30.391092,-49.328033 + 3542: 30.359842,-49.85965 + 3543: 29.901508,-50.25576 + 3544: 28.745258,-50.589325 + 3545: 57.164177,-9.814179 + 3546: 56.945427,-9.855875 + 3547: 56.810013,-9.991385 + 3548: 56.789177,-10.356222 + 3549: 56.841263,-10.783603 + 3550: 56.862095,-11.231831 + 3551: 56.747513,-11.700907 + 3552: 56.716263,-12.149135 + 3553: 56.622513,-12.597363 + 3554: 56.549595,-13.587633 + 3555: 56.632927,-13.785687 + 3556: 56.789177,-14.00459 + 3557: 57.091263,-14.181797 + 3558: 57.268345,-13.691873 + 3559: 57.268345,-12.659905 + 3560: 57.393345,-11.742602 + 3561: 57.424595,-10.272831 + 3562: 57.278763,-9.240865 + 3563: 61.87873,-21.67906 + 3564: 61.180813,-21.658213 + 3565: 61.0454,-21.606092 + 3566: 60.2954,-21.418463 + 3567: 105.97439,-7.9677334 + 3568: 105.526474,-7.9990044 + 3569: 105.06814,-8.019854 + 3570: 104.75564,-7.978157 + 3571: 104.16189,-7.9051895 + 3572: 103.7348,-7.9364614 + 3573: 103.31814,-8.019854 + 3574: 102.57855,-8.165787 + 3575: 98.88566,16.96008 + 3576: 98.937744,16.897535 + 3577: 99.26066,16.814144 + 3578: 99.63566,16.80372 + 3579: 99.94816,16.793297 + 3580: 100.11483,16.824568 + 3581: 100.41691,17.04347 + 3582: 100.875244,17.178982 + 3583: 101.05233,17.210253 + 3632: 53.239918,33.013725 + 3633: 52.677418,33.013725 + 3634: 52.208668,33.003296 + 3635: 51.344086,32.982452 + 3636: 50.604504,33.399406 + 3637: 50.364918,33.753822 + 3638: 49.719086,34.28544 + 3639: 48.823254,34.76494 + 3640: 47.864918,34.921295 + 3641: 46.719086,34.921295 + 3642: 46.937836,33.72255 + 3643: 46.812836,33.43068 + 3644: 46.364918,32.940758 + 3645: 45.333668,32.36744 + 3646: 46.976395,41.03781 + 3647: 46.986813,41.03781 + 3648: 47.820145,41.00654 + 3649: 47.986813,40.964844 + 3650: 48.257645,40.964844 + 3651: 48.528477,40.954422 + 3652: 49.018063,40.93357 + 3653: 49.132645,41.00654 + 3670: 26.970055,50.8619 + 3671: 27.032555,51.14335 + 3672: 27.063805,51.424797 + 3673: 27.095055,51.44564 + 3674: 30.60547,47.964058 + 3675: 30.178387,47.69304 + 3676: 29.79297,47.43244 + 3677: 29.334637,47.29693 + 3678: 28.865887,47.255234 + 3679: 10.9847765,51.98777 + 3680: 11.2660265,52.019043 + 3681: 11.56811,51.98777 + 3682: 11.8597765,51.925224 + 3683: 12.0889435,51.88353 + 3684: 12.8389435,51.86268 + 3685: 13.5160265,51.914803 + 3686: 13.8701935,51.935646 + 3687: 14.4535265,51.97734 + 3688: 14.9847765,51.99819 + 3689: 15.22436,51.97734 + 3690: 13.9639435,51.935646 + 3691: 13.16186,51.925224 + 3692: 12.1722765,51.97734 + 3693: 10.9743595,51.97734 + 3715: -0.19010699,52.09046 + 3716: -0.11719048,51.819443 + 3717: -0.044273734,50.902138 + 3718: -0.08594048,50.64154 + 3719: -0.13802373,50.224586 + 3720: 0.21614301,49.995262 + 3721: 0.45572627,50.214165 + 3722: 0.13280952,51.80902 + 3750: 0.8432044,24.574436 + 3751: 0.6452874,24.939272 + 3752: 0.5411209,25.231142 + 3753: 0.19737089,25.679369 + 3754: -0.042212605,26.096327 + 3755: -0.06304562,26.377771 + 3756: -0.2609626,26.48201 + 3757: -1.0317959,25.898272 + 3758: -2.125546,25.418772 + 3759: -2.563046,25.418772 + 3760: -3.0734625,25.324957 + 3761: -3.375546,25.053936 + 3762: 2.8284364,26.127598 + 3763: 2.745103,25.929543 + 3764: 3.088853,25.52301 + 3765: -11.823858,25.977543 + 3766: -12.230108,25.977543 + 3767: -13.261358,25.800335 + 3768: -14.553025,25.654402 + 3769: -15.219692,25.550161 + 3770: -15.360694,23.962334 + 3771: -15.819028,23.378595 + 3772: -16.214863,23.222237 + 3773: -16.704443,23.159695 + 3774: -17.423193,23.170118 + 3775: -17.798193,23.170118 + 3776: -18.079443,23.389019 + 3777: -18.235693,23.555801 + 3778: -18.954443,23.055454 + 3779: -18.77736,22.05476 + 3780: -18.62111,21.700346 + 3781: -17.329443,21.669075 + 3782: -16.850277,22.023487 + 3783: -16.569027,22.05476 + 3784: -16.360695,21.794163 + 3785: -16.141945,21.356358 + 3786: -16.131527,20.949825 + 3787: -16.537777,20.814316 + 3856: -25.022575,42.025375 + 3857: -24.897575,41.994102 + 3858: -24.66841,41.941986 + 3859: -24.272575,41.962837 + 3860: -23.845491,41.88987 + 3861: -23.29341,41.848175 + 3862: -22.98091,41.86902 + 3863: -22.48091,41.941986 + 3864: -21.532991,42.05665 + 3865: -23.220491,42.546577 + 3866: -25.368246,-5.84987 + 3867: -25.451578,-6.4231853 + 3868: -25.336996,-7.111163 + 3869: -24.628662,-7.7678695 + 3870: -24.399496,-7.7678695 + 3871: -23.795328,-7.788717 + 3872: -23.097412,-7.830413 + 3873: -22.003662,-7.7678695 + 3874: -21.701578,-7.684478 + 3903: -4.7908077,-28.94189 + 3904: -4.7283077,-28.566631 + 3905: -4.551224,-28.118402 + 3906: -4.113724,-27.805685 + 3907: -3.9470577,-27.76399 + 3908: -3.6137242,-27.784838 + 3909: -3.1762242,-27.857805 + 3910: -2.9053912,-28.035011 + 3911: -2.5199742,-28.410273 + 3912: -2.4053912,-28.921043 + 3945: -10.4642315,-42.165733 + 3946: -9.6413145,-42.176155 + 3947: -9.3496475,-42.176155 + 3948: -8.5267315,-42.32209 + 3949: -7.537147,-42.31167 + 3950: -6.9017305,-42.384636 + 3951: -6.2142305,-42.624382 + 3952: -5.974647,-43.208122 + 3953: -5.7767305,-43.906525 + 3954: -5.860064,-44.761284 + 3955: -6.068397,-45.30333 + 3956: -6.4329805,-45.49096 + 3957: -7.443397,-45.470108 + 3958: -8.8808975,-44.709167 + 3959: -17.925673,-40.27031 + 3960: -17.748589,-39.436394 + 3961: -17.498589,-38.967316 + 3962: -17.415255,-38.758842 + 3963: -17.321505,-38.321037 + 3964: -17.404839,-37.75815 + 3965: -17.665255,-37.435005 + 3966: -17.956923,-36.98678 + 3967: -12.9673395,-31.43812 + 3968: -13.581923,-31.667446 + 3969: -14.675673,-31.834229 + 3970: -15.1340065,-31.907198 + 3971: -16.009007,-31.875925 + 3972: -16.477757,-31.855076 + 4001: -20.506908,-28.934498 + 4002: -24.014294,-36.21125 + 4003: -24.191376,-36.179977 + 4004: -24.451794,-36.11743 + 4005: -24.847626,-36.044464 + 4006: -25.295544,-36.034042 + 4007: -25.660126,-36.127853 + 4008: -25.889294,-36.21125 + 4009: -26.316378,-36.179977 + 4010: -26.753878,-35.981926 + 4011: -27.11846,-35.81514 + 4012: -27.71221,-35.81514 + 4013: -27.983044,-35.91938 + 4014: -28.295544,-36.138283 + 4015: -28.36846,-36.471848 + 4016: -28.30596,-37.118126 + 4017: -28.503878,-37.993736 + 4018: -28.39971,-38.59832 + 4059: -37.404713,-14.519548 + 4060: -37.63388,-14.915657 + 4061: -37.82138,-14.999048 + 4062: -38.2068,-15.072016 + 4063: -38.998463,-14.999048 + 4064: -39.17555,-15.259646 + 4065: -39.04013,-15.561939 + 4066: -38.86305,-15.822537 + 4067: -39.1443,-16.687721 + 4068: -38.873463,-17.177645 + 4069: -39.10263,-17.88647 + 4070: -39.2068,-18.147068 + 4071: -38.935963,-18.751656 + 4072: -38.98805,-19.210306 + 4073: -37.810963,-19.56472 + 4074: -37.717213,-19.679382 + 4075: -37.54013,-20.148458 + 4076: -38.435963,-19.095644 + 4077: -38.75888,-18.449362 + 4078: -39.19638,-16.917048 + 4079: -37.529713,-15.259646 + 4080: -37.435963,-15.353462 + 4081: -36.98805,-15.7599945 + 4082: -35.873463,-16.322886 + 4109: -27.059181,1.1467073 + 4110: -27.017513,1.177979 + 4111: -27.027931,1.3239138 + 4112: -27.340431,1.4177289 + 4113: -28.538347,1.4698484 + 4114: -28.673763,1.7408702 + 4115: -28.819597,2.1995218 + 4116: -29.027931,2.533087 + 4117: -27.035854,5.3638926 + 4118: -27.285854,5.405588 + 4119: -27.535854,5.0615997 + 4120: -27.712936,4.9260883 + 4121: -27.994186,4.696763 + 4122: -28.223354,4.311078 + 4123: -28.35877,3.8836975 + 4124: -26.45252,4.5716753 + 4125: -26.525436,3.7898827 + 4126: -29.10877,3.404198 + 4127: -29.26502,3.4563174 + 4128: -29.57752,3.3833506 + 4129: -30.129604,3.3520784 + 4130: -30.577251,3.9054356 + 4131: -30.296001,7.7935524 + 4132: -30.316833,7.4704113 + 4133: -30.285583,7.1993895 + 4134: -29.931417,7.14727 + 4135: -29.546001,6.6573467 + 4136: -29.285583,6.156999 + 4137: -29.660583,0.3821547 + 4163: -37.06638,-0.56174135 + 4164: -36.50388,0.27217102 + 4165: -36.451797,0.9184532 + 4166: -36.108047,1.4292247 + 4167: -37.47263,1.9399962 + 4168: -40.826797,1.491768 + 4169: -40.62888,1.5021915 + 4170: -40.358047,1.533464 + 4171: -39.649715,1.5438876 + 4172: -39.430965,1.5543113 + 4173: -38.920547,1.5647354 + 4174: -38.733047,1.5855827 + 4175: -38.483047,1.5751591 + 4176: -38.055965,1.6585503 + 4177: -37.743465,2.1172023 + 4178: -37.28513,2.3361042 + 4179: -37.180965,2.7739089 + 4180: -36.899715,2.9823864 + 4181: -39.774715,5.3348546 + 4182: -39.670547,4.6885724 + 4183: -39.764297,3.917204 + 4184: -39.983047,3.4793992 + 4185: -38.59763,3.5523667 + 4186: -37.024715,-2.00033 + 4187: -39.018444,-1.4490832 + 4188: -39.268444,-2.1370606 + 4189: -39.226776,-2.7207997 + 4190: -39.185112,-3.0856361 + 4191: -39.455944,-3.4921684 + 4192: -41.461918,-7.731742 + 4193: -42.191086,-7.6587744 + 4194: -44.3265,-7.5649595 + 4195: -45.409836,-7.6587744 + 4196: -46.430668,-7.6587744 + 4197: -46.0765,-7.366905 + 4198: -44.23275,-7.2626657 + 4199: -43.961918,-6.908253 + 4200: -43.503586,-6.9186773 + 4201: -42.909836,-7.064612 + 4247: -47.05593,3.551272 + 4248: -49.30593,-2.9878402 + 4249: -48.764263,-2.9982643 + 4250: -47.795513,-3.4881878 + 4251: -47.27468,-3.6028507 + 4252: -46.46218,-3.6653938 + 4253: -44.108013,-1.0072981 + 4254: -46.19135,-0.9551786 + 4255: -45.86843,-1.7265472 + 4256: -45.80593,-2.351982 + 4257: -45.96218,-2.6751232 + 4258: -47.52468,-0.7779719 + 4259: -48.06635,-1.2262001 + 4260: -47.889263,-2.2477431 + 4261: -47.77468,-2.789786 + 4262: -49.701763,0.14975548 + 4263: -48.639263,-0.2046572 + 4264: -47.6601,0.055940628 + 4265: -42.03469,-2.0079932 + 4266: -42.03469,-1.9975688 + 4267: -41.07636,-1.9558735 + 4297: -49.731476,9.0261135 + 4298: -49.46064,8.994842 + 4299: -48.52314,9.380527 + 4300: -48.74189,10.16232 + 4301: -49.043976,11.319373 + 4302: -47.533558,8.254745 + 4303: -47.24189,8.067114 + 4304: -50.297897,-0.10914719 + 4305: -50.860397,0.047211528 + 4306: -51.245815,0.39120066 + 4307: -51.599983,1.2355368 + 4308: -51.235397,-0.6129807 + 4309: -51.474983,-2.749882 + 4310: -51.277065,-1.4573176 + 4311: -51.391647,-2.2703822 + 4312: -51.599983,-3.9130483 + 4313: -51.558315,-4.9867105 + 4314: -50.141647,-6.2271557 + 4315: -50.391647,-6.2480035 + 4316: -52.797897,-6.18546 + 4317: -53.454147,-6.133341 + 4318: -54.021454,-6.8252716 + 4319: -54.31312,-7.440281 + 4320: -54.823536,-7.648759 + 4321: -55.792286,-7.6070633 + 4322: -57.761036,-7.6279116 + 4323: -58.646454,-7.6070633 + 4324: -59.698536,-7.5132484 + 4325: -57.917286,-7.6070633 + 4326: -62.971622,-3.1217012 + 4327: -63.26329,-2.4858425 + 4328: -63.315372,-3.0278864 + 4329: -63.065372,-3.2989078 + 4330: -62.409122,-3.423994 + 4331: -63.29454,-3.2676353 + 4332: -62.71121,8.35826 + 4333: -62.377872,8.483347 + 4334: -61.48204,8.962847 + 4335: -60.45079,9.588282 + 4336: -59.66954,10.390923 + 4337: -59.20079,11.245682 + 4338: -60.315372,10.453465 + 4339: -58.627872,8.399956 + 4340: -58.76329,7.388837 + 4341: -59.05496,6.8050985 + 4342: -60.38829,6.846793 + 4343: -62.33621,6.930185 + 4383: -53.79517,2.9122486 + 4384: -54.555588,3.4438674 + 4385: -55.20142,3.673194 + 4386: -56.149338,3.7357368 + 4387: -57.274338,3.7982807 + 4388: -57.941006,3.7670088 + 4389: -52.234825,3.0060635 + 4390: -52.016075,3.819128 + 4391: -51.963993,4.194389 + 4392: -51.297325,5.0637913 + 4393: -51.276493,5.7413454 + 4394: -51.651493,6.606529 + 4395: -51.713993,-7.2160206 + 4396: -51.641075,-7.4661946 + 4397: -51.109825,-9.32165 + 4398: -51.484825,-8.268835 + 4399: -50.59941,-10.45701 + 4400: -50.557743,-11.301347 + 4401: -50.870243,-12.114411 + 4402: -51.276493,-13.292313 + 4403: -52.09941,-9.810728 + 4404: -51.47441,-14.839489 + 4405: -52.213993,-16.590706 + 4406: -51.516075,-15.798488 + 4407: -49.745243,-16.913847 + 4408: -50.59941,-19.019476 + 4409: -51.870243,-19.405159 + 4410: -51.641075,-19.74915 + 4411: -51.526493,-20.145258 + 4412: -51.172325,-18.519127 + 4413: -51.297325,-18.050053 + 4414: -51.31816,-17.257835 + 4415: -51.56816,-20.789421 + 4416: -51.53691,-21.195953 + 4417: -51.484825,-21.61291 + 4418: -51.44316,-21.90478 + 4419: -51.432743,-23.40582 + 4436: -60.761646,-24.126757 + 4437: -58.259457,-24.42905 + 4438: -57.957375,-24.658375 + 4439: -57.165707,-24.095484 + 4440: -57.342793,-24.460321 + 4441: -56.717793,-24.387354 + 4442: -56.165707,-24.126757 + 4443: -55.853207,-23.970398 + 4444: -55.342793,-23.834887 + 4445: -54.93786,-23.772343 + 4446: -54.542027,-23.89743 + 4447: -59.72001,-27.719501 + 4448: -59.827354,-27.384321 + 4449: -58.639854,-28.916636 + 4450: -57.421104,-29.927755 + 4456: -61.118515,-23.817505 + 4457: -60.868515,-24.213614 + 4458: -60.628933,-23.754961 + 4459: -60.503933,-24.380396 + 4460: -54.613144,-29.079248 + 4461: -54.519394,-28.328726 + 4462: -53.69648,-27.755411 + 4463: -52.62356,-27.859652 + 4464: -51.050644,-29.29815 + 4465: -51.04023,-29.277302 + 4466: -50.49856,-29.068825 + 4467: -51.081894,-27.67202 + 4468: -49.644394,-27.744987 + 4469: -49.363144,-27.859652 + 4470: -48.363144,-28.453814 + 4471: -48.12356,-27.661596 + 4472: -48.40502,-17.139418 + 4473: -47.34252,-17.379168 + 4474: -46.915436,-17.420864 + 4475: -46.93627,-16.889246 + 4476: -47.550854,-16.576529 + 4477: -48.40502,-16.774582 + 4478: -52.532932,13.327393 + 4479: -52.845432,13.7235 + 4480: -53.251682,14.203 + 4481: -53.991264,14.505294 + 4482: -55.335014,14.651229 + 4483: -53.803764,13.321128 + 4484: -54.293346,12.987563 + 4485: -54.657932,12.726966 + 4486: -55.376682,12.612303 + 4487: -60.674458,14.426063 + 4488: -61.330708,14.436486 + 4489: -61.778625,13.852748 + 4490: -62.091125,13.7172365 + 4491: -62.684875,13.498335 + 4492: -9.127857,12.585929 + 4493: -9.836191,12.346179 + 4494: -10.086191,12.262788 + 4495: -10.679941,12.05431 + 4496: -11.961191,12.00219 + 4497: -11.867441,11.032766 + 4498: -11.669524,10.521996 + 4499: -11.284107,10.188431 + 4500: -10.898691,9.896561 + 4501: -10.107024,9.073072 + 4502: -9.909107,8.572725 + 4503: -10.429941,7.603302 + 4504: -11.169524,6.7068458 + 4505: -10.044524,6.269041 + 4506: -8.940357,6.310737 + 4572: -5.7941775,14.711301 + 4573: -6.4295945,14.752996 + 4574: -6.5545945,14.992746 + 4575: -6.815011,15.388855 + 4576: -7.5233445,15.607758 + 4577: -8.28376,15.837082 + 4583: -58.408245,-30.410467 + 4584: -58.17908,-29.983086 + 4585: -8.491625,-45.609352 + 4586: -8.772876,-44.890106 + 4587: -9.158293,-44.54612 + 4588: -9.60621,-44.275093 + 4589: -10.220793,-43.639236 + 4590: -10.54371,-43.263977 + 4591: -10.470793,-42.742783 + - node: + cleanable: True + angle: 6.283185307179586 rad + color: '#FFFFFFFF' + id: Dirt + decals: + 5074: 4.9258847,15.66358 + 5075: 5.155051,15.924177 + 5076: 4.9258847,16.132656 + 5077: 5.3217177,14.902635 + 5078: 5.2279677,14.371016 + 5114: -5.6827416,13.752669 + 5115: -4.6514916,13.241898 + 5116: -4.443158,12.960453 + 5117: -4.1723247,12.314171 + 5118: -3.8181581,12.220355 + 5119: -3.8587708,16.330824 + 5120: -3.9004374,16.653965 + 5121: -3.766879,17.38621 + 5122: -9.690688,25.099943 + 5123: -9.753188,24.66214 + 5124: -9.930271,24.015858 + 5125: -9.940688,23.411272 + 5126: -9.930271,22.95262 + 5127: -9.940688,22.619055 + 5128: -10.034438,22.23337 + 5129: -10.232355,24.328575 + 5169: -3.0972729,-42.10083 + 5170: -3.0139394,-43.872894 + 5171: -2.7535229,-44.831894 + 5172: -1.6389393,-45.029945 + 5173: 1.0798109,-45.102913 + 5174: 0.9443941,-44.039673 + 5175: 0.42356074,-42.152946 + 5176: -1.0451893,-41.881927 + 5177: -2.1910229,-42.152946 + 5178: -1.868106,-43.831192 + 5179: 0.32981074,-44.154335 + 5180: -0.29518926,-43.15364 + 5181: -0.75352263,-43.862465 + 5182: -1.711856,-43.34127 + 5183: -0.024355948,-44.623413 + 5184: 0.42356074,-44.956978 + 5185: -10.183539,-36.940834 + 5186: -10.162705,-36.951256 + 5187: -9.756455,-37.68093 + 5188: -9.881455,-40.036736 + 5189: -10.246039,-40.16182 + 5190: -11.183539,-40.18267 + 5191: -12.235622,-40.07843 + 5192: -13.173122,-37.441185 + 5193: -12.881455,-36.87829 + 5194: -11.589789,-36.867867 + 5195: -10.031353,-34.926765 + 5196: -10.031353,-34.926765 + 5197: -10.052186,-34.48896 + 5198: -10.13552,-33.884377 + 5199: 5.090327,-40.805916 + 5200: 5.4549103,-40.83719 + 5201: 5.6736603,-40.94143 + 5202: 6.413244,-41.285416 + 5203: 6.9028273,-41.441772 + 5204: 7.4861603,-41.80661 + 5205: 8.07991,-42.432045 + 5206: 8.663243,-42.536285 + 5207: 9.246576,-42.609253 + 5208: 9.611159,-43.04706 + 5209: 6.9394383,-35.69551 + 5210: 6.9081883,-34.92414 + 5211: 6.7102714,-34.24659 + 5212: 6.543605,-33.29801 + 5213: 6.887355,-31.890785 + 5214: 7.074855,-31.015177 + 5215: 15.155347,-31.257174 + 5216: 15.780348,-31.89303 + 5217: 15.999098,-32.758217 + 5218: 16.11368,-33.45662 + 5219: 16.05118,-34.300957 + 5220: 15.822014,-35.228683 + 5221: 15.42618,-36.375313 + 5222: 15.384513,-37.11541 + 5288: 22.849373,-40.920845 + 5289: 23.245207,-40.86873 + 5290: 23.286873,-41.25441 + 5291: 23.276457,-41.587975 + 5292: 22.724373,-41.859 + 5293: 22.64104,-41.17102 + 5294: 21.382889,-40.941696 + 5295: 20.966223,-40.78533 + 5296: 20.205805,-40.6811 + 5297: 19.580805,-40.733215 + 5298: 21.638538,-38.745956 + 5299: 21.76354,-39.110794 + 5300: 22.211456,-39.2463 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 2108: 8.025802,-52.01098 + 2109: 8.025802,-52.01098 + 2132: 1.9995551,-37.991898 + 2133: 3.9683056,-38.0336 + 2134: 3.9683056,-38.0336 + 2176: -2.9994764,-40.507668 + 2249: 15.987946,-42.97014 + 2250: 15.987946,-42.97014 + 2251: 15.967112,-42.59488 + 2252: 15.967112,-42.4281 + 2253: 15.967112,-42.459366 + 2254: 15.967112,-43.44964 + 2255: 15.925446,-43.28286 + 2342: -8.489113,-15.006584 + 2343: -8.509947,-15.52778 + 2344: -8.489113,-16.028128 + 2345: -9.99953,-15.496508 + 2346: -9.99953,-14.975312 + 2347: -9.99953,-14.975312 + 2416: 13.494183,-14.960367 + 2417: 9.504599,-13.042369 + 2441: 3.9545894,-17.037432 + 2442: 3.5587559,-17.50651 + 2443: 2.9754224,-17.954737 + 2444: 2.0066724,-18.455084 + 2445: 2.0066724,-18.455084 + 2446: -0.024577498,-12.503034 + 2460: -5.030893,-5.055714 + 2461: -5.030893,-5.055714 + 2462: -5.530893,-4.4302797 + 2463: -5.530893,-4.4302797 + 2552: 16.475586,-3.9711652 + 2586: 25.45844,0.9491296 + 2587: 26.000109,0.99082494 + 2588: 26.48969,1.0012492 + 2607: 28.976072,8.026791 + 2608: 28.976072,8.026791 + 2821: -22.064674,15.001481 + 2822: -22.064674,15.001481 + 2823: -22.054258,15.032753 + 2887: -13.097617,21.013052 + 2888: -12.930951,20.981781 + 2889: -12.930951,20.981781 + 2897: -4.0245647,13.485928 + 2898: -4.0245647,13.485928 + 2899: -4.0245647,13.485928 + 2900: -4.0245647,13.485928 + 2901: -6.007877,11.483542 + 2902: -6.4974604,11.514814 + 2903: -6.9974604,12.025585 + 2988: 15.01181,13.475357 + 2997: 22.508635,19.4825 + 2998: 22.508635,19.4825 + 3069: 55.99284,7.997898 + 3070: 55.99284,7.997898 + 3071: 55.99284,7.997898 + 3072: 55.99284,7.997898 + 3117: 54.96159,-0.012798071 + 3118: 55.440754,-0.9613733 + 3131: 68.48519,0.47949433 + 3158: 64.4491,4.9736714 + 3159: 64.0116,4.9424 + 3455: 46.564117,-28.525421 + 3456: 46.57453,-28.066769 + 3654: 47.53383,40.985687 + 3655: 47.52341,40.985687 + 3656: 49.56508,41.51731 + 3657: 49.56508,41.51731 + 3658: 49.512993,41.527733 + 3659: 28.01172,49.03772 + 3660: 27.990887,48.996025 + 3694: 12.0785265,51.935646 + 3695: 12.0160265,51.956497 + 3788: -16.610693,21.502293 + 3789: -16.600277,21.502293 + 3790: -16.496113,21.471022 + 3973: -15.5298395,-31.96974 + 3974: -15.5298395,-32.001007 + 3975: -15.5298395,-32.001007 + 4019: -27.066378,-36.993042 + 4020: -27.066378,-36.993042 + 4083: -38.025257,-16.520319 + 4084: -38.025257,-16.520319 + 4085: -38.410675,-16.541168 + 4202: -49.011063,-5.0215263 + 4203: -49.011063,-5.0215263 + 4344: -61.55496,7.4201083 + 4345: -61.55496,7.4201083 + 4451: -59.494022,-27.530256 + 4452: -58.025272,-28.478832 + 4453: -58.025272,-28.478832 + 4507: -12.044524,10.063343 + 4508: -12.044524,10.063343 + - node: + cleanable: True + angle: 6.283185307179586 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 5079: -4.1916785,20.501812 + 5130: -15.495474,16.470335 + 5131: -0.055605948,-42.027863 + 5132: -2.274356,-41.881927 + 5133: -2.555606,-41.98616 + 5134: -2.961856,-41.965317 + 5135: -3.5660229,-42.59075 + 5223: 14.959573,-36.994965 + 5224: 15.96999,-37.495316 + 5225: 16.4974,-32.73427 + 5226: 16.4974,-32.73427 + 5277: 25.224375,-39.52404 + 5278: 25.224375,-39.52404 + 5279: 24.32854,-39.53447 + 5280: 24.01604,-39.51362 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 2029: -6.472154,-50.443848 + 2030: -6.472154,-50.443848 + 2031: -6.472154,-50.391724 + 2032: -6.253404,-50.527237 + 2033: -6.4617376,-47.56685 + 2034: -6.232571,-47.545998 + 2035: -6.065904,-47.556427 + 2036: -6.4617376,-48.015076 + 2037: -6.4929876,-48.994926 + 2038: -6.0242376,-49.00535 + 2039: -3.4270673,-46.529022 + 2040: -3.4791503,-46.831314 + 2041: -3.5208173,-47.08149 + 2042: -3.5520673,-47.38378 + 2043: -0.8685658,-50.579323 + 2044: -0.62898254,-50.579323 + 2045: 0.5200244,-50.589745 + 2046: 0.56169116,-50.46466 + 2047: 0.56169116,-50.339577 + 2048: 0.5408577,-50.141518 + 2049: 0.99919116,-50.443817 + 2050: 1.0096078,-50.141518 + 2051: 1.0200244,-49.912193 + 2052: 1.5096078,-50.48551 + 2053: 1.5096078,-50.339577 + 2054: 1.5304413,-50.037285 + 2055: 1.4625741,-49.516083 + 2056: 1.4625741,-49.516083 + 2057: 7.519104,-50.600174 + 2058: 7.56077,-50.495934 + 2059: 7.56077,-50.339577 + 2060: 8.477437,-50.391693 + 2061: 8.456603,-50.235336 + 2062: 8.43577,-50.07898 + 2063: 8.050354,-49.57863 + 2064: 7.99827,-49.47439 + 2065: 7.894104,-49.49524 + 2066: 22.493675,-43.57109 + 2067: 22.493675,-43.93593 + 2068: 22.691593,-46.44809 + 2069: 22.67076,-46.489784 + 2070: 28.579138,-46.489784 + 2071: 28.964556,-46.521057 + 2072: 29.266638,-46.531487 + 2073: 29.412472,-46.531487 + 2074: 29.724972,-46.54191 + 2075: 30.027056,-46.531487 + 2076: 30.224972,-46.531487 + 2077: 30.339556,-46.63572 + 2078: 30.412472,-46.896317 + 2079: 30.433306,-47.3237 + 2080: 30.631222,-48.517395 + 2081: 30.672888,-48.01705 + 2082: 30.631222,-48.01705 + 2083: 24.516638,-49.570213 + 2084: 24.277056,-50.00802 + 2085: 24.089556,-50.21649 + 2086: 23.683306,-49.93505 + 2087: 23.933306,-49.684875 + 2088: 25.768457,-49.841232 + 2089: 26.008041,-49.73699 + 2090: 19.025566,-50.307922 + 2091: 19.025566,-50.047325 + 2092: 19.025566,-49.838844 + 2093: 17.4839,-49.70333 + 2094: 17.4839,-50.047325 + 2095: 16.504732,-49.651215 + 2096: 16.64015,-49.91181 + 2097: 16.744316,-50.078598 + 2098: 17.4839,-51.673485 + 2099: 17.056816,-52.090446 + 2100: 17.07765,-52.49698 + 2101: 18.9839,-51.746452 + 2102: 18.973482,-51.871544 + 2103: 18.942232,-52.11129 + 2104: 25.190496,-53.393433 + 2105: 25.367579,-53.330887 + 2106: 25.346746,-53.16411 + 2107: 26.782354,-51.990128 + 2110: 0.56068707,-51.619858 + 2111: 1.435687,-51.60943 + 2112: 1.498187,-52.047234 + 2113: 1.3627704,-52.40165 + 2114: 0.8523537,-52.370377 + 2115: 4.981906,-45.67549 + 2116: 4.9923224,-45.477432 + 2117: 10.532811,-46.511147 + 2118: 10.439061,-46.886414 + 2119: 10.418228,-47.115738 + 2120: 11.522395,-46.500725 + 2121: 11.428645,-45.7919 + 2122: 11.501561,-45.437485 + 2123: 14.385465,-46.845833 + 2124: 14.343799,-47.512962 + 2125: 8.885465,-47.544235 + 2126: 13.60558,-40.482178 + 2127: 12.022247,-40.31404 + 2135: 5.030977,-37.545662 + 2136: 8.572642,-32.570084 + 2137: 8.447642,-32.559654 + 2138: 8.23931,-32.6222 + 2139: 8.093476,-32.663895 + 2140: 7.7705603,-32.580505 + 2141: 7.6038933,-32.601357 + 2142: 7.4476433,-32.64305 + 2143: 7.124727,-32.653473 + 2144: 7.0205603,-32.601357 + 2145: 6.937227,-32.580505 + 2146: 8.478892,-32.93492 + 2147: 8.61431,-33.20594 + 2148: 8.64556,-33.518654 + 2149: 8.603892,-33.914764 + 2150: 8.541392,-33.643745 + 2151: 2.5309763,-41.430893 + 2152: 2.1559763,-41.3892 + 2153: 1.8538933,-41.3892 + 2154: 1.6663933,-41.23284 + 2155: 1.5518098,-41.003517 + 2156: -0.5481479,-37.5532 + 2157: -0.7043979,-37.615746 + 2158: -0.66273123,-37.772102 + 2159: -0.5793979,-37.86592 + 2160: -0.4960646,-38.022278 + 2161: -0.47523123,-38.314148 + 2162: -1.2981479,-37.584473 + 2163: -1.3502313,-37.56363 + 2164: -3.0307264,-37.636597 + 2165: -3.166143,-37.74083 + 2166: -3.17656,-38.001427 + 2167: -3.14531,-38.178635 + 2168: -3.11406,-38.282875 + 2169: -2.947393,-38.387115 + 2170: -2.759893,-37.584473 + 2171: -2.759893,-37.719986 + 2172: -2.7807264,-41.477036 + 2173: -2.7807264,-41.477036 + 2174: -3.291143,-41.445763 + 2175: -3.6348934,-40.96627 + 2177: -3.48906,-39.006622 + 2178: -3.6557264,-38.62094 + 2179: -4.1244764,-39.017044 + 2180: -4.197393,-39.006622 + 2181: -4.3744764,-39.006622 + 2182: -4.5932264,-39.027473 + 2183: -4.42656,-39.517395 + 2184: -4.5307264,-39.017044 + 2185: -4.603643,-38.69391 + 2186: -7.601684,-32.56044 + 2187: -7.601684,-32.56044 + 2188: -7.987101,-32.58129 + 2189: -8.403767,-32.58129 + 2190: -8.528768,-32.633408 + 2191: -8.685018,-32.914856 + 2192: -7.851684,-32.602135 + 2193: -7.5912676,-32.810616 + 2194: -7.549601,-32.904427 + 2195: -12.707476,-38.365273 + 2196: -12.842893,-38.3757 + 2197: -13.040809,-38.302734 + 2198: -13.290809,-38.021286 + 2199: -13.332476,-38.073402 + 2200: -13.363726,-38.42782 + 2201: -9.765628,-37.65645 + 2202: -10.046878,-37.65645 + 2203: -10.380212,-37.708572 + 2204: -10.880212,-37.750267 + 2205: -11.286462,-39.60572 + 2206: -8.734378,-37.68772 + 2207: -8.609378,-38.334 + 2208: -8.557295,-38.56333 + 2209: -8.515628,-38.876045 + 2210: -6.678725,-35.33825 + 2211: -6.7203918,-35.25486 + 2212: -6.8453918,-35.202736 + 2213: -6.959975,-35.16104 + 2214: 4.095655,-42.52688 + 2215: 4.095655,-42.52688 + 2216: 3.939405,-42.73536 + 2217: 3.939405,-42.891716 + 2218: 3.9914885,-43.173164 + 2219: 4.064405,-43.40249 + 2220: 4.1477385,-43.50673 + 2221: 4.2102385,-43.538002 + 2222: 4.2727385,-43.538002 + 2226: 23.0305,-36.0364 + 2227: 22.90236,-35.97386 + 2228: 23.02736,-36.067673 + 2232: 31.517689,-39.034615 + 2233: 31.517689,-39.034615 + 2234: 31.528103,-42.430428 + 2235: 31.528103,-42.409584 + 2236: 31.528103,-42.399155 + 2237: 31.517689,-42.284492 + 2238: 31.486439,-42.044746 + 2239: 31.486439,-41.909233 + 2240: 31.50727,-41.79457 + 2241: 31.50727,-41.721603 + 2242: 31.50727,-41.669487 + 2257: 16.029612,-44.05423 + 2258: 13.956695,-35.662315 + 2265: 9.400188,-29.53265 + 2266: 9.410605,-29.563921 + 2267: 9.410605,-29.563921 + 2268: 9.410605,-29.574345 + 2269: 9.410605,-29.605616 + 2270: 9.431438,-29.814095 + 2271: 9.410605,-29.678583 + 2272: 9.691855,-29.584768 + 2273: 9.431438,-30.856485 + 2274: 9.431438,-30.564615 + 2275: 9.431438,-30.554192 + 2283: 14.618115,-28.436655 + 2284: 14.638948,-28.332417 + 2285: 14.920198,-28.363688 + 2286: 15.701448,-28.426231 + 2287: 15.503532,-28.467928 + 2288: 8.805615,-28.426231 + 2289: 8.795198,-28.384537 + 2290: 8.805615,-28.196905 + 2291: 9.201448,-28.144787 + 2292: 9.253531,-28.186481 + 2293: 9.295198,-28.374111 + 2294: 10.689042,-23.49866 + 2295: 10.709875,-23.55078 + 2296: 10.876542,-23.769682 + 2297: 10.907792,-23.79053 + 2298: 11.032792,-22.779411 + 2299: 11.022375,-22.508389 + 2300: 11.043208,-22.153976 + 2301: 6.521083,-18.428167 + 2302: 6.4689994,-18.553253 + 2303: 6.4064994,-18.73046 + 2304: 6.396083,-18.97021 + 2305: 6.3544164,-19.199535 + 2306: 6.052333,-19.408014 + 2307: 5.833583,-19.34547 + 2308: 5.6669164,-19.126568 + 2309: 5.5731664,-18.688765 + 2310: 5.6044164,-18.219688 + 2311: 5.8127494,-17.625526 + 2312: 6.5731664,-17.510862 + 2313: 7.1669164,-17.58383 + 2314: 7.552333,-17.646374 + 2315: 8.104416,-17.625526 + 2316: 8.354416,-17.646374 + 2317: 8.406499,-18.157145 + 2318: 8.406499,-18.709612 + 2319: 8.458583,-18.928514 + 2320: 8.552333,-19.15784 + 2321: 8.552333,-19.408014 + 2322: 8.521083,-19.5331 + 2323: 8.146083,-19.522676 + 2324: 7.781499,-19.480982 + 2325: 7.677333,-19.147417 + 2326: 7.593999,-18.751308 + 2327: 7.489833,-18.459438 + 2328: 7.3439994,-18.313503 + 2329: 6.9689994,-18.323927 + 2330: 5.989833,-19.366318 + 2331: 6.0314994,-19.626917 + 2348: -10.43703,-16.486778 + 2349: -10.43703,-16.455507 + 2350: -10.49953,-16.372116 + 2351: -7.5932794,-16.455507 + 2352: -7.5620294,-14.485389 + 2353: -8.020363,-14.527084 + 2354: -7.9578624,-14.610476 + 2355: -8.020363,-15.017008 + 2356: -8.030779,-15.017008 + 2357: -12.043112,-12.001528 + 2358: -12.043112,-12.001528 + 2359: -12.043112,-11.991104 + 2360: -12.001445,-11.574147 + 2361: -12.001445,-11.574147 + 2362: -11.991029,-12.512299 + 2363: -11.991029,-12.512299 + 2364: -12.501445,-12.512299 + 2365: -12.970195,-12.522722 + 2366: -13.022279,-12.137038 + 2367: -13.022279,-11.667963 + 2368: -13.011862,-11.667963 + 2369: -12.980612,-13.325363 + 2370: -12.980612,-13.325363 + 2371: -15.497486,-7.7472296 + 2384: -16.434986,-9.50887 + 2385: -17.414152,-8.487328 + 2386: -18.93823,-9.50887 + 2387: -19.959064,-9.060642 + 2388: -20.552814,-9.571414 + 2389: -20.552814,-9.550566 + 2390: -21.302814,-9.02937 + 2391: -21.146564,-8.727077 + 2392: -20.75073,-8.800044 + 2393: -20.677814,-9.1127615 + 2394: -20.75073,-9.373359 + 2395: -21.802814,-8.831316 + 2396: -22.28198,-8.716653 + 2397: -22.334064,-8.966826 + 2398: -22.229897,-9.26912 + 2418: 8.009837,-11.519373 + 2419: 8.009837,-11.519373 + 2420: 7.572337,-11.508948 + 2421: 4.520254,-11.988448 + 2422: 4.5098376,-12.5096445 + 2423: 4.5098376,-12.5096445 + 2424: 0.46520054,-11.957177 + 2425: -0.53479946,-12.49922 + 2426: 0.62145054,-13.541611 + 2427: 1.0277005,-13.520763 + 2428: 1.4860339,-13.572883 + 2429: 6.4527016,-15.96377 + 2430: 6.400618,-16.411999 + 2431: 6.0152016,-16.620478 + 2432: 4.973535,-16.610052 + 2433: 4.598535,-16.620478 + 2434: 4.504785,-16.662172 + 2435: 4.494368,-16.828955 + 2436: 4.4527016,-17.45439 + 2437: 7.5777016,-16.474543 + 2438: 7.6402016,-16.057585 + 2439: 7.6714516,-15.91165 + 2440: 7.6922846,-15.505118 + 2464: -6.968393,-3.5546718 + 2465: -6.968393,-3.5546718 + 2466: -6.97881,-4.1384106 + 2471: -15.737631,-0.3262987 + 2472: -15.86263,-0.16994 + 2473: -16.237629,-0.3367226 + 2474: -17.154297,-3.3700795 + 2475: -17.404297,-3.422199 + 2476: -16.779297,-4.0372095 + 2477: -16.820963,-4.3290787 + 2478: -16.560547,-4.6001005 + 2485: -12.276028,-7.449304 + 2486: -11.828111,-7.490999 + 2487: -11.494778,-7.5326953 + 2488: -11.328111,-7.62651 + 2489: -11.515611,-7.324217 + 2490: -11.536445,-7.084467 + 2491: -11.505195,-6.8655653 + 2492: -9.588528,-6.6258154 + 2493: -9.484361,-8.449999 + 2494: -9.463528,-9.523661 + 2495: -9.921861,-9.471542 + 2496: -10.223945,-9.461118 + 2497: -10.453111,-9.523661 + 2498: -10.463528,-9.534085 + 2499: -9.494778,-9.565357 + 2500: -9.546861,-9.565357 + 2501: -9.557278,-9.565357 + 2502: -10.234361,-9.565357 + 2503: -10.515611,-9.6279 + 2504: -10.713528,-9.648748 + 2505: -11.682278,-9.596628 + 2506: -12.390611,-10.430541 + 2507: -12.390611,-10.440966 + 2508: -12.253595,-9.575781 + 2509: -11.878595,-9.638325 + 2510: -11.618179,-9.638325 + 2511: -11.430679,-9.794683 + 2512: -11.524429,-10.5660515 + 2513: -11.076512,-10.545204 + 2514: -11.232762,-10.503509 + 2515: -9.409845,-8.502119 + 2527: -6.026221,-0.5063114 + 2532: 13.532839,-14.933297 + 2533: 13.449505,-14.964568 + 2534: 12.991172,-15.464916 + 2535: 12.991172,-15.464916 + 2536: 12.001589,-9.567811 + 2537: 12.022422,-9.338486 + 2538: 11.845339,-9.338486 + 2539: 11.480755,-8.994496 + 2540: 11.480755,-8.994496 + 2541: 9.474907,-8.478186 + 2542: 9.506157,-9.47888 + 2543: 9.55824,-3.4642863 + 2544: 9.55824,-3.4642863 + 2553: 18.586245,-2.511818 + 2554: 18.502913,-2.6473286 + 2555: 19.013329,-2.7411442 + 2556: 19.992495,-3.4916654 + 2557: 20.544579,-2.5639374 + 2558: 20.534163,-2.9496224 + 2589: 24.974888,-0.5022473 + 2590: 27.526972,-0.51267093 + 2591: 28.745722,-0.5543668 + 2592: 28.745722,-0.5543668 + 2609: 33.01774,8.037214 + 2610: 32.809406,8.026791 + 2611: 32.97607,8.422899 + 2612: 33.559406,8.026791 + 2613: 31.444822,7.422204 + 2614: 31.444822,7.4430523 + 2615: 30.559406,8.4750185 + 2616: 30.559406,8.464595 + 2617: 34.81982,7.985095 + 2618: 34.621906,7.4430523 + 2619: 34.653156,6.8697376 + 2620: 34.653156,6.7238026 + 2621: 34.684406,6.494477 + 2622: 34.67399,5.6188684 + 2623: 37.998146,-0.7084296 + 2624: 39.639866,0.45468473 + 2625: 39.577366,0.93418455 + 2626: 39.535698,1.3198688 + 2627: 39.764866,1.5804667 + 2628: 40.275284,1.653434 + 2629: 41.014866,1.6638579 + 2630: 40.566948,1.8474965 + 2705: -0.5162957,24.49634 + 2706: -0.5162957,24.506763 + 2707: -0.66212904,24.527613 + 2708: -1.1204623,24.506763 + 2709: -1.4537957,24.465069 + 2710: -0.5892123,24.079384 + 2711: -0.53712904,24.048113 + 2712: -0.4017123,23.79794 + 2713: -0.41212904,23.433102 + 2719: -2.575768,19.506624 + 2720: -2.575768,19.506624 + 2721: 8.472052,20.423927 + 2824: -23.491758,15.460133 + 2825: -23.533424,15.449709 + 2826: -23.585508,15.439285 + 2827: -20.48235,13.469167 + 2828: -20.48235,13.47959 + 2829: -25.471933,13.9799385 + 2830: -25.471933,13.9799385 + 2831: -25.451101,14.521981 + 2832: -25.419851,14.584524 + 2833: -18.545462,13.4170475 + 2834: -18.545462,13.4170475 + 2835: -18.535046,13.854851 + 2836: -18.535046,13.95909 + 2837: -18.040882,12.481009 + 2838: -18.030464,11.501162 + 2839: -18.030464,11.501162 + 2840: -16.863798,10.740215 + 2841: -16.863798,10.740215 + 2842: -16.759632,11.084205 + 2881: -12.014284,18.542585 + 2882: -12.014284,18.542585 + 2883: -11.0247,17.500196 + 2884: -11.0247,17.500196 + 2885: -11.0247,17.4585 + 2886: -10.972617,17.051968 + 2904: -9.000466,15.502979 + 2905: -9.000466,15.502979 + 2906: -13.513236,22.446592 + 2907: -13.981986,22.540407 + 2908: -14.617402,22.446592 + 2909: -14.627819,22.602951 + 2910: -14.648652,22.863548 + 2911: -14.679902,22.978212 + 2912: -14.815319,23.42644 + 2913: -14.815319,23.42644 + 2914: -14.773652,23.134571 + 2915: -14.648652,22.644648 + 2916: -14.606986,22.290234 + 2917: -14.554902,21.894125 + 2918: -14.554902,21.498016 + 2919: -14.586152,21.143604 + 2920: -14.659069,20.830887 + 2921: -14.659069,24.395863 + 2922: -14.679902,24.083145 + 2923: -14.659069,23.228386 + 2924: -14.315319,24.385439 + 2925: -13.690319,24.364592 + 2926: -13.054902,24.364592 + 2927: -12.398652,24.302048 + 2928: -12.075736,24.156113 + 2929: -11.690319,23.687037 + 2930: -11.523652,23.3222 + 2931: -11.481986,22.060907 + 2932: -11.377819,21.10191 + 2933: -11.304902,20.664104 + 2934: -11.023652,20.080366 + 2935: -10.752819,19.632137 + 2936: 14.047727,26.546595 + 2937: 13.735227,26.58829 + 2938: 13.50606,26.598713 + 2939: 13.766477,27.06779 + 2940: 13.75606,27.276268 + 2941: 13.683144,27.495169 + 2942: 13.25606,27.651527 + 2943: 13.214394,27.912127 + 2944: 13.151894,28.287386 + 2945: 12.953977,28.370777 + 2946: 12.91231,28.34993 + 2947: 9.363677,27.47104 + 2948: 9.32201,26.366108 + 2949: 9.301177,26.345259 + 2989: 16.479746,12.964586 + 2990: 16.479746,12.964586 + 2991: 16.531828,12.97501 + 2992: 16.531828,12.97501 + 2999: 32.008633,14.468602 + 3000: 32.321133,14.91683 + 3001: 32.321133,15.010646 + 3002: 32.31072,15.125308 + 3003: 32.01905,15.260819 + 3004: 31.9878,15.219124 + 3005: 30.894053,13.488754 + 3006: 30.946135,13.499179 + 3007: 31.081553,13.499179 + 3008: 31.8003,13.426211 + 3009: 31.904469,13.44706 + 3010: 32.43572,13.426211 + 3011: 32.696133,13.3636675 + 3012: 32.821133,13.196885 + 3013: 32.65447,12.759081 + 3026: 47.53497,5.5947156 + 3027: 49.02455,5.5947156 + 3028: 48.982887,5.261151 + 3029: 49.02455,4.7712274 + 3030: 49.15997,4.416814 + 3031: 50.670387,5.532172 + 3032: 50.545387,5.521748 + 3033: 50.06622,5.448781 + 3034: 49.545387,5.3341174 + 3035: 50.4933,1.4460006 + 3036: 50.576637,1.6753268 + 3037: 50.52455,1.633631 + 3038: 50.357887,1.3626089 + 3039: 50.201637,1.2896414 + 3040: 49.982887,1.3104899 + 3041: 49.71205,1.373033 + 3042: 49.39955,1.4772723 + 3043: 48.97247,1.4460006 + 3044: 48.64955,1.4668486 + 3045: 47.9933,2.4779677 + 3060: 42.48899,-6.4969163 + 3061: 47.46816,-4.547646 + 3062: 47.46816,-4.547646 + 3063: 47.46816,-4.547646 + 3064: 47.509827,-4.975026 + 3065: 47.509827,-5.0167217 + 3066: 47.520245,-5.3190145 + 3067: 47.520245,-5.610884 + 3068: 43.45774,-5.027146 + 3073: 55.440754,8.508669 + 3074: 54.972004,8.529516 + 3075: 54.58659,8.612908 + 3076: 54.36784,9.1132555 + 3132: 61.516434,-1.5010481 + 3133: 61.53727,-1.3342657 + 3134: 61.41227,-1.0111253 + 3135: 74.51644,0.510766 + 3136: 74.558105,0.41695046 + 3137: 74.558105,0.1146574 + 3138: 74.57894,-0.54204845 + 3139: 74.683105,-0.94858074 + 3140: 74.01644,0.46907008 + 3141: 73.44352,0.55246127 + 3142: 72.00602,0.44822216 + 3143: 69.48171,5.5678344 + 3144: 69.48171,5.4740195 + 3145: 68.57546,5.5782585 + 3146: 69.07546,5.9118233 + 3147: 69.53379,6.27666 + 3148: 69.54421,6.4121714 + 3149: 69.47129,6.8187037 + 3150: 69.46088,7.464986 + 3151: 68.35671,7.5379524 + 3152: 70.56504,8.455256 + 3153: 70.31504,8.538648 + 3154: 69.55463,8.56992 + 3155: 70.50254,6.391323 + 3156: 70.48171,5.5261393 + 3157: 69.55463,4.4524765 + 3172: 62.511166,17.382154 + 3173: 63.115334,17.517666 + 3174: 63.323666,17.52809 + 3175: 63.459084,17.444698 + 3176: 63.479916,17.163252 + 3177: 62.938248,15.464155 + 3178: 62.792416,15.922808 + 3179: 62.646584,16.006199 + 3180: 70.64582,14.557276 + 3181: 70.64582,14.557276 + 3182: 71.94791,15.401612 + 3183: 71.76041,15.412036 + 3184: 71.531235,15.328645 + 3185: 71.42707,15.286949 + 3186: 68.457115,18.491743 + 3187: 68.457115,18.012243 + 3188: 68.457115,17.55359 + 3189: 74.71753,16.406961 + 3190: 73.49878,18.51259 + 3191: 73.49878,18.51259 + 3192: 72.40503,19.445005 + 3193: 72.40503,19.445005 + 3194: 71.93628,19.392887 + 3195: 71.800865,19.2678 + 3196: 71.707115,18.829996 + 3197: 71.62378,17.996082 + 3203: 80.698074,20.35555 + 3204: 80.573074,19.750965 + 3205: 83.364746,19.532063 + 3206: 83.43766,19.521639 + 3207: 83.65641,19.761389 + 3208: 83.65641,20.074106 + 3209: 83.083496,21.673607 + 3210: 82.84391,21.60064 + 3211: 82.052246,22.486671 + 3212: 81.760574,22.497095 + 3213: 81.104324,22.507519 + 3214: 80.62516,22.507519 + 3215: 80.020996,22.486671 + 3216: 79.416824,22.476248 + 3217: 78.927246,22.4554 + 3218: 78.458496,22.40328 + 3219: 79.302246,21.558945 + 3220: 79.927246,21.485977 + 3221: 80.395996,21.44428 + 3222: 81.510574,21.423433 + 3223: 88.721535,18.53117 + 3224: 88.502785,19.417202 + 3225: 87.9507,19.531864 + 3226: 89.60695,17.655561 + 3227: 89.60695,17.478355 + 3228: 89.61737,17.24903 + 3229: 89.721535,16.623594 + 3230: 85.471535,17.48878 + 3231: 85.91945,18.416508 + 3232: 85.940285,18.416508 + 3233: 85.98195,18.906431 + 3234: 85.7632,18.979399 + 3235: 85.534035,18.979399 + 3236: 85.659035,18.187181 + 3237: 85.721535,22.453993 + 3238: 86.784035,22.52696 + 3239: 87.3882,22.39145 + 3240: 87.41945,22.33933 + 3241: 87.49237,22.130852 + 3242: 87.55487,21.818136 + 3283: 81.51661,27.439814 + 3284: 81.49577,27.231335 + 3285: 82.52702,27.345999 + 3286: 82.537445,27.241758 + 3287: 82.57911,27.064552 + 3288: 82.57911,26.803955 + 3289: 82.55827,26.689293 + 3290: 83.27702,26.480814 + 3291: 83.32911,26.480814 + 3292: 83.43327,26.480814 + 3293: 83.55827,26.084705 + 3294: 80.48878,24.865108 + 3296: 75.519066,25.500967 + 3297: 75.52948,25.500967 + 3298: 72.57671,24.437729 + 3299: 72.57671,24.437729 + 3304: 62.399628,24.500273 + 3305: 62.42046,24.500273 + 3306: 62.462128,24.500273 + 3307: 63.545464,23.437035 + 3308: 63.545464,23.437035 + 3309: 63.545464,23.447456 + 3310: 70.02463,29.253572 + 3311: 70.02463,29.253572 + 3312: 69.54546,23.373953 + 3313: 69.5663,22.467072 + 3314: 80.01124,28.502514 + 3315: 80.00082,28.502514 + 3316: 63.49771,-33.485558 + 3317: 63.456047,-33.193687 + 3318: 63.44563,-32.880966 + 3319: 63.47688,-32.662064 + 3320: 63.47688,-32.51613 + 3321: 63.47688,-32.088753 + 3322: 63.518547,-31.692642 + 3323: 63.518547,-31.567556 + 3324: 63.518547,-31.39035 + 3325: 63.46646,-31.035936 + 3326: 63.41438,-30.733643 + 3327: 63.38313,-30.608557 + 3328: 63.331047,-30.525166 + 3329: 63.10188,-30.452198 + 3330: 62.893547,-30.462622 + 3331: 62.82063,-30.400078 + 3332: 62.674797,-30.264568 + 3333: 62.57063,-30.08736 + 3334: 62.50813,-29.805916 + 3335: 62.518547,-29.587013 + 3336: 62.37271,-29.38896 + 3337: 62.24771,-29.347263 + 3338: 62.081047,-29.441078 + 3339: 61.924797,-29.430655 + 3340: 61.38313,-29.451504 + 3341: 57.518547,-29.451504 + 3342: 57.25813,-29.57659 + 3343: 57.018547,-29.60786 + 3344: 56.862297,-29.587013 + 3345: 56.74771,-29.62871 + 3346: 56.43521,-29.732948 + 3347: 56.518547,-30.160328 + 3348: 56.56021,-30.400078 + 3349: 56.549797,-30.525166 + 3350: 56.456047,-30.848307 + 3351: 56.49771,-31.327806 + 3352: 56.49771,-31.536283 + 3353: 56.47688,-31.713491 + 3354: 56.487297,-32.192993 + 3355: 56.52896,-32.70376 + 3356: 56.47688,-32.880966 + 3357: 56.518547,-33.29792 + 3358: 55.93521,-33.41259 + 3359: 55.612297,-33.360466 + 3360: 55.62271,-32.91224 + 3361: 55.62271,-32.693336 + 3362: 55.643547,-32.484856 + 3363: 55.62271,-31.911547 + 3364: 55.56021,-31.588404 + 3365: 55.612297,-31.28611 + 3366: 55.57063,-30.91085 + 3367: 55.53938,-30.58771 + 3368: 55.456047,-30.556437 + 3369: 55.299797,-30.473045 + 3370: 55.018547,-30.493893 + 3371: 54.68521,-30.473045 + 3372: 54.41438,-30.514742 + 3373: 54.34146,-30.514742 + 3374: 54.22688,-30.525166 + 3375: 53.424797,-30.53559 + 3376: 53.34146,-30.53559 + 3377: 53.049797,-30.53559 + 3378: 52.768547,-30.53559 + 3379: 53.56021,-30.608557 + 3380: 53.49771,-30.80661 + 3381: 53.41438,-31.452892 + 3382: 54.63313,-29.972698 + 3383: 54.487297,-29.680828 + 3384: 54.40396,-29.493198 + 3385: 53.956047,-29.503622 + 3386: 52.57063,-28.492504 + 3387: 53.03938,-28.544622 + 3388: 53.27896,-28.544622 + 3389: 53.862297,-28.502928 + 3390: 54.28938,-28.502928 + 3457: 47.63703,-29.58866 + 3458: 47.6787,-29.578236 + 3459: 48.20995,-29.609507 + 3460: 49.439117,-28.942377 + 3461: 49.58495,-29.53654 + 3462: 50.48078,-28.754747 + 3463: 50.845367,-28.504574 + 3464: 49.58495,-27.952106 + 3465: 62.560966,-33.45997 + 3466: 62.560966,-33.45997 + 3467: 62.560966,-33.45997 + 3468: 62.560966,-33.45997 + 3469: 49.47704,-32.052742 + 3470: 49.47704,-32.052742 + 3471: 49.50829,-31.510696 + 3472: 49.529125,-31.510696 + 3473: 50.029125,-31.469 + 3474: 33.50083,-34.4953 + 3475: 34.021664,-34.505722 + 3476: 34.43833,-34.443184 + 3477: 34.73,-34.568268 + 3478: 34.927914,-35.110313 + 3479: 35.71958,-35.66278 + 3480: 36.115414,-36.100586 + 3481: 36.44875,-36.39245 + 3482: 36.6675,-36.778137 + 3483: 36.76125,-38.675285 + 3484: 36.6675,-39.748947 + 3485: 36.50083,-40.82261 + 3486: 36.46958,-41.281265 + 3487: 36.19875,-41.760765 + 3488: 35.94875,-42.156876 + 3489: 35.365414,-42.58425 + 3490: 34.959164,-42.605103 + 3491: 34.365414,-42.167297 + 3492: 34.43833,-41.062363 + 3493: 35.00083,-39.999123 + 3494: 35.00083,-39.999123 + 3495: 34.490414,-39.530045 + 3496: 34.490414,-39.519623 + 3497: 34.5425,-38.018578 + 3498: 34.5425,-37.997734 + 3499: 35.115414,-37.737137 + 3500: 35.12583,-37.58078 + 3501: 35.38625,-37.622475 + 3502: 34.4175,-37.62497 + 3503: 33.896664,-37.52073 + 3504: 33.68833,-37.43734 + 3505: 33.50083,-36.95784 + 3506: 33.50083,-36.509613 + 3584: 98.47941,16.56397 + 3585: 98.47941,16.56397 + 3586: 99.281494,16.5327 + 3587: 99.51066,16.51185 + 3588: 99.781494,16.459732 + 3589: 99.98983,16.397188 + 3590: 100.38566,16.470156 + 3591: 100.51066,16.77245 + 3592: 100.625244,17.033047 + 3593: 100.906494,17.251947 + 3594: 101.42733,17.189405 + 3595: 101.22941,15.542427 + 3596: 101.031494,15.542427 + 3597: 89.485954,21.482935 + 3598: 89.485954,21.482935 + 3599: 88.10054,21.493359 + 3600: 88.62137,21.555902 + 3601: 88.62137,21.545479 + 3602: 45.531586,34.59816 + 3603: 47.552418,35.390373 + 3604: 47.573254,35.119354 + 3605: 47.583668,34.86918 + 3606: 47.594086,34.441795 + 3607: 47.573254,34.087387 + 3608: 47.510754,33.7017 + 3609: 49.250336,35.411224 + 3610: 49.354504,34.827484 + 3611: 49.469086,34.546036 + 3612: 49.542004,34.462646 + 3613: 49.646168,34.379257 + 3614: 49.531586,34.160355 + 3615: 49.531586,33.80594 + 3616: 49.510754,33.45153 + 3617: 50.479504,34.452225 + 3618: 50.771168,34.639854 + 3619: 51.062836,34.462646 + 3620: 51.417004,34.441795 + 3621: 51.562836,34.566887 + 3622: 51.667004,35.015114 + 3623: 52.198254,35.3591 + 3624: 53.239918,35.26529 + 3625: 53.385754,35.140198 + 3626: 53.531586,34.57731 + 3627: 53.594086,34.01442 + 3628: 53.604504,33.607887 + 3629: 53.573254,33.25347 + 3630: 53.542004,32.940758 + 3631: 53.521168,32.68016 + 3661: 29.26172,50.059265 + 3662: 29.272137,50.048836 + 3663: 29.147137,50.278168 + 3664: 29.084637,50.37198 + 3665: 28.98047,50.361557 + 3666: 28.813805,50.37198 + 3696: 14.00561,52.540237 + 3697: 14.00561,52.540237 + 3698: 14.0160265,51.77929 + 3699: 13.9951935,51.466576 + 3700: 13.9847765,51.445724 + 3701: 14.53686,51.466576 + 3702: 14.5472765,51.466576 + 3703: -2.6484404,49.432365 + 3704: -2.3359404,48.73397 + 3705: -2.3151069,48.50464 + 3706: -2.0546904,48.358704 + 3707: -1.4713571,48.4421 + 3708: -1.252607,48.515068 + 3709: -0.940107,48.473366 + 3710: -2.5338569,49.96399 + 3711: -2.6588569,50.5373 + 3712: -2.6588569,51.527573 + 3713: -2.6484404,51.850716 + 3714: -2.6588569,52.257248 + 3746: 2.0619545,23.646708 + 3747: 1.9682045,23.657131 + 3748: 1.6869545,23.646708 + 3749: 1.1452874,23.605013 + 3791: -32.292427,32.517006 + 3792: -32.05284,32.45446 + 3793: -31.75076,32.45446 + 3794: -31.65701,32.204285 + 3795: -31.573677,31.933266 + 3796: -31.552843,31.776909 + 3797: -31.50076,31.505886 + 3798: -31.521593,31.412071 + 3799: -31.844511,31.526733 + 3800: -31.896593,31.526733 + 3801: -32.125763,31.46419 + 3802: -35.479927,27.458082 + 3803: -35.479927,27.437235 + 3804: -33.990345,23.544247 + 3805: -33.990345,23.544247 + 3806: -33.990345,23.544247 + 3807: -34.000763,23.690182 + 3808: -33.969513,23.825693 + 3809: -33.979927,24.013323 + 3810: -33.979927,24.117561 + 3811: -33.948677,24.346888 + 3812: -34.157013,23.867172 + 3813: -34.198677,23.721237 + 3814: -34.573677,23.491913 + 3815: -33.844513,23.877596 + 3816: -33.688263,23.773357 + 3817: -33.511177,23.585728 + 3818: -37.559444,38.41384 + 3819: -37.58028,38.434692 + 3820: -37.840694,38.41384 + 3821: -38.101112,38.434692 + 3822: -25.366325,39.358887 + 3823: -25.335075,39.317192 + 3824: -25.001741,39.09829 + 3825: -24.803825,38.93151 + 3826: -24.595491,38.775146 + 3827: -24.345491,38.597946 + 3828: -24.303825,38.566673 + 3829: -23.79341,38.63964 + 3830: -23.720491,38.63964 + 3831: -23.501741,38.941933 + 3832: -23.397575,39.19211 + 3833: -23.397575,39.317192 + 3834: -22.960075,39.077446 + 3835: -22.69966,38.93151 + 3836: -22.439241,38.795998 + 3837: -22.32466,38.63964 + 3838: -22.053825,38.545822 + 3839: -21.803825,38.566673 + 3840: -21.60591,38.71261 + 3841: -21.439241,39.10871 + 3842: -20.32466,39.629906 + 3843: -20.428825,39.650757 + 3844: -20.73091,39.671608 + 3845: -20.44966,39.859238 + 3846: -20.44966,40.005173 + 3847: -20.41841,40.224075 + 3848: -20.35591,40.390854 + 3849: -20.032991,40.526367 + 3850: -19.491325,40.44297 + 3851: -19.41841,40.26577 + 3852: -19.491325,39.79669 + 3853: -19.532991,39.640335 + 3854: -19.585075,40.151108 + 3855: -19.79341,40.34916 + 3875: -23.493246,-5.5371532 + 3876: -23.461996,-5.8394465 + 3877: -23.451578,-5.90199 + 3878: -22.201578,-6.016653 + 3879: -22.180746,-5.9958053 + 3880: -22.201578,-5.9228377 + 3881: -21.847412,-5.90199 + 3882: -21.816162,-6.193859 + 3883: -21.420328,-0.94950604 + 3884: -21.461996,-0.5117018 + 3885: -21.472412,0.42644954 + 3886: -21.711996,1.3541775 + 3887: -21.743246,1.5209599 + 3888: -21.941162,1.5209599 + 3889: -22.243246,1.4375687 + 3890: -22.420328,1.0935798 + 3891: -24.451578,1.4688401 + 3892: -24.461996,1.4688401 + 3893: -20.524496,-2.502668 + 3894: -20.524496,-2.586059 + 3895: -20.482828,-3.0134394 + 3896: -20.409912,-3.4720914 + 3897: -20.368246,-3.9620147 + 3898: -20.305746,-4.3685474 + 3899: -20.347412,-4.8376236 + 3900: -20.607828,-5.2754273 + 3901: -20.857828,-5.39009 + 3902: -21.034912,-5.348395 + 3919: -6.016314,-45.626465 + 3920: -6.005897,-45.626465 + 3921: -5.5579805,-45.5952 + 3922: -5.2767305,-45.428413 + 3923: -5.2767305,-45.167816 + 3924: -5.2767305,-44.959335 + 3925: -5.297564,-44.740433 + 3926: -5.3392305,-44.43814 + 3927: -5.224647,-42.342934 + 3928: -5.2142305,-42.155304 + 3929: -5.2454805,-41.9364 + 3930: -5.4017305,-41.686234 + 3931: -5.287147,-41.696655 + 3932: -4.797564,-41.707077 + 3933: -4.672564,-41.853012 + 3934: -4.4642305,-42.30124 + 3935: -4.3704805,-42.947525 + 3936: -4.412147,-43.58338 + 3937: -4.391314,-43.750168 + 3938: -4.4017305,-44.198395 + 3939: -4.516314,-45.136543 + 3940: -4.735064,-45.939186 + 3941: -4.755897,-46.241478 + 3976: -12.477756,-32.501358 + 3977: -12.477756,-32.501358 + 3978: -12.477756,-32.501358 + 3979: -18.538158,-28.527966 + 3980: -18.475658,-28.548815 + 3981: -18.444408,-29.163824 + 3982: -18.329824,-29.539085 + 3983: -18.246492,-30.581476 + 3984: -19.173574,-28.40288 + 3985: -19.569408,-28.40288 + 3986: -20.058992,-28.413303 + 3987: -24.194408,-28.496695 + 3988: -24.433992,-28.611357 + 3989: -24.454824,-28.632206 + 3990: -24.579824,-29.215944 + 3991: -24.683992,-29.997736 + 3992: -24.558992,-31.561323 + 3993: -24.308992,-31.5509 + 3994: -24.611074,-31.196486 + 3995: -24.683992,-31.050552 + 3996: -24.736074,-30.956736 + 3997: -24.788158,-30.664867 + 3998: -23.204824,-29.486965 + 3999: -23.329824,-29.82053 + 4000: -23.350658,-29.92477 + 4021: -26.545544,-36.87838 + 4022: -26.514294,-37.191093 + 4023: -26.514294,-37.44127 + 4024: -26.951794,-37.26406 + 4025: -27.066378,-36.909653 + 4026: -27.378878,-36.607353 + 4027: -36.554256,-29.528252 + 4028: -36.554256,-29.528252 + 4029: -36.408424,-29.559523 + 4030: -35.939674,-29.590796 + 4031: -35.783424,-29.569946 + 4032: -35.60634,-29.569946 + 4033: -35.48134,-29.945208 + 4034: -35.470924,-30.184958 + 4035: -35.460506,-30.424707 + 4036: -35.54384,-28.506708 + 4037: -35.408424,-28.48586 + 4038: -34.720924,-28.496284 + 4039: -34.720924,-28.496284 + 4040: -36.366756,-28.465014 + 4041: -37.4568,-20.55499 + 4042: -37.11305,-20.607111 + 4043: -36.98805,-20.617535 + 4044: -37.36305,-20.242273 + 4045: -37.92555,-19.429209 + 4046: -38.22763,-19.366665 + 4047: -38.57138,-19.335394 + 4048: -38.98805,-19.252003 + 4049: -39.35263,-18.803774 + 4050: -39.48805,-18.41809 + 4051: -39.623463,-17.698841 + 4052: -39.63388,-16.937895 + 4053: -39.592213,-16.312462 + 4054: -39.41513,-15.551516 + 4055: -39.11305,-14.582092 + 4056: -39.04013,-14.248528 + 4057: -38.10263,-14.384038 + 4058: -37.79013,-14.561245 + 4086: -38.004425,-15.947004 + 4087: -38.004425,-15.558026 + 4088: -20.444597,-12.642938 + 4089: -20.444597,-12.642938 + 4090: -20.444597,-12.778449 + 4091: -20.40293,-12.966079 + 4092: -20.382097,-13.20583 + 4093: -20.455013,-13.403883 + 4094: -21.111263,-12.5282755 + 4095: -21.12168,-12.5282755 + 4096: -21.444597,-12.580394 + 4097: -21.49668,-12.872264 + 4098: -21.486263,-13.091166 + 4099: -19.600847,-13.44558 + 4100: -28.392513,-1.678171 + 4101: -28.548763,-1.156976 + 4102: -28.517513,-0.57323766 + 4103: -28.455013,-0.1145854 + 4104: -28.371681,0.2502513 + 4105: -28.173763,0.4587295 + 4106: -27.767513,0.4378817 + 4107: -27.444597,0.42745757 + 4108: -27.246681,0.40661 + 4138: -34.524715,3.4890058 + 4139: -34.524715,3.4890058 + 4140: -35.014297,3.551549 + 4141: -35.639297,3.4994295 + 4142: -36.545547,3.4681578 + 4143: -36.920547,3.5307012 + 4144: -36.920547,3.5307012 + 4145: -37.076797,3.968505 + 4146: -35.587215,5.3769836 + 4147: -35.50388,7.4930363 + 4148: -36.12888,7.5451565 + 4149: -36.555965,7.586851 + 4150: -37.305965,7.586851 + 4151: -38.295547,7.461765 + 4152: -39.337215,7.2428627 + 4153: -39.37888,6.88845 + 4154: -39.326797,6.4714932 + 4155: -35.608047,-0.6347089 + 4156: -35.31638,0.07411647 + 4157: -35.733047,-0.3115685 + 4158: -38.962215,-0.54089403 + 4159: -39.44138,-0.5721657 + 4160: -37.076797,-0.61386156 + 4161: -37.118465,-0.11351442 + 4162: -37.09763,0.18877983 + 4204: -49.500645,-6.585112 + 4205: -48.886063,-6.564265 + 4206: -48.49023,-6.5538406 + 4207: -48.219395,-6.5329924 + 4208: -47.45898,-6.501721 + 4209: -47.198563,-6.512145 + 4210: -43.83398,-4.531603 + 4211: -43.438145,-4.594146 + 4212: -43.031895,-4.5524507 + 4213: -42.61523,-4.531603 + 4214: -42.49023,-4.854744 + 4215: -42.292313,-5.386363 + 4216: -39.573563,-5.605265 + 4217: -39.45898,-5.605265 + 4218: -39.386063,-5.897135 + 4219: -40.439304,4.480214 + 4220: -40.439304,4.480214 + 4221: -40.668472,4.52191 + 4222: -40.345554,5.960409 + 4223: -40.366386,7.180006 + 4224: -41.460136,7.43018 + 4225: -41.460136,7.2008543 + 4226: -41.428886,6.940256 + 4227: -41.428886,6.731778 + 4228: -41.460136,6.5233 + 4229: -43.387222,7.3572125 + 4230: -43.637222,7.2008543 + 4231: -43.595554,6.6066914 + 4232: -43.668472,6.4711804 + 4233: -44.355972,6.408637 + 4234: -44.418472,6.210583 + 4235: -44.480972,5.751931 + 4236: -44.470554,5.262007 + 4237: -44.241386,4.897171 + 4238: -43.835136,4.303008 + 4239: -43.793472,3.979867 + 4240: -43.772636,3.6150303 + 4241: -43.626804,3.4482477 + 4242: -45.314304,2.481943 + 4243: -45.626804,3.1907682 + 4244: -45.470554,3.7849312 + 4245: -47.420513,3.4678807 + 4268: -40.98261,-1.4510468 + 4269: -40.84719,-1.0549389 + 4270: -40.47219,-0.575439 + 4271: -40.56594,0.31059313 + 4272: -41.555523,0.30016947 + 4273: -41.836773,0.12296283 + 4274: -44.038185,1.4676468 + 4275: -43.434017,1.4780705 + 4276: -43.413185,1.0298429 + 4277: -48.533558,7.3061695 + 4278: -48.637726,6.868365 + 4279: -48.575226,6.5139523 + 4280: -48.502308,6.315898 + 4281: -48.512726,5.6591916 + 4282: -47.564808,5.5236807 + 4283: -46.887726,5.544528 + 4284: -45.887726,5.773855 + 4285: -45.512726,6.5452237 + 4286: -45.502308,7.2123537 + 4287: -45.575226,7.764821 + 4288: -45.762726,8.244321 + 4289: -46.17939,8.004572 + 4290: -46.02314,7.285321 + 4291: -46.512726,6.409713 + 4292: -49.450226,6.0657244 + 4293: -49.55439,6.732854 + 4294: -49.502308,7.149811 + 4295: -49.502308,7.3478646 + 4296: -49.387726,8.515342 + 4346: -59.034122,11.485432 + 4347: -59.034122,11.485432 + 4348: -58.60704,11.339498 + 4349: -58.60704,11.339498 + 4350: -58.565372,11.089324 + 4351: -58.55496,11.047628 + 4352: -59.471622,11.016356 + 4353: -59.471622,11.016356 + 4354: -58.42996,10.474314 + 4355: -58.353584,8.535467 + 4356: -53.399338,3.4334438 + 4357: -53.597256,3.9754868 + 4358: -53.503506,4.70516 + 4359: -56.430588,5.0283012 + 4360: -56.441006,5.0283012 + 4361: -56.222256,4.767704 + 4362: -55.784756,4.527954 + 4363: -55.73267,4.4862585 + 4364: -57.67017,4.5696497 + 4365: -58.284756,4.46541 + 4366: -58.35767,4.4862585 + 4367: -58.51392,3.5898027 + 4368: -58.493088,3.4855633 + 4369: -58.51392,3.1415744 + 4370: -58.01392,2.4848678 + 4371: -57.586838,2.3285098 + 4372: -57.441006,2.2763908 + 4373: -57.336838,1.8907056 + 4374: -57.347256,1.6926517 + 4375: -57.347256,1.567564 + 4376: -56.597256,1.4737492 + 4377: -55.586838,1.5362926 + 4378: -54.54517,2.4431732 + 4379: -54.48267,2.2868137 + 4380: -54.368088,1.994945 + 4381: -53.909756,1.7030749 + 4382: -53.51392,2.4744449 + 4420: -52.44316,-25.200418 + 4421: -52.47441,-25.565256 + 4422: -52.484825,-25.909245 + 4423: -51.047325,-26.492983 + 4424: -51.338993,-25.513136 + 4425: -51.182743,-25.273386 + 4426: -51.09941,-25.106604 + 4427: -50.41191,-25.356777 + 4428: -50.516075,-26.013483 + 4429: -50.432743,-26.451288 + 4430: -50.38066,-26.503407 + 4431: -49.703575,-26.576374 + 4432: -49.28691,-25.221266 + 4433: -55.984825,-24.001669 + 4434: -56.00566,-24.032942 + 4435: -56.713993,-24.012093 + 4454: -57.462772,-29.562918 + 4455: -56.681522,-26.930334 + 4509: -11.648691,11.543538 + 4510: -11.492441,11.595657 + 4511: -11.117441,11.606082 + 4512: -10.909107,11.616506 + 4513: -11.304941,12.398298 + 4514: -11.221607,12.408723 + 4515: -11.763274,12.367027 + 4516: -12.482024,12.314907 + 4517: -12.513274,11.772864 + 4518: -12.429941,10.761745 + 4519: -12.502858,9.979952 + 4520: -12.440358,9.5213 + 4521: -12.419524,9.14604 + 4522: -12.388274,8.6561165 + 4523: -12.034108,8.437214 + 4524: -12.023691,8.437214 + 4525: -6.616746,10.349978 + 4526: -7.210496,10.297859 + 4527: -7.2209125,9.662 + 4528: -6.6063294,9.505641 + 4582: -61.71033,-27.627283 + - node: + cleanable: True + angle: 6.283185307179586 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 5080: -8.556262,21.460812 + 5081: -8.556262,21.439962 + 5082: -8.556262,21.27318 + 5083: -8.785429,21.346148 + 5084: -8.795846,21.335724 + 5085: -8.691679,20.480965 + 5086: -8.608346,19.907648 + 5087: -7.6187615,21.387844 + 5088: -4.608345,13.466591 + 5089: -4.608345,13.727189 + 5090: -5.233345,14.279655 + 5091: -5.4625115,13.602101 + 5092: -5.389595,13.424895 + 5093: -4.9729285,13.060059 + 5094: 7.5438185,17.508272 + 5095: 7.6792355,17.331066 + 5096: 7.8042355,17.404034 + 5097: 7.8563185,17.414457 + 5098: 4.5854855,13.390828 + 5099: 4.606319,13.505491 + 5100: 4.533402,13.66185 + 5101: 4.533402,13.66185 + 5102: 4.512569,13.839057 + 5103: 4.502152,14.276861 + 5104: 4.793819,13.724394 + 5105: 4.877152,13.620155 + 5106: 5.033402,13.495068 + 5107: 5.231319,13.495068 + 5108: 4.564652,14.32898 + 5109: 6.6792355,12.568477 + 5110: 6.533402,12.526781 + 5111: 7.127152,12.495509 + 5112: 7.6167355,12.568477 + 5113: 7.6688185,12.255758 + 5136: -2.4514394,-43.43509 + 5137: -2.493106,-43.601868 + 5138: -1.461856,-45.394783 + 5139: -1.493106,-45.56156 + 5140: -1.9201893,-45.582413 + 5141: -2.2951894,-45.582413 + 5142: -2.680606,-45.603256 + 5143: -3.305606,-45.26969 + 5144: -3.4201894,-44.571297 + 5145: -3.4201894,-44.550446 + 5146: -3.5764394,-43.664413 + 5147: -3.5451894,-43.62272 + 5148: 0.89231074,-43.71653 + 5149: 1.1318941,-44.09179 + 5150: 1.4964775,-44.331543 + 5151: 1.6423106,-44.717224 + 5152: 1.6214776,-45.123756 + 5153: 1.288144,-45.64496 + 5227: 7.5022707,-33.50563 + 5228: 7.5022707,-33.50563 + 5229: 6.5126877,-34.29785 + 5230: 6.5126877,-34.29785 + 5231: 6.5126877,-34.29785 + 5232: 6.523104,-32.630028 + 5233: 6.523104,-32.73427 + 5234: 6.502271,-33.182495 + 5235: 6.564771,-32.84893 + 5236: 6.564771,-33.0991 + 5237: 21.42229,-40.952118 + 5238: 21.495207,-41.723488 + 5239: 21.536873,-42.13002 + 5240: 21.588957,-42.442734 + 5241: 21.724373,-42.567825 + 5242: 22.29729,-42.578247 + 5243: 21.880623,-42.578247 + 5244: 21.70354,-42.40104 + 5245: 21.536873,-41.93197 + 5246: 21.307707,-41.139748 + 5247: 23.92229,-42.546974 + 5248: 24.276457,-42.52613 + 5249: 24.60979,-42.463585 + 5250: 25.068125,-42.52613 + 5251: 25.620207,-42.5991 + 5252: 26.026457,-42.567825 + 5253: 28.51604,-40.69152 + 5254: 28.443125,-41.129326 + 5255: 28.380625,-41.5567 + 5256: 28.224375,-41.900696 + 5257: 28.057707,-42.1196 + 5258: 28.276457,-41.702637 + 5259: 28.276457,-42.182137 + 5260: 28.20354,-42.40104 + 5261: 27.745207,-42.5157 + 5262: 27.14104,-42.5157 + 5263: 27.349375,-42.390617 + 5264: 27.57854,-42.161293 + 5265: 28.036875,-41.702637 + 5266: 28.338957,-40.993813 + 5267: 27.807707,-41.577553 + 5268: 27.32854,-42.1196 + 5269: 26.807707,-42.390617 + 5270: 26.088957,-42.50528 + 5271: 26.099375,-42.52613 + 5272: 26.48479,-42.463585 + 5273: 28.39104,-39.22175 + 5274: 28.42229,-38.55462 + 5275: 28.349375,-38.37741 + 5276: 27.651457,-38.533775 + 5281: 24.443125,-39.982697 + 5282: 24.474375,-40.02439 + 5283: 25.724375,-40.00354 + 5284: 23.48479,-40.556007 + 5285: 23.495207,-40.701942 + 5286: 23.495207,-41.1606 + 5287: 23.401457,-42.23426 + 5301: 9.952386,-33.50801 + 5302: 9.91072,-33.51844 + 5303: 9.525303,-33.58098 + 5304: 9.962803,-33.591408 + 5305: 10.12947,-33.591408 + 5306: 10.34822,-33.61225 + 5307: 10.53572,-35.603218 + 5308: 10.514887,-35.582375 + 5309: 10.556553,-35.603218 + 5310: 10.91072,-35.561523 + 5311: 13.275303,-34.977783 + 5312: 13.275303,-34.977783 + 5313: 13.275303,-35.092445 + 5314: 13.587803,-33.32038 + 5315: 13.462803,-33.758186 + 5316: 13.483637,-34.300232 + 5317: 11.389887,-29.432266 + 5318: 10.806553,-29.609472 + 5319: 11.53572,-30.547625 + 5320: 11.44197,-30.474657 + 5321: 11.421137,-31.068819 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 2128: 11.57433,-40.025124 + 2129: 11.473202,-40.024567 + 2130: 8.474718,-38.98217 + 2131: 8.474718,-38.98217 + 2223: 3.4914885,-42.975113 + 2224: 3.4914885,-42.975113 + 2225: 23.468,-36.015556 + 2243: 19.988188,-42.02157 + 2244: 20.009022,-39.04033 + 2245: 20.009022,-39.04033 + 2246: 21.404856,-44.022957 + 2247: 21.384022,-44.450333 + 2248: 21.404856,-45.440605 + 2259: 13.910605,-29.980877 + 2260: 13.816855,-30.032997 + 2261: 13.775189,-30.04342 + 2262: 13.691855,-30.053844 + 2263: 13.504355,-29.970453 + 2264: 13.462689,-29.928757 + 2332: 7.037592,-19.04627 + 2333: -9.90578,-18.952456 + 2334: -9.90578,-18.952456 + 2335: -9.426613,-18.577194 + 2336: -9.426613,-18.577194 + 2337: -8.541197,-18.525074 + 2338: -8.437029,-19.077541 + 2339: -8.437029,-19.077541 + 2340: -8.020363,-18.973303 + 2341: -8.99953,-14.9961605 + 2399: -24.028542,-9.02937 + 2400: -24.028542,-9.02937 + 2401: -24.028542,-9.02937 + 2402: -24.018126,-9.071066 + 2403: -23.955626,-9.540142 + 2404: -23.955626,-9.540142 + 2405: -23.091042,-10.22812 + 2406: -22.966042,-10.061337 + 2407: -22.966042,-10.061337 + 2408: -17.83623,-8.049523 + 2409: -18.49248,-7.9869795 + 2410: -18.49248,-7.9869795 + 2479: -16.477215,-4.558405 + 2480: -9.505194,-7.5326953 + 2481: -10.432278,-7.7515974 + 2482: -10.432278,-7.762021 + 2483: -9.526028,-7.7932925 + 2484: -10.067695,-7.7203255 + 2593: 29.964472,1.4927565 + 2594: 29.964472,1.4927565 + 2714: -2.380879,21.556799 + 2715: -2.380879,21.556799 + 2716: -0.099629045,17.9397 + 2717: 3.9682746,14.020309 + 2718: 3.9682746,14.020309 + 2890: -8.545399,13.46508 + 2891: -8.545399,13.46508 + 2892: -9.441232,13.558895 + 2893: -9.441232,13.558895 + 2894: -6.6287317,15.925121 + 2895: -5.9933147,14.934851 + 2896: -5.9933147,14.934851 + 2993: 22.602385,12.995857 + 2994: 22.602385,12.995857 + 2995: 23.508635,12.49551 + 2996: 23.508635,12.49551 + 3077: 55.49284,6.4968553 + 3078: 55.49284,6.4968553 + 3079: 56.99284,7.049322 + 3080: 57.003254,7.049322 + 3081: 57.02409,9.092408 + 3082: 57.49284,8.425278 + 3083: 57.43034,7.49755 + 3160: 67.48035,2.961858 + 3295: 78.95753,24.990196 + 3667: 24.678387,48.506104 + 3668: 24.678387,48.506104 + 3669: 24.678387,48.506104 + 3723: 2.0126808,48.942444 + 3724: 2.0126808,48.942444 + 3725: 2.533514,48.515068 + 3726: 2.533514,48.50464 + 3727: 2.4918475,49.998604 + 3728: -7.9019036,39.945892 + 3729: -7.9019036,39.945892 + 3730: -7.5998206,39.53936 + 3731: -8.589404,38.507393 + 3732: -8.568571,38.434425 + 3733: 6.7233443,36.980568 + 3734: 6.608761,37.251587 + 3735: 6.390011,37.48091 + 3736: 5.733761,37.616425 + 3737: 5.3691773,37.616425 + 3738: 4.9316773,37.58515 + 3739: 4.483761,37.418365 + 3740: 4.452511,37.10565 + 3741: 4.317094,36.730392 + 3742: 3.9786215,25.085207 + 3743: 3.9786215,25.085207 + 3744: 3.9786215,25.085207 + 3745: 3.9786215,25.085207 + 3913: -3.4783077,-28.931467 + 3914: -2.8845577,-29.108673 + 3915: -2.8845577,-29.108673 + 3916: -7.766314,-45.96003 + 3917: -7.766314,-45.96003 + 3918: -7.766314,-45.96003 + 3942: -8.9850645,-44.42772 + 3943: -8.9850645,-44.42772 + 3944: -10.0788145,-43.01007 + 4246: -48.99343,4.051619 + - node: + cleanable: True + angle: 6.283185307179586 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 5154: -0.46185595,-43.51848 + 5155: 0.47564405,-43.99798 + 5156: 0.47564405,-43.99798 + 5157: 1.1006441,-42.00701 + 5158: 1.0173109,-41.98616 + 5159: 1.0173109,-41.98616 + 5160: 0.98606074,-41.965317 + 5161: 1.0173109,-41.965317 + 5162: 1.1110609,-42.027863 + 5163: 1.1423109,-42.059128 + 5164: 1.1423109,-42.0904 + 5165: 1.0277274,-41.965317 + 5166: 1.0173109,-41.913193 + 5167: 1.0068941,-41.881927 + 5168: 0.92356074,-41.98616 + 5322: 12.483637,-31.527472 + - node: + angle: -6.283185307179586 rad + color: '#3AB3DAFF' + id: FlowersBROne + decals: + 377: 14.34899,8.608841 + - node: + angle: -6.283185307179586 rad + color: '#80C71FFF' + id: FlowersBROne + decals: + 404: 8.289498,1.6021342 + 405: 8.945748,-1.5771568 + - node: + color: '#C6D83DFF' + id: FlowersBROne + decals: + 1942: 96.96981,-1.226438 + - node: + angle: -6.283185307179586 rad + color: '#C74EBDFF' + id: FlowersBROne + decals: + 413: 7.239205,8.415134 + - node: + color: '#C74EBDFF' + id: FlowersBROne + decals: + 1954: 18.109663,-26.094265 + - node: + angle: -6.283185307179586 rad + color: '#D58C18FF' + id: FlowersBROne + decals: + 362: 27.022987,8.719946 + - node: + angle: -6.283185307179586 rad + color: '#FED83DFF' + id: FlowersBROne + decals: + 374: 16.087364,0.46307325 + 411: 5.437122,5.0169406 + - node: + angle: -6.283185307179586 rad + color: '#FFFFFFFF' + id: FlowersBROne + decals: + 401: 5.924915,-1.1185057 + - node: + color: '#20EF4CFF' + id: FlowersBRThree + decals: + 1957: 4.9311347,-26.083841 + - node: + angle: -6.283185307179586 rad + color: '#FFFFFFFF' + id: FlowersBRThree + decals: + 396: 27.581758,6.0796566 + - node: + color: '#00FFFFFF' + id: FlowersBRTwo + decals: + 5021: 1.8909383,16.984938 + - node: + color: '#169C9CFF' + id: FlowersBRTwo + decals: + 1993: -53.09676,-12.221202 + - node: + angle: -6.283185307179586 rad + color: '#3AB3DAFF' + id: FlowersBRTwo + decals: + 381: 15.526073,6.190495 + - node: + angle: -6.283185307179586 rad + color: '#80C71FFF' + id: FlowersBRTwo + decals: + 368: 35.00111,3.943966 + - node: + angle: -6.283185307179586 rad + color: '#FED83DFF' + id: FlowersBRTwo + decals: + 372: 14.295697,-1.7884908 + 373: 14.233197,0.5568887 + - node: + color: '#FFFF00FF' + id: FlowersBRTwo + decals: + 5016: 3.7290635,16.984938 + - node: + angle: -6.283185307179586 rad + color: '#FFFFFFFF' + id: FlowersBRTwo + decals: + 395: 25.10889,2.8833094 + - node: + color: '#169C9CFF' + id: Flowersbr1 + decals: + 2001: -48.86759,19.64475 + - node: + angle: -6.283185307179586 rad + color: '#8932B8FF' + id: Flowersbr1 + decals: + 363: 31.37611,4.6632147 + 364: 33.105274,4.0794764 + 365: 31.37611,4.037781 + - node: + color: '#D29A3DFF' + id: Flowersbr1 + decals: + 2006: 8.439345,31.624065 + - node: + angle: -6.283185307179586 rad + color: '#D5188DFF' + id: Flowersbr1 + decals: + 359: 23.241737,7.0625443 + - node: + angle: -6.283185307179586 rad + color: '#F38BAAFF' + id: Flowersbr1 + decals: + 388: 18.310743,8.774571 + 389: 24.410105,8.846733 + 390: 25.10802,8.575711 + - node: + color: '#F38BAAFF' + id: Flowersbr1 + decals: + 1991: -48.86759,-10.980757 + - node: + angle: -6.283185307179586 rad + color: '#F9801DFF' + id: Flowersbr1 + decals: + 385: 18.314745,2.7451694 + - node: + color: '#F9801DFF' + id: Flowersbr1 + decals: + 2009: 16.918512,32.312042 + - node: + angle: -6.283185307179586 rad + color: '#FED83DFF' + id: Flowersbr1 + decals: + 407: 9.060331,0.9766998 + 412: 5.8225384,8.123264 + - node: + color: '#FFFFFFFF' + id: Flowersbr1 + decals: + 617: 17.038149,33.97587 + 618: 6.673565,33.392128 + - node: + color: '#169C9CFF' + id: Flowersbr2 + decals: + 2002: -48.794674,17.93523 + - node: + color: '#00FFFFFF' + id: Flowersbr3 + decals: + 5022: 2.8492713,13.857765 + - node: + color: '#3AB3DAFF' + id: Flowersbr3 + decals: + 5059: -1.7845856,14.233026 + - node: + angle: -6.283185307179586 rad + color: '#F38BAAFF' + id: Flowersbr3 + decals: + 402: 5.6019983,1.1434822 + - node: + angle: -6.283185307179586 rad + color: '#F9801DFF' + id: Flowersbr3 + decals: + 384: 18.273077,4.5276575 + - node: + color: '#80C71FFF' + id: Flowerspv1 + decals: + 4602: 95.02974,-0.9485295 + - node: + color: '#C3CE01FF' + id: Flowerspv1 + decals: + 1972: -32.672432,7.9992733 + - node: + angle: -6.283185307179586 rad + color: '#F38BAAFF' + id: Flowerspv1 + decals: + 387: 20.841993,8.774571 + - node: + angle: -6.283185307179586 rad + color: '#FED83DFF' + id: Flowerspv1 + decals: + 371: 17.868614,-0.3082955 + - node: + color: '#FFFF00FF' + id: Flowerspv1 + decals: + 5018: 4.1040635,13.784798 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 619: 5.9443984,33.381706 + 5056: 0.85083103,16.922394 + - node: + color: '#3AB3DAFF' + id: Flowerspv2 + decals: + 5057: -3.0137525,14.754221 + - node: + angle: -6.283185307179586 rad + color: '#FFFFFFFF' + id: Flowerspv2 + decals: + 397: 27.63384,7.643242 + 398: 23.755072,0.04955089 + 399: 6.143665,2.0086665 + - node: + color: '#169C9CFF' + id: Flowerspv3 + decals: + 1994: -48.84676,-11.825093 + - node: + color: '#20EF4CFF' + id: Flowerspv3 + decals: + 1958: 4.9207177,-27.980993 + - node: + angle: -6.283185307179586 rad + color: '#3AB3DAFF' + id: Flowerspv3 + decals: + 378: 16.005241,8.191885 + - node: + color: '#3AB3DAFF' + id: Flowerspv3 + decals: + 5058: -0.6595856,14.180906 + - node: + angle: -6.283185307179586 rad + color: '#80C71FFF' + id: Flowerspv3 + decals: + 369: 36.09486,4.0169325 + - node: + color: '#C6D83DFF' + id: Flowerspv3 + decals: + 1943: 94.96981,-0.1840477 + - node: + color: '#C74EBDFF' + id: Flowerspv3 + decals: + 1956: 18.130497,-26.917755 + - node: + color: '#D29A3DFF' + id: Flowerspv3 + decals: + 2005: 7.6060114,31.571945 + 2007: 14.189345,33.979866 + - node: + angle: -6.283185307179586 rad + color: '#F38BAAFF' + id: Flowerspv3 + decals: + 403: 7.310332,1.0392437 + - node: + color: '#F38BAAFF' + id: Flowerspv3 + decals: + 1990: -53.12801,-11.199659 + - node: + angle: -6.283185307179586 rad + color: '#F9801DFF' + id: Flowerspv3 + decals: + 382: 17.533125,5.37895 + 383: 16.897709,6.1842055 + 386: 18.283495,1.7236266 + - node: + angle: -6.283185307179586 rad + color: '#FED83DFF' + id: Flowerspv3 + decals: + 370: 29.09871,3.9648137 + 375: 23.493616,-1.7050991 + 406: 8.039498,-1.1185057 + - node: + color: '#FFFF00FF' + id: Flowerspv3 + decals: + 5017: 2.6873965,14.733374 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 615: 16.204815,33.698204 + - node: + angle: -6.283185307179586 rad + color: '#3AB3DAFF' + id: Flowersy1 + decals: + 379: 16.026073,7.628994 + 380: 14.369823,6.3155813 + - node: + angle: -6.283185307179586 rad + color: '#8932B8FF' + id: Flowersy1 + decals: + 366: 31.00111,3.943966 + 367: 35.521942,3.9231176 + - node: + color: '#20EF4CFF' + id: Flowersy2 + decals: + 1959: 4.941551,-27.094961 + - node: + color: '#C3CE01FF' + id: Flowersy2 + decals: + 1971: -33.599514,7.9992733 + - node: + color: '#F38BAAFF' + id: Flowersy2 + decals: + 1992: -53.06551,-13.034266 + - node: + angle: -6.283185307179586 rad + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 394: 24.650557,2.8416133 + - node: + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 616: 17.079817,33.36464 + 620: 6.392315,33.829933 + - node: + color: '#C6D83DFF' + id: Flowersy3 + decals: + 1944: 97.06356,-2.2479806 + - node: + angle: -6.283185307179586 rad + color: '#D58C18FF' + id: Flowersy3 + decals: + 360: 23.82507,7.114664 + 361: 27.012571,3.9874916 + - node: + angle: -6.283185307179586 rad + color: '#FED83DFF' + id: Flowersy3 + decals: + 409: 6.310332,0.09066701 + 410: 8.478787,7.1746893 + - node: + color: '#FED83DFF' + id: Flowersy3 + decals: + 5060: -3.0970855,16.96409 + - node: + angle: -6.283185307179586 rad + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 400: 8.154081,0.028123856 + - node: + color: '#907C16FF' + id: Flowersy4 + decals: + 1995: -48.81551,-13.034266 + - node: + color: '#C6D83DFF' + id: Flowersy4 + decals: + 1945: 95.917725,-0.2674389 + - node: + color: '#C74EBDFF' + id: Flowersy4 + decals: + 1955: 18.15133,-27.939297 + - node: + angle: -6.283185307179586 rad + color: '#FED83DFF' + id: Flowersy4 + decals: + 376: 23.597782,2.0892024 + 408: 9.029081,-0.37840843 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 1767: 65,-9 + 1768: 65,-10 + 1769: 65,-11 + 1770: 64,-10 + 1771: 66,-10 + 1856: -23,9 + 1857: -23,10 + 1858: -23,8 + 1859: -24,9 + 1860: -22,9 + - node: + color: '#32CD32FF' + id: Gene + decals: + 4933: -11.479261,-37.483566 + - node: + color: '#D29A3DFF' + id: Grassa3 + decals: + 2004: 7.9914284,32.041023 + - node: + angle: -6.283185307179586 rad + color: '#FFFFFFFF' + id: Grassa4 + decals: + 233: 8.28044,7.374672 + - node: + color: '#C3CE01FF' + id: Grassb1 + decals: + 1970: -33.953682,8.009697 + 1982: -53.09676,-11.283051 + - node: + angle: -6.283185307179586 rad + color: '#FFFFFFFF' + id: Grassb1 + decals: + 235: 27.901072,3.7095652 + - node: + color: '#835432FF' + id: Grassb2 + decals: + 719: 44.47208,2.2806587 + - node: + color: '#C3CE01FF' + id: Grassb2 + decals: + 1983: -48.87801,-13.002995 + - node: + angle: -6.283185307179586 rad + color: '#FFFFFFFF' + id: Grassb2 + decals: + 240: 27.692738,4.3558474 + - node: + color: '#FFFFFFFF' + id: Grassb2 + decals: + 4599: 95.95357,-3.0781884 + - node: + angle: -6.283185307179586 rad + color: '#FFFFFFFF' + id: Grassb3 + decals: + 234: 9.228357,7.1557703 + - node: + color: '#835432FF' + id: Grassb4 + decals: + 718: 43.62833,2.405745 + - node: + angle: -6.283185307179586 rad + color: '#FFFFFFFF' + id: Grassb4 + decals: + 236: 26.859406,4.1786413 + - node: + color: '#C3CE01FF' + id: Grassb5 + decals: + 1969: -32.057846,8.009697 + 1981: -53.04438,16.719244 + - node: + color: '#F9801DFF' + id: Grassb5 + decals: + 2010: 15.481011,33.23977 + - node: + color: '#C74EBDFF' + id: Grassc1 + decals: + 1952: 4.872653,-28.05396 + - node: + color: '#FED83DFF' + id: Grassc1 + decals: + 1948: 18.046867,-28.022688 + - node: + angle: -6.283185307179586 rad + color: '#FFFFFFFF' + id: Grassc1 + decals: + 264: 6.370403,-0.5225401 + 266: 8.193319,-0.94992113 + 392: 24.555937,8.992667 + 393: 24.837187,8.617407 + - node: + color: '#FFFFFFFF' + id: Grassc1 + decals: + 647: 24.264824,4.733109 + 649: 22.941908,5.7754993 + 1939: 97.06356,-2.039503 + 5009: 2.45823,16.745188 + 5010: 4.05198,14.889732 + 5011: 1.9061465,13.95158 + 5029: -2.4512525,17.120447 + 5030: -0.9408356,17.182991 + 5031: -0.6908356,16.797306 + 5032: 0.88208103,16.578405 + - node: + color: '#C3CE01FF' + id: Grassc2 + decals: + 1979: -53.10688,18.324524 + - node: + angle: -6.283185307179586 rad + color: '#FFFFFFFF' + id: Grassc2 + decals: + 337: 15.71726,6.295595 + 338: 17.404762,5.743128 + 339: 18.258928,4.481836 + 340: 18.206844,2.7005734 + 341: 18.102678,3.5925646 + 342: 17.851446,1.4869354 + - node: + color: '#FFFFFFFF' + id: Grassc2 + decals: + 651: 25.160658,5.754652 + 1940: 97.18856,-2.9359589 + 1965: -31.95368,-1.0820532 + 5035: -1.5137523,14.233026 + 5036: 0.9029145,14.775068 + - node: + color: '#B02E26FF' + id: Grassc3 + decals: + 717: 42.17,2.7497342 + - node: + color: '#C74EBDFF' + id: Grassc3 + decals: + 1951: 4.9143195,-25.948332 + - node: + color: '#F38BAAFF' + id: Grassc3 + decals: + 715: 44.63875,1.9366696 + 1966: -32.495346,-1.1029005 + - node: + color: '#F9801DFF' + id: Grassc3 + decals: + 716: 45.88875,2.843549 + - node: + color: '#FED83DFF' + id: Grassc3 + decals: + 714: 42.399166,1.9575176 + - node: + angle: -6.283185307179586 rad + color: '#FFFFFFFF' + id: Grassc3 + decals: + 232: 5.447108,6.3010097 + 327: 23.388048,7.0751367 + 328: 23.929714,7.1898 + 329: 21.317707,8.8703 + 330: 17.83854,8.786909 + - node: + color: '#FFFFFFFF' + id: Grassc3 + decals: + 650: 23.691908,5.796347 + 709: 42.59708,2.6559186 + 710: 45.336666,2.7705822 + 711: 44.25333,2.666343 + 712: 43.47208,2.0304844 + 713: 45.53458,1.8949738 + 1938: 96.3969,-1.2994053 + 4592: 93.96053,-0.09080005 + 4597: 96.4259,-3.082461 + 5023: 1.0174978,17.172567 + 5024: -1.5866688,16.797306 + 5025: -3.0658355,16.609676 + 5026: -3.055419,14.128786 + 5027: 1.1112478,13.930733 + 5028: 0.46541446,13.899461 + - node: + color: '#209D4CFF' + id: Grassc4 + decals: + 1960: -33.974514,8.019474 + - node: + color: '#C3CE01FF' + id: Grassc4 + decals: + 1973: -53.096462,20.013197 + 1974: -48.836044,18.04308 + 1978: -48.815212,19.075047 + 1984: -53.00301,-11.168387 + - node: + color: '#FED83DFF' + id: Grassc4 + decals: + 1947: 18.098951,-25.937906 + - node: + angle: -6.283185307179586 rad + color: '#FFFFFFFF' + id: Grassc4 + decals: + 227: 6.290858,8.073074 + 228: 7.9366913,8.3024 + 239: 28.807322,3.980587 + 249: 9.109986,-0.6893239 + 250: 9.162069,0.86383915 + 251: 8.859986,1.9687734 + 252: 6.56832,2.0730119 + 263: 5.91207,1.0097737 + 265: 7.31832,-1.252214 + 319: 14.099733,0.32320964 + 320: 14.422649,-1.7302997 + 321: 16.330938,0.63821244 + 322: 17.830355,-0.25824332 + 323: 23.601189,-0.5918081 + 324: 23.549105,1.2427994 + 325: 23.767855,2.2434945 + 326: 24.757439,2.3685808 + 331: 20.77604,8.7452135 + 332: 14.425594,8.932844 + 333: 14.24851,8.68267 + 334: 16.331844,7.7966375 + 335: 15.77976,8.140627 + 336: 14.415177,6.285171 + 352: 31.256754,4.635067 + 353: 33.100502,4.5099807 + 354: 35.902584,4.6142197 + 355: 35.069252,4.6037955 + 356: 27.694254,6.167381 + 357: 27.808836,7.3452826 + 358: 27.746336,8.158348 + - node: + color: '#FFFFFFFF' + id: Grassc4 + decals: + 218: 6.3741913,4.977174 + 219: 7.395025,4.9875975 + 220: 9.134607,6.1967707 + 221: 9.06169,8.06265 + 646: 22.743992,4.7956524 + 648: 25.212742,4.7539563 + 1963: -31.901594,7.9986258 + 1964: -33.953682,-1.0820532 + 4593: 93.91886,-1.0393753 + 4598: 95.41105,-1.4937544 + 5033: -2.1700025,14.160059 + 5034: -3.0970855,14.91058 + 5037: 0.10083109,14.837612 + 5038: -2.180419,16.307383 + 5039: -3.1283355,17.182991 + 5040: -1.1595856,17.599947 + - node: + color: '#C3CE01FF' + id: Grassd1 + decals: + 1985: -48.90926,-10.9286375 + - node: + color: '#FED83DFF' + id: Grassd1 + decals: + 1949: 18.119783,-27.188776 + - node: + angle: -6.283185307179586 rad + color: '#FFFFFFFF' + id: Grassd1 + decals: + 222: 5.738775,8.354519 + 237: 28.234406,4.2099133 + 238: 29.026072,4.0535545 + 244: 9.057902,2.1876752 + 248: 9.089152,-1.2313666 + 253: 5.901653,1.1974039 + 254: 6.776653,-1.0020399 + 255: 8.464152,-1.429421 + 257: 5.9224863,-0.20982385 + 275: 17.734488,8.771611 + 276: 18.296988,8.740339 + 294: 17.530375,-0.2676878 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 553: 6.206615,30.228054 + 607: 13.904552,30.101479 + 640: 22.764824,5.8067718 + 641: 23.400242,5.8067718 + 644: 25.118992,4.7748046 + 697: 46.07625,2.6976147 + 698: 41.94083,1.8845501 + 1934: 94.855225,-0.069384575 + 4594: 94.76261,-0.97683215 + 4596: 95.89465,-2.8844066 + 5041: -2.3158355,16.515862 + 5042: 0.8716645,16.91197 + - node: + color: '#209D4CFF' + id: Grassd2 + decals: + 1961: -32.432846,8.082017 + - node: + color: '#F38BAAFF' + id: Grassd2 + decals: + 1967: -33.359932,-1.1445965 + 1989: -48.794674,-12.335865 + - node: + angle: -6.283185307179586 rad + color: '#FFFFFFFF' + id: Grassd2 + decals: + 223: 6.488775,8.031378 + 225: 8.363774,8.073074 + 226: 8.030441,7.5935745 + 245: 9.151652,1.2495236 + 256: 8.099569,-0.39745378 + 259: 7.4849863,-1.0541601 + 260: 6.72457,1.3329148 + 277: 20.567822,8.7924595 + 391: 24.42052,8.534016 + - node: + color: '#FFFFFFFF' + id: Grassd2 + decals: + 209: 9.145024,8.031378 + 210: 9.103357,7.3225527 + 211: 9.040857,6.603303 + 212: 9.124191,5.8736296 + 215: 7.426275,4.977174 + 554: 6.5711985,30.415684 + 608: 14.258719,29.48647 + 614: 15.008719,29.392654 + 642: 22.702324,4.764381 + 645: 25.118992,5.827619 + 699: 43.180416,3.1562665 + 700: 45.19083,3.0520272 + 708: 45.12833,2.3744736 + 1936: 97.105225,-1.153471 + 1937: 95.6469,-0.80948186 + 5012: 1.6665635,17.474861 + - node: + color: '#C3CE01FF' + id: Grassd3 + decals: + 1975: -53.096462,19.200132 + 1976: -48.91938,20.002773 + 1980: -53.086044,17.490612 + 1986: -53.12801,-12.002299 + - node: + color: '#C74EBDFF' + id: Grassd3 + decals: + 1953: 4.8934865,-26.750973 + - node: + color: '#FED83DFF' + id: Grassd3 + decals: + 1950: 18.203117,-26.500797 + - node: + angle: -6.283185307179586 rad + color: '#FFFFFFFF' + id: Grassd3 + decals: + 269: 14.092646,8.490166 + 270: 14.644729,8.92797 + 271: 15.67598,7.5832863 + 272: 15.64473,8.146177 + 273: 16.415564,7.6041336 + 274: 16.42598,8.323383 + 306: 16.405375,6.351493 + 307: 15.624125,6.351493 + 308: 14.8532915,6.382765 + 309: 14.121686,6.382765 + 310: 14.087831,0.6250808 + 311: 14.827414,0.6355052 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 213: 9.165857,4.977174 + 216: 6.540858,4.9563255 + 555: 7.435782,30.248901 + 561: 9.133698,29.727707 + 609: 14.633719,30.841576 + 701: 44.024166,3.1458428 + 702: 42.01375,2.447441 + 703: 44.6075,2.4995606 + 1935: 95.96981,-0.12150407 + 5048: -3.117919,17.110023 + 5049: -1.2637523,17.04748 + 5050: -2.8783355,14.743797 + - node: + color: '#C3CE01FF' + id: Grasse1 + decals: + 1977: -53.002712,16.041689 + 1988: -48.93009,-11.814669 + - node: + angle: -6.283185307179586 rad + color: '#FFFFFFFF' + id: Grasse1 + decals: + 241: 5.995403,2.1772509 + 261: 7.9641533,1.0410452 + 262: 7.0162363,0.49900222 + 283: 27.036572,8.698645 + 284: 24.494905,2.757018 + 285: 24.869905,3.1531262 + 286: 25.161572,2.996768 + 287: 24.005322,2.5589643 + 288: 23.599072,2.2149749 + 289: 23.619905,1.6312361 + 290: 23.519958,0.66004014 + 291: 23.467876,-0.017513752 + 292: 23.613708,-0.87227416 + 293: 23.447042,-1.8521218 + 295: 18.301208,-0.25726366 + 296: 17.978292,1.0040293 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 556: 8.3107815,30.21763 + 560: 8.1128645,29.394142 + 610: 15.477469,31.029207 + 695: 42.024166,3.0416036 + 696: 46.055416,1.8324304 + 704: 43.95125,1.8845501 + 707: 45.086666,1.6031041 + 4595: 96.03345,-2.0609183 + 5000: 1.9373965,16.682644 + 5001: 2.6978135,14.712525 + 5002: 3.42698,13.722254 + 5043: -3.0137525,13.649287 + 5044: -2.024169,13.784798 + 5045: -1.2533356,13.805645 + 5046: -0.5762522,13.81607 + - node: + angle: -6.283185307179586 rad + color: '#FFFFFFFF' + id: Grasse2 + decals: + 242: 6.9224863,2.2085226 + 247: 9.130819,-0.41830206 + - node: + color: '#FFFFFFFF' + id: Grasse2 + decals: + 557: 9.1232815,30.540771 + 559: 7.144115,29.519228 + 611: 15.123302,30.195293 + 613: 16.894136,29.94512 + 705: 42.867916,2.447441 + 1962: -33.151596,8.06117 + 5003: 4.11448,16.797306 + 5004: 3.55198,14.733374 + 5005: 2.4478135,13.857765 + 5006: 4.08323,13.930733 + 5014: 4.0936465,17.672915 + 5015: 3.2811465,17.714611 + - node: + color: '#C3CE01FF' + id: Grasse3 + decals: + 1987: -53.12801,-12.950875 + - node: + angle: -6.283185307179586 rad + color: '#FFFFFFFF' + id: Grasse3 + decals: + 224: 7.384608,8.219008 + 229: 5.551275,7.2600093 + 230: 5.3741913,6.446944 + 231: 5.4679413,5.540065 + 243: 7.8183193,2.1564035 + 246: 9.099569,0.40518665 + 258: 5.870403,-1.0750074 + 278: 21.484488,8.917546 + 279: 23.213655,7.208026 + 280: 23.734488,7.3748083 + 281: 23.994905,7.1663303 + 282: 23.276155,6.8744607 + 297: 18.197042,1.7232783 + 298: 18.197042,2.3799849 + 299: 18.197042,3.0054193 + 300: 18.228292,3.5370378 + 301: 18.269958,4.297983 + 302: 18.238708,4.9546895 + 303: 18.259542,5.475885 + 304: 17.342875,5.611396 + 305: 17.269958,6.2993736 + 312: 15.389914,0.552114 + 313: 16.504498,0.6563525 + 314: 14.150331,-1.6473305 + 315: 14.379497,-1.8245366 + 343: 27.758759,7.7747593 + 344: 27.790009,6.972118 + 345: 27.790009,6.127782 + 346: 27.758759,5.2521734 + 347: 31.008759,4.730978 + 348: 31.394175,4.7830977 + 349: 33.081673,4.6997066 + 350: 34.99265,4.730978 + 351: 35.9614,4.647587 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 214: 8.31169,4.945902 + 217: 5.9054413,4.9980216 + 558: 6.175365,29.571348 + 612: 15.967052,29.809608 + 643: 24.077324,4.7539563 + 706: 42.88875,1.5509846 + 5007: 3.0728135,16.786882 + 5008: 1.9061465,14.795917 + 5013: 2.3540635,17.620794 + 5047: 0.3508311,13.47208 + - node: + color: '#DE3A3ABF' + id: LoadingArea + decals: + 4748: 7,-32 + 4749: 8,-32 + 4750: 8,-32 + 4751: 7,-32 + 4752: 7,-35 + 4753: 8,-35 + 4754: 7,-35 + 4755: 8,-35 + - node: + angle: 3.141592653589793 rad + color: '#DE3A3ABF' + id: LoadingArea + decals: + 4756: 15,-35 + 4757: 15,-35 + 4758: 16,-35 + 4759: 16,-35 + 4760: 16,-32 + 4761: 16,-32 + 4762: 15,-32 + 4763: 15,-32 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 5693: -44,-39 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 5712: -44,-46 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 1864: -9,0 + 1867: -9,-4 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 5329: -50,-39 + - node: + color: '#A4610696' + id: Max + decals: + 5067: 26.44729,-39.806602 + - node: + color: '#EFB34196' + id: Max + decals: + 5068: 26.499372,-39.837875 + - node: + color: '#474F52FF' + id: MiniTileDiagonalCheckerAOverlay + decals: + 26: 16,-17 + 27: 17,-17 + 28: 18,-17 + 29: 18,-18 + 30: 17,-18 + 31: 16,-18 + - node: + color: '#334E6DC8' + id: MiniTileDiagonalCheckerBOverlay + decals: + 20: 16,-17 + 21: 17,-17 + 22: 18,-17 + 23: 18,-18 + 24: 16,-18 + 25: 17,-18 + - node: + color: '#79150096' + id: MiniTileDiagonalCheckerBOverlay + decals: + 4855: 31,19 + 4856: 32,18 + 4857: 31,18 + 4858: 30,18 + 4859: 30,17 + 4860: 31,17 + 4861: 32,17 + 4862: 33,16 + 4863: 32,16 + 4864: 31,16 + 4865: 30,16 + 4866: 32,15 + 4867: 33,15 + 4868: 33,15 + 4869: 32,15 + 4870: 33,16 + 4871: 32,16 + 4872: 31,16 + 4873: 30,16 + 4874: 30,17 + 4875: 31,17 + 4876: 32,17 + 4877: 32,18 + 4878: 31,18 + 4879: 30,18 + 4880: 31,19 + 4929: 32,19 + 4930: 32,19 + 4931: 31,15 + 4932: 31,15 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelLineE + decals: + 637: 8,-26 + - node: + color: '#9FED5896' + id: Omni + decals: + 1928: 51,-10 + - node: + angle: -6.283185307179586 rad + color: '#FFFFFFFF' + id: Rock01 + decals: + 267: 7.1099863,-0.83525753 + - node: + color: '#9D9D97FF' + id: Rock03 + decals: + 721: 42.4825,2.1138756 + - node: + color: '#FFFFFFFF' + id: Rock03 + decals: + 4600: 94.08898,-0.32220984 + - node: + angle: -6.283185307179586 rad + color: '#FFFFFFFF' + id: Rock05 + decals: + 268: 32.250393,3.9910111 + - node: + color: '#FFFFFFFF' + id: Rock06 + decals: + 4601: 95.99523,-2.2714806 + - node: + color: '#9D9D97FF' + id: Rock07 + decals: + 720: 45.524166,2.0617561 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign1 + decals: + 4678: 20,19 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign2 + decals: + 4679: 21,19 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign3 + decals: + 4680: 22,19 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign4 + decals: + 4681: 23,19 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign5 + decals: + 4682: 24,19 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign6 + decals: + 4683: 25,19 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign7 + decals: + 4684: 26,19 + - node: + color: '#DE3A3ABF' + id: StandClear + decals: + 4772: 7,-36 + 4773: 7,-36 + 4774: 8,-36 + 4775: 8,-36 + 4776: 15,-36 + 4777: 15,-36 + 4778: 16,-36 + 4779: 16,-36 + - node: + angle: 3.141592653589793 rad + color: '#DE3A3ABF' + id: StandClear + decals: + 4764: 7,-31 + 4765: 7,-31 + 4766: 8,-31 + 4767: 8,-31 + 4768: 15,-31 + 4769: 15,-31 + 4770: 16,-31 + 4771: 16,-31 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 5696: -44,-31 + 5697: -43,-31 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 689: -41,2 + 690: -41,1 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 1902: 69,5 + 1903: 70,5 + 1907: 63.506714,8.202091 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 681: -39,2 + 682: -39,1 + 1865: -8,-1 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 1906: 69.46791,23.970934 + 1910: -24.48475,2.0609245 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 1866: -10,-1 + - node: + color: '#3A99B0FF' + id: Tunnel + decals: + 632: 33.946026,53.883255 + - node: + color: '#FFFFFFFF' + id: WarnBox + decals: + 5507: -9,-3 + - node: + color: '#FFFFFFFF' + id: WarnBoxGreyscale + decals: + 5323: -46,-24 + 5324: -45,-24 + 5325: -44,-24 + 5326: -43,-24 + 5327: -42,-24 + 5328: -41,-24 + - node: + color: '#DE3A3ABF' + id: WarnCornerNE + decals: + 4784: 8,-33 + 4785: 8,-33 + 4786: 17,-33 + 4787: 17,-33 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 655: 55,-30 + 657: 62,-30 + 669: 47,-30 + 1904: 70,24 + - node: + color: '#DE3A3ABF' + id: WarnCornerNW + decals: + 4780: 6,-33 + 4781: 6,-33 + 4782: 15,-33 + 4783: 15,-33 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 656: 58,-30 + 658: 53,-30 + 668: 50,-30 + 1905: 69,24 + 5342: -99,10 + 5343: -99,8 + 5344: -99,6 + 5345: -99,4 + 5346: -99,2 + 5347: -99,0 + - node: + color: '#DE3A3ABF' + id: WarnCornerSE + decals: + 4788: 17,-34 + 4789: 17,-34 + 4790: 8,-34 + 4791: 8,-34 + - node: + color: '#DE3A3ABF' + id: WarnCornerSW + decals: + 4792: 6,-34 + 4793: 6,-34 + 4794: 15,-34 + 4795: 15,-34 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 5348: -99,-1 + 5349: -99,1 + 5350: -99,3 + 5351: -99,5 + 5352: -99,7 + 5353: -99,9 + 5703: -44,-38 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 152: -3,40 + 5645: -11,-9 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 151: 0,40 + 5646: -8,-9 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 150: -3,43 + 5643: -11,-6 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 149: 0,43 + 5644: -8,-6 + - node: + color: '#FFFFFFFF' + id: WarnEndE + decals: + 5387: -89,-2 + 5388: -85,-2 + 5389: -85,10 + 5390: -89,10 + - node: + color: '#FFFFFFFF' + id: WarnEndN + decals: + 5399: -94,7 + 5400: -94,3 + - node: + color: '#FFFFFFFF' + id: WarnEndS + decals: + 5401: -94,1 + 5402: -94,5 + - node: + color: '#FFFFFFFF' + id: WarnEndW + decals: + 5383: -91,10 + 5384: -87,10 + 5385: -91,-2 + 5386: -87,-2 + - node: + color: '#FFFFFFFF' + id: WarnFull + decals: + 1880: 119,3 + 1881: 119,4 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 143: -3,42 + 144: -3,41 + 660: 55,-31 + 661: 62,-31 + 687: -38,2 + 688: -38,1 + 1870: -32,-23 + 1873: 17,-24 + 1878: 114,-2 + 1879: 114,-3 + 1891: -32,28 + 1900: 17,30 + 5403: -94,6 + 5404: -94,2 + 5635: -11,-7 + 5636: -11,-8 + 5709: -46,-45 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: WarnLineE + decals: + 90: -10,47 + 91: -10,46 + 92: -8,47 + 93: -8,46 + - node: + color: '#DE3A3ABF' + id: WarnLineN + decals: + 4796: 7,-34 + 4797: 7,-34 + 4798: 16,-34 + 4799: 16,-34 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 141: -2,43 + 142: -1,43 + 683: -39,3 + 686: -38,3 + 691: -41,3 + 1875: 57,-33 + 1876: 56,-33 + 1877: 101,-8 + 1884: 52,2 + 1885: 50,32 + 1886: 39,-22 + 1887: -30,0 + 1892: -34,24 + 1893: -20,40 + 1897: 75,-21 + 1898: 64,-21 + 1920: 121,5 + 1921: 122,5 + 1922: 123,5 + 1923: 124,5 + 5335: -52,-39 + 5336: -51,-39 + 5360: -98,-1 + 5361: -98,1 + 5362: -98,3 + 5363: -98,5 + 5364: -98,7 + 5365: -98,9 + 5395: -90,10 + 5396: -86,10 + 5397: -86,-2 + 5398: -90,-2 + 5407: -75,1 + 5408: -71,1 + 5410: -68,1 + 5641: -10,-6 + 5642: -9,-6 + 5654: -39,-35 + 5655: -40,-35 + 5704: -43,-38 + 5705: -41,-38 + 5706: -45,-46 + 5707: -46,-46 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 147: 0,41 + 148: 0,42 + 659: 53,-31 + 662: 58,-31 + 663: 65,-31 + 664: 65,-30 + 665: 65,-29 + 666: 65,-28 + 693: -41,2 + 694: -41,1 + 1869: -28,-11 + 1872: 6,-24 + 1889: -41,41 + 1890: -41,42 + 1901: 6,30 + 4563: 60,28 + 4564: 60,27 + 4565: 60,26 + 4566: 60,24 + 4567: 60,25 + 5405: -94,2 + 5406: -94,6 + 5639: -8,-8 + 5640: -8,-7 + 5698: -44,-32 + 5699: -44,-33 + 5700: -44,-34 + 5701: -44,-36 + 5702: -44,-37 + 5710: -46,-45 + 5711: -46,-46 + 5718: -46,-42 + 5719: -46,-43 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: WarnLineS + decals: + 94: -10,47 + 95: -10,46 + 96: -8,47 + 97: -8,46 + - node: + color: '#DE3A3ABF' + id: WarnLineW + decals: + 4800: 7,-33 + 4801: 7,-33 + 4802: 16,-33 + 4803: 16,-33 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 145: -2,40 + 146: -1,40 + 667: 51,-30 + 684: -39,0 + 685: -38,0 + 692: -41,0 + 1871: -26,-32 + 1874: 49,-25 + 1882: 103,14 + 1883: 52,5 + 1888: -30,7 + 1894: 32,54 + 1895: 12,54 + 1896: -9,54 + 1899: 38,28 + 1924: 121,2 + 1925: 122,2 + 1926: 123,2 + 1927: 124,2 + 5330: -48,-43 + 5331: -49,-43 + 5332: -50,-43 + 5333: -51,-43 + 5334: -52,-43 + 5354: -98,10 + 5355: -98,8 + 5356: -98,6 + 5357: -98,4 + 5358: -98,2 + 5359: -98,0 + 5391: -90,10 + 5392: -86,10 + 5393: -86,-2 + 5394: -90,-2 + 5409: -68,6 + 5637: -10,-9 + 5638: -9,-9 + 5708: -45,-46 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 4605: 39,-10 + 4610: 45,-10 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 4604: 37,-10 + 4606: 41,-10 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 4627: 42,-14 + 4628: 41,-15 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 4633: 37,-15 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndE + decals: + 4616: 46,-11 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndN + decals: + 4615: 38,-9 + - node: + color: '#79150096' + id: WoodTrimThinInnerNe + decals: + 121: 41,-3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 4613: 38,-10 + 4618: 45,-11 + 4622: 39,-11 + - node: + color: '#79150096' + id: WoodTrimThinInnerNw + decals: + 117: 47,-3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 4614: 38,-10 + 4620: 41,-11 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSe + decals: + 4621: 42,-11 + 4624: 42,-11 + 4629: 41,-14 + - node: + color: '#79150096' + id: WoodTrimThinLineE + decals: + 122: 41,-2 + 123: 41,-1 + 124: 41,0 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 4625: 42,-12 + 4626: 42,-13 + - node: + color: '#79150096' + id: WoodTrimThinLineN + decals: + 112: 42,-3 + 113: 43,-3 + 114: 44,-3 + 115: 45,-3 + 116: 46,-3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 4607: 42,-10 + 4608: 43,-10 + 4609: 44,-10 + 4623: 40,-11 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 4611: 44,-11 + 4612: 43,-11 + 4617: 45,-11 + 4630: 40,-15 + 4631: 39,-15 + 4632: 38,-15 + - node: + color: '#79150096' + id: WoodTrimThinLineW + decals: + 118: 47,-2 + 119: 47,-1 + 120: 47,0 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 4619: 37,-11 + 4634: 37,-14 + 4635: 37,-13 + 4636: 37,-12 + - node: + color: '#9FED5896' + id: beepsky + decals: + 5065: -1.5035123,-36.69757 + - node: + angle: -6.283185307179586 rad + color: '#C74EBDFF' + id: bushsnowa1 + decals: + 414: 18.22173,-1.8984015 + - node: + angle: -6.283185307179586 rad + color: '#FED83DFF' + id: bushsnowa1 + decals: + 437: 14.134711,-0.17933992 + - node: + angle: -6.283185307179586 rad + color: '#8932B8FF' + id: bushsnowa2 + decals: + 435: 26.890423,7.0956073 + - node: + angle: -6.283185307179586 rad + color: '#C74EBDFF' + id: bushsnowa2 + decals: + 415: 16.107145,-1.9088259 + 418: 6.2996173,1.6265869 + - node: + angle: -6.283185307179586 rad + color: '#3AB3DAFF' + id: bushsnowa3 + decals: + 426: 27.150227,7.5833206 + - node: + angle: -6.283185307179586 rad + color: '#FED83DFF' + id: bushsnowa3 + decals: + 438: 20.762154,-1.9722521 + 440: 20.751738,-1.9618278 + - node: + angle: -6.283185307179586 rad + color: '#C74EBDFF' + id: bushsnowb1 + decals: + 430: 18.224953,-1.8842266 + - node: + angle: -6.283185307179586 rad + color: '#C74EBDFF' + id: bushsnowb2 + decals: + 431: 16.09995,-1.8946502 + - node: + angle: -6.283185307179586 rad + color: '#C74EBDFF' + id: bushsnowb3 + decals: + 442: 22.272572,-1.9722521 + - node: + angle: -6.283185307179586 rad + color: '#FED83DFF' + id: bushsnowb3 + decals: + 436: 27.244589,6.689075 + - node: + color: '#D381C996' + id: cyka + decals: + 5066: -0.94358945,-32.82502 + - node: + color: '#B87C16FF' + id: grasssnowa2 + decals: + 1997: -53.075924,20.092978 + - node: + color: '#FFFF00FF' + id: grasssnowa2 + decals: + 5020: 2.3492713,17.130873 + - node: + color: '#F9801DFF' + id: grasssnowa3 + decals: + 5054: -2.0762525,16.922394 + - node: + color: '#169C9CFF' + id: grasssnowb1 + decals: + 1968: -34.047432,-1.2384113 + - node: + color: '#C6D83DFF' + id: grasssnowb1 + decals: + 1946: 96.042725,-1.1013513 + - node: + color: '#D29A3DFF' + id: grasssnowb1 + decals: + 2008: 15.939346,31.259228 + - node: + color: '#FFA500FF' + id: grasssnowb2 + decals: + 5053: 0.5591645,14.608286 + - node: + color: '#FFFF00FF' + id: grasssnowb3 + decals: + 5019: 1.9998965,15.077362 + - node: + color: '#B87C16FF' + id: grasssnowc1 + decals: + 1996: -53.12801,16.038078 + - node: + angle: 3.141592653589793 rad + color: '#0096FFBF' + id: prolizard + decals: + 4934: -12.718844,-39.484955 + - node: + color: '#B02E26BF' + id: rune6 + decals: + 4695: 23,16 + - node: + color: '#FED83DFF' + id: shop + decals: + 631: -10.021274,14.045676 + - node: + angle: 4.71238898038469 rad + color: '#A020F08D' + id: skull + decals: + 4935: -10.395928,-39.62047 + - node: + angle: 0.2617993877991494 rad + color: '#F9FFFEFF' + id: slash + decals: + 670: 82,-21 + 671: 80,-21 + 672: 78,-21 + - node: + color: '#1D1D21FF' + id: splatter + decals: + 652: -59.782864,8.573855 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 65535 + 2,0: + 0: 65535 + 2,1: + 0: 65535 + 2,2: + 0: 65535 + 3,0: + 0: 65535 + 3,1: + 0: 65535 + 3,2: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 0,-1: + 0: 65535 + 1,-3: + 0: 65535 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-3: + 0: 65535 + 2,-2: + 0: 65535 + 2,-1: + 0: 65535 + 3,-3: + 0: 65535 + 3,-2: + 0: 65535 + 3,-1: + 0: 65535 + -4,0: + 0: 65535 + -4,1: + 0: 65535 + -4,2: + 0: 65535 + -3,0: + 0: 65535 + -3,1: + 0: 65535 + -3,2: + 0: 65535 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 65535 + -1,0: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -4,-2: + 0: 65535 + -4,-1: + 0: 65535 + -4,-3: + 1: 1 + 0: 65534 + -3,-3: + 0: 65535 + -3,-2: + 0: 65535 + -3,-1: + 0: 65535 + -2,-3: + 0: 65535 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + -1,-1: + 0: 65535 + 4,0: + 0: 65535 + 4,1: + 0: 65535 + 5,0: + 0: 65535 + 4,-2: + 0: 65535 + 4,-1: + 0: 65535 + 5,-1: + 0: 65535 + -8,2: + 0: 65535 + -8,3: + 0: 65535 + -7,0: + 0: 65535 + -7,2: + 0: 65535 + -7,3: + 0: 65535 + -6,0: + 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 + -7,-1: + 0: 65535 + -6,-1: + 0: 65535 + -5,-1: + 0: 65535 + -5,-2: + 0: 65535 + -8,4: + 0: 65535 + -8,5: + 0: 65535 + -7,4: + 0: 65535 + -7,5: + 0: 65535 + -10,4: + 0: 65535 + -9,4: + 0: 65535 + -9,5: + 0: 65535 + -10,2: + 0: 65535 + -10,3: + 0: 65535 + -9,2: + 0: 65535 + -9,3: + 0: 65535 + 0,3: + 0: 65535 + 1,3: + 0: 65535 + 2,3: + 0: 65535 + 3,3: + 0: 65535 + 0,-4: + 0: 65535 + 1,-4: + 0: 65535 + 2,-4: + 0: 65535 + 3,-4: + 0: 65535 + -6,-5: + 0: 65535 + -5,-6: + 0: 65535 + -5,-5: + 0: 16383 + 1: 49152 + -4,-4: + 1: 4403 + 0: 61132 + -3,-4: + 0: 65535 + -2,-4: + 0: 65535 + -1,-4: + 0: 65535 + 4,2: + 0: 65535 + 4,3: + 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 + 5,-4: + 0: 65535 + 5,-3: + 0: 65535 + 5,-2: + 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 + -8,0: + 0: 65535 + -8,1: + 0: 65535 + -7,1: + 0: 65535 + -6,1: + 0: 65535 + -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 + -6,-4: + 0: 65535 + -6,-3: + 0: 65535 + -6,-2: + 0: 65535 + -5,-4: + 0: 13107 + 1: 52428 + -5,-3: + 0: 65523 + 1: 12 + -4,3: + 0: 65535 + -3,3: + 0: 65535 + -2,3: + 0: 65535 + -1,3: + 0: 65535 + -6,4: + 0: 65535 + -6,5: + 0: 65535 + -6,6: + 0: 65535 + -5,4: + 0: 65535 + -5,5: + 0: 65535 + -5,6: + 0: 65535 + -5,7: + 0: 65535 + 0,4: + 0: 53247 + 1: 12288 + 0,5: + 1: 51 + 0: 65484 + 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,-6: + 0: 65535 + -4,-5: + 0: 52479 + 1: 13056 + -3,-6: + 0: 65535 + -3,-5: + 0: 65535 + -2,-6: + 0: 65535 + -2,-5: + 0: 65535 + -1,-6: + 0: 65535 + -1,-5: + 0: 65535 + 0,-6: + 0: 65535 + 0,-5: + 0: 65535 + 1,-6: + 0: 65535 + 1,-5: + 0: 65535 + 1,-8: + 0: 65535 + 1,-7: + 0: 65535 + 2,-8: + 0: 65535 + 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,4: + 0: 65535 + -4,5: + 0: 65535 + -4,6: + 0: 65535 + -4,7: + 0: 65535 + -3,4: + 0: 65535 + -3,5: + 0: 65535 + -3,6: + 0: 65535 + -3,7: + 0: 65535 + -2,4: + 0: 65535 + -2,5: + 0: 65535 + -2,6: + 0: 65535 + -2,7: + 0: 65535 + -1,4: + 0: 16383 + 1: 49152 + -1,5: + 0: 65331 + 1: 204 + -1,6: + 0: 65535 + -1,7: + 0: 65535 + -10,0: + 0: 65535 + -10,1: + 0: 65535 + -9,0: + 0: 65535 + -9,1: + 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: 65535 + 7,7: + 0: 65535 + 8,4: + 0: 65535 + 8,5: + 0: 65535 + 8,6: + 0: 65535 + 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 + 12,4: + 0: 65535 + 12,5: + 0: 65535 + 8,0: + 0: 65535 + 8,1: + 0: 65535 + 8,2: + 0: 65535 + 8,3: + 0: 65535 + 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 + 12,0: + 0: 65535 + 12,1: + 0: 65535 + 12,2: + 0: 65535 + 12,3: + 0: 65535 + 13,0: + 0: 65535 + 13,1: + 0: 65535 + 14,0: + 0: 65535 + 14,1: + 0: 65535 + 15,0: + 0: 65535 + 15,1: + 0: 65535 + 15,2: + 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 + 12,-4: + 0: 65535 + 12,-3: + 0: 65535 + 12,-2: + 0: 65535 + 12,-1: + 0: 65535 + 15,-1: + 0: 65535 + 8,-6: + 0: 65535 + 8,-5: + 0: 65535 + 9,-6: + 0: 65535 + 9,-5: + 0: 65535 + 10,-6: + 0: 65535 + 10,-5: + 0: 65535 + 11,-5: + 0: 65535 + 4,-8: + 0: 65535 + 4,-7: + 0: 65535 + 4,-6: + 0: 65535 + 4,-5: + 0: 65535 + 5,-6: + 0: 65535 + 5,-5: + 0: 65535 + 6,-6: + 0: 65535 + 6,-5: + 0: 65535 + 7,-6: + 0: 65535 + 7,-5: + 0: 65535 + 16,0: + 0: 65535 + 16,1: + 0: 65535 + 16,2: + 0: 65535 + 17,0: + 0: 65535 + 17,1: + 0: 65535 + 17,2: + 0: 65535 + 18,0: + 0: 65535 + 18,1: + 0: 65535 + 19,0: + 0: 65535 + 19,1: + 0: 65535 + 20,0: + 0: 65535 + 20,1: + 0: 65535 + 1,8: + 0: 65535 + 1,9: + 0: 65535 + 1,10: + 0: 65535 + 2,8: + 0: 65535 + 2,9: + 0: 65535 + 2,10: + 0: 65535 + 3,8: + 0: 65535 + 3,9: + 0: 65535 + 3,10: + 0: 65535 + 1,-9: + 0: 65535 + 2,-9: + 0: 65535 + 3,-9: + 0: 65535 + 4,-9: + 0: 65535 + 4,8: + 0: 65535 + 4,9: + 0: 65535 + 4,10: + 0: 65535 + 16,-1: + 0: 65535 + 17,-1: + 0: 65535 + -8,-8: + 0: 65535 + -8,-7: + 0: 65535 + -8,-5: + 0: 65535 + -8,-6: + 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 + -5,-8: + 0: 65535 + -5,-7: + 0: 65535 + -8,6: + 0: 65535 + -8,7: + 0: 65535 + -7,6: + 0: 65535 + -7,7: + 0: 65535 + -6,7: + 0: 65535 + -4,-8: + 0: 65535 + -4,-7: + 0: 65535 + -3,-8: + 0: 65535 + -3,-7: + 0: 65535 + -2,-8: + 0: 65535 + -2,-7: + 0: 65535 + -1,-8: + 0: 65535 + -1,-7: + 0: 65535 + 0,-8: + 0: 65535 + 0,-7: + 0: 65535 + -12,3: + 0: 65535 + -11,3: + 0: 65535 + 11,7: + 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,4: + 0: 65535 + 14,5: + 0: 65535 + 14,6: + 0: 65535 + 14,7: + 0: 14335 + 15,4: + 0: 65535 + 15,5: + 0: 65535 + 15,6: + 0: 65535 + 15,7: + 0: 3839 + 13,2: + 0: 65535 + 13,3: + 0: 65535 + 14,2: + 0: 65535 + 14,3: + 0: 65535 + 15,3: + 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: 65535 + 15,-3: + 0: 65535 + 15,-2: + 0: 65535 + 8,-8: + 0: 65535 + 8,-7: + 0: 65535 + 9,-8: + 0: 65535 + 9,-7: + 0: 65535 + 10,-8: + 0: 65535 + 10,-7: + 0: 65535 + 11,-8: + 0: 65501 + 11,-7: + 0: 65535 + 11,-6: + 0: 65535 + 5,-8: + 0: 65535 + 5,-7: + 0: 65535 + 6,-8: + 0: 65535 + 6,-7: + 0: 65535 + 7,-8: + 0: 65535 + 7,-7: + 0: 65535 + 16,3: + 0: 65535 + 17,3: + 0: 65535 + 18,2: + 0: 65535 + 18,3: + 0: 65535 + 19,3: + 0: 65535 + 19,2: + 0: 65535 + 20,2: + 0: 65535 + 21,0: + 0: 65535 + 21,1: + 0: 65535 + 21,2: + 0: 65535 + 22,0: + 0: 65535 + 22,1: + 0: 65535 + 22,2: + 0: 65535 + 22,3: + 0: 65535 + 23,0: + 0: 65535 + 23,1: + 0: 65535 + 23,2: + 0: 65535 + 23,3: + 0: 65535 + 0,8: + 0: 65535 + 0,9: + 0: 65535 + 1,11: + 0: 65535 + 2,11: + 0: 65535 + 3,11: + 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 + 2,-12: + 0: 65535 + 2,-11: + 0: 65535 + 2,-10: + 0: 65535 + 3,-12: + 0: 65535 + 3,-11: + 0: 65535 + 3,-10: + 0: 65535 + 8,-12: + 0: 65535 + 8,-11: + 0: 65535 + 8,-10: + 0: 65535 + 8,-9: + 0: 65535 + 9,-12: + 0: 65523 + 9,-11: + 0: 65535 + 9,-10: + 0: 65535 + 9,-9: + 0: 65535 + 10,-11: + 0: 63347 + 10,-10: + 0: 65535 + 10,-9: + 0: 62263 + 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,11: + 0: 65535 + 7,8: + 0: 65535 + 7,9: + 0: 65535 + 16,-4: + 0: 65535 + 16,-3: + 0: 65535 + 16,-2: + 0: 65535 + 17,-4: + 0: 65535 + 17,-3: + 0: 65535 + 17,-2: + 0: 65535 + 18,-4: + 0: 65535 + 18,-3: + 0: 65535 + 18,-2: + 0: 65535 + 18,-1: + 0: 65535 + 19,-4: + 0: 65535 + 19,-3: + 0: 65535 + 19,-2: + 0: 65535 + 19,-1: + 0: 65535 + 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: 65535 + 18,5: + 0: 65535 + 18,6: + 0: 65535 + 18,7: + 0: 65535 + 19,4: + 0: 65535 + 19,5: + 0: 65535 + 19,6: + 0: 65535 + 12,-8: + 0: 65535 + 12,-7: + 0: 65535 + 12,-6: + 0: 65535 + 12,-5: + 0: 65535 + 13,-7: + 0: 65535 + 13,-6: + 0: 65535 + 13,-5: + 0: 65535 + 14,-6: + 0: 65535 + 14,-5: + 0: 65535 + 15,-6: + 0: 65535 + 15,-5: + 0: 65535 + 16,-6: + 0: 65399 + 16,-5: + 0: 65535 + 17,-6: + 0: 65280 + 17,-5: + 0: 65535 + 18,-6: + 0: 65484 + 18,-5: + 0: 65535 + 19,-5: + 0: 65535 + 8,-13: + 0: 65480 + 4,-13: + 0: 65535 + 5,-13: + 0: 65535 + 6,-13: + 0: 65535 + 7,-13: + 0: 65529 + 0,-13: + 0: 65535 + 1,-13: + 0: 65535 + 2,-13: + 0: 65535 + 3,-13: + 0: 65535 + -3,-13: + 0: 65522 + -2,-13: + 0: 65522 + -1,-13: + 0: 65520 + -4,-11: + 0: 65535 + -4,-10: + 0: 65535 + -4,-9: + 0: 65535 + -4,-12: + 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 + -8,-9: + 0: 65532 + -8,-10: + 0: 52428 + -7,-10: + 0: 65520 + -7,-9: + 0: 65535 + -6,-10: + 0: 30582 + -6,-9: + 0: 65527 + -5,-9: + 0: 65532 + -5,-11: + 0: 52428 + -5,-10: + 0: 52428 + 4,-12: + 0: 65535 + 4,-11: + 0: 65535 + 4,-10: + 0: 65535 + 5,-12: + 0: 65535 + 5,-11: + 0: 65535 + 5,-10: + 0: 65535 + 5,-9: + 0: 65535 + 6,-12: + 0: 65535 + 6,-11: + 0: 65535 + 6,-10: + 0: 65535 + 6,-9: + 0: 65535 + 7,-12: + 0: 65535 + 7,-11: + 0: 65535 + 7,-10: + 0: 65535 + 7,-9: + 0: 65535 + 20,-1: + 0: 65535 + 21,-1: + 0: 65535 + 22,-2: + 0: 65535 + 22,-1: + 0: 65535 + 23,-2: + 0: 65535 + 23,-1: + 0: 65535 + 24,0: + 0: 65535 + 24,1: + 0: 65535 + 24,2: + 0: 65535 + 24,3: + 0: 65535 + 25,0: + 0: 65535 + 25,1: + 0: 65535 + 25,2: + 0: 65535 + 24,-2: + 0: 65535 + 24,-1: + 0: 65535 + 25,-1: + 0: 65535 + 8,8: + 0: 65535 + 8,9: + 0: 65535 + 8,10: + 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: 30515 + 10,11: + 0: 30583 + 11,8: + 0: 65535 + 11,9: + 0: 56799 + 8,13: + 0: 65535 + 8,12: + 0: 65535 + 9,12: + 0: 65535 + 9,13: + 0: 63351 + 10,12: + 0: 29495 + -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 + -2,8: + 0: 65535 + -2,9: + 0: 65535 + -1,8: + 0: 65535 + -1,9: + 0: 65535 + -8,8: + 0: 65535 + -8,9: + 0: 65535 + -8,10: + 0: 36607 + -7,8: + 0: 65535 + -7,9: + 0: 65535 + -7,10: + 0: 65535 + -6,8: + 0: 65535 + -6,9: + 0: 65535 + -6,10: + 0: 65535 + -5,8: + 0: 65535 + -5,9: + 0: 65535 + -5,10: + 0: 61439 + -5,11: + 0: 61166 + -5,12: + 0: 61166 + -4,12: + 0: 65535 + -4,13: + 0: 65535 + -3,12: + 0: 65535 + -3,13: + 0: 65535 + -2,13: + 0: 65535 + -1,13: + 0: 65535 + 0,13: + 0: 65535 + 1,13: + 0: 65535 + 1,12: + 0: 65535 + 2,12: + 0: 65535 + 2,13: + 0: 65535 + 3,12: + 0: 65535 + 3,13: + 0: 65535 + 4,12: + 0: 65535 + 4,13: + 0: 65535 + 5,12: + 0: 65535 + 5,13: + 0: 65535 + 6,12: + 0: 65535 + 6,13: + 0: 65535 + 7,13: + 0: 65535 + 12,8: + 0: 65535 + 12,9: + 0: 65535 + 13,8: + 0: 65535 + 13,9: + 0: 65535 + 14,8: + 0: 65297 + -12,-4: + 0: 65535 + -12,-3: + 0: 65535 + -12,-2: + 0: 65535 + -11,-4: + 0: 65535 + -11,-3: + 0: 65535 + -11,-2: + 0: 65535 + -10,-4: + 0: 65535 + -10,-3: + 0: 65535 + -10,-2: + 0: 65535 + -9,-4: + 0: 65535 + -9,-3: + 0: 65535 + -9,-2: + 0: 65535 + -9,-1: + 0: 65535 + -16,-2: + 0: 65535 + -15,-2: + 0: 65535 + -15,-4: + 0: 8191 + -14,-4: + 0: 53247 + -14,-2: + 0: 65535 + -14,-3: + 0: 52428 + -13,-4: + 0: 65535 + -13,-3: + 0: 65535 + -13,-2: + 0: 65535 + -17,-1: + 0: 65532 + -17,-2: + 0: 52360 + -17,0: + 0: 65535 + -17,1: + 0: 65535 + -17,2: + 0: 53247 + -17,3: + 0: 52428 + -16,3: + 0: 65535 + -15,3: + 0: 65535 + -14,3: + 0: 65535 + -13,3: + 0: 65535 + -16,-7: + 0: 65516 + -16,-6: + 0: 65535 + -16,-5: + 0: 65535 + -15,-8: + 0: 65535 + -15,-7: + 0: 65535 + -15,-5: + 0: 65535 + -14,-8: + 0: 65535 + -13,-8: + 0: 65535 + -12,-8: + 0: 65535 + -11,-8: + 0: 65535 + -10,-8: + 0: 65535 + -9,-8: + 0: 65532 + -9,-5: + 0: 65535 + -9,-7: + 0: 65535 + -16,6: + 0: 64655 + -16,7: + 0: 65535 + -15,6: + 0: 65535 + -15,5: + 0: 62656 + 2: 2048 + -14,5: + 0: 63740 + 2: 1792 + -14,4: + 0: 52428 + -13,4: + 0: 65535 + -13,5: + 0: 65535 + -12,4: + 0: 65535 + -12,5: + 0: 65535 + -11,4: + 0: 65535 + -11,5: + 0: 65535 + -10,5: + 0: 65535 + -9,6: + 0: 65535 + -16,8: + 0: 53247 + -15,8: + 0: 65535 + -15,9: + 0: 65535 + -14,9: + 0: 65535 + -13,9: + 0: 65535 + -12,9: + 0: 65535 + -11,9: + 0: 65535 + -10,9: + 0: 65535 + -9,9: + 0: 65535 + -9,8: + 0: 65535 + -9,10: + 0: 252 + -9,-9: + 0: 52369 + -12,-1: + 0: 65535 + -11,-1: + 0: 65535 + -10,-1: + 0: 65535 + -13,-1: + 0: 65535 + -15,7: + 0: 65535 + -14,6: + 0: 65535 + -14,7: + 0: 48127 + 3: 17408 + -13,6: + 0: 65535 + -13,7: + 0: 43775 + 4: 4352 + 2: 17408 + -12,6: + 0: 65535 + -12,7: + 0: 43775 + 5: 4352 + 2: 17408 + -11,6: + 0: 65535 + -11,7: + 0: 61183 + 2: 4352 + -10,6: + 0: 65535 + -10,7: + 0: 65535 + -9,7: + 0: 65535 + -14,8: + 0: 65531 + 3: 4 + -13,8: + 4: 1 + 0: 65530 + 2: 4 + -12,8: + 5: 1 + 0: 65530 + 2: 4 + -11,8: + 2: 1 + 0: 65534 + -10,8: + 0: 65535 + -12,0: + 0: 65535 + -12,1: + 0: 65535 + -12,2: + 0: 65535 + -11,0: + 0: 65535 + -11,1: + 0: 65535 + -11,2: + 0: 65535 + 0,10: + 0: 65535 + 0,11: + 0: 65535 + 6,10: + 0: 65535 + 7,10: + 0: 65535 + 7,11: + 0: 65535 + 8,11: + 0: 65535 + -3,11: + 0: 65535 + -2,10: + 0: 65535 + -2,11: + 0: 65535 + -1,10: + 0: 65535 + -1,11: + 0: 65535 + -2,12: + 0: 13119 + -1,12: + 0: 61167 + 0,12: + 0: 65535 + 7,12: + 0: 65535 + -16,-1: + 0: 65535 + -15,-1: + 0: 65535 + -14,-1: + 0: 65535 + -16,0: + 0: 65535 + -16,1: + 0: 65535 + -16,2: + 0: 65535 + -15,0: + 0: 65535 + -15,1: + 0: 65535 + -15,2: + 0: 65535 + -14,0: + 0: 65535 + -14,1: + 0: 65535 + -14,2: + 0: 65535 + -13,0: + 0: 65535 + -13,1: + 0: 65535 + -13,2: + 0: 65535 + -15,-6: + 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 + -12,-7: + 0: 65535 + -12,-6: + 0: 65535 + -12,-5: + 0: 65535 + -11,-7: + 0: 65535 + -11,-6: + 0: 65535 + -11,-5: + 0: 65535 + -10,-7: + 0: 65535 + -10,-6: + 0: 65535 + -10,-5: + 0: 65535 + -9,-6: + 0: 65535 + -12,10: + 0: 61439 + -12,11: + 0: 17476 + -12,-12: + 0: 61426 + -12,-11: + 0: 65535 + -12,-10: + 0: 65535 + -12,-9: + 0: 65535 + -12,12: + 0: 17909 + -12,13: + 0: 17909 + -12,14: + 0: 17909 + -12,15: + 0: 17909 + -12,-13: + 0: 44962 + 20,-2: + 0: 65535 + 21,-2: + 0: 65535 + 20,3: + 0: 65535 + 21,3: + 0: 65535 + 19,7: + 0: 65535 + -11,-10: + 0: 65535 + -11,-9: + 0: 65535 + -10,-10: + 0: 48063 + -10,-9: + 0: 65535 + 20,4: + 0: 65535 + 20,5: + 0: 65535 + 20,6: + 0: 65535 + 20,7: + 0: 65535 + 21,4: + 0: 65535 + 21,5: + 0: 65535 + 21,6: + 0: 65535 + 21,7: + 0: 8191 + 22,4: + 0: 65535 + 22,5: + 0: 65535 + 22,6: + 0: 32767 + 22,7: + 0: 36727 + 23,4: + 0: 65535 + 23,5: + 0: 65535 + 23,6: + 0: 283 + 19,-6: + 0: 65331 + 20,-4: + 0: 65535 + 20,-3: + 0: 65535 + 21,-4: + 0: 65535 + 21,-3: + 0: 65535 + 22,-4: + 0: 65535 + 22,-3: + 0: 65535 + 23,-4: + 0: 65535 + 23,-3: + 0: 65535 + 25,3: + 0: 65535 + 26,0: + 0: 65535 + 26,1: + 0: 65535 + 26,2: + 0: 65535 + 26,3: + 0: 65535 + 27,0: + 0: 65535 + 27,1: + 0: 65535 + 27,2: + 0: 65535 + 27,3: + 0: 63359 + 20,-6: + 0: 65280 + 20,-5: + 0: 65535 + 21,-6: + 0: 65518 + 21,-5: + 0: 65535 + 22,-6: + 0: 65433 + 22,-5: + 0: 65535 + 23,-6: + 0: 8072 + 23,-5: + 0: 61713 + 23,7: + 0: 36608 + 24,4: + 0: 32767 + 24,5: + 0: 62259 + 24,7: + 0: 36608 + 25,4: + 0: 2047 + 25,5: + 0: 61440 + 25,7: + 0: 36744 + 26,5: + 0: 61440 + 26,7: + 0: 36863 + 27,5: + 0: 63266 + 27,7: + 0: 36863 + 24,-4: + 0: 4593 + 24,-3: + 0: 65523 + 25,-4: + 0: 240 + 25,-3: + 0: 65520 + 25,-2: + 0: 65535 + 26,-4: + 0: 240 + 26,-3: + 0: 65296 + 26,-2: + 0: 65535 + 26,-1: + 0: 65535 + 27,-4: + 0: 240 + 27,-3: + 0: 63232 + 27,-2: + 0: 63345 + 27,-1: + 0: 65535 + 28,-4: + 0: 240 + 28,-3: + 0: 61440 + 28,-1: + 0: 65535 + 29,-4: + 0: 240 + 29,-3: + 0: 61440 + 30,-4: + 0: 240 + 30,-3: + 0: 61440 + 31,-4: + 0: 240 + 31,-3: + 0: 61440 + 28,0: + 0: 65535 + 28,1: + 0: 65535 + 28,2: + 0: 65535 + 28,3: + 0: 61440 + 29,0: + 0: 39327 + 29,1: + 0: 65433 + 29,3: + 0: 61440 + 30,0: + 0: 65535 + 30,1: + 0: 65535 + 30,3: + 0: 61727 + 31,0: + 0: 30515 + 1: 35020 + 31,1: + 0: 13175 + 1: 52360 + 31,3: + 0: 61455 + 28,5: + 0: 61440 + 28,7: + 0: 36679 + 29,5: + 0: 61440 + 29,7: + 0: 36608 + 30,5: + 0: 61440 + 30,7: + 0: 36608 + 31,5: + 0: 61440 + 31,7: + 0: 36608 + 32,5: + 0: 63044 + 32,7: + 0: 1860 + 32,4: + 0: 17476 + 32,6: + 0: 50246 + 32,0: + 1: 30583 + 0: 34952 + 32,1: + 1: 30583 + 0: 34952 + 32,3: + 0: 62543 + 32,2: + 0: 20431 + 32,-4: + 0: 20222 + 32,-3: + 0: 63044 + 32,-2: + 0: 62534 + 32,-1: + 0: 64756 + 32,-6: + 0: 18176 + 32,-5: + 0: 17484 + 24,-6: + 0: 3976 + 25,-6: + 0: 3976 + 26,-6: + 0: 3976 + 27,-6: + 0: 3976 + 28,-6: + 0: 3976 + 29,-6: + 0: 3976 + 30,-6: + 0: 3976 + 31,-6: + 0: 3976 + -18,7: + 0: 36092 + -17,7: + 0: 65535 + -17,6: + 0: 32783 + -18,8: + 0: 3324 + -17,8: + 0: 4095 + -18,-1: + 0: 65520 + -18,0: + 0: 65535 + -18,1: + 0: 65535 + -18,2: + 0: 4095 + -19,-7: + 0: 32768 + -19,-6: + 0: 35064 + -18,-7: + 0: 64716 + -18,-6: + 0: 65535 + -18,-8: + 0: 61166 + -18,-5: + 0: 17484 + -17,-8: + 0: 4383 + -17,-7: + 0: 65280 + -17,-6: + 0: 65535 + -17,-5: + 0: 15 + 4,-14: + 0: 65280 + 5,-14: + 0: 4352 + 6,-14: + 0: 65280 + 7,-14: + 0: 7936 + 0,-14: + 0: 28672 + 1,-14: + 0: 32768 + 2,-14: + 0: 12288 + 26,4: + 0: 127 + 30,-2: + 0: 61715 + 30,-1: + 0: 4593 + 31,-2: + 0: 61440 + 31,-1: + 0: 58096 + 30,2: + 0: 7953 + 31,2: + 0: 3886 + 33,2: + 0: 20292 + 33,3: + 0: 4367 + 33,0: + 0: 17479 + 33,1: + 0: 29764 + 34,0: + 0: 4369 + 34,1: + 0: 4369 + 34,2: + 0: 4369 + 34,3: + 0: 1 + 33,-2: + 0: 61442 + 33,-1: + 0: 17652 + 34,-2: + 0: 4096 + 34,-1: + 0: 4369 + 15,-7: + 0: 65535 + 16,-7: + 0: 30583 + 18,-7: + 0: 52224 + 19,-7: + 0: 13056 + 8,14: + 0: 119 + -3,14: + 0: 238 + -2,14: + 0: 51 + -1,14: + 0: 3310 + 0,14: + 0: 4095 + 1,14: + 0: 17 + 2,14: + 0: 3276 + 3,14: + 0: 1911 + 4,14: + 0: 136 + 5,14: + 0: 4095 + 6,14: + 0: 887 + 7,14: + 0: 204 + -13,10: + 0: 140 + -11,10: + 0: 65535 + -10,10: + 0: 65535 + -11,-12: + 0: 65532 + -11,-11: + 0: 65535 + -10,-12: + 0: 65528 + -10,-11: + 0: 65535 + -11,12: + 0: 4095 + -11,13: + 0: 4095 + -11,14: + 0: 4095 + -11,15: + 0: 4095 + -10,12: + 0: 35771 + -10,13: + 0: 35771 + -10,14: + 0: 35771 + -10,15: + 0: 35771 + -12,-14: + 0: 44962 + -12,-15: + 0: 8207 + -11,-14: + 0: 65520 + -11,-13: + 0: 65534 + -10,-14: + 0: 39320 + -10,-13: + 0: 39321 + 20,8: + 0: 60075 + 17,8: + 0: 17518 + 18,8: + 0: 15 + 19,8: + 0: 15 + -14,-12: + 0: 56785 + -14,-11: + 0: 56793 + -13,-12: + 0: 65520 + -13,-11: + 0: 65535 + -13,-9: + 0: 51404 + -14,-14: + 0: 56785 + -14,-13: + 0: 56785 + -13,-14: + 0: 65520 + -13,-13: + 0: 65520 + -14,12: + 0: 10922 + -14,13: + 0: 10922 + -14,14: + 0: 10922 + -14,15: + 0: 10922 + -13,12: + 0: 4095 + -13,13: + 0: 4095 + -13,14: + 0: 4095 + -13,15: + 0: 4095 + -12,16: + 0: 61444 + -8,11: + 0: 63624 + -7,11: + 0: 65535 + -6,11: + 0: 65535 + -7,12: + 0: 12575 + -6,12: + 0: 15 + 11,-9: + 0: 53248 + 13,-8: + 0: 65535 + 14,-8: + 0: 65535 + 14,-7: + 0: 65535 + 15,-8: + 0: 65535 + 16,-8: + 0: 30719 + 11,10: + 0: 3276 + 12,10: + 0: 4095 + 13,10: + 0: 4095 + 14,9: + 0: 65535 + 14,10: + 0: 65535 + 14,11: + 0: 32783 + 15,8: + 0: 4352 + 15,9: + 0: 4369 + 15,10: + 0: 37137 + 15,11: + 0: 5983 + 12,-9: + 0: 61440 + 13,-9: + 0: 38912 + 14,-9: + 0: 30464 + 15,-9: + 0: 52224 + 16,-9: + 0: 65280 + 27,4: + 0: 8823 + 29,-2: + 0: 4379 + 29,-1: + 0: 36767 + -16,-4: + 0: 65535 + 10,-12: + 0: 13175 + 17,-8: + 0: 241 + 18,-8: + 0: 241 + 19,-8: + 0: 241 + 8,-14: + 0: 36608 + 9,-14: + 0: 3840 + 9,-13: + 0: 4368 + 10,-14: + 0: 28416 + 10,-13: + 0: 8750 + 11,-14: + 0: 20224 + 11,-13: + 0: 15 + -4,-14: + 0: 61440 + -3,-14: + 0: 28672 + -8,-12: + 0: 34952 + -8,-11: + 0: 34952 + -6,-12: + 0: 8738 + -6,-11: + 0: 8738 + -5,-12: + 0: 34952 + 20,-8: + 0: 241 + 21,-8: + 0: 65535 + 22,-8: + 0: 13299 + 22,-7: + 0: 62259 + 23,-8: + 0: 113 + 23,-7: + 0: 61440 + 9,14: + 0: 12 + 10,13: + 0: 61998 + 11,13: + 0: 64719 + -8,12: + 0: 35946 + -7,13: + 0: 2246 + -6,13: + 0: 3840 + -5,13: + 0: 61438 + -16,-3: + 0: 65535 + -15,-3: + 0: 4369 + -16,-8: + 0: 52463 + -16,4: + 0: 3 + -16,9: + 0: 64648 + -16,10: + 0: 36079 + -15,10: + 0: 4097 + -15,11: + 0: 35939 + -14,10: + 0: 8743 + -14,11: + 0: 12834 + -10,11: + 0: 34956 + -9,11: + 0: 61696 + -9,-10: + 0: 13107 + -9,12: + 0: 1 + -12,-16: + 0: 12032 + -11,-16: + 0: 3840 + -11,-15: + 0: 15 + -10,-16: + 0: 12032 + -10,-15: + 0: 35023 + -9,-14: + 0: 63232 + -9,-13: + 0: 7 + 24,6: + 0: 3 + 28,-2: + 0: 8 + 33,4: + 0: 4369 + 33,5: + 0: 4369 + 33,6: + 0: 4369 + 33,7: + 0: 1 + 33,-4: + 0: 9011 + 33,-3: + 0: 12834 + 32,-7: + 0: 61440 + 33,-7: + 0: 12288 + 33,-5: + 0: 8739 + 33,-6: + 0: 8706 + 24,-7: + 0: 61440 + 25,-7: + 0: 65252 + 26,-7: + 0: 61713 + 27,-7: + 0: 61440 + 28,-7: + 0: 61440 + 29,-7: + 0: 61440 + 30,-7: + 0: 61440 + 31,-7: + 0: 61440 + -19,5: + 0: 19456 + -19,6: + 0: 17484 + -19,7: + 0: 19660 + -18,6: + 0: 15 + -17,4: + 0: 12 + -19,8: + 0: 19660 + -19,9: + 0: 52292 + -19,10: + 0: 3148 + -18,9: + 0: 61440 + -17,9: + 0: 61440 + 20,9: + 0: 54 + 21,8: + 0: 372 + 22,8: + 0: 234 + 23,8: + 0: 248 + 16,10: + 0: 4972 + 16,9: + 0: 32768 + 17,9: + 0: 5102 + 18,9: + 0: 240 + 19,9: + 0: 240 + -14,-10: + 0: 6553 + -14,-9: + 0: 29457 + -14,-16: + 0: 20224 + -14,-15: + 0: 4383 + -13,-16: + 0: 3840 + -13,-15: + 0: 15 + -12,17: + 0: 240 + -11,16: + 0: 61440 + -11,17: + 0: 240 + -10,16: + 0: 64648 + -10,17: + 0: 242 + 17,-9: + 0: 61440 + 18,-9: + 0: 61440 + 19,-9: + 0: 61440 + 24,8: + 0: 248 + 25,8: + 0: 248 + 26,8: + 0: 248 + 27,8: + 0: 248 + 28,8: + 0: 248 + 29,8: + 0: 248 + 30,8: + 0: 248 + 31,8: + 0: 248 + 32,8: + 0: 240 + 33,8: + 0: 17 + 12,13: + 0: 61455 + 13,13: + 0: 4975 + 13,12: + 0: 32768 + 14,12: + 0: 4972 + -14,16: + 0: 58914 + -14,17: + 0: 232 + -13,16: + 0: 61440 + -13,17: + 0: 240 + -8,-14: + 0: 61440 + -8,-13: + 0: 34956 + -7,-14: + 0: 61440 + -7,-13: + 0: 1 + -6,-14: + 0: 61440 + -6,-13: + 0: 8743 + -5,-14: + 0: 61440 + 20,-9: + 0: 61440 + 21,-9: + 0: 61440 + 22,-9: + 0: 61986 + 23,-9: + 0: 28672 + 12,-14: + 0: 20224 + 12,-13: + 0: 15 + 13,-14: + 0: 20224 + 13,-13: + 0: 15 + 14,-14: + 0: 20224 + 14,-13: + 0: 15 + 15,-14: + 0: 20452 + 15,-13: + 0: 15 + 16,-14: + 0: 20452 + 16,-13: + 0: 15 + 17,-14: + 0: 256 + 17,-13: + 0: 1 + -20,-6: + 0: 240 + -21,-6: + 0: 497 + -9,-11: + 0: 13105 + -13,-10: + 0: 53247 + 21,-7: + 0: 65535 + -20,-4: + 0: 4096 + -20,-3: + 0: 61299 + -20,-1: + 0: 65529 + -20,-2: + 0: 34956 + -19,-3: + 0: 4096 + -19,-2: + 0: 4369 + -19,-1: + 0: 65521 + -20,0: + 0: 65535 + -20,1: + 0: 65534 + -20,2: + 0: 65535 + -20,3: + 0: 34953 + -19,0: + 0: 65535 + -19,1: + 0: 65535 + -19,2: + 0: 8191 + -19,3: + 0: 4369 + 25,-8: + 0: 50244 + 26,-8: + 0: 4369 + -20,4: + 0: 32748 + -20,5: + 0: 19 + -19,4: + 0: 17 + 20,-12: + 0: 52416 + 20,-11: + 0: 52416 + 20,-10: + 0: 52416 + 21,-12: + 0: 65520 + 21,-11: + 0: 65520 + 21,-10: + 0: 65520 + 22,-12: + 0: 44962 + 22,-11: + 0: 44962 + 22,-10: + 0: 44962 + 23,-12: + 0: 65520 + 23,-11: + 0: 65520 + 23,-10: + 0: 65520 + 15,-15: + 0: 58592 + 16,-15: + 0: 62704 + 17,-15: + 0: 62704 + 18,-15: + 0: 62704 + 19,-15: + 0: 62704 + -24,0: + 0: 30591 + -24,1: + 0: 30591 + -24,2: + 0: 61727 + -24,3: + 0: 2303 + -23,0: + 0: 37151 + -23,1: + 0: 4511 + -23,2: + 0: 65311 + -23,3: + 0: 5119 + -22,0: + 0: 12575 + -22,1: + 0: 4415 + -22,2: + 0: 65311 + -22,3: + 0: 2303 + -21,0: + 0: 37151 + -21,1: + 0: 4505 + -21,2: + 0: 61727 + -21,3: + 0: 5119 + -24,-4: + 0: 61440 + -24,-3: + 0: 143 + -24,-2: + 0: 63488 + -24,-1: + 0: 4607 + -23,-4: + 0: 61440 + -23,-3: + 0: 4415 + -23,-2: + 0: 62225 + -23,-1: + 0: 8191 + -22,-4: + 0: 61440 + -22,-3: + 0: 143 + -22,-2: + 0: 63488 + -22,-1: + 0: 8191 + -21,-4: + 0: 61440 + -21,-3: + 0: 4543 + -21,-2: + 0: 62225 + -21,-1: + 0: 4607 + -26,-3: + 0: 51200 + -26,-2: + 0: 52428 + -26,-1: + 0: 52428 + -25,-3: + 0: 14334 + -25,-2: + 0: 32769 + -25,-1: + 0: 61164 + -25,-4: + 0: 49152 + -26,0: + 0: 52428 + -26,1: + 0: 52428 + -26,2: + 0: 52428 + -26,3: + 0: 52428 + -25,0: + 0: 61167 + -25,1: + 0: 61167 + -25,2: + 0: 61167 + -25,3: + 0: 140 + -24,5: + 0: 255 + -24,4: + 0: 32768 + -23,4: + 0: 12561 + -23,5: + 0: 255 + -22,5: + 0: 255 + -22,4: + 0: 32768 + -21,4: + 0: 45329 + -21,5: + 0: 255 + -26,4: + 0: 2252 + -25,4: + 0: 63281 + -25,5: + 0: 206 + 20,-15: + 0: 62704 + 20,-13: + 0: 52416 + 21,-15: + 0: 62704 + 21,-13: + 0: 65520 + 22,-15: + 0: 62704 + 22,-13: + 0: 44962 + 22,-14: + 0: 8192 + 23,-15: + 0: 62704 + 23,-13: + 0: 65520 + 24,-12: + 0: 4368 + 24,-11: + 0: 4368 + 24,-10: + 0: 4368 + 25,-12: + 0: 50244 + 25,-11: + 0: 50244 + 25,-10: + 0: 50244 + 25,-9: + 0: 50244 + 26,-12: + 0: 4369 + 26,-11: + 0: 4369 + 26,-10: + 0: 4369 + 26,-9: + 0: 4369 + 24,-15: + 0: 62704 + 24,-13: + 0: 4368 + 25,-15: + 0: 62576 + 25,-14: + 0: 50244 + 25,-13: + 0: 50244 + 26,-15: + 0: 4368 + 26,-14: + 0: 4369 + 26,-13: + 0: 4369 + 25,6: + 0: 34952 + 26,6: + 0: 65535 + 27,6: + 0: 65535 + 28,6: + 0: 30581 + -9,-12: + 0: 4368 + -18,-4: + 0: 17604 + -18,-3: + 0: 12 + -17,-4: + 0: 2296 + -17,-3: + 0: 1 + -18,-9: + 0: 17600 + -17,-9: + 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: + - 0 + - 0 + - 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 + - 6666.982 + - 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: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - id: TheHive + type: BecomesStation + - type: SpreaderGrid + - uid: 8 + components: + - type: MetaData + - type: Transform + - type: Map + - type: PhysicsMap + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - type: GridTree + - type: MovedGrids +- proto: AcousticGuitarInstrument + entities: + - uid: 11213 + components: + - pos: 26.207878,-40.838676 + parent: 1 + type: Transform +- proto: AirAlarm + entities: + - uid: 4 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 1 + type: Transform + - devices: + - 11407 + - 5237 + - 5236 + - 22056 + - 22058 + - 22063 + - 9250 + - 15173 + - 5232 + - 5233 + - 5234 + - 22076 + - 22075 + - 22074 + - 22073 + - 15196 + - 1310 + - 9253 + - 9252 + - 22062 + - 9251 + - 22055 + - 22057 + - 12993 + - 15081 + - 12994 + - 15082 + - 15083 + - 12995 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 16 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + type: Transform + - devices: + - 12585 + - 25393 + - 22062 + - 22082 + - 22046 + - 9252 + - 9253 + - 17468 + - 12609 + - 11095 + - 12617 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 18 + components: + - pos: -13.5,6.5 + parent: 1 + type: Transform + - devices: + - 22080 + - 9303 + - 22176 + - 25395 + - 22174 + - 9302 + - 22179 + - 1560 + - 15839 + - 14228 + - 1871 + - 22067 + - 24217 + - 7032 + - 7033 + - 7034 + - 16866 + - 7562 + - 7555 + - 22076 + - 9110 + - 9109 + - 12585 + - 25396 + - 9527 + - 7042 + - 22168 + - 15171 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-10.5 + parent: 1 + type: Transform + - devices: + - 12585 + - 20796 + - 22156 + - 9303 + - 22176 + - 25395 + - 22174 + - 22195 + - 22055 + - 22194 + - 12606 + - 12577 + - 22201 + - 12578 + - 23724 + - 12607 + - 12591 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 1163 + components: + - pos: 18.5,13.5 + parent: 1 + type: Transform + - devices: + - 22114 + - 7027 + - 7026 + - 7025 + - 14222 + - 5205 + - 5217 + - 22076 + - 5230 + - 5229 + - 22067 + - 7036 + - 7038 + - 7037 + - 22153 + - 22150 + - 22151 + - 15300 + - 12832 + - 15325 + - 12831 + - 24187 + - 1295 + - 11341 + - 24209 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 1234 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,24.5 + parent: 1 + type: Transform + - devices: + - 15255 + - 24202 + - 11341 + - 24200 + - 24201 + - 19613 + - 20113 + - 20111 + - 11423 + - 14520 + - 20110 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 2692 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-12.5 + parent: 1 + type: Transform + - devices: + - 15173 + - 22109 + - 22056 + - 22107 + - 22104 + - 9258 + - 23614 + - 13683 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 11406 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-36.5 + parent: 1 + type: Transform + - devices: + - 11407 + - 14388 + - 14390 + - 14391 + - 14393 + - 21779 + - 14392 + - 9237 + - 7043 + - 9239 + - 9241 + - 9240 + - 17011 + - 17284 + - 15281 + - 15282 + - 16807 + - 14414 + - 16111 + - 16112 + - 17213 + - 17216 + - 15811 + - 15810 + - 15378 + - 15350 + - 18198 + - 17009 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 12573 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-15.5 + parent: 1 + type: Transform + - devices: + - 22046 + - 9251 + - 22055 + - 22083 + - 1310 + - 22082 + - 15076 + - 12553 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 12576 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 1 + type: Transform + - devices: + - 22080 + - 22195 + - 22055 + - 22193 + - 22156 + - 9302 + - 22179 + - 9301 + - 14287 + - 17486 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 12580 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,6.5 + parent: 1 + type: Transform + - devices: + - 22214 + - 22215 + - 22213 + - 22212 + - 22217 + - 22216 + - 22231 + - 22232 + - 25298 + - 22218 + - 22206 + - 22209 + - 22207 + - 22219 + - 25542 + - 25541 + - 25540 + - 10947 + - 14154 + - 14144 + - 10976 + - 10977 + - 14143 + - 14071 + - 11038 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 14243 + components: + - rot: 1.5707963267948966 rad + pos: 89.5,7.5 + parent: 1 + type: Transform + - devices: + - 22412 + - 22335 + - 22410 + - 9268 + - 9269 + - 22411 + - 22131 + - 9276 + - 9275 + - 12941 + - 14751 + - 8390 + - 6140 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 16934 + components: + - pos: 7.5,-22.5 + parent: 1 + type: Transform + - devices: + - 11411 + - 14388 + - 14390 + - 14391 + - 14393 + - 14389 + - 5236 + - 5237 + - 14394 + - 22046 + - 11439 + - 14346 + - 16938 + - 16940 + - 14370 + - 11441 + - 16937 + - 16939 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22033 + components: + - pos: -0.5,-45.5 + parent: 1 + type: Transform + - devices: + - 22026 + - 22028 + - 22030 + - 22031 + - 9237 + - 7043 + - 9239 + - 9240 + - 9241 + - 22032 + - 11548 + - 14521 + - 11549 + - 14522 + - 11393 + - 11392 + - 14519 + - 11411 + - 14392 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22038 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-42.5 + parent: 1 + type: Transform + - devices: + - 22026 + - 22028 + - 21779 + - 22036 + - 9239 + - 9240 + - 9241 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22078 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-8.5 + parent: 1 + type: Transform + - devices: + - 22056 + - 22079 + - 22046 + - 9250 + - 15173 + - 9254 + - 15128 + - 12972 + - 15084 + - 13098 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22089 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,6.5 + parent: 1 + type: Transform + - devices: + - 22046 + - 22075 + - 22074 + - 22073 + - 15196 + - 14222 + - 22069 + - 22068 + - 5230 + - 5229 + - 22156 + - 9110 + - 9109 + - 12992 + - 15080 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22094 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-12.5 + parent: 1 + type: Transform + - devices: + - 15173 + - 9256 + - 9255 + - 22056 + - 22091 + - 14991 + - 13100 + - 13099 + - 14992 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22096 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-9.5 + parent: 1 + type: Transform + - devices: + - 15173 + - 9257 + - 13065 + - 22098 + - 23737 + - 23738 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22113 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-8.5 + parent: 1 + type: Transform + - devices: + - 23611 + - 22104 + - 15173 + - 22105 + - 22056 + - 22106 + - 13159 + - 15059 + - 15058 + - 13160 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22116 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,7.5 + parent: 1 + type: Transform + - devices: + - 15173 + - 5222 + - 5223 + - 22076 + - 22069 + - 22068 + - 5217 + - 5205 + - 22114 + - 5206 + - 5226 + - 5224 + - 12943 + - 15481 + - 15482 + - 12949 + - 15125 + - 13046 + - 13045 + - 13044 + - 13043 + - 13042 + - 13041 + - 15127 + - 12987 + - 15381 + - 12839 + - 21394 + - 21395 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22117 + components: + - pos: 29.5,-1.5 + parent: 1 + type: Transform + - devices: + - 22109 + - 22105 + - 23611 + - 9258 + - 22095 + - 9257 + - 22092 + - 9256 + - 9255 + - 22063 + - 9254 + - 22046 + - 5232 + - 5233 + - 5234 + - 14222 + - 5223 + - 5222 + - 22114 + - 7020 + - 7019 + - 7018 + - 15124 + - 13047 + - 22119 + - 12988 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22130 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,8.5 + parent: 1 + type: Transform + - devices: + - 15173 + - 7020 + - 7019 + - 7018 + - 22131 + - 1558 + - 1548 + - 15255 + - 22132 + - 22056 + - 22133 + - 22120 + - 9277 + - 22068 + - 7027 + - 7026 + - 7025 + - 14222 + - 5206 + - 5224 + - 5226 + - 15480 + - 13082 + - 15472 + - 12917 + - 12916 + - 15473 + - 24203 + - 24208 + - 11341 + - 24210 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22134 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,12.5 + parent: 1 + type: Transform + - devices: + - 22114 + - 9277 + - 15255 + - 10546 + - 12915 + - 15439 + - 13814 + - 15436 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22157 + components: + - pos: 0.5,13.5 + parent: 1 + type: Transform + - devices: + - 22156 + - 15154 + - 22149 + - 7032 + - 7033 + - 7034 + - 16866 + - 7562 + - 7555 + - 22068 + - 7036 + - 7038 + - 7037 + - 22153 + - 22142 + - 15160 + - 22160 + - 14213 + - 9504 + - 22163 + - 15170 + - 12766 + - 12750 + - 12676 + - 24187 + - 24197 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22182 + components: + - pos: -19.5,6.5 + parent: 1 + type: Transform + - devices: + - 22156 + - 1871 + - 14228 + - 15839 + - 1560 + - 22159 + - 9293 + - 22142 + - 22171 + - 22173 + - 7030 + - 7029 + - 22055 + - 22172 + - 22174 + - 9301 + - 14185 + - 12650 + - 14169 + - 12629 + - 12628 + - 14170 + - 12638 + - 14165 + - 14164 + - 12637 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22187 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,11.5 + parent: 1 + type: Transform + - devices: + - 22160 + - 22189 + - 22179 + - 9293 + - 11136 + - 14210 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22190 + components: + - rot: 3.141592653589793 rad + pos: -23.5,13.5 + parent: 1 + type: Transform + - devices: + - 22067 + - 14213 + - 22142 + - 22192 + - 22159 + - 22189 + - 14195 + - 11119 + - 11135 + - 14196 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22204 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-0.5 + parent: 1 + type: Transform + - devices: + - 22206 + - 9299 + - 9298 + - 9297 + - 9296 + - 22207 + - 22203 + - 22179 + - 7029 + - 7030 + - 11142 + - 13961 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22210 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-3.5 + parent: 1 + type: Transform + - devices: + - 22208 + - 22209 + - 22173 + - 9299 + - 9298 + - 11010 + - 14093 + - 11009 + - 14094 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22235 + components: + - rot: 3.141592653589793 rad + pos: -40.5,8.5 + parent: 1 + type: Transform + - devices: + - 22208 + - 22212 + - 10951 + - 14116 + - 14114 + - 11288 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22237 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,-2.5 + parent: 1 + type: Transform + - devices: + - 22208 + - 22232 + - 14070 + - 10978 + - 13148 + - 15068 + - 14069 + - 10980 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22249 + components: + - rot: 3.141592653589793 rad + pos: -38.5,21.5 + parent: 1 + type: Transform + - devices: + - 22208 + - 22215 + - 22243 + - 22246 + - 22244 + - 22245 + - 10820 + - 10844 + - 10843 + - 10866 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22250 + components: + - pos: 8.5,35.5 + parent: 1 + type: Transform + - devices: + - 22253 + - 22257 + - 22153 + - 7023 + - 7022 + - 22258 + - 22252 + - 22261 + - 22260 + - 9290 + - 9289 + - 22262 + - 9288 + - 22263 + - 9287 + - 22264 + - 9285 + - 9286 + - 15608 + - 13445 + - 15605 + - 13446 + - 15606 + - 13477 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22269 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,42.5 + parent: 1 + type: Transform + - devices: + - 22143 + - 9285 + - 9286 + - 25142 + - 22253 + - 15708 + - 13584 + - 13594 + - 22278 + - 13593 + - 22277 + - 22303 + - 13591 + - 22302 + - 13596 + - 15607 + - 15073 + - 25830 + - 25831 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22304 + components: + - pos: 15.5,51.5 + parent: 1 + type: Transform + - devices: + - 22143 + - 9287 + - 22259 + - 22266 + - 15695 + - 13563 + - 13564 + - 15694 + - 15693 + - 13565 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22306 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,49.5 + parent: 1 + type: Transform + - devices: + - 22143 + - 9288 + - 15713 + - 13447 + - 25719 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22318 + components: + - pos: 0.5,48.5 + parent: 1 + type: Transform + - devices: + - 22143 + - 22260 + - 9290 + - 9289 + - 15557 + - 22308 + - 22309 + - 15720 + - 13478 + - 13499 + - 15571 + - 23621 + - 23623 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22320 + components: + - rot: 3.141592653589793 rad + pos: -8.5,41.5 + parent: 1 + type: Transform + - devices: + - 22261 + - 22309 + - 22308 + - 13471 + - 15557 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22343 + components: + - pos: 56.5,6.5 + parent: 1 + type: Transform + - devices: + - 22334 + - 9276 + - 9275 + - 22337 + - 9267 + - 9266 + - 9265 + - 9264 + - 22325 + - 22323 + - 22114 + - 1548 + - 1558 + - 22324 + - 22322 + - 22338 + - 9273 + - 9272 + - 22342 + - 9274 + - 9270 + - 9271 + - 19147 + - 19160 + - 13413 + - 14615 + - 14645 + - 13401 + - 12918 + - 14752 + - 19151 + - 19159 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22345 + components: + - rot: 3.141592653589793 rad + pos: 68.5,-1.5 + parent: 1 + type: Transform + - devices: + - 22352 + - 9261 + - 9260 + - 9259 + - 9262 + - 22131 + - 9264 + - 9265 + - 9266 + - 9267 + - 13361 + - 14624 + - 22374 + - 9263 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22347 + components: + - rot: 1.5707963267948966 rad + pos: 61.5,-3.5 + parent: 1 + type: Transform + - devices: + - 22353 + - 22351 + - 22350 + - 22349 + - 22337 + - 9262 + - 9261 + - 9260 + - 9259 + - 14654 + - 13366 + - 13362 + - 14647 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22354 + components: + - rot: 3.141592653589793 rad + pos: 67.5,-16.5 + parent: 1 + type: Transform + - devices: + - 22362 + - 22357 + - 22356 + - 22363 + - 22364 + - 22361 + - 22358 + - 22359 + - 22360 + - 22352 + - 22351 + - 22350 + - 22349 + - 13345 + - 14660 + - 13388 + - 14661 + - 14662 + - 13363 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22365 + components: + - pos: 62.5,-14.5 + parent: 1 + type: Transform + - devices: + - 22368 + - 22367 + - 22353 + - 22364 + - 14659 + - 13344 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22376 + components: + - pos: 76.5,-7.5 + parent: 1 + type: Transform + - devices: + - 22362 + - 22373 + - 22372 + - 22371 + - 22370 + - 22353 + - 22360 + - 22359 + - 22358 + - 22374 + - 22375 + - 14696 + - 13317 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22378 + components: + - pos: 75.5,-1.5 + parent: 1 + type: Transform + - devices: + - 22361 + - 22375 + - 22337 + - 9263 + - 22384 + - 13319 + - 22382 + - 13318 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22401 + components: + - rot: 1.5707963267948966 rad + pos: 83.5,-6.5 + parent: 1 + type: Transform + - devices: + - 22362 + - 22397 + - 13279 + - 14690 + - 14692 + - 13278 + - 13277 + - 14693 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22402 + components: + - rot: -1.5707963267948966 rad + pos: 82.5,-10.5 + parent: 1 + type: Transform + - devices: + - 22362 + - 22398 + - 14695 + - 13271 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22405 + components: + - rot: 3.141592653589793 rad + pos: 76.5,-16.5 + parent: 1 + type: Transform + - devices: + - 22353 + - 22356 + - 22357 + - 22368 + - 22407 + - 22400 + - 22397 + - 22399 + - 22398 + - 22361 + - 22373 + - 22372 + - 22371 + - 22370 + - 14697 + - 13337 + - 13308 + - 14694 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22423 + components: + - rot: 3.141592653589793 rad + pos: 107.5,2.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 22426 + components: + - pos: 102.5,12.5 + parent: 1 + type: Transform + - devices: + - 22410 + - 22413 + - 22435 + - 22411 + - 22415 + - 14739 + - 13850 + - 8390 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22427 + components: + - rot: -1.5707963267948966 rad + pos: 107.5,0.5 + parent: 1 + type: Transform + - devices: + - 22413 + - 22419 + - 22412 + - 22420 + - 14794 + - 13898 + - 14793 + - 13889 + - 14792 + - 13888 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22436 + components: + - rot: 1.5707963267948966 rad + pos: 62.5,11.5 + parent: 1 + type: Transform + - devices: + - 22131 + - 9273 + - 9272 + - 22342 + - 22340 + - 22339 + - 14832 + - 13632 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22450 + components: + - rot: 1.5707963267948966 rad + pos: 79.5,15.5 + parent: 1 + type: Transform + - devices: + - 22342 + - 22445 + - 22446 + - 22442 + - 22449 + - 13699 + - 14928 + - 14885 + - 13646 + - 14884 + - 13645 + - 14838 + - 13647 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22452 + components: + - rot: 1.5707963267948966 rad + pos: 85.5,20.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 22456 + components: + - rot: 1.5707963267948966 rad + pos: 68.5,18.5 + parent: 1 + type: Transform + - devices: + - 22338 + - 22340 + - 22339 + - 22341 + - 22131 + - 9271 + - 9270 + - 9274 + - 22441 + - 22446 + - 22445 + - 22442 + - 22455 + - 22438 + - 22460 + - 22461 + - 14878 + - 13640 + - 14855 + - 13636 + - 14839 + - 14834 + - 13625 + - 14833 + - 13633 + - 25328 + - 25327 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22458 + components: + - pos: 79.5,30.5 + parent: 1 + type: Transform + - devices: + - 22342 + - 22460 + - 22461 + - 14968 + - 13764 + - 13763 + - 14969 + - 14970 + - 13742 + - 13747 + - 14943 + - 14946 + - 13748 + - 14947 + - 13749 + - 13746 + - 14945 + - 13745 + - 14944 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 24189 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,15.5 + parent: 1 + type: Transform + - devices: + - 22068 + - 1295 + - 24188 + - 1296 + - 24195 + - 22067 + - 24197 + - 22142 + - 14403 + - 24194 + - 24196 + - 19227 + - 19329 + - 19308 + - 19336 + - 19307 + - 19370 + - 822 + - 19337 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 24191 + components: + - pos: 7.5,26.5 + parent: 1 + type: Transform + - devices: + - 22142 + - 14404 + - 24187 + - 24193 + - 24195 + - 1296 + - 22153 + - 1427 + - 1426 + - 1335 + - 822 + - 19337 + - 19235 + - 19369 + - 19231 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 24198 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,25.5 + parent: 1 + type: Transform + - devices: + - 24188 + - 1427 + - 1426 + - 1335 + - 22068 + - 22151 + - 22150 + - 15255 + - 22128 + - 22143 + - 7023 + - 7022 + - 22142 + - 22141 + - 19624 + - 19618 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 24213 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,19.5 + parent: 1 + type: Transform + - devices: + - 24211 + - 24200 + - 24201 + - 22068 + - 24209 + - 22114 + - 24210 + - 24203 + - 24204 + - 24205 + - 15255 + - 24206 + - 19983 + - 2832 + - 19995 + - 20021 + - 19984 + - 20109 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 24214 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,18.5 + parent: 1 + type: Transform + - devices: + - 11341 + - 24204 + - 24205 + - 22114 + - 24208 + - 15255 + - 24207 + - 20025 + - 19973 + - 19931 + - 20207 + - 20140 + - 19980 + - 19966 + - 20138 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 25329 + components: + - rot: 1.5707963267948966 rad + pos: 58.5,20.5 + parent: 1 + type: Transform + - devices: + - 22324 + - 25127 + - 22342 + - 25327 + - 13399 + - 14829 + - 25331 + - 23964 + - 14877 + - 13698 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 25389 + components: + - rot: 1.5707963267948966 rad + pos: -77.5,8.5 + parent: 1 + type: Transform + - devices: + - 22217 + - 25391 + - 25392 + - 25366 + - 25335 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 25543 + components: + - rot: 3.141592653589793 rad + pos: -51.5,-19.5 + parent: 1 + type: Transform + - devices: + - 22208 + - 25541 + - 25540 + - 25552 + - 25538 + - 25298 + - 25539 + - 11049 + - 14041 + - 14047 + - 11047 + - 25553 + - 25554 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 25558 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-26.5 + parent: 1 + type: Transform + - devices: + - 25557 + - 25555 + - 22225 + - 25556 + - 2141 + - 14331 + - 25128 + - 25656 + - 25655 + - 25670 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 25560 + components: + - rot: 1.5707963267948966 rad + pos: -61.5,-26.5 + parent: 1 + type: Transform + - devices: + - 22224 + - 25555 + - 10718 + - 11092 + - 14008 + - 17380 + - 25424 + - 25407 + - 25409 + - 25425 + - 25408 + - 25426 + - 25406 + - 25427 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 25563 + components: + - pos: 94.5,7.5 + parent: 1 + type: Transform + - devices: + - 22334 + - 9268 + - 9269 + - 22413 + - 22417 + - 22414 + - 13842 + - 22429 + - 13841 + - 14750 + - 13840 + - 22430 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 25671 + components: + - pos: -46.5,-34.5 + parent: 1 + type: Transform + - devices: + - 22224 + - 25656 + - 25655 + - 17458 + - 25632 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice +- proto: AirAlarmElectronics + entities: + - uid: 16397 + components: + - rot: 1.5707963267948966 rad + pos: -12.53363,-18.43488 + parent: 1 + type: Transform +- proto: AirCanister + entities: + - uid: 1258 + components: + - pos: 65.5,-24.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 6513 + components: + - pos: -60.5,33.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 9137 + components: + - pos: 49.5,7.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 11606 + components: + - pos: 76.5,-24.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 15733 + components: + - pos: -39.5,-3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 15857 + components: + - pos: -37.5,38.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice +- proto: Airlock + entities: + - uid: 1233 + components: + - pos: -10.5,15.5 + parent: 1 + type: Transform + - uid: 1506 + components: + - pos: -1.5,-39.5 + parent: 1 + type: Transform + - uid: 1850 + components: + - pos: -10.5,-12.5 + parent: 1 + type: Transform + - uid: 2686 + components: + - pos: 40.5,-7.5 + parent: 1 + type: Transform + - uid: 3491 + components: + - pos: 65.5,-17.5 + parent: 1 + type: Transform + - uid: 4377 + components: + - pos: 30.5,5.5 + parent: 1 + type: Transform + - uid: 4378 + components: + - pos: 34.5,5.5 + parent: 1 + type: Transform + - uid: 6307 + components: + - pos: -48.5,12.5 + parent: 1 + type: Transform + - uid: 6308 + components: + - pos: -45.5,12.5 + parent: 1 + type: Transform + - uid: 6919 + components: + - pos: 32.5,21.5 + parent: 1 + type: Transform + - uid: 7086 + components: + - pos: -2.5,-35.5 + parent: 1 + type: Transform + - uid: 7408 + components: + - pos: -4.5,-36.5 + parent: 1 + type: Transform + - uid: 7414 + components: + - pos: 0.5,-35.5 + parent: 1 + type: Transform + - uid: 7415 + components: + - pos: 0.5,-33.5 + parent: 1 + type: Transform + - uid: 11186 + components: + - pos: -15.5,18.5 + parent: 1 + type: Transform + - uid: 11362 + components: + - pos: 0.5,-40.5 + parent: 1 + type: Transform + - uid: 16445 + components: + - pos: 48.5,40.5 + parent: 1 + type: Transform + - uid: 17049 + components: + - pos: 19.5,-9.5 + parent: 1 + type: Transform + - uid: 24216 + components: + - pos: -8.5,11.5 + parent: 1 + type: Transform +- proto: AirlockArmoryGlassLocked + entities: + - uid: 4156 + components: + - pos: 80.5,13.5 + parent: 1 + type: Transform + - uid: 4900 + components: + - pos: 83.5,18.5 + parent: 1 + type: Transform + - uid: 4917 + components: + - pos: 75.5,11.5 + parent: 1 + type: Transform +- proto: AirlockAssembly + entities: + - uid: 16516 + components: + - pos: 55.5,39.5 + parent: 1 + type: Transform +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 2493 + components: + - pos: -51.5,21.5 + parent: 1 + type: Transform +- proto: AirlockBarLocked + entities: + - uid: 2274 + components: + - pos: 37.5,18.5 + parent: 1 + type: Transform + - uid: 2875 + components: + - pos: 37.5,13.5 + parent: 1 + type: Transform + - uid: 7234 + components: + - pos: 35.5,14.5 + parent: 1 + type: Transform +- proto: AirlockBoxerLocked + entities: + - uid: 3913 + components: + - pos: 17.5,17.5 + parent: 1 + type: Transform + - uid: 3917 + components: + - pos: 20.5,20.5 + parent: 1 + type: Transform + - uid: 3918 + components: + - pos: 15.5,18.5 + parent: 1 + type: Transform + - uid: 3919 + components: + - pos: 18.5,21.5 + parent: 1 + type: Transform +- proto: AirlockCaptainLocked + entities: + - uid: 6257 + components: + - pos: 105.5,2.5 + parent: 1 + type: Transform + - uid: 9869 + components: + - pos: 105.5,-0.5 + parent: 1 + type: Transform +- proto: AirlockCargoGlassLocked + entities: + - uid: 6841 + components: + - pos: -45.5,-34.5 + parent: 1 + type: Transform + - uid: 8471 + components: + - pos: -44.5,-34.5 + parent: 1 + type: Transform + - uid: 25122 + components: + - pos: -6.5,-11.5 + parent: 1 + type: Transform + - uid: 25134 + components: + - pos: -10.5,-1.5 + parent: 1 + type: Transform +- proto: AirlockCargoLocked + entities: + - uid: 1829 + components: + - pos: -8.5,-13.5 + parent: 1 + type: Transform +- proto: AirlockChapelLocked + entities: + - uid: 527 + components: + - pos: 12.5,47.5 + parent: 1 + type: Transform + - uid: 4494 + components: + - pos: 16.5,49.5 + parent: 1 + type: Transform +- proto: AirlockChemistryGlassLocked + entities: + - uid: 972 + components: + - pos: 75.5,-13.5 + parent: 1 + type: Transform +- proto: AirlockChiefEngineerGlassLocked + entities: + - uid: 2368 + components: + - pos: -52.5,7.5 + parent: 1 + type: Transform + - uid: 6398 + components: + - pos: -60.5,1.5 + parent: 1 + type: Transform + - uid: 6566 + components: + - pos: -52.5,-2.5 + parent: 1 + type: Transform +- proto: AirlockChiefEngineerLocked + entities: + - uid: 4787 + components: + - pos: 107.5,-5.5 + parent: 1 + type: Transform + - uid: 6552 + components: + - pos: -57.5,-0.5 + parent: 1 + type: Transform +- proto: AirlockChiefMedicalOfficerGlassLocked + entities: + - uid: 5761 + components: + - pos: 80.5,-12.5 + parent: 1 + type: Transform +- proto: AirlockClownLocked + entities: + - uid: 4491 + components: + - pos: 22.5,-37.5 + parent: 1 + type: Transform +- proto: AirlockCommandGlassLocked + entities: + - uid: 780 + components: + - pos: 96.5,9.5 + parent: 1 + type: Transform + - uid: 3605 + components: + - pos: 14.5,-16.5 + parent: 1 + type: Transform + - uid: 9797 + components: + - pos: 112.5,-0.5 + parent: 1 + type: Transform + - links: + - 9796 + - 9795 + type: DeviceLinkSink + - linkedPorts: + 9796: + - DoorStatus: DoorBolt + 9795: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 9798 + components: + - pos: 113.5,-0.5 + parent: 1 + type: Transform + - links: + - 9796 + - 9795 + type: DeviceLinkSink + - linkedPorts: + 9796: + - DoorStatus: DoorBolt + 9795: + - DoorStatus: DoorBolt + type: DeviceLinkSource +- proto: AirlockCommandLocked + entities: + - uid: 6130 + components: + - pos: 102.5,4.5 + parent: 1 + type: Transform + - uid: 6245 + components: + - pos: 104.5,5.5 + parent: 1 + type: Transform + - uid: 9759 + components: + - pos: 126.5,3.5 + parent: 1 + type: Transform + - uid: 9760 + components: + - pos: 126.5,4.5 + parent: 1 + type: Transform +- proto: AirlockDetectiveLocked + entities: + - uid: 2539 + components: + - pos: 60.5,15.5 + parent: 1 + type: Transform + - uid: 12064 + components: + - pos: 62.5,21.5 + parent: 1 + type: Transform +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 2458 + components: + - pos: -49.5,9.5 + parent: 1 + type: Transform + - uid: 2532 + components: + - pos: -49.5,0.5 + parent: 1 + type: Transform + - uid: 2533 + components: + - pos: -52.5,3.5 + parent: 1 + type: Transform + - uid: 4143 + components: + - pos: 54.5,1.5 + parent: 1 + type: Transform + - uid: 5853 + components: + - pos: -52.5,-16.5 + parent: 1 + type: Transform + - uid: 5901 + components: + - pos: -48.5,-16.5 + parent: 1 + type: Transform + - uid: 6306 + components: + - pos: -44.5,10.5 + parent: 1 + type: Transform + - uid: 11939 + components: + - pos: -39.5,39.5 + parent: 1 + type: Transform + - uid: 15965 + components: + - pos: -73.5,-1.5 + parent: 1 + type: Transform + - links: + - 12119 + - 12118 + type: DeviceLinkSink + - linkedPorts: + 12118: + - DoorStatus: DoorBolt + 12119: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 15966 + components: + - pos: -70.5,0.5 + parent: 1 + type: Transform + - uid: 15967 + components: + - pos: -74.5,0.5 + parent: 1 + type: Transform + - links: + - 12119 + - 12118 + type: DeviceLinkSink + - linkedPorts: + 12119: + - DoorStatus: DoorBolt + 12118: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 24561 + components: + - pos: -69.5,3.5 + parent: 1 + type: Transform + - uid: 24562 + components: + - pos: -69.5,4.5 + parent: 1 + type: Transform + - uid: 24788 + components: + - pos: 87.5,-21.5 + parent: 1 + type: Transform + - uid: 24789 + components: + - pos: 87.5,-24.5 + parent: 1 + type: Transform + - links: + - 24793 + - 24794 + type: DeviceLinkSink + - linkedPorts: + 24794: + - DoorStatus: DoorBolt + 24793: + - DoorStatus: DoorBolt + type: DeviceLinkSource +- proto: AirlockEngineeringLocked + entities: + - uid: 553 + components: + - pos: -10.5,-41.5 + parent: 1 + type: Transform + - uid: 1748 + components: + - pos: -11.5,-19.5 + parent: 1 + type: Transform + - uid: 2513 + components: + - pos: -39.5,1.5 + parent: 1 + type: Transform + - uid: 2514 + components: + - pos: -39.5,2.5 + parent: 1 + type: Transform + - uid: 2735 + components: + - pos: 37.5,-19.5 + parent: 1 + type: Transform + - uid: 4628 + components: + - pos: -9.5,39.5 + parent: 1 + type: Transform + - uid: 6638 + components: + - pos: -50.5,37.5 + parent: 1 + type: Transform + - uid: 7745 + components: + - pos: 90.5,-13.5 + parent: 1 + type: Transform + - uid: 7771 + components: + - pos: 26.5,26.5 + parent: 1 + type: Transform + - uid: 7772 + components: + - pos: -17.5,21.5 + parent: 1 + type: Transform + - uid: 7784 + components: + - pos: 91.5,20.5 + parent: 1 + type: Transform + - uid: 8097 + components: + - pos: 97.5,16.5 + parent: 1 + type: Transform +- proto: AirlockExternal + entities: + - uid: 12500 + components: + - pos: -25.5,32.5 + parent: 1 + type: Transform +- proto: AirlockExternalEngineeringLocked + entities: + - uid: 12118 + components: + - pos: -77.5,-1.5 + parent: 1 + type: Transform + - links: + - 15965 + - 15967 + type: DeviceLinkSink + - linkedPorts: + 15967: + - DoorStatus: DoorBolt + 15965: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 12119 + components: + - pos: -77.5,-0.5 + parent: 1 + type: Transform + - links: + - 15965 + - 15967 + type: DeviceLinkSink + - linkedPorts: + 15967: + - DoorStatus: DoorBolt + 15965: + - DoorStatus: DoorBolt + type: DeviceLinkSource +- proto: AirlockExternalGlassAtmosphericsLocked + entities: + - uid: 6456 + components: + - pos: -61.5,28.5 + parent: 1 + type: Transform + - links: + - 6457 + type: DeviceLinkSink + - linkedPorts: + 6457: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 6457 + components: + - pos: -64.5,28.5 + parent: 1 + type: Transform + - links: + - 6456 + type: DeviceLinkSink + - linkedPorts: + 6456: + - DoorStatus: DoorBolt + type: DeviceLinkSource +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 2866 + components: + - pos: -39.5,-35.5 + parent: 1 + type: Transform + - links: + - 324 + - 248 + type: DeviceLinkSink + - linkedPorts: + 248: + - DoorStatus: DoorBolt + 324: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 5071 + components: + - pos: -43.5,-40.5 + parent: 1 + type: Transform + - links: + - 25592 + - 25586 + type: DeviceLinkSink + - linkedPorts: + 25586: + - DoorStatus: DoorBolt + 25592: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 5073 + components: + - pos: -42.5,-40.5 + parent: 1 + type: Transform + - links: + - 25592 + - 25586 + type: DeviceLinkSink + - linkedPorts: + 25592: + - DoorStatus: DoorBolt + 25586: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 8487 + components: + - pos: -38.5,-35.5 + parent: 1 + type: Transform + - links: + - 324 + - 248 + type: DeviceLinkSink + - linkedPorts: + 248: + - DoorStatus: DoorBolt + 324: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 16211 + components: + - pos: 56.5,-31.5 + parent: 1 + type: Transform + - uid: 16212 + components: + - pos: 57.5,-31.5 + parent: 1 + type: Transform + - uid: 16213 + components: + - pos: 63.5,-31.5 + parent: 1 + type: Transform + - uid: 16214 + components: + - pos: 64.5,-31.5 + parent: 1 + type: Transform + - uid: 25586 + components: + - pos: -43.5,-43.5 + parent: 1 + type: Transform + - links: + - 5071 + - 5073 + type: DeviceLinkSink + - linkedPorts: + 5073: + - DoorStatus: DoorBolt + 5071: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 25592 + components: + - pos: -42.5,-43.5 + parent: 1 + type: Transform + - links: + - 5071 + - 5073 + type: DeviceLinkSink + - linkedPorts: + 5073: + - DoorStatus: DoorBolt + 5071: + - DoorStatus: DoorBolt + type: DeviceLinkSource +- proto: AirlockExternalGlassEasyPry + entities: + - uid: 657 + components: + - pos: -65.5,3.5 + parent: 1 + type: Transform + - uid: 682 + components: + - pos: -65.5,4.5 + parent: 1 + type: Transform + - uid: 778 + components: + - pos: -67.5,0.5 + parent: 1 + type: Transform + - uid: 1384 + components: + - pos: -67.5,7.5 + parent: 1 + type: Transform + - uid: 1403 + components: + - pos: 17.5,-50.5 + parent: 1 + type: Transform + - uid: 1482 + components: + - pos: 19.5,-50.5 + parent: 1 + type: Transform + - uid: 1483 + components: + - pos: 25.5,-50.5 + parent: 1 + type: Transform + - uid: 1753 + components: + - pos: 27.5,-50.5 + parent: 1 + type: Transform + - uid: 1835 + components: + - pos: 75.5,-21.5 + parent: 1 + type: Transform + - uid: 1844 + components: + - pos: 64.5,-21.5 + parent: 1 + type: Transform + - uid: 1893 + components: + - pos: 12.5,55.5 + parent: 1 + type: Transform + - uid: 1900 + components: + - pos: -8.5,55.5 + parent: 1 + type: Transform + - uid: 1907 + components: + - pos: 32.5,55.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 11935 + components: + - pos: -41.5,41.5 + parent: 1 + type: Transform + - links: + - 11938 + - 11937 + type: DeviceLinkSink + - linkedPorts: + 11938: + - DoorStatus: DoorBolt + 11937: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 11936 + components: + - pos: -41.5,42.5 + parent: 1 + type: Transform + - links: + - 11938 + - 11937 + type: DeviceLinkSink + - linkedPorts: + 11938: + - DoorStatus: DoorBolt + 11937: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 11937 + components: + - pos: -44.5,41.5 + parent: 1 + type: Transform + - links: + - 11936 + - 11935 + type: DeviceLinkSink + - linkedPorts: + 11936: + - DoorStatus: DoorBolt + 11935: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 11938 + components: + - pos: -44.5,42.5 + parent: 1 + type: Transform + - links: + - 11936 + - 11935 + type: DeviceLinkSink + - linkedPorts: + 11936: + - DoorStatus: DoorBolt + 11935: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 24793 + components: + - pos: 85.5,-28.5 + parent: 1 + type: Transform + - links: + - 24789 + type: DeviceLinkSink + - linkedPorts: + 24789: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 24794 + components: + - pos: 86.5,-28.5 + parent: 1 + type: Transform + - links: + - 24789 + type: DeviceLinkSink + - linkedPorts: + 24789: + - DoorStatus: DoorBolt + type: DeviceLinkSource +- proto: AirlockExternalGlassLocked + entities: + - uid: 1621 + components: + - pos: 37.5,-23.5 + parent: 1 + type: Transform + - links: + - 1620 + type: DeviceLinkSink + - linkedPorts: + 1620: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 4099 + components: + - pos: 103.5,-9.5 + parent: 1 + type: Transform + - links: + - 6098 + type: DeviceLinkSink + - linkedPorts: + 6098: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 4140 + components: + - pos: 52.5,6.5 + parent: 1 + type: Transform + - links: + - 9909 + type: DeviceLinkSink + - linkedPorts: + 9909: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 4145 + components: + - pos: 52.5,1.5 + parent: 1 + type: Transform + - links: + - 7001 + type: DeviceLinkSink + - linkedPorts: + 7001: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 4921 + components: + - pos: 18.5,-23.5 + parent: 1 + type: Transform + - links: + - 4922 + type: DeviceLinkSink + - linkedPorts: + 4922: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 4922 + components: + - pos: 21.5,-23.5 + parent: 1 + type: Transform + - links: + - 4921 + type: DeviceLinkSink + - linkedPorts: + 4921: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 4924 + components: + - pos: 41.5,-23.5 + parent: 1 + type: Transform + - links: + - 1620 + type: DeviceLinkSink + - linkedPorts: + 1620: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 4939 + components: + - pos: 48.5,30.5 + parent: 1 + type: Transform + - links: + - 4938 + type: DeviceLinkSink + - linkedPorts: + 4938: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 4945 + components: + - pos: 36.5,30.5 + parent: 1 + type: Transform + - links: + - 4944 + type: DeviceLinkSink + - linkedPorts: + 4944: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 4946 + components: + - pos: 40.5,30.5 + parent: 1 + type: Transform + - links: + - 4944 + type: DeviceLinkSink + - linkedPorts: + 4944: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 4947 + components: + - pos: 18.5,30.5 + parent: 1 + type: Transform + - links: + - 4948 + type: DeviceLinkSink + - linkedPorts: + 4948: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 4948 + components: + - pos: 21.5,30.5 + parent: 1 + type: Transform + - links: + - 4947 + type: DeviceLinkSink + - linkedPorts: + 4947: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 4949 + components: + - pos: 5.5,30.5 + parent: 1 + type: Transform + - links: + - 4950 + type: DeviceLinkSink + - linkedPorts: + 4950: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 4950 + components: + - pos: 2.5,30.5 + parent: 1 + type: Transform + - links: + - 4949 + type: DeviceLinkSink + - linkedPorts: + 4949: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 4956 + components: + - pos: -19.5,36.5 + parent: 1 + type: Transform + - links: + - 2183 + type: DeviceLinkSink + - linkedPorts: + 2183: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 4963 + components: + - pos: -27.5,28.5 + parent: 1 + type: Transform + - links: + - 112 + type: DeviceLinkSink + - linkedPorts: + 112: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 4964 + components: + - pos: -48.5,16.5 + parent: 1 + type: Transform + - links: + - 4965 + type: DeviceLinkSink + - linkedPorts: + 4965: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 4965 + components: + - pos: -45.5,16.5 + parent: 1 + type: Transform + - links: + - 4964 + type: DeviceLinkSink + - linkedPorts: + 4964: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 4971 + components: + - pos: -33.5,20.5 + parent: 1 + type: Transform + - links: + - 4970 + type: DeviceLinkSink + - linkedPorts: + 4970: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 4978 + components: + - pos: -29.5,11.5 + parent: 1 + type: Transform + - links: + - 4979 + type: DeviceLinkSink + - linkedPorts: + 4979: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 4979 + components: + - pos: -29.5,8.5 + parent: 1 + type: Transform + - links: + - 4978 + type: DeviceLinkSink + - linkedPorts: + 4978: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 4997 + components: + - pos: -29.5,-0.5 + parent: 1 + type: Transform + - links: + - 4998 + type: DeviceLinkSink + - linkedPorts: + 4998: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 4998 + components: + - pos: -29.5,-3.5 + parent: 1 + type: Transform + - links: + - 4997 + type: DeviceLinkSink + - linkedPorts: + 4997: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 5019 + components: + - pos: -48.5,-8.5 + parent: 1 + type: Transform + - links: + - 5020 + type: DeviceLinkSink + - linkedPorts: + 5020: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 5020 + components: + - pos: -45.5,-8.5 + parent: 1 + type: Transform + - links: + - 5019 + type: DeviceLinkSink + - linkedPorts: + 5019: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 5031 + components: + - pos: 5.5,-23.5 + parent: 1 + type: Transform + - links: + - 5032 + type: DeviceLinkSink + - linkedPorts: + 5032: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 5032 + components: + - pos: 2.5,-23.5 + parent: 1 + type: Transform + - links: + - 5031 + type: DeviceLinkSink + - linkedPorts: + 5031: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 5035 + components: + - pos: -28.5,-22.5 + parent: 1 + type: Transform + - links: + - 5042 + type: DeviceLinkSink + - linkedPorts: + 5042: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 5041 + components: + - pos: -25.5,-27.5 + parent: 1 + type: Transform + - links: + - 1423 + type: DeviceLinkSink + - linkedPorts: + 1423: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 5086 + components: + - pos: -29.5,-8.5 + parent: 1 + type: Transform + - links: + - 763 + type: DeviceLinkSink + - linkedPorts: + 763: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 5093 + components: + - pos: 47.5,-22.5 + parent: 1 + type: Transform + - links: + - 5092 + type: DeviceLinkSink + - linkedPorts: + 5092: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 7001 + components: + - pos: 52.5,-2.5 + parent: 1 + type: Transform + - links: + - 4145 + type: DeviceLinkSink + - linkedPorts: + 4145: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 9352 + components: + - pos: 105.5,16.5 + parent: 1 + type: Transform + - links: + - 1727 + type: DeviceLinkSink + - linkedPorts: + 1727: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 9909 + components: + - pos: 52.5,10.5 + parent: 1 + type: Transform + - links: + - 4140 + type: DeviceLinkSink + - linkedPorts: + 4140: + - DoorStatus: DoorBolt + type: DeviceLinkSource +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 9169 + components: + - pos: 1.5,-52.5 + parent: 1 + type: Transform + - uid: 9170 + components: + - pos: 8.5,-52.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 9221 + components: + - pos: 19.5,-53.5 + parent: 1 + type: Transform + - uid: 9222 + components: + - pos: 17.5,-53.5 + parent: 1 + type: Transform + - uid: 9223 + components: + - pos: 25.5,-53.5 + parent: 1 + type: Transform + - uid: 9224 + components: + - pos: 27.5,-53.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassShuttleEscape + entities: + - uid: 6706 + components: + - pos: -68.5,-2.5 + parent: 1 + type: Transform + - uid: 6707 + components: + - rot: 3.141592653589793 rad + pos: -68.5,10.5 + parent: 1 + type: Transform + - uid: 11575 + components: + - rot: 1.5707963267948966 rad + pos: 66.5,-23.5 + parent: 1 + type: Transform + - uid: 11576 + components: + - rot: 1.5707963267948966 rad + pos: 77.5,-23.5 + parent: 1 + type: Transform + - uid: 11663 + components: + - rot: 3.141592653589793 rad + pos: 12.5,58.5 + parent: 1 + type: Transform + - uid: 11673 + components: + - rot: 3.141592653589793 rad + pos: -8.5,57.5 + parent: 1 + type: Transform + - uid: 11685 + components: + - rot: 3.141592653589793 rad + pos: 32.5,57.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 16217 + components: + - pos: 63.5,-33.5 + parent: 1 + type: Transform + - uid: 16218 + components: + - pos: 64.5,-33.5 + parent: 1 + type: Transform +- proto: AirlockExternalLocked + entities: + - uid: 112 + components: + - pos: -30.5,28.5 + parent: 1 + type: Transform + - links: + - 4963 + type: DeviceLinkSink + - linkedPorts: + 4963: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 763 + components: + - pos: -28.5,-10.5 + parent: 1 + type: Transform + - links: + - 5086 + type: DeviceLinkSink + - linkedPorts: + 5086: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 1423 + components: + - pos: -25.5,-30.5 + parent: 1 + type: Transform + - links: + - 5041 + type: DeviceLinkSink + - linkedPorts: + 5041: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 1620 + components: + - pos: 39.5,-22.5 + parent: 1 + type: Transform + - links: + - 4924 + - 1621 + type: DeviceLinkSink + - linkedPorts: + 4924: + - DoorStatus: DoorBolt + 1621: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 1727 + components: + - pos: 103.5,15.5 + parent: 1 + type: Transform + - links: + - 9352 + type: DeviceLinkSink + - linkedPorts: + 9352: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 2183 + components: + - pos: -19.5,39.5 + parent: 1 + type: Transform + - links: + - 4956 + type: DeviceLinkSink + - linkedPorts: + 4956: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 4938 + components: + - pos: 50.5,31.5 + parent: 1 + type: Transform + - links: + - 4939 + type: DeviceLinkSink + - linkedPorts: + 4939: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 4944 + components: + - pos: 38.5,29.5 + parent: 1 + type: Transform + - links: + - 4945 + - 4946 + type: DeviceLinkSink + - linkedPorts: + 4945: + - DoorStatus: DoorBolt + 4946: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 4970 + components: + - pos: -33.5,23.5 + parent: 1 + type: Transform + - links: + - 4971 + type: DeviceLinkSink + - linkedPorts: + 4971: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 5042 + components: + - pos: -30.5,-22.5 + parent: 1 + type: Transform + - links: + - 5035 + type: DeviceLinkSink + - linkedPorts: + 5035: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 5092 + components: + - pos: 49.5,-23.5 + parent: 1 + type: Transform + - links: + - 5093 + type: DeviceLinkSink + - linkedPorts: + 5093: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 6098 + components: + - pos: 101.5,-8.5 + parent: 1 + type: Transform + - links: + - 4099 + type: DeviceLinkSink + - linkedPorts: + 4099: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 9795 + components: + - pos: 115.5,-2.5 + parent: 1 + type: Transform + - links: + - 9798 + - 9797 + type: DeviceLinkSink + - linkedPorts: + 9798: + - DoorStatus: DoorBolt + 9797: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 9796 + components: + - pos: 115.5,-1.5 + parent: 1 + type: Transform + - links: + - 9798 + - 9797 + type: DeviceLinkSink + - linkedPorts: + 9798: + - DoorStatus: DoorBolt + 9797: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 16572 + components: + - pos: 48.5,26.5 + parent: 1 + type: Transform +- proto: AirlockFreezerHydroponicsLocked + entities: + - uid: 1699 + components: + - pos: 0.5,18.5 + parent: 1 + type: Transform +- proto: AirlockFreezerLocked + entities: + - uid: 1046 + components: + - pos: 2.5,20.5 + parent: 1 + type: Transform +- proto: AirlockGlass + entities: + - uid: 2117 + components: + - pos: 33.5,-5.5 + parent: 1 + type: Transform + - uid: 2717 + components: + - pos: 38.5,-5.5 + parent: 1 + type: Transform + - uid: 4328 + components: + - name: clothing store + type: MetaData + - pos: 14.5,-12.5 + parent: 1 + type: Transform + - uid: 4329 + components: + - name: barber shop + type: MetaData + - pos: 19.5,-5.5 + parent: 1 + type: Transform + - uid: 4381 + components: + - pos: 25.5,-5.5 + parent: 1 + type: Transform + - uid: 4382 + components: + - pos: 26.5,-5.5 + parent: 1 + type: Transform + - uid: 5227 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 5527 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 6187 + components: + - pos: 93.5,3.5 + parent: 1 + type: Transform + - uid: 6188 + components: + - pos: 93.5,4.5 + parent: 1 + type: Transform + - uid: 7015 + components: + - pos: 40.5,7.5 + parent: 1 + type: Transform + - uid: 7044 + components: + - pos: 11.5,-45.5 + parent: 1 + type: Transform + - uid: 7189 + components: + - pos: 62.5,1.5 + parent: 1 + type: Transform + - uid: 7190 + components: + - pos: 63.5,1.5 + parent: 1 + type: Transform + - uid: 7191 + components: + - pos: 69.5,1.5 + parent: 1 + type: Transform + - uid: 7192 + components: + - pos: 70.5,1.5 + parent: 1 + type: Transform + - uid: 7194 + components: + - pos: 11.5,29.5 + parent: 1 + type: Transform + - uid: 7195 + components: + - pos: 12.5,29.5 + parent: 1 + type: Transform + - uid: 7199 + components: + - pos: 11.5,-22.5 + parent: 1 + type: Transform + - uid: 7200 + components: + - pos: 12.5,-22.5 + parent: 1 + type: Transform + - uid: 7203 + components: + - pos: -28.5,3.5 + parent: 1 + type: Transform + - uid: 7204 + components: + - pos: -28.5,4.5 + parent: 1 + type: Transform + - uid: 7302 + components: + - pos: 12.5,-45.5 + parent: 1 + type: Transform + - uid: 7411 + components: + - pos: 28.5,13.5 + parent: 1 + type: Transform + - uid: 9231 + components: + - pos: 51.5,3.5 + parent: 1 + type: Transform + - uid: 9232 + components: + - pos: 51.5,4.5 + parent: 1 + type: Transform + - uid: 11375 + components: + - pos: 4.5,-40.5 + parent: 1 + type: Transform + - uid: 11376 + components: + - pos: 4.5,-45.5 + parent: 1 + type: Transform + - uid: 12443 + components: + - pos: 19.5,13.5 + parent: 1 + type: Transform + - uid: 23554 + components: + - pos: 11.5,15.5 + parent: 1 + type: Transform + - uid: 23555 + components: + - pos: 14.5,-4.5 + parent: 1 + type: Transform + - uid: 23556 + components: + - pos: 14.5,-3.5 + parent: 1 + type: Transform + - uid: 23557 + components: + - pos: 14.5,-2.5 + parent: 1 + type: Transform + - uid: 23558 + components: + - pos: 12.5,15.5 + parent: 1 + type: Transform + - uid: 23559 + components: + - pos: 11.5,9.5 + parent: 1 + type: Transform + - uid: 23560 + components: + - pos: 12.5,9.5 + parent: 1 + type: Transform + - uid: 23561 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 23562 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 23563 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 23564 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 23565 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 23566 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 23567 + components: + - pos: 5.5,10.5 + parent: 1 + type: Transform + - uid: 23568 + components: + - pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 23569 + components: + - pos: 5.5,12.5 + parent: 1 + type: Transform + - uid: 23570 + components: + - pos: 37.5,1.5 + parent: 1 + type: Transform + - uid: 23571 + components: + - pos: 38.5,1.5 + parent: 1 + type: Transform + - uid: 23572 + components: + - pos: 39.5,1.5 + parent: 1 + type: Transform +- proto: AirlockHeadOfPersonnelGlassLocked + entities: + - uid: 1666 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform +- proto: AirlockHeadOfPersonnelLocked + entities: + - uid: 1657 + components: + - pos: 3.5,-10.5 + parent: 1 + type: Transform + - uid: 2007 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform +- proto: AirlockHeadOfSecurityGlassLocked + entities: + - uid: 4918 + components: + - pos: 75.5,17.5 + parent: 1 + type: Transform +- proto: AirlockHeadOfSecurityLocked + entities: + - uid: 17167 + components: + - pos: 79.5,16.5 + parent: 1 + type: Transform +- proto: AirlockHydroGlassLocked + entities: + - uid: 11418 + components: + - pos: -4.5,14.5 + parent: 1 + type: Transform +- proto: AirlockHydroponicsLocked + entities: + - uid: 981 + components: + - pos: -1.5,23.5 + parent: 1 + type: Transform + - uid: 1060 + components: + - pos: -4.5,22.5 + parent: 1 + type: Transform +- proto: AirlockJanitorLocked + entities: + - uid: 3529 + components: + - pos: -17.5,6.5 + parent: 1 + type: Transform + - uid: 3553 + components: + - pos: -17.5,17.5 + parent: 1 + type: Transform + - uid: 6999 + components: + - pos: 55.5,6.5 + parent: 1 + type: Transform +- proto: AirlockKitchenGlassLocked + entities: + - uid: 1131 + components: + - pos: 19.5,-45.5 + parent: 1 + type: Transform + - uid: 1516 + components: + - pos: 17.5,-40.5 + parent: 1 + type: Transform +- proto: AirlockKitchenLocked + entities: + - uid: 851 + components: + - pos: 3.5,22.5 + parent: 1 + type: Transform + - uid: 977 + components: + - pos: 0.5,23.5 + parent: 1 + type: Transform +- proto: AirlockLawyerLocked + entities: + - uid: 494 + components: + - pos: 46.5,10.5 + parent: 1 + type: Transform +- proto: AirlockMailGlassLocked + entities: + - uid: 1847 + components: + - pos: -12.5,-0.5 + parent: 1 + type: Transform + - uid: 1887 + components: + - pos: -12.5,-4.5 + parent: 1 + type: Transform +- proto: AirlockMailLocked + entities: + - uid: 2045 + components: + - pos: -15.5,-6.5 + parent: 1 + type: Transform +- proto: AirlockMaint + entities: + - uid: 694 + components: + - pos: -28.5,14.5 + parent: 1 + type: Transform + - uid: 808 + components: + - pos: 34.5,-40.5 + parent: 1 + type: Transform + - uid: 1250 + components: + - pos: 37.5,-38.5 + parent: 1 + type: Transform + - uid: 1713 + components: + - pos: 9.5,-20.5 + parent: 1 + type: Transform + - uid: 1714 + components: + - pos: 14.5,-20.5 + parent: 1 + type: Transform + - uid: 1734 + components: + - pos: -6.5,-18.5 + parent: 1 + type: Transform + - uid: 1821 + components: + - pos: -25.5,14.5 + parent: 1 + type: Transform + - uid: 2464 + components: + - pos: -36.5,-0.5 + parent: 1 + type: Transform + - uid: 2507 + components: + - pos: 9.5,27.5 + parent: 1 + type: Transform + - uid: 2508 + components: + - pos: 14.5,27.5 + parent: 1 + type: Transform + - uid: 3710 + components: + - pos: -13.5,-46.5 + parent: 1 + type: Transform + - uid: 3880 + components: + - pos: 34.5,-12.5 + parent: 1 + type: Transform + - uid: 3942 + components: + - pos: 20.5,-13.5 + parent: 1 + type: Transform + - uid: 4157 + components: + - pos: 50.5,6.5 + parent: 1 + type: Transform + - uid: 4158 + components: + - pos: 59.5,6.5 + parent: 1 + type: Transform + - uid: 4159 + components: + - pos: 59.5,1.5 + parent: 1 + type: Transform + - uid: 4496 + components: + - pos: 7.5,36.5 + parent: 1 + type: Transform + - uid: 4497 + components: + - pos: 16.5,36.5 + parent: 1 + type: Transform + - uid: 4730 + components: + - pos: 38.5,45.5 + parent: 1 + type: Transform + - uid: 4984 + components: + - pos: -26.5,6.5 + parent: 1 + type: Transform + - uid: 4985 + components: + - pos: -26.5,1.5 + parent: 1 + type: Transform + - uid: 5099 + components: + - pos: -18.5,-13.5 + parent: 1 + type: Transform + - uid: 5103 + components: + - pos: -20.5,-11.5 + parent: 1 + type: Transform + - uid: 5544 + components: + - pos: 55.5,-15.5 + parent: 1 + type: Transform + - uid: 6135 + components: + - pos: 92.5,11.5 + parent: 1 + type: Transform + - uid: 6282 + components: + - pos: 22.5,51.5 + parent: 1 + type: Transform + - uid: 7060 + components: + - pos: 91.5,1.5 + parent: 1 + type: Transform + - uid: 7233 + components: + - pos: 34.5,22.5 + parent: 1 + type: Transform + - uid: 7773 + components: + - pos: -14.5,24.5 + parent: 1 + type: Transform + - uid: 9901 + components: + - pos: -29.5,16.5 + parent: 1 + type: Transform + - uid: 11195 + components: + - pos: -16.5,15.5 + parent: 1 + type: Transform + - uid: 12086 + components: + - pos: 30.5,38.5 + parent: 1 + type: Transform + - uid: 12438 + components: + - pos: 45.5,18.5 + parent: 1 + type: Transform + - uid: 13929 + components: + - pos: -7.5,-31.5 + parent: 1 + type: Transform + - uid: 14386 + components: + - pos: -8.5,26.5 + parent: 1 + type: Transform + - uid: 15763 + components: + - pos: -62.5,8.5 + parent: 1 + type: Transform + - uid: 16663 + components: + - pos: -33.5,16.5 + parent: 1 + type: Transform + - uid: 16764 + components: + - pos: 50.5,1.5 + parent: 1 + type: Transform + - uid: 16867 + components: + - pos: 48.5,-7.5 + parent: 1 + type: Transform + - uid: 17481 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 23449 + components: + - pos: -2.5,29.5 + parent: 1 + type: Transform +- proto: AirlockMaintAtmoLocked + entities: + - uid: 245 + components: + - pos: -34.5,32.5 + parent: 1 + type: Transform + - uid: 2504 + components: + - pos: -54.5,37.5 + parent: 1 + type: Transform + - uid: 2505 + components: + - pos: -35.5,25.5 + parent: 1 + type: Transform +- proto: AirlockMaintBoxerLocked + entities: + - uid: 3915 + components: + - pos: 18.5,25.5 + parent: 1 + type: Transform +- proto: AirlockMaintCaptainLocked + entities: + - uid: 790 + components: + - pos: 108.5,-2.5 + parent: 1 + type: Transform +- proto: AirlockMaintCargoLocked + entities: + - uid: 5063 + components: + - pos: -38.5,-22.5 + parent: 1 + type: Transform + - uid: 6042 + components: + - pos: -12.5,-9.5 + parent: 1 + type: Transform + - uid: 14025 + components: + - pos: -2.5,-5.5 + parent: 1 + type: Transform +- proto: AirlockMaintChapelLocked + entities: + - uid: 4487 + components: + - pos: 20.5,49.5 + parent: 1 + type: Transform +- proto: AirlockMaintClownLocked + entities: + - uid: 2564 + components: + - pos: 25.5,-31.5 + parent: 1 + type: Transform +- proto: AirlockMaintCommandLocked + entities: + - uid: 6106 + components: + - pos: 100.5,12.5 + parent: 1 + type: Transform +- proto: AirlockMaintEngiLocked + entities: + - uid: 627 + components: + - pos: -50.5,-19.5 + parent: 1 + type: Transform + - uid: 2465 + components: + - pos: -49.5,-5.5 + parent: 1 + type: Transform + - uid: 2466 + components: + - pos: -52.5,-5.5 + parent: 1 + type: Transform + - uid: 2467 + components: + - pos: -52.5,14.5 + parent: 1 + type: Transform + - uid: 12078 + components: + - pos: -60.5,-16.5 + parent: 1 + type: Transform +- proto: AirlockMaintGlass + entities: + - uid: 3000 + components: + - pos: -37.5,-20.5 + parent: 1 + type: Transform + - uid: 3489 + components: + - pos: 60.5,-19.5 + parent: 1 + type: Transform + - uid: 3824 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,-2.5 + parent: 1 + type: Transform + - uid: 4617 + components: + - pos: -2.5,53.5 + parent: 1 + type: Transform + - uid: 12020 + components: + - pos: -48.5,-21.5 + parent: 1 + type: Transform + - uid: 12082 + components: + - pos: -61.5,-7.5 + parent: 1 + type: Transform + - uid: 15862 + components: + - pos: -23.5,43.5 + parent: 1 + type: Transform + - uid: 15864 + components: + - pos: -22.5,43.5 + parent: 1 + type: Transform + - uid: 20988 + components: + - pos: -1.5,-17.5 + parent: 1 + type: Transform + - uid: 22256 + components: + - pos: 26.5,53.5 + parent: 1 + type: Transform + - uid: 22819 + components: + - pos: -63.5,11.5 + parent: 1 + type: Transform + - uid: 23771 + components: + - pos: 57.5,23.5 + parent: 1 + type: Transform + - uid: 25834 + components: + - pos: 4.5,53.5 + parent: 1 + type: Transform +- proto: AirlockMaintGlassLocked + entities: + - uid: 666 + components: + - pos: -25.5,-13.5 + parent: 1 + type: Transform + - uid: 16129 + components: + - pos: 46.5,-28.5 + parent: 1 + type: Transform + - uid: 16130 + components: + - pos: 46.5,-27.5 + parent: 1 + type: Transform +- proto: AirlockMaintHOPLocked + entities: + - uid: 14024 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform +- proto: AirlockMaintHydroLocked + entities: + - uid: 1055 + components: + - pos: -7.5,22.5 + parent: 1 + type: Transform + - uid: 13833 + components: + - pos: 93.5,-0.5 + parent: 1 + type: Transform +- proto: AirlockMaintJanitorLocked + entities: + - uid: 3392 + components: + - pos: -17.5,13.5 + parent: 1 + type: Transform +- proto: AirlockMaintKitchenLocked + entities: + - uid: 1051 + components: + - pos: 2.5,26.5 + parent: 1 + type: Transform +- proto: AirlockMaintLawyerLocked + entities: + - uid: 526 + components: + - pos: 48.5,12.5 + parent: 1 + type: Transform +- proto: AirlockMaintLocked + entities: + - uid: 880 + components: + - pos: 5.5,-29.5 + parent: 1 + type: Transform + - uid: 1038 + components: + - pos: 18.5,-29.5 + parent: 1 + type: Transform + - uid: 2016 + components: + - pos: 31.5,-47.5 + parent: 1 + type: Transform + - uid: 2065 + components: + - pos: -6.5,-47.5 + parent: 1 + type: Transform + - uid: 2870 + components: + - pos: 48.5,36.5 + parent: 1 + type: Transform + - uid: 5974 + components: + - pos: 55.5,-18.5 + parent: 1 + type: Transform + - uid: 12363 + components: + - pos: -35.5,-21.5 + parent: 1 + type: Transform +- proto: AirlockMaintMedLocked + entities: + - uid: 5577 + components: + - pos: 75.5,-16.5 + parent: 1 + type: Transform + - uid: 15621 + components: + - pos: 64.5,-18.5 + parent: 1 + type: Transform +- proto: AirlockMaintReporterLocked + entities: + - uid: 3914 + components: + - pos: 46.5,-10.5 + parent: 1 + type: Transform +- proto: AirlockMaintResearchDirectorLocked + entities: + - uid: 12066 + components: + - pos: 7.5,52.5 + parent: 1 + type: Transform +- proto: AirlockMaintRnDLocked + entities: + - uid: 3654 + components: + - pos: -1.5,38.5 + parent: 1 + type: Transform + - uid: 12034 + components: + - pos: 31.5,49.5 + parent: 1 + type: Transform +- proto: AirlockMaintSecLocked + entities: + - uid: 4069 + components: + - pos: 90.5,17.5 + parent: 1 + type: Transform +- proto: AirlockMaintSecurityLawyerLocked + entities: + - uid: 2224 + components: + - pos: 62.5,13.5 + parent: 1 + type: Transform +- proto: AirlockMaintServiceLocked + entities: + - uid: 3323 + components: + - pos: 2.5,-18.5 + parent: 1 + type: Transform +- proto: AirlockMaintTheatreLocked + entities: + - uid: 11238 + components: + - pos: 23.5,24.5 + parent: 1 + type: Transform +- proto: AirlockMantisGlassLocked + entities: + - uid: 617 + components: + - pos: 16.5,41.5 + parent: 1 + type: Transform +- proto: AirlockMantisLocked + entities: + - uid: 656 + components: + - pos: 23.5,41.5 + parent: 1 + type: Transform +- proto: AirlockMedicalGlass + entities: + - uid: 2070 + components: + - pos: -24.5,6.5 + parent: 1 + type: Transform + - uid: 5094 + components: + - pos: -20.5,6.5 + parent: 1 + type: Transform +- proto: AirlockMedicalGlassLocked + entities: + - uid: 5594 + components: + - pos: 63.5,-1.5 + parent: 1 + type: Transform + - links: + - 25827 + type: DeviceLinkSink + - uid: 5595 + components: + - pos: 63.5,-5.5 + parent: 1 + type: Transform + - links: + - 25827 + type: DeviceLinkSink + - uid: 5606 + components: + - pos: 67.5,-5.5 + parent: 1 + type: Transform + - uid: 5633 + components: + - pos: 68.5,-7.5 + parent: 1 + type: Transform + - uid: 5670 + components: + - pos: 68.5,-15.5 + parent: 1 + type: Transform + - uid: 5671 + components: + - pos: 68.5,-14.5 + parent: 1 + type: Transform + - uid: 5672 + components: + - pos: 77.5,-15.5 + parent: 1 + type: Transform + - uid: 5673 + components: + - pos: 77.5,-14.5 + parent: 1 + type: Transform + - uid: 7603 + components: + - pos: 85.5,-10.5 + parent: 1 + type: Transform + - uid: 7649 + components: + - pos: 85.5,-7.5 + parent: 1 + type: Transform +- proto: AirlockMedicalLocked + entities: + - uid: 2495 + components: + - pos: 69.5,-1.5 + parent: 1 + type: Transform + - links: + - 25828 + type: DeviceLinkSink + - uid: 3486 + components: + - pos: 63.5,-14.5 + parent: 1 + type: Transform + - uid: 5599 + components: + - pos: 68.5,-3.5 + parent: 1 + type: Transform + - uid: 13678 + components: + - pos: 75.5,8.5 + parent: 1 + type: Transform +- proto: AirlockMimeLocked + entities: + - uid: 3920 + components: + - pos: 20.5,-36.5 + parent: 1 + type: Transform +- proto: AirlockMusicianLocked + entities: + - uid: 4492 + components: + - pos: 28.5,-37.5 + parent: 1 + type: Transform +- proto: AirlockPsychologistGlassLocked + entities: + - uid: 2874 + components: + - pos: 73.5,-1.5 + parent: 1 + type: Transform +- proto: AirlockPsychologistLocked + entities: + - uid: 579 + components: + - pos: 74.5,-7.5 + parent: 1 + type: Transform + - uid: 3085 + components: + - pos: 78.5,-3.5 + parent: 1 + type: Transform +- proto: AirlockQuartermasterGlassLocked + entities: + - uid: 6678 + components: + - pos: -56.5,-25.5 + parent: 1 + type: Transform +- proto: AirlockReporterGlassLocked + entities: + - uid: 3322 + components: + - pos: 38.5,-8.5 + parent: 1 + type: Transform +- proto: AirlockReporterLocked + entities: + - uid: 3912 + components: + - pos: 44.5,-8.5 + parent: 1 + type: Transform +- proto: AirlockResearchDirectorGlassLocked + entities: + - uid: 4587 + components: + - pos: 9.5,47.5 + parent: 1 + type: Transform +- proto: AirlockSalvageGlassLocked + entities: + - uid: 248 + components: + - pos: -38.5,-31.5 + parent: 1 + type: Transform + - links: + - 8487 + - 2866 + type: DeviceLinkSink + - linkedPorts: + 2866: + - DoorStatus: DoorBolt + 8487: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 324 + components: + - pos: -39.5,-31.5 + parent: 1 + type: Transform + - links: + - 8487 + - 2866 + type: DeviceLinkSink + - linkedPorts: + 2866: + - DoorStatus: DoorBolt + 8487: + - DoorStatus: DoorBolt + type: DeviceLinkSource +- proto: AirlockSalvageLocked + entities: + - uid: 5058 + components: + - pos: -46.5,-28.5 + parent: 1 + type: Transform + - uid: 25133 + components: + - pos: -54.5,-28.5 + parent: 1 + type: Transform +- proto: AirlockScienceGlassLocked + entities: + - uid: 491 + components: + - pos: 7.5,45.5 + parent: 1 + type: Transform + - uid: 4521 + components: + - pos: 16.5,45.5 + parent: 1 + type: Transform + - uid: 4522 + components: + - pos: 21.5,45.5 + parent: 1 + type: Transform + - uid: 4571 + components: + - pos: -2.5,46.5 + parent: 1 + type: Transform + - uid: 4572 + components: + - pos: -6.5,42.5 + parent: 1 + type: Transform + - uid: 4573 + components: + - pos: -6.5,43.5 + parent: 1 + type: Transform + - uid: 4636 + components: + - pos: 2.5,44.5 + parent: 1 + type: Transform + - uid: 4641 + components: + - pos: 2.5,45.5 + parent: 1 + type: Transform +- proto: AirlockScienceLocked + entities: + - uid: 2068 + components: + - pos: 27.5,47.5 + parent: 1 + type: Transform + - uid: 4518 + components: + - pos: 28.5,45.5 + parent: 1 + type: Transform + - uid: 4519 + components: + - pos: 28.5,43.5 + parent: 1 + type: Transform +- proto: AirlockSecurityGlass + entities: + - uid: 4046 + components: + - pos: 64.5,6.5 + parent: 1 + type: Transform + - uid: 4047 + components: + - pos: 65.5,6.5 + parent: 1 + type: Transform + - uid: 5291 + components: + - pos: 84.5,25.5 + parent: 1 + type: Transform + - uid: 5292 + components: + - pos: 84.5,24.5 + parent: 1 + type: Transform +- proto: AirlockSecurityGlassLocked + entities: + - uid: 1448 + components: + - pos: 12.5,-28.5 + parent: 1 + type: Transform + - uid: 1813 + components: + - pos: -24.5,1.5 + parent: 1 + type: Transform + - uid: 2799 + components: + - pos: 11.5,-28.5 + parent: 1 + type: Transform + - uid: 4060 + components: + - pos: 69.5,9.5 + parent: 1 + type: Transform + - uid: 4061 + components: + - pos: 70.5,9.5 + parent: 1 + type: Transform + - uid: 4178 + components: + - pos: 69.5,23.5 + parent: 1 + type: Transform + - uid: 4179 + components: + - pos: 70.5,23.5 + parent: 1 + type: Transform + - uid: 4184 + components: + - name: Cell 1 + type: MetaData + - pos: 64.5,15.5 + parent: 1 + type: Transform + - links: + - 16717 + type: DeviceLinkSink + - uid: 4186 + components: + - name: Cell 2 + type: MetaData + - pos: 66.5,15.5 + parent: 1 + type: Transform + - links: + - 16718 + type: DeviceLinkSink + - uid: 4919 + components: + - pos: 78.5,21.5 + parent: 1 + type: Transform + - uid: 4920 + components: + - pos: 85.5,21.5 + parent: 1 + type: Transform + - uid: 5095 + components: + - pos: -23.5,1.5 + parent: 1 + type: Transform + - uid: 5115 + components: + - pos: -24.5,-1.5 + parent: 1 + type: Transform + - uid: 5116 + components: + - pos: -23.5,-1.5 + parent: 1 + type: Transform + - uid: 5503 + components: + - pos: 73.5,9.5 + parent: 1 + type: Transform + - uid: 23911 + components: + - pos: 69.5,25.5 + parent: 1 + type: Transform + - uid: 23912 + components: + - pos: 70.5,25.5 + parent: 1 + type: Transform + - uid: 25278 + components: + - pos: 107.5,25.5 + parent: 1 + type: Transform +- proto: AirlockSecurityLawyerGlassLocked + entities: + - uid: 4042 + components: + - pos: 63.5,9.5 + parent: 1 + type: Transform + - uid: 4043 + components: + - pos: 64.5,9.5 + parent: 1 + type: Transform + - uid: 4044 + components: + - pos: 63.5,12.5 + parent: 1 + type: Transform + - uid: 4045 + components: + - pos: 64.5,12.5 + parent: 1 + type: Transform + - uid: 7135 + components: + - pos: 68.5,21.5 + parent: 1 + type: Transform +- proto: AirlockSecurityLocked + entities: + - uid: 4058 + components: + - pos: 69.5,6.5 + parent: 1 + type: Transform + - uid: 4059 + components: + - pos: 70.5,6.5 + parent: 1 + type: Transform + - uid: 22579 + components: + - pos: 81.5,31.5 + parent: 1 + type: Transform + - uid: 25277 + components: + - pos: 105.5,24.5 + parent: 1 + type: Transform +- proto: AirlockServiceCaptainLocked + entities: + - uid: 6248 + components: + - pos: 107.5,-1.5 + parent: 1 + type: Transform +- proto: AirlockServiceGlassLocked + entities: + - uid: 4265 + components: + - name: Pet Store + type: MetaData + - pos: 29.5,2.5 + parent: 1 + type: Transform + - uid: 4295 + components: + - pos: 34.5,2.5 + parent: 1 + type: Transform +- proto: AirlockServiceLocked + entities: + - uid: 36 + components: + - pos: 24.5,-14.5 + parent: 1 + type: Transform + - uid: 1910 + components: + - pos: 9.5,-12.5 + parent: 1 + type: Transform + - uid: 4973 + components: + - pos: 25.5,-12.5 + parent: 1 + type: Transform +- proto: AirlockShuttle + entities: + - uid: 5823 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,-41.5 + parent: 1 + type: Transform + - uid: 5828 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,-39.5 + parent: 1 + type: Transform +- proto: AirlockTheatreLocked + entities: + - uid: 2966 + components: + - pos: 25.5,22.5 + parent: 1 + type: Transform + - uid: 5141 + components: + - pos: 14.5,3.5 + parent: 1 + type: Transform +- proto: AirlockVirologyGlassLocked + entities: + - uid: 7648 + components: + - pos: 87.5,-8.5 + parent: 1 + type: Transform +- proto: AirSensor + entities: + - uid: 1310 + components: + - pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 11341 + components: + - pos: 28.5,16.5 + parent: 1 + type: Transform + - uid: 11407 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-24.5 + parent: 1 + type: Transform + - uid: 11411 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-37.5 + parent: 1 + type: Transform + - uid: 12585 + components: + - pos: -0.5,-9.5 + parent: 1 + type: Transform + - uid: 14222 + components: + - pos: 18.5,4.5 + parent: 1 + type: Transform + - uid: 15173 + components: + - pos: 30.5,-3.5 + parent: 1 + type: Transform + - uid: 15255 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,27.5 + parent: 1 + type: Transform + - uid: 21779 + components: + - pos: 11.5,-47.5 + parent: 1 + type: Transform + - uid: 22026 + components: + - pos: 40.5,-40.5 + parent: 1 + type: Transform + - uid: 22028 + components: + - pos: 12.5,-35.5 + parent: 1 + type: Transform + - uid: 22030 + components: + - pos: -16.5,-35.5 + parent: 1 + type: Transform + - uid: 22046 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-4.5 + parent: 1 + type: Transform + - uid: 22055 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-14.5 + parent: 1 + type: Transform + - uid: 22056 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-19.5 + parent: 1 + type: Transform + - uid: 22062 + components: + - pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 22063 + components: + - pos: 19.5,-10.5 + parent: 1 + type: Transform + - uid: 22067 + components: + - pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 22068 + components: + - pos: 13.5,13.5 + parent: 1 + type: Transform + - uid: 22076 + components: + - pos: 11.5,4.5 + parent: 1 + type: Transform + - uid: 22080 + components: + - pos: -7.5,-5.5 + parent: 1 + type: Transform + - uid: 22092 + components: + - pos: 28.5,-8.5 + parent: 1 + type: Transform + - uid: 22095 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-10.5 + parent: 1 + type: Transform + - uid: 22109 + components: + - pos: 44.5,-6.5 + parent: 1 + type: Transform + - uid: 22114 + components: + - rot: 3.141592653589793 rad + pos: 37.5,10.5 + parent: 1 + type: Transform + - uid: 22120 + components: + - pos: 44.5,9.5 + parent: 1 + type: Transform + - uid: 22131 + components: + - rot: 1.5707963267948966 rad + pos: 61.5,4.5 + parent: 1 + type: Transform + - uid: 22142 + components: + - pos: -24.5,20.5 + parent: 1 + type: Transform + - uid: 22143 + components: + - pos: 12.5,34.5 + parent: 1 + type: Transform + - uid: 22153 + components: + - pos: 11.5,24.5 + parent: 1 + type: Transform + - uid: 22156 + components: + - pos: -11.5,3.5 + parent: 1 + type: Transform + - uid: 22159 + components: + - pos: -16.5,10.5 + parent: 1 + type: Transform + - uid: 22160 + components: + - pos: -19.5,15.5 + parent: 1 + type: Transform + - uid: 22173 + components: + - pos: -33.5,4.5 + parent: 1 + type: Transform + - uid: 22174 + components: + - pos: -16.5,-3.5 + parent: 1 + type: Transform + - uid: 22179 + components: + - pos: -21.5,3.5 + parent: 1 + type: Transform + - uid: 22206 + components: + - rot: 3.141592653589793 rad + pos: -45.5,1.5 + parent: 1 + type: Transform + - uid: 22207 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-4.5 + parent: 1 + type: Transform + - uid: 22208 + components: + - rot: 3.141592653589793 rad + pos: -51.5,1.5 + parent: 1 + type: Transform + - uid: 22213 + components: + - pos: -43.5,11.5 + parent: 1 + type: Transform + - uid: 22214 + components: + - pos: -41.5,29.5 + parent: 1 + type: Transform + - uid: 22217 + components: + - pos: -64.5,1.5 + parent: 1 + type: Transform + - uid: 22224 + components: + - pos: -41.5,-28.5 + parent: 1 + type: Transform + - uid: 22225 + components: + - pos: -33.5,-19.5 + parent: 1 + type: Transform + - uid: 22231 + components: + - pos: -56.5,-1.5 + parent: 1 + type: Transform + - uid: 22243 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,35.5 + parent: 1 + type: Transform + - uid: 22252 + components: + - pos: -16.5,42.5 + parent: 1 + type: Transform + - uid: 22253 + components: + - pos: 40.5,45.5 + parent: 1 + type: Transform + - uid: 22259 + components: + - pos: 16.5,54.5 + parent: 1 + type: Transform + - uid: 22261 + components: + - pos: -2.5,42.5 + parent: 1 + type: Transform + - uid: 22262 + components: + - pos: 7.5,49.5 + parent: 1 + type: Transform + - uid: 22263 + components: + - pos: 15.5,49.5 + parent: 1 + type: Transform + - uid: 22264 + components: + - pos: 25.5,45.5 + parent: 1 + type: Transform + - uid: 22267 + components: + - pos: -11.5,46.5 + parent: 1 + type: Transform + - uid: 22324 + components: + - pos: 57.5,24.5 + parent: 1 + type: Transform + - uid: 22325 + components: + - pos: 57.5,-17.5 + parent: 1 + type: Transform + - uid: 22334 + components: + - pos: 83.5,4.5 + parent: 1 + type: Transform + - uid: 22337 + components: + - pos: 67.5,0.5 + parent: 1 + type: Transform + - uid: 22338 + components: + - pos: 64.5,10.5 + parent: 1 + type: Transform + - uid: 22342 + components: + - pos: 71.5,14.5 + parent: 1 + type: Transform + - uid: 22352 + components: + - pos: 66.5,-3.5 + parent: 1 + type: Transform + - uid: 22353 + components: + - pos: 65.5,-9.5 + parent: 1 + type: Transform + - uid: 22361 + components: + - pos: 74.5,-10.5 + parent: 1 + type: Transform + - uid: 22362 + components: + - pos: 79.5,-14.5 + parent: 1 + type: Transform + - uid: 22363 + components: + - pos: 62.5,-15.5 + parent: 1 + type: Transform + - uid: 22368 + components: + - pos: 76.5,-18.5 + parent: 1 + type: Transform + - uid: 22374 + components: + - pos: 75.5,-2.5 + parent: 1 + type: Transform + - uid: 22399 + components: + - pos: 81.5,-8.5 + parent: 1 + type: Transform + - uid: 22400 + components: + - pos: 86.5,-8.5 + parent: 1 + type: Transform + - uid: 22410 + components: + - rot: 3.141592653589793 rad + pos: 98.5,4.5 + parent: 1 + type: Transform + - uid: 22411 + components: + - rot: 3.141592653589793 rad + pos: 97.5,14.5 + parent: 1 + type: Transform + - uid: 22412 + components: + - rot: 3.141592653589793 rad + pos: 98.5,-7.5 + parent: 1 + type: Transform + - uid: 22413 + components: + - pos: 109.5,4.5 + parent: 1 + type: Transform + - uid: 22414 + components: + - pos: 101.5,11.5 + parent: 1 + type: Transform + - uid: 22418 + components: + - pos: 105.5,-2.5 + parent: 1 + type: Transform + - uid: 22438 + components: + - rot: 1.5707963267948966 rad + pos: 74.5,26.5 + parent: 1 + type: Transform + - uid: 22441 + components: + - rot: 1.5707963267948966 rad + pos: 83.5,15.5 + parent: 1 + type: Transform + - uid: 22442 + components: + - rot: 1.5707963267948966 rad + pos: 87.5,17.5 + parent: 1 + type: Transform + - uid: 23611 + components: + - pos: 41.5,-10.5 + parent: 1 + type: Transform + - uid: 24187 + components: + - pos: -4.5,19.5 + parent: 1 + type: Transform + - uid: 24188 + components: + - pos: 5.5,21.5 + parent: 1 + type: Transform + - uid: 24203 + components: + - pos: 42.5,19.5 + parent: 1 + type: Transform + - uid: 24211 + components: + - pos: 16.5,21.5 + parent: 1 + type: Transform + - uid: 25298 + components: + - pos: -62.5,-13.5 + parent: 1 + type: Transform + - uid: 25328 + components: + - pos: 61.5,21.5 + parent: 1 + type: Transform + - uid: 25542 + components: + - pos: -50.5,-15.5 + parent: 1 + type: Transform + - uid: 25552 + components: + - pos: -51.5,-22.5 + parent: 1 + type: Transform + - uid: 25557 + components: + - pos: -55.5,-27.5 + parent: 1 + type: Transform + - uid: 25670 + components: + - pos: -47.5,-38.5 + parent: 1 + type: Transform +- proto: AirTankFilled + entities: + - uid: 12467 + components: + - pos: 7.4634757,28.657206 + parent: 1 + type: Transform +- proto: AltarConvertMaint + entities: + - uid: 1271 + components: + - pos: 46.5,15.5 + parent: 1 + type: Transform +- proto: AltarSpawner + entities: + - uid: 953 + components: + - pos: -0.5,-44.5 + parent: 1 + type: Transform + - uid: 4588 + components: + - pos: 12.5,45.5 + parent: 1 + type: Transform +- proto: AlwaysPoweredSmallLightMaintenanceRed + entities: + - uid: 12081 + components: + - rot: -1.5707963267948966 rad + pos: 87.5,-20.5 + parent: 1 + type: Transform + - uid: 25397 + components: + - pos: -62.5,-8.5 + parent: 1 + type: Transform +- proto: AmeController + entities: + - uid: 5808 + components: + - pos: -46.5,-16.5 + parent: 1 + type: Transform +- proto: Amphora + entities: + - uid: 7301 + components: + - pos: 18.5,42.5 + parent: 1 + type: Transform + - solutions: + jar: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 120 + reagents: + - data: null + ReagentId: Diphenylmethylamine + Quantity: 25 + type: SolutionContainerManager + - uid: 7303 + components: + - pos: 11.5,45.5 + parent: 1 + type: Transform + - uid: 7304 + components: + - pos: 13.5,45.5 + parent: 1 + type: Transform +- proto: AnomalyLocator + entities: + - uid: 23835 + components: + - pos: -4.035168,39.577766 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 858 + components: + - pos: -2.5,13.5 + parent: 1 + type: Transform + - uid: 3587 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-12.5 + parent: 1 + type: Transform + - uid: 3760 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,-29.5 + parent: 1 + type: Transform + - uid: 6212 + components: + - pos: 99.5,8.5 + parent: 1 + type: Transform + - uid: 6720 + components: + - pos: 59.5,15.5 + parent: 1 + type: Transform + - uid: 14617 + components: + - pos: 72.5,23.5 + parent: 1 + type: Transform + - uid: 17598 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,11.5 + parent: 1 + type: Transform + - uid: 17599 + components: + - pos: -53.5,-4.5 + parent: 1 + type: Transform + - uid: 17875 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,0.5 + parent: 1 + type: Transform + - uid: 17919 + components: + - rot: 3.141592653589793 rad + pos: -51.5,36.5 + parent: 1 + type: Transform + - uid: 18120 + components: + - pos: 51.5,-26.5 + parent: 1 + type: Transform + - uid: 18303 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,44.5 + parent: 1 + type: Transform + - uid: 18702 + components: + - pos: 49.5,40.5 + parent: 1 + type: Transform + - uid: 18838 + components: + - pos: 90.5,23.5 + parent: 1 + type: Transform + - uid: 18842 + components: + - rot: -1.5707963267948966 rad + pos: 88.5,20.5 + parent: 1 + type: Transform + - uid: 19111 + components: + - pos: 60.5,6.5 + parent: 1 + type: Transform + - uid: 19177 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,21.5 + parent: 1 + type: Transform + - uid: 19181 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,8.5 + parent: 1 + type: Transform + - uid: 19182 + components: + - pos: -18.5,13.5 + parent: 1 + type: Transform + - uid: 19502 + components: + - pos: 28.5,27.5 + parent: 1 + type: Transform + - uid: 19504 + components: + - pos: 45.5,10.5 + parent: 1 + type: Transform + - uid: 19506 + components: + - pos: 17.5,26.5 + parent: 1 + type: Transform + - uid: 19507 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,28.5 + parent: 1 + type: Transform + - uid: 19626 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,21.5 + parent: 1 + type: Transform + - uid: 19932 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-35.5 + parent: 1 + type: Transform + - uid: 20209 + components: + - rot: -1.5707963267948966 rad + pos: 91.5,-12.5 + parent: 1 + type: Transform + - uid: 20210 + components: + - rot: 1.5707963267948966 rad + pos: 61.5,0.5 + parent: 1 + type: Transform + - uid: 20213 + components: + - rot: 3.141592653589793 rad + pos: 89.5,-10.5 + parent: 1 + type: Transform + - uid: 20513 + components: + - rot: 1.5707963267948966 rad + pos: 107.5,-4.5 + parent: 1 + type: Transform + - uid: 20717 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,0.5 + parent: 1 + type: Transform + - uid: 20718 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-16.5 + parent: 1 + type: Transform + - uid: 21027 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-17.5 + parent: 1 + type: Transform + - uid: 21028 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-21.5 + parent: 1 + type: Transform + - uid: 21083 + components: + - pos: 40.5,-9.5 + parent: 1 + type: Transform + - uid: 21085 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-12.5 + parent: 1 + type: Transform + - uid: 21086 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-16.5 + parent: 1 + type: Transform + - uid: 21393 + components: + - pos: 29.5,5.5 + parent: 1 + type: Transform + - uid: 22061 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 24014 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-40.5 + parent: 1 + type: Transform + - uid: 24066 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-40.5 + parent: 1 + type: Transform + - uid: 25266 + components: + - pos: 105.5,29.5 + parent: 1 + type: Transform +- proto: APCConstructed + entities: + - uid: 3008 + components: + - rot: 3.141592653589793 rad + pos: 49.5,25.5 + parent: 1 + type: Transform + - uid: 24115 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-41.5 + parent: 1 + type: Transform +- proto: APCElectronics + entities: + - uid: 4734 + components: + - pos: 54.49126,-1.3268784 + parent: 1 + type: Transform + - uid: 16104 + components: + - rot: 1.5707963267948966 rad + pos: 33.54619,34.61383 + parent: 1 + type: Transform + - uid: 16312 + components: + - pos: 29.522861,25.64341 + parent: 1 + type: Transform +- proto: APCHighCapacity + entities: + - uid: 1289 + components: + - pos: 18.5,-45.5 + parent: 1 + type: Transform + - uid: 2553 + components: + - pos: -44.5,3.5 + parent: 1 + type: Transform + - uid: 9978 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-29.5 + parent: 1 + type: Transform + - uid: 9981 + components: + - pos: -46.5,-13.5 + parent: 1 + type: Transform + - uid: 10809 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 1 + type: Transform + - uid: 17788 + components: + - pos: -38.5,-19.5 + parent: 1 + type: Transform + - uid: 17918 + components: + - pos: -53.5,36.5 + parent: 1 + type: Transform + - uid: 18118 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-42.5 + parent: 1 + type: Transform + - uid: 18300 + components: + - rot: 3.141592653589793 rad + pos: -8.5,38.5 + parent: 1 + type: Transform + - uid: 18301 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,44.5 + parent: 1 + type: Transform + - uid: 18835 + components: + - rot: 3.141592653589793 rad + pos: 81.5,13.5 + parent: 1 + type: Transform + - uid: 18836 + components: + - rot: 3.141592653589793 rad + pos: 71.5,9.5 + parent: 1 + type: Transform + - uid: 19659 + components: + - rot: 3.141592653589793 rad + pos: 1.5,22.5 + parent: 1 + type: Transform + - uid: 20212 + components: + - pos: 75.5,-7.5 + parent: 1 + type: Transform + - uid: 20214 + components: + - rot: 3.141592653589793 rad + pos: 79.5,-16.5 + parent: 1 + type: Transform + - uid: 20514 + components: + - pos: 104.5,2.5 + parent: 1 + type: Transform + - uid: 20719 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 21084 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-6.5 + parent: 1 + type: Transform + - uid: 21499 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,20.5 + parent: 1 + type: Transform +- proto: APCHyperCapacity + entities: + - uid: 20515 + components: + - rot: 3.141592653589793 rad + pos: 110.5,0.5 + parent: 1 + type: Transform + - uid: 21033 + components: + - rot: 1.5707963267948966 rad + pos: 126.5,2.5 + parent: 1 + type: Transform +- proto: APCSuperCapacity + entities: + - uid: 4701 + components: + - rot: 3.141592653589793 rad + pos: 0.5,38.5 + parent: 1 + type: Transform + - uid: 13130 + components: + - pos: 14.5,47.5 + parent: 1 + type: Transform + - uid: 17563 + components: + - pos: -55.5,1.5 + parent: 1 + type: Transform + - uid: 20211 + components: + - rot: 1.5707963267948966 rad + pos: 65.5,-14.5 + parent: 1 + type: Transform + - uid: 24126 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-29.5 + parent: 1 + type: Transform + - uid: 24349 + components: + - rot: 1.5707963267948966 rad + pos: -77.5,1.5 + parent: 1 + type: Transform +- proto: APECircuitboard + entities: + - uid: 7338 + components: + - pos: 8.613411,50.73107 + parent: 1 + type: Transform +- proto: AppraisalTool + entities: + - uid: 1199 + components: + - rot: 1.5707963267948966 rad + pos: -5.4920344,17.570217 + parent: 1 + type: Transform + - uid: 6763 + components: + - pos: -40.951073,-30.384914 + parent: 1 + type: Transform + - uid: 16137 + components: + - rot: 3.141592653589793 rad + pos: 49.46957,-30.711737 + parent: 1 + type: Transform +- proto: Ashtray + entities: + - uid: 25773 + components: + - pos: 30.585068,16.052443 + parent: 1 + type: Transform + - uid: 25774 + components: + - pos: 31.626734,18.387398 + parent: 1 + type: Transform + - uid: 25775 + components: + - pos: 38.67419,20.663368 + parent: 1 + type: Transform + - uid: 25776 + components: + - pos: 41.310295,15.583921 + parent: 1 + type: Transform + - uid: 25777 + components: + - pos: 42.935295,16.740976 + parent: 1 + type: Transform + - uid: 25778 + components: + - pos: 35.73478,24.396818 + parent: 1 + type: Transform + - uid: 25779 + components: + - pos: 23.454472,21.61688 + parent: 1 + type: Transform + - uid: 25780 + components: + - pos: 13.730137,17.491922 + parent: 1 + type: Transform + - uid: 25781 + components: + - pos: 36.656864,44.655434 + parent: 1 + type: Transform + - uid: 25782 + components: + - pos: -25.56227,45.884315 + parent: 1 + type: Transform + - uid: 25783 + components: + - pos: -38.78963,9.518167 + parent: 1 + type: Transform + - uid: 25784 + components: + - pos: -58.210274,-27.303349 + parent: 1 + type: Transform + - uid: 25785 + components: + - pos: -24.182903,-35.30332 + parent: 1 + type: Transform + - uid: 25786 + components: + - pos: 6.5534596,-14.907523 + parent: 1 + type: Transform + - uid: 25787 + components: + - pos: 29.936884,-34.536423 + parent: 1 + type: Transform + - uid: 25788 + components: + - pos: 44.342403,0.13044417 + parent: 1 + type: Transform + - uid: 25789 + components: + - pos: 107.27609,10.146566 + parent: 1 + type: Transform + - uid: 25790 + components: + - pos: 89.22352,24.777706 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 1432 + components: + - pos: 0.5,18.5 + parent: 1 + type: Transform + - uid: 1433 + components: + - pos: 2.5,20.5 + parent: 1 + type: Transform + - uid: 6748 + components: + - pos: -68.5,10.5 + parent: 1 + type: Transform + - uid: 6753 + components: + - pos: -68.5,-2.5 + parent: 1 + type: Transform + - uid: 9167 + components: + - pos: 1.5,-52.5 + parent: 1 + type: Transform + - uid: 9168 + components: + - pos: 8.5,-52.5 + parent: 1 + type: Transform + - uid: 9217 + components: + - pos: 17.5,-53.5 + parent: 1 + type: Transform + - uid: 9218 + components: + - pos: 19.5,-53.5 + parent: 1 + type: Transform + - uid: 9219 + components: + - pos: 25.5,-53.5 + parent: 1 + type: Transform + - uid: 9220 + components: + - pos: 27.5,-53.5 + parent: 1 + type: Transform + - uid: 9810 + components: + - pos: 126.5,3.5 + parent: 1 + type: Transform + - uid: 9811 + components: + - pos: 126.5,4.5 + parent: 1 + type: Transform + - uid: 11601 + components: + - pos: 66.5,-23.5 + parent: 1 + type: Transform + - uid: 11602 + components: + - pos: 77.5,-23.5 + parent: 1 + type: Transform + - uid: 11674 + components: + - pos: 12.5,58.5 + parent: 1 + type: Transform + - uid: 11686 + components: + - pos: 32.5,57.5 + parent: 1 + type: Transform + - uid: 11687 + components: + - pos: -8.5,57.5 + parent: 1 + type: Transform + - uid: 17346 + components: + - pos: 63.5,-33.5 + parent: 1 + type: Transform + - uid: 17347 + components: + - pos: 64.5,-33.5 + parent: 1 + type: Transform + - uid: 23803 + components: + - pos: -18.5,-13.5 + parent: 1 + type: Transform + - uid: 25661 + components: + - pos: -52.5,-38.5 + parent: 1 + type: Transform + - uid: 25662 + components: + - pos: -52.5,-39.5 + parent: 1 + type: Transform + - uid: 25663 + components: + - pos: -52.5,-41.5 + parent: 1 + type: Transform + - uid: 25664 + components: + - pos: -52.5,-42.5 + parent: 1 + type: Transform +- proto: AtmosFixBlockerMarker + entities: + - uid: 10854 + components: + - pos: -49.5,30.5 + parent: 1 + type: Transform + - uid: 10855 + components: + - pos: -49.5,31.5 + parent: 1 + type: Transform + - uid: 10856 + components: + - pos: -49.5,32.5 + parent: 1 + type: Transform + - uid: 10857 + components: + - pos: -45.5,30.5 + parent: 1 + type: Transform + - uid: 10858 + components: + - pos: -45.5,31.5 + parent: 1 + type: Transform + - uid: 10859 + components: + - pos: -45.5,32.5 + parent: 1 + type: Transform + - uid: 10860 + components: + - pos: -43.5,30.5 + parent: 1 + type: Transform + - uid: 10861 + components: + - pos: -43.5,31.5 + parent: 1 + type: Transform + - uid: 10862 + components: + - pos: -43.5,32.5 + parent: 1 + type: Transform + - uid: 25720 + components: + - pos: -56.5,22.5 + parent: 1 + type: Transform + - uid: 25721 + components: + - pos: -55.5,22.5 + parent: 1 + type: Transform + - uid: 25722 + components: + - pos: -54.5,22.5 + parent: 1 + type: Transform + - uid: 25723 + components: + - pos: -53.5,22.5 + parent: 1 + type: Transform +- proto: AtmosFixFreezerMarker + entities: + - uid: 722 + components: + - pos: -17.5,-16.5 + parent: 1 + type: Transform + - uid: 723 + components: + - pos: -15.5,-17.5 + parent: 1 + type: Transform + - uid: 1434 + components: + - pos: -1.5,21.5 + parent: 1 + type: Transform + - uid: 1437 + components: + - pos: -1.5,20.5 + parent: 1 + type: Transform + - uid: 1465 + components: + - pos: -1.5,19.5 + parent: 1 + type: Transform + - uid: 1466 + components: + - pos: -0.5,21.5 + parent: 1 + type: Transform + - uid: 1467 + components: + - pos: -0.5,20.5 + parent: 1 + type: Transform + - uid: 1468 + components: + - pos: -0.5,19.5 + parent: 1 + type: Transform + - uid: 1469 + components: + - pos: 0.5,21.5 + parent: 1 + type: Transform + - uid: 1470 + components: + - pos: 0.5,20.5 + parent: 1 + type: Transform + - uid: 1471 + components: + - pos: 0.5,19.5 + parent: 1 + type: Transform + - uid: 1472 + components: + - pos: 1.5,21.5 + parent: 1 + type: Transform + - uid: 1473 + components: + - pos: 1.5,20.5 + parent: 1 + type: Transform + - uid: 1474 + components: + - pos: 1.5,19.5 + parent: 1 + type: Transform + - uid: 1817 + components: + - pos: -17.5,-15.5 + parent: 1 + type: Transform + - uid: 1818 + components: + - pos: -16.5,-16.5 + parent: 1 + type: Transform + - uid: 9812 + components: + - pos: 126.5,7.5 + parent: 1 + type: Transform + - uid: 9813 + components: + - pos: 126.5,6.5 + parent: 1 + type: Transform + - uid: 9814 + components: + - pos: 127.5,7.5 + parent: 1 + type: Transform + - uid: 9815 + components: + - pos: 127.5,6.5 + parent: 1 + type: Transform + - uid: 9816 + components: + - pos: 128.5,7.5 + parent: 1 + type: Transform + - uid: 9817 + components: + - pos: 128.5,6.5 + parent: 1 + type: Transform + - uid: 9818 + components: + - pos: 129.5,7.5 + parent: 1 + type: Transform + - uid: 9819 + components: + - pos: 129.5,6.5 + parent: 1 + type: Transform + - uid: 9820 + components: + - pos: 130.5,7.5 + parent: 1 + type: Transform + - uid: 9821 + components: + - pos: 130.5,6.5 + parent: 1 + type: Transform + - uid: 9822 + components: + - pos: 127.5,5.5 + parent: 1 + type: Transform + - uid: 9823 + components: + - pos: 127.5,4.5 + parent: 1 + type: Transform + - uid: 9824 + components: + - pos: 127.5,3.5 + parent: 1 + type: Transform + - uid: 9825 + components: + - pos: 127.5,2.5 + parent: 1 + type: Transform + - uid: 9826 + components: + - pos: 127.5,1.5 + parent: 1 + type: Transform + - uid: 9827 + components: + - pos: 127.5,0.5 + parent: 1 + type: Transform + - uid: 9828 + components: + - pos: 128.5,5.5 + parent: 1 + type: Transform + - uid: 9829 + components: + - pos: 128.5,4.5 + parent: 1 + type: Transform + - uid: 9830 + components: + - pos: 128.5,3.5 + parent: 1 + type: Transform + - uid: 9831 + components: + - pos: 128.5,2.5 + parent: 1 + type: Transform + - uid: 9832 + components: + - pos: 128.5,1.5 + parent: 1 + type: Transform + - uid: 9833 + components: + - pos: 128.5,0.5 + parent: 1 + type: Transform + - uid: 9834 + components: + - pos: 129.5,5.5 + parent: 1 + type: Transform + - uid: 9835 + components: + - pos: 129.5,4.5 + parent: 1 + type: Transform + - uid: 9836 + components: + - pos: 129.5,3.5 + parent: 1 + type: Transform + - uid: 9837 + components: + - pos: 129.5,2.5 + parent: 1 + type: Transform + - uid: 9838 + components: + - pos: 129.5,1.5 + parent: 1 + type: Transform + - uid: 9839 + components: + - pos: 129.5,0.5 + parent: 1 + type: Transform + - uid: 9840 + components: + - pos: 130.5,5.5 + parent: 1 + type: Transform + - uid: 9841 + components: + - pos: 130.5,4.5 + parent: 1 + type: Transform + - uid: 9842 + components: + - pos: 130.5,3.5 + parent: 1 + type: Transform + - uid: 9843 + components: + - pos: 130.5,2.5 + parent: 1 + type: Transform + - uid: 9844 + components: + - pos: 130.5,1.5 + parent: 1 + type: Transform + - uid: 9845 + components: + - pos: 130.5,0.5 + parent: 1 + type: Transform + - uid: 9846 + components: + - pos: 126.5,1.5 + parent: 1 + type: Transform + - uid: 9847 + components: + - pos: 126.5,0.5 + parent: 1 + type: Transform + - uid: 18812 + components: + - pos: -17.5,-11.5 + parent: 1 + type: Transform + - uid: 18813 + components: + - pos: -17.5,-12.5 + parent: 1 + type: Transform + - uid: 18814 + components: + - pos: -17.5,-13.5 + parent: 1 + type: Transform + - uid: 18815 + components: + - pos: -17.5,-14.5 + parent: 1 + type: Transform + - uid: 18816 + components: + - pos: -16.5,-11.5 + parent: 1 + type: Transform + - uid: 18817 + components: + - pos: -16.5,-12.5 + parent: 1 + type: Transform + - uid: 18818 + components: + - pos: -16.5,-13.5 + parent: 1 + type: Transform + - uid: 18819 + components: + - pos: -16.5,-14.5 + parent: 1 + type: Transform + - uid: 18820 + components: + - pos: -15.5,-11.5 + parent: 1 + type: Transform + - uid: 18821 + components: + - pos: -15.5,-12.5 + parent: 1 + type: Transform + - uid: 18822 + components: + - pos: -15.5,-13.5 + parent: 1 + type: Transform + - uid: 18823 + components: + - pos: -15.5,-14.5 + parent: 1 + type: Transform + - uid: 18824 + components: + - pos: -14.5,-14.5 + parent: 1 + type: Transform + - uid: 18825 + components: + - pos: -14.5,-15.5 + parent: 1 + type: Transform + - uid: 18826 + components: + - pos: -14.5,-16.5 + parent: 1 + type: Transform + - uid: 18827 + components: + - pos: -14.5,-17.5 + parent: 1 + type: Transform + - uid: 18828 + components: + - pos: -15.5,-15.5 + parent: 1 + type: Transform + - uid: 18829 + components: + - pos: -16.5,-15.5 + parent: 1 + type: Transform + - uid: 18830 + components: + - pos: -15.5,-16.5 + parent: 1 + type: Transform +- proto: AtmosFixNitrogenMarker + entities: + - uid: 10845 + components: + - pos: -51.5,30.5 + parent: 1 + type: Transform + - uid: 10846 + components: + - pos: -51.5,31.5 + parent: 1 + type: Transform + - uid: 10847 + components: + - pos: -51.5,32.5 + parent: 1 + type: Transform +- proto: AtmosFixOxygenMarker + entities: + - uid: 10848 + components: + - pos: -53.5,30.5 + parent: 1 + type: Transform + - uid: 10849 + components: + - pos: -53.5,31.5 + parent: 1 + type: Transform + - uid: 10850 + components: + - pos: -53.5,32.5 + parent: 1 + type: Transform +- proto: AtmosFixPlasmaMarker + entities: + - uid: 10851 + components: + - pos: -47.5,30.5 + parent: 1 + type: Transform + - uid: 10852 + components: + - pos: -47.5,31.5 + parent: 1 + type: Transform + - uid: 10853 + components: + - pos: -47.5,32.5 + parent: 1 + type: Transform +- proto: Autolathe + entities: + - uid: 1920 + components: + - pos: 0.5,-17.5 + parent: 1 + type: Transform + - uid: 3242 + components: + - pos: -46.5,4.5 + parent: 1 + type: Transform + - uid: 4735 + components: + - pos: 55.5,-1.5 + parent: 1 + type: Transform + - uid: 7324 + components: + - pos: -6.5,-9.5 + parent: 1 + type: Transform +- proto: BananaPhoneInstrument + entities: + - uid: 12958 + components: + - pos: 23.627441,-35.278244 + parent: 1 + type: Transform +- proto: BananaSeeds + entities: + - uid: 12959 + components: + - rot: 1.5707963267948966 rad + pos: 23.408691,-35.757744 + parent: 1 + type: Transform +- proto: BannerCargo + entities: + - uid: 2049 + components: + - pos: -11.5,2.5 + parent: 1 + type: Transform + - uid: 2050 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform +- proto: BannerEngineering + entities: + - uid: 2053 + components: + - pos: -34.5,2.5 + parent: 1 + type: Transform + - uid: 2054 + components: + - pos: -34.5,5.5 + parent: 1 + type: Transform +- proto: BannerMedical + entities: + - uid: 2057 + components: + - pos: 61.5,2.5 + parent: 1 + type: Transform + - uid: 2058 + components: + - pos: 71.5,2.5 + parent: 1 + type: Transform +- proto: BannerNanotrasen + entities: + - uid: 2051 + components: + - pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 2052 + components: + - pos: 10.5,-9.5 + parent: 1 + type: Transform + - uid: 6263 + components: + - pos: 106.003006,12.135057 + parent: 1 + type: Transform + - uid: 6264 + components: + - pos: 103.95092,12.114209 + parent: 1 + type: Transform + - uid: 7062 + components: + - pos: 92.5,5.5 + parent: 1 + type: Transform + - uid: 7063 + components: + - pos: 92.5,2.5 + parent: 1 + type: Transform +- proto: BannerRevolution + entities: + - uid: 16777 + components: + - pos: -11.5,-23.5 + parent: 1 + type: Transform +- proto: BannerScience + entities: + - uid: 2059 + components: + - pos: 10.5,35.5 + parent: 1 + type: Transform + - uid: 2060 + components: + - pos: 13.5,35.5 + parent: 1 + type: Transform +- proto: BannerSecurity + entities: + - uid: 2055 + components: + - pos: 61.5,5.5 + parent: 1 + type: Transform + - uid: 2056 + components: + - pos: 67.5,5.5 + parent: 1 + type: Transform +- proto: BarberScissors + entities: + - uid: 25760 + components: + - pos: 5.850633,-14.620158 + parent: 1 + type: Transform + - uid: 25761 + components: + - pos: 5.913133,-14.682701 + parent: 1 + type: Transform +- proto: Barricade + entities: + - uid: 547 + components: + - pos: -29.5,-31.5 + parent: 1 + type: Transform + - uid: 3709 + components: + - pos: -14.5,-46.5 + parent: 1 + type: Transform + - uid: 11381 + components: + - pos: 0.5,-41.5 + parent: 1 + type: Transform + - uid: 11382 + components: + - pos: 1.5,-42.5 + parent: 1 + type: Transform + - uid: 11383 + components: + - pos: 0.5,-42.5 + parent: 1 + type: Transform + - uid: 11384 + components: + - pos: -0.5,-41.5 + parent: 1 + type: Transform + - uid: 11385 + components: + - pos: -2.5,-42.5 + parent: 1 + type: Transform + - uid: 11386 + components: + - pos: -2.5,-44.5 + parent: 1 + type: Transform + - uid: 11538 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-34.5 + parent: 1 + type: Transform + - uid: 11539 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-34.5 + parent: 1 + type: Transform + - uid: 11540 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-33.5 + parent: 1 + type: Transform + - uid: 11541 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-34.5 + parent: 1 + type: Transform + - uid: 12287 + components: + - pos: -27.5,-35.5 + parent: 1 + type: Transform + - uid: 13514 + components: + - pos: 93.5,15.5 + parent: 1 + type: Transform + - uid: 13920 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-38.5 + parent: 1 + type: Transform + - uid: 15900 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,45.5 + parent: 1 + type: Transform + - uid: 15901 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,47.5 + parent: 1 + type: Transform + - uid: 15923 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,42.5 + parent: 1 + type: Transform + - uid: 15924 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,41.5 + parent: 1 + type: Transform + - uid: 16009 + components: + - pos: 46.5,17.5 + parent: 1 + type: Transform + - uid: 16678 + components: + - pos: 50.5,-6.5 + parent: 1 + type: Transform + - uid: 16679 + components: + - pos: 50.5,-4.5 + parent: 1 + type: Transform + - uid: 23478 + components: + - pos: -10.5,29.5 + parent: 1 + type: Transform + - uid: 23479 + components: + - pos: -11.5,29.5 + parent: 1 + type: Transform + - uid: 23492 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,27.5 + parent: 1 + type: Transform + - uid: 24768 + components: + - pos: -61.5,-17.5 + parent: 1 + type: Transform +- proto: BarSign + entities: + - uid: 7426 + components: + - pos: 32.5,13.5 + parent: 1 + type: Transform +- proto: BarSignKlubSkub + entities: + - uid: 5706 + components: + - pos: 27.5,-12.5 + parent: 1 + type: Transform +- proto: BaseComputer + entities: + - uid: 9238 + components: + - pos: -4.5,-32.5 + parent: 1 + type: Transform + - uid: 12399 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,7.5 + parent: 1 + type: Transform + - uid: 15987 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,38.5 + parent: 1 + type: Transform + - uid: 15988 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,38.5 + parent: 1 + type: Transform +- proto: Basketball + entities: + - uid: 16284 + components: + - rot: 1.5707963267948966 rad + pos: 81.55814,-20.659416 + parent: 1 + type: Transform +- proto: BassGuitarInstrument + entities: + - uid: 7372 + components: + - pos: 28.281532,-17.469986 + parent: 1 + type: Transform +- proto: Beaker + entities: + - uid: 1206 + components: + - pos: -6.2821364,18.243448 + parent: 1 + type: Transform + - uid: 7287 + components: + - pos: 21.030973,39.822098 + parent: 1 + type: Transform + - uid: 12296 + components: + - flags: InContainer + type: MetaData + - parent: 12295 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 12297 + components: + - flags: InContainer + type: MetaData + - parent: 12295 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 15970 + components: + - pos: 25.291883,48.548103 + parent: 1 + type: Transform + - solutions: + beaker: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 50 + reagents: + - data: null + ReagentId: SoyLatte + Quantity: 20 + type: SolutionContainerManager +- proto: Bed + entities: + - uid: 1026 + components: + - pos: 1.5,25.5 + parent: 1 + type: Transform + - uid: 1057 + components: + - pos: -5.5,24.5 + parent: 1 + type: Transform + - uid: 1958 + components: + - pos: -4.5,-16.5 + parent: 1 + type: Transform + - uid: 2923 + components: + - pos: 106.5,-3.5 + parent: 1 + type: Transform + - uid: 3320 + components: + - pos: 16.5,16.5 + parent: 1 + type: Transform + - uid: 4748 + components: + - pos: 5.5,49.5 + parent: 1 + type: Transform + - uid: 5250 + components: + - pos: 38.5,17.5 + parent: 1 + type: Transform + - uid: 5260 + components: + - pos: 20.5,22.5 + parent: 1 + type: Transform + - uid: 5363 + components: + - pos: 63.5,29.5 + parent: 1 + type: Transform + - uid: 5364 + components: + - pos: 63.5,24.5 + parent: 1 + type: Transform + - uid: 5365 + components: + - pos: 66.5,24.5 + parent: 1 + type: Transform + - uid: 5366 + components: + - pos: 66.5,29.5 + parent: 1 + type: Transform + - uid: 5367 + components: + - pos: 69.5,29.5 + parent: 1 + type: Transform + - uid: 5710 + components: + - pos: 81.5,-4.5 + parent: 1 + type: Transform + - uid: 6022 + components: + - pos: 87.5,13.5 + parent: 1 + type: Transform + - uid: 6323 + components: + - pos: -43.5,14.5 + parent: 1 + type: Transform + - uid: 6324 + components: + - pos: -39.5,14.5 + parent: 1 + type: Transform + - uid: 6544 + components: + - pos: -58.5,-3.5 + parent: 1 + type: Transform + - uid: 6699 + components: + - pos: -60.5,-21.5 + parent: 1 + type: Transform + - uid: 6700 + components: + - pos: -61.5,-23.5 + parent: 1 + type: Transform + - uid: 6701 + components: + - pos: -61.5,-24.5 + parent: 1 + type: Transform + - uid: 7112 + components: + - pos: 89.5,13.5 + parent: 1 + type: Transform + - uid: 7173 + components: + - pos: 63.5,17.5 + parent: 1 + type: Transform + - uid: 7174 + components: + - pos: 67.5,17.5 + parent: 1 + type: Transform + - uid: 7238 + components: + - pos: 30.5,42.5 + parent: 1 + type: Transform + - uid: 7239 + components: + - pos: 30.5,46.5 + parent: 1 + type: Transform + - uid: 7244 + components: + - pos: 31.5,39.5 + parent: 1 + type: Transform + - uid: 7424 + components: + - pos: -3.5,-38.5 + parent: 1 + type: Transform + - uid: 7425 + components: + - pos: 3.5,-36.5 + parent: 1 + type: Transform + - uid: 7445 + components: + - pos: 18.5,50.5 + parent: 1 + type: Transform + - uid: 7464 + components: + - pos: 3.5,-32.5 + parent: 1 + type: Transform + - uid: 7467 + components: + - pos: -5.5,-34.5 + parent: 1 + type: Transform + - uid: 7468 + components: + - pos: -6.5,-39.5 + parent: 1 + type: Transform + - uid: 7640 + components: + - pos: 82.5,-6.5 + parent: 1 + type: Transform + - uid: 9449 + components: + - pos: 28.5,-32.5 + parent: 1 + type: Transform + - uid: 9450 + components: + - pos: 32.5,-32.5 + parent: 1 + type: Transform + - uid: 12366 + components: + - pos: -36.5,-25.5 + parent: 1 + type: Transform + - uid: 12559 + components: + - pos: -4.5,-15.5 + parent: 1 + type: Transform + - uid: 12911 + components: + - pos: 26.5,-37.5 + parent: 1 + type: Transform + - uid: 12967 + components: + - pos: 20.5,-33.5 + parent: 1 + type: Transform + - uid: 16573 + components: + - pos: 51.5,28.5 + parent: 1 + type: Transform + - uid: 22775 + components: + - pos: -20.5,19.5 + parent: 1 + type: Transform + - uid: 25299 + components: + - pos: 4.5,-9.5 + parent: 1 + type: Transform +- proto: BedsheetBlack + entities: + - uid: 12368 + components: + - pos: -36.5,-25.5 + parent: 1 + type: Transform +- proto: BedsheetBrigmedic + entities: + - uid: 25184 + components: + - pos: 77.5,8.5 + parent: 1 + type: Transform +- proto: BedsheetCaptain + entities: + - uid: 5345 + components: + - pos: 106.5,-3.5 + parent: 1 + type: Transform +- proto: BedsheetCE + entities: + - uid: 6547 + components: + - pos: -58.5,-3.5 + parent: 1 + type: Transform +- proto: BedsheetClown + entities: + - uid: 12912 + components: + - pos: 26.5,-37.5 + parent: 1 + type: Transform +- proto: BedsheetCMO + entities: + - uid: 7651 + components: + - pos: 82.5,-6.5 + parent: 1 + type: Transform +- proto: BedsheetCult + entities: + - uid: 7446 + components: + - pos: 18.5,50.5 + parent: 1 + type: Transform +- proto: BedsheetGreen + entities: + - uid: 60 + components: + - pos: 91.5,-5.5 + parent: 1 + type: Transform + - uid: 62 + components: + - pos: 88.5,-6.5 + parent: 1 + type: Transform + - uid: 2762 + components: + - pos: 92.5,-6.5 + parent: 1 + type: Transform + - uid: 2842 + components: + - pos: 89.5,-5.5 + parent: 1 + type: Transform +- proto: BedsheetIan + entities: + - uid: 25300 + components: + - pos: 4.5,-9.5 + parent: 1 + type: Transform +- proto: BedsheetMedical + entities: + - uid: 3165 + components: + - pos: 60.5,-7.5 + parent: 1 + type: Transform + - uid: 5690 + components: + - pos: 60.5,-8.5 + parent: 1 + type: Transform + - uid: 5691 + components: + - pos: 60.5,-9.5 + parent: 1 + type: Transform + - uid: 5692 + components: + - pos: 60.5,-10.5 + parent: 1 + type: Transform + - uid: 6858 + components: + - pos: -20.5,10.5 + parent: 1 + type: Transform + - uid: 6859 + components: + - pos: -20.5,11.5 + parent: 1 + type: Transform + - uid: 6860 + components: + - pos: -20.5,12.5 + parent: 1 + type: Transform +- proto: BedsheetMime + entities: + - uid: 12968 + components: + - pos: 20.5,-33.5 + parent: 1 + type: Transform +- proto: BedsheetOrange + entities: + - uid: 5368 + components: + - rot: 1.5707963267948966 rad + pos: 63.5,29.5 + parent: 1 + type: Transform + - uid: 5369 + components: + - rot: 1.5707963267948966 rad + pos: 63.5,24.5 + parent: 1 + type: Transform + - uid: 5370 + components: + - rot: 1.5707963267948966 rad + pos: 66.5,24.5 + parent: 1 + type: Transform + - uid: 5371 + components: + - rot: 1.5707963267948966 rad + pos: 66.5,29.5 + parent: 1 + type: Transform + - uid: 5372 + components: + - rot: 1.5707963267948966 rad + pos: 69.5,29.5 + parent: 1 + type: Transform + - uid: 7175 + components: + - pos: 63.5,17.5 + parent: 1 + type: Transform + - uid: 7176 + components: + - pos: 67.5,17.5 + parent: 1 + type: Transform +- proto: BedsheetQM + entities: + - uid: 6687 + components: + - pos: -60.5,-21.5 + parent: 1 + type: Transform +- proto: BedsheetRD + entities: + - uid: 4749 + components: + - pos: 5.5,49.5 + parent: 1 + type: Transform +- proto: BedsheetSpawner + entities: + - uid: 25 + components: + - pos: -4.5,-16.5 + parent: 1 + type: Transform + - uid: 864 + components: + - pos: 1.5,25.5 + parent: 1 + type: Transform + - uid: 1058 + components: + - pos: -5.5,24.5 + parent: 1 + type: Transform + - uid: 2273 + components: + - pos: 16.5,16.5 + parent: 1 + type: Transform + - uid: 2803 + components: + - pos: 38.5,17.5 + parent: 1 + type: Transform + - uid: 3307 + components: + - pos: 20.5,22.5 + parent: 1 + type: Transform + - uid: 5711 + components: + - pos: 81.5,-4.5 + parent: 1 + type: Transform + - uid: 6326 + components: + - pos: -43.5,14.5 + parent: 1 + type: Transform + - uid: 6327 + components: + - pos: -39.5,14.5 + parent: 1 + type: Transform + - uid: 6688 + components: + - pos: -61.5,-23.5 + parent: 1 + type: Transform + - uid: 6777 + components: + - pos: -61.5,-24.5 + parent: 1 + type: Transform + - uid: 7115 + components: + - pos: 89.5,13.5 + parent: 1 + type: Transform + - uid: 7120 + components: + - pos: 87.5,13.5 + parent: 1 + type: Transform + - uid: 7240 + components: + - pos: 30.5,46.5 + parent: 1 + type: Transform + - uid: 7241 + components: + - pos: 30.5,42.5 + parent: 1 + type: Transform + - uid: 7253 + components: + - pos: 31.5,39.5 + parent: 1 + type: Transform + - uid: 7573 + components: + - pos: -5.5,-34.5 + parent: 1 + type: Transform + - uid: 7687 + components: + - pos: -6.5,-39.5 + parent: 1 + type: Transform + - uid: 7766 + components: + - pos: -3.5,-38.5 + parent: 1 + type: Transform + - uid: 7976 + components: + - pos: 3.5,-36.5 + parent: 1 + type: Transform + - uid: 7977 + components: + - pos: 3.5,-32.5 + parent: 1 + type: Transform + - uid: 9451 + components: + - pos: 28.5,-32.5 + parent: 1 + type: Transform + - uid: 9452 + components: + - pos: 32.5,-32.5 + parent: 1 + type: Transform + - uid: 16340 + components: + - pos: 29.5,-27.5 + parent: 1 + type: Transform + - uid: 16574 + components: + - pos: 51.5,28.5 + parent: 1 + type: Transform + - uid: 21000 + components: + - pos: -4.5,-15.5 + parent: 1 + type: Transform + - uid: 22776 + components: + - pos: -20.5,19.5 + parent: 1 + type: Transform +- proto: BenchParkBambooLeft + entities: + - uid: 24615 + components: + - pos: 22.5,8.5 + parent: 1 + type: Transform +- proto: BenchParkBambooRight + entities: + - uid: 24614 + components: + - pos: 21.5,8.5 + parent: 1 + type: Transform +- proto: BenchSofaLeft + entities: + - uid: 2606 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 4013 + components: + - rot: -1.5707963267948966 rad + pos: 61.5,17.5 + parent: 1 + type: Transform + - uid: 20947 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-12.5 + parent: 1 + type: Transform +- proto: BenchSofaRight + entities: + - uid: 1654 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 1 + type: Transform + - uid: 2604 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + type: Transform + - uid: 4595 + components: + - rot: -1.5707963267948966 rad + pos: 61.5,18.5 + parent: 1 + type: Transform +- proto: BigBox + entities: + - uid: 9545 + components: + - pos: -18.48845,-3.498476 + parent: 1 + type: Transform +- proto: BikeHorn + entities: + - uid: 22590 + components: + - pos: 55.749737,-17.289125 + parent: 1 + type: Transform +- proto: BiomassReclaimer + entities: + - uid: 3984 + components: + - pos: 60.5,-17.5 + parent: 1 + type: Transform +- proto: BiomassReclaimerMachineCircuitboard + entities: + - uid: 6581 + components: + - pos: -61.51701,-0.18666923 + parent: 1 + type: Transform +- proto: BlastDoor + entities: + - uid: 483 + components: + - pos: 7.5,40.5 + parent: 1 + type: Transform + - links: + - 4723 + type: DeviceLinkSink + - uid: 484 + components: + - pos: 2.5,40.5 + parent: 1 + type: Transform + - links: + - 3876 + type: DeviceLinkSink + - uid: 1996 + components: + - pos: 29.5,51.5 + parent: 1 + type: Transform + - links: + - 25550 + type: DeviceLinkSink + - uid: 4535 + components: + - pos: -4.5,48.5 + parent: 1 + type: Transform + - links: + - 25315 + type: DeviceLinkSink + - uid: 5830 + components: + - pos: -52.5,-42.5 + parent: 1 + type: Transform + - links: + - 25665 + type: DeviceLinkSink + - uid: 5890 + components: + - pos: -52.5,-38.5 + parent: 1 + type: Transform + - links: + - 25665 + type: DeviceLinkSink + - uid: 6441 + components: + - pos: -67.5,31.5 + parent: 1 + type: Transform + - links: + - 6445 + type: DeviceLinkSink + - uid: 9617 + components: + - pos: 120.5,3.5 + parent: 1 + type: Transform + - links: + - 9627 + type: DeviceLinkSink + - uid: 9618 + components: + - pos: 120.5,4.5 + parent: 1 + type: Transform + - links: + - 9627 + type: DeviceLinkSink + - uid: 12386 + components: + - pos: -8.5,-1.5 + parent: 1 + type: Transform + - links: + - 6849 + type: DeviceLinkSink + - uid: 13561 + components: + - pos: 28.5,51.5 + parent: 1 + type: Transform + - links: + - 25550 + type: DeviceLinkSink + - uid: 16133 + components: + - pos: 52.5,-27.5 + parent: 1 + type: Transform + - links: + - 3194 + type: DeviceLinkSink + - uid: 16134 + components: + - pos: 52.5,-28.5 + parent: 1 + type: Transform + - links: + - 3194 + type: DeviceLinkSink + - uid: 16215 + components: + - pos: 57.5,-33.5 + parent: 1 + type: Transform + - links: + - 16219 + type: DeviceLinkSink + - uid: 16216 + components: + - pos: 56.5,-33.5 + parent: 1 + type: Transform + - links: + - 16219 + type: DeviceLinkSink + - uid: 25216 + components: + - pos: 111.5,27.5 + parent: 1 + type: Transform + - links: + - 25250 + - 25251 + type: DeviceLinkSink +- proto: BlastDoorOpen + entities: + - uid: 890 + components: + - pos: 7.5,-34.5 + parent: 1 + type: Transform + - links: + - 1543 + type: DeviceLinkSink + - uid: 891 + components: + - pos: 8.5,-31.5 + parent: 1 + type: Transform + - links: + - 952 + type: DeviceLinkSink + - uid: 892 + components: + - pos: 16.5,-34.5 + parent: 1 + type: Transform + - links: + - 959 + type: DeviceLinkSink + - uid: 921 + components: + - pos: 15.5,-34.5 + parent: 1 + type: Transform + - links: + - 959 + type: DeviceLinkSink + - uid: 922 + components: + - pos: 15.5,-31.5 + parent: 1 + type: Transform + - links: + - 845 + type: DeviceLinkSink + - uid: 951 + components: + - pos: 8.5,-34.5 + parent: 1 + type: Transform + - links: + - 1543 + type: DeviceLinkSink + - uid: 960 + components: + - pos: 16.5,-31.5 + parent: 1 + type: Transform + - links: + - 845 + type: DeviceLinkSink + - uid: 961 + components: + - pos: 7.5,-31.5 + parent: 1 + type: Transform + - links: + - 952 + type: DeviceLinkSink + - uid: 3455 + components: + - pos: 75.5,2.5 + parent: 1 + type: Transform + - links: + - 5497 + - 10330 + type: DeviceLinkSink + - uid: 4112 + components: + - pos: 75.5,3.5 + parent: 1 + type: Transform + - links: + - 5497 + - 10330 + type: DeviceLinkSink + - uid: 5520 + components: + - pos: 75.5,4.5 + parent: 1 + type: Transform + - links: + - 5497 + - 10330 + type: DeviceLinkSink + - uid: 5521 + components: + - pos: 75.5,5.5 + parent: 1 + type: Transform + - links: + - 5497 + - 3430 + - 10330 + type: DeviceLinkSink + - uid: 23824 + components: + - pos: 65.5,6.5 + parent: 1 + type: Transform + - links: + - 4079 + type: DeviceLinkSink + - uid: 23825 + components: + - pos: 64.5,6.5 + parent: 1 + type: Transform + - links: + - 4079 + type: DeviceLinkSink + - uid: 23826 + components: + - pos: 70.5,6.5 + parent: 1 + type: Transform + - links: + - 4079 + type: DeviceLinkSink + - uid: 23827 + components: + - pos: 69.5,6.5 + parent: 1 + type: Transform + - links: + - 4079 + type: DeviceLinkSink +- proto: BlockGameArcade + entities: + - uid: 2932 + components: + - pos: 40.5,23.5 + parent: 1 + type: Transform + - uid: 6924 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-8.5 + parent: 1 + type: Transform + - uid: 6925 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 1 + type: Transform + - uid: 15993 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-19.5 + parent: 1 + type: Transform +- proto: BoardGameSpawner + entities: + - uid: 1487 + components: + - pos: 6.5,-26.5 + parent: 1 + type: Transform + - uid: 6983 + components: + - pos: 16.5,8.5 + parent: 1 + type: Transform + - uid: 6984 + components: + - pos: 22.5,-0.5 + parent: 1 + type: Transform + - uid: 9532 + components: + - pos: 29.5,-49.5 + parent: 1 + type: Transform +- proto: Bonfire + entities: + - uid: 7501 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 9535 + components: + - pos: -15.5,-14.5 + parent: 1 + type: Transform +- proto: BookAtmosDistro + entities: + - uid: 2487 + components: + - rot: 3.141592653589793 rad + pos: -46.062813,22.548124 + parent: 1 + type: Transform +- proto: BookBartendersManual + entities: + - uid: 3349 + components: + - rot: -1.5707963267948966 rad + pos: 38.654926,15.015435 + parent: 1 + type: Transform + - uid: 5268 + components: + - rot: -1.5707963267948966 rad + pos: 38.42576,15.015435 + parent: 1 + type: Transform +- proto: BookChefGaming + entities: + - uid: 5338 + components: + - rot: -1.5707963267948966 rad + pos: 76.53803,25.680452 + parent: 1 + type: Transform +- proto: BookChemicalCompendium + entities: + - uid: 10377 + components: + - pos: 76.49405,-8.364154 + parent: 1 + type: Transform +- proto: BookEngineersHandbook + entities: + - uid: 2583 + components: + - pos: -43.31453,4.659966 + parent: 1 + type: Transform +- proto: BookHowToKeepStationClean + entities: + - uid: 13930 + components: + - rot: 1.5707963267948966 rad + pos: -9.84249,-34.290024 + parent: 1 + type: Transform +- proto: BookHowToSurvive + entities: + - uid: 7537 + components: + - pos: 47.397625,13.528162 + parent: 1 + type: Transform +- proto: BookLeafLoversSecret + entities: + - uid: 1209 + components: + - rot: 1.5707963267948966 rad + pos: -6.518141,19.59178 + parent: 1 + type: Transform +- proto: BookMedicalReferenceBook + entities: + - uid: 7610 + components: + - rot: -1.5707963267948966 rad + pos: 81.445816,-16.477457 + parent: 1 + type: Transform +- proto: BookMorgue + entities: + - uid: 4895 + components: + - flags: InContainer + type: MetaData + - parent: 4894 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: BookRandom + entities: + - uid: 5502 + components: + - rot: 1.5707963267948966 rad + pos: 72.44159,8.245542 + parent: 1 + type: Transform + - uid: 7248 + components: + - rot: 1.5707963267948966 rad + pos: 29.311861,39.713905 + parent: 1 + type: Transform + - uid: 7249 + components: + - rot: 1.5707963267948966 rad + pos: 29.301443,39.55755 + parent: 1 + type: Transform + - uid: 9855 + components: + - rot: 1.5707963267948966 rad + pos: 109.490265,10.585081 + parent: 1 + type: Transform + - uid: 10133 + components: + - pos: 35.450104,-6.369374 + parent: 1 + type: Transform + - uid: 10134 + components: + - pos: 35.606354,-6.4944606 + parent: 1 + type: Transform + - uid: 11524 + components: + - pos: 3.373794,-41.35653 + parent: 1 + type: Transform + - uid: 11525 + components: + - pos: 3.561294,-41.36696 + parent: 1 + type: Transform + - uid: 12460 + components: + - pos: 3.373794,-44.410736 + parent: 1 + type: Transform + - uid: 12461 + components: + - pos: 3.571711,-44.410736 + parent: 1 + type: Transform + - uid: 16525 + components: + - rot: 1.5707963267948966 rad + pos: 51.532326,41.60192 + parent: 1 + type: Transform + - uid: 22812 + components: + - rot: -1.5707963267948966 rad + pos: -58.569427,36.70115 + parent: 1 + type: Transform +- proto: BookSalvageEpistemicsRandom + entities: + - uid: 7517 + components: + - pos: 15.553937,-6.42661 + parent: 1 + type: Transform +- proto: BooksBag + entities: + - uid: 3969 + components: + - pos: 35.66043,-13.239324 + parent: 1 + type: Transform +- proto: BookSecurity + entities: + - uid: 7538 + components: + - pos: 47.595543,13.569858 + parent: 1 + type: Transform +- proto: BookshelfFilled + entities: + - uid: 66 + components: + - pos: 86.5,29.5 + parent: 1 + type: Transform + - uid: 72 + components: + - pos: 85.5,29.5 + parent: 1 + type: Transform + - uid: 2993 + components: + - pos: 87.5,29.5 + parent: 1 + type: Transform + - uid: 4493 + components: + - pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 5608 + components: + - pos: 32.5,-11.5 + parent: 1 + type: Transform + - uid: 5661 + components: + - pos: 33.5,-11.5 + parent: 1 + type: Transform + - uid: 5704 + components: + - pos: 34.5,-11.5 + parent: 1 + type: Transform + - uid: 5705 + components: + - pos: 35.5,-11.5 + parent: 1 + type: Transform + - uid: 6355 + components: + - pos: 34.5,-9.5 + parent: 1 + type: Transform + - uid: 6356 + components: + - pos: 33.5,-9.5 + parent: 1 + type: Transform + - uid: 7236 + components: + - pos: 32.5,-9.5 + parent: 1 + type: Transform + - uid: 7245 + components: + - pos: 31.5,-9.5 + parent: 1 + type: Transform + - uid: 7299 + components: + - pos: 81.5,-2.5 + parent: 1 + type: Transform + - uid: 7300 + components: + - pos: 79.5,-2.5 + parent: 1 + type: Transform + - uid: 7402 + components: + - pos: -42.5,9.5 + parent: 1 + type: Transform + - uid: 7403 + components: + - pos: -43.5,9.5 + parent: 1 + type: Transform + - uid: 7404 + components: + - pos: 31.5,40.5 + parent: 1 + type: Transform + - uid: 7410 + components: + - pos: 17.5,42.5 + parent: 1 + type: Transform + - uid: 7534 + components: + - pos: 19.5,42.5 + parent: 1 + type: Transform + - uid: 7650 + components: + - pos: 47.5,9.5 + parent: 1 + type: Transform + - uid: 7984 + components: + - pos: 1.5,-32.5 + parent: 1 + type: Transform + - uid: 9282 + components: + - pos: 78.5,-11.5 + parent: 1 + type: Transform + - uid: 11473 + components: + - pos: 25.5,56.5 + parent: 1 + type: Transform + - uid: 11479 + components: + - pos: 3.5,56.5 + parent: 1 + type: Transform + - uid: 11526 + components: + - pos: 6.5,-42.5 + parent: 1 + type: Transform + - uid: 11688 + components: + - pos: -1.5,56.5 + parent: 1 + type: Transform + - uid: 11732 + components: + - pos: 20.5,56.5 + parent: 1 + type: Transform + - uid: 11733 + components: + - pos: 31.5,-18.5 + parent: 1 + type: Transform + - uid: 11734 + components: + - pos: 52.5,24.5 + parent: 1 + type: Transform + - uid: 15626 + components: + - pos: -59.5,38.5 + parent: 1 + type: Transform + - uid: 23477 + components: + - pos: -27.5,22.5 + parent: 1 + type: Transform +- proto: BoozeDispenser + entities: + - uid: 2793 + components: + - pos: 35.5,20.5 + parent: 1 + type: Transform + - uid: 5265 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,16.5 + parent: 1 + type: Transform + - uid: 6573 + components: + - pos: -58.5,0.5 + parent: 1 + type: Transform + - uid: 15906 + components: + - pos: -27.5,46.5 + parent: 1 + type: Transform +- proto: BoozeDispenserMachineCircuitboard + entities: + - uid: 12298 + components: + - flags: InContainer + type: MetaData + - parent: 12295 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: BorgCharger + entities: + - uid: 9967 + components: + - rot: 3.141592653589793 rad + pos: 30.5,48.5 + parent: 1 + type: Transform + - uid: 9969 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-46.5 + parent: 1 + type: Transform + - uid: 12055 + components: + - rot: 3.141592653589793 rad + pos: -11.5,8.5 + parent: 1 + type: Transform + - uid: 25169 + components: + - pos: 114.5,6.5 + parent: 1 + type: Transform +- proto: BoxBeaker + entities: + - uid: 4694 + components: + - pos: -4.995168,39.614532 + parent: 1 + type: Transform + - uid: 5779 + components: + - pos: 71.51218,-12.318889 + parent: 1 + type: Transform + - uid: 12868 + components: + - pos: 30.792429,-38.3468 + parent: 1 + type: Transform +- proto: BoxBeanbag + entities: + - uid: 2885 + components: + - flags: InContainer + type: MetaData + - parent: 2884 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: BoxBodyBag + entities: + - uid: 7357 + components: + - pos: 64.521126,-15.267739 + parent: 1 + type: Transform + - uid: 7454 + components: + - pos: 14.591102,50.6877 + parent: 1 + type: Transform +- proto: BoxCardboard + entities: + - uid: 2133 + components: + - pos: -17.50954,0.6504979 + parent: 1 + type: Transform + - uid: 2134 + components: + - pos: -17.617874,0.69115067 + parent: 1 + type: Transform + - uid: 2135 + components: + - pos: -17.848082,0.62339544 + parent: 1 + type: Transform + - uid: 9520 + components: + - rot: -1.5707963267948966 rad + pos: -8.027857,-15.557434 + parent: 1 + type: Transform + - uid: 9521 + components: + - rot: -1.5707963267948966 rad + pos: -7.8820233,-15.057086 + parent: 1 + type: Transform + - uid: 9522 + components: + - pos: -7.7257733,-15.338532 + parent: 1 + type: Transform + - uid: 12411 + components: + - pos: -11.563685,9.779611 + parent: 1 + type: Transform + - uid: 12412 + components: + - pos: -11.157435,9.644099 + parent: 1 + type: Transform + - uid: 12431 + components: + - rot: -1.5707963267948966 rad + pos: -16.671026,-7.301474 + parent: 1 + type: Transform + - uid: 12432 + components: + - rot: -1.5707963267948966 rad + pos: -14.233528,-8.67743 + parent: 1 + type: Transform + - uid: 16305 + components: + - pos: 21.724348,26.174368 + parent: 1 + type: Transform + - uid: 16306 + components: + - pos: 21.37018,26.278608 + parent: 1 + type: Transform + - uid: 16346 + components: + - pos: 22.815823,-15.614611 + parent: 1 + type: Transform + - uid: 16347 + components: + - pos: 22.149157,-16.250467 + parent: 1 + type: Transform + - uid: 22677 + components: + - rot: 1.5707963267948966 rad + pos: 40.37276,35.76272 + parent: 1 + type: Transform + - uid: 22678 + components: + - pos: 40.77901,35.512543 + parent: 1 + type: Transform + - uid: 22679 + components: + - pos: 41.43526,35.439575 + parent: 1 + type: Transform + - uid: 23473 + components: + - rot: -1.5707963267948966 rad + pos: -8.659828,29.47359 + parent: 1 + type: Transform + - uid: 24774 + components: + - rot: -1.5707963267948966 rad + pos: -60.539783,-8.471809 + parent: 1 + type: Transform + - uid: 24775 + components: + - rot: 1.5707963267948966 rad + pos: -62.404366,-13.75673 + parent: 1 + type: Transform +- proto: BoxColoredLighttube + entities: + - uid: 16730 + components: + - pos: 93.48684,22.616884 + parent: 1 + type: Transform +- proto: BoxFlare + entities: + - uid: 16310 + components: + - pos: 27.541084,25.69003 + parent: 1 + type: Transform +- proto: BoxFlashbang + entities: + - uid: 16714 + components: + - pos: 80.57869,11.566902 + parent: 1 + type: Transform +- proto: BoxFolderBase + entities: + - uid: 2853 + components: + - pos: 37.459705,-11.450374 + parent: 1 + type: Transform + - uid: 2854 + components: + - pos: 42.563873,-11.38783 + parent: 1 + type: Transform + - uid: 2855 + components: + - pos: 42.303455,-11.356559 + parent: 1 + type: Transform + - uid: 3999 + components: + - rot: 3.141592653589793 rad + pos: 61.206955,20.67427 + parent: 1 + type: Transform + - uid: 4000 + components: + - rot: 3.141592653589793 rad + pos: 61.27987,20.53876 + parent: 1 + type: Transform + - uid: 6685 + components: + - rot: 3.141592653589793 rad + pos: -56.639526,-22.34478 + parent: 1 + type: Transform + - uid: 6770 + components: + - rot: 1.5707963267948966 rad + pos: -57.556194,-21.896553 + parent: 1 + type: Transform + - uid: 7543 + components: + - rot: 3.141592653589793 rad + pos: 42.022625,10.682436 + parent: 1 + type: Transform + - uid: 7544 + components: + - rot: 3.141592653589793 rad + pos: 42.064293,10.557348 + parent: 1 + type: Transform + - uid: 7545 + components: + - rot: 1.5707963267948966 rad + pos: 44.658043,8.420448 + parent: 1 + type: Transform + - uid: 7546 + components: + - rot: 1.5707963267948966 rad + pos: 44.626793,8.649775 + parent: 1 + type: Transform + - uid: 10054 + components: + - rot: -1.5707963267948966 rad + pos: -2.6318922,-33.31431 + parent: 1 + type: Transform + - uid: 16540 + components: + - pos: 53.112316,38.584885 + parent: 1 + type: Transform + - uid: 16541 + components: + - rot: 1.5707963267948966 rad + pos: 52.6019,37.605034 + parent: 1 + type: Transform + - uid: 16542 + components: + - rot: 1.5707963267948966 rad + pos: 52.403984,37.615456 + parent: 1 + type: Transform + - uid: 16543 + components: + - rot: -1.5707963267948966 rad + pos: 59.5394,36.5001 + parent: 1 + type: Transform + - uid: 16544 + components: + - pos: 58.00815,43.567505 + parent: 1 + type: Transform + - uid: 16545 + components: + - pos: 58.153984,43.567505 + parent: 1 + type: Transform + - uid: 22632 + components: + - rot: -1.5707963267948966 rad + pos: 114.435295,9.704651 + parent: 1 + type: Transform + - uid: 22633 + components: + - rot: -1.5707963267948966 rad + pos: 114.51862,9.589987 + parent: 1 + type: Transform + - uid: 22634 + components: + - rot: -1.5707963267948966 rad + pos: 114.372795,9.193879 + parent: 1 + type: Transform +- proto: BoxFolderBlack + entities: + - uid: 10000 + components: + - rot: -1.5707963267948966 rad + pos: 104.380585,9.259855 + parent: 1 + type: Transform +- proto: BoxFolderBlue + entities: + - uid: 7598 + components: + - rot: -1.5707963267948966 rad + pos: 80.386116,-8.50723 + parent: 1 + type: Transform + - uid: 7599 + components: + - rot: -1.5707963267948966 rad + pos: 80.36528,-8.69486 + parent: 1 + type: Transform + - uid: 10005 + components: + - pos: 105.068085,8.801204 + parent: 1 + type: Transform +- proto: BoxFolderGrey + entities: + - uid: 10006 + components: + - pos: 105.07851,8.603149 + parent: 1 + type: Transform + - uid: 16326 + components: + - rot: 1.5707963267948966 rad + pos: 30.54621,-19.3295 + parent: 1 + type: Transform +- proto: BoxFolderRed + entities: + - uid: 10004 + components: + - pos: 105.05767,8.988834 + parent: 1 + type: Transform +- proto: BoxFolderWhite + entities: + - uid: 10003 + components: + - rot: 1.5707963267948966 rad + pos: 105.693085,8.478063 + parent: 1 + type: Transform +- proto: BoxFolderYellow + entities: + - uid: 10007 + components: + - rot: 1.5707963267948966 rad + pos: 105.68267,9.384942 + parent: 1 + type: Transform +- proto: BoxingBell + entities: + - uid: 3214 + components: + - pos: 18.5,18.5 + parent: 1 + type: Transform +- proto: BoxLatexGloves + entities: + - uid: 3793 + components: + - rot: 3.141592653589793 rad + pos: 29.369537,48.586266 + parent: 1 + type: Transform + - uid: 7675 + components: + - pos: 84.51648,-8.378382 + parent: 1 + type: Transform + - uid: 21776 + components: + - pos: 73.83268,-12.32642 + parent: 1 + type: Transform +- proto: BoxLethalshot + entities: + - uid: 21446 + components: + - pos: 82.49874,11.799488 + parent: 1 + type: Transform +- proto: BoxLightMixed + entities: + - uid: 3578 + components: + - pos: -13.44133,9.703367 + parent: 1 + type: Transform +- proto: BoxMaintenanceLightbulb + entities: + - uid: 11189 + components: + - pos: -19.489471,14.682238 + parent: 1 + type: Transform + - uid: 16737 + components: + - pos: 89.50274,21.689281 + parent: 1 + type: Transform +- proto: BoxMousetrap + entities: + - uid: 886 + components: + - pos: -13.495039,10.682845 + parent: 1 + type: Transform + - uid: 3096 + components: + - pos: 55.519463,9.714343 + parent: 1 + type: Transform +- proto: BoxShotgunSlug + entities: + - uid: 7012 + components: + - pos: 82.50916,11.643129 + parent: 1 + type: Transform +- proto: BoxSterileMask + entities: + - uid: 7683 + components: + - pos: 84.50093,-9.183344 + parent: 1 + type: Transform +- proto: BoxTrashbag + entities: + - uid: 3579 + components: + - pos: -13.50383,8.702673 + parent: 1 + type: Transform +- proto: BrbSign + entities: + - uid: 15752 + components: + - pos: -39.617607,5.626168 + parent: 1 + type: Transform + - uid: 15753 + components: + - rot: 3.141592653589793 rad + pos: -16.53434,-1.3507514 + parent: 1 + type: Transform + - uid: 15755 + components: + - rot: 1.5707963267948966 rad + pos: 6.7119966,-4.518445 + parent: 1 + type: Transform + - uid: 15756 + components: + - rot: 3.141592653589793 rad + pos: 26.25838,-9.418559 + parent: 1 + type: Transform + - uid: 15757 + components: + - rot: 1.5707963267948966 rad + pos: 7.715254,43.455414 + parent: 1 + type: Transform + - uid: 16805 + components: + - rot: 1.5707963267948966 rad + pos: 66.637215,10.874252 + parent: 1 + type: Transform + - uid: 24013 + components: + - pos: 7.290957,13.578582 + parent: 1 + type: Transform + - uid: 25319 + components: + - rot: -1.5707963267948966 rad + pos: -4.0837626,-2.4154048 + parent: 1 + type: Transform +- proto: BriefcaseBrownFilled + entities: + - uid: 5822 + components: + - pos: -46.93388,-37.99093 + parent: 1 + type: Transform + - uid: 10055 + components: + - pos: -5.7152257,-34.01271 + parent: 1 + type: Transform + - uid: 16338 + components: + - pos: 28.355085,-27.042377 + parent: 1 + type: Transform + - uid: 16779 + components: + - pos: -14.68727,-25.767237 + parent: 1 + type: Transform + - uid: 22937 + components: + - pos: 25.228388,-43.041107 + parent: 1 + type: Transform +- proto: BrigTimer + entities: + - uid: 16717 + components: + - pos: 65.5,15.5 + parent: 1 + type: Transform + - linkedPorts: + 4184: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource + - uid: 16718 + components: + - pos: 68.5,15.5 + parent: 1 + type: Transform + - linkedPorts: + 4186: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource +- proto: BrokenBottle + entities: + - uid: 13937 + components: + - rot: -1.5707963267948966 rad + pos: -10.842899,-37.88111 + parent: 1 + type: Transform + - uid: 16294 + components: + - rot: -1.5707963267948966 rad + pos: 35.964527,42.77442 + parent: 1 + type: Transform + - uid: 16295 + components: + - rot: -1.5707963267948966 rad + pos: 36.07911,42.534676 + parent: 1 + type: Transform +- proto: Brutepack + entities: + - uid: 2264 + components: + - flags: InContainer + type: MetaData + - parent: 2225 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2268 + components: + - flags: InContainer + type: MetaData + - parent: 2225 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2592 + components: + - pos: 3.37716,-1.2907345 + parent: 1 + type: Transform + - uid: 3291 + components: + - flags: InContainer + type: MetaData + - parent: 3283 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 3304 + components: + - flags: InContainer + type: MetaData + - parent: 3283 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 7680 + components: + - pos: 65.44479,-8.455936 + parent: 1 + type: Transform +- proto: Bucket + entities: + - uid: 1065 + components: + - pos: 2.1305728,23.328724 + parent: 1 + type: Transform + - uid: 1202 + components: + - pos: 4.0781603,14.825667 + parent: 1 + type: Transform + - uid: 2754 + components: + - pos: -11.18496,16.731535 + parent: 1 + type: Transform + - uid: 5327 + components: + - pos: 80.76203,24.856432 + parent: 1 + type: Transform + - uid: 10557 + components: + - pos: 25.500975,-41.64132 + parent: 1 + type: Transform + - uid: 15729 + components: + - pos: 23.784195,6.879897 + parent: 1 + type: Transform + - uid: 16054 + components: + - pos: -27.760202,44.863525 + parent: 1 + type: Transform + - uid: 17548 + components: + - pos: -53.492737,38.673737 + parent: 1 + type: Transform + - uid: 23974 + components: + - pos: -18.367664,11.717652 + parent: 1 + type: Transform + - uid: 23975 + components: + - pos: 57.774456,8.819806 + parent: 1 + type: Transform +- proto: BulletFoam + entities: + - uid: 22780 + components: + - pos: -23.507135,16.64909 + parent: 1 + type: Transform + - uid: 22781 + components: + - pos: -23.319635,16.59697 + parent: 1 + type: Transform + - uid: 22782 + components: + - pos: -23.350885,16.471882 + parent: 1 + type: Transform + - uid: 22783 + components: + - pos: -23.423801,16.451035 + parent: 1 + type: Transform +- proto: ButchCleaver + entities: + - uid: 1090 + components: + - pos: 0.62183213,21.448116 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 29 + components: + - pos: -1.5,-18.5 + parent: 1 + type: Transform + - uid: 79 + components: + - pos: -61.5,-6.5 + parent: 1 + type: Transform + - uid: 80 + components: + - pos: -62.5,-6.5 + parent: 1 + type: Transform + - uid: 102 + components: + - pos: -64.5,9.5 + parent: 1 + type: Transform + - uid: 103 + components: + - pos: -64.5,8.5 + parent: 1 + type: Transform + - uid: 104 + components: + - pos: -64.5,7.5 + parent: 1 + type: Transform + - uid: 121 + components: + - pos: -62.5,12.5 + parent: 1 + type: Transform + - uid: 183 + components: + - pos: -61.5,13.5 + parent: 1 + type: Transform + - uid: 189 + components: + - pos: -16.5,49.5 + parent: 1 + type: Transform + - uid: 444 + components: + - pos: -14.5,-0.5 + parent: 1 + type: Transform + - uid: 446 + components: + - pos: -57.5,-16.5 + parent: 1 + type: Transform + - uid: 532 + components: + - pos: -15.5,51.5 + parent: 1 + type: Transform + - uid: 533 + components: + - pos: -15.5,52.5 + parent: 1 + type: Transform + - uid: 534 + components: + - pos: -15.5,53.5 + parent: 1 + type: Transform + - uid: 538 + components: + - pos: -12.5,54.5 + parent: 1 + type: Transform + - uid: 539 + components: + - pos: -11.5,54.5 + parent: 1 + type: Transform + - uid: 585 + components: + - pos: 93.5,9.5 + parent: 1 + type: Transform + - uid: 596 + components: + - pos: -24.5,-15.5 + parent: 1 + type: Transform + - uid: 597 + components: + - pos: -26.5,-12.5 + parent: 1 + type: Transform + - uid: 667 + components: + - pos: -21.5,-12.5 + parent: 1 + type: Transform + - uid: 668 + components: + - pos: -24.5,-12.5 + parent: 1 + type: Transform + - uid: 669 + components: + - pos: -25.5,-13.5 + parent: 1 + type: Transform + - uid: 685 + components: + - pos: 91.5,6.5 + parent: 1 + type: Transform + - uid: 687 + components: + - pos: 91.5,5.5 + parent: 1 + type: Transform + - uid: 690 + components: + - pos: 91.5,7.5 + parent: 1 + type: Transform + - uid: 748 + components: + - pos: 46.5,-15.5 + parent: 1 + type: Transform + - uid: 759 + components: + - pos: -25.5,-15.5 + parent: 1 + type: Transform + - uid: 760 + components: + - pos: -22.5,-12.5 + parent: 1 + type: Transform + - uid: 761 + components: + - pos: -20.5,-15.5 + parent: 1 + type: Transform + - uid: 781 + components: + - pos: 91.5,8.5 + parent: 1 + type: Transform + - uid: 1299 + components: + - pos: -44.5,-34.5 + parent: 1 + type: Transform + - uid: 1317 + components: + - pos: 9.5,-26.5 + parent: 1 + type: Transform + - uid: 1337 + components: + - pos: -25.5,-14.5 + parent: 1 + type: Transform + - uid: 1338 + components: + - pos: -20.5,-14.5 + parent: 1 + type: Transform + - uid: 1346 + components: + - pos: -23.5,-12.5 + parent: 1 + type: Transform + - uid: 1480 + components: + - pos: 10.5,-26.5 + parent: 1 + type: Transform + - uid: 1647 + components: + - pos: -14.5,-2.5 + parent: 1 + type: Transform + - uid: 1649 + components: + - pos: -1.5,-6.5 + parent: 1 + type: Transform + - uid: 1650 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 1801 + components: + - pos: -25.5,-12.5 + parent: 1 + type: Transform + - uid: 1902 + components: + - pos: -57.5,-28.5 + parent: 1 + type: Transform + - uid: 1903 + components: + - pos: -58.5,-28.5 + parent: 1 + type: Transform + - uid: 1963 + components: + - pos: -51.5,-23.5 + parent: 1 + type: Transform + - uid: 1977 + components: + - pos: -51.5,-22.5 + parent: 1 + type: Transform + - uid: 1991 + components: + - pos: -42.5,-27.5 + parent: 1 + type: Transform + - uid: 1992 + components: + - pos: -44.5,-35.5 + parent: 1 + type: Transform + - uid: 1994 + components: + - pos: -39.5,-20.5 + parent: 1 + type: Transform + - uid: 1997 + components: + - pos: -46.5,-21.5 + parent: 1 + type: Transform + - uid: 1998 + components: + - pos: -47.5,-21.5 + parent: 1 + type: Transform + - uid: 1999 + components: + - pos: -49.5,-21.5 + parent: 1 + type: Transform + - uid: 2153 + components: + - pos: 44.5,25.5 + parent: 1 + type: Transform + - uid: 2167 + components: + - pos: -56.5,-23.5 + parent: 1 + type: Transform + - uid: 2270 + components: + - pos: -48.5,-21.5 + parent: 1 + type: Transform + - uid: 2293 + components: + - pos: 59.5,15.5 + parent: 1 + type: Transform + - uid: 2313 + components: + - pos: -50.5,24.5 + parent: 1 + type: Transform + - uid: 2563 + components: + - pos: -39.5,-21.5 + parent: 1 + type: Transform + - uid: 2751 + components: + - pos: -14.5,54.5 + parent: 1 + type: Transform + - uid: 2774 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 2844 + components: + - pos: -15.5,50.5 + parent: 1 + type: Transform + - uid: 2928 + components: + - pos: 44.5,24.5 + parent: 1 + type: Transform + - uid: 3125 + components: + - pos: -13.5,54.5 + parent: 1 + type: Transform + - uid: 3157 + components: + - pos: -15.5,54.5 + parent: 1 + type: Transform + - uid: 3187 + components: + - pos: 34.5,0.5 + parent: 1 + type: Transform + - uid: 3221 + components: + - pos: 45.5,23.5 + parent: 1 + type: Transform + - uid: 3708 + components: + - pos: -12.5,-42.5 + parent: 1 + type: Transform + - uid: 3819 + components: + - pos: -63.5,-1.5 + parent: 1 + type: Transform + - uid: 3992 + components: + - pos: 59.5,16.5 + parent: 1 + type: Transform + - uid: 4561 + components: + - pos: 0.5,38.5 + parent: 1 + type: Transform + - uid: 4623 + components: + - pos: 5.5,53.5 + parent: 1 + type: Transform + - uid: 4699 + components: + - pos: -10.5,-8.5 + parent: 1 + type: Transform + - uid: 5923 + components: + - pos: -9.5,-8.5 + parent: 1 + type: Transform + - uid: 6642 + components: + - pos: -11.5,-6.5 + parent: 1 + type: Transform + - uid: 6649 + components: + - pos: -44.5,-37.5 + parent: 1 + type: Transform + - uid: 6656 + components: + - pos: -6.5,-9.5 + parent: 1 + type: Transform + - uid: 6659 + components: + - pos: -6.5,-10.5 + parent: 1 + type: Transform + - uid: 7983 + components: + - pos: 17.5,22.5 + parent: 1 + type: Transform + - uid: 9952 + components: + - pos: -11.5,-5.5 + parent: 1 + type: Transform + - uid: 10558 + components: + - pos: 11.5,-39.5 + parent: 1 + type: Transform + - uid: 10720 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 10721 + components: + - pos: -8.5,-2.5 + parent: 1 + type: Transform + - uid: 10722 + components: + - pos: -8.5,-1.5 + parent: 1 + type: Transform + - uid: 10810 + components: + - pos: -8.5,-3.5 + parent: 1 + type: Transform + - uid: 10814 + components: + - pos: -8.5,-10.5 + parent: 1 + type: Transform + - uid: 10968 + components: + - pos: -8.5,-11.5 + parent: 1 + type: Transform + - uid: 11061 + components: + - pos: -7.5,-10.5 + parent: 1 + type: Transform + - uid: 11062 + components: + - pos: -11.5,-7.5 + parent: 1 + type: Transform + - uid: 11063 + components: + - pos: -11.5,-8.5 + parent: 1 + type: Transform + - uid: 11323 + components: + - pos: 13.5,-39.5 + parent: 1 + type: Transform + - uid: 11325 + components: + - pos: 8.5,-40.5 + parent: 1 + type: Transform + - uid: 11326 + components: + - pos: 9.5,-40.5 + parent: 1 + type: Transform + - uid: 11327 + components: + - pos: 10.5,-40.5 + parent: 1 + type: Transform + - uid: 11328 + components: + - pos: 12.5,-34.5 + parent: 1 + type: Transform + - uid: 11329 + components: + - pos: 11.5,-40.5 + parent: 1 + type: Transform + - uid: 11330 + components: + - pos: 11.5,-26.5 + parent: 1 + type: Transform + - uid: 11335 + components: + - pos: 17.5,23.5 + parent: 1 + type: Transform + - uid: 11430 + components: + - pos: 15.5,21.5 + parent: 1 + type: Transform + - uid: 11432 + components: + - pos: 19.5,21.5 + parent: 1 + type: Transform + - uid: 11457 + components: + - pos: 17.5,21.5 + parent: 1 + type: Transform + - uid: 11462 + components: + - pos: 16.5,21.5 + parent: 1 + type: Transform + - uid: 11550 + components: + - pos: 18.5,21.5 + parent: 1 + type: Transform + - uid: 12449 + components: + - pos: 45.5,24.5 + parent: 1 + type: Transform + - uid: 12561 + components: + - pos: -1.5,-10.5 + parent: 1 + type: Transform + - uid: 12562 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 12563 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 12564 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 12583 + components: + - pos: -1.5,-19.5 + parent: 1 + type: Transform + - uid: 12595 + components: + - pos: -40.5,-24.5 + parent: 1 + type: Transform + - uid: 12596 + components: + - pos: -39.5,-24.5 + parent: 1 + type: Transform + - uid: 13732 + components: + - pos: -36.5,31.5 + parent: 1 + type: Transform + - uid: 13983 + components: + - pos: 95.5,-4.5 + parent: 1 + type: Transform + - uid: 14297 + components: + - pos: -44.5,-36.5 + parent: 1 + type: Transform + - uid: 14300 + components: + - pos: -46.5,-29.5 + parent: 1 + type: Transform + - uid: 14301 + components: + - pos: -45.5,-29.5 + parent: 1 + type: Transform + - uid: 14302 + components: + - pos: -42.5,-26.5 + parent: 1 + type: Transform + - uid: 14303 + components: + - pos: -42.5,-25.5 + parent: 1 + type: Transform + - uid: 14335 + components: + - pos: -44.5,-33.5 + parent: 1 + type: Transform + - uid: 14336 + components: + - pos: -38.5,-34.5 + parent: 1 + type: Transform + - uid: 14337 + components: + - pos: -38.5,-35.5 + parent: 1 + type: Transform + - uid: 14740 + components: + - pos: 94.5,13.5 + parent: 1 + type: Transform + - uid: 14744 + components: + - pos: 91.5,9.5 + parent: 1 + type: Transform + - uid: 14745 + components: + - pos: 92.5,9.5 + parent: 1 + type: Transform + - uid: 14747 + components: + - pos: 93.5,13.5 + parent: 1 + type: Transform + - uid: 15197 + components: + - pos: 94.5,-4.5 + parent: 1 + type: Transform + - uid: 15198 + components: + - pos: 93.5,-2.5 + parent: 1 + type: Transform + - uid: 15199 + components: + - pos: 92.5,-1.5 + parent: 1 + type: Transform + - uid: 15204 + components: + - pos: 92.5,-2.5 + parent: 1 + type: Transform + - uid: 15301 + components: + - pos: 15.5,20.5 + parent: 1 + type: Transform + - uid: 15303 + components: + - pos: 15.5,19.5 + parent: 1 + type: Transform + - uid: 15324 + components: + - pos: 15.5,18.5 + parent: 1 + type: Transform + - uid: 15383 + components: + - pos: 15.5,17.5 + parent: 1 + type: Transform + - uid: 15417 + components: + - pos: 94.5,-3.5 + parent: 1 + type: Transform + - uid: 16846 + components: + - pos: 92.5,13.5 + parent: 1 + type: Transform + - uid: 17191 + components: + - pos: 95.5,13.5 + parent: 1 + type: Transform + - uid: 17375 + components: + - pos: -56.5,-21.5 + parent: 1 + type: Transform + - uid: 17406 + components: + - pos: -60.5,-24.5 + parent: 1 + type: Transform + - uid: 17410 + components: + - pos: -56.5,-24.5 + parent: 1 + type: Transform + - uid: 17412 + components: + - pos: -56.5,-22.5 + parent: 1 + type: Transform + - uid: 17413 + components: + - pos: -56.5,-25.5 + parent: 1 + type: Transform + - uid: 17414 + components: + - pos: -56.5,-26.5 + parent: 1 + type: Transform + - uid: 17415 + components: + - pos: -56.5,-27.5 + parent: 1 + type: Transform + - uid: 17416 + components: + - pos: -56.5,-28.5 + parent: 1 + type: Transform + - uid: 17417 + components: + - pos: -55.5,-28.5 + parent: 1 + type: Transform + - uid: 17418 + components: + - pos: -54.5,-28.5 + parent: 1 + type: Transform + - uid: 17419 + components: + - pos: -53.5,-28.5 + parent: 1 + type: Transform + - uid: 17420 + components: + - pos: -52.5,-28.5 + parent: 1 + type: Transform + - uid: 17421 + components: + - pos: -51.5,-28.5 + parent: 1 + type: Transform + - uid: 17422 + components: + - pos: -50.5,-28.5 + parent: 1 + type: Transform + - uid: 17423 + components: + - pos: -49.5,-28.5 + parent: 1 + type: Transform + - uid: 17427 + components: + - pos: -51.5,-29.5 + parent: 1 + type: Transform + - uid: 17432 + components: + - pos: -51.5,-21.5 + parent: 1 + type: Transform + - uid: 17433 + components: + - pos: -50.5,-21.5 + parent: 1 + type: Transform + - uid: 17437 + components: + - pos: -51.5,-24.5 + parent: 1 + type: Transform + - uid: 17444 + components: + - pos: -40.5,-28.5 + parent: 1 + type: Transform + - uid: 17445 + components: + - pos: -39.5,-28.5 + parent: 1 + type: Transform + - uid: 17446 + components: + - pos: -38.5,-28.5 + parent: 1 + type: Transform + - uid: 17447 + components: + - pos: -38.5,-29.5 + parent: 1 + type: Transform + - uid: 17448 + components: + - pos: -38.5,-30.5 + parent: 1 + type: Transform + - uid: 17449 + components: + - pos: -38.5,-31.5 + parent: 1 + type: Transform + - uid: 17450 + components: + - pos: -38.5,-32.5 + parent: 1 + type: Transform + - uid: 17451 + components: + - pos: -38.5,-33.5 + parent: 1 + type: Transform + - uid: 17452 + components: + - pos: -44.5,-32.5 + parent: 1 + type: Transform + - uid: 17453 + components: + - pos: -44.5,-31.5 + parent: 1 + type: Transform + - uid: 17454 + components: + - pos: -44.5,-30.5 + parent: 1 + type: Transform + - uid: 17457 + components: + - pos: -44.5,-29.5 + parent: 1 + type: Transform + - uid: 17461 + components: + - pos: -43.5,-29.5 + parent: 1 + type: Transform + - uid: 17462 + components: + - pos: -43.5,-28.5 + parent: 1 + type: Transform + - uid: 17463 + components: + - pos: -42.5,-28.5 + parent: 1 + type: Transform + - uid: 17464 + components: + - pos: -41.5,-28.5 + parent: 1 + type: Transform + - uid: 17471 + components: + - pos: -40.5,-21.5 + parent: 1 + type: Transform + - uid: 17472 + components: + - pos: -41.5,-21.5 + parent: 1 + type: Transform + - uid: 17473 + components: + - pos: -42.5,-21.5 + parent: 1 + type: Transform + - uid: 17474 + components: + - pos: -43.5,-21.5 + parent: 1 + type: Transform + - uid: 17475 + components: + - pos: -44.5,-21.5 + parent: 1 + type: Transform + - uid: 17476 + components: + - pos: -45.5,-21.5 + parent: 1 + type: Transform + - uid: 17482 + components: + - pos: -44.5,-24.5 + parent: 1 + type: Transform + - uid: 17483 + components: + - pos: -43.5,-24.5 + parent: 1 + type: Transform + - uid: 17484 + components: + - pos: -42.5,-24.5 + parent: 1 + type: Transform + - uid: 17485 + components: + - pos: -41.5,-24.5 + parent: 1 + type: Transform + - uid: 17494 + components: + - pos: -46.5,-13.5 + parent: 1 + type: Transform + - uid: 17495 + components: + - pos: -46.5,-14.5 + parent: 1 + type: Transform + - uid: 17496 + components: + - pos: -45.5,-14.5 + parent: 1 + type: Transform + - uid: 17497 + components: + - pos: -44.5,-14.5 + parent: 1 + type: Transform + - uid: 17498 + components: + - pos: -43.5,-14.5 + parent: 1 + type: Transform + - uid: 17499 + components: + - pos: -42.5,-14.5 + parent: 1 + type: Transform + - uid: 17500 + components: + - pos: -41.5,-14.5 + parent: 1 + type: Transform + - uid: 17501 + components: + - pos: -48.5,-16.5 + parent: 1 + type: Transform + - uid: 17502 + components: + - pos: -49.5,-16.5 + parent: 1 + type: Transform + - uid: 17503 + components: + - pos: -50.5,-16.5 + parent: 1 + type: Transform + - uid: 17504 + components: + - pos: -51.5,-16.5 + parent: 1 + type: Transform + - uid: 17505 + components: + - pos: -52.5,-16.5 + parent: 1 + type: Transform + - uid: 17506 + components: + - pos: -41.5,-18.5 + parent: 1 + type: Transform + - uid: 17507 + components: + - pos: -42.5,-18.5 + parent: 1 + type: Transform + - uid: 17508 + components: + - pos: -43.5,-18.5 + parent: 1 + type: Transform + - uid: 17509 + components: + - pos: -44.5,-18.5 + parent: 1 + type: Transform + - uid: 17510 + components: + - pos: -45.5,-18.5 + parent: 1 + type: Transform + - uid: 17511 + components: + - pos: -46.5,-18.5 + parent: 1 + type: Transform + - uid: 17512 + components: + - pos: -47.5,-18.5 + parent: 1 + type: Transform + - uid: 17513 + components: + - pos: -47.5,-17.5 + parent: 1 + type: Transform + - uid: 17514 + components: + - pos: -47.5,-16.5 + parent: 1 + type: Transform + - uid: 17515 + components: + - pos: -47.5,-15.5 + parent: 1 + type: Transform + - uid: 17516 + components: + - pos: -47.5,-14.5 + parent: 1 + type: Transform + - uid: 17517 + components: + - pos: -53.5,-16.5 + parent: 1 + type: Transform + - uid: 17518 + components: + - pos: -54.5,-16.5 + parent: 1 + type: Transform + - uid: 17519 + components: + - pos: -55.5,-16.5 + parent: 1 + type: Transform + - uid: 17520 + components: + - pos: -56.5,-16.5 + parent: 1 + type: Transform + - uid: 17522 + components: + - pos: -50.5,-15.5 + parent: 1 + type: Transform + - uid: 17523 + components: + - pos: -50.5,-14.5 + parent: 1 + type: Transform + - uid: 17524 + components: + - pos: -50.5,-13.5 + parent: 1 + type: Transform + - uid: 17525 + components: + - pos: -50.5,-12.5 + parent: 1 + type: Transform + - uid: 17526 + components: + - pos: -50.5,-11.5 + parent: 1 + type: Transform + - uid: 17527 + components: + - pos: -50.5,-10.5 + parent: 1 + type: Transform + - uid: 17528 + components: + - pos: -50.5,-9.5 + parent: 1 + type: Transform + - uid: 17529 + components: + - pos: -50.5,-8.5 + parent: 1 + type: Transform + - uid: 17530 + components: + - pos: -50.5,-7.5 + parent: 1 + type: Transform + - uid: 17531 + components: + - pos: -50.5,-6.5 + parent: 1 + type: Transform + - uid: 17532 + components: + - pos: -49.5,-8.5 + parent: 1 + type: Transform + - uid: 17533 + components: + - pos: -48.5,-8.5 + parent: 1 + type: Transform + - uid: 17534 + components: + - pos: -47.5,-8.5 + parent: 1 + type: Transform + - uid: 17535 + components: + - pos: -46.5,-8.5 + parent: 1 + type: Transform + - uid: 17550 + components: + - pos: -40.5,41.5 + parent: 1 + type: Transform + - uid: 17607 + components: + - pos: -53.5,-4.5 + parent: 1 + type: Transform + - uid: 17608 + components: + - pos: -53.5,-5.5 + parent: 1 + type: Transform + - uid: 17609 + components: + - pos: -53.5,-6.5 + parent: 1 + type: Transform + - uid: 17610 + components: + - pos: -55.5,-6.5 + parent: 1 + type: Transform + - uid: 17611 + components: + - pos: -54.5,-6.5 + parent: 1 + type: Transform + - uid: 17612 + components: + - pos: -56.5,-6.5 + parent: 1 + type: Transform + - uid: 17613 + components: + - pos: -57.5,-6.5 + parent: 1 + type: Transform + - uid: 17614 + components: + - pos: -58.5,-6.5 + parent: 1 + type: Transform + - uid: 17620 + components: + - pos: -63.5,-3.5 + parent: 1 + type: Transform + - uid: 17621 + components: + - pos: -63.5,-2.5 + parent: 1 + type: Transform + - uid: 17622 + components: + - pos: -64.5,0.5 + parent: 1 + type: Transform + - uid: 17623 + components: + - pos: -64.5,1.5 + parent: 1 + type: Transform + - uid: 17624 + components: + - pos: -64.5,2.5 + parent: 1 + type: Transform + - uid: 17625 + components: + - pos: -64.5,3.5 + parent: 1 + type: Transform + - uid: 17626 + components: + - pos: -64.5,4.5 + parent: 1 + type: Transform + - uid: 17627 + components: + - pos: -64.5,5.5 + parent: 1 + type: Transform + - uid: 17628 + components: + - pos: -64.5,6.5 + parent: 1 + type: Transform + - uid: 17631 + components: + - pos: -64.5,10.5 + parent: 1 + type: Transform + - uid: 17632 + components: + - pos: -63.5,8.5 + parent: 1 + type: Transform + - uid: 17634 + components: + - pos: -63.5,10.5 + parent: 1 + type: Transform + - uid: 17638 + components: + - pos: -61.5,12.5 + parent: 1 + type: Transform + - uid: 17640 + components: + - pos: -60.5,13.5 + parent: 1 + type: Transform + - uid: 17641 + components: + - pos: -59.5,13.5 + parent: 1 + type: Transform + - uid: 17642 + components: + - pos: -59.5,14.5 + parent: 1 + type: Transform + - uid: 17643 + components: + - pos: -58.5,14.5 + parent: 1 + type: Transform + - uid: 17644 + components: + - pos: -57.5,14.5 + parent: 1 + type: Transform + - uid: 17645 + components: + - pos: -56.5,14.5 + parent: 1 + type: Transform + - uid: 17646 + components: + - pos: -55.5,14.5 + parent: 1 + type: Transform + - uid: 17647 + components: + - pos: -54.5,14.5 + parent: 1 + type: Transform + - uid: 17648 + components: + - pos: -59.5,-6.5 + parent: 1 + type: Transform + - uid: 17649 + components: + - pos: -60.5,-6.5 + parent: 1 + type: Transform + - uid: 17650 + components: + - pos: -64.5,-0.5 + parent: 1 + type: Transform + - uid: 17651 + components: + - pos: -64.5,-1.5 + parent: 1 + type: Transform + - uid: 17653 + components: + - pos: -62.5,8.5 + parent: 1 + type: Transform + - uid: 17654 + components: + - pos: -61.5,8.5 + parent: 1 + type: Transform + - uid: 17655 + components: + - pos: -60.5,8.5 + parent: 1 + type: Transform + - uid: 17656 + components: + - pos: -59.5,8.5 + parent: 1 + type: Transform + - uid: 17657 + components: + - pos: -59.5,9.5 + parent: 1 + type: Transform + - uid: 17658 + components: + - pos: -65.5,4.5 + parent: 1 + type: Transform + - uid: 17659 + components: + - pos: -66.5,4.5 + parent: 1 + type: Transform + - uid: 17660 + components: + - pos: -67.5,4.5 + parent: 1 + type: Transform + - uid: 17661 + components: + - pos: -67.5,5.5 + parent: 1 + type: Transform + - uid: 17662 + components: + - pos: -67.5,6.5 + parent: 1 + type: Transform + - uid: 17663 + components: + - pos: -67.5,7.5 + parent: 1 + type: Transform + - uid: 17664 + components: + - pos: -67.5,8.5 + parent: 1 + type: Transform + - uid: 17665 + components: + - pos: -67.5,9.5 + parent: 1 + type: Transform + - uid: 17666 + components: + - pos: -67.5,3.5 + parent: 1 + type: Transform + - uid: 17667 + components: + - pos: -67.5,2.5 + parent: 1 + type: Transform + - uid: 17668 + components: + - pos: -67.5,1.5 + parent: 1 + type: Transform + - uid: 17669 + components: + - pos: -67.5,0.5 + parent: 1 + type: Transform + - uid: 17670 + components: + - pos: -67.5,-0.5 + parent: 1 + type: Transform + - uid: 17671 + components: + - pos: -67.5,-1.5 + parent: 1 + type: Transform + - uid: 17672 + components: + - pos: -50.5,-5.5 + parent: 1 + type: Transform + - uid: 17673 + components: + - pos: -49.5,-5.5 + parent: 1 + type: Transform + - uid: 17674 + components: + - pos: -48.5,-5.5 + parent: 1 + type: Transform + - uid: 17675 + components: + - pos: -47.5,-5.5 + parent: 1 + type: Transform + - uid: 17676 + components: + - pos: -46.5,-5.5 + parent: 1 + type: Transform + - uid: 17677 + components: + - pos: -45.5,-5.5 + parent: 1 + type: Transform + - uid: 17678 + components: + - pos: -44.5,-5.5 + parent: 1 + type: Transform + - uid: 17679 + components: + - pos: -43.5,-5.5 + parent: 1 + type: Transform + - uid: 17680 + components: + - pos: -42.5,-5.5 + parent: 1 + type: Transform + - uid: 17681 + components: + - pos: -41.5,-5.5 + parent: 1 + type: Transform + - uid: 17682 + components: + - pos: -40.5,-5.5 + parent: 1 + type: Transform + - uid: 17683 + components: + - pos: -39.5,-5.5 + parent: 1 + type: Transform + - uid: 17684 + components: + - pos: -38.5,-5.5 + parent: 1 + type: Transform + - uid: 17685 + components: + - pos: -38.5,-4.5 + parent: 1 + type: Transform + - uid: 17686 + components: + - pos: -37.5,-4.5 + parent: 1 + type: Transform + - uid: 17687 + components: + - pos: -37.5,-3.5 + parent: 1 + type: Transform + - uid: 17688 + components: + - pos: -36.5,-3.5 + parent: 1 + type: Transform + - uid: 17689 + components: + - pos: -36.5,-2.5 + parent: 1 + type: Transform + - uid: 17690 + components: + - pos: -55.5,1.5 + parent: 1 + type: Transform + - uid: 17691 + components: + - pos: -55.5,0.5 + parent: 1 + type: Transform + - uid: 17692 + components: + - pos: -55.5,-0.5 + parent: 1 + type: Transform + - uid: 17693 + components: + - pos: -54.5,-0.5 + parent: 1 + type: Transform + - uid: 17694 + components: + - pos: -54.5,-1.5 + parent: 1 + type: Transform + - uid: 17695 + components: + - pos: -54.5,-2.5 + parent: 1 + type: Transform + - uid: 17696 + components: + - pos: -56.5,-0.5 + parent: 1 + type: Transform + - uid: 17697 + components: + - pos: -56.5,-1.5 + parent: 1 + type: Transform + - uid: 17698 + components: + - pos: -57.5,-0.5 + parent: 1 + type: Transform + - uid: 17699 + components: + - pos: -58.5,-0.5 + parent: 1 + type: Transform + - uid: 17700 + components: + - pos: -59.5,-0.5 + parent: 1 + type: Transform + - uid: 17701 + components: + - pos: -60.5,-0.5 + parent: 1 + type: Transform + - uid: 17702 + components: + - pos: -60.5,0.5 + parent: 1 + type: Transform + - uid: 17703 + components: + - pos: -60.5,1.5 + parent: 1 + type: Transform + - uid: 17704 + components: + - pos: -60.5,2.5 + parent: 1 + type: Transform + - uid: 17705 + components: + - pos: -60.5,3.5 + parent: 1 + type: Transform + - uid: 17706 + components: + - pos: -60.5,4.5 + parent: 1 + type: Transform + - uid: 17707 + components: + - pos: -49.5,11.5 + parent: 1 + type: Transform + - uid: 17708 + components: + - pos: -48.5,11.5 + parent: 1 + type: Transform + - uid: 17709 + components: + - pos: -48.5,12.5 + parent: 1 + type: Transform + - uid: 17710 + components: + - pos: -48.5,13.5 + parent: 1 + type: Transform + - uid: 17711 + components: + - pos: -47.5,13.5 + parent: 1 + type: Transform + - uid: 17712 + components: + - pos: -46.5,13.5 + parent: 1 + type: Transform + - uid: 17713 + components: + - pos: -48.5,10.5 + parent: 1 + type: Transform + - uid: 17714 + components: + - pos: -48.5,9.5 + parent: 1 + type: Transform + - uid: 17715 + components: + - pos: -48.5,8.5 + parent: 1 + type: Transform + - uid: 17716 + components: + - pos: -47.5,8.5 + parent: 1 + type: Transform + - uid: 17717 + components: + - pos: -46.5,8.5 + parent: 1 + type: Transform + - uid: 17718 + components: + - pos: -46.5,9.5 + parent: 1 + type: Transform + - uid: 17719 + components: + - pos: -46.5,10.5 + parent: 1 + type: Transform + - uid: 17720 + components: + - pos: -45.5,10.5 + parent: 1 + type: Transform + - uid: 17721 + components: + - pos: -44.5,10.5 + parent: 1 + type: Transform + - uid: 17722 + components: + - pos: -43.5,10.5 + parent: 1 + type: Transform + - uid: 17723 + components: + - pos: -42.5,10.5 + parent: 1 + type: Transform + - uid: 17724 + components: + - pos: -41.5,10.5 + parent: 1 + type: Transform + - uid: 17725 + components: + - pos: -40.5,10.5 + parent: 1 + type: Transform + - uid: 17726 + components: + - pos: -39.5,10.5 + parent: 1 + type: Transform + - uid: 17727 + components: + - pos: -38.5,10.5 + parent: 1 + type: Transform + - uid: 17728 + components: + - pos: -40.5,11.5 + parent: 1 + type: Transform + - uid: 17729 + components: + - pos: -40.5,12.5 + parent: 1 + type: Transform + - uid: 17730 + components: + - pos: -40.5,13.5 + parent: 1 + type: Transform + - uid: 17731 + components: + - pos: -42.5,11.5 + parent: 1 + type: Transform + - uid: 17732 + components: + - pos: -42.5,12.5 + parent: 1 + type: Transform + - uid: 17733 + components: + - pos: -42.5,13.5 + parent: 1 + type: Transform + - uid: 17734 + components: + - pos: -49.5,9.5 + parent: 1 + type: Transform + - uid: 17735 + components: + - pos: -50.5,9.5 + parent: 1 + type: Transform + - uid: 17736 + components: + - pos: -50.5,10.5 + parent: 1 + type: Transform + - uid: 17737 + components: + - pos: -50.5,11.5 + parent: 1 + type: Transform + - uid: 17738 + components: + - pos: -50.5,12.5 + parent: 1 + type: Transform + - uid: 17739 + components: + - pos: -50.5,13.5 + parent: 1 + type: Transform + - uid: 17740 + components: + - pos: -50.5,14.5 + parent: 1 + type: Transform + - uid: 17741 + components: + - pos: -50.5,15.5 + parent: 1 + type: Transform + - uid: 17742 + components: + - pos: -50.5,16.5 + parent: 1 + type: Transform + - uid: 17743 + components: + - pos: -49.5,16.5 + parent: 1 + type: Transform + - uid: 17744 + components: + - pos: -48.5,16.5 + parent: 1 + type: Transform + - uid: 17745 + components: + - pos: -47.5,16.5 + parent: 1 + type: Transform + - uid: 17746 + components: + - pos: -46.5,16.5 + parent: 1 + type: Transform + - uid: 17747 + components: + - pos: -50.5,17.5 + parent: 1 + type: Transform + - uid: 17748 + components: + - pos: -50.5,18.5 + parent: 1 + type: Transform + - uid: 17749 + components: + - pos: -50.5,19.5 + parent: 1 + type: Transform + - uid: 17750 + components: + - pos: -49.5,19.5 + parent: 1 + type: Transform + - uid: 17751 + components: + - pos: -50.5,8.5 + parent: 1 + type: Transform + - uid: 17752 + components: + - pos: -50.5,7.5 + parent: 1 + type: Transform + - uid: 17753 + components: + - pos: -51.5,6.5 + parent: 1 + type: Transform + - uid: 17754 + components: + - pos: -51.5,5.5 + parent: 1 + type: Transform + - uid: 17755 + components: + - pos: -51.5,4.5 + parent: 1 + type: Transform + - uid: 17756 + components: + - pos: -44.5,3.5 + parent: 1 + type: Transform + - uid: 17757 + components: + - pos: -51.5,3.5 + parent: 1 + type: Transform + - uid: 17758 + components: + - pos: -52.5,3.5 + parent: 1 + type: Transform + - uid: 17759 + components: + - pos: -53.5,3.5 + parent: 1 + type: Transform + - uid: 17760 + components: + - pos: -54.5,3.5 + parent: 1 + type: Transform + - uid: 17761 + components: + - pos: -55.5,3.5 + parent: 1 + type: Transform + - uid: 17762 + components: + - pos: -45.5,3.5 + parent: 1 + type: Transform + - uid: 17763 + components: + - pos: -51.5,7.5 + parent: 1 + type: Transform + - uid: 17764 + components: + - pos: -52.5,7.5 + parent: 1 + type: Transform + - uid: 17765 + components: + - pos: -53.5,7.5 + parent: 1 + type: Transform + - uid: 17766 + components: + - pos: -54.5,7.5 + parent: 1 + type: Transform + - uid: 17767 + components: + - pos: -46.5,3.5 + parent: 1 + type: Transform + - uid: 17768 + components: + - pos: -47.5,3.5 + parent: 1 + type: Transform + - uid: 17769 + components: + - pos: -47.5,2.5 + parent: 1 + type: Transform + - uid: 17770 + components: + - pos: -47.5,1.5 + parent: 1 + type: Transform + - uid: 17771 + components: + - pos: -47.5,0.5 + parent: 1 + type: Transform + - uid: 17772 + components: + - pos: -47.5,-0.5 + parent: 1 + type: Transform + - uid: 17773 + components: + - pos: -46.5,-0.5 + parent: 1 + type: Transform + - uid: 17774 + components: + - pos: -45.5,-0.5 + parent: 1 + type: Transform + - uid: 17775 + components: + - pos: -44.5,-0.5 + parent: 1 + type: Transform + - uid: 17776 + components: + - pos: -43.5,-0.5 + parent: 1 + type: Transform + - uid: 17777 + components: + - pos: -43.5,0.5 + parent: 1 + type: Transform + - uid: 17778 + components: + - pos: -43.5,1.5 + parent: 1 + type: Transform + - uid: 17779 + components: + - pos: -42.5,-0.5 + parent: 1 + type: Transform + - uid: 17780 + components: + - pos: -41.5,-0.5 + parent: 1 + type: Transform + - uid: 17781 + components: + - pos: -42.5,1.5 + parent: 1 + type: Transform + - uid: 17782 + components: + - pos: -41.5,1.5 + parent: 1 + type: Transform + - uid: 17783 + components: + - pos: -41.5,2.5 + parent: 1 + type: Transform + - uid: 17784 + components: + - pos: -41.5,3.5 + parent: 1 + type: Transform + - uid: 17785 + components: + - pos: -41.5,4.5 + parent: 1 + type: Transform + - uid: 17786 + components: + - pos: -41.5,5.5 + parent: 1 + type: Transform + - uid: 17787 + components: + - pos: -41.5,6.5 + parent: 1 + type: Transform + - uid: 17801 + components: + - pos: -38.5,-19.5 + parent: 1 + type: Transform + - uid: 17802 + components: + - pos: -38.5,-20.5 + parent: 1 + type: Transform + - uid: 17803 + components: + - pos: -37.5,-20.5 + parent: 1 + type: Transform + - uid: 17804 + components: + - pos: -36.5,-20.5 + parent: 1 + type: Transform + - uid: 17805 + components: + - pos: -35.5,-20.5 + parent: 1 + type: Transform + - uid: 17806 + components: + - pos: -35.5,-21.5 + parent: 1 + type: Transform + - uid: 17807 + components: + - pos: -35.5,-22.5 + parent: 1 + type: Transform + - uid: 17808 + components: + - pos: -35.5,-23.5 + parent: 1 + type: Transform + - uid: 17809 + components: + - pos: -35.5,-24.5 + parent: 1 + type: Transform + - uid: 17810 + components: + - pos: -35.5,-25.5 + parent: 1 + type: Transform + - uid: 17811 + components: + - pos: -35.5,-19.5 + parent: 1 + type: Transform + - uid: 17812 + components: + - pos: -35.5,-18.5 + parent: 1 + type: Transform + - uid: 17813 + components: + - pos: -35.5,-17.5 + parent: 1 + type: Transform + - uid: 17814 + components: + - pos: -36.5,-17.5 + parent: 1 + type: Transform + - uid: 17815 + components: + - pos: -37.5,-17.5 + parent: 1 + type: Transform + - uid: 17816 + components: + - pos: -37.5,-16.5 + parent: 1 + type: Transform + - uid: 17817 + components: + - pos: -37.5,-15.5 + parent: 1 + type: Transform + - uid: 17818 + components: + - pos: -34.5,-20.5 + parent: 1 + type: Transform + - uid: 17819 + components: + - pos: -33.5,-20.5 + parent: 1 + type: Transform + - uid: 17820 + components: + - pos: -32.5,-20.5 + parent: 1 + type: Transform + - uid: 17821 + components: + - pos: -32.5,-21.5 + parent: 1 + type: Transform + - uid: 17822 + components: + - pos: -32.5,-22.5 + parent: 1 + type: Transform + - uid: 17823 + components: + - pos: -31.5,-22.5 + parent: 1 + type: Transform + - uid: 17824 + components: + - pos: -30.5,-22.5 + parent: 1 + type: Transform + - uid: 17825 + components: + - pos: -29.5,-22.5 + parent: 1 + type: Transform + - uid: 17826 + components: + - pos: -32.5,-23.5 + parent: 1 + type: Transform + - uid: 17827 + components: + - pos: -32.5,-24.5 + parent: 1 + type: Transform + - uid: 17828 + components: + - pos: -32.5,-25.5 + parent: 1 + type: Transform + - uid: 17829 + components: + - pos: -32.5,-26.5 + parent: 1 + type: Transform + - uid: 17830 + components: + - pos: -32.5,-27.5 + parent: 1 + type: Transform + - uid: 17831 + components: + - pos: -32.5,-28.5 + parent: 1 + type: Transform + - uid: 17832 + components: + - pos: -32.5,-29.5 + parent: 1 + type: Transform + - uid: 17833 + components: + - pos: -33.5,-29.5 + parent: 1 + type: Transform + - uid: 17834 + components: + - pos: -32.5,-30.5 + parent: 1 + type: Transform + - uid: 17835 + components: + - pos: -31.5,-30.5 + parent: 1 + type: Transform + - uid: 17836 + components: + - pos: -31.5,-31.5 + parent: 1 + type: Transform + - uid: 17837 + components: + - pos: -30.5,-31.5 + parent: 1 + type: Transform + - uid: 17838 + components: + - pos: -30.5,-32.5 + parent: 1 + type: Transform + - uid: 17839 + components: + - pos: -29.5,-32.5 + parent: 1 + type: Transform + - uid: 17840 + components: + - pos: -28.5,-32.5 + parent: 1 + type: Transform + - uid: 17841 + components: + - pos: -27.5,-32.5 + parent: 1 + type: Transform + - uid: 17842 + components: + - pos: -26.5,-32.5 + parent: 1 + type: Transform + - uid: 17843 + components: + - pos: -25.5,-32.5 + parent: 1 + type: Transform + - uid: 17844 + components: + - pos: -25.5,-31.5 + parent: 1 + type: Transform + - uid: 17845 + components: + - pos: -25.5,-30.5 + parent: 1 + type: Transform + - uid: 17846 + components: + - pos: -25.5,-29.5 + parent: 1 + type: Transform + - uid: 17847 + components: + - pos: -25.5,-33.5 + parent: 1 + type: Transform + - uid: 17848 + components: + - pos: -25.5,-34.5 + parent: 1 + type: Transform + - uid: 17849 + components: + - pos: -25.5,-35.5 + parent: 1 + type: Transform + - uid: 17850 + components: + - pos: -25.5,-36.5 + parent: 1 + type: Transform + - uid: 17851 + components: + - pos: -24.5,-36.5 + parent: 1 + type: Transform + - uid: 17852 + components: + - pos: -26.5,-36.5 + parent: 1 + type: Transform + - uid: 17853 + components: + - pos: -24.5,-32.5 + parent: 1 + type: Transform + - uid: 17854 + components: + - pos: -23.5,-32.5 + parent: 1 + type: Transform + - uid: 17855 + components: + - pos: -22.5,-32.5 + parent: 1 + type: Transform + - uid: 17856 + components: + - pos: -22.5,-31.5 + parent: 1 + type: Transform + - uid: 17857 + components: + - pos: -22.5,-30.5 + parent: 1 + type: Transform + - uid: 17858 + components: + - pos: -22.5,-29.5 + parent: 1 + type: Transform + - uid: 17859 + components: + - pos: -21.5,-32.5 + parent: 1 + type: Transform + - uid: 17860 + components: + - pos: -20.5,-32.5 + parent: 1 + type: Transform + - uid: 17861 + components: + - pos: -19.5,-32.5 + parent: 1 + type: Transform + - uid: 17862 + components: + - pos: -19.5,-31.5 + parent: 1 + type: Transform + - uid: 17863 + components: + - pos: -19.5,-30.5 + parent: 1 + type: Transform + - uid: 17864 + components: + - pos: -19.5,-29.5 + parent: 1 + type: Transform + - uid: 17865 + components: + - pos: -32.5,-19.5 + parent: 1 + type: Transform + - uid: 17866 + components: + - pos: -31.5,-19.5 + parent: 1 + type: Transform + - uid: 17867 + components: + - pos: -31.5,-18.5 + parent: 1 + type: Transform + - uid: 17868 + components: + - pos: -30.5,-18.5 + parent: 1 + type: Transform + - uid: 17869 + components: + - pos: -30.5,-17.5 + parent: 1 + type: Transform + - uid: 17870 + components: + - pos: -29.5,-17.5 + parent: 1 + type: Transform + - uid: 17887 + components: + - pos: -34.5,0.5 + parent: 1 + type: Transform + - uid: 17888 + components: + - pos: -35.5,0.5 + parent: 1 + type: Transform + - uid: 17889 + components: + - pos: -36.5,0.5 + parent: 1 + type: Transform + - uid: 17890 + components: + - pos: -37.5,0.5 + parent: 1 + type: Transform + - uid: 17891 + components: + - pos: -37.5,1.5 + parent: 1 + type: Transform + - uid: 17892 + components: + - pos: -37.5,2.5 + parent: 1 + type: Transform + - uid: 17893 + components: + - pos: -37.5,3.5 + parent: 1 + type: Transform + - uid: 17894 + components: + - pos: -37.5,4.5 + parent: 1 + type: Transform + - uid: 17895 + components: + - pos: -37.5,5.5 + parent: 1 + type: Transform + - uid: 17896 + components: + - pos: -36.5,3.5 + parent: 1 + type: Transform + - uid: 17897 + components: + - pos: -35.5,3.5 + parent: 1 + type: Transform + - uid: 17898 + components: + - pos: -34.5,3.5 + parent: 1 + type: Transform + - uid: 17899 + components: + - pos: -33.5,3.5 + parent: 1 + type: Transform + - uid: 17900 + components: + - pos: -32.5,3.5 + parent: 1 + type: Transform + - uid: 17901 + components: + - pos: -31.5,3.5 + parent: 1 + type: Transform + - uid: 17902 + components: + - pos: -30.5,3.5 + parent: 1 + type: Transform + - uid: 17903 + components: + - pos: -30.5,2.5 + parent: 1 + type: Transform + - uid: 17904 + components: + - pos: -30.5,1.5 + parent: 1 + type: Transform + - uid: 17905 + components: + - pos: -30.5,0.5 + parent: 1 + type: Transform + - uid: 17906 + components: + - pos: -29.5,0.5 + parent: 1 + type: Transform + - uid: 17907 + components: + - pos: -29.5,-0.5 + parent: 1 + type: Transform + - uid: 17908 + components: + - pos: -29.5,-1.5 + parent: 1 + type: Transform + - uid: 17909 + components: + - pos: -29.5,-2.5 + parent: 1 + type: Transform + - uid: 17910 + components: + - pos: -30.5,4.5 + parent: 1 + type: Transform + - uid: 17911 + components: + - pos: -30.5,5.5 + parent: 1 + type: Transform + - uid: 17912 + components: + - pos: -30.5,6.5 + parent: 1 + type: Transform + - uid: 17913 + components: + - pos: -30.5,7.5 + parent: 1 + type: Transform + - uid: 17914 + components: + - pos: -29.5,7.5 + parent: 1 + type: Transform + - uid: 17915 + components: + - pos: -29.5,8.5 + parent: 1 + type: Transform + - uid: 17916 + components: + - pos: -29.5,9.5 + parent: 1 + type: Transform + - uid: 17917 + components: + - pos: -29.5,10.5 + parent: 1 + type: Transform + - uid: 17926 + components: + - pos: -53.5,36.5 + parent: 1 + type: Transform + - uid: 17927 + components: + - pos: -53.5,35.5 + parent: 1 + type: Transform + - uid: 17928 + components: + - pos: -53.5,34.5 + parent: 1 + type: Transform + - uid: 17929 + components: + - pos: -54.5,34.5 + parent: 1 + type: Transform + - uid: 17930 + components: + - pos: -55.5,34.5 + parent: 1 + type: Transform + - uid: 17931 + components: + - pos: -56.5,34.5 + parent: 1 + type: Transform + - uid: 17932 + components: + - pos: -57.5,34.5 + parent: 1 + type: Transform + - uid: 17933 + components: + - pos: -58.5,34.5 + parent: 1 + type: Transform + - uid: 17934 + components: + - pos: -58.5,33.5 + parent: 1 + type: Transform + - uid: 17935 + components: + - pos: -59.5,33.5 + parent: 1 + type: Transform + - uid: 17936 + components: + - pos: -59.5,32.5 + parent: 1 + type: Transform + - uid: 17937 + components: + - pos: -59.5,31.5 + parent: 1 + type: Transform + - uid: 17938 + components: + - pos: -59.5,30.5 + parent: 1 + type: Transform + - uid: 17939 + components: + - pos: -59.5,29.5 + parent: 1 + type: Transform + - uid: 17940 + components: + - pos: -59.5,28.5 + parent: 1 + type: Transform + - uid: 17941 + components: + - pos: -60.5,28.5 + parent: 1 + type: Transform + - uid: 17942 + components: + - pos: -61.5,28.5 + parent: 1 + type: Transform + - uid: 17943 + components: + - pos: -62.5,28.5 + parent: 1 + type: Transform + - uid: 17944 + components: + - pos: -63.5,28.5 + parent: 1 + type: Transform + - uid: 17945 + components: + - pos: -63.5,29.5 + parent: 1 + type: Transform + - uid: 17946 + components: + - pos: -63.5,30.5 + parent: 1 + type: Transform + - uid: 17947 + components: + - pos: -63.5,31.5 + parent: 1 + type: Transform + - uid: 17948 + components: + - pos: -64.5,31.5 + parent: 1 + type: Transform + - uid: 17949 + components: + - pos: -65.5,31.5 + parent: 1 + type: Transform + - uid: 17950 + components: + - pos: -66.5,31.5 + parent: 1 + type: Transform + - uid: 17951 + components: + - pos: -56.5,33.5 + parent: 1 + type: Transform + - uid: 17952 + components: + - pos: -56.5,32.5 + parent: 1 + type: Transform + - uid: 17953 + components: + - pos: -56.5,31.5 + parent: 1 + type: Transform + - uid: 17954 + components: + - pos: -56.5,30.5 + parent: 1 + type: Transform + - uid: 17955 + components: + - pos: -56.5,29.5 + parent: 1 + type: Transform + - uid: 17956 + components: + - pos: -56.5,28.5 + parent: 1 + type: Transform + - uid: 17957 + components: + - pos: -56.5,27.5 + parent: 1 + type: Transform + - uid: 17958 + components: + - pos: -56.5,26.5 + parent: 1 + type: Transform + - uid: 17959 + components: + - pos: -56.5,25.5 + parent: 1 + type: Transform + - uid: 17960 + components: + - pos: -56.5,24.5 + parent: 1 + type: Transform + - uid: 17961 + components: + - pos: -55.5,24.5 + parent: 1 + type: Transform + - uid: 17962 + components: + - pos: -54.5,24.5 + parent: 1 + type: Transform + - uid: 17963 + components: + - pos: -53.5,24.5 + parent: 1 + type: Transform + - uid: 17964 + components: + - pos: -52.5,24.5 + parent: 1 + type: Transform + - uid: 17965 + components: + - pos: -51.5,24.5 + parent: 1 + type: Transform + - uid: 17967 + components: + - pos: -51.5,23.5 + parent: 1 + type: Transform + - uid: 17968 + components: + - pos: -50.5,25.5 + parent: 1 + type: Transform + - uid: 17969 + components: + - pos: -50.5,26.5 + parent: 1 + type: Transform + - uid: 17970 + components: + - pos: -50.5,27.5 + parent: 1 + type: Transform + - uid: 17971 + components: + - pos: -50.5,28.5 + parent: 1 + type: Transform + - uid: 17972 + components: + - pos: -49.5,28.5 + parent: 1 + type: Transform + - uid: 17973 + components: + - pos: -48.5,28.5 + parent: 1 + type: Transform + - uid: 17974 + components: + - pos: -47.5,28.5 + parent: 1 + type: Transform + - uid: 17975 + components: + - pos: -46.5,28.5 + parent: 1 + type: Transform + - uid: 17976 + components: + - pos: -45.5,28.5 + parent: 1 + type: Transform + - uid: 17977 + components: + - pos: -44.5,28.5 + parent: 1 + type: Transform + - uid: 17978 + components: + - pos: -43.5,28.5 + parent: 1 + type: Transform + - uid: 17979 + components: + - pos: -42.5,28.5 + parent: 1 + type: Transform + - uid: 17980 + components: + - pos: -41.5,28.5 + parent: 1 + type: Transform + - uid: 17981 + components: + - pos: -52.5,34.5 + parent: 1 + type: Transform + - uid: 17982 + components: + - pos: -51.5,34.5 + parent: 1 + type: Transform + - uid: 17983 + components: + - pos: -50.5,34.5 + parent: 1 + type: Transform + - uid: 17984 + components: + - pos: -49.5,34.5 + parent: 1 + type: Transform + - uid: 17985 + components: + - pos: -48.5,34.5 + parent: 1 + type: Transform + - uid: 17986 + components: + - pos: -47.5,34.5 + parent: 1 + type: Transform + - uid: 17987 + components: + - pos: -46.5,34.5 + parent: 1 + type: Transform + - uid: 17988 + components: + - pos: -45.5,34.5 + parent: 1 + type: Transform + - uid: 17989 + components: + - pos: -44.5,34.5 + parent: 1 + type: Transform + - uid: 17990 + components: + - pos: -43.5,34.5 + parent: 1 + type: Transform + - uid: 17991 + components: + - pos: -42.5,34.5 + parent: 1 + type: Transform + - uid: 17992 + components: + - pos: -41.5,34.5 + parent: 1 + type: Transform + - uid: 17993 + components: + - pos: -50.5,23.5 + parent: 1 + type: Transform + - uid: 17994 + components: + - pos: -49.5,23.5 + parent: 1 + type: Transform + - uid: 17995 + components: + - pos: -48.5,23.5 + parent: 1 + type: Transform + - uid: 17996 + components: + - pos: -47.5,23.5 + parent: 1 + type: Transform + - uid: 17997 + components: + - pos: -46.5,23.5 + parent: 1 + type: Transform + - uid: 17998 + components: + - pos: -45.5,23.5 + parent: 1 + type: Transform + - uid: 17999 + components: + - pos: -44.5,23.5 + parent: 1 + type: Transform + - uid: 18000 + components: + - pos: -43.5,23.5 + parent: 1 + type: Transform + - uid: 18001 + components: + - pos: -42.5,23.5 + parent: 1 + type: Transform + - uid: 18002 + components: + - pos: -41.5,23.5 + parent: 1 + type: Transform + - uid: 18003 + components: + - pos: -40.5,23.5 + parent: 1 + type: Transform + - uid: 18004 + components: + - pos: -39.5,23.5 + parent: 1 + type: Transform + - uid: 18005 + components: + - pos: -38.5,23.5 + parent: 1 + type: Transform + - uid: 18006 + components: + - pos: -37.5,23.5 + parent: 1 + type: Transform + - uid: 18007 + components: + - pos: -37.5,24.5 + parent: 1 + type: Transform + - uid: 18008 + components: + - pos: -37.5,25.5 + parent: 1 + type: Transform + - uid: 18009 + components: + - pos: -37.5,26.5 + parent: 1 + type: Transform + - uid: 18010 + components: + - pos: -37.5,27.5 + parent: 1 + type: Transform + - uid: 18011 + components: + - pos: -37.5,28.5 + parent: 1 + type: Transform + - uid: 18012 + components: + - pos: -37.5,29.5 + parent: 1 + type: Transform + - uid: 18013 + components: + - pos: -37.5,30.5 + parent: 1 + type: Transform + - uid: 18014 + components: + - pos: -37.5,31.5 + parent: 1 + type: Transform + - uid: 18019 + components: + - pos: -39.5,34.5 + parent: 1 + type: Transform + - uid: 18020 + components: + - pos: -40.5,34.5 + parent: 1 + type: Transform + - uid: 18021 + components: + - pos: -40.5,28.5 + parent: 1 + type: Transform + - uid: 18022 + components: + - pos: -39.5,28.5 + parent: 1 + type: Transform + - uid: 18023 + components: + - pos: -38.5,28.5 + parent: 1 + type: Transform + - uid: 18024 + components: + - pos: -50.5,37.5 + parent: 1 + type: Transform + - uid: 18025 + components: + - pos: -51.5,37.5 + parent: 1 + type: Transform + - uid: 18026 + components: + - pos: -51.5,36.5 + parent: 1 + type: Transform + - uid: 18027 + components: + - pos: -36.5,32.5 + parent: 1 + type: Transform + - uid: 18029 + components: + - pos: -49.5,37.5 + parent: 1 + type: Transform + - uid: 18030 + components: + - pos: -48.5,37.5 + parent: 1 + type: Transform + - uid: 18031 + components: + - pos: -47.5,37.5 + parent: 1 + type: Transform + - uid: 18032 + components: + - pos: -46.5,37.5 + parent: 1 + type: Transform + - uid: 18033 + components: + - pos: -45.5,37.5 + parent: 1 + type: Transform + - uid: 18034 + components: + - pos: -44.5,37.5 + parent: 1 + type: Transform + - uid: 18035 + components: + - pos: -43.5,37.5 + parent: 1 + type: Transform + - uid: 18036 + components: + - pos: -42.5,37.5 + parent: 1 + type: Transform + - uid: 18037 + components: + - pos: -41.5,37.5 + parent: 1 + type: Transform + - uid: 18038 + components: + - pos: -40.5,37.5 + parent: 1 + type: Transform + - uid: 18039 + components: + - pos: -39.5,37.5 + parent: 1 + type: Transform + - uid: 18040 + components: + - pos: -39.5,38.5 + parent: 1 + type: Transform + - uid: 18041 + components: + - pos: -39.5,39.5 + parent: 1 + type: Transform + - uid: 18042 + components: + - pos: -39.5,40.5 + parent: 1 + type: Transform + - uid: 18043 + components: + - pos: -39.5,41.5 + parent: 1 + type: Transform + - uid: 18044 + components: + - pos: -41.5,41.5 + parent: 1 + type: Transform + - uid: 18045 + components: + - pos: -42.5,41.5 + parent: 1 + type: Transform + - uid: 18046 + components: + - pos: -43.5,41.5 + parent: 1 + type: Transform + - uid: 18048 + components: + - pos: -38.5,37.5 + parent: 1 + type: Transform + - uid: 18049 + components: + - pos: -37.5,37.5 + parent: 1 + type: Transform + - uid: 18050 + components: + - pos: -36.5,37.5 + parent: 1 + type: Transform + - uid: 18051 + components: + - pos: -35.5,37.5 + parent: 1 + type: Transform + - uid: 18052 + components: + - pos: -34.5,37.5 + parent: 1 + type: Transform + - uid: 18053 + components: + - pos: -33.5,37.5 + parent: 1 + type: Transform + - uid: 18054 + components: + - pos: -32.5,37.5 + parent: 1 + type: Transform + - uid: 18055 + components: + - pos: -31.5,37.5 + parent: 1 + type: Transform + - uid: 18056 + components: + - pos: -31.5,38.5 + parent: 1 + type: Transform + - uid: 18057 + components: + - pos: -30.5,38.5 + parent: 1 + type: Transform + - uid: 18058 + components: + - pos: -30.5,39.5 + parent: 1 + type: Transform + - uid: 18059 + components: + - pos: -29.5,39.5 + parent: 1 + type: Transform + - uid: 18060 + components: + - pos: -29.5,40.5 + parent: 1 + type: Transform + - uid: 18061 + components: + - pos: -28.5,40.5 + parent: 1 + type: Transform + - uid: 18062 + components: + - pos: -27.5,40.5 + parent: 1 + type: Transform + - uid: 18063 + components: + - pos: -26.5,40.5 + parent: 1 + type: Transform + - uid: 18064 + components: + - pos: -25.5,40.5 + parent: 1 + type: Transform + - uid: 18065 + components: + - pos: -24.5,40.5 + parent: 1 + type: Transform + - uid: 18066 + components: + - pos: -23.5,40.5 + parent: 1 + type: Transform + - uid: 18067 + components: + - pos: -22.5,40.5 + parent: 1 + type: Transform + - uid: 18068 + components: + - pos: -22.5,41.5 + parent: 1 + type: Transform + - uid: 18069 + components: + - pos: -22.5,42.5 + parent: 1 + type: Transform + - uid: 18070 + components: + - pos: -22.5,43.5 + parent: 1 + type: Transform + - uid: 18071 + components: + - pos: -22.5,44.5 + parent: 1 + type: Transform + - uid: 18072 + components: + - pos: -22.5,45.5 + parent: 1 + type: Transform + - uid: 18073 + components: + - pos: -23.5,45.5 + parent: 1 + type: Transform + - uid: 18074 + components: + - pos: -24.5,45.5 + parent: 1 + type: Transform + - uid: 18075 + components: + - pos: -25.5,45.5 + parent: 1 + type: Transform + - uid: 18076 + components: + - pos: -26.5,45.5 + parent: 1 + type: Transform + - uid: 18077 + components: + - pos: -27.5,45.5 + parent: 1 + type: Transform + - uid: 18078 + components: + - pos: -21.5,40.5 + parent: 1 + type: Transform + - uid: 18079 + components: + - pos: -20.5,40.5 + parent: 1 + type: Transform + - uid: 18080 + components: + - pos: -19.5,40.5 + parent: 1 + type: Transform + - uid: 18081 + components: + - pos: -19.5,39.5 + parent: 1 + type: Transform + - uid: 18082 + components: + - pos: -19.5,38.5 + parent: 1 + type: Transform + - uid: 18083 + components: + - pos: -19.5,37.5 + parent: 1 + type: Transform + - uid: 18084 + components: + - pos: -32.5,36.5 + parent: 1 + type: Transform + - uid: 18085 + components: + - pos: -32.5,35.5 + parent: 1 + type: Transform + - uid: 18086 + components: + - pos: -32.5,34.5 + parent: 1 + type: Transform + - uid: 18087 + components: + - pos: -32.5,33.5 + parent: 1 + type: Transform + - uid: 18088 + components: + - pos: -32.5,32.5 + parent: 1 + type: Transform + - uid: 18089 + components: + - pos: -32.5,31.5 + parent: 1 + type: Transform + - uid: 18090 + components: + - pos: -32.5,30.5 + parent: 1 + type: Transform + - uid: 18091 + components: + - pos: -32.5,29.5 + parent: 1 + type: Transform + - uid: 18092 + components: + - pos: -32.5,28.5 + parent: 1 + type: Transform + - uid: 18093 + components: + - pos: -32.5,27.5 + parent: 1 + type: Transform + - uid: 18094 + components: + - pos: -32.5,26.5 + parent: 1 + type: Transform + - uid: 18095 + components: + - pos: -32.5,25.5 + parent: 1 + type: Transform + - uid: 18096 + components: + - pos: -32.5,24.5 + parent: 1 + type: Transform + - uid: 18097 + components: + - pos: -33.5,24.5 + parent: 1 + type: Transform + - uid: 18098 + components: + - pos: -33.5,23.5 + parent: 1 + type: Transform + - uid: 18099 + components: + - pos: -33.5,22.5 + parent: 1 + type: Transform + - uid: 18100 + components: + - pos: -33.5,21.5 + parent: 1 + type: Transform + - uid: 18101 + components: + - pos: -31.5,28.5 + parent: 1 + type: Transform + - uid: 18102 + components: + - pos: -30.5,28.5 + parent: 1 + type: Transform + - uid: 18103 + components: + - pos: -29.5,28.5 + parent: 1 + type: Transform + - uid: 18104 + components: + - pos: -28.5,28.5 + parent: 1 + type: Transform + - uid: 18105 + components: + - pos: -30.5,29.5 + parent: 1 + type: Transform + - uid: 18106 + components: + - pos: -30.5,30.5 + parent: 1 + type: Transform + - uid: 18107 + components: + - pos: -30.5,31.5 + parent: 1 + type: Transform + - uid: 18108 + components: + - pos: -30.5,32.5 + parent: 1 + type: Transform + - uid: 18109 + components: + - pos: -30.5,33.5 + parent: 1 + type: Transform + - uid: 18110 + components: + - pos: -29.5,33.5 + parent: 1 + type: Transform + - uid: 18111 + components: + - pos: -29.5,34.5 + parent: 1 + type: Transform + - uid: 18112 + components: + - pos: -28.5,34.5 + parent: 1 + type: Transform + - uid: 18113 + components: + - pos: -27.5,34.5 + parent: 1 + type: Transform + - uid: 18114 + components: + - pos: -26.5,34.5 + parent: 1 + type: Transform + - uid: 18115 + components: + - pos: -25.5,34.5 + parent: 1 + type: Transform + - uid: 18116 + components: + - pos: -25.5,33.5 + parent: 1 + type: Transform + - uid: 18373 + components: + - pos: 28.5,44.5 + parent: 1 + type: Transform + - uid: 18374 + components: + - pos: 28.5,45.5 + parent: 1 + type: Transform + - uid: 18375 + components: + - pos: 29.5,45.5 + parent: 1 + type: Transform + - uid: 18376 + components: + - pos: 27.5,45.5 + parent: 1 + type: Transform + - uid: 18377 + components: + - pos: 26.5,45.5 + parent: 1 + type: Transform + - uid: 18378 + components: + - pos: 25.5,45.5 + parent: 1 + type: Transform + - uid: 18379 + components: + - pos: 24.5,45.5 + parent: 1 + type: Transform + - uid: 18380 + components: + - pos: 23.5,45.5 + parent: 1 + type: Transform + - uid: 18381 + components: + - pos: 26.5,44.5 + parent: 1 + type: Transform + - uid: 18382 + components: + - pos: 28.5,43.5 + parent: 1 + type: Transform + - uid: 18383 + components: + - pos: 29.5,43.5 + parent: 1 + type: Transform + - uid: 18384 + components: + - pos: 26.5,43.5 + parent: 1 + type: Transform + - uid: 18385 + components: + - pos: 26.5,42.5 + parent: 1 + type: Transform + - uid: 18386 + components: + - pos: 26.5,41.5 + parent: 1 + type: Transform + - uid: 18387 + components: + - pos: 26.5,40.5 + parent: 1 + type: Transform + - uid: 18388 + components: + - pos: 27.5,40.5 + parent: 1 + type: Transform + - uid: 18389 + components: + - pos: 28.5,40.5 + parent: 1 + type: Transform + - uid: 18390 + components: + - pos: 29.5,40.5 + parent: 1 + type: Transform + - uid: 18391 + components: + - pos: 22.5,45.5 + parent: 1 + type: Transform + - uid: 18392 + components: + - pos: 21.5,45.5 + parent: 1 + type: Transform + - uid: 18393 + components: + - pos: 20.5,45.5 + parent: 1 + type: Transform + - uid: 18394 + components: + - pos: 19.5,45.5 + parent: 1 + type: Transform + - uid: 18395 + components: + - pos: 18.5,45.5 + parent: 1 + type: Transform + - uid: 18396 + components: + - pos: 14.5,47.5 + parent: 1 + type: Transform + - uid: 18397 + components: + - pos: 14.5,48.5 + parent: 1 + type: Transform + - uid: 18398 + components: + - pos: 14.5,49.5 + parent: 1 + type: Transform + - uid: 18399 + components: + - pos: 15.5,49.5 + parent: 1 + type: Transform + - uid: 18400 + components: + - pos: 16.5,49.5 + parent: 1 + type: Transform + - uid: 18401 + components: + - pos: 17.5,49.5 + parent: 1 + type: Transform + - uid: 18402 + components: + - pos: 18.5,49.5 + parent: 1 + type: Transform + - uid: 18403 + components: + - pos: 13.5,49.5 + parent: 1 + type: Transform + - uid: 18404 + components: + - pos: 12.5,49.5 + parent: 1 + type: Transform + - uid: 18405 + components: + - pos: 14.5,46.5 + parent: 1 + type: Transform + - uid: 18406 + components: + - pos: 14.5,45.5 + parent: 1 + type: Transform + - uid: 18407 + components: + - pos: 14.5,44.5 + parent: 1 + type: Transform + - uid: 18408 + components: + - pos: 14.5,43.5 + parent: 1 + type: Transform + - uid: 18409 + components: + - pos: 14.5,42.5 + parent: 1 + type: Transform + - uid: 18410 + components: + - pos: 14.5,41.5 + parent: 1 + type: Transform + - uid: 18411 + components: + - pos: 15.5,41.5 + parent: 1 + type: Transform + - uid: 18412 + components: + - pos: 16.5,41.5 + parent: 1 + type: Transform + - uid: 18413 + components: + - pos: 17.5,41.5 + parent: 1 + type: Transform + - uid: 18414 + components: + - pos: 18.5,41.5 + parent: 1 + type: Transform + - uid: 18415 + components: + - pos: 19.5,41.5 + parent: 1 + type: Transform + - uid: 18416 + components: + - pos: 20.5,41.5 + parent: 1 + type: Transform + - uid: 18417 + components: + - pos: 21.5,41.5 + parent: 1 + type: Transform + - uid: 18418 + components: + - pos: 13.5,41.5 + parent: 1 + type: Transform + - uid: 18419 + components: + - pos: 12.5,41.5 + parent: 1 + type: Transform + - uid: 18420 + components: + - pos: 11.5,41.5 + parent: 1 + type: Transform + - uid: 18421 + components: + - pos: 10.5,41.5 + parent: 1 + type: Transform + - uid: 18422 + components: + - pos: 9.5,41.5 + parent: 1 + type: Transform + - uid: 18423 + components: + - pos: 9.5,42.5 + parent: 1 + type: Transform + - uid: 18424 + components: + - pos: 9.5,42.5 + parent: 1 + type: Transform + - uid: 18425 + components: + - pos: 9.5,43.5 + parent: 1 + type: Transform + - uid: 18426 + components: + - pos: 9.5,44.5 + parent: 1 + type: Transform + - uid: 18427 + components: + - pos: 9.5,45.5 + parent: 1 + type: Transform + - uid: 18428 + components: + - pos: 9.5,46.5 + parent: 1 + type: Transform + - uid: 18429 + components: + - pos: 9.5,47.5 + parent: 1 + type: Transform + - uid: 18430 + components: + - pos: 9.5,48.5 + parent: 1 + type: Transform + - uid: 18431 + components: + - pos: 9.5,49.5 + parent: 1 + type: Transform + - uid: 18432 + components: + - pos: 9.5,50.5 + parent: 1 + type: Transform + - uid: 18433 + components: + - pos: 8.5,50.5 + parent: 1 + type: Transform + - uid: 18434 + components: + - pos: 7.5,50.5 + parent: 1 + type: Transform + - uid: 18435 + components: + - pos: 6.5,50.5 + parent: 1 + type: Transform + - uid: 18436 + components: + - pos: 5.5,50.5 + parent: 1 + type: Transform + - uid: 18437 + components: + - pos: 10.5,45.5 + parent: 1 + type: Transform + - uid: 18438 + components: + - pos: 11.5,45.5 + parent: 1 + type: Transform + - uid: 18439 + components: + - pos: 12.5,45.5 + parent: 1 + type: Transform + - uid: 18440 + components: + - pos: 13.5,45.5 + parent: 1 + type: Transform + - uid: 18441 + components: + - pos: 12.5,40.5 + parent: 1 + type: Transform + - uid: 18442 + components: + - pos: 12.5,39.5 + parent: 1 + type: Transform + - uid: 18443 + components: + - pos: 12.5,38.5 + parent: 1 + type: Transform + - uid: 18444 + components: + - pos: 12.5,37.5 + parent: 1 + type: Transform + - uid: 18445 + components: + - pos: 13.5,37.5 + parent: 1 + type: Transform + - uid: 18446 + components: + - pos: 14.5,37.5 + parent: 1 + type: Transform + - uid: 18447 + components: + - pos: 11.5,37.5 + parent: 1 + type: Transform + - uid: 18448 + components: + - pos: 10.5,37.5 + parent: 1 + type: Transform + - uid: 18449 + components: + - pos: 9.5,37.5 + parent: 1 + type: Transform + - uid: 18450 + components: + - pos: 12.5,36.5 + parent: 1 + type: Transform + - uid: 18451 + components: + - pos: 12.5,35.5 + parent: 1 + type: Transform + - uid: 18452 + components: + - pos: 12.5,34.5 + parent: 1 + type: Transform + - uid: 18453 + components: + - pos: 12.5,33.5 + parent: 1 + type: Transform + - uid: 18454 + components: + - pos: 12.5,32.5 + parent: 1 + type: Transform + - uid: 18455 + components: + - pos: 12.5,31.5 + parent: 1 + type: Transform + - uid: 18456 + components: + - pos: 11.5,31.5 + parent: 1 + type: Transform + - uid: 18457 + components: + - pos: 11.5,34.5 + parent: 1 + type: Transform + - uid: 18458 + components: + - pos: 10.5,34.5 + parent: 1 + type: Transform + - uid: 18459 + components: + - pos: 9.5,34.5 + parent: 1 + type: Transform + - uid: 18460 + components: + - pos: 8.5,34.5 + parent: 1 + type: Transform + - uid: 18461 + components: + - pos: 7.5,34.5 + parent: 1 + type: Transform + - uid: 18462 + components: + - pos: 6.5,34.5 + parent: 1 + type: Transform + - uid: 18463 + components: + - pos: 6.5,33.5 + parent: 1 + type: Transform + - uid: 18464 + components: + - pos: 6.5,32.5 + parent: 1 + type: Transform + - uid: 18465 + components: + - pos: 6.5,31.5 + parent: 1 + type: Transform + - uid: 18466 + components: + - pos: 6.5,30.5 + parent: 1 + type: Transform + - uid: 18467 + components: + - pos: 5.5,30.5 + parent: 1 + type: Transform + - uid: 18468 + components: + - pos: 4.5,30.5 + parent: 1 + type: Transform + - uid: 18469 + components: + - pos: 3.5,30.5 + parent: 1 + type: Transform + - uid: 18470 + components: + - pos: 13.5,34.5 + parent: 1 + type: Transform + - uid: 18471 + components: + - pos: 14.5,34.5 + parent: 1 + type: Transform + - uid: 18472 + components: + - pos: 15.5,34.5 + parent: 1 + type: Transform + - uid: 18473 + components: + - pos: 16.5,34.5 + parent: 1 + type: Transform + - uid: 18474 + components: + - pos: 17.5,34.5 + parent: 1 + type: Transform + - uid: 18475 + components: + - pos: 17.5,33.5 + parent: 1 + type: Transform + - uid: 18476 + components: + - pos: 17.5,32.5 + parent: 1 + type: Transform + - uid: 18477 + components: + - pos: 17.5,31.5 + parent: 1 + type: Transform + - uid: 18478 + components: + - pos: 17.5,30.5 + parent: 1 + type: Transform + - uid: 18479 + components: + - pos: 18.5,30.5 + parent: 1 + type: Transform + - uid: 18480 + components: + - pos: 19.5,30.5 + parent: 1 + type: Transform + - uid: 18481 + components: + - pos: 20.5,30.5 + parent: 1 + type: Transform + - uid: 18483 + components: + - pos: -2.5,43.5 + parent: 1 + type: Transform + - uid: 18484 + components: + - pos: -2.5,42.5 + parent: 1 + type: Transform + - uid: 18485 + components: + - pos: -2.5,41.5 + parent: 1 + type: Transform + - uid: 18486 + components: + - pos: -2.5,40.5 + parent: 1 + type: Transform + - uid: 18487 + components: + - pos: -3.5,42.5 + parent: 1 + type: Transform + - uid: 18488 + components: + - pos: -4.5,42.5 + parent: 1 + type: Transform + - uid: 18489 + components: + - pos: -4.5,41.5 + parent: 1 + type: Transform + - uid: 18490 + components: + - pos: -4.5,40.5 + parent: 1 + type: Transform + - uid: 18491 + components: + - pos: -3.5,40.5 + parent: 1 + type: Transform + - uid: 18492 + components: + - pos: -1.5,43.5 + parent: 1 + type: Transform + - uid: 18493 + components: + - pos: -0.5,43.5 + parent: 1 + type: Transform + - uid: 18494 + components: + - pos: 0.5,43.5 + parent: 1 + type: Transform + - uid: 18495 + components: + - pos: 0.5,42.5 + parent: 1 + type: Transform + - uid: 18496 + components: + - pos: 0.5,41.5 + parent: 1 + type: Transform + - uid: 18497 + components: + - pos: 0.5,40.5 + parent: 1 + type: Transform + - uid: 18498 + components: + - pos: 1.5,40.5 + parent: 1 + type: Transform + - uid: 18499 + components: + - pos: 2.5,40.5 + parent: 1 + type: Transform + - uid: 18500 + components: + - pos: 3.5,40.5 + parent: 1 + type: Transform + - uid: 18501 + components: + - pos: 4.5,40.5 + parent: 1 + type: Transform + - uid: 18502 + components: + - pos: 5.5,40.5 + parent: 1 + type: Transform + - uid: 18503 + components: + - pos: 0.5,44.5 + parent: 1 + type: Transform + - uid: 18504 + components: + - pos: 0.5,45.5 + parent: 1 + type: Transform + - uid: 18505 + components: + - pos: 0.5,46.5 + parent: 1 + type: Transform + - uid: 18506 + components: + - pos: -0.5,46.5 + parent: 1 + type: Transform + - uid: 18507 + components: + - pos: -1.5,46.5 + parent: 1 + type: Transform + - uid: 18508 + components: + - pos: -2.5,46.5 + parent: 1 + type: Transform + - uid: 18509 + components: + - pos: -3.5,46.5 + parent: 1 + type: Transform + - uid: 18510 + components: + - pos: -4.5,46.5 + parent: 1 + type: Transform + - uid: 18511 + components: + - pos: -6.5,44.5 + parent: 1 + type: Transform + - uid: 18512 + components: + - pos: -7.5,44.5 + parent: 1 + type: Transform + - uid: 18513 + components: + - pos: -8.5,44.5 + parent: 1 + type: Transform + - uid: 18514 + components: + - pos: -9.5,44.5 + parent: 1 + type: Transform + - uid: 18515 + components: + - pos: -10.5,44.5 + parent: 1 + type: Transform + - uid: 18516 + components: + - pos: -11.5,44.5 + parent: 1 + type: Transform + - uid: 18517 + components: + - pos: -11.5,45.5 + parent: 1 + type: Transform + - uid: 18518 + components: + - pos: -11.5,46.5 + parent: 1 + type: Transform + - uid: 18519 + components: + - pos: -11.5,47.5 + parent: 1 + type: Transform + - uid: 18520 + components: + - pos: -10.5,47.5 + parent: 1 + type: Transform + - uid: 18521 + components: + - pos: -10.5,48.5 + parent: 1 + type: Transform + - uid: 18522 + components: + - pos: -10.5,49.5 + parent: 1 + type: Transform + - uid: 18523 + components: + - pos: -9.5,49.5 + parent: 1 + type: Transform + - uid: 18524 + components: + - pos: -8.5,49.5 + parent: 1 + type: Transform + - uid: 18525 + components: + - pos: -7.5,49.5 + parent: 1 + type: Transform + - uid: 18527 + components: + - pos: -8.5,38.5 + parent: 1 + type: Transform + - uid: 18528 + components: + - pos: -8.5,39.5 + parent: 1 + type: Transform + - uid: 18529 + components: + - pos: -9.5,39.5 + parent: 1 + type: Transform + - uid: 18530 + components: + - pos: -10.5,39.5 + parent: 1 + type: Transform + - uid: 18531 + components: + - pos: -11.5,39.5 + parent: 1 + type: Transform + - uid: 18532 + components: + - pos: -12.5,39.5 + parent: 1 + type: Transform + - uid: 18533 + components: + - pos: -13.5,39.5 + parent: 1 + type: Transform + - uid: 18534 + components: + - pos: -13.5,40.5 + parent: 1 + type: Transform + - uid: 18535 + components: + - pos: -14.5,40.5 + parent: 1 + type: Transform + - uid: 18536 + components: + - pos: -15.5,40.5 + parent: 1 + type: Transform + - uid: 18537 + components: + - pos: -16.5,40.5 + parent: 1 + type: Transform + - uid: 18538 + components: + - pos: -17.5,40.5 + parent: 1 + type: Transform + - uid: 18539 + components: + - pos: -17.5,41.5 + parent: 1 + type: Transform + - uid: 18540 + components: + - pos: -17.5,42.5 + parent: 1 + type: Transform + - uid: 18541 + components: + - pos: -17.5,43.5 + parent: 1 + type: Transform + - uid: 18542 + components: + - pos: -17.5,44.5 + parent: 1 + type: Transform + - uid: 18543 + components: + - pos: -17.5,45.5 + parent: 1 + type: Transform + - uid: 18544 + components: + - pos: -17.5,46.5 + parent: 1 + type: Transform + - uid: 18545 + components: + - pos: -17.5,47.5 + parent: 1 + type: Transform + - uid: 18546 + components: + - pos: -16.5,47.5 + parent: 1 + type: Transform + - uid: 18547 + components: + - pos: -16.5,48.5 + parent: 1 + type: Transform + - uid: 18549 + components: + - pos: -15.5,49.5 + parent: 1 + type: Transform + - uid: 18557 + components: + - pos: -63.5,11.5 + parent: 1 + type: Transform + - uid: 18559 + components: + - pos: -10.5,54.5 + parent: 1 + type: Transform + - uid: 18560 + components: + - pos: -9.5,54.5 + parent: 1 + type: Transform + - uid: 18561 + components: + - pos: -8.5,55.5 + parent: 1 + type: Transform + - uid: 18562 + components: + - pos: -7.5,54.5 + parent: 1 + type: Transform + - uid: 18563 + components: + - pos: -6.5,54.5 + parent: 1 + type: Transform + - uid: 18564 + components: + - pos: -5.5,54.5 + parent: 1 + type: Transform + - uid: 18565 + components: + - pos: -4.5,54.5 + parent: 1 + type: Transform + - uid: 18566 + components: + - pos: -3.5,54.5 + parent: 1 + type: Transform + - uid: 18568 + components: + - pos: -1.5,54.5 + parent: 1 + type: Transform + - uid: 18569 + components: + - pos: -0.5,54.5 + parent: 1 + type: Transform + - uid: 18570 + components: + - pos: 0.5,54.5 + parent: 1 + type: Transform + - uid: 18571 + components: + - pos: 1.5,54.5 + parent: 1 + type: Transform + - uid: 18572 + components: + - pos: 2.5,54.5 + parent: 1 + type: Transform + - uid: 18573 + components: + - pos: 3.5,54.5 + parent: 1 + type: Transform + - uid: 18574 + components: + - pos: 3.5,53.5 + parent: 1 + type: Transform + - uid: 18575 + components: + - pos: 5.5,54.5 + parent: 1 + type: Transform + - uid: 18576 + components: + - pos: 6.5,54.5 + parent: 1 + type: Transform + - uid: 18577 + components: + - pos: 7.5,54.5 + parent: 1 + type: Transform + - uid: 18578 + components: + - pos: 8.5,54.5 + parent: 1 + type: Transform + - uid: 18579 + components: + - pos: 9.5,54.5 + parent: 1 + type: Transform + - uid: 18580 + components: + - pos: 10.5,54.5 + parent: 1 + type: Transform + - uid: 18581 + components: + - pos: 11.5,54.5 + parent: 1 + type: Transform + - uid: 18582 + components: + - pos: 12.5,54.5 + parent: 1 + type: Transform + - uid: 18583 + components: + - pos: 13.5,54.5 + parent: 1 + type: Transform + - uid: 18584 + components: + - pos: 14.5,54.5 + parent: 1 + type: Transform + - uid: 18585 + components: + - pos: 15.5,54.5 + parent: 1 + type: Transform + - uid: 18586 + components: + - pos: 16.5,54.5 + parent: 1 + type: Transform + - uid: 18587 + components: + - pos: 17.5,54.5 + parent: 1 + type: Transform + - uid: 18588 + components: + - pos: 18.5,54.5 + parent: 1 + type: Transform + - uid: 18589 + components: + - pos: 19.5,54.5 + parent: 1 + type: Transform + - uid: 18590 + components: + - pos: 20.5,54.5 + parent: 1 + type: Transform + - uid: 18591 + components: + - pos: 21.5,54.5 + parent: 1 + type: Transform + - uid: 18592 + components: + - pos: 22.5,54.5 + parent: 1 + type: Transform + - uid: 18593 + components: + - pos: 23.5,54.5 + parent: 1 + type: Transform + - uid: 18594 + components: + - pos: 24.5,54.5 + parent: 1 + type: Transform + - uid: 18595 + components: + - pos: 25.5,54.5 + parent: 1 + type: Transform + - uid: 18596 + components: + - pos: 25.5,53.5 + parent: 1 + type: Transform + - uid: 18597 + components: + - pos: 27.5,54.5 + parent: 1 + type: Transform + - uid: 18598 + components: + - pos: 28.5,54.5 + parent: 1 + type: Transform + - uid: 18599 + components: + - pos: 29.5,54.5 + parent: 1 + type: Transform + - uid: 18600 + components: + - pos: 30.5,54.5 + parent: 1 + type: Transform + - uid: 18601 + components: + - pos: 31.5,54.5 + parent: 1 + type: Transform + - uid: 18602 + components: + - pos: 32.5,54.5 + parent: 1 + type: Transform + - uid: 18603 + components: + - pos: 33.5,54.5 + parent: 1 + type: Transform + - uid: 18604 + components: + - pos: 34.5,54.5 + parent: 1 + type: Transform + - uid: 18605 + components: + - pos: 32.5,55.5 + parent: 1 + type: Transform + - uid: 18606 + components: + - pos: 32.5,56.5 + parent: 1 + type: Transform + - uid: 18607 + components: + - pos: 12.5,55.5 + parent: 1 + type: Transform + - uid: 18608 + components: + - pos: 12.5,56.5 + parent: 1 + type: Transform + - uid: 18609 + components: + - pos: -8.5,54.5 + parent: 1 + type: Transform + - uid: 18610 + components: + - pos: -8.5,56.5 + parent: 1 + type: Transform + - uid: 18611 + components: + - pos: 22.5,53.5 + parent: 1 + type: Transform + - uid: 18612 + components: + - pos: 22.5,52.5 + parent: 1 + type: Transform + - uid: 18613 + components: + - pos: 22.5,51.5 + parent: 1 + type: Transform + - uid: 18614 + components: + - pos: 22.5,50.5 + parent: 1 + type: Transform + - uid: 18615 + components: + - pos: 22.5,49.5 + parent: 1 + type: Transform + - uid: 18616 + components: + - pos: 27.5,53.5 + parent: 1 + type: Transform + - uid: 18619 + components: + - pos: 27.5,50.5 + parent: 1 + type: Transform + - uid: 18620 + components: + - pos: 27.5,49.5 + parent: 1 + type: Transform + - uid: 18621 + components: + - pos: 28.5,49.5 + parent: 1 + type: Transform + - uid: 18622 + components: + - pos: 29.5,49.5 + parent: 1 + type: Transform + - uid: 18623 + components: + - pos: 5.5,36.5 + parent: 1 + type: Transform + - uid: 18624 + components: + - pos: 4.5,36.5 + parent: 1 + type: Transform + - uid: 18625 + components: + - pos: 3.5,36.5 + parent: 1 + type: Transform + - uid: 18626 + components: + - pos: 2.5,36.5 + parent: 1 + type: Transform + - uid: 18627 + components: + - pos: 1.5,36.5 + parent: 1 + type: Transform + - uid: 18628 + components: + - pos: 0.5,36.5 + parent: 1 + type: Transform + - uid: 18629 + components: + - pos: -0.5,36.5 + parent: 1 + type: Transform + - uid: 18630 + components: + - pos: -1.5,36.5 + parent: 1 + type: Transform + - uid: 18631 + components: + - pos: -2.5,36.5 + parent: 1 + type: Transform + - uid: 18632 + components: + - pos: -3.5,36.5 + parent: 1 + type: Transform + - uid: 18633 + components: + - pos: -4.5,36.5 + parent: 1 + type: Transform + - uid: 18634 + components: + - pos: -5.5,36.5 + parent: 1 + type: Transform + - uid: 18635 + components: + - pos: -6.5,36.5 + parent: 1 + type: Transform + - uid: 18636 + components: + - pos: -7.5,36.5 + parent: 1 + type: Transform + - uid: 18637 + components: + - pos: -8.5,36.5 + parent: 1 + type: Transform + - uid: 18638 + components: + - pos: -9.5,36.5 + parent: 1 + type: Transform + - uid: 18639 + components: + - pos: -10.5,36.5 + parent: 1 + type: Transform + - uid: 18640 + components: + - pos: -10.5,37.5 + parent: 1 + type: Transform + - uid: 18641 + components: + - pos: -10.5,38.5 + parent: 1 + type: Transform + - uid: 18642 + components: + - pos: 18.5,36.5 + parent: 1 + type: Transform + - uid: 18643 + components: + - pos: 19.5,36.5 + parent: 1 + type: Transform + - uid: 18644 + components: + - pos: 20.5,36.5 + parent: 1 + type: Transform + - uid: 18645 + components: + - pos: 21.5,36.5 + parent: 1 + type: Transform + - uid: 18646 + components: + - pos: 22.5,36.5 + parent: 1 + type: Transform + - uid: 18647 + components: + - pos: 23.5,36.5 + parent: 1 + type: Transform + - uid: 18648 + components: + - pos: 24.5,36.5 + parent: 1 + type: Transform + - uid: 18649 + components: + - pos: 25.5,36.5 + parent: 1 + type: Transform + - uid: 18650 + components: + - pos: 26.5,36.5 + parent: 1 + type: Transform + - uid: 18651 + components: + - pos: 27.5,36.5 + parent: 1 + type: Transform + - uid: 18652 + components: + - pos: 28.5,36.5 + parent: 1 + type: Transform + - uid: 18653 + components: + - pos: 29.5,36.5 + parent: 1 + type: Transform + - uid: 18654 + components: + - pos: 30.5,36.5 + parent: 1 + type: Transform + - uid: 18655 + components: + - pos: 31.5,36.5 + parent: 1 + type: Transform + - uid: 18656 + components: + - pos: 32.5,36.5 + parent: 1 + type: Transform + - uid: 18657 + components: + - pos: 33.5,36.5 + parent: 1 + type: Transform + - uid: 18658 + components: + - pos: 34.5,36.5 + parent: 1 + type: Transform + - uid: 18659 + components: + - pos: 34.5,37.5 + parent: 1 + type: Transform + - uid: 18660 + components: + - pos: 35.5,37.5 + parent: 1 + type: Transform + - uid: 18661 + components: + - pos: 35.5,38.5 + parent: 1 + type: Transform + - uid: 18662 + components: + - pos: 36.5,38.5 + parent: 1 + type: Transform + - uid: 18663 + components: + - pos: 36.5,39.5 + parent: 1 + type: Transform + - uid: 18664 + components: + - pos: 37.5,39.5 + parent: 1 + type: Transform + - uid: 18665 + components: + - pos: 38.5,39.5 + parent: 1 + type: Transform + - uid: 18666 + components: + - pos: 39.5,39.5 + parent: 1 + type: Transform + - uid: 18667 + components: + - pos: 39.5,40.5 + parent: 1 + type: Transform + - uid: 18668 + components: + - pos: 39.5,41.5 + parent: 1 + type: Transform + - uid: 18669 + components: + - pos: 39.5,42.5 + parent: 1 + type: Transform + - uid: 18670 + components: + - pos: 39.5,43.5 + parent: 1 + type: Transform + - uid: 18671 + components: + - pos: 39.5,44.5 + parent: 1 + type: Transform + - uid: 18672 + components: + - pos: 39.5,45.5 + parent: 1 + type: Transform + - uid: 18673 + components: + - pos: 39.5,46.5 + parent: 1 + type: Transform + - uid: 18674 + components: + - pos: 39.5,47.5 + parent: 1 + type: Transform + - uid: 18675 + components: + - pos: 39.5,48.5 + parent: 1 + type: Transform + - uid: 18676 + components: + - pos: 38.5,48.5 + parent: 1 + type: Transform + - uid: 18677 + components: + - pos: 38.5,49.5 + parent: 1 + type: Transform + - uid: 18678 + components: + - pos: 37.5,49.5 + parent: 1 + type: Transform + - uid: 18679 + components: + - pos: 37.5,50.5 + parent: 1 + type: Transform + - uid: 18680 + components: + - pos: 36.5,50.5 + parent: 1 + type: Transform + - uid: 18681 + components: + - pos: 36.5,51.5 + parent: 1 + type: Transform + - uid: 18683 + components: + - pos: 35.5,52.5 + parent: 1 + type: Transform + - uid: 18684 + components: + - pos: 34.5,52.5 + parent: 1 + type: Transform + - uid: 18685 + components: + - pos: 34.5,53.5 + parent: 1 + type: Transform + - uid: 18686 + components: + - pos: 38.5,45.5 + parent: 1 + type: Transform + - uid: 18687 + components: + - pos: 37.5,45.5 + parent: 1 + type: Transform + - uid: 18688 + components: + - pos: 36.5,45.5 + parent: 1 + type: Transform + - uid: 18689 + components: + - pos: 35.5,45.5 + parent: 1 + type: Transform + - uid: 18690 + components: + - pos: 34.5,45.5 + parent: 1 + type: Transform + - uid: 18691 + components: + - pos: 33.5,45.5 + parent: 1 + type: Transform + - uid: 18692 + components: + - pos: 33.5,46.5 + parent: 1 + type: Transform + - uid: 18693 + components: + - pos: 33.5,47.5 + parent: 1 + type: Transform + - uid: 18694 + components: + - pos: 33.5,48.5 + parent: 1 + type: Transform + - uid: 18695 + components: + - pos: 33.5,49.5 + parent: 1 + type: Transform + - uid: 18696 + components: + - pos: 33.5,50.5 + parent: 1 + type: Transform + - uid: 18697 + components: + - pos: 33.5,44.5 + parent: 1 + type: Transform + - uid: 18698 + components: + - pos: 33.5,43.5 + parent: 1 + type: Transform + - uid: 18699 + components: + - pos: 33.5,42.5 + parent: 1 + type: Transform + - uid: 18700 + components: + - pos: 33.5,41.5 + parent: 1 + type: Transform + - uid: 18701 + components: + - pos: 33.5,40.5 + parent: 1 + type: Transform + - uid: 18769 + components: + - pos: 49.5,40.5 + parent: 1 + type: Transform + - uid: 18770 + components: + - pos: 49.5,39.5 + parent: 1 + type: Transform + - uid: 18771 + components: + - pos: 49.5,38.5 + parent: 1 + type: Transform + - uid: 18772 + components: + - pos: 48.5,38.5 + parent: 1 + type: Transform + - uid: 18773 + components: + - pos: 50.5,39.5 + parent: 1 + type: Transform + - uid: 18774 + components: + - pos: 51.5,39.5 + parent: 1 + type: Transform + - uid: 18775 + components: + - pos: 52.5,39.5 + parent: 1 + type: Transform + - uid: 18776 + components: + - pos: 53.5,39.5 + parent: 1 + type: Transform + - uid: 18777 + components: + - pos: 54.5,39.5 + parent: 1 + type: Transform + - uid: 18778 + components: + - pos: 55.5,39.5 + parent: 1 + type: Transform + - uid: 18779 + components: + - pos: 56.5,39.5 + parent: 1 + type: Transform + - uid: 18780 + components: + - pos: 57.5,39.5 + parent: 1 + type: Transform + - uid: 18781 + components: + - pos: 58.5,39.5 + parent: 1 + type: Transform + - uid: 18782 + components: + - pos: 58.5,40.5 + parent: 1 + type: Transform + - uid: 18783 + components: + - pos: 58.5,41.5 + parent: 1 + type: Transform + - uid: 18784 + components: + - pos: 58.5,38.5 + parent: 1 + type: Transform + - uid: 18785 + components: + - pos: 58.5,37.5 + parent: 1 + type: Transform + - uid: 18786 + components: + - pos: 48.5,37.5 + parent: 1 + type: Transform + - uid: 18787 + components: + - pos: 48.5,36.5 + parent: 1 + type: Transform + - uid: 18788 + components: + - pos: 48.5,35.5 + parent: 1 + type: Transform + - uid: 18789 + components: + - pos: 48.5,34.5 + parent: 1 + type: Transform + - uid: 18790 + components: + - pos: 48.5,33.5 + parent: 1 + type: Transform + - uid: 18791 + components: + - pos: 48.5,32.5 + parent: 1 + type: Transform + - uid: 18792 + components: + - pos: 49.5,32.5 + parent: 1 + type: Transform + - uid: 18793 + components: + - pos: 50.5,32.5 + parent: 1 + type: Transform + - uid: 18794 + components: + - pos: 50.5,31.5 + parent: 1 + type: Transform + - uid: 18795 + components: + - pos: 50.5,30.5 + parent: 1 + type: Transform + - uid: 18796 + components: + - pos: 49.5,30.5 + parent: 1 + type: Transform + - uid: 18797 + components: + - pos: 49.5,34.5 + parent: 1 + type: Transform + - uid: 18798 + components: + - pos: 50.5,34.5 + parent: 1 + type: Transform + - uid: 18799 + components: + - pos: 51.5,34.5 + parent: 1 + type: Transform + - uid: 18800 + components: + - pos: 52.5,34.5 + parent: 1 + type: Transform + - uid: 18909 + components: + - pos: 60.5,16.5 + parent: 1 + type: Transform + - uid: 18910 + components: + - pos: 60.5,17.5 + parent: 1 + type: Transform + - uid: 18911 + components: + - pos: 60.5,18.5 + parent: 1 + type: Transform + - uid: 18912 + components: + - pos: 60.5,19.5 + parent: 1 + type: Transform + - uid: 18913 + components: + - pos: 60.5,20.5 + parent: 1 + type: Transform + - uid: 18914 + components: + - pos: 60.5,21.5 + parent: 1 + type: Transform + - uid: 18916 + components: + - pos: 59.5,14.5 + parent: 1 + type: Transform + - uid: 18917 + components: + - pos: 59.5,13.5 + parent: 1 + type: Transform + - uid: 18918 + components: + - pos: 59.5,12.5 + parent: 1 + type: Transform + - uid: 18919 + components: + - pos: 59.5,11.5 + parent: 1 + type: Transform + - uid: 18920 + components: + - pos: 59.5,10.5 + parent: 1 + type: Transform + - uid: 18921 + components: + - pos: 59.5,9.5 + parent: 1 + type: Transform + - uid: 18922 + components: + - pos: 59.5,8.5 + parent: 1 + type: Transform + - uid: 18966 + components: + - pos: 72.5,23.5 + parent: 1 + type: Transform + - uid: 18967 + components: + - pos: 72.5,24.5 + parent: 1 + type: Transform + - uid: 18968 + components: + - pos: 72.5,25.5 + parent: 1 + type: Transform + - uid: 18969 + components: + - pos: 72.5,26.5 + parent: 1 + type: Transform + - uid: 18970 + components: + - pos: 71.5,26.5 + parent: 1 + type: Transform + - uid: 18971 + components: + - pos: 70.5,26.5 + parent: 1 + type: Transform + - uid: 18972 + components: + - pos: 69.5,26.5 + parent: 1 + type: Transform + - uid: 18973 + components: + - pos: 68.5,26.5 + parent: 1 + type: Transform + - uid: 18974 + components: + - pos: 67.5,26.5 + parent: 1 + type: Transform + - uid: 18975 + components: + - pos: 66.5,26.5 + parent: 1 + type: Transform + - uid: 18976 + components: + - pos: 65.5,26.5 + parent: 1 + type: Transform + - uid: 18977 + components: + - pos: 64.5,26.5 + parent: 1 + type: Transform + - uid: 18978 + components: + - pos: 64.5,27.5 + parent: 1 + type: Transform + - uid: 18979 + components: + - pos: 67.5,27.5 + parent: 1 + type: Transform + - uid: 18980 + components: + - pos: 70.5,27.5 + parent: 1 + type: Transform + - uid: 18981 + components: + - pos: 73.5,26.5 + parent: 1 + type: Transform + - uid: 18982 + components: + - pos: 74.5,26.5 + parent: 1 + type: Transform + - uid: 18983 + components: + - pos: 75.5,26.5 + parent: 1 + type: Transform + - uid: 18984 + components: + - pos: 76.5,26.5 + parent: 1 + type: Transform + - uid: 18985 + components: + - pos: 77.5,26.5 + parent: 1 + type: Transform + - uid: 18986 + components: + - pos: 78.5,26.5 + parent: 1 + type: Transform + - uid: 18987 + components: + - pos: 79.5,26.5 + parent: 1 + type: Transform + - uid: 18988 + components: + - pos: 80.5,26.5 + parent: 1 + type: Transform + - uid: 18989 + components: + - pos: 81.5,26.5 + parent: 1 + type: Transform + - uid: 18990 + components: + - pos: 82.5,26.5 + parent: 1 + type: Transform + - uid: 18991 + components: + - pos: 82.5,25.5 + parent: 1 + type: Transform + - uid: 18992 + components: + - pos: 83.5,25.5 + parent: 1 + type: Transform + - uid: 18993 + components: + - pos: 84.5,25.5 + parent: 1 + type: Transform + - uid: 18994 + components: + - pos: 85.5,25.5 + parent: 1 + type: Transform + - uid: 18995 + components: + - pos: 86.5,25.5 + parent: 1 + type: Transform + - uid: 18996 + components: + - pos: 87.5,25.5 + parent: 1 + type: Transform + - uid: 18997 + components: + - pos: 88.5,25.5 + parent: 1 + type: Transform + - uid: 18998 + components: + - pos: 86.5,26.5 + parent: 1 + type: Transform + - uid: 18999 + components: + - pos: 86.5,27.5 + parent: 1 + type: Transform + - uid: 19000 + components: + - pos: 81.5,27.5 + parent: 1 + type: Transform + - uid: 19001 + components: + - pos: 81.5,28.5 + parent: 1 + type: Transform + - uid: 19002 + components: + - pos: 81.5,29.5 + parent: 1 + type: Transform + - uid: 19003 + components: + - pos: 80.5,29.5 + parent: 1 + type: Transform + - uid: 19004 + components: + - pos: 79.5,29.5 + parent: 1 + type: Transform + - uid: 19005 + components: + - pos: 78.5,29.5 + parent: 1 + type: Transform + - uid: 19006 + components: + - pos: 77.5,29.5 + parent: 1 + type: Transform + - uid: 19007 + components: + - pos: 76.5,29.5 + parent: 1 + type: Transform + - uid: 19008 + components: + - pos: 75.5,29.5 + parent: 1 + type: Transform + - uid: 19009 + components: + - pos: 74.5,29.5 + parent: 1 + type: Transform + - uid: 19010 + components: + - pos: 73.5,29.5 + parent: 1 + type: Transform + - uid: 19011 + components: + - pos: 72.5,29.5 + parent: 1 + type: Transform + - uid: 19012 + components: + - pos: 72.5,28.5 + parent: 1 + type: Transform + - uid: 19013 + components: + - pos: 72.5,27.5 + parent: 1 + type: Transform + - uid: 19014 + components: + - pos: 88.5,20.5 + parent: 1 + type: Transform + - uid: 19015 + components: + - pos: 87.5,20.5 + parent: 1 + type: Transform + - uid: 19016 + components: + - pos: 87.5,19.5 + parent: 1 + type: Transform + - uid: 19017 + components: + - pos: 87.5,18.5 + parent: 1 + type: Transform + - uid: 19018 + components: + - pos: 87.5,17.5 + parent: 1 + type: Transform + - uid: 19019 + components: + - pos: 87.5,16.5 + parent: 1 + type: Transform + - uid: 19020 + components: + - pos: 88.5,16.5 + parent: 1 + type: Transform + - uid: 19021 + components: + - pos: 89.5,16.5 + parent: 1 + type: Transform + - uid: 19022 + components: + - pos: 89.5,15.5 + parent: 1 + type: Transform + - uid: 19023 + components: + - pos: 89.5,14.5 + parent: 1 + type: Transform + - uid: 19024 + components: + - pos: 89.5,13.5 + parent: 1 + type: Transform + - uid: 19025 + components: + - pos: 87.5,21.5 + parent: 1 + type: Transform + - uid: 19026 + components: + - pos: 86.5,21.5 + parent: 1 + type: Transform + - uid: 19027 + components: + - pos: 85.5,21.5 + parent: 1 + type: Transform + - uid: 19028 + components: + - pos: 84.5,21.5 + parent: 1 + type: Transform + - uid: 19029 + components: + - pos: 83.5,21.5 + parent: 1 + type: Transform + - uid: 19030 + components: + - pos: 82.5,21.5 + parent: 1 + type: Transform + - uid: 19031 + components: + - pos: 81.5,21.5 + parent: 1 + type: Transform + - uid: 19032 + components: + - pos: 80.5,21.5 + parent: 1 + type: Transform + - uid: 19033 + components: + - pos: 79.5,21.5 + parent: 1 + type: Transform + - uid: 19034 + components: + - pos: 81.5,13.5 + parent: 1 + type: Transform + - uid: 19035 + components: + - pos: 81.5,14.5 + parent: 1 + type: Transform + - uid: 19036 + components: + - pos: 82.5,14.5 + parent: 1 + type: Transform + - uid: 19037 + components: + - pos: 83.5,14.5 + parent: 1 + type: Transform + - uid: 19038 + components: + - pos: 83.5,13.5 + parent: 1 + type: Transform + - uid: 19039 + components: + - pos: 83.5,12.5 + parent: 1 + type: Transform + - uid: 19040 + components: + - pos: 83.5,11.5 + parent: 1 + type: Transform + - uid: 19041 + components: + - pos: 82.5,15.5 + parent: 1 + type: Transform + - uid: 19042 + components: + - pos: 82.5,16.5 + parent: 1 + type: Transform + - uid: 19043 + components: + - pos: 83.5,16.5 + parent: 1 + type: Transform + - uid: 19044 + components: + - pos: 81.5,16.5 + parent: 1 + type: Transform + - uid: 19045 + components: + - pos: 80.5,13.5 + parent: 1 + type: Transform + - uid: 19046 + components: + - pos: 80.5,12.5 + parent: 1 + type: Transform + - uid: 19047 + components: + - pos: 80.5,11.5 + parent: 1 + type: Transform + - uid: 19048 + components: + - pos: 79.5,11.5 + parent: 1 + type: Transform + - uid: 19049 + components: + - pos: 78.5,11.5 + parent: 1 + type: Transform + - uid: 19050 + components: + - pos: 77.5,11.5 + parent: 1 + type: Transform + - uid: 19051 + components: + - pos: 77.5,12.5 + parent: 1 + type: Transform + - uid: 19052 + components: + - pos: 77.5,13.5 + parent: 1 + type: Transform + - uid: 19053 + components: + - pos: 77.5,14.5 + parent: 1 + type: Transform + - uid: 19054 + components: + - pos: 77.5,15.5 + parent: 1 + type: Transform + - uid: 19055 + components: + - pos: 77.5,16.5 + parent: 1 + type: Transform + - uid: 19056 + components: + - pos: 77.5,17.5 + parent: 1 + type: Transform + - uid: 19057 + components: + - pos: 71.5,9.5 + parent: 1 + type: Transform + - uid: 19058 + components: + - pos: 71.5,10.5 + parent: 1 + type: Transform + - uid: 19059 + components: + - pos: 72.5,10.5 + parent: 1 + type: Transform + - uid: 19060 + components: + - pos: 73.5,10.5 + parent: 1 + type: Transform + - uid: 19061 + components: + - pos: 73.5,9.5 + parent: 1 + type: Transform + - uid: 19062 + components: + - pos: 73.5,8.5 + parent: 1 + type: Transform + - uid: 19063 + components: + - pos: 73.5,7.5 + parent: 1 + type: Transform + - uid: 19064 + components: + - pos: 71.5,11.5 + parent: 1 + type: Transform + - uid: 19065 + components: + - pos: 71.5,12.5 + parent: 1 + type: Transform + - uid: 19066 + components: + - pos: 71.5,13.5 + parent: 1 + type: Transform + - uid: 19067 + components: + - pos: 71.5,14.5 + parent: 1 + type: Transform + - uid: 19068 + components: + - pos: 71.5,15.5 + parent: 1 + type: Transform + - uid: 19069 + components: + - pos: 71.5,16.5 + parent: 1 + type: Transform + - uid: 19070 + components: + - pos: 71.5,17.5 + parent: 1 + type: Transform + - uid: 19071 + components: + - pos: 71.5,18.5 + parent: 1 + type: Transform + - uid: 19072 + components: + - pos: 71.5,19.5 + parent: 1 + type: Transform + - uid: 19073 + components: + - pos: 71.5,20.5 + parent: 1 + type: Transform + - uid: 19074 + components: + - pos: 71.5,21.5 + parent: 1 + type: Transform + - uid: 19075 + components: + - pos: 72.5,21.5 + parent: 1 + type: Transform + - uid: 19076 + components: + - pos: 73.5,21.5 + parent: 1 + type: Transform + - uid: 19077 + components: + - pos: 74.5,21.5 + parent: 1 + type: Transform + - uid: 19078 + components: + - pos: 75.5,21.5 + parent: 1 + type: Transform + - uid: 19079 + components: + - pos: 76.5,21.5 + parent: 1 + type: Transform + - uid: 19080 + components: + - pos: 70.5,21.5 + parent: 1 + type: Transform + - uid: 19081 + components: + - pos: 69.5,21.5 + parent: 1 + type: Transform + - uid: 19082 + components: + - pos: 68.5,21.5 + parent: 1 + type: Transform + - uid: 19083 + components: + - pos: 67.5,21.5 + parent: 1 + type: Transform + - uid: 19084 + components: + - pos: 66.5,21.5 + parent: 1 + type: Transform + - uid: 19085 + components: + - pos: 65.5,21.5 + parent: 1 + type: Transform + - uid: 19086 + components: + - pos: 72.5,14.5 + parent: 1 + type: Transform + - uid: 19087 + components: + - pos: 70.5,9.5 + parent: 1 + type: Transform + - uid: 19088 + components: + - pos: 69.5,9.5 + parent: 1 + type: Transform + - uid: 19089 + components: + - pos: 69.5,8.5 + parent: 1 + type: Transform + - uid: 19090 + components: + - pos: 69.5,7.5 + parent: 1 + type: Transform + - uid: 19091 + components: + - pos: 70.5,7.5 + parent: 1 + type: Transform + - uid: 19092 + components: + - pos: 70.5,12.5 + parent: 1 + type: Transform + - uid: 19093 + components: + - pos: 69.5,12.5 + parent: 1 + type: Transform + - uid: 19094 + components: + - pos: 68.5,12.5 + parent: 1 + type: Transform + - uid: 19095 + components: + - pos: 67.5,12.5 + parent: 1 + type: Transform + - uid: 19096 + components: + - pos: 66.5,12.5 + parent: 1 + type: Transform + - uid: 19097 + components: + - pos: 66.5,13.5 + parent: 1 + type: Transform + - uid: 19098 + components: + - pos: 66.5,14.5 + parent: 1 + type: Transform + - uid: 19099 + components: + - pos: 66.5,15.5 + parent: 1 + type: Transform + - uid: 19100 + components: + - pos: 65.5,13.5 + parent: 1 + type: Transform + - uid: 19101 + components: + - pos: 64.5,13.5 + parent: 1 + type: Transform + - uid: 19102 + components: + - pos: 64.5,14.5 + parent: 1 + type: Transform + - uid: 19103 + components: + - pos: 64.5,15.5 + parent: 1 + type: Transform + - uid: 19104 + components: + - pos: 64.5,12.5 + parent: 1 + type: Transform + - uid: 19105 + components: + - pos: 64.5,11.5 + parent: 1 + type: Transform + - uid: 19106 + components: + - pos: 64.5,10.5 + parent: 1 + type: Transform + - uid: 19107 + components: + - pos: 64.5,9.5 + parent: 1 + type: Transform + - uid: 19108 + components: + - pos: 64.5,8.5 + parent: 1 + type: Transform + - uid: 19109 + components: + - pos: 65.5,8.5 + parent: 1 + type: Transform + - uid: 19110 + components: + - pos: 66.5,8.5 + parent: 1 + type: Transform + - uid: 19119 + components: + - pos: 60.5,6.5 + parent: 1 + type: Transform + - uid: 19120 + components: + - pos: 60.5,5.5 + parent: 1 + type: Transform + - uid: 19121 + components: + - pos: 60.5,4.5 + parent: 1 + type: Transform + - uid: 19122 + components: + - pos: 59.5,4.5 + parent: 1 + type: Transform + - uid: 19123 + components: + - pos: 58.5,4.5 + parent: 1 + type: Transform + - uid: 19124 + components: + - pos: 57.5,4.5 + parent: 1 + type: Transform + - uid: 19125 + components: + - pos: 56.5,4.5 + parent: 1 + type: Transform + - uid: 19126 + components: + - pos: 55.5,4.5 + parent: 1 + type: Transform + - uid: 19127 + components: + - pos: 54.5,4.5 + parent: 1 + type: Transform + - uid: 19128 + components: + - pos: 53.5,4.5 + parent: 1 + type: Transform + - uid: 19129 + components: + - pos: 53.5,3.5 + parent: 1 + type: Transform + - uid: 19130 + components: + - pos: 53.5,2.5 + parent: 1 + type: Transform + - uid: 19131 + components: + - pos: 54.5,2.5 + parent: 1 + type: Transform + - uid: 19132 + components: + - pos: 52.5,2.5 + parent: 1 + type: Transform + - uid: 19133 + components: + - pos: 52.5,1.5 + parent: 1 + type: Transform + - uid: 19134 + components: + - pos: 52.5,0.5 + parent: 1 + type: Transform + - uid: 19135 + components: + - pos: 52.5,-0.5 + parent: 1 + type: Transform + - uid: 19136 + components: + - pos: 54.5,1.5 + parent: 1 + type: Transform + - uid: 19137 + components: + - pos: 54.5,0.5 + parent: 1 + type: Transform + - uid: 19138 + components: + - pos: 54.5,-0.5 + parent: 1 + type: Transform + - uid: 19139 + components: + - pos: 55.5,-0.5 + parent: 1 + type: Transform + - uid: 19140 + components: + - pos: 56.5,-0.5 + parent: 1 + type: Transform + - uid: 19141 + components: + - pos: 55.5,5.5 + parent: 1 + type: Transform + - uid: 19142 + components: + - pos: 55.5,6.5 + parent: 1 + type: Transform + - uid: 19143 + components: + - pos: 55.5,7.5 + parent: 1 + type: Transform + - uid: 19144 + components: + - pos: 55.5,8.5 + parent: 1 + type: Transform + - uid: 19161 + components: + - pos: 61.5,4.5 + parent: 1 + type: Transform + - uid: 19162 + components: + - pos: 62.5,4.5 + parent: 1 + type: Transform + - uid: 19163 + components: + - pos: 63.5,4.5 + parent: 1 + type: Transform + - uid: 19164 + components: + - pos: 64.5,4.5 + parent: 1 + type: Transform + - uid: 19165 + components: + - pos: 65.5,4.5 + parent: 1 + type: Transform + - uid: 19166 + components: + - pos: 66.5,4.5 + parent: 1 + type: Transform + - uid: 19167 + components: + - pos: 67.5,4.5 + parent: 1 + type: Transform + - uid: 19168 + components: + - pos: 68.5,4.5 + parent: 1 + type: Transform + - uid: 19169 + components: + - pos: 69.5,4.5 + parent: 1 + type: Transform + - uid: 19170 + components: + - pos: 70.5,4.5 + parent: 1 + type: Transform + - uid: 19171 + components: + - pos: 71.5,4.5 + parent: 1 + type: Transform + - uid: 19172 + components: + - pos: 72.5,4.5 + parent: 1 + type: Transform + - uid: 19173 + components: + - pos: 73.5,4.5 + parent: 1 + type: Transform + - uid: 19174 + components: + - pos: 74.5,4.5 + parent: 1 + type: Transform + - uid: 19175 + components: + - pos: 75.5,4.5 + parent: 1 + type: Transform + - uid: 19176 + components: + - pos: 75.5,3.5 + parent: 1 + type: Transform + - uid: 19268 + components: + - pos: -25.5,8.5 + parent: 1 + type: Transform + - uid: 19269 + components: + - pos: -24.5,8.5 + parent: 1 + type: Transform + - uid: 19270 + components: + - pos: -23.5,8.5 + parent: 1 + type: Transform + - uid: 19271 + components: + - pos: -22.5,8.5 + parent: 1 + type: Transform + - uid: 19272 + components: + - pos: -22.5,9.5 + parent: 1 + type: Transform + - uid: 19273 + components: + - pos: -22.5,10.5 + parent: 1 + type: Transform + - uid: 19274 + components: + - pos: -22.5,11.5 + parent: 1 + type: Transform + - uid: 19275 + components: + - pos: -21.5,8.5 + parent: 1 + type: Transform + - uid: 19276 + components: + - pos: -14.5,21.5 + parent: 1 + type: Transform + - uid: 19277 + components: + - pos: -15.5,21.5 + parent: 1 + type: Transform + - uid: 19278 + components: + - pos: -16.5,21.5 + parent: 1 + type: Transform + - uid: 19279 + components: + - pos: -17.5,21.5 + parent: 1 + type: Transform + - uid: 19280 + components: + - pos: -18.5,21.5 + parent: 1 + type: Transform + - uid: 19281 + components: + - pos: -18.5,22.5 + parent: 1 + type: Transform + - uid: 19282 + components: + - pos: -18.5,23.5 + parent: 1 + type: Transform + - uid: 19283 + components: + - pos: -18.5,24.5 + parent: 1 + type: Transform + - uid: 19284 + components: + - pos: -18.5,25.5 + parent: 1 + type: Transform + - uid: 19285 + components: + - pos: -17.5,25.5 + parent: 1 + type: Transform + - uid: 19286 + components: + - pos: -16.5,25.5 + parent: 1 + type: Transform + - uid: 19287 + components: + - pos: -15.5,25.5 + parent: 1 + type: Transform + - uid: 19288 + components: + - pos: -15.5,26.5 + parent: 1 + type: Transform + - uid: 19289 + components: + - pos: -15.5,27.5 + parent: 1 + type: Transform + - uid: 19290 + components: + - pos: -15.5,28.5 + parent: 1 + type: Transform + - uid: 19291 + components: + - pos: -14.5,28.5 + parent: 1 + type: Transform + - uid: 19292 + components: + - pos: -13.5,28.5 + parent: 1 + type: Transform + - uid: 19293 + components: + - pos: -12.5,28.5 + parent: 1 + type: Transform + - uid: 19294 + components: + - pos: -11.5,28.5 + parent: 1 + type: Transform + - uid: 19295 + components: + - pos: -10.5,28.5 + parent: 1 + type: Transform + - uid: 19296 + components: + - pos: -9.5,28.5 + parent: 1 + type: Transform + - uid: 19297 + components: + - pos: -8.5,28.5 + parent: 1 + type: Transform + - uid: 19298 + components: + - pos: -7.5,28.5 + parent: 1 + type: Transform + - uid: 19299 + components: + - pos: -6.5,28.5 + parent: 1 + type: Transform + - uid: 19300 + components: + - pos: -5.5,28.5 + parent: 1 + type: Transform + - uid: 19301 + components: + - pos: -4.5,28.5 + parent: 1 + type: Transform + - uid: 19302 + components: + - pos: -3.5,28.5 + parent: 1 + type: Transform + - uid: 19303 + components: + - pos: -2.5,28.5 + parent: 1 + type: Transform + - uid: 19304 + components: + - pos: -1.5,28.5 + parent: 1 + type: Transform + - uid: 19305 + components: + - pos: -0.5,28.5 + parent: 1 + type: Transform + - uid: 19306 + components: + - pos: 0.5,28.5 + parent: 1 + type: Transform + - uid: 19313 + components: + - pos: 0.5,27.5 + parent: 1 + type: Transform + - uid: 19314 + components: + - pos: 1.5,27.5 + parent: 1 + type: Transform + - uid: 19317 + components: + - pos: 2.5,27.5 + parent: 1 + type: Transform + - uid: 19318 + components: + - pos: 3.5,27.5 + parent: 1 + type: Transform + - uid: 19319 + components: + - pos: 4.5,27.5 + parent: 1 + type: Transform + - uid: 19320 + components: + - pos: 5.5,27.5 + parent: 1 + type: Transform + - uid: 19321 + components: + - pos: 6.5,27.5 + parent: 1 + type: Transform + - uid: 19322 + components: + - pos: 7.5,27.5 + parent: 1 + type: Transform + - uid: 19375 + components: + - pos: -18.5,13.5 + parent: 1 + type: Transform + - uid: 19376 + components: + - pos: -18.5,14.5 + parent: 1 + type: Transform + - uid: 19377 + components: + - pos: -18.5,15.5 + parent: 1 + type: Transform + - uid: 19378 + components: + - pos: -19.5,15.5 + parent: 1 + type: Transform + - uid: 19379 + components: + - pos: -20.5,15.5 + parent: 1 + type: Transform + - uid: 19380 + components: + - pos: -21.5,15.5 + parent: 1 + type: Transform + - uid: 19381 + components: + - pos: -22.5,15.5 + parent: 1 + type: Transform + - uid: 19382 + components: + - pos: -23.5,15.5 + parent: 1 + type: Transform + - uid: 19383 + components: + - pos: -23.5,14.5 + parent: 1 + type: Transform + - uid: 19384 + components: + - pos: -18.5,16.5 + parent: 1 + type: Transform + - uid: 19385 + components: + - pos: -17.5,16.5 + parent: 1 + type: Transform + - uid: 19386 + components: + - pos: -17.5,17.5 + parent: 1 + type: Transform + - uid: 19387 + components: + - pos: -17.5,18.5 + parent: 1 + type: Transform + - uid: 19388 + components: + - pos: -18.5,18.5 + parent: 1 + type: Transform + - uid: 19389 + components: + - pos: -18.5,12.5 + parent: 1 + type: Transform + - uid: 19390 + components: + - pos: -17.5,12.5 + parent: 1 + type: Transform + - uid: 19391 + components: + - pos: -16.5,12.5 + parent: 1 + type: Transform + - uid: 19392 + components: + - pos: -15.5,12.5 + parent: 1 + type: Transform + - uid: 19393 + components: + - pos: -15.5,11.5 + parent: 1 + type: Transform + - uid: 19394 + components: + - pos: -15.5,10.5 + parent: 1 + type: Transform + - uid: 19395 + components: + - pos: -15.5,9.5 + parent: 1 + type: Transform + - uid: 19396 + components: + - pos: -15.5,8.5 + parent: 1 + type: Transform + - uid: 19397 + components: + - pos: -16.5,8.5 + parent: 1 + type: Transform + - uid: 19398 + components: + - pos: -17.5,8.5 + parent: 1 + type: Transform + - uid: 19399 + components: + - pos: -14.5,8.5 + parent: 1 + type: Transform + - uid: 19401 + components: + - pos: -2.5,13.5 + parent: 1 + type: Transform + - uid: 19402 + components: + - pos: -2.5,12.5 + parent: 1 + type: Transform + - uid: 19403 + components: + - pos: -2.5,11.5 + parent: 1 + type: Transform + - uid: 19404 + components: + - pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 19405 + components: + - pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 19406 + components: + - pos: -2.5,8.5 + parent: 1 + type: Transform + - uid: 19407 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 19408 + components: + - pos: -4.5,8.5 + parent: 1 + type: Transform + - uid: 19409 + components: + - pos: -5.5,8.5 + parent: 1 + type: Transform + - uid: 19410 + components: + - pos: -6.5,8.5 + parent: 1 + type: Transform + - uid: 19411 + components: + - pos: -7.5,8.5 + parent: 1 + type: Transform + - uid: 19412 + components: + - pos: -8.5,8.5 + parent: 1 + type: Transform + - uid: 19413 + components: + - pos: -9.5,8.5 + parent: 1 + type: Transform + - uid: 19414 + components: + - pos: -9.5,9.5 + parent: 1 + type: Transform + - uid: 19415 + components: + - pos: -9.5,10.5 + parent: 1 + type: Transform + - uid: 19417 + components: + - pos: -7.5,9.5 + parent: 1 + type: Transform + - uid: 19418 + components: + - pos: -7.5,10.5 + parent: 1 + type: Transform + - uid: 19420 + components: + - pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 19421 + components: + - pos: -0.5,11.5 + parent: 1 + type: Transform + - uid: 19422 + components: + - pos: 0.5,11.5 + parent: 1 + type: Transform + - uid: 19423 + components: + - pos: 1.5,11.5 + parent: 1 + type: Transform + - uid: 19424 + components: + - pos: 2.5,11.5 + parent: 1 + type: Transform + - uid: 19425 + components: + - pos: 3.5,11.5 + parent: 1 + type: Transform + - uid: 19426 + components: + - pos: 3.5,10.5 + parent: 1 + type: Transform + - uid: 19427 + components: + - pos: 3.5,9.5 + parent: 1 + type: Transform + - uid: 19428 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 19429 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 19430 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 19431 + components: + - pos: 4.5,11.5 + parent: 1 + type: Transform + - uid: 19432 + components: + - pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 19433 + components: + - pos: 6.5,11.5 + parent: 1 + type: Transform + - uid: 19434 + components: + - pos: 7.5,11.5 + parent: 1 + type: Transform + - uid: 19435 + components: + - pos: 7.5,12.5 + parent: 1 + type: Transform + - uid: 19436 + components: + - pos: 7.5,10.5 + parent: 1 + type: Transform + - uid: 19437 + components: + - pos: -3.5,12.5 + parent: 1 + type: Transform + - uid: 19438 + components: + - pos: -4.5,12.5 + parent: 1 + type: Transform + - uid: 19439 + components: + - pos: -5.5,12.5 + parent: 1 + type: Transform + - uid: 19440 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - uid: 19441 + components: + - pos: -6.5,13.5 + parent: 1 + type: Transform + - uid: 19442 + components: + - pos: -6.5,14.5 + parent: 1 + type: Transform + - uid: 19443 + components: + - pos: -7.5,14.5 + parent: 1 + type: Transform + - uid: 19444 + components: + - pos: -7.5,15.5 + parent: 1 + type: Transform + - uid: 19445 + components: + - pos: -8.5,15.5 + parent: 1 + type: Transform + - uid: 19446 + components: + - pos: -9.5,15.5 + parent: 1 + type: Transform + - uid: 19447 + components: + - pos: -10.5,15.5 + parent: 1 + type: Transform + - uid: 19448 + components: + - pos: -11.5,15.5 + parent: 1 + type: Transform + - uid: 19449 + components: + - pos: -12.5,15.5 + parent: 1 + type: Transform + - uid: 19450 + components: + - pos: -13.5,15.5 + parent: 1 + type: Transform + - uid: 19451 + components: + - pos: -13.5,16.5 + parent: 1 + type: Transform + - uid: 19452 + components: + - pos: -14.5,16.5 + parent: 1 + type: Transform + - uid: 19453 + components: + - pos: -14.5,17.5 + parent: 1 + type: Transform + - uid: 19454 + components: + - pos: -15.5,17.5 + parent: 1 + type: Transform + - uid: 19455 + components: + - pos: -15.5,18.5 + parent: 1 + type: Transform + - uid: 19456 + components: + - pos: -14.5,15.5 + parent: 1 + type: Transform + - uid: 19457 + components: + - pos: -9.5,16.5 + parent: 1 + type: Transform + - uid: 19458 + components: + - pos: -9.5,17.5 + parent: 1 + type: Transform + - uid: 19462 + components: + - pos: -11.5,19.5 + parent: 1 + type: Transform + - uid: 19463 + components: + - pos: -12.5,19.5 + parent: 1 + type: Transform + - uid: 19464 + components: + - pos: -12.5,20.5 + parent: 1 + type: Transform + - uid: 19465 + components: + - pos: -12.5,21.5 + parent: 1 + type: Transform + - uid: 19466 + components: + - pos: -12.5,22.5 + parent: 1 + type: Transform + - uid: 19467 + components: + - pos: -12.5,23.5 + parent: 1 + type: Transform + - uid: 19468 + components: + - pos: 40.5,-41.5 + parent: 1 + type: Transform + - uid: 19469 + components: + - pos: -19.5,21.5 + parent: 1 + type: Transform + - uid: 19470 + components: + - pos: -20.5,21.5 + parent: 1 + type: Transform + - uid: 19471 + components: + - pos: -21.5,21.5 + parent: 1 + type: Transform + - uid: 19472 + components: + - pos: -22.5,21.5 + parent: 1 + type: Transform + - uid: 19473 + components: + - pos: -23.5,21.5 + parent: 1 + type: Transform + - uid: 19474 + components: + - pos: -24.5,21.5 + parent: 1 + type: Transform + - uid: 19475 + components: + - pos: -25.5,21.5 + parent: 1 + type: Transform + - uid: 19476 + components: + - pos: -26.5,21.5 + parent: 1 + type: Transform + - uid: 19477 + components: + - pos: -27.5,21.5 + parent: 1 + type: Transform + - uid: 19478 + components: + - pos: -27.5,20.5 + parent: 1 + type: Transform + - uid: 19479 + components: + - pos: -27.5,19.5 + parent: 1 + type: Transform + - uid: 19480 + components: + - pos: -27.5,18.5 + parent: 1 + type: Transform + - uid: 19481 + components: + - pos: -27.5,17.5 + parent: 1 + type: Transform + - uid: 19482 + components: + - pos: -27.5,16.5 + parent: 1 + type: Transform + - uid: 19483 + components: + - pos: -27.5,15.5 + parent: 1 + type: Transform + - uid: 19484 + components: + - pos: -27.5,14.5 + parent: 1 + type: Transform + - uid: 19485 + components: + - pos: -27.5,13.5 + parent: 1 + type: Transform + - uid: 19486 + components: + - pos: -27.5,12.5 + parent: 1 + type: Transform + - uid: 19487 + components: + - pos: -27.5,11.5 + parent: 1 + type: Transform + - uid: 19488 + components: + - pos: -27.5,10.5 + parent: 1 + type: Transform + - uid: 19489 + components: + - pos: -27.5,9.5 + parent: 1 + type: Transform + - uid: 19490 + components: + - pos: -27.5,8.5 + parent: 1 + type: Transform + - uid: 19491 + components: + - pos: -28.5,14.5 + parent: 1 + type: Transform + - uid: 19492 + components: + - pos: -29.5,14.5 + parent: 1 + type: Transform + - uid: 19493 + components: + - pos: -29.5,15.5 + parent: 1 + type: Transform + - uid: 19494 + components: + - pos: -30.5,15.5 + parent: 1 + type: Transform + - uid: 19495 + components: + - pos: -31.5,15.5 + parent: 1 + type: Transform + - uid: 19496 + components: + - pos: -32.5,15.5 + parent: 1 + type: Transform + - uid: 19497 + components: + - pos: -29.5,16.5 + parent: 1 + type: Transform + - uid: 19498 + components: + - pos: -29.5,17.5 + parent: 1 + type: Transform + - uid: 19499 + components: + - pos: -30.5,17.5 + parent: 1 + type: Transform + - uid: 19500 + components: + - pos: -31.5,17.5 + parent: 1 + type: Transform + - uid: 19501 + components: + - pos: -32.5,17.5 + parent: 1 + type: Transform + - uid: 19628 + components: + - pos: -8.5,27.5 + parent: 1 + type: Transform + - uid: 19629 + components: + - pos: -8.5,26.5 + parent: 1 + type: Transform + - uid: 19630 + components: + - pos: -8.5,25.5 + parent: 1 + type: Transform + - uid: 19631 + components: + - pos: -8.5,24.5 + parent: 1 + type: Transform + - uid: 19632 + components: + - pos: -8.5,23.5 + parent: 1 + type: Transform + - uid: 19633 + components: + - pos: -8.5,21.5 + parent: 1 + type: Transform + - uid: 19634 + components: + - pos: -7.5,21.5 + parent: 1 + type: Transform + - uid: 19635 + components: + - pos: -6.5,21.5 + parent: 1 + type: Transform + - uid: 19636 + components: + - pos: -5.5,21.5 + parent: 1 + type: Transform + - uid: 19637 + components: + - pos: -4.5,21.5 + parent: 1 + type: Transform + - uid: 19638 + components: + - pos: -4.5,22.5 + parent: 1 + type: Transform + - uid: 19639 + components: + - pos: -4.5,23.5 + parent: 1 + type: Transform + - uid: 19640 + components: + - pos: -3.5,23.5 + parent: 1 + type: Transform + - uid: 19641 + components: + - pos: -4.5,20.5 + parent: 1 + type: Transform + - uid: 19642 + components: + - pos: -4.5,19.5 + parent: 1 + type: Transform + - uid: 19643 + components: + - pos: -4.5,18.5 + parent: 1 + type: Transform + - uid: 19644 + components: + - pos: -4.5,17.5 + parent: 1 + type: Transform + - uid: 19645 + components: + - pos: -4.5,16.5 + parent: 1 + type: Transform + - uid: 19646 + components: + - pos: -3.5,16.5 + parent: 1 + type: Transform + - uid: 19647 + components: + - pos: -2.5,16.5 + parent: 1 + type: Transform + - uid: 19648 + components: + - pos: -1.5,16.5 + parent: 1 + type: Transform + - uid: 19649 + components: + - pos: -0.5,16.5 + parent: 1 + type: Transform + - uid: 19650 + components: + - pos: 0.5,16.5 + parent: 1 + type: Transform + - uid: 19651 + components: + - pos: 1.5,16.5 + parent: 1 + type: Transform + - uid: 19652 + components: + - pos: 2.5,16.5 + parent: 1 + type: Transform + - uid: 19653 + components: + - pos: 3.5,16.5 + parent: 1 + type: Transform + - uid: 19654 + components: + - pos: 4.5,16.5 + parent: 1 + type: Transform + - uid: 19655 + components: + - pos: 5.5,16.5 + parent: 1 + type: Transform + - uid: 19656 + components: + - pos: 6.5,16.5 + parent: 1 + type: Transform + - uid: 19657 + components: + - pos: 7.5,16.5 + parent: 1 + type: Transform + - uid: 19658 + components: + - pos: 7.5,15.5 + parent: 1 + type: Transform + - uid: 19663 + components: + - pos: 17.5,26.5 + parent: 1 + type: Transform + - uid: 19664 + components: + - pos: 17.5,25.5 + parent: 1 + type: Transform + - uid: 19665 + components: + - pos: 17.5,24.5 + parent: 1 + type: Transform + - uid: 19670 + components: + - pos: 1.5,22.5 + parent: 1 + type: Transform + - uid: 19671 + components: + - pos: 1.5,23.5 + parent: 1 + type: Transform + - uid: 19672 + components: + - pos: 0.5,23.5 + parent: 1 + type: Transform + - uid: 19673 + components: + - pos: -0.5,23.5 + parent: 1 + type: Transform + - uid: 19674 + components: + - pos: 28.5,27.5 + parent: 1 + type: Transform + - uid: 19675 + components: + - pos: 28.5,28.5 + parent: 1 + type: Transform + - uid: 19676 + components: + - pos: 27.5,28.5 + parent: 1 + type: Transform + - uid: 19677 + components: + - pos: 26.5,28.5 + parent: 1 + type: Transform + - uid: 19678 + components: + - pos: 25.5,28.5 + parent: 1 + type: Transform + - uid: 19679 + components: + - pos: 24.5,28.5 + parent: 1 + type: Transform + - uid: 19680 + components: + - pos: 23.5,28.5 + parent: 1 + type: Transform + - uid: 19681 + components: + - pos: 22.5,28.5 + parent: 1 + type: Transform + - uid: 19682 + components: + - pos: 21.5,28.5 + parent: 1 + type: Transform + - uid: 19683 + components: + - pos: 20.5,28.5 + parent: 1 + type: Transform + - uid: 19684 + components: + - pos: 19.5,28.5 + parent: 1 + type: Transform + - uid: 19685 + components: + - pos: 18.5,28.5 + parent: 1 + type: Transform + - uid: 19686 + components: + - pos: 17.5,28.5 + parent: 1 + type: Transform + - uid: 19687 + components: + - pos: 23.5,26.5 + parent: 1 + type: Transform + - uid: 19688 + components: + - pos: 23.5,27.5 + parent: 1 + type: Transform + - uid: 19689 + components: + - pos: 29.5,28.5 + parent: 1 + type: Transform + - uid: 19690 + components: + - pos: 30.5,28.5 + parent: 1 + type: Transform + - uid: 19691 + components: + - pos: 31.5,28.5 + parent: 1 + type: Transform + - uid: 19692 + components: + - pos: 32.5,28.5 + parent: 1 + type: Transform + - uid: 19693 + components: + - pos: 33.5,28.5 + parent: 1 + type: Transform + - uid: 19694 + components: + - pos: 34.5,28.5 + parent: 1 + type: Transform + - uid: 19695 + components: + - pos: 35.5,28.5 + parent: 1 + type: Transform + - uid: 19696 + components: + - pos: 36.5,28.5 + parent: 1 + type: Transform + - uid: 19697 + components: + - pos: 37.5,28.5 + parent: 1 + type: Transform + - uid: 19698 + components: + - pos: 38.5,28.5 + parent: 1 + type: Transform + - uid: 19699 + components: + - pos: 38.5,29.5 + parent: 1 + type: Transform + - uid: 19700 + components: + - pos: 38.5,30.5 + parent: 1 + type: Transform + - uid: 19701 + components: + - pos: 2.5,23.5 + parent: 1 + type: Transform + - uid: 19702 + components: + - pos: 2.5,24.5 + parent: 1 + type: Transform + - uid: 19703 + components: + - pos: 39.5,28.5 + parent: 1 + type: Transform + - uid: 19704 + components: + - pos: 40.5,28.5 + parent: 1 + type: Transform + - uid: 19705 + components: + - pos: 40.5,27.5 + parent: 1 + type: Transform + - uid: 19706 + components: + - pos: 41.5,27.5 + parent: 1 + type: Transform + - uid: 19707 + components: + - pos: 41.5,26.5 + parent: 1 + type: Transform + - uid: 19708 + components: + - pos: 42.5,26.5 + parent: 1 + type: Transform + - uid: 19709 + components: + - pos: 42.5,25.5 + parent: 1 + type: Transform + - uid: 19710 + components: + - pos: 43.5,25.5 + parent: 1 + type: Transform + - uid: 19712 + components: + - pos: 3.5,23.5 + parent: 1 + type: Transform + - uid: 19713 + components: + - pos: 3.5,22.5 + parent: 1 + type: Transform + - uid: 19714 + components: + - pos: 3.5,21.5 + parent: 1 + type: Transform + - uid: 19715 + components: + - pos: 45.5,22.5 + parent: 1 + type: Transform + - uid: 19716 + components: + - pos: 46.5,22.5 + parent: 1 + type: Transform + - uid: 19717 + components: + - pos: 46.5,21.5 + parent: 1 + type: Transform + - uid: 19718 + components: + - pos: 47.5,21.5 + parent: 1 + type: Transform + - uid: 19719 + components: + - pos: 47.5,20.5 + parent: 1 + type: Transform + - uid: 19720 + components: + - pos: 48.5,20.5 + parent: 1 + type: Transform + - uid: 19721 + components: + - pos: 48.5,19.5 + parent: 1 + type: Transform + - uid: 19722 + components: + - pos: 49.5,19.5 + parent: 1 + type: Transform + - uid: 19723 + components: + - pos: 49.5,18.5 + parent: 1 + type: Transform + - uid: 19724 + components: + - pos: 50.5,18.5 + parent: 1 + type: Transform + - uid: 19725 + components: + - pos: 50.5,17.5 + parent: 1 + type: Transform + - uid: 19726 + components: + - pos: 50.5,16.5 + parent: 1 + type: Transform + - uid: 19727 + components: + - pos: 50.5,15.5 + parent: 1 + type: Transform + - uid: 19728 + components: + - pos: 50.5,14.5 + parent: 1 + type: Transform + - uid: 19729 + components: + - pos: 50.5,13.5 + parent: 1 + type: Transform + - uid: 19730 + components: + - pos: 50.5,12.5 + parent: 1 + type: Transform + - uid: 19731 + components: + - pos: 50.5,11.5 + parent: 1 + type: Transform + - uid: 19732 + components: + - pos: 50.5,10.5 + parent: 1 + type: Transform + - uid: 19733 + components: + - pos: 50.5,9.5 + parent: 1 + type: Transform + - uid: 19734 + components: + - pos: 50.5,8.5 + parent: 1 + type: Transform + - uid: 19735 + components: + - pos: 53.5,5.5 + parent: 1 + type: Transform + - uid: 19736 + components: + - pos: 52.5,5.5 + parent: 1 + type: Transform + - uid: 19737 + components: + - pos: 52.5,6.5 + parent: 1 + type: Transform + - uid: 19738 + components: + - pos: 52.5,7.5 + parent: 1 + type: Transform + - uid: 19739 + components: + - pos: 52.5,8.5 + parent: 1 + type: Transform + - uid: 19740 + components: + - pos: 45.5,10.5 + parent: 1 + type: Transform + - uid: 19741 + components: + - pos: 45.5,9.5 + parent: 1 + type: Transform + - uid: 19742 + components: + - pos: 45.5,8.5 + parent: 1 + type: Transform + - uid: 19743 + components: + - pos: 44.5,8.5 + parent: 1 + type: Transform + - uid: 19744 + components: + - pos: 43.5,8.5 + parent: 1 + type: Transform + - uid: 19745 + components: + - pos: 42.5,8.5 + parent: 1 + type: Transform + - uid: 19746 + components: + - pos: 42.5,9.5 + parent: 1 + type: Transform + - uid: 19747 + components: + - pos: 42.5,10.5 + parent: 1 + type: Transform + - uid: 19748 + components: + - pos: 42.5,11.5 + parent: 1 + type: Transform + - uid: 19749 + components: + - pos: 43.5,11.5 + parent: 1 + type: Transform + - uid: 19750 + components: + - pos: 46.5,10.5 + parent: 1 + type: Transform + - uid: 19751 + components: + - pos: 46.5,11.5 + parent: 1 + type: Transform + - uid: 19752 + components: + - pos: 14.5,28.5 + parent: 1 + type: Transform + - uid: 19753 + components: + - pos: 13.5,28.5 + parent: 1 + type: Transform + - uid: 19754 + components: + - pos: 12.5,28.5 + parent: 1 + type: Transform + - uid: 19755 + components: + - pos: 12.5,27.5 + parent: 1 + type: Transform + - uid: 19756 + components: + - pos: 12.5,26.5 + parent: 1 + type: Transform + - uid: 19757 + components: + - pos: 12.5,25.5 + parent: 1 + type: Transform + - uid: 19758 + components: + - pos: 12.5,24.5 + parent: 1 + type: Transform + - uid: 19759 + components: + - pos: 12.5,23.5 + parent: 1 + type: Transform + - uid: 19760 + components: + - pos: 12.5,22.5 + parent: 1 + type: Transform + - uid: 19761 + components: + - pos: 12.5,21.5 + parent: 1 + type: Transform + - uid: 19762 + components: + - pos: 12.5,20.5 + parent: 1 + type: Transform + - uid: 19763 + components: + - pos: 12.5,19.5 + parent: 1 + type: Transform + - uid: 19764 + components: + - pos: 12.5,18.5 + parent: 1 + type: Transform + - uid: 19765 + components: + - pos: 12.5,17.5 + parent: 1 + type: Transform + - uid: 19766 + components: + - pos: 12.5,16.5 + parent: 1 + type: Transform + - uid: 19767 + components: + - pos: 12.5,15.5 + parent: 1 + type: Transform + - uid: 19768 + components: + - pos: 12.5,14.5 + parent: 1 + type: Transform + - uid: 19769 + components: + - pos: 12.5,13.5 + parent: 1 + type: Transform + - uid: 19770 + components: + - pos: 12.5,12.5 + parent: 1 + type: Transform + - uid: 19771 + components: + - pos: 12.5,11.5 + parent: 1 + type: Transform + - uid: 19772 + components: + - pos: 11.5,11.5 + parent: 1 + type: Transform + - uid: 19773 + components: + - pos: 10.5,11.5 + parent: 1 + type: Transform + - uid: 19774 + components: + - pos: 10.5,12.5 + parent: 1 + type: Transform + - uid: 19775 + components: + - pos: 10.5,10.5 + parent: 1 + type: Transform + - uid: 19776 + components: + - pos: 13.5,11.5 + parent: 1 + type: Transform + - uid: 19777 + components: + - pos: 14.5,11.5 + parent: 1 + type: Transform + - uid: 19778 + components: + - pos: 15.5,11.5 + parent: 1 + type: Transform + - uid: 19779 + components: + - pos: 16.5,11.5 + parent: 1 + type: Transform + - uid: 19780 + components: + - pos: 17.5,11.5 + parent: 1 + type: Transform + - uid: 19781 + components: + - pos: 18.5,11.5 + parent: 1 + type: Transform + - uid: 19782 + components: + - pos: 19.5,11.5 + parent: 1 + type: Transform + - uid: 19783 + components: + - pos: 20.5,11.5 + parent: 1 + type: Transform + - uid: 19784 + components: + - pos: 21.5,11.5 + parent: 1 + type: Transform + - uid: 19785 + components: + - pos: 22.5,11.5 + parent: 1 + type: Transform + - uid: 19786 + components: + - pos: 23.5,11.5 + parent: 1 + type: Transform + - uid: 19787 + components: + - pos: 24.5,11.5 + parent: 1 + type: Transform + - uid: 19788 + components: + - pos: 25.5,11.5 + parent: 1 + type: Transform + - uid: 19789 + components: + - pos: 26.5,11.5 + parent: 1 + type: Transform + - uid: 19790 + components: + - pos: 27.5,11.5 + parent: 1 + type: Transform + - uid: 19791 + components: + - pos: 28.5,11.5 + parent: 1 + type: Transform + - uid: 19792 + components: + - pos: 29.5,11.5 + parent: 1 + type: Transform + - uid: 19793 + components: + - pos: 30.5,11.5 + parent: 1 + type: Transform + - uid: 19794 + components: + - pos: 31.5,11.5 + parent: 1 + type: Transform + - uid: 19795 + components: + - pos: 32.5,11.5 + parent: 1 + type: Transform + - uid: 19796 + components: + - pos: 33.5,11.5 + parent: 1 + type: Transform + - uid: 19797 + components: + - pos: 34.5,11.5 + parent: 1 + type: Transform + - uid: 19798 + components: + - pos: 35.5,11.5 + parent: 1 + type: Transform + - uid: 19799 + components: + - pos: 36.5,11.5 + parent: 1 + type: Transform + - uid: 19800 + components: + - pos: 37.5,11.5 + parent: 1 + type: Transform + - uid: 19801 + components: + - pos: 38.5,11.5 + parent: 1 + type: Transform + - uid: 19802 + components: + - pos: 15.5,12.5 + parent: 1 + type: Transform + - uid: 19803 + components: + - pos: 15.5,13.5 + parent: 1 + type: Transform + - uid: 19804 + components: + - pos: 38.5,10.5 + parent: 1 + type: Transform + - uid: 19805 + components: + - pos: 38.5,9.5 + parent: 1 + type: Transform + - uid: 19806 + components: + - pos: 38.5,8.5 + parent: 1 + type: Transform + - uid: 19807 + components: + - pos: 38.5,7.5 + parent: 1 + type: Transform + - uid: 19808 + components: + - pos: 38.5,6.5 + parent: 1 + type: Transform + - uid: 19809 + components: + - pos: 38.5,5.5 + parent: 1 + type: Transform + - uid: 19810 + components: + - pos: 38.5,4.5 + parent: 1 + type: Transform + - uid: 19811 + components: + - pos: 39.5,4.5 + parent: 1 + type: Transform + - uid: 19812 + components: + - pos: 40.5,4.5 + parent: 1 + type: Transform + - uid: 19813 + components: + - pos: 41.5,4.5 + parent: 1 + type: Transform + - uid: 19814 + components: + - pos: 42.5,4.5 + parent: 1 + type: Transform + - uid: 19815 + components: + - pos: 43.5,4.5 + parent: 1 + type: Transform + - uid: 19816 + components: + - pos: 44.5,4.5 + parent: 1 + type: Transform + - uid: 19817 + components: + - pos: 45.5,4.5 + parent: 1 + type: Transform + - uid: 19818 + components: + - pos: 46.5,4.5 + parent: 1 + type: Transform + - uid: 19819 + components: + - pos: 47.5,4.5 + parent: 1 + type: Transform + - uid: 19820 + components: + - pos: 48.5,4.5 + parent: 1 + type: Transform + - uid: 19821 + components: + - pos: 49.5,4.5 + parent: 1 + type: Transform + - uid: 19822 + components: + - pos: 49.5,3.5 + parent: 1 + type: Transform + - uid: 19823 + components: + - pos: 38.5,3.5 + parent: 1 + type: Transform + - uid: 19824 + components: + - pos: 18.5,-45.5 + parent: 1 + type: Transform + - uid: 19825 + components: + - pos: 18.5,-46.5 + parent: 1 + type: Transform + - uid: 19826 + components: + - pos: 18.5,-47.5 + parent: 1 + type: Transform + - uid: 19827 + components: + - pos: 18.5,-48.5 + parent: 1 + type: Transform + - uid: 19828 + components: + - pos: 19.5,-48.5 + parent: 1 + type: Transform + - uid: 19829 + components: + - pos: 20.5,-48.5 + parent: 1 + type: Transform + - uid: 19830 + components: + - pos: 21.5,-48.5 + parent: 1 + type: Transform + - uid: 19831 + components: + - pos: 22.5,-48.5 + parent: 1 + type: Transform + - uid: 19832 + components: + - pos: 23.5,-48.5 + parent: 1 + type: Transform + - uid: 19833 + components: + - pos: 24.5,-48.5 + parent: 1 + type: Transform + - uid: 19834 + components: + - pos: 25.5,-48.5 + parent: 1 + type: Transform + - uid: 19835 + components: + - pos: 26.5,-48.5 + parent: 1 + type: Transform + - uid: 19836 + components: + - pos: 27.5,-48.5 + parent: 1 + type: Transform + - uid: 19837 + components: + - pos: 28.5,-48.5 + parent: 1 + type: Transform + - uid: 19838 + components: + - pos: 28.5,-47.5 + parent: 1 + type: Transform + - uid: 19839 + components: + - pos: 26.5,-47.5 + parent: 1 + type: Transform + - uid: 19840 + components: + - pos: 26.5,-46.5 + parent: 1 + type: Transform + - uid: 19841 + components: + - pos: 26.5,-45.5 + parent: 1 + type: Transform + - uid: 19842 + components: + - pos: 27.5,-49.5 + parent: 1 + type: Transform + - uid: 19843 + components: + - pos: 27.5,-50.5 + parent: 1 + type: Transform + - uid: 19844 + components: + - pos: 27.5,-51.5 + parent: 1 + type: Transform + - uid: 19845 + components: + - pos: 25.5,-49.5 + parent: 1 + type: Transform + - uid: 19846 + components: + - pos: 25.5,-50.5 + parent: 1 + type: Transform + - uid: 19847 + components: + - pos: 25.5,-51.5 + parent: 1 + type: Transform + - uid: 19848 + components: + - pos: 19.5,-49.5 + parent: 1 + type: Transform + - uid: 19849 + components: + - pos: 19.5,-50.5 + parent: 1 + type: Transform + - uid: 19850 + components: + - pos: 19.5,-51.5 + parent: 1 + type: Transform + - uid: 19851 + components: + - pos: 17.5,-48.5 + parent: 1 + type: Transform + - uid: 19852 + components: + - pos: 17.5,-49.5 + parent: 1 + type: Transform + - uid: 19853 + components: + - pos: 17.5,-50.5 + parent: 1 + type: Transform + - uid: 19854 + components: + - pos: 17.5,-51.5 + parent: 1 + type: Transform + - uid: 19855 + components: + - pos: 16.5,-48.5 + parent: 1 + type: Transform + - uid: 19856 + components: + - pos: 15.5,-48.5 + parent: 1 + type: Transform + - uid: 19857 + components: + - pos: 14.5,-48.5 + parent: 1 + type: Transform + - uid: 19858 + components: + - pos: 13.5,-48.5 + parent: 1 + type: Transform + - uid: 19859 + components: + - pos: 12.5,-48.5 + parent: 1 + type: Transform + - uid: 19860 + components: + - pos: 11.5,-48.5 + parent: 1 + type: Transform + - uid: 19861 + components: + - pos: 10.5,-48.5 + parent: 1 + type: Transform + - uid: 19862 + components: + - pos: 9.5,-48.5 + parent: 1 + type: Transform + - uid: 19863 + components: + - pos: 8.5,-48.5 + parent: 1 + type: Transform + - uid: 19864 + components: + - pos: 8.5,-49.5 + parent: 1 + type: Transform + - uid: 19865 + components: + - pos: 8.5,-50.5 + parent: 1 + type: Transform + - uid: 19866 + components: + - pos: 7.5,-48.5 + parent: 1 + type: Transform + - uid: 19867 + components: + - pos: 7.5,-48.5 + parent: 1 + type: Transform + - uid: 19868 + components: + - pos: 6.5,-48.5 + parent: 1 + type: Transform + - uid: 19869 + components: + - pos: 5.5,-48.5 + parent: 1 + type: Transform + - uid: 19870 + components: + - pos: 4.5,-48.5 + parent: 1 + type: Transform + - uid: 19871 + components: + - pos: 3.5,-48.5 + parent: 1 + type: Transform + - uid: 19872 + components: + - pos: 2.5,-48.5 + parent: 1 + type: Transform + - uid: 19873 + components: + - pos: 1.5,-48.5 + parent: 1 + type: Transform + - uid: 19874 + components: + - pos: 1.5,-49.5 + parent: 1 + type: Transform + - uid: 19875 + components: + - pos: 1.5,-50.5 + parent: 1 + type: Transform + - uid: 19876 + components: + - pos: 0.5,-48.5 + parent: 1 + type: Transform + - uid: 19877 + components: + - pos: -0.5,-48.5 + parent: 1 + type: Transform + - uid: 19878 + components: + - pos: -1.5,-48.5 + parent: 1 + type: Transform + - uid: 19879 + components: + - pos: -2.5,-48.5 + parent: 1 + type: Transform + - uid: 19880 + components: + - pos: -3.5,-48.5 + parent: 1 + type: Transform + - uid: 19881 + components: + - pos: -4.5,-48.5 + parent: 1 + type: Transform + - uid: 19882 + components: + - pos: -5.5,-48.5 + parent: 1 + type: Transform + - uid: 19883 + components: + - pos: -5.5,-49.5 + parent: 1 + type: Transform + - uid: 19884 + components: + - pos: 1.5,-47.5 + parent: 1 + type: Transform + - uid: 19885 + components: + - pos: 5.5,-47.5 + parent: 1 + type: Transform + - uid: 19886 + components: + - pos: 12.5,-47.5 + parent: 1 + type: Transform + - uid: 19887 + components: + - pos: 12.5,-46.5 + parent: 1 + type: Transform + - uid: 19888 + components: + - pos: 12.5,-45.5 + parent: 1 + type: Transform + - uid: 19889 + components: + - pos: 12.5,-44.5 + parent: 1 + type: Transform + - uid: 19890 + components: + - pos: 12.5,-43.5 + parent: 1 + type: Transform + - uid: 19891 + components: + - pos: 12.5,-42.5 + parent: 1 + type: Transform + - uid: 19892 + components: + - pos: 12.5,-41.5 + parent: 1 + type: Transform + - uid: 19893 + components: + - pos: 12.5,-40.5 + parent: 1 + type: Transform + - uid: 19894 + components: + - pos: 12.5,-39.5 + parent: 1 + type: Transform + - uid: 19895 + components: + - pos: 3.5,20.5 + parent: 1 + type: Transform + - uid: 19896 + components: + - pos: 2.5,20.5 + parent: 1 + type: Transform + - uid: 19897 + components: + - pos: 1.5,20.5 + parent: 1 + type: Transform + - uid: 19898 + components: + - pos: 0.5,20.5 + parent: 1 + type: Transform + - uid: 19899 + components: + - pos: 4.5,20.5 + parent: 1 + type: Transform + - uid: 19900 + components: + - pos: 12.5,-33.5 + parent: 1 + type: Transform + - uid: 19901 + components: + - pos: 12.5,-32.5 + parent: 1 + type: Transform + - uid: 19902 + components: + - pos: 12.5,-31.5 + parent: 1 + type: Transform + - uid: 19903 + components: + - pos: 12.5,-30.5 + parent: 1 + type: Transform + - uid: 19904 + components: + - pos: 5.5,20.5 + parent: 1 + type: Transform + - uid: 19905 + components: + - pos: 6.5,20.5 + parent: 1 + type: Transform + - uid: 19906 + components: + - pos: 6.5,19.5 + parent: 1 + type: Transform + - uid: 19907 + components: + - pos: 6.5,21.5 + parent: 1 + type: Transform + - uid: 19908 + components: + - pos: 6.5,22.5 + parent: 1 + type: Transform + - uid: 19909 + components: + - pos: 12.5,-24.5 + parent: 1 + type: Transform + - uid: 19910 + components: + - pos: 11.5,-24.5 + parent: 1 + type: Transform + - uid: 19911 + components: + - pos: 10.5,-24.5 + parent: 1 + type: Transform + - uid: 19912 + components: + - pos: 9.5,-24.5 + parent: 1 + type: Transform + - uid: 19913 + components: + - pos: 8.5,-24.5 + parent: 1 + type: Transform + - uid: 19914 + components: + - pos: 7.5,-24.5 + parent: 1 + type: Transform + - uid: 19915 + components: + - pos: 6.5,-24.5 + parent: 1 + type: Transform + - uid: 19916 + components: + - pos: 6.5,-23.5 + parent: 1 + type: Transform + - uid: 19917 + components: + - pos: 5.5,-23.5 + parent: 1 + type: Transform + - uid: 19918 + components: + - pos: 4.5,-23.5 + parent: 1 + type: Transform + - uid: 19919 + components: + - pos: 13.5,-24.5 + parent: 1 + type: Transform + - uid: 19920 + components: + - pos: 14.5,-24.5 + parent: 1 + type: Transform + - uid: 19921 + components: + - pos: 15.5,-24.5 + parent: 1 + type: Transform + - uid: 19922 + components: + - pos: 16.5,-24.5 + parent: 1 + type: Transform + - uid: 19923 + components: + - pos: 16.5,-23.5 + parent: 1 + type: Transform + - uid: 19924 + components: + - pos: 17.5,-23.5 + parent: 1 + type: Transform + - uid: 19925 + components: + - pos: 18.5,-23.5 + parent: 1 + type: Transform + - uid: 19926 + components: + - pos: 19.5,-23.5 + parent: 1 + type: Transform + - uid: 19927 + components: + - pos: 6.5,23.5 + parent: 1 + type: Transform + - uid: 19928 + components: + - pos: 6.5,24.5 + parent: 1 + type: Transform + - uid: 19936 + components: + - pos: 51.5,-26.5 + parent: 1 + type: Transform + - uid: 19937 + components: + - pos: 51.5,-27.5 + parent: 1 + type: Transform + - uid: 19938 + components: + - pos: 51.5,-28.5 + parent: 1 + type: Transform + - uid: 19939 + components: + - pos: 51.5,-29.5 + parent: 1 + type: Transform + - uid: 19940 + components: + - pos: 51.5,-30.5 + parent: 1 + type: Transform + - uid: 19941 + components: + - pos: 50.5,-30.5 + parent: 1 + type: Transform + - uid: 19942 + components: + - pos: 49.5,-30.5 + parent: 1 + type: Transform + - uid: 19943 + components: + - pos: 48.5,-30.5 + parent: 1 + type: Transform + - uid: 19944 + components: + - pos: 47.5,-30.5 + parent: 1 + type: Transform + - uid: 19945 + components: + - pos: 47.5,-29.5 + parent: 1 + type: Transform + - uid: 19946 + components: + - pos: 47.5,-28.5 + parent: 1 + type: Transform + - uid: 19947 + components: + - pos: 52.5,-28.5 + parent: 1 + type: Transform + - uid: 19948 + components: + - pos: 53.5,-28.5 + parent: 1 + type: Transform + - uid: 19949 + components: + - pos: 54.5,-28.5 + parent: 1 + type: Transform + - uid: 19950 + components: + - pos: 55.5,-28.5 + parent: 1 + type: Transform + - uid: 19951 + components: + - pos: 56.5,-28.5 + parent: 1 + type: Transform + - uid: 19952 + components: + - pos: 57.5,-28.5 + parent: 1 + type: Transform + - uid: 19953 + components: + - pos: 58.5,-28.5 + parent: 1 + type: Transform + - uid: 19954 + components: + - pos: 59.5,-28.5 + parent: 1 + type: Transform + - uid: 19955 + components: + - pos: 60.5,-28.5 + parent: 1 + type: Transform + - uid: 19956 + components: + - pos: 61.5,-28.5 + parent: 1 + type: Transform + - uid: 19957 + components: + - pos: 62.5,-28.5 + parent: 1 + type: Transform + - uid: 19958 + components: + - pos: 63.5,-28.5 + parent: 1 + type: Transform + - uid: 19959 + components: + - pos: 64.5,-28.5 + parent: 1 + type: Transform + - uid: 19960 + components: + - pos: 64.5,-29.5 + parent: 1 + type: Transform + - uid: 19961 + components: + - pos: 64.5,-30.5 + parent: 1 + type: Transform + - uid: 19962 + components: + - pos: 64.5,-31.5 + parent: 1 + type: Transform + - uid: 19963 + components: + - pos: 57.5,-29.5 + parent: 1 + type: Transform + - uid: 19964 + components: + - pos: 57.5,-30.5 + parent: 1 + type: Transform + - uid: 19965 + components: + - pos: 57.5,-31.5 + parent: 1 + type: Transform + - uid: 20023 + components: + - pos: 18.5,-43.5 + parent: 1 + type: Transform + - uid: 20029 + components: + - pos: -3.5,-42.5 + parent: 1 + type: Transform + - uid: 20030 + components: + - pos: -4.5,-42.5 + parent: 1 + type: Transform + - uid: 20031 + components: + - pos: -5.5,-42.5 + parent: 1 + type: Transform + - uid: 20032 + components: + - pos: -6.5,-42.5 + parent: 1 + type: Transform + - uid: 20033 + components: + - pos: -7.5,-42.5 + parent: 1 + type: Transform + - uid: 20034 + components: + - pos: -8.5,-42.5 + parent: 1 + type: Transform + - uid: 20035 + components: + - pos: -9.5,-42.5 + parent: 1 + type: Transform + - uid: 20036 + components: + - pos: -6.5,-43.5 + parent: 1 + type: Transform + - uid: 20037 + components: + - pos: -9.5,-41.5 + parent: 1 + type: Transform + - uid: 20038 + components: + - pos: -10.5,-41.5 + parent: 1 + type: Transform + - uid: 20039 + components: + - pos: -11.5,-41.5 + parent: 1 + type: Transform + - uid: 20040 + components: + - pos: -12.5,-41.5 + parent: 1 + type: Transform + - uid: 20041 + components: + - pos: -13.5,-41.5 + parent: 1 + type: Transform + - uid: 20044 + components: + - pos: -12.5,-43.5 + parent: 1 + type: Transform + - uid: 20045 + components: + - pos: -12.5,-44.5 + parent: 1 + type: Transform + - uid: 20046 + components: + - pos: -11.5,-44.5 + parent: 1 + type: Transform + - uid: 20047 + components: + - pos: -11.5,-45.5 + parent: 1 + type: Transform + - uid: 20048 + components: + - pos: -10.5,-45.5 + parent: 1 + type: Transform + - uid: 20049 + components: + - pos: -10.5,-46.5 + parent: 1 + type: Transform + - uid: 20050 + components: + - pos: -9.5,-46.5 + parent: 1 + type: Transform + - uid: 20051 + components: + - pos: -9.5,-47.5 + parent: 1 + type: Transform + - uid: 20052 + components: + - pos: -8.5,-47.5 + parent: 1 + type: Transform + - uid: 20053 + components: + - pos: -14.5,-41.5 + parent: 1 + type: Transform + - uid: 20054 + components: + - pos: -15.5,-41.5 + parent: 1 + type: Transform + - uid: 20055 + components: + - pos: -15.5,-40.5 + parent: 1 + type: Transform + - uid: 20056 + components: + - pos: -16.5,-40.5 + parent: 1 + type: Transform + - uid: 20057 + components: + - pos: -16.5,-39.5 + parent: 1 + type: Transform + - uid: 20058 + components: + - pos: -16.5,-38.5 + parent: 1 + type: Transform + - uid: 20059 + components: + - pos: -16.5,-37.5 + parent: 1 + type: Transform + - uid: 20060 + components: + - pos: -16.5,-36.5 + parent: 1 + type: Transform + - uid: 20061 + components: + - pos: -16.5,-35.5 + parent: 1 + type: Transform + - uid: 20062 + components: + - pos: -16.5,-34.5 + parent: 1 + type: Transform + - uid: 20063 + components: + - pos: -16.5,-33.5 + parent: 1 + type: Transform + - uid: 20064 + components: + - pos: -16.5,-32.5 + parent: 1 + type: Transform + - uid: 20065 + components: + - pos: -15.5,-32.5 + parent: 1 + type: Transform + - uid: 20066 + components: + - pos: -14.5,-32.5 + parent: 1 + type: Transform + - uid: 20067 + components: + - pos: -13.5,-32.5 + parent: 1 + type: Transform + - uid: 20068 + components: + - pos: -12.5,-32.5 + parent: 1 + type: Transform + - uid: 20069 + components: + - pos: -11.5,-32.5 + parent: 1 + type: Transform + - uid: 20070 + components: + - pos: -11.5,-31.5 + parent: 1 + type: Transform + - uid: 20071 + components: + - pos: -10.5,-31.5 + parent: 1 + type: Transform + - uid: 20072 + components: + - pos: -10.5,-30.5 + parent: 1 + type: Transform + - uid: 20073 + components: + - pos: -9.5,-30.5 + parent: 1 + type: Transform + - uid: 20074 + components: + - pos: -9.5,-29.5 + parent: 1 + type: Transform + - uid: 20075 + components: + - pos: -8.5,-29.5 + parent: 1 + type: Transform + - uid: 20076 + components: + - pos: -7.5,-29.5 + parent: 1 + type: Transform + - uid: 20077 + components: + - pos: -6.5,-29.5 + parent: 1 + type: Transform + - uid: 20078 + components: + - pos: -5.5,-29.5 + parent: 1 + type: Transform + - uid: 20079 + components: + - pos: -4.5,-29.5 + parent: 1 + type: Transform + - uid: 20080 + components: + - pos: -3.5,-29.5 + parent: 1 + type: Transform + - uid: 20081 + components: + - pos: -2.5,-29.5 + parent: 1 + type: Transform + - uid: 20082 + components: + - pos: -1.5,-29.5 + parent: 1 + type: Transform + - uid: 20083 + components: + - pos: -0.5,-29.5 + parent: 1 + type: Transform + - uid: 20084 + components: + - pos: 0.5,-29.5 + parent: 1 + type: Transform + - uid: 20085 + components: + - pos: 1.5,-29.5 + parent: 1 + type: Transform + - uid: 20086 + components: + - pos: 2.5,-29.5 + parent: 1 + type: Transform + - uid: 20087 + components: + - pos: 3.5,-29.5 + parent: 1 + type: Transform + - uid: 20153 + components: + - pos: 41.5,-35.5 + parent: 1 + type: Transform + - uid: 20154 + components: + - pos: 41.5,-36.5 + parent: 1 + type: Transform + - uid: 20155 + components: + - pos: 41.5,-37.5 + parent: 1 + type: Transform + - uid: 20156 + components: + - pos: 41.5,-38.5 + parent: 1 + type: Transform + - uid: 20157 + components: + - pos: 41.5,-39.5 + parent: 1 + type: Transform + - uid: 20158 + components: + - pos: 41.5,-40.5 + parent: 1 + type: Transform + - uid: 20159 + components: + - pos: 40.5,-40.5 + parent: 1 + type: Transform + - uid: 20160 + components: + - pos: 40.5,-38.5 + parent: 1 + type: Transform + - uid: 20161 + components: + - pos: 39.5,-38.5 + parent: 1 + type: Transform + - uid: 20162 + components: + - pos: 38.5,-38.5 + parent: 1 + type: Transform + - uid: 20163 + components: + - pos: 37.5,-38.5 + parent: 1 + type: Transform + - uid: 20164 + components: + - pos: 36.5,-38.5 + parent: 1 + type: Transform + - uid: 20165 + components: + - pos: 39.5,-41.5 + parent: 1 + type: Transform + - uid: 20166 + components: + - pos: 39.5,-42.5 + parent: 1 + type: Transform + - uid: 20167 + components: + - pos: 38.5,-42.5 + parent: 1 + type: Transform + - uid: 20168 + components: + - pos: 38.5,-43.5 + parent: 1 + type: Transform + - uid: 20169 + components: + - pos: 37.5,-43.5 + parent: 1 + type: Transform + - uid: 20170 + components: + - pos: 37.5,-44.5 + parent: 1 + type: Transform + - uid: 20171 + components: + - pos: 36.5,-44.5 + parent: 1 + type: Transform + - uid: 20172 + components: + - pos: 36.5,-45.5 + parent: 1 + type: Transform + - uid: 20173 + components: + - pos: 35.5,-45.5 + parent: 1 + type: Transform + - uid: 20174 + components: + - pos: 35.5,-46.5 + parent: 1 + type: Transform + - uid: 20175 + components: + - pos: 34.5,-46.5 + parent: 1 + type: Transform + - uid: 20176 + components: + - pos: 34.5,-47.5 + parent: 1 + type: Transform + - uid: 20177 + components: + - pos: 33.5,-47.5 + parent: 1 + type: Transform + - uid: 20178 + components: + - pos: 40.5,-35.5 + parent: 1 + type: Transform + - uid: 20179 + components: + - pos: 40.5,-34.5 + parent: 1 + type: Transform + - uid: 20180 + components: + - pos: 40.5,-33.5 + parent: 1 + type: Transform + - uid: 20181 + components: + - pos: 40.5,-32.5 + parent: 1 + type: Transform + - uid: 20182 + components: + - pos: 39.5,-32.5 + parent: 1 + type: Transform + - uid: 20183 + components: + - pos: 38.5,-32.5 + parent: 1 + type: Transform + - uid: 20184 + components: + - pos: 37.5,-32.5 + parent: 1 + type: Transform + - uid: 20185 + components: + - pos: 36.5,-32.5 + parent: 1 + type: Transform + - uid: 20186 + components: + - pos: 36.5,-31.5 + parent: 1 + type: Transform + - uid: 20187 + components: + - pos: 35.5,-31.5 + parent: 1 + type: Transform + - uid: 20188 + components: + - pos: 35.5,-30.5 + parent: 1 + type: Transform + - uid: 20189 + components: + - pos: 34.5,-30.5 + parent: 1 + type: Transform + - uid: 20190 + components: + - pos: 34.5,-29.5 + parent: 1 + type: Transform + - uid: 20191 + components: + - pos: 33.5,-29.5 + parent: 1 + type: Transform + - uid: 20192 + components: + - pos: 32.5,-29.5 + parent: 1 + type: Transform + - uid: 20193 + components: + - pos: 31.5,-29.5 + parent: 1 + type: Transform + - uid: 20194 + components: + - pos: 30.5,-29.5 + parent: 1 + type: Transform + - uid: 20195 + components: + - pos: 29.5,-29.5 + parent: 1 + type: Transform + - uid: 20196 + components: + - pos: 28.5,-29.5 + parent: 1 + type: Transform + - uid: 20197 + components: + - pos: 27.5,-29.5 + parent: 1 + type: Transform + - uid: 20198 + components: + - pos: 26.5,-29.5 + parent: 1 + type: Transform + - uid: 20199 + components: + - pos: 25.5,-29.5 + parent: 1 + type: Transform + - uid: 20200 + components: + - pos: 24.5,-29.5 + parent: 1 + type: Transform + - uid: 20201 + components: + - pos: 23.5,-29.5 + parent: 1 + type: Transform + - uid: 20202 + components: + - pos: 22.5,-29.5 + parent: 1 + type: Transform + - uid: 20203 + components: + - pos: 21.5,-29.5 + parent: 1 + type: Transform + - uid: 20204 + components: + - pos: 20.5,-29.5 + parent: 1 + type: Transform + - uid: 20288 + components: + - pos: 91.5,-12.5 + parent: 1 + type: Transform + - uid: 20289 + components: + - pos: 90.5,-12.5 + parent: 1 + type: Transform + - uid: 20290 + components: + - pos: 90.5,-13.5 + parent: 1 + type: Transform + - uid: 20291 + components: + - pos: 90.5,-14.5 + parent: 1 + type: Transform + - uid: 20292 + components: + - pos: 90.5,-15.5 + parent: 1 + type: Transform + - uid: 20293 + components: + - pos: 90.5,-16.5 + parent: 1 + type: Transform + - uid: 20294 + components: + - pos: 89.5,-16.5 + parent: 1 + type: Transform + - uid: 20295 + components: + - pos: 89.5,-17.5 + parent: 1 + type: Transform + - uid: 20296 + components: + - pos: 88.5,-17.5 + parent: 1 + type: Transform + - uid: 20297 + components: + - pos: 88.5,-18.5 + parent: 1 + type: Transform + - uid: 20298 + components: + - pos: 87.5,-18.5 + parent: 1 + type: Transform + - uid: 20299 + components: + - pos: 87.5,-19.5 + parent: 1 + type: Transform + - uid: 20300 + components: + - pos: 86.5,-19.5 + parent: 1 + type: Transform + - uid: 20301 + components: + - pos: 86.5,-20.5 + parent: 1 + type: Transform + - uid: 20302 + components: + - pos: 85.5,-20.5 + parent: 1 + type: Transform + - uid: 20303 + components: + - pos: 84.5,-20.5 + parent: 1 + type: Transform + - uid: 20304 + components: + - pos: 83.5,-20.5 + parent: 1 + type: Transform + - uid: 20305 + components: + - pos: 82.5,-20.5 + parent: 1 + type: Transform + - uid: 20306 + components: + - pos: 81.5,-20.5 + parent: 1 + type: Transform + - uid: 20307 + components: + - pos: 80.5,-20.5 + parent: 1 + type: Transform + - uid: 20308 + components: + - pos: 79.5,-20.5 + parent: 1 + type: Transform + - uid: 20309 + components: + - pos: 78.5,-20.5 + parent: 1 + type: Transform + - uid: 20310 + components: + - pos: 77.5,-20.5 + parent: 1 + type: Transform + - uid: 20311 + components: + - pos: 76.5,-20.5 + parent: 1 + type: Transform + - uid: 20312 + components: + - pos: 75.5,-20.5 + parent: 1 + type: Transform + - uid: 20313 + components: + - pos: 74.5,-20.5 + parent: 1 + type: Transform + - uid: 20314 + components: + - pos: 73.5,-20.5 + parent: 1 + type: Transform + - uid: 20315 + components: + - pos: 72.5,-20.5 + parent: 1 + type: Transform + - uid: 20316 + components: + - pos: 71.5,-20.5 + parent: 1 + type: Transform + - uid: 20317 + components: + - pos: 70.5,-20.5 + parent: 1 + type: Transform + - uid: 20318 + components: + - pos: 69.5,-20.5 + parent: 1 + type: Transform + - uid: 20319 + components: + - pos: 68.5,-20.5 + parent: 1 + type: Transform + - uid: 20320 + components: + - pos: 67.5,-20.5 + parent: 1 + type: Transform + - uid: 20321 + components: + - pos: 66.5,-20.5 + parent: 1 + type: Transform + - uid: 20322 + components: + - pos: 65.5,-20.5 + parent: 1 + type: Transform + - uid: 20323 + components: + - pos: 64.5,-20.5 + parent: 1 + type: Transform + - uid: 20324 + components: + - pos: 63.5,-20.5 + parent: 1 + type: Transform + - uid: 20325 + components: + - pos: 62.5,-20.5 + parent: 1 + type: Transform + - uid: 20326 + components: + - pos: 61.5,-20.5 + parent: 1 + type: Transform + - uid: 20327 + components: + - pos: 64.5,-21.5 + parent: 1 + type: Transform + - uid: 20328 + components: + - pos: 64.5,-22.5 + parent: 1 + type: Transform + - uid: 20329 + components: + - pos: 64.5,-23.5 + parent: 1 + type: Transform + - uid: 20330 + components: + - pos: 75.5,-21.5 + parent: 1 + type: Transform + - uid: 20331 + components: + - pos: 75.5,-22.5 + parent: 1 + type: Transform + - uid: 20332 + components: + - pos: 75.5,-23.5 + parent: 1 + type: Transform + - uid: 20333 + components: + - pos: 76.5,-19.5 + parent: 1 + type: Transform + - uid: 20334 + components: + - pos: 76.5,-18.5 + parent: 1 + type: Transform + - uid: 20335 + components: + - pos: 61.5,-19.5 + parent: 1 + type: Transform + - uid: 20336 + components: + - pos: 60.5,-19.5 + parent: 1 + type: Transform + - uid: 20337 + components: + - pos: 59.5,-19.5 + parent: 1 + type: Transform + - uid: 20338 + components: + - pos: 58.5,-19.5 + parent: 1 + type: Transform + - uid: 20339 + components: + - pos: 57.5,-19.5 + parent: 1 + type: Transform + - uid: 20340 + components: + - pos: 57.5,-18.5 + parent: 1 + type: Transform + - uid: 20341 + components: + - pos: 57.5,-17.5 + parent: 1 + type: Transform + - uid: 20342 + components: + - pos: 57.5,-16.5 + parent: 1 + type: Transform + - uid: 20343 + components: + - pos: 57.5,-15.5 + parent: 1 + type: Transform + - uid: 20344 + components: + - pos: 56.5,-15.5 + parent: 1 + type: Transform + - uid: 20345 + components: + - pos: 55.5,-15.5 + parent: 1 + type: Transform + - uid: 20346 + components: + - pos: 54.5,-15.5 + parent: 1 + type: Transform + - uid: 20347 + components: + - pos: 53.5,-15.5 + parent: 1 + type: Transform + - uid: 20348 + components: + - pos: 57.5,-7.5 + parent: 1 + type: Transform + - uid: 20349 + components: + - pos: 56.5,-14.5 + parent: 1 + type: Transform + - uid: 20350 + components: + - pos: 56.5,-13.5 + parent: 1 + type: Transform + - uid: 20351 + components: + - pos: 56.5,-12.5 + parent: 1 + type: Transform + - uid: 20352 + components: + - pos: 56.5,-11.5 + parent: 1 + type: Transform + - uid: 20353 + components: + - pos: 56.5,-10.5 + parent: 1 + type: Transform + - uid: 20354 + components: + - pos: 56.5,-9.5 + parent: 1 + type: Transform + - uid: 20355 + components: + - pos: 56.5,-8.5 + parent: 1 + type: Transform + - uid: 20356 + components: + - pos: 56.5,-7.5 + parent: 1 + type: Transform + - uid: 20357 + components: + - pos: 57.5,-6.5 + parent: 1 + type: Transform + - uid: 20358 + components: + - pos: 58.5,-6.5 + parent: 1 + type: Transform + - uid: 20359 + components: + - pos: 58.5,-5.5 + parent: 1 + type: Transform + - uid: 20360 + components: + - pos: 59.5,-5.5 + parent: 1 + type: Transform + - uid: 20361 + components: + - pos: 59.5,-4.5 + parent: 1 + type: Transform + - uid: 20362 + components: + - pos: 59.5,-3.5 + parent: 1 + type: Transform + - uid: 20363 + components: + - pos: 59.5,-2.5 + parent: 1 + type: Transform + - uid: 20364 + components: + - pos: 59.5,-1.5 + parent: 1 + type: Transform + - uid: 20365 + components: + - pos: 59.5,-0.5 + parent: 1 + type: Transform + - uid: 20366 + components: + - pos: 57.5,-20.5 + parent: 1 + type: Transform + - uid: 20367 + components: + - pos: 56.5,-20.5 + parent: 1 + type: Transform + - uid: 20368 + components: + - pos: 56.5,-21.5 + parent: 1 + type: Transform + - uid: 20369 + components: + - pos: 55.5,-21.5 + parent: 1 + type: Transform + - uid: 20370 + components: + - pos: 55.5,-22.5 + parent: 1 + type: Transform + - uid: 20371 + components: + - pos: 54.5,-22.5 + parent: 1 + type: Transform + - uid: 20372 + components: + - pos: 54.5,-23.5 + parent: 1 + type: Transform + - uid: 20373 + components: + - pos: 53.5,-23.5 + parent: 1 + type: Transform + - uid: 20374 + components: + - pos: 53.5,-24.5 + parent: 1 + type: Transform + - uid: 20375 + components: + - pos: 52.5,-24.5 + parent: 1 + type: Transform + - uid: 20376 + components: + - pos: 51.5,-24.5 + parent: 1 + type: Transform + - uid: 20377 + components: + - pos: 50.5,-24.5 + parent: 1 + type: Transform + - uid: 20378 + components: + - pos: 49.5,-24.5 + parent: 1 + type: Transform + - uid: 20379 + components: + - pos: 49.5,-23.5 + parent: 1 + type: Transform + - uid: 20380 + components: + - pos: 49.5,-22.5 + parent: 1 + type: Transform + - uid: 20381 + components: + - pos: 61.5,0.5 + parent: 1 + type: Transform + - uid: 20382 + components: + - pos: 62.5,0.5 + parent: 1 + type: Transform + - uid: 20383 + components: + - pos: 63.5,0.5 + parent: 1 + type: Transform + - uid: 20384 + components: + - pos: 64.5,0.5 + parent: 1 + type: Transform + - uid: 20385 + components: + - pos: 65.5,0.5 + parent: 1 + type: Transform + - uid: 20386 + components: + - pos: 66.5,0.5 + parent: 1 + type: Transform + - uid: 20387 + components: + - pos: 67.5,0.5 + parent: 1 + type: Transform + - uid: 20388 + components: + - pos: 68.5,0.5 + parent: 1 + type: Transform + - uid: 20389 + components: + - pos: 69.5,0.5 + parent: 1 + type: Transform + - uid: 20390 + components: + - pos: 70.5,0.5 + parent: 1 + type: Transform + - uid: 20391 + components: + - pos: 71.5,0.5 + parent: 1 + type: Transform + - uid: 20392 + components: + - pos: 72.5,0.5 + parent: 1 + type: Transform + - uid: 20393 + components: + - pos: 73.5,0.5 + parent: 1 + type: Transform + - uid: 20394 + components: + - pos: 73.5,-0.5 + parent: 1 + type: Transform + - uid: 20395 + components: + - pos: 73.5,-1.5 + parent: 1 + type: Transform + - uid: 20396 + components: + - pos: 73.5,-2.5 + parent: 1 + type: Transform + - uid: 20397 + components: + - pos: 73.5,-3.5 + parent: 1 + type: Transform + - uid: 20398 + components: + - pos: 74.5,-3.5 + parent: 1 + type: Transform + - uid: 20399 + components: + - pos: 75.5,-3.5 + parent: 1 + type: Transform + - uid: 20400 + components: + - pos: 76.5,-3.5 + parent: 1 + type: Transform + - uid: 20401 + components: + - pos: 77.5,-3.5 + parent: 1 + type: Transform + - uid: 20402 + components: + - pos: 78.5,-3.5 + parent: 1 + type: Transform + - uid: 20403 + components: + - pos: 79.5,-3.5 + parent: 1 + type: Transform + - uid: 20404 + components: + - pos: 76.5,-4.5 + parent: 1 + type: Transform + - uid: 20405 + components: + - pos: 74.5,-4.5 + parent: 1 + type: Transform + - uid: 20406 + components: + - pos: 74.5,-5.5 + parent: 1 + type: Transform + - uid: 20407 + components: + - pos: 63.5,-0.5 + parent: 1 + type: Transform + - uid: 20408 + components: + - pos: 63.5,-1.5 + parent: 1 + type: Transform + - uid: 20409 + components: + - pos: 63.5,-2.5 + parent: 1 + type: Transform + - uid: 20410 + components: + - pos: 63.5,-3.5 + parent: 1 + type: Transform + - uid: 20411 + components: + - pos: 64.5,-3.5 + parent: 1 + type: Transform + - uid: 20412 + components: + - pos: 65.5,-3.5 + parent: 1 + type: Transform + - uid: 20413 + components: + - pos: 66.5,-3.5 + parent: 1 + type: Transform + - uid: 20414 + components: + - pos: 66.5,-2.5 + parent: 1 + type: Transform + - uid: 20415 + components: + - pos: 66.5,-1.5 + parent: 1 + type: Transform + - uid: 20416 + components: + - pos: 66.5,-0.5 + parent: 1 + type: Transform + - uid: 20417 + components: + - pos: 75.5,-7.5 + parent: 1 + type: Transform + - uid: 20418 + components: + - pos: 75.5,-8.5 + parent: 1 + type: Transform + - uid: 20419 + components: + - pos: 75.5,-9.5 + parent: 1 + type: Transform + - uid: 20420 + components: + - pos: 75.5,-10.5 + parent: 1 + type: Transform + - uid: 20421 + components: + - pos: 75.5,-11.5 + parent: 1 + type: Transform + - uid: 20422 + components: + - pos: 74.5,-11.5 + parent: 1 + type: Transform + - uid: 20423 + components: + - pos: 73.5,-11.5 + parent: 1 + type: Transform + - uid: 20424 + components: + - pos: 72.5,-11.5 + parent: 1 + type: Transform + - uid: 20425 + components: + - pos: 71.5,-11.5 + parent: 1 + type: Transform + - uid: 20426 + components: + - pos: 70.5,-11.5 + parent: 1 + type: Transform + - uid: 20427 + components: + - pos: 70.5,-10.5 + parent: 1 + type: Transform + - uid: 20428 + components: + - pos: 70.5,-12.5 + parent: 1 + type: Transform + - uid: 20429 + components: + - pos: 65.5,-14.5 + parent: 1 + type: Transform + - uid: 20430 + components: + - pos: 66.5,-14.5 + parent: 1 + type: Transform + - uid: 20431 + components: + - pos: 66.5,-15.5 + parent: 1 + type: Transform + - uid: 20432 + components: + - pos: 65.5,-13.5 + parent: 1 + type: Transform + - uid: 20433 + components: + - pos: 65.5,-12.5 + parent: 1 + type: Transform + - uid: 20434 + components: + - pos: 66.5,-12.5 + parent: 1 + type: Transform + - uid: 20435 + components: + - pos: 66.5,-11.5 + parent: 1 + type: Transform + - uid: 20436 + components: + - pos: 66.5,-10.5 + parent: 1 + type: Transform + - uid: 20437 + components: + - pos: 66.5,-9.5 + parent: 1 + type: Transform + - uid: 20438 + components: + - pos: 66.5,-8.5 + parent: 1 + type: Transform + - uid: 20439 + components: + - pos: 66.5,-7.5 + parent: 1 + type: Transform + - uid: 20440 + components: + - pos: 67.5,-7.5 + parent: 1 + type: Transform + - uid: 20441 + components: + - pos: 68.5,-7.5 + parent: 1 + type: Transform + - uid: 20442 + components: + - pos: 69.5,-7.5 + parent: 1 + type: Transform + - uid: 20443 + components: + - pos: 70.5,-7.5 + parent: 1 + type: Transform + - uid: 20444 + components: + - pos: 69.5,-0.5 + parent: 1 + type: Transform + - uid: 20445 + components: + - pos: 69.5,-1.5 + parent: 1 + type: Transform + - uid: 20446 + components: + - pos: 69.5,-2.5 + parent: 1 + type: Transform + - uid: 20447 + components: + - pos: 69.5,-3.5 + parent: 1 + type: Transform + - uid: 20448 + components: + - pos: 65.5,-7.5 + parent: 1 + type: Transform + - uid: 20449 + components: + - pos: 64.5,-7.5 + parent: 1 + type: Transform + - uid: 20450 + components: + - pos: 63.5,-7.5 + parent: 1 + type: Transform + - uid: 20451 + components: + - pos: 63.5,-8.5 + parent: 1 + type: Transform + - uid: 20452 + components: + - pos: 62.5,-8.5 + parent: 1 + type: Transform + - uid: 20453 + components: + - pos: 62.5,-9.5 + parent: 1 + type: Transform + - uid: 20454 + components: + - pos: 62.5,-10.5 + parent: 1 + type: Transform + - uid: 20455 + components: + - pos: 63.5,-10.5 + parent: 1 + type: Transform + - uid: 20456 + components: + - pos: 63.5,-11.5 + parent: 1 + type: Transform + - uid: 20457 + components: + - pos: 63.5,-12.5 + parent: 1 + type: Transform + - uid: 20458 + components: + - pos: 63.5,-13.5 + parent: 1 + type: Transform + - uid: 20459 + components: + - pos: 63.5,-14.5 + parent: 1 + type: Transform + - uid: 20460 + components: + - pos: 63.5,-15.5 + parent: 1 + type: Transform + - uid: 20461 + components: + - pos: 63.5,-16.5 + parent: 1 + type: Transform + - uid: 20462 + components: + - pos: 62.5,-16.5 + parent: 1 + type: Transform + - uid: 20463 + components: + - pos: 62.5,-15.5 + parent: 1 + type: Transform + - uid: 20464 + components: + - pos: 61.5,-16.5 + parent: 1 + type: Transform + - uid: 20465 + components: + - pos: 63.5,-17.5 + parent: 1 + type: Transform + - uid: 20466 + components: + - pos: 64.5,-17.5 + parent: 1 + type: Transform + - uid: 20467 + components: + - pos: 65.5,-17.5 + parent: 1 + type: Transform + - uid: 20468 + components: + - pos: 62.5,-13.5 + parent: 1 + type: Transform + - uid: 20469 + components: + - pos: 89.5,-10.5 + parent: 1 + type: Transform + - uid: 20470 + components: + - pos: 89.5,-9.5 + parent: 1 + type: Transform + - uid: 20471 + components: + - pos: 89.5,-8.5 + parent: 1 + type: Transform + - uid: 20472 + components: + - pos: 89.5,-7.5 + parent: 1 + type: Transform + - uid: 20473 + components: + - pos: 90.5,-8.5 + parent: 1 + type: Transform + - uid: 20474 + components: + - pos: 88.5,-8.5 + parent: 1 + type: Transform + - uid: 20475 + components: + - pos: 87.5,-8.5 + parent: 1 + type: Transform + - uid: 20476 + components: + - pos: 86.5,-8.5 + parent: 1 + type: Transform + - uid: 20477 + components: + - pos: 85.5,-8.5 + parent: 1 + type: Transform + - uid: 20478 + components: + - pos: 85.5,-7.5 + parent: 1 + type: Transform + - uid: 20479 + components: + - pos: 85.5,-6.5 + parent: 1 + type: Transform + - uid: 20480 + components: + - pos: 85.5,-5.5 + parent: 1 + type: Transform + - uid: 20481 + components: + - pos: 85.5,-4.5 + parent: 1 + type: Transform + - uid: 20482 + components: + - pos: 85.5,-3.5 + parent: 1 + type: Transform + - uid: 20483 + components: + - pos: 79.5,-16.5 + parent: 1 + type: Transform + - uid: 20484 + components: + - pos: 79.5,-15.5 + parent: 1 + type: Transform + - uid: 20485 + components: + - pos: 80.5,-15.5 + parent: 1 + type: Transform + - uid: 20486 + components: + - pos: 81.5,-15.5 + parent: 1 + type: Transform + - uid: 20487 + components: + - pos: 82.5,-15.5 + parent: 1 + type: Transform + - uid: 20488 + components: + - pos: 83.5,-15.5 + parent: 1 + type: Transform + - uid: 20489 + components: + - pos: 84.5,-15.5 + parent: 1 + type: Transform + - uid: 20490 + components: + - pos: 85.5,-15.5 + parent: 1 + type: Transform + - uid: 20491 + components: + - pos: 85.5,-14.5 + parent: 1 + type: Transform + - uid: 20492 + components: + - pos: 85.5,-13.5 + parent: 1 + type: Transform + - uid: 20493 + components: + - pos: 85.5,-12.5 + parent: 1 + type: Transform + - uid: 20494 + components: + - pos: 80.5,-14.5 + parent: 1 + type: Transform + - uid: 20495 + components: + - pos: 80.5,-13.5 + parent: 1 + type: Transform + - uid: 20496 + components: + - pos: 80.5,-12.5 + parent: 1 + type: Transform + - uid: 20497 + components: + - pos: 80.5,-11.5 + parent: 1 + type: Transform + - uid: 20498 + components: + - pos: 80.5,-10.5 + parent: 1 + type: Transform + - uid: 20499 + components: + - pos: 80.5,-9.5 + parent: 1 + type: Transform + - uid: 20500 + components: + - pos: 80.5,-8.5 + parent: 1 + type: Transform + - uid: 20501 + components: + - pos: 78.5,-15.5 + parent: 1 + type: Transform + - uid: 20502 + components: + - pos: 77.5,-15.5 + parent: 1 + type: Transform + - uid: 20503 + components: + - pos: 76.5,-15.5 + parent: 1 + type: Transform + - uid: 20504 + components: + - pos: 75.5,-15.5 + parent: 1 + type: Transform + - uid: 20505 + components: + - pos: 74.5,-15.5 + parent: 1 + type: Transform + - uid: 20506 + components: + - pos: 73.5,-15.5 + parent: 1 + type: Transform + - uid: 20507 + components: + - pos: 73.5,-16.5 + parent: 1 + type: Transform + - uid: 20508 + components: + - pos: 73.5,-17.5 + parent: 1 + type: Transform + - uid: 20509 + components: + - pos: 72.5,-17.5 + parent: 1 + type: Transform + - uid: 20510 + components: + - pos: 71.5,-17.5 + parent: 1 + type: Transform + - uid: 20511 + components: + - pos: 70.5,-17.5 + parent: 1 + type: Transform + - uid: 20512 + components: + - pos: 69.5,-17.5 + parent: 1 + type: Transform + - uid: 20566 + components: + - pos: 90.5,23.5 + parent: 1 + type: Transform + - uid: 20567 + components: + - pos: 90.5,22.5 + parent: 1 + type: Transform + - uid: 20568 + components: + - pos: 90.5,21.5 + parent: 1 + type: Transform + - uid: 20569 + components: + - pos: 91.5,21.5 + parent: 1 + type: Transform + - uid: 20570 + components: + - pos: 91.5,20.5 + parent: 1 + type: Transform + - uid: 20571 + components: + - pos: 91.5,19.5 + parent: 1 + type: Transform + - uid: 20572 + components: + - pos: 92.5,19.5 + parent: 1 + type: Transform + - uid: 20573 + components: + - pos: 93.5,19.5 + parent: 1 + type: Transform + - uid: 20574 + components: + - pos: 94.5,19.5 + parent: 1 + type: Transform + - uid: 20575 + components: + - pos: 94.5,18.5 + parent: 1 + type: Transform + - uid: 20576 + components: + - pos: 94.5,17.5 + parent: 1 + type: Transform + - uid: 20577 + components: + - pos: 94.5,16.5 + parent: 1 + type: Transform + - uid: 20578 + components: + - pos: 94.5,15.5 + parent: 1 + type: Transform + - uid: 20579 + components: + - pos: 95.5,16.5 + parent: 1 + type: Transform + - uid: 20580 + components: + - pos: 96.5,16.5 + parent: 1 + type: Transform + - uid: 20581 + components: + - pos: 97.5,16.5 + parent: 1 + type: Transform + - uid: 20582 + components: + - pos: 98.5,16.5 + parent: 1 + type: Transform + - uid: 20583 + components: + - pos: 99.5,16.5 + parent: 1 + type: Transform + - uid: 20584 + components: + - pos: 100.5,16.5 + parent: 1 + type: Transform + - uid: 20585 + components: + - pos: 93.5,16.5 + parent: 1 + type: Transform + - uid: 20586 + components: + - pos: 95.5,15.5 + parent: 1 + type: Transform + - uid: 20587 + components: + - pos: 95.5,14.5 + parent: 1 + type: Transform + - uid: 20588 + components: + - pos: 96.5,14.5 + parent: 1 + type: Transform + - uid: 20589 + components: + - pos: 97.5,14.5 + parent: 1 + type: Transform + - uid: 20590 + components: + - pos: 98.5,14.5 + parent: 1 + type: Transform + - uid: 20591 + components: + - pos: 99.5,14.5 + parent: 1 + type: Transform + - uid: 20592 + components: + - pos: 100.5,14.5 + parent: 1 + type: Transform + - uid: 20593 + components: + - pos: 101.5,14.5 + parent: 1 + type: Transform + - uid: 20594 + components: + - pos: 102.5,14.5 + parent: 1 + type: Transform + - uid: 20595 + components: + - pos: 103.5,14.5 + parent: 1 + type: Transform + - uid: 20596 + components: + - pos: 103.5,15.5 + parent: 1 + type: Transform + - uid: 20597 + components: + - pos: 103.5,16.5 + parent: 1 + type: Transform + - uid: 20609 + components: + - pos: 99.5,8.5 + parent: 1 + type: Transform + - uid: 20610 + components: + - pos: 99.5,7.5 + parent: 1 + type: Transform + - uid: 20611 + components: + - pos: 99.5,6.5 + parent: 1 + type: Transform + - uid: 20612 + components: + - pos: 99.5,5.5 + parent: 1 + type: Transform + - uid: 20613 + components: + - pos: 99.5,4.5 + parent: 1 + type: Transform + - uid: 20614 + components: + - pos: 99.5,3.5 + parent: 1 + type: Transform + - uid: 20615 + components: + - pos: 99.5,2.5 + parent: 1 + type: Transform + - uid: 20616 + components: + - pos: 99.5,1.5 + parent: 1 + type: Transform + - uid: 20617 + components: + - pos: 100.5,1.5 + parent: 1 + type: Transform + - uid: 20618 + components: + - pos: 98.5,4.5 + parent: 1 + type: Transform + - uid: 20619 + components: + - pos: 97.5,4.5 + parent: 1 + type: Transform + - uid: 20620 + components: + - pos: 96.5,4.5 + parent: 1 + type: Transform + - uid: 20621 + components: + - pos: 95.5,4.5 + parent: 1 + type: Transform + - uid: 20622 + components: + - pos: 94.5,4.5 + parent: 1 + type: Transform + - uid: 20623 + components: + - pos: 93.5,4.5 + parent: 1 + type: Transform + - uid: 20624 + components: + - pos: 92.5,4.5 + parent: 1 + type: Transform + - uid: 20625 + components: + - pos: 91.5,4.5 + parent: 1 + type: Transform + - uid: 20626 + components: + - pos: 90.5,4.5 + parent: 1 + type: Transform + - uid: 20627 + components: + - pos: 89.5,4.5 + parent: 1 + type: Transform + - uid: 20628 + components: + - pos: 88.5,4.5 + parent: 1 + type: Transform + - uid: 20629 + components: + - pos: 87.5,4.5 + parent: 1 + type: Transform + - uid: 20630 + components: + - pos: 86.5,4.5 + parent: 1 + type: Transform + - uid: 20631 + components: + - pos: 85.5,4.5 + parent: 1 + type: Transform + - uid: 20632 + components: + - pos: 84.5,4.5 + parent: 1 + type: Transform + - uid: 20633 + components: + - pos: 83.5,4.5 + parent: 1 + type: Transform + - uid: 20634 + components: + - pos: 82.5,4.5 + parent: 1 + type: Transform + - uid: 20635 + components: + - pos: 81.5,4.5 + parent: 1 + type: Transform + - uid: 20636 + components: + - pos: 80.5,4.5 + parent: 1 + type: Transform + - uid: 20637 + components: + - pos: 79.5,4.5 + parent: 1 + type: Transform + - uid: 20638 + components: + - pos: 78.5,4.5 + parent: 1 + type: Transform + - uid: 20639 + components: + - pos: 78.5,3.5 + parent: 1 + type: Transform + - uid: 20640 + components: + - pos: 110.5,0.5 + parent: 1 + type: Transform + - uid: 20641 + components: + - pos: 110.5,1.5 + parent: 1 + type: Transform + - uid: 20642 + components: + - pos: 110.5,2.5 + parent: 1 + type: Transform + - uid: 20643 + components: + - pos: 110.5,3.5 + parent: 1 + type: Transform + - uid: 20644 + components: + - pos: 110.5,4.5 + parent: 1 + type: Transform + - uid: 20645 + components: + - pos: 110.5,5.5 + parent: 1 + type: Transform + - uid: 20646 + components: + - pos: 110.5,6.5 + parent: 1 + type: Transform + - uid: 20647 + components: + - pos: 110.5,7.5 + parent: 1 + type: Transform + - uid: 20648 + components: + - pos: 110.5,8.5 + parent: 1 + type: Transform + - uid: 20649 + components: + - pos: 110.5,9.5 + parent: 1 + type: Transform + - uid: 20650 + components: + - pos: 111.5,6.5 + parent: 1 + type: Transform + - uid: 20651 + components: + - pos: 112.5,6.5 + parent: 1 + type: Transform + - uid: 20652 + components: + - pos: 113.5,6.5 + parent: 1 + type: Transform + - uid: 20653 + components: + - pos: 113.5,5.5 + parent: 1 + type: Transform + - uid: 20654 + components: + - pos: 113.5,4.5 + parent: 1 + type: Transform + - uid: 20655 + components: + - pos: 113.5,3.5 + parent: 1 + type: Transform + - uid: 20656 + components: + - pos: 113.5,2.5 + parent: 1 + type: Transform + - uid: 20657 + components: + - pos: 113.5,1.5 + parent: 1 + type: Transform + - uid: 20658 + components: + - pos: 113.5,0.5 + parent: 1 + type: Transform + - uid: 20659 + components: + - pos: 113.5,-0.5 + parent: 1 + type: Transform + - uid: 20660 + components: + - pos: 113.5,-1.5 + parent: 1 + type: Transform + - uid: 20661 + components: + - pos: 113.5,-2.5 + parent: 1 + type: Transform + - uid: 20662 + components: + - pos: 109.5,4.5 + parent: 1 + type: Transform + - uid: 20663 + components: + - pos: 108.5,4.5 + parent: 1 + type: Transform + - uid: 20664 + components: + - pos: 107.5,4.5 + parent: 1 + type: Transform + - uid: 20665 + components: + - pos: 106.5,4.5 + parent: 1 + type: Transform + - uid: 20666 + components: + - pos: 105.5,4.5 + parent: 1 + type: Transform + - uid: 20667 + components: + - pos: 104.5,4.5 + parent: 1 + type: Transform + - uid: 20668 + components: + - pos: 104.5,5.5 + parent: 1 + type: Transform + - uid: 20669 + components: + - pos: 104.5,6.5 + parent: 1 + type: Transform + - uid: 20670 + components: + - pos: 105.5,6.5 + parent: 1 + type: Transform + - uid: 20671 + components: + - pos: 105.5,7.5 + parent: 1 + type: Transform + - uid: 20672 + components: + - pos: 105.5,8.5 + parent: 1 + type: Transform + - uid: 20673 + components: + - pos: 105.5,9.5 + parent: 1 + type: Transform + - uid: 20674 + components: + - pos: 105.5,10.5 + parent: 1 + type: Transform + - uid: 20675 + components: + - pos: 104.5,10.5 + parent: 1 + type: Transform + - uid: 20676 + components: + - pos: 104.5,2.5 + parent: 1 + type: Transform + - uid: 20677 + components: + - pos: 104.5,1.5 + parent: 1 + type: Transform + - uid: 20678 + components: + - pos: 104.5,0.5 + parent: 1 + type: Transform + - uid: 20679 + components: + - pos: 105.5,0.5 + parent: 1 + type: Transform + - uid: 20680 + components: + - pos: 105.5,-0.5 + parent: 1 + type: Transform + - uid: 20681 + components: + - pos: 105.5,-1.5 + parent: 1 + type: Transform + - uid: 20682 + components: + - pos: 105.5,-2.5 + parent: 1 + type: Transform + - uid: 20683 + components: + - pos: 106.5,-1.5 + parent: 1 + type: Transform + - uid: 20684 + components: + - pos: 107.5,-1.5 + parent: 1 + type: Transform + - uid: 20685 + components: + - pos: 104.5,-2.5 + parent: 1 + type: Transform + - uid: 20686 + components: + - pos: 103.5,-2.5 + parent: 1 + type: Transform + - uid: 20687 + components: + - pos: 102.5,-2.5 + parent: 1 + type: Transform + - uid: 20688 + components: + - pos: 101.5,-2.5 + parent: 1 + type: Transform + - uid: 20689 + components: + - pos: 107.5,-4.5 + parent: 1 + type: Transform + - uid: 20690 + components: + - pos: 107.5,-5.5 + parent: 1 + type: Transform + - uid: 20691 + components: + - pos: 106.5,-5.5 + parent: 1 + type: Transform + - uid: 20692 + components: + - pos: 106.5,-6.5 + parent: 1 + type: Transform + - uid: 20693 + components: + - pos: 106.5,-7.5 + parent: 1 + type: Transform + - uid: 20694 + components: + - pos: 105.5,-7.5 + parent: 1 + type: Transform + - uid: 20695 + components: + - pos: 104.5,-7.5 + parent: 1 + type: Transform + - uid: 20696 + components: + - pos: 103.5,-7.5 + parent: 1 + type: Transform + - uid: 20697 + components: + - pos: 102.5,-7.5 + parent: 1 + type: Transform + - uid: 20698 + components: + - pos: 101.5,-7.5 + parent: 1 + type: Transform + - uid: 20699 + components: + - pos: 100.5,-7.5 + parent: 1 + type: Transform + - uid: 20700 + components: + - pos: 99.5,-7.5 + parent: 1 + type: Transform + - uid: 20701 + components: + - pos: 98.5,-7.5 + parent: 1 + type: Transform + - uid: 20702 + components: + - pos: 97.5,-7.5 + parent: 1 + type: Transform + - uid: 20703 + components: + - pos: 97.5,-6.5 + parent: 1 + type: Transform + - uid: 20704 + components: + - pos: 97.5,-5.5 + parent: 1 + type: Transform + - uid: 20705 + components: + - pos: 97.5,-4.5 + parent: 1 + type: Transform + - uid: 20706 + components: + - pos: 96.5,-4.5 + parent: 1 + type: Transform + - uid: 20710 + components: + - pos: 94.5,-2.5 + parent: 1 + type: Transform + - uid: 20714 + components: + - pos: 92.5,-0.5 + parent: 1 + type: Transform + - uid: 20715 + components: + - pos: 101.5,-8.5 + parent: 1 + type: Transform + - uid: 20716 + components: + - pos: 101.5,-9.5 + parent: 1 + type: Transform + - uid: 20800 + components: + - pos: -1.5,-17.5 + parent: 1 + type: Transform + - uid: 20802 + components: + - pos: -25.5,0.5 + parent: 1 + type: Transform + - uid: 20803 + components: + - pos: -24.5,0.5 + parent: 1 + type: Transform + - uid: 20804 + components: + - pos: -23.5,0.5 + parent: 1 + type: Transform + - uid: 20805 + components: + - pos: -22.5,0.5 + parent: 1 + type: Transform + - uid: 20806 + components: + - pos: -22.5,-0.5 + parent: 1 + type: Transform + - uid: 20807 + components: + - pos: -22.5,-1.5 + parent: 1 + type: Transform + - uid: 20808 + components: + - pos: -22.5,-2.5 + parent: 1 + type: Transform + - uid: 20809 + components: + - pos: -22.5,-3.5 + parent: 1 + type: Transform + - uid: 20810 + components: + - pos: -22.5,-4.5 + parent: 1 + type: Transform + - uid: 20812 + components: + - pos: -2.5,-19.5 + parent: 1 + type: Transform + - uid: 20813 + components: + - pos: -25.5,3.5 + parent: 1 + type: Transform + - uid: 20814 + components: + - pos: -25.5,4.5 + parent: 1 + type: Transform + - uid: 20815 + components: + - pos: -26.5,3.5 + parent: 1 + type: Transform + - uid: 20816 + components: + - pos: -26.5,4.5 + parent: 1 + type: Transform + - uid: 20817 + components: + - pos: -24.5,4.5 + parent: 1 + type: Transform + - uid: 20818 + components: + - pos: -23.5,4.5 + parent: 1 + type: Transform + - uid: 20819 + components: + - pos: -22.5,4.5 + parent: 1 + type: Transform + - uid: 20820 + components: + - pos: -21.5,4.5 + parent: 1 + type: Transform + - uid: 20821 + components: + - pos: -20.5,4.5 + parent: 1 + type: Transform + - uid: 20822 + components: + - pos: -19.5,4.5 + parent: 1 + type: Transform + - uid: 20823 + components: + - pos: -18.5,4.5 + parent: 1 + type: Transform + - uid: 20824 + components: + - pos: -17.5,4.5 + parent: 1 + type: Transform + - uid: 20825 + components: + - pos: -16.5,4.5 + parent: 1 + type: Transform + - uid: 20826 + components: + - pos: -15.5,4.5 + parent: 1 + type: Transform + - uid: 20827 + components: + - pos: -14.5,4.5 + parent: 1 + type: Transform + - uid: 20828 + components: + - pos: -13.5,4.5 + parent: 1 + type: Transform + - uid: 20829 + components: + - pos: -12.5,4.5 + parent: 1 + type: Transform + - uid: 20830 + components: + - pos: -11.5,4.5 + parent: 1 + type: Transform + - uid: 20831 + components: + - pos: -10.5,4.5 + parent: 1 + type: Transform + - uid: 20832 + components: + - pos: -9.5,4.5 + parent: 1 + type: Transform + - uid: 20833 + components: + - pos: -8.5,4.5 + parent: 1 + type: Transform + - uid: 20834 + components: + - pos: -7.5,4.5 + parent: 1 + type: Transform + - uid: 20835 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform + - uid: 20836 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 20837 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 20838 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 20839 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 20840 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 20841 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 20842 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 20843 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 20844 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 20845 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 20846 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 20847 + components: + - pos: -10.5,-16.5 + parent: 1 + type: Transform + - uid: 20848 + components: + - pos: -11.5,-16.5 + parent: 1 + type: Transform + - uid: 20849 + components: + - pos: -11.5,-17.5 + parent: 1 + type: Transform + - uid: 20850 + components: + - pos: -11.5,-18.5 + parent: 1 + type: Transform + - uid: 20851 + components: + - pos: -11.5,-19.5 + parent: 1 + type: Transform + - uid: 20852 + components: + - pos: -11.5,-20.5 + parent: 1 + type: Transform + - uid: 20853 + components: + - pos: -11.5,-21.5 + parent: 1 + type: Transform + - uid: 20854 + components: + - pos: -10.5,-21.5 + parent: 1 + type: Transform + - uid: 20855 + components: + - pos: -9.5,-21.5 + parent: 1 + type: Transform + - uid: 20856 + components: + - pos: -8.5,-21.5 + parent: 1 + type: Transform + - uid: 20857 + components: + - pos: -7.5,-21.5 + parent: 1 + type: Transform + - uid: 20858 + components: + - pos: -6.5,-21.5 + parent: 1 + type: Transform + - uid: 20859 + components: + - pos: -5.5,-21.5 + parent: 1 + type: Transform + - uid: 20860 + components: + - pos: -4.5,-21.5 + parent: 1 + type: Transform + - uid: 20861 + components: + - pos: -3.5,-21.5 + parent: 1 + type: Transform + - uid: 20862 + components: + - pos: -2.5,-21.5 + parent: 1 + type: Transform + - uid: 20863 + components: + - pos: -1.5,-21.5 + parent: 1 + type: Transform + - uid: 20864 + components: + - pos: -0.5,-21.5 + parent: 1 + type: Transform + - uid: 20865 + components: + - pos: 0.5,-21.5 + parent: 1 + type: Transform + - uid: 20866 + components: + - pos: 1.5,-21.5 + parent: 1 + type: Transform + - uid: 20867 + components: + - pos: 2.5,-21.5 + parent: 1 + type: Transform + - uid: 20868 + components: + - pos: 3.5,-21.5 + parent: 1 + type: Transform + - uid: 20869 + components: + - pos: 4.5,-21.5 + parent: 1 + type: Transform + - uid: 20870 + components: + - pos: 5.5,-21.5 + parent: 1 + type: Transform + - uid: 20871 + components: + - pos: 6.5,-21.5 + parent: 1 + type: Transform + - uid: 20872 + components: + - pos: 7.5,-21.5 + parent: 1 + type: Transform + - uid: 20873 + components: + - pos: 7.5,-20.5 + parent: 1 + type: Transform + - uid: 20874 + components: + - pos: -12.5,-21.5 + parent: 1 + type: Transform + - uid: 20875 + components: + - pos: -13.5,-21.5 + parent: 1 + type: Transform + - uid: 20876 + components: + - pos: -14.5,-21.5 + parent: 1 + type: Transform + - uid: 20877 + components: + - pos: -15.5,-21.5 + parent: 1 + type: Transform + - uid: 20878 + components: + - pos: -16.5,-21.5 + parent: 1 + type: Transform + - uid: 20879 + components: + - pos: -16.5,-20.5 + parent: 1 + type: Transform + - uid: 20880 + components: + - pos: -17.5,-20.5 + parent: 1 + type: Transform + - uid: 20881 + components: + - pos: -17.5,-19.5 + parent: 1 + type: Transform + - uid: 20882 + components: + - pos: -18.5,-19.5 + parent: 1 + type: Transform + - uid: 20883 + components: + - pos: -18.5,-18.5 + parent: 1 + type: Transform + - uid: 20884 + components: + - pos: -19.5,-18.5 + parent: 1 + type: Transform + - uid: 20885 + components: + - pos: -19.5,-17.5 + parent: 1 + type: Transform + - uid: 20886 + components: + - pos: -20.5,-17.5 + parent: 1 + type: Transform + - uid: 20887 + components: + - pos: -20.5,-16.5 + parent: 1 + type: Transform + - uid: 20892 + components: + - pos: -20.5,-13.5 + parent: 1 + type: Transform + - uid: 20893 + components: + - pos: -20.5,-12.5 + parent: 1 + type: Transform + - uid: 20894 + components: + - pos: -20.5,-11.5 + parent: 1 + type: Transform + - uid: 20895 + components: + - pos: -20.5,-10.5 + parent: 1 + type: Transform + - uid: 20896 + components: + - pos: -20.5,-9.5 + parent: 1 + type: Transform + - uid: 20897 + components: + - pos: -19.5,-9.5 + parent: 1 + type: Transform + - uid: 20898 + components: + - pos: -18.5,-9.5 + parent: 1 + type: Transform + - uid: 20899 + components: + - pos: -17.5,-9.5 + parent: 1 + type: Transform + - uid: 20900 + components: + - pos: -16.5,-9.5 + parent: 1 + type: Transform + - uid: 20901 + components: + - pos: -15.5,-9.5 + parent: 1 + type: Transform + - uid: 20908 + components: + - pos: -27.5,-12.5 + parent: 1 + type: Transform + - uid: 20909 + components: + - pos: -27.5,-11.5 + parent: 1 + type: Transform + - uid: 20910 + components: + - pos: -27.5,-10.5 + parent: 1 + type: Transform + - uid: 20911 + components: + - pos: -27.5,-9.5 + parent: 1 + type: Transform + - uid: 20912 + components: + - pos: -27.5,-8.5 + parent: 1 + type: Transform + - uid: 20913 + components: + - pos: -27.5,-7.5 + parent: 1 + type: Transform + - uid: 20914 + components: + - pos: -27.5,-6.5 + parent: 1 + type: Transform + - uid: 20915 + components: + - pos: -27.5,-5.5 + parent: 1 + type: Transform + - uid: 20916 + components: + - pos: -27.5,-4.5 + parent: 1 + type: Transform + - uid: 20917 + components: + - pos: -27.5,-3.5 + parent: 1 + type: Transform + - uid: 20918 + components: + - pos: -27.5,-2.5 + parent: 1 + type: Transform + - uid: 20919 + components: + - pos: -27.5,-1.5 + parent: 1 + type: Transform + - uid: 20920 + components: + - pos: -27.5,-0.5 + parent: 1 + type: Transform + - uid: 20921 + components: + - pos: -28.5,-10.5 + parent: 1 + type: Transform + - uid: 20922 + components: + - pos: -29.5,-10.5 + parent: 1 + type: Transform + - uid: 20923 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 20924 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 20925 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 20926 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 20927 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 20928 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 20929 + components: + - pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 20930 + components: + - pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 20931 + components: + - pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 20932 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 20933 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 20934 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 20935 + components: + - pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 20936 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform + - uid: 20937 + components: + - pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 20938 + components: + - pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 20939 + components: + - pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 20940 + components: + - pos: 8.5,-6.5 + parent: 1 + type: Transform + - uid: 20941 + components: + - pos: 8.5,-7.5 + parent: 1 + type: Transform + - uid: 20942 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 20943 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 20944 + components: + - pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 20945 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 20950 + components: + - pos: -1.5,-14.5 + parent: 1 + type: Transform + - uid: 20955 + components: + - pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 20956 + components: + - pos: -6.5,-0.5 + parent: 1 + type: Transform + - uid: 20957 + components: + - pos: -7.5,-0.5 + parent: 1 + type: Transform + - uid: 20958 + components: + - pos: -8.5,-0.5 + parent: 1 + type: Transform + - uid: 20959 + components: + - pos: -9.5,-0.5 + parent: 1 + type: Transform + - uid: 20960 + components: + - pos: -10.5,-0.5 + parent: 1 + type: Transform + - uid: 20964 + components: + - pos: -4.5,-4.5 + parent: 1 + type: Transform + - uid: 20965 + components: + - pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 20966 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 20967 + components: + - pos: -7.5,-4.5 + parent: 1 + type: Transform + - uid: 20968 + components: + - pos: -8.5,-4.5 + parent: 1 + type: Transform + - uid: 20969 + components: + - pos: -9.5,-4.5 + parent: 1 + type: Transform + - uid: 20970 + components: + - pos: -10.5,-4.5 + parent: 1 + type: Transform + - uid: 20971 + components: + - pos: -11.5,-4.5 + parent: 1 + type: Transform + - uid: 20972 + components: + - pos: -12.5,-4.5 + parent: 1 + type: Transform + - uid: 20973 + components: + - pos: -13.5,-4.5 + parent: 1 + type: Transform + - uid: 20974 + components: + - pos: -14.5,-4.5 + parent: 1 + type: Transform + - uid: 20975 + components: + - pos: -15.5,-4.5 + parent: 1 + type: Transform + - uid: 20976 + components: + - pos: -16.5,-4.5 + parent: 1 + type: Transform + - uid: 20977 + components: + - pos: -16.5,-3.5 + parent: 1 + type: Transform + - uid: 20978 + components: + - pos: -16.5,-2.5 + parent: 1 + type: Transform + - uid: 20979 + components: + - pos: -16.5,-1.5 + parent: 1 + type: Transform + - uid: 20980 + components: + - pos: -16.5,-0.5 + parent: 1 + type: Transform + - uid: 20981 + components: + - pos: -15.5,-0.5 + parent: 1 + type: Transform + - uid: 20982 + components: + - pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 20983 + components: + - pos: -5.5,-6.5 + parent: 1 + type: Transform + - uid: 20984 + components: + - pos: -5.5,-7.5 + parent: 1 + type: Transform + - uid: 20985 + components: + - pos: -5.5,-8.5 + parent: 1 + type: Transform + - uid: 20986 + components: + - pos: -5.5,-9.5 + parent: 1 + type: Transform + - uid: 20987 + components: + - pos: -14.5,-3.5 + parent: 1 + type: Transform + - uid: 20989 + components: + - pos: -5.5,-12.5 + parent: 1 + type: Transform + - uid: 20990 + components: + - pos: -5.5,-13.5 + parent: 1 + type: Transform + - uid: 20991 + components: + - pos: -5.5,-14.5 + parent: 1 + type: Transform + - uid: 20992 + components: + - pos: -4.5,-12.5 + parent: 1 + type: Transform + - uid: 20993 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 20995 + components: + - pos: -1.5,-8.5 + parent: 1 + type: Transform + - uid: 20998 + components: + - pos: 1.5,-12.5 + parent: 1 + type: Transform + - uid: 20999 + components: + - pos: 2.5,-12.5 + parent: 1 + type: Transform + - uid: 21002 + components: + - pos: -6.5,-12.5 + parent: 1 + type: Transform + - uid: 21003 + components: + - pos: -7.5,-12.5 + parent: 1 + type: Transform + - uid: 21004 + components: + - pos: -8.5,-12.5 + parent: 1 + type: Transform + - uid: 21005 + components: + - pos: -9.5,-12.5 + parent: 1 + type: Transform + - uid: 21006 + components: + - pos: -10.5,-12.5 + parent: 1 + type: Transform + - uid: 21007 + components: + - pos: -11.5,-12.5 + parent: 1 + type: Transform + - uid: 21008 + components: + - pos: -8.5,-13.5 + parent: 1 + type: Transform + - uid: 21009 + components: + - pos: -8.5,-5.5 + parent: 1 + type: Transform + - uid: 21010 + components: + - pos: -8.5,-6.5 + parent: 1 + type: Transform + - uid: 21011 + components: + - pos: -8.5,-7.5 + parent: 1 + type: Transform + - uid: 21012 + components: + - pos: -8.5,-8.5 + parent: 1 + type: Transform + - uid: 21013 + components: + - pos: -8.5,-9.5 + parent: 1 + type: Transform + - uid: 21014 + components: + - pos: 2.5,-13.5 + parent: 1 + type: Transform + - uid: 21015 + components: + - pos: 2.5,-14.5 + parent: 1 + type: Transform + - uid: 21016 + components: + - pos: 2.5,-15.5 + parent: 1 + type: Transform + - uid: 21017 + components: + - pos: 2.5,-16.5 + parent: 1 + type: Transform + - uid: 21018 + components: + - pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 21019 + components: + - pos: 4.5,-13.5 + parent: 1 + type: Transform + - uid: 21020 + components: + - pos: 5.5,-13.5 + parent: 1 + type: Transform + - uid: 21021 + components: + - pos: 6.5,-13.5 + parent: 1 + type: Transform + - uid: 21022 + components: + - pos: 7.5,-13.5 + parent: 1 + type: Transform + - uid: 21023 + components: + - pos: 7.5,-12.5 + parent: 1 + type: Transform + - uid: 21024 + components: + - pos: 7.5,-14.5 + parent: 1 + type: Transform + - uid: 21025 + components: + - pos: -2.5,-20.5 + parent: 1 + type: Transform + - uid: 21026 + components: + - pos: -5.5,-20.5 + parent: 1 + type: Transform + - uid: 21059 + components: + - pos: 126.5,2.5 + parent: 1 + type: Transform + - uid: 21060 + components: + - pos: 127.5,2.5 + parent: 1 + type: Transform + - uid: 21061 + components: + - pos: 128.5,2.5 + parent: 1 + type: Transform + - uid: 21062 + components: + - pos: 128.5,1.5 + parent: 1 + type: Transform + - uid: 21063 + components: + - pos: 128.5,3.5 + parent: 1 + type: Transform + - uid: 21064 + components: + - pos: 128.5,4.5 + parent: 1 + type: Transform + - uid: 21065 + components: + - pos: 128.5,5.5 + parent: 1 + type: Transform + - uid: 21066 + components: + - pos: 128.5,6.5 + parent: 1 + type: Transform + - uid: 21067 + components: + - pos: 127.5,4.5 + parent: 1 + type: Transform + - uid: 21068 + components: + - pos: 126.5,4.5 + parent: 1 + type: Transform + - uid: 21069 + components: + - pos: 125.5,4.5 + parent: 1 + type: Transform + - uid: 21070 + components: + - pos: 124.5,4.5 + parent: 1 + type: Transform + - uid: 21071 + components: + - pos: 123.5,4.5 + parent: 1 + type: Transform + - uid: 21072 + components: + - pos: 122.5,4.5 + parent: 1 + type: Transform + - uid: 21073 + components: + - pos: 121.5,4.5 + parent: 1 + type: Transform + - uid: 21074 + components: + - pos: 121.5,3.5 + parent: 1 + type: Transform + - uid: 21075 + components: + - pos: 121.5,2.5 + parent: 1 + type: Transform + - uid: 21076 + components: + - pos: 122.5,2.5 + parent: 1 + type: Transform + - uid: 21077 + components: + - pos: 123.5,2.5 + parent: 1 + type: Transform + - uid: 21078 + components: + - pos: 124.5,2.5 + parent: 1 + type: Transform + - uid: 21079 + components: + - pos: 121.5,5.5 + parent: 1 + type: Transform + - uid: 21080 + components: + - pos: 121.5,6.5 + parent: 1 + type: Transform + - uid: 21081 + components: + - pos: 121.5,2.5 + parent: 1 + type: Transform + - uid: 21082 + components: + - pos: 121.5,1.5 + parent: 1 + type: Transform + - uid: 21087 + components: + - pos: 40.5,-17.5 + parent: 1 + type: Transform + - uid: 21088 + components: + - pos: 39.5,-17.5 + parent: 1 + type: Transform + - uid: 21089 + components: + - pos: 38.5,-17.5 + parent: 1 + type: Transform + - uid: 21090 + components: + - pos: 37.5,-17.5 + parent: 1 + type: Transform + - uid: 21091 + components: + - pos: 37.5,-18.5 + parent: 1 + type: Transform + - uid: 21092 + components: + - pos: 37.5,-19.5 + parent: 1 + type: Transform + - uid: 21093 + components: + - pos: 37.5,-20.5 + parent: 1 + type: Transform + - uid: 21094 + components: + - pos: 37.5,-21.5 + parent: 1 + type: Transform + - uid: 21095 + components: + - pos: 38.5,-21.5 + parent: 1 + type: Transform + - uid: 21096 + components: + - pos: 39.5,-21.5 + parent: 1 + type: Transform + - uid: 21097 + components: + - pos: 39.5,-22.5 + parent: 1 + type: Transform + - uid: 21098 + components: + - pos: 39.5,-23.5 + parent: 1 + type: Transform + - uid: 21099 + components: + - pos: 40.5,-21.5 + parent: 1 + type: Transform + - uid: 21100 + components: + - pos: 40.5,-20.5 + parent: 1 + type: Transform + - uid: 21101 + components: + - pos: 40.5,-19.5 + parent: 1 + type: Transform + - uid: 21102 + components: + - pos: 41.5,-19.5 + parent: 1 + type: Transform + - uid: 21103 + components: + - pos: 41.5,-18.5 + parent: 1 + type: Transform + - uid: 21104 + components: + - pos: 42.5,-18.5 + parent: 1 + type: Transform + - uid: 21105 + components: + - pos: 42.5,-17.5 + parent: 1 + type: Transform + - uid: 21106 + components: + - pos: 43.5,-17.5 + parent: 1 + type: Transform + - uid: 21107 + components: + - pos: 43.5,-16.5 + parent: 1 + type: Transform + - uid: 21108 + components: + - pos: 44.5,-16.5 + parent: 1 + type: Transform + - uid: 21109 + components: + - pos: 44.5,-15.5 + parent: 1 + type: Transform + - uid: 21110 + components: + - pos: 45.5,-15.5 + parent: 1 + type: Transform + - uid: 21112 + components: + - pos: 46.5,-14.5 + parent: 1 + type: Transform + - uid: 21113 + components: + - pos: 46.5,-13.5 + parent: 1 + type: Transform + - uid: 21114 + components: + - pos: 47.5,-13.5 + parent: 1 + type: Transform + - uid: 21115 + components: + - pos: 47.5,-12.5 + parent: 1 + type: Transform + - uid: 21116 + components: + - pos: 48.5,-12.5 + parent: 1 + type: Transform + - uid: 21117 + components: + - pos: 48.5,-11.5 + parent: 1 + type: Transform + - uid: 21118 + components: + - pos: 49.5,-11.5 + parent: 1 + type: Transform + - uid: 21119 + components: + - pos: 49.5,-10.5 + parent: 1 + type: Transform + - uid: 21120 + components: + - pos: 50.5,-10.5 + parent: 1 + type: Transform + - uid: 21121 + components: + - pos: 50.5,-9.5 + parent: 1 + type: Transform + - uid: 21122 + components: + - pos: 50.5,-8.5 + parent: 1 + type: Transform + - uid: 21123 + components: + - pos: 50.5,-7.5 + parent: 1 + type: Transform + - uid: 21124 + components: + - pos: 50.5,-6.5 + parent: 1 + type: Transform + - uid: 21125 + components: + - pos: 50.5,-5.5 + parent: 1 + type: Transform + - uid: 21126 + components: + - pos: 50.5,-4.5 + parent: 1 + type: Transform + - uid: 21127 + components: + - pos: 50.5,-3.5 + parent: 1 + type: Transform + - uid: 21128 + components: + - pos: 50.5,-2.5 + parent: 1 + type: Transform + - uid: 21129 + components: + - pos: 50.5,-1.5 + parent: 1 + type: Transform + - uid: 21130 + components: + - pos: 50.5,-0.5 + parent: 1 + type: Transform + - uid: 21218 + components: + - pos: 40.5,-9.5 + parent: 1 + type: Transform + - uid: 21219 + components: + - pos: 40.5,-10.5 + parent: 1 + type: Transform + - uid: 21220 + components: + - pos: 40.5,-11.5 + parent: 1 + type: Transform + - uid: 21221 + components: + - pos: 40.5,-12.5 + parent: 1 + type: Transform + - uid: 21222 + components: + - pos: 40.5,-13.5 + parent: 1 + type: Transform + - uid: 21223 + components: + - pos: 39.5,-13.5 + parent: 1 + type: Transform + - uid: 21224 + components: + - pos: 38.5,-13.5 + parent: 1 + type: Transform + - uid: 21225 + components: + - pos: 39.5,-10.5 + parent: 1 + type: Transform + - uid: 21226 + components: + - pos: 38.5,-10.5 + parent: 1 + type: Transform + - uid: 21227 + components: + - pos: 38.5,-9.5 + parent: 1 + type: Transform + - uid: 21228 + components: + - pos: 38.5,-8.5 + parent: 1 + type: Transform + - uid: 21229 + components: + - pos: 38.5,-7.5 + parent: 1 + type: Transform + - uid: 21230 + components: + - pos: 41.5,-10.5 + parent: 1 + type: Transform + - uid: 21231 + components: + - pos: 42.5,-10.5 + parent: 1 + type: Transform + - uid: 21232 + components: + - pos: 43.5,-10.5 + parent: 1 + type: Transform + - uid: 21233 + components: + - pos: 44.5,-10.5 + parent: 1 + type: Transform + - uid: 21234 + components: + - pos: 44.5,-9.5 + parent: 1 + type: Transform + - uid: 21235 + components: + - pos: 44.5,-8.5 + parent: 1 + type: Transform + - uid: 21236 + components: + - pos: 44.5,-7.5 + parent: 1 + type: Transform + - uid: 21237 + components: + - pos: 44.5,-6.5 + parent: 1 + type: Transform + - uid: 21238 + components: + - pos: 44.5,-5.5 + parent: 1 + type: Transform + - uid: 21239 + components: + - pos: 44.5,-4.5 + parent: 1 + type: Transform + - uid: 21240 + components: + - pos: 44.5,-3.5 + parent: 1 + type: Transform + - uid: 21241 + components: + - pos: 44.5,-2.5 + parent: 1 + type: Transform + - uid: 21242 + components: + - pos: 44.5,-1.5 + parent: 1 + type: Transform + - uid: 21243 + components: + - pos: 44.5,-0.5 + parent: 1 + type: Transform + - uid: 21244 + components: + - pos: 43.5,-0.5 + parent: 1 + type: Transform + - uid: 21245 + components: + - pos: 42.5,-0.5 + parent: 1 + type: Transform + - uid: 21246 + components: + - pos: 45.5,-0.5 + parent: 1 + type: Transform + - uid: 21247 + components: + - pos: 46.5,-0.5 + parent: 1 + type: Transform + - uid: 21248 + components: + - pos: 30.5,-6.5 + parent: 1 + type: Transform + - uid: 21249 + components: + - pos: 31.5,-6.5 + parent: 1 + type: Transform + - uid: 21250 + components: + - pos: 32.5,-6.5 + parent: 1 + type: Transform + - uid: 21251 + components: + - pos: 33.5,-6.5 + parent: 1 + type: Transform + - uid: 21252 + components: + - pos: 33.5,-7.5 + parent: 1 + type: Transform + - uid: 21253 + components: + - pos: 33.5,-8.5 + parent: 1 + type: Transform + - uid: 21254 + components: + - pos: 33.5,-9.5 + parent: 1 + type: Transform + - uid: 21255 + components: + - pos: 33.5,-10.5 + parent: 1 + type: Transform + - uid: 21256 + components: + - pos: 33.5,-11.5 + parent: 1 + type: Transform + - uid: 21257 + components: + - pos: 34.5,-11.5 + parent: 1 + type: Transform + - uid: 21258 + components: + - pos: 34.5,-12.5 + parent: 1 + type: Transform + - uid: 21259 + components: + - pos: 34.5,-13.5 + parent: 1 + type: Transform + - uid: 21260 + components: + - pos: 34.5,-14.5 + parent: 1 + type: Transform + - uid: 21261 + components: + - pos: 34.5,-15.5 + parent: 1 + type: Transform + - uid: 21262 + components: + - pos: 33.5,-15.5 + parent: 1 + type: Transform + - uid: 21263 + components: + - pos: 32.5,-15.5 + parent: 1 + type: Transform + - uid: 21264 + components: + - pos: 32.5,-14.5 + parent: 1 + type: Transform + - uid: 21265 + components: + - pos: 29.5,-6.5 + parent: 1 + type: Transform + - uid: 21266 + components: + - pos: 28.5,-6.5 + parent: 1 + type: Transform + - uid: 21267 + components: + - pos: 27.5,-6.5 + parent: 1 + type: Transform + - uid: 21268 + components: + - pos: 26.5,-6.5 + parent: 1 + type: Transform + - uid: 21269 + components: + - pos: 25.5,-6.5 + parent: 1 + type: Transform + - uid: 21270 + components: + - pos: 24.5,-6.5 + parent: 1 + type: Transform + - uid: 21271 + components: + - pos: 23.5,-6.5 + parent: 1 + type: Transform + - uid: 21272 + components: + - pos: 23.5,-7.5 + parent: 1 + type: Transform + - uid: 21273 + components: + - pos: 23.5,-8.5 + parent: 1 + type: Transform + - uid: 21274 + components: + - pos: 23.5,-9.5 + parent: 1 + type: Transform + - uid: 21275 + components: + - pos: 23.5,-10.5 + parent: 1 + type: Transform + - uid: 21276 + components: + - pos: 24.5,-10.5 + parent: 1 + type: Transform + - uid: 21277 + components: + - pos: 25.5,-10.5 + parent: 1 + type: Transform + - uid: 21278 + components: + - pos: 26.5,-10.5 + parent: 1 + type: Transform + - uid: 21279 + components: + - pos: 27.5,-10.5 + parent: 1 + type: Transform + - uid: 21280 + components: + - pos: 28.5,-10.5 + parent: 1 + type: Transform + - uid: 21281 + components: + - pos: 28.5,-9.5 + parent: 1 + type: Transform + - uid: 21282 + components: + - pos: 28.5,-8.5 + parent: 1 + type: Transform + - uid: 21283 + components: + - pos: 28.5,-7.5 + parent: 1 + type: Transform + - uid: 21284 + components: + - pos: 25.5,-11.5 + parent: 1 + type: Transform + - uid: 21285 + components: + - pos: 25.5,-12.5 + parent: 1 + type: Transform + - uid: 21286 + components: + - pos: 25.5,-13.5 + parent: 1 + type: Transform + - uid: 21287 + components: + - pos: 27.5,-16.5 + parent: 1 + type: Transform + - uid: 21288 + components: + - pos: 27.5,-15.5 + parent: 1 + type: Transform + - uid: 21289 + components: + - pos: 27.5,-14.5 + parent: 1 + type: Transform + - uid: 21290 + components: + - pos: 27.5,-13.5 + parent: 1 + type: Transform + - uid: 21291 + components: + - pos: 26.5,-13.5 + parent: 1 + type: Transform + - uid: 21292 + components: + - pos: 22.5,-14.5 + parent: 1 + type: Transform + - uid: 21293 + components: + - pos: 22.5,-15.5 + parent: 1 + type: Transform + - uid: 21294 + components: + - pos: 22.5,-16.5 + parent: 1 + type: Transform + - uid: 21295 + components: + - pos: 22.5,-17.5 + parent: 1 + type: Transform + - uid: 21296 + components: + - pos: 22.5,-18.5 + parent: 1 + type: Transform + - uid: 21297 + components: + - pos: 22.5,-19.5 + parent: 1 + type: Transform + - uid: 21298 + components: + - pos: 36.5,-21.5 + parent: 1 + type: Transform + - uid: 21299 + components: + - pos: 35.5,-21.5 + parent: 1 + type: Transform + - uid: 21300 + components: + - pos: 34.5,-21.5 + parent: 1 + type: Transform + - uid: 21301 + components: + - pos: 33.5,-21.5 + parent: 1 + type: Transform + - uid: 21302 + components: + - pos: 32.5,-21.5 + parent: 1 + type: Transform + - uid: 21303 + components: + - pos: 31.5,-21.5 + parent: 1 + type: Transform + - uid: 21304 + components: + - pos: 30.5,-21.5 + parent: 1 + type: Transform + - uid: 21305 + components: + - pos: 29.5,-21.5 + parent: 1 + type: Transform + - uid: 21306 + components: + - pos: 28.5,-21.5 + parent: 1 + type: Transform + - uid: 21307 + components: + - pos: 27.5,-21.5 + parent: 1 + type: Transform + - uid: 21308 + components: + - pos: 26.5,-21.5 + parent: 1 + type: Transform + - uid: 21309 + components: + - pos: 25.5,-21.5 + parent: 1 + type: Transform + - uid: 21310 + components: + - pos: 24.5,-21.5 + parent: 1 + type: Transform + - uid: 21311 + components: + - pos: 23.5,-21.5 + parent: 1 + type: Transform + - uid: 21312 + components: + - pos: 22.5,-21.5 + parent: 1 + type: Transform + - uid: 21313 + components: + - pos: 21.5,-21.5 + parent: 1 + type: Transform + - uid: 21314 + components: + - pos: 20.5,-21.5 + parent: 1 + type: Transform + - uid: 21315 + components: + - pos: 19.5,-21.5 + parent: 1 + type: Transform + - uid: 21316 + components: + - pos: 18.5,-21.5 + parent: 1 + type: Transform + - uid: 21317 + components: + - pos: 17.5,-21.5 + parent: 1 + type: Transform + - uid: 21318 + components: + - pos: 16.5,-21.5 + parent: 1 + type: Transform + - uid: 21319 + components: + - pos: 16.5,-20.5 + parent: 1 + type: Transform + - uid: 21320 + components: + - pos: 22.5,-20.5 + parent: 1 + type: Transform + - uid: 21321 + components: + - pos: 20.5,-16.5 + parent: 1 + type: Transform + - uid: 21322 + components: + - pos: 19.5,-16.5 + parent: 1 + type: Transform + - uid: 21323 + components: + - pos: 18.5,-16.5 + parent: 1 + type: Transform + - uid: 21324 + components: + - pos: 17.5,-16.5 + parent: 1 + type: Transform + - uid: 21325 + components: + - pos: 16.5,-16.5 + parent: 1 + type: Transform + - uid: 21326 + components: + - pos: 16.5,-17.5 + parent: 1 + type: Transform + - uid: 21327 + components: + - pos: 17.5,-17.5 + parent: 1 + type: Transform + - uid: 21328 + components: + - pos: 18.5,-17.5 + parent: 1 + type: Transform + - uid: 21329 + components: + - pos: 14.5,-21.5 + parent: 1 + type: Transform + - uid: 21330 + components: + - pos: 13.5,-21.5 + parent: 1 + type: Transform + - uid: 21331 + components: + - pos: 12.5,-21.5 + parent: 1 + type: Transform + - uid: 21332 + components: + - pos: 12.5,-20.5 + parent: 1 + type: Transform + - uid: 21333 + components: + - pos: 12.5,-19.5 + parent: 1 + type: Transform + - uid: 21334 + components: + - pos: 12.5,-18.5 + parent: 1 + type: Transform + - uid: 21335 + components: + - pos: 12.5,-17.5 + parent: 1 + type: Transform + - uid: 21336 + components: + - pos: 12.5,-16.5 + parent: 1 + type: Transform + - uid: 21337 + components: + - pos: 12.5,-15.5 + parent: 1 + type: Transform + - uid: 21338 + components: + - pos: 12.5,-14.5 + parent: 1 + type: Transform + - uid: 21339 + components: + - pos: 12.5,-13.5 + parent: 1 + type: Transform + - uid: 21340 + components: + - pos: 12.5,-12.5 + parent: 1 + type: Transform + - uid: 21341 + components: + - pos: 12.5,-11.5 + parent: 1 + type: Transform + - uid: 21342 + components: + - pos: 12.5,-10.5 + parent: 1 + type: Transform + - uid: 21343 + components: + - pos: 12.5,-9.5 + parent: 1 + type: Transform + - uid: 21344 + components: + - pos: 12.5,-8.5 + parent: 1 + type: Transform + - uid: 21345 + components: + - pos: 12.5,-7.5 + parent: 1 + type: Transform + - uid: 21346 + components: + - pos: 12.5,-6.5 + parent: 1 + type: Transform + - uid: 21347 + components: + - pos: 12.5,-5.5 + parent: 1 + type: Transform + - uid: 21348 + components: + - pos: 12.5,-4.5 + parent: 1 + type: Transform + - uid: 21349 + components: + - pos: 12.5,-3.5 + parent: 1 + type: Transform + - uid: 21350 + components: + - pos: 12.5,-2.5 + parent: 1 + type: Transform + - uid: 21351 + components: + - pos: 12.5,-1.5 + parent: 1 + type: Transform + - uid: 21352 + components: + - pos: 12.5,-0.5 + parent: 1 + type: Transform + - uid: 21353 + components: + - pos: 12.5,0.5 + parent: 1 + type: Transform + - uid: 21354 + components: + - pos: 12.5,1.5 + parent: 1 + type: Transform + - uid: 21355 + components: + - pos: 12.5,2.5 + parent: 1 + type: Transform + - uid: 21356 + components: + - pos: 12.5,3.5 + parent: 1 + type: Transform + - uid: 21357 + components: + - pos: 12.5,4.5 + parent: 1 + type: Transform + - uid: 21358 + components: + - pos: 12.5,5.5 + parent: 1 + type: Transform + - uid: 21359 + components: + - pos: 12.5,6.5 + parent: 1 + type: Transform + - uid: 21360 + components: + - pos: 12.5,7.5 + parent: 1 + type: Transform + - uid: 21361 + components: + - pos: 11.5,7.5 + parent: 1 + type: Transform + - uid: 21362 + components: + - pos: 10.5,7.5 + parent: 1 + type: Transform + - uid: 21363 + components: + - pos: 13.5,7.5 + parent: 1 + type: Transform + - uid: 21364 + components: + - pos: 13.5,-3.5 + parent: 1 + type: Transform + - uid: 21365 + components: + - pos: 14.5,-3.5 + parent: 1 + type: Transform + - uid: 21366 + components: + - pos: 15.5,-3.5 + parent: 1 + type: Transform + - uid: 21367 + components: + - pos: 16.5,-3.5 + parent: 1 + type: Transform + - uid: 21368 + components: + - pos: 17.5,-3.5 + parent: 1 + type: Transform + - uid: 21369 + components: + - pos: 18.5,-3.5 + parent: 1 + type: Transform + - uid: 21370 + components: + - pos: 19.5,-3.5 + parent: 1 + type: Transform + - uid: 21371 + components: + - pos: 20.5,-3.5 + parent: 1 + type: Transform + - uid: 21372 + components: + - pos: 21.5,-3.5 + parent: 1 + type: Transform + - uid: 21373 + components: + - pos: 22.5,-3.5 + parent: 1 + type: Transform + - uid: 21374 + components: + - pos: 23.5,-3.5 + parent: 1 + type: Transform + - uid: 21375 + components: + - pos: 24.5,-3.5 + parent: 1 + type: Transform + - uid: 21376 + components: + - pos: 25.5,-3.5 + parent: 1 + type: Transform + - uid: 21377 + components: + - pos: 26.5,-3.5 + parent: 1 + type: Transform + - uid: 21378 + components: + - pos: 27.5,-3.5 + parent: 1 + type: Transform + - uid: 21379 + components: + - pos: 28.5,-3.5 + parent: 1 + type: Transform + - uid: 21380 + components: + - pos: 29.5,-3.5 + parent: 1 + type: Transform + - uid: 21381 + components: + - pos: 30.5,-3.5 + parent: 1 + type: Transform + - uid: 21382 + components: + - pos: 31.5,-3.5 + parent: 1 + type: Transform + - uid: 21383 + components: + - pos: 32.5,-3.5 + parent: 1 + type: Transform + - uid: 21384 + components: + - pos: 33.5,-3.5 + parent: 1 + type: Transform + - uid: 21385 + components: + - pos: 34.5,-3.5 + parent: 1 + type: Transform + - uid: 21386 + components: + - pos: 35.5,-3.5 + parent: 1 + type: Transform + - uid: 21387 + components: + - pos: 36.5,-3.5 + parent: 1 + type: Transform + - uid: 21388 + components: + - pos: 37.5,-3.5 + parent: 1 + type: Transform + - uid: 21389 + components: + - pos: 38.5,-3.5 + parent: 1 + type: Transform + - uid: 21390 + components: + - pos: 38.5,-2.5 + parent: 1 + type: Transform + - uid: 21391 + components: + - pos: 38.5,-1.5 + parent: 1 + type: Transform + - uid: 21392 + components: + - pos: 38.5,-0.5 + parent: 1 + type: Transform + - uid: 21403 + components: + - pos: 13.5,3.5 + parent: 1 + type: Transform + - uid: 21404 + components: + - pos: 14.5,3.5 + parent: 1 + type: Transform + - uid: 21405 + components: + - pos: 15.5,3.5 + parent: 1 + type: Transform + - uid: 21406 + components: + - pos: 15.5,4.5 + parent: 1 + type: Transform + - uid: 21407 + components: + - pos: 29.5,5.5 + parent: 1 + type: Transform + - uid: 21408 + components: + - pos: 29.5,6.5 + parent: 1 + type: Transform + - uid: 21409 + components: + - pos: 30.5,6.5 + parent: 1 + type: Transform + - uid: 21410 + components: + - pos: 31.5,6.5 + parent: 1 + type: Transform + - uid: 21411 + components: + - pos: 32.5,6.5 + parent: 1 + type: Transform + - uid: 21412 + components: + - pos: 33.5,6.5 + parent: 1 + type: Transform + - uid: 21413 + components: + - pos: 34.5,6.5 + parent: 1 + type: Transform + - uid: 21414 + components: + - pos: 35.5,6.5 + parent: 1 + type: Transform + - uid: 21415 + components: + - pos: 29.5,4.5 + parent: 1 + type: Transform + - uid: 21416 + components: + - pos: 29.5,3.5 + parent: 1 + type: Transform + - uid: 21417 + components: + - pos: 29.5,2.5 + parent: 1 + type: Transform + - uid: 21418 + components: + - pos: 29.5,1.5 + parent: 1 + type: Transform + - uid: 21419 + components: + - pos: 28.5,1.5 + parent: 1 + type: Transform + - uid: 21420 + components: + - pos: 27.5,1.5 + parent: 1 + type: Transform + - uid: 21421 + components: + - pos: 26.5,1.5 + parent: 1 + type: Transform + - uid: 21422 + components: + - pos: 30.5,3.5 + parent: 1 + type: Transform + - uid: 21423 + components: + - pos: 31.5,3.5 + parent: 1 + type: Transform + - uid: 21424 + components: + - pos: 32.5,3.5 + parent: 1 + type: Transform + - uid: 21425 + components: + - pos: 33.5,3.5 + parent: 1 + type: Transform + - uid: 21426 + components: + - pos: 34.5,3.5 + parent: 1 + type: Transform + - uid: 21427 + components: + - pos: 34.5,2.5 + parent: 1 + type: Transform + - uid: 21428 + components: + - pos: 34.5,1.5 + parent: 1 + type: Transform + - uid: 21430 + components: + - pos: 20.5,-12.5 + parent: 1 + type: Transform + - uid: 21431 + components: + - pos: 19.5,-12.5 + parent: 1 + type: Transform + - uid: 21432 + components: + - pos: 18.5,-12.5 + parent: 1 + type: Transform + - uid: 21433 + components: + - pos: 17.5,-12.5 + parent: 1 + type: Transform + - uid: 21434 + components: + - pos: 16.5,-12.5 + parent: 1 + type: Transform + - uid: 21435 + components: + - pos: 18.5,-11.5 + parent: 1 + type: Transform + - uid: 21436 + components: + - pos: 18.5,-10.5 + parent: 1 + type: Transform + - uid: 21437 + components: + - pos: 18.5,-9.5 + parent: 1 + type: Transform + - uid: 21438 + components: + - pos: 18.5,-8.5 + parent: 1 + type: Transform + - uid: 21439 + components: + - pos: 18.5,-7.5 + parent: 1 + type: Transform + - uid: 21440 + components: + - pos: 19.5,-7.5 + parent: 1 + type: Transform + - uid: 21441 + components: + - pos: 17.5,-7.5 + parent: 1 + type: Transform + - uid: 21464 + components: + - pos: 36.5,52.5 + parent: 1 + type: Transform + - uid: 21528 + components: + - pos: -58.5,-16.5 + parent: 1 + type: Transform + - uid: 21582 + components: + - pos: -1.5,-11.5 + parent: 1 + type: Transform + - uid: 21589 + components: + - pos: -54.5,-29.5 + parent: 1 + type: Transform + - uid: 21824 + components: + - pos: 34.5,20.5 + parent: 1 + type: Transform + - uid: 21825 + components: + - pos: 33.5,20.5 + parent: 1 + type: Transform + - uid: 21826 + components: + - pos: 32.5,20.5 + parent: 1 + type: Transform + - uid: 21827 + components: + - pos: 32.5,21.5 + parent: 1 + type: Transform + - uid: 21828 + components: + - pos: 32.5,22.5 + parent: 1 + type: Transform + - uid: 21829 + components: + - pos: 32.5,23.5 + parent: 1 + type: Transform + - uid: 21830 + components: + - pos: 32.5,19.5 + parent: 1 + type: Transform + - uid: 21831 + components: + - pos: 32.5,18.5 + parent: 1 + type: Transform + - uid: 21960 + components: + - pos: 32.5,17.5 + parent: 1 + type: Transform + - uid: 21961 + components: + - pos: 32.5,16.5 + parent: 1 + type: Transform + - uid: 21984 + components: + - pos: 32.5,15.5 + parent: 1 + type: Transform + - uid: 22027 + components: + - pos: 35.5,20.5 + parent: 1 + type: Transform + - uid: 22029 + components: + - pos: 36.5,20.5 + parent: 1 + type: Transform + - uid: 22035 + components: + - pos: 37.5,20.5 + parent: 1 + type: Transform + - uid: 22037 + components: + - pos: 37.5,19.5 + parent: 1 + type: Transform + - uid: 22040 + components: + - pos: 37.5,18.5 + parent: 1 + type: Transform + - uid: 22041 + components: + - pos: 37.5,17.5 + parent: 1 + type: Transform + - uid: 22042 + components: + - pos: 37.5,16.5 + parent: 1 + type: Transform + - uid: 22043 + components: + - pos: 37.5,15.5 + parent: 1 + type: Transform + - uid: 22044 + components: + - pos: 37.5,21.5 + parent: 1 + type: Transform + - uid: 22045 + components: + - pos: 37.5,22.5 + parent: 1 + type: Transform + - uid: 22047 + components: + - pos: 37.5,23.5 + parent: 1 + type: Transform + - uid: 22048 + components: + - pos: 36.5,23.5 + parent: 1 + type: Transform + - uid: 22049 + components: + - pos: 38.5,21.5 + parent: 1 + type: Transform + - uid: 22050 + components: + - pos: 39.5,21.5 + parent: 1 + type: Transform + - uid: 22051 + components: + - pos: 40.5,21.5 + parent: 1 + type: Transform + - uid: 22052 + components: + - pos: 41.5,21.5 + parent: 1 + type: Transform + - uid: 22053 + components: + - pos: 42.5,21.5 + parent: 1 + type: Transform + - uid: 22054 + components: + - pos: 42.5,20.5 + parent: 1 + type: Transform + - uid: 22060 + components: + - pos: -1.5,-15.5 + parent: 1 + type: Transform + - uid: 22064 + components: + - pos: 42.5,19.5 + parent: 1 + type: Transform + - uid: 22085 + components: + - pos: -1.5,-9.5 + parent: 1 + type: Transform + - uid: 22086 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 22122 + components: + - pos: 42.5,18.5 + parent: 1 + type: Transform + - uid: 22123 + components: + - pos: 42.5,17.5 + parent: 1 + type: Transform + - uid: 22124 + components: + - pos: 42.5,16.5 + parent: 1 + type: Transform + - uid: 22125 + components: + - pos: 42.5,15.5 + parent: 1 + type: Transform + - uid: 22126 + components: + - pos: 43.5,18.5 + parent: 1 + type: Transform + - uid: 22127 + components: + - pos: 24.5,17.5 + parent: 1 + type: Transform + - uid: 22135 + components: + - pos: 25.5,17.5 + parent: 1 + type: Transform + - uid: 22136 + components: + - pos: 26.5,17.5 + parent: 1 + type: Transform + - uid: 22137 + components: + - pos: 27.5,17.5 + parent: 1 + type: Transform + - uid: 22138 + components: + - pos: 28.5,17.5 + parent: 1 + type: Transform + - uid: 22139 + components: + - pos: 29.5,17.5 + parent: 1 + type: Transform + - uid: 22140 + components: + - pos: 30.5,17.5 + parent: 1 + type: Transform + - uid: 22144 + components: + - pos: 31.5,17.5 + parent: 1 + type: Transform + - uid: 22145 + components: + - pos: 23.5,17.5 + parent: 1 + type: Transform + - uid: 22146 + components: + - pos: 22.5,17.5 + parent: 1 + type: Transform + - uid: 22147 + components: + - pos: 21.5,17.5 + parent: 1 + type: Transform + - uid: 22148 + components: + - pos: 20.5,17.5 + parent: 1 + type: Transform + - uid: 22154 + components: + - pos: 20.5,14.5 + parent: 1 + type: Transform + - uid: 22155 + components: + - pos: 21.5,14.5 + parent: 1 + type: Transform + - uid: 22222 + components: + - pos: -1.5,-12.5 + parent: 1 + type: Transform + - uid: 22233 + components: + - pos: -1.5,-13.5 + parent: 1 + type: Transform + - uid: 22310 + components: + - pos: 1.5,44.5 + parent: 1 + type: Transform + - uid: 22311 + components: + - pos: 2.5,44.5 + parent: 1 + type: Transform + - uid: 22312 + components: + - pos: 3.5,44.5 + parent: 1 + type: Transform + - uid: 22313 + components: + - pos: 4.5,44.5 + parent: 1 + type: Transform + - uid: 22314 + components: + - pos: 5.5,44.5 + parent: 1 + type: Transform + - uid: 22315 + components: + - pos: 5.5,45.5 + parent: 1 + type: Transform + - uid: 22316 + components: + - pos: 5.5,46.5 + parent: 1 + type: Transform + - uid: 22317 + components: + - pos: 5.5,43.5 + parent: 1 + type: Transform + - uid: 22421 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 22519 + components: + - pos: 22.5,14.5 + parent: 1 + type: Transform + - uid: 22784 + components: + - pos: 23.5,14.5 + parent: 1 + type: Transform + - uid: 22785 + components: + - pos: 24.5,14.5 + parent: 1 + type: Transform + - uid: 22786 + components: + - pos: 25.5,14.5 + parent: 1 + type: Transform + - uid: 22787 + components: + - pos: 26.5,14.5 + parent: 1 + type: Transform + - uid: 22794 + components: + - pos: 27.5,14.5 + parent: 1 + type: Transform + - uid: 22795 + components: + - pos: 27.5,15.5 + parent: 1 + type: Transform + - uid: 22817 + components: + - pos: -63.5,12.5 + parent: 1 + type: Transform + - uid: 22839 + components: + - pos: -63.5,-6.5 + parent: 1 + type: Transform + - uid: 22840 + components: + - pos: -63.5,-5.5 + parent: 1 + type: Transform + - uid: 22841 + components: + - pos: -63.5,-4.5 + parent: 1 + type: Transform + - uid: 22905 + components: + - pos: 27.5,16.5 + parent: 1 + type: Transform + - uid: 22906 + components: + - pos: 28.5,18.5 + parent: 1 + type: Transform + - uid: 22907 + components: + - pos: 28.5,19.5 + parent: 1 + type: Transform + - uid: 22908 + components: + - pos: 28.5,20.5 + parent: 1 + type: Transform + - uid: 22918 + components: + - pos: 28.5,21.5 + parent: 1 + type: Transform + - uid: 23517 + components: + - pos: -10.5,19.5 + parent: 1 + type: Transform + - uid: 23518 + components: + - pos: -9.5,19.5 + parent: 1 + type: Transform + - uid: 23519 + components: + - pos: -9.5,18.5 + parent: 1 + type: Transform + - uid: 23544 + components: + - pos: 33.5,0.5 + parent: 1 + type: Transform + - uid: 23766 + components: + - pos: 0.5,53.5 + parent: 1 + type: Transform + - uid: 23767 + components: + - pos: 0.5,52.5 + parent: 1 + type: Transform + - uid: 23772 + components: + - pos: 28.5,22.5 + parent: 1 + type: Transform + - uid: 23802 + components: + - pos: 27.5,22.5 + parent: 1 + type: Transform + - uid: 23812 + components: + - pos: 58.5,14.5 + parent: 1 + type: Transform + - uid: 23813 + components: + - pos: 57.5,14.5 + parent: 1 + type: Transform + - uid: 23814 + components: + - pos: 56.5,14.5 + parent: 1 + type: Transform + - uid: 23815 + components: + - pos: 56.5,15.5 + parent: 1 + type: Transform + - uid: 23816 + components: + - pos: 56.5,16.5 + parent: 1 + type: Transform + - uid: 23817 + components: + - pos: 56.5,17.5 + parent: 1 + type: Transform + - uid: 23818 + components: + - pos: 56.5,18.5 + parent: 1 + type: Transform + - uid: 23819 + components: + - pos: 56.5,19.5 + parent: 1 + type: Transform + - uid: 23820 + components: + - pos: 56.5,20.5 + parent: 1 + type: Transform + - uid: 23821 + components: + - pos: 56.5,21.5 + parent: 1 + type: Transform + - uid: 23822 + components: + - pos: 56.5,22.5 + parent: 1 + type: Transform + - uid: 23834 + components: + - pos: 94.5,9.5 + parent: 1 + type: Transform + - uid: 23851 + components: + - pos: 104.5,16.5 + parent: 1 + type: Transform + - uid: 23852 + components: + - pos: 102.5,-9.5 + parent: 1 + type: Transform + - uid: 23854 + components: + - pos: 52.5,-15.5 + parent: 1 + type: Transform + - uid: 23855 + components: + - pos: 52.5,-16.5 + parent: 1 + type: Transform + - uid: 23856 + components: + - pos: 52.5,-17.5 + parent: 1 + type: Transform + - uid: 23859 + components: + - pos: -14.5,-31.5 + parent: 1 + type: Transform + - uid: 23861 + components: + - pos: -38.5,-6.5 + parent: 1 + type: Transform + - uid: 23862 + components: + - pos: -37.5,-6.5 + parent: 1 + type: Transform + - uid: 23864 + components: + - pos: -40.5,14.5 + parent: 1 + type: Transform + - uid: 23865 + components: + - pos: -39.5,14.5 + parent: 1 + type: Transform + - uid: 23866 + components: + - pos: -38.5,14.5 + parent: 1 + type: Transform + - uid: 23910 + components: + - pos: 98.5,1.5 + parent: 1 + type: Transform + - uid: 23922 + components: + - pos: 64.5,25.5 + parent: 1 + type: Transform + - uid: 23924 + components: + - pos: 26.5,22.5 + parent: 1 + type: Transform + - uid: 23931 + components: + - pos: 25.5,22.5 + parent: 1 + type: Transform + - uid: 23947 + components: + - pos: 24.5,22.5 + parent: 1 + type: Transform + - uid: 23950 + components: + - pos: 23.5,22.5 + parent: 1 + type: Transform + - uid: 23966 + components: + - pos: 64.5,21.5 + parent: 1 + type: Transform + - uid: 23967 + components: + - pos: 64.5,20.5 + parent: 1 + type: Transform + - uid: 23968 + components: + - pos: -38.5,31.5 + parent: 1 + type: Transform + - uid: 23969 + components: + - pos: -39.5,31.5 + parent: 1 + type: Transform + - uid: 23970 + components: + - pos: -39.5,32.5 + parent: 1 + type: Transform + - uid: 23971 + components: + - pos: -39.5,33.5 + parent: 1 + type: Transform + - uid: 24015 + components: + - pos: 5.5,-40.5 + parent: 1 + type: Transform + - uid: 24016 + components: + - pos: 4.5,-40.5 + parent: 1 + type: Transform + - uid: 24017 + components: + - pos: 4.5,-41.5 + parent: 1 + type: Transform + - uid: 24018 + components: + - pos: 4.5,-42.5 + parent: 1 + type: Transform + - uid: 24019 + components: + - pos: 4.5,-43.5 + parent: 1 + type: Transform + - uid: 24020 + components: + - pos: 5.5,-43.5 + parent: 1 + type: Transform + - uid: 24021 + components: + - pos: 6.5,-43.5 + parent: 1 + type: Transform + - uid: 24022 + components: + - pos: 3.5,-39.5 + parent: 1 + type: Transform + - uid: 24023 + components: + - pos: 2.5,-39.5 + parent: 1 + type: Transform + - uid: 24024 + components: + - pos: 1.5,-39.5 + parent: 1 + type: Transform + - uid: 24025 + components: + - pos: 0.5,-39.5 + parent: 1 + type: Transform + - uid: 24026 + components: + - pos: 4.5,-39.5 + parent: 1 + type: Transform + - uid: 24027 + components: + - pos: 0.5,-40.5 + parent: 1 + type: Transform + - uid: 24028 + components: + - pos: 0.5,-41.5 + parent: 1 + type: Transform + - uid: 24029 + components: + - pos: -0.5,-39.5 + parent: 1 + type: Transform + - uid: 24030 + components: + - pos: -0.5,-38.5 + parent: 1 + type: Transform + - uid: 24031 + components: + - pos: -0.5,-37.5 + parent: 1 + type: Transform + - uid: 24032 + components: + - pos: -0.5,-36.5 + parent: 1 + type: Transform + - uid: 24033 + components: + - pos: -1.5,-36.5 + parent: 1 + type: Transform + - uid: 24034 + components: + - pos: -2.5,-36.5 + parent: 1 + type: Transform + - uid: 24035 + components: + - pos: -3.5,-36.5 + parent: 1 + type: Transform + - uid: 24036 + components: + - pos: -4.5,-36.5 + parent: 1 + type: Transform + - uid: 24037 + components: + - pos: -5.5,-36.5 + parent: 1 + type: Transform + - uid: 24038 + components: + - pos: -5.5,-37.5 + parent: 1 + type: Transform + - uid: 24039 + components: + - pos: -2.5,-35.5 + parent: 1 + type: Transform + - uid: 24040 + components: + - pos: -2.5,-34.5 + parent: 1 + type: Transform + - uid: 24041 + components: + - pos: -3.5,-34.5 + parent: 1 + type: Transform + - uid: 24042 + components: + - pos: -4.5,-34.5 + parent: 1 + type: Transform + - uid: 24043 + components: + - pos: -0.5,-35.5 + parent: 1 + type: Transform + - uid: 24044 + components: + - pos: 0.5,-35.5 + parent: 1 + type: Transform + - uid: 24045 + components: + - pos: 1.5,-35.5 + parent: 1 + type: Transform + - uid: 24046 + components: + - pos: 2.5,-35.5 + parent: 1 + type: Transform + - uid: 24047 + components: + - pos: -0.5,-34.5 + parent: 1 + type: Transform + - uid: 24048 + components: + - pos: -0.5,-33.5 + parent: 1 + type: Transform + - uid: 24049 + components: + - pos: 0.5,-33.5 + parent: 1 + type: Transform + - uid: 24050 + components: + - pos: 1.5,-33.5 + parent: 1 + type: Transform + - uid: 24059 + components: + - pos: 18.5,-44.5 + parent: 1 + type: Transform + - uid: 24060 + components: + - pos: 19.5,-43.5 + parent: 1 + type: Transform + - uid: 24061 + components: + - pos: 20.5,-43.5 + parent: 1 + type: Transform + - uid: 24062 + components: + - pos: 20.5,-44.5 + parent: 1 + type: Transform + - uid: 24063 + components: + - pos: 18.5,-42.5 + parent: 1 + type: Transform + - uid: 24064 + components: + - pos: 17.5,-42.5 + parent: 1 + type: Transform + - uid: 24065 + components: + - pos: 17.5,-43.5 + parent: 1 + type: Transform + - uid: 24083 + components: + - pos: 21.5,-40.5 + parent: 1 + type: Transform + - uid: 24084 + components: + - pos: 21.5,-39.5 + parent: 1 + type: Transform + - uid: 24085 + components: + - pos: 21.5,-38.5 + parent: 1 + type: Transform + - uid: 24086 + components: + - pos: 20.5,-38.5 + parent: 1 + type: Transform + - uid: 24087 + components: + - pos: 20.5,-37.5 + parent: 1 + type: Transform + - uid: 24088 + components: + - pos: 20.5,-36.5 + parent: 1 + type: Transform + - uid: 24089 + components: + - pos: 20.5,-35.5 + parent: 1 + type: Transform + - uid: 24090 + components: + - pos: 20.5,-34.5 + parent: 1 + type: Transform + - uid: 24091 + components: + - pos: 21.5,-37.5 + parent: 1 + type: Transform + - uid: 24092 + components: + - pos: 22.5,-37.5 + parent: 1 + type: Transform + - uid: 24093 + components: + - pos: 23.5,-37.5 + parent: 1 + type: Transform + - uid: 24094 + components: + - pos: 24.5,-37.5 + parent: 1 + type: Transform + - uid: 24095 + components: + - pos: 25.5,-37.5 + parent: 1 + type: Transform + - uid: 24096 + components: + - pos: 25.5,-30.5 + parent: 1 + type: Transform + - uid: 24097 + components: + - pos: 25.5,-31.5 + parent: 1 + type: Transform + - uid: 24098 + components: + - pos: 25.5,-32.5 + parent: 1 + type: Transform + - uid: 24099 + components: + - pos: 22.5,-39.5 + parent: 1 + type: Transform + - uid: 24100 + components: + - pos: 23.5,-39.5 + parent: 1 + type: Transform + - uid: 24101 + components: + - pos: 24.5,-39.5 + parent: 1 + type: Transform + - uid: 24102 + components: + - pos: 25.5,-39.5 + parent: 1 + type: Transform + - uid: 24103 + components: + - pos: 26.5,-39.5 + parent: 1 + type: Transform + - uid: 24104 + components: + - pos: 27.5,-39.5 + parent: 1 + type: Transform + - uid: 24105 + components: + - pos: 28.5,-39.5 + parent: 1 + type: Transform + - uid: 24106 + components: + - pos: 28.5,-38.5 + parent: 1 + type: Transform + - uid: 24107 + components: + - pos: 28.5,-37.5 + parent: 1 + type: Transform + - uid: 24108 + components: + - pos: 28.5,-36.5 + parent: 1 + type: Transform + - uid: 24109 + components: + - pos: 28.5,-35.5 + parent: 1 + type: Transform + - uid: 24110 + components: + - pos: 28.5,-34.5 + parent: 1 + type: Transform + - uid: 24111 + components: + - pos: 29.5,-34.5 + parent: 1 + type: Transform + - uid: 24112 + components: + - pos: 30.5,-34.5 + parent: 1 + type: Transform + - uid: 24113 + components: + - pos: 31.5,-34.5 + parent: 1 + type: Transform + - uid: 24114 + components: + - pos: 32.5,-34.5 + parent: 1 + type: Transform + - uid: 24117 + components: + - pos: 35.5,-38.5 + parent: 1 + type: Transform + - uid: 24118 + components: + - pos: 35.5,-39.5 + parent: 1 + type: Transform + - uid: 24119 + components: + - pos: 35.5,-40.5 + parent: 1 + type: Transform + - uid: 24120 + components: + - pos: 34.5,-40.5 + parent: 1 + type: Transform + - uid: 24121 + components: + - pos: 33.5,-40.5 + parent: 1 + type: Transform + - uid: 24122 + components: + - pos: 32.5,-40.5 + parent: 1 + type: Transform + - uid: 24123 + components: + - pos: 31.5,-40.5 + parent: 1 + type: Transform + - uid: 24124 + components: + - pos: 31.5,-41.5 + parent: 1 + type: Transform + - uid: 24125 + components: + - pos: 31.5,-42.5 + parent: 1 + type: Transform + - uid: 24144 + components: + - pos: 14.5,-29.5 + parent: 1 + type: Transform + - uid: 24145 + components: + - pos: 15.5,-29.5 + parent: 1 + type: Transform + - uid: 24146 + components: + - pos: 15.5,-30.5 + parent: 1 + type: Transform + - uid: 24147 + components: + - pos: 15.5,-31.5 + parent: 1 + type: Transform + - uid: 24148 + components: + - pos: 15.5,-32.5 + parent: 1 + type: Transform + - uid: 24149 + components: + - pos: 15.5,-33.5 + parent: 1 + type: Transform + - uid: 24150 + components: + - pos: 15.5,-34.5 + parent: 1 + type: Transform + - uid: 24151 + components: + - pos: 15.5,-35.5 + parent: 1 + type: Transform + - uid: 24152 + components: + - pos: 15.5,-28.5 + parent: 1 + type: Transform + - uid: 24153 + components: + - pos: 15.5,-27.5 + parent: 1 + type: Transform + - uid: 24154 + components: + - pos: 15.5,-26.5 + parent: 1 + type: Transform + - uid: 24155 + components: + - pos: 14.5,-26.5 + parent: 1 + type: Transform + - uid: 24156 + components: + - pos: 13.5,-26.5 + parent: 1 + type: Transform + - uid: 24157 + components: + - pos: 12.5,-26.5 + parent: 1 + type: Transform + - uid: 24158 + components: + - pos: 12.5,-25.5 + parent: 1 + type: Transform + - uid: 24159 + components: + - pos: 8.5,-26.5 + parent: 1 + type: Transform + - uid: 24160 + components: + - pos: 8.5,-27.5 + parent: 1 + type: Transform + - uid: 24161 + components: + - pos: 8.5,-28.5 + parent: 1 + type: Transform + - uid: 24162 + components: + - pos: 8.5,-29.5 + parent: 1 + type: Transform + - uid: 24163 + components: + - pos: 8.5,-30.5 + parent: 1 + type: Transform + - uid: 24164 + components: + - pos: 8.5,-31.5 + parent: 1 + type: Transform + - uid: 24165 + components: + - pos: 8.5,-32.5 + parent: 1 + type: Transform + - uid: 24166 + components: + - pos: 8.5,-33.5 + parent: 1 + type: Transform + - uid: 24167 + components: + - pos: 8.5,-34.5 + parent: 1 + type: Transform + - uid: 24168 + components: + - pos: 8.5,-35.5 + parent: 1 + type: Transform + - uid: 24169 + components: + - pos: 12.5,-28.5 + parent: 1 + type: Transform + - uid: 24170 + components: + - pos: 12.5,-29.5 + parent: 1 + type: Transform + - uid: 24171 + components: + - pos: 11.5,-34.5 + parent: 1 + type: Transform + - uid: 24172 + components: + - pos: 13.5,-34.5 + parent: 1 + type: Transform + - uid: 24287 + components: + - pos: 12.5,-27.5 + parent: 1 + type: Transform + - uid: 24527 + components: + - pos: -61.5,-7.5 + parent: 1 + type: Transform + - uid: 24542 + components: + - pos: -75.5,3.5 + parent: 1 + type: Transform + - uid: 24543 + components: + - pos: -75.5,4.5 + parent: 1 + type: Transform + - uid: 24544 + components: + - pos: -75.5,5.5 + parent: 1 + type: Transform + - uid: 24545 + components: + - pos: -75.5,4.5 + parent: 1 + type: Transform + - uid: 24546 + components: + - pos: -74.5,4.5 + parent: 1 + type: Transform + - uid: 24547 + components: + - pos: -73.5,4.5 + parent: 1 + type: Transform + - uid: 24548 + components: + - pos: -72.5,4.5 + parent: 1 + type: Transform + - uid: 24549 + components: + - pos: -71.5,4.5 + parent: 1 + type: Transform + - uid: 24550 + components: + - pos: -73.5,5.5 + parent: 1 + type: Transform + - uid: 24551 + components: + - pos: -71.5,3.5 + parent: 1 + type: Transform + - uid: 24552 + components: + - pos: -71.5,2.5 + parent: 1 + type: Transform + - uid: 24553 + components: + - pos: -71.5,1.5 + parent: 1 + type: Transform + - uid: 24554 + components: + - pos: -72.5,1.5 + parent: 1 + type: Transform + - uid: 24555 + components: + - pos: -73.5,1.5 + parent: 1 + type: Transform + - uid: 24556 + components: + - pos: -74.5,1.5 + parent: 1 + type: Transform + - uid: 24557 + components: + - pos: -75.5,1.5 + parent: 1 + type: Transform + - uid: 24558 + components: + - pos: -76.5,1.5 + parent: 1 + type: Transform + - uid: 24559 + components: + - pos: -77.5,1.5 + parent: 1 + type: Transform + - uid: 24616 + components: + - pos: -61.5,-11.5 + parent: 1 + type: Transform + - uid: 24617 + components: + - pos: -61.5,-9.5 + parent: 1 + type: Transform + - uid: 24626 + components: + - pos: -61.5,-10.5 + parent: 1 + type: Transform + - uid: 24627 + components: + - pos: -61.5,-8.5 + parent: 1 + type: Transform + - uid: 24640 + components: + - pos: -78.5,0.5 + parent: 1 + type: Transform + - uid: 24648 + components: + - pos: -71.5,5.5 + parent: 1 + type: Transform + - uid: 24649 + components: + - pos: -71.5,6.5 + parent: 1 + type: Transform + - uid: 24650 + components: + - pos: -71.5,7.5 + parent: 1 + type: Transform + - uid: 24651 + components: + - pos: -72.5,6.5 + parent: 1 + type: Transform + - uid: 24652 + components: + - pos: -73.5,6.5 + parent: 1 + type: Transform + - uid: 24653 + components: + - pos: -74.5,6.5 + parent: 1 + type: Transform + - uid: 24654 + components: + - pos: -75.5,6.5 + parent: 1 + type: Transform + - uid: 24655 + components: + - pos: -75.5,7.5 + parent: 1 + type: Transform + - uid: 24656 + components: + - pos: -76.5,6.5 + parent: 1 + type: Transform + - uid: 24657 + components: + - pos: -76.5,5.5 + parent: 1 + type: Transform + - uid: 24658 + components: + - pos: -76.5,4.5 + parent: 1 + type: Transform + - uid: 24659 + components: + - pos: -76.5,3.5 + parent: 1 + type: Transform + - uid: 24660 + components: + - pos: -76.5,2.5 + parent: 1 + type: Transform + - uid: 24661 + components: + - pos: -70.5,1.5 + parent: 1 + type: Transform + - uid: 24662 + components: + - pos: -70.5,0.5 + parent: 1 + type: Transform + - uid: 24663 + components: + - pos: -74.5,0.5 + parent: 1 + type: Transform + - uid: 24664 + components: + - pos: -74.5,-0.5 + parent: 1 + type: Transform + - uid: 24665 + components: + - pos: -75.5,-0.5 + parent: 1 + type: Transform + - uid: 24666 + components: + - pos: -76.5,-0.5 + parent: 1 + type: Transform + - uid: 24667 + components: + - pos: -77.5,-0.5 + parent: 1 + type: Transform + - uid: 24668 + components: + - pos: -78.5,-0.5 + parent: 1 + type: Transform + - uid: 24669 + components: + - pos: -78.5,1.5 + parent: 1 + type: Transform + - uid: 24670 + components: + - pos: -78.5,2.5 + parent: 1 + type: Transform + - uid: 24671 + components: + - pos: -78.5,3.5 + parent: 1 + type: Transform + - uid: 24672 + components: + - pos: -78.5,4.5 + parent: 1 + type: Transform + - uid: 24673 + components: + - pos: -78.5,5.5 + parent: 1 + type: Transform + - uid: 24674 + components: + - pos: -78.5,6.5 + parent: 1 + type: Transform + - uid: 24675 + components: + - pos: -78.5,7.5 + parent: 1 + type: Transform + - uid: 24676 + components: + - pos: -78.5,8.5 + parent: 1 + type: Transform + - uid: 24677 + components: + - pos: -78.5,9.5 + parent: 1 + type: Transform + - uid: 24678 + components: + - pos: -78.5,10.5 + parent: 1 + type: Transform + - uid: 24679 + components: + - pos: -78.5,11.5 + parent: 1 + type: Transform + - uid: 24680 + components: + - pos: -79.5,11.5 + parent: 1 + type: Transform + - uid: 24681 + components: + - pos: -79.5,12.5 + parent: 1 + type: Transform + - uid: 24682 + components: + - pos: -80.5,12.5 + parent: 1 + type: Transform + - uid: 24683 + components: + - pos: -80.5,13.5 + parent: 1 + type: Transform + - uid: 24684 + components: + - pos: -81.5,13.5 + parent: 1 + type: Transform + - uid: 24685 + components: + - pos: -82.5,13.5 + parent: 1 + type: Transform + - uid: 24686 + components: + - pos: -83.5,13.5 + parent: 1 + type: Transform + - uid: 24687 + components: + - pos: -92.5,13.5 + parent: 1 + type: Transform + - uid: 24688 + components: + - pos: -83.5,14.5 + parent: 1 + type: Transform + - uid: 24689 + components: + - pos: -83.5,15.5 + parent: 1 + type: Transform + - uid: 24690 + components: + - pos: -83.5,16.5 + parent: 1 + type: Transform + - uid: 24691 + components: + - pos: -83.5,17.5 + parent: 1 + type: Transform + - uid: 24692 + components: + - pos: -83.5,18.5 + parent: 1 + type: Transform + - uid: 24693 + components: + - pos: -84.5,13.5 + parent: 1 + type: Transform + - uid: 24694 + components: + - pos: -85.5,13.5 + parent: 1 + type: Transform + - uid: 24695 + components: + - pos: -86.5,13.5 + parent: 1 + type: Transform + - uid: 24696 + components: + - pos: -87.5,13.5 + parent: 1 + type: Transform + - uid: 24697 + components: + - pos: -88.5,13.5 + parent: 1 + type: Transform + - uid: 24698 + components: + - pos: -89.5,13.5 + parent: 1 + type: Transform + - uid: 24699 + components: + - pos: -90.5,13.5 + parent: 1 + type: Transform + - uid: 24700 + components: + - pos: -91.5,13.5 + parent: 1 + type: Transform + - uid: 24701 + components: + - pos: -91.5,14.5 + parent: 1 + type: Transform + - uid: 24702 + components: + - pos: -91.5,15.5 + parent: 1 + type: Transform + - uid: 24703 + components: + - pos: -91.5,16.5 + parent: 1 + type: Transform + - uid: 24704 + components: + - pos: -91.5,17.5 + parent: 1 + type: Transform + - uid: 24705 + components: + - pos: -91.5,18.5 + parent: 1 + type: Transform + - uid: 24706 + components: + - pos: -93.5,13.5 + parent: 1 + type: Transform + - uid: 24707 + components: + - pos: -94.5,13.5 + parent: 1 + type: Transform + - uid: 24708 + components: + - pos: -95.5,13.5 + parent: 1 + type: Transform + - uid: 24709 + components: + - pos: -96.5,13.5 + parent: 1 + type: Transform + - uid: 24710 + components: + - pos: -96.5,12.5 + parent: 1 + type: Transform + - uid: 24711 + components: + - pos: -96.5,11.5 + parent: 1 + type: Transform + - uid: 24712 + components: + - pos: -96.5,10.5 + parent: 1 + type: Transform + - uid: 24713 + components: + - pos: -96.5,9.5 + parent: 1 + type: Transform + - uid: 24714 + components: + - pos: -96.5,8.5 + parent: 1 + type: Transform + - uid: 24715 + components: + - pos: -97.5,8.5 + parent: 1 + type: Transform + - uid: 24716 + components: + - pos: -96.5,-0.5 + parent: 1 + type: Transform + - uid: 24717 + components: + - pos: -96.5,7.5 + parent: 1 + type: Transform + - uid: 24718 + components: + - pos: -96.5,6.5 + parent: 1 + type: Transform + - uid: 24719 + components: + - pos: -96.5,5.5 + parent: 1 + type: Transform + - uid: 24720 + components: + - pos: -96.5,4.5 + parent: 1 + type: Transform + - uid: 24721 + components: + - pos: -96.5,3.5 + parent: 1 + type: Transform + - uid: 24722 + components: + - pos: -96.5,2.5 + parent: 1 + type: Transform + - uid: 24723 + components: + - pos: -96.5,1.5 + parent: 1 + type: Transform + - uid: 24724 + components: + - pos: -96.5,0.5 + parent: 1 + type: Transform + - uid: 24725 + components: + - pos: -97.5,0.5 + parent: 1 + type: Transform + - uid: 24726 + components: + - pos: -96.5,-1.5 + parent: 1 + type: Transform + - uid: 24727 + components: + - pos: -96.5,-2.5 + parent: 1 + type: Transform + - uid: 24728 + components: + - pos: -96.5,-3.5 + parent: 1 + type: Transform + - uid: 24729 + components: + - pos: -96.5,-4.5 + parent: 1 + type: Transform + - uid: 24730 + components: + - pos: -91.5,-5.5 + parent: 1 + type: Transform + - uid: 24731 + components: + - pos: -95.5,-4.5 + parent: 1 + type: Transform + - uid: 24732 + components: + - pos: -94.5,-4.5 + parent: 1 + type: Transform + - uid: 24733 + components: + - pos: -93.5,-4.5 + parent: 1 + type: Transform + - uid: 24734 + components: + - pos: -92.5,-4.5 + parent: 1 + type: Transform + - uid: 24735 + components: + - pos: -91.5,-4.5 + parent: 1 + type: Transform + - uid: 24736 + components: + - pos: -90.5,-4.5 + parent: 1 + type: Transform + - uid: 24737 + components: + - pos: -89.5,-4.5 + parent: 1 + type: Transform + - uid: 24738 + components: + - pos: -88.5,-4.5 + parent: 1 + type: Transform + - uid: 24739 + components: + - pos: -87.5,-4.5 + parent: 1 + type: Transform + - uid: 24740 + components: + - pos: -86.5,-4.5 + parent: 1 + type: Transform + - uid: 24741 + components: + - pos: -85.5,-4.5 + parent: 1 + type: Transform + - uid: 24742 + components: + - pos: -84.5,-4.5 + parent: 1 + type: Transform + - uid: 24743 + components: + - pos: -83.5,-4.5 + parent: 1 + type: Transform + - uid: 24744 + components: + - pos: -82.5,-4.5 + parent: 1 + type: Transform + - uid: 24745 + components: + - pos: -81.5,-4.5 + parent: 1 + type: Transform + - uid: 24746 + components: + - pos: -80.5,-4.5 + parent: 1 + type: Transform + - uid: 24747 + components: + - pos: -91.5,-6.5 + parent: 1 + type: Transform + - uid: 24748 + components: + - pos: -91.5,-7.5 + parent: 1 + type: Transform + - uid: 24749 + components: + - pos: -91.5,-8.5 + parent: 1 + type: Transform + - uid: 24750 + components: + - pos: -91.5,-9.5 + parent: 1 + type: Transform + - uid: 24751 + components: + - pos: -83.5,-5.5 + parent: 1 + type: Transform + - uid: 24752 + components: + - pos: -83.5,-6.5 + parent: 1 + type: Transform + - uid: 24753 + components: + - pos: -83.5,-7.5 + parent: 1 + type: Transform + - uid: 24754 + components: + - pos: -83.5,-8.5 + parent: 1 + type: Transform + - uid: 24755 + components: + - pos: -83.5,-9.5 + parent: 1 + type: Transform + - uid: 24757 + components: + - pos: -80.5,-3.5 + parent: 1 + type: Transform + - uid: 24758 + components: + - pos: -79.5,-3.5 + parent: 1 + type: Transform + - uid: 24759 + components: + - pos: -79.5,-2.5 + parent: 1 + type: Transform + - uid: 24760 + components: + - pos: -78.5,-2.5 + parent: 1 + type: Transform + - uid: 24761 + components: + - pos: -78.5,-1.5 + parent: 1 + type: Transform + - uid: 25119 + components: + - pos: -14.5,-1.5 + parent: 1 + type: Transform + - uid: 25150 + components: + - pos: -3.5,53.5 + parent: 1 + type: Transform + - uid: 25195 + components: + - pos: 74.5,8.5 + parent: 1 + type: Transform + - uid: 25196 + components: + - pos: 75.5,8.5 + parent: 1 + type: Transform + - uid: 25221 + components: + - pos: 109.5,27.5 + parent: 1 + type: Transform + - uid: 25222 + components: + - pos: 110.5,27.5 + parent: 1 + type: Transform + - uid: 25223 + components: + - pos: 111.5,27.5 + parent: 1 + type: Transform + - uid: 25236 + components: + - pos: 109.5,26.5 + parent: 1 + type: Transform + - uid: 25237 + components: + - pos: 109.5,25.5 + parent: 1 + type: Transform + - uid: 25269 + components: + - pos: 105.5,29.5 + parent: 1 + type: Transform + - uid: 25270 + components: + - pos: 105.5,28.5 + parent: 1 + type: Transform + - uid: 25271 + components: + - pos: 105.5,27.5 + parent: 1 + type: Transform + - uid: 25272 + components: + - pos: 105.5,26.5 + parent: 1 + type: Transform + - uid: 25273 + components: + - pos: 105.5,25.5 + parent: 1 + type: Transform + - uid: 25274 + components: + - pos: 106.5,25.5 + parent: 1 + type: Transform + - uid: 25275 + components: + - pos: 107.5,25.5 + parent: 1 + type: Transform + - uid: 25276 + components: + - pos: 108.5,25.5 + parent: 1 + type: Transform + - uid: 25296 + components: + - pos: -1.5,-16.5 + parent: 1 + type: Transform + - uid: 25445 + components: + - pos: -59.5,-28.5 + parent: 1 + type: Transform + - uid: 25446 + components: + - pos: -60.5,-28.5 + parent: 1 + type: Transform + - uid: 25447 + components: + - pos: -60.5,-27.5 + parent: 1 + type: Transform + - uid: 25448 + components: + - pos: -60.5,-26.5 + parent: 1 + type: Transform + - uid: 25449 + components: + - pos: -60.5,-25.5 + parent: 1 + type: Transform + - uid: 25450 + components: + - pos: -57.5,-21.5 + parent: 1 + type: Transform + - uid: 25451 + components: + - pos: -58.5,-21.5 + parent: 1 + type: Transform + - uid: 25452 + components: + - pos: -58.5,-20.5 + parent: 1 + type: Transform + - uid: 25453 + components: + - pos: -59.5,-20.5 + parent: 1 + type: Transform + - uid: 25454 + components: + - pos: -60.5,-20.5 + parent: 1 + type: Transform + - uid: 25459 + components: + - pos: -38.5,-36.5 + parent: 1 + type: Transform + - uid: 25460 + components: + - pos: -38.5,-37.5 + parent: 1 + type: Transform + - uid: 25461 + components: + - pos: -38.5,-38.5 + parent: 1 + type: Transform + - uid: 25462 + components: + - pos: -38.5,-39.5 + parent: 1 + type: Transform + - uid: 25463 + components: + - pos: -37.5,-39.5 + parent: 1 + type: Transform + - uid: 25464 + components: + - pos: -36.5,-39.5 + parent: 1 + type: Transform + - uid: 25465 + components: + - pos: -36.5,-38.5 + parent: 1 + type: Transform + - uid: 25466 + components: + - pos: -39.5,-39.5 + parent: 1 + type: Transform + - uid: 25467 + components: + - pos: -40.5,-39.5 + parent: 1 + type: Transform + - uid: 25471 + components: + - pos: -44.5,-39.5 + parent: 1 + type: Transform + - uid: 25472 + components: + - pos: -45.5,-39.5 + parent: 1 + type: Transform + - uid: 25473 + components: + - pos: -46.5,-39.5 + parent: 1 + type: Transform + - uid: 25474 + components: + - pos: -47.5,-39.5 + parent: 1 + type: Transform + - uid: 25475 + components: + - pos: -48.5,-39.5 + parent: 1 + type: Transform + - uid: 25476 + components: + - pos: -49.5,-39.5 + parent: 1 + type: Transform + - uid: 25477 + components: + - pos: -50.5,-39.5 + parent: 1 + type: Transform + - uid: 25478 + components: + - pos: -46.5,-38.5 + parent: 1 + type: Transform + - uid: 25479 + components: + - pos: -46.5,-37.5 + parent: 1 + type: Transform + - uid: 25480 + components: + - pos: -46.5,-36.5 + parent: 1 + type: Transform + - uid: 25481 + components: + - pos: -51.5,-39.5 + parent: 1 + type: Transform + - uid: 25482 + components: + - pos: -51.5,-40.5 + parent: 1 + type: Transform + - uid: 25483 + components: + - pos: -51.5,-41.5 + parent: 1 + type: Transform + - uid: 25484 + components: + - pos: -50.5,-41.5 + parent: 1 + type: Transform + - uid: 25485 + components: + - pos: -49.5,-41.5 + parent: 1 + type: Transform + - uid: 25486 + components: + - pos: -48.5,-41.5 + parent: 1 + type: Transform + - uid: 25487 + components: + - pos: -47.5,-41.5 + parent: 1 + type: Transform + - uid: 25488 + components: + - pos: -46.5,-41.5 + parent: 1 + type: Transform + - uid: 25492 + components: + - pos: -40.5,-40.5 + parent: 1 + type: Transform + - uid: 25493 + components: + - pos: -40.5,-41.5 + parent: 1 + type: Transform + - uid: 25494 + components: + - pos: -40.5,-42.5 + parent: 1 + type: Transform + - uid: 25495 + components: + - pos: -40.5,-43.5 + parent: 1 + type: Transform + - uid: 25496 + components: + - pos: -40.5,-44.5 + parent: 1 + type: Transform + - uid: 25497 + components: + - pos: -40.5,-45.5 + parent: 1 + type: Transform + - uid: 25498 + components: + - pos: -40.5,-46.5 + parent: 1 + type: Transform + - uid: 25499 + components: + - pos: -40.5,-47.5 + parent: 1 + type: Transform + - uid: 25500 + components: + - pos: -40.5,-48.5 + parent: 1 + type: Transform + - uid: 25501 + components: + - pos: -40.5,-49.5 + parent: 1 + type: Transform + - uid: 25502 + components: + - pos: -40.5,-50.5 + parent: 1 + type: Transform + - uid: 25503 + components: + - pos: -40.5,-51.5 + parent: 1 + type: Transform + - uid: 25504 + components: + - pos: -41.5,-51.5 + parent: 1 + type: Transform + - uid: 25566 + components: + - pos: 0.5,-12.5 + parent: 1 + type: Transform + - uid: 25567 + components: + - pos: -0.5,-12.5 + parent: 1 + type: Transform + - uid: 25576 + components: + - pos: -61.5,-12.5 + parent: 1 + type: Transform + - uid: 25577 + components: + - pos: -61.5,-13.5 + parent: 1 + type: Transform + - uid: 25578 + components: + - pos: -61.5,-14.5 + parent: 1 + type: Transform + - uid: 25579 + components: + - pos: -61.5,-15.5 + parent: 1 + type: Transform + - uid: 25620 + components: + - pos: -44.5,-38.5 + parent: 1 + type: Transform + - uid: 25621 + components: + - pos: -43.5,-39.5 + parent: 1 + type: Transform + - uid: 25622 + components: + - pos: -43.5,-40.5 + parent: 1 + type: Transform + - uid: 25623 + components: + - pos: -43.5,-41.5 + parent: 1 + type: Transform + - uid: 25624 + components: + - pos: -43.5,-42.5 + parent: 1 + type: Transform + - uid: 25625 + components: + - pos: -43.5,-43.5 + parent: 1 + type: Transform + - uid: 25626 + components: + - pos: -43.5,-44.5 + parent: 1 + type: Transform + - uid: 25627 + components: + - pos: -43.5,-45.5 + parent: 1 + type: Transform + - uid: 25727 + components: + - pos: 0.5,39.5 + parent: 1 + type: Transform + - uid: 25794 + components: + - pos: 26.5,53.5 + parent: 1 + type: Transform + - uid: 25821 + components: + - pos: -18.5,37.5 + parent: 1 + type: Transform + - uid: 25822 + components: + - pos: -17.5,37.5 + parent: 1 + type: Transform + - uid: 25823 + components: + - pos: -16.5,37.5 + parent: 1 + type: Transform + - uid: 25824 + components: + - pos: -15.5,37.5 + parent: 1 + type: Transform + - uid: 25832 + components: + - pos: 4.5,53.5 + parent: 1 + type: Transform + - uid: 25835 + components: + - pos: -2.5,53.5 + parent: 1 + type: Transform + - uid: 25836 + components: + - pos: -1.5,53.5 + parent: 1 + type: Transform + - uid: 25837 + components: + - pos: 27.5,46.5 + parent: 1 + type: Transform + - uid: 25838 + components: + - pos: 27.5,47.5 + parent: 1 + type: Transform + - uid: 25839 + components: + - pos: 27.5,48.5 + parent: 1 + type: Transform +- proto: CableApcStack + entities: + - uid: 4721 + components: + - pos: 1.4605403,47.643593 + parent: 1 + type: Transform + - uid: 16314 + components: + - pos: 39.505295,-16.463512 + parent: 1 + type: Transform + - uid: 16874 + components: + - pos: -7.4495025,40.6735 + parent: 1 + type: Transform + - uid: 18801 + components: + - pos: 53.3624,25.835552 + parent: 1 + type: Transform +- proto: CableApcStack1 + entities: + - uid: 12904 + components: + - pos: 32.729927,-38.524002 + parent: 1 + type: Transform + - uid: 12905 + components: + - rot: -1.5707963267948966 rad + pos: 32.96951,-38.492737 + parent: 1 + type: Transform + - uid: 15782 + components: + - rot: -1.5707963267948966 rad + pos: -59.143257,7.652693 + parent: 1 + type: Transform + - uid: 15783 + components: + - rot: 3.141592653589793 rad + pos: -59.070343,7.6109977 + parent: 1 + type: Transform + - uid: 15784 + components: + - rot: 1.5707963267948966 rad + pos: -59.112007,9.674931 + parent: 1 + type: Transform + - uid: 15939 + components: + - rot: 3.141592653589793 rad + pos: 11.764421,52.620842 + parent: 1 + type: Transform + - uid: 15940 + components: + - rot: -1.5707963267948966 rad + pos: 11.701921,52.339394 + parent: 1 + type: Transform + - uid: 15942 + components: + - rot: 1.5707963267948966 rad + pos: 11.337338,52.49575 + parent: 1 + type: Transform + - uid: 16374 + components: + - rot: -1.5707963267948966 rad + pos: 8.38523,-17.807795 + parent: 1 + type: Transform + - uid: 16375 + components: + - rot: 3.141592653589793 rad + pos: 8.499813,-17.776524 + parent: 1 + type: Transform + - uid: 16376 + components: + - rot: 3.141592653589793 rad + pos: 8.57273,-17.828644 + parent: 1 + type: Transform +- proto: CableApcStack10 + entities: + - uid: 19219 + components: + - pos: 1.4294345,-43.83773 + parent: 1 + type: Transform + - uid: 23508 + components: + - rot: 3.141592653589793 rad + pos: 42.19337,25.481283 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 55 + components: + - pos: -50.5,-20.5 + parent: 1 + type: Transform + - uid: 433 + components: + - pos: -55.5,-16.5 + parent: 1 + type: Transform + - uid: 434 + components: + - pos: -54.5,-16.5 + parent: 1 + type: Transform + - uid: 436 + components: + - pos: -54.5,-14.5 + parent: 1 + type: Transform + - uid: 438 + components: + - pos: -54.5,-15.5 + parent: 1 + type: Transform + - uid: 439 + components: + - pos: -55.5,-15.5 + parent: 1 + type: Transform + - uid: 440 + components: + - pos: -55.5,-14.5 + parent: 1 + type: Transform + - uid: 441 + components: + - pos: -54.5,-16.5 + parent: 1 + type: Transform + - uid: 447 + components: + - pos: -56.5,-14.5 + parent: 1 + type: Transform + - uid: 448 + components: + - pos: -57.5,-18.5 + parent: 1 + type: Transform + - uid: 450 + components: + - pos: -51.5,-18.5 + parent: 1 + type: Transform + - uid: 452 + components: + - pos: -50.5,-18.5 + parent: 1 + type: Transform + - uid: 453 + components: + - pos: -53.5,-17.5 + parent: 1 + type: Transform + - uid: 454 + components: + - pos: -53.5,-18.5 + parent: 1 + type: Transform + - uid: 455 + components: + - pos: -53.5,-16.5 + parent: 1 + type: Transform + - uid: 457 + components: + - pos: -53.5,-15.5 + parent: 1 + type: Transform + - uid: 458 + components: + - pos: -53.5,-14.5 + parent: 1 + type: Transform + - uid: 459 + components: + - pos: -52.5,-14.5 + parent: 1 + type: Transform + - uid: 467 + components: + - pos: -54.5,-17.5 + parent: 1 + type: Transform + - uid: 468 + components: + - pos: -54.5,-18.5 + parent: 1 + type: Transform + - uid: 469 + components: + - pos: -55.5,-17.5 + parent: 1 + type: Transform + - uid: 470 + components: + - pos: -55.5,-18.5 + parent: 1 + type: Transform + - uid: 471 + components: + - pos: -52.5,-16.5 + parent: 1 + type: Transform + - uid: 472 + components: + - pos: -51.5,-16.5 + parent: 1 + type: Transform + - uid: 473 + components: + - pos: -50.5,-16.5 + parent: 1 + type: Transform + - uid: 474 + components: + - pos: -49.5,-16.5 + parent: 1 + type: Transform + - uid: 475 + components: + - pos: -48.5,-16.5 + parent: 1 + type: Transform + - uid: 476 + components: + - pos: -47.5,-16.5 + parent: 1 + type: Transform + - uid: 477 + components: + - pos: -46.5,-16.5 + parent: 1 + type: Transform + - uid: 478 + components: + - pos: -45.5,-16.5 + parent: 1 + type: Transform + - uid: 479 + components: + - pos: -44.5,-16.5 + parent: 1 + type: Transform + - uid: 480 + components: + - pos: -43.5,-16.5 + parent: 1 + type: Transform + - uid: 481 + components: + - pos: -42.5,-16.5 + parent: 1 + type: Transform + - uid: 482 + components: + - pos: -41.5,-16.5 + parent: 1 + type: Transform + - uid: 549 + components: + - pos: 92.5,10.5 + parent: 1 + type: Transform + - uid: 607 + components: + - pos: -20.5,-12.5 + parent: 1 + type: Transform + - uid: 608 + components: + - pos: -26.5,-12.5 + parent: 1 + type: Transform + - uid: 609 + components: + - pos: -29.5,-13.5 + parent: 1 + type: Transform + - uid: 621 + components: + - pos: -56.5,-18.5 + parent: 1 + type: Transform + - uid: 622 + components: + - pos: -57.5,-14.5 + parent: 1 + type: Transform + - uid: 640 + components: + - pos: -29.5,-15.5 + parent: 1 + type: Transform + - uid: 641 + components: + - pos: -25.5,-12.5 + parent: 1 + type: Transform + - uid: 664 + components: + - pos: 96.5,-9.5 + parent: 1 + type: Transform + - uid: 671 + components: + - pos: -21.5,-12.5 + parent: 1 + type: Transform + - uid: 689 + components: + - pos: 92.5,12.5 + parent: 1 + type: Transform + - uid: 706 + components: + - pos: 91.5,10.5 + parent: 1 + type: Transform + - uid: 727 + components: + - pos: -20.5,-13.5 + parent: 1 + type: Transform + - uid: 745 + components: + - pos: -24.5,-12.5 + parent: 1 + type: Transform + - uid: 746 + components: + - pos: -29.5,-12.5 + parent: 1 + type: Transform + - uid: 755 + components: + - pos: -27.5,-12.5 + parent: 1 + type: Transform + - uid: 756 + components: + - pos: -22.5,-12.5 + parent: 1 + type: Transform + - uid: 757 + components: + - pos: -20.5,-15.5 + parent: 1 + type: Transform + - uid: 784 + components: + - pos: 94.5,13.5 + parent: 1 + type: Transform + - uid: 789 + components: + - pos: 91.5,9.5 + parent: 1 + type: Transform + - uid: 1514 + components: + - pos: 8.5,-29.5 + parent: 1 + type: Transform + - uid: 2159 + components: + - pos: 8.5,-28.5 + parent: 1 + type: Transform + - uid: 2189 + components: + - pos: -28.5,-12.5 + parent: 1 + type: Transform + - uid: 2190 + components: + - pos: -23.5,-12.5 + parent: 1 + type: Transform + - uid: 2191 + components: + - pos: -20.5,-14.5 + parent: 1 + type: Transform + - uid: 2249 + components: + - pos: -29.5,-14.5 + parent: 1 + type: Transform + - uid: 2775 + components: + - pos: -59.5,-16.5 + parent: 1 + type: Transform + - uid: 3148 + components: + - pos: 5.5,-29.5 + parent: 1 + type: Transform + - uid: 3237 + components: + - pos: 6.5,-29.5 + parent: 1 + type: Transform + - uid: 6010 + components: + - pos: 92.5,13.5 + parent: 1 + type: Transform + - uid: 6123 + components: + - pos: 93.5,13.5 + parent: 1 + type: Transform + - uid: 6632 + components: + - pos: -52.5,-18.5 + parent: 1 + type: Transform + - uid: 6634 + components: + - pos: -51.5,-14.5 + parent: 1 + type: Transform + - uid: 6635 + components: + - pos: -51.5,-13.5 + parent: 1 + type: Transform + - uid: 6664 + components: + - pos: -50.5,-21.5 + parent: 1 + type: Transform + - uid: 6752 + components: + - pos: -63.5,3.5 + parent: 1 + type: Transform + - uid: 6790 + components: + - pos: -50.5,-19.5 + parent: 1 + type: Transform + - uid: 7481 + components: + - pos: -46.5,-20.5 + parent: 1 + type: Transform + - uid: 7482 + components: + - pos: -45.5,-20.5 + parent: 1 + type: Transform + - uid: 7483 + components: + - pos: -44.5,-20.5 + parent: 1 + type: Transform + - uid: 7484 + components: + - pos: -43.5,-20.5 + parent: 1 + type: Transform + - uid: 7485 + components: + - pos: -42.5,-20.5 + parent: 1 + type: Transform + - uid: 7486 + components: + - pos: -41.5,-20.5 + parent: 1 + type: Transform + - uid: 7487 + components: + - pos: -40.5,-20.5 + parent: 1 + type: Transform + - uid: 7488 + components: + - pos: -39.5,-20.5 + parent: 1 + type: Transform + - uid: 7489 + components: + - pos: -38.5,-20.5 + parent: 1 + type: Transform + - uid: 7490 + components: + - pos: -37.5,-20.5 + parent: 1 + type: Transform + - uid: 7491 + components: + - pos: -36.5,-20.5 + parent: 1 + type: Transform + - uid: 7492 + components: + - pos: -51.5,-12.5 + parent: 1 + type: Transform + - uid: 7493 + components: + - pos: -51.5,-11.5 + parent: 1 + type: Transform + - uid: 7494 + components: + - pos: -51.5,-10.5 + parent: 1 + type: Transform + - uid: 7495 + components: + - pos: -51.5,-9.5 + parent: 1 + type: Transform + - uid: 7496 + components: + - pos: -51.5,-8.5 + parent: 1 + type: Transform + - uid: 7497 + components: + - pos: -51.5,-7.5 + parent: 1 + type: Transform + - uid: 7498 + components: + - pos: -51.5,-6.5 + parent: 1 + type: Transform + - uid: 7499 + components: + - pos: -51.5,-5.5 + parent: 1 + type: Transform + - uid: 7785 + components: + - pos: -52.5,38.5 + parent: 1 + type: Transform + - uid: 7786 + components: + - pos: -52.5,37.5 + parent: 1 + type: Transform + - uid: 7787 + components: + - pos: -51.5,37.5 + parent: 1 + type: Transform + - uid: 7788 + components: + - pos: -50.5,37.5 + parent: 1 + type: Transform + - uid: 7789 + components: + - pos: -49.5,37.5 + parent: 1 + type: Transform + - uid: 7790 + components: + - pos: -48.5,37.5 + parent: 1 + type: Transform + - uid: 7791 + components: + - pos: -47.5,37.5 + parent: 1 + type: Transform + - uid: 7792 + components: + - pos: -46.5,37.5 + parent: 1 + type: Transform + - uid: 7793 + components: + - pos: -45.5,37.5 + parent: 1 + type: Transform + - uid: 7794 + components: + - pos: -44.5,37.5 + parent: 1 + type: Transform + - uid: 7795 + components: + - pos: -43.5,37.5 + parent: 1 + type: Transform + - uid: 7796 + components: + - pos: -42.5,37.5 + parent: 1 + type: Transform + - uid: 7797 + components: + - pos: -41.5,37.5 + parent: 1 + type: Transform + - uid: 7798 + components: + - pos: -40.5,37.5 + parent: 1 + type: Transform + - uid: 7799 + components: + - pos: -39.5,37.5 + parent: 1 + type: Transform + - uid: 7800 + components: + - pos: -38.5,37.5 + parent: 1 + type: Transform + - uid: 7801 + components: + - pos: -37.5,37.5 + parent: 1 + type: Transform + - uid: 7802 + components: + - pos: -36.5,37.5 + parent: 1 + type: Transform + - uid: 7803 + components: + - pos: -35.5,37.5 + parent: 1 + type: Transform + - uid: 7804 + components: + - pos: -34.5,37.5 + parent: 1 + type: Transform + - uid: 7805 + components: + - pos: -33.5,37.5 + parent: 1 + type: Transform + - uid: 7806 + components: + - pos: -32.5,37.5 + parent: 1 + type: Transform + - uid: 7807 + components: + - pos: -32.5,36.5 + parent: 1 + type: Transform + - uid: 7808 + components: + - pos: -32.5,35.5 + parent: 1 + type: Transform + - uid: 7809 + components: + - pos: -32.5,34.5 + parent: 1 + type: Transform + - uid: 7810 + components: + - pos: -32.5,33.5 + parent: 1 + type: Transform + - uid: 7811 + components: + - pos: -32.5,32.5 + parent: 1 + type: Transform + - uid: 7812 + components: + - pos: -32.5,31.5 + parent: 1 + type: Transform + - uid: 7813 + components: + - pos: -32.5,30.5 + parent: 1 + type: Transform + - uid: 7814 + components: + - pos: -32.5,29.5 + parent: 1 + type: Transform + - uid: 7815 + components: + - pos: -32.5,28.5 + parent: 1 + type: Transform + - uid: 7816 + components: + - pos: -32.5,27.5 + parent: 1 + type: Transform + - uid: 7817 + components: + - pos: -32.5,26.5 + parent: 1 + type: Transform + - uid: 7818 + components: + - pos: -32.5,25.5 + parent: 1 + type: Transform + - uid: 7819 + components: + - pos: -32.5,24.5 + parent: 1 + type: Transform + - uid: 7820 + components: + - pos: -31.5,24.5 + parent: 1 + type: Transform + - uid: 7821 + components: + - pos: -31.5,23.5 + parent: 1 + type: Transform + - uid: 7822 + components: + - pos: -30.5,23.5 + parent: 1 + type: Transform + - uid: 7823 + components: + - pos: -30.5,22.5 + parent: 1 + type: Transform + - uid: 7824 + components: + - pos: -29.5,22.5 + parent: 1 + type: Transform + - uid: 7825 + components: + - pos: -29.5,21.5 + parent: 1 + type: Transform + - uid: 7826 + components: + - pos: -28.5,21.5 + parent: 1 + type: Transform + - uid: 7827 + components: + - pos: -27.5,21.5 + parent: 1 + type: Transform + - uid: 7828 + components: + - pos: -26.5,21.5 + parent: 1 + type: Transform + - uid: 7829 + components: + - pos: -25.5,21.5 + parent: 1 + type: Transform + - uid: 7830 + components: + - pos: -24.5,21.5 + parent: 1 + type: Transform + - uid: 7831 + components: + - pos: -23.5,21.5 + parent: 1 + type: Transform + - uid: 7832 + components: + - pos: -22.5,21.5 + parent: 1 + type: Transform + - uid: 7833 + components: + - pos: -21.5,21.5 + parent: 1 + type: Transform + - uid: 7834 + components: + - pos: -20.5,21.5 + parent: 1 + type: Transform + - uid: 7835 + components: + - pos: -19.5,21.5 + parent: 1 + type: Transform + - uid: 7836 + components: + - pos: -18.5,21.5 + parent: 1 + type: Transform + - uid: 7837 + components: + - pos: -17.5,21.5 + parent: 1 + type: Transform + - uid: 7838 + components: + - pos: -16.5,21.5 + parent: 1 + type: Transform + - uid: 7839 + components: + - pos: -16.5,22.5 + parent: 1 + type: Transform + - uid: 7840 + components: + - pos: -26.5,20.5 + parent: 1 + type: Transform + - uid: 7841 + components: + - pos: -26.5,19.5 + parent: 1 + type: Transform + - uid: 7842 + components: + - pos: -26.5,18.5 + parent: 1 + type: Transform + - uid: 7843 + components: + - pos: -26.5,17.5 + parent: 1 + type: Transform + - uid: 7844 + components: + - pos: -26.5,16.5 + parent: 1 + type: Transform + - uid: 7845 + components: + - pos: -26.5,15.5 + parent: 1 + type: Transform + - uid: 7846 + components: + - pos: -26.5,14.5 + parent: 1 + type: Transform + - uid: 7847 + components: + - pos: -26.5,13.5 + parent: 1 + type: Transform + - uid: 7848 + components: + - pos: -26.5,12.5 + parent: 1 + type: Transform + - uid: 7849 + components: + - pos: -26.5,11.5 + parent: 1 + type: Transform + - uid: 7850 + components: + - pos: -26.5,10.5 + parent: 1 + type: Transform + - uid: 7851 + components: + - pos: -26.5,9.5 + parent: 1 + type: Transform + - uid: 7852 + components: + - pos: -26.5,8.5 + parent: 1 + type: Transform + - uid: 7853 + components: + - pos: -26.5,7.5 + parent: 1 + type: Transform + - uid: 7854 + components: + - pos: -26.5,6.5 + parent: 1 + type: Transform + - uid: 7855 + components: + - pos: -26.5,5.5 + parent: 1 + type: Transform + - uid: 7856 + components: + - pos: -26.5,4.5 + parent: 1 + type: Transform + - uid: 7857 + components: + - pos: -27.5,4.5 + parent: 1 + type: Transform + - uid: 7858 + components: + - pos: -28.5,4.5 + parent: 1 + type: Transform + - uid: 7859 + components: + - pos: -29.5,4.5 + parent: 1 + type: Transform + - uid: 7860 + components: + - pos: -30.5,4.5 + parent: 1 + type: Transform + - uid: 7861 + components: + - pos: -31.5,4.5 + parent: 1 + type: Transform + - uid: 7862 + components: + - pos: -32.5,4.5 + parent: 1 + type: Transform + - uid: 7863 + components: + - pos: -33.5,4.5 + parent: 1 + type: Transform + - uid: 7864 + components: + - pos: -34.5,4.5 + parent: 1 + type: Transform + - uid: 7865 + components: + - pos: -35.5,4.5 + parent: 1 + type: Transform + - uid: 7866 + components: + - pos: -36.5,4.5 + parent: 1 + type: Transform + - uid: 7867 + components: + - pos: -37.5,4.5 + parent: 1 + type: Transform + - uid: 7868 + components: + - pos: -38.5,4.5 + parent: 1 + type: Transform + - uid: 7869 + components: + - pos: -39.5,4.5 + parent: 1 + type: Transform + - uid: 7870 + components: + - pos: -40.5,4.5 + parent: 1 + type: Transform + - uid: 7871 + components: + - pos: -40.5,0.5 + parent: 1 + type: Transform + - uid: 7872 + components: + - pos: -40.5,7.5 + parent: 1 + type: Transform + - uid: 7873 + components: + - pos: -40.5,6.5 + parent: 1 + type: Transform + - uid: 7874 + components: + - pos: -40.5,5.5 + parent: 1 + type: Transform + - uid: 7875 + components: + - pos: -40.5,3.5 + parent: 1 + type: Transform + - uid: 7876 + components: + - pos: -40.5,2.5 + parent: 1 + type: Transform + - uid: 7877 + components: + - pos: -40.5,1.5 + parent: 1 + type: Transform + - uid: 7878 + components: + - pos: -41.5,0.5 + parent: 1 + type: Transform + - uid: 7879 + components: + - pos: -42.5,0.5 + parent: 1 + type: Transform + - uid: 7880 + components: + - pos: -43.5,0.5 + parent: 1 + type: Transform + - uid: 7881 + components: + - pos: -44.5,0.5 + parent: 1 + type: Transform + - uid: 7882 + components: + - pos: -45.5,0.5 + parent: 1 + type: Transform + - uid: 7883 + components: + - pos: -46.5,0.5 + parent: 1 + type: Transform + - uid: 7884 + components: + - pos: -47.5,0.5 + parent: 1 + type: Transform + - uid: 7885 + components: + - pos: -48.5,0.5 + parent: 1 + type: Transform + - uid: 7886 + components: + - pos: -49.5,0.5 + parent: 1 + type: Transform + - uid: 7887 + components: + - pos: -50.5,0.5 + parent: 1 + type: Transform + - uid: 7888 + components: + - pos: -51.5,0.5 + parent: 1 + type: Transform + - uid: 7889 + components: + - pos: -51.5,-4.5 + parent: 1 + type: Transform + - uid: 7890 + components: + - pos: -51.5,-3.5 + parent: 1 + type: Transform + - uid: 7891 + components: + - pos: -51.5,-2.5 + parent: 1 + type: Transform + - uid: 7892 + components: + - pos: -51.5,-1.5 + parent: 1 + type: Transform + - uid: 7893 + components: + - pos: -51.5,-0.5 + parent: 1 + type: Transform + - uid: 7894 + components: + - pos: -35.5,-20.5 + parent: 1 + type: Transform + - uid: 7895 + components: + - pos: -32.5,-29.5 + parent: 1 + type: Transform + - uid: 7896 + components: + - pos: -32.5,-28.5 + parent: 1 + type: Transform + - uid: 7897 + components: + - pos: -32.5,-27.5 + parent: 1 + type: Transform + - uid: 7898 + components: + - pos: -32.5,-26.5 + parent: 1 + type: Transform + - uid: 7899 + components: + - pos: -32.5,-25.5 + parent: 1 + type: Transform + - uid: 7900 + components: + - pos: -32.5,-24.5 + parent: 1 + type: Transform + - uid: 7901 + components: + - pos: -32.5,-23.5 + parent: 1 + type: Transform + - uid: 7902 + components: + - pos: -32.5,-22.5 + parent: 1 + type: Transform + - uid: 7903 + components: + - pos: -32.5,-21.5 + parent: 1 + type: Transform + - uid: 7904 + components: + - pos: -32.5,-20.5 + parent: 1 + type: Transform + - uid: 7905 + components: + - pos: -33.5,-20.5 + parent: 1 + type: Transform + - uid: 7906 + components: + - pos: -34.5,-20.5 + parent: 1 + type: Transform + - uid: 7907 + components: + - pos: -31.5,-19.5 + parent: 1 + type: Transform + - uid: 7908 + components: + - pos: -32.5,-19.5 + parent: 1 + type: Transform + - uid: 7909 + components: + - pos: -30.5,-18.5 + parent: 1 + type: Transform + - uid: 7910 + components: + - pos: -31.5,-18.5 + parent: 1 + type: Transform + - uid: 7911 + components: + - pos: -29.5,-17.5 + parent: 1 + type: Transform + - uid: 7912 + components: + - pos: -30.5,-17.5 + parent: 1 + type: Transform + - uid: 7913 + components: + - pos: -29.5,-16.5 + parent: 1 + type: Transform + - uid: 7921 + components: + - pos: -32.5,-30.5 + parent: 1 + type: Transform + - uid: 7922 + components: + - pos: -31.5,-30.5 + parent: 1 + type: Transform + - uid: 7923 + components: + - pos: -31.5,-31.5 + parent: 1 + type: Transform + - uid: 7924 + components: + - pos: -30.5,-31.5 + parent: 1 + type: Transform + - uid: 7925 + components: + - pos: -30.5,-32.5 + parent: 1 + type: Transform + - uid: 7926 + components: + - pos: -29.5,-32.5 + parent: 1 + type: Transform + - uid: 7927 + components: + - pos: -28.5,-32.5 + parent: 1 + type: Transform + - uid: 7928 + components: + - pos: -27.5,-32.5 + parent: 1 + type: Transform + - uid: 7929 + components: + - pos: -26.5,-32.5 + parent: 1 + type: Transform + - uid: 7930 + components: + - pos: -25.5,-32.5 + parent: 1 + type: Transform + - uid: 7931 + components: + - pos: -24.5,-32.5 + parent: 1 + type: Transform + - uid: 7932 + components: + - pos: -23.5,-32.5 + parent: 1 + type: Transform + - uid: 7933 + components: + - pos: -22.5,-32.5 + parent: 1 + type: Transform + - uid: 7934 + components: + - pos: -21.5,-32.5 + parent: 1 + type: Transform + - uid: 7935 + components: + - pos: -20.5,-32.5 + parent: 1 + type: Transform + - uid: 7936 + components: + - pos: -19.5,-32.5 + parent: 1 + type: Transform + - uid: 7937 + components: + - pos: -18.5,-32.5 + parent: 1 + type: Transform + - uid: 7938 + components: + - pos: -17.5,-32.5 + parent: 1 + type: Transform + - uid: 7939 + components: + - pos: -16.5,-32.5 + parent: 1 + type: Transform + - uid: 7940 + components: + - pos: -15.5,-32.5 + parent: 1 + type: Transform + - uid: 7941 + components: + - pos: -5.5,-41.5 + parent: 1 + type: Transform + - uid: 7942 + components: + - pos: -6.5,-41.5 + parent: 1 + type: Transform + - uid: 7943 + components: + - pos: -7.5,-41.5 + parent: 1 + type: Transform + - uid: 7944 + components: + - pos: -8.5,-41.5 + parent: 1 + type: Transform + - uid: 7945 + components: + - pos: -9.5,-41.5 + parent: 1 + type: Transform + - uid: 7946 + components: + - pos: -10.5,-41.5 + parent: 1 + type: Transform + - uid: 7947 + components: + - pos: -11.5,-41.5 + parent: 1 + type: Transform + - uid: 7948 + components: + - pos: -12.5,-41.5 + parent: 1 + type: Transform + - uid: 7949 + components: + - pos: -13.5,-41.5 + parent: 1 + type: Transform + - uid: 7950 + components: + - pos: -14.5,-41.5 + parent: 1 + type: Transform + - uid: 7951 + components: + - pos: -14.5,-40.5 + parent: 1 + type: Transform + - uid: 7952 + components: + - pos: -14.5,-39.5 + parent: 1 + type: Transform + - uid: 7953 + components: + - pos: -14.5,-38.5 + parent: 1 + type: Transform + - uid: 7954 + components: + - pos: -14.5,-37.5 + parent: 1 + type: Transform + - uid: 7955 + components: + - pos: -14.5,-36.5 + parent: 1 + type: Transform + - uid: 7956 + components: + - pos: -14.5,-35.5 + parent: 1 + type: Transform + - uid: 7957 + components: + - pos: -14.5,-34.5 + parent: 1 + type: Transform + - uid: 7958 + components: + - pos: -14.5,-33.5 + parent: 1 + type: Transform + - uid: 7959 + components: + - pos: -14.5,-32.5 + parent: 1 + type: Transform + - uid: 7960 + components: + - pos: 34.5,-29.5 + parent: 1 + type: Transform + - uid: 7961 + components: + - pos: 33.5,-29.5 + parent: 1 + type: Transform + - uid: 7962 + components: + - pos: 32.5,-29.5 + parent: 1 + type: Transform + - uid: 7963 + components: + - pos: 31.5,-29.5 + parent: 1 + type: Transform + - uid: 7964 + components: + - pos: 30.5,-29.5 + parent: 1 + type: Transform + - uid: 7965 + components: + - pos: 29.5,-29.5 + parent: 1 + type: Transform + - uid: 7966 + components: + - pos: 28.5,-29.5 + parent: 1 + type: Transform + - uid: 7967 + components: + - pos: 27.5,-29.5 + parent: 1 + type: Transform + - uid: 7968 + components: + - pos: 26.5,-29.5 + parent: 1 + type: Transform + - uid: 7969 + components: + - pos: 25.5,-29.5 + parent: 1 + type: Transform + - uid: 7970 + components: + - pos: 24.5,-29.5 + parent: 1 + type: Transform + - uid: 7971 + components: + - pos: 23.5,-29.5 + parent: 1 + type: Transform + - uid: 7972 + components: + - pos: 22.5,-29.5 + parent: 1 + type: Transform + - uid: 7973 + components: + - pos: 21.5,-29.5 + parent: 1 + type: Transform + - uid: 7974 + components: + - pos: 20.5,-29.5 + parent: 1 + type: Transform + - uid: 7975 + components: + - pos: 19.5,-29.5 + parent: 1 + type: Transform + - uid: 7990 + components: + - pos: 4.5,-29.5 + parent: 1 + type: Transform + - uid: 7991 + components: + - pos: 3.5,-29.5 + parent: 1 + type: Transform + - uid: 7992 + components: + - pos: 2.5,-29.5 + parent: 1 + type: Transform + - uid: 7993 + components: + - pos: 1.5,-29.5 + parent: 1 + type: Transform + - uid: 7994 + components: + - pos: 0.5,-29.5 + parent: 1 + type: Transform + - uid: 7995 + components: + - pos: -0.5,-29.5 + parent: 1 + type: Transform + - uid: 7996 + components: + - pos: -1.5,-29.5 + parent: 1 + type: Transform + - uid: 7997 + components: + - pos: -2.5,-29.5 + parent: 1 + type: Transform + - uid: 7998 + components: + - pos: -3.5,-29.5 + parent: 1 + type: Transform + - uid: 7999 + components: + - pos: -4.5,-29.5 + parent: 1 + type: Transform + - uid: 8000 + components: + - pos: -5.5,-29.5 + parent: 1 + type: Transform + - uid: 8001 + components: + - pos: -6.5,-29.5 + parent: 1 + type: Transform + - uid: 8002 + components: + - pos: -7.5,-29.5 + parent: 1 + type: Transform + - uid: 8003 + components: + - pos: -8.5,-29.5 + parent: 1 + type: Transform + - uid: 8004 + components: + - pos: -9.5,-29.5 + parent: 1 + type: Transform + - uid: 8005 + components: + - pos: -9.5,-30.5 + parent: 1 + type: Transform + - uid: 8006 + components: + - pos: -10.5,-30.5 + parent: 1 + type: Transform + - uid: 8007 + components: + - pos: -10.5,-31.5 + parent: 1 + type: Transform + - uid: 8008 + components: + - pos: -11.5,-31.5 + parent: 1 + type: Transform + - uid: 8009 + components: + - pos: -11.5,-32.5 + parent: 1 + type: Transform + - uid: 8010 + components: + - pos: -12.5,-32.5 + parent: 1 + type: Transform + - uid: 8011 + components: + - pos: -13.5,-32.5 + parent: 1 + type: Transform + - uid: 8012 + components: + - pos: 34.5,-30.5 + parent: 1 + type: Transform + - uid: 8013 + components: + - pos: 35.5,-30.5 + parent: 1 + type: Transform + - uid: 8014 + components: + - pos: 35.5,-31.5 + parent: 1 + type: Transform + - uid: 8015 + components: + - pos: 36.5,-31.5 + parent: 1 + type: Transform + - uid: 8016 + components: + - pos: 36.5,-32.5 + parent: 1 + type: Transform + - uid: 8017 + components: + - pos: 37.5,-32.5 + parent: 1 + type: Transform + - uid: 8018 + components: + - pos: 38.5,-32.5 + parent: 1 + type: Transform + - uid: 8019 + components: + - pos: 39.5,-32.5 + parent: 1 + type: Transform + - uid: 8020 + components: + - pos: 40.5,-32.5 + parent: 1 + type: Transform + - uid: 8021 + components: + - pos: 40.5,-31.5 + parent: 1 + type: Transform + - uid: 8022 + components: + - pos: 41.5,-31.5 + parent: 1 + type: Transform + - uid: 8023 + components: + - pos: 41.5,-30.5 + parent: 1 + type: Transform + - uid: 8024 + components: + - pos: 42.5,-30.5 + parent: 1 + type: Transform + - uid: 8025 + components: + - pos: 42.5,-29.5 + parent: 1 + type: Transform + - uid: 8026 + components: + - pos: 43.5,-29.5 + parent: 1 + type: Transform + - uid: 8027 + components: + - pos: 44.5,-28.5 + parent: 1 + type: Transform + - uid: 8028 + components: + - pos: 43.5,-28.5 + parent: 1 + type: Transform + - uid: 8029 + components: + - pos: 45.5,-28.5 + parent: 1 + type: Transform + - uid: 8038 + components: + - pos: 51.5,-25.5 + parent: 1 + type: Transform + - uid: 8039 + components: + - pos: 52.5,-25.5 + parent: 1 + type: Transform + - uid: 8040 + components: + - pos: 52.5,-24.5 + parent: 1 + type: Transform + - uid: 8041 + components: + - pos: 53.5,-24.5 + parent: 1 + type: Transform + - uid: 8042 + components: + - pos: 53.5,-23.5 + parent: 1 + type: Transform + - uid: 8043 + components: + - pos: 54.5,-23.5 + parent: 1 + type: Transform + - uid: 8044 + components: + - pos: 54.5,-22.5 + parent: 1 + type: Transform + - uid: 8045 + components: + - pos: 55.5,-22.5 + parent: 1 + type: Transform + - uid: 8046 + components: + - pos: 55.5,-21.5 + parent: 1 + type: Transform + - uid: 8047 + components: + - pos: 56.5,-21.5 + parent: 1 + type: Transform + - uid: 8048 + components: + - pos: 56.5,-20.5 + parent: 1 + type: Transform + - uid: 8049 + components: + - pos: 57.5,-20.5 + parent: 1 + type: Transform + - uid: 8050 + components: + - pos: 57.5,-19.5 + parent: 1 + type: Transform + - uid: 8051 + components: + - pos: 58.5,-19.5 + parent: 1 + type: Transform + - uid: 8052 + components: + - pos: 59.5,-19.5 + parent: 1 + type: Transform + - uid: 8053 + components: + - pos: 60.5,-19.5 + parent: 1 + type: Transform + - uid: 8054 + components: + - pos: 61.5,-19.5 + parent: 1 + type: Transform + - uid: 8055 + components: + - pos: 62.5,-19.5 + parent: 1 + type: Transform + - uid: 8056 + components: + - pos: 63.5,-19.5 + parent: 1 + type: Transform + - uid: 8057 + components: + - pos: 64.5,-19.5 + parent: 1 + type: Transform + - uid: 8058 + components: + - pos: 65.5,-19.5 + parent: 1 + type: Transform + - uid: 8059 + components: + - pos: 66.5,-19.5 + parent: 1 + type: Transform + - uid: 8060 + components: + - pos: 67.5,-19.5 + parent: 1 + type: Transform + - uid: 8061 + components: + - pos: 68.5,-19.5 + parent: 1 + type: Transform + - uid: 8062 + components: + - pos: 69.5,-19.5 + parent: 1 + type: Transform + - uid: 8063 + components: + - pos: 70.5,-19.5 + parent: 1 + type: Transform + - uid: 8064 + components: + - pos: 71.5,-19.5 + parent: 1 + type: Transform + - uid: 8065 + components: + - pos: 72.5,-19.5 + parent: 1 + type: Transform + - uid: 8066 + components: + - pos: 73.5,-19.5 + parent: 1 + type: Transform + - uid: 8067 + components: + - pos: 74.5,-19.5 + parent: 1 + type: Transform + - uid: 8068 + components: + - pos: 75.5,-19.5 + parent: 1 + type: Transform + - uid: 8069 + components: + - pos: 76.5,-19.5 + parent: 1 + type: Transform + - uid: 8070 + components: + - pos: 77.5,-19.5 + parent: 1 + type: Transform + - uid: 8071 + components: + - pos: 78.5,-19.5 + parent: 1 + type: Transform + - uid: 8072 + components: + - pos: 79.5,-19.5 + parent: 1 + type: Transform + - uid: 8073 + components: + - pos: 80.5,-19.5 + parent: 1 + type: Transform + - uid: 8074 + components: + - pos: 81.5,-19.5 + parent: 1 + type: Transform + - uid: 8075 + components: + - pos: 82.5,-19.5 + parent: 1 + type: Transform + - uid: 8076 + components: + - pos: 83.5,-19.5 + parent: 1 + type: Transform + - uid: 8077 + components: + - pos: 84.5,-19.5 + parent: 1 + type: Transform + - uid: 8078 + components: + - pos: 85.5,-19.5 + parent: 1 + type: Transform + - uid: 8079 + components: + - pos: 86.5,-19.5 + parent: 1 + type: Transform + - uid: 8080 + components: + - pos: 87.5,-19.5 + parent: 1 + type: Transform + - uid: 8081 + components: + - pos: 87.5,-18.5 + parent: 1 + type: Transform + - uid: 8082 + components: + - pos: 88.5,-18.5 + parent: 1 + type: Transform + - uid: 8083 + components: + - pos: 88.5,-17.5 + parent: 1 + type: Transform + - uid: 8084 + components: + - pos: 89.5,-17.5 + parent: 1 + type: Transform + - uid: 8085 + components: + - pos: 89.5,-16.5 + parent: 1 + type: Transform + - uid: 8086 + components: + - pos: 90.5,-16.5 + parent: 1 + type: Transform + - uid: 8087 + components: + - pos: 90.5,-15.5 + parent: 1 + type: Transform + - uid: 8088 + components: + - pos: 90.5,-14.5 + parent: 1 + type: Transform + - uid: 8089 + components: + - pos: 90.5,-13.5 + parent: 1 + type: Transform + - uid: 8090 + components: + - pos: 90.5,-12.5 + parent: 1 + type: Transform + - uid: 8091 + components: + - pos: 90.5,-11.5 + parent: 1 + type: Transform + - uid: 8099 + components: + - pos: 39.5,39.5 + parent: 1 + type: Transform + - uid: 8100 + components: + - pos: 109.5,-4.5 + parent: 1 + type: Transform + - uid: 8101 + components: + - pos: 108.5,-4.5 + parent: 1 + type: Transform + - uid: 8102 + components: + - pos: 108.5,-5.5 + parent: 1 + type: Transform + - uid: 8103 + components: + - pos: 107.5,-5.5 + parent: 1 + type: Transform + - uid: 8104 + components: + - pos: 106.5,-5.5 + parent: 1 + type: Transform + - uid: 8105 + components: + - pos: 106.5,-6.5 + parent: 1 + type: Transform + - uid: 8106 + components: + - pos: 105.5,-6.5 + parent: 1 + type: Transform + - uid: 8107 + components: + - pos: 104.5,-6.5 + parent: 1 + type: Transform + - uid: 8108 + components: + - pos: 103.5,-6.5 + parent: 1 + type: Transform + - uid: 8109 + components: + - pos: 102.5,-6.5 + parent: 1 + type: Transform + - uid: 8110 + components: + - pos: 101.5,-6.5 + parent: 1 + type: Transform + - uid: 8111 + components: + - pos: 100.5,-6.5 + parent: 1 + type: Transform + - uid: 8112 + components: + - pos: 99.5,-6.5 + parent: 1 + type: Transform + - uid: 8113 + components: + - pos: 98.5,-6.5 + parent: 1 + type: Transform + - uid: 8114 + components: + - pos: 97.5,-6.5 + parent: 1 + type: Transform + - uid: 8115 + components: + - pos: 97.5,-7.5 + parent: 1 + type: Transform + - uid: 8116 + components: + - pos: 96.5,-7.5 + parent: 1 + type: Transform + - uid: 8117 + components: + - pos: 96.5,-8.5 + parent: 1 + type: Transform + - uid: 8119 + components: + - pos: 95.5,-9.5 + parent: 1 + type: Transform + - uid: 8120 + components: + - pos: 94.5,-9.5 + parent: 1 + type: Transform + - uid: 8121 + components: + - pos: 94.5,-10.5 + parent: 1 + type: Transform + - uid: 8122 + components: + - pos: 94.5,-11.5 + parent: 1 + type: Transform + - uid: 8123 + components: + - pos: 93.5,-11.5 + parent: 1 + type: Transform + - uid: 8124 + components: + - pos: 93.5,-12.5 + parent: 1 + type: Transform + - uid: 8125 + components: + - pos: 92.5,-12.5 + parent: 1 + type: Transform + - uid: 8126 + components: + - pos: 92.5,-13.5 + parent: 1 + type: Transform + - uid: 8127 + components: + - pos: 92.5,-14.5 + parent: 1 + type: Transform + - uid: 8128 + components: + - pos: 91.5,-14.5 + parent: 1 + type: Transform + - uid: 8129 + components: + - pos: -12.5,-14.5 + parent: 1 + type: Transform + - uid: 8130 + components: + - pos: -12.5,-15.5 + parent: 1 + type: Transform + - uid: 8131 + components: + - pos: -11.5,-15.5 + parent: 1 + type: Transform + - uid: 8132 + components: + - pos: -11.5,-16.5 + parent: 1 + type: Transform + - uid: 8133 + components: + - pos: -11.5,-17.5 + parent: 1 + type: Transform + - uid: 8134 + components: + - pos: -11.5,-18.5 + parent: 1 + type: Transform + - uid: 8135 + components: + - pos: -11.5,-19.5 + parent: 1 + type: Transform + - uid: 8136 + components: + - pos: -11.5,-20.5 + parent: 1 + type: Transform + - uid: 8137 + components: + - pos: -12.5,-20.5 + parent: 1 + type: Transform + - uid: 8138 + components: + - pos: -13.5,-20.5 + parent: 1 + type: Transform + - uid: 8139 + components: + - pos: -14.5,-20.5 + parent: 1 + type: Transform + - uid: 8140 + components: + - pos: -15.5,-20.5 + parent: 1 + type: Transform + - uid: 8141 + components: + - pos: -16.5,-20.5 + parent: 1 + type: Transform + - uid: 8142 + components: + - pos: -17.5,-20.5 + parent: 1 + type: Transform + - uid: 8143 + components: + - pos: -17.5,-19.5 + parent: 1 + type: Transform + - uid: 8144 + components: + - pos: -18.5,-19.5 + parent: 1 + type: Transform + - uid: 8145 + components: + - pos: -18.5,-18.5 + parent: 1 + type: Transform + - uid: 8146 + components: + - pos: -19.5,-18.5 + parent: 1 + type: Transform + - uid: 8147 + components: + - pos: -19.5,-17.5 + parent: 1 + type: Transform + - uid: 8148 + components: + - pos: -20.5,-17.5 + parent: 1 + type: Transform + - uid: 8149 + components: + - pos: -20.5,-16.5 + parent: 1 + type: Transform + - uid: 8157 + components: + - pos: -10.5,-20.5 + parent: 1 + type: Transform + - uid: 8158 + components: + - pos: -9.5,-20.5 + parent: 1 + type: Transform + - uid: 8159 + components: + - pos: -8.5,-20.5 + parent: 1 + type: Transform + - uid: 8160 + components: + - pos: -7.5,-20.5 + parent: 1 + type: Transform + - uid: 8161 + components: + - pos: -6.5,-20.5 + parent: 1 + type: Transform + - uid: 8162 + components: + - pos: -5.5,-20.5 + parent: 1 + type: Transform + - uid: 8163 + components: + - pos: -4.5,-20.5 + parent: 1 + type: Transform + - uid: 8164 + components: + - pos: -3.5,-20.5 + parent: 1 + type: Transform + - uid: 8165 + components: + - pos: -2.5,-20.5 + parent: 1 + type: Transform + - uid: 8166 + components: + - pos: -1.5,-20.5 + parent: 1 + type: Transform + - uid: 8167 + components: + - pos: -0.5,-20.5 + parent: 1 + type: Transform + - uid: 8168 + components: + - pos: 0.5,-20.5 + parent: 1 + type: Transform + - uid: 8169 + components: + - pos: 1.5,-20.5 + parent: 1 + type: Transform + - uid: 8170 + components: + - pos: 2.5,-20.5 + parent: 1 + type: Transform + - uid: 8171 + components: + - pos: 3.5,-20.5 + parent: 1 + type: Transform + - uid: 8172 + components: + - pos: 4.5,-20.5 + parent: 1 + type: Transform + - uid: 8173 + components: + - pos: 5.5,-20.5 + parent: 1 + type: Transform + - uid: 8174 + components: + - pos: 6.5,-20.5 + parent: 1 + type: Transform + - uid: 8175 + components: + - pos: 7.5,-20.5 + parent: 1 + type: Transform + - uid: 8176 + components: + - pos: 8.5,-20.5 + parent: 1 + type: Transform + - uid: 8177 + components: + - pos: 9.5,-20.5 + parent: 1 + type: Transform + - uid: 8178 + components: + - pos: 10.5,-20.5 + parent: 1 + type: Transform + - uid: 8179 + components: + - pos: 11.5,-20.5 + parent: 1 + type: Transform + - uid: 8180 + components: + - pos: 12.5,-20.5 + parent: 1 + type: Transform + - uid: 8181 + components: + - pos: 13.5,-20.5 + parent: 1 + type: Transform + - uid: 8182 + components: + - pos: 14.5,-20.5 + parent: 1 + type: Transform + - uid: 8183 + components: + - pos: 15.5,-20.5 + parent: 1 + type: Transform + - uid: 8184 + components: + - pos: 16.5,-20.5 + parent: 1 + type: Transform + - uid: 8185 + components: + - pos: 17.5,-20.5 + parent: 1 + type: Transform + - uid: 8186 + components: + - pos: 18.5,-20.5 + parent: 1 + type: Transform + - uid: 8187 + components: + - pos: 19.5,-20.5 + parent: 1 + type: Transform + - uid: 8188 + components: + - pos: 20.5,-20.5 + parent: 1 + type: Transform + - uid: 8189 + components: + - pos: 21.5,-20.5 + parent: 1 + type: Transform + - uid: 8190 + components: + - pos: 22.5,-20.5 + parent: 1 + type: Transform + - uid: 8191 + components: + - pos: 23.5,-20.5 + parent: 1 + type: Transform + - uid: 8192 + components: + - pos: 24.5,-20.5 + parent: 1 + type: Transform + - uid: 8193 + components: + - pos: 25.5,-20.5 + parent: 1 + type: Transform + - uid: 8194 + components: + - pos: 26.5,-20.5 + parent: 1 + type: Transform + - uid: 8195 + components: + - pos: 27.5,-20.5 + parent: 1 + type: Transform + - uid: 8196 + components: + - pos: 28.5,-20.5 + parent: 1 + type: Transform + - uid: 8197 + components: + - pos: 29.5,-20.5 + parent: 1 + type: Transform + - uid: 8198 + components: + - pos: 30.5,-20.5 + parent: 1 + type: Transform + - uid: 8199 + components: + - pos: 31.5,-20.5 + parent: 1 + type: Transform + - uid: 8200 + components: + - pos: 32.5,-20.5 + parent: 1 + type: Transform + - uid: 8201 + components: + - pos: 33.5,-20.5 + parent: 1 + type: Transform + - uid: 8202 + components: + - pos: 34.5,-20.5 + parent: 1 + type: Transform + - uid: 8203 + components: + - pos: 35.5,-20.5 + parent: 1 + type: Transform + - uid: 8204 + components: + - pos: 36.5,-20.5 + parent: 1 + type: Transform + - uid: 8205 + components: + - pos: 37.5,-20.5 + parent: 1 + type: Transform + - uid: 8206 + components: + - pos: 37.5,-19.5 + parent: 1 + type: Transform + - uid: 8207 + components: + - pos: 37.5,-18.5 + parent: 1 + type: Transform + - uid: 8208 + components: + - pos: 37.5,-17.5 + parent: 1 + type: Transform + - uid: 8209 + components: + - pos: 37.5,-16.5 + parent: 1 + type: Transform + - uid: 8210 + components: + - pos: -31.5,38.5 + parent: 1 + type: Transform + - uid: 8211 + components: + - pos: -31.5,37.5 + parent: 1 + type: Transform + - uid: 8212 + components: + - pos: -30.5,38.5 + parent: 1 + type: Transform + - uid: 8213 + components: + - pos: -30.5,39.5 + parent: 1 + type: Transform + - uid: 8214 + components: + - pos: -29.5,39.5 + parent: 1 + type: Transform + - uid: 8215 + components: + - pos: -29.5,40.5 + parent: 1 + type: Transform + - uid: 8216 + components: + - pos: -28.5,40.5 + parent: 1 + type: Transform + - uid: 8217 + components: + - pos: -27.5,40.5 + parent: 1 + type: Transform + - uid: 8218 + components: + - pos: -26.5,40.5 + parent: 1 + type: Transform + - uid: 8219 + components: + - pos: -25.5,40.5 + parent: 1 + type: Transform + - uid: 8220 + components: + - pos: -24.5,40.5 + parent: 1 + type: Transform + - uid: 8221 + components: + - pos: -23.5,40.5 + parent: 1 + type: Transform + - uid: 8222 + components: + - pos: -22.5,40.5 + parent: 1 + type: Transform + - uid: 8223 + components: + - pos: -21.5,40.5 + parent: 1 + type: Transform + - uid: 8224 + components: + - pos: -20.5,40.5 + parent: 1 + type: Transform + - uid: 8225 + components: + - pos: -19.5,40.5 + parent: 1 + type: Transform + - uid: 8226 + components: + - pos: -18.5,40.5 + parent: 1 + type: Transform + - uid: 8227 + components: + - pos: -17.5,40.5 + parent: 1 + type: Transform + - uid: 8228 + components: + - pos: -16.5,40.5 + parent: 1 + type: Transform + - uid: 8229 + components: + - pos: -15.5,40.5 + parent: 1 + type: Transform + - uid: 8230 + components: + - pos: -14.5,40.5 + parent: 1 + type: Transform + - uid: 8231 + components: + - pos: -13.5,40.5 + parent: 1 + type: Transform + - uid: 8232 + components: + - pos: -12.5,40.5 + parent: 1 + type: Transform + - uid: 8233 + components: + - pos: -11.5,40.5 + parent: 1 + type: Transform + - uid: 8234 + components: + - pos: -11.5,39.5 + parent: 1 + type: Transform + - uid: 8235 + components: + - pos: -10.5,39.5 + parent: 1 + type: Transform + - uid: 8236 + components: + - pos: -9.5,39.5 + parent: 1 + type: Transform + - uid: 8237 + components: + - pos: -8.5,39.5 + parent: 1 + type: Transform + - uid: 8238 + components: + - pos: -8.5,40.5 + parent: 1 + type: Transform + - uid: 8239 + components: + - pos: 17.5,36.5 + parent: 1 + type: Transform + - uid: 8240 + components: + - pos: 16.5,36.5 + parent: 1 + type: Transform + - uid: 8241 + components: + - pos: 15.5,36.5 + parent: 1 + type: Transform + - uid: 8242 + components: + - pos: 14.5,36.5 + parent: 1 + type: Transform + - uid: 8243 + components: + - pos: 13.5,36.5 + parent: 1 + type: Transform + - uid: 8244 + components: + - pos: 12.5,36.5 + parent: 1 + type: Transform + - uid: 8245 + components: + - pos: 11.5,36.5 + parent: 1 + type: Transform + - uid: 8246 + components: + - pos: 10.5,36.5 + parent: 1 + type: Transform + - uid: 8247 + components: + - pos: 9.5,36.5 + parent: 1 + type: Transform + - uid: 8248 + components: + - pos: 8.5,36.5 + parent: 1 + type: Transform + - uid: 8249 + components: + - pos: 7.5,36.5 + parent: 1 + type: Transform + - uid: 8250 + components: + - pos: 6.5,36.5 + parent: 1 + type: Transform + - uid: 8251 + components: + - pos: 5.5,36.5 + parent: 1 + type: Transform + - uid: 8252 + components: + - pos: 4.5,36.5 + parent: 1 + type: Transform + - uid: 8253 + components: + - pos: 3.5,36.5 + parent: 1 + type: Transform + - uid: 8254 + components: + - pos: 2.5,36.5 + parent: 1 + type: Transform + - uid: 8255 + components: + - pos: 1.5,36.5 + parent: 1 + type: Transform + - uid: 8256 + components: + - pos: 0.5,36.5 + parent: 1 + type: Transform + - uid: 8257 + components: + - pos: -0.5,36.5 + parent: 1 + type: Transform + - uid: 8258 + components: + - pos: -1.5,36.5 + parent: 1 + type: Transform + - uid: 8259 + components: + - pos: -2.5,36.5 + parent: 1 + type: Transform + - uid: 8260 + components: + - pos: -3.5,36.5 + parent: 1 + type: Transform + - uid: 8261 + components: + - pos: -4.5,36.5 + parent: 1 + type: Transform + - uid: 8262 + components: + - pos: -5.5,36.5 + parent: 1 + type: Transform + - uid: 8263 + components: + - pos: -6.5,36.5 + parent: 1 + type: Transform + - uid: 8264 + components: + - pos: -7.5,36.5 + parent: 1 + type: Transform + - uid: 8265 + components: + - pos: -8.5,36.5 + parent: 1 + type: Transform + - uid: 8266 + components: + - pos: -9.5,36.5 + parent: 1 + type: Transform + - uid: 8267 + components: + - pos: -10.5,36.5 + parent: 1 + type: Transform + - uid: 8268 + components: + - pos: -10.5,37.5 + parent: 1 + type: Transform + - uid: 8269 + components: + - pos: -10.5,38.5 + parent: 1 + type: Transform + - uid: 8270 + components: + - pos: 18.5,36.5 + parent: 1 + type: Transform + - uid: 8271 + components: + - pos: 19.5,36.5 + parent: 1 + type: Transform + - uid: 8272 + components: + - pos: 20.5,36.5 + parent: 1 + type: Transform + - uid: 8273 + components: + - pos: 21.5,36.5 + parent: 1 + type: Transform + - uid: 8274 + components: + - pos: 22.5,36.5 + parent: 1 + type: Transform + - uid: 8275 + components: + - pos: 23.5,36.5 + parent: 1 + type: Transform + - uid: 8276 + components: + - pos: 24.5,36.5 + parent: 1 + type: Transform + - uid: 8277 + components: + - pos: 25.5,36.5 + parent: 1 + type: Transform + - uid: 8278 + components: + - pos: 26.5,36.5 + parent: 1 + type: Transform + - uid: 8279 + components: + - pos: 27.5,36.5 + parent: 1 + type: Transform + - uid: 8280 + components: + - pos: 28.5,36.5 + parent: 1 + type: Transform + - uid: 8281 + components: + - pos: 29.5,36.5 + parent: 1 + type: Transform + - uid: 8282 + components: + - pos: 30.5,36.5 + parent: 1 + type: Transform + - uid: 8283 + components: + - pos: 31.5,36.5 + parent: 1 + type: Transform + - uid: 8284 + components: + - pos: 32.5,36.5 + parent: 1 + type: Transform + - uid: 8285 + components: + - pos: 33.5,36.5 + parent: 1 + type: Transform + - uid: 8286 + components: + - pos: 34.5,36.5 + parent: 1 + type: Transform + - uid: 8287 + components: + - pos: 34.5,37.5 + parent: 1 + type: Transform + - uid: 8288 + components: + - pos: 35.5,37.5 + parent: 1 + type: Transform + - uid: 8289 + components: + - pos: 35.5,38.5 + parent: 1 + type: Transform + - uid: 8290 + components: + - pos: 36.5,38.5 + parent: 1 + type: Transform + - uid: 8291 + components: + - pos: 36.5,39.5 + parent: 1 + type: Transform + - uid: 8292 + components: + - pos: 37.5,39.5 + parent: 1 + type: Transform + - uid: 8293 + components: + - pos: 38.5,39.5 + parent: 1 + type: Transform + - uid: 8294 + components: + - pos: 39.5,38.5 + parent: 1 + type: Transform + - uid: 8295 + components: + - pos: 40.5,38.5 + parent: 1 + type: Transform + - uid: 8296 + components: + - pos: 40.5,37.5 + parent: 1 + type: Transform + - uid: 8297 + components: + - pos: 41.5,37.5 + parent: 1 + type: Transform + - uid: 8298 + components: + - pos: 41.5,36.5 + parent: 1 + type: Transform + - uid: 8299 + components: + - pos: 42.5,36.5 + parent: 1 + type: Transform + - uid: 8300 + components: + - pos: 42.5,35.5 + parent: 1 + type: Transform + - uid: 8301 + components: + - pos: 43.5,35.5 + parent: 1 + type: Transform + - uid: 8302 + components: + - pos: 43.5,34.5 + parent: 1 + type: Transform + - uid: 8303 + components: + - pos: 44.5,34.5 + parent: 1 + type: Transform + - uid: 8304 + components: + - pos: 44.5,33.5 + parent: 1 + type: Transform + - uid: 8306 + components: + - pos: 45.5,33.5 + parent: 1 + type: Transform + - uid: 8307 + components: + - pos: 45.5,32.5 + parent: 1 + type: Transform + - uid: 8308 + components: + - pos: 47.5,32.5 + parent: 1 + type: Transform + - uid: 8309 + components: + - pos: 46.5,32.5 + parent: 1 + type: Transform + - uid: 8310 + components: + - pos: 48.5,32.5 + parent: 1 + type: Transform + - uid: 8311 + components: + - pos: 49.5,32.5 + parent: 1 + type: Transform + - uid: 8312 + components: + - pos: 50.5,32.5 + parent: 1 + type: Transform + - uid: 8313 + components: + - pos: 51.5,32.5 + parent: 1 + type: Transform + - uid: 8314 + components: + - pos: 52.5,32.5 + parent: 1 + type: Transform + - uid: 8315 + components: + - pos: 53.5,32.5 + parent: 1 + type: Transform + - uid: 8316 + components: + - pos: 53.5,31.5 + parent: 1 + type: Transform + - uid: 8317 + components: + - pos: 54.5,31.5 + parent: 1 + type: Transform + - uid: 8318 + components: + - pos: 54.5,30.5 + parent: 1 + type: Transform + - uid: 8319 + components: + - pos: 55.5,30.5 + parent: 1 + type: Transform + - uid: 8320 + components: + - pos: 55.5,29.5 + parent: 1 + type: Transform + - uid: 8321 + components: + - pos: 56.5,29.5 + parent: 1 + type: Transform + - uid: 8322 + components: + - pos: 56.5,28.5 + parent: 1 + type: Transform + - uid: 8323 + components: + - pos: 57.5,28.5 + parent: 1 + type: Transform + - uid: 8324 + components: + - pos: 57.5,27.5 + parent: 1 + type: Transform + - uid: 8325 + components: + - pos: 58.5,27.5 + parent: 1 + type: Transform + - uid: 8326 + components: + - pos: 58.5,26.5 + parent: 1 + type: Transform + - uid: 8327 + components: + - pos: 58.5,25.5 + parent: 1 + type: Transform + - uid: 8328 + components: + - pos: 58.5,24.5 + parent: 1 + type: Transform + - uid: 8330 + components: + - pos: 57.5,23.5 + parent: 1 + type: Transform + - uid: 8331 + components: + - pos: 57.5,22.5 + parent: 1 + type: Transform + - uid: 8332 + components: + - pos: 57.5,21.5 + parent: 1 + type: Transform + - uid: 8333 + components: + - pos: 57.5,20.5 + parent: 1 + type: Transform + - uid: 8334 + components: + - pos: 57.5,19.5 + parent: 1 + type: Transform + - uid: 8335 + components: + - pos: 57.5,18.5 + parent: 1 + type: Transform + - uid: 8336 + components: + - pos: 57.5,17.5 + parent: 1 + type: Transform + - uid: 8337 + components: + - pos: 57.5,16.5 + parent: 1 + type: Transform + - uid: 8338 + components: + - pos: 57.5,15.5 + parent: 1 + type: Transform + - uid: 8339 + components: + - pos: 57.5,14.5 + parent: 1 + type: Transform + - uid: 8340 + components: + - pos: 58.5,14.5 + parent: 1 + type: Transform + - uid: 8341 + components: + - pos: 59.5,14.5 + parent: 1 + type: Transform + - uid: 8342 + components: + - pos: 59.5,13.5 + parent: 1 + type: Transform + - uid: 8343 + components: + - pos: 59.5,12.5 + parent: 1 + type: Transform + - uid: 8344 + components: + - pos: 59.5,11.5 + parent: 1 + type: Transform + - uid: 8345 + components: + - pos: 59.5,10.5 + parent: 1 + type: Transform + - uid: 8346 + components: + - pos: 59.5,9.5 + parent: 1 + type: Transform + - uid: 8347 + components: + - pos: 59.5,8.5 + parent: 1 + type: Transform + - uid: 8348 + components: + - pos: 59.5,7.5 + parent: 1 + type: Transform + - uid: 8349 + components: + - pos: 59.5,6.5 + parent: 1 + type: Transform + - uid: 8350 + components: + - pos: 59.5,5.5 + parent: 1 + type: Transform + - uid: 8351 + components: + - pos: 60.5,5.5 + parent: 1 + type: Transform + - uid: 8352 + components: + - pos: 61.5,5.5 + parent: 1 + type: Transform + - uid: 8353 + components: + - pos: 62.5,5.5 + parent: 1 + type: Transform + - uid: 8354 + components: + - pos: 63.5,5.5 + parent: 1 + type: Transform + - uid: 8355 + components: + - pos: 64.5,5.5 + parent: 1 + type: Transform + - uid: 8356 + components: + - pos: 65.5,5.5 + parent: 1 + type: Transform + - uid: 8357 + components: + - pos: 66.5,5.5 + parent: 1 + type: Transform + - uid: 8358 + components: + - pos: 67.5,5.5 + parent: 1 + type: Transform + - uid: 8359 + components: + - pos: 68.5,5.5 + parent: 1 + type: Transform + - uid: 8360 + components: + - pos: 69.5,5.5 + parent: 1 + type: Transform + - uid: 8361 + components: + - pos: 70.5,5.5 + parent: 1 + type: Transform + - uid: 8362 + components: + - pos: 71.5,5.5 + parent: 1 + type: Transform + - uid: 8363 + components: + - pos: 72.5,5.5 + parent: 1 + type: Transform + - uid: 8364 + components: + - pos: 73.5,5.5 + parent: 1 + type: Transform + - uid: 8365 + components: + - pos: 74.5,5.5 + parent: 1 + type: Transform + - uid: 8366 + components: + - pos: 75.5,5.5 + parent: 1 + type: Transform + - uid: 8367 + components: + - pos: 76.5,5.5 + parent: 1 + type: Transform + - uid: 8368 + components: + - pos: 77.5,5.5 + parent: 1 + type: Transform + - uid: 8369 + components: + - pos: 78.5,5.5 + parent: 1 + type: Transform + - uid: 8370 + components: + - pos: 79.5,5.5 + parent: 1 + type: Transform + - uid: 8371 + components: + - pos: 80.5,5.5 + parent: 1 + type: Transform + - uid: 8372 + components: + - pos: 81.5,5.5 + parent: 1 + type: Transform + - uid: 8373 + components: + - pos: 82.5,5.5 + parent: 1 + type: Transform + - uid: 8374 + components: + - pos: 83.5,5.5 + parent: 1 + type: Transform + - uid: 8375 + components: + - pos: 84.5,5.5 + parent: 1 + type: Transform + - uid: 8376 + components: + - pos: 85.5,5.5 + parent: 1 + type: Transform + - uid: 8377 + components: + - pos: 86.5,5.5 + parent: 1 + type: Transform + - uid: 8378 + components: + - pos: 87.5,5.5 + parent: 1 + type: Transform + - uid: 8379 + components: + - pos: 88.5,5.5 + parent: 1 + type: Transform + - uid: 8380 + components: + - pos: 89.5,5.5 + parent: 1 + type: Transform + - uid: 8381 + components: + - pos: 90.5,5.5 + parent: 1 + type: Transform + - uid: 8382 + components: + - pos: 91.5,5.5 + parent: 1 + type: Transform + - uid: 8383 + components: + - pos: 91.5,6.5 + parent: 1 + type: Transform + - uid: 8384 + components: + - pos: 91.5,7.5 + parent: 1 + type: Transform + - uid: 8395 + components: + - pos: 96.5,13.5 + parent: 1 + type: Transform + - uid: 8396 + components: + - pos: 96.5,14.5 + parent: 1 + type: Transform + - uid: 8397 + components: + - pos: 96.5,15.5 + parent: 1 + type: Transform + - uid: 8398 + components: + - pos: 96.5,16.5 + parent: 1 + type: Transform + - uid: 8399 + components: + - pos: 97.5,16.5 + parent: 1 + type: Transform + - uid: 8400 + components: + - pos: 98.5,16.5 + parent: 1 + type: Transform + - uid: 8401 + components: + - pos: 98.5,17.5 + parent: 1 + type: Transform + - uid: 8402 + components: + - pos: 95.5,16.5 + parent: 1 + type: Transform + - uid: 8403 + components: + - pos: 94.5,16.5 + parent: 1 + type: Transform + - uid: 8404 + components: + - pos: 93.5,16.5 + parent: 1 + type: Transform + - uid: 8405 + components: + - pos: 92.5,16.5 + parent: 1 + type: Transform + - uid: 8406 + components: + - pos: 91.5,16.5 + parent: 1 + type: Transform + - uid: 8407 + components: + - pos: 91.5,17.5 + parent: 1 + type: Transform + - uid: 8408 + components: + - pos: 91.5,18.5 + parent: 1 + type: Transform + - uid: 8409 + components: + - pos: 91.5,19.5 + parent: 1 + type: Transform + - uid: 8410 + components: + - pos: 91.5,20.5 + parent: 1 + type: Transform + - uid: 8411 + components: + - pos: 91.5,21.5 + parent: 1 + type: Transform + - uid: 8412 + components: + - pos: 91.5,22.5 + parent: 1 + type: Transform + - uid: 8413 + components: + - pos: -18.5,22.5 + parent: 1 + type: Transform + - uid: 8414 + components: + - pos: -18.5,23.5 + parent: 1 + type: Transform + - uid: 8415 + components: + - pos: -18.5,24.5 + parent: 1 + type: Transform + - uid: 8416 + components: + - pos: -18.5,25.5 + parent: 1 + type: Transform + - uid: 8417 + components: + - pos: -18.5,26.5 + parent: 1 + type: Transform + - uid: 8418 + components: + - pos: -17.5,26.5 + parent: 1 + type: Transform + - uid: 8419 + components: + - pos: -16.5,26.5 + parent: 1 + type: Transform + - uid: 8420 + components: + - pos: -16.5,27.5 + parent: 1 + type: Transform + - uid: 8421 + components: + - pos: -15.5,27.5 + parent: 1 + type: Transform + - uid: 8422 + components: + - pos: -14.5,27.5 + parent: 1 + type: Transform + - uid: 8423 + components: + - pos: -13.5,27.5 + parent: 1 + type: Transform + - uid: 8424 + components: + - pos: -12.5,27.5 + parent: 1 + type: Transform + - uid: 8425 + components: + - pos: -11.5,27.5 + parent: 1 + type: Transform + - uid: 8426 + components: + - pos: -10.5,27.5 + parent: 1 + type: Transform + - uid: 8427 + components: + - pos: -9.5,27.5 + parent: 1 + type: Transform + - uid: 8428 + components: + - pos: -8.5,27.5 + parent: 1 + type: Transform + - uid: 8429 + components: + - pos: -7.5,27.5 + parent: 1 + type: Transform + - uid: 8430 + components: + - pos: -6.5,27.5 + parent: 1 + type: Transform + - uid: 8431 + components: + - pos: -5.5,27.5 + parent: 1 + type: Transform + - uid: 8432 + components: + - pos: -4.5,27.5 + parent: 1 + type: Transform + - uid: 8433 + components: + - pos: -3.5,27.5 + parent: 1 + type: Transform + - uid: 8434 + components: + - pos: -2.5,27.5 + parent: 1 + type: Transform + - uid: 8435 + components: + - pos: -1.5,27.5 + parent: 1 + type: Transform + - uid: 8436 + components: + - pos: -0.5,27.5 + parent: 1 + type: Transform + - uid: 8437 + components: + - pos: 0.5,27.5 + parent: 1 + type: Transform + - uid: 8438 + components: + - pos: 1.5,27.5 + parent: 1 + type: Transform + - uid: 8439 + components: + - pos: 2.5,27.5 + parent: 1 + type: Transform + - uid: 8440 + components: + - pos: 3.5,27.5 + parent: 1 + type: Transform + - uid: 8441 + components: + - pos: 4.5,27.5 + parent: 1 + type: Transform + - uid: 8442 + components: + - pos: 5.5,27.5 + parent: 1 + type: Transform + - uid: 8443 + components: + - pos: 6.5,27.5 + parent: 1 + type: Transform + - uid: 8444 + components: + - pos: 7.5,27.5 + parent: 1 + type: Transform + - uid: 8445 + components: + - pos: 8.5,27.5 + parent: 1 + type: Transform + - uid: 8446 + components: + - pos: 9.5,27.5 + parent: 1 + type: Transform + - uid: 8447 + components: + - pos: 10.5,27.5 + parent: 1 + type: Transform + - uid: 8448 + components: + - pos: 11.5,27.5 + parent: 1 + type: Transform + - uid: 8449 + components: + - pos: 12.5,27.5 + parent: 1 + type: Transform + - uid: 8450 + components: + - pos: 13.5,27.5 + parent: 1 + type: Transform + - uid: 8451 + components: + - pos: 14.5,27.5 + parent: 1 + type: Transform + - uid: 8452 + components: + - pos: 15.5,27.5 + parent: 1 + type: Transform + - uid: 8453 + components: + - pos: 16.5,27.5 + parent: 1 + type: Transform + - uid: 8454 + components: + - pos: 17.5,27.5 + parent: 1 + type: Transform + - uid: 8455 + components: + - pos: 18.5,27.5 + parent: 1 + type: Transform + - uid: 8456 + components: + - pos: 19.5,27.5 + parent: 1 + type: Transform + - uid: 8457 + components: + - pos: 20.5,27.5 + parent: 1 + type: Transform + - uid: 8458 + components: + - pos: 21.5,27.5 + parent: 1 + type: Transform + - uid: 8459 + components: + - pos: 22.5,27.5 + parent: 1 + type: Transform + - uid: 8460 + components: + - pos: 23.5,27.5 + parent: 1 + type: Transform + - uid: 8461 + components: + - pos: 24.5,27.5 + parent: 1 + type: Transform + - uid: 8462 + components: + - pos: 25.5,27.5 + parent: 1 + type: Transform + - uid: 8463 + components: + - pos: 25.5,26.5 + parent: 1 + type: Transform + - uid: 8464 + components: + - pos: 26.5,26.5 + parent: 1 + type: Transform + - uid: 8465 + components: + - pos: 27.5,26.5 + parent: 1 + type: Transform + - uid: 8466 + components: + - pos: 28.5,26.5 + parent: 1 + type: Transform + - uid: 8467 + components: + - pos: 28.5,25.5 + parent: 1 + type: Transform + - uid: 8702 + components: + - pos: -69.5,4.5 + parent: 1 + type: Transform + - uid: 8794 + components: + - pos: -59.5,-17.5 + parent: 1 + type: Transform + - uid: 11333 + components: + - pos: 7.5,-29.5 + parent: 1 + type: Transform + - uid: 11463 + components: + - pos: 18.5,-29.5 + parent: 1 + type: Transform + - uid: 11809 + components: + - pos: -52.5,48.5 + parent: 1 + type: Transform + - uid: 11810 + components: + - pos: -45.5,64.5 + parent: 1 + type: Transform + - uid: 11811 + components: + - pos: -45.5,63.5 + parent: 1 + type: Transform + - uid: 11812 + components: + - pos: -45.5,62.5 + parent: 1 + type: Transform + - uid: 11813 + components: + - pos: -45.5,61.5 + parent: 1 + type: Transform + - uid: 11814 + components: + - pos: -45.5,60.5 + parent: 1 + type: Transform + - uid: 11815 + components: + - pos: -45.5,59.5 + parent: 1 + type: Transform + - uid: 11816 + components: + - pos: -45.5,58.5 + parent: 1 + type: Transform + - uid: 11817 + components: + - pos: -45.5,57.5 + parent: 1 + type: Transform + - uid: 11818 + components: + - pos: -45.5,56.5 + parent: 1 + type: Transform + - uid: 11819 + components: + - pos: -45.5,55.5 + parent: 1 + type: Transform + - uid: 11820 + components: + - pos: -45.5,54.5 + parent: 1 + type: Transform + - uid: 11821 + components: + - pos: -45.5,53.5 + parent: 1 + type: Transform + - uid: 11822 + components: + - pos: -45.5,52.5 + parent: 1 + type: Transform + - uid: 11823 + components: + - pos: -45.5,51.5 + parent: 1 + type: Transform + - uid: 11824 + components: + - pos: -45.5,50.5 + parent: 1 + type: Transform + - uid: 11825 + components: + - pos: -45.5,49.5 + parent: 1 + type: Transform + - uid: 11826 + components: + - pos: -45.5,48.5 + parent: 1 + type: Transform + - uid: 11827 + components: + - pos: -45.5,47.5 + parent: 1 + type: Transform + - uid: 11828 + components: + - pos: -45.5,46.5 + parent: 1 + type: Transform + - uid: 11829 + components: + - pos: -45.5,45.5 + parent: 1 + type: Transform + - uid: 11830 + components: + - pos: -45.5,44.5 + parent: 1 + type: Transform + - uid: 11831 + components: + - pos: -45.5,43.5 + parent: 1 + type: Transform + - uid: 11832 + components: + - pos: -45.5,42.5 + parent: 1 + type: Transform + - uid: 11833 + components: + - pos: -45.5,41.5 + parent: 1 + type: Transform + - uid: 11835 + components: + - pos: -52.5,50.5 + parent: 1 + type: Transform + - uid: 11836 + components: + - pos: -51.5,50.5 + parent: 1 + type: Transform + - uid: 11837 + components: + - pos: -50.5,50.5 + parent: 1 + type: Transform + - uid: 11838 + components: + - pos: -49.5,50.5 + parent: 1 + type: Transform + - uid: 11839 + components: + - pos: -48.5,50.5 + parent: 1 + type: Transform + - uid: 11840 + components: + - pos: -47.5,50.5 + parent: 1 + type: Transform + - uid: 11841 + components: + - pos: -51.5,48.5 + parent: 1 + type: Transform + - uid: 11842 + components: + - pos: -50.5,48.5 + parent: 1 + type: Transform + - uid: 11843 + components: + - pos: -49.5,48.5 + parent: 1 + type: Transform + - uid: 11844 + components: + - pos: -48.5,48.5 + parent: 1 + type: Transform + - uid: 11845 + components: + - pos: -47.5,48.5 + parent: 1 + type: Transform + - uid: 11846 + components: + - pos: -47.5,49.5 + parent: 1 + type: Transform + - uid: 11847 + components: + - pos: -46.5,49.5 + parent: 1 + type: Transform + - uid: 11848 + components: + - pos: -38.5,50.5 + parent: 1 + type: Transform + - uid: 11849 + components: + - pos: -39.5,50.5 + parent: 1 + type: Transform + - uid: 11850 + components: + - pos: -40.5,50.5 + parent: 1 + type: Transform + - uid: 11851 + components: + - pos: -41.5,50.5 + parent: 1 + type: Transform + - uid: 11852 + components: + - pos: -42.5,50.5 + parent: 1 + type: Transform + - uid: 11853 + components: + - pos: -43.5,50.5 + parent: 1 + type: Transform + - uid: 11854 + components: + - pos: -38.5,48.5 + parent: 1 + type: Transform + - uid: 11855 + components: + - pos: -39.5,48.5 + parent: 1 + type: Transform + - uid: 11856 + components: + - pos: -40.5,48.5 + parent: 1 + type: Transform + - uid: 11857 + components: + - pos: -41.5,48.5 + parent: 1 + type: Transform + - uid: 11858 + components: + - pos: -42.5,48.5 + parent: 1 + type: Transform + - uid: 11859 + components: + - pos: -43.5,48.5 + parent: 1 + type: Transform + - uid: 11860 + components: + - pos: -43.5,49.5 + parent: 1 + type: Transform + - uid: 11861 + components: + - pos: -44.5,49.5 + parent: 1 + type: Transform + - uid: 11862 + components: + - pos: -52.5,52.5 + parent: 1 + type: Transform + - uid: 11863 + components: + - pos: -51.5,52.5 + parent: 1 + type: Transform + - uid: 11864 + components: + - pos: -50.5,52.5 + parent: 1 + type: Transform + - uid: 11865 + components: + - pos: -49.5,52.5 + parent: 1 + type: Transform + - uid: 11866 + components: + - pos: -48.5,52.5 + parent: 1 + type: Transform + - uid: 11867 + components: + - pos: -47.5,52.5 + parent: 1 + type: Transform + - uid: 11868 + components: + - pos: -52.5,54.5 + parent: 1 + type: Transform + - uid: 11869 + components: + - pos: -51.5,54.5 + parent: 1 + type: Transform + - uid: 11870 + components: + - pos: -50.5,54.5 + parent: 1 + type: Transform + - uid: 11871 + components: + - pos: -49.5,54.5 + parent: 1 + type: Transform + - uid: 11872 + components: + - pos: -48.5,54.5 + parent: 1 + type: Transform + - uid: 11873 + components: + - pos: -47.5,54.5 + parent: 1 + type: Transform + - uid: 11874 + components: + - pos: -47.5,53.5 + parent: 1 + type: Transform + - uid: 11875 + components: + - pos: -46.5,53.5 + parent: 1 + type: Transform + - uid: 11876 + components: + - pos: -38.5,52.5 + parent: 1 + type: Transform + - uid: 11877 + components: + - pos: -39.5,52.5 + parent: 1 + type: Transform + - uid: 11878 + components: + - pos: -40.5,52.5 + parent: 1 + type: Transform + - uid: 11879 + components: + - pos: -41.5,52.5 + parent: 1 + type: Transform + - uid: 11880 + components: + - pos: -42.5,52.5 + parent: 1 + type: Transform + - uid: 11881 + components: + - pos: -43.5,52.5 + parent: 1 + type: Transform + - uid: 11882 + components: + - pos: -38.5,54.5 + parent: 1 + type: Transform + - uid: 11883 + components: + - pos: -39.5,54.5 + parent: 1 + type: Transform + - uid: 11884 + components: + - pos: -40.5,54.5 + parent: 1 + type: Transform + - uid: 11885 + components: + - pos: -41.5,54.5 + parent: 1 + type: Transform + - uid: 11886 + components: + - pos: -42.5,54.5 + parent: 1 + type: Transform + - uid: 11887 + components: + - pos: -43.5,54.5 + parent: 1 + type: Transform + - uid: 11888 + components: + - pos: -43.5,53.5 + parent: 1 + type: Transform + - uid: 11889 + components: + - pos: -44.5,53.5 + parent: 1 + type: Transform + - uid: 11890 + components: + - pos: -38.5,58.5 + parent: 1 + type: Transform + - uid: 11891 + components: + - pos: -39.5,58.5 + parent: 1 + type: Transform + - uid: 11892 + components: + - pos: -40.5,58.5 + parent: 1 + type: Transform + - uid: 11893 + components: + - pos: -41.5,58.5 + parent: 1 + type: Transform + - uid: 11894 + components: + - pos: -42.5,58.5 + parent: 1 + type: Transform + - uid: 11895 + components: + - pos: -43.5,58.5 + parent: 1 + type: Transform + - uid: 11896 + components: + - pos: -38.5,56.5 + parent: 1 + type: Transform + - uid: 11897 + components: + - pos: -39.5,56.5 + parent: 1 + type: Transform + - uid: 11898 + components: + - pos: -40.5,56.5 + parent: 1 + type: Transform + - uid: 11899 + components: + - pos: -41.5,56.5 + parent: 1 + type: Transform + - uid: 11900 + components: + - pos: -42.5,56.5 + parent: 1 + type: Transform + - uid: 11901 + components: + - pos: -43.5,56.5 + parent: 1 + type: Transform + - uid: 11902 + components: + - pos: -43.5,57.5 + parent: 1 + type: Transform + - uid: 11903 + components: + - pos: -44.5,57.5 + parent: 1 + type: Transform + - uid: 11941 + components: + - pos: -44.5,41.5 + parent: 1 + type: Transform + - uid: 11942 + components: + - pos: -43.5,41.5 + parent: 1 + type: Transform + - uid: 11943 + components: + - pos: -42.5,41.5 + parent: 1 + type: Transform + - uid: 11944 + components: + - pos: -41.5,41.5 + parent: 1 + type: Transform + - uid: 11945 + components: + - pos: -40.5,41.5 + parent: 1 + type: Transform + - uid: 11947 + components: + - pos: -40.5,40.5 + parent: 1 + type: Transform + - uid: 11948 + components: + - pos: -39.5,40.5 + parent: 1 + type: Transform + - uid: 11949 + components: + - pos: -38.5,40.5 + parent: 1 + type: Transform + - uid: 11950 + components: + - pos: -38.5,41.5 + parent: 1 + type: Transform + - uid: 11951 + components: + - pos: -38.5,42.5 + parent: 1 + type: Transform + - uid: 11952 + components: + - pos: -39.5,42.5 + parent: 1 + type: Transform + - uid: 11991 + components: + - pos: -39.5,39.5 + parent: 1 + type: Transform + - uid: 11992 + components: + - pos: -39.5,38.5 + parent: 1 + type: Transform + - uid: 12017 + components: + - pos: -47.5,-21.5 + parent: 1 + type: Transform + - uid: 12023 + components: + - pos: -46.5,-21.5 + parent: 1 + type: Transform + - uid: 12024 + components: + - pos: -48.5,-21.5 + parent: 1 + type: Transform + - uid: 12025 + components: + - pos: -49.5,-21.5 + parent: 1 + type: Transform + - uid: 12690 + components: + - pos: 92.5,11.5 + parent: 1 + type: Transform + - uid: 14247 + components: + - pos: 91.5,8.5 + parent: 1 + type: Transform + - uid: 14254 + components: + - pos: 95.5,13.5 + parent: 1 + type: Transform + - uid: 14409 + components: + - pos: 17.5,-29.5 + parent: 1 + type: Transform + - uid: 14932 + components: + - pos: -72.5,-1.5 + parent: 1 + type: Transform + - uid: 14933 + components: + - pos: -73.5,-1.5 + parent: 1 + type: Transform + - uid: 14934 + components: + - pos: -74.5,-1.5 + parent: 1 + type: Transform + - uid: 14935 + components: + - pos: -72.5,-0.5 + parent: 1 + type: Transform + - uid: 14936 + components: + - pos: -71.5,-0.5 + parent: 1 + type: Transform + - uid: 14937 + components: + - pos: -70.5,-0.5 + parent: 1 + type: Transform + - uid: 14938 + components: + - pos: -70.5,0.5 + parent: 1 + type: Transform + - uid: 14939 + components: + - pos: -70.5,1.5 + parent: 1 + type: Transform + - uid: 14940 + components: + - pos: -75.5,4.5 + parent: 1 + type: Transform + - uid: 14965 + components: + - pos: -74.5,4.5 + parent: 1 + type: Transform + - uid: 15069 + components: + - pos: -73.5,4.5 + parent: 1 + type: Transform + - uid: 15758 + components: + - pos: -72.5,4.5 + parent: 1 + type: Transform + - uid: 15926 + components: + - pos: -71.5,4.5 + parent: 1 + type: Transform + - uid: 15953 + components: + - pos: -70.5,4.5 + parent: 1 + type: Transform + - uid: 15963 + components: + - pos: -70.5,3.5 + parent: 1 + type: Transform + - uid: 15964 + components: + - pos: -70.5,2.5 + parent: 1 + type: Transform + - uid: 16004 + components: + - pos: -52.5,-8.5 + parent: 1 + type: Transform + - uid: 17394 + components: + - pos: -68.5,4.5 + parent: 1 + type: Transform + - uid: 17395 + components: + - pos: -67.5,4.5 + parent: 1 + type: Transform + - uid: 17396 + components: + - pos: -66.5,4.5 + parent: 1 + type: Transform + - uid: 17397 + components: + - pos: -65.5,4.5 + parent: 1 + type: Transform + - uid: 17398 + components: + - pos: -64.5,4.5 + parent: 1 + type: Transform + - uid: 17399 + components: + - pos: -63.5,4.5 + parent: 1 + type: Transform + - uid: 17400 + components: + - pos: -63.5,2.5 + parent: 1 + type: Transform + - uid: 17401 + components: + - pos: -63.5,1.5 + parent: 1 + type: Transform + - uid: 17402 + components: + - pos: -63.5,0.5 + parent: 1 + type: Transform + - uid: 17403 + components: + - pos: -63.5,-0.5 + parent: 1 + type: Transform + - uid: 17404 + components: + - pos: -63.5,-1.5 + parent: 1 + type: Transform + - uid: 17442 + components: + - pos: -63.5,-2.5 + parent: 1 + type: Transform + - uid: 17551 + components: + - pos: -51.5,1.5 + parent: 1 + type: Transform + - uid: 17552 + components: + - pos: -51.5,2.5 + parent: 1 + type: Transform + - uid: 17553 + components: + - pos: -51.5,3.5 + parent: 1 + type: Transform + - uid: 17554 + components: + - pos: -51.5,4.5 + parent: 1 + type: Transform + - uid: 17555 + components: + - pos: -51.5,5.5 + parent: 1 + type: Transform + - uid: 17556 + components: + - pos: -51.5,6.5 + parent: 1 + type: Transform + - uid: 17557 + components: + - pos: -51.5,7.5 + parent: 1 + type: Transform + - uid: 17558 + components: + - pos: -52.5,7.5 + parent: 1 + type: Transform + - uid: 17559 + components: + - pos: -53.5,7.5 + parent: 1 + type: Transform + - uid: 17560 + components: + - pos: -53.5,8.5 + parent: 1 + type: Transform + - uid: 17561 + components: + - pos: -53.5,9.5 + parent: 1 + type: Transform + - uid: 17562 + components: + - pos: -63.5,-3.5 + parent: 1 + type: Transform + - uid: 18837 + components: + - pos: -63.5,-4.5 + parent: 1 + type: Transform + - uid: 18906 + components: + - pos: -63.5,-5.5 + parent: 1 + type: Transform + - uid: 18907 + components: + - pos: -62.5,-5.5 + parent: 1 + type: Transform + - uid: 18908 + components: + - pos: -61.5,-5.5 + parent: 1 + type: Transform + - uid: 20720 + components: + - pos: -61.5,-6.5 + parent: 1 + type: Transform + - uid: 21035 + components: + - pos: 130.5,5.5 + parent: 1 + type: Transform + - uid: 21036 + components: + - pos: 129.5,5.5 + parent: 1 + type: Transform + - uid: 21037 + components: + - pos: 129.5,4.5 + parent: 1 + type: Transform + - uid: 21038 + components: + - pos: 129.5,3.5 + parent: 1 + type: Transform + - uid: 21039 + components: + - pos: 129.5,2.5 + parent: 1 + type: Transform + - uid: 21040 + components: + - pos: 130.5,2.5 + parent: 1 + type: Transform + - uid: 21041 + components: + - pos: 130.5,1.5 + parent: 1 + type: Transform + - uid: 21042 + components: + - pos: 130.5,0.5 + parent: 1 + type: Transform + - uid: 21043 + components: + - pos: 129.5,0.5 + parent: 1 + type: Transform + - uid: 21044 + components: + - pos: 128.5,0.5 + parent: 1 + type: Transform + - uid: 21045 + components: + - pos: 128.5,7.5 + parent: 1 + type: Transform + - uid: 21046 + components: + - pos: 127.5,7.5 + parent: 1 + type: Transform + - uid: 21047 + components: + - pos: 127.5,6.5 + parent: 1 + type: Transform + - uid: 21048 + components: + - pos: 127.5,5.5 + parent: 1 + type: Transform + - uid: 21049 + components: + - pos: 127.5,4.5 + parent: 1 + type: Transform + - uid: 21050 + components: + - pos: 127.5,3.5 + parent: 1 + type: Transform + - uid: 21051 + components: + - pos: 127.5,2.5 + parent: 1 + type: Transform + - uid: 21052 + components: + - pos: 127.5,1.5 + parent: 1 + type: Transform + - uid: 21053 + components: + - pos: 127.5,0.5 + parent: 1 + type: Transform + - uid: 21514 + components: + - pos: -61.5,-7.5 + parent: 1 + type: Transform + - uid: 21515 + components: + - pos: -61.5,-8.5 + parent: 1 + type: Transform + - uid: 21517 + components: + - pos: -61.5,-9.5 + parent: 1 + type: Transform + - uid: 21518 + components: + - pos: -61.5,-10.5 + parent: 1 + type: Transform + - uid: 21520 + components: + - pos: -61.5,-11.5 + parent: 1 + type: Transform + - uid: 21521 + components: + - pos: -59.5,-15.5 + parent: 1 + type: Transform + - uid: 21522 + components: + - pos: -58.5,-16.5 + parent: 1 + type: Transform + - uid: 21523 + components: + - pos: -57.5,-16.5 + parent: 1 + type: Transform + - uid: 21524 + components: + - pos: -56.5,-16.5 + parent: 1 + type: Transform + - uid: 21551 + components: + - pos: -61.5,-12.5 + parent: 1 + type: Transform + - uid: 21554 + components: + - pos: -61.5,-13.5 + parent: 1 + type: Transform + - uid: 21579 + components: + - pos: -61.5,-14.5 + parent: 1 + type: Transform + - uid: 21580 + components: + - pos: -61.5,-15.5 + parent: 1 + type: Transform + - uid: 21581 + components: + - pos: -61.5,-16.5 + parent: 1 + type: Transform + - uid: 21590 + components: + - pos: -60.5,-16.5 + parent: 1 + type: Transform + - uid: 22462 + components: + - pos: 57.5,24.5 + parent: 1 + type: Transform + - uid: 22601 + components: + - pos: 45.5,-27.5 + parent: 1 + type: Transform + - uid: 22602 + components: + - pos: 45.5,-26.5 + parent: 1 + type: Transform + - uid: 22603 + components: + - pos: 45.5,-25.5 + parent: 1 + type: Transform + - uid: 22604 + components: + - pos: 46.5,-25.5 + parent: 1 + type: Transform + - uid: 22605 + components: + - pos: 47.5,-25.5 + parent: 1 + type: Transform + - uid: 22606 + components: + - pos: 48.5,-25.5 + parent: 1 + type: Transform + - uid: 22607 + components: + - pos: 49.5,-25.5 + parent: 1 + type: Transform + - uid: 22608 + components: + - pos: 50.5,-25.5 + parent: 1 + type: Transform + - uid: 23184 + components: + - pos: -76.5,6.5 + parent: 1 + type: Transform + - uid: 23185 + components: + - pos: -75.5,6.5 + parent: 1 + type: Transform + - uid: 23186 + components: + - pos: -74.5,6.5 + parent: 1 + type: Transform + - uid: 23187 + components: + - pos: -73.5,6.5 + parent: 1 + type: Transform + - uid: 23188 + components: + - pos: -72.5,6.5 + parent: 1 + type: Transform + - uid: 23189 + components: + - pos: -71.5,6.5 + parent: 1 + type: Transform + - uid: 23190 + components: + - pos: -70.5,6.5 + parent: 1 + type: Transform + - uid: 23191 + components: + - pos: -70.5,5.5 + parent: 1 + type: Transform + - uid: 23192 + components: + - pos: -76.5,7.5 + parent: 1 + type: Transform + - uid: 23193 + components: + - pos: -76.5,8.5 + parent: 1 + type: Transform + - uid: 23194 + components: + - pos: -76.5,9.5 + parent: 1 + type: Transform + - uid: 23195 + components: + - pos: -76.5,10.5 + parent: 1 + type: Transform + - uid: 24173 + components: + - pos: 8.5,-27.5 + parent: 1 + type: Transform + - uid: 24174 + components: + - pos: 8.5,-26.5 + parent: 1 + type: Transform + - uid: 24175 + components: + - pos: 9.5,-26.5 + parent: 1 + type: Transform + - uid: 24176 + components: + - pos: 10.5,-26.5 + parent: 1 + type: Transform + - uid: 24177 + components: + - pos: 11.5,-26.5 + parent: 1 + type: Transform + - uid: 24178 + components: + - pos: 12.5,-26.5 + parent: 1 + type: Transform + - uid: 24179 + components: + - pos: 13.5,-26.5 + parent: 1 + type: Transform + - uid: 24180 + components: + - pos: 14.5,-26.5 + parent: 1 + type: Transform + - uid: 24181 + components: + - pos: 15.5,-26.5 + parent: 1 + type: Transform + - uid: 24182 + components: + - pos: 16.5,-26.5 + parent: 1 + type: Transform + - uid: 24183 + components: + - pos: 16.5,-27.5 + parent: 1 + type: Transform + - uid: 24184 + components: + - pos: 16.5,-28.5 + parent: 1 + type: Transform + - uid: 24185 + components: + - pos: 16.5,-29.5 + parent: 1 + type: Transform + - uid: 24577 + components: + - pos: -75.5,-1.5 + parent: 1 + type: Transform + - uid: 24582 + components: + - pos: -90.5,10.5 + parent: 1 + type: Transform + - uid: 24583 + components: + - pos: -89.5,10.5 + parent: 1 + type: Transform + - uid: 24584 + components: + - pos: -88.5,10.5 + parent: 1 + type: Transform + - uid: 24585 + components: + - pos: -86.5,10.5 + parent: 1 + type: Transform + - uid: 24586 + components: + - pos: -85.5,10.5 + parent: 1 + type: Transform + - uid: 24587 + components: + - pos: -84.5,10.5 + parent: 1 + type: Transform + - uid: 24588 + components: + - pos: -85.5,11.5 + parent: 1 + type: Transform + - uid: 24589 + components: + - pos: -89.5,11.5 + parent: 1 + type: Transform + - uid: 24590 + components: + - pos: -93.5,7.5 + parent: 1 + type: Transform + - uid: 24591 + components: + - pos: -93.5,6.5 + parent: 1 + type: Transform + - uid: 24592 + components: + - pos: -93.5,5.5 + parent: 1 + type: Transform + - uid: 24593 + components: + - pos: -94.5,6.5 + parent: 1 + type: Transform + - uid: 24594 + components: + - pos: -93.5,3.5 + parent: 1 + type: Transform + - uid: 24595 + components: + - pos: -93.5,2.5 + parent: 1 + type: Transform + - uid: 24596 + components: + - pos: -93.5,1.5 + parent: 1 + type: Transform + - uid: 24597 + components: + - pos: -94.5,2.5 + parent: 1 + type: Transform + - uid: 24598 + components: + - pos: -90.5,-1.5 + parent: 1 + type: Transform + - uid: 24599 + components: + - pos: -89.5,-1.5 + parent: 1 + type: Transform + - uid: 24600 + components: + - pos: -88.5,-1.5 + parent: 1 + type: Transform + - uid: 24601 + components: + - pos: -89.5,-2.5 + parent: 1 + type: Transform + - uid: 24602 + components: + - pos: -86.5,-1.5 + parent: 1 + type: Transform + - uid: 24603 + components: + - pos: -85.5,-1.5 + parent: 1 + type: Transform + - uid: 24604 + components: + - pos: -84.5,-1.5 + parent: 1 + type: Transform + - uid: 24605 + components: + - pos: -85.5,-2.5 + parent: 1 + type: Transform + - uid: 24607 + components: + - pos: -76.5,-1.5 + parent: 1 + type: Transform + - uid: 24608 + components: + - pos: -77.5,-1.5 + parent: 1 + type: Transform + - uid: 24609 + components: + - pos: -78.5,-1.5 + parent: 1 + type: Transform + - uid: 24819 + components: + - pos: 86.5,-23.5 + parent: 1 + type: Transform + - uid: 24820 + components: + - pos: 86.5,-24.5 + parent: 1 + type: Transform + - uid: 24821 + components: + - pos: 86.5,-25.5 + parent: 1 + type: Transform + - uid: 24822 + components: + - pos: 86.5,-26.5 + parent: 1 + type: Transform + - uid: 24823 + components: + - pos: 86.5,-27.5 + parent: 1 + type: Transform + - uid: 24824 + components: + - pos: 86.5,-22.5 + parent: 1 + type: Transform + - uid: 24825 + components: + - pos: 87.5,-22.5 + parent: 1 + type: Transform + - uid: 24826 + components: + - pos: 87.5,-21.5 + parent: 1 + type: Transform + - uid: 24827 + components: + - pos: 87.5,-20.5 + parent: 1 + type: Transform + - uid: 24897 + components: + - pos: 89.5,-52.5 + parent: 1 + type: Transform + - uid: 24898 + components: + - pos: 89.5,-51.5 + parent: 1 + type: Transform + - uid: 24899 + components: + - pos: 89.5,-50.5 + parent: 1 + type: Transform + - uid: 24900 + components: + - pos: 89.5,-49.5 + parent: 1 + type: Transform + - uid: 24901 + components: + - pos: 89.5,-48.5 + parent: 1 + type: Transform + - uid: 24902 + components: + - pos: 89.5,-47.5 + parent: 1 + type: Transform + - uid: 24903 + components: + - pos: 89.5,-46.5 + parent: 1 + type: Transform + - uid: 24904 + components: + - pos: 89.5,-45.5 + parent: 1 + type: Transform + - uid: 24905 + components: + - pos: 89.5,-44.5 + parent: 1 + type: Transform + - uid: 24906 + components: + - pos: 89.5,-43.5 + parent: 1 + type: Transform + - uid: 24907 + components: + - pos: 89.5,-42.5 + parent: 1 + type: Transform + - uid: 24908 + components: + - pos: 89.5,-41.5 + parent: 1 + type: Transform + - uid: 24909 + components: + - pos: 89.5,-40.5 + parent: 1 + type: Transform + - uid: 24910 + components: + - pos: 89.5,-39.5 + parent: 1 + type: Transform + - uid: 24911 + components: + - pos: 89.5,-38.5 + parent: 1 + type: Transform + - uid: 24912 + components: + - pos: 89.5,-37.5 + parent: 1 + type: Transform + - uid: 24913 + components: + - pos: 89.5,-36.5 + parent: 1 + type: Transform + - uid: 24914 + components: + - pos: 89.5,-35.5 + parent: 1 + type: Transform + - uid: 24915 + components: + - pos: 89.5,-34.5 + parent: 1 + type: Transform + - uid: 24916 + components: + - pos: 89.5,-33.5 + parent: 1 + type: Transform + - uid: 24917 + components: + - pos: 89.5,-32.5 + parent: 1 + type: Transform + - uid: 24918 + components: + - pos: 89.5,-31.5 + parent: 1 + type: Transform + - uid: 24919 + components: + - pos: 89.5,-30.5 + parent: 1 + type: Transform + - uid: 24920 + components: + - pos: 89.5,-29.5 + parent: 1 + type: Transform + - uid: 24921 + components: + - pos: 88.5,-29.5 + parent: 1 + type: Transform + - uid: 24922 + components: + - pos: 87.5,-29.5 + parent: 1 + type: Transform + - uid: 24923 + components: + - pos: 86.5,-29.5 + parent: 1 + type: Transform + - uid: 24924 + components: + - pos: 86.5,-28.5 + parent: 1 + type: Transform + - uid: 24925 + components: + - pos: 96.5,-36.5 + parent: 1 + type: Transform + - uid: 24926 + components: + - pos: 95.5,-36.5 + parent: 1 + type: Transform + - uid: 24927 + components: + - pos: 94.5,-36.5 + parent: 1 + type: Transform + - uid: 24928 + components: + - pos: 93.5,-36.5 + parent: 1 + type: Transform + - uid: 24929 + components: + - pos: 92.5,-36.5 + parent: 1 + type: Transform + - uid: 24930 + components: + - pos: 91.5,-36.5 + parent: 1 + type: Transform + - uid: 24931 + components: + - pos: 93.5,-38.5 + parent: 1 + type: Transform + - uid: 24932 + components: + - pos: 92.5,-38.5 + parent: 1 + type: Transform + - uid: 24933 + components: + - pos: 91.5,-38.5 + parent: 1 + type: Transform + - uid: 24934 + components: + - pos: 91.5,-37.5 + parent: 1 + type: Transform + - uid: 24935 + components: + - pos: 90.5,-37.5 + parent: 1 + type: Transform + - uid: 24936 + components: + - pos: 82.5,-36.5 + parent: 1 + type: Transform + - uid: 24937 + components: + - pos: 83.5,-36.5 + parent: 1 + type: Transform + - uid: 24938 + components: + - pos: 84.5,-36.5 + parent: 1 + type: Transform + - uid: 24939 + components: + - pos: 85.5,-36.5 + parent: 1 + type: Transform + - uid: 24940 + components: + - pos: 86.5,-36.5 + parent: 1 + type: Transform + - uid: 24941 + components: + - pos: 87.5,-36.5 + parent: 1 + type: Transform + - uid: 24942 + components: + - pos: 82.5,-38.5 + parent: 1 + type: Transform + - uid: 24943 + components: + - pos: 83.5,-38.5 + parent: 1 + type: Transform + - uid: 24944 + components: + - pos: 84.5,-38.5 + parent: 1 + type: Transform + - uid: 24945 + components: + - pos: 85.5,-38.5 + parent: 1 + type: Transform + - uid: 24946 + components: + - pos: 86.5,-38.5 + parent: 1 + type: Transform + - uid: 24947 + components: + - pos: 87.5,-38.5 + parent: 1 + type: Transform + - uid: 24948 + components: + - pos: 87.5,-37.5 + parent: 1 + type: Transform + - uid: 24949 + components: + - pos: 88.5,-37.5 + parent: 1 + type: Transform + - uid: 24950 + components: + - pos: 82.5,-40.5 + parent: 1 + type: Transform + - uid: 24951 + components: + - pos: 83.5,-40.5 + parent: 1 + type: Transform + - uid: 24952 + components: + - pos: 84.5,-40.5 + parent: 1 + type: Transform + - uid: 24953 + components: + - pos: 85.5,-40.5 + parent: 1 + type: Transform + - uid: 24954 + components: + - pos: 86.5,-40.5 + parent: 1 + type: Transform + - uid: 24955 + components: + - pos: 87.5,-40.5 + parent: 1 + type: Transform + - uid: 24956 + components: + - pos: 87.5,-41.5 + parent: 1 + type: Transform + - uid: 24957 + components: + - pos: 88.5,-41.5 + parent: 1 + type: Transform + - uid: 24958 + components: + - pos: 96.5,-40.5 + parent: 1 + type: Transform + - uid: 24959 + components: + - pos: 95.5,-40.5 + parent: 1 + type: Transform + - uid: 24960 + components: + - pos: 94.5,-40.5 + parent: 1 + type: Transform + - uid: 24961 + components: + - pos: 93.5,-40.5 + parent: 1 + type: Transform + - uid: 24962 + components: + - pos: 92.5,-40.5 + parent: 1 + type: Transform + - uid: 24963 + components: + - pos: 91.5,-40.5 + parent: 1 + type: Transform + - uid: 24964 + components: + - pos: 96.5,-42.5 + parent: 1 + type: Transform + - uid: 24965 + components: + - pos: 95.5,-42.5 + parent: 1 + type: Transform + - uid: 24966 + components: + - pos: 94.5,-42.5 + parent: 1 + type: Transform + - uid: 24967 + components: + - pos: 93.5,-42.5 + parent: 1 + type: Transform + - uid: 24968 + components: + - pos: 92.5,-42.5 + parent: 1 + type: Transform + - uid: 24969 + components: + - pos: 91.5,-42.5 + parent: 1 + type: Transform + - uid: 24970 + components: + - pos: 91.5,-41.5 + parent: 1 + type: Transform + - uid: 24971 + components: + - pos: 90.5,-41.5 + parent: 1 + type: Transform + - uid: 24972 + components: + - pos: 83.5,-46.5 + parent: 1 + type: Transform + - uid: 24973 + components: + - pos: 84.5,-46.5 + parent: 1 + type: Transform + - uid: 24974 + components: + - pos: 85.5,-46.5 + parent: 1 + type: Transform + - uid: 24975 + components: + - pos: 86.5,-46.5 + parent: 1 + type: Transform + - uid: 24976 + components: + - pos: 87.5,-46.5 + parent: 1 + type: Transform + - uid: 24977 + components: + - pos: 87.5,-45.5 + parent: 1 + type: Transform + - uid: 24978 + components: + - pos: 88.5,-45.5 + parent: 1 + type: Transform + - uid: 24979 + components: + - pos: 96.5,-44.5 + parent: 1 + type: Transform + - uid: 24980 + components: + - pos: 95.5,-44.5 + parent: 1 + type: Transform + - uid: 24981 + components: + - pos: 94.5,-44.5 + parent: 1 + type: Transform + - uid: 24982 + components: + - pos: 93.5,-44.5 + parent: 1 + type: Transform + - uid: 24983 + components: + - pos: 92.5,-44.5 + parent: 1 + type: Transform + - uid: 24984 + components: + - pos: 91.5,-44.5 + parent: 1 + type: Transform + - uid: 24985 + components: + - pos: 96.5,-46.5 + parent: 1 + type: Transform + - uid: 24986 + components: + - pos: 95.5,-46.5 + parent: 1 + type: Transform + - uid: 24987 + components: + - pos: 94.5,-46.5 + parent: 1 + type: Transform + - uid: 24988 + components: + - pos: 93.5,-46.5 + parent: 1 + type: Transform + - uid: 24989 + components: + - pos: 92.5,-46.5 + parent: 1 + type: Transform + - uid: 24990 + components: + - pos: 91.5,-46.5 + parent: 1 + type: Transform + - uid: 24991 + components: + - pos: 91.5,-45.5 + parent: 1 + type: Transform + - uid: 24992 + components: + - pos: 90.5,-45.5 + parent: 1 + type: Transform + - uid: 24993 + components: + - pos: 96.5,-48.5 + parent: 1 + type: Transform + - uid: 24994 + components: + - pos: 95.5,-48.5 + parent: 1 + type: Transform + - uid: 24995 + components: + - pos: 94.5,-48.5 + parent: 1 + type: Transform + - uid: 24996 + components: + - pos: 93.5,-48.5 + parent: 1 + type: Transform + - uid: 24997 + components: + - pos: 92.5,-48.5 + parent: 1 + type: Transform + - uid: 24998 + components: + - pos: 91.5,-48.5 + parent: 1 + type: Transform + - uid: 24999 + components: + - pos: 91.5,-49.5 + parent: 1 + type: Transform + - uid: 25000 + components: + - pos: 90.5,-49.5 + parent: 1 + type: Transform + - uid: 25001 + components: + - pos: 82.5,-48.5 + parent: 1 + type: Transform + - uid: 25002 + components: + - pos: 83.5,-48.5 + parent: 1 + type: Transform + - uid: 25003 + components: + - pos: 84.5,-48.5 + parent: 1 + type: Transform + - uid: 25004 + components: + - pos: 85.5,-48.5 + parent: 1 + type: Transform + - uid: 25005 + components: + - pos: 86.5,-48.5 + parent: 1 + type: Transform + - uid: 25006 + components: + - pos: 87.5,-48.5 + parent: 1 + type: Transform + - uid: 25007 + components: + - pos: 82.5,-50.5 + parent: 1 + type: Transform + - uid: 25008 + components: + - pos: 83.5,-50.5 + parent: 1 + type: Transform + - uid: 25009 + components: + - pos: 84.5,-50.5 + parent: 1 + type: Transform + - uid: 25010 + components: + - pos: 85.5,-50.5 + parent: 1 + type: Transform + - uid: 25011 + components: + - pos: 86.5,-50.5 + parent: 1 + type: Transform + - uid: 25012 + components: + - pos: 87.5,-50.5 + parent: 1 + type: Transform + - uid: 25013 + components: + - pos: 87.5,-49.5 + parent: 1 + type: Transform + - uid: 25014 + components: + - pos: 88.5,-49.5 + parent: 1 + type: Transform + - uid: 25264 + components: + - pos: 104.5,28.5 + parent: 1 + type: Transform + - uid: 25265 + components: + - pos: 104.5,29.5 + parent: 1 + type: Transform +- proto: CableHVStack + entities: + - uid: 6599 + components: + - rot: 3.141592653589793 rad + pos: -54.515648,-0.33414364 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 188 + components: + - pos: -17.5,-19.5 + parent: 1 + type: Transform + - uid: 615 + components: + - pos: -19.5,-18.5 + parent: 1 + type: Transform + - uid: 616 + components: + - pos: -23.5,-12.5 + parent: 1 + type: Transform + - uid: 713 + components: + - pos: 43.5,25.5 + parent: 1 + type: Transform + - uid: 724 + components: + - pos: -25.5,-12.5 + parent: 1 + type: Transform + - uid: 752 + components: + - pos: -18.5,-18.5 + parent: 1 + type: Transform + - uid: 753 + components: + - pos: -24.5,-12.5 + parent: 1 + type: Transform + - uid: 754 + components: + - pos: -21.5,-12.5 + parent: 1 + type: Transform + - uid: 836 + components: + - pos: -2.5,13.5 + parent: 1 + type: Transform + - uid: 837 + components: + - pos: -2.5,14.5 + parent: 1 + type: Transform + - uid: 1307 + components: + - pos: -10.5,-30.5 + parent: 1 + type: Transform + - uid: 1505 + components: + - pos: 5.5,-29.5 + parent: 1 + type: Transform + - uid: 1550 + components: + - pos: -46.5,-29.5 + parent: 1 + type: Transform + - uid: 1648 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 1651 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 1725 + components: + - pos: -47.5,-28.5 + parent: 1 + type: Transform + - uid: 1790 + components: + - pos: 42.5,25.5 + parent: 1 + type: Transform + - uid: 1791 + components: + - pos: 44.5,25.5 + parent: 1 + type: Transform + - uid: 1795 + components: + - pos: -22.5,-12.5 + parent: 1 + type: Transform + - uid: 1796 + components: + - pos: -18.5,-19.5 + parent: 1 + type: Transform + - uid: 1798 + components: + - pos: -19.5,-17.5 + parent: 1 + type: Transform + - uid: 1904 + components: + - pos: -38.5,-25.5 + parent: 1 + type: Transform + - uid: 1905 + components: + - pos: -40.5,-25.5 + parent: 1 + type: Transform + - uid: 1959 + components: + - pos: -42.5,-25.5 + parent: 1 + type: Transform + - uid: 1960 + components: + - pos: -43.5,-25.5 + parent: 1 + type: Transform + - uid: 1961 + components: + - pos: -41.5,-25.5 + parent: 1 + type: Transform + - uid: 1978 + components: + - pos: -39.5,-25.5 + parent: 1 + type: Transform + - uid: 2113 + components: + - pos: -38.5,-23.5 + parent: 1 + type: Transform + - uid: 2142 + components: + - pos: -38.5,-24.5 + parent: 1 + type: Transform + - uid: 2168 + components: + - pos: -50.5,-12.5 + parent: 1 + type: Transform + - uid: 2819 + components: + - pos: 44.5,24.5 + parent: 1 + type: Transform + - uid: 2822 + components: + - pos: 45.5,23.5 + parent: 1 + type: Transform + - uid: 3226 + components: + - pos: 45.5,24.5 + parent: 1 + type: Transform + - uid: 3488 + components: + - pos: -49.5,11.5 + parent: 1 + type: Transform + - uid: 3795 + components: + - pos: 59.5,15.5 + parent: 1 + type: Transform + - uid: 3803 + components: + - pos: -50.5,11.5 + parent: 1 + type: Transform + - uid: 3812 + components: + - pos: -50.5,10.5 + parent: 1 + type: Transform + - uid: 3916 + components: + - pos: -50.5,9.5 + parent: 1 + type: Transform + - uid: 3991 + components: + - pos: 59.5,14.5 + parent: 1 + type: Transform + - uid: 4710 + components: + - pos: -1.5,-16.5 + parent: 1 + type: Transform + - uid: 5815 + components: + - pos: -1.5,-15.5 + parent: 1 + type: Transform + - uid: 5884 + components: + - pos: -1.5,-14.5 + parent: 1 + type: Transform + - uid: 6629 + components: + - pos: -50.5,-13.5 + parent: 1 + type: Transform + - uid: 6997 + components: + - pos: -4.5,-20.5 + parent: 1 + type: Transform + - uid: 7208 + components: + - pos: -50.5,8.5 + parent: 1 + type: Transform + - uid: 7982 + components: + - pos: 17.5,-29.5 + parent: 1 + type: Transform + - uid: 9954 + components: + - pos: -50.5,-14.5 + parent: 1 + type: Transform + - uid: 9955 + components: + - pos: -50.5,-15.5 + parent: 1 + type: Transform + - uid: 9956 + components: + - pos: -50.5,-16.5 + parent: 1 + type: Transform + - uid: 9957 + components: + - pos: -50.5,-17.5 + parent: 1 + type: Transform + - uid: 9958 + components: + - pos: -50.5,-18.5 + parent: 1 + type: Transform + - uid: 9959 + components: + - pos: -50.5,-19.5 + parent: 1 + type: Transform + - uid: 9960 + components: + - pos: -50.5,-20.5 + parent: 1 + type: Transform + - uid: 9961 + components: + - pos: -50.5,-21.5 + parent: 1 + type: Transform + - uid: 9962 + components: + - pos: -44.5,-29.5 + parent: 1 + type: Transform + - uid: 9963 + components: + - pos: -48.5,-28.5 + parent: 1 + type: Transform + - uid: 9975 + components: + - pos: -43.5,-28.5 + parent: 1 + type: Transform + - uid: 9976 + components: + - pos: -43.5,-26.5 + parent: 1 + type: Transform + - uid: 9977 + components: + - pos: -43.5,-27.5 + parent: 1 + type: Transform + - uid: 9979 + components: + - pos: -49.5,-21.5 + parent: 1 + type: Transform + - uid: 9980 + components: + - pos: -48.5,-21.5 + parent: 1 + type: Transform + - uid: 10811 + components: + - pos: -6.5,-10.5 + parent: 1 + type: Transform + - uid: 11072 + components: + - pos: -49.5,-28.5 + parent: 1 + type: Transform + - uid: 11073 + components: + - pos: -50.5,-28.5 + parent: 1 + type: Transform + - uid: 11076 + components: + - pos: -51.5,-28.5 + parent: 1 + type: Transform + - uid: 11077 + components: + - pos: -52.5,-28.5 + parent: 1 + type: Transform + - uid: 11078 + components: + - pos: -53.5,-28.5 + parent: 1 + type: Transform + - uid: 11079 + components: + - pos: -53.5,-29.5 + parent: 1 + type: Transform + - uid: 11099 + components: + - pos: -1.5,-18.5 + parent: 1 + type: Transform + - uid: 11100 + components: + - pos: -1.5,-19.5 + parent: 1 + type: Transform + - uid: 11106 + components: + - pos: -1.5,-12.5 + parent: 1 + type: Transform + - uid: 11109 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 11334 + components: + - pos: 16.5,-29.5 + parent: 1 + type: Transform + - uid: 12062 + components: + - pos: 59.5,13.5 + parent: 1 + type: Transform + - uid: 12450 + components: + - pos: 45.5,22.5 + parent: 1 + type: Transform + - uid: 12582 + components: + - pos: -1.5,-17.5 + parent: 1 + type: Transform + - uid: 14018 + components: + - pos: -8.5,-20.5 + parent: 1 + type: Transform + - uid: 14019 + components: + - pos: -7.5,-20.5 + parent: 1 + type: Transform + - uid: 14020 + components: + - pos: -10.5,-20.5 + parent: 1 + type: Transform + - uid: 14347 + components: + - pos: 6.5,-29.5 + parent: 1 + type: Transform + - uid: 14396 + components: + - pos: 18.5,-29.5 + parent: 1 + type: Transform + - uid: 15998 + components: + - pos: -50.5,-11.5 + parent: 1 + type: Transform + - uid: 15999 + components: + - pos: -50.5,-10.5 + parent: 1 + type: Transform + - uid: 16000 + components: + - pos: -50.5,-9.5 + parent: 1 + type: Transform + - uid: 16001 + components: + - pos: -50.5,-8.5 + parent: 1 + type: Transform + - uid: 16002 + components: + - pos: -51.5,-8.5 + parent: 1 + type: Transform + - uid: 16003 + components: + - pos: -52.5,-8.5 + parent: 1 + type: Transform + - uid: 16801 + components: + - pos: -5.5,-20.5 + parent: 1 + type: Transform + - uid: 17431 + components: + - pos: -9.5,-20.5 + parent: 1 + type: Transform + - uid: 17465 + components: + - pos: -43.5,-29.5 + parent: 1 + type: Transform + - uid: 17487 + components: + - pos: -49.5,-16.5 + parent: 1 + type: Transform + - uid: 17488 + components: + - pos: -48.5,-16.5 + parent: 1 + type: Transform + - uid: 17489 + components: + - pos: -47.5,-16.5 + parent: 1 + type: Transform + - uid: 17490 + components: + - pos: -46.5,-16.5 + parent: 1 + type: Transform + - uid: 17491 + components: + - pos: -46.5,-15.5 + parent: 1 + type: Transform + - uid: 17492 + components: + - pos: -46.5,-14.5 + parent: 1 + type: Transform + - uid: 17493 + components: + - pos: -46.5,-13.5 + parent: 1 + type: Transform + - uid: 17564 + components: + - pos: -53.5,9.5 + parent: 1 + type: Transform + - uid: 17565 + components: + - pos: -53.5,8.5 + parent: 1 + type: Transform + - uid: 17566 + components: + - pos: -53.5,7.5 + parent: 1 + type: Transform + - uid: 17567 + components: + - pos: -52.5,7.5 + parent: 1 + type: Transform + - uid: 17568 + components: + - pos: -51.5,7.5 + parent: 1 + type: Transform + - uid: 17569 + components: + - pos: -50.5,6.5 + parent: 1 + type: Transform + - uid: 17570 + components: + - pos: -50.5,7.5 + parent: 1 + type: Transform + - uid: 17571 + components: + - pos: -50.5,5.5 + parent: 1 + type: Transform + - uid: 17572 + components: + - pos: -50.5,4.5 + parent: 1 + type: Transform + - uid: 17573 + components: + - pos: -50.5,3.5 + parent: 1 + type: Transform + - uid: 17574 + components: + - pos: -50.5,2.5 + parent: 1 + type: Transform + - uid: 17575 + components: + - pos: -50.5,1.5 + parent: 1 + type: Transform + - uid: 17576 + components: + - pos: -50.5,0.5 + parent: 1 + type: Transform + - uid: 17577 + components: + - pos: -49.5,0.5 + parent: 1 + type: Transform + - uid: 17578 + components: + - pos: -48.5,0.5 + parent: 1 + type: Transform + - uid: 17579 + components: + - pos: -47.5,0.5 + parent: 1 + type: Transform + - uid: 17580 + components: + - pos: -46.5,0.5 + parent: 1 + type: Transform + - uid: 17581 + components: + - pos: -45.5,0.5 + parent: 1 + type: Transform + - uid: 17582 + components: + - pos: -45.5,1.5 + parent: 1 + type: Transform + - uid: 17583 + components: + - pos: -45.5,2.5 + parent: 1 + type: Transform + - uid: 17584 + components: + - pos: -45.5,3.5 + parent: 1 + type: Transform + - uid: 17585 + components: + - pos: -44.5,3.5 + parent: 1 + type: Transform + - uid: 17586 + components: + - pos: -50.5,-0.5 + parent: 1 + type: Transform + - uid: 17587 + components: + - pos: -50.5,-1.5 + parent: 1 + type: Transform + - uid: 17588 + components: + - pos: -50.5,-2.5 + parent: 1 + type: Transform + - uid: 17589 + components: + - pos: -51.5,-2.5 + parent: 1 + type: Transform + - uid: 17590 + components: + - pos: -52.5,-2.5 + parent: 1 + type: Transform + - uid: 17591 + components: + - pos: -53.5,-2.5 + parent: 1 + type: Transform + - uid: 17592 + components: + - pos: -54.5,-2.5 + parent: 1 + type: Transform + - uid: 17593 + components: + - pos: -55.5,-2.5 + parent: 1 + type: Transform + - uid: 17594 + components: + - pos: -55.5,-1.5 + parent: 1 + type: Transform + - uid: 17595 + components: + - pos: -55.5,-0.5 + parent: 1 + type: Transform + - uid: 17596 + components: + - pos: -55.5,0.5 + parent: 1 + type: Transform + - uid: 17597 + components: + - pos: -55.5,1.5 + parent: 1 + type: Transform + - uid: 17600 + components: + - pos: -50.5,-7.5 + parent: 1 + type: Transform + - uid: 17601 + components: + - pos: -50.5,-6.5 + parent: 1 + type: Transform + - uid: 17602 + components: + - pos: -50.5,-5.5 + parent: 1 + type: Transform + - uid: 17603 + components: + - pos: -51.5,-5.5 + parent: 1 + type: Transform + - uid: 17604 + components: + - pos: -52.5,-5.5 + parent: 1 + type: Transform + - uid: 17605 + components: + - pos: -53.5,-5.5 + parent: 1 + type: Transform + - uid: 17606 + components: + - pos: -53.5,-4.5 + parent: 1 + type: Transform + - uid: 17789 + components: + - pos: -47.5,-21.5 + parent: 1 + type: Transform + - uid: 17790 + components: + - pos: -46.5,-21.5 + parent: 1 + type: Transform + - uid: 17791 + components: + - pos: -45.5,-21.5 + parent: 1 + type: Transform + - uid: 17792 + components: + - pos: -44.5,-21.5 + parent: 1 + type: Transform + - uid: 17793 + components: + - pos: -43.5,-21.5 + parent: 1 + type: Transform + - uid: 17794 + components: + - pos: -42.5,-21.5 + parent: 1 + type: Transform + - uid: 17795 + components: + - pos: -41.5,-21.5 + parent: 1 + type: Transform + - uid: 17796 + components: + - pos: -40.5,-21.5 + parent: 1 + type: Transform + - uid: 17797 + components: + - pos: -39.5,-21.5 + parent: 1 + type: Transform + - uid: 17798 + components: + - pos: -38.5,-21.5 + parent: 1 + type: Transform + - uid: 17799 + components: + - pos: -38.5,-20.5 + parent: 1 + type: Transform + - uid: 17800 + components: + - pos: -38.5,-19.5 + parent: 1 + type: Transform + - uid: 17876 + components: + - pos: -44.5,0.5 + parent: 1 + type: Transform + - uid: 17877 + components: + - pos: -43.5,0.5 + parent: 1 + type: Transform + - uid: 17878 + components: + - pos: -42.5,0.5 + parent: 1 + type: Transform + - uid: 17879 + components: + - pos: -41.5,0.5 + parent: 1 + type: Transform + - uid: 17880 + components: + - pos: -40.5,0.5 + parent: 1 + type: Transform + - uid: 17881 + components: + - pos: -39.5,0.5 + parent: 1 + type: Transform + - uid: 17882 + components: + - pos: -38.5,0.5 + parent: 1 + type: Transform + - uid: 17883 + components: + - pos: -37.5,0.5 + parent: 1 + type: Transform + - uid: 17884 + components: + - pos: -36.5,0.5 + parent: 1 + type: Transform + - uid: 17885 + components: + - pos: -35.5,0.5 + parent: 1 + type: Transform + - uid: 17886 + components: + - pos: -34.5,0.5 + parent: 1 + type: Transform + - uid: 17920 + components: + - pos: -52.5,38.5 + parent: 1 + type: Transform + - uid: 17921 + components: + - pos: -52.5,37.5 + parent: 1 + type: Transform + - uid: 17922 + components: + - pos: -53.5,37.5 + parent: 1 + type: Transform + - uid: 17923 + components: + - pos: -53.5,36.5 + parent: 1 + type: Transform + - uid: 17924 + components: + - pos: -51.5,37.5 + parent: 1 + type: Transform + - uid: 17925 + components: + - pos: -51.5,36.5 + parent: 1 + type: Transform + - uid: 18047 + components: + - pos: 40.5,-31.5 + parent: 1 + type: Transform + - uid: 18123 + components: + - pos: -5.5,-41.5 + parent: 1 + type: Transform + - uid: 18124 + components: + - pos: -5.5,-42.5 + parent: 1 + type: Transform + - uid: 18125 + components: + - pos: -4.5,-42.5 + parent: 1 + type: Transform + - uid: 18126 + components: + - pos: -3.5,-42.5 + parent: 1 + type: Transform + - uid: 18127 + components: + - pos: -6.5,-42.5 + parent: 1 + type: Transform + - uid: 18128 + components: + - pos: -7.5,-42.5 + parent: 1 + type: Transform + - uid: 18129 + components: + - pos: -8.5,-42.5 + parent: 1 + type: Transform + - uid: 18130 + components: + - pos: -9.5,-42.5 + parent: 1 + type: Transform + - uid: 18131 + components: + - pos: -9.5,-41.5 + parent: 1 + type: Transform + - uid: 18132 + components: + - pos: -10.5,-41.5 + parent: 1 + type: Transform + - uid: 18133 + components: + - pos: -11.5,-41.5 + parent: 1 + type: Transform + - uid: 18134 + components: + - pos: -12.5,-41.5 + parent: 1 + type: Transform + - uid: 18135 + components: + - pos: -13.5,-41.5 + parent: 1 + type: Transform + - uid: 18136 + components: + - pos: -14.5,-41.5 + parent: 1 + type: Transform + - uid: 18137 + components: + - pos: -14.5,-40.5 + parent: 1 + type: Transform + - uid: 18138 + components: + - pos: -14.5,-39.5 + parent: 1 + type: Transform + - uid: 18139 + components: + - pos: -14.5,-38.5 + parent: 1 + type: Transform + - uid: 18140 + components: + - pos: -14.5,-37.5 + parent: 1 + type: Transform + - uid: 18141 + components: + - pos: -14.5,-36.5 + parent: 1 + type: Transform + - uid: 18142 + components: + - pos: -14.5,-35.5 + parent: 1 + type: Transform + - uid: 18143 + components: + - pos: -14.5,-34.5 + parent: 1 + type: Transform + - uid: 18144 + components: + - pos: -14.5,-33.5 + parent: 1 + type: Transform + - uid: 18145 + components: + - pos: -14.5,-32.5 + parent: 1 + type: Transform + - uid: 18146 + components: + - pos: -13.5,-32.5 + parent: 1 + type: Transform + - uid: 18147 + components: + - pos: -12.5,-32.5 + parent: 1 + type: Transform + - uid: 18148 + components: + - pos: -11.5,-32.5 + parent: 1 + type: Transform + - uid: 18150 + components: + - pos: -10.5,-31.5 + parent: 1 + type: Transform + - uid: 18152 + components: + - pos: -9.5,-30.5 + parent: 1 + type: Transform + - uid: 18153 + components: + - pos: -8.5,-30.5 + parent: 1 + type: Transform + - uid: 18154 + components: + - pos: -7.5,-30.5 + parent: 1 + type: Transform + - uid: 18172 + components: + - pos: -7.5,-29.5 + parent: 1 + type: Transform + - uid: 18173 + components: + - pos: -6.5,-29.5 + parent: 1 + type: Transform + - uid: 18174 + components: + - pos: -5.5,-29.5 + parent: 1 + type: Transform + - uid: 18175 + components: + - pos: -4.5,-29.5 + parent: 1 + type: Transform + - uid: 18176 + components: + - pos: -3.5,-29.5 + parent: 1 + type: Transform + - uid: 18177 + components: + - pos: -2.5,-29.5 + parent: 1 + type: Transform + - uid: 18178 + components: + - pos: -1.5,-29.5 + parent: 1 + type: Transform + - uid: 18179 + components: + - pos: -0.5,-29.5 + parent: 1 + type: Transform + - uid: 18180 + components: + - pos: 0.5,-29.5 + parent: 1 + type: Transform + - uid: 18181 + components: + - pos: 1.5,-29.5 + parent: 1 + type: Transform + - uid: 18182 + components: + - pos: 2.5,-29.5 + parent: 1 + type: Transform + - uid: 18183 + components: + - pos: 3.5,-29.5 + parent: 1 + type: Transform + - uid: 18184 + components: + - pos: 4.5,-29.5 + parent: 1 + type: Transform + - uid: 18199 + components: + - pos: 19.5,-29.5 + parent: 1 + type: Transform + - uid: 18200 + components: + - pos: 20.5,-29.5 + parent: 1 + type: Transform + - uid: 18201 + components: + - pos: 21.5,-29.5 + parent: 1 + type: Transform + - uid: 18202 + components: + - pos: 22.5,-29.5 + parent: 1 + type: Transform + - uid: 18203 + components: + - pos: 23.5,-29.5 + parent: 1 + type: Transform + - uid: 18204 + components: + - pos: 24.5,-29.5 + parent: 1 + type: Transform + - uid: 18205 + components: + - pos: 25.5,-29.5 + parent: 1 + type: Transform + - uid: 18208 + components: + - pos: 26.5,-29.5 + parent: 1 + type: Transform + - uid: 18209 + components: + - pos: 27.5,-29.5 + parent: 1 + type: Transform + - uid: 18210 + components: + - pos: 28.5,-29.5 + parent: 1 + type: Transform + - uid: 18211 + components: + - pos: 29.5,-29.5 + parent: 1 + type: Transform + - uid: 18212 + components: + - pos: 30.5,-29.5 + parent: 1 + type: Transform + - uid: 18213 + components: + - pos: 31.5,-29.5 + parent: 1 + type: Transform + - uid: 18214 + components: + - pos: 32.5,-29.5 + parent: 1 + type: Transform + - uid: 18215 + components: + - pos: 33.5,-29.5 + parent: 1 + type: Transform + - uid: 18216 + components: + - pos: 34.5,-29.5 + parent: 1 + type: Transform + - uid: 18217 + components: + - pos: 34.5,-30.5 + parent: 1 + type: Transform + - uid: 18218 + components: + - pos: 35.5,-30.5 + parent: 1 + type: Transform + - uid: 18219 + components: + - pos: 35.5,-31.5 + parent: 1 + type: Transform + - uid: 18220 + components: + - pos: 36.5,-31.5 + parent: 1 + type: Transform + - uid: 18221 + components: + - pos: 36.5,-32.5 + parent: 1 + type: Transform + - uid: 18222 + components: + - pos: 37.5,-32.5 + parent: 1 + type: Transform + - uid: 18223 + components: + - pos: 38.5,-32.5 + parent: 1 + type: Transform + - uid: 18224 + components: + - pos: 39.5,-32.5 + parent: 1 + type: Transform + - uid: 18225 + components: + - pos: 40.5,-32.5 + parent: 1 + type: Transform + - uid: 18226 + components: + - pos: 38.5,-33.5 + parent: 1 + type: Transform + - uid: 18227 + components: + - pos: 38.5,-34.5 + parent: 1 + type: Transform + - uid: 18228 + components: + - pos: 38.5,-35.5 + parent: 1 + type: Transform + - uid: 18229 + components: + - pos: 38.5,-36.5 + parent: 1 + type: Transform + - uid: 18230 + components: + - pos: 38.5,-37.5 + parent: 1 + type: Transform + - uid: 18231 + components: + - pos: 38.5,-38.5 + parent: 1 + type: Transform + - uid: 18232 + components: + - pos: 37.5,-38.5 + parent: 1 + type: Transform + - uid: 18233 + components: + - pos: 36.5,-38.5 + parent: 1 + type: Transform + - uid: 18234 + components: + - pos: 36.5,-39.5 + parent: 1 + type: Transform + - uid: 18235 + components: + - pos: 36.5,-40.5 + parent: 1 + type: Transform + - uid: 18236 + components: + - pos: 35.5,-40.5 + parent: 1 + type: Transform + - uid: 18237 + components: + - pos: 34.5,-40.5 + parent: 1 + type: Transform + - uid: 18244 + components: + - pos: -11.5,-42.5 + parent: 1 + type: Transform + - uid: 18245 + components: + - pos: -11.5,-43.5 + parent: 1 + type: Transform + - uid: 18246 + components: + - pos: -11.5,-44.5 + parent: 1 + type: Transform + - uid: 18247 + components: + - pos: -11.5,-45.5 + parent: 1 + type: Transform + - uid: 18248 + components: + - pos: -10.5,-45.5 + parent: 1 + type: Transform + - uid: 18249 + components: + - pos: -10.5,-46.5 + parent: 1 + type: Transform + - uid: 18250 + components: + - pos: -9.5,-46.5 + parent: 1 + type: Transform + - uid: 18251 + components: + - pos: -9.5,-47.5 + parent: 1 + type: Transform + - uid: 18252 + components: + - pos: -8.5,-47.5 + parent: 1 + type: Transform + - uid: 18253 + components: + - pos: -7.5,-47.5 + parent: 1 + type: Transform + - uid: 18254 + components: + - pos: -6.5,-47.5 + parent: 1 + type: Transform + - uid: 18255 + components: + - pos: -5.5,-47.5 + parent: 1 + type: Transform + - uid: 18256 + components: + - pos: -4.5,-47.5 + parent: 1 + type: Transform + - uid: 18257 + components: + - pos: -3.5,-47.5 + parent: 1 + type: Transform + - uid: 18258 + components: + - pos: -2.5,-47.5 + parent: 1 + type: Transform + - uid: 18259 + components: + - pos: -1.5,-47.5 + parent: 1 + type: Transform + - uid: 18260 + components: + - pos: -0.5,-47.5 + parent: 1 + type: Transform + - uid: 18261 + components: + - pos: 0.5,-47.5 + parent: 1 + type: Transform + - uid: 18262 + components: + - pos: 1.5,-47.5 + parent: 1 + type: Transform + - uid: 18263 + components: + - pos: 2.5,-47.5 + parent: 1 + type: Transform + - uid: 18264 + components: + - pos: 3.5,-47.5 + parent: 1 + type: Transform + - uid: 18265 + components: + - pos: 4.5,-47.5 + parent: 1 + type: Transform + - uid: 18266 + components: + - pos: 5.5,-47.5 + parent: 1 + type: Transform + - uid: 18267 + components: + - pos: 6.5,-47.5 + parent: 1 + type: Transform + - uid: 18268 + components: + - pos: 7.5,-47.5 + parent: 1 + type: Transform + - uid: 18269 + components: + - pos: 8.5,-47.5 + parent: 1 + type: Transform + - uid: 18270 + components: + - pos: 9.5,-47.5 + parent: 1 + type: Transform + - uid: 18271 + components: + - pos: 10.5,-47.5 + parent: 1 + type: Transform + - uid: 18272 + components: + - pos: 11.5,-47.5 + parent: 1 + type: Transform + - uid: 18273 + components: + - pos: 12.5,-47.5 + parent: 1 + type: Transform + - uid: 18274 + components: + - pos: 13.5,-47.5 + parent: 1 + type: Transform + - uid: 18275 + components: + - pos: 14.5,-47.5 + parent: 1 + type: Transform + - uid: 18276 + components: + - pos: 15.5,-47.5 + parent: 1 + type: Transform + - uid: 18277 + components: + - pos: 16.5,-47.5 + parent: 1 + type: Transform + - uid: 18278 + components: + - pos: 17.5,-47.5 + parent: 1 + type: Transform + - uid: 18279 + components: + - pos: 18.5,-47.5 + parent: 1 + type: Transform + - uid: 18280 + components: + - pos: 18.5,-46.5 + parent: 1 + type: Transform + - uid: 18281 + components: + - pos: 18.5,-45.5 + parent: 1 + type: Transform + - uid: 18282 + components: + - pos: 41.5,-31.5 + parent: 1 + type: Transform + - uid: 18283 + components: + - pos: 41.5,-30.5 + parent: 1 + type: Transform + - uid: 18284 + components: + - pos: 42.5,-30.5 + parent: 1 + type: Transform + - uid: 18285 + components: + - pos: 42.5,-29.5 + parent: 1 + type: Transform + - uid: 18286 + components: + - pos: 43.5,-29.5 + parent: 1 + type: Transform + - uid: 18287 + components: + - pos: 43.5,-28.5 + parent: 1 + type: Transform + - uid: 18288 + components: + - pos: 44.5,-28.5 + parent: 1 + type: Transform + - uid: 18289 + components: + - pos: 45.5,-28.5 + parent: 1 + type: Transform + - uid: 18290 + components: + - pos: 46.5,-28.5 + parent: 1 + type: Transform + - uid: 18291 + components: + - pos: 47.5,-28.5 + parent: 1 + type: Transform + - uid: 18292 + components: + - pos: 48.5,-28.5 + parent: 1 + type: Transform + - uid: 18293 + components: + - pos: 49.5,-28.5 + parent: 1 + type: Transform + - uid: 18294 + components: + - pos: 50.5,-28.5 + parent: 1 + type: Transform + - uid: 18295 + components: + - pos: 51.5,-28.5 + parent: 1 + type: Transform + - uid: 18296 + components: + - pos: 51.5,-27.5 + parent: 1 + type: Transform + - uid: 18297 + components: + - pos: 51.5,-26.5 + parent: 1 + type: Transform + - uid: 18298 + components: + - pos: 39.5,38.5 + parent: 1 + type: Transform + - uid: 18305 + components: + - pos: -8.5,40.5 + parent: 1 + type: Transform + - uid: 18306 + components: + - pos: -8.5,39.5 + parent: 1 + type: Transform + - uid: 18307 + components: + - pos: -8.5,38.5 + parent: 1 + type: Transform + - uid: 18308 + components: + - pos: -9.5,39.5 + parent: 1 + type: Transform + - uid: 18309 + components: + - pos: -10.5,39.5 + parent: 1 + type: Transform + - uid: 18310 + components: + - pos: -10.5,38.5 + parent: 1 + type: Transform + - uid: 18311 + components: + - pos: -10.5,37.5 + parent: 1 + type: Transform + - uid: 18312 + components: + - pos: -10.5,36.5 + parent: 1 + type: Transform + - uid: 18313 + components: + - pos: -9.5,36.5 + parent: 1 + type: Transform + - uid: 18314 + components: + - pos: -8.5,36.5 + parent: 1 + type: Transform + - uid: 18315 + components: + - pos: -7.5,36.5 + parent: 1 + type: Transform + - uid: 18316 + components: + - pos: -6.5,36.5 + parent: 1 + type: Transform + - uid: 18317 + components: + - pos: -5.5,36.5 + parent: 1 + type: Transform + - uid: 18318 + components: + - pos: -4.5,36.5 + parent: 1 + type: Transform + - uid: 18319 + components: + - pos: -3.5,36.5 + parent: 1 + type: Transform + - uid: 18320 + components: + - pos: -2.5,36.5 + parent: 1 + type: Transform + - uid: 18321 + components: + - pos: -1.5,36.5 + parent: 1 + type: Transform + - uid: 18322 + components: + - pos: -1.5,37.5 + parent: 1 + type: Transform + - uid: 18323 + components: + - pos: -1.5,38.5 + parent: 1 + type: Transform + - uid: 18324 + components: + - pos: -1.5,39.5 + parent: 1 + type: Transform + - uid: 18325 + components: + - pos: -1.5,40.5 + parent: 1 + type: Transform + - uid: 18326 + components: + - pos: -2.5,40.5 + parent: 1 + type: Transform + - uid: 18327 + components: + - pos: -2.5,41.5 + parent: 1 + type: Transform + - uid: 18328 + components: + - pos: -2.5,42.5 + parent: 1 + type: Transform + - uid: 18329 + components: + - pos: -2.5,43.5 + parent: 1 + type: Transform + - uid: 18331 + components: + - pos: -3.5,42.5 + parent: 1 + type: Transform + - uid: 18332 + components: + - pos: -4.5,42.5 + parent: 1 + type: Transform + - uid: 18333 + components: + - pos: -5.5,42.5 + parent: 1 + type: Transform + - uid: 18334 + components: + - pos: -6.5,42.5 + parent: 1 + type: Transform + - uid: 18335 + components: + - pos: -6.5,43.5 + parent: 1 + type: Transform + - uid: 18336 + components: + - pos: -6.5,44.5 + parent: 1 + type: Transform + - uid: 18337 + components: + - pos: -1.5,43.5 + parent: 1 + type: Transform + - uid: 18338 + components: + - pos: -0.5,43.5 + parent: 1 + type: Transform + - uid: 18339 + components: + - pos: 0.5,43.5 + parent: 1 + type: Transform + - uid: 18340 + components: + - pos: 0.5,44.5 + parent: 1 + type: Transform + - uid: 18341 + components: + - pos: 0.5,45.5 + parent: 1 + type: Transform + - uid: 18342 + components: + - pos: 1.5,45.5 + parent: 1 + type: Transform + - uid: 18343 + components: + - pos: 2.5,45.5 + parent: 1 + type: Transform + - uid: 18344 + components: + - pos: 3.5,45.5 + parent: 1 + type: Transform + - uid: 18345 + components: + - pos: 4.5,45.5 + parent: 1 + type: Transform + - uid: 18346 + components: + - pos: 5.5,45.5 + parent: 1 + type: Transform + - uid: 18347 + components: + - pos: 6.5,45.5 + parent: 1 + type: Transform + - uid: 18348 + components: + - pos: 7.5,45.5 + parent: 1 + type: Transform + - uid: 18349 + components: + - pos: 8.5,45.5 + parent: 1 + type: Transform + - uid: 18350 + components: + - pos: 9.5,45.5 + parent: 1 + type: Transform + - uid: 18351 + components: + - pos: 10.5,45.5 + parent: 1 + type: Transform + - uid: 18352 + components: + - pos: 11.5,45.5 + parent: 1 + type: Transform + - uid: 18353 + components: + - pos: 12.5,45.5 + parent: 1 + type: Transform + - uid: 18354 + components: + - pos: 13.5,45.5 + parent: 1 + type: Transform + - uid: 18355 + components: + - pos: 14.5,45.5 + parent: 1 + type: Transform + - uid: 18356 + components: + - pos: 14.5,46.5 + parent: 1 + type: Transform + - uid: 18357 + components: + - pos: 14.5,47.5 + parent: 1 + type: Transform + - uid: 18358 + components: + - pos: 15.5,45.5 + parent: 1 + type: Transform + - uid: 18359 + components: + - pos: 16.5,45.5 + parent: 1 + type: Transform + - uid: 18360 + components: + - pos: 17.5,45.5 + parent: 1 + type: Transform + - uid: 18361 + components: + - pos: 18.5,45.5 + parent: 1 + type: Transform + - uid: 18362 + components: + - pos: 19.5,45.5 + parent: 1 + type: Transform + - uid: 18363 + components: + - pos: 20.5,45.5 + parent: 1 + type: Transform + - uid: 18364 + components: + - pos: 21.5,45.5 + parent: 1 + type: Transform + - uid: 18365 + components: + - pos: 22.5,45.5 + parent: 1 + type: Transform + - uid: 18366 + components: + - pos: 23.5,45.5 + parent: 1 + type: Transform + - uid: 18367 + components: + - pos: 24.5,45.5 + parent: 1 + type: Transform + - uid: 18368 + components: + - pos: 25.5,45.5 + parent: 1 + type: Transform + - uid: 18369 + components: + - pos: 26.5,45.5 + parent: 1 + type: Transform + - uid: 18370 + components: + - pos: 27.5,45.5 + parent: 1 + type: Transform + - uid: 18371 + components: + - pos: 27.5,44.5 + parent: 1 + type: Transform + - uid: 18372 + components: + - pos: 28.5,44.5 + parent: 1 + type: Transform + - uid: 18703 + components: + - pos: -0.5,36.5 + parent: 1 + type: Transform + - uid: 18704 + components: + - pos: 0.5,36.5 + parent: 1 + type: Transform + - uid: 18705 + components: + - pos: 1.5,36.5 + parent: 1 + type: Transform + - uid: 18706 + components: + - pos: 2.5,36.5 + parent: 1 + type: Transform + - uid: 18707 + components: + - pos: 3.5,36.5 + parent: 1 + type: Transform + - uid: 18708 + components: + - pos: 4.5,36.5 + parent: 1 + type: Transform + - uid: 18709 + components: + - pos: 5.5,36.5 + parent: 1 + type: Transform + - uid: 18710 + components: + - pos: 6.5,36.5 + parent: 1 + type: Transform + - uid: 18711 + components: + - pos: 7.5,36.5 + parent: 1 + type: Transform + - uid: 18712 + components: + - pos: 8.5,36.5 + parent: 1 + type: Transform + - uid: 18713 + components: + - pos: 9.5,36.5 + parent: 1 + type: Transform + - uid: 18714 + components: + - pos: 10.5,36.5 + parent: 1 + type: Transform + - uid: 18715 + components: + - pos: 11.5,36.5 + parent: 1 + type: Transform + - uid: 18716 + components: + - pos: 12.5,36.5 + parent: 1 + type: Transform + - uid: 18717 + components: + - pos: 13.5,36.5 + parent: 1 + type: Transform + - uid: 18718 + components: + - pos: 14.5,36.5 + parent: 1 + type: Transform + - uid: 18719 + components: + - pos: 15.5,36.5 + parent: 1 + type: Transform + - uid: 18720 + components: + - pos: 16.5,36.5 + parent: 1 + type: Transform + - uid: 18721 + components: + - pos: 17.5,36.5 + parent: 1 + type: Transform + - uid: 18722 + components: + - pos: 18.5,36.5 + parent: 1 + type: Transform + - uid: 18723 + components: + - pos: 19.5,36.5 + parent: 1 + type: Transform + - uid: 18724 + components: + - pos: 20.5,36.5 + parent: 1 + type: Transform + - uid: 18725 + components: + - pos: 21.5,36.5 + parent: 1 + type: Transform + - uid: 18726 + components: + - pos: 22.5,36.5 + parent: 1 + type: Transform + - uid: 18727 + components: + - pos: 23.5,36.5 + parent: 1 + type: Transform + - uid: 18728 + components: + - pos: 24.5,36.5 + parent: 1 + type: Transform + - uid: 18729 + components: + - pos: 25.5,36.5 + parent: 1 + type: Transform + - uid: 18730 + components: + - pos: 26.5,36.5 + parent: 1 + type: Transform + - uid: 18731 + components: + - pos: 27.5,36.5 + parent: 1 + type: Transform + - uid: 18732 + components: + - pos: 28.5,36.5 + parent: 1 + type: Transform + - uid: 18733 + components: + - pos: 29.5,36.5 + parent: 1 + type: Transform + - uid: 18734 + components: + - pos: 30.5,36.5 + parent: 1 + type: Transform + - uid: 18735 + components: + - pos: 31.5,36.5 + parent: 1 + type: Transform + - uid: 18736 + components: + - pos: 32.5,36.5 + parent: 1 + type: Transform + - uid: 18737 + components: + - pos: 33.5,36.5 + parent: 1 + type: Transform + - uid: 18738 + components: + - pos: 34.5,36.5 + parent: 1 + type: Transform + - uid: 18739 + components: + - pos: 34.5,37.5 + parent: 1 + type: Transform + - uid: 18740 + components: + - pos: 35.5,37.5 + parent: 1 + type: Transform + - uid: 18741 + components: + - pos: 35.5,38.5 + parent: 1 + type: Transform + - uid: 18742 + components: + - pos: 36.5,38.5 + parent: 1 + type: Transform + - uid: 18743 + components: + - pos: 36.5,39.5 + parent: 1 + type: Transform + - uid: 18744 + components: + - pos: 37.5,39.5 + parent: 1 + type: Transform + - uid: 18745 + components: + - pos: 38.5,39.5 + parent: 1 + type: Transform + - uid: 18746 + components: + - pos: 39.5,39.5 + parent: 1 + type: Transform + - uid: 18747 + components: + - pos: 40.5,38.5 + parent: 1 + type: Transform + - uid: 18748 + components: + - pos: 40.5,37.5 + parent: 1 + type: Transform + - uid: 18749 + components: + - pos: 41.5,37.5 + parent: 1 + type: Transform + - uid: 18750 + components: + - pos: 41.5,36.5 + parent: 1 + type: Transform + - uid: 18751 + components: + - pos: 42.5,36.5 + parent: 1 + type: Transform + - uid: 18752 + components: + - pos: 42.5,35.5 + parent: 1 + type: Transform + - uid: 18753 + components: + - pos: 43.5,35.5 + parent: 1 + type: Transform + - uid: 18754 + components: + - pos: 43.5,34.5 + parent: 1 + type: Transform + - uid: 18755 + components: + - pos: 44.5,34.5 + parent: 1 + type: Transform + - uid: 18756 + components: + - pos: 44.5,33.5 + parent: 1 + type: Transform + - uid: 18757 + components: + - pos: 45.5,33.5 + parent: 1 + type: Transform + - uid: 18758 + components: + - pos: 46.5,33.5 + parent: 1 + type: Transform + - uid: 18759 + components: + - pos: 47.5,33.5 + parent: 1 + type: Transform + - uid: 18760 + components: + - pos: 48.5,33.5 + parent: 1 + type: Transform + - uid: 18761 + components: + - pos: 48.5,34.5 + parent: 1 + type: Transform + - uid: 18762 + components: + - pos: 48.5,35.5 + parent: 1 + type: Transform + - uid: 18763 + components: + - pos: 48.5,36.5 + parent: 1 + type: Transform + - uid: 18764 + components: + - pos: 48.5,37.5 + parent: 1 + type: Transform + - uid: 18765 + components: + - pos: 48.5,38.5 + parent: 1 + type: Transform + - uid: 18766 + components: + - pos: 48.5,39.5 + parent: 1 + type: Transform + - uid: 18767 + components: + - pos: 49.5,39.5 + parent: 1 + type: Transform + - uid: 18768 + components: + - pos: 49.5,40.5 + parent: 1 + type: Transform + - uid: 18839 + components: + - pos: 91.5,22.5 + parent: 1 + type: Transform + - uid: 18840 + components: + - pos: 90.5,22.5 + parent: 1 + type: Transform + - uid: 18841 + components: + - pos: 90.5,23.5 + parent: 1 + type: Transform + - uid: 18843 + components: + - pos: 91.5,21.5 + parent: 1 + type: Transform + - uid: 18844 + components: + - pos: 91.5,20.5 + parent: 1 + type: Transform + - uid: 18845 + components: + - pos: 91.5,19.5 + parent: 1 + type: Transform + - uid: 18846 + components: + - pos: 91.5,18.5 + parent: 1 + type: Transform + - uid: 18847 + components: + - pos: 91.5,17.5 + parent: 1 + type: Transform + - uid: 18848 + components: + - pos: 90.5,17.5 + parent: 1 + type: Transform + - uid: 18849 + components: + - pos: 89.5,17.5 + parent: 1 + type: Transform + - uid: 18850 + components: + - pos: 88.5,17.5 + parent: 1 + type: Transform + - uid: 18851 + components: + - pos: 87.5,17.5 + parent: 1 + type: Transform + - uid: 18852 + components: + - pos: 87.5,18.5 + parent: 1 + type: Transform + - uid: 18853 + components: + - pos: 87.5,19.5 + parent: 1 + type: Transform + - uid: 18854 + components: + - pos: 87.5,20.5 + parent: 1 + type: Transform + - uid: 18855 + components: + - pos: 88.5,20.5 + parent: 1 + type: Transform + - uid: 18856 + components: + - pos: 87.5,21.5 + parent: 1 + type: Transform + - uid: 18857 + components: + - pos: 86.5,21.5 + parent: 1 + type: Transform + - uid: 18858 + components: + - pos: 85.5,21.5 + parent: 1 + type: Transform + - uid: 18859 + components: + - pos: 84.5,21.5 + parent: 1 + type: Transform + - uid: 18860 + components: + - pos: 83.5,21.5 + parent: 1 + type: Transform + - uid: 18861 + components: + - pos: 82.5,21.5 + parent: 1 + type: Transform + - uid: 18862 + components: + - pos: 81.5,21.5 + parent: 1 + type: Transform + - uid: 18863 + components: + - pos: 81.5,20.5 + parent: 1 + type: Transform + - uid: 18864 + components: + - pos: 81.5,19.5 + parent: 1 + type: Transform + - uid: 18865 + components: + - pos: 81.5,18.5 + parent: 1 + type: Transform + - uid: 18866 + components: + - pos: 81.5,17.5 + parent: 1 + type: Transform + - uid: 18867 + components: + - pos: 81.5,16.5 + parent: 1 + type: Transform + - uid: 18868 + components: + - pos: 81.5,15.5 + parent: 1 + type: Transform + - uid: 18869 + components: + - pos: 81.5,14.5 + parent: 1 + type: Transform + - uid: 18870 + components: + - pos: 81.5,13.5 + parent: 1 + type: Transform + - uid: 18871 + components: + - pos: 80.5,21.5 + parent: 1 + type: Transform + - uid: 18872 + components: + - pos: 79.5,21.5 + parent: 1 + type: Transform + - uid: 18873 + components: + - pos: 78.5,21.5 + parent: 1 + type: Transform + - uid: 18874 + components: + - pos: 77.5,21.5 + parent: 1 + type: Transform + - uid: 18875 + components: + - pos: 76.5,21.5 + parent: 1 + type: Transform + - uid: 18876 + components: + - pos: 75.5,21.5 + parent: 1 + type: Transform + - uid: 18877 + components: + - pos: 74.5,21.5 + parent: 1 + type: Transform + - uid: 18878 + components: + - pos: 73.5,21.5 + parent: 1 + type: Transform + - uid: 18879 + components: + - pos: 72.5,21.5 + parent: 1 + type: Transform + - uid: 18880 + components: + - pos: 72.5,22.5 + parent: 1 + type: Transform + - uid: 18881 + components: + - pos: 72.5,23.5 + parent: 1 + type: Transform + - uid: 18882 + components: + - pos: 71.5,9.5 + parent: 1 + type: Transform + - uid: 18883 + components: + - pos: 71.5,10.5 + parent: 1 + type: Transform + - uid: 18884 + components: + - pos: 71.5,11.5 + parent: 1 + type: Transform + - uid: 18885 + components: + - pos: 71.5,12.5 + parent: 1 + type: Transform + - uid: 18886 + components: + - pos: 71.5,13.5 + parent: 1 + type: Transform + - uid: 18887 + components: + - pos: 71.5,14.5 + parent: 1 + type: Transform + - uid: 18888 + components: + - pos: 71.5,15.5 + parent: 1 + type: Transform + - uid: 18889 + components: + - pos: 71.5,16.5 + parent: 1 + type: Transform + - uid: 18890 + components: + - pos: 71.5,17.5 + parent: 1 + type: Transform + - uid: 18891 + components: + - pos: 71.5,18.5 + parent: 1 + type: Transform + - uid: 18892 + components: + - pos: 71.5,19.5 + parent: 1 + type: Transform + - uid: 18893 + components: + - pos: 71.5,20.5 + parent: 1 + type: Transform + - uid: 18894 + components: + - pos: 71.5,21.5 + parent: 1 + type: Transform + - uid: 18895 + components: + - pos: 70.5,13.5 + parent: 1 + type: Transform + - uid: 18896 + components: + - pos: 69.5,13.5 + parent: 1 + type: Transform + - uid: 18897 + components: + - pos: 68.5,13.5 + parent: 1 + type: Transform + - uid: 18898 + components: + - pos: 67.5,13.5 + parent: 1 + type: Transform + - uid: 18899 + components: + - pos: 66.5,13.5 + parent: 1 + type: Transform + - uid: 18900 + components: + - pos: 65.5,13.5 + parent: 1 + type: Transform + - uid: 18901 + components: + - pos: 64.5,13.5 + parent: 1 + type: Transform + - uid: 18902 + components: + - pos: 63.5,13.5 + parent: 1 + type: Transform + - uid: 18903 + components: + - pos: 62.5,13.5 + parent: 1 + type: Transform + - uid: 18904 + components: + - pos: 61.5,13.5 + parent: 1 + type: Transform + - uid: 18905 + components: + - pos: 60.5,13.5 + parent: 1 + type: Transform + - uid: 18923 + components: + - pos: 72.5,24.5 + parent: 1 + type: Transform + - uid: 18924 + components: + - pos: 72.5,25.5 + parent: 1 + type: Transform + - uid: 18925 + components: + - pos: 72.5,26.5 + parent: 1 + type: Transform + - uid: 18926 + components: + - pos: 71.5,26.5 + parent: 1 + type: Transform + - uid: 18927 + components: + - pos: 70.5,26.5 + parent: 1 + type: Transform + - uid: 18928 + components: + - pos: 69.5,26.5 + parent: 1 + type: Transform + - uid: 18929 + components: + - pos: 68.5,26.5 + parent: 1 + type: Transform + - uid: 18930 + components: + - pos: 67.5,26.5 + parent: 1 + type: Transform + - uid: 18931 + components: + - pos: 66.5,26.5 + parent: 1 + type: Transform + - uid: 18932 + components: + - pos: 65.5,26.5 + parent: 1 + type: Transform + - uid: 18933 + components: + - pos: 64.5,26.5 + parent: 1 + type: Transform + - uid: 18934 + components: + - pos: 63.5,26.5 + parent: 1 + type: Transform + - uid: 18935 + components: + - pos: 62.5,26.5 + parent: 1 + type: Transform + - uid: 18936 + components: + - pos: 61.5,26.5 + parent: 1 + type: Transform + - uid: 18937 + components: + - pos: 61.5,27.5 + parent: 1 + type: Transform + - uid: 18938 + components: + - pos: 61.5,28.5 + parent: 1 + type: Transform + - uid: 18939 + components: + - pos: 61.5,25.5 + parent: 1 + type: Transform + - uid: 18940 + components: + - pos: 61.5,24.5 + parent: 1 + type: Transform + - uid: 18941 + components: + - pos: 70.5,27.5 + parent: 1 + type: Transform + - uid: 18942 + components: + - pos: 70.5,28.5 + parent: 1 + type: Transform + - uid: 18943 + components: + - pos: 70.5,29.5 + parent: 1 + type: Transform + - uid: 18944 + components: + - pos: 70.5,30.5 + parent: 1 + type: Transform + - uid: 18945 + components: + - pos: 70.5,31.5 + parent: 1 + type: Transform + - uid: 18946 + components: + - pos: 70.5,32.5 + parent: 1 + type: Transform + - uid: 18947 + components: + - pos: 71.5,32.5 + parent: 1 + type: Transform + - uid: 18948 + components: + - pos: 72.5,32.5 + parent: 1 + type: Transform + - uid: 18949 + components: + - pos: 73.5,32.5 + parent: 1 + type: Transform + - uid: 18950 + components: + - pos: 74.5,32.5 + parent: 1 + type: Transform + - uid: 18951 + components: + - pos: 75.5,32.5 + parent: 1 + type: Transform + - uid: 18952 + components: + - pos: 76.5,32.5 + parent: 1 + type: Transform + - uid: 18953 + components: + - pos: 77.5,32.5 + parent: 1 + type: Transform + - uid: 18954 + components: + - pos: 78.5,32.5 + parent: 1 + type: Transform + - uid: 18955 + components: + - pos: 79.5,32.5 + parent: 1 + type: Transform + - uid: 18956 + components: + - pos: 80.5,32.5 + parent: 1 + type: Transform + - uid: 18957 + components: + - pos: 81.5,32.5 + parent: 1 + type: Transform + - uid: 18958 + components: + - pos: 71.5,30.5 + parent: 1 + type: Transform + - uid: 18959 + components: + - pos: 72.5,30.5 + parent: 1 + type: Transform + - uid: 18960 + components: + - pos: 73.5,30.5 + parent: 1 + type: Transform + - uid: 18961 + components: + - pos: 74.5,30.5 + parent: 1 + type: Transform + - uid: 18962 + components: + - pos: 75.5,30.5 + parent: 1 + type: Transform + - uid: 18963 + components: + - pos: 76.5,30.5 + parent: 1 + type: Transform + - uid: 18964 + components: + - pos: 77.5,30.5 + parent: 1 + type: Transform + - uid: 18965 + components: + - pos: 78.5,30.5 + parent: 1 + type: Transform + - uid: 19112 + components: + - pos: 60.5,12.5 + parent: 1 + type: Transform + - uid: 19113 + components: + - pos: 60.5,11.5 + parent: 1 + type: Transform + - uid: 19114 + components: + - pos: 60.5,10.5 + parent: 1 + type: Transform + - uid: 19115 + components: + - pos: 60.5,9.5 + parent: 1 + type: Transform + - uid: 19116 + components: + - pos: 60.5,8.5 + parent: 1 + type: Transform + - uid: 19117 + components: + - pos: 60.5,7.5 + parent: 1 + type: Transform + - uid: 19118 + components: + - pos: 60.5,6.5 + parent: 1 + type: Transform + - uid: 19183 + components: + - pos: -16.5,22.5 + parent: 1 + type: Transform + - uid: 19184 + components: + - pos: -16.5,21.5 + parent: 1 + type: Transform + - uid: 19185 + components: + - pos: -15.5,21.5 + parent: 1 + type: Transform + - uid: 19186 + components: + - pos: -14.5,21.5 + parent: 1 + type: Transform + - uid: 19187 + components: + - pos: -17.5,21.5 + parent: 1 + type: Transform + - uid: 19188 + components: + - pos: -18.5,21.5 + parent: 1 + type: Transform + - uid: 19189 + components: + - pos: -18.5,22.5 + parent: 1 + type: Transform + - uid: 19190 + components: + - pos: -18.5,23.5 + parent: 1 + type: Transform + - uid: 19191 + components: + - pos: -18.5,24.5 + parent: 1 + type: Transform + - uid: 19192 + components: + - pos: -18.5,25.5 + parent: 1 + type: Transform + - uid: 19193 + components: + - pos: -18.5,26.5 + parent: 1 + type: Transform + - uid: 19194 + components: + - pos: -17.5,26.5 + parent: 1 + type: Transform + - uid: 19195 + components: + - pos: -16.5,26.5 + parent: 1 + type: Transform + - uid: 19196 + components: + - pos: -16.5,27.5 + parent: 1 + type: Transform + - uid: 19197 + components: + - pos: -15.5,27.5 + parent: 1 + type: Transform + - uid: 19198 + components: + - pos: -14.5,27.5 + parent: 1 + type: Transform + - uid: 19199 + components: + - pos: -13.5,27.5 + parent: 1 + type: Transform + - uid: 19200 + components: + - pos: -12.5,27.5 + parent: 1 + type: Transform + - uid: 19201 + components: + - pos: -11.5,27.5 + parent: 1 + type: Transform + - uid: 19202 + components: + - pos: -10.5,27.5 + parent: 1 + type: Transform + - uid: 19203 + components: + - pos: -9.5,27.5 + parent: 1 + type: Transform + - uid: 19204 + components: + - pos: -8.5,27.5 + parent: 1 + type: Transform + - uid: 19205 + components: + - pos: -7.5,27.5 + parent: 1 + type: Transform + - uid: 19206 + components: + - pos: -6.5,27.5 + parent: 1 + type: Transform + - uid: 19207 + components: + - pos: -5.5,27.5 + parent: 1 + type: Transform + - uid: 19208 + components: + - pos: -4.5,27.5 + parent: 1 + type: Transform + - uid: 19209 + components: + - pos: -3.5,27.5 + parent: 1 + type: Transform + - uid: 19210 + components: + - pos: -2.5,27.5 + parent: 1 + type: Transform + - uid: 19211 + components: + - pos: -1.5,27.5 + parent: 1 + type: Transform + - uid: 19212 + components: + - pos: -0.5,27.5 + parent: 1 + type: Transform + - uid: 19213 + components: + - pos: 0.5,27.5 + parent: 1 + type: Transform + - uid: 19214 + components: + - pos: 1.5,27.5 + parent: 1 + type: Transform + - uid: 19237 + components: + - pos: -19.5,21.5 + parent: 1 + type: Transform + - uid: 19238 + components: + - pos: -20.5,21.5 + parent: 1 + type: Transform + - uid: 19239 + components: + - pos: -21.5,21.5 + parent: 1 + type: Transform + - uid: 19240 + components: + - pos: -22.5,21.5 + parent: 1 + type: Transform + - uid: 19241 + components: + - pos: -23.5,21.5 + parent: 1 + type: Transform + - uid: 19242 + components: + - pos: -24.5,21.5 + parent: 1 + type: Transform + - uid: 19243 + components: + - pos: -25.5,21.5 + parent: 1 + type: Transform + - uid: 19244 + components: + - pos: -26.5,21.5 + parent: 1 + type: Transform + - uid: 19245 + components: + - pos: -26.5,20.5 + parent: 1 + type: Transform + - uid: 19246 + components: + - pos: -26.5,19.5 + parent: 1 + type: Transform + - uid: 19247 + components: + - pos: -26.5,18.5 + parent: 1 + type: Transform + - uid: 19248 + components: + - pos: -26.5,17.5 + parent: 1 + type: Transform + - uid: 19249 + components: + - pos: -26.5,16.5 + parent: 1 + type: Transform + - uid: 19250 + components: + - pos: -26.5,15.5 + parent: 1 + type: Transform + - uid: 19251 + components: + - pos: -26.5,14.5 + parent: 1 + type: Transform + - uid: 19252 + components: + - pos: -25.5,14.5 + parent: 1 + type: Transform + - uid: 19253 + components: + - pos: -24.5,14.5 + parent: 1 + type: Transform + - uid: 19254 + components: + - pos: -23.5,14.5 + parent: 1 + type: Transform + - uid: 19255 + components: + - pos: -22.5,14.5 + parent: 1 + type: Transform + - uid: 19256 + components: + - pos: -21.5,14.5 + parent: 1 + type: Transform + - uid: 19257 + components: + - pos: -20.5,14.5 + parent: 1 + type: Transform + - uid: 19258 + components: + - pos: -19.5,14.5 + parent: 1 + type: Transform + - uid: 19259 + components: + - pos: -18.5,14.5 + parent: 1 + type: Transform + - uid: 19260 + components: + - pos: -18.5,13.5 + parent: 1 + type: Transform + - uid: 19261 + components: + - pos: -25.5,8.5 + parent: 1 + type: Transform + - uid: 19262 + components: + - pos: -26.5,8.5 + parent: 1 + type: Transform + - uid: 19263 + components: + - pos: -26.5,9.5 + parent: 1 + type: Transform + - uid: 19264 + components: + - pos: -26.5,10.5 + parent: 1 + type: Transform + - uid: 19265 + components: + - pos: -26.5,11.5 + parent: 1 + type: Transform + - uid: 19266 + components: + - pos: -26.5,12.5 + parent: 1 + type: Transform + - uid: 19267 + components: + - pos: -26.5,13.5 + parent: 1 + type: Transform + - uid: 19508 + components: + - pos: 28.5,25.5 + parent: 1 + type: Transform + - uid: 19509 + components: + - pos: 28.5,26.5 + parent: 1 + type: Transform + - uid: 19510 + components: + - pos: 28.5,27.5 + parent: 1 + type: Transform + - uid: 19511 + components: + - pos: 27.5,26.5 + parent: 1 + type: Transform + - uid: 19512 + components: + - pos: 26.5,26.5 + parent: 1 + type: Transform + - uid: 19513 + components: + - pos: 25.5,26.5 + parent: 1 + type: Transform + - uid: 19514 + components: + - pos: 24.5,26.5 + parent: 1 + type: Transform + - uid: 19521 + components: + - pos: -8.5,26.5 + parent: 1 + type: Transform + - uid: 19522 + components: + - pos: -8.5,25.5 + parent: 1 + type: Transform + - uid: 19523 + components: + - pos: -8.5,24.5 + parent: 1 + type: Transform + - uid: 19524 + components: + - pos: -8.5,23.5 + parent: 1 + type: Transform + - uid: 19525 + components: + - pos: -7.5,23.5 + parent: 1 + type: Transform + - uid: 19526 + components: + - pos: -7.5,22.5 + parent: 1 + type: Transform + - uid: 19527 + components: + - pos: -7.5,21.5 + parent: 1 + type: Transform + - uid: 19528 + components: + - pos: -6.5,21.5 + parent: 1 + type: Transform + - uid: 19529 + components: + - pos: -2.5,15.5 + parent: 1 + type: Transform + - uid: 19530 + components: + - pos: 24.5,27.5 + parent: 1 + type: Transform + - uid: 19531 + components: + - pos: 24.5,28.5 + parent: 1 + type: Transform + - uid: 19532 + components: + - pos: 23.5,28.5 + parent: 1 + type: Transform + - uid: 19533 + components: + - pos: 22.5,28.5 + parent: 1 + type: Transform + - uid: 19534 + components: + - pos: 21.5,28.5 + parent: 1 + type: Transform + - uid: 19535 + components: + - pos: 20.5,28.5 + parent: 1 + type: Transform + - uid: 19536 + components: + - pos: 19.5,28.5 + parent: 1 + type: Transform + - uid: 19537 + components: + - pos: 18.5,28.5 + parent: 1 + type: Transform + - uid: 19538 + components: + - pos: 17.5,28.5 + parent: 1 + type: Transform + - uid: 19539 + components: + - pos: 16.5,28.5 + parent: 1 + type: Transform + - uid: 19540 + components: + - pos: 15.5,28.5 + parent: 1 + type: Transform + - uid: 19541 + components: + - pos: 14.5,28.5 + parent: 1 + type: Transform + - uid: 19542 + components: + - pos: 17.5,27.5 + parent: 1 + type: Transform + - uid: 19543 + components: + - pos: 17.5,26.5 + parent: 1 + type: Transform + - uid: 19544 + components: + - pos: -3.5,15.5 + parent: 1 + type: Transform + - uid: 19545 + components: + - pos: -4.5,15.5 + parent: 1 + type: Transform + - uid: 19546 + components: + - pos: -4.5,16.5 + parent: 1 + type: Transform + - uid: 19547 + components: + - pos: -4.5,17.5 + parent: 1 + type: Transform + - uid: 19548 + components: + - pos: -4.5,18.5 + parent: 1 + type: Transform + - uid: 19549 + components: + - pos: -4.5,19.5 + parent: 1 + type: Transform + - uid: 19550 + components: + - pos: -4.5,20.5 + parent: 1 + type: Transform + - uid: 19551 + components: + - pos: -4.5,21.5 + parent: 1 + type: Transform + - uid: 19552 + components: + - pos: -5.5,21.5 + parent: 1 + type: Transform + - uid: 19556 + components: + - pos: 45.5,10.5 + parent: 1 + type: Transform + - uid: 19557 + components: + - pos: 46.5,10.5 + parent: 1 + type: Transform + - uid: 19558 + components: + - pos: 46.5,11.5 + parent: 1 + type: Transform + - uid: 19559 + components: + - pos: 46.5,12.5 + parent: 1 + type: Transform + - uid: 19560 + components: + - pos: 47.5,12.5 + parent: 1 + type: Transform + - uid: 19561 + components: + - pos: 48.5,12.5 + parent: 1 + type: Transform + - uid: 19562 + components: + - pos: 49.5,12.5 + parent: 1 + type: Transform + - uid: 19563 + components: + - pos: 49.5,13.5 + parent: 1 + type: Transform + - uid: 19564 + components: + - pos: 49.5,14.5 + parent: 1 + type: Transform + - uid: 19565 + components: + - pos: 49.5,15.5 + parent: 1 + type: Transform + - uid: 19566 + components: + - pos: 49.5,16.5 + parent: 1 + type: Transform + - uid: 19567 + components: + - pos: 49.5,17.5 + parent: 1 + type: Transform + - uid: 19568 + components: + - pos: 48.5,17.5 + parent: 1 + type: Transform + - uid: 19569 + components: + - pos: 48.5,18.5 + parent: 1 + type: Transform + - uid: 19570 + components: + - pos: 47.5,18.5 + parent: 1 + type: Transform + - uid: 19571 + components: + - pos: 47.5,19.5 + parent: 1 + type: Transform + - uid: 19572 + components: + - pos: 46.5,19.5 + parent: 1 + type: Transform + - uid: 19573 + components: + - pos: 46.5,20.5 + parent: 1 + type: Transform + - uid: 19574 + components: + - pos: 45.5,20.5 + parent: 1 + type: Transform + - uid: 19575 + components: + - pos: 45.5,21.5 + parent: 1 + type: Transform + - uid: 19583 + components: + - pos: 41.5,25.5 + parent: 1 + type: Transform + - uid: 19584 + components: + - pos: 40.5,25.5 + parent: 1 + type: Transform + - uid: 19585 + components: + - pos: 40.5,26.5 + parent: 1 + type: Transform + - uid: 19586 + components: + - pos: 39.5,26.5 + parent: 1 + type: Transform + - uid: 19587 + components: + - pos: 39.5,27.5 + parent: 1 + type: Transform + - uid: 19588 + components: + - pos: 38.5,27.5 + parent: 1 + type: Transform + - uid: 19589 + components: + - pos: 37.5,27.5 + parent: 1 + type: Transform + - uid: 19590 + components: + - pos: 36.5,27.5 + parent: 1 + type: Transform + - uid: 19591 + components: + - pos: 35.5,27.5 + parent: 1 + type: Transform + - uid: 19592 + components: + - pos: 34.5,27.5 + parent: 1 + type: Transform + - uid: 19593 + components: + - pos: 33.5,27.5 + parent: 1 + type: Transform + - uid: 19594 + components: + - pos: 32.5,27.5 + parent: 1 + type: Transform + - uid: 19595 + components: + - pos: 31.5,27.5 + parent: 1 + type: Transform + - uid: 19596 + components: + - pos: 31.5,28.5 + parent: 1 + type: Transform + - uid: 19597 + components: + - pos: 30.5,28.5 + parent: 1 + type: Transform + - uid: 19598 + components: + - pos: 29.5,28.5 + parent: 1 + type: Transform + - uid: 19599 + components: + - pos: 28.5,28.5 + parent: 1 + type: Transform + - uid: 19627 + components: + - pos: -8.5,21.5 + parent: 1 + type: Transform + - uid: 19660 + components: + - pos: 2.5,26.5 + parent: 1 + type: Transform + - uid: 19661 + components: + - pos: 2.5,25.5 + parent: 1 + type: Transform + - uid: 19662 + components: + - pos: 2.5,24.5 + parent: 1 + type: Transform + - uid: 19666 + components: + - pos: 2.5,23.5 + parent: 1 + type: Transform + - uid: 19667 + components: + - pos: 1.5,23.5 + parent: 1 + type: Transform + - uid: 19668 + components: + - pos: 1.5,22.5 + parent: 1 + type: Transform + - uid: 19669 + components: + - pos: 2.5,27.5 + parent: 1 + type: Transform + - uid: 19933 + components: + - pos: 39.5,-35.5 + parent: 1 + type: Transform + - uid: 19934 + components: + - pos: 40.5,-35.5 + parent: 1 + type: Transform + - uid: 19935 + components: + - pos: 41.5,-35.5 + parent: 1 + type: Transform + - uid: 20215 + components: + - pos: 90.5,-11.5 + parent: 1 + type: Transform + - uid: 20216 + components: + - pos: 90.5,-12.5 + parent: 1 + type: Transform + - uid: 20217 + components: + - pos: 91.5,-12.5 + parent: 1 + type: Transform + - uid: 20218 + components: + - pos: 89.5,-11.5 + parent: 1 + type: Transform + - uid: 20219 + components: + - pos: 89.5,-10.5 + parent: 1 + type: Transform + - uid: 20220 + components: + - pos: 90.5,-13.5 + parent: 1 + type: Transform + - uid: 20221 + components: + - pos: 90.5,-14.5 + parent: 1 + type: Transform + - uid: 20222 + components: + - pos: 90.5,-15.5 + parent: 1 + type: Transform + - uid: 20223 + components: + - pos: 90.5,-16.5 + parent: 1 + type: Transform + - uid: 20224 + components: + - pos: 89.5,-16.5 + parent: 1 + type: Transform + - uid: 20225 + components: + - pos: 89.5,-17.5 + parent: 1 + type: Transform + - uid: 20226 + components: + - pos: 88.5,-17.5 + parent: 1 + type: Transform + - uid: 20227 + components: + - pos: 88.5,-18.5 + parent: 1 + type: Transform + - uid: 20228 + components: + - pos: 87.5,-18.5 + parent: 1 + type: Transform + - uid: 20229 + components: + - pos: 87.5,-19.5 + parent: 1 + type: Transform + - uid: 20230 + components: + - pos: 86.5,-19.5 + parent: 1 + type: Transform + - uid: 20231 + components: + - pos: 85.5,-19.5 + parent: 1 + type: Transform + - uid: 20232 + components: + - pos: 84.5,-19.5 + parent: 1 + type: Transform + - uid: 20233 + components: + - pos: 83.5,-19.5 + parent: 1 + type: Transform + - uid: 20234 + components: + - pos: 82.5,-19.5 + parent: 1 + type: Transform + - uid: 20235 + components: + - pos: 81.5,-19.5 + parent: 1 + type: Transform + - uid: 20236 + components: + - pos: 80.5,-19.5 + parent: 1 + type: Transform + - uid: 20237 + components: + - pos: 79.5,-19.5 + parent: 1 + type: Transform + - uid: 20238 + components: + - pos: 78.5,-19.5 + parent: 1 + type: Transform + - uid: 20239 + components: + - pos: 77.5,-19.5 + parent: 1 + type: Transform + - uid: 20240 + components: + - pos: 76.5,-19.5 + parent: 1 + type: Transform + - uid: 20241 + components: + - pos: 75.5,-19.5 + parent: 1 + type: Transform + - uid: 20242 + components: + - pos: 75.5,-18.5 + parent: 1 + type: Transform + - uid: 20243 + components: + - pos: 75.5,-17.5 + parent: 1 + type: Transform + - uid: 20244 + components: + - pos: 75.5,-16.5 + parent: 1 + type: Transform + - uid: 20245 + components: + - pos: 75.5,-15.5 + parent: 1 + type: Transform + - uid: 20246 + components: + - pos: 76.5,-15.5 + parent: 1 + type: Transform + - uid: 20247 + components: + - pos: 77.5,-15.5 + parent: 1 + type: Transform + - uid: 20248 + components: + - pos: 78.5,-15.5 + parent: 1 + type: Transform + - uid: 20249 + components: + - pos: 79.5,-15.5 + parent: 1 + type: Transform + - uid: 20250 + components: + - pos: 79.5,-16.5 + parent: 1 + type: Transform + - uid: 20251 + components: + - pos: 75.5,-9.5 + parent: 1 + type: Transform + - uid: 20252 + components: + - pos: 75.5,-10.5 + parent: 1 + type: Transform + - uid: 20253 + components: + - pos: 75.5,-11.5 + parent: 1 + type: Transform + - uid: 20254 + components: + - pos: 75.5,-12.5 + parent: 1 + type: Transform + - uid: 20255 + components: + - pos: 75.5,-13.5 + parent: 1 + type: Transform + - uid: 20256 + components: + - pos: 75.5,-14.5 + parent: 1 + type: Transform + - uid: 20257 + components: + - pos: 75.5,-8.5 + parent: 1 + type: Transform + - uid: 20258 + components: + - pos: 75.5,-7.5 + parent: 1 + type: Transform + - uid: 20259 + components: + - pos: 74.5,-14.5 + parent: 1 + type: Transform + - uid: 20260 + components: + - pos: 73.5,-14.5 + parent: 1 + type: Transform + - uid: 20261 + components: + - pos: 72.5,-14.5 + parent: 1 + type: Transform + - uid: 20262 + components: + - pos: 71.5,-14.5 + parent: 1 + type: Transform + - uid: 20263 + components: + - pos: 70.5,-14.5 + parent: 1 + type: Transform + - uid: 20264 + components: + - pos: 69.5,-14.5 + parent: 1 + type: Transform + - uid: 20265 + components: + - pos: 68.5,-14.5 + parent: 1 + type: Transform + - uid: 20266 + components: + - pos: 67.5,-14.5 + parent: 1 + type: Transform + - uid: 20267 + components: + - pos: 66.5,-14.5 + parent: 1 + type: Transform + - uid: 20268 + components: + - pos: 65.5,-14.5 + parent: 1 + type: Transform + - uid: 20269 + components: + - pos: 65.5,-13.5 + parent: 1 + type: Transform + - uid: 20270 + components: + - pos: 64.5,-13.5 + parent: 1 + type: Transform + - uid: 20271 + components: + - pos: 63.5,-13.5 + parent: 1 + type: Transform + - uid: 20272 + components: + - pos: 63.5,-12.5 + parent: 1 + type: Transform + - uid: 20273 + components: + - pos: 63.5,-11.5 + parent: 1 + type: Transform + - uid: 20274 + components: + - pos: 63.5,-10.5 + parent: 1 + type: Transform + - uid: 20275 + components: + - pos: 63.5,-9.5 + parent: 1 + type: Transform + - uid: 20276 + components: + - pos: 63.5,-8.5 + parent: 1 + type: Transform + - uid: 20277 + components: + - pos: 63.5,-7.5 + parent: 1 + type: Transform + - uid: 20278 + components: + - pos: 63.5,-6.5 + parent: 1 + type: Transform + - uid: 20279 + components: + - pos: 63.5,-5.5 + parent: 1 + type: Transform + - uid: 20280 + components: + - pos: 63.5,-4.5 + parent: 1 + type: Transform + - uid: 20281 + components: + - pos: 63.5,-3.5 + parent: 1 + type: Transform + - uid: 20282 + components: + - pos: 63.5,-2.5 + parent: 1 + type: Transform + - uid: 20283 + components: + - pos: 63.5,-1.5 + parent: 1 + type: Transform + - uid: 20284 + components: + - pos: 63.5,-0.5 + parent: 1 + type: Transform + - uid: 20285 + components: + - pos: 63.5,0.5 + parent: 1 + type: Transform + - uid: 20286 + components: + - pos: 62.5,0.5 + parent: 1 + type: Transform + - uid: 20287 + components: + - pos: 61.5,0.5 + parent: 1 + type: Transform + - uid: 20517 + components: + - pos: 109.5,-4.5 + parent: 1 + type: Transform + - uid: 20518 + components: + - pos: 108.5,-4.5 + parent: 1 + type: Transform + - uid: 20519 + components: + - pos: 107.5,-4.5 + parent: 1 + type: Transform + - uid: 20520 + components: + - pos: 108.5,-3.5 + parent: 1 + type: Transform + - uid: 20521 + components: + - pos: 108.5,-2.5 + parent: 1 + type: Transform + - uid: 20522 + components: + - pos: 108.5,-1.5 + parent: 1 + type: Transform + - uid: 20523 + components: + - pos: 107.5,-1.5 + parent: 1 + type: Transform + - uid: 20524 + components: + - pos: 106.5,-1.5 + parent: 1 + type: Transform + - uid: 20525 + components: + - pos: 105.5,-1.5 + parent: 1 + type: Transform + - uid: 20526 + components: + - pos: 105.5,-0.5 + parent: 1 + type: Transform + - uid: 20527 + components: + - pos: 105.5,0.5 + parent: 1 + type: Transform + - uid: 20528 + components: + - pos: 105.5,1.5 + parent: 1 + type: Transform + - uid: 20529 + components: + - pos: 105.5,2.5 + parent: 1 + type: Transform + - uid: 20530 + components: + - pos: 105.5,3.5 + parent: 1 + type: Transform + - uid: 20531 + components: + - pos: 106.5,3.5 + parent: 1 + type: Transform + - uid: 20532 + components: + - pos: 107.5,3.5 + parent: 1 + type: Transform + - uid: 20533 + components: + - pos: 108.5,3.5 + parent: 1 + type: Transform + - uid: 20534 + components: + - pos: 109.5,3.5 + parent: 1 + type: Transform + - uid: 20535 + components: + - pos: 110.5,3.5 + parent: 1 + type: Transform + - uid: 20536 + components: + - pos: 110.5,2.5 + parent: 1 + type: Transform + - uid: 20537 + components: + - pos: 110.5,1.5 + parent: 1 + type: Transform + - uid: 20538 + components: + - pos: 110.5,0.5 + parent: 1 + type: Transform + - uid: 20539 + components: + - pos: 105.5,4.5 + parent: 1 + type: Transform + - uid: 20540 + components: + - pos: 104.5,4.5 + parent: 1 + type: Transform + - uid: 20541 + components: + - pos: 103.5,4.5 + parent: 1 + type: Transform + - uid: 20542 + components: + - pos: 102.5,4.5 + parent: 1 + type: Transform + - uid: 20543 + components: + - pos: 101.5,4.5 + parent: 1 + type: Transform + - uid: 20544 + components: + - pos: 100.5,4.5 + parent: 1 + type: Transform + - uid: 20545 + components: + - pos: 99.5,4.5 + parent: 1 + type: Transform + - uid: 20546 + components: + - pos: 99.5,5.5 + parent: 1 + type: Transform + - uid: 20547 + components: + - pos: 99.5,6.5 + parent: 1 + type: Transform + - uid: 20548 + components: + - pos: 99.5,7.5 + parent: 1 + type: Transform + - uid: 20549 + components: + - pos: 99.5,8.5 + parent: 1 + type: Transform + - uid: 20550 + components: + - pos: 99.5,9.5 + parent: 1 + type: Transform + - uid: 20551 + components: + - pos: 99.5,10.5 + parent: 1 + type: Transform + - uid: 20552 + components: + - pos: 100.5,10.5 + parent: 1 + type: Transform + - uid: 20553 + components: + - pos: 100.5,11.5 + parent: 1 + type: Transform + - uid: 20554 + components: + - pos: 100.5,12.5 + parent: 1 + type: Transform + - uid: 20555 + components: + - pos: 100.5,13.5 + parent: 1 + type: Transform + - uid: 20556 + components: + - pos: 100.5,14.5 + parent: 1 + type: Transform + - uid: 20557 + components: + - pos: 99.5,14.5 + parent: 1 + type: Transform + - uid: 20558 + components: + - pos: 98.5,14.5 + parent: 1 + type: Transform + - uid: 20559 + components: + - pos: 97.5,14.5 + parent: 1 + type: Transform + - uid: 20560 + components: + - pos: 96.5,14.5 + parent: 1 + type: Transform + - uid: 20561 + components: + - pos: 96.5,15.5 + parent: 1 + type: Transform + - uid: 20562 + components: + - pos: 96.5,16.5 + parent: 1 + type: Transform + - uid: 20563 + components: + - pos: 97.5,16.5 + parent: 1 + type: Transform + - uid: 20564 + components: + - pos: 98.5,16.5 + parent: 1 + type: Transform + - uid: 20565 + components: + - pos: 98.5,17.5 + parent: 1 + type: Transform + - uid: 20722 + components: + - pos: -12.5,-14.5 + parent: 1 + type: Transform + - uid: 20723 + components: + - pos: -12.5,-15.5 + parent: 1 + type: Transform + - uid: 20724 + components: + - pos: -10.5,-16.5 + parent: 1 + type: Transform + - uid: 20725 + components: + - pos: -11.5,-15.5 + parent: 1 + type: Transform + - uid: 20726 + components: + - pos: -11.5,-16.5 + parent: 1 + type: Transform + - uid: 20727 + components: + - pos: -11.5,-17.5 + parent: 1 + type: Transform + - uid: 20728 + components: + - pos: -11.5,-18.5 + parent: 1 + type: Transform + - uid: 20729 + components: + - pos: -11.5,-19.5 + parent: 1 + type: Transform + - uid: 20730 + components: + - pos: -11.5,-20.5 + parent: 1 + type: Transform + - uid: 20731 + components: + - pos: -12.5,-20.5 + parent: 1 + type: Transform + - uid: 20732 + components: + - pos: -13.5,-20.5 + parent: 1 + type: Transform + - uid: 20733 + components: + - pos: -14.5,-20.5 + parent: 1 + type: Transform + - uid: 20734 + components: + - pos: -15.5,-20.5 + parent: 1 + type: Transform + - uid: 20735 + components: + - pos: -15.5,-19.5 + parent: 1 + type: Transform + - uid: 20736 + components: + - pos: -16.5,-19.5 + parent: 1 + type: Transform + - uid: 20742 + components: + - pos: -19.5,-16.5 + parent: 1 + type: Transform + - uid: 20743 + components: + - pos: -19.5,-15.5 + parent: 1 + type: Transform + - uid: 20744 + components: + - pos: -20.5,-15.5 + parent: 1 + type: Transform + - uid: 20745 + components: + - pos: -20.5,-14.5 + parent: 1 + type: Transform + - uid: 20746 + components: + - pos: -20.5,-12.5 + parent: 1 + type: Transform + - uid: 20753 + components: + - pos: -26.5,-12.5 + parent: 1 + type: Transform + - uid: 20754 + components: + - pos: -26.5,-11.5 + parent: 1 + type: Transform + - uid: 20755 + components: + - pos: -26.5,-10.5 + parent: 1 + type: Transform + - uid: 20756 + components: + - pos: -26.5,-9.5 + parent: 1 + type: Transform + - uid: 20757 + components: + - pos: -26.5,-8.5 + parent: 1 + type: Transform + - uid: 20758 + components: + - pos: -26.5,-7.5 + parent: 1 + type: Transform + - uid: 20759 + components: + - pos: -26.5,-6.5 + parent: 1 + type: Transform + - uid: 20760 + components: + - pos: -26.5,-5.5 + parent: 1 + type: Transform + - uid: 20761 + components: + - pos: -26.5,-4.5 + parent: 1 + type: Transform + - uid: 20762 + components: + - pos: -26.5,-3.5 + parent: 1 + type: Transform + - uid: 20763 + components: + - pos: -26.5,-2.5 + parent: 1 + type: Transform + - uid: 20764 + components: + - pos: -26.5,-1.5 + parent: 1 + type: Transform + - uid: 20765 + components: + - pos: -26.5,-0.5 + parent: 1 + type: Transform + - uid: 20766 + components: + - pos: -26.5,0.5 + parent: 1 + type: Transform + - uid: 20767 + components: + - pos: -25.5,0.5 + parent: 1 + type: Transform + - uid: 20769 + components: + - pos: -20.5,-13.5 + parent: 1 + type: Transform + - uid: 20770 + components: + - pos: -20.5,-11.5 + parent: 1 + type: Transform + - uid: 20771 + components: + - pos: -20.5,-10.5 + parent: 1 + type: Transform + - uid: 20772 + components: + - pos: -20.5,-9.5 + parent: 1 + type: Transform + - uid: 20773 + components: + - pos: -19.5,-9.5 + parent: 1 + type: Transform + - uid: 20774 + components: + - pos: -18.5,-9.5 + parent: 1 + type: Transform + - uid: 20775 + components: + - pos: -17.5,-9.5 + parent: 1 + type: Transform + - uid: 20776 + components: + - pos: -16.5,-9.5 + parent: 1 + type: Transform + - uid: 20777 + components: + - pos: -15.5,-9.5 + parent: 1 + type: Transform + - uid: 20778 + components: + - pos: -14.5,-9.5 + parent: 1 + type: Transform + - uid: 20779 + components: + - pos: -13.5,-9.5 + parent: 1 + type: Transform + - uid: 20780 + components: + - pos: -12.5,-9.5 + parent: 1 + type: Transform + - uid: 20781 + components: + - pos: -11.5,-9.5 + parent: 1 + type: Transform + - uid: 20782 + components: + - pos: -10.5,-9.5 + parent: 1 + type: Transform + - uid: 20783 + components: + - pos: -9.5,-9.5 + parent: 1 + type: Transform + - uid: 20784 + components: + - pos: -8.5,-9.5 + parent: 1 + type: Transform + - uid: 20785 + components: + - pos: -7.5,-9.5 + parent: 1 + type: Transform + - uid: 20786 + components: + - pos: -6.5,-9.5 + parent: 1 + type: Transform + - uid: 20799 + components: + - pos: -1.5,-13.5 + parent: 1 + type: Transform + - uid: 20801 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 20948 + components: + - pos: -0.5,-12.5 + parent: 1 + type: Transform + - uid: 21054 + components: + - pos: 128.5,0.5 + parent: 1 + type: Transform + - uid: 21055 + components: + - pos: 128.5,1.5 + parent: 1 + type: Transform + - uid: 21056 + components: + - pos: 128.5,2.5 + parent: 1 + type: Transform + - uid: 21057 + components: + - pos: 127.5,2.5 + parent: 1 + type: Transform + - uid: 21058 + components: + - pos: 126.5,2.5 + parent: 1 + type: Transform + - uid: 21131 + components: + - pos: 37.5,-16.5 + parent: 1 + type: Transform + - uid: 21132 + components: + - pos: 37.5,-17.5 + parent: 1 + type: Transform + - uid: 21133 + components: + - pos: 38.5,-17.5 + parent: 1 + type: Transform + - uid: 21134 + components: + - pos: 39.5,-17.5 + parent: 1 + type: Transform + - uid: 21135 + components: + - pos: 40.5,-17.5 + parent: 1 + type: Transform + - uid: 21136 + components: + - pos: 37.5,-18.5 + parent: 1 + type: Transform + - uid: 21137 + components: + - pos: 37.5,-19.5 + parent: 1 + type: Transform + - uid: 21138 + components: + - pos: 37.5,-20.5 + parent: 1 + type: Transform + - uid: 21139 + components: + - pos: 38.5,-20.5 + parent: 1 + type: Transform + - uid: 21140 + components: + - pos: 39.5,-20.5 + parent: 1 + type: Transform + - uid: 21141 + components: + - pos: 40.5,-20.5 + parent: 1 + type: Transform + - uid: 21142 + components: + - pos: 40.5,-19.5 + parent: 1 + type: Transform + - uid: 21143 + components: + - pos: 41.5,-19.5 + parent: 1 + type: Transform + - uid: 21144 + components: + - pos: 41.5,-18.5 + parent: 1 + type: Transform + - uid: 21145 + components: + - pos: 42.5,-18.5 + parent: 1 + type: Transform + - uid: 21146 + components: + - pos: 42.5,-17.5 + parent: 1 + type: Transform + - uid: 21147 + components: + - pos: 43.5,-17.5 + parent: 1 + type: Transform + - uid: 21148 + components: + - pos: 43.5,-16.5 + parent: 1 + type: Transform + - uid: 21149 + components: + - pos: 44.5,-16.5 + parent: 1 + type: Transform + - uid: 21150 + components: + - pos: 44.5,-15.5 + parent: 1 + type: Transform + - uid: 21151 + components: + - pos: 45.5,-15.5 + parent: 1 + type: Transform + - uid: 21154 + components: + - pos: 46.5,-13.5 + parent: 1 + type: Transform + - uid: 21155 + components: + - pos: 47.5,-13.5 + parent: 1 + type: Transform + - uid: 21156 + components: + - pos: 47.5,-12.5 + parent: 1 + type: Transform + - uid: 21157 + components: + - pos: 47.5,-11.5 + parent: 1 + type: Transform + - uid: 21158 + components: + - pos: 47.5,-10.5 + parent: 1 + type: Transform + - uid: 21159 + components: + - pos: 46.5,-10.5 + parent: 1 + type: Transform + - uid: 21160 + components: + - pos: 45.5,-10.5 + parent: 1 + type: Transform + - uid: 21161 + components: + - pos: 44.5,-10.5 + parent: 1 + type: Transform + - uid: 21162 + components: + - pos: 43.5,-10.5 + parent: 1 + type: Transform + - uid: 21163 + components: + - pos: 42.5,-10.5 + parent: 1 + type: Transform + - uid: 21164 + components: + - pos: 41.5,-10.5 + parent: 1 + type: Transform + - uid: 21165 + components: + - pos: 40.5,-10.5 + parent: 1 + type: Transform + - uid: 21166 + components: + - pos: 40.5,-9.5 + parent: 1 + type: Transform + - uid: 21167 + components: + - pos: 36.5,-20.5 + parent: 1 + type: Transform + - uid: 21168 + components: + - pos: 35.5,-20.5 + parent: 1 + type: Transform + - uid: 21169 + components: + - pos: 34.5,-20.5 + parent: 1 + type: Transform + - uid: 21170 + components: + - pos: 33.5,-20.5 + parent: 1 + type: Transform + - uid: 21171 + components: + - pos: 32.5,-20.5 + parent: 1 + type: Transform + - uid: 21172 + components: + - pos: 31.5,-20.5 + parent: 1 + type: Transform + - uid: 21173 + components: + - pos: 30.5,-20.5 + parent: 1 + type: Transform + - uid: 21174 + components: + - pos: 29.5,-20.5 + parent: 1 + type: Transform + - uid: 21175 + components: + - pos: 28.5,-20.5 + parent: 1 + type: Transform + - uid: 21176 + components: + - pos: 27.5,-20.5 + parent: 1 + type: Transform + - uid: 21177 + components: + - pos: 26.5,-20.5 + parent: 1 + type: Transform + - uid: 21178 + components: + - pos: 25.5,-20.5 + parent: 1 + type: Transform + - uid: 21179 + components: + - pos: 24.5,-20.5 + parent: 1 + type: Transform + - uid: 21180 + components: + - pos: 23.5,-20.5 + parent: 1 + type: Transform + - uid: 21181 + components: + - pos: 22.5,-20.5 + parent: 1 + type: Transform + - uid: 21182 + components: + - pos: 21.5,-20.5 + parent: 1 + type: Transform + - uid: 21183 + components: + - pos: 21.5,-19.5 + parent: 1 + type: Transform + - uid: 21184 + components: + - pos: 21.5,-18.5 + parent: 1 + type: Transform + - uid: 21185 + components: + - pos: 21.5,-17.5 + parent: 1 + type: Transform + - uid: 21186 + components: + - pos: 21.5,-16.5 + parent: 1 + type: Transform + - uid: 21187 + components: + - pos: 21.5,-15.5 + parent: 1 + type: Transform + - uid: 21188 + components: + - pos: 21.5,-14.5 + parent: 1 + type: Transform + - uid: 21189 + components: + - pos: 21.5,-13.5 + parent: 1 + type: Transform + - uid: 21190 + components: + - pos: 20.5,-13.5 + parent: 1 + type: Transform + - uid: 21191 + components: + - pos: 20.5,-12.5 + parent: 1 + type: Transform + - uid: 21192 + components: + - pos: 20.5,-16.5 + parent: 1 + type: Transform + - uid: 21193 + components: + - pos: 20.5,-20.5 + parent: 1 + type: Transform + - uid: 21194 + components: + - pos: 19.5,-20.5 + parent: 1 + type: Transform + - uid: 21195 + components: + - pos: 18.5,-20.5 + parent: 1 + type: Transform + - uid: 21196 + components: + - pos: 17.5,-20.5 + parent: 1 + type: Transform + - uid: 21197 + components: + - pos: 16.5,-20.5 + parent: 1 + type: Transform + - uid: 21198 + components: + - pos: 15.5,-20.5 + parent: 1 + type: Transform + - uid: 21199 + components: + - pos: 14.5,-20.5 + parent: 1 + type: Transform + - uid: 21200 + components: + - pos: 14.5,-21.5 + parent: 1 + type: Transform + - uid: 21201 + components: + - pos: 22.5,-14.5 + parent: 1 + type: Transform + - uid: 21202 + components: + - pos: 23.5,-14.5 + parent: 1 + type: Transform + - uid: 21203 + components: + - pos: 24.5,-14.5 + parent: 1 + type: Transform + - uid: 21204 + components: + - pos: 25.5,-14.5 + parent: 1 + type: Transform + - uid: 21205 + components: + - pos: 25.5,-13.5 + parent: 1 + type: Transform + - uid: 21206 + components: + - pos: 25.5,-12.5 + parent: 1 + type: Transform + - uid: 21207 + components: + - pos: 25.5,-11.5 + parent: 1 + type: Transform + - uid: 21208 + components: + - pos: 25.5,-10.5 + parent: 1 + type: Transform + - uid: 21209 + components: + - pos: 25.5,-9.5 + parent: 1 + type: Transform + - uid: 21210 + components: + - pos: 25.5,-8.5 + parent: 1 + type: Transform + - uid: 21211 + components: + - pos: 25.5,-7.5 + parent: 1 + type: Transform + - uid: 21212 + components: + - pos: 25.5,-6.5 + parent: 1 + type: Transform + - uid: 21213 + components: + - pos: 26.5,-6.5 + parent: 1 + type: Transform + - uid: 21214 + components: + - pos: 27.5,-6.5 + parent: 1 + type: Transform + - uid: 21215 + components: + - pos: 28.5,-6.5 + parent: 1 + type: Transform + - uid: 21216 + components: + - pos: 29.5,-6.5 + parent: 1 + type: Transform + - uid: 21217 + components: + - pos: 30.5,-6.5 + parent: 1 + type: Transform + - uid: 21500 + components: + - pos: 23.5,26.5 + parent: 1 + type: Transform + - uid: 21506 + components: + - pos: 23.5,25.5 + parent: 1 + type: Transform + - uid: 21507 + components: + - pos: 23.5,24.5 + parent: 1 + type: Transform + - uid: 21509 + components: + - pos: 23.5,23.5 + parent: 1 + type: Transform + - uid: 21510 + components: + - pos: 23.5,22.5 + parent: 1 + type: Transform + - uid: 21543 + components: + - pos: 24.5,22.5 + parent: 1 + type: Transform + - uid: 21545 + components: + - pos: 25.5,22.5 + parent: 1 + type: Transform + - uid: 21561 + components: + - pos: 26.5,22.5 + parent: 1 + type: Transform + - uid: 21588 + components: + - pos: -54.5,-29.5 + parent: 1 + type: Transform + - uid: 21686 + components: + - pos: 26.5,21.5 + parent: 1 + type: Transform + - uid: 21693 + components: + - pos: 26.5,20.5 + parent: 1 + type: Transform + - uid: 21740 + components: + - pos: 27.5,20.5 + parent: 1 + type: Transform + - uid: 21741 + components: + - pos: 28.5,20.5 + parent: 1 + type: Transform + - uid: 21742 + components: + - pos: 29.5,20.5 + parent: 1 + type: Transform + - uid: 21743 + components: + - pos: 30.5,20.5 + parent: 1 + type: Transform + - uid: 21744 + components: + - pos: 31.5,20.5 + parent: 1 + type: Transform + - uid: 21821 + components: + - pos: 32.5,20.5 + parent: 1 + type: Transform + - uid: 21822 + components: + - pos: 33.5,20.5 + parent: 1 + type: Transform + - uid: 21823 + components: + - pos: 34.5,20.5 + parent: 1 + type: Transform + - uid: 22059 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 22084 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 22928 + components: + - pos: 46.5,-14.5 + parent: 1 + type: Transform + - uid: 22929 + components: + - pos: 46.5,-15.5 + parent: 1 + type: Transform + - uid: 22988 + components: + - pos: -79.5,20.5 + parent: 1 + type: Transform + - uid: 23204 + components: + - pos: -76.5,10.5 + parent: 1 + type: Transform + - uid: 23205 + components: + - pos: -76.5,11.5 + parent: 1 + type: Transform + - uid: 23206 + components: + - pos: -76.5,12.5 + parent: 1 + type: Transform + - uid: 23207 + components: + - pos: -75.5,12.5 + parent: 1 + type: Transform + - uid: 23208 + components: + - pos: -75.5,13.5 + parent: 1 + type: Transform + - uid: 23209 + components: + - pos: -75.5,14.5 + parent: 1 + type: Transform + - uid: 23210 + components: + - pos: -75.5,15.5 + parent: 1 + type: Transform + - uid: 23211 + components: + - pos: -75.5,16.5 + parent: 1 + type: Transform + - uid: 23212 + components: + - pos: -75.5,17.5 + parent: 1 + type: Transform + - uid: 23213 + components: + - pos: -76.5,17.5 + parent: 1 + type: Transform + - uid: 23214 + components: + - pos: -77.5,17.5 + parent: 1 + type: Transform + - uid: 23215 + components: + - pos: -77.5,18.5 + parent: 1 + type: Transform + - uid: 23216 + components: + - pos: -78.5,18.5 + parent: 1 + type: Transform + - uid: 23218 + components: + - pos: -78.5,19.5 + parent: 1 + type: Transform + - uid: 23219 + components: + - pos: -79.5,19.5 + parent: 1 + type: Transform + - uid: 23220 + components: + - pos: -97.5,20.5 + parent: 1 + type: Transform + - uid: 23221 + components: + - pos: -79.5,21.5 + parent: 1 + type: Transform + - uid: 23222 + components: + - pos: -80.5,21.5 + parent: 1 + type: Transform + - uid: 23223 + components: + - pos: -81.5,21.5 + parent: 1 + type: Transform + - uid: 23226 + components: + - pos: -82.5,21.5 + parent: 1 + type: Transform + - uid: 23227 + components: + - pos: -83.5,21.5 + parent: 1 + type: Transform + - uid: 23229 + components: + - pos: -84.5,21.5 + parent: 1 + type: Transform + - uid: 23230 + components: + - pos: -85.5,21.5 + parent: 1 + type: Transform + - uid: 23231 + components: + - pos: -86.5,21.5 + parent: 1 + type: Transform + - uid: 23232 + components: + - pos: -87.5,21.5 + parent: 1 + type: Transform + - uid: 23233 + components: + - pos: -88.5,21.5 + parent: 1 + type: Transform + - uid: 23234 + components: + - pos: -89.5,21.5 + parent: 1 + type: Transform + - uid: 23235 + components: + - pos: -90.5,21.5 + parent: 1 + type: Transform + - uid: 23236 + components: + - pos: -91.5,21.5 + parent: 1 + type: Transform + - uid: 23237 + components: + - pos: -92.5,21.5 + parent: 1 + type: Transform + - uid: 23238 + components: + - pos: -93.5,21.5 + parent: 1 + type: Transform + - uid: 23239 + components: + - pos: -94.5,21.5 + parent: 1 + type: Transform + - uid: 23240 + components: + - pos: -95.5,21.5 + parent: 1 + type: Transform + - uid: 23241 + components: + - pos: -96.5,21.5 + parent: 1 + type: Transform + - uid: 23242 + components: + - pos: -97.5,21.5 + parent: 1 + type: Transform + - uid: 23243 + components: + - pos: -97.5,19.5 + parent: 1 + type: Transform + - uid: 23244 + components: + - pos: -98.5,19.5 + parent: 1 + type: Transform + - uid: 23245 + components: + - pos: -98.5,18.5 + parent: 1 + type: Transform + - uid: 23246 + components: + - pos: -99.5,18.5 + parent: 1 + type: Transform + - uid: 23247 + components: + - pos: -99.5,17.5 + parent: 1 + type: Transform + - uid: 23248 + components: + - pos: -100.5,17.5 + parent: 1 + type: Transform + - uid: 23249 + components: + - pos: -101.5,17.5 + parent: 1 + type: Transform + - uid: 23250 + components: + - pos: -101.5,16.5 + parent: 1 + type: Transform + - uid: 23253 + components: + - pos: -101.5,15.5 + parent: 1 + type: Transform + - uid: 23254 + components: + - pos: -101.5,14.5 + parent: 1 + type: Transform + - uid: 23260 + components: + - pos: -101.5,13.5 + parent: 1 + type: Transform + - uid: 23262 + components: + - pos: -101.5,12.5 + parent: 1 + type: Transform + - uid: 23263 + components: + - pos: -101.5,11.5 + parent: 1 + type: Transform + - uid: 23264 + components: + - pos: -101.5,10.5 + parent: 1 + type: Transform + - uid: 23295 + components: + - pos: -101.5,9.5 + parent: 1 + type: Transform + - uid: 23327 + components: + - pos: -101.5,8.5 + parent: 1 + type: Transform + - uid: 23332 + components: + - pos: -101.5,7.5 + parent: 1 + type: Transform + - uid: 23336 + components: + - pos: -101.5,6.5 + parent: 1 + type: Transform + - uid: 23341 + components: + - pos: -101.5,5.5 + parent: 1 + type: Transform + - uid: 23346 + components: + - pos: -101.5,4.5 + parent: 1 + type: Transform + - uid: 23356 + components: + - pos: -101.5,3.5 + parent: 1 + type: Transform + - uid: 23364 + components: + - pos: -101.5,2.5 + parent: 1 + type: Transform + - uid: 23365 + components: + - pos: -101.5,1.5 + parent: 1 + type: Transform + - uid: 23366 + components: + - pos: -101.5,0.5 + parent: 1 + type: Transform + - uid: 23367 + components: + - pos: -101.5,-0.5 + parent: 1 + type: Transform + - uid: 23380 + components: + - pos: -101.5,-1.5 + parent: 1 + type: Transform + - uid: 23381 + components: + - pos: -101.5,-2.5 + parent: 1 + type: Transform + - uid: 23382 + components: + - pos: -101.5,-3.5 + parent: 1 + type: Transform + - uid: 23383 + components: + - pos: -101.5,-4.5 + parent: 1 + type: Transform + - uid: 23384 + components: + - pos: -101.5,-5.5 + parent: 1 + type: Transform + - uid: 23385 + components: + - pos: -101.5,-6.5 + parent: 1 + type: Transform + - uid: 23386 + components: + - pos: -101.5,-7.5 + parent: 1 + type: Transform + - uid: 23387 + components: + - pos: -101.5,-8.5 + parent: 1 + type: Transform + - uid: 23388 + components: + - pos: -100.5,-8.5 + parent: 1 + type: Transform + - uid: 23520 + components: + - pos: 104.5,2.5 + parent: 1 + type: Transform + - uid: 23521 + components: + - pos: -11.5,-31.5 + parent: 1 + type: Transform + - uid: 23523 + components: + - pos: -2.5,-20.5 + parent: 1 + type: Transform + - uid: 23531 + components: + - pos: 28.5,11.5 + parent: 1 + type: Transform + - uid: 23532 + components: + - pos: 28.5,12.5 + parent: 1 + type: Transform + - uid: 23533 + components: + - pos: 28.5,10.5 + parent: 1 + type: Transform + - uid: 23534 + components: + - pos: 27.5,10.5 + parent: 1 + type: Transform + - uid: 23535 + components: + - pos: 27.5,9.5 + parent: 1 + type: Transform + - uid: 23536 + components: + - pos: 27.5,8.5 + parent: 1 + type: Transform + - uid: 23537 + components: + - pos: 27.5,7.5 + parent: 1 + type: Transform + - uid: 23538 + components: + - pos: 27.5,6.5 + parent: 1 + type: Transform + - uid: 23539 + components: + - pos: 27.5,5.5 + parent: 1 + type: Transform + - uid: 23540 + components: + - pos: 27.5,4.5 + parent: 1 + type: Transform + - uid: 23541 + components: + - pos: 28.5,4.5 + parent: 1 + type: Transform + - uid: 23542 + components: + - pos: 29.5,4.5 + parent: 1 + type: Transform + - uid: 23543 + components: + - pos: 29.5,5.5 + parent: 1 + type: Transform + - uid: 23548 + components: + - pos: -99.5,-8.5 + parent: 1 + type: Transform + - uid: 23549 + components: + - pos: -99.5,-9.5 + parent: 1 + type: Transform + - uid: 23550 + components: + - pos: -98.5,-9.5 + parent: 1 + type: Transform + - uid: 23551 + components: + - pos: -98.5,-10.5 + parent: 1 + type: Transform + - uid: 23552 + components: + - pos: -97.5,-10.5 + parent: 1 + type: Transform + - uid: 23764 + components: + - pos: -97.5,-11.5 + parent: 1 + type: Transform + - uid: 23811 + components: + - pos: -97.5,-12.5 + parent: 1 + type: Transform + - uid: 23836 + components: + - pos: -96.5,-12.5 + parent: 1 + type: Transform + - uid: 23870 + components: + - pos: -95.5,-12.5 + parent: 1 + type: Transform + - uid: 23871 + components: + - pos: -94.5,-12.5 + parent: 1 + type: Transform + - uid: 23872 + components: + - pos: -93.5,-12.5 + parent: 1 + type: Transform + - uid: 23873 + components: + - pos: -92.5,-12.5 + parent: 1 + type: Transform + - uid: 23874 + components: + - pos: -91.5,-12.5 + parent: 1 + type: Transform + - uid: 23875 + components: + - pos: -90.5,-12.5 + parent: 1 + type: Transform + - uid: 23876 + components: + - pos: -89.5,-12.5 + parent: 1 + type: Transform + - uid: 23877 + components: + - pos: -88.5,-12.5 + parent: 1 + type: Transform + - uid: 23878 + components: + - pos: -87.5,-12.5 + parent: 1 + type: Transform + - uid: 23879 + components: + - pos: -86.5,-12.5 + parent: 1 + type: Transform + - uid: 23880 + components: + - pos: -85.5,-12.5 + parent: 1 + type: Transform + - uid: 23881 + components: + - pos: -84.5,-12.5 + parent: 1 + type: Transform + - uid: 23921 + components: + - pos: -83.5,-12.5 + parent: 1 + type: Transform + - uid: 23943 + components: + - pos: -82.5,-12.5 + parent: 1 + type: Transform + - uid: 24051 + components: + - pos: 4.5,-46.5 + parent: 1 + type: Transform + - uid: 24052 + components: + - pos: 4.5,-45.5 + parent: 1 + type: Transform + - uid: 24053 + components: + - pos: 4.5,-44.5 + parent: 1 + type: Transform + - uid: 24054 + components: + - pos: 4.5,-43.5 + parent: 1 + type: Transform + - uid: 24055 + components: + - pos: 4.5,-42.5 + parent: 1 + type: Transform + - uid: 24056 + components: + - pos: 4.5,-41.5 + parent: 1 + type: Transform + - uid: 24057 + components: + - pos: 4.5,-40.5 + parent: 1 + type: Transform + - uid: 24058 + components: + - pos: 5.5,-40.5 + parent: 1 + type: Transform + - uid: 24067 + components: + - pos: 16.5,-30.5 + parent: 1 + type: Transform + - uid: 24068 + components: + - pos: 16.5,-31.5 + parent: 1 + type: Transform + - uid: 24069 + components: + - pos: 16.5,-32.5 + parent: 1 + type: Transform + - uid: 24070 + components: + - pos: 16.5,-33.5 + parent: 1 + type: Transform + - uid: 24071 + components: + - pos: 16.5,-34.5 + parent: 1 + type: Transform + - uid: 24072 + components: + - pos: 16.5,-35.5 + parent: 1 + type: Transform + - uid: 24073 + components: + - pos: 16.5,-36.5 + parent: 1 + type: Transform + - uid: 24074 + components: + - pos: 16.5,-37.5 + parent: 1 + type: Transform + - uid: 24075 + components: + - pos: 16.5,-38.5 + parent: 1 + type: Transform + - uid: 24076 + components: + - pos: 16.5,-39.5 + parent: 1 + type: Transform + - uid: 24077 + components: + - pos: 17.5,-39.5 + parent: 1 + type: Transform + - uid: 24078 + components: + - pos: 18.5,-39.5 + parent: 1 + type: Transform + - uid: 24079 + components: + - pos: 19.5,-39.5 + parent: 1 + type: Transform + - uid: 24080 + components: + - pos: 20.5,-39.5 + parent: 1 + type: Transform + - uid: 24081 + components: + - pos: 21.5,-39.5 + parent: 1 + type: Transform + - uid: 24082 + components: + - pos: 21.5,-40.5 + parent: 1 + type: Transform + - uid: 24116 + components: + - pos: 34.5,-41.5 + parent: 1 + type: Transform + - uid: 24127 + components: + - pos: 7.5,-29.5 + parent: 1 + type: Transform + - uid: 24128 + components: + - pos: 8.5,-29.5 + parent: 1 + type: Transform + - uid: 24129 + components: + - pos: 8.5,-28.5 + parent: 1 + type: Transform + - uid: 24130 + components: + - pos: 8.5,-27.5 + parent: 1 + type: Transform + - uid: 24131 + components: + - pos: 8.5,-26.5 + parent: 1 + type: Transform + - uid: 24132 + components: + - pos: 9.5,-26.5 + parent: 1 + type: Transform + - uid: 24133 + components: + - pos: 10.5,-26.5 + parent: 1 + type: Transform + - uid: 24134 + components: + - pos: 11.5,-26.5 + parent: 1 + type: Transform + - uid: 24135 + components: + - pos: 12.5,-26.5 + parent: 1 + type: Transform + - uid: 24136 + components: + - pos: 13.5,-26.5 + parent: 1 + type: Transform + - uid: 24137 + components: + - pos: 14.5,-26.5 + parent: 1 + type: Transform + - uid: 24138 + components: + - pos: 15.5,-26.5 + parent: 1 + type: Transform + - uid: 24139 + components: + - pos: 16.5,-26.5 + parent: 1 + type: Transform + - uid: 24140 + components: + - pos: 16.5,-27.5 + parent: 1 + type: Transform + - uid: 24141 + components: + - pos: 16.5,-28.5 + parent: 1 + type: Transform + - uid: 24142 + components: + - pos: 15.5,-29.5 + parent: 1 + type: Transform + - uid: 24143 + components: + - pos: 14.5,-29.5 + parent: 1 + type: Transform + - uid: 24218 + components: + - pos: 28.5,13.5 + parent: 1 + type: Transform + - uid: 24219 + components: + - pos: 28.5,14.5 + parent: 1 + type: Transform + - uid: 24220 + components: + - pos: 28.5,15.5 + parent: 1 + type: Transform + - uid: 24221 + components: + - pos: 28.5,16.5 + parent: 1 + type: Transform + - uid: 24222 + components: + - pos: 28.5,17.5 + parent: 1 + type: Transform + - uid: 24223 + components: + - pos: 28.5,18.5 + parent: 1 + type: Transform + - uid: 24224 + components: + - pos: 28.5,19.5 + parent: 1 + type: Transform + - uid: 24316 + components: + - pos: -1.5,-6.5 + parent: 1 + type: Transform + - uid: 24317 + components: + - pos: -81.5,-12.5 + parent: 1 + type: Transform + - uid: 24318 + components: + - pos: -80.5,-12.5 + parent: 1 + type: Transform + - uid: 24319 + components: + - pos: -79.5,-12.5 + parent: 1 + type: Transform + - uid: 24320 + components: + - pos: -79.5,-11.5 + parent: 1 + type: Transform + - uid: 24321 + components: + - pos: -79.5,-10.5 + parent: 1 + type: Transform + - uid: 24322 + components: + - pos: -78.5,-10.5 + parent: 1 + type: Transform + - uid: 24323 + components: + - pos: -78.5,-9.5 + parent: 1 + type: Transform + - uid: 24324 + components: + - pos: -77.5,-9.5 + parent: 1 + type: Transform + - uid: 24325 + components: + - pos: -77.5,-8.5 + parent: 1 + type: Transform + - uid: 24326 + components: + - pos: -76.5,-8.5 + parent: 1 + type: Transform + - uid: 24328 + components: + - pos: -75.5,-8.5 + parent: 1 + type: Transform + - uid: 24329 + components: + - pos: -75.5,-7.5 + parent: 1 + type: Transform + - uid: 24330 + components: + - pos: -75.5,-6.5 + parent: 1 + type: Transform + - uid: 24331 + components: + - pos: -75.5,-5.5 + parent: 1 + type: Transform + - uid: 24332 + components: + - pos: -75.5,-4.5 + parent: 1 + type: Transform + - uid: 24333 + components: + - pos: -75.5,-3.5 + parent: 1 + type: Transform + - uid: 24334 + components: + - pos: -75.5,-2.5 + parent: 1 + type: Transform + - uid: 24335 + components: + - pos: -75.5,-1.5 + parent: 1 + type: Transform + - uid: 24336 + components: + - pos: -75.5,-0.5 + parent: 1 + type: Transform + - uid: 24337 + components: + - pos: -75.5,0.5 + parent: 1 + type: Transform + - uid: 24338 + components: + - pos: -75.5,1.5 + parent: 1 + type: Transform + - uid: 24339 + components: + - pos: -76.5,1.5 + parent: 1 + type: Transform + - uid: 24340 + components: + - pos: -77.5,1.5 + parent: 1 + type: Transform + - uid: 24341 + components: + - pos: -76.5,2.5 + parent: 1 + type: Transform + - uid: 24342 + components: + - pos: -76.5,3.5 + parent: 1 + type: Transform + - uid: 24343 + components: + - pos: -76.5,4.5 + parent: 1 + type: Transform + - uid: 24344 + components: + - pos: -76.5,5.5 + parent: 1 + type: Transform + - uid: 24345 + components: + - pos: -76.5,6.5 + parent: 1 + type: Transform + - uid: 24346 + components: + - pos: -76.5,7.5 + parent: 1 + type: Transform + - uid: 24347 + components: + - pos: -76.5,8.5 + parent: 1 + type: Transform + - uid: 24348 + components: + - pos: -76.5,9.5 + parent: 1 + type: Transform + - uid: 24477 + components: + - pos: -95.5,20.5 + parent: 1 + type: Transform + - uid: 24482 + components: + - pos: -94.5,20.5 + parent: 1 + type: Transform + - uid: 24483 + components: + - pos: -93.5,20.5 + parent: 1 + type: Transform + - uid: 24484 + components: + - pos: -91.5,20.5 + parent: 1 + type: Transform + - uid: 24485 + components: + - pos: -90.5,20.5 + parent: 1 + type: Transform + - uid: 24486 + components: + - pos: -89.5,20.5 + parent: 1 + type: Transform + - uid: 24487 + components: + - pos: -87.5,20.5 + parent: 1 + type: Transform + - uid: 24488 + components: + - pos: -86.5,20.5 + parent: 1 + type: Transform + - uid: 24489 + components: + - pos: -85.5,20.5 + parent: 1 + type: Transform + - uid: 24490 + components: + - pos: -83.5,20.5 + parent: 1 + type: Transform + - uid: 24491 + components: + - pos: -82.5,20.5 + parent: 1 + type: Transform + - uid: 24492 + components: + - pos: -81.5,20.5 + parent: 1 + type: Transform + - uid: 24493 + components: + - pos: -95.5,-11.5 + parent: 1 + type: Transform + - uid: 24494 + components: + - pos: -100.5,15.5 + parent: 1 + type: Transform + - uid: 24495 + components: + - pos: -100.5,14.5 + parent: 1 + type: Transform + - uid: 24496 + components: + - pos: -100.5,13.5 + parent: 1 + type: Transform + - uid: 24497 + components: + - pos: -100.5,11.5 + parent: 1 + type: Transform + - uid: 24498 + components: + - pos: -100.5,10.5 + parent: 1 + type: Transform + - uid: 24499 + components: + - pos: -100.5,9.5 + parent: 1 + type: Transform + - uid: 24500 + components: + - pos: -100.5,7.5 + parent: 1 + type: Transform + - uid: 24501 + components: + - pos: -100.5,6.5 + parent: 1 + type: Transform + - uid: 24502 + components: + - pos: -100.5,5.5 + parent: 1 + type: Transform + - uid: 24503 + components: + - pos: -100.5,3.5 + parent: 1 + type: Transform + - uid: 24504 + components: + - pos: -100.5,2.5 + parent: 1 + type: Transform + - uid: 24505 + components: + - pos: -100.5,1.5 + parent: 1 + type: Transform + - uid: 24506 + components: + - pos: -100.5,-0.5 + parent: 1 + type: Transform + - uid: 24507 + components: + - pos: -100.5,-1.5 + parent: 1 + type: Transform + - uid: 24508 + components: + - pos: -100.5,-2.5 + parent: 1 + type: Transform + - uid: 24509 + components: + - pos: -100.5,-4.5 + parent: 1 + type: Transform + - uid: 24510 + components: + - pos: -100.5,-5.5 + parent: 1 + type: Transform + - uid: 24511 + components: + - pos: -100.5,-6.5 + parent: 1 + type: Transform + - uid: 24512 + components: + - pos: -94.5,-11.5 + parent: 1 + type: Transform + - uid: 24513 + components: + - pos: -93.5,-11.5 + parent: 1 + type: Transform + - uid: 24514 + components: + - pos: -91.5,-11.5 + parent: 1 + type: Transform + - uid: 24515 + components: + - pos: -90.5,-11.5 + parent: 1 + type: Transform + - uid: 24516 + components: + - pos: -89.5,-11.5 + parent: 1 + type: Transform + - uid: 24517 + components: + - pos: -87.5,-11.5 + parent: 1 + type: Transform + - uid: 24518 + components: + - pos: -86.5,-11.5 + parent: 1 + type: Transform + - uid: 24519 + components: + - pos: -85.5,-11.5 + parent: 1 + type: Transform + - uid: 24520 + components: + - pos: -83.5,-11.5 + parent: 1 + type: Transform + - uid: 24521 + components: + - pos: -82.5,-11.5 + parent: 1 + type: Transform + - uid: 24522 + components: + - pos: -81.5,-11.5 + parent: 1 + type: Transform + - uid: 24610 + components: + - pos: -91.5,11.5 + parent: 1 + type: Transform + - uid: 24611 + components: + - pos: -91.5,12.5 + parent: 1 + type: Transform + - uid: 24612 + components: + - pos: -92.5,12.5 + parent: 1 + type: Transform + - uid: 24613 + components: + - pos: -90.5,12.5 + parent: 1 + type: Transform + - uid: 24618 + components: + - pos: -83.5,11.5 + parent: 1 + type: Transform + - uid: 24619 + components: + - pos: -83.5,12.5 + parent: 1 + type: Transform + - uid: 24620 + components: + - pos: -84.5,12.5 + parent: 1 + type: Transform + - uid: 24621 + components: + - pos: -82.5,12.5 + parent: 1 + type: Transform + - uid: 24622 + components: + - pos: -91.5,-2.5 + parent: 1 + type: Transform + - uid: 24623 + components: + - pos: -91.5,-3.5 + parent: 1 + type: Transform + - uid: 24624 + components: + - pos: -92.5,-3.5 + parent: 1 + type: Transform + - uid: 24625 + components: + - pos: -90.5,-3.5 + parent: 1 + type: Transform + - uid: 24630 + components: + - pos: -83.5,-2.5 + parent: 1 + type: Transform + - uid: 24631 + components: + - pos: -83.5,-3.5 + parent: 1 + type: Transform + - uid: 24632 + components: + - pos: -84.5,-3.5 + parent: 1 + type: Transform + - uid: 24633 + components: + - pos: -82.5,-3.5 + parent: 1 + type: Transform + - uid: 25124 + components: + - pos: -6.5,-20.5 + parent: 1 + type: Transform + - uid: 25125 + components: + - pos: -3.5,-20.5 + parent: 1 + type: Transform + - uid: 25130 + components: + - pos: -38.5,-22.5 + parent: 1 + type: Transform + - uid: 25131 + components: + - pos: -45.5,-29.5 + parent: 1 + type: Transform + - uid: 25138 + components: + - pos: -1.5,-11.5 + parent: 1 + type: Transform + - uid: 25139 + components: + - pos: -1.5,-8.5 + parent: 1 + type: Transform + - uid: 25140 + components: + - pos: -1.5,-9.5 + parent: 1 + type: Transform + - uid: 25141 + components: + - pos: -1.5,-10.5 + parent: 1 + type: Transform + - uid: 25267 + components: + - pos: 104.5,29.5 + parent: 1 + type: Transform + - uid: 25268 + components: + - pos: 105.5,29.5 + parent: 1 + type: Transform + - uid: 25293 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 25294 + components: + - pos: -1.5,-20.5 + parent: 1 + type: Transform + - uid: 25320 + components: + - pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 25321 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 25322 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 25323 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 25324 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 25401 + components: + - pos: -46.5,-28.5 + parent: 1 + type: Transform + - uid: 25728 + components: + - pos: -0.5,39.5 + parent: 1 + type: Transform + - uid: 25729 + components: + - pos: 0.5,39.5 + parent: 1 + type: Transform + - uid: 25730 + components: + - pos: 0.5,38.5 + parent: 1 + type: Transform +- proto: CableMVStack + entities: + - uid: 16313 + components: + - pos: 39.390713,-16.328001 + parent: 1 + type: Transform +- proto: CableTerminal + entities: + - uid: 435 + components: + - rot: 3.141592653589793 rad + pos: -54.5,-16.5 + parent: 1 + type: Transform + - uid: 442 + components: + - rot: 3.141592653589793 rad + pos: -53.5,-16.5 + parent: 1 + type: Transform + - uid: 443 + components: + - rot: 3.141592653589793 rad + pos: -55.5,-16.5 + parent: 1 + type: Transform + - uid: 463 + components: + - pos: -55.5,-16.5 + parent: 1 + type: Transform + - uid: 464 + components: + - pos: -54.5,-16.5 + parent: 1 + type: Transform + - uid: 465 + components: + - pos: -53.5,-16.5 + parent: 1 + type: Transform + - uid: 11940 + components: + - pos: -40.5,41.5 + parent: 1 + type: Transform + - uid: 14931 + components: + - rot: 3.141592653589793 rad + pos: -72.5,-1.5 + parent: 1 + type: Transform + - uid: 16578 + components: + - pos: 53.5,25.5 + parent: 1 + type: Transform + - uid: 21034 + components: + - rot: 1.5707963267948966 rad + pos: 129.5,2.5 + parent: 1 + type: Transform + - uid: 24817 + components: + - rot: 3.141592653589793 rad + pos: 86.5,-23.5 + parent: 1 + type: Transform +- proto: CannabisSeeds + entities: + - uid: 12891 + components: + - rot: 3.141592653589793 rad + pos: 31.542429,-44.507324 + parent: 1 + type: Transform +- proto: CannonBall + entities: + - uid: 16056 + components: + - pos: 32.595047,48.68643 + parent: 1 + type: Transform +- proto: CapacitorStockPart + entities: + - uid: 6586 + components: + - pos: -61.28784,0.084352255 + parent: 1 + type: Transform + - uid: 7335 + components: + - pos: 9.15836,50.816696 + parent: 1 + type: Transform + - uid: 15746 + components: + - pos: -39.465042,-5.9865355 + parent: 1 + type: Transform + - uid: 16379 + components: + - pos: 6.301897,-17.943306 + parent: 1 + type: Transform +- proto: CarbonDioxideCanister + entities: + - uid: 2503 + components: + - pos: -43.5,31.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 7343 + components: + - pos: -0.5,42.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 23418 + components: + - pos: -43.5,31.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice +- proto: CargoPallet + entities: + - uid: 11080 + components: + - pos: -8.5,-7.5 + parent: 1 + type: Transform + - uid: 11081 + components: + - pos: -8.5,-6.5 + parent: 1 + type: Transform + - uid: 11085 + components: + - pos: -9.5,-6.5 + parent: 1 + type: Transform + - uid: 11087 + components: + - pos: -9.5,-7.5 + parent: 1 + type: Transform +- proto: CargoRequestComputerCircuitboard + entities: + - uid: 18016 + components: + - pos: -61.505306,0.67801905 + parent: 1 + type: Transform +- proto: CargoShuttleComputerCircuitboard + entities: + - uid: 6607 + components: + - pos: -61.507328,-1.6711884 + parent: 1 + type: Transform +- proto: CarpetBlack + entities: + - uid: 2294 + components: + - pos: 15.5,23.5 + parent: 1 + type: Transform + - uid: 2295 + components: + - pos: 16.5,23.5 + parent: 1 + type: Transform + - uid: 2958 + components: + - pos: 17.5,23.5 + parent: 1 + type: Transform + - uid: 2965 + components: + - pos: 17.5,22.5 + parent: 1 + type: Transform + - uid: 3996 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,50.5 + parent: 1 + type: Transform + - uid: 6422 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,49.5 + parent: 1 + type: Transform + - uid: 7596 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,50.5 + parent: 1 + type: Transform + - uid: 9507 + components: + - pos: 16.5,22.5 + parent: 1 + type: Transform + - uid: 11206 + components: + - pos: 15.5,22.5 + parent: 1 + type: Transform + - uid: 16901 + components: + - pos: 5.5,51.5 + parent: 1 + type: Transform + - uid: 16902 + components: + - pos: 5.5,50.5 + parent: 1 + type: Transform + - uid: 16903 + components: + - pos: 5.5,49.5 + parent: 1 + type: Transform + - uid: 16905 + components: + - pos: 4.5,49.5 + parent: 1 + type: Transform + - uid: 16906 + components: + - pos: 6.5,50.5 + parent: 1 + type: Transform +- proto: CarpetBlue + entities: + - uid: 9464 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-32.5 + parent: 1 + type: Transform + - uid: 9465 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-32.5 + parent: 1 + type: Transform + - uid: 9466 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-33.5 + parent: 1 + type: Transform + - uid: 14092 + components: + - pos: 40.5,-11.5 + parent: 1 + type: Transform + - uid: 15572 + components: + - pos: 39.5,-11.5 + parent: 1 + type: Transform + - uid: 23576 + components: + - pos: 37.5,-11.5 + parent: 1 + type: Transform + - uid: 23577 + components: + - pos: 37.5,-12.5 + parent: 1 + type: Transform + - uid: 23578 + components: + - pos: 37.5,-13.5 + parent: 1 + type: Transform + - uid: 23579 + components: + - pos: 38.5,-11.5 + parent: 1 + type: Transform + - uid: 23580 + components: + - pos: 38.5,-12.5 + parent: 1 + type: Transform + - uid: 23581 + components: + - pos: 38.5,-13.5 + parent: 1 + type: Transform + - uid: 23583 + components: + - pos: 39.5,-12.5 + parent: 1 + type: Transform + - uid: 23584 + components: + - pos: 39.5,-13.5 + parent: 1 + type: Transform + - uid: 23586 + components: + - pos: 40.5,-12.5 + parent: 1 + type: Transform + - uid: 23587 + components: + - pos: 40.5,-13.5 + parent: 1 + type: Transform + - uid: 23588 + components: + - pos: 41.5,-11.5 + parent: 1 + type: Transform + - uid: 23589 + components: + - pos: 41.5,-12.5 + parent: 1 + type: Transform + - uid: 23590 + components: + - pos: 41.5,-13.5 + parent: 1 + type: Transform + - uid: 23591 + components: + - pos: 42.5,-11.5 + parent: 1 + type: Transform + - uid: 23592 + components: + - pos: 42.5,-12.5 + parent: 1 + type: Transform + - uid: 23593 + components: + - pos: 42.5,-13.5 + parent: 1 + type: Transform +- proto: CarpetChapel + entities: + - uid: 4607 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,40.5 + parent: 1 + type: Transform + - uid: 4608 + components: + - pos: 11.5,39.5 + parent: 1 + type: Transform + - uid: 4609 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,39.5 + parent: 1 + type: Transform + - uid: 4610 + components: + - rot: 3.141592653589793 rad + pos: 12.5,40.5 + parent: 1 + type: Transform +- proto: CarpetGreen + entities: + - uid: 1061 + components: + - pos: -5.5,24.5 + parent: 1 + type: Transform + - uid: 1062 + components: + - pos: -5.5,23.5 + parent: 1 + type: Transform + - uid: 1063 + components: + - pos: -4.5,24.5 + parent: 1 + type: Transform + - uid: 1064 + components: + - pos: -4.5,23.5 + parent: 1 + type: Transform + - uid: 1294 + components: + - pos: -60.5,-2.5 + parent: 1 + type: Transform + - uid: 2990 + components: + - pos: -60.5,-3.5 + parent: 1 + type: Transform + - uid: 4007 + components: + - rot: 3.141592653589793 rad + pos: 60.5,18.5 + parent: 1 + type: Transform + - uid: 4008 + components: + - rot: 3.141592653589793 rad + pos: 60.5,17.5 + parent: 1 + type: Transform + - uid: 4009 + components: + - rot: 3.141592653589793 rad + pos: 60.5,16.5 + parent: 1 + type: Transform + - uid: 4010 + components: + - rot: 3.141592653589793 rad + pos: 61.5,18.5 + parent: 1 + type: Transform + - uid: 4011 + components: + - rot: 3.141592653589793 rad + pos: 61.5,17.5 + parent: 1 + type: Transform + - uid: 4012 + components: + - rot: 3.141592653589793 rad + pos: 61.5,16.5 + parent: 1 + type: Transform + - uid: 9512 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-36.5 + parent: 1 + type: Transform + - uid: 9531 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-35.5 + parent: 1 + type: Transform + - uid: 10024 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-36.5 + parent: 1 + type: Transform + - uid: 10025 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-35.5 + parent: 1 + type: Transform + - uid: 10026 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-36.5 + parent: 1 + type: Transform + - uid: 10027 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-35.5 + parent: 1 + type: Transform + - uid: 11542 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-37.5 + parent: 1 + type: Transform + - uid: 11543 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-38.5 + parent: 1 + type: Transform + - uid: 11544 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-39.5 + parent: 1 + type: Transform + - uid: 11545 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-37.5 + parent: 1 + type: Transform + - uid: 11546 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-38.5 + parent: 1 + type: Transform + - uid: 11547 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-39.5 + parent: 1 + type: Transform + - uid: 12326 + components: + - pos: 8.5,-43.5 + parent: 1 + type: Transform + - uid: 12327 + components: + - pos: 8.5,-44.5 + parent: 1 + type: Transform + - uid: 12343 + components: + - pos: 7.5,-43.5 + parent: 1 + type: Transform + - uid: 12436 + components: + - pos: 7.5,-44.5 + parent: 1 + type: Transform + - uid: 16595 + components: + - rot: 3.141592653589793 rad + pos: 52.5,24.5 + parent: 1 + type: Transform + - uid: 16596 + components: + - rot: 3.141592653589793 rad + pos: 52.5,25.5 + parent: 1 + type: Transform + - uid: 16597 + components: + - rot: 3.141592653589793 rad + pos: 51.5,24.5 + parent: 1 + type: Transform + - uid: 16598 + components: + - rot: 3.141592653589793 rad + pos: 51.5,25.5 + parent: 1 + type: Transform + - uid: 22830 + components: + - pos: -59.5,-2.5 + parent: 1 + type: Transform + - uid: 22831 + components: + - pos: -59.5,-3.5 + parent: 1 + type: Transform + - uid: 22832 + components: + - pos: -58.5,-2.5 + parent: 1 + type: Transform + - uid: 22833 + components: + - pos: -58.5,-3.5 + parent: 1 + type: Transform +- proto: CarpetOrange + entities: + - uid: 1655 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-13.5 + parent: 1 + type: Transform + - uid: 3552 + components: + - pos: -19.5,19.5 + parent: 1 + type: Transform + - uid: 5449 + components: + - pos: 86.5,27.5 + parent: 1 + type: Transform + - uid: 5450 + components: + - pos: 86.5,28.5 + parent: 1 + type: Transform + - uid: 5451 + components: + - pos: 85.5,27.5 + parent: 1 + type: Transform + - uid: 5452 + components: + - pos: 85.5,28.5 + parent: 1 + type: Transform + - uid: 5453 + components: + - pos: 85.5,29.5 + parent: 1 + type: Transform + - uid: 5457 + components: + - pos: 85.5,26.5 + parent: 1 + type: Transform + - uid: 5458 + components: + - pos: 86.5,26.5 + parent: 1 + type: Transform + - uid: 5459 + components: + - pos: 86.5,29.5 + parent: 1 + type: Transform + - uid: 5460 + components: + - pos: 87.5,26.5 + parent: 1 + type: Transform + - uid: 5461 + components: + - pos: 87.5,27.5 + parent: 1 + type: Transform + - uid: 5462 + components: + - pos: 87.5,28.5 + parent: 1 + type: Transform + - uid: 5463 + components: + - pos: 87.5,29.5 + parent: 1 + type: Transform + - uid: 6673 + components: + - pos: -4.5,-12.5 + parent: 1 + type: Transform + - uid: 9418 + components: + - pos: 28.5,-49.5 + parent: 1 + type: Transform + - uid: 9421 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-49.5 + parent: 1 + type: Transform + - uid: 9422 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-48.5 + parent: 1 + type: Transform + - uid: 9423 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-49.5 + parent: 1 + type: Transform + - uid: 9424 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-48.5 + parent: 1 + type: Transform + - uid: 9425 + components: + - pos: 28.5,-48.5 + parent: 1 + type: Transform + - uid: 9467 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-32.5 + parent: 1 + type: Transform + - uid: 9468 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-32.5 + parent: 1 + type: Transform + - uid: 9484 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-33.5 + parent: 1 + type: Transform + - uid: 16581 + components: + - rot: 3.141592653589793 rad + pos: 49.5,28.5 + parent: 1 + type: Transform + - uid: 16582 + components: + - rot: 3.141592653589793 rad + pos: 49.5,27.5 + parent: 1 + type: Transform + - uid: 16583 + components: + - rot: 3.141592653589793 rad + pos: 50.5,28.5 + parent: 1 + type: Transform + - uid: 16584 + components: + - rot: 3.141592653589793 rad + pos: 50.5,27.5 + parent: 1 + type: Transform + - uid: 16585 + components: + - rot: 3.141592653589793 rad + pos: 51.5,28.5 + parent: 1 + type: Transform + - uid: 16586 + components: + - rot: 3.141592653589793 rad + pos: 51.5,27.5 + parent: 1 + type: Transform + - uid: 16897 + components: + - pos: -19.5,18.5 + parent: 1 + type: Transform + - uid: 16898 + components: + - pos: -18.5,19.5 + parent: 1 + type: Transform + - uid: 16899 + components: + - pos: -18.5,18.5 + parent: 1 + type: Transform + - uid: 16961 + components: + - pos: -3.5,-12.5 + parent: 1 + type: Transform + - uid: 16962 + components: + - pos: -4.5,-11.5 + parent: 1 + type: Transform + - uid: 21584 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-13.5 + parent: 1 + type: Transform + - uid: 23594 + components: + - pos: 32.5,-13.5 + parent: 1 + type: Transform + - uid: 23595 + components: + - pos: 32.5,-14.5 + parent: 1 + type: Transform + - uid: 23596 + components: + - pos: 32.5,-15.5 + parent: 1 + type: Transform + - uid: 23597 + components: + - pos: 32.5,-16.5 + parent: 1 + type: Transform + - uid: 23598 + components: + - pos: 33.5,-13.5 + parent: 1 + type: Transform + - uid: 23599 + components: + - pos: 33.5,-14.5 + parent: 1 + type: Transform + - uid: 23600 + components: + - pos: 33.5,-15.5 + parent: 1 + type: Transform + - uid: 23601 + components: + - pos: 33.5,-16.5 + parent: 1 + type: Transform + - uid: 23602 + components: + - pos: 34.5,-13.5 + parent: 1 + type: Transform + - uid: 23603 + components: + - pos: 34.5,-14.5 + parent: 1 + type: Transform + - uid: 23604 + components: + - pos: 34.5,-15.5 + parent: 1 + type: Transform + - uid: 23605 + components: + - pos: 34.5,-16.5 + parent: 1 + type: Transform + - uid: 23606 + components: + - pos: 35.5,-13.5 + parent: 1 + type: Transform + - uid: 23607 + components: + - pos: 35.5,-14.5 + parent: 1 + type: Transform + - uid: 23608 + components: + - pos: 35.5,-15.5 + parent: 1 + type: Transform + - uid: 23609 + components: + - pos: 35.5,-16.5 + parent: 1 + type: Transform + - uid: 25136 + components: + - pos: -3.5,-11.5 + parent: 1 + type: Transform +- proto: CarpetPink + entities: + - uid: 1757 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + type: Transform + - uid: 2605 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 6269 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 10058 + components: + - pos: -4.5,-32.5 + parent: 1 + type: Transform + - uid: 10059 + components: + - pos: -4.5,-33.5 + parent: 1 + type: Transform + - uid: 10060 + components: + - pos: -3.5,-32.5 + parent: 1 + type: Transform + - uid: 10061 + components: + - pos: -3.5,-33.5 + parent: 1 + type: Transform + - uid: 25290 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 25291 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 25292 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 + type: Transform +- proto: CarpetPurple + entities: + - uid: 1659 + components: + - pos: 3.5,-9.5 + parent: 1 + type: Transform + - uid: 2019 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 2020 + components: + - pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 2021 + components: + - pos: 4.5,-9.5 + parent: 1 + type: Transform + - uid: 2022 + components: + - pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 2023 + components: + - pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 2026 + components: + - pos: 5.5,-9.5 + parent: 1 + type: Transform + - uid: 2027 + components: + - pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 2287 + components: + - pos: 16.5,19.5 + parent: 1 + type: Transform + - uid: 2918 + components: + - pos: 17.5,20.5 + parent: 1 + type: Transform + - uid: 3106 + components: + - pos: 3.5,-8.5 + parent: 1 + type: Transform + - uid: 4704 + components: + - pos: 75.5,-5.5 + parent: 1 + type: Transform + - uid: 4871 + components: + - pos: 77.5,-6.5 + parent: 1 + type: Transform + - uid: 4872 + components: + - pos: 75.5,-6.5 + parent: 1 + type: Transform + - uid: 4890 + components: + - pos: 76.5,-6.5 + parent: 1 + type: Transform + - uid: 4891 + components: + - pos: 77.5,-4.5 + parent: 1 + type: Transform + - uid: 4892 + components: + - pos: 76.5,-5.5 + parent: 1 + type: Transform + - uid: 4893 + components: + - pos: 77.5,-5.5 + parent: 1 + type: Transform + - uid: 5241 + components: + - pos: 16.5,20.5 + parent: 1 + type: Transform + - uid: 5252 + components: + - pos: 17.5,19.5 + parent: 1 + type: Transform + - uid: 5730 + components: + - rot: 3.141592653589793 rad + pos: 76.5,-4.5 + parent: 1 + type: Transform + - uid: 9389 + components: + - pos: 23.5,-43.5 + parent: 1 + type: Transform + - uid: 9390 + components: + - pos: 23.5,-44.5 + parent: 1 + type: Transform + - uid: 9391 + components: + - pos: 23.5,-45.5 + parent: 1 + type: Transform + - uid: 9392 + components: + - pos: 24.5,-43.5 + parent: 1 + type: Transform + - uid: 9393 + components: + - pos: 24.5,-44.5 + parent: 1 + type: Transform + - uid: 9394 + components: + - pos: 24.5,-45.5 + parent: 1 + type: Transform + - uid: 9395 + components: + - pos: 25.5,-43.5 + parent: 1 + type: Transform + - uid: 9396 + components: + - pos: 25.5,-44.5 + parent: 1 + type: Transform + - uid: 9397 + components: + - pos: 25.5,-45.5 + parent: 1 + type: Transform + - uid: 9398 + components: + - pos: 26.5,-43.5 + parent: 1 + type: Transform + - uid: 9399 + components: + - pos: 26.5,-44.5 + parent: 1 + type: Transform + - uid: 9400 + components: + - pos: 26.5,-45.5 + parent: 1 + type: Transform + - uid: 9401 + components: + - pos: 27.5,-43.5 + parent: 1 + type: Transform + - uid: 9402 + components: + - pos: 27.5,-44.5 + parent: 1 + type: Transform + - uid: 9403 + components: + - pos: 27.5,-45.5 + parent: 1 + type: Transform + - uid: 9404 + components: + - pos: 28.5,-43.5 + parent: 1 + type: Transform + - uid: 9405 + components: + - pos: 28.5,-44.5 + parent: 1 + type: Transform + - uid: 9406 + components: + - pos: 28.5,-45.5 + parent: 1 + type: Transform + - uid: 12378 + components: + - pos: -36.5,-23.5 + parent: 1 + type: Transform + - uid: 12379 + components: + - pos: -36.5,-24.5 + parent: 1 + type: Transform + - uid: 12380 + components: + - pos: -36.5,-25.5 + parent: 1 + type: Transform + - uid: 12381 + components: + - pos: -35.5,-23.5 + parent: 1 + type: Transform + - uid: 12382 + components: + - pos: -35.5,-24.5 + parent: 1 + type: Transform + - uid: 12383 + components: + - pos: -35.5,-25.5 + parent: 1 + type: Transform + - uid: 16526 + components: + - rot: 1.5707963267948966 rad + pos: 50.5,37.5 + parent: 1 + type: Transform + - uid: 16527 + components: + - rot: 1.5707963267948966 rad + pos: 50.5,38.5 + parent: 1 + type: Transform + - uid: 16528 + components: + - rot: 1.5707963267948966 rad + pos: 50.5,39.5 + parent: 1 + type: Transform + - uid: 16529 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,37.5 + parent: 1 + type: Transform + - uid: 16530 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,38.5 + parent: 1 + type: Transform + - uid: 16531 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,39.5 + parent: 1 + type: Transform + - uid: 16532 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,37.5 + parent: 1 + type: Transform + - uid: 16533 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,38.5 + parent: 1 + type: Transform + - uid: 16534 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,39.5 + parent: 1 + type: Transform + - uid: 16535 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,37.5 + parent: 1 + type: Transform + - uid: 16536 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,38.5 + parent: 1 + type: Transform + - uid: 16537 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,39.5 + parent: 1 + type: Transform + - uid: 16907 + components: + - pos: 21.5,41.5 + parent: 1 + type: Transform + - uid: 16908 + components: + - pos: 20.5,40.5 + parent: 1 + type: Transform + - uid: 16909 + components: + - pos: 19.5,40.5 + parent: 1 + type: Transform + - uid: 16910 + components: + - pos: 20.5,41.5 + parent: 1 + type: Transform + - uid: 16911 + components: + - pos: 19.5,41.5 + parent: 1 + type: Transform + - uid: 16912 + components: + - pos: 18.5,40.5 + parent: 1 + type: Transform + - uid: 16913 + components: + - pos: 18.5,41.5 + parent: 1 + type: Transform + - uid: 16914 + components: + - pos: 21.5,40.5 + parent: 1 + type: Transform + - uid: 21453 + components: + - pos: 75.5,-4.5 + parent: 1 + type: Transform + - uid: 23777 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,37.5 + parent: 1 + type: Transform + - uid: 23778 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,36.5 + parent: 1 + type: Transform + - uid: 23779 + components: + - rot: -1.5707963267948966 rad + pos: -58.5,37.5 + parent: 1 + type: Transform + - uid: 23780 + components: + - rot: -1.5707963267948966 rad + pos: -58.5,36.5 + parent: 1 + type: Transform + - uid: 23781 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,37.5 + parent: 1 + type: Transform + - uid: 23782 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,36.5 + parent: 1 + type: Transform +- proto: CarpetSBlue + entities: + - uid: 9870 + components: + - pos: 103.5,6.5 + parent: 1 + type: Transform + - uid: 9871 + components: + - pos: 103.5,7.5 + parent: 1 + type: Transform + - uid: 9872 + components: + - pos: 103.5,8.5 + parent: 1 + type: Transform + - uid: 9873 + components: + - pos: 103.5,9.5 + parent: 1 + type: Transform + - uid: 9874 + components: + - pos: 103.5,10.5 + parent: 1 + type: Transform + - uid: 9875 + components: + - pos: 103.5,11.5 + parent: 1 + type: Transform + - uid: 9876 + components: + - pos: 104.5,6.5 + parent: 1 + type: Transform + - uid: 9877 + components: + - pos: 104.5,7.5 + parent: 1 + type: Transform + - uid: 9878 + components: + - pos: 104.5,8.5 + parent: 1 + type: Transform + - uid: 9879 + components: + - pos: 104.5,9.5 + parent: 1 + type: Transform + - uid: 9880 + components: + - pos: 104.5,10.5 + parent: 1 + type: Transform + - uid: 9881 + components: + - pos: 104.5,11.5 + parent: 1 + type: Transform + - uid: 9882 + components: + - pos: 105.5,6.5 + parent: 1 + type: Transform + - uid: 9883 + components: + - pos: 105.5,7.5 + parent: 1 + type: Transform + - uid: 9884 + components: + - pos: 105.5,8.5 + parent: 1 + type: Transform + - uid: 9885 + components: + - pos: 105.5,9.5 + parent: 1 + type: Transform + - uid: 9886 + components: + - pos: 105.5,10.5 + parent: 1 + type: Transform + - uid: 9887 + components: + - pos: 105.5,11.5 + parent: 1 + type: Transform + - uid: 9888 + components: + - pos: 106.5,6.5 + parent: 1 + type: Transform + - uid: 9889 + components: + - pos: 106.5,7.5 + parent: 1 + type: Transform + - uid: 9890 + components: + - pos: 106.5,8.5 + parent: 1 + type: Transform + - uid: 9891 + components: + - pos: 106.5,9.5 + parent: 1 + type: Transform + - uid: 9892 + components: + - pos: 106.5,10.5 + parent: 1 + type: Transform + - uid: 9893 + components: + - pos: 106.5,11.5 + parent: 1 + type: Transform + - uid: 10062 + components: + - pos: 1.5,-36.5 + parent: 1 + type: Transform + - uid: 10063 + components: + - pos: 1.5,-35.5 + parent: 1 + type: Transform + - uid: 10066 + components: + - pos: 2.5,-36.5 + parent: 1 + type: Transform + - uid: 10067 + components: + - pos: 2.5,-35.5 + parent: 1 + type: Transform +- proto: CartridgeLightRifle + entities: + - uid: 15983 + components: + - rot: 1.5707963267948966 rad + pos: -29.46467,30.534334 + parent: 1 + type: Transform +- proto: Catwalk + entities: + - uid: 620 + components: + - pos: -56.5,-16.5 + parent: 1 + type: Transform + - uid: 663 + components: + - pos: 45.5,-28.5 + parent: 1 + type: Transform + - uid: 749 + components: + - pos: 96.5,-9.5 + parent: 1 + type: Transform + - uid: 1259 + components: + - pos: -24.5,-12.5 + parent: 1 + type: Transform + - uid: 2820 + components: + - pos: 45.5,23.5 + parent: 1 + type: Transform + - uid: 2864 + components: + - pos: -20.5,-15.5 + parent: 1 + type: Transform + - uid: 3223 + components: + - pos: 44.5,24.5 + parent: 1 + type: Transform + - uid: 3757 + components: + - pos: -38.5,-20.5 + parent: 1 + type: Transform + - uid: 5832 + components: + - pos: -55.5,-14.5 + parent: 1 + type: Transform + - uid: 5833 + components: + - pos: -54.5,-14.5 + parent: 1 + type: Transform + - uid: 5834 + components: + - pos: -53.5,-14.5 + parent: 1 + type: Transform + - uid: 5836 + components: + - pos: -55.5,-16.5 + parent: 1 + type: Transform + - uid: 5837 + components: + - pos: -54.5,-16.5 + parent: 1 + type: Transform + - uid: 5838 + components: + - pos: -53.5,-16.5 + parent: 1 + type: Transform + - uid: 5841 + components: + - pos: -55.5,-18.5 + parent: 1 + type: Transform + - uid: 5842 + components: + - pos: -54.5,-18.5 + parent: 1 + type: Transform + - uid: 5843 + components: + - pos: -53.5,-18.5 + parent: 1 + type: Transform + - uid: 5846 + components: + - pos: -56.5,-18.5 + parent: 1 + type: Transform + - uid: 5847 + components: + - pos: -52.5,-16.5 + parent: 1 + type: Transform + - uid: 5848 + components: + - pos: -51.5,-16.5 + parent: 1 + type: Transform + - uid: 5849 + components: + - pos: -50.5,-16.5 + parent: 1 + type: Transform + - uid: 5850 + components: + - pos: -49.5,-16.5 + parent: 1 + type: Transform + - uid: 5851 + components: + - pos: -48.5,-16.5 + parent: 1 + type: Transform + - uid: 5852 + components: + - pos: -47.5,-16.5 + parent: 1 + type: Transform + - uid: 6390 + components: + - pos: -37.5,-20.5 + parent: 1 + type: Transform + - uid: 6643 + components: + - pos: -50.5,-20.5 + parent: 1 + type: Transform + - uid: 6644 + components: + - pos: -50.5,-21.5 + parent: 1 + type: Transform + - uid: 6646 + components: + - pos: -49.5,-21.5 + parent: 1 + type: Transform + - uid: 6647 + components: + - pos: -47.5,-21.5 + parent: 1 + type: Transform + - uid: 6650 + components: + - pos: -45.5,-20.5 + parent: 1 + type: Transform + - uid: 6651 + components: + - pos: -40.5,-20.5 + parent: 1 + type: Transform + - uid: 6652 + components: + - pos: -39.5,-20.5 + parent: 1 + type: Transform + - uid: 6654 + components: + - pos: -41.5,-20.5 + parent: 1 + type: Transform + - uid: 6655 + components: + - pos: -42.5,-20.5 + parent: 1 + type: Transform + - uid: 6657 + components: + - pos: -43.5,-20.5 + parent: 1 + type: Transform + - uid: 6789 + components: + - pos: -48.5,-21.5 + parent: 1 + type: Transform + - uid: 6835 + components: + - pos: -44.5,-20.5 + parent: 1 + type: Transform + - uid: 8305 + components: + - pos: -14.5,-33.5 + parent: 1 + type: Transform + - uid: 8495 + components: + - pos: -36.5,-20.5 + parent: 1 + type: Transform + - uid: 8496 + components: + - pos: -35.5,-20.5 + parent: 1 + type: Transform + - uid: 8497 + components: + - pos: -34.5,-20.5 + parent: 1 + type: Transform + - uid: 8498 + components: + - pos: -33.5,-20.5 + parent: 1 + type: Transform + - uid: 8499 + components: + - pos: -32.5,-20.5 + parent: 1 + type: Transform + - uid: 8500 + components: + - pos: -32.5,-21.5 + parent: 1 + type: Transform + - uid: 8501 + components: + - pos: -32.5,-22.5 + parent: 1 + type: Transform + - uid: 8502 + components: + - pos: -32.5,-23.5 + parent: 1 + type: Transform + - uid: 8503 + components: + - pos: -32.5,-24.5 + parent: 1 + type: Transform + - uid: 8504 + components: + - pos: -32.5,-25.5 + parent: 1 + type: Transform + - uid: 8505 + components: + - pos: -32.5,-26.5 + parent: 1 + type: Transform + - uid: 8506 + components: + - pos: -32.5,-27.5 + parent: 1 + type: Transform + - uid: 8507 + components: + - pos: -32.5,-28.5 + parent: 1 + type: Transform + - uid: 8508 + components: + - pos: -32.5,-29.5 + parent: 1 + type: Transform + - uid: 8509 + components: + - pos: -32.5,-30.5 + parent: 1 + type: Transform + - uid: 8510 + components: + - pos: -31.5,-30.5 + parent: 1 + type: Transform + - uid: 8511 + components: + - pos: -31.5,-31.5 + parent: 1 + type: Transform + - uid: 8512 + components: + - pos: -30.5,-31.5 + parent: 1 + type: Transform + - uid: 8513 + components: + - pos: -30.5,-32.5 + parent: 1 + type: Transform + - uid: 8514 + components: + - pos: -29.5,-32.5 + parent: 1 + type: Transform + - uid: 8515 + components: + - pos: -28.5,-32.5 + parent: 1 + type: Transform + - uid: 8516 + components: + - pos: -27.5,-32.5 + parent: 1 + type: Transform + - uid: 8517 + components: + - pos: -26.5,-32.5 + parent: 1 + type: Transform + - uid: 8518 + components: + - pos: -25.5,-32.5 + parent: 1 + type: Transform + - uid: 8519 + components: + - pos: -24.5,-32.5 + parent: 1 + type: Transform + - uid: 8520 + components: + - pos: -23.5,-32.5 + parent: 1 + type: Transform + - uid: 8521 + components: + - pos: -22.5,-32.5 + parent: 1 + type: Transform + - uid: 8522 + components: + - pos: -21.5,-32.5 + parent: 1 + type: Transform + - uid: 8523 + components: + - pos: -20.5,-32.5 + parent: 1 + type: Transform + - uid: 8524 + components: + - pos: -19.5,-32.5 + parent: 1 + type: Transform + - uid: 8525 + components: + - pos: -18.5,-32.5 + parent: 1 + type: Transform + - uid: 8526 + components: + - pos: -17.5,-32.5 + parent: 1 + type: Transform + - uid: 8527 + components: + - pos: -16.5,-32.5 + parent: 1 + type: Transform + - uid: 8528 + components: + - pos: -15.5,-32.5 + parent: 1 + type: Transform + - uid: 8529 + components: + - pos: -14.5,-32.5 + parent: 1 + type: Transform + - uid: 8530 + components: + - pos: -14.5,-34.5 + parent: 1 + type: Transform + - uid: 8531 + components: + - pos: -14.5,-35.5 + parent: 1 + type: Transform + - uid: 8532 + components: + - pos: -14.5,-36.5 + parent: 1 + type: Transform + - uid: 8533 + components: + - pos: -14.5,-37.5 + parent: 1 + type: Transform + - uid: 8534 + components: + - pos: -14.5,-38.5 + parent: 1 + type: Transform + - uid: 8535 + components: + - pos: -14.5,-39.5 + parent: 1 + type: Transform + - uid: 8536 + components: + - pos: -14.5,-40.5 + parent: 1 + type: Transform + - uid: 8537 + components: + - pos: -14.5,-41.5 + parent: 1 + type: Transform + - uid: 8538 + components: + - pos: 57.5,-19.5 + parent: 1 + type: Transform + - uid: 8539 + components: + - pos: -13.5,-41.5 + parent: 1 + type: Transform + - uid: 8540 + components: + - pos: -12.5,-41.5 + parent: 1 + type: Transform + - uid: 8541 + components: + - pos: -11.5,-41.5 + parent: 1 + type: Transform + - uid: 8542 + components: + - pos: -10.5,-41.5 + parent: 1 + type: Transform + - uid: 8543 + components: + - pos: -9.5,-41.5 + parent: 1 + type: Transform + - uid: 8544 + components: + - pos: -8.5,-41.5 + parent: 1 + type: Transform + - uid: 8545 + components: + - pos: -7.5,-41.5 + parent: 1 + type: Transform + - uid: 8547 + components: + - pos: -13.5,-32.5 + parent: 1 + type: Transform + - uid: 8548 + components: + - pos: -12.5,-32.5 + parent: 1 + type: Transform + - uid: 8549 + components: + - pos: -11.5,-32.5 + parent: 1 + type: Transform + - uid: 8550 + components: + - pos: -11.5,-31.5 + parent: 1 + type: Transform + - uid: 8551 + components: + - pos: -10.5,-31.5 + parent: 1 + type: Transform + - uid: 8552 + components: + - pos: -10.5,-30.5 + parent: 1 + type: Transform + - uid: 8553 + components: + - pos: -9.5,-30.5 + parent: 1 + type: Transform + - uid: 8554 + components: + - pos: -9.5,-29.5 + parent: 1 + type: Transform + - uid: 8555 + components: + - pos: -8.5,-29.5 + parent: 1 + type: Transform + - uid: 8556 + components: + - pos: -7.5,-29.5 + parent: 1 + type: Transform + - uid: 8557 + components: + - pos: -6.5,-29.5 + parent: 1 + type: Transform + - uid: 8558 + components: + - pos: -5.5,-29.5 + parent: 1 + type: Transform + - uid: 8559 + components: + - pos: -4.5,-29.5 + parent: 1 + type: Transform + - uid: 8560 + components: + - pos: -3.5,-29.5 + parent: 1 + type: Transform + - uid: 8561 + components: + - pos: -2.5,-29.5 + parent: 1 + type: Transform + - uid: 8562 + components: + - pos: -1.5,-29.5 + parent: 1 + type: Transform + - uid: 8563 + components: + - pos: -0.5,-29.5 + parent: 1 + type: Transform + - uid: 8564 + components: + - pos: 0.5,-29.5 + parent: 1 + type: Transform + - uid: 8565 + components: + - pos: 1.5,-29.5 + parent: 1 + type: Transform + - uid: 8566 + components: + - pos: 2.5,-29.5 + parent: 1 + type: Transform + - uid: 8567 + components: + - pos: 3.5,-29.5 + parent: 1 + type: Transform + - uid: 8568 + components: + - pos: 4.5,-29.5 + parent: 1 + type: Transform + - uid: 8579 + components: + - pos: 19.5,-29.5 + parent: 1 + type: Transform + - uid: 8580 + components: + - pos: 20.5,-29.5 + parent: 1 + type: Transform + - uid: 8581 + components: + - pos: 21.5,-29.5 + parent: 1 + type: Transform + - uid: 8582 + components: + - pos: 22.5,-29.5 + parent: 1 + type: Transform + - uid: 8583 + components: + - pos: 23.5,-29.5 + parent: 1 + type: Transform + - uid: 8584 + components: + - pos: 24.5,-29.5 + parent: 1 + type: Transform + - uid: 8585 + components: + - pos: 25.5,-29.5 + parent: 1 + type: Transform + - uid: 8586 + components: + - pos: 26.5,-29.5 + parent: 1 + type: Transform + - uid: 8587 + components: + - pos: 27.5,-29.5 + parent: 1 + type: Transform + - uid: 8588 + components: + - pos: 28.5,-29.5 + parent: 1 + type: Transform + - uid: 8589 + components: + - pos: 29.5,-29.5 + parent: 1 + type: Transform + - uid: 8590 + components: + - pos: 30.5,-29.5 + parent: 1 + type: Transform + - uid: 8591 + components: + - pos: 31.5,-29.5 + parent: 1 + type: Transform + - uid: 8592 + components: + - pos: 32.5,-29.5 + parent: 1 + type: Transform + - uid: 8593 + components: + - pos: 33.5,-29.5 + parent: 1 + type: Transform + - uid: 8594 + components: + - pos: 34.5,-29.5 + parent: 1 + type: Transform + - uid: 8595 + components: + - pos: 34.5,-30.5 + parent: 1 + type: Transform + - uid: 8596 + components: + - pos: 35.5,-30.5 + parent: 1 + type: Transform + - uid: 8597 + components: + - pos: 35.5,-31.5 + parent: 1 + type: Transform + - uid: 8598 + components: + - pos: 36.5,-31.5 + parent: 1 + type: Transform + - uid: 8599 + components: + - pos: 36.5,-32.5 + parent: 1 + type: Transform + - uid: 8600 + components: + - pos: 37.5,-32.5 + parent: 1 + type: Transform + - uid: 8601 + components: + - pos: 38.5,-32.5 + parent: 1 + type: Transform + - uid: 8602 + components: + - pos: 39.5,-32.5 + parent: 1 + type: Transform + - uid: 8603 + components: + - pos: 40.5,-32.5 + parent: 1 + type: Transform + - uid: 8604 + components: + - pos: 40.5,-31.5 + parent: 1 + type: Transform + - uid: 8605 + components: + - pos: 41.5,-31.5 + parent: 1 + type: Transform + - uid: 8606 + components: + - pos: 41.5,-30.5 + parent: 1 + type: Transform + - uid: 8607 + components: + - pos: 42.5,-30.5 + parent: 1 + type: Transform + - uid: 8608 + components: + - pos: 42.5,-29.5 + parent: 1 + type: Transform + - uid: 8609 + components: + - pos: 43.5,-29.5 + parent: 1 + type: Transform + - uid: 8610 + components: + - pos: 43.5,-28.5 + parent: 1 + type: Transform + - uid: 8611 + components: + - pos: 44.5,-28.5 + parent: 1 + type: Transform + - uid: 8620 + components: + - pos: 50.5,-25.5 + parent: 1 + type: Transform + - uid: 8621 + components: + - pos: 51.5,-25.5 + parent: 1 + type: Transform + - uid: 8622 + components: + - pos: 52.5,-25.5 + parent: 1 + type: Transform + - uid: 8623 + components: + - pos: 52.5,-24.5 + parent: 1 + type: Transform + - uid: 8624 + components: + - pos: 53.5,-24.5 + parent: 1 + type: Transform + - uid: 8625 + components: + - pos: 53.5,-23.5 + parent: 1 + type: Transform + - uid: 8626 + components: + - pos: 54.5,-23.5 + parent: 1 + type: Transform + - uid: 8627 + components: + - pos: 54.5,-22.5 + parent: 1 + type: Transform + - uid: 8628 + components: + - pos: 55.5,-22.5 + parent: 1 + type: Transform + - uid: 8629 + components: + - pos: 55.5,-21.5 + parent: 1 + type: Transform + - uid: 8630 + components: + - pos: 56.5,-21.5 + parent: 1 + type: Transform + - uid: 8631 + components: + - pos: 56.5,-20.5 + parent: 1 + type: Transform + - uid: 8632 + components: + - pos: 57.5,-20.5 + parent: 1 + type: Transform + - uid: 8633 + components: + - pos: 58.5,-19.5 + parent: 1 + type: Transform + - uid: 8634 + components: + - pos: 59.5,-19.5 + parent: 1 + type: Transform + - uid: 8635 + components: + - pos: 60.5,-19.5 + parent: 1 + type: Transform + - uid: 8636 + components: + - pos: 61.5,-19.5 + parent: 1 + type: Transform + - uid: 8637 + components: + - pos: 62.5,-19.5 + parent: 1 + type: Transform + - uid: 8638 + components: + - pos: 63.5,-19.5 + parent: 1 + type: Transform + - uid: 8639 + components: + - pos: 64.5,-19.5 + parent: 1 + type: Transform + - uid: 8640 + components: + - pos: 65.5,-19.5 + parent: 1 + type: Transform + - uid: 8641 + components: + - pos: 66.5,-19.5 + parent: 1 + type: Transform + - uid: 8642 + components: + - pos: 67.5,-19.5 + parent: 1 + type: Transform + - uid: 8643 + components: + - pos: 68.5,-19.5 + parent: 1 + type: Transform + - uid: 8644 + components: + - pos: 69.5,-19.5 + parent: 1 + type: Transform + - uid: 8645 + components: + - pos: 70.5,-19.5 + parent: 1 + type: Transform + - uid: 8646 + components: + - pos: 71.5,-19.5 + parent: 1 + type: Transform + - uid: 8647 + components: + - pos: 72.5,-19.5 + parent: 1 + type: Transform + - uid: 8648 + components: + - pos: 73.5,-19.5 + parent: 1 + type: Transform + - uid: 8649 + components: + - pos: 74.5,-19.5 + parent: 1 + type: Transform + - uid: 8650 + components: + - pos: 75.5,-19.5 + parent: 1 + type: Transform + - uid: 8651 + components: + - pos: 76.5,-19.5 + parent: 1 + type: Transform + - uid: 8652 + components: + - pos: 77.5,-19.5 + parent: 1 + type: Transform + - uid: 8653 + components: + - pos: 78.5,-19.5 + parent: 1 + type: Transform + - uid: 8654 + components: + - pos: 79.5,-19.5 + parent: 1 + type: Transform + - uid: 8655 + components: + - pos: 80.5,-19.5 + parent: 1 + type: Transform + - uid: 8656 + components: + - pos: 81.5,-19.5 + parent: 1 + type: Transform + - uid: 8657 + components: + - pos: 82.5,-19.5 + parent: 1 + type: Transform + - uid: 8658 + components: + - pos: 83.5,-19.5 + parent: 1 + type: Transform + - uid: 8659 + components: + - pos: 84.5,-19.5 + parent: 1 + type: Transform + - uid: 8660 + components: + - pos: 85.5,-19.5 + parent: 1 + type: Transform + - uid: 8661 + components: + - pos: 86.5,-19.5 + parent: 1 + type: Transform + - uid: 8662 + components: + - pos: 87.5,-19.5 + parent: 1 + type: Transform + - uid: 8663 + components: + - pos: 87.5,-18.5 + parent: 1 + type: Transform + - uid: 8664 + components: + - pos: 88.5,-18.5 + parent: 1 + type: Transform + - uid: 8665 + components: + - pos: 88.5,-17.5 + parent: 1 + type: Transform + - uid: 8666 + components: + - pos: 89.5,-17.5 + parent: 1 + type: Transform + - uid: 8667 + components: + - pos: 89.5,-16.5 + parent: 1 + type: Transform + - uid: 8668 + components: + - pos: 90.5,-16.5 + parent: 1 + type: Transform + - uid: 8669 + components: + - pos: 90.5,-15.5 + parent: 1 + type: Transform + - uid: 8670 + components: + - pos: 90.5,-14.5 + parent: 1 + type: Transform + - uid: 8671 + components: + - pos: 90.5,-13.5 + parent: 1 + type: Transform + - uid: 8672 + components: + - pos: 90.5,-12.5 + parent: 1 + type: Transform + - uid: 8674 + components: + - pos: 91.5,-14.5 + parent: 1 + type: Transform + - uid: 8675 + components: + - pos: 92.5,-14.5 + parent: 1 + type: Transform + - uid: 8676 + components: + - pos: 92.5,-13.5 + parent: 1 + type: Transform + - uid: 8677 + components: + - pos: 92.5,-12.5 + parent: 1 + type: Transform + - uid: 8678 + components: + - pos: 93.5,-12.5 + parent: 1 + type: Transform + - uid: 8679 + components: + - pos: 93.5,-11.5 + parent: 1 + type: Transform + - uid: 8680 + components: + - pos: 94.5,-11.5 + parent: 1 + type: Transform + - uid: 8681 + components: + - pos: 94.5,-10.5 + parent: 1 + type: Transform + - uid: 8682 + components: + - pos: 94.5,-9.5 + parent: 1 + type: Transform + - uid: 8683 + components: + - pos: 95.5,-9.5 + parent: 1 + type: Transform + - uid: 8685 + components: + - pos: 96.5,-8.5 + parent: 1 + type: Transform + - uid: 8686 + components: + - pos: 96.5,-7.5 + parent: 1 + type: Transform + - uid: 8687 + components: + - pos: 97.5,-7.5 + parent: 1 + type: Transform + - uid: 8688 + components: + - pos: 97.5,-6.5 + parent: 1 + type: Transform + - uid: 8689 + components: + - pos: 98.5,-6.5 + parent: 1 + type: Transform + - uid: 8690 + components: + - pos: 99.5,-6.5 + parent: 1 + type: Transform + - uid: 8691 + components: + - pos: 100.5,-6.5 + parent: 1 + type: Transform + - uid: 8692 + components: + - pos: 101.5,-6.5 + parent: 1 + type: Transform + - uid: 8693 + components: + - pos: 102.5,-6.5 + parent: 1 + type: Transform + - uid: 8694 + components: + - pos: 103.5,-6.5 + parent: 1 + type: Transform + - uid: 8695 + components: + - pos: 104.5,-6.5 + parent: 1 + type: Transform + - uid: 8696 + components: + - pos: 105.5,-6.5 + parent: 1 + type: Transform + - uid: 8697 + components: + - pos: 106.5,-6.5 + parent: 1 + type: Transform + - uid: 8698 + components: + - pos: 106.5,-5.5 + parent: 1 + type: Transform + - uid: 8699 + components: + - pos: 107.5,-5.5 + parent: 1 + type: Transform + - uid: 8700 + components: + - pos: 108.5,-5.5 + parent: 1 + type: Transform + - uid: 8701 + components: + - pos: 108.5,-4.5 + parent: 1 + type: Transform + - uid: 8703 + components: + - pos: -32.5,-19.5 + parent: 1 + type: Transform + - uid: 8704 + components: + - pos: -31.5,-19.5 + parent: 1 + type: Transform + - uid: 8705 + components: + - pos: -31.5,-18.5 + parent: 1 + type: Transform + - uid: 8706 + components: + - pos: -30.5,-18.5 + parent: 1 + type: Transform + - uid: 8707 + components: + - pos: -30.5,-17.5 + parent: 1 + type: Transform + - uid: 8708 + components: + - pos: -29.5,-17.5 + parent: 1 + type: Transform + - uid: 8709 + components: + - pos: -29.5,-16.5 + parent: 1 + type: Transform + - uid: 8724 + components: + - pos: -20.5,-16.5 + parent: 1 + type: Transform + - uid: 8725 + components: + - pos: -20.5,-17.5 + parent: 1 + type: Transform + - uid: 8726 + components: + - pos: -19.5,-17.5 + parent: 1 + type: Transform + - uid: 8727 + components: + - pos: -18.5,-18.5 + parent: 1 + type: Transform + - uid: 8728 + components: + - pos: -18.5,-18.5 + parent: 1 + type: Transform + - uid: 8729 + components: + - pos: -17.5,-19.5 + parent: 1 + type: Transform + - uid: 8730 + components: + - pos: -18.5,-19.5 + parent: 1 + type: Transform + - uid: 8731 + components: + - pos: -17.5,-20.5 + parent: 1 + type: Transform + - uid: 8732 + components: + - pos: -16.5,-20.5 + parent: 1 + type: Transform + - uid: 8733 + components: + - pos: -15.5,-20.5 + parent: 1 + type: Transform + - uid: 8734 + components: + - pos: -14.5,-20.5 + parent: 1 + type: Transform + - uid: 8735 + components: + - pos: -13.5,-20.5 + parent: 1 + type: Transform + - uid: 8736 + components: + - pos: -12.5,-20.5 + parent: 1 + type: Transform + - uid: 8737 + components: + - pos: -11.5,-20.5 + parent: 1 + type: Transform + - uid: 8738 + components: + - pos: -11.5,-19.5 + parent: 1 + type: Transform + - uid: 8739 + components: + - pos: -11.5,-18.5 + parent: 1 + type: Transform + - uid: 8740 + components: + - pos: -11.5,-17.5 + parent: 1 + type: Transform + - uid: 8741 + components: + - pos: -11.5,-16.5 + parent: 1 + type: Transform + - uid: 8742 + components: + - pos: -11.5,-15.5 + parent: 1 + type: Transform + - uid: 8743 + components: + - pos: -12.5,-15.5 + parent: 1 + type: Transform + - uid: 8744 + components: + - pos: -10.5,-20.5 + parent: 1 + type: Transform + - uid: 8745 + components: + - pos: -9.5,-20.5 + parent: 1 + type: Transform + - uid: 8746 + components: + - pos: -8.5,-20.5 + parent: 1 + type: Transform + - uid: 8747 + components: + - pos: -7.5,-20.5 + parent: 1 + type: Transform + - uid: 8748 + components: + - pos: -6.5,-20.5 + parent: 1 + type: Transform + - uid: 8749 + components: + - pos: -5.5,-20.5 + parent: 1 + type: Transform + - uid: 8750 + components: + - pos: -4.5,-20.5 + parent: 1 + type: Transform + - uid: 8751 + components: + - pos: -3.5,-20.5 + parent: 1 + type: Transform + - uid: 8752 + components: + - pos: -2.5,-20.5 + parent: 1 + type: Transform + - uid: 8753 + components: + - pos: -1.5,-20.5 + parent: 1 + type: Transform + - uid: 8754 + components: + - pos: -0.5,-20.5 + parent: 1 + type: Transform + - uid: 8755 + components: + - pos: 0.5,-20.5 + parent: 1 + type: Transform + - uid: 8756 + components: + - pos: 1.5,-20.5 + parent: 1 + type: Transform + - uid: 8757 + components: + - pos: 2.5,-20.5 + parent: 1 + type: Transform + - uid: 8758 + components: + - pos: 3.5,-20.5 + parent: 1 + type: Transform + - uid: 8759 + components: + - pos: 4.5,-20.5 + parent: 1 + type: Transform + - uid: 8760 + components: + - pos: 5.5,-20.5 + parent: 1 + type: Transform + - uid: 8761 + components: + - pos: 6.5,-20.5 + parent: 1 + type: Transform + - uid: 8762 + components: + - pos: 7.5,-20.5 + parent: 1 + type: Transform + - uid: 8763 + components: + - pos: 8.5,-20.5 + parent: 1 + type: Transform + - uid: 8764 + components: + - pos: 9.5,-20.5 + parent: 1 + type: Transform + - uid: 8765 + components: + - pos: 14.5,-20.5 + parent: 1 + type: Transform + - uid: 8766 + components: + - pos: 15.5,-20.5 + parent: 1 + type: Transform + - uid: 8767 + components: + - pos: 16.5,-20.5 + parent: 1 + type: Transform + - uid: 8768 + components: + - pos: 17.5,-20.5 + parent: 1 + type: Transform + - uid: 8769 + components: + - pos: 18.5,-20.5 + parent: 1 + type: Transform + - uid: 8770 + components: + - pos: 19.5,-20.5 + parent: 1 + type: Transform + - uid: 8771 + components: + - pos: 20.5,-20.5 + parent: 1 + type: Transform + - uid: 8772 + components: + - pos: 21.5,-20.5 + parent: 1 + type: Transform + - uid: 8773 + components: + - pos: 22.5,-20.5 + parent: 1 + type: Transform + - uid: 8774 + components: + - pos: 23.5,-20.5 + parent: 1 + type: Transform + - uid: 8775 + components: + - pos: 24.5,-20.5 + parent: 1 + type: Transform + - uid: 8776 + components: + - pos: 25.5,-20.5 + parent: 1 + type: Transform + - uid: 8777 + components: + - pos: 26.5,-20.5 + parent: 1 + type: Transform + - uid: 8778 + components: + - pos: 27.5,-20.5 + parent: 1 + type: Transform + - uid: 8779 + components: + - pos: 28.5,-20.5 + parent: 1 + type: Transform + - uid: 8780 + components: + - pos: 29.5,-20.5 + parent: 1 + type: Transform + - uid: 8781 + components: + - pos: 30.5,-20.5 + parent: 1 + type: Transform + - uid: 8782 + components: + - pos: 31.5,-20.5 + parent: 1 + type: Transform + - uid: 8783 + components: + - pos: 32.5,-20.5 + parent: 1 + type: Transform + - uid: 8784 + components: + - pos: 33.5,-20.5 + parent: 1 + type: Transform + - uid: 8785 + components: + - pos: 34.5,-20.5 + parent: 1 + type: Transform + - uid: 8786 + components: + - pos: 35.5,-20.5 + parent: 1 + type: Transform + - uid: 8787 + components: + - pos: 36.5,-20.5 + parent: 1 + type: Transform + - uid: 8788 + components: + - pos: 37.5,-20.5 + parent: 1 + type: Transform + - uid: 8789 + components: + - pos: 37.5,-19.5 + parent: 1 + type: Transform + - uid: 8790 + components: + - pos: 37.5,-18.5 + parent: 1 + type: Transform + - uid: 8791 + components: + - pos: 37.5,-17.5 + parent: 1 + type: Transform + - uid: 8792 + components: + - pos: -19.5,-18.5 + parent: 1 + type: Transform + - uid: 8798 + components: + - pos: -26.5,6.5 + parent: 1 + type: Transform + - uid: 8799 + components: + - pos: -26.5,7.5 + parent: 1 + type: Transform + - uid: 8800 + components: + - pos: -26.5,8.5 + parent: 1 + type: Transform + - uid: 8801 + components: + - pos: -26.5,9.5 + parent: 1 + type: Transform + - uid: 8802 + components: + - pos: -26.5,10.5 + parent: 1 + type: Transform + - uid: 8803 + components: + - pos: -26.5,11.5 + parent: 1 + type: Transform + - uid: 8804 + components: + - pos: -26.5,12.5 + parent: 1 + type: Transform + - uid: 8805 + components: + - pos: -26.5,13.5 + parent: 1 + type: Transform + - uid: 8806 + components: + - pos: -26.5,14.5 + parent: 1 + type: Transform + - uid: 8807 + components: + - pos: -26.5,15.5 + parent: 1 + type: Transform + - uid: 8808 + components: + - pos: -26.5,16.5 + parent: 1 + type: Transform + - uid: 8809 + components: + - pos: -26.5,17.5 + parent: 1 + type: Transform + - uid: 8810 + components: + - pos: -26.5,18.5 + parent: 1 + type: Transform + - uid: 8811 + components: + - pos: -26.5,19.5 + parent: 1 + type: Transform + - uid: 8812 + components: + - pos: -26.5,20.5 + parent: 1 + type: Transform + - uid: 8813 + components: + - pos: -26.5,21.5 + parent: 1 + type: Transform + - uid: 8814 + components: + - pos: -27.5,21.5 + parent: 1 + type: Transform + - uid: 8815 + components: + - pos: -28.5,21.5 + parent: 1 + type: Transform + - uid: 8816 + components: + - pos: -29.5,21.5 + parent: 1 + type: Transform + - uid: 8817 + components: + - pos: -29.5,22.5 + parent: 1 + type: Transform + - uid: 8818 + components: + - pos: -30.5,22.5 + parent: 1 + type: Transform + - uid: 8819 + components: + - pos: -30.5,23.5 + parent: 1 + type: Transform + - uid: 8820 + components: + - pos: -31.5,23.5 + parent: 1 + type: Transform + - uid: 8821 + components: + - pos: -31.5,24.5 + parent: 1 + type: Transform + - uid: 8822 + components: + - pos: -32.5,24.5 + parent: 1 + type: Transform + - uid: 8823 + components: + - pos: -32.5,25.5 + parent: 1 + type: Transform + - uid: 8824 + components: + - pos: -32.5,26.5 + parent: 1 + type: Transform + - uid: 8825 + components: + - pos: -32.5,27.5 + parent: 1 + type: Transform + - uid: 8826 + components: + - pos: -32.5,28.5 + parent: 1 + type: Transform + - uid: 8827 + components: + - pos: -32.5,29.5 + parent: 1 + type: Transform + - uid: 8828 + components: + - pos: -32.5,30.5 + parent: 1 + type: Transform + - uid: 8829 + components: + - pos: -32.5,31.5 + parent: 1 + type: Transform + - uid: 8830 + components: + - pos: -32.5,32.5 + parent: 1 + type: Transform + - uid: 8831 + components: + - pos: -32.5,33.5 + parent: 1 + type: Transform + - uid: 8832 + components: + - pos: -32.5,34.5 + parent: 1 + type: Transform + - uid: 8833 + components: + - pos: -32.5,35.5 + parent: 1 + type: Transform + - uid: 8834 + components: + - pos: -32.5,36.5 + parent: 1 + type: Transform + - uid: 8835 + components: + - pos: -32.5,37.5 + parent: 1 + type: Transform + - uid: 8836 + components: + - pos: -33.5,37.5 + parent: 1 + type: Transform + - uid: 8837 + components: + - pos: -34.5,37.5 + parent: 1 + type: Transform + - uid: 8838 + components: + - pos: -35.5,37.5 + parent: 1 + type: Transform + - uid: 8839 + components: + - pos: -36.5,37.5 + parent: 1 + type: Transform + - uid: 8840 + components: + - pos: -37.5,37.5 + parent: 1 + type: Transform + - uid: 8841 + components: + - pos: -38.5,37.5 + parent: 1 + type: Transform + - uid: 8842 + components: + - pos: -39.5,37.5 + parent: 1 + type: Transform + - uid: 8843 + components: + - pos: -40.5,37.5 + parent: 1 + type: Transform + - uid: 8844 + components: + - pos: -41.5,37.5 + parent: 1 + type: Transform + - uid: 8845 + components: + - pos: -42.5,37.5 + parent: 1 + type: Transform + - uid: 8846 + components: + - pos: -43.5,37.5 + parent: 1 + type: Transform + - uid: 8847 + components: + - pos: -44.5,37.5 + parent: 1 + type: Transform + - uid: 8848 + components: + - pos: -45.5,37.5 + parent: 1 + type: Transform + - uid: 8849 + components: + - pos: -46.5,37.5 + parent: 1 + type: Transform + - uid: 8850 + components: + - pos: -47.5,37.5 + parent: 1 + type: Transform + - uid: 8851 + components: + - pos: -48.5,37.5 + parent: 1 + type: Transform + - uid: 8852 + components: + - pos: -49.5,37.5 + parent: 1 + type: Transform + - uid: 8853 + components: + - pos: -50.5,37.5 + parent: 1 + type: Transform + - uid: 8854 + components: + - pos: -51.5,37.5 + parent: 1 + type: Transform + - uid: 8855 + components: + - pos: -52.5,37.5 + parent: 1 + type: Transform + - uid: 8856 + components: + - pos: -31.5,37.5 + parent: 1 + type: Transform + - uid: 8857 + components: + - pos: -31.5,38.5 + parent: 1 + type: Transform + - uid: 8858 + components: + - pos: -30.5,38.5 + parent: 1 + type: Transform + - uid: 8859 + components: + - pos: -30.5,39.5 + parent: 1 + type: Transform + - uid: 8860 + components: + - pos: -29.5,39.5 + parent: 1 + type: Transform + - uid: 8861 + components: + - pos: -29.5,40.5 + parent: 1 + type: Transform + - uid: 8862 + components: + - pos: -28.5,40.5 + parent: 1 + type: Transform + - uid: 8863 + components: + - pos: -27.5,40.5 + parent: 1 + type: Transform + - uid: 8864 + components: + - pos: -26.5,40.5 + parent: 1 + type: Transform + - uid: 8865 + components: + - pos: -25.5,40.5 + parent: 1 + type: Transform + - uid: 8866 + components: + - pos: -24.5,40.5 + parent: 1 + type: Transform + - uid: 8867 + components: + - pos: -23.5,40.5 + parent: 1 + type: Transform + - uid: 8868 + components: + - pos: -22.5,40.5 + parent: 1 + type: Transform + - uid: 8869 + components: + - pos: -21.5,40.5 + parent: 1 + type: Transform + - uid: 8870 + components: + - pos: -20.5,40.5 + parent: 1 + type: Transform + - uid: 8872 + components: + - pos: -18.5,40.5 + parent: 1 + type: Transform + - uid: 8873 + components: + - pos: -17.5,40.5 + parent: 1 + type: Transform + - uid: 8874 + components: + - pos: -16.5,40.5 + parent: 1 + type: Transform + - uid: 8875 + components: + - pos: -15.5,40.5 + parent: 1 + type: Transform + - uid: 8876 + components: + - pos: -14.5,40.5 + parent: 1 + type: Transform + - uid: 8877 + components: + - pos: -13.5,40.5 + parent: 1 + type: Transform + - uid: 8878 + components: + - pos: -12.5,40.5 + parent: 1 + type: Transform + - uid: 8879 + components: + - pos: -11.5,40.5 + parent: 1 + type: Transform + - uid: 8880 + components: + - pos: -11.5,39.5 + parent: 1 + type: Transform + - uid: 8881 + components: + - pos: -10.5,39.5 + parent: 1 + type: Transform + - uid: 8882 + components: + - pos: -9.5,39.5 + parent: 1 + type: Transform + - uid: 8883 + components: + - pos: -8.5,39.5 + parent: 1 + type: Transform + - uid: 8884 + components: + - pos: -10.5,38.5 + parent: 1 + type: Transform + - uid: 8885 + components: + - pos: -10.5,37.5 + parent: 1 + type: Transform + - uid: 8886 + components: + - pos: -10.5,36.5 + parent: 1 + type: Transform + - uid: 8887 + components: + - pos: -9.5,36.5 + parent: 1 + type: Transform + - uid: 8888 + components: + - pos: -8.5,36.5 + parent: 1 + type: Transform + - uid: 8889 + components: + - pos: -7.5,36.5 + parent: 1 + type: Transform + - uid: 8890 + components: + - pos: -6.5,36.5 + parent: 1 + type: Transform + - uid: 8891 + components: + - pos: -5.5,36.5 + parent: 1 + type: Transform + - uid: 8892 + components: + - pos: -4.5,36.5 + parent: 1 + type: Transform + - uid: 8893 + components: + - pos: -3.5,36.5 + parent: 1 + type: Transform + - uid: 8894 + components: + - pos: -2.5,36.5 + parent: 1 + type: Transform + - uid: 8895 + components: + - pos: -1.5,36.5 + parent: 1 + type: Transform + - uid: 8896 + components: + - pos: -0.5,36.5 + parent: 1 + type: Transform + - uid: 8897 + components: + - pos: 0.5,36.5 + parent: 1 + type: Transform + - uid: 8898 + components: + - pos: 1.5,36.5 + parent: 1 + type: Transform + - uid: 8899 + components: + - pos: 2.5,36.5 + parent: 1 + type: Transform + - uid: 8900 + components: + - pos: 3.5,36.5 + parent: 1 + type: Transform + - uid: 8901 + components: + - pos: 4.5,36.5 + parent: 1 + type: Transform + - uid: 8902 + components: + - pos: 5.5,36.5 + parent: 1 + type: Transform + - uid: 8903 + components: + - pos: 6.5,36.5 + parent: 1 + type: Transform + - uid: 8904 + components: + - pos: 7.5,36.5 + parent: 1 + type: Transform + - uid: 8905 + components: + - pos: 16.5,36.5 + parent: 1 + type: Transform + - uid: 8906 + components: + - pos: 17.5,36.5 + parent: 1 + type: Transform + - uid: 8907 + components: + - pos: 18.5,36.5 + parent: 1 + type: Transform + - uid: 8908 + components: + - pos: 19.5,36.5 + parent: 1 + type: Transform + - uid: 8909 + components: + - pos: 20.5,36.5 + parent: 1 + type: Transform + - uid: 8910 + components: + - pos: 21.5,36.5 + parent: 1 + type: Transform + - uid: 8911 + components: + - pos: 22.5,36.5 + parent: 1 + type: Transform + - uid: 8912 + components: + - pos: 23.5,36.5 + parent: 1 + type: Transform + - uid: 8913 + components: + - pos: 24.5,36.5 + parent: 1 + type: Transform + - uid: 8914 + components: + - pos: 25.5,36.5 + parent: 1 + type: Transform + - uid: 8915 + components: + - pos: 26.5,36.5 + parent: 1 + type: Transform + - uid: 8916 + components: + - pos: 27.5,36.5 + parent: 1 + type: Transform + - uid: 8917 + components: + - pos: 28.5,36.5 + parent: 1 + type: Transform + - uid: 8918 + components: + - pos: 29.5,36.5 + parent: 1 + type: Transform + - uid: 8919 + components: + - pos: 30.5,36.5 + parent: 1 + type: Transform + - uid: 8920 + components: + - pos: 31.5,36.5 + parent: 1 + type: Transform + - uid: 8921 + components: + - pos: 32.5,36.5 + parent: 1 + type: Transform + - uid: 8922 + components: + - pos: 33.5,36.5 + parent: 1 + type: Transform + - uid: 8923 + components: + - pos: 34.5,36.5 + parent: 1 + type: Transform + - uid: 8924 + components: + - pos: 34.5,37.5 + parent: 1 + type: Transform + - uid: 8925 + components: + - pos: 35.5,37.5 + parent: 1 + type: Transform + - uid: 8926 + components: + - pos: 35.5,38.5 + parent: 1 + type: Transform + - uid: 8927 + components: + - pos: 36.5,38.5 + parent: 1 + type: Transform + - uid: 8928 + components: + - pos: 36.5,39.5 + parent: 1 + type: Transform + - uid: 8929 + components: + - pos: 37.5,39.5 + parent: 1 + type: Transform + - uid: 8930 + components: + - pos: 38.5,39.5 + parent: 1 + type: Transform + - uid: 8931 + components: + - pos: 39.5,39.5 + parent: 1 + type: Transform + - uid: 8932 + components: + - pos: 39.5,38.5 + parent: 1 + type: Transform + - uid: 8933 + components: + - pos: 40.5,38.5 + parent: 1 + type: Transform + - uid: 8934 + components: + - pos: 40.5,37.5 + parent: 1 + type: Transform + - uid: 8935 + components: + - pos: 41.5,37.5 + parent: 1 + type: Transform + - uid: 8936 + components: + - pos: 41.5,36.5 + parent: 1 + type: Transform + - uid: 8937 + components: + - pos: 42.5,36.5 + parent: 1 + type: Transform + - uid: 8938 + components: + - pos: 42.5,35.5 + parent: 1 + type: Transform + - uid: 8939 + components: + - pos: 43.5,35.5 + parent: 1 + type: Transform + - uid: 8940 + components: + - pos: 43.5,34.5 + parent: 1 + type: Transform + - uid: 8941 + components: + - pos: 44.5,34.5 + parent: 1 + type: Transform + - uid: 8942 + components: + - pos: 44.5,33.5 + parent: 1 + type: Transform + - uid: 8943 + components: + - pos: 45.5,33.5 + parent: 1 + type: Transform + - uid: 8944 + components: + - pos: 45.5,32.5 + parent: 1 + type: Transform + - uid: 8945 + components: + - pos: 46.5,32.5 + parent: 1 + type: Transform + - uid: 8946 + components: + - pos: 47.5,32.5 + parent: 1 + type: Transform + - uid: 8947 + components: + - pos: 48.5,32.5 + parent: 1 + type: Transform + - uid: 8948 + components: + - pos: 49.5,32.5 + parent: 1 + type: Transform + - uid: 8950 + components: + - pos: 51.5,32.5 + parent: 1 + type: Transform + - uid: 8951 + components: + - pos: 52.5,32.5 + parent: 1 + type: Transform + - uid: 8952 + components: + - pos: 53.5,32.5 + parent: 1 + type: Transform + - uid: 8953 + components: + - pos: 54.5,31.5 + parent: 1 + type: Transform + - uid: 8954 + components: + - pos: 53.5,31.5 + parent: 1 + type: Transform + - uid: 8955 + components: + - pos: 54.5,30.5 + parent: 1 + type: Transform + - uid: 8956 + components: + - pos: 55.5,30.5 + parent: 1 + type: Transform + - uid: 8957 + components: + - pos: 55.5,29.5 + parent: 1 + type: Transform + - uid: 8958 + components: + - pos: 56.5,29.5 + parent: 1 + type: Transform + - uid: 8959 + components: + - pos: 56.5,28.5 + parent: 1 + type: Transform + - uid: 8960 + components: + - pos: 57.5,28.5 + parent: 1 + type: Transform + - uid: 8961 + components: + - pos: 57.5,27.5 + parent: 1 + type: Transform + - uid: 8962 + components: + - pos: 58.5,27.5 + parent: 1 + type: Transform + - uid: 8963 + components: + - pos: 58.5,26.5 + parent: 1 + type: Transform + - uid: 8964 + components: + - pos: 58.5,25.5 + parent: 1 + type: Transform + - uid: 8965 + components: + - pos: 58.5,24.5 + parent: 1 + type: Transform + - uid: 8967 + components: + - pos: 57.5,23.5 + parent: 1 + type: Transform + - uid: 8968 + components: + - pos: 57.5,22.5 + parent: 1 + type: Transform + - uid: 8969 + components: + - pos: 57.5,21.5 + parent: 1 + type: Transform + - uid: 8970 + components: + - pos: 57.5,20.5 + parent: 1 + type: Transform + - uid: 8971 + components: + - pos: 57.5,19.5 + parent: 1 + type: Transform + - uid: 8972 + components: + - pos: 57.5,18.5 + parent: 1 + type: Transform + - uid: 8973 + components: + - pos: 57.5,17.5 + parent: 1 + type: Transform + - uid: 8974 + components: + - pos: 57.5,16.5 + parent: 1 + type: Transform + - uid: 8975 + components: + - pos: 57.5,15.5 + parent: 1 + type: Transform + - uid: 8976 + components: + - pos: 57.5,14.5 + parent: 1 + type: Transform + - uid: 8977 + components: + - pos: 58.5,14.5 + parent: 1 + type: Transform + - uid: 8978 + components: + - pos: 59.5,14.5 + parent: 1 + type: Transform + - uid: 8979 + components: + - pos: 59.5,13.5 + parent: 1 + type: Transform + - uid: 8980 + components: + - pos: 59.5,12.5 + parent: 1 + type: Transform + - uid: 8981 + components: + - pos: 59.5,11.5 + parent: 1 + type: Transform + - uid: 8982 + components: + - pos: 59.5,10.5 + parent: 1 + type: Transform + - uid: 8983 + components: + - pos: 59.5,9.5 + parent: 1 + type: Transform + - uid: 8984 + components: + - pos: 59.5,8.5 + parent: 1 + type: Transform + - uid: 8985 + components: + - pos: 59.5,7.5 + parent: 1 + type: Transform + - uid: 8986 + components: + - pos: 59.5,6.5 + parent: 1 + type: Transform + - uid: 8999 + components: + - pos: 96.5,13.5 + parent: 1 + type: Transform + - uid: 9000 + components: + - pos: 96.5,14.5 + parent: 1 + type: Transform + - uid: 9001 + components: + - pos: 96.5,15.5 + parent: 1 + type: Transform + - uid: 9002 + components: + - pos: 96.5,16.5 + parent: 1 + type: Transform + - uid: 9003 + components: + - pos: 97.5,16.5 + parent: 1 + type: Transform + - uid: 9004 + components: + - pos: 98.5,16.5 + parent: 1 + type: Transform + - uid: 9005 + components: + - pos: 95.5,16.5 + parent: 1 + type: Transform + - uid: 9006 + components: + - pos: 94.5,16.5 + parent: 1 + type: Transform + - uid: 9007 + components: + - pos: 93.5,16.5 + parent: 1 + type: Transform + - uid: 9008 + components: + - pos: 92.5,16.5 + parent: 1 + type: Transform + - uid: 9009 + components: + - pos: 91.5,16.5 + parent: 1 + type: Transform + - uid: 9010 + components: + - pos: 91.5,17.5 + parent: 1 + type: Transform + - uid: 9011 + components: + - pos: 91.5,18.5 + parent: 1 + type: Transform + - uid: 9012 + components: + - pos: 91.5,19.5 + parent: 1 + type: Transform + - uid: 9013 + components: + - pos: 91.5,20.5 + parent: 1 + type: Transform + - uid: 9014 + components: + - pos: 91.5,21.5 + parent: 1 + type: Transform + - uid: 9015 + components: + - pos: -25.5,21.5 + parent: 1 + type: Transform + - uid: 9016 + components: + - pos: -24.5,21.5 + parent: 1 + type: Transform + - uid: 9017 + components: + - pos: -23.5,21.5 + parent: 1 + type: Transform + - uid: 9018 + components: + - pos: -22.5,21.5 + parent: 1 + type: Transform + - uid: 9019 + components: + - pos: -21.5,21.5 + parent: 1 + type: Transform + - uid: 9020 + components: + - pos: -20.5,21.5 + parent: 1 + type: Transform + - uid: 9021 + components: + - pos: -19.5,21.5 + parent: 1 + type: Transform + - uid: 9022 + components: + - pos: -18.5,21.5 + parent: 1 + type: Transform + - uid: 9023 + components: + - pos: -17.5,21.5 + parent: 1 + type: Transform + - uid: 9024 + components: + - pos: -16.5,21.5 + parent: 1 + type: Transform + - uid: 9025 + components: + - pos: -18.5,22.5 + parent: 1 + type: Transform + - uid: 9026 + components: + - pos: -18.5,23.5 + parent: 1 + type: Transform + - uid: 9027 + components: + - pos: -18.5,24.5 + parent: 1 + type: Transform + - uid: 9028 + components: + - pos: -18.5,25.5 + parent: 1 + type: Transform + - uid: 9029 + components: + - pos: -18.5,26.5 + parent: 1 + type: Transform + - uid: 9030 + components: + - pos: -17.5,26.5 + parent: 1 + type: Transform + - uid: 9031 + components: + - pos: -16.5,26.5 + parent: 1 + type: Transform + - uid: 9032 + components: + - pos: -16.5,27.5 + parent: 1 + type: Transform + - uid: 9033 + components: + - pos: -15.5,27.5 + parent: 1 + type: Transform + - uid: 9034 + components: + - pos: -14.5,27.5 + parent: 1 + type: Transform + - uid: 9035 + components: + - pos: -13.5,27.5 + parent: 1 + type: Transform + - uid: 9036 + components: + - pos: -12.5,27.5 + parent: 1 + type: Transform + - uid: 9037 + components: + - pos: -11.5,27.5 + parent: 1 + type: Transform + - uid: 9038 + components: + - pos: -10.5,27.5 + parent: 1 + type: Transform + - uid: 9039 + components: + - pos: -9.5,27.5 + parent: 1 + type: Transform + - uid: 9040 + components: + - pos: -8.5,27.5 + parent: 1 + type: Transform + - uid: 9041 + components: + - pos: -7.5,27.5 + parent: 1 + type: Transform + - uid: 9042 + components: + - pos: -6.5,27.5 + parent: 1 + type: Transform + - uid: 9043 + components: + - pos: -5.5,27.5 + parent: 1 + type: Transform + - uid: 9044 + components: + - pos: -4.5,27.5 + parent: 1 + type: Transform + - uid: 9045 + components: + - pos: -3.5,27.5 + parent: 1 + type: Transform + - uid: 9046 + components: + - pos: -2.5,27.5 + parent: 1 + type: Transform + - uid: 9047 + components: + - pos: -1.5,27.5 + parent: 1 + type: Transform + - uid: 9048 + components: + - pos: -0.5,27.5 + parent: 1 + type: Transform + - uid: 9049 + components: + - pos: 0.5,27.5 + parent: 1 + type: Transform + - uid: 9050 + components: + - pos: 1.5,27.5 + parent: 1 + type: Transform + - uid: 9051 + components: + - pos: 2.5,27.5 + parent: 1 + type: Transform + - uid: 9052 + components: + - pos: 3.5,27.5 + parent: 1 + type: Transform + - uid: 9053 + components: + - pos: 4.5,27.5 + parent: 1 + type: Transform + - uid: 9054 + components: + - pos: 5.5,27.5 + parent: 1 + type: Transform + - uid: 9055 + components: + - pos: 6.5,27.5 + parent: 1 + type: Transform + - uid: 9056 + components: + - pos: 7.5,27.5 + parent: 1 + type: Transform + - uid: 9057 + components: + - pos: 8.5,27.5 + parent: 1 + type: Transform + - uid: 9058 + components: + - pos: 9.5,27.5 + parent: 1 + type: Transform + - uid: 9059 + components: + - pos: 14.5,27.5 + parent: 1 + type: Transform + - uid: 9060 + components: + - pos: 15.5,27.5 + parent: 1 + type: Transform + - uid: 9061 + components: + - pos: 16.5,27.5 + parent: 1 + type: Transform + - uid: 9062 + components: + - pos: 17.5,27.5 + parent: 1 + type: Transform + - uid: 9063 + components: + - pos: 18.5,27.5 + parent: 1 + type: Transform + - uid: 9064 + components: + - pos: 19.5,27.5 + parent: 1 + type: Transform + - uid: 9065 + components: + - pos: 20.5,27.5 + parent: 1 + type: Transform + - uid: 9066 + components: + - pos: 21.5,27.5 + parent: 1 + type: Transform + - uid: 9067 + components: + - pos: 22.5,27.5 + parent: 1 + type: Transform + - uid: 9068 + components: + - pos: 23.5,27.5 + parent: 1 + type: Transform + - uid: 9069 + components: + - pos: 24.5,27.5 + parent: 1 + type: Transform + - uid: 9070 + components: + - pos: 25.5,27.5 + parent: 1 + type: Transform + - uid: 9071 + components: + - pos: 25.5,26.5 + parent: 1 + type: Transform + - uid: 9072 + components: + - pos: 26.5,26.5 + parent: 1 + type: Transform + - uid: 9073 + components: + - pos: 28.5,26.5 + parent: 1 + type: Transform + - uid: 9074 + components: + - pos: 27.5,26.5 + parent: 1 + type: Transform + - uid: 11927 + components: + - pos: -45.5,41.5 + parent: 1 + type: Transform + - uid: 11963 + components: + - pos: -45.5,42.5 + parent: 1 + type: Transform + - uid: 11964 + components: + - pos: -45.5,43.5 + parent: 1 + type: Transform + - uid: 11965 + components: + - pos: -45.5,44.5 + parent: 1 + type: Transform + - uid: 11966 + components: + - pos: -45.5,45.5 + parent: 1 + type: Transform + - uid: 11967 + components: + - pos: -45.5,46.5 + parent: 1 + type: Transform + - uid: 11968 + components: + - pos: -45.5,47.5 + parent: 1 + type: Transform + - uid: 11969 + components: + - pos: -45.5,48.5 + parent: 1 + type: Transform + - uid: 11970 + components: + - pos: -45.5,49.5 + parent: 1 + type: Transform + - uid: 11971 + components: + - pos: -45.5,50.5 + parent: 1 + type: Transform + - uid: 11972 + components: + - pos: -45.5,51.5 + parent: 1 + type: Transform + - uid: 11973 + components: + - pos: -45.5,52.5 + parent: 1 + type: Transform + - uid: 11974 + components: + - pos: -45.5,53.5 + parent: 1 + type: Transform + - uid: 11975 + components: + - pos: -45.5,54.5 + parent: 1 + type: Transform + - uid: 11976 + components: + - pos: -45.5,55.5 + parent: 1 + type: Transform + - uid: 11977 + components: + - pos: -45.5,56.5 + parent: 1 + type: Transform + - uid: 11978 + components: + - pos: -45.5,57.5 + parent: 1 + type: Transform + - uid: 11979 + components: + - pos: -45.5,58.5 + parent: 1 + type: Transform + - uid: 11980 + components: + - pos: -45.5,59.5 + parent: 1 + type: Transform + - uid: 11981 + components: + - pos: -45.5,60.5 + parent: 1 + type: Transform + - uid: 11982 + components: + - pos: -45.5,61.5 + parent: 1 + type: Transform + - uid: 11984 + components: + - pos: -44.5,41.5 + parent: 1 + type: Transform + - uid: 11985 + components: + - pos: -43.5,41.5 + parent: 1 + type: Transform + - uid: 11986 + components: + - pos: -42.5,41.5 + parent: 1 + type: Transform + - uid: 11987 + components: + - pos: -41.5,41.5 + parent: 1 + type: Transform + - uid: 11988 + components: + - pos: -39.5,40.5 + parent: 1 + type: Transform + - uid: 11989 + components: + - pos: -38.5,41.5 + parent: 1 + type: Transform + - uid: 11990 + components: + - pos: -38.5,40.5 + parent: 1 + type: Transform + - uid: 11993 + components: + - pos: -39.5,38.5 + parent: 1 + type: Transform + - uid: 11994 + components: + - pos: -39.5,39.5 + parent: 1 + type: Transform + - uid: 14251 + components: + - pos: 92.5,11.5 + parent: 1 + type: Transform + - uid: 14332 + components: + - pos: -46.5,-21.5 + parent: 1 + type: Transform + - uid: 14333 + components: + - pos: -46.5,-20.5 + parent: 1 + type: Transform + - uid: 16010 + components: + - pos: 41.5,27.5 + parent: 1 + type: Transform + - uid: 16011 + components: + - pos: 40.5,26.5 + parent: 1 + type: Transform + - uid: 16014 + components: + - pos: 42.5,26.5 + parent: 1 + type: Transform + - uid: 16015 + components: + - pos: 41.5,25.5 + parent: 1 + type: Transform + - uid: 16017 + components: + - pos: 43.5,25.5 + parent: 1 + type: Transform + - uid: 16030 + components: + - pos: 46.5,22.5 + parent: 1 + type: Transform + - uid: 16031 + components: + - pos: 45.5,21.5 + parent: 1 + type: Transform + - uid: 16034 + components: + - pos: 47.5,21.5 + parent: 1 + type: Transform + - uid: 16035 + components: + - pos: 46.5,20.5 + parent: 1 + type: Transform + - uid: 16037 + components: + - pos: 47.5,19.5 + parent: 1 + type: Transform + - uid: 16039 + components: + - pos: 48.5,20.5 + parent: 1 + type: Transform + - uid: 16042 + components: + - pos: 48.5,18.5 + parent: 1 + type: Transform + - uid: 16043 + components: + - pos: 49.5,19.5 + parent: 1 + type: Transform + - uid: 17061 + components: + - pos: -23.5,-12.5 + parent: 1 + type: Transform + - uid: 17335 + components: + - pos: 92.5,12.5 + parent: 1 + type: Transform + - uid: 17615 + components: + - pos: -22.5,-12.5 + parent: 1 + type: Transform + - uid: 17633 + components: + - pos: -20.5,-12.5 + parent: 1 + type: Transform + - uid: 17636 + components: + - pos: -21.5,-12.5 + parent: 1 + type: Transform + - uid: 21525 + components: + - pos: -56.5,-14.5 + parent: 1 + type: Transform + - uid: 21526 + components: + - pos: -57.5,-16.5 + parent: 1 + type: Transform + - uid: 21527 + components: + - pos: -58.5,-16.5 + parent: 1 + type: Transform + - uid: 21989 + components: + - pos: -61.5,-5.5 + parent: 1 + type: Transform + - uid: 21990 + components: + - pos: -70.5,1.5 + parent: 1 + type: Transform + - uid: 21992 + components: + - pos: -70.5,2.5 + parent: 1 + type: Transform + - uid: 22081 + components: + - pos: -70.5,3.5 + parent: 1 + type: Transform + - uid: 22220 + components: + - pos: -70.5,4.5 + parent: 1 + type: Transform + - uid: 22221 + components: + - pos: -69.5,4.5 + parent: 1 + type: Transform + - uid: 22223 + components: + - pos: -68.5,4.5 + parent: 1 + type: Transform + - uid: 22226 + components: + - pos: -67.5,4.5 + parent: 1 + type: Transform + - uid: 22227 + components: + - pos: -66.5,4.5 + parent: 1 + type: Transform + - uid: 22228 + components: + - pos: -65.5,4.5 + parent: 1 + type: Transform + - uid: 22229 + components: + - pos: -63.5,4.5 + parent: 1 + type: Transform + - uid: 22230 + components: + - pos: -63.5,3.5 + parent: 1 + type: Transform + - uid: 22239 + components: + - pos: -63.5,2.5 + parent: 1 + type: Transform + - uid: 22240 + components: + - pos: -63.5,1.5 + parent: 1 + type: Transform + - uid: 22241 + components: + - pos: -63.5,0.5 + parent: 1 + type: Transform + - uid: 22242 + components: + - pos: -63.5,-0.5 + parent: 1 + type: Transform + - uid: 22265 + components: + - pos: -63.5,-1.5 + parent: 1 + type: Transform + - uid: 22463 + components: + - pos: -63.5,-2.5 + parent: 1 + type: Transform + - uid: 22542 + components: + - pos: -63.5,-3.5 + parent: 1 + type: Transform + - uid: 22544 + components: + - pos: -63.5,-4.5 + parent: 1 + type: Transform + - uid: 22545 + components: + - pos: -63.5,-5.5 + parent: 1 + type: Transform + - uid: 22609 + components: + - pos: 45.5,-27.5 + parent: 1 + type: Transform + - uid: 22610 + components: + - pos: 45.5,-26.5 + parent: 1 + type: Transform + - uid: 22611 + components: + - pos: 45.5,-25.5 + parent: 1 + type: Transform + - uid: 22612 + components: + - pos: 46.5,-25.5 + parent: 1 + type: Transform + - uid: 22613 + components: + - pos: 47.5,-25.5 + parent: 1 + type: Transform + - uid: 22614 + components: + - pos: 48.5,-25.5 + parent: 1 + type: Transform + - uid: 22615 + components: + - pos: 49.5,-25.5 + parent: 1 + type: Transform + - uid: 22837 + components: + - pos: -62.5,-5.5 + parent: 1 + type: Transform + - uid: 22844 + components: + - pos: -61.5,-6.5 + parent: 1 + type: Transform + - uid: 22845 + components: + - pos: -61.5,-7.5 + parent: 1 + type: Transform + - uid: 22846 + components: + - pos: -61.5,-8.5 + parent: 1 + type: Transform + - uid: 22857 + components: + - pos: -61.5,-9.5 + parent: 1 + type: Transform + - uid: 22858 + components: + - pos: -61.5,-10.5 + parent: 1 + type: Transform + - uid: 22859 + components: + - pos: -61.5,-11.5 + parent: 1 + type: Transform + - uid: 22860 + components: + - pos: -61.5,-12.5 + parent: 1 + type: Transform + - uid: 22861 + components: + - pos: -61.5,-13.5 + parent: 1 + type: Transform + - uid: 22862 + components: + - pos: -61.5,-14.5 + parent: 1 + type: Transform + - uid: 22863 + components: + - pos: -61.5,-15.5 + parent: 1 + type: Transform + - uid: 22864 + components: + - pos: -61.5,-16.5 + parent: 1 + type: Transform + - uid: 22865 + components: + - pos: -60.5,-16.5 + parent: 1 + type: Transform + - uid: 22879 + components: + - pos: -20.5,-14.5 + parent: 1 + type: Transform + - uid: 22880 + components: + - pos: -20.5,-13.5 + parent: 1 + type: Transform + - uid: 22881 + components: + - pos: -25.5,-12.5 + parent: 1 + type: Transform + - uid: 22882 + components: + - pos: -26.5,-12.5 + parent: 1 + type: Transform + - uid: 22883 + components: + - pos: -27.5,-12.5 + parent: 1 + type: Transform + - uid: 22884 + components: + - pos: -28.5,-12.5 + parent: 1 + type: Transform + - uid: 22885 + components: + - pos: -29.5,-12.5 + parent: 1 + type: Transform + - uid: 22886 + components: + - pos: -29.5,-13.5 + parent: 1 + type: Transform + - uid: 22887 + components: + - pos: -29.5,-14.5 + parent: 1 + type: Transform + - uid: 22888 + components: + - pos: -29.5,-15.5 + parent: 1 + type: Transform + - uid: 23196 + components: + - pos: -76.5,6.5 + parent: 1 + type: Transform + - uid: 23197 + components: + - pos: -75.5,6.5 + parent: 1 + type: Transform + - uid: 23198 + components: + - pos: -74.5,6.5 + parent: 1 + type: Transform + - uid: 23199 + components: + - pos: -73.5,6.5 + parent: 1 + type: Transform + - uid: 23200 + components: + - pos: -72.5,6.5 + parent: 1 + type: Transform + - uid: 23201 + components: + - pos: -71.5,6.5 + parent: 1 + type: Transform + - uid: 23202 + components: + - pos: -70.5,6.5 + parent: 1 + type: Transform + - uid: 23203 + components: + - pos: -70.5,5.5 + parent: 1 + type: Transform + - uid: 23787 + components: + - pos: 92.5,13.5 + parent: 1 + type: Transform + - uid: 23788 + components: + - pos: 93.5,13.5 + parent: 1 + type: Transform + - uid: 23789 + components: + - pos: 94.5,13.5 + parent: 1 + type: Transform + - uid: 23790 + components: + - pos: 95.5,13.5 + parent: 1 + type: Transform + - uid: 24560 + components: + - pos: -71.5,4.5 + parent: 1 + type: Transform + - uid: 24828 + components: + - pos: 87.5,-22.5 + parent: 1 + type: Transform + - uid: 24829 + components: + - pos: 87.5,-21.5 + parent: 1 + type: Transform + - uid: 24830 + components: + - pos: 87.5,-20.5 + parent: 1 + type: Transform + - uid: 25015 + components: + - pos: 89.5,-49.5 + parent: 1 + type: Transform + - uid: 25016 + components: + - pos: 89.5,-48.5 + parent: 1 + type: Transform + - uid: 25017 + components: + - pos: 89.5,-47.5 + parent: 1 + type: Transform + - uid: 25018 + components: + - pos: 89.5,-46.5 + parent: 1 + type: Transform + - uid: 25019 + components: + - pos: 89.5,-45.5 + parent: 1 + type: Transform + - uid: 25020 + components: + - pos: 89.5,-44.5 + parent: 1 + type: Transform + - uid: 25021 + components: + - pos: 89.5,-43.5 + parent: 1 + type: Transform + - uid: 25022 + components: + - pos: 89.5,-42.5 + parent: 1 + type: Transform + - uid: 25023 + components: + - pos: 89.5,-41.5 + parent: 1 + type: Transform + - uid: 25024 + components: + - pos: 89.5,-40.5 + parent: 1 + type: Transform + - uid: 25025 + components: + - pos: 89.5,-39.5 + parent: 1 + type: Transform + - uid: 25026 + components: + - pos: 89.5,-38.5 + parent: 1 + type: Transform + - uid: 25027 + components: + - pos: 89.5,-37.5 + parent: 1 + type: Transform + - uid: 25028 + components: + - pos: 89.5,-36.5 + parent: 1 + type: Transform + - uid: 25029 + components: + - pos: 89.5,-35.5 + parent: 1 + type: Transform + - uid: 25030 + components: + - pos: 89.5,-34.5 + parent: 1 + type: Transform + - uid: 25031 + components: + - pos: 89.5,-33.5 + parent: 1 + type: Transform + - uid: 25032 + components: + - pos: 89.5,-32.5 + parent: 1 + type: Transform + - uid: 25033 + components: + - pos: 89.5,-31.5 + parent: 1 + type: Transform + - uid: 25034 + components: + - pos: 89.5,-30.5 + parent: 1 + type: Transform + - uid: 25035 + components: + - pos: 89.5,-29.5 + parent: 1 + type: Transform + - uid: 25036 + components: + - pos: 88.5,-29.5 + parent: 1 + type: Transform + - uid: 25037 + components: + - pos: 87.5,-29.5 + parent: 1 + type: Transform + - uid: 25038 + components: + - pos: 86.5,-29.5 + parent: 1 + type: Transform + - uid: 25039 + components: + - pos: 86.5,-28.5 + parent: 1 + type: Transform + - uid: 25040 + components: + - pos: 86.5,-27.5 + parent: 1 + type: Transform + - uid: 25041 + components: + - pos: 86.5,-26.5 + parent: 1 + type: Transform + - uid: 25042 + components: + - pos: 86.5,-25.5 + parent: 1 + type: Transform +- proto: Cautery + entities: + - uid: 7663 + components: + - pos: 83.49913,-3.4392233 + parent: 1 + type: Transform + - uid: 15962 + components: + - pos: 25.669378,48.46679 + parent: 1 + type: Transform +- proto: Chair + entities: + - uid: 558 + components: + - pos: 94.5,10.5 + parent: 1 + type: Transform + - uid: 779 + components: + - rot: 3.141592653589793 rad + pos: 93.5,8.5 + parent: 1 + type: Transform + - uid: 835 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-27.5 + parent: 1 + type: Transform + - uid: 909 + components: + - rot: 3.141592653589793 rad + pos: 10.5,16.5 + parent: 1 + type: Transform + - uid: 940 + components: + - rot: 3.141592653589793 rad + pos: 66.5,7.5 + parent: 1 + type: Transform + - uid: 983 + components: + - pos: 10.5,18.5 + parent: 1 + type: Transform + - uid: 1192 + components: + - rot: 3.141592653589793 rad + pos: 62.5,7.5 + parent: 1 + type: Transform + - uid: 1253 + components: + - pos: -13.5,21.5 + parent: 1 + type: Transform + - uid: 1321 + components: + - rot: -1.5707963267948966 rad + pos: 50.5,-31.5 + parent: 1 + type: Transform + - uid: 1324 + components: + - rot: -1.5707963267948966 rad + pos: 50.5,-30.5 + parent: 1 + type: Transform + - uid: 1498 + components: + - pos: 6.5,-25.5 + parent: 1 + type: Transform + - uid: 3308 + components: + - rot: 3.141592653589793 rad + pos: 13.5,21.5 + parent: 1 + type: Transform + - uid: 3801 + components: + - rot: 3.141592653589793 rad + pos: 67.5,7.5 + parent: 1 + type: Transform + - uid: 4106 + components: + - rot: 3.141592653589793 rad + pos: 86.5,17.5 + parent: 1 + type: Transform + - uid: 5122 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-6.5 + parent: 1 + type: Transform + - uid: 5124 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-6.5 + parent: 1 + type: Transform + - uid: 5125 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-6.5 + parent: 1 + type: Transform + - uid: 5301 + components: + - rot: -1.5707963267948966 rad + pos: 78.5,28.5 + parent: 1 + type: Transform + - uid: 5302 + components: + - rot: -1.5707963267948966 rad + pos: 78.5,29.5 + parent: 1 + type: Transform + - uid: 5303 + components: + - rot: -1.5707963267948966 rad + pos: 75.5,29.5 + parent: 1 + type: Transform + - uid: 5304 + components: + - rot: -1.5707963267948966 rad + pos: 75.5,28.5 + parent: 1 + type: Transform + - uid: 5305 + components: + - rot: 1.5707963267948966 rad + pos: 73.5,28.5 + parent: 1 + type: Transform + - uid: 5306 + components: + - rot: 1.5707963267948966 rad + pos: 73.5,29.5 + parent: 1 + type: Transform + - uid: 5307 + components: + - rot: 1.5707963267948966 rad + pos: 76.5,29.5 + parent: 1 + type: Transform + - uid: 5308 + components: + - rot: 1.5707963267948966 rad + pos: 76.5,28.5 + parent: 1 + type: Transform + - uid: 6060 + components: + - pos: 93.5,10.5 + parent: 1 + type: Transform + - uid: 6139 + components: + - rot: 3.141592653589793 rad + pos: 95.5,8.5 + parent: 1 + type: Transform + - uid: 6165 + components: + - rot: 1.5707963267948966 rad + pos: 97.5,6.5 + parent: 1 + type: Transform + - uid: 6166 + components: + - rot: 1.5707963267948966 rad + pos: 97.5,5.5 + parent: 1 + type: Transform + - uid: 6167 + components: + - rot: 1.5707963267948966 rad + pos: 97.5,3.5 + parent: 1 + type: Transform + - uid: 6168 + components: + - rot: 1.5707963267948966 rad + pos: 97.5,2.5 + parent: 1 + type: Transform + - uid: 6592 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,-3.5 + parent: 1 + type: Transform + - uid: 6593 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-3.5 + parent: 1 + type: Transform + - uid: 6977 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,8.5 + parent: 1 + type: Transform + - uid: 6978 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,8.5 + parent: 1 + type: Transform + - uid: 6979 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 1 + type: Transform + - uid: 6980 + components: + - pos: 15.5,0.5 + parent: 1 + type: Transform + - uid: 6981 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-0.5 + parent: 1 + type: Transform + - uid: 6982 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-0.5 + parent: 1 + type: Transform + - uid: 7131 + components: + - rot: -1.5707963267948966 rad + pos: 74.5,0.5 + parent: 1 + type: Transform + - uid: 7136 + components: + - rot: 3.141592653589793 rad + pos: 66.5,19.5 + parent: 1 + type: Transform + - uid: 7137 + components: + - pos: 66.5,21.5 + parent: 1 + type: Transform + - uid: 7524 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-6.5 + parent: 1 + type: Transform + - uid: 7525 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-7.5 + parent: 1 + type: Transform + - uid: 7526 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-8.5 + parent: 1 + type: Transform + - uid: 9309 + components: + - pos: 86.5,19.5 + parent: 1 + type: Transform + - uid: 9361 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-46.5 + parent: 1 + type: Transform + - uid: 9362 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-46.5 + parent: 1 + type: Transform + - uid: 9363 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-49.5 + parent: 1 + type: Transform + - uid: 9364 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-49.5 + parent: 1 + type: Transform + - uid: 9365 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-49.5 + parent: 1 + type: Transform + - uid: 9366 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-49.5 + parent: 1 + type: Transform + - uid: 9369 + components: + - pos: 15.5,-46.5 + parent: 1 + type: Transform + - uid: 9370 + components: + - pos: 17.5,-46.5 + parent: 1 + type: Transform + - uid: 9427 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-49.5 + parent: 1 + type: Transform + - uid: 9429 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-49.5 + parent: 1 + type: Transform + - uid: 9430 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-49.5 + parent: 1 + type: Transform + - uid: 9432 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-49.5 + parent: 1 + type: Transform + - uid: 9458 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-27.5 + parent: 1 + type: Transform + - uid: 9459 + components: + - pos: 17.5,-25.5 + parent: 1 + type: Transform + - uid: 9469 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-16.5 + parent: 1 + type: Transform + - uid: 9470 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-18.5 + parent: 1 + type: Transform + - uid: 9499 + components: + - pos: 13.5,6.5 + parent: 1 + type: Transform + - uid: 9500 + components: + - pos: 13.5,1.5 + parent: 1 + type: Transform + - uid: 9501 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-0.5 + parent: 1 + type: Transform + - uid: 9502 + components: + - rot: 3.141592653589793 rad + pos: 13.5,4.5 + parent: 1 + type: Transform + - uid: 12455 + components: + - pos: 13.5,23.5 + parent: 1 + type: Transform + - uid: 13515 + components: + - rot: 3.141592653589793 rad + pos: 94.5,8.5 + parent: 1 + type: Transform + - uid: 15835 + components: + - pos: 10.5,26.5 + parent: 1 + type: Transform + - uid: 15836 + components: + - rot: 3.141592653589793 rad + pos: 10.5,24.5 + parent: 1 + type: Transform + - uid: 15837 + components: + - pos: 13.5,18.5 + parent: 1 + type: Transform + - uid: 15838 + components: + - rot: 3.141592653589793 rad + pos: 13.5,16.5 + parent: 1 + type: Transform + - uid: 16068 + components: + - pos: -17.5,45.5 + parent: 1 + type: Transform + - uid: 16069 + components: + - rot: 3.141592653589793 rad + pos: -17.5,43.5 + parent: 1 + type: Transform + - uid: 16612 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,7.5 + parent: 1 + type: Transform + - uid: 16613 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,7.5 + parent: 1 + type: Transform + - uid: 16614 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,0.5 + parent: 1 + type: Transform + - uid: 16615 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,0.5 + parent: 1 + type: Transform + - uid: 16616 + components: + - pos: -32.5,1.5 + parent: 1 + type: Transform + - uid: 16617 + components: + - rot: 3.141592653589793 rad + pos: -32.5,6.5 + parent: 1 + type: Transform + - uid: 16618 + components: + - pos: -38.5,7.5 + parent: 1 + type: Transform + - uid: 16619 + components: + - pos: -37.5,7.5 + parent: 1 + type: Transform + - uid: 16620 + components: + - pos: -36.5,7.5 + parent: 1 + type: Transform + - uid: 16621 + components: + - rot: 3.141592653589793 rad + pos: -35.5,6.5 + parent: 1 + type: Transform + - uid: 17355 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,2.5 + parent: 1 + type: Transform + - uid: 17357 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,2.5 + parent: 1 + type: Transform + - uid: 22169 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,5.5 + parent: 1 + type: Transform + - uid: 22177 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,5.5 + parent: 1 + type: Transform + - uid: 22692 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,50.5 + parent: 1 + type: Transform + - uid: 22693 + components: + - rot: 3.141592653589793 rad + pos: 40.5,49.5 + parent: 1 + type: Transform + - uid: 23528 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,21.5 + parent: 1 + type: Transform + - uid: 23808 + components: + - pos: 65.5,0.5 + parent: 1 + type: Transform + - uid: 23809 + components: + - pos: 66.5,0.5 + parent: 1 + type: Transform + - uid: 23810 + components: + - pos: 67.5,0.5 + parent: 1 + type: Transform +- proto: ChairCursed + entities: + - uid: 11452 + components: + - rot: 1.5707963267948966 rad + pos: 0.7491939,-44.37673 + parent: 1 + type: Transform +- proto: ChairFolding + entities: + - uid: 1050 + components: + - rot: -1.5707963267948966 rad + pos: 3.6081285,24.85388 + parent: 1 + type: Transform + - uid: 1929 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-15.5 + parent: 1 + type: Transform + - uid: 1930 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-15.5 + parent: 1 + type: Transform + - uid: 1931 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-14.5 + parent: 1 + type: Transform + - uid: 2276 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,18 + parent: 1 + type: Transform + - uid: 2278 + components: + - rot: 1.5707963267948966 rad + pos: 20,15.5 + parent: 1 + type: Transform + - uid: 2279 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,15 + parent: 1 + type: Transform + - uid: 2633 + components: + - rot: 3.141592653589793 rad + pos: 41.5,-5.5 + parent: 1 + type: Transform + - uid: 2636 + components: + - rot: 3.141592653589793 rad + pos: 41.5,-4.5 + parent: 1 + type: Transform + - uid: 2657 + components: + - rot: 3.141592653589793 rad + pos: 41.5,-6.5 + parent: 1 + type: Transform + - uid: 2658 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-4.5 + parent: 1 + type: Transform + - uid: 2659 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-5.5 + parent: 1 + type: Transform + - uid: 2660 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-6.5 + parent: 1 + type: Transform + - uid: 2661 + components: + - rot: 3.141592653589793 rad + pos: 43.5,-4.5 + parent: 1 + type: Transform + - uid: 2662 + components: + - rot: 3.141592653589793 rad + pos: 43.5,-5.5 + parent: 1 + type: Transform + - uid: 2663 + components: + - rot: 3.141592653589793 rad + pos: 43.5,-6.5 + parent: 1 + type: Transform + - uid: 2667 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-4.5 + parent: 1 + type: Transform + - uid: 2668 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-5.5 + parent: 1 + type: Transform + - uid: 2669 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-6.5 + parent: 1 + type: Transform + - uid: 2670 + components: + - rot: 3.141592653589793 rad + pos: 46.5,-4.5 + parent: 1 + type: Transform + - uid: 2671 + components: + - rot: 3.141592653589793 rad + pos: 46.5,-5.5 + parent: 1 + type: Transform + - uid: 2672 + components: + - rot: 3.141592653589793 rad + pos: 46.5,-6.5 + parent: 1 + type: Transform + - uid: 2673 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-4.5 + parent: 1 + type: Transform + - uid: 2674 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-5.5 + parent: 1 + type: Transform + - uid: 2675 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-6.5 + parent: 1 + type: Transform + - uid: 2698 + components: + - rot: 3.141592653589793 rad + pos: 46.536743,-3.0971007 + parent: 1 + type: Transform + - uid: 2904 + components: + - rot: 1.5707963267948966 rad + pos: 18.32908,15.489021 + parent: 1 + type: Transform + - uid: 2955 + components: + - rot: -1.5707963267948966 rad + pos: 27,18.5 + parent: 1 + type: Transform + - uid: 3010 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,15 + parent: 1 + type: Transform + - uid: 3271 + components: + - rot: 1.5707963267948966 rad + pos: 28.969591,22.523123 + parent: 1 + type: Transform + - uid: 3274 + components: + - pos: 27.500841,21.82472 + parent: 1 + type: Transform + - uid: 3315 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,17 + parent: 1 + type: Transform + - uid: 3317 + components: + - rot: 1.5707963267948966 rad + pos: 20,16.5 + parent: 1 + type: Transform + - uid: 3318 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,16 + parent: 1 + type: Transform + - uid: 3370 + components: + - rot: 1.5707963267948966 rad + pos: 20,17.5 + parent: 1 + type: Transform + - uid: 3374 + components: + - rot: -1.5707963267948966 rad + pos: 27,16.5 + parent: 1 + type: Transform + - uid: 3375 + components: + - rot: -1.5707963267948966 rad + pos: 27,17.5 + parent: 1 + type: Transform + - uid: 5156 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,5.5 + parent: 1 + type: Transform + - uid: 5157 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,4.5 + parent: 1 + type: Transform + - uid: 5158 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,3.5 + parent: 1 + type: Transform + - uid: 5159 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,2.5 + parent: 1 + type: Transform + - uid: 5160 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,5.5 + parent: 1 + type: Transform + - uid: 5161 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,4.5 + parent: 1 + type: Transform + - uid: 5162 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,3.5 + parent: 1 + type: Transform + - uid: 5163 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,2.5 + parent: 1 + type: Transform + - uid: 5257 + components: + - rot: -1.5707963267948966 rad + pos: 27,15.5 + parent: 1 + type: Transform + - uid: 5468 + components: + - rot: 1.5707963267948966 rad + pos: 87.80263,24.66584 + parent: 1 + type: Transform + - uid: 5469 + components: + - rot: -1.5707963267948966 rad + pos: 90.30263,24.644993 + parent: 1 + type: Transform + - uid: 6169 + components: + - rot: 3.141592653589793 rad + pos: 101.5,0.5 + parent: 1 + type: Transform + - uid: 6170 + components: + - rot: 3.141592653589793 rad + pos: 100.5,0.5 + parent: 1 + type: Transform + - uid: 6171 + components: + - rot: 3.141592653589793 rad + pos: 99.5,0.5 + parent: 1 + type: Transform + - uid: 6172 + components: + - rot: 3.141592653589793 rad + pos: 98.5,0.5 + parent: 1 + type: Transform + - uid: 6184 + components: + - rot: 1.5707963267948966 rad + pos: 95.5,2.5 + parent: 1 + type: Transform + - uid: 6185 + components: + - rot: 1.5707963267948966 rad + pos: 94.5,2.5 + parent: 1 + type: Transform + - uid: 6186 + components: + - rot: 1.5707963267948966 rad + pos: 94.5,1.5 + parent: 1 + type: Transform + - uid: 6193 + components: + - rot: 1.5707963267948966 rad + pos: 96.5,5.5 + parent: 1 + type: Transform + - uid: 6194 + components: + - rot: 1.5707963267948966 rad + pos: 96.5,6.5 + parent: 1 + type: Transform + - uid: 6195 + components: + - rot: 1.5707963267948966 rad + pos: 95.5,5.5 + parent: 1 + type: Transform + - uid: 6196 + components: + - rot: 1.5707963267948966 rad + pos: 95.5,6.5 + parent: 1 + type: Transform + - uid: 6197 + components: + - rot: 1.5707963267948966 rad + pos: 94.5,5.5 + parent: 1 + type: Transform + - uid: 6198 + components: + - rot: 1.5707963267948966 rad + pos: 94.5,6.5 + parent: 1 + type: Transform + - uid: 6199 + components: + - rot: 1.5707963267948966 rad + pos: 95.5,1.5 + parent: 1 + type: Transform + - uid: 6200 + components: + - rot: 1.5707963267948966 rad + pos: 96.5,2.5 + parent: 1 + type: Transform + - uid: 6201 + components: + - rot: 1.5707963267948966 rad + pos: 96.5,1.5 + parent: 1 + type: Transform + - uid: 6336 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,10.5 + parent: 1 + type: Transform + - uid: 6337 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,9.5 + parent: 1 + type: Transform + - uid: 6338 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,9.5 + parent: 1 + type: Transform + - uid: 6339 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,10.5 + parent: 1 + type: Transform + - uid: 6517 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,31.5 + parent: 1 + type: Transform + - uid: 6694 + components: + - pos: -58.379112,-26.523415 + parent: 1 + type: Transform + - uid: 6764 + components: + - rot: 3.141592653589793 rad + pos: -57.347862,-29.12939 + parent: 1 + type: Transform + - uid: 6776 + components: + - rot: -1.5707963267948966 rad + pos: -55.920776,-23.178694 + parent: 1 + type: Transform + - uid: 6973 + components: + - rot: 3.141592653589793 rad + pos: 41.565456,-3.0190074 + parent: 1 + type: Transform + - uid: 7010 + components: + - rot: 1.5707963267948966 rad + pos: 54.5,8.5 + parent: 1 + type: Transform + - uid: 7258 + components: + - pos: 25.5,43.5 + parent: 1 + type: Transform + - uid: 7264 + components: + - pos: 26.5,43.5 + parent: 1 + type: Transform + - uid: 7265 + components: + - pos: 25.5,40.5 + parent: 1 + type: Transform + - uid: 7266 + components: + - rot: 3.141592653589793 rad + pos: 26.5,41.5 + parent: 1 + type: Transform + - uid: 7267 + components: + - rot: 3.141592653589793 rad + pos: 25.5,41.5 + parent: 1 + type: Transform + - uid: 7268 + components: + - rot: 3.141592653589793 rad + pos: 27.5,39.5 + parent: 1 + type: Transform + - uid: 7274 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,40.5 + parent: 1 + type: Transform + - uid: 7500 + components: + - pos: 7.556108,7.478181 + parent: 1 + type: Transform + - uid: 7502 + components: + - rot: 1.5707963267948966 rad + pos: 6.566525,6.4879103 + parent: 1 + type: Transform + - uid: 9111 + components: + - rot: 3.141592653589793 rad + pos: 2.2996554,-36.489388 + parent: 1 + type: Transform + - uid: 9226 + components: + - pos: 65.59165,22.813643 + parent: 1 + type: Transform + - uid: 9537 + components: + - pos: -15.5,-13.5 + parent: 1 + type: Transform + - uid: 9538 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-14.5 + parent: 1 + type: Transform + - uid: 10086 + components: + - rot: 1.5707963267948966 rad + pos: 22.403461,-41.36756 + parent: 1 + type: Transform + - uid: 10087 + components: + - rot: 3.141592653589793 rad + pos: 24.601377,-41.409256 + parent: 1 + type: Transform + - uid: 10088 + components: + - rot: 3.141592653589793 rad + pos: 26.340961,-41.4301 + parent: 1 + type: Transform + - uid: 10556 + components: + - rot: -1.5707963267948966 rad + pos: 25.840961,-40.252197 + parent: 1 + type: Transform + - uid: 10711 + components: + - rot: 3.141592653589793 rad + pos: -58.420776,-29.12939 + parent: 1 + type: Transform + - uid: 10717 + components: + - pos: -57.389526,-26.575533 + parent: 1 + type: Transform + - uid: 11228 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,18 + parent: 1 + type: Transform + - uid: 11231 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,16 + parent: 1 + type: Transform + - uid: 11247 + components: + - rot: 1.5707963267948966 rad + pos: 20,18.5 + parent: 1 + type: Transform + - uid: 11692 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,47.5 + parent: 1 + type: Transform + - uid: 11693 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,46.5 + parent: 1 + type: Transform + - uid: 11694 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,47.5 + parent: 1 + type: Transform + - uid: 11695 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,46.5 + parent: 1 + type: Transform + - uid: 11709 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,44.5 + parent: 1 + type: Transform + - uid: 12036 + components: + - rot: 3.141592653589793 rad + pos: -17.488918,-5.469898 + parent: 1 + type: Transform + - uid: 12256 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-28.5 + parent: 1 + type: Transform + - uid: 12257 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-29.5 + parent: 1 + type: Transform + - uid: 12258 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-28.5 + parent: 1 + type: Transform + - uid: 12259 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-29.5 + parent: 1 + type: Transform + - uid: 12260 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-28.5 + parent: 1 + type: Transform + - uid: 12261 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-29.5 + parent: 1 + type: Transform + - uid: 12262 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-28.5 + parent: 1 + type: Transform + - uid: 12263 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-29.5 + parent: 1 + type: Transform + - uid: 12334 + components: + - rot: -1.5707963267948966 rad + pos: -12.727543,51.6923 + parent: 1 + type: Transform + - uid: 12447 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,17 + parent: 1 + type: Transform + - uid: 13200 + components: + - rot: -1.5707963267948966 rad + pos: 53.5,35.5 + parent: 1 + type: Transform + - uid: 13201 + components: + - rot: -1.5707963267948966 rad + pos: 53.5,34.5 + parent: 1 + type: Transform + - uid: 13202 + components: + - rot: 1.5707963267948966 rad + pos: 51.5,34.5 + parent: 1 + type: Transform + - uid: 13203 + components: + - rot: 1.5707963267948966 rad + pos: 51.5,35.5 + parent: 1 + type: Transform + - uid: 13799 + components: + - rot: -1.5707963267948966 rad + pos: 26.705227,-33.23696 + parent: 1 + type: Transform + - uid: 15046 + components: + - rot: 3.141592653589793 rad + pos: 109.5,-5.5 + parent: 1 + type: Transform + - uid: 15744 + components: + - rot: 1.5707963267948966 rad + pos: -40.266907,-5.7676334 + parent: 1 + type: Transform + - uid: 15760 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-5.5 + parent: 1 + type: Transform + - uid: 15975 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,52.5 + parent: 1 + type: Transform + - uid: 16053 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,45.5 + parent: 1 + type: Transform + - uid: 16261 + components: + - pos: 79.54462,-18.352137 + parent: 1 + type: Transform + - uid: 16285 + components: + - pos: 80.80669,-18.336145 + parent: 1 + type: Transform + - uid: 22712 + components: + - rot: 1.5707963267948966 rad + pos: -14.248376,51.661026 + parent: 1 + type: Transform + - uid: 23439 + components: + - pos: 28.5,30.5 + parent: 1 + type: Transform + - uid: 23464 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,25.5 + parent: 1 + type: Transform + - uid: 24576 + components: + - rot: 1.5707963267948966 rad + pos: -98.5,11.5 + parent: 1 + type: Transform + - uid: 25279 + components: + - rot: 1.5707963267948966 rad + pos: 106.414085,28.353714 + parent: 1 + type: Transform + - uid: 25280 + components: + - rot: 1.5707963267948966 rad + pos: 106.36201,27.123693 + parent: 1 + type: Transform +- proto: ChairFoldingSpawnFolded + entities: + - uid: 2989 + components: + - pos: -6.4704466,12.6506605 + parent: 1 + type: Transform + - uid: 11455 + components: + - rot: 1.5707963267948966 rad + pos: -1.417473,-42.500435 + parent: 1 + type: Transform + - uid: 11456 + components: + - rot: 1.5707963267948966 rad + pos: -2.4799728,-41.468468 + parent: 1 + type: Transform + - uid: 11481 + components: + - rot: 1.5707963267948966 rad + pos: -2.5112228,-41.27041 + parent: 1 + type: Transform + - uid: 11488 + components: + - rot: 1.5707963267948966 rad + pos: -2.5424728,-41.020233 + parent: 1 + type: Transform + - uid: 11719 + components: + - pos: 37.495502,47.01667 + parent: 1 + type: Transform + - uid: 11720 + components: + - pos: 37.48509,46.662254 + parent: 1 + type: Transform + - uid: 12424 + components: + - pos: -19.509388,-10.38935 + parent: 1 + type: Transform + - uid: 14363 + components: + - rot: 1.5707963267948966 rad + pos: -9.017301,-34.445267 + parent: 1 + type: Transform + - uid: 15902 + components: + - rot: 1.5707963267948966 rad + pos: -21.501755,47.91401 + parent: 1 + type: Transform + - uid: 15903 + components: + - rot: 1.5707963267948966 rad + pos: -21.57467,47.476204 + parent: 1 + type: Transform + - uid: 15904 + components: + - pos: -21.689255,44.911926 + parent: 1 + type: Transform + - uid: 15905 + components: + - pos: -23.876755,47.486633 + parent: 1 + type: Transform + - uid: 16728 + components: + - rot: 3.141592653589793 rad + pos: 93.570175,22.033146 + parent: 1 + type: Transform + - uid: 16729 + components: + - pos: 93.476425,21.584917 + parent: 1 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 27 + components: + - pos: 12.5,-34.5 + parent: 1 + type: Transform + - uid: 1447 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-33.5 + parent: 1 + type: Transform + - uid: 1509 + components: + - pos: 10.5,-32.5 + parent: 1 + type: Transform + - uid: 1510 + components: + - pos: 11.5,-34.5 + parent: 1 + type: Transform + - uid: 1975 + components: + - rot: -1.5707963267948966 rad + pos: -6.5733004,-2.2441082 + parent: 1 + type: Transform + - uid: 2554 + components: + - rot: 3.141592653589793 rad + pos: -41.52256,6.6340055 + parent: 1 + type: Transform + - uid: 2555 + components: + - rot: 1.5707963267948966 rad + pos: -40.412144,5.2924495 + parent: 1 + type: Transform + - uid: 2946 + components: + - rot: 3.141592653589793 rad + pos: 42.47693,14.915049 + parent: 1 + type: Transform + - uid: 3113 + components: + - rot: -1.5707963267948966 rad + pos: 45.339874,8.193062 + parent: 1 + type: Transform + - uid: 3473 + components: + - rot: -1.5707963267948966 rad + pos: 77.336136,14.6137 + parent: 1 + type: Transform + - uid: 3997 + components: + - pos: 60.96737,21.508183 + parent: 1 + type: Transform + - uid: 4036 + components: + - pos: 67.5,10.5 + parent: 1 + type: Transform + - uid: 4078 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,11.5 + parent: 1 + type: Transform + - uid: 4190 + components: + - rot: -1.5707963267948966 rad + pos: 73.4358,19.25234 + parent: 1 + type: Transform + - uid: 4806 + components: + - pos: 72.050385,16.552547 + parent: 1 + type: Transform + - uid: 4856 + components: + - pos: 72.07122,13.519191 + parent: 1 + type: Transform + - uid: 5110 + components: + - rot: 3.141592653589793 rad + pos: -21.5,0.5 + parent: 1 + type: Transform + - uid: 5516 + components: + - rot: -1.5707963267948966 rad + pos: 73.37634,7.662159 + parent: 1 + type: Transform + - uid: 6159 + components: + - rot: -1.5707963267948966 rad + pos: 101.347755,2.9219153 + parent: 1 + type: Transform + - uid: 7104 + components: + - rot: -1.5707963267948966 rad + pos: 78.3126,18.233128 + parent: 1 + type: Transform + - uid: 7105 + components: + - rot: -1.5707963267948966 rad + pos: 79.41676,11.116379 + parent: 1 + type: Transform + - uid: 15977 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,50.5 + parent: 1 + type: Transform + - uid: 15990 + components: + - rot: 1.5707963267948966 rad + pos: -42.25129,38.66868 + parent: 1 + type: Transform + - uid: 16135 + components: + - rot: 3.141592653589793 rad + pos: 48.709156,-31.045301 + parent: 1 + type: Transform + - uid: 16493 + components: + - rot: 3.141592653589793 rad + pos: 58.417366,42.952454 + parent: 1 + type: Transform + - uid: 16494 + components: + - rot: 1.5707963267948966 rad + pos: 58.792366,39.700195 + parent: 1 + type: Transform + - uid: 25181 + components: + - pos: 76.5,8.5 + parent: 1 + type: Transform +- proto: ChairOfficeLight + entities: + - uid: 905 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,17.5 + parent: 1 + type: Transform + - uid: 907 + components: + - pos: -5.5,18.5 + parent: 1 + type: Transform + - uid: 2003 + components: + - pos: 4.009732,-0.43643045 + parent: 1 + type: Transform + - uid: 2009 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 1 + type: Transform + - uid: 2143 + components: + - rot: 3.141592653589793 rad + pos: -16.5,0.5 + parent: 1 + type: Transform + - uid: 2644 + components: + - pos: 45.5,0.5 + parent: 1 + type: Transform + - uid: 2838 + components: + - rot: -1.5707963267948966 rad + pos: 42.361767,-12.076594 + parent: 1 + type: Transform + - uid: 2840 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-12.5 + parent: 1 + type: Transform + - uid: 3084 + components: + - pos: 42.037792,11.487018 + parent: 1 + type: Transform + - uid: 3154 + components: + - rot: 3.141592653589793 rad + pos: -12.733096,47.894424 + parent: 1 + type: Transform + - uid: 3198 + components: + - rot: 3.141592653589793 rad + pos: 56.5,0.5 + parent: 1 + type: Transform + - uid: 4259 + components: + - rot: 3.141592653589793 rad + pos: 26.5,1.5 + parent: 1 + type: Transform + - uid: 4644 + components: + - rot: 3.141592653589793 rad + pos: -8.4736395,48.22052 + parent: 1 + type: Transform + - uid: 4698 + components: + - pos: -4.5,40.5 + parent: 1 + type: Transform + - uid: 4708 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,43.5 + parent: 1 + type: Transform + - uid: 5694 + components: + - rot: 3.141592653589793 rad + pos: 66.5,-2.5 + parent: 1 + type: Transform + - uid: 5695 + components: + - rot: 3.141592653589793 rad + pos: 65.5,-2.5 + parent: 1 + type: Transform + - uid: 5722 + components: + - rot: 3.141592653589793 rad + pos: 73.60087,-4.1511564 + parent: 1 + type: Transform + - uid: 5726 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,-36.5 + parent: 1 + type: Transform + - uid: 6160 + components: + - rot: -1.5707963267948966 rad + pos: 101.30609,6.5390105 + parent: 1 + type: Transform + - uid: 6218 + components: + - rot: -1.5707963267948966 rad + pos: 106.5,8.5 + parent: 1 + type: Transform + - uid: 6232 + components: + - rot: 1.5707963267948966 rad + pos: 103.5,8.5 + parent: 1 + type: Transform + - uid: 6234 + components: + - rot: 1.5707963267948966 rad + pos: 103.5,7.5 + parent: 1 + type: Transform + - uid: 6242 + components: + - pos: 104.98343,10.499798 + parent: 1 + type: Transform + - uid: 6243 + components: + - rot: -1.5707963267948966 rad + pos: 106.5,9.5 + parent: 1 + type: Transform + - uid: 6250 + components: + - rot: 1.5707963267948966 rad + pos: 103.5,9.5 + parent: 1 + type: Transform + - uid: 6251 + components: + - rot: -1.5707963267948966 rad + pos: 106.5,7.5 + parent: 1 + type: Transform + - uid: 6432 + components: + - pos: -45.5,23.5 + parent: 1 + type: Transform + - uid: 6567 + components: + - pos: -54.023758,0.47525084 + parent: 1 + type: Transform + - uid: 6594 + components: + - pos: -56.5,-2.5 + parent: 1 + type: Transform + - uid: 6686 + components: + - pos: -56.5,-21.5 + parent: 1 + type: Transform + - uid: 6867 + components: + - pos: -22.485092,11.446932 + parent: 1 + type: Transform + - uid: 7321 + components: + - pos: 8.64017,51.499344 + parent: 1 + type: Transform + - uid: 7582 + components: + - pos: 79.5,-8.5 + parent: 1 + type: Transform + - uid: 7703 + components: + - pos: 91.02607,-8.2087555 + parent: 1 + type: Transform + - uid: 9112 + components: + - rot: 3.141592653589793 rad + pos: -4.5232615,-33.007805 + parent: 1 + type: Transform + - uid: 9864 + components: + - rot: 3.141592653589793 rad + pos: 106.5,0.5 + parent: 1 + type: Transform + - uid: 9867 + components: + - rot: -1.5707963267948966 rad + pos: 104.5,1.5 + parent: 1 + type: Transform + - uid: 9868 + components: + - rot: -1.5707963267948966 rad + pos: 104.5,0.5 + parent: 1 + type: Transform + - uid: 11108 + components: + - rot: 1.5707963267948966 rad + pos: -4.3248906,-3.301437 + parent: 1 + type: Transform + - uid: 11955 + components: + - rot: 3.141592653589793 rad + pos: -38.481327,41.899765 + parent: 1 + type: Transform + - uid: 12241 + components: + - rot: 1.5707963267948966 rad + pos: -5.2044053,-44.484993 + parent: 1 + type: Transform + - uid: 12242 + components: + - rot: 3.141592653589793 rad + pos: -6.4544053,-42.02495 + parent: 1 + type: Transform + - uid: 15989 + components: + - rot: -1.5707963267948966 rad + pos: -43.72004,38.69995 + parent: 1 + type: Transform + - uid: 16368 + components: + - rot: -1.5707963267948966 rad + pos: 7.3435636,-17.985 + parent: 1 + type: Transform + - uid: 16495 + components: + - pos: 58.65695,36.520905 + parent: 1 + type: Transform + - uid: 16524 + components: + - rot: -1.5707963267948966 rad + pos: 53.344414,37.96398 + parent: 1 + type: Transform + - uid: 22900 + components: + - pos: -25.95963,-15.514336 + parent: 1 + type: Transform + - uid: 24815 + components: + - rot: 1.5707963267948966 rad + pos: 87.621124,-27.224382 + parent: 1 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 4614 + components: + - rot: 1.5707963267948966 rad + pos: 108.5,6.5 + parent: 1 + type: Transform + - uid: 4615 + components: + - rot: 1.5707963267948966 rad + pos: 108.5,1.5 + parent: 1 + type: Transform + - uid: 4616 + components: + - rot: 1.5707963267948966 rad + pos: 111.5,4.5 + parent: 1 + type: Transform + - uid: 4618 + components: + - rot: 1.5707963267948966 rad + pos: 108.5,2.5 + parent: 1 + type: Transform + - uid: 4727 + components: + - rot: 1.5707963267948966 rad + pos: 108.5,5.5 + parent: 1 + type: Transform + - uid: 6158 + components: + - rot: -1.5707963267948966 rad + pos: 101.5,4.5 + parent: 1 + type: Transform + - uid: 6284 + components: + - rot: 1.5707963267948966 rad + pos: 111.5,3.5 + parent: 1 + type: Transform + - uid: 6297 + components: + - rot: 1.5707963267948966 rad + pos: 111.5,5.5 + parent: 1 + type: Transform + - uid: 6298 + components: + - rot: 1.5707963267948966 rad + pos: 111.5,2.5 + parent: 1 + type: Transform + - uid: 22626 + components: + - rot: 1.5707963267948966 rad + pos: 113.5,9.5 + parent: 1 + type: Transform + - uid: 22627 + components: + - pos: 113.5,8.5 + parent: 1 + type: Transform +- proto: ChairRitual + entities: + - uid: 7441 + components: + - pos: 23.5,50.5 + parent: 1 + type: Transform +- proto: ChairWood + entities: + - uid: 1932 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 1 + type: Transform + - uid: 2282 + components: + - pos: 41.5,17.5 + parent: 1 + type: Transform + - uid: 2927 + components: + - pos: 43.5,17.5 + parent: 1 + type: Transform + - uid: 2939 + components: + - pos: 42.5,17.5 + parent: 1 + type: Transform + - uid: 3246 + components: + - pos: 43.5,21.5 + parent: 1 + type: Transform + - uid: 3248 + components: + - rot: 3.141592653589793 rad + pos: 43.5,19.5 + parent: 1 + type: Transform + - uid: 3250 + components: + - rot: 3.141592653589793 rad + pos: 41.5,19.5 + parent: 1 + type: Transform + - uid: 3251 + components: + - pos: 41.5,21.5 + parent: 1 + type: Transform + - uid: 3254 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,15.5 + parent: 1 + type: Transform + - uid: 3255 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,16.5 + parent: 1 + type: Transform + - uid: 3270 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,16.5 + parent: 1 + type: Transform + - uid: 3296 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,15.5 + parent: 1 + type: Transform + - uid: 3569 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,19.5 + parent: 1 + type: Transform + - uid: 3929 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-16.5 + parent: 1 + type: Transform + - uid: 3930 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-16.5 + parent: 1 + type: Transform + - uid: 3931 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-15.5 + parent: 1 + type: Transform + - uid: 3932 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-14.5 + parent: 1 + type: Transform + - uid: 3933 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-15.5 + parent: 1 + type: Transform + - uid: 3934 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-14.5 + parent: 1 + type: Transform + - uid: 3935 + components: + - pos: 34.016087,-13.652418 + parent: 1 + type: Transform + - uid: 3964 + components: + - pos: 31.5,-6.5 + parent: 1 + type: Transform + - uid: 3965 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-8.5 + parent: 1 + type: Transform + - uid: 3966 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-7.5 + parent: 1 + type: Transform + - uid: 3967 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-7.5 + parent: 1 + type: Transform + - uid: 4600 + components: + - rot: 3.141592653589793 rad + pos: 10.5,45.5 + parent: 1 + type: Transform + - uid: 4601 + components: + - rot: 3.141592653589793 rad + pos: 11.5,43.5 + parent: 1 + type: Transform + - uid: 4602 + components: + - rot: 3.141592653589793 rad + pos: 12.5,43.5 + parent: 1 + type: Transform + - uid: 4603 + components: + - rot: 3.141592653589793 rad + pos: 13.5,43.5 + parent: 1 + type: Transform + - uid: 4604 + components: + - rot: 3.141592653589793 rad + pos: 11.5,42.5 + parent: 1 + type: Transform + - uid: 4605 + components: + - rot: 3.141592653589793 rad + pos: 12.5,42.5 + parent: 1 + type: Transform + - uid: 4606 + components: + - rot: 3.141592653589793 rad + pos: 13.5,42.5 + parent: 1 + type: Transform + - uid: 6595 + components: + - rot: 3.141592653589793 rad + pos: -53.5,-1.5 + parent: 1 + type: Transform + - uid: 6596 + components: + - rot: 3.141592653589793 rad + pos: -54.5,-1.5 + parent: 1 + type: Transform + - uid: 6951 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-6.5 + parent: 1 + type: Transform + - uid: 6952 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-7.5 + parent: 1 + type: Transform + - uid: 6953 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-6.5 + parent: 1 + type: Transform + - uid: 6954 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-6.5 + parent: 1 + type: Transform + - uid: 6955 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-6.5 + parent: 1 + type: Transform + - uid: 6956 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-7.5 + parent: 1 + type: Transform + - uid: 6996 + components: + - rot: 3.141592653589793 rad + pos: 41.5,9.5 + parent: 1 + type: Transform + - uid: 7164 + components: + - rot: 1.5707963267948966 rad + pos: 76.76432,18.125278 + parent: 1 + type: Transform + - uid: 7165 + components: + - rot: 1.5707963267948966 rad + pos: 77.649734,10.693033 + parent: 1 + type: Transform + - uid: 7166 + components: + - rot: 1.5707963267948966 rad + pos: 77.66015,11.464402 + parent: 1 + type: Transform + - uid: 7325 + components: + - rot: 3.141592653589793 rad + pos: 8.888883,49.843803 + parent: 1 + type: Transform + - uid: 7439 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,48.5 + parent: 1 + type: Transform + - uid: 7440 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,48.5 + parent: 1 + type: Transform + - uid: 7527 + components: + - rot: 3.141592653589793 rad + pos: 42.5,9.5 + parent: 1 + type: Transform + - uid: 7528 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,8.5 + parent: 1 + type: Transform + - uid: 7529 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,7.5 + parent: 1 + type: Transform + - uid: 7597 + components: + - rot: 3.141592653589793 rad + pos: 79.5,-10.5 + parent: 1 + type: Transform + - uid: 7606 + components: + - rot: 1.5707963267948966 rad + pos: 80.5,-16.5 + parent: 1 + type: Transform + - uid: 7607 + components: + - rot: 1.5707963267948966 rad + pos: 83.5,-16.5 + parent: 1 + type: Transform + - uid: 7608 + components: + - rot: -1.5707963267948966 rad + pos: 85.5,-16.5 + parent: 1 + type: Transform + - uid: 7609 + components: + - rot: -1.5707963267948966 rad + pos: 82.5,-16.5 + parent: 1 + type: Transform + - uid: 8488 + components: + - pos: 115.5,5.5 + parent: 1 + type: Transform + - uid: 8577 + components: + - pos: -5.5,-38.5 + parent: 1 + type: Transform + - uid: 9377 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-43.5 + parent: 1 + type: Transform + - uid: 9378 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-44.5 + parent: 1 + type: Transform + - uid: 9379 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-43.5 + parent: 1 + type: Transform + - uid: 9380 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-44.5 + parent: 1 + type: Transform + - uid: 9381 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-43.5 + parent: 1 + type: Transform + - uid: 9382 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-44.5 + parent: 1 + type: Transform + - uid: 9383 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-44.5 + parent: 1 + type: Transform + - uid: 9384 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-43.5 + parent: 1 + type: Transform + - uid: 9623 + components: + - rot: 1.5707963267948966 rad + pos: 114.5,4.5 + parent: 1 + type: Transform + - uid: 9624 + components: + - rot: 1.5707963267948966 rad + pos: 114.5,3.5 + parent: 1 + type: Transform + - uid: 9625 + components: + - rot: 3.141592653589793 rad + pos: 115.5,2.5 + parent: 1 + type: Transform + - uid: 12487 + components: + - pos: -36.5,-15.5 + parent: 1 + type: Transform + - uid: 12953 + components: + - rot: 3.141592653589793 rad + pos: 26.585775,-36.258095 + parent: 1 + type: Transform + - uid: 16157 + components: + - pos: 40.5,-37.5 + parent: 1 + type: Transform + - uid: 16158 + components: + - pos: 41.5,-37.5 + parent: 1 + type: Transform + - uid: 16159 + components: + - rot: 3.141592653589793 rad + pos: 41.5,-39.5 + parent: 1 + type: Transform + - uid: 16160 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-39.5 + parent: 1 + type: Transform + - uid: 16325 + components: + - rot: -1.5707963267948966 rad + pos: 31.212875,-19.266956 + parent: 1 + type: Transform + - uid: 21493 + components: + - pos: 31.523659,-11.023291 + parent: 1 + type: Transform +- proto: CheapRollerBedSpawnFolded + entities: + - uid: 6868 + components: + - pos: -24.703842,9.674869 + parent: 1 + type: Transform + - uid: 6869 + components: + - pos: -24.683008,9.247488 + parent: 1 + type: Transform +- proto: chem_master + entities: + - uid: 1195 + components: + - pos: -3.5,19.5 + parent: 1 + type: Transform + - uid: 5678 + components: + - pos: 69.5,-12.5 + parent: 1 + type: Transform + - uid: 5763 + components: + - pos: 76.5,-11.5 + parent: 1 + type: Transform + - uid: 6850 + components: + - pos: -24.5,12.5 + parent: 1 + type: Transform +- proto: ChemDispenser + entities: + - uid: 5885 + components: + - pos: 76.5,-10.5 + parent: 1 + type: Transform + - uid: 10382 + components: + - pos: 70.5,-12.5 + parent: 1 + type: Transform +- proto: ChemDispenserMachineCircuitboard + entities: + - uid: 23849 + components: + - rot: 3.141592653589793 rad + pos: 80.53237,-9.043309 + parent: 1 + type: Transform +- proto: ChemistryEmptyBottle03 + entities: + - uid: 12896 + components: + - pos: 30.615347,-43.391968 + parent: 1 + type: Transform +- proto: ChemistryEmptyBottle04 + entities: + - uid: 12895 + components: + - pos: 30.354929,-43.287727 + parent: 1 + type: Transform + - tags: + - Bottle + type: Tag + - solutions: + drink: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 30 + reagents: + - data: null + ReagentId: Acetone + Quantity: 25 + type: SolutionContainerManager +- proto: ChemistryHotplate + entities: + - uid: 4693 + components: + - pos: -4.5,39.5 + parent: 1 + type: Transform + - uid: 5682 + components: + - pos: 71.5,-10.5 + parent: 1 + type: Transform + - uid: 6853 + components: + - pos: -24.5,11.5 + parent: 1 + type: Transform +- proto: ChurchOrganInstrument + entities: + - uid: 5225 + components: + - rot: 3.141592653589793 rad + pos: 10.5,46.5 + parent: 1 + type: Transform +- proto: Cigar + entities: + - uid: 4002 + components: + - rot: 1.5707963267948966 rad + pos: 60.81112,20.684694 + parent: 1 + type: Transform + - uid: 11722 + components: + - rot: 1.5707963267948966 rad + pos: 36.505154,43.541367 + parent: 1 + type: Transform + - uid: 20708 + components: + - pos: 14.722581,-49.402687 + parent: 1 + type: Transform +- proto: CigarCase + entities: + - uid: 9281 + components: + - rot: 1.5707963267948966 rad + pos: 32.433434,14.817208 + parent: 1 + type: Transform +- proto: Cigarette + entities: + - uid: 5474 + components: + - pos: 89.764435,24.634567 + parent: 1 + type: Transform + - uid: 5475 + components: + - pos: 89.764435,24.634567 + parent: 1 + type: Transform + - uid: 5476 + components: + - pos: 89.77485,24.644993 + parent: 1 + type: Transform + - uid: 5477 + components: + - pos: 89.764435,24.66584 + parent: 1 + type: Transform + - uid: 5478 + components: + - pos: 89.764435,24.66584 + parent: 1 + type: Transform + - uid: 5479 + components: + - rot: 3.141592653589793 rad + pos: 88.1811,24.592873 + parent: 1 + type: Transform + - uid: 5480 + components: + - rot: 3.141592653589793 rad + pos: 88.19151,24.457361 + parent: 1 + type: Transform + - uid: 5481 + components: + - rot: 3.141592653589793 rad + pos: 88.19151,24.519905 + parent: 1 + type: Transform + - uid: 5482 + components: + - rot: 3.141592653589793 rad + pos: 88.19151,24.572025 + parent: 1 + type: Transform + - uid: 5483 + components: + - rot: 1.5707963267948966 rad + pos: 88.83735,24.66584 + parent: 1 + type: Transform + - uid: 5484 + components: + - pos: 89.1186,24.71796 + parent: 1 + type: Transform + - uid: 5485 + components: + - pos: 88.9936,24.790926 + parent: 1 + type: Transform + - uid: 5486 + components: + - rot: -1.5707963267948966 rad + pos: 89.06651,24.572025 + parent: 1 + type: Transform + - uid: 5487 + components: + - rot: -1.5707963267948966 rad + pos: 89.03526,24.592873 + parent: 1 + type: Transform + - uid: 13226 + components: + - pos: 52.923332,34.11154 + parent: 1 + type: Transform +- proto: CigaretteSpent + entities: + - uid: 3838 + components: + - rot: 3.141592653589793 rad + pos: -35.75481,34.023483 + parent: 1 + type: Transform + - uid: 3839 + components: + - rot: 3.141592653589793 rad + pos: -35.494392,34.336197 + parent: 1 + type: Transform + - uid: 3842 + components: + - rot: -1.5707963267948966 rad + pos: -35.69231,34.690613 + parent: 1 + type: Transform + - uid: 7276 + components: + - rot: -1.5707963267948966 rad + pos: 15.043723,40.506783 + parent: 1 + type: Transform + - uid: 7277 + components: + - rot: 3.141592653589793 rad + pos: 15.949973,40.26703 + parent: 1 + type: Transform + - uid: 7278 + components: + - rot: 3.141592653589793 rad + pos: 15.627056,39.923042 + parent: 1 + type: Transform + - uid: 10624 + components: + - pos: 25.771809,-41.72471 + parent: 1 + type: Transform + - uid: 10625 + components: + - rot: -1.5707963267948966 rad + pos: 25.230143,-41.505806 + parent: 1 + type: Transform + - uid: 10626 + components: + - rot: 3.141592653589793 rad + pos: 25.282225,-41.94361 + parent: 1 + type: Transform + - uid: 16263 + components: + - rot: -1.5707963267948966 rad + pos: 80.23212,-19.019266 + parent: 1 + type: Transform + - uid: 16271 + components: + - pos: 79.95087,-18.852484 + parent: 1 + type: Transform + - uid: 23442 + components: + - rot: -1.5707963267948966 rad + pos: 28.280008,29.987923 + parent: 1 + type: Transform + - uid: 23443 + components: + - rot: 3.141592653589793 rad + pos: 28.33209,29.696053 + parent: 1 + type: Transform + - uid: 23444 + components: + - rot: 3.141592653589793 rad + pos: 28.227924,29.279097 + parent: 1 + type: Transform +- proto: CigarGold + entities: + - uid: 16771 + components: + - pos: -14.352178,-26.306402 + parent: 1 + type: Transform +- proto: CigPackBlue + entities: + - uid: 23509 + components: + - rot: 3.141592653589793 rad + pos: 56.72266,-3.3487167 + parent: 1 + type: Transform +- proto: CigPackGreen + entities: + - uid: 4149 + components: + - rot: 1.5707963267948966 rad + pos: 54.376076,7.9005837 + parent: 1 + type: Transform + - uid: 22694 + components: + - rot: -1.5707963267948966 rad + pos: 40.369446,50.635994 + parent: 1 + type: Transform +- proto: CircuitImprinter + entities: + - uid: 12051 + components: + - pos: 6.5,44.5 + parent: 1 + type: Transform +- proto: CloningPod + entities: + - uid: 5615 + components: + - pos: 69.5,-5.5 + parent: 1 + type: Transform + - links: + - 5635 + type: DeviceLinkSink +- proto: CloningPodMachineCircuitboard + entities: + - uid: 6578 + components: + - pos: -61.525852,-0.04177773 + parent: 1 + type: Transform +- proto: ClosetBase + entities: + - uid: 2225 + components: + - pos: 15.5,16.5 + parent: 1 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2261 + - 2262 + - 2264 + - 2265 + - 2268 + - 2269 + - 2272 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 2884 + components: + - pos: 38.5,16.5 + parent: 1 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2885 + - 2887 + - 2888 + - 2889 + - 2890 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 3283 + components: + - pos: 19.5,22.5 + parent: 1 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3284 + - 3291 + - 3295 + - 3302 + - 3304 + - 3305 + - 3306 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: ClosetBombFilled + entities: + - uid: 4645 + components: + - pos: -7.5,51.5 + parent: 1 + type: Transform + - uid: 21443 + components: + - pos: 82.5,12.5 + parent: 1 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 21444 + - 21445 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 25281 + components: + - pos: 104.5,25.5 + parent: 1 + type: Transform +- proto: ClosetChefFilled + entities: + - uid: 933 + components: + - pos: 1.5,24.5 + parent: 1 + type: Transform + - uid: 5187 + components: + - pos: 33.5,-0.5 + parent: 1 + type: Transform +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 7 + components: + - pos: 64.5,-24.5 + parent: 1 + type: Transform + - uid: 1265 + components: + - pos: 98.5,-9.5 + parent: 1 + type: Transform + - uid: 5812 + components: + - pos: -37.5,-33.5 + parent: 1 + type: Transform + - uid: 6506 + components: + - pos: -55.5,38.5 + parent: 1 + type: Transform + - uid: 6781 + components: + - pos: -66.5,9.5 + parent: 1 + type: Transform + - uid: 6782 + components: + - pos: -66.5,-1.5 + parent: 1 + type: Transform + - uid: 8489 + components: + - pos: -7.5,-48.5 + parent: 1 + type: Transform + - uid: 8490 + components: + - pos: 32.5,-48.5 + parent: 1 + type: Transform + - uid: 9113 + components: + - pos: 8.5,-21.5 + parent: 1 + type: Transform + - uid: 9114 + components: + - pos: 15.5,-21.5 + parent: 1 + type: Transform + - uid: 9120 + components: + - pos: -27.5,0.5 + parent: 1 + type: Transform + - uid: 9121 + components: + - pos: -38.5,-2.5 + parent: 1 + type: Transform + - uid: 9122 + components: + - pos: -27.5,7.5 + parent: 1 + type: Transform + - uid: 9126 + components: + - pos: -48.5,38.5 + parent: 1 + type: Transform + - uid: 9127 + components: + - pos: 8.5,28.5 + parent: 1 + type: Transform + - uid: 9132 + components: + - pos: 6.5,37.5 + parent: 1 + type: Transform + - uid: 9134 + components: + - pos: 17.5,37.5 + parent: 1 + type: Transform + - uid: 9140 + components: + - pos: 49.5,8.5 + parent: 1 + type: Transform + - uid: 9143 + components: + - pos: 61.5,11.5 + parent: 1 + type: Transform + - uid: 9358 + components: + - pos: 3.5,-49.5 + parent: 1 + type: Transform + - uid: 9359 + components: + - pos: 4.5,-49.5 + parent: 1 + type: Transform + - uid: 9385 + components: + - pos: 21.5,-49.5 + parent: 1 + type: Transform + - uid: 11097 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 11604 + components: + - pos: 75.5,-24.5 + parent: 1 + type: Transform + - uid: 15847 + components: + - pos: -34.5,29.5 + parent: 1 + type: Transform + - uid: 16235 + components: + - pos: 65.5,-28.5 + parent: 1 + type: Transform + - uid: 22878 + components: + - pos: -32.5,-31.5 + parent: 1 + type: Transform +- proto: ClosetFire + entities: + - uid: 9128 + components: + - pos: 15.5,28.5 + parent: 1 + type: Transform +- proto: ClosetFireFilled + entities: + - uid: 1264 + components: + - pos: 99.5,-9.5 + parent: 1 + type: Transform + - uid: 6505 + components: + - pos: -57.5,24.5 + parent: 1 + type: Transform + - uid: 6783 + components: + - pos: -66.5,-0.5 + parent: 1 + type: Transform + - uid: 6784 + components: + - pos: -66.5,8.5 + parent: 1 + type: Transform + - uid: 8491 + components: + - pos: 33.5,-48.5 + parent: 1 + type: Transform + - uid: 8492 + components: + - pos: -8.5,-48.5 + parent: 1 + type: Transform + - uid: 9119 + components: + - pos: -38.5,-1.5 + parent: 1 + type: Transform + - uid: 9123 + components: + - pos: -27.5,-0.5 + parent: 1 + type: Transform + - uid: 9124 + components: + - pos: -27.5,8.5 + parent: 1 + type: Transform + - uid: 9125 + components: + - pos: -49.5,38.5 + parent: 1 + type: Transform + - uid: 9131 + components: + - pos: 5.5,37.5 + parent: 1 + type: Transform + - uid: 9144 + components: + - pos: 60.5,-0.5 + parent: 1 + type: Transform + - uid: 9360 + components: + - pos: 6.5,-49.5 + parent: 1 + type: Transform + - uid: 9386 + components: + - pos: 23.5,-49.5 + parent: 1 + type: Transform + - uid: 16236 + components: + - pos: 65.5,-29.5 + parent: 1 + type: Transform + - uid: 16890 + components: + - pos: 49.5,0.5 + parent: 1 + type: Transform + - uid: 22877 + components: + - pos: -32.5,-32.5 + parent: 1 + type: Transform + - uid: 25310 + components: + - pos: -2.5,-0.5 + parent: 1 + type: Transform +- proto: ClosetJanitorFilled + entities: + - uid: 3540 + components: + - pos: -14.5,12.5 + parent: 1 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3957 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 3542 + components: + - pos: -15.5,12.5 + parent: 1 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4135 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: ClosetL3Filled + entities: + - uid: 3836 + components: + - pos: -28.5,26.5 + parent: 1 + type: Transform + - uid: 8613 + components: + - pos: 31.5,-28.5 + parent: 1 + type: Transform + - uid: 11689 + components: + - pos: 51.5,-9.5 + parent: 1 + type: Transform + - uid: 25308 + components: + - pos: -2.5,-15.5 + parent: 1 + type: Transform +- proto: ClosetL3JanitorFilled + entities: + - uid: 3541 + components: + - pos: -16.5,12.5 + parent: 1 + type: Transform + - uid: 6998 + components: + - pos: 54.5,9.5 + parent: 1 + type: Transform +- proto: ClosetL3ScienceFilled + entities: + - uid: 25725 + components: + - pos: 17.5,44.5 + parent: 1 + type: Transform + - uid: 25726 + components: + - pos: 20.5,44.5 + parent: 1 + type: Transform +- proto: ClosetL3SecurityFilled + entities: + - uid: 7132 + components: + - pos: 79.5,20.5 + parent: 1 + type: Transform +- proto: ClosetL3VirologyFilled + entities: + - uid: 7619 + components: + - pos: 87.5,-11.5 + parent: 1 + type: Transform +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 1597 + components: + - pos: 16.5,28.5 + parent: 1 + type: Transform + - uid: 5944 + components: + - pos: 35.5,-29.5 + parent: 1 + type: Transform + - uid: 9133 + components: + - pos: 18.5,37.5 + parent: 1 + type: Transform + - uid: 12707 + components: + - pos: 96.5,12.5 + parent: 1 + type: Transform + - uid: 15734 + components: + - pos: -35.5,-1.5 + parent: 1 + type: Transform + - uid: 15822 + components: + - pos: -54.5,-6.5 + parent: 1 + type: Transform + - uid: 15848 + components: + - pos: -34.5,28.5 + parent: 1 + type: Transform + - uid: 15928 + components: + - pos: -24.5,39.5 + parent: 1 + type: Transform + - uid: 15929 + components: + - pos: -21.5,39.5 + parent: 1 + type: Transform + - uid: 16255 + components: + - pos: 61.5,-20.5 + parent: 1 + type: Transform + - uid: 16256 + components: + - pos: 62.5,-20.5 + parent: 1 + type: Transform + - uid: 16382 + components: + - pos: 0.5,-19.5 + parent: 1 + type: Transform + - uid: 16383 + components: + - pos: 1.5,-19.5 + parent: 1 + type: Transform + - uid: 16891 + components: + - pos: 49.5,-0.5 + parent: 1 + type: Transform + - uid: 23467 + components: + - pos: -15.5,36.5 + parent: 1 + type: Transform + - uid: 24773 + components: + - pos: -60.5,-13.5 + parent: 1 + type: Transform +- proto: ClosetRadiationSuitFilled + entities: + - uid: 3841 + components: + - pos: -29.5,26.5 + parent: 1 + type: Transform + - uid: 4653 + components: + - pos: -9.5,51.5 + parent: 1 + type: Transform + - uid: 4655 + components: + - pos: -8.5,51.5 + parent: 1 + type: Transform + - uid: 6009 + components: + - pos: 26.5,-28.5 + parent: 1 + type: Transform + - uid: 12758 + components: + - pos: 95.5,12.5 + parent: 1 + type: Transform + - uid: 24644 + components: + - pos: -72.5,1.5 + parent: 1 + type: Transform + - uid: 24645 + components: + - pos: -71.5,1.5 + parent: 1 + type: Transform + - uid: 24646 + components: + - pos: -73.5,1.5 + parent: 1 + type: Transform + - uid: 25309 + components: + - pos: -2.5,-16.5 + parent: 1 + type: Transform +- proto: ClosetToolFilled + entities: + - uid: 555 + components: + - pos: -4.5,-41.5 + parent: 1 + type: Transform + - uid: 3835 + components: + - pos: -64.5,12.5 + parent: 1 + type: Transform + - uid: 3993 + components: + - pos: -9.5,-10.5 + parent: 1 + type: Transform + - uid: 4700 + components: + - pos: 1.5,39.5 + parent: 1 + type: Transform + - uid: 6846 + components: + - pos: -45.5,-27.5 + parent: 1 + type: Transform + - uid: 9898 + components: + - pos: 101.5,17.5 + parent: 1 + type: Transform +- proto: ClosetWall + entities: + - uid: 16785 + components: + - pos: -24.5,43.5 + parent: 1 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 16786 + - 16787 + type: ContainerContainer +- proto: ClosetWallBlue + entities: + - uid: 22662 + components: + - pos: 98.5,-4.5 + parent: 1 + type: Transform +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 9145 + components: + - pos: 97.5,15.5 + parent: 1 + type: Transform + - uid: 15793 + components: + - pos: -54.5,15.5 + parent: 1 + type: Transform + - uid: 16059 + components: + - pos: -5.5,55.5 + parent: 1 + type: Transform + - uid: 16060 + components: + - pos: 15.5,55.5 + parent: 1 + type: Transform + - uid: 16061 + components: + - pos: 29.5,55.5 + parent: 1 + type: Transform +- proto: ClosetWallFireFilledRandom + entities: + - uid: 4121 + components: + - pos: 75.5,23.5 + parent: 1 + type: Transform + - uid: 6674 + components: + - pos: -38.5,-26.5 + parent: 1 + type: Transform + - uid: 9146 + components: + - pos: 92.5,20.5 + parent: 1 + type: Transform + - uid: 15792 + components: + - pos: -53.5,15.5 + parent: 1 + type: Transform +- proto: ClosetWallGreen + entities: + - uid: 16359 + components: + - pos: 47.5,-8.5 + parent: 1 + type: Transform +- proto: ClosetWallMaintenanceFilledRandom + entities: + - uid: 8493 + components: + - pos: 32.5,-45.5 + parent: 1 + type: Transform + - uid: 9242 + components: + - pos: -6.5,-35.5 + parent: 1 + type: Transform + - uid: 9243 + components: + - pos: 2.5,-34.5 + parent: 1 + type: Transform + - uid: 9244 + components: + - pos: 2.5,-31.5 + parent: 1 + type: Transform + - uid: 10019 + components: + - pos: -18.5,17.5 + parent: 1 + type: Transform + - uid: 13933 + components: + - pos: -9.5,-32.5 + parent: 1 + type: Transform + - uid: 16318 + components: + - pos: 34.5,-33.5 + parent: 1 + type: Transform + - uid: 22744 + components: + - pos: -13.5,42.5 + parent: 1 + type: Transform + - uid: 22816 + components: + - pos: -60.5,11.5 + parent: 1 + type: Transform +- proto: ClosetWallOrange + entities: + - uid: 5373 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,24.5 + parent: 1 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5374 + - 5375 + - 5376 + - 5377 + - 5378 + - 5379 + - 5380 + - 5381 + - 5382 + type: ContainerContainer + - uid: 5383 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,24.5 + parent: 1 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5384 + - 5385 + - 5386 + - 5387 + - 5388 + - 5389 + - 5390 + - 5391 + type: ContainerContainer + - uid: 5392 + components: + - pos: 64.5,30.5 + parent: 1 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5393 + - 5394 + - 5395 + - 5396 + - 5397 + - 5398 + - 5399 + - 5400 + - 5401 + type: ContainerContainer + - uid: 5402 + components: + - pos: 67.5,30.5 + parent: 1 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5403 + - 5404 + - 5405 + - 5406 + - 5407 + - 5408 + - 5409 + - 5410 + type: ContainerContainer + - uid: 5411 + components: + - pos: 70.5,30.5 + parent: 1 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5412 + - 5413 + - 5414 + - 5415 + - 5416 + - 5417 + - 5418 + - 5419 + - 5420 + - 5421 + type: ContainerContainer +- proto: ClosetWallPink + entities: + - uid: 16360 + components: + - pos: 48.5,-8.5 + parent: 1 + type: Transform +- proto: ClothingBeltBandolier + entities: + - uid: 2889 + components: + - flags: InContainer + type: MetaData + - parent: 2884 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingBeltMartialBlack + entities: + - uid: 16118 + components: + - pos: 35.646896,-41.33235 + parent: 1 + type: Transform +- proto: ClothingCostumeArcDress + entities: + - uid: 7577 + components: + - rot: -1.5707963267948966 rad + pos: 20.778683,-11.446599 + parent: 1 + type: Transform +- proto: ClothingEyesBlindfold + entities: + - uid: 22713 + components: + - rot: 1.5707963267948966 rad + pos: -13.571293,51.61933 + parent: 1 + type: Transform + - uid: 22714 + components: + - rot: -1.5707963267948966 rad + pos: -13.342126,51.61933 + parent: 1 + type: Transform +- proto: ClothingEyesEyepatch + entities: + - uid: 16058 + components: + - rot: -1.5707963267948966 rad + pos: 1.966196,56.55056 + parent: 1 + type: Transform +- proto: ClothingEyesGlasses + entities: + - uid: 16735 + components: + - pos: 115.41388,3.994577 + parent: 1 + type: Transform +- proto: ClothingEyesGlassesMeson + entities: + - uid: 2585 + components: + - pos: -54.62872,2.6009676 + parent: 1 + type: Transform +- proto: ClothingEyesGlassesSecurity + entities: + - uid: 12796 + components: + - flags: InContainer + type: MetaData + - parent: 1444 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 12802 + components: + - flags: InContainer + type: MetaData + - parent: 12797 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 1955 + components: + - pos: 5.4805245,-15.413046 + parent: 1 + type: Transform + - uid: 24578 + components: + - pos: -98.14617,11.744191 + parent: 1 + type: Transform +- proto: ClothingEyesGlassesThermal + entities: + - uid: 6609 + components: + - pos: -54.79878,2.748063 + parent: 1 + type: Transform + - uid: 16381 + components: + - pos: 8.41648,-18.51662 + parent: 1 + type: Transform +- proto: ClothingEyesHudFriedOnion + entities: + - uid: 24312 + components: + - pos: 32.35002,0.9791496 + parent: 1 + type: Transform +- proto: ClothingEyesHudSecurity + entities: + - uid: 24309 + components: + - flags: InContainer + type: MetaData + - parent: 1444 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 24310 + components: + - flags: InContainer + type: MetaData + - parent: 12797 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingHandsGlovesColorBlack + entities: + - uid: 7396 + components: + - flags: InContainer + type: MetaData + - parent: 1444 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 12799 + components: + - flags: InContainer + type: MetaData + - parent: 12797 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingHandsGlovesColorBrown + entities: + - uid: 11226 + components: + - pos: 23.278448,-40.30706 + parent: 1 + type: Transform + - uid: 22646 + components: + - pos: 92.49801,-3.269146 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesColorOrange + entities: + - uid: 15821 + components: + - pos: -57.924988,-6.580021 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 4355 + components: + - rot: 3.141592653589793 rad + pos: 15.498359,-18.418991 + parent: 1 + type: Transform + - uid: 21444 + components: + - flags: InContainer + type: MetaData + - parent: 21443 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingHandsGlovesFingerless + entities: + - uid: 16377 + components: + - rot: 3.141592653589793 rad + pos: 8.07273,-17.328295 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesLatex + entities: + - uid: 7681 + components: + - rot: 1.5707963267948966 rad + pos: 65.68438,-9.279426 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesLeather + entities: + - uid: 12867 + components: + - pos: 32.552845,-44.444786 + parent: 1 + type: Transform + - uid: 23426 + components: + - rot: 3.141592653589793 rad + pos: 52.517715,-20.441343 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 4520 + components: + - pos: 78.495476,-10.398697 + parent: 1 + type: Transform +- proto: ClothingHeadHatBeretEngineering + entities: + - uid: 2586 + components: + - pos: -56.32143,2.668723 + parent: 1 + type: Transform +- proto: ClothingHeadHatCardborg + entities: + - uid: 16370 + components: + - pos: 6.5727305,-17.317871 + parent: 1 + type: Transform +- proto: ClothingHeadHatCone + entities: + - uid: 8392 + components: + - rot: -1.5707963267948966 rad + pos: 60.241203,28.3716 + parent: 1 + type: Transform + - uid: 12351 + components: + - pos: -3.777433,-28.690786 + parent: 1 + type: Transform + - uid: 12352 + components: + - pos: -3.652433,-28.294678 + parent: 1 + type: Transform + - uid: 13194 + components: + - pos: 60.090553,27.608047 + parent: 1 + type: Transform + - uid: 13195 + components: + - pos: 60.100967,24.62681 + parent: 1 + type: Transform + - uid: 13196 + components: + - pos: 60.090553,26.649048 + parent: 1 + type: Transform + - uid: 13197 + components: + - pos: 60.090553,25.63793 + parent: 1 + type: Transform + - uid: 15749 + components: + - pos: -45.88899,-5.836751 + parent: 1 + type: Transform + - uid: 15750 + components: + - pos: -44.17024,-4.8673277 + parent: 1 + type: Transform + - uid: 16051 + components: + - pos: -6.9702525,36.35379 + parent: 1 + type: Transform + - uid: 16052 + components: + - pos: -8.19942,36.93753 + parent: 1 + type: Transform + - uid: 16571 + components: + - pos: 48.674393,35.71209 + parent: 1 + type: Transform + - uid: 23505 + components: + - pos: 41.4046,28.112148 + parent: 1 + type: Transform + - uid: 23506 + components: + - pos: 44.008766,26.069063 + parent: 1 + type: Transform +- proto: ClothingHeadHatFedoraBrown + entities: + - uid: 15984 + components: + - pos: -28.391754,33.244553 + parent: 1 + type: Transform +- proto: ClothingHeadHatHairflower + entities: + - uid: 4019 + components: + - pos: 60.892315,20.397236 + parent: 1 + type: Transform + - uid: 9411 + components: + - rot: -1.5707963267948966 rad + pos: 27.443083,-43.94188 + parent: 1 + type: Transform + - uid: 9412 + components: + - rot: -1.5707963267948966 rad + pos: 24.505583,-44.035698 + parent: 1 + type: Transform +- proto: ClothingHeadHatHardhatOrange + entities: + - uid: 23507 + components: + - pos: 42.65655,25.79804 + parent: 1 + type: Transform +- proto: ClothingHeadHatHardhatYellow + entities: + - uid: 22644 + components: + - pos: 91.78967,-3.1336353 + parent: 1 + type: Transform + - uid: 22645 + components: + - pos: 91.98759,-3.2795696 + parent: 1 + type: Transform +- proto: ClothingHeadHatPaper + entities: + - uid: 5538 + components: + - pos: 74.63499,29.513678 + parent: 1 + type: Transform + - uid: 10017 + components: + - pos: 104.32851,8.12112 + parent: 1 + type: Transform +- proto: ClothingHeadHatPwig + entities: + - uid: 6275 + components: + - flags: InContainer + type: MetaData + - parent: 6274 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingHeadHatSantahat + entities: + - uid: 9544 + components: + - pos: -15.407596,-13.410982 + parent: 1 + type: Transform +- proto: ClothingHeadHatSecsoftFlipped + entities: + - uid: 1518 + components: + - pos: 13.516219,-30.346428 + parent: 1 + type: Transform +- proto: ClothingHeadHatSombrero + entities: + - uid: 6848 + components: + - pos: -18.67099,7.752771 + parent: 1 + type: Transform + - uid: 16750 + components: + - pos: 94.616745,17.615572 + parent: 1 + type: Transform +- proto: ClothingHeadHatSurgcapGreen + entities: + - uid: 25172 + components: + - rot: 3.141592653589793 rad + pos: 29.661203,48.61754 + parent: 1 + type: Transform + - uid: 25173 + components: + - rot: 3.141592653589793 rad + pos: 29.411203,48.659233 + parent: 1 + type: Transform +- proto: ClothingHeadHatUshanka + entities: + - uid: 15909 + components: + - pos: -25.428839,46.141945 + parent: 1 + type: Transform +- proto: ClothingHeadHatWelding + entities: + - uid: 12331 + components: + - pos: -12.50644,-31.290154 + parent: 1 + type: Transform +- proto: ClothingHeadHatWeldingMaskPainted + entities: + - uid: 11605 + components: + - rot: 1.5707963267948966 rad + pos: -17.646708,52.54551 + parent: 1 + type: Transform +- proto: ClothingHeadHelmetBasic + entities: + - uid: 7394 + components: + - flags: InContainer + type: MetaData + - parent: 1444 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 12800 + components: + - flags: InContainer + type: MetaData + - parent: 12797 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingHeadHelmetEVA + entities: + - uid: 22591 + components: + - flags: InContainer + type: MetaData + - parent: 6768 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingHeadPaperSackSmile + entities: + - uid: 12387 + components: + - pos: -37.496555,-18.347374 + parent: 1 + type: Transform +- proto: ClothingMaskBreath + entities: + - uid: 4908 + components: + - flags: InContainer + type: MetaData + - parent: 4907 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5721 + components: + - flags: InContainer + type: MetaData + - parent: 5720 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingMaskBreathMedical + entities: + - uid: 7662 + components: + - pos: 86.519966,-2.5323434 + parent: 1 + type: Transform +- proto: ClothingMaskGas + entities: + - uid: 2584 + components: + - rot: 1.5707963267948966 rad + pos: -18.376972,-5.258333 + parent: 1 + type: Transform +- proto: ClothingMaskGasExplorer + entities: + - uid: 6610 + components: + - pos: -57.486084,2.6125522 + parent: 1 + type: Transform + - uid: 16057 + components: + - rot: -1.5707963267948966 rad + pos: 24.668098,52.5999 + parent: 1 + type: Transform +- proto: ClothingMaskGasSwat + entities: + - uid: 4896 + components: + - flags: InContainer + type: MetaData + - parent: 4906 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 4897 + components: + - flags: InContainer + type: MetaData + - parent: 4906 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5729 + components: + - flags: InContainer + type: MetaData + - parent: 4909 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 6151 + components: + - flags: InContainer + type: MetaData + - parent: 4909 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingMaskMuzzle + entities: + - uid: 6381 + components: + - pos: 63.464138,19.57106 + parent: 1 + type: Transform +- proto: ClothingNeckScarfStripedLightBlue + entities: + - uid: 13939 + components: + - rot: -1.5707963267948966 rad + pos: -7.9991593,-34.16382 + parent: 1 + type: Transform +- proto: ClothingNeckStethoscope + entities: + - uid: 7360 + components: + - pos: 60.407185,-13.426604 + parent: 1 + type: Transform + - uid: 7679 + components: + - pos: 65.517715,-10.33224 + parent: 1 + type: Transform +- proto: ClothingNeckTieRed + entities: + - uid: 16736 + components: + - pos: 106.36979,-2.3901923 + parent: 1 + type: Transform +- proto: ClothingOuterCardborg + entities: + - uid: 16371 + components: + - pos: 8.458147,-17.985 + parent: 1 + type: Transform +- proto: ClothingOuterCoatBomber + entities: + - uid: 7568 + components: + - rot: 1.5707963267948966 rad + pos: 15.425992,-13.402033 + parent: 1 + type: Transform + - uid: 16094 + components: + - rot: 3.141592653589793 rad + pos: 18.518873,52.61492 + parent: 1 + type: Transform +- proto: ClothingOuterCoatHyenhSweater + entities: + - uid: 9543 + components: + - pos: -14.793013,-14.276166 + parent: 1 + type: Transform +- proto: ClothingOuterDameDane + entities: + - uid: 16787 + components: + - flags: InContainer + type: MetaData + - parent: 16785 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitCombatOfficer + entities: + - uid: 5076 + components: + - flags: InContainer + type: MetaData + - parent: 4907 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5077 + components: + - flags: InContainer + type: MetaData + - parent: 5720 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitEVA + entities: + - uid: 24629 + components: + - flags: InContainer + type: MetaData + - parent: 6768 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterRobesJudge + entities: + - uid: 6276 + components: + - flags: InContainer + type: MetaData + - parent: 6274 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterStraightjacket + entities: + - uid: 12050 + components: + - rot: 3.141592653589793 rad + pos: 63.380806,19.435549 + parent: 1 + type: Transform +- proto: ClothingOuterSuitChicken + entities: + - uid: 16065 + components: + - rot: 1.5707963267948966 rad + pos: 17.383493,52.35112 + parent: 1 + type: Transform +- proto: ClothingOuterVestHazard + entities: + - uid: 74 + components: + - pos: -37.486492,-5.3919535 + parent: 1 + type: Transform + - uid: 22842 + components: + - pos: -37.486492,-6.403072 + parent: 1 + type: Transform +- proto: ClothingOuterWinterCoatPlaid + entities: + - uid: 7570 + components: + - rot: 1.5707963267948966 rad + pos: 15.675992,-13.370762 + parent: 1 + type: Transform +- proto: ClothingOuterWinterEngi + entities: + - uid: 5930 + components: + - pos: -55.73609,2.5929008 + parent: 1 + type: Transform +- proto: ClothingShoesBootsJack + entities: + - uid: 7395 + components: + - flags: InContainer + type: MetaData + - parent: 1444 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 12801 + components: + - flags: InContainer + type: MetaData + - parent: 12797 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingShoesBootsMag + entities: + - uid: 577 + components: + - flags: InContainer + type: MetaData + - parent: 575 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1414 + components: + - flags: InContainer + type: MetaData + - parent: 1376 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 3156 + components: + - flags: InContainer + type: MetaData + - parent: 2314 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 3789 + components: + - flags: InContainer + type: MetaData + - parent: 3781 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingShoesColorPurple + entities: + - uid: 7566 + components: + - pos: 15.498908,-11.411067 + parent: 1 + type: Transform +- proto: ClothingShoesColorRed + entities: + - uid: 7565 + components: + - pos: 15.478075,-11.296404 + parent: 1 + type: Transform +- proto: ClothingShoesColorYellow + entities: + - uid: 7567 + components: + - pos: 15.530158,-11.52573 + parent: 1 + type: Transform +- proto: ClothingShoesDameDane + entities: + - uid: 16783 + components: + - pos: -12.40602,-24.047293 + parent: 1 + type: Transform + - uid: 16784 + components: + - pos: -12.697687,-24.03687 + parent: 1 + type: Transform +- proto: ClothingShoesFlippers + entities: + - uid: 7564 + components: + - pos: 18.498909,-10.274861 + parent: 1 + type: Transform +- proto: ClothingShoesGaloshes + entities: + - uid: 3957 + components: + - flags: InContainer + type: MetaData + - parent: 3540 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 4135 + components: + - flags: InContainer + type: MetaData + - parent: 3542 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingShoesSlippers + entities: + - uid: 5382 + components: + - flags: InContainer + type: MetaData + - parent: 5373 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5390 + components: + - flags: InContainer + type: MetaData + - parent: 5383 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5399 + components: + - flags: InContainer + type: MetaData + - parent: 5392 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5403 + components: + - flags: InContainer + type: MetaData + - parent: 5402 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5420 + components: + - flags: InContainer + type: MetaData + - parent: 5411 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingShoesTourist + entities: + - uid: 16758 + components: + - pos: 36.72205,-39.83764 + parent: 1 + type: Transform +- proto: ClothingUniformJumpsuitDameDane + entities: + - uid: 16786 + components: + - flags: InContainer + type: MetaData + - parent: 16785 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitSecBlue + entities: + - uid: 7575 + components: + - rot: -1.5707963267948966 rad + pos: 20.695349,-10.445904 + parent: 1 + type: Transform +- proto: ClothingUniformJumpsuitSecGrey + entities: + - uid: 22570 + components: + - rot: -1.5707963267948966 rad + pos: -20.430426,-2.3343182 + parent: 1 + type: Transform + - uid: 22571 + components: + - rot: -1.5707963267948966 rad + pos: -20.472092,-2.5219486 + parent: 1 + type: Transform +- proto: ClothingUniformJumpsuitTshirtJeans + entities: + - uid: 7576 + components: + - rot: -1.5707963267948966 rad + pos: 20.424515,-10.466752 + parent: 1 + type: Transform +- proto: ClothingUniformJumpsuitTshirtJeansPeach + entities: + - uid: 7578 + components: + - rot: -1.5707963267948966 rad + pos: 20.476599,-11.436175 + parent: 1 + type: Transform +- proto: ClothingUniformMartialGi + entities: + - uid: 16119 + components: + - pos: 35.38648,-41.30516 + parent: 1 + type: Transform +- proto: ClothingUniformMNKTracksuitBlack + entities: + - uid: 16781 + components: + - pos: -12.62477,-23.421858 + parent: 1 + type: Transform + - uid: 16782 + components: + - pos: -12.395603,-23.421858 + parent: 1 + type: Transform +- proto: ClothingUniformSwimsuitBlue + entities: + - uid: 22932 + components: + - pos: 18.520086,-10.356988 + parent: 1 + type: Transform +- proto: ColoredLightTubeBlackLight + entities: + - uid: 12292 + components: + - pos: -23.751886,-35.445465 + parent: 1 + type: Transform + - uid: 12293 + components: + - rot: 3.141592653589793 rad + pos: -23.908136,-35.382927 + parent: 1 + type: Transform +- proto: ComfyChair + entities: + - uid: 2015 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 2621 + components: + - pos: 42.5,-0.5 + parent: 1 + type: Transform + - uid: 2622 + components: + - pos: 43.5,-0.5 + parent: 1 + type: Transform + - uid: 2808 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,21.5 + parent: 1 + type: Transform + - uid: 2915 + components: + - rot: -1.5707963267948966 rad + pos: 105.5,-3.5 + parent: 1 + type: Transform + - uid: 2954 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,20.5 + parent: 1 + type: Transform + - uid: 3282 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,19.5 + parent: 1 + type: Transform + - uid: 3421 + components: + - rot: 3.141592653589793 rad + pos: -23.5,7.5 + parent: 1 + type: Transform + - uid: 3422 + components: + - rot: 3.141592653589793 rad + pos: -21.5,7.5 + parent: 1 + type: Transform + - uid: 4004 + components: + - rot: 3.141592653589793 rad + pos: 61.5,19.5 + parent: 1 + type: Transform + - uid: 4596 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,49.5 + parent: 1 + type: Transform + - uid: 5242 + components: + - rot: 3.141592653589793 rad + pos: 15.5,22.5 + parent: 1 + type: Transform + - uid: 5270 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,21.5 + parent: 1 + type: Transform + - uid: 5455 + components: + - rot: 3.141592653589793 rad + pos: 85.5,26.5 + parent: 1 + type: Transform + - uid: 5456 + components: + - rot: 3.141592653589793 rad + pos: 87.5,26.5 + parent: 1 + type: Transform + - uid: 5714 + components: + - pos: 80.5,-2.5 + parent: 1 + type: Transform + - uid: 5724 + components: + - rot: 3.141592653589793 rad + pos: 76.5,-6.5 + parent: 1 + type: Transform + - uid: 6329 + components: + - rot: 3.141592653589793 rad + pos: -39.5,12.5 + parent: 1 + type: Transform + - uid: 6330 + components: + - rot: 3.141592653589793 rad + pos: -38.5,12.5 + parent: 1 + type: Transform + - uid: 6331 + components: + - rot: 3.141592653589793 rad + pos: -37.5,12.5 + parent: 1 + type: Transform + - uid: 6663 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,-30.5 + parent: 1 + type: Transform + - uid: 6765 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,-30.5 + parent: 1 + type: Transform + - uid: 7290 + components: + - pos: 21.5,42.5 + parent: 1 + type: Transform + - uid: 9417 + components: + - pos: 29.5,-48.5 + parent: 1 + type: Transform + - uid: 9419 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-49.5 + parent: 1 + type: Transform + - uid: 9426 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-49.5 + parent: 1 + type: Transform + - uid: 9461 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-36.5 + parent: 1 + type: Transform + - uid: 9463 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-36.5 + parent: 1 + type: Transform + - uid: 9478 + components: + - pos: 8.5,-23.5 + parent: 1 + type: Transform + - uid: 9479 + components: + - pos: 15.5,-23.5 + parent: 1 + type: Transform + - uid: 11378 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-43.5 + parent: 1 + type: Transform + - uid: 11379 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-44.5 + parent: 1 + type: Transform + - uid: 11723 + components: + - rot: 3.141592653589793 rad + pos: 21.5,56.5 + parent: 1 + type: Transform + - uid: 11724 + components: + - rot: 3.141592653589793 rad + pos: 24.5,56.5 + parent: 1 + type: Transform + - uid: 11725 + components: + - rot: 3.141592653589793 rad + pos: 23.5,56.5 + parent: 1 + type: Transform + - uid: 11726 + components: + - rot: 3.141592653589793 rad + pos: 22.5,56.5 + parent: 1 + type: Transform + - uid: 11727 + components: + - rot: 3.141592653589793 rad + pos: -0.5,56.5 + parent: 1 + type: Transform + - uid: 11728 + components: + - rot: 3.141592653589793 rad + pos: -0.5,56.5 + parent: 1 + type: Transform + - uid: 11729 + components: + - rot: 3.141592653589793 rad + pos: 0.5,56.5 + parent: 1 + type: Transform + - uid: 11730 + components: + - rot: 3.141592653589793 rad + pos: 1.5,56.5 + parent: 1 + type: Transform + - uid: 11731 + components: + - rot: 3.141592653589793 rad + pos: 2.5,56.5 + parent: 1 + type: Transform + - uid: 12035 + components: + - pos: 29.5,40.5 + parent: 1 + type: Transform + - uid: 12364 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-26.5 + parent: 1 + type: Transform + - uid: 16520 + components: + - pos: 52.5,41.5 + parent: 1 + type: Transform + - uid: 16521 + components: + - pos: 53.5,41.5 + parent: 1 + type: Transform + - uid: 16593 + components: + - rot: 3.141592653589793 rad + pos: 51.5,24.5 + parent: 1 + type: Transform + - uid: 16772 + components: + - pos: -13.5,-23.5 + parent: 1 + type: Transform + - uid: 16773 + components: + - pos: -14.5,-23.5 + parent: 1 + type: Transform + - uid: 22809 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,36.5 + parent: 1 + type: Transform + - uid: 22810 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,36.5 + parent: 1 + type: Transform +- proto: ComputerAlert + entities: + - uid: 2546 + components: + - pos: -42.5,7.5 + parent: 1 + type: Transform + - uid: 6295 + components: + - rot: -1.5707963267948966 rad + pos: 112.5,5.5 + parent: 1 + type: Transform + - uid: 6590 + components: + - rot: 3.141592653589793 rad + pos: -56.5,-3.5 + parent: 1 + type: Transform +- proto: ComputerAnalysisConsole + entities: + - uid: 4631 + components: + - pos: -0.5,47.5 + parent: 1 + type: Transform +- proto: ComputerBroken + entities: + - uid: 6293 + components: + - rot: 1.5707963267948966 rad + pos: 109.5,9.5 + parent: 1 + type: Transform + - uid: 9949 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,50.5 + parent: 1 + type: Transform +- proto: ComputerCargoBounty + entities: + - uid: 20946 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 + type: Transform +- proto: ComputerCargoOrders + entities: + - uid: 1895 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 5068 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,-21.5 + parent: 1 + type: Transform + - uid: 25612 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,-36.5 + parent: 1 + type: Transform +- proto: ComputerCargoShuttle + entities: + - uid: 8478 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,-37.5 + parent: 1 + type: Transform +- proto: ComputerCloningConsole + entities: + - uid: 5635 + components: + - pos: 70.5,-6.5 + parent: 1 + type: Transform + - linkedPorts: + 5634: + - MedicalScannerSender: MedicalScannerReceiver + 5615: + - CloningPodSender: CloningPodReceiver + type: DeviceLinkSource +- proto: ComputerComms + entities: + - uid: 6290 + components: + - rot: 1.5707963267948966 rad + pos: 103.5,0.5 + parent: 1 + type: Transform + - uid: 6291 + components: + - rot: -1.5707963267948966 rad + pos: 112.5,3.5 + parent: 1 + type: Transform +- proto: ComputerCrewMonitoring + entities: + - uid: 1986 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 6286 + components: + - rot: -1.5707963267948966 rad + pos: 109.5,2.5 + parent: 1 + type: Transform + - uid: 7588 + components: + - pos: 80.5,-6.5 + parent: 1 + type: Transform + - uid: 25180 + components: + - rot: 3.141592653589793 rad + pos: 76.5,7.5 + parent: 1 + type: Transform +- proto: ComputerCriminalRecords + entities: + - uid: 5109 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,0.5 + parent: 1 + type: Transform + - uid: 5517 + components: + - rot: 3.141592653589793 rad + pos: 74.5,6.5 + parent: 1 + type: Transform + - uid: 5518 + components: + - pos: 68.5,12.5 + parent: 1 + type: Transform + - uid: 6383 + components: + - pos: 63.5,22.5 + parent: 1 + type: Transform + - uid: 7167 + components: + - rot: -1.5707963267948966 rad + pos: 80.5,10.5 + parent: 1 + type: Transform + - uid: 15265 + components: + - pos: 13.5,-32.5 + parent: 1 + type: Transform + - uid: 18304 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,40.5 + parent: 1 + type: Transform +- proto: ComputerFrame + entities: + - uid: 16490 + components: + - rot: -1.5707963267948966 rad + pos: 59.5,42.5 + parent: 1 + type: Transform + - uid: 16492 + components: + - rot: -1.5707963267948966 rad + pos: 59.5,37.5 + parent: 1 + type: Transform + - uid: 22774 + components: + - pos: -21.5,22.5 + parent: 1 + type: Transform + - uid: 22815 + components: + - pos: -59.5,11.5 + parent: 1 + type: Transform +- proto: ComputerId + entities: + - uid: 1985 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 3361 + components: + - rot: 1.5707963267948966 rad + pos: 76.5,14.5 + parent: 1 + type: Transform + - uid: 5056 + components: + - rot: 1.5707963267948966 rad + pos: 78.5,-8.5 + parent: 1 + type: Transform + - uid: 5069 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,-20.5 + parent: 1 + type: Transform + - uid: 6292 + components: + - rot: 1.5707963267948966 rad + pos: 109.5,8.5 + parent: 1 + type: Transform + - uid: 6294 + components: + - pos: 106.5,1.5 + parent: 1 + type: Transform + - uid: 11672 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,48.5 + parent: 1 + type: Transform + - uid: 25151 + components: + - pos: -56.5,-1.5 + parent: 1 + type: Transform +- proto: ComputerMassMedia + entities: + - uid: 747 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-12.5 + parent: 1 + type: Transform +- proto: ComputerMedicalRecords + entities: + - uid: 5693 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,-2.5 + parent: 1 + type: Transform + - uid: 6866 + components: + - rot: 3.141592653589793 rad + pos: -22.5,10.5 + parent: 1 + type: Transform + - uid: 7587 + components: + - pos: 81.5,-6.5 + parent: 1 + type: Transform +- proto: ComputerPowerMonitoring + entities: + - uid: 247 + components: + - pos: -6.5,-41.5 + parent: 1 + type: Transform + - uid: 624 + components: + - pos: -57.5,-14.5 + parent: 1 + type: Transform + - uid: 2547 + components: + - pos: -40.5,7.5 + parent: 1 + type: Transform + - uid: 6288 + components: + - rot: -1.5707963267948966 rad + pos: 109.5,5.5 + parent: 1 + type: Transform + - uid: 6589 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,0.5 + parent: 1 + type: Transform + - uid: 7476 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-18.5 + parent: 1 + type: Transform + - uid: 11953 + components: + - pos: -39.5,42.5 + parent: 1 + type: Transform + - uid: 21032 + components: + - pos: 128.5,7.5 + parent: 1 + type: Transform +- proto: ComputerRadar + entities: + - uid: 5888 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-52.5 + parent: 1 + type: Transform + - uid: 6287 + components: + - rot: -1.5707963267948966 rad + pos: 112.5,4.5 + parent: 1 + type: Transform +- proto: ComputerResearchAndDevelopment + entities: + - uid: 4707 + components: + - rot: 3.141592653589793 rad + pos: 6.5,42.5 + parent: 1 + type: Transform + - uid: 7322 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,51.5 + parent: 1 + type: Transform +- proto: ComputerShuttleCargo + entities: + - uid: 714 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,-35.5 + parent: 1 + type: Transform +- proto: ComputerShuttleSalvage + entities: + - uid: 5887 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-51.5 + parent: 1 + type: Transform +- proto: ComputerSolarControl + entities: + - uid: 2548 + components: + - pos: -41.5,7.5 + parent: 1 + type: Transform + - uid: 6289 + components: + - rot: -1.5707963267948966 rad + pos: 109.5,6.5 + parent: 1 + type: Transform + - uid: 11912 + components: + - pos: -38.5,42.5 + parent: 1 + type: Transform + - uid: 24812 + components: + - rot: -1.5707963267948966 rad + pos: 88.5,-27.5 + parent: 1 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 4584 + components: + - pos: 64.5,22.5 + parent: 1 + type: Transform + - uid: 6150 + components: + - rot: 1.5707963267948966 rad + pos: 103.5,1.5 + parent: 1 + type: Transform + - uid: 6296 + components: + - rot: -1.5707963267948966 rad + pos: 112.5,2.5 + parent: 1 + type: Transform + - uid: 23801 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,40.5 + parent: 1 + type: Transform +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 3675 + components: + - rot: 1.5707963267948966 rad + pos: 59.5,22.5 + parent: 1 + type: Transform + - uid: 5495 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,10.5 + parent: 1 + type: Transform + - uid: 6285 + components: + - rot: -1.5707963267948966 rad + pos: 109.5,1.5 + parent: 1 + type: Transform + - uid: 15266 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-33.5 + parent: 1 + type: Transform + - uid: 25568 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,0.5 + parent: 1 + type: Transform +- proto: ComputerSurveillanceWirelessCameraMonitor + entities: + - uid: 2847 + components: + - name: news and entertainment monitor + type: MetaData + - rot: 3.141592653589793 rad + pos: 39.5,-14.5 + parent: 1 + type: Transform + - uid: 16491 + components: + - rot: -1.5707963267948966 rad + pos: 59.5,39.5 + parent: 1 + type: Transform +- proto: ComputerTelevision + entities: + - uid: 1964 + components: + - pos: 5.5,-13.5 + parent: 1 + type: Transform + - uid: 3159 + components: + - pos: 88.5,-5.5 + parent: 1 + type: Transform + - uid: 5243 + components: + - pos: 15.5,23.5 + parent: 1 + type: Transform + - uid: 5454 + components: + - pos: 86.5,27.5 + parent: 1 + type: Transform + - uid: 5896 + components: + - pos: -58.5,-30.5 + parent: 1 + type: Transform + - uid: 9457 + components: + - pos: 31.5,-36.5 + parent: 1 + type: Transform + - uid: 12336 + components: + - pos: -12.5,-34.5 + parent: 1 + type: Transform + - uid: 12365 + components: + - pos: -34.5,-26.5 + parent: 1 + type: Transform + - uid: 13128 + components: + - pos: 92.5,-5.5 + parent: 1 + type: Transform + - uid: 13419 + components: + - pos: 104.5,-3.5 + parent: 1 + type: Transform + - uid: 16587 + components: + - pos: 50.5,28.5 + parent: 1 + type: Transform +- proto: ContainmentFieldGenerator + entities: + - uid: 24355 + components: + - pos: -98.5,8.5 + parent: 1 + type: Transform + - uid: 24356 + components: + - pos: -97.5,8.5 + parent: 1 + type: Transform + - uid: 24357 + components: + - pos: -98.5,4.5 + parent: 1 + type: Transform + - uid: 24358 + components: + - pos: -97.5,4.5 + parent: 1 + type: Transform + - uid: 24359 + components: + - pos: -98.5,0.5 + parent: 1 + type: Transform + - uid: 24360 + components: + - pos: -97.5,0.5 + parent: 1 + type: Transform + - uid: 24533 + components: + - rot: -1.5707963267948966 rad + pos: -83.5,8.5 + parent: 1 + type: Transform + - uid: 24534 + components: + - rot: -1.5707963267948966 rad + pos: -83.5,4.5 + parent: 1 + type: Transform + - uid: 24535 + components: + - rot: -1.5707963267948966 rad + pos: -83.5,0.5 + parent: 1 + type: Transform +- proto: ConveyorBelt + entities: + - uid: 1872 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-1.5 + parent: 1 + type: Transform + - links: + - 6849 + type: DeviceLinkSink + - uid: 1873 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-0.5 + parent: 1 + type: Transform + - links: + - 6849 + type: DeviceLinkSink + - uid: 1875 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-2.5 + parent: 1 + type: Transform + - links: + - 6849 + type: DeviceLinkSink + - uid: 3557 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,16.5 + parent: 1 + type: Transform + - links: + - 3560 + type: DeviceLinkSink + - uid: 3558 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,16.5 + parent: 1 + type: Transform + - links: + - 3560 + type: DeviceLinkSink + - uid: 3559 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,16.5 + parent: 1 + type: Transform + - links: + - 3560 + type: DeviceLinkSink + - uid: 3985 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-45.5 + parent: 1 + type: Transform + - links: + - 25666 + type: DeviceLinkSink + - uid: 5059 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-45.5 + parent: 1 + type: Transform + - links: + - 25666 + type: DeviceLinkSink + - uid: 5679 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-31.5 + parent: 1 + type: Transform + - links: + - 25668 + - 25667 + type: DeviceLinkSink + - uid: 5840 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-42.5 + parent: 1 + type: Transform + - links: + - 25666 + type: DeviceLinkSink + - uid: 5845 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,-42.5 + parent: 1 + type: Transform + - links: + - 25665 + type: DeviceLinkSink + - uid: 5855 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-42.5 + parent: 1 + type: Transform + - links: + - 25665 + type: DeviceLinkSink + - uid: 5856 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-42.5 + parent: 1 + type: Transform + - links: + - 25665 + type: DeviceLinkSink + - uid: 5857 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,-38.5 + parent: 1 + type: Transform + - links: + - 25665 + type: DeviceLinkSink + - uid: 5874 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-44.5 + parent: 1 + type: Transform + - links: + - 25666 + type: DeviceLinkSink + - uid: 5893 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-36.5 + parent: 1 + type: Transform + - links: + - 25667 + - 25668 + type: DeviceLinkSink + - uid: 5894 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-35.5 + parent: 1 + type: Transform + - links: + - 25667 + - 25668 + type: DeviceLinkSink + - uid: 5908 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-33.5 + parent: 1 + type: Transform + - links: + - 25667 + - 25668 + type: DeviceLinkSink + - uid: 6648 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-37.5 + parent: 1 + type: Transform + - links: + - 25667 + - 25668 + type: DeviceLinkSink + - uid: 6661 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-34.5 + parent: 1 + type: Transform + - links: + - 25667 + - 25668 + type: DeviceLinkSink + - uid: 6787 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-32.5 + parent: 1 + type: Transform + - links: + - 25668 + - 25667 + type: DeviceLinkSink + - uid: 6840 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-31.5 + parent: 1 + type: Transform + - links: + - 25667 + - 25668 + type: DeviceLinkSink + - uid: 7172 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-34.5 + parent: 1 + type: Transform + - links: + - 25668 + - 25667 + type: DeviceLinkSink + - uid: 7449 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-33.5 + parent: 1 + type: Transform + - links: + - 25668 + - 25667 + type: DeviceLinkSink + - uid: 7477 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-38.5 + parent: 1 + type: Transform + - links: + - 25665 + type: DeviceLinkSink + - uid: 7706 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-42.5 + parent: 1 + type: Transform + - links: + - 25665 + type: DeviceLinkSink + - uid: 7707 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,-42.5 + parent: 1 + type: Transform + - links: + - 25665 + type: DeviceLinkSink + - uid: 8475 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-42.5 + parent: 1 + type: Transform + - links: + - 25665 + type: DeviceLinkSink + - uid: 8477 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,-38.5 + parent: 1 + type: Transform + - links: + - 25665 + type: DeviceLinkSink + - uid: 10723 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-36.5 + parent: 1 + type: Transform + - links: + - 25668 + - 25667 + type: DeviceLinkSink + - uid: 10800 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-37.5 + parent: 1 + type: Transform + - links: + - 25668 + - 25667 + type: DeviceLinkSink + - uid: 10801 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-35.5 + parent: 1 + type: Transform + - links: + - 25668 + - 25667 + type: DeviceLinkSink + - uid: 10803 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-37.5 + parent: 1 + type: Transform + - links: + - 25668 + - 25667 + type: DeviceLinkSink + - uid: 12000 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-36.5 + parent: 1 + type: Transform + - links: + - 25668 + - 25667 + type: DeviceLinkSink + - uid: 14381 + components: + - pos: -9.5,25.5 + parent: 1 + type: Transform + - links: + - 14385 + type: DeviceLinkSink + - uid: 14382 + components: + - rot: 3.141592653589793 rad + pos: -9.5,23.5 + parent: 1 + type: Transform + - links: + - 14385 + type: DeviceLinkSink + - uid: 14383 + components: + - rot: 3.141592653589793 rad + pos: -9.5,22.5 + parent: 1 + type: Transform + - links: + - 14385 + type: DeviceLinkSink + - uid: 14384 + components: + - pos: -9.5,24.5 + parent: 1 + type: Transform + - links: + - 14385 + type: DeviceLinkSink + - uid: 25590 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-41.5 + parent: 1 + type: Transform + - links: + - 25666 + type: DeviceLinkSink + - uid: 25600 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-43.5 + parent: 1 + type: Transform + - links: + - 25666 + type: DeviceLinkSink + - uid: 25601 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-32.5 + parent: 1 + type: Transform + - links: + - 25667 + - 25668 + type: DeviceLinkSink + - uid: 25607 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-36.5 + parent: 1 + type: Transform + - links: + - 25668 + - 25667 + type: DeviceLinkSink + - uid: 25608 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-37.5 + parent: 1 + type: Transform + - links: + - 25668 + - 25667 + type: DeviceLinkSink +- proto: CrateArtifactContainer + entities: + - uid: 3871 + components: + - pos: 4.5,39.5 + parent: 1 + type: Transform + - uid: 6244 + components: + - pos: -40.5,-23.5 + parent: 1 + type: Transform +- proto: CrateBaseWeldable + entities: + - uid: 12295 + components: + - pos: -27.5,-37.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 98.0039 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12299 + - 12298 + - 12296 + - 10326 + - 12297 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: CrateEmptySpawner + entities: + - uid: 449 + components: + - pos: -44.5,-23.5 + parent: 1 + type: Transform + - uid: 1320 + components: + - pos: 48.5,-29.5 + parent: 1 + type: Transform + - uid: 1596 + components: + - pos: 47.5,15.5 + parent: 1 + type: Transform + - uid: 3132 + components: + - pos: -24.5,15.5 + parent: 1 + type: Transform + - uid: 6843 + components: + - pos: -52.5,-25.5 + parent: 1 + type: Transform + - uid: 8388 + components: + - pos: 55.5,25.5 + parent: 1 + type: Transform + - uid: 8996 + components: + - pos: 42.5,38.5 + parent: 1 + type: Transform + - uid: 9147 + components: + - pos: 40.5,36.5 + parent: 1 + type: Transform + - uid: 12428 + components: + - pos: -13.5,-7.5 + parent: 1 + type: Transform + - uid: 12429 + components: + - pos: -13.5,-8.5 + parent: 1 + type: Transform + - uid: 12430 + components: + - pos: -14.5,-7.5 + parent: 1 + type: Transform + - uid: 15762 + components: + - pos: -46.5,-6.5 + parent: 1 + type: Transform + - uid: 15766 + components: + - pos: -16.5,-39.5 + parent: 1 + type: Transform + - uid: 15767 + components: + - pos: -16.5,-37.5 + parent: 1 + type: Transform + - uid: 15768 + components: + - pos: -16.5,-36.5 + parent: 1 + type: Transform + - uid: 15790 + components: + - pos: -68.5,3.5 + parent: 1 + type: Transform + - uid: 15828 + components: + - pos: -57.5,13.5 + parent: 1 + type: Transform + - uid: 15860 + components: + - pos: -12.5,26.5 + parent: 1 + type: Transform + - uid: 16007 + components: + - pos: 47.5,16.5 + parent: 1 + type: Transform + - uid: 16008 + components: + - pos: 48.5,15.5 + parent: 1 + type: Transform + - uid: 16222 + components: + - pos: 54.5,-29.5 + parent: 1 + type: Transform + - uid: 16223 + components: + - pos: 53.5,-30.5 + parent: 1 + type: Transform + - uid: 16224 + components: + - pos: 61.5,-30.5 + parent: 1 + type: Transform + - uid: 16225 + components: + - pos: 62.5,-30.5 + parent: 1 + type: Transform + - uid: 16226 + components: + - pos: 62.5,-29.5 + parent: 1 + type: Transform + - uid: 22748 + components: + - pos: -30.5,37.5 + parent: 1 + type: Transform + - uid: 22749 + components: + - pos: -29.5,37.5 + parent: 1 + type: Transform + - uid: 23482 + components: + - pos: -3.5,30.5 + parent: 1 + type: Transform +- proto: CrateEngineeringAMEJar + entities: + - uid: 6393 + components: + - pos: -45.5,-14.5 + parent: 1 + type: Transform +- proto: CrateEngineeringAMEShielding + entities: + - uid: 6391 + components: + - pos: -47.5,-14.5 + parent: 1 + type: Transform + - uid: 6392 + components: + - pos: -46.5,-14.5 + parent: 1 + type: Transform +- proto: CrateEngineeringCableBulk + entities: + - uid: 6394 + components: + - pos: -44.5,-18.5 + parent: 1 + type: Transform + - uid: 11962 + components: + - pos: -45.5,40.5 + parent: 1 + type: Transform +- proto: CrateEngineeringCableHV + entities: + - uid: 24575 + components: + - pos: -98.5,10.5 + parent: 1 + type: Transform +- proto: CrateEngineeringCableMV + entities: + - uid: 24573 + components: + - pos: -97.5,10.5 + parent: 1 + type: Transform +- proto: CrateEngineeringMiniJetpack + entities: + - uid: 6759 + components: + - pos: -40.5,-39.5 + parent: 1 + type: Transform + - uid: 8485 + components: + - pos: -40.5,-38.5 + parent: 1 + type: Transform +- proto: CrateEngineeringSingularityCollector + entities: + - uid: 24536 + components: + - pos: -74.5,8.5 + parent: 1 + type: Transform + - uid: 24537 + components: + - pos: -75.5,8.5 + parent: 1 + type: Transform +- proto: CrateEngineeringSingularityContainment + entities: + - uid: 24530 + components: + - pos: -72.5,8.5 + parent: 1 + type: Transform + - uid: 24531 + components: + - pos: -71.5,8.5 + parent: 1 + type: Transform + - uid: 24532 + components: + - pos: -70.5,8.5 + parent: 1 + type: Transform +- proto: CrateEngineeringSingularityEmitter + entities: + - uid: 24524 + components: + - pos: -72.5,9.5 + parent: 1 + type: Transform + - uid: 24525 + components: + - pos: -71.5,9.5 + parent: 1 + type: Transform + - uid: 24526 + components: + - pos: -70.5,9.5 + parent: 1 + type: Transform +- proto: CrateEngineeringSolar + entities: + - uid: 11959 + components: + - pos: -48.5,40.5 + parent: 1 + type: Transform + - uid: 11960 + components: + - pos: -47.5,40.5 + parent: 1 + type: Transform + - uid: 11961 + components: + - pos: -46.5,40.5 + parent: 1 + type: Transform +- proto: CrateFilledSpawner + entities: + - uid: 325 + components: + - pos: -50.5,-25.5 + parent: 1 + type: Transform + - uid: 1967 + components: + - pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 1968 + components: + - pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 2764 + components: + - pos: 49.5,-29.5 + parent: 1 + type: Transform + - uid: 6842 + components: + - pos: -53.5,-25.5 + parent: 1 + type: Transform + - uid: 8037 + components: + - pos: 56.5,25.5 + parent: 1 + type: Transform + - uid: 11194 + components: + - pos: -22.5,18.5 + parent: 1 + type: Transform + - uid: 12419 + components: + - pos: 36.5,-40.5 + parent: 1 + type: Transform + - uid: 15791 + components: + - pos: -68.5,4.5 + parent: 1 + type: Transform + - uid: 16227 + components: + - pos: 54.5,-30.5 + parent: 1 + type: Transform + - uid: 23466 + components: + - pos: -17.5,38.5 + parent: 1 + type: Transform + - uid: 24767 + components: + - pos: -61.5,-18.5 + parent: 1 + type: Transform +- proto: CrateFunParty + entities: + - uid: 6965 + components: + - pos: 27.5,-15.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14972 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7225 + - 7224 + - 7223 + - 7222 + - 7220 + - 7219 + - 7218 + - 7217 + - 7216 + - 7211 + - 7212 + - 7213 + - 7214 + - 7215 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: CrateHydroponicsSeeds + entities: + - uid: 23833 + components: + - pos: 78.5,25.5 + parent: 1 + type: Transform +- proto: CrateHydroSecure + entities: + - uid: 1197 + components: + - pos: -3.7341886,15.501994 + parent: 1 + type: Transform +- proto: CrateLivestock + entities: + - uid: 16790 + components: + - pos: 30.5,1.5 + parent: 1 + type: Transform + - uid: 22585 + components: + - pos: 39.5,-45.5 + parent: 1 + type: Transform +- proto: CrateMaterialCardboard + entities: + - uid: 15997 + components: + - pos: -9.5,-18.5 + parent: 1 + type: Transform +- proto: CrateMaterialGlass + entities: + - uid: 1969 + components: + - pos: -5.3124166,-6.644224 + parent: 1 + type: Transform +- proto: CrateMaterialPlasteel + entities: + - uid: 1971 + components: + - pos: -5.285333,-8.270353 + parent: 1 + type: Transform + - open: True + removedMasks: 20 + type: EntityStorage + - isPlaceable: True + type: PlaceableSurface +- proto: CrateMaterialPlastic + entities: + - uid: 1972 + components: + - pos: -5.271792,-9.029214 + parent: 1 + type: Transform +- proto: CrateMaterialSteel + entities: + - uid: 1970 + components: + - pos: -5.298875,-7.4572887 + parent: 1 + type: Transform +- proto: CrateMedicalSurgery + entities: + - uid: 7661 + components: + - pos: 83.5,-4.5 + parent: 1 + type: Transform +- proto: CrateNPCChicken + entities: + - uid: 1184 + components: + - pos: -0.5,17.5 + parent: 1 + type: Transform + - open: True + removedMasks: 28 + type: EntityStorage + - isPlaceable: True + type: PlaceableSurface +- proto: CrateNPCDuck + entities: + - uid: 16062 + components: + - pos: -17.5,47.5 + parent: 1 + type: Transform + - air: + volume: 800 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + open: True + removedMasks: 28 + type: EntityStorage + - isPlaceable: True + type: PlaceableSurface +- proto: CrateNPCGoat + entities: + - uid: 9330 + components: + - pos: -45.5,-23.5 + parent: 1 + type: Transform +- proto: CrateNPCHamster + entities: + - uid: 7306 + components: + - pos: 26.5,39.5 + parent: 1 + type: Transform +- proto: CrateNPCMouse + entities: + - uid: 4677 + components: + - pos: 3.5,39.5 + parent: 1 + type: Transform +- proto: CratePrivateSecure + entities: + - uid: 21475 + components: + - pos: 114.5,0.5 + parent: 1 + type: Transform +- proto: CrateSecgear + entities: + - uid: 7351 + components: + - pos: 84.5,16.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7354 + - 7352 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: CrateSecurityRiot + entities: + - uid: 4906 + components: + - pos: 81.5,16.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5507 + - 4898 + - 4896 + - 4897 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 4909 + components: + - pos: 81.5,15.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5729 + - 5728 + - 5731 + - 6151 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: CrateServiceBureaucracy + entities: + - uid: 16444 + components: + - pos: 49.5,41.5 + parent: 1 + type: Transform +- proto: CrateServiceSmokeables + entities: + - uid: 16074 + components: + - pos: 41.5,44.5 + parent: 1 + type: Transform +- proto: CrateSlimepersonLifeSupport + entities: + - uid: 20996 + components: + - pos: -0.5,-9.5 + parent: 1 + type: Transform +- proto: CrateTrainingBombs + entities: + - uid: 25232 + components: + - pos: 113.5,27.5 + parent: 1 + type: Transform +- proto: CrayonWhite + entities: + - uid: 19576 + components: + - rot: -1.5707963267948966 rad + pos: 72.35361,15.458786 + parent: 1 + type: Transform + - uid: 19577 + components: + - rot: -1.5707963267948966 rad + pos: 66.250114,12.014392 + parent: 1 + type: Transform + - uid: 19600 + components: + - rot: -1.5707963267948966 rad + pos: 66.27095,12.087359 + parent: 1 + type: Transform +- proto: Crematorium + entities: + - uid: 7450 + components: + - pos: 12.5,50.5 + parent: 1 + type: Transform +- proto: CrewMonitoringServer + entities: + - uid: 6 + components: + - pos: 130.5,7.5 + parent: 1 + type: Transform +- proto: Crowbar + entities: + - uid: 2132 + components: + - pos: -18.457457,-4.661525 + parent: 1 + type: Transform + - uid: 2890 + components: + - flags: InContainer + type: MetaData + - parent: 2884 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 3580 + components: + - pos: -18.497072,7.5828466 + parent: 1 + type: Transform + - uid: 7296 + components: + - rot: -1.5707963267948966 rad + pos: 17.395557,39.488533 + parent: 1 + type: Transform + - uid: 22742 + components: + - pos: -12.739433,36.82119 + parent: 1 + type: Transform +- proto: CrowbarRed + entities: + - uid: 4354 + components: + - rot: -1.5707963267948966 rad + pos: 15.435859,-18.439838 + parent: 1 + type: Transform + - uid: 10018 + components: + - rot: 3.141592653589793 rad + pos: 111.520966,-1.4506578 + parent: 1 + type: Transform + - uid: 11190 + components: + - pos: -20.55653,14.494629 + parent: 1 + type: Transform + - uid: 16233 + components: + - pos: 65.48392,-30.52994 + parent: 1 + type: Transform + - uid: 21001 + components: + - pos: -4.3650126,-4.4584904 + parent: 1 + type: Transform + - uid: 25614 + components: + - pos: -40.451847,-34.446968 + parent: 1 + type: Transform +- proto: d6Dice + entities: + - uid: 3330 + components: + - pos: 42.767788,15.924419 + parent: 1 + type: Transform + - uid: 3331 + components: + - pos: 42.934456,15.528311 + parent: 1 + type: Transform + - uid: 3332 + components: + - pos: 42.288624,15.82018 + parent: 1 + type: Transform + - uid: 3333 + components: + - pos: 41.965706,15.549158 + parent: 1 + type: Transform + - uid: 5488 + components: + - pos: 88.66026,24.71796 + parent: 1 + type: Transform + - uid: 5489 + components: + - pos: 89.608185,24.801352 + parent: 1 + type: Transform + - uid: 6360 + components: + - pos: -39.266365,10.351966 + parent: 1 + type: Transform + - uid: 6361 + components: + - pos: -38.953865,9.799499 + parent: 1 + type: Transform + - uid: 6362 + components: + - pos: -38.46428,9.872466 + parent: 1 + type: Transform + - uid: 6363 + components: + - pos: -38.33928,10.424933 + parent: 1 + type: Transform + - uid: 6364 + components: + - pos: -38.703865,10.247726 + parent: 1 + type: Transform + - uid: 6766 + components: + - pos: -58.191612,-28.305902 + parent: 1 + type: Transform + - uid: 6779 + components: + - pos: -58.597862,-27.513685 + parent: 1 + type: Transform + - uid: 10705 + components: + - pos: -57.389526,-27.638771 + parent: 1 + type: Transform + - uid: 11237 + components: + - pos: 42.465706,15.559583 + parent: 1 + type: Transform + - uid: 13218 + components: + - pos: 52.354652,35.34973 + parent: 1 + type: Transform + - uid: 13219 + components: + - pos: 52.74007,35.23507 + parent: 1 + type: Transform + - uid: 13220 + components: + - pos: 52.49007,34.922356 + parent: 1 + type: Transform + - uid: 13221 + components: + - pos: 52.43799,34.745148 + parent: 1 + type: Transform + - uid: 13222 + components: + - pos: 52.68799,34.786842 + parent: 1 + type: Transform +- proto: DefibrillatorCabinetFilled + entities: + - uid: 16290 + components: + - pos: 105.5,5.5 + parent: 1 + type: Transform + - uid: 16291 + components: + - rot: 1.5707963267948966 rad + pos: 62.5,-11.5 + parent: 1 + type: Transform + - uid: 16292 + components: + - pos: 85.5,-1.5 + parent: 1 + type: Transform + - uid: 16293 + components: + - pos: -20.5,13.5 + parent: 1 + type: Transform +- proto: DeployableBarrier + entities: + - uid: 5121 + components: + - pos: -24.5,-4.5 + parent: 1 + type: Transform + - uid: 5123 + components: + - pos: -23.5,-4.5 + parent: 1 + type: Transform + - uid: 9306 + components: + - pos: 72.5,22.5 + parent: 1 + type: Transform + - uid: 9307 + components: + - pos: 73.5,22.5 + parent: 1 + type: Transform + - uid: 9308 + components: + - pos: 74.5,22.5 + parent: 1 + type: Transform + - uid: 13804 + components: + - pos: 98.5,10.5 + parent: 1 + type: Transform + - uid: 14246 + components: + - pos: 97.5,10.5 + parent: 1 + type: Transform +- proto: DeskBell + entities: + - uid: 1269 + components: + - pos: 7.670581,13.675118 + parent: 1 + type: Transform + - uid: 7151 + components: + - pos: 67.236015,9.534699 + parent: 1 + type: Transform + - uid: 7152 + components: + - pos: 73.10378,-3.2228105 + parent: 1 + type: Transform + - uid: 7153 + components: + - pos: 66.54145,-1.4715943 + parent: 1 + type: Transform + - uid: 7154 + components: + - pos: 6.4114294,-4.265932 + parent: 1 + type: Transform + - uid: 7156 + components: + - pos: -6.6258693,-1.4836473 + parent: 1 + type: Transform + - uid: 7157 + components: + - pos: -16.334679,1.4565945 + parent: 1 + type: Transform + - uid: 7158 + components: + - pos: -39.527584,4.500375 + parent: 1 + type: Transform + - uid: 7159 + components: + - pos: 7.3773623,43.71482 + parent: 1 + type: Transform + - uid: 16551 + components: + - pos: 52.299816,38.762085 + parent: 1 + type: Transform +- proto: DiceBag + entities: + - uid: 1956 + components: + - pos: 6.225316,-15.142026 + parent: 1 + type: Transform + - uid: 16788 + components: + - rot: -1.5707963267948966 rad + pos: -24.554785,42.63185 + parent: 1 + type: Transform +- proto: DiseaseDiagnoser + entities: + - uid: 7702 + components: + - pos: 92.5,-9.5 + parent: 1 + type: Transform +- proto: DiseaseSwab + entities: + - uid: 7297 + components: + - rot: -1.5707963267948966 rad + pos: 20.82264,39.676163 + parent: 1 + type: Transform + - uid: 7298 + components: + - rot: -1.5707963267948966 rad + pos: 20.864307,39.530228 + parent: 1 + type: Transform +- proto: DisposalBend + entities: + - uid: 1275 + components: + - pos: -9.5,19.5 + parent: 1 + type: Transform + - uid: 1277 + components: + - rot: 3.141592653589793 rad + pos: -11.5,19.5 + parent: 1 + type: Transform + - uid: 1979 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,1.5 + parent: 1 + type: Transform + - uid: 4728 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 1 + type: Transform + - uid: 4729 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-11.5 + parent: 1 + type: Transform + - uid: 5054 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 1 + type: Transform + - uid: 5773 + components: + - pos: 76.5,-11.5 + parent: 1 + type: Transform + - uid: 5781 + components: + - rot: 3.141592653589793 rad + pos: 72.5,-15.5 + parent: 1 + type: Transform + - uid: 5783 + components: + - pos: 75.5,-15.5 + parent: 1 + type: Transform + - uid: 10023 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-46.5 + parent: 1 + type: Transform + - uid: 10046 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,11.5 + parent: 1 + type: Transform + - uid: 10114 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,14.5 + parent: 1 + type: Transform + - uid: 10115 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,14.5 + parent: 1 + type: Transform + - uid: 10143 + components: + - rot: 1.5707963267948966 rad + pos: 104.5,8.5 + parent: 1 + type: Transform + - uid: 10144 + components: + - pos: 111.5,4.5 + parent: 1 + type: Transform + - uid: 10192 + components: + - pos: 83.5,29.5 + parent: 1 + type: Transform + - uid: 10193 + components: + - rot: -1.5707963267948966 rad + pos: 83.5,28.5 + parent: 1 + type: Transform + - uid: 10194 + components: + - rot: 1.5707963267948966 rad + pos: 72.5,28.5 + parent: 1 + type: Transform + - uid: 10195 + components: + - rot: 3.141592653589793 rad + pos: 72.5,27.5 + parent: 1 + type: Transform + - uid: 10196 + components: + - pos: 83.5,27.5 + parent: 1 + type: Transform + - uid: 10197 + components: + - rot: -1.5707963267948966 rad + pos: 83.5,26.5 + parent: 1 + type: Transform + - uid: 10198 + components: + - rot: 1.5707963267948966 rad + pos: 72.5,26.5 + parent: 1 + type: Transform + - uid: 10199 + components: + - rot: 3.141592653589793 rad + pos: 72.5,25.5 + parent: 1 + type: Transform + - uid: 10200 + components: + - pos: 83.5,25.5 + parent: 1 + type: Transform + - uid: 10201 + components: + - rot: -1.5707963267948966 rad + pos: 83.5,24.5 + parent: 1 + type: Transform + - uid: 10202 + components: + - rot: 3.141592653589793 rad + pos: 71.5,24.5 + parent: 1 + type: Transform + - uid: 10203 + components: + - pos: 71.5,27.5 + parent: 1 + type: Transform + - uid: 10204 + components: + - rot: 1.5707963267948966 rad + pos: 70.5,27.5 + parent: 1 + type: Transform + - uid: 10205 + components: + - rot: -1.5707963267948966 rad + pos: 70.5,24.5 + parent: 1 + type: Transform + - uid: 10206 + components: + - rot: 3.141592653589793 rad + pos: 69.5,24.5 + parent: 1 + type: Transform + - uid: 10207 + components: + - pos: 69.5,27.5 + parent: 1 + type: Transform + - uid: 10208 + components: + - rot: 1.5707963267948966 rad + pos: 63.5,27.5 + parent: 1 + type: Transform + - uid: 10209 + components: + - rot: 3.141592653589793 rad + pos: 63.5,26.5 + parent: 1 + type: Transform + - uid: 10210 + components: + - rot: -1.5707963267948966 rad + pos: 64.5,26.5 + parent: 1 + type: Transform + - uid: 10306 + components: + - rot: 1.5707963267948966 rad + pos: 64.5,31.5 + parent: 1 + type: Transform + - uid: 10320 + components: + - rot: 1.5707963267948966 rad + pos: 70.5,14.5 + parent: 1 + type: Transform + - uid: 10343 + components: + - rot: 3.141592653589793 rad + pos: 66.5,-14.5 + parent: 1 + type: Transform + - uid: 10345 + components: + - rot: -1.5707963267948966 rad + pos: 78.5,-14.5 + parent: 1 + type: Transform + - uid: 10346 + components: + - rot: 1.5707963267948966 rad + pos: 85.5,-4.5 + parent: 1 + type: Transform + - uid: 10347 + components: + - rot: -1.5707963267948966 rad + pos: 85.5,-15.5 + parent: 1 + type: Transform + - uid: 10348 + components: + - rot: 3.141592653589793 rad + pos: 76.5,-15.5 + parent: 1 + type: Transform + - uid: 10353 + components: + - rot: 3.141592653589793 rad + pos: 63.5,-6.5 + parent: 1 + type: Transform + - uid: 10354 + components: + - pos: 64.5,-6.5 + parent: 1 + type: Transform + - uid: 10416 + components: + - rot: 1.5707963267948966 rad + pos: 56.5,5.5 + parent: 1 + type: Transform + - uid: 10443 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,4.5 + parent: 1 + type: Transform + - uid: 10457 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-10.5 + parent: 1 + type: Transform + - uid: 10459 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-10.5 + parent: 1 + type: Transform + - uid: 10460 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-6.5 + parent: 1 + type: Transform + - uid: 10461 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-11.5 + parent: 1 + type: Transform + - uid: 10568 + components: + - pos: 24.5,41.5 + parent: 1 + type: Transform + - uid: 10569 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,44.5 + parent: 1 + type: Transform + - uid: 10571 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,43.5 + parent: 1 + type: Transform + - uid: 10573 + components: + - pos: 10.5,44.5 + parent: 1 + type: Transform + - uid: 10574 + components: + - rot: 3.141592653589793 rad + pos: 10.5,42.5 + parent: 1 + type: Transform + - uid: 10598 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 10600 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-0.5 + parent: 1 + type: Transform + - uid: 10724 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,22.5 + parent: 1 + type: Transform + - uid: 10730 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,20.5 + parent: 1 + type: Transform + - uid: 10731 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,20.5 + parent: 1 + type: Transform + - uid: 10752 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,0.5 + parent: 1 + type: Transform + - uid: 10754 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,3.5 + parent: 1 + type: Transform + - uid: 10755 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,1.5 + parent: 1 + type: Transform + - uid: 12014 + components: + - pos: -38.5,-21.5 + parent: 1 + type: Transform + - uid: 12043 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-21.5 + parent: 1 + type: Transform + - uid: 12101 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-28.5 + parent: 1 + type: Transform + - uid: 12102 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-25.5 + parent: 1 + type: Transform + - uid: 12106 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-25.5 + parent: 1 + type: Transform + - uid: 12549 + components: + - rot: 3.141592653589793 rad + pos: -51.5,-28.5 + parent: 1 + type: Transform + - uid: 12557 + components: + - pos: -51.5,-27.5 + parent: 1 + type: Transform + - uid: 12729 + components: + - pos: -4.5,12.5 + parent: 1 + type: Transform + - uid: 14376 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-20.5 + parent: 1 + type: Transform + - uid: 18159 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-35.5 + parent: 1 + type: Transform + - uid: 18160 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-37.5 + parent: 1 + type: Transform + - uid: 18161 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-37.5 + parent: 1 + type: Transform + - uid: 18162 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-36.5 + parent: 1 + type: Transform + - uid: 18163 + components: + - pos: 25.5,-36.5 + parent: 1 + type: Transform + - uid: 18164 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-37.5 + parent: 1 + type: Transform + - uid: 18165 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-37.5 + parent: 1 + type: Transform + - uid: 18166 + components: + - pos: 26.5,-35.5 + parent: 1 + type: Transform + - uid: 18167 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-35.5 + parent: 1 + type: Transform + - uid: 18168 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-33.5 + parent: 1 + type: Transform + - uid: 18169 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-33.5 + parent: 1 + type: Transform + - uid: 18170 + components: + - pos: 26.5,-32.5 + parent: 1 + type: Transform + - uid: 18171 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-32.5 + parent: 1 + type: Transform + - uid: 18185 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-33.5 + parent: 1 + type: Transform + - uid: 18186 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-33.5 + parent: 1 + type: Transform + - uid: 19603 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,23.5 + parent: 1 + type: Transform + - uid: 19604 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,23.5 + parent: 1 + type: Transform + - uid: 19607 + components: + - rot: 3.141592653589793 rad + pos: 7.5,21.5 + parent: 1 + type: Transform + - uid: 21595 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,-20.5 + parent: 1 + type: Transform + - uid: 21596 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,2.5 + parent: 1 + type: Transform + - uid: 21659 + components: + - pos: 9.5,42.5 + parent: 1 + type: Transform + - uid: 21660 + components: + - rot: 3.141592653589793 rad + pos: 9.5,41.5 + parent: 1 + type: Transform + - uid: 21661 + components: + - pos: 11.5,41.5 + parent: 1 + type: Transform + - uid: 21697 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-46.5 + parent: 1 + type: Transform + - uid: 21753 + components: + - pos: 39.5,-20.5 + parent: 1 + type: Transform + - uid: 21759 + components: + - pos: 49.5,-22.5 + parent: 1 + type: Transform + - uid: 21760 + components: + - rot: -1.5707963267948966 rad + pos: 52.5,-24.5 + parent: 1 + type: Transform + - uid: 21761 + components: + - rot: -1.5707963267948966 rad + pos: 54.5,-22.5 + parent: 1 + type: Transform + - uid: 21762 + components: + - rot: -1.5707963267948966 rad + pos: 56.5,-20.5 + parent: 1 + type: Transform + - uid: 21763 + components: + - rot: 1.5707963267948966 rad + pos: 53.5,-22.5 + parent: 1 + type: Transform + - uid: 21764 + components: + - rot: 1.5707963267948966 rad + pos: 55.5,-20.5 + parent: 1 + type: Transform + - uid: 21765 + components: + - rot: 3.141592653589793 rad + pos: 49.5,-24.5 + parent: 1 + type: Transform + - uid: 21766 + components: + - rot: -1.5707963267948966 rad + pos: 53.5,-23.5 + parent: 1 + type: Transform + - uid: 21767 + components: + - rot: -1.5707963267948966 rad + pos: 55.5,-21.5 + parent: 1 + type: Transform + - uid: 21768 + components: + - rot: 1.5707963267948966 rad + pos: 52.5,-23.5 + parent: 1 + type: Transform + - uid: 21769 + components: + - rot: 1.5707963267948966 rad + pos: 54.5,-21.5 + parent: 1 + type: Transform + - uid: 21770 + components: + - rot: 1.5707963267948966 rad + pos: 56.5,-19.5 + parent: 1 + type: Transform + - uid: 21771 + components: + - rot: -1.5707963267948966 rad + pos: 75.5,-19.5 + parent: 1 + type: Transform + - uid: 21800 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-22.5 + parent: 1 + type: Transform + - uid: 21801 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-23.5 + parent: 1 + type: Transform + - uid: 21802 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-23.5 + parent: 1 + type: Transform + - uid: 21836 + components: + - rot: -1.5707963267948966 rad + pos: 109.5,3.5 + parent: 1 + type: Transform + - uid: 21910 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,3.5 + parent: 1 + type: Transform + - uid: 21962 + components: + - pos: 12.5,10.5 + parent: 1 + type: Transform + - uid: 21963 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,12.5 + parent: 1 + type: Transform + - uid: 21964 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,12.5 + parent: 1 + type: Transform + - uid: 21965 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 21979 + components: + - rot: 3.141592653589793 rad + pos: -9.5,16.5 + parent: 1 + type: Transform + - uid: 21980 + components: + - rot: 3.141592653589793 rad + pos: -8.5,15.5 + parent: 1 + type: Transform + - uid: 21981 + components: + - rot: 3.141592653589793 rad + pos: -7.5,14.5 + parent: 1 + type: Transform + - uid: 21982 + components: + - rot: 3.141592653589793 rad + pos: -6.5,13.5 + parent: 1 + type: Transform + - uid: 21983 + components: + - rot: 3.141592653589793 rad + pos: -5.5,12.5 + parent: 1 + type: Transform + - uid: 21985 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - uid: 21986 + components: + - pos: -6.5,14.5 + parent: 1 + type: Transform + - uid: 21987 + components: + - pos: -7.5,15.5 + parent: 1 + type: Transform + - uid: 21988 + components: + - pos: -8.5,16.5 + parent: 1 + type: Transform + - uid: 21993 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 23953 + components: + - rot: 1.5707963267948966 rad + pos: 99.5,5.5 + parent: 1 + type: Transform + - uid: 23954 + components: + - pos: 101.5,5.5 + parent: 1 + type: Transform + - uid: 23956 + components: + - rot: 1.5707963267948966 rad + pos: 69.5,8.5 + parent: 1 + type: Transform + - uid: 23957 + components: + - rot: 3.141592653589793 rad + pos: 69.5,7.5 + parent: 1 + type: Transform + - uid: 23980 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,11.5 + parent: 1 + type: Transform + - uid: 23981 + components: + - pos: 31.5,16.5 + parent: 1 + type: Transform + - uid: 23994 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,19.5 + parent: 1 + type: Transform + - uid: 23995 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,19.5 + parent: 1 + type: Transform + - uid: 24225 + components: + - pos: 13.5,17.5 + parent: 1 + type: Transform + - uid: 24282 + components: + - pos: -4.5,20.5 + parent: 1 + type: Transform + - uid: 24283 + components: + - rot: 3.141592653589793 rad + pos: -4.5,17.5 + parent: 1 + type: Transform +- proto: DisposalJunction + entities: + - uid: 2691 + components: + - rot: -1.5707963267948966 rad + pos: 99.5,4.5 + parent: 1 + type: Transform + - uid: 2778 + components: + - pos: 70.5,7.5 + parent: 1 + type: Transform + - uid: 2956 + components: + - pos: 11.5,14.5 + parent: 1 + type: Transform + - uid: 10039 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-35.5 + parent: 1 + type: Transform + - uid: 10142 + components: + - rot: -1.5707963267948966 rad + pos: 104.5,4.5 + parent: 1 + type: Transform + - uid: 10321 + components: + - rot: -1.5707963267948966 rad + pos: 70.5,4.5 + parent: 1 + type: Transform + - uid: 10351 + components: + - rot: 3.141592653589793 rad + pos: 64.5,-11.5 + parent: 1 + type: Transform + - uid: 10417 + components: + - rot: -1.5707963267948966 rad + pos: 56.5,4.5 + parent: 1 + type: Transform + - uid: 10531 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-3.5 + parent: 1 + type: Transform + - uid: 10572 + components: + - pos: 12.5,42.5 + parent: 1 + type: Transform + - uid: 10633 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,11.5 + parent: 1 + type: Transform + - uid: 10634 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,11.5 + parent: 1 + type: Transform + - uid: 10704 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,3.5 + parent: 1 + type: Transform + - uid: 12851 + components: + - pos: 12.5,21.5 + parent: 1 + type: Transform + - uid: 21945 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-2.5 + parent: 1 + type: Transform + - uid: 21966 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,10.5 + parent: 1 + type: Transform + - uid: 21994 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + type: Transform +- proto: DisposalJunctionFlipped + entities: + - uid: 2696 + components: + - rot: 3.141592653589793 rad + pos: 11.5,1.5 + parent: 1 + type: Transform + - uid: 5762 + components: + - rot: -1.5707963267948966 rad + pos: 66.5,-11.5 + parent: 1 + type: Transform + - uid: 8578 + components: + - pos: -3.5,10.5 + parent: 1 + type: Transform + - uid: 10099 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-27.5 + parent: 1 + type: Transform + - uid: 10349 + components: + - rot: -1.5707963267948966 rad + pos: 76.5,-14.5 + parent: 1 + type: Transform + - uid: 10352 + components: + - rot: -1.5707963267948966 rad + pos: 63.5,4.5 + parent: 1 + type: Transform + - uid: 10442 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,4.5 + parent: 1 + type: Transform + - uid: 10471 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-3.5 + parent: 1 + type: Transform + - uid: 10472 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-3.5 + parent: 1 + type: Transform + - uid: 10530 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 1 + type: Transform + - uid: 10583 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,41.5 + parent: 1 + type: Transform + - uid: 10585 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,3.5 + parent: 1 + type: Transform + - uid: 10586 + components: + - pos: 12.5,41.5 + parent: 1 + type: Transform + - uid: 10599 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,3.5 + parent: 1 + type: Transform + - uid: 10621 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,11.5 + parent: 1 + type: Transform + - uid: 10743 + components: + - pos: -50.5,8.5 + parent: 1 + type: Transform + - uid: 21598 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,2.5 + parent: 1 + type: Transform + - uid: 21891 + components: + - rot: -1.5707963267948966 rad + pos: 58.5,3.5 + parent: 1 + type: Transform + - uid: 23973 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,16.5 + parent: 1 + type: Transform + - uid: 23979 + components: + - pos: 28.5,16.5 + parent: 1 + type: Transform +- proto: DisposalMachineFrame + entities: + - uid: 15943 + components: + - pos: 15.5,52.5 + parent: 1 + type: Transform + - uid: 16560 + components: + - pos: 59.5,38.5 + parent: 1 + type: Transform +- proto: DisposalPipe + entities: + - uid: 1811 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-21.5 + parent: 1 + type: Transform + - uid: 1864 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,-28.5 + parent: 1 + type: Transform + - uid: 1865 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,-28.5 + parent: 1 + type: Transform + - uid: 1878 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-28.5 + parent: 1 + type: Transform + - uid: 1896 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-28.5 + parent: 1 + type: Transform + - uid: 1898 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-27.5 + parent: 1 + type: Transform + - uid: 1901 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-26.5 + parent: 1 + type: Transform + - uid: 2908 + components: + - rot: 3.141592653589793 rad + pos: 11.5,0.5 + parent: 1 + type: Transform + - uid: 2968 + components: + - pos: 11.5,21.5 + parent: 1 + type: Transform + - uid: 5764 + components: + - pos: 72.5,-13.5 + parent: 1 + type: Transform + - uid: 5765 + components: + - rot: 1.5707963267948966 rad + pos: 70.5,-11.5 + parent: 1 + type: Transform + - uid: 5766 + components: + - rot: 1.5707963267948966 rad + pos: 69.5,-11.5 + parent: 1 + type: Transform + - uid: 5767 + components: + - rot: 1.5707963267948966 rad + pos: 68.5,-11.5 + parent: 1 + type: Transform + - uid: 5768 + components: + - rot: 1.5707963267948966 rad + pos: 67.5,-11.5 + parent: 1 + type: Transform + - uid: 5769 + components: + - rot: 3.141592653589793 rad + pos: 66.5,-12.5 + parent: 1 + type: Transform + - uid: 5771 + components: + - rot: 1.5707963267948966 rad + pos: 72.5,-11.5 + parent: 1 + type: Transform + - uid: 5772 + components: + - rot: 1.5707963267948966 rad + pos: 71.5,-11.5 + parent: 1 + type: Transform + - uid: 5777 + components: + - rot: 1.5707963267948966 rad + pos: 73.5,-11.5 + parent: 1 + type: Transform + - uid: 5778 + components: + - pos: 72.5,-14.5 + parent: 1 + type: Transform + - uid: 5780 + components: + - rot: 1.5707963267948966 rad + pos: 73.5,-15.5 + parent: 1 + type: Transform + - uid: 5782 + components: + - rot: 1.5707963267948966 rad + pos: 74.5,-15.5 + parent: 1 + type: Transform + - uid: 8468 + components: + - pos: 11.5,-38.5 + parent: 1 + type: Transform + - uid: 10045 + components: + - pos: 11.5,-41.5 + parent: 1 + type: Transform + - uid: 10070 + components: + - pos: 11.5,-45.5 + parent: 1 + type: Transform + - uid: 10071 + components: + - pos: 11.5,-44.5 + parent: 1 + type: Transform + - uid: 10072 + components: + - pos: 11.5,-43.5 + parent: 1 + type: Transform + - uid: 10073 + components: + - pos: 11.5,-42.5 + parent: 1 + type: Transform + - uid: 10074 + components: + - pos: 11.5,-40.5 + parent: 1 + type: Transform + - uid: 10075 + components: + - pos: 11.5,-39.5 + parent: 1 + type: Transform + - uid: 10076 + components: + - pos: 11.5,-37.5 + parent: 1 + type: Transform + - uid: 10077 + components: + - pos: 11.5,-36.5 + parent: 1 + type: Transform + - uid: 10089 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-35.5 + parent: 1 + type: Transform + - uid: 10090 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-34.5 + parent: 1 + type: Transform + - uid: 10091 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-33.5 + parent: 1 + type: Transform + - uid: 10092 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-32.5 + parent: 1 + type: Transform + - uid: 10093 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-31.5 + parent: 1 + type: Transform + - uid: 10094 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-30.5 + parent: 1 + type: Transform + - uid: 10095 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-29.5 + parent: 1 + type: Transform + - uid: 10096 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-28.5 + parent: 1 + type: Transform + - uid: 10100 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-26.5 + parent: 1 + type: Transform + - uid: 10101 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-25.5 + parent: 1 + type: Transform + - uid: 10102 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-24.5 + parent: 1 + type: Transform + - uid: 10103 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-23.5 + parent: 1 + type: Transform + - uid: 10104 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-22.5 + parent: 1 + type: Transform + - uid: 10105 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-21.5 + parent: 1 + type: Transform + - uid: 10106 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-20.5 + parent: 1 + type: Transform + - uid: 10107 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-19.5 + parent: 1 + type: Transform + - uid: 10108 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-18.5 + parent: 1 + type: Transform + - uid: 10109 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-17.5 + parent: 1 + type: Transform + - uid: 10110 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-16.5 + parent: 1 + type: Transform + - uid: 10111 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-15.5 + parent: 1 + type: Transform + - uid: 10112 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-14.5 + parent: 1 + type: Transform + - uid: 10116 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,14.5 + parent: 1 + type: Transform + - uid: 10117 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,14.5 + parent: 1 + type: Transform + - uid: 10118 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,14.5 + parent: 1 + type: Transform + - uid: 10119 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,14.5 + parent: 1 + type: Transform + - uid: 10120 + components: + - pos: -26.5,13.5 + parent: 1 + type: Transform + - uid: 10121 + components: + - pos: -26.5,12.5 + parent: 1 + type: Transform + - uid: 10122 + components: + - pos: -26.5,11.5 + parent: 1 + type: Transform + - uid: 10123 + components: + - pos: -26.5,10.5 + parent: 1 + type: Transform + - uid: 10124 + components: + - pos: -26.5,9.5 + parent: 1 + type: Transform + - uid: 10125 + components: + - pos: -26.5,8.5 + parent: 1 + type: Transform + - uid: 10126 + components: + - pos: -26.5,7.5 + parent: 1 + type: Transform + - uid: 10127 + components: + - pos: -26.5,6.5 + parent: 1 + type: Transform + - uid: 10128 + components: + - pos: -26.5,5.5 + parent: 1 + type: Transform + - uid: 10129 + components: + - pos: -26.5,4.5 + parent: 1 + type: Transform + - uid: 10145 + components: + - rot: 3.141592653589793 rad + pos: 111.5,2.5 + parent: 1 + type: Transform + - uid: 10146 + components: + - rot: 3.141592653589793 rad + pos: 111.5,3.5 + parent: 1 + type: Transform + - uid: 10147 + components: + - rot: 1.5707963267948966 rad + pos: 110.5,4.5 + parent: 1 + type: Transform + - uid: 10148 + components: + - rot: 1.5707963267948966 rad + pos: 109.5,4.5 + parent: 1 + type: Transform + - uid: 10149 + components: + - rot: 1.5707963267948966 rad + pos: 108.5,4.5 + parent: 1 + type: Transform + - uid: 10150 + components: + - rot: 1.5707963267948966 rad + pos: 107.5,4.5 + parent: 1 + type: Transform + - uid: 10151 + components: + - rot: 1.5707963267948966 rad + pos: 106.5,4.5 + parent: 1 + type: Transform + - uid: 10152 + components: + - rot: 1.5707963267948966 rad + pos: 105.5,4.5 + parent: 1 + type: Transform + - uid: 10153 + components: + - pos: 104.5,5.5 + parent: 1 + type: Transform + - uid: 10154 + components: + - pos: 104.5,6.5 + parent: 1 + type: Transform + - uid: 10155 + components: + - pos: 104.5,7.5 + parent: 1 + type: Transform + - uid: 10156 + components: + - rot: -1.5707963267948966 rad + pos: 105.5,8.5 + parent: 1 + type: Transform + - uid: 10157 + components: + - rot: -1.5707963267948966 rad + pos: 103.5,4.5 + parent: 1 + type: Transform + - uid: 10158 + components: + - rot: -1.5707963267948966 rad + pos: 102.5,4.5 + parent: 1 + type: Transform + - uid: 10160 + components: + - rot: -1.5707963267948966 rad + pos: 100.5,4.5 + parent: 1 + type: Transform + - uid: 10162 + components: + - rot: -1.5707963267948966 rad + pos: 98.5,4.5 + parent: 1 + type: Transform + - uid: 10163 + components: + - rot: -1.5707963267948966 rad + pos: 97.5,4.5 + parent: 1 + type: Transform + - uid: 10164 + components: + - rot: -1.5707963267948966 rad + pos: 96.5,4.5 + parent: 1 + type: Transform + - uid: 10165 + components: + - rot: -1.5707963267948966 rad + pos: 95.5,4.5 + parent: 1 + type: Transform + - uid: 10166 + components: + - rot: -1.5707963267948966 rad + pos: 94.5,4.5 + parent: 1 + type: Transform + - uid: 10167 + components: + - rot: -1.5707963267948966 rad + pos: 93.5,4.5 + parent: 1 + type: Transform + - uid: 10168 + components: + - rot: -1.5707963267948966 rad + pos: 92.5,4.5 + parent: 1 + type: Transform + - uid: 10169 + components: + - rot: -1.5707963267948966 rad + pos: 91.5,4.5 + parent: 1 + type: Transform + - uid: 10170 + components: + - rot: -1.5707963267948966 rad + pos: 90.5,4.5 + parent: 1 + type: Transform + - uid: 10171 + components: + - rot: -1.5707963267948966 rad + pos: 89.5,4.5 + parent: 1 + type: Transform + - uid: 10172 + components: + - rot: -1.5707963267948966 rad + pos: 88.5,4.5 + parent: 1 + type: Transform + - uid: 10173 + components: + - rot: -1.5707963267948966 rad + pos: 87.5,4.5 + parent: 1 + type: Transform + - uid: 10174 + components: + - rot: -1.5707963267948966 rad + pos: 86.5,4.5 + parent: 1 + type: Transform + - uid: 10175 + components: + - rot: -1.5707963267948966 rad + pos: 85.5,4.5 + parent: 1 + type: Transform + - uid: 10176 + components: + - rot: -1.5707963267948966 rad + pos: 84.5,4.5 + parent: 1 + type: Transform + - uid: 10177 + components: + - rot: -1.5707963267948966 rad + pos: 83.5,4.5 + parent: 1 + type: Transform + - uid: 10178 + components: + - rot: -1.5707963267948966 rad + pos: 82.5,4.5 + parent: 1 + type: Transform + - uid: 10179 + components: + - rot: -1.5707963267948966 rad + pos: 81.5,4.5 + parent: 1 + type: Transform + - uid: 10180 + components: + - rot: -1.5707963267948966 rad + pos: 80.5,4.5 + parent: 1 + type: Transform + - uid: 10181 + components: + - rot: -1.5707963267948966 rad + pos: 79.5,4.5 + parent: 1 + type: Transform + - uid: 10182 + components: + - rot: -1.5707963267948966 rad + pos: 78.5,4.5 + parent: 1 + type: Transform + - uid: 10183 + components: + - rot: -1.5707963267948966 rad + pos: 77.5,4.5 + parent: 1 + type: Transform + - uid: 10184 + components: + - rot: -1.5707963267948966 rad + pos: 76.5,4.5 + parent: 1 + type: Transform + - uid: 10185 + components: + - rot: -1.5707963267948966 rad + pos: 75.5,4.5 + parent: 1 + type: Transform + - uid: 10186 + components: + - rot: -1.5707963267948966 rad + pos: 74.5,4.5 + parent: 1 + type: Transform + - uid: 10187 + components: + - rot: -1.5707963267948966 rad + pos: 73.5,4.5 + parent: 1 + type: Transform + - uid: 10188 + components: + - rot: -1.5707963267948966 rad + pos: 72.5,4.5 + parent: 1 + type: Transform + - uid: 10189 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,4.5 + parent: 1 + type: Transform + - uid: 10211 + components: + - rot: -1.5707963267948966 rad + pos: 64.5,27.5 + parent: 1 + type: Transform + - uid: 10212 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,27.5 + parent: 1 + type: Transform + - uid: 10213 + components: + - rot: -1.5707963267948966 rad + pos: 66.5,27.5 + parent: 1 + type: Transform + - uid: 10214 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,27.5 + parent: 1 + type: Transform + - uid: 10215 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,27.5 + parent: 1 + type: Transform + - uid: 10216 + components: + - rot: 3.141592653589793 rad + pos: 69.5,26.5 + parent: 1 + type: Transform + - uid: 10217 + components: + - rot: 3.141592653589793 rad + pos: 69.5,25.5 + parent: 1 + type: Transform + - uid: 10218 + components: + - rot: 3.141592653589793 rad + pos: 70.5,25.5 + parent: 1 + type: Transform + - uid: 10219 + components: + - rot: 3.141592653589793 rad + pos: 70.5,26.5 + parent: 1 + type: Transform + - uid: 10220 + components: + - rot: 3.141592653589793 rad + pos: 71.5,26.5 + parent: 1 + type: Transform + - uid: 10221 + components: + - rot: 3.141592653589793 rad + pos: 71.5,25.5 + parent: 1 + type: Transform + - uid: 10222 + components: + - rot: 1.5707963267948966 rad + pos: 72.5,24.5 + parent: 1 + type: Transform + - uid: 10223 + components: + - rot: 1.5707963267948966 rad + pos: 73.5,24.5 + parent: 1 + type: Transform + - uid: 10224 + components: + - rot: 1.5707963267948966 rad + pos: 74.5,24.5 + parent: 1 + type: Transform + - uid: 10225 + components: + - rot: 1.5707963267948966 rad + pos: 75.5,24.5 + parent: 1 + type: Transform + - uid: 10226 + components: + - rot: 1.5707963267948966 rad + pos: 76.5,24.5 + parent: 1 + type: Transform + - uid: 10227 + components: + - rot: 1.5707963267948966 rad + pos: 77.5,24.5 + parent: 1 + type: Transform + - uid: 10228 + components: + - rot: 1.5707963267948966 rad + pos: 78.5,24.5 + parent: 1 + type: Transform + - uid: 10229 + components: + - rot: 1.5707963267948966 rad + pos: 79.5,24.5 + parent: 1 + type: Transform + - uid: 10230 + components: + - rot: 1.5707963267948966 rad + pos: 80.5,24.5 + parent: 1 + type: Transform + - uid: 10231 + components: + - rot: 1.5707963267948966 rad + pos: 81.5,24.5 + parent: 1 + type: Transform + - uid: 10232 + components: + - rot: 1.5707963267948966 rad + pos: 82.5,24.5 + parent: 1 + type: Transform + - uid: 10233 + components: + - rot: 1.5707963267948966 rad + pos: 82.5,25.5 + parent: 1 + type: Transform + - uid: 10234 + components: + - rot: 1.5707963267948966 rad + pos: 81.5,25.5 + parent: 1 + type: Transform + - uid: 10235 + components: + - rot: 1.5707963267948966 rad + pos: 80.5,25.5 + parent: 1 + type: Transform + - uid: 10236 + components: + - rot: 1.5707963267948966 rad + pos: 79.5,25.5 + parent: 1 + type: Transform + - uid: 10237 + components: + - rot: 1.5707963267948966 rad + pos: 78.5,25.5 + parent: 1 + type: Transform + - uid: 10238 + components: + - rot: 1.5707963267948966 rad + pos: 77.5,25.5 + parent: 1 + type: Transform + - uid: 10239 + components: + - rot: 1.5707963267948966 rad + pos: 76.5,25.5 + parent: 1 + type: Transform + - uid: 10240 + components: + - rot: 1.5707963267948966 rad + pos: 75.5,25.5 + parent: 1 + type: Transform + - uid: 10241 + components: + - rot: 1.5707963267948966 rad + pos: 74.5,25.5 + parent: 1 + type: Transform + - uid: 10242 + components: + - rot: 1.5707963267948966 rad + pos: 73.5,25.5 + parent: 1 + type: Transform + - uid: 10243 + components: + - rot: 1.5707963267948966 rad + pos: 73.5,26.5 + parent: 1 + type: Transform + - uid: 10244 + components: + - rot: 1.5707963267948966 rad + pos: 74.5,26.5 + parent: 1 + type: Transform + - uid: 10245 + components: + - rot: 1.5707963267948966 rad + pos: 75.5,26.5 + parent: 1 + type: Transform + - uid: 10246 + components: + - rot: 1.5707963267948966 rad + pos: 76.5,26.5 + parent: 1 + type: Transform + - uid: 10247 + components: + - rot: 1.5707963267948966 rad + pos: 77.5,26.5 + parent: 1 + type: Transform + - uid: 10248 + components: + - rot: 1.5707963267948966 rad + pos: 78.5,26.5 + parent: 1 + type: Transform + - uid: 10249 + components: + - rot: 1.5707963267948966 rad + pos: 79.5,26.5 + parent: 1 + type: Transform + - uid: 10250 + components: + - rot: 1.5707963267948966 rad + pos: 80.5,26.5 + parent: 1 + type: Transform + - uid: 10251 + components: + - rot: 1.5707963267948966 rad + pos: 81.5,26.5 + parent: 1 + type: Transform + - uid: 10252 + components: + - rot: 1.5707963267948966 rad + pos: 82.5,26.5 + parent: 1 + type: Transform + - uid: 10253 + components: + - rot: 1.5707963267948966 rad + pos: 82.5,27.5 + parent: 1 + type: Transform + - uid: 10254 + components: + - rot: 1.5707963267948966 rad + pos: 81.5,27.5 + parent: 1 + type: Transform + - uid: 10255 + components: + - rot: 1.5707963267948966 rad + pos: 80.5,27.5 + parent: 1 + type: Transform + - uid: 10256 + components: + - rot: 1.5707963267948966 rad + pos: 79.5,27.5 + parent: 1 + type: Transform + - uid: 10257 + components: + - rot: 1.5707963267948966 rad + pos: 78.5,27.5 + parent: 1 + type: Transform + - uid: 10258 + components: + - rot: 1.5707963267948966 rad + pos: 77.5,27.5 + parent: 1 + type: Transform + - uid: 10259 + components: + - rot: 1.5707963267948966 rad + pos: 76.5,27.5 + parent: 1 + type: Transform + - uid: 10260 + components: + - rot: 1.5707963267948966 rad + pos: 75.5,27.5 + parent: 1 + type: Transform + - uid: 10261 + components: + - rot: 1.5707963267948966 rad + pos: 74.5,27.5 + parent: 1 + type: Transform + - uid: 10262 + components: + - rot: 1.5707963267948966 rad + pos: 73.5,27.5 + parent: 1 + type: Transform + - uid: 10263 + components: + - rot: 1.5707963267948966 rad + pos: 73.5,28.5 + parent: 1 + type: Transform + - uid: 10264 + components: + - rot: 1.5707963267948966 rad + pos: 74.5,28.5 + parent: 1 + type: Transform + - uid: 10265 + components: + - rot: 1.5707963267948966 rad + pos: 75.5,28.5 + parent: 1 + type: Transform + - uid: 10266 + components: + - rot: 1.5707963267948966 rad + pos: 76.5,28.5 + parent: 1 + type: Transform + - uid: 10267 + components: + - rot: 1.5707963267948966 rad + pos: 77.5,28.5 + parent: 1 + type: Transform + - uid: 10268 + components: + - rot: 1.5707963267948966 rad + pos: 78.5,28.5 + parent: 1 + type: Transform + - uid: 10269 + components: + - rot: 1.5707963267948966 rad + pos: 79.5,28.5 + parent: 1 + type: Transform + - uid: 10270 + components: + - rot: 1.5707963267948966 rad + pos: 80.5,28.5 + parent: 1 + type: Transform + - uid: 10271 + components: + - rot: 1.5707963267948966 rad + pos: 81.5,28.5 + parent: 1 + type: Transform + - uid: 10272 + components: + - rot: 1.5707963267948966 rad + pos: 82.5,28.5 + parent: 1 + type: Transform + - uid: 10273 + components: + - rot: 1.5707963267948966 rad + pos: 82.5,29.5 + parent: 1 + type: Transform + - uid: 10274 + components: + - rot: 1.5707963267948966 rad + pos: 81.5,29.5 + parent: 1 + type: Transform + - uid: 10275 + components: + - rot: 1.5707963267948966 rad + pos: 80.5,29.5 + parent: 1 + type: Transform + - uid: 10276 + components: + - rot: 1.5707963267948966 rad + pos: 79.5,29.5 + parent: 1 + type: Transform + - uid: 10277 + components: + - rot: 1.5707963267948966 rad + pos: 78.5,29.5 + parent: 1 + type: Transform + - uid: 10278 + components: + - rot: 1.5707963267948966 rad + pos: 77.5,29.5 + parent: 1 + type: Transform + - uid: 10279 + components: + - rot: 1.5707963267948966 rad + pos: 76.5,29.5 + parent: 1 + type: Transform + - uid: 10280 + components: + - rot: 1.5707963267948966 rad + pos: 75.5,29.5 + parent: 1 + type: Transform + - uid: 10281 + components: + - rot: 1.5707963267948966 rad + pos: 74.5,29.5 + parent: 1 + type: Transform + - uid: 10308 + components: + - rot: -1.5707963267948966 rad + pos: 70.5,31.5 + parent: 1 + type: Transform + - uid: 10309 + components: + - rot: -1.5707963267948966 rad + pos: 69.5,31.5 + parent: 1 + type: Transform + - uid: 10310 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,31.5 + parent: 1 + type: Transform + - uid: 10311 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,31.5 + parent: 1 + type: Transform + - uid: 10312 + components: + - rot: -1.5707963267948966 rad + pos: 66.5,31.5 + parent: 1 + type: Transform + - uid: 10313 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,31.5 + parent: 1 + type: Transform + - uid: 10314 + components: + - rot: 3.141592653589793 rad + pos: 64.5,30.5 + parent: 1 + type: Transform + - uid: 10315 + components: + - rot: 3.141592653589793 rad + pos: 64.5,29.5 + parent: 1 + type: Transform + - uid: 10316 + components: + - rot: 3.141592653589793 rad + pos: 64.5,28.5 + parent: 1 + type: Transform + - uid: 10317 + components: + - rot: 3.141592653589793 rad + pos: 64.5,27.5 + parent: 1 + type: Transform + - uid: 10322 + components: + - rot: -1.5707963267948966 rad + pos: 72.5,14.5 + parent: 1 + type: Transform + - uid: 10323 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,14.5 + parent: 1 + type: Transform + - uid: 10324 + components: + - rot: 3.141592653589793 rad + pos: 70.5,13.5 + parent: 1 + type: Transform + - uid: 10325 + components: + - rot: 3.141592653589793 rad + pos: 70.5,12.5 + parent: 1 + type: Transform + - uid: 10327 + components: + - rot: 3.141592653589793 rad + pos: 70.5,10.5 + parent: 1 + type: Transform + - uid: 10328 + components: + - rot: 3.141592653589793 rad + pos: 70.5,9.5 + parent: 1 + type: Transform + - uid: 10331 + components: + - rot: 3.141592653589793 rad + pos: 70.5,6.5 + parent: 1 + type: Transform + - uid: 10332 + components: + - rot: 3.141592653589793 rad + pos: 70.5,5.5 + parent: 1 + type: Transform + - uid: 10339 + components: + - rot: 1.5707963267948966 rad + pos: 74.5,-11.5 + parent: 1 + type: Transform + - uid: 10355 + components: + - rot: -1.5707963267948966 rad + pos: 69.5,4.5 + parent: 1 + type: Transform + - uid: 10356 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,4.5 + parent: 1 + type: Transform + - uid: 10357 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,4.5 + parent: 1 + type: Transform + - uid: 10358 + components: + - rot: -1.5707963267948966 rad + pos: 66.5,4.5 + parent: 1 + type: Transform + - uid: 10359 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,4.5 + parent: 1 + type: Transform + - uid: 10360 + components: + - rot: -1.5707963267948966 rad + pos: 64.5,4.5 + parent: 1 + type: Transform + - uid: 10361 + components: + - rot: 3.141592653589793 rad + pos: 63.5,3.5 + parent: 1 + type: Transform + - uid: 10362 + components: + - rot: 3.141592653589793 rad + pos: 63.5,2.5 + parent: 1 + type: Transform + - uid: 10363 + components: + - rot: 3.141592653589793 rad + pos: 63.5,1.5 + parent: 1 + type: Transform + - uid: 10364 + components: + - rot: 3.141592653589793 rad + pos: 63.5,0.5 + parent: 1 + type: Transform + - uid: 10365 + components: + - rot: 3.141592653589793 rad + pos: 63.5,-0.5 + parent: 1 + type: Transform + - uid: 10366 + components: + - rot: 3.141592653589793 rad + pos: 63.5,-1.5 + parent: 1 + type: Transform + - uid: 10367 + components: + - rot: 3.141592653589793 rad + pos: 63.5,-2.5 + parent: 1 + type: Transform + - uid: 10368 + components: + - rot: 3.141592653589793 rad + pos: 63.5,-3.5 + parent: 1 + type: Transform + - uid: 10369 + components: + - rot: 3.141592653589793 rad + pos: 63.5,-4.5 + parent: 1 + type: Transform + - uid: 10370 + components: + - rot: 3.141592653589793 rad + pos: 63.5,-5.5 + parent: 1 + type: Transform + - uid: 10371 + components: + - rot: 3.141592653589793 rad + pos: 64.5,-7.5 + parent: 1 + type: Transform + - uid: 10372 + components: + - rot: 3.141592653589793 rad + pos: 64.5,-8.5 + parent: 1 + type: Transform + - uid: 10373 + components: + - rot: 3.141592653589793 rad + pos: 64.5,-9.5 + parent: 1 + type: Transform + - uid: 10374 + components: + - rot: 3.141592653589793 rad + pos: 64.5,-10.5 + parent: 1 + type: Transform + - uid: 10375 + components: + - rot: 1.5707963267948966 rad + pos: 65.5,-11.5 + parent: 1 + type: Transform + - uid: 10384 + components: + - pos: 66.5,-13.5 + parent: 1 + type: Transform + - uid: 10385 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,-14.5 + parent: 1 + type: Transform + - uid: 10386 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,-14.5 + parent: 1 + type: Transform + - uid: 10387 + components: + - rot: -1.5707963267948966 rad + pos: 69.5,-14.5 + parent: 1 + type: Transform + - uid: 10388 + components: + - rot: -1.5707963267948966 rad + pos: 70.5,-14.5 + parent: 1 + type: Transform + - uid: 10389 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,-14.5 + parent: 1 + type: Transform + - uid: 10390 + components: + - rot: -1.5707963267948966 rad + pos: 72.5,-14.5 + parent: 1 + type: Transform + - uid: 10391 + components: + - rot: -1.5707963267948966 rad + pos: 73.5,-14.5 + parent: 1 + type: Transform + - uid: 10392 + components: + - rot: -1.5707963267948966 rad + pos: 74.5,-14.5 + parent: 1 + type: Transform + - uid: 10393 + components: + - rot: -1.5707963267948966 rad + pos: 75.5,-14.5 + parent: 1 + type: Transform + - uid: 10394 + components: + - rot: -1.5707963267948966 rad + pos: 77.5,-15.5 + parent: 1 + type: Transform + - uid: 10395 + components: + - rot: -1.5707963267948966 rad + pos: 78.5,-15.5 + parent: 1 + type: Transform + - uid: 10396 + components: + - rot: -1.5707963267948966 rad + pos: 79.5,-15.5 + parent: 1 + type: Transform + - uid: 10397 + components: + - rot: -1.5707963267948966 rad + pos: 80.5,-15.5 + parent: 1 + type: Transform + - uid: 10398 + components: + - rot: -1.5707963267948966 rad + pos: 81.5,-15.5 + parent: 1 + type: Transform + - uid: 10399 + components: + - rot: -1.5707963267948966 rad + pos: 82.5,-15.5 + parent: 1 + type: Transform + - uid: 10400 + components: + - rot: -1.5707963267948966 rad + pos: 83.5,-15.5 + parent: 1 + type: Transform + - uid: 10401 + components: + - rot: -1.5707963267948966 rad + pos: 84.5,-15.5 + parent: 1 + type: Transform + - uid: 10402 + components: + - rot: 3.141592653589793 rad + pos: 85.5,-14.5 + parent: 1 + type: Transform + - uid: 10403 + components: + - rot: 3.141592653589793 rad + pos: 85.5,-13.5 + parent: 1 + type: Transform + - uid: 10404 + components: + - rot: 3.141592653589793 rad + pos: 85.5,-12.5 + parent: 1 + type: Transform + - uid: 10405 + components: + - rot: 3.141592653589793 rad + pos: 85.5,-11.5 + parent: 1 + type: Transform + - uid: 10406 + components: + - rot: 3.141592653589793 rad + pos: 85.5,-10.5 + parent: 1 + type: Transform + - uid: 10407 + components: + - rot: 3.141592653589793 rad + pos: 85.5,-9.5 + parent: 1 + type: Transform + - uid: 10408 + components: + - rot: 3.141592653589793 rad + pos: 85.5,-8.5 + parent: 1 + type: Transform + - uid: 10409 + components: + - rot: 3.141592653589793 rad + pos: 85.5,-7.5 + parent: 1 + type: Transform + - uid: 10410 + components: + - rot: 3.141592653589793 rad + pos: 85.5,-6.5 + parent: 1 + type: Transform + - uid: 10418 + components: + - rot: -1.5707963267948966 rad + pos: 62.5,4.5 + parent: 1 + type: Transform + - uid: 10419 + components: + - rot: -1.5707963267948966 rad + pos: 61.5,4.5 + parent: 1 + type: Transform + - uid: 10420 + components: + - rot: -1.5707963267948966 rad + pos: 60.5,4.5 + parent: 1 + type: Transform + - uid: 10421 + components: + - rot: -1.5707963267948966 rad + pos: 59.5,4.5 + parent: 1 + type: Transform + - uid: 10422 + components: + - rot: -1.5707963267948966 rad + pos: 58.5,4.5 + parent: 1 + type: Transform + - uid: 10423 + components: + - rot: -1.5707963267948966 rad + pos: 57.5,4.5 + parent: 1 + type: Transform + - uid: 10424 + components: + - rot: -1.5707963267948966 rad + pos: 55.5,4.5 + parent: 1 + type: Transform + - uid: 10425 + components: + - rot: -1.5707963267948966 rad + pos: 54.5,4.5 + parent: 1 + type: Transform + - uid: 10426 + components: + - rot: -1.5707963267948966 rad + pos: 53.5,4.5 + parent: 1 + type: Transform + - uid: 10427 + components: + - rot: -1.5707963267948966 rad + pos: 52.5,4.5 + parent: 1 + type: Transform + - uid: 10428 + components: + - rot: -1.5707963267948966 rad + pos: 51.5,4.5 + parent: 1 + type: Transform + - uid: 10429 + components: + - rot: -1.5707963267948966 rad + pos: 50.5,4.5 + parent: 1 + type: Transform + - uid: 10430 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,4.5 + parent: 1 + type: Transform + - uid: 10431 + components: + - rot: -1.5707963267948966 rad + pos: 48.5,4.5 + parent: 1 + type: Transform + - uid: 10432 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,4.5 + parent: 1 + type: Transform + - uid: 10433 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,4.5 + parent: 1 + type: Transform + - uid: 10434 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,4.5 + parent: 1 + type: Transform + - uid: 10435 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,4.5 + parent: 1 + type: Transform + - uid: 10436 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,4.5 + parent: 1 + type: Transform + - uid: 10437 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,4.5 + parent: 1 + type: Transform + - uid: 10438 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,4.5 + parent: 1 + type: Transform + - uid: 10444 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,4.5 + parent: 1 + type: Transform + - uid: 10445 + components: + - pos: 38.5,3.5 + parent: 1 + type: Transform + - uid: 10446 + components: + - pos: 38.5,2.5 + parent: 1 + type: Transform + - uid: 10447 + components: + - pos: 38.5,1.5 + parent: 1 + type: Transform + - uid: 10448 + components: + - pos: 38.5,0.5 + parent: 1 + type: Transform + - uid: 10449 + components: + - pos: 38.5,-0.5 + parent: 1 + type: Transform + - uid: 10450 + components: + - pos: 38.5,-1.5 + parent: 1 + type: Transform + - uid: 10451 + components: + - pos: 38.5,-2.5 + parent: 1 + type: Transform + - uid: 10462 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-11.5 + parent: 1 + type: Transform + - uid: 10463 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-10.5 + parent: 1 + type: Transform + - uid: 10464 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-9.5 + parent: 1 + type: Transform + - uid: 10465 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-8.5 + parent: 1 + type: Transform + - uid: 10466 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-7.5 + parent: 1 + type: Transform + - uid: 10467 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-6.5 + parent: 1 + type: Transform + - uid: 10468 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-5.5 + parent: 1 + type: Transform + - uid: 10469 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-4.5 + parent: 1 + type: Transform + - uid: 10473 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-10.5 + parent: 1 + type: Transform + - uid: 10474 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-10.5 + parent: 1 + type: Transform + - uid: 10475 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-10.5 + parent: 1 + type: Transform + - uid: 10476 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-9.5 + parent: 1 + type: Transform + - uid: 10477 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-8.5 + parent: 1 + type: Transform + - uid: 10478 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-7.5 + parent: 1 + type: Transform + - uid: 10479 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-6.5 + parent: 1 + type: Transform + - uid: 10480 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-5.5 + parent: 1 + type: Transform + - uid: 10481 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-4.5 + parent: 1 + type: Transform + - uid: 10482 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-3.5 + parent: 1 + type: Transform + - uid: 10483 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-3.5 + parent: 1 + type: Transform + - uid: 10484 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-3.5 + parent: 1 + type: Transform + - uid: 10485 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-3.5 + parent: 1 + type: Transform + - uid: 10486 + components: + - pos: 33.5,-4.5 + parent: 1 + type: Transform + - uid: 10487 + components: + - pos: 33.5,-5.5 + parent: 1 + type: Transform + - uid: 10488 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-3.5 + parent: 1 + type: Transform + - uid: 10489 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-3.5 + parent: 1 + type: Transform + - uid: 10490 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-3.5 + parent: 1 + type: Transform + - uid: 10491 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-3.5 + parent: 1 + type: Transform + - uid: 10492 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-3.5 + parent: 1 + type: Transform + - uid: 10493 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-3.5 + parent: 1 + type: Transform + - uid: 10494 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-3.5 + parent: 1 + type: Transform + - uid: 10495 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-3.5 + parent: 1 + type: Transform + - uid: 10496 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-3.5 + parent: 1 + type: Transform + - uid: 10497 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-3.5 + parent: 1 + type: Transform + - uid: 10498 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-3.5 + parent: 1 + type: Transform + - uid: 10499 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-3.5 + parent: 1 + type: Transform + - uid: 10500 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-3.5 + parent: 1 + type: Transform + - uid: 10501 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-3.5 + parent: 1 + type: Transform + - uid: 10502 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-3.5 + parent: 1 + type: Transform + - uid: 10503 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-3.5 + parent: 1 + type: Transform + - uid: 10504 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 1 + type: Transform + - uid: 10505 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-3.5 + parent: 1 + type: Transform + - uid: 10506 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 1 + type: Transform + - uid: 10510 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-8.5 + parent: 1 + type: Transform + - uid: 10511 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-7.5 + parent: 1 + type: Transform + - uid: 10512 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-6.5 + parent: 1 + type: Transform + - uid: 10513 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 10514 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 10515 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 10516 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 10517 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 10518 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 1 + type: Transform + - uid: 10519 + components: + - rot: 3.141592653589793 rad + pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 10520 + components: + - rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 10521 + components: + - rot: 3.141592653589793 rad + pos: -6.5,2.5 + parent: 1 + type: Transform + - uid: 10524 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 1 + type: Transform + - uid: 10525 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 10526 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 10527 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 10528 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 1 + type: Transform + - uid: 10529 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 1 + type: Transform + - uid: 10532 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-13.5 + parent: 1 + type: Transform + - uid: 10533 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-12.5 + parent: 1 + type: Transform + - uid: 10534 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-11.5 + parent: 1 + type: Transform + - uid: 10535 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-10.5 + parent: 1 + type: Transform + - uid: 10536 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-9.5 + parent: 1 + type: Transform + - uid: 10537 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-8.5 + parent: 1 + type: Transform + - uid: 10538 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-7.5 + parent: 1 + type: Transform + - uid: 10539 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-6.5 + parent: 1 + type: Transform + - uid: 10540 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-4.5 + parent: 1 + type: Transform + - uid: 10541 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 1 + type: Transform + - uid: 10542 + components: + - pos: 11.5,-2.5 + parent: 1 + type: Transform + - uid: 10543 + components: + - pos: 11.5,-1.5 + parent: 1 + type: Transform + - uid: 10544 + components: + - pos: 11.5,-0.5 + parent: 1 + type: Transform + - uid: 10547 + components: + - pos: 11.5,2.5 + parent: 1 + type: Transform + - uid: 10548 + components: + - pos: 11.5,3.5 + parent: 1 + type: Transform + - uid: 10549 + components: + - pos: 11.5,4.5 + parent: 1 + type: Transform + - uid: 10550 + components: + - pos: 11.5,5.5 + parent: 1 + type: Transform + - uid: 10551 + components: + - pos: 11.5,6.5 + parent: 1 + type: Transform + - uid: 10552 + components: + - pos: 11.5,7.5 + parent: 1 + type: Transform + - uid: 10553 + components: + - pos: 11.5,8.5 + parent: 1 + type: Transform + - uid: 10554 + components: + - pos: 11.5,9.5 + parent: 1 + type: Transform + - uid: 10555 + components: + - pos: 11.5,10.5 + parent: 1 + type: Transform + - uid: 10570 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,44.5 + parent: 1 + type: Transform + - uid: 10575 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,44.5 + parent: 1 + type: Transform + - uid: 10576 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,44.5 + parent: 1 + type: Transform + - uid: 10577 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,44.5 + parent: 1 + type: Transform + - uid: 10578 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,44.5 + parent: 1 + type: Transform + - uid: 10579 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,44.5 + parent: 1 + type: Transform + - uid: 10580 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,44.5 + parent: 1 + type: Transform + - uid: 10581 + components: + - pos: 10.5,43.5 + parent: 1 + type: Transform + - uid: 10582 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,43.5 + parent: 1 + type: Transform + - uid: 10584 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,42.5 + parent: 1 + type: Transform + - uid: 10587 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,41.5 + parent: 1 + type: Transform + - uid: 10588 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,41.5 + parent: 1 + type: Transform + - uid: 10589 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,41.5 + parent: 1 + type: Transform + - uid: 10590 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,41.5 + parent: 1 + type: Transform + - uid: 10591 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,41.5 + parent: 1 + type: Transform + - uid: 10592 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,41.5 + parent: 1 + type: Transform + - uid: 10593 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,41.5 + parent: 1 + type: Transform + - uid: 10594 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,41.5 + parent: 1 + type: Transform + - uid: 10595 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,41.5 + parent: 1 + type: Transform + - uid: 10596 + components: + - rot: 3.141592653589793 rad + pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 10603 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,11.5 + parent: 1 + type: Transform + - uid: 10604 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 10605 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,11.5 + parent: 1 + type: Transform + - uid: 10606 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,11.5 + parent: 1 + type: Transform + - uid: 10608 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,11.5 + parent: 1 + type: Transform + - uid: 10609 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,11.5 + parent: 1 + type: Transform + - uid: 10610 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,11.5 + parent: 1 + type: Transform + - uid: 10611 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,11.5 + parent: 1 + type: Transform + - uid: 10612 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 10613 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,11.5 + parent: 1 + type: Transform + - uid: 10614 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,11.5 + parent: 1 + type: Transform + - uid: 10615 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,11.5 + parent: 1 + type: Transform + - uid: 10616 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,11.5 + parent: 1 + type: Transform + - uid: 10617 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,11.5 + parent: 1 + type: Transform + - uid: 10635 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,11.5 + parent: 1 + type: Transform + - uid: 10636 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,11.5 + parent: 1 + type: Transform + - uid: 10637 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,11.5 + parent: 1 + type: Transform + - uid: 10638 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,11.5 + parent: 1 + type: Transform + - uid: 10639 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,11.5 + parent: 1 + type: Transform + - uid: 10640 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,11.5 + parent: 1 + type: Transform + - uid: 10641 + components: + - rot: 3.141592653589793 rad + pos: 16.5,12.5 + parent: 1 + type: Transform + - uid: 10642 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,11.5 + parent: 1 + type: Transform + - uid: 10643 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,11.5 + parent: 1 + type: Transform + - uid: 10644 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,11.5 + parent: 1 + type: Transform + - uid: 10645 + components: + - pos: 12.5,12.5 + parent: 1 + type: Transform + - uid: 10646 + components: + - pos: 12.5,13.5 + parent: 1 + type: Transform + - uid: 10647 + components: + - pos: 12.5,14.5 + parent: 1 + type: Transform + - uid: 10648 + components: + - pos: 12.5,15.5 + parent: 1 + type: Transform + - uid: 10649 + components: + - pos: 12.5,16.5 + parent: 1 + type: Transform + - uid: 10650 + components: + - pos: 12.5,17.5 + parent: 1 + type: Transform + - uid: 10651 + components: + - pos: 12.5,18.5 + parent: 1 + type: Transform + - uid: 10652 + components: + - pos: 12.5,19.5 + parent: 1 + type: Transform + - uid: 10653 + components: + - pos: 12.5,20.5 + parent: 1 + type: Transform + - uid: 10655 + components: + - pos: 12.5,22.5 + parent: 1 + type: Transform + - uid: 10656 + components: + - pos: 12.5,23.5 + parent: 1 + type: Transform + - uid: 10657 + components: + - pos: 12.5,24.5 + parent: 1 + type: Transform + - uid: 10658 + components: + - pos: 12.5,25.5 + parent: 1 + type: Transform + - uid: 10659 + components: + - pos: 12.5,26.5 + parent: 1 + type: Transform + - uid: 10660 + components: + - pos: 12.5,27.5 + parent: 1 + type: Transform + - uid: 10661 + components: + - pos: 12.5,28.5 + parent: 1 + type: Transform + - uid: 10662 + components: + - pos: 12.5,29.5 + parent: 1 + type: Transform + - uid: 10663 + components: + - pos: 12.5,30.5 + parent: 1 + type: Transform + - uid: 10664 + components: + - pos: 12.5,31.5 + parent: 1 + type: Transform + - uid: 10665 + components: + - pos: 12.5,32.5 + parent: 1 + type: Transform + - uid: 10666 + components: + - pos: 12.5,33.5 + parent: 1 + type: Transform + - uid: 10667 + components: + - pos: 12.5,34.5 + parent: 1 + type: Transform + - uid: 10668 + components: + - pos: 12.5,35.5 + parent: 1 + type: Transform + - uid: 10669 + components: + - pos: 12.5,36.5 + parent: 1 + type: Transform + - uid: 10670 + components: + - pos: 12.5,37.5 + parent: 1 + type: Transform + - uid: 10671 + components: + - pos: 12.5,38.5 + parent: 1 + type: Transform + - uid: 10672 + components: + - pos: 12.5,39.5 + parent: 1 + type: Transform + - uid: 10673 + components: + - pos: 12.5,40.5 + parent: 1 + type: Transform + - uid: 10674 + components: + - rot: 3.141592653589793 rad + pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 10675 + components: + - rot: 3.141592653589793 rad + pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 10676 + components: + - rot: 3.141592653589793 rad + pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 10677 + components: + - rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 10678 + components: + - rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 10679 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 10680 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 10681 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 10682 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,3.5 + parent: 1 + type: Transform + - uid: 10683 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,3.5 + parent: 1 + type: Transform + - uid: 10684 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,3.5 + parent: 1 + type: Transform + - uid: 10685 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,3.5 + parent: 1 + type: Transform + - uid: 10686 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,3.5 + parent: 1 + type: Transform + - uid: 10687 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,3.5 + parent: 1 + type: Transform + - uid: 10688 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,3.5 + parent: 1 + type: Transform + - uid: 10689 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,3.5 + parent: 1 + type: Transform + - uid: 10690 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,3.5 + parent: 1 + type: Transform + - uid: 10691 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,3.5 + parent: 1 + type: Transform + - uid: 10692 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,3.5 + parent: 1 + type: Transform + - uid: 10693 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,3.5 + parent: 1 + type: Transform + - uid: 10694 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,3.5 + parent: 1 + type: Transform + - uid: 10695 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,3.5 + parent: 1 + type: Transform + - uid: 10696 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,3.5 + parent: 1 + type: Transform + - uid: 10697 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,3.5 + parent: 1 + type: Transform + - uid: 10699 + components: + - pos: -16.5,0.5 + parent: 1 + type: Transform + - uid: 10700 + components: + - pos: -16.5,1.5 + parent: 1 + type: Transform + - uid: 10701 + components: + - pos: -16.5,2.5 + parent: 1 + type: Transform + - uid: 10710 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-21.5 + parent: 1 + type: Transform + - uid: 10725 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,22.5 + parent: 1 + type: Transform + - uid: 10726 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,22.5 + parent: 1 + type: Transform + - uid: 10727 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,22.5 + parent: 1 + type: Transform + - uid: 10728 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,22.5 + parent: 1 + type: Transform + - uid: 10729 + components: + - pos: -49.5,21.5 + parent: 1 + type: Transform + - uid: 10732 + components: + - pos: -50.5,19.5 + parent: 1 + type: Transform + - uid: 10733 + components: + - pos: -50.5,18.5 + parent: 1 + type: Transform + - uid: 10734 + components: + - pos: -50.5,17.5 + parent: 1 + type: Transform + - uid: 10735 + components: + - pos: -50.5,16.5 + parent: 1 + type: Transform + - uid: 10736 + components: + - pos: -50.5,15.5 + parent: 1 + type: Transform + - uid: 10737 + components: + - pos: -50.5,14.5 + parent: 1 + type: Transform + - uid: 10738 + components: + - pos: -50.5,13.5 + parent: 1 + type: Transform + - uid: 10739 + components: + - pos: -50.5,12.5 + parent: 1 + type: Transform + - uid: 10740 + components: + - pos: -50.5,11.5 + parent: 1 + type: Transform + - uid: 10741 + components: + - pos: -50.5,10.5 + parent: 1 + type: Transform + - uid: 10742 + components: + - pos: -50.5,9.5 + parent: 1 + type: Transform + - uid: 10744 + components: + - pos: -50.5,7.5 + parent: 1 + type: Transform + - uid: 10745 + components: + - pos: -50.5,6.5 + parent: 1 + type: Transform + - uid: 10746 + components: + - pos: -50.5,5.5 + parent: 1 + type: Transform + - uid: 10747 + components: + - pos: -50.5,4.5 + parent: 1 + type: Transform + - uid: 10748 + components: + - pos: -50.5,3.5 + parent: 1 + type: Transform + - uid: 10749 + components: + - pos: -50.5,2.5 + parent: 1 + type: Transform + - uid: 10750 + components: + - pos: -50.5,1.5 + parent: 1 + type: Transform + - uid: 10756 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,3.5 + parent: 1 + type: Transform + - uid: 10757 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,3.5 + parent: 1 + type: Transform + - uid: 10758 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,3.5 + parent: 1 + type: Transform + - uid: 10759 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,3.5 + parent: 1 + type: Transform + - uid: 10760 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,3.5 + parent: 1 + type: Transform + - uid: 10761 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,3.5 + parent: 1 + type: Transform + - uid: 10762 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,3.5 + parent: 1 + type: Transform + - uid: 10763 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,3.5 + parent: 1 + type: Transform + - uid: 10764 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,3.5 + parent: 1 + type: Transform + - uid: 10765 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,3.5 + parent: 1 + type: Transform + - uid: 10766 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,3.5 + parent: 1 + type: Transform + - uid: 10767 + components: + - rot: 3.141592653589793 rad + pos: -38.5,2.5 + parent: 1 + type: Transform + - uid: 10768 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,1.5 + parent: 1 + type: Transform + - uid: 10769 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,0.5 + parent: 1 + type: Transform + - uid: 10770 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,0.5 + parent: 1 + type: Transform + - uid: 10771 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,0.5 + parent: 1 + type: Transform + - uid: 10772 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,0.5 + parent: 1 + type: Transform + - uid: 10773 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,0.5 + parent: 1 + type: Transform + - uid: 10774 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,0.5 + parent: 1 + type: Transform + - uid: 10775 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,0.5 + parent: 1 + type: Transform + - uid: 10776 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,0.5 + parent: 1 + type: Transform + - uid: 10777 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,0.5 + parent: 1 + type: Transform + - uid: 10778 + components: + - pos: -50.5,-0.5 + parent: 1 + type: Transform + - uid: 10779 + components: + - pos: -50.5,-1.5 + parent: 1 + type: Transform + - uid: 10780 + components: + - pos: -50.5,-2.5 + parent: 1 + type: Transform + - uid: 10781 + components: + - pos: -50.5,-3.5 + parent: 1 + type: Transform + - uid: 10782 + components: + - pos: -50.5,-4.5 + parent: 1 + type: Transform + - uid: 10783 + components: + - pos: -50.5,-5.5 + parent: 1 + type: Transform + - uid: 10784 + components: + - pos: -50.5,-6.5 + parent: 1 + type: Transform + - uid: 10785 + components: + - pos: -50.5,-7.5 + parent: 1 + type: Transform + - uid: 10786 + components: + - pos: -50.5,-8.5 + parent: 1 + type: Transform + - uid: 10787 + components: + - pos: -50.5,-9.5 + parent: 1 + type: Transform + - uid: 10788 + components: + - pos: -50.5,-10.5 + parent: 1 + type: Transform + - uid: 10789 + components: + - pos: -50.5,-11.5 + parent: 1 + type: Transform + - uid: 10790 + components: + - pos: -50.5,-12.5 + parent: 1 + type: Transform + - uid: 10791 + components: + - pos: -50.5,-13.5 + parent: 1 + type: Transform + - uid: 10792 + components: + - pos: -50.5,-14.5 + parent: 1 + type: Transform + - uid: 10793 + components: + - pos: -50.5,-15.5 + parent: 1 + type: Transform + - uid: 10794 + components: + - pos: -50.5,-16.5 + parent: 1 + type: Transform + - uid: 10795 + components: + - pos: -50.5,-17.5 + parent: 1 + type: Transform + - uid: 10796 + components: + - pos: -50.5,-18.5 + parent: 1 + type: Transform + - uid: 10797 + components: + - pos: -50.5,-19.5 + parent: 1 + type: Transform + - uid: 10798 + components: + - pos: -50.5,-20.5 + parent: 1 + type: Transform + - uid: 10962 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,8.5 + parent: 1 + type: Transform + - uid: 10963 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,8.5 + parent: 1 + type: Transform + - uid: 10964 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,8.5 + parent: 1 + type: Transform + - uid: 12019 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-28.5 + parent: 1 + type: Transform + - uid: 12022 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-28.5 + parent: 1 + type: Transform + - uid: 12614 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-21.5 + parent: 1 + type: Transform + - uid: 14003 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-25.5 + parent: 1 + type: Transform + - uid: 14004 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-25.5 + parent: 1 + type: Transform + - uid: 14005 + components: + - pos: -38.5,-24.5 + parent: 1 + type: Transform + - uid: 14006 + components: + - pos: -38.5,-23.5 + parent: 1 + type: Transform + - uid: 14007 + components: + - pos: -38.5,-22.5 + parent: 1 + type: Transform + - uid: 14011 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-21.5 + parent: 1 + type: Transform + - uid: 14377 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-20.5 + parent: 1 + type: Transform + - uid: 14378 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-20.5 + parent: 1 + type: Transform + - uid: 14853 + components: + - rot: 3.141592653589793 rad + pos: 70.5,11.5 + parent: 1 + type: Transform + - uid: 16278 + components: + - rot: -1.5707963267948966 rad + pos: 85.5,-20.5 + parent: 1 + type: Transform + - uid: 16279 + components: + - rot: -1.5707963267948966 rad + pos: 84.5,-20.5 + parent: 1 + type: Transform + - uid: 16280 + components: + - rot: -1.5707963267948966 rad + pos: 83.5,-20.5 + parent: 1 + type: Transform + - uid: 16281 + components: + - rot: -1.5707963267948966 rad + pos: 82.5,-20.5 + parent: 1 + type: Transform + - uid: 16282 + components: + - rot: -1.5707963267948966 rad + pos: 81.5,-20.5 + parent: 1 + type: Transform + - uid: 17351 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-20.5 + parent: 1 + type: Transform + - uid: 17405 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-21.5 + parent: 1 + type: Transform + - uid: 17407 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-21.5 + parent: 1 + type: Transform + - uid: 17479 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,-21.5 + parent: 1 + type: Transform + - uid: 17480 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-25.5 + parent: 1 + type: Transform + - uid: 18187 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-32.5 + parent: 1 + type: Transform + - uid: 18188 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-34.5 + parent: 1 + type: Transform + - uid: 18189 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-36.5 + parent: 1 + type: Transform + - uid: 18190 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-36.5 + parent: 1 + type: Transform + - uid: 18548 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-20.5 + parent: 1 + type: Transform + - uid: 18551 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-20.5 + parent: 1 + type: Transform + - uid: 19416 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-20.5 + parent: 1 + type: Transform + - uid: 19608 + components: + - rot: 3.141592653589793 rad + pos: 7.5,22.5 + parent: 1 + type: Transform + - uid: 19609 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,21.5 + parent: 1 + type: Transform + - uid: 19610 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,21.5 + parent: 1 + type: Transform + - uid: 19611 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,21.5 + parent: 1 + type: Transform + - uid: 19612 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,21.5 + parent: 1 + type: Transform + - uid: 21593 + components: + - rot: 3.141592653589793 rad + pos: -14.5,1.5 + parent: 1 + type: Transform + - uid: 21599 + components: + - pos: -51.5,-19.5 + parent: 1 + type: Transform + - uid: 21600 + components: + - pos: -51.5,-18.5 + parent: 1 + type: Transform + - uid: 21601 + components: + - pos: -51.5,-17.5 + parent: 1 + type: Transform + - uid: 21602 + components: + - pos: -51.5,-16.5 + parent: 1 + type: Transform + - uid: 21603 + components: + - pos: -51.5,-15.5 + parent: 1 + type: Transform + - uid: 21604 + components: + - pos: -51.5,-14.5 + parent: 1 + type: Transform + - uid: 21605 + components: + - pos: -51.5,-13.5 + parent: 1 + type: Transform + - uid: 21606 + components: + - pos: -51.5,-12.5 + parent: 1 + type: Transform + - uid: 21607 + components: + - pos: -51.5,-11.5 + parent: 1 + type: Transform + - uid: 21608 + components: + - pos: -51.5,-10.5 + parent: 1 + type: Transform + - uid: 21609 + components: + - pos: -51.5,-9.5 + parent: 1 + type: Transform + - uid: 21610 + components: + - pos: -51.5,-8.5 + parent: 1 + type: Transform + - uid: 21611 + components: + - pos: -51.5,-7.5 + parent: 1 + type: Transform + - uid: 21612 + components: + - pos: -51.5,-6.5 + parent: 1 + type: Transform + - uid: 21613 + components: + - pos: -51.5,-5.5 + parent: 1 + type: Transform + - uid: 21614 + components: + - pos: -51.5,-4.5 + parent: 1 + type: Transform + - uid: 21615 + components: + - pos: -51.5,-3.5 + parent: 1 + type: Transform + - uid: 21616 + components: + - pos: -51.5,-2.5 + parent: 1 + type: Transform + - uid: 21617 + components: + - pos: -51.5,-1.5 + parent: 1 + type: Transform + - uid: 21618 + components: + - pos: -51.5,-0.5 + parent: 1 + type: Transform + - uid: 21619 + components: + - pos: -51.5,0.5 + parent: 1 + type: Transform + - uid: 21620 + components: + - pos: -51.5,1.5 + parent: 1 + type: Transform + - uid: 21621 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,2.5 + parent: 1 + type: Transform + - uid: 21622 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,2.5 + parent: 1 + type: Transform + - uid: 21623 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,2.5 + parent: 1 + type: Transform + - uid: 21624 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,2.5 + parent: 1 + type: Transform + - uid: 21625 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,2.5 + parent: 1 + type: Transform + - uid: 21626 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,2.5 + parent: 1 + type: Transform + - uid: 21627 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,2.5 + parent: 1 + type: Transform + - uid: 21628 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,2.5 + parent: 1 + type: Transform + - uid: 21629 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,2.5 + parent: 1 + type: Transform + - uid: 21630 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,2.5 + parent: 1 + type: Transform + - uid: 21631 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,2.5 + parent: 1 + type: Transform + - uid: 21632 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,2.5 + parent: 1 + type: Transform + - uid: 21633 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,2.5 + parent: 1 + type: Transform + - uid: 21634 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,2.5 + parent: 1 + type: Transform + - uid: 21635 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,2.5 + parent: 1 + type: Transform + - uid: 21636 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,2.5 + parent: 1 + type: Transform + - uid: 21637 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,2.5 + parent: 1 + type: Transform + - uid: 21638 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,2.5 + parent: 1 + type: Transform + - uid: 21639 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,2.5 + parent: 1 + type: Transform + - uid: 21640 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,2.5 + parent: 1 + type: Transform + - uid: 21641 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,2.5 + parent: 1 + type: Transform + - uid: 21642 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,2.5 + parent: 1 + type: Transform + - uid: 21643 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,2.5 + parent: 1 + type: Transform + - uid: 21644 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,2.5 + parent: 1 + type: Transform + - uid: 21645 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,2.5 + parent: 1 + type: Transform + - uid: 21646 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,2.5 + parent: 1 + type: Transform + - uid: 21647 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,2.5 + parent: 1 + type: Transform + - uid: 21648 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,2.5 + parent: 1 + type: Transform + - uid: 21649 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,2.5 + parent: 1 + type: Transform + - uid: 21650 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,2.5 + parent: 1 + type: Transform + - uid: 21651 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,2.5 + parent: 1 + type: Transform + - uid: 21652 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,2.5 + parent: 1 + type: Transform + - uid: 21653 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,2.5 + parent: 1 + type: Transform + - uid: 21654 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,2.5 + parent: 1 + type: Transform + - uid: 21655 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,2.5 + parent: 1 + type: Transform + - uid: 21658 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,42.5 + parent: 1 + type: Transform + - uid: 21662 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,42.5 + parent: 1 + type: Transform + - uid: 21663 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,42.5 + parent: 1 + type: Transform + - uid: 21664 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,42.5 + parent: 1 + type: Transform + - uid: 21665 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,42.5 + parent: 1 + type: Transform + - uid: 21666 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,41.5 + parent: 1 + type: Transform + - uid: 21667 + components: + - rot: 3.141592653589793 rad + pos: 11.5,40.5 + parent: 1 + type: Transform + - uid: 21668 + components: + - rot: 3.141592653589793 rad + pos: 11.5,39.5 + parent: 1 + type: Transform + - uid: 21669 + components: + - rot: 3.141592653589793 rad + pos: 11.5,38.5 + parent: 1 + type: Transform + - uid: 21670 + components: + - rot: 3.141592653589793 rad + pos: 11.5,37.5 + parent: 1 + type: Transform + - uid: 21671 + components: + - rot: 3.141592653589793 rad + pos: 11.5,36.5 + parent: 1 + type: Transform + - uid: 21672 + components: + - rot: 3.141592653589793 rad + pos: 11.5,35.5 + parent: 1 + type: Transform + - uid: 21673 + components: + - rot: 3.141592653589793 rad + pos: 11.5,34.5 + parent: 1 + type: Transform + - uid: 21674 + components: + - rot: 3.141592653589793 rad + pos: 11.5,33.5 + parent: 1 + type: Transform + - uid: 21675 + components: + - rot: 3.141592653589793 rad + pos: 11.5,32.5 + parent: 1 + type: Transform + - uid: 21676 + components: + - rot: 3.141592653589793 rad + pos: 11.5,31.5 + parent: 1 + type: Transform + - uid: 21677 + components: + - rot: 3.141592653589793 rad + pos: 11.5,30.5 + parent: 1 + type: Transform + - uid: 21678 + components: + - rot: 3.141592653589793 rad + pos: 11.5,29.5 + parent: 1 + type: Transform + - uid: 21679 + components: + - rot: 3.141592653589793 rad + pos: 11.5,28.5 + parent: 1 + type: Transform + - uid: 21680 + components: + - rot: 3.141592653589793 rad + pos: 11.5,27.5 + parent: 1 + type: Transform + - uid: 21681 + components: + - rot: 3.141592653589793 rad + pos: 11.5,26.5 + parent: 1 + type: Transform + - uid: 21682 + components: + - rot: 3.141592653589793 rad + pos: 11.5,25.5 + parent: 1 + type: Transform + - uid: 21683 + components: + - rot: 3.141592653589793 rad + pos: 11.5,24.5 + parent: 1 + type: Transform + - uid: 21684 + components: + - rot: 3.141592653589793 rad + pos: 11.5,23.5 + parent: 1 + type: Transform + - uid: 21685 + components: + - rot: 3.141592653589793 rad + pos: 11.5,22.5 + parent: 1 + type: Transform + - uid: 21687 + components: + - rot: 3.141592653589793 rad + pos: 11.5,20.5 + parent: 1 + type: Transform + - uid: 21688 + components: + - rot: 3.141592653589793 rad + pos: 11.5,19.5 + parent: 1 + type: Transform + - uid: 21689 + components: + - rot: 3.141592653589793 rad + pos: 11.5,18.5 + parent: 1 + type: Transform + - uid: 21690 + components: + - rot: 3.141592653589793 rad + pos: 11.5,17.5 + parent: 1 + type: Transform + - uid: 21691 + components: + - rot: 3.141592653589793 rad + pos: 11.5,16.5 + parent: 1 + type: Transform + - uid: 21692 + components: + - rot: 3.141592653589793 rad + pos: 11.5,15.5 + parent: 1 + type: Transform + - uid: 21694 + components: + - rot: 3.141592653589793 rad + pos: 11.5,13.5 + parent: 1 + type: Transform + - uid: 21698 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-46.5 + parent: 1 + type: Transform + - uid: 21699 + components: + - pos: 12.5,-45.5 + parent: 1 + type: Transform + - uid: 21700 + components: + - pos: 12.5,-44.5 + parent: 1 + type: Transform + - uid: 21701 + components: + - pos: 12.5,-43.5 + parent: 1 + type: Transform + - uid: 21702 + components: + - pos: 12.5,-42.5 + parent: 1 + type: Transform + - uid: 21703 + components: + - pos: 12.5,-41.5 + parent: 1 + type: Transform + - uid: 21704 + components: + - pos: 12.5,-40.5 + parent: 1 + type: Transform + - uid: 21705 + components: + - pos: 12.5,-39.5 + parent: 1 + type: Transform + - uid: 21706 + components: + - pos: 12.5,-38.5 + parent: 1 + type: Transform + - uid: 21707 + components: + - pos: 12.5,-37.5 + parent: 1 + type: Transform + - uid: 21708 + components: + - pos: 12.5,-36.5 + parent: 1 + type: Transform + - uid: 21709 + components: + - pos: 12.5,-35.5 + parent: 1 + type: Transform + - uid: 21710 + components: + - pos: 12.5,-34.5 + parent: 1 + type: Transform + - uid: 21711 + components: + - pos: 12.5,-33.5 + parent: 1 + type: Transform + - uid: 21712 + components: + - pos: 12.5,-32.5 + parent: 1 + type: Transform + - uid: 21713 + components: + - pos: 12.5,-31.5 + parent: 1 + type: Transform + - uid: 21714 + components: + - pos: 12.5,-30.5 + parent: 1 + type: Transform + - uid: 21715 + components: + - pos: 12.5,-29.5 + parent: 1 + type: Transform + - uid: 21716 + components: + - pos: 12.5,-28.5 + parent: 1 + type: Transform + - uid: 21717 + components: + - pos: 12.5,-27.5 + parent: 1 + type: Transform + - uid: 21718 + components: + - pos: 12.5,-26.5 + parent: 1 + type: Transform + - uid: 21719 + components: + - pos: 12.5,-25.5 + parent: 1 + type: Transform + - uid: 21720 + components: + - pos: 12.5,-24.5 + parent: 1 + type: Transform + - uid: 21721 + components: + - pos: 12.5,-23.5 + parent: 1 + type: Transform + - uid: 21722 + components: + - pos: 12.5,-22.5 + parent: 1 + type: Transform + - uid: 21723 + components: + - pos: 12.5,-21.5 + parent: 1 + type: Transform + - uid: 21724 + components: + - pos: 12.5,-20.5 + parent: 1 + type: Transform + - uid: 21725 + components: + - pos: 12.5,-19.5 + parent: 1 + type: Transform + - uid: 21726 + components: + - pos: 12.5,-18.5 + parent: 1 + type: Transform + - uid: 21727 + components: + - pos: 12.5,-17.5 + parent: 1 + type: Transform + - uid: 21728 + components: + - pos: 12.5,-16.5 + parent: 1 + type: Transform + - uid: 21729 + components: + - pos: 12.5,-15.5 + parent: 1 + type: Transform + - uid: 21730 + components: + - pos: 12.5,-14.5 + parent: 1 + type: Transform + - uid: 21731 + components: + - pos: 12.5,-13.5 + parent: 1 + type: Transform + - uid: 21732 + components: + - pos: 12.5,-12.5 + parent: 1 + type: Transform + - uid: 21733 + components: + - pos: 12.5,-11.5 + parent: 1 + type: Transform + - uid: 21734 + components: + - pos: 12.5,-10.5 + parent: 1 + type: Transform + - uid: 21735 + components: + - pos: 12.5,-9.5 + parent: 1 + type: Transform + - uid: 21736 + components: + - pos: 12.5,-8.5 + parent: 1 + type: Transform + - uid: 21737 + components: + - pos: 12.5,-7.5 + parent: 1 + type: Transform + - uid: 21738 + components: + - pos: 12.5,-6.5 + parent: 1 + type: Transform + - uid: 21739 + components: + - pos: 12.5,-5.5 + parent: 1 + type: Transform + - uid: 21745 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-20.5 + parent: 1 + type: Transform + - uid: 21746 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-20.5 + parent: 1 + type: Transform + - uid: 21747 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-20.5 + parent: 1 + type: Transform + - uid: 21748 + components: + - pos: 39.5,-21.5 + parent: 1 + type: Transform + - uid: 21749 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,-22.5 + parent: 1 + type: Transform + - uid: 21750 + components: + - pos: 39.5,-22.5 + parent: 1 + type: Transform + - uid: 21751 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-22.5 + parent: 1 + type: Transform + - uid: 21752 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-22.5 + parent: 1 + type: Transform + - uid: 21754 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-23.5 + parent: 1 + type: Transform + - uid: 21755 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,-22.5 + parent: 1 + type: Transform + - uid: 21756 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-23.5 + parent: 1 + type: Transform + - uid: 21757 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,-22.5 + parent: 1 + type: Transform + - uid: 21758 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,-22.5 + parent: 1 + type: Transform + - uid: 21780 + components: + - pos: 75.5,-16.5 + parent: 1 + type: Transform + - uid: 21781 + components: + - pos: 75.5,-17.5 + parent: 1 + type: Transform + - uid: 21782 + components: + - pos: 75.5,-18.5 + parent: 1 + type: Transform + - uid: 21783 + components: + - rot: -1.5707963267948966 rad + pos: 74.5,-19.5 + parent: 1 + type: Transform + - uid: 21784 + components: + - rot: -1.5707963267948966 rad + pos: 73.5,-19.5 + parent: 1 + type: Transform + - uid: 21785 + components: + - rot: -1.5707963267948966 rad + pos: 72.5,-19.5 + parent: 1 + type: Transform + - uid: 21786 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,-19.5 + parent: 1 + type: Transform + - uid: 21787 + components: + - rot: -1.5707963267948966 rad + pos: 70.5,-19.5 + parent: 1 + type: Transform + - uid: 21788 + components: + - rot: -1.5707963267948966 rad + pos: 69.5,-19.5 + parent: 1 + type: Transform + - uid: 21789 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,-19.5 + parent: 1 + type: Transform + - uid: 21790 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,-19.5 + parent: 1 + type: Transform + - uid: 21791 + components: + - rot: -1.5707963267948966 rad + pos: 66.5,-19.5 + parent: 1 + type: Transform + - uid: 21792 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,-19.5 + parent: 1 + type: Transform + - uid: 21793 + components: + - rot: -1.5707963267948966 rad + pos: 64.5,-19.5 + parent: 1 + type: Transform + - uid: 21794 + components: + - rot: -1.5707963267948966 rad + pos: 63.5,-19.5 + parent: 1 + type: Transform + - uid: 21795 + components: + - rot: -1.5707963267948966 rad + pos: 62.5,-19.5 + parent: 1 + type: Transform + - uid: 21796 + components: + - rot: -1.5707963267948966 rad + pos: 61.5,-19.5 + parent: 1 + type: Transform + - uid: 21797 + components: + - rot: -1.5707963267948966 rad + pos: 60.5,-19.5 + parent: 1 + type: Transform + - uid: 21798 + components: + - rot: -1.5707963267948966 rad + pos: 59.5,-19.5 + parent: 1 + type: Transform + - uid: 21799 + components: + - rot: -1.5707963267948966 rad + pos: 58.5,-19.5 + parent: 1 + type: Transform + - uid: 21803 + components: + - rot: 1.5707963267948966 rad + pos: 57.5,-19.5 + parent: 1 + type: Transform + - uid: 21804 + components: + - rot: 1.5707963267948966 rad + pos: 51.5,-24.5 + parent: 1 + type: Transform + - uid: 21805 + components: + - rot: 1.5707963267948966 rad + pos: 50.5,-24.5 + parent: 1 + type: Transform + - uid: 21806 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-20.5 + parent: 1 + type: Transform + - uid: 21807 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-20.5 + parent: 1 + type: Transform + - uid: 21808 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-20.5 + parent: 1 + type: Transform + - uid: 21809 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-20.5 + parent: 1 + type: Transform + - uid: 21810 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-20.5 + parent: 1 + type: Transform + - uid: 21811 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-20.5 + parent: 1 + type: Transform + - uid: 21812 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-20.5 + parent: 1 + type: Transform + - uid: 21813 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-20.5 + parent: 1 + type: Transform + - uid: 21814 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-20.5 + parent: 1 + type: Transform + - uid: 21815 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-20.5 + parent: 1 + type: Transform + - uid: 21816 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-20.5 + parent: 1 + type: Transform + - uid: 21817 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-20.5 + parent: 1 + type: Transform + - uid: 21818 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-20.5 + parent: 1 + type: Transform + - uid: 21819 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-20.5 + parent: 1 + type: Transform + - uid: 21820 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-35.5 + parent: 1 + type: Transform + - uid: 21837 + components: + - rot: 3.141592653589793 rad + pos: 109.5,6.5 + parent: 1 + type: Transform + - uid: 21838 + components: + - rot: 3.141592653589793 rad + pos: 109.5,5.5 + parent: 1 + type: Transform + - uid: 21839 + components: + - rot: 3.141592653589793 rad + pos: 109.5,4.5 + parent: 1 + type: Transform + - uid: 21840 + components: + - rot: 1.5707963267948966 rad + pos: 108.5,3.5 + parent: 1 + type: Transform + - uid: 21841 + components: + - rot: 1.5707963267948966 rad + pos: 107.5,3.5 + parent: 1 + type: Transform + - uid: 21842 + components: + - rot: 1.5707963267948966 rad + pos: 106.5,3.5 + parent: 1 + type: Transform + - uid: 21843 + components: + - rot: 1.5707963267948966 rad + pos: 105.5,3.5 + parent: 1 + type: Transform + - uid: 21844 + components: + - rot: 1.5707963267948966 rad + pos: 104.5,3.5 + parent: 1 + type: Transform + - uid: 21845 + components: + - rot: 1.5707963267948966 rad + pos: 103.5,3.5 + parent: 1 + type: Transform + - uid: 21846 + components: + - rot: 1.5707963267948966 rad + pos: 102.5,3.5 + parent: 1 + type: Transform + - uid: 21847 + components: + - rot: 1.5707963267948966 rad + pos: 101.5,3.5 + parent: 1 + type: Transform + - uid: 21848 + components: + - rot: 1.5707963267948966 rad + pos: 100.5,3.5 + parent: 1 + type: Transform + - uid: 21849 + components: + - rot: 1.5707963267948966 rad + pos: 99.5,3.5 + parent: 1 + type: Transform + - uid: 21850 + components: + - rot: 1.5707963267948966 rad + pos: 98.5,3.5 + parent: 1 + type: Transform + - uid: 21851 + components: + - rot: 1.5707963267948966 rad + pos: 97.5,3.5 + parent: 1 + type: Transform + - uid: 21852 + components: + - rot: 1.5707963267948966 rad + pos: 96.5,3.5 + parent: 1 + type: Transform + - uid: 21853 + components: + - rot: 1.5707963267948966 rad + pos: 95.5,3.5 + parent: 1 + type: Transform + - uid: 21854 + components: + - rot: 1.5707963267948966 rad + pos: 94.5,3.5 + parent: 1 + type: Transform + - uid: 21855 + components: + - rot: 1.5707963267948966 rad + pos: 93.5,3.5 + parent: 1 + type: Transform + - uid: 21856 + components: + - rot: 1.5707963267948966 rad + pos: 92.5,3.5 + parent: 1 + type: Transform + - uid: 21857 + components: + - rot: 1.5707963267948966 rad + pos: 91.5,3.5 + parent: 1 + type: Transform + - uid: 21858 + components: + - rot: 1.5707963267948966 rad + pos: 90.5,3.5 + parent: 1 + type: Transform + - uid: 21859 + components: + - rot: 1.5707963267948966 rad + pos: 89.5,3.5 + parent: 1 + type: Transform + - uid: 21860 + components: + - rot: 1.5707963267948966 rad + pos: 88.5,3.5 + parent: 1 + type: Transform + - uid: 21861 + components: + - rot: 1.5707963267948966 rad + pos: 87.5,3.5 + parent: 1 + type: Transform + - uid: 21862 + components: + - rot: 1.5707963267948966 rad + pos: 86.5,3.5 + parent: 1 + type: Transform + - uid: 21863 + components: + - rot: 1.5707963267948966 rad + pos: 85.5,3.5 + parent: 1 + type: Transform + - uid: 21865 + components: + - rot: 1.5707963267948966 rad + pos: 83.5,3.5 + parent: 1 + type: Transform + - uid: 21866 + components: + - rot: 1.5707963267948966 rad + pos: 82.5,3.5 + parent: 1 + type: Transform + - uid: 21867 + components: + - rot: 1.5707963267948966 rad + pos: 81.5,3.5 + parent: 1 + type: Transform + - uid: 21868 + components: + - rot: 1.5707963267948966 rad + pos: 80.5,3.5 + parent: 1 + type: Transform + - uid: 21869 + components: + - rot: 1.5707963267948966 rad + pos: 79.5,3.5 + parent: 1 + type: Transform + - uid: 21870 + components: + - rot: 1.5707963267948966 rad + pos: 78.5,3.5 + parent: 1 + type: Transform + - uid: 21871 + components: + - rot: 1.5707963267948966 rad + pos: 77.5,3.5 + parent: 1 + type: Transform + - uid: 21872 + components: + - rot: 1.5707963267948966 rad + pos: 76.5,3.5 + parent: 1 + type: Transform + - uid: 21873 + components: + - rot: 1.5707963267948966 rad + pos: 75.5,3.5 + parent: 1 + type: Transform + - uid: 21874 + components: + - rot: 1.5707963267948966 rad + pos: 74.5,3.5 + parent: 1 + type: Transform + - uid: 21875 + components: + - rot: 1.5707963267948966 rad + pos: 73.5,3.5 + parent: 1 + type: Transform + - uid: 21876 + components: + - rot: 1.5707963267948966 rad + pos: 72.5,3.5 + parent: 1 + type: Transform + - uid: 21877 + components: + - rot: 1.5707963267948966 rad + pos: 71.5,3.5 + parent: 1 + type: Transform + - uid: 21878 + components: + - rot: 1.5707963267948966 rad + pos: 70.5,3.5 + parent: 1 + type: Transform + - uid: 21879 + components: + - rot: 1.5707963267948966 rad + pos: 69.5,3.5 + parent: 1 + type: Transform + - uid: 21880 + components: + - rot: 1.5707963267948966 rad + pos: 68.5,3.5 + parent: 1 + type: Transform + - uid: 21881 + components: + - rot: 1.5707963267948966 rad + pos: 67.5,3.5 + parent: 1 + type: Transform + - uid: 21882 + components: + - rot: 1.5707963267948966 rad + pos: 66.5,3.5 + parent: 1 + type: Transform + - uid: 21883 + components: + - rot: 1.5707963267948966 rad + pos: 65.5,3.5 + parent: 1 + type: Transform + - uid: 21884 + components: + - rot: 1.5707963267948966 rad + pos: 64.5,3.5 + parent: 1 + type: Transform + - uid: 21885 + components: + - rot: 1.5707963267948966 rad + pos: 63.5,3.5 + parent: 1 + type: Transform + - uid: 21886 + components: + - rot: 1.5707963267948966 rad + pos: 62.5,3.5 + parent: 1 + type: Transform + - uid: 21887 + components: + - rot: 1.5707963267948966 rad + pos: 61.5,3.5 + parent: 1 + type: Transform + - uid: 21888 + components: + - rot: 1.5707963267948966 rad + pos: 60.5,3.5 + parent: 1 + type: Transform + - uid: 21889 + components: + - rot: 1.5707963267948966 rad + pos: 59.5,3.5 + parent: 1 + type: Transform + - uid: 21892 + components: + - rot: -1.5707963267948966 rad + pos: 57.5,3.5 + parent: 1 + type: Transform + - uid: 21893 + components: + - rot: -1.5707963267948966 rad + pos: 56.5,3.5 + parent: 1 + type: Transform + - uid: 21894 + components: + - rot: -1.5707963267948966 rad + pos: 55.5,3.5 + parent: 1 + type: Transform + - uid: 21895 + components: + - rot: -1.5707963267948966 rad + pos: 54.5,3.5 + parent: 1 + type: Transform + - uid: 21896 + components: + - rot: -1.5707963267948966 rad + pos: 53.5,3.5 + parent: 1 + type: Transform + - uid: 21897 + components: + - rot: -1.5707963267948966 rad + pos: 52.5,3.5 + parent: 1 + type: Transform + - uid: 21898 + components: + - rot: -1.5707963267948966 rad + pos: 51.5,3.5 + parent: 1 + type: Transform + - uid: 21899 + components: + - rot: -1.5707963267948966 rad + pos: 50.5,3.5 + parent: 1 + type: Transform + - uid: 21900 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,3.5 + parent: 1 + type: Transform + - uid: 21901 + components: + - rot: -1.5707963267948966 rad + pos: 48.5,3.5 + parent: 1 + type: Transform + - uid: 21902 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,3.5 + parent: 1 + type: Transform + - uid: 21903 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,3.5 + parent: 1 + type: Transform + - uid: 21904 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,3.5 + parent: 1 + type: Transform + - uid: 21905 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,3.5 + parent: 1 + type: Transform + - uid: 21906 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,3.5 + parent: 1 + type: Transform + - uid: 21907 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,3.5 + parent: 1 + type: Transform + - uid: 21908 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,3.5 + parent: 1 + type: Transform + - uid: 21909 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,3.5 + parent: 1 + type: Transform + - uid: 21913 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-3.5 + parent: 1 + type: Transform + - uid: 21914 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-1.5 + parent: 1 + type: Transform + - uid: 21915 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-0.5 + parent: 1 + type: Transform + - uid: 21916 + components: + - rot: 3.141592653589793 rad + pos: 39.5,0.5 + parent: 1 + type: Transform + - uid: 21917 + components: + - rot: 3.141592653589793 rad + pos: 39.5,1.5 + parent: 1 + type: Transform + - uid: 21918 + components: + - rot: 3.141592653589793 rad + pos: 39.5,2.5 + parent: 1 + type: Transform + - uid: 21919 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,-2.5 + parent: 1 + type: Transform + - uid: 21920 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-2.5 + parent: 1 + type: Transform + - uid: 21921 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-2.5 + parent: 1 + type: Transform + - uid: 21922 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-2.5 + parent: 1 + type: Transform + - uid: 21923 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-2.5 + parent: 1 + type: Transform + - uid: 21924 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-2.5 + parent: 1 + type: Transform + - uid: 21925 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-2.5 + parent: 1 + type: Transform + - uid: 21926 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-2.5 + parent: 1 + type: Transform + - uid: 21927 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-2.5 + parent: 1 + type: Transform + - uid: 21928 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-2.5 + parent: 1 + type: Transform + - uid: 21929 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-2.5 + parent: 1 + type: Transform + - uid: 21930 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-2.5 + parent: 1 + type: Transform + - uid: 21931 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-2.5 + parent: 1 + type: Transform + - uid: 21932 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-2.5 + parent: 1 + type: Transform + - uid: 21933 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-2.5 + parent: 1 + type: Transform + - uid: 21934 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-2.5 + parent: 1 + type: Transform + - uid: 21935 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-2.5 + parent: 1 + type: Transform + - uid: 21936 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-2.5 + parent: 1 + type: Transform + - uid: 21937 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-2.5 + parent: 1 + type: Transform + - uid: 21938 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-2.5 + parent: 1 + type: Transform + - uid: 21939 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-2.5 + parent: 1 + type: Transform + - uid: 21940 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-2.5 + parent: 1 + type: Transform + - uid: 21941 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-2.5 + parent: 1 + type: Transform + - uid: 21942 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 1 + type: Transform + - uid: 21943 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 1 + type: Transform + - uid: 21944 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 1 + type: Transform + - uid: 21946 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-4.5 + parent: 1 + type: Transform + - uid: 21947 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-3.5 + parent: 1 + type: Transform + - uid: 21948 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-1.5 + parent: 1 + type: Transform + - uid: 21949 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-0.5 + parent: 1 + type: Transform + - uid: 21950 + components: + - rot: 3.141592653589793 rad + pos: 12.5,0.5 + parent: 1 + type: Transform + - uid: 21951 + components: + - rot: 3.141592653589793 rad + pos: 12.5,1.5 + parent: 1 + type: Transform + - uid: 21952 + components: + - rot: 3.141592653589793 rad + pos: 12.5,2.5 + parent: 1 + type: Transform + - uid: 21953 + components: + - rot: 3.141592653589793 rad + pos: 12.5,3.5 + parent: 1 + type: Transform + - uid: 21954 + components: + - rot: 3.141592653589793 rad + pos: 12.5,4.5 + parent: 1 + type: Transform + - uid: 21955 + components: + - rot: 3.141592653589793 rad + pos: 12.5,5.5 + parent: 1 + type: Transform + - uid: 21956 + components: + - rot: 3.141592653589793 rad + pos: 12.5,6.5 + parent: 1 + type: Transform + - uid: 21957 + components: + - rot: 3.141592653589793 rad + pos: 12.5,7.5 + parent: 1 + type: Transform + - uid: 21958 + components: + - rot: 3.141592653589793 rad + pos: 12.5,8.5 + parent: 1 + type: Transform + - uid: 21959 + components: + - rot: 3.141592653589793 rad + pos: 12.5,9.5 + parent: 1 + type: Transform + - uid: 21967 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,10.5 + parent: 1 + type: Transform + - uid: 21968 + components: + - rot: 3.141592653589793 rad + pos: 10.5,11.5 + parent: 1 + type: Transform + - uid: 21969 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,10.5 + parent: 1 + type: Transform + - uid: 21970 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,10.5 + parent: 1 + type: Transform + - uid: 21971 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,10.5 + parent: 1 + type: Transform + - uid: 21972 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,10.5 + parent: 1 + type: Transform + - uid: 21973 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,10.5 + parent: 1 + type: Transform + - uid: 21974 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,10.5 + parent: 1 + type: Transform + - uid: 21975 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,10.5 + parent: 1 + type: Transform + - uid: 21991 + components: + - pos: -11.5,20.5 + parent: 1 + type: Transform + - uid: 21995 + components: + - rot: 3.141592653589793 rad + pos: -4.5,11.5 + parent: 1 + type: Transform + - uid: 21996 + components: + - rot: 3.141592653589793 rad + pos: -4.5,10.5 + parent: 1 + type: Transform + - uid: 21997 + components: + - rot: 3.141592653589793 rad + pos: -4.5,9.5 + parent: 1 + type: Transform + - uid: 21998 + components: + - rot: 3.141592653589793 rad + pos: -4.5,8.5 + parent: 1 + type: Transform + - uid: 21999 + components: + - rot: 3.141592653589793 rad + pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 22000 + components: + - rot: 3.141592653589793 rad + pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 22001 + components: + - rot: 3.141592653589793 rad + pos: -4.5,5.5 + parent: 1 + type: Transform + - uid: 22002 + components: + - rot: 3.141592653589793 rad + pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 22003 + components: + - rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 22004 + components: + - rot: 3.141592653589793 rad + pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 22005 + components: + - rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 22006 + components: + - rot: 3.141592653589793 rad + pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 22007 + components: + - rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 22008 + components: + - rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 22009 + components: + - rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 22010 + components: + - rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 22011 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 22012 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 22013 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 22014 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 22015 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 22016 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 22017 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 22018 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,2.5 + parent: 1 + type: Transform + - uid: 22019 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 22020 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,2.5 + parent: 1 + type: Transform + - uid: 22021 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,2.5 + parent: 1 + type: Transform + - uid: 22022 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,2.5 + parent: 1 + type: Transform + - uid: 22023 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,2.5 + parent: 1 + type: Transform + - uid: 22024 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,2.5 + parent: 1 + type: Transform + - uid: 22025 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,2.5 + parent: 1 + type: Transform + - uid: 22791 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,19.5 + parent: 1 + type: Transform + - uid: 22792 + components: + - rot: 3.141592653589793 rad + pos: -9.5,17.5 + parent: 1 + type: Transform + - uid: 22793 + components: + - rot: 3.141592653589793 rad + pos: -9.5,18.5 + parent: 1 + type: Transform + - uid: 22867 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-21.5 + parent: 1 + type: Transform + - uid: 22868 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-28.5 + parent: 1 + type: Transform + - uid: 22870 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-21.5 + parent: 1 + type: Transform + - uid: 22871 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-21.5 + parent: 1 + type: Transform + - uid: 23526 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-20.5 + parent: 1 + type: Transform + - uid: 23530 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-20.5 + parent: 1 + type: Transform + - uid: 23955 + components: + - rot: -1.5707963267948966 rad + pos: 100.5,5.5 + parent: 1 + type: Transform + - uid: 23982 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,16.5 + parent: 1 + type: Transform + - uid: 23983 + components: + - rot: 3.141592653589793 rad + pos: 28.5,15.5 + parent: 1 + type: Transform + - uid: 23984 + components: + - rot: 3.141592653589793 rad + pos: 28.5,14.5 + parent: 1 + type: Transform + - uid: 23985 + components: + - rot: 3.141592653589793 rad + pos: 28.5,13.5 + parent: 1 + type: Transform + - uid: 23986 + components: + - rot: 3.141592653589793 rad + pos: 28.5,12.5 + parent: 1 + type: Transform + - uid: 23987 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,11.5 + parent: 1 + type: Transform + - uid: 23988 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,11.5 + parent: 1 + type: Transform + - uid: 23989 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,11.5 + parent: 1 + type: Transform + - uid: 23990 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,11.5 + parent: 1 + type: Transform + - uid: 23991 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,11.5 + parent: 1 + type: Transform + - uid: 23996 + components: + - pos: 28.5,17.5 + parent: 1 + type: Transform + - uid: 23997 + components: + - pos: 28.5,18.5 + parent: 1 + type: Transform + - uid: 23998 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,19.5 + parent: 1 + type: Transform + - uid: 23999 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,19.5 + parent: 1 + type: Transform + - uid: 24000 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,19.5 + parent: 1 + type: Transform + - uid: 24001 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,19.5 + parent: 1 + type: Transform + - uid: 24002 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,19.5 + parent: 1 + type: Transform + - uid: 24003 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,19.5 + parent: 1 + type: Transform + - uid: 24004 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,19.5 + parent: 1 + type: Transform + - uid: 24005 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,19.5 + parent: 1 + type: Transform + - uid: 24006 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,19.5 + parent: 1 + type: Transform + - uid: 24007 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,19.5 + parent: 1 + type: Transform + - uid: 24008 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,19.5 + parent: 1 + type: Transform + - uid: 24009 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,19.5 + parent: 1 + type: Transform + - uid: 24010 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,19.5 + parent: 1 + type: Transform + - uid: 24011 + components: + - rot: 3.141592653589793 rad + pos: 42.5,20.5 + parent: 1 + type: Transform + - uid: 24012 + components: + - rot: 3.141592653589793 rad + pos: 42.5,21.5 + parent: 1 + type: Transform + - uid: 24226 + components: + - pos: 13.5,16.5 + parent: 1 + type: Transform + - uid: 24227 + components: + - pos: 13.5,15.5 + parent: 1 + type: Transform + - uid: 24228 + components: + - pos: 13.5,14.5 + parent: 1 + type: Transform + - uid: 24229 + components: + - pos: 13.5,13.5 + parent: 1 + type: Transform + - uid: 24230 + components: + - pos: 13.5,12.5 + parent: 1 + type: Transform + - uid: 24231 + components: + - pos: 13.5,11.5 + parent: 1 + type: Transform + - uid: 24232 + components: + - pos: 13.5,10.5 + parent: 1 + type: Transform + - uid: 24233 + components: + - pos: 13.5,9.5 + parent: 1 + type: Transform + - uid: 24234 + components: + - pos: 13.5,8.5 + parent: 1 + type: Transform + - uid: 24235 + components: + - pos: 13.5,7.5 + parent: 1 + type: Transform + - uid: 24236 + components: + - pos: 13.5,6.5 + parent: 1 + type: Transform + - uid: 24237 + components: + - pos: 13.5,5.5 + parent: 1 + type: Transform + - uid: 24238 + components: + - pos: 13.5,4.5 + parent: 1 + type: Transform + - uid: 24239 + components: + - pos: 13.5,3.5 + parent: 1 + type: Transform + - uid: 24240 + components: + - pos: 13.5,2.5 + parent: 1 + type: Transform + - uid: 24241 + components: + - pos: 13.5,1.5 + parent: 1 + type: Transform + - uid: 24242 + components: + - pos: 13.5,0.5 + parent: 1 + type: Transform + - uid: 24243 + components: + - pos: 13.5,-0.5 + parent: 1 + type: Transform + - uid: 24244 + components: + - pos: 13.5,-1.5 + parent: 1 + type: Transform + - uid: 24245 + components: + - pos: 13.5,-2.5 + parent: 1 + type: Transform + - uid: 24246 + components: + - pos: 13.5,-3.5 + parent: 1 + type: Transform + - uid: 24247 + components: + - pos: 13.5,-4.5 + parent: 1 + type: Transform + - uid: 24248 + components: + - pos: 13.5,-5.5 + parent: 1 + type: Transform + - uid: 24249 + components: + - pos: 13.5,-6.5 + parent: 1 + type: Transform + - uid: 24250 + components: + - pos: 13.5,-7.5 + parent: 1 + type: Transform + - uid: 24251 + components: + - pos: 13.5,-8.5 + parent: 1 + type: Transform + - uid: 24252 + components: + - pos: 13.5,-9.5 + parent: 1 + type: Transform + - uid: 24253 + components: + - pos: 13.5,-10.5 + parent: 1 + type: Transform + - uid: 24254 + components: + - pos: 13.5,-11.5 + parent: 1 + type: Transform + - uid: 24255 + components: + - pos: 13.5,-12.5 + parent: 1 + type: Transform + - uid: 24256 + components: + - pos: 13.5,-13.5 + parent: 1 + type: Transform + - uid: 24257 + components: + - pos: 13.5,-14.5 + parent: 1 + type: Transform + - uid: 24258 + components: + - pos: 13.5,-15.5 + parent: 1 + type: Transform + - uid: 24259 + components: + - pos: 13.5,-16.5 + parent: 1 + type: Transform + - uid: 24260 + components: + - pos: 13.5,-17.5 + parent: 1 + type: Transform + - uid: 24261 + components: + - pos: 13.5,-18.5 + parent: 1 + type: Transform + - uid: 24262 + components: + - pos: 13.5,-19.5 + parent: 1 + type: Transform + - uid: 24263 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,17.5 + parent: 1 + type: Transform + - uid: 24264 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,17.5 + parent: 1 + type: Transform + - uid: 24265 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,17.5 + parent: 1 + type: Transform + - uid: 24266 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,17.5 + parent: 1 + type: Transform + - uid: 24267 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,17.5 + parent: 1 + type: Transform + - uid: 24268 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,17.5 + parent: 1 + type: Transform + - uid: 24269 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,17.5 + parent: 1 + type: Transform + - uid: 24270 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,17.5 + parent: 1 + type: Transform + - uid: 24271 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,17.5 + parent: 1 + type: Transform + - uid: 24272 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,17.5 + parent: 1 + type: Transform + - uid: 24273 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,17.5 + parent: 1 + type: Transform + - uid: 24274 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,17.5 + parent: 1 + type: Transform + - uid: 24275 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,17.5 + parent: 1 + type: Transform + - uid: 24276 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,17.5 + parent: 1 + type: Transform + - uid: 24277 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,17.5 + parent: 1 + type: Transform + - uid: 24278 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,17.5 + parent: 1 + type: Transform + - uid: 24279 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,17.5 + parent: 1 + type: Transform + - uid: 24284 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,20.5 + parent: 1 + type: Transform + - uid: 24285 + components: + - pos: -4.5,19.5 + parent: 1 + type: Transform + - uid: 24286 + components: + - pos: -4.5,18.5 + parent: 1 + type: Transform + - uid: 24291 + components: + - pos: 49.5,-23.5 + parent: 1 + type: Transform + - uid: 25117 + components: + - pos: -7.5,-10.5 + parent: 1 + type: Transform + - uid: 25126 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,-21.5 + parent: 1 + type: Transform + - uid: 25132 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-28.5 + parent: 1 + type: Transform +- proto: DisposalTagger + entities: + - uid: 1989 + components: + - rot: 3.141592653589793 rad + pos: 10.5,0.5 + parent: 1 + type: Transform + - uid: 5053 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-11.5 + parent: 1 + type: Transform + - uid: 5784 + components: + - rot: -1.5707963267948966 rad + pos: 75.5,-11.5 + parent: 1 + type: Transform + - uid: 10021 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-46.5 + parent: 1 + type: Transform + - uid: 10098 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-27.5 + parent: 1 + type: Transform + - uid: 10140 + components: + - rot: -1.5707963267948966 rad + pos: 106.5,8.5 + parent: 1 + type: Transform + - uid: 10141 + components: + - rot: 3.141592653589793 rad + pos: 111.5,1.5 + parent: 1 + type: Transform + - uid: 10191 + components: + - rot: 1.5707963267948966 rad + pos: 73.5,29.5 + parent: 1 + type: Transform + - uid: 10319 + components: + - rot: -1.5707963267948966 rad + pos: 73.5,14.5 + parent: 1 + type: Transform + - uid: 10337 + components: + - pos: 85.5,-5.5 + parent: 1 + type: Transform + - uid: 10338 + components: + - rot: -1.5707963267948966 rad + pos: 77.5,-14.5 + parent: 1 + type: Transform + - uid: 10340 + components: + - rot: 3.141592653589793 rad + pos: 64.5,-12.5 + parent: 1 + type: Transform + - uid: 10415 + components: + - rot: -1.5707963267948966 rad + pos: 57.5,5.5 + parent: 1 + type: Transform + - uid: 10441 + components: + - rot: 3.141592653589793 rad + pos: 40.5,3.5 + parent: 1 + type: Transform + - uid: 10454 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-11.5 + parent: 1 + type: Transform + - uid: 10456 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-5.5 + parent: 1 + type: Transform + - uid: 10458 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-10.5 + parent: 1 + type: Transform + - uid: 10523 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 10563 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,44.5 + parent: 1 + type: Transform + - uid: 10565 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,43.5 + parent: 1 + type: Transform + - uid: 10566 + components: + - rot: 3.141592653589793 rad + pos: 22.5,40.5 + parent: 1 + type: Transform + - uid: 10567 + components: + - rot: 3.141592653589793 rad + pos: 24.5,40.5 + parent: 1 + type: Transform + - uid: 10601 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 1 + type: Transform + - uid: 10632 + components: + - pos: 16.5,13.5 + parent: 1 + type: Transform + - uid: 10703 + components: + - pos: -25.5,4.5 + parent: 1 + type: Transform + - uid: 10714 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,22.5 + parent: 1 + type: Transform + - uid: 10715 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,8.5 + parent: 1 + type: Transform + - uid: 10716 + components: + - rot: 3.141592653589793 rad + pos: -40.5,2.5 + parent: 1 + type: Transform + - uid: 11111 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-27.5 + parent: 1 + type: Transform + - uid: 14450 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 19605 + components: + - pos: 8.5,24.5 + parent: 1 + type: Transform + - uid: 23959 + components: + - rot: 3.141592653589793 rad + pos: 29.5,15.5 + parent: 1 + type: Transform + - uid: 23972 + components: + - rot: 3.141592653589793 rad + pos: 31.5,15.5 + parent: 1 + type: Transform + - uid: 23993 + components: + - pos: 42.5,22.5 + parent: 1 + type: Transform + - uid: 24281 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,20.5 + parent: 1 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 1990 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-0.5 + parent: 1 + type: Transform + - uid: 4750 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-11.5 + parent: 1 + type: Transform + - uid: 5770 + components: + - pos: 72.5,-12.5 + parent: 1 + type: Transform + - uid: 6914 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,14.5 + parent: 1 + type: Transform + - uid: 10022 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-46.5 + parent: 1 + type: Transform + - uid: 10097 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-27.5 + parent: 1 + type: Transform + - uid: 10113 + components: + - pos: -21.5,15.5 + parent: 1 + type: Transform + - uid: 10138 + components: + - rot: 3.141592653589793 rad + pos: 111.5,0.5 + parent: 1 + type: Transform + - uid: 10139 + components: + - rot: -1.5707963267948966 rad + pos: 107.5,8.5 + parent: 1 + type: Transform + - uid: 10190 + components: + - rot: 1.5707963267948966 rad + pos: 72.5,29.5 + parent: 1 + type: Transform + - uid: 10307 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,31.5 + parent: 1 + type: Transform + - uid: 10318 + components: + - rot: -1.5707963267948966 rad + pos: 74.5,14.5 + parent: 1 + type: Transform + - uid: 10333 + components: + - rot: -1.5707963267948966 rad + pos: 86.5,-4.5 + parent: 1 + type: Transform + - uid: 10334 + components: + - pos: 78.5,-13.5 + parent: 1 + type: Transform + - uid: 10335 + components: + - rot: 3.141592653589793 rad + pos: 64.5,-13.5 + parent: 1 + type: Transform + - uid: 10336 + components: + - rot: 3.141592653589793 rad + pos: 76.5,-12.5 + parent: 1 + type: Transform + - uid: 10414 + components: + - rot: -1.5707963267948966 rad + pos: 58.5,5.5 + parent: 1 + type: Transform + - uid: 10440 + components: + - rot: 3.141592653589793 rad + pos: 40.5,2.5 + parent: 1 + type: Transform + - uid: 10452 + components: + - pos: 43.5,-9.5 + parent: 1 + type: Transform + - uid: 10453 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-6.5 + parent: 1 + type: Transform + - uid: 10455 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-11.5 + parent: 1 + type: Transform + - uid: 10522 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 10559 + components: + - rot: 3.141592653589793 rad + pos: 24.5,39.5 + parent: 1 + type: Transform + - uid: 10560 + components: + - rot: 3.141592653589793 rad + pos: 22.5,39.5 + parent: 1 + type: Transform + - uid: 10562 + components: + - rot: 3.141592653589793 rad + pos: 1.5,43.5 + parent: 1 + type: Transform + - uid: 10564 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,43.5 + parent: 1 + type: Transform + - uid: 10597 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 10602 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 1 + type: Transform + - uid: 10631 + components: + - pos: 16.5,14.5 + parent: 1 + type: Transform + - uid: 10698 + components: + - pos: -25.5,5.5 + parent: 1 + type: Transform + - uid: 10706 + components: + - pos: -40.5,3.5 + parent: 1 + type: Transform + - uid: 10708 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,22.5 + parent: 1 + type: Transform + - uid: 10709 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,8.5 + parent: 1 + type: Transform + - uid: 11336 + components: + - rot: 3.141592653589793 rad + pos: 29.5,14.5 + parent: 1 + type: Transform + - uid: 12558 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-27.5 + parent: 1 + type: Transform + - uid: 16277 + components: + - rot: -1.5707963267948966 rad + pos: 86.5,-20.5 + parent: 1 + type: Transform + - uid: 16283 + components: + - rot: 1.5707963267948966 rad + pos: 80.5,-20.5 + parent: 1 + type: Transform + - uid: 18157 + components: + - pos: 23.5,-32.5 + parent: 1 + type: Transform + - uid: 18158 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-35.5 + parent: 1 + type: Transform + - uid: 19606 + components: + - pos: 8.5,25.5 + parent: 1 + type: Transform + - uid: 21592 + components: + - rot: 3.141592653589793 rad + pos: -14.5,0.5 + parent: 1 + type: Transform + - uid: 21594 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-20.5 + parent: 1 + type: Transform + - uid: 21597 + components: + - pos: -43.5,3.5 + parent: 1 + type: Transform + - uid: 21657 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,42.5 + parent: 1 + type: Transform + - uid: 21696 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-46.5 + parent: 1 + type: Transform + - uid: 21835 + components: + - pos: 109.5,7.5 + parent: 1 + type: Transform + - uid: 21890 + components: + - rot: 3.141592653589793 rad + pos: 58.5,2.5 + parent: 1 + type: Transform + - uid: 21912 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-4.5 + parent: 1 + type: Transform + - uid: 21976 + components: + - pos: -11.5,21.5 + parent: 1 + type: Transform + - uid: 23958 + components: + - rot: 3.141592653589793 rad + pos: 31.5,14.5 + parent: 1 + type: Transform + - uid: 23992 + components: + - pos: 42.5,23.5 + parent: 1 + type: Transform + - uid: 24280 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,20.5 + parent: 1 + type: Transform +- proto: DisposalUnit + entities: + - uid: 902 + components: + - pos: 8.5,25.5 + parent: 1 + type: Transform + - uid: 1194 + components: + - pos: -3.5,18.5 + parent: 1 + type: Transform + - uid: 1679 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 3212 + components: + - pos: 10.5,-0.5 + parent: 1 + type: Transform + - uid: 3239 + components: + - pos: 42.5,23.5 + parent: 1 + type: Transform + - uid: 3955 + components: + - pos: 22.5,-11.5 + parent: 1 + type: Transform + - uid: 4105 + components: + - pos: 34.5,-6.5 + parent: 1 + type: Transform + - uid: 4114 + components: + - pos: 15.5,43.5 + parent: 1 + type: Transform + - uid: 4437 + components: + - pos: 107.5,8.5 + parent: 1 + type: Transform + - uid: 5316 + components: + - pos: 72.5,29.5 + parent: 1 + type: Transform + - uid: 5785 + components: + - pos: 76.5,-12.5 + parent: 1 + type: Transform + - uid: 6498 + components: + - pos: -43.5,22.5 + parent: 1 + type: Transform + - uid: 6795 + components: + - pos: -45.5,8.5 + parent: 1 + type: Transform + - uid: 6834 + components: + - pos: -53.5,-27.5 + parent: 1 + type: Transform + - uid: 7066 + components: + - pos: 16.5,14.5 + parent: 1 + type: Transform + - uid: 7134 + components: + - pos: 74.5,14.5 + parent: 1 + type: Transform + - uid: 7269 + components: + - pos: 24.5,39.5 + parent: 1 + type: Transform + - uid: 7282 + components: + - pos: 22.5,39.5 + parent: 1 + type: Transform + - uid: 7358 + components: + - pos: 64.5,-13.5 + parent: 1 + type: Transform + - uid: 7602 + components: + - pos: 78.5,-13.5 + parent: 1 + type: Transform + - uid: 7667 + components: + - pos: 86.5,-4.5 + parent: 1 + type: Transform + - uid: 9388 + components: + - pos: 9.5,-46.5 + parent: 1 + type: Transform + - uid: 9462 + components: + - pos: 9.5,-27.5 + parent: 1 + type: Transform + - uid: 9508 + components: + - pos: 31.5,14.5 + parent: 1 + type: Transform + - uid: 10132 + components: + - pos: -18.5,-0.5 + parent: 1 + type: Transform + - uid: 10136 + components: + - pos: 43.5,-9.5 + parent: 1 + type: Transform + - uid: 10137 + components: + - pos: 111.5,0.5 + parent: 1 + type: Transform + - uid: 10411 + components: + - pos: 58.5,5.5 + parent: 1 + type: Transform + - uid: 10439 + components: + - pos: 40.5,2.5 + parent: 1 + type: Transform + - uid: 10561 + components: + - pos: 1.5,43.5 + parent: 1 + type: Transform + - uid: 10702 + components: + - pos: -25.5,5.5 + parent: 1 + type: Transform + - uid: 10707 + components: + - pos: -40.5,3.5 + parent: 1 + type: Transform + - uid: 11204 + components: + - pos: 29.5,14.5 + parent: 1 + type: Transform + - uid: 14449 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 16276 + components: + - pos: 86.5,-20.5 + parent: 1 + type: Transform + - uid: 18155 + components: + - pos: 24.5,-35.5 + parent: 1 + type: Transform + - uid: 18156 + components: + - pos: 23.5,-32.5 + parent: 1 + type: Transform + - uid: 25116 + components: + - pos: -9.5,-11.5 + parent: 1 + type: Transform +- proto: DisposalYJunction + entities: + - uid: 2708 + components: + - rot: 3.141592653589793 rad + pos: 101.5,4.5 + parent: 1 + type: Transform + - uid: 3431 + components: + - rot: -1.5707963267948966 rad + pos: 70.5,8.5 + parent: 1 + type: Transform + - uid: 10130 + components: + - rot: 3.141592653589793 rad + pos: -26.5,3.5 + parent: 1 + type: Transform + - uid: 10470 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-3.5 + parent: 1 + type: Transform + - uid: 10751 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,0.5 + parent: 1 + type: Transform + - uid: 10753 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,1.5 + parent: 1 + type: Transform + - uid: 21656 + components: + - pos: -14.5,2.5 + parent: 1 + type: Transform + - uid: 21911 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-2.5 + parent: 1 + type: Transform +- proto: DogBed + entities: + - uid: 1292 + components: + - pos: -20.5,18.5 + parent: 1 + type: Transform + - uid: 1643 + components: + - pos: 32.5,-16.5 + parent: 1 + type: Transform + - uid: 2013 + components: + - pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 7168 + components: + - pos: 78.5,15.5 + parent: 1 + type: Transform + - uid: 7169 + components: + - pos: 79.5,10.5 + parent: 1 + type: Transform + - uid: 7595 + components: + - pos: 82.5,-7.5 + parent: 1 + type: Transform + - uid: 10036 + components: + - pos: 31.5,-35.5 + parent: 1 + type: Transform + - uid: 12096 + components: + - pos: 61.5,16.5 + parent: 1 + type: Transform + - uid: 12377 + components: + - pos: -36.5,-23.5 + parent: 1 + type: Transform + - uid: 13165 + components: + - pos: 105.5,-2.5 + parent: 1 + type: Transform + - uid: 23775 + components: + - pos: -57.5,38.5 + parent: 1 + type: Transform + - uid: 24311 + components: + - pos: -2.5,14.5 + parent: 1 + type: Transform + - uid: 24313 + components: + - pos: -1.5,17.5 + parent: 1 + type: Transform + - uid: 24314 + components: + - pos: 1.5,17.5 + parent: 1 + type: Transform + - uid: 24315 + components: + - pos: 1.5,14.5 + parent: 1 + type: Transform +- proto: DonkpocketBoxSpawner + entities: + - uid: 5897 + components: + - rot: 1.5707963267948966 rad + pos: -60.5,-27.5 + parent: 1 + type: Transform + - uid: 6801 + components: + - rot: 3.141592653589793 rad + pos: -47.5,6.5 + parent: 1 + type: Transform + - uid: 7316 + components: + - pos: 26.5,46.5 + parent: 1 + type: Transform + - uid: 7615 + components: + - rot: 3.141592653589793 rad + pos: 86.5,-15.5 + parent: 1 + type: Transform + - uid: 10031 + components: + - pos: 29.5,-34.5 + parent: 1 + type: Transform +- proto: DoorElectronics + entities: + - uid: 5021 + components: + - rot: 3.141592653589793 rad + pos: 54.50168,-1.4936614 + parent: 1 + type: Transform + - uid: 16394 + components: + - rot: 1.5707963267948966 rad + pos: -12.669046,-16.402218 + parent: 1 + type: Transform + - uid: 16395 + components: + - rot: 1.5707963267948966 rad + pos: -12.481546,-16.402218 + parent: 1 + type: Transform + - uid: 16396 + components: + - rot: 1.5707963267948966 rad + pos: -12.28363,-16.402218 + parent: 1 + type: Transform +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 6838 + components: + - pos: -62.46547,-3.4541855 + parent: 1 + type: Transform +- proto: Dresser + entities: + - uid: 1059 + components: + - pos: -5.5,23.5 + parent: 1 + type: Transform + - uid: 4751 + components: + - pos: 5.5,51.5 + parent: 1 + type: Transform + - uid: 5712 + components: + - pos: 79.5,-4.5 + parent: 1 + type: Transform + - uid: 6837 + components: + - pos: -59.5,-3.5 + parent: 1 + type: Transform + - uid: 7242 + components: + - pos: 30.5,45.5 + parent: 1 + type: Transform + - uid: 7243 + components: + - pos: 30.5,43.5 + parent: 1 + type: Transform + - uid: 7447 + components: + - pos: 19.5,50.5 + parent: 1 + type: Transform + - uid: 7589 + components: + - pos: 82.5,-8.5 + parent: 1 + type: Transform + - uid: 7978 + components: + - pos: -2.5,-38.5 + parent: 1 + type: Transform + - uid: 7979 + components: + - pos: -7.5,-39.5 + parent: 1 + type: Transform + - uid: 7980 + components: + - pos: 4.5,-36.5 + parent: 1 + type: Transform + - uid: 7985 + components: + - pos: 4.5,-32.5 + parent: 1 + type: Transform + - uid: 7986 + components: + - pos: -5.5,-33.5 + parent: 1 + type: Transform + - uid: 9434 + components: + - pos: 29.5,-32.5 + parent: 1 + type: Transform + - uid: 9435 + components: + - pos: 31.5,-32.5 + parent: 1 + type: Transform + - uid: 12367 + components: + - pos: -36.5,-24.5 + parent: 1 + type: Transform + - uid: 13418 + components: + - pos: 106.5,-2.5 + parent: 1 + type: Transform + - uid: 16575 + components: + - pos: 49.5,28.5 + parent: 1 + type: Transform + - uid: 16900 + components: + - pos: -19.5,19.5 + parent: 1 + type: Transform +- proto: DresserFilled + entities: + - uid: 6778 + components: + - pos: -61.5,-21.5 + parent: 1 + type: Transform + - uid: 25302 + components: + - pos: 3.5,-7.5 + parent: 1 + type: Transform +- proto: Drill + entities: + - uid: 15748 + components: + - pos: -43.57649,-6.493457 + parent: 1 + type: Transform +- proto: DrinkBeerBottleFull + entities: + - uid: 12028 + components: + - pos: -57.670776,-27.07588 + parent: 1 + type: Transform + - uid: 24579 + components: + - pos: -98.17742,11.275116 + parent: 1 + type: Transform +- proto: DrinkBeerglass + entities: + - uid: 1950 + components: + - pos: 5.3586493,-14.464472 + parent: 1 + type: Transform + - uid: 1951 + components: + - pos: 6.6451077,-15.263985 + parent: 1 + type: Transform + - uid: 2806 + components: + - pos: 23.692081,21.633636 + parent: 1 + type: Transform + - uid: 6373 + components: + - rot: -1.5707963267948966 rad + pos: -43.578865,14.865518 + parent: 1 + type: Transform + - uid: 11199 + components: + - pos: 23.285831,21.956778 + parent: 1 + type: Transform + - uid: 11708 + components: + - pos: 36.424103,44.224632 + parent: 1 + type: Transform + - uid: 11710 + components: + - pos: 36.71577,44.037003 + parent: 1 + type: Transform +- proto: DrinkBottleBeer + entities: + - uid: 1326 + components: + - pos: 33.777027,41.44867 + parent: 1 + type: Transform + - uid: 1345 + components: + - pos: 33.53744,41.73011 + parent: 1 + type: Transform + - uid: 1360 + components: + - pos: 33.78744,42.001137 + parent: 1 + type: Transform + - uid: 1456 + components: + - pos: 33.995777,42.3347 + parent: 1 + type: Transform + - uid: 1458 + components: + - pos: 34.66244,41.43824 + parent: 1 + type: Transform + - uid: 1459 + components: + - pos: 34.22494,41.43824 + parent: 1 + type: Transform + - uid: 1461 + components: + - pos: 34.433277,41.73011 + parent: 1 + type: Transform + - uid: 1593 + components: + - pos: 33.308277,41.44867 + parent: 1 + type: Transform + - uid: 1594 + components: + - pos: 33.995777,41.73011 + parent: 1 + type: Transform + - uid: 1595 + components: + - pos: 34.20411,41.990707 + parent: 1 + type: Transform + - uid: 1952 + components: + - pos: 5.6430244,-14.152797 + parent: 1 + type: Transform + - uid: 1953 + components: + - pos: 8.297191,-14.681289 + parent: 1 + type: Transform + - uid: 1954 + components: + - pos: 4.898233,-15.873783 + parent: 1 + type: Transform + - uid: 6370 + components: + - pos: -39.672615,10.539597 + parent: 1 + type: Transform + - uid: 6371 + components: + - pos: -39.255947,9.778651 + parent: 1 + type: Transform + - uid: 6372 + components: + - rot: -1.5707963267948966 rad + pos: -36.162197,9.142793 + parent: 1 + type: Transform + - uid: 6690 + components: + - pos: -58.660362,-27.909794 + parent: 1 + type: Transform + - uid: 6829 + components: + - rot: -1.5707963267948966 rad + pos: -47.879345,-30.846125 + parent: 1 + type: Transform + - uid: 11227 + components: + - rot: -1.5707963267948966 rad + pos: 22.726366,-41.8498 + parent: 1 + type: Transform + - uid: 11241 + components: + - pos: 26.809698,-41.28691 + parent: 1 + type: Transform + - uid: 11711 + components: + - pos: 32.642857,47.07036 + parent: 1 + type: Transform + - uid: 13224 + components: + - rot: 3.141592653589793 rad + pos: 50.043926,35.495667 + parent: 1 + type: Transform + - uid: 13225 + components: + - rot: -1.5707963267948966 rad + pos: 50.40674,35.109985 + parent: 1 + type: Transform + - uid: 16296 + components: + - pos: 32.19369,42.449364 + parent: 1 + type: Transform + - uid: 16297 + components: + - pos: 32.464527,42.428513 + parent: 1 + type: Transform + - uid: 16298 + components: + - pos: 32.745777,42.428513 + parent: 1 + type: Transform + - uid: 16299 + components: + - pos: 32.69369,42.564026 + parent: 1 + type: Transform + - uid: 16300 + components: + - pos: 32.44369,42.616142 + parent: 1 + type: Transform + - uid: 16301 + components: + - pos: 32.277027,42.60572 + parent: 1 + type: Transform +- proto: DrinkBottleGin + entities: + - uid: 7275 + components: + - rot: -1.5707963267948966 rad + pos: 14.908306,40.16279 + parent: 1 + type: Transform +- proto: DrinkBottleWine + entities: + - uid: 13791 + components: + - pos: 19.82444,-33.28376 + parent: 1 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 50 + reagents: + - data: null + ReagentId: Wine + Quantity: 20 + type: SolutionContainerManager +- proto: DrinkCafeLatte + entities: + - uid: 6611 + components: + - pos: -54.47772,-3.2833414 + parent: 1 + type: Transform + - uid: 16327 + components: + - pos: 30.30329,-19.432161 + parent: 1 + type: Transform +- proto: DrinkCoffee + entities: + - uid: 1536 + components: + - pos: 11.320305,-35.22158 + parent: 1 + type: Transform +- proto: DrinkCognacBottleFull + entities: + - uid: 9579 + components: + - pos: 99.25794,-1.6807303 + parent: 1 + type: Transform +- proto: DrinkColaCan + entities: + - uid: 25307 + components: + - pos: -3.235735,-13.252408 + parent: 1 + type: Transform +- proto: DrinkCreamCarton + entities: + - uid: 7130 + components: + - flags: InContainer + type: MetaData + - parent: 5188 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: DrinkDemonsBlood + entities: + - uid: 7442 + components: + - pos: 18.514585,49.00737 + parent: 1 + type: Transform +- proto: DrinkDoctorsDelightGlass + entities: + - uid: 12052 + components: + - pos: 78.97465,-9.304186 + parent: 1 + type: Transform +- proto: DrinkDrGibbCan + entities: + - uid: 16266 + components: + - pos: 79.12795,-18.164505 + parent: 1 + type: Transform + - uid: 23445 + components: + - rot: 1.5707963267948966 rad + pos: 29.152899,30.123432 + parent: 1 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 30 + reagents: + - data: null + ReagentId: DrGibb + Quantity: 5 + type: SolutionContainerManager +- proto: DrinkEnergyDrinkCan + entities: + - uid: 2780 + components: + - pos: 17.674093,23.807158 + parent: 1 + type: Transform +- proto: DrinkFlask + entities: + - uid: 1417 + components: + - pos: 105.10592,10.028619 + parent: 1 + type: Transform +- proto: DrinkFlaskOld + entities: + - uid: 572 + components: + - pos: 105.67883,8.892412 + parent: 1 + type: Transform +- proto: DrinkFourteenLokoCan + entities: + - uid: 6950 + components: + - pos: 23.731945,-6.251623 + parent: 1 + type: Transform + - uid: 12892 + components: + - pos: 31.938263,-38.169594 + parent: 1 + type: Transform + - uid: 12893 + components: + - pos: 32.052845,-38.336372 + parent: 1 + type: Transform + - uid: 12894 + components: + - pos: 32.271595,-38.263405 + parent: 1 + type: Transform +- proto: DrinkGinBottleFull + entities: + - uid: 4014 + components: + - pos: 59.3819,18.447964 + parent: 1 + type: Transform +- proto: DrinkGlass + entities: + - uid: 4017 + components: + - pos: 59.611065,18.791954 + parent: 1 + type: Transform + - uid: 4018 + components: + - pos: 59.590233,18.635595 + parent: 1 + type: Transform + - uid: 7369 + components: + - pos: 81.40749,-3.3975677 + parent: 1 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 30 + reagents: + - data: null + ReagentId: Water + Quantity: 20 + type: SolutionContainerManager + - uid: 16768 + components: + - pos: -14.695928,-26.212587 + parent: 1 + type: Transform + - uid: 16769 + components: + - pos: -14.716761,-26.41064 + parent: 1 + type: Transform + - uid: 16770 + components: + - pos: -14.445928,-26.43149 + parent: 1 + type: Transform + - uid: 25305 + components: + - pos: -3.7461514,-13.169017 + parent: 1 + type: Transform + - uid: 25306 + components: + - pos: -3.7461514,-13.429615 + parent: 1 + type: Transform +- proto: DrinkGoldenCup + entities: + - uid: 9565 + components: + - pos: 99.49753,-1.1386874 + parent: 1 + type: Transform +- proto: DrinkGreenTea + entities: + - uid: 16162 + components: + - pos: 40.412754,-38.177513 + parent: 1 + type: Transform + - uid: 16163 + components: + - pos: 40.43359,-38.563194 + parent: 1 + type: Transform +- proto: DrinkHosFlask + entities: + - uid: 3432 + components: + - pos: 104.3209,9.694909 + parent: 1 + type: Transform +- proto: DrinkHotCoco + entities: + - uid: 9540 + components: + - pos: -14.638422,-15.221292 + parent: 1 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 20 + reagents: + - data: null + ReagentId: CafeLatte + Quantity: 20 + type: SolutionContainerManager + - uid: 9541 + components: + - pos: -14.596755,-15.440193 + parent: 1 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 20 + reagents: + - data: null + ReagentId: CafeLatte + Quantity: 20 + type: SolutionContainerManager + - uid: 9542 + components: + - pos: -14.378005,-15.294259 + parent: 1 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 20 + reagents: + - data: null + ReagentId: CafeLatte + Quantity: 20 + type: SolutionContainerManager +- proto: DrinkLean + entities: + - uid: 6963 + components: + - pos: 28.238142,-13.303317 + parent: 1 + type: Transform +- proto: DrinkLithiumFlask + entities: + - uid: 943 + components: + - pos: 104.32467,8.798597 + parent: 1 + type: Transform +- proto: DrinkMilkCarton + entities: + - uid: 877 + components: + - flags: InContainer + type: MetaData + - parent: 866 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 7119 + components: + - pos: 89.58452,18.72035 + parent: 1 + type: Transform + - uid: 22486 + components: + - flags: InContainer + type: MetaData + - parent: 22485 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 22487 + components: + - flags: InContainer + type: MetaData + - parent: 22485 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 22488 + components: + - flags: InContainer + type: MetaData + - parent: 22485 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: DrinkMug + entities: + - uid: 21571 + components: + - pos: -34.67506,-24.485846 + parent: 1 + type: Transform +- proto: DrinkMugBlack + entities: + - uid: 2269 + components: + - flags: InContainer + type: MetaData + - parent: 2225 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 21575 + components: + - pos: 94.41432,17.48118 + parent: 1 + type: Transform +- proto: DrinkMugBlue + entities: + - uid: 3306 + components: + - flags: InContainer + type: MetaData + - parent: 3283 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 21574 + components: + - pos: 71.92055,15.666405 + parent: 1 + type: Transform +- proto: DrinkMugDog + entities: + - uid: 2645 + components: + - pos: 45.231533,-0.37790203 + parent: 1 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 10 + reagents: + - data: null + ReagentId: IrishCoffee + Quantity: 10 + type: SolutionContainerManager + - uid: 16566 + components: + - pos: 59.379887,35.874664 + parent: 1 + type: Transform +- proto: DrinkMugGreen + entities: + - uid: 21568 + components: + - pos: 41.70841,-12.132897 + parent: 1 + type: Transform +- proto: DrinkMugHeart + entities: + - uid: 6682 + components: + - pos: -56.233276,-22.240541 + parent: 1 + type: Transform + - uid: 21573 + components: + - pos: 56.64321,7.7987776 + parent: 1 + type: Transform +- proto: DrinkMugMetal + entities: + - uid: 3800 + components: + - pos: 104.32467,7.8395977 + parent: 1 + type: Transform + - uid: 5380 + components: + - flags: InContainer + type: MetaData + - parent: 5373 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5391 + components: + - flags: InContainer + type: MetaData + - parent: 5383 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5400 + components: + - flags: InContainer + type: MetaData + - parent: 5392 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5404 + components: + - flags: InContainer + type: MetaData + - parent: 5402 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5421 + components: + - flags: InContainer + type: MetaData + - parent: 5411 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: DrinkMugMoebius + entities: + - uid: 16565 + components: + - pos: 58.556973,43.54666 + parent: 1 + type: Transform + - uid: 21572 + components: + - pos: 48.39026,-30.511705 + parent: 1 + type: Transform +- proto: DrinkMugOne + entities: + - uid: 7320 + components: + - pos: 26.055088,42.640915 + parent: 1 + type: Transform + - uid: 21576 + components: + - pos: 79.93222,-9.23833 + parent: 1 + type: Transform +- proto: DrinkMugRainbow + entities: + - uid: 16564 + components: + - pos: 53.494473,38.564034 + parent: 1 + type: Transform + - uid: 21569 + components: + - pos: 13.631291,0.78336287 + parent: 1 + type: Transform +- proto: DrinkMugRed + entities: + - uid: 21570 + components: + - pos: -44.701485,17.81727 + parent: 1 + type: Transform +- proto: DrinkPatronBottleFull + entities: + - uid: 6962 + components: + - pos: 27.768757,-13.216571 + parent: 1 + type: Transform +- proto: DrinkRamen + entities: + - uid: 11201 + components: + - pos: 18.385384,14.778911 + parent: 1 + type: Transform +- proto: DrinkRumBottleFull + entities: + - uid: 6961 + components: + - pos: 27.393757,-12.987246 + parent: 1 + type: Transform +- proto: DrinkShaker + entities: + - uid: 7228 + components: + - pos: 32.298016,14.546186 + parent: 1 + type: Transform +- proto: DrinkShamblersJuiceCan + entities: + - uid: 992 + components: + - pos: 3.772728,25.981157 + parent: 1 + type: Transform +- proto: DrinkShinyFlask + entities: + - uid: 2257 + components: + - pos: 105.67883,8.068924 + parent: 1 + type: Transform +- proto: DrinkShotGlass + entities: + - uid: 2893 + components: + - pos: 37.681255,20.463312 + parent: 1 + type: Transform + - uid: 2897 + components: + - pos: 37.462505,20.67179 + parent: 1 + type: Transform +- proto: DrinkSodaWaterCan + entities: + - uid: 12270 + components: + - pos: -19.703102,-28.562073 + parent: 1 + type: Transform +- proto: DrinkSojuBottleFull + entities: + - uid: 9580 + components: + - pos: 99.518364,-1.8162413 + parent: 1 + type: Transform +- proto: DrinkSoyLatte + entities: + - uid: 21492 + components: + - pos: 31.784077,-11.20978 + parent: 1 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 30 + reagents: + - data: null + ReagentId: SoyLatte + Quantity: 25 + type: SolutionContainerManager +- proto: DrinkSpaceGlue + entities: + - uid: 6006 + components: + - rot: 3.141592653589793 rad + pos: -29.421528,-20.517176 + parent: 1 + type: Transform +- proto: DrinkSpaceMountainWindBottleFull + entities: + - uid: 7148 + components: + - pos: 72.68402,18.784573 + parent: 1 + type: Transform +- proto: DrinkSpaceMountainWindCan + entities: + - uid: 12910 + components: + - pos: 25.690462,-40.87864 + parent: 1 + type: Transform +- proto: DrinkTeacup + entities: + - uid: 16164 + components: + - pos: 41.787754,-38.469383 + parent: 1 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 20 + reagents: [] + type: SolutionContainerManager + - tags: + - Trash + type: Tag + - uid: 16165 + components: + - pos: 41.80859,-38.219208 + parent: 1 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 20 + reagents: [] + type: SolutionContainerManager + - tags: + - Trash + type: Tag +- proto: DrinkTeapot + entities: + - uid: 16167 + components: + - pos: 41.756504,-38.271324 + parent: 1 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 100 + reagents: + - data: null + ReagentId: GreenTea + Quantity: 60 + type: SolutionContainerManager +- proto: DrinkTonicWaterCan + entities: + - uid: 4015 + components: + - pos: 59.298565,18.072702 + parent: 1 + type: Transform + - uid: 4016 + components: + - pos: 59.402733,17.90592 + parent: 1 + type: Transform +- proto: DrinkVacuumFlask + entities: + - uid: 1334 + components: + - pos: 105.75175,9.507423 + parent: 1 + type: Transform +- proto: DrinkVodkaBottleFull + entities: + - uid: 15908 + components: + - pos: -25.678839,46.704834 + parent: 1 + type: Transform +- proto: DrinkWaterBottleFull + entities: + - uid: 2646 + components: + - pos: 44.4732,-0.22884035 + parent: 1 + type: Transform + - uid: 22647 + components: + - pos: 91.49845,-3.2642536 + parent: 1 + type: Transform +- proto: DrinkWaterCup + entities: + - uid: 5737 + components: + - pos: 76.70503,-2.4207878 + parent: 1 + type: Transform + - uid: 5738 + components: + - pos: 76.42378,-2.3582444 + parent: 1 + type: Transform + - uid: 7140 + components: + - pos: 66.24004,20.548227 + parent: 1 + type: Transform + - uid: 7549 + components: + - pos: 44.095543,12.537891 + parent: 1 + type: Transform + - uid: 7550 + components: + - pos: 44.053875,12.746369 + parent: 1 + type: Transform + - uid: 12464 + components: + - pos: 3.23453,-42.472122 + parent: 1 + type: Transform + - uid: 12466 + components: + - pos: 3.51578,-42.399155 + parent: 1 + type: Transform + - uid: 16558 + components: + - pos: 47.349255,38.84548 + parent: 1 + type: Transform + - uid: 16559 + components: + - pos: 47.505505,38.70997 + parent: 1 + type: Transform + - uid: 22670 + components: + - pos: 91.57224,24.83334 + parent: 1 + type: Transform + - uid: 22671 + components: + - pos: 91.72849,24.62486 + parent: 1 + type: Transform +- proto: DrinkWaterJug + entities: + - uid: 15786 + components: + - pos: -60.247425,7.954986 + parent: 1 + type: Transform + - uid: 16260 + components: + - pos: 77.868195,-17.174234 + parent: 1 + type: Transform + - uid: 22763 + components: + - rot: 3.141592653589793 rad + pos: -29.60062,19.42717 + parent: 1 + type: Transform +- proto: DrinkWineBottleFull + entities: + - uid: 9581 + components: + - pos: 99.705864,-1.6911547 + parent: 1 + type: Transform +- proto: DrinkWineGlass + entities: + - uid: 2018 + components: + - pos: 5.4387593,-9.092099 + parent: 1 + type: Transform + - uid: 13792 + components: + - pos: 19.69944,-33.66944 + parent: 1 + type: Transform + - uid: 16066 + components: + - pos: -17.534447,45.00467 + parent: 1 + type: Transform + - uid: 16067 + components: + - pos: -17.346947,44.671097 + parent: 1 + type: Transform + - uid: 22813 + components: + - pos: -58.27776,36.62818 + parent: 1 + type: Transform +- proto: Dropper + entities: + - uid: 21777 + components: + - rot: -1.5707963267948966 rad + pos: 73.280594,-12.399387 + parent: 1 + type: Transform + - uid: 21778 + components: + - rot: -1.5707963267948966 rad + pos: 73.41601,-12.409811 + parent: 1 + type: Transform +- proto: EggBoxBroken + entities: + - uid: 15826 + components: + - rot: -1.5707963267948966 rad + pos: 21.872974,26.959959 + parent: 1 + type: Transform +- proto: EmergencyLight + entities: + - uid: 915 + components: + - pos: 27.5,12.5 + parent: 1 + type: Transform + - uid: 3052 + components: + - pos: 22.5,19.5 + parent: 1 + type: Transform + - uid: 5441 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-44.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 5593 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,-17.5 + parent: 1 + type: Transform + - uid: 12584 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,-26.5 + parent: 1 + type: Transform + - uid: 14402 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - uid: 15956 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-49.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 15957 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-17.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 17352 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 22066 + components: + - pos: -42.5,-23.5 + parent: 1 + type: Transform + - uid: 22484 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-49.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22501 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22502 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-13.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22503 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-8.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22504 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22505 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22507 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22508 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22509 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-3.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22510 + components: + - pos: 9.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22511 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22512 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-8.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22513 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22514 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22515 + components: + - pos: 31.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22516 + components: + - pos: 32.5,4.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22517 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22520 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22521 + components: + - pos: 10.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22522 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22523 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22524 + components: + - pos: 26.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22526 + components: + - rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22527 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22528 + components: + - pos: -27.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22529 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,12.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22530 + components: + - rot: 3.141592653589793 rad + pos: -24.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22531 + components: + - pos: -16.5,12.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22532 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22533 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-0.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22534 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22535 + components: + - rot: 1.5707963267948966 rad + pos: -61.5,4.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22536 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,10.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22537 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,4.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22538 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22539 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22540 + components: + - rot: 3.141592653589793 rad + pos: -48.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22541 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22543 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22546 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-25.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22547 + components: + - pos: -40.5,-27.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22548 + components: + - rot: 3.141592653589793 rad + pos: 46.5,2.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22549 + components: + - pos: 61.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22550 + components: + - rot: 1.5707963267948966 rad + pos: 69.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22551 + components: + - rot: 1.5707963267948966 rad + pos: 62.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22552 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22553 + components: + - pos: 73.5,-8.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22554 + components: + - rot: 1.5707963267948966 rad + pos: 60.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22555 + components: + - rot: 3.141592653589793 rad + pos: 83.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22556 + components: + - pos: 80.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22557 + components: + - rot: 1.5707963267948966 rad + pos: 83.5,-3.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22558 + components: + - rot: 3.141592653589793 rad + pos: 91.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22559 + components: + - pos: 83.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22560 + components: + - rot: -1.5707963267948966 rad + pos: 101.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22561 + components: + - pos: 106.5,11.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22562 + components: + - rot: 1.5707963267948966 rad + pos: 108.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22563 + components: + - rot: 1.5707963267948966 rad + pos: 99.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22564 + components: + - rot: 1.5707963267948966 rad + pos: 104.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22565 + components: + - rot: -1.5707963267948966 rad + pos: 124.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22566 + components: + - rot: 1.5707963267948966 rad + pos: 121.5,2.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22567 + components: + - rot: 1.5707963267948966 rad + pos: 127.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22568 + components: + - rot: 1.5707963267948966 rad + pos: 127.5,2.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 22576 + components: + - rot: 1.5707963267948966 rad + pos: 63.5,10.5 + parent: 1 + type: Transform + - uid: 22577 + components: + - rot: -1.5707963267948966 rad + pos: 74.5,13.5 + parent: 1 + type: Transform + - uid: 22578 + components: + - pos: 71.5,22.5 + parent: 1 + type: Transform + - uid: 22580 + components: + - rot: 3.141592653589793 rad + pos: 81.5,14.5 + parent: 1 + type: Transform + - uid: 22581 + components: + - rot: 1.5707963267948966 rad + pos: 86.5,20.5 + parent: 1 + type: Transform + - uid: 23918 + components: + - pos: 71.5,27.5 + parent: 1 + type: Transform + - uid: 24298 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-38.5 + parent: 1 + type: Transform + - uid: 24299 + components: + - pos: 9.5,-32.5 + parent: 1 + type: Transform + - uid: 24300 + components: + - pos: 14.5,-32.5 + parent: 1 + type: Transform + - uid: 24301 + components: + - pos: 25.5,-39.5 + parent: 1 + type: Transform + - uid: 24302 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-42.5 + parent: 1 + type: Transform + - uid: 24303 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-24.5 + parent: 1 + type: Transform + - uid: 24304 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-24.5 + parent: 1 + type: Transform + - uid: 24305 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,21.5 + parent: 1 + type: Transform + - uid: 24306 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,16.5 + parent: 1 + type: Transform + - uid: 24307 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,23.5 + parent: 1 + type: Transform + - uid: 24308 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,19.5 + parent: 1 + type: Transform + - uid: 25546 + components: + - rot: 1.5707963267948966 rad + pos: -76.5,1.5 + parent: 1 + type: Transform + - uid: 25547 + components: + - rot: 1.5707963267948966 rad + pos: -68.5,-0.5 + parent: 1 + type: Transform + - uid: 25548 + components: + - rot: 1.5707963267948966 rad + pos: -68.5,8.5 + parent: 1 + type: Transform + - uid: 25549 + components: + - pos: -5.5,-11.5 + parent: 1 + type: Transform + - uid: 25707 + components: + - pos: 26.5,50.5 + parent: 1 + type: Transform +- proto: EmergencyOxygenTankFilled + entities: + - uid: 2804 + components: + - pos: 31.338951,27.680017 + parent: 1 + type: Transform +- proto: Emitter + entities: + - uid: 24361 + components: + - pos: -98.5,7.5 + parent: 1 + type: Transform + - uid: 24362 + components: + - pos: -97.5,7.5 + parent: 1 + type: Transform + - uid: 24363 + components: + - pos: -98.5,5.5 + parent: 1 + type: Transform + - uid: 24364 + components: + - pos: -97.5,5.5 + parent: 1 + type: Transform + - uid: 24365 + components: + - pos: -98.5,1.5 + parent: 1 + type: Transform + - uid: 24366 + components: + - pos: -97.5,1.5 + parent: 1 + type: Transform + - uid: 24523 + components: + - rot: -1.5707963267948966 rad + pos: -80.5,8.5 + parent: 1 + type: Transform + - uid: 24528 + components: + - rot: -1.5707963267948966 rad + pos: -80.5,0.5 + parent: 1 + type: Transform + - uid: 25575 + components: + - rot: 3.141592653589793 rad + pos: -83.5,-2.5 + parent: 1 + type: Transform +- proto: EmptyFlashlightLantern + entities: + - uid: 22743 + components: + - pos: -13.006062,36.40738 + parent: 1 + type: Transform +- proto: EncryptionKeyCargo + entities: + - uid: 6540 + components: + - flags: InContainer + type: MetaData + - parent: 6538 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyCommand + entities: + - uid: 6533 + components: + - flags: InContainer + type: MetaData + - parent: 6532 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyCommon + entities: + - uid: 6542 + components: + - flags: InContainer + type: MetaData + - parent: 6541 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyEngineering + entities: + - uid: 6530 + components: + - flags: InContainer + type: MetaData + - parent: 6529 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyMedical + entities: + - uid: 6417 + components: + - flags: InContainer + type: MetaData + - parent: 6415 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyRobo + entities: + - uid: 6531 + components: + - flags: InContainer + type: MetaData + - parent: 6529 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyScience + entities: + - uid: 6537 + components: + - flags: InContainer + type: MetaData + - parent: 6536 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeySecurity + entities: + - uid: 6535 + components: + - flags: InContainer + type: MetaData + - parent: 6534 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyService + entities: + - uid: 6539 + components: + - flags: InContainer + type: MetaData + - parent: 6538 + type: Transform + - canCollide: False + type: Physics +- proto: ExosuitFabricator + entities: + - uid: 7339 + components: + - pos: 28.5,48.5 + parent: 1 + type: Transform +- proto: ExplosivesSignMed + entities: + - uid: 25246 + components: + - pos: 104.5,24.5 + parent: 1 + type: Transform + - uid: 25247 + components: + - pos: 106.5,24.5 + parent: 1 + type: Transform +- proto: ExtendedEmergencyOxygenTankFilled + entities: + - uid: 25284 + components: + - rot: 3.141592653589793 rad + pos: 104.57382,26.508682 + parent: 1 + type: Transform + - uid: 25286 + components: + - rot: 3.141592653589793 rad + pos: 104.42799,26.654617 + parent: 1 + type: Transform +- proto: ExtinguisherCabinetFilled + entities: + - uid: 796 + components: + - pos: 4.5,22.5 + parent: 1 + type: Transform + - uid: 1101 + components: + - rot: 3.141592653589793 rad + pos: 2.5,42.5 + parent: 1 + type: Transform + - uid: 5448 + components: + - pos: 74.5,19.5 + parent: 1 + type: Transform + - uid: 6508 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,33.5 + parent: 1 + type: Transform + - uid: 6675 + components: + - pos: -39.5,-26.5 + parent: 1 + type: Transform + - uid: 23932 + components: + - pos: -11.5,-1.5 + parent: 1 + type: Transform + - uid: 23933 + components: + - pos: 36.5,-1.5 + parent: 1 + type: Transform + - uid: 23934 + components: + - pos: 27.5,27.5 + parent: 1 + type: Transform + - uid: 23935 + components: + - pos: -16.5,16.5 + parent: 1 + type: Transform + - uid: 23936 + components: + - pos: -49.5,3.5 + parent: 1 + type: Transform + - uid: 23938 + components: + - pos: 69.5,-13.5 + parent: 1 + type: Transform + - uid: 23939 + components: + - pos: 101.5,8.5 + parent: 1 + type: Transform + - uid: 25673 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-45.5 + parent: 1 + type: Transform + - uid: 25674 + components: + - rot: 3.141592653589793 rad + pos: 14.5,4.5 + parent: 1 + type: Transform + - uid: 25675 + components: + - pos: 60.5,1.5 + parent: 1 + type: Transform + - uid: 25676 + components: + - pos: 9.5,28.5 + parent: 1 + type: Transform +- proto: FaxMachineBase + entities: + - uid: 2122 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - name: 'Head of Personnel ' + type: FaxMachine + - uid: 2125 + components: + - pos: 1.5,-11.5 + parent: 1 + type: Transform + - name: Service Room + type: FaxMachine + - uid: 2556 + components: + - pos: -43.5,7.5 + parent: 1 + type: Transform + - name: Engineering + type: FaxMachine + - uid: 2860 + components: + - pos: 42.5,-9.5 + parent: 1 + type: Transform + - name: Nyanotrasen News + type: FaxMachine + - uid: 4726 + components: + - pos: 107.5,9.5 + parent: 1 + type: Transform + - name: Bridge + type: FaxMachine + - uid: 5355 + components: + - pos: 4.5,42.5 + parent: 1 + type: Transform + - name: Epistemics + type: FaxMachine + - uid: 6430 + components: + - pos: -44.5,22.5 + parent: 1 + type: Transform + - name: Atmospherics + type: FaxMachine + - uid: 7532 + components: + - pos: 43.5,12.5 + parent: 1 + type: Transform + - name: Lawyer's Office + type: FaxMachine + - uid: 7677 + components: + - pos: 83.5,-13.5 + parent: 1 + type: Transform + - name: Medical + type: FaxMachine + - uid: 13836 + components: + - pos: 24.5,-33.5 + parent: 1 + type: Transform + - name: Honk! + type: FaxMachine + - uid: 16803 + components: + - pos: 57.5,42.5 + parent: 1 + type: Transform + - uid: 16804 + components: + - pos: 66.5,11.5 + parent: 1 + type: Transform + - name: Security + type: FaxMachine + - uid: 25318 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - name: Cargo + type: FaxMachine + - uid: 25613 + components: + - pos: -41.5,-30.5 + parent: 1 + type: Transform + - name: Salvage + type: FaxMachine +- proto: FigureSpawner + entities: + - uid: 3970 + components: + - pos: 33.5,-14.5 + parent: 1 + type: Transform + - uid: 3971 + components: + - pos: 33.5,-15.5 + parent: 1 + type: Transform + - uid: 3972 + components: + - pos: 33.5,-15.5 + parent: 1 + type: Transform + - uid: 3973 + components: + - pos: 34.5,-15.5 + parent: 1 + type: Transform + - uid: 3974 + components: + - pos: 34.5,-15.5 + parent: 1 + type: Transform + - uid: 3975 + components: + - pos: 34.5,-14.5 + parent: 1 + type: Transform + - uid: 15761 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-6.5 + parent: 1 + type: Transform + - uid: 16049 + components: + - pos: -6.5,35.5 + parent: 1 + type: Transform + - uid: 22616 + components: + - pos: 54.5,-19.5 + parent: 1 + type: Transform +- proto: filingCabinet + entities: + - uid: 16561 + components: + - pos: 59.5,41.5 + parent: 1 + type: Transform +- proto: filingCabinetDrawer + entities: + - uid: 1786 + components: + - pos: -10.5,51.5 + parent: 1 + type: Transform +- proto: filingCabinetDrawerRandom + entities: + - uid: 536 + components: + - pos: -11.5,48.5 + parent: 1 + type: Transform + - uid: 2001 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 2850 + components: + - pos: 41.5,-14.5 + parent: 1 + type: Transform + - uid: 3111 + components: + - pos: 41.5,12.5 + parent: 1 + type: Transform + - uid: 5065 + components: + - pos: -58.5,-24.5 + parent: 1 + type: Transform + - uid: 5732 + components: + - pos: 72.5,-4.5 + parent: 1 + type: Transform + - uid: 5809 + components: + - pos: -46.5,-35.5 + parent: 1 + type: Transform + - uid: 6668 + components: + - pos: -57.5,-24.5 + parent: 1 + type: Transform + - uid: 7323 + components: + - pos: -5.5,41.5 + parent: 1 + type: Transform + - uid: 7580 + components: + - pos: 79.5,-6.5 + parent: 1 + type: Transform + - uid: 15788 + components: + - pos: -58.5,11.5 + parent: 1 + type: Transform + - uid: 16489 + components: + - pos: 57.5,35.5 + parent: 1 + type: Transform + - uid: 18555 + components: + - pos: -61.5,10.5 + parent: 1 + type: Transform + - uid: 23919 + components: + - pos: 74.5,18.5 + parent: 1 + type: Transform +- proto: filingCabinetRandom + entities: + - uid: 2002 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 5733 + components: + - pos: 73.5,-6.5 + parent: 1 + type: Transform + - uid: 6598 + components: + - pos: -53.5,0.5 + parent: 1 + type: Transform + - uid: 6994 + components: + - pos: 47.5,8.5 + parent: 1 + type: Transform + - uid: 6995 + components: + - pos: 47.5,7.5 + parent: 1 + type: Transform + - uid: 16352 + components: + - pos: 33.227615,-18.442406 + parent: 1 + type: Transform + - uid: 23923 + components: + - pos: 74.5,12.5 + parent: 1 + type: Transform +- proto: filingCabinetTallRandom + entities: + - uid: 4403 + components: + - pos: 42.5,12.5 + parent: 1 + type: Transform + - uid: 5735 + components: + - pos: 73.5,-5.5 + parent: 1 + type: Transform + - uid: 16353 + components: + - pos: 33.738033,-18.45283 + parent: 1 + type: Transform +- proto: FireAlarm + entities: + - uid: 11 + components: + - pos: 20.5,13.5 + parent: 1 + type: Transform + - devices: + - 22114 + - 7027 + - 7026 + - 7025 + - 14222 + - 5205 + - 5217 + - 22076 + - 5230 + - 5229 + - 22067 + - 7036 + - 7038 + - 7037 + - 22153 + - 22150 + - 22151 + - 24187 + - 1295 + - 11341 + - 24209 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 12 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 1 + type: Transform + - devices: + - 22046 + - 9251 + - 22055 + - 22083 + - 1310 + - 22082 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 19 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-1.5 + parent: 1 + type: Transform + - devices: + - 22080 + - 22195 + - 22055 + - 22193 + - 22156 + - 9302 + - 22179 + - 9301 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 23 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,5.5 + parent: 1 + type: Transform + - devices: + - 22214 + - 22215 + - 22213 + - 22212 + - 22217 + - 22216 + - 22231 + - 22232 + - 25298 + - 22218 + - 22206 + - 22209 + - 22207 + - 22219 + - 25542 + - 25541 + - 25540 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 595 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-13.5 + parent: 1 + type: Transform + - devices: + - 15173 + - 22109 + - 22056 + - 22107 + - 22104 + - 9258 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 11419 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-35.5 + parent: 1 + type: Transform + - devices: + - 21779 + - 11407 + - 14388 + - 14390 + - 14392 + - 9237 + - 7043 + - 9239 + - 9240 + - 9241 + - 14393 + - 14391 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 12572 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 1 + type: Transform + - devices: + - 11407 + - 5237 + - 5236 + - 22056 + - 22058 + - 22063 + - 9250 + - 15173 + - 5232 + - 5233 + - 5234 + - 22076 + - 22075 + - 22074 + - 22073 + - 15196 + - 1310 + - 9253 + - 9252 + - 22062 + - 9251 + - 22055 + - 22057 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 12574 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + type: Transform + - devices: + - 12585 + - 25393 + - 22062 + - 22082 + - 22046 + - 9252 + - 9253 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 12575 + components: + - pos: -11.5,6.5 + parent: 1 + type: Transform + - devices: + - 22080 + - 9303 + - 22176 + - 25395 + - 22174 + - 9302 + - 22179 + - 1560 + - 15839 + - 14228 + - 1871 + - 22067 + - 24217 + - 7032 + - 7033 + - 7034 + - 16866 + - 7562 + - 7555 + - 22076 + - 9110 + - 9109 + - 12585 + - 25396 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 12579 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-10.5 + parent: 1 + type: Transform + - devices: + - 12585 + - 20796 + - 22156 + - 9303 + - 22176 + - 25395 + - 22174 + - 22195 + - 22055 + - 22194 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 19617 + components: + - pos: 9.5,-22.5 + parent: 1 + type: Transform + - devices: + - 11411 + - 14388 + - 14390 + - 14391 + - 14393 + - 14389 + - 5236 + - 5237 + - 14394 + - 22046 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 19625 + components: + - pos: 16.5,26.5 + parent: 1 + type: Transform + - devices: + - 15255 + - 24202 + - 11341 + - 24200 + - 24201 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22034 + components: + - pos: 20.5,-45.5 + parent: 1 + type: Transform + - devices: + - 22026 + - 22028 + - 22030 + - 22031 + - 9237 + - 7043 + - 9239 + - 9240 + - 9241 + - 22032 + - 11411 + - 14392 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22039 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-42.5 + parent: 1 + type: Transform + - devices: + - 22026 + - 22028 + - 21779 + - 22036 + - 9239 + - 9240 + - 9241 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22077 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-7.5 + parent: 1 + type: Transform + - devices: + - 22056 + - 22079 + - 22046 + - 9250 + - 15173 + - 9254 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22090 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,1.5 + parent: 1 + type: Transform + - devices: + - 22046 + - 22075 + - 22074 + - 22073 + - 15196 + - 14222 + - 22069 + - 22068 + - 5230 + - 5229 + - 22156 + - 9110 + - 9109 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22093 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-12.5 + parent: 1 + type: Transform + - devices: + - 15173 + - 9256 + - 9255 + - 22056 + - 22091 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22097 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-10.5 + parent: 1 + type: Transform + - devices: + - 15173 + - 9257 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22112 + components: + - rot: 3.141592653589793 rad + pos: 43.5,-8.5 + parent: 1 + type: Transform + - devices: + - 23611 + - 22104 + - 15173 + - 22105 + - 22056 + - 22106 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22115 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,8.5 + parent: 1 + type: Transform + - devices: + - 15173 + - 5222 + - 5223 + - 22076 + - 22069 + - 22068 + - 5217 + - 5205 + - 22114 + - 5206 + - 5226 + - 5224 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22118 + components: + - pos: 30.5,-1.5 + parent: 1 + type: Transform + - devices: + - 22109 + - 22105 + - 23611 + - 9258 + - 22095 + - 9257 + - 22092 + - 9256 + - 9255 + - 22063 + - 9254 + - 22046 + - 5232 + - 5233 + - 5234 + - 14222 + - 5223 + - 5222 + - 22114 + - 7020 + - 7019 + - 7018 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22121 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,11.5 + parent: 1 + type: Transform + - devices: + - 22114 + - 9277 + - 15255 + - 10546 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22129 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,7.5 + parent: 1 + type: Transform + - devices: + - 15173 + - 7020 + - 7019 + - 7018 + - 22131 + - 1558 + - 1548 + - 15255 + - 22132 + - 22056 + - 22133 + - 22120 + - 9277 + - 22068 + - 7027 + - 7026 + - 7025 + - 14222 + - 5206 + - 5224 + - 5226 + - 24203 + - 24208 + - 11341 + - 24210 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22158 + components: + - pos: 1.5,13.5 + parent: 1 + type: Transform + - devices: + - 22156 + - 15154 + - 22149 + - 7032 + - 7033 + - 7034 + - 16866 + - 7562 + - 7555 + - 22068 + - 7036 + - 7038 + - 7037 + - 22153 + - 22142 + - 15160 + - 22160 + - 14213 + - 24187 + - 24197 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22183 + components: + - rot: 3.141592653589793 rad + pos: -27.5,1.5 + parent: 1 + type: Transform + - devices: + - 22156 + - 1871 + - 14228 + - 15839 + - 1560 + - 22159 + - 9293 + - 22142 + - 22171 + - 22173 + - 7030 + - 7029 + - 22055 + - 22172 + - 22174 + - 9301 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22188 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,11.5 + parent: 1 + type: Transform + - devices: + - 22160 + - 22189 + - 22179 + - 9293 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22191 + components: + - rot: 3.141592653589793 rad + pos: -24.5,13.5 + parent: 1 + type: Transform + - devices: + - 22067 + - 14213 + - 22142 + - 22192 + - 22159 + - 22189 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22205 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-0.5 + parent: 1 + type: Transform + - devices: + - 22206 + - 9299 + - 9298 + - 9297 + - 9296 + - 22207 + - 22203 + - 22179 + - 7029 + - 7030 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22211 + components: + - rot: 3.141592653589793 rad + pos: -46.5,-3.5 + parent: 1 + type: Transform + - devices: + - 22208 + - 22209 + - 22173 + - 9299 + - 9298 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22236 + components: + - rot: 3.141592653589793 rad + pos: -37.5,8.5 + parent: 1 + type: Transform + - devices: + - 22208 + - 22212 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22238 + components: + - rot: 3.141592653589793 rad + pos: -55.5,-4.5 + parent: 1 + type: Transform + - devices: + - 22208 + - 22232 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22248 + components: + - rot: 3.141592653589793 rad + pos: -39.5,21.5 + parent: 1 + type: Transform + - devices: + - 22208 + - 22215 + - 22243 + - 22246 + - 22244 + - 22245 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22251 + components: + - pos: 15.5,35.5 + parent: 1 + type: Transform + - devices: + - 22253 + - 22257 + - 22153 + - 7023 + - 7022 + - 22258 + - 22252 + - 22261 + - 22260 + - 9290 + - 9289 + - 22262 + - 9288 + - 22263 + - 9287 + - 22264 + - 9285 + - 9286 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22270 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,43.5 + parent: 1 + type: Transform + - devices: + - 22143 + - 9285 + - 9286 + - 22253 + - 25142 + - 25830 + - 25831 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22305 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,50.5 + parent: 1 + type: Transform + - devices: + - 22143 + - 9287 + - 22259 + - 22266 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22307 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,48.5 + parent: 1 + type: Transform + - devices: + - 22143 + - 9288 + - 25719 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22321 + components: + - rot: 3.141592653589793 rad + pos: -7.5,41.5 + parent: 1 + type: Transform + - devices: + - 22261 + - 22309 + - 22308 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22344 + components: + - pos: 57.5,6.5 + parent: 1 + type: Transform + - devices: + - 22334 + - 9276 + - 9275 + - 22337 + - 9267 + - 9266 + - 9265 + - 9264 + - 22325 + - 22323 + - 22114 + - 1548 + - 1558 + - 22324 + - 22322 + - 22338 + - 9273 + - 9272 + - 22342 + - 9274 + - 9270 + - 9271 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22348 + components: + - rot: 1.5707963267948966 rad + pos: 61.5,-4.5 + parent: 1 + type: Transform + - devices: + - 22353 + - 22351 + - 22350 + - 22349 + - 22337 + - 9262 + - 9261 + - 9260 + - 9259 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22355 + components: + - rot: 1.5707963267948966 rad + pos: 65.5,-15.5 + parent: 1 + type: Transform + - devices: + - 22362 + - 22357 + - 22356 + - 22363 + - 22364 + - 22361 + - 22358 + - 22359 + - 22360 + - 22352 + - 22351 + - 22350 + - 22349 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22366 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,-16.5 + parent: 1 + type: Transform + - devices: + - 22368 + - 22367 + - 22353 + - 22364 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22377 + components: + - rot: -1.5707963267948966 rad + pos: 77.5,-8.5 + parent: 1 + type: Transform + - devices: + - 22362 + - 22373 + - 22372 + - 22371 + - 22370 + - 22353 + - 22360 + - 22359 + - 22358 + - 22374 + - 22375 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22379 + components: + - rot: -1.5707963267948966 rad + pos: 78.5,-5.5 + parent: 1 + type: Transform + - devices: + - 22337 + - 9263 + - 22361 + - 22375 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22403 + components: + - rot: 1.5707963267948966 rad + pos: 83.5,-5.5 + parent: 1 + type: Transform + - devices: + - 22362 + - 22397 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22404 + components: + - rot: -1.5707963267948966 rad + pos: 82.5,-11.5 + parent: 1 + type: Transform + - devices: + - 22362 + - 22398 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22406 + components: + - rot: 3.141592653589793 rad + pos: 74.5,-16.5 + parent: 1 + type: Transform + - devices: + - 22353 + - 22356 + - 22357 + - 22368 + - 22407 + - 22400 + - 22397 + - 22399 + - 22398 + - 22361 + - 22373 + - 22372 + - 22371 + - 22370 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22409 + components: + - rot: 3.141592653589793 rad + pos: 90.5,1.5 + parent: 1 + type: Transform + - devices: + - 22412 + - 22335 + - 22410 + - 9268 + - 9269 + - 22411 + - 22131 + - 9276 + - 9275 + - 8390 + - 6140 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22422 + components: + - rot: 1.5707963267948966 rad + pos: 93.5,1.5 + parent: 1 + type: Transform + - devices: + - 22334 + - 9268 + - 9269 + - 22413 + - 22417 + - 22414 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22424 + components: + - rot: 3.141592653589793 rad + pos: 106.5,2.5 + parent: 1 + type: Transform + - devices: + - 22414 + - 22435 + - 22410 + - 22417 + - 22418 + - 22419 + - 13847 + - 14796 + - 14795 + - 13848 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22425 + components: + - pos: 101.5,12.5 + parent: 1 + type: Transform + - devices: + - 22410 + - 22413 + - 22435 + - 22411 + - 22415 + - 8390 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22428 + components: + - rot: 3.141592653589793 rad + pos: 104.5,-0.5 + parent: 1 + type: Transform + - devices: + - 22413 + - 22419 + - 22412 + - 22420 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22437 + components: + - rot: 1.5707963267948966 rad + pos: 62.5,10.5 + parent: 1 + type: Transform + - devices: + - 22131 + - 9273 + - 9272 + - 22342 + - 22340 + - 22339 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22451 + components: + - rot: 1.5707963267948966 rad + pos: 79.5,14.5 + parent: 1 + type: Transform + - devices: + - 22342 + - 22445 + - 22446 + - 22442 + - 22449 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22453 + components: + - rot: 1.5707963267948966 rad + pos: 85.5,19.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 22457 + components: + - rot: 1.5707963267948966 rad + pos: 68.5,17.5 + parent: 1 + type: Transform + - devices: + - 22338 + - 22340 + - 22339 + - 22341 + - 22131 + - 9271 + - 9270 + - 9274 + - 22441 + - 22446 + - 22445 + - 22442 + - 22455 + - 22438 + - 22460 + - 22461 + - 25328 + - 25327 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 22459 + components: + - pos: 81.5,30.5 + parent: 1 + type: Transform + - devices: + - 22342 + - 22460 + - 22461 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 23937 + components: + - rot: 3.141592653589793 rad + pos: -2.5,38.5 + parent: 1 + type: Transform + - devices: + - 22143 + - 22260 + - 9290 + - 9289 + - 15557 + - 22308 + - 22309 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 24190 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,16.5 + parent: 1 + type: Transform + - devices: + - 22068 + - 1295 + - 24188 + - 1296 + - 24195 + - 22067 + - 24197 + - 22142 + - 14403 + - 24194 + - 24196 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 24192 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,21.5 + parent: 1 + type: Transform + - devices: + - 22142 + - 14404 + - 24187 + - 24193 + - 24195 + - 1296 + - 22153 + - 1427 + - 1426 + - 1335 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 24199 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,24.5 + parent: 1 + type: Transform + - devices: + - 24188 + - 1427 + - 1426 + - 1335 + - 22068 + - 22151 + - 22150 + - 15255 + - 22128 + - 22143 + - 7023 + - 7022 + - 22142 + - 22141 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 24212 + components: + - pos: 19.5,20.5 + parent: 1 + type: Transform + - devices: + - 24211 + - 24200 + - 24201 + - 22068 + - 24209 + - 22114 + - 24210 + - 24203 + - 24204 + - 24205 + - 15255 + - 24206 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 24215 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,17.5 + parent: 1 + type: Transform + - devices: + - 11341 + - 24204 + - 24205 + - 22114 + - 24208 + - 15255 + - 24207 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 25330 + components: + - rot: 1.5707963267948966 rad + pos: 58.5,19.5 + parent: 1 + type: Transform + - devices: + - 22324 + - 25127 + - 22342 + - 25327 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 25390 + components: + - rot: 1.5707963267948966 rad + pos: -77.5,9.5 + parent: 1 + type: Transform + - devices: + - 22217 + - 25391 + - 25392 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 25544 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-19.5 + parent: 1 + type: Transform + - devices: + - 22208 + - 25541 + - 25540 + - 25552 + - 25538 + - 25298 + - 25539 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 25559 + components: + - rot: 3.141592653589793 rad + pos: -46.5,-26.5 + parent: 1 + type: Transform + - devices: + - 25557 + - 25555 + - 22225 + - 25556 + - 25656 + - 25655 + - 25670 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 25561 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,-26.5 + parent: 1 + type: Transform + - devices: + - 22224 + - 25555 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 25562 + components: + - rot: 1.5707963267948966 rad + pos: 61.5,-0.5 + parent: 1 + type: Transform + - devices: + - 22352 + - 9261 + - 9260 + - 9259 + - 9262 + - 22131 + - 9264 + - 9265 + - 9266 + - 9267 + - 22374 + - 9263 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice + - uid: 25672 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-40.5 + parent: 1 + type: Transform + - devices: + - 22224 + - 25656 + - 25655 + type: DeviceList + - joinedGrid: 1 + type: AtmosDevice +- proto: FireAlarmElectronics + entities: + - uid: 16392 + components: + - pos: -12.65863,-17.329947 + parent: 1 + type: Transform +- proto: FireAxeCabinetFilled + entities: + - uid: 6507 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,23.5 + parent: 1 + type: Transform + - uid: 9591 + components: + - pos: 106.5,5.5 + parent: 1 + type: Transform +- proto: FireExtinguisher + entities: + - uid: 15789 + components: + - rot: -1.5707963267948966 rad + pos: -59.693645,7.624932 + parent: 1 + type: Transform +- proto: Firelock + entities: + - uid: 1302 + components: + - pos: 88.5,-17.5 + parent: 1 + type: Transform + - uid: 1303 + components: + - pos: 88.5,-18.5 + parent: 1 + type: Transform + - uid: 6140 + components: + - pos: 92.5,11.5 + parent: 1 + type: Transform + - uid: 6927 + components: + - pos: -10.5,15.5 + parent: 1 + type: Transform + - uid: 6966 + components: + - pos: -17.5,-33.5 + parent: 1 + type: Transform + - uid: 10546 + components: + - pos: 48.5,12.5 + parent: 1 + type: Transform + - uid: 12861 + components: + - pos: 38.5,-21.5 + parent: 1 + type: Transform + - uid: 12932 + components: + - pos: 45.5,23.5 + parent: 1 + type: Transform + - uid: 14213 + components: + - pos: -16.5,15.5 + parent: 1 + type: Transform + - uid: 14389 + components: + - pos: 18.5,-29.5 + parent: 1 + type: Transform + - uid: 14394 + components: + - pos: 5.5,-29.5 + parent: 1 + type: Transform + - uid: 14403 + components: + - pos: -8.5,26.5 + parent: 1 + type: Transform + - uid: 14404 + components: + - pos: 2.5,26.5 + parent: 1 + type: Transform + - uid: 15160 + components: + - pos: -14.5,24.5 + parent: 1 + type: Transform + - uid: 17006 + components: + - pos: 46.5,-25.5 + parent: 1 + type: Transform + - uid: 17037 + components: + - pos: 46.5,-24.5 + parent: 1 + type: Transform + - uid: 19360 + components: + - pos: 38.5,-20.5 + parent: 1 + type: Transform + - uid: 20796 + components: + - pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 22031 + components: + - pos: -6.5,-47.5 + parent: 1 + type: Transform + - uid: 22032 + components: + - pos: 31.5,-47.5 + parent: 1 + type: Transform + - uid: 22036 + components: + - pos: 34.5,-40.5 + parent: 1 + type: Transform + - uid: 22057 + components: + - pos: 9.5,-20.5 + parent: 1 + type: Transform + - uid: 22058 + components: + - pos: 14.5,-20.5 + parent: 1 + type: Transform + - uid: 22079 + components: + - pos: 20.5,-13.5 + parent: 1 + type: Transform + - uid: 22083 + components: + - pos: 2.5,-18.5 + parent: 1 + type: Transform + - uid: 22091 + components: + - pos: 24.5,-14.5 + parent: 1 + type: Transform + - uid: 22106 + components: + - pos: 48.5,-7.5 + parent: 1 + type: Transform + - uid: 22107 + components: + - pos: 46.5,-10.5 + parent: 1 + type: Transform + - uid: 22128 + components: + - pos: 14.5,27.5 + parent: 1 + type: Transform + - uid: 22132 + components: + - pos: 50.5,6.5 + parent: 1 + type: Transform + - uid: 22133 + components: + - pos: 50.5,1.5 + parent: 1 + type: Transform + - uid: 22141 + components: + - pos: 9.5,27.5 + parent: 1 + type: Transform + - uid: 22171 + components: + - pos: -26.5,6.5 + parent: 1 + type: Transform + - uid: 22172 + components: + - pos: -26.5,1.5 + parent: 1 + type: Transform + - uid: 22189 + components: + - pos: -17.5,13.5 + parent: 1 + type: Transform + - uid: 22192 + components: + - pos: -25.5,14.5 + parent: 1 + type: Transform + - uid: 22193 + components: + - pos: -15.5,-6.5 + parent: 1 + type: Transform + - uid: 22194 + components: + - pos: -12.5,-9.5 + parent: 1 + type: Transform + - uid: 22203 + components: + - pos: -36.5,-0.5 + parent: 1 + type: Transform + - uid: 22216 + components: + - pos: -52.5,14.5 + parent: 1 + type: Transform + - uid: 22218 + components: + - pos: -52.5,-5.5 + parent: 1 + type: Transform + - uid: 22219 + components: + - pos: -49.5,-5.5 + parent: 1 + type: Transform + - uid: 22244 + components: + - pos: -34.5,32.5 + parent: 1 + type: Transform + - uid: 22245 + components: + - pos: -35.5,25.5 + parent: 1 + type: Transform + - uid: 22246 + components: + - pos: -50.5,37.5 + parent: 1 + type: Transform + - uid: 22257 + components: + - pos: 16.5,36.5 + parent: 1 + type: Transform + - uid: 22258 + components: + - pos: 7.5,36.5 + parent: 1 + type: Transform + - uid: 22260 + components: + - pos: 7.5,40.5 + parent: 1 + type: Transform + - uid: 22266 + components: + - pos: 22.5,51.5 + parent: 1 + type: Transform + - uid: 22268 + components: + - pos: -1.5,38.5 + parent: 1 + type: Transform + - uid: 22322 + components: + - pos: 59.5,6.5 + parent: 1 + type: Transform + - uid: 22323 + components: + - pos: 59.5,1.5 + parent: 1 + type: Transform + - uid: 22333 + components: + - pos: 48.5,36.5 + parent: 1 + type: Transform + - uid: 22335 + components: + - pos: 91.5,1.5 + parent: 1 + type: Transform + - uid: 22341 + components: + - pos: 62.5,13.5 + parent: 1 + type: Transform + - uid: 22367 + components: + - pos: 64.5,-18.5 + parent: 1 + type: Transform + - uid: 22407 + components: + - pos: 75.5,-16.5 + parent: 1 + type: Transform + - uid: 22415 + components: + - pos: 100.5,12.5 + parent: 1 + type: Transform + - uid: 22420 + components: + - pos: 108.5,-2.5 + parent: 1 + type: Transform + - uid: 22454 + components: + - pos: 90.5,17.5 + parent: 1 + type: Transform + - uid: 22465 + components: + - pos: 46.5,32.5 + parent: 1 + type: Transform + - uid: 22466 + components: + - pos: 46.5,33.5 + parent: 1 + type: Transform + - uid: 22467 + components: + - pos: 46.5,34.5 + parent: 1 + type: Transform + - uid: 22468 + components: + - pos: 46.5,35.5 + parent: 1 + type: Transform + - uid: 22471 + components: + - pos: -18.5,40.5 + parent: 1 + type: Transform + - uid: 22472 + components: + - pos: -18.5,41.5 + parent: 1 + type: Transform + - uid: 22473 + components: + - pos: -31.5,26.5 + parent: 1 + type: Transform + - uid: 22474 + components: + - pos: -32.5,26.5 + parent: 1 + type: Transform + - uid: 22475 + components: + - pos: -33.5,26.5 + parent: 1 + type: Transform + - uid: 22476 + components: + - pos: -34.5,26.5 + parent: 1 + type: Transform + - uid: 22477 + components: + - pos: -31.5,-21.5 + parent: 1 + type: Transform + - uid: 22478 + components: + - pos: -32.5,-21.5 + parent: 1 + type: Transform + - uid: 22480 + components: + - pos: -17.5,-32.5 + parent: 1 + type: Transform + - uid: 22481 + components: + - pos: -17.5,-31.5 + parent: 1 + type: Transform + - uid: 24202 + components: + - pos: 18.5,25.5 + parent: 1 + type: Transform + - uid: 24206 + components: + - pos: 23.5,24.5 + parent: 1 + type: Transform + - uid: 24207 + components: + - pos: 45.5,18.5 + parent: 1 + type: Transform + - uid: 25142 + components: + - pos: 31.5,49.5 + parent: 1 + type: Transform + - uid: 25393 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 25396 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 25538 + components: + - pos: -50.5,-19.5 + parent: 1 + type: Transform + - uid: 25539 + components: + - pos: -60.5,-16.5 + parent: 1 + type: Transform + - uid: 25556 + components: + - pos: -38.5,-22.5 + parent: 1 + type: Transform + - uid: 25719 + components: + - pos: 7.5,52.5 + parent: 1 + type: Transform + - uid: 25830 + components: + - pos: 28.5,51.5 + parent: 1 + type: Transform + - deviceLists: + - 22270 + - 22269 + type: DeviceNetwork + - uid: 25831 + components: + - pos: 29.5,51.5 + parent: 1 + type: Transform + - deviceLists: + - 22270 + - 22269 + type: DeviceNetwork +- proto: FirelockEdge + entities: + - uid: 4144 + components: + - pos: 52.5,2.5 + parent: 1 + type: Transform + - uid: 5205 + components: + - rot: 3.141592653589793 rad + pos: 20.5,9.5 + parent: 1 + type: Transform + - uid: 5206 + components: + - rot: 3.141592653589793 rad + pos: 26.5,9.5 + parent: 1 + type: Transform + - uid: 5217 + components: + - rot: 3.141592653589793 rad + pos: 19.5,9.5 + parent: 1 + type: Transform + - uid: 5222 + components: + - pos: 20.5,-1.5 + parent: 1 + type: Transform + - uid: 5223 + components: + - pos: 19.5,-1.5 + parent: 1 + type: Transform + - uid: 5224 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,4.5 + parent: 1 + type: Transform + - uid: 5226 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,3.5 + parent: 1 + type: Transform + - uid: 6692 + components: + - pos: -38.5,-30.5 + parent: 1 + type: Transform + - uid: 7004 + components: + - rot: 3.141592653589793 rad + pos: 52.5,5.5 + parent: 1 + type: Transform + - uid: 8483 + components: + - pos: -39.5,-30.5 + parent: 1 + type: Transform + - uid: 9274 + components: + - pos: 73.5,6.5 + parent: 1 + type: Transform + - uid: 9275 + components: + - rot: -1.5707963267948966 rad + pos: 77.5,3.5 + parent: 1 + type: Transform + - uid: 9276 + components: + - rot: -1.5707963267948966 rad + pos: 77.5,4.5 + parent: 1 + type: Transform + - uid: 9322 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-23.5 + parent: 1 + type: Transform + - uid: 9323 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-23.5 + parent: 1 + type: Transform + - uid: 9324 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-31.5 + parent: 1 + type: Transform + - uid: 9325 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-22.5 + parent: 1 + type: Transform + - uid: 9326 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-10.5 + parent: 1 + type: Transform + - uid: 9327 + components: + - pos: -29.5,0.5 + parent: 1 + type: Transform + - uid: 9328 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,-8.5 + parent: 1 + type: Transform + - uid: 9331 + components: + - rot: -1.5707963267948966 rad + pos: -64.5,3.5 + parent: 1 + type: Transform + - uid: 9332 + components: + - rot: -1.5707963267948966 rad + pos: -64.5,4.5 + parent: 1 + type: Transform + - uid: 9333 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,16.5 + parent: 1 + type: Transform + - uid: 9334 + components: + - rot: -1.5707963267948966 rad + pos: -60.5,28.5 + parent: 1 + type: Transform + - uid: 9335 + components: + - pos: -33.5,24.5 + parent: 1 + type: Transform + - uid: 9336 + components: + - rot: 3.141592653589793 rad + pos: -29.5,7.5 + parent: 1 + type: Transform + - uid: 9337 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,28.5 + parent: 1 + type: Transform + - uid: 9338 + components: + - pos: -19.5,40.5 + parent: 1 + type: Transform + - uid: 9339 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,30.5 + parent: 1 + type: Transform + - uid: 9340 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,30.5 + parent: 1 + type: Transform + - uid: 9341 + components: + - rot: 3.141592653589793 rad + pos: 38.5,28.5 + parent: 1 + type: Transform + - uid: 9342 + components: + - pos: 50.5,32.5 + parent: 1 + type: Transform + - uid: 9345 + components: + - pos: 39.5,-21.5 + parent: 1 + type: Transform + - uid: 9346 + components: + - rot: 3.141592653589793 rad + pos: 49.5,-24.5 + parent: 1 + type: Transform + - uid: 9347 + components: + - pos: 101.5,-7.5 + parent: 1 + type: Transform + - uid: 9353 + components: + - rot: 3.141592653589793 rad + pos: 103.5,14.5 + parent: 1 + type: Transform + - uid: 17348 + components: + - pos: 112.5,0.5 + parent: 1 + type: Transform + - uid: 17349 + components: + - pos: 113.5,0.5 + parent: 1 + type: Transform + - uid: 18526 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,46.5 + parent: 1 + type: Transform + - uid: 22202 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,41.5 + parent: 1 + type: Transform + - uid: 22247 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,42.5 + parent: 1 + type: Transform + - uid: 22328 + components: + - pos: 64.5,-20.5 + parent: 1 + type: Transform + - uid: 22329 + components: + - pos: 75.5,-20.5 + parent: 1 + type: Transform + - uid: 22330 + components: + - rot: 3.141592653589793 rad + pos: 32.5,54.5 + parent: 1 + type: Transform + - uid: 22331 + components: + - rot: 3.141592653589793 rad + pos: 12.5,54.5 + parent: 1 + type: Transform + - uid: 22332 + components: + - rot: 3.141592653589793 rad + pos: -8.5,54.5 + parent: 1 + type: Transform + - uid: 22351 + components: + - pos: 69.5,-4.5 + parent: 1 + type: Transform + - uid: 24580 + components: + - pos: -74.5,1.5 + parent: 1 + type: Transform + - uid: 24581 + components: + - pos: -70.5,1.5 + parent: 1 + type: Transform + - uid: 24795 + components: + - pos: 87.5,-20.5 + parent: 1 + type: Transform + - uid: 25653 + components: + - pos: -43.5,-39.5 + parent: 1 + type: Transform + - uid: 25654 + components: + - pos: -42.5,-39.5 + parent: 1 + type: Transform + - uid: 25657 + components: + - pos: -43.5,-33.5 + parent: 1 + type: Transform + - uid: 25658 + components: + - pos: -42.5,-33.5 + parent: 1 + type: Transform + - uid: 25659 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-36.5 + parent: 1 + type: Transform + - uid: 25660 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-37.5 + parent: 1 + type: Transform + - uid: 25669 + components: + - pos: -45.5,-42.5 + parent: 1 + type: Transform +- proto: FirelockElectronics + entities: + - uid: 16393 + components: + - pos: -12.40863,-17.06935 + parent: 1 + type: Transform +- proto: FirelockGlass + entities: + - uid: 1295 + components: + - pos: 7.5,13.5 + parent: 1 + type: Transform + - uid: 1296 + components: + - pos: 7.5,18.5 + parent: 1 + type: Transform + - uid: 1335 + components: + - pos: 8.5,19.5 + parent: 1 + type: Transform + - uid: 1426 + components: + - pos: 8.5,20.5 + parent: 1 + type: Transform + - uid: 1427 + components: + - pos: 8.5,21.5 + parent: 1 + type: Transform + - uid: 1548 + components: + - pos: 51.5,3.5 + parent: 1 + type: Transform + - uid: 1558 + components: + - pos: 51.5,4.5 + parent: 1 + type: Transform + - uid: 1560 + components: + - pos: -14.5,2.5 + parent: 1 + type: Transform + - uid: 1871 + components: + - pos: -14.5,5.5 + parent: 1 + type: Transform + - uid: 5229 + components: + - pos: 11.5,9.5 + parent: 1 + type: Transform + - uid: 5230 + components: + - pos: 12.5,9.5 + parent: 1 + type: Transform + - uid: 5232 + components: + - pos: 14.5,-4.5 + parent: 1 + type: Transform + - uid: 5233 + components: + - pos: 14.5,-3.5 + parent: 1 + type: Transform + - uid: 5234 + components: + - pos: 14.5,-2.5 + parent: 1 + type: Transform + - uid: 5236 + components: + - pos: 12.5,-22.5 + parent: 1 + type: Transform + - uid: 5237 + components: + - pos: 11.5,-22.5 + parent: 1 + type: Transform + - uid: 7018 + components: + - pos: 39.5,1.5 + parent: 1 + type: Transform + - uid: 7019 + components: + - pos: 38.5,1.5 + parent: 1 + type: Transform + - uid: 7020 + components: + - pos: 37.5,1.5 + parent: 1 + type: Transform + - uid: 7022 + components: + - pos: 11.5,29.5 + parent: 1 + type: Transform + - uid: 7023 + components: + - pos: 12.5,29.5 + parent: 1 + type: Transform + - uid: 7025 + components: + - pos: 25.5,10.5 + parent: 1 + type: Transform + - uid: 7026 + components: + - pos: 25.5,11.5 + parent: 1 + type: Transform + - uid: 7027 + components: + - pos: 25.5,12.5 + parent: 1 + type: Transform + - uid: 7029 + components: + - pos: -28.5,3.5 + parent: 1 + type: Transform + - uid: 7030 + components: + - pos: -28.5,4.5 + parent: 1 + type: Transform + - uid: 7032 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 7033 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 7034 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 7036 + components: + - pos: 5.5,10.5 + parent: 1 + type: Transform + - uid: 7037 + components: + - pos: 5.5,12.5 + parent: 1 + type: Transform + - uid: 7038 + components: + - pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 7043 + components: + - pos: 12.5,-45.5 + parent: 1 + type: Transform + - uid: 7555 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 7562 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 8390 + components: + - pos: 96.5,9.5 + parent: 1 + type: Transform + - uid: 9109 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 9110 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 9237 + components: + - pos: 11.5,-45.5 + parent: 1 + type: Transform + - uid: 9239 + components: + - pos: 19.5,-45.5 + parent: 1 + type: Transform + - uid: 9240 + components: + - pos: 21.5,-44.5 + parent: 1 + type: Transform + - uid: 9241 + components: + - pos: 21.5,-43.5 + parent: 1 + type: Transform + - uid: 9250 + components: + - pos: 14.5,-12.5 + parent: 1 + type: Transform + - uid: 9251 + components: + - pos: 9.5,-12.5 + parent: 1 + type: Transform + - uid: 9252 + components: + - pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 9253 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 9254 + components: + - pos: 19.5,-5.5 + parent: 1 + type: Transform + - uid: 9255 + components: + - pos: 25.5,-5.5 + parent: 1 + type: Transform + - uid: 9256 + components: + - pos: 26.5,-5.5 + parent: 1 + type: Transform + - uid: 9257 + components: + - pos: 33.5,-5.5 + parent: 1 + type: Transform + - uid: 9258 + components: + - pos: 38.5,-8.5 + parent: 1 + type: Transform + - uid: 9259 + components: + - pos: 63.5,-1.5 + parent: 1 + type: Transform + - uid: 9260 + components: + - pos: 65.5,-1.5 + parent: 1 + type: Transform + - uid: 9261 + components: + - pos: 66.5,-1.5 + parent: 1 + type: Transform + - uid: 9262 + components: + - pos: 69.5,-1.5 + parent: 1 + type: Transform + - uid: 9263 + components: + - pos: 73.5,-1.5 + parent: 1 + type: Transform + - uid: 9264 + components: + - pos: 62.5,1.5 + parent: 1 + type: Transform + - uid: 9265 + components: + - pos: 63.5,1.5 + parent: 1 + type: Transform + - uid: 9266 + components: + - pos: 69.5,1.5 + parent: 1 + type: Transform + - uid: 9267 + components: + - pos: 70.5,1.5 + parent: 1 + type: Transform + - uid: 9268 + components: + - pos: 93.5,3.5 + parent: 1 + type: Transform + - uid: 9269 + components: + - pos: 93.5,4.5 + parent: 1 + type: Transform + - uid: 9270 + components: + - pos: 70.5,6.5 + parent: 1 + type: Transform + - uid: 9271 + components: + - pos: 69.5,6.5 + parent: 1 + type: Transform + - uid: 9272 + components: + - pos: 65.5,6.5 + parent: 1 + type: Transform + - uid: 9273 + components: + - pos: 64.5,6.5 + parent: 1 + type: Transform + - uid: 9277 + components: + - pos: 40.5,7.5 + parent: 1 + type: Transform + - uid: 9285 + components: + - pos: 16.5,41.5 + parent: 1 + type: Transform + - uid: 9286 + components: + - pos: 16.5,45.5 + parent: 1 + type: Transform + - uid: 9287 + components: + - pos: 12.5,47.5 + parent: 1 + type: Transform + - uid: 9288 + components: + - pos: 9.5,47.5 + parent: 1 + type: Transform + - uid: 9289 + components: + - pos: 7.5,45.5 + parent: 1 + type: Transform + - uid: 9290 + components: + - pos: 7.5,43.5 + parent: 1 + type: Transform + - uid: 9293 + components: + - pos: -17.5,6.5 + parent: 1 + type: Transform + - uid: 9294 + components: + - pos: -20.5,6.5 + parent: 1 + type: Transform + - uid: 9295 + components: + - pos: -24.5,6.5 + parent: 1 + type: Transform + - uid: 9296 + components: + - pos: -39.5,5.5 + parent: 1 + type: Transform + - uid: 9297 + components: + - pos: -39.5,4.5 + parent: 1 + type: Transform + - uid: 9298 + components: + - pos: -39.5,2.5 + parent: 1 + type: Transform + - uid: 9299 + components: + - pos: -39.5,1.5 + parent: 1 + type: Transform + - uid: 9301 + components: + - pos: -16.5,1.5 + parent: 1 + type: Transform + - uid: 9302 + components: + - pos: -12.5,-0.5 + parent: 1 + type: Transform + - uid: 9303 + components: + - pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 14228 + components: + - pos: -14.5,4.5 + parent: 1 + type: Transform + - uid: 14388 + components: + - pos: 7.5,-34.5 + parent: 1 + type: Transform + - uid: 14390 + components: + - pos: 8.5,-34.5 + parent: 1 + type: Transform + - uid: 14391 + components: + - pos: 15.5,-34.5 + parent: 1 + type: Transform + - uid: 14392 + components: + - pos: 4.5,-45.5 + parent: 1 + type: Transform + - uid: 14393 + components: + - pos: 16.5,-34.5 + parent: 1 + type: Transform + - uid: 15154 + components: + - pos: -9.5,6.5 + parent: 1 + type: Transform + - uid: 15196 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - uid: 15839 + components: + - pos: -14.5,3.5 + parent: 1 + type: Transform + - uid: 16866 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 22069 + components: + - pos: 14.5,3.5 + parent: 1 + type: Transform + - uid: 22073 + components: + - pos: 11.5,-1.5 + parent: 1 + type: Transform + - uid: 22074 + components: + - pos: 12.5,-1.5 + parent: 1 + type: Transform + - uid: 22075 + components: + - pos: 13.5,-1.5 + parent: 1 + type: Transform + - uid: 22082 + components: + - pos: 3.5,-10.5 + parent: 1 + type: Transform + - uid: 22104 + components: + - pos: 44.5,-8.5 + parent: 1 + type: Transform + - uid: 22105 + components: + - pos: 40.5,-7.5 + parent: 1 + type: Transform + - uid: 22149 + components: + - pos: -8.5,6.5 + parent: 1 + type: Transform + - uid: 22150 + components: + - pos: 11.5,15.5 + parent: 1 + type: Transform + - uid: 22151 + components: + - pos: 12.5,15.5 + parent: 1 + type: Transform + - uid: 22176 + components: + - pos: -8.5,-1.5 + parent: 1 + type: Transform + - uid: 22195 + components: + - pos: -12.5,-4.5 + parent: 1 + type: Transform + - uid: 22209 + components: + - pos: -49.5,0.5 + parent: 1 + type: Transform + - uid: 22212 + components: + - pos: -49.5,9.5 + parent: 1 + type: Transform + - uid: 22215 + components: + - pos: -51.5,21.5 + parent: 1 + type: Transform + - uid: 22232 + components: + - pos: -52.5,-2.5 + parent: 1 + type: Transform + - uid: 22308 + components: + - pos: -6.5,43.5 + parent: 1 + type: Transform + - uid: 22309 + components: + - pos: -6.5,42.5 + parent: 1 + type: Transform + - uid: 22326 + components: + - pos: 46.5,-28.5 + parent: 1 + type: Transform + - uid: 22327 + components: + - pos: 46.5,-27.5 + parent: 1 + type: Transform + - uid: 22339 + components: + - pos: 64.5,12.5 + parent: 1 + type: Transform + - uid: 22340 + components: + - pos: 63.5,12.5 + parent: 1 + type: Transform + - uid: 22349 + components: + - pos: 63.5,-5.5 + parent: 1 + type: Transform + - uid: 22350 + components: + - pos: 67.5,-5.5 + parent: 1 + type: Transform + - uid: 22356 + components: + - pos: 68.5,-14.5 + parent: 1 + type: Transform + - uid: 22357 + components: + - pos: 68.5,-15.5 + parent: 1 + type: Transform + - uid: 22358 + components: + - pos: 68.5,-12.5 + parent: 1 + type: Transform + - uid: 22359 + components: + - pos: 68.5,-11.5 + parent: 1 + type: Transform + - uid: 22360 + components: + - pos: 68.5,-10.5 + parent: 1 + type: Transform + - uid: 22364 + components: + - pos: 63.5,-14.5 + parent: 1 + type: Transform + - uid: 22369 + components: + - pos: 60.5,-19.5 + parent: 1 + type: Transform + - uid: 22370 + components: + - pos: 70.5,-13.5 + parent: 1 + type: Transform + - uid: 22371 + components: + - pos: 71.5,-13.5 + parent: 1 + type: Transform + - uid: 22372 + components: + - pos: 72.5,-13.5 + parent: 1 + type: Transform + - uid: 22373 + components: + - pos: 75.5,-13.5 + parent: 1 + type: Transform + - uid: 22375 + components: + - pos: 74.5,-7.5 + parent: 1 + type: Transform + - uid: 22397 + components: + - pos: 85.5,-10.5 + parent: 1 + type: Transform + - uid: 22398 + components: + - pos: 80.5,-12.5 + parent: 1 + type: Transform + - uid: 22417 + components: + - pos: 102.5,4.5 + parent: 1 + type: Transform + - uid: 22419 + components: + - pos: 105.5,2.5 + parent: 1 + type: Transform + - uid: 22435 + components: + - pos: 104.5,5.5 + parent: 1 + type: Transform + - uid: 22445 + components: + - pos: 75.5,17.5 + parent: 1 + type: Transform + - uid: 22446 + components: + - pos: 75.5,11.5 + parent: 1 + type: Transform + - uid: 22447 + components: + - pos: 80.5,18.5 + parent: 1 + type: Transform + - uid: 22448 + components: + - pos: 81.5,18.5 + parent: 1 + type: Transform + - uid: 22449 + components: + - pos: 83.5,18.5 + parent: 1 + type: Transform + - uid: 22455 + components: + - pos: 78.5,21.5 + parent: 1 + type: Transform + - uid: 22460 + components: + - pos: 70.5,23.5 + parent: 1 + type: Transform + - uid: 22461 + components: + - pos: 69.5,23.5 + parent: 1 + type: Transform + - uid: 22469 + components: + - pos: 26.5,53.5 + parent: 1 + type: Transform + - uid: 22470 + components: + - pos: -2.5,53.5 + parent: 1 + type: Transform + - uid: 24193 + components: + - pos: -1.5,23.5 + parent: 1 + type: Transform + - uid: 24194 + components: + - pos: 0.5,23.5 + parent: 1 + type: Transform + - uid: 24195 + components: + - pos: 0.5,18.5 + parent: 1 + type: Transform + - uid: 24196 + components: + - pos: 2.5,20.5 + parent: 1 + type: Transform + - uid: 24197 + components: + - pos: -4.5,14.5 + parent: 1 + type: Transform + - uid: 24200 + components: + - pos: 20.5,20.5 + parent: 1 + type: Transform + - uid: 24201 + components: + - pos: 17.5,17.5 + parent: 1 + type: Transform + - uid: 24204 + components: + - pos: 35.5,14.5 + parent: 1 + type: Transform + - uid: 24205 + components: + - pos: 32.5,21.5 + parent: 1 + type: Transform + - uid: 24208 + components: + - pos: 37.5,13.5 + parent: 1 + type: Transform + - uid: 24209 + components: + - pos: 19.5,13.5 + parent: 1 + type: Transform + - uid: 24210 + components: + - pos: 28.5,13.5 + parent: 1 + type: Transform + - uid: 24217 + components: + - pos: -8.5,11.5 + parent: 1 + type: Transform + - uid: 25127 + components: + - pos: 60.5,15.5 + parent: 1 + type: Transform + - uid: 25327 + components: + - pos: 68.5,21.5 + parent: 1 + type: Transform + - uid: 25391 + components: + - pos: -69.5,3.5 + parent: 1 + type: Transform + - uid: 25392 + components: + - pos: -69.5,4.5 + parent: 1 + type: Transform + - uid: 25395 + components: + - pos: -10.5,-1.5 + parent: 1 + type: Transform + - uid: 25540 + components: + - pos: -51.5,-13.5 + parent: 1 + type: Transform + - uid: 25541 + components: + - pos: -50.5,-13.5 + parent: 1 + type: Transform + - uid: 25555 + components: + - pos: -46.5,-28.5 + parent: 1 + type: Transform + - uid: 25655 + components: + - pos: -45.5,-34.5 + parent: 1 + type: Transform + - uid: 25656 + components: + - pos: -44.5,-34.5 + parent: 1 + type: Transform +- proto: Fireplace + entities: + - uid: 2004 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 11523 + components: + - pos: 5.5,-42.5 + parent: 1 + type: Transform + - uid: 12376 + components: + - pos: -36.5,-22.5 + parent: 1 + type: Transform +- proto: Flash + entities: + - uid: 1477 + components: + - flags: InContainer + type: MetaData + - parent: 1444 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 12798 + components: + - flags: InContainer + type: MetaData + - parent: 12797 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 21452 + components: + - rot: 1.5707963267948966 rad + pos: 72.504684,7.05476 + parent: 1 + type: Transform +- proto: FlashlightLantern + entities: + - uid: 3586 + components: + - pos: -18.513338,9.15139 + parent: 1 + type: Transform + - uid: 12294 + components: + - pos: -26.288733,-35.251434 + parent: 1 + type: Transform + - uid: 15745 + components: + - pos: -39.485874,-5.548732 + parent: 1 + type: Transform + - uid: 16234 + components: + - pos: 65.45267,-30.269342 + parent: 1 + type: Transform + - uid: 22582 + components: + - pos: 94.16879,22.059994 + parent: 1 + type: Transform + - uid: 23929 + components: + - pos: 43.444878,-13.239179 + parent: 1 + type: Transform +- proto: FlashlightSeclite + entities: + - uid: 1533 + components: + - rot: 1.5707963267948966 rad + pos: 10.872392,-35.44065 + parent: 1 + type: Transform + - uid: 7133 + components: + - rot: 1.5707963267948966 rad + pos: 71.51956,12.594805 + parent: 1 + type: Transform + - uid: 9858 + components: + - rot: -1.5707963267948966 rad + pos: 110.32669,11.59453 + parent: 1 + type: Transform + - uid: 22573 + components: + - pos: -20.534592,-0.32250464 + parent: 1 + type: Transform +- proto: Floodlight + entities: + - uid: 15759 + components: + - pos: -47.93802,-4.385198 + parent: 1 + type: Transform + - uid: 16018 + components: + - pos: -39.255226,-12.371965 + parent: 1 + type: Transform + - uid: 16391 + components: + - rot: -1.5707963267948966 rad + pos: -3.512278,34.720375 + parent: 1 + type: Transform + - uid: 17345 + components: + - pos: -49.355915,40.47283 + parent: 1 + type: Transform +- proto: FloodlightBroken + entities: + - uid: 15268 + components: + - rot: 1.5707963267948966 rad + pos: -0.55441785,-32.44491 + parent: 1 + type: Transform +- proto: FloorCarpetItemBlack + entities: + - uid: 11490 + components: + - pos: 1.4183122,-44.348846 + parent: 1 + type: Transform + - uid: 11491 + components: + - pos: 1.4183122,-44.348846 + parent: 1 + type: Transform + - uid: 11492 + components: + - pos: 1.4183122,-44.348846 + parent: 1 + type: Transform + - uid: 11493 + components: + - pos: 1.4183122,-44.348846 + parent: 1 + type: Transform + - uid: 11494 + components: + - pos: 1.4183122,-44.348846 + parent: 1 + type: Transform + - uid: 11495 + components: + - pos: 1.4183122,-44.348846 + parent: 1 + type: Transform + - uid: 11496 + components: + - pos: 1.4183122,-44.348846 + parent: 1 + type: Transform + - uid: 11497 + components: + - pos: 1.4183122,-44.348846 + parent: 1 + type: Transform + - uid: 11498 + components: + - pos: 1.4183122,-44.348846 + parent: 1 + type: Transform + - uid: 11499 + components: + - pos: 1.4183122,-44.348846 + parent: 1 + type: Transform + - uid: 11500 + components: + - pos: 1.4183122,-44.348846 + parent: 1 + type: Transform + - uid: 11501 + components: + - pos: 1.4183122,-44.348846 + parent: 1 + type: Transform +- proto: FloorCarpetItemPurple + entities: + - uid: 11502 + components: + - pos: 1.5433122,-44.161217 + parent: 1 + type: Transform + - uid: 11503 + components: + - pos: 1.5433122,-44.161217 + parent: 1 + type: Transform + - uid: 11504 + components: + - pos: 1.5433122,-44.161217 + parent: 1 + type: Transform + - uid: 11505 + components: + - pos: 1.5433122,-44.161217 + parent: 1 + type: Transform + - uid: 11506 + components: + - pos: 1.5433122,-44.161217 + parent: 1 + type: Transform + - uid: 11507 + components: + - pos: 1.5433122,-44.161217 + parent: 1 + type: Transform + - uid: 11508 + components: + - pos: 1.5433122,-44.161217 + parent: 1 + type: Transform + - uid: 11509 + components: + - pos: 1.5433122,-44.161217 + parent: 1 + type: Transform + - uid: 11510 + components: + - pos: 1.5433122,-44.161217 + parent: 1 + type: Transform + - uid: 11512 + components: + - pos: 1.5433122,-44.161217 + parent: 1 + type: Transform + - uid: 11513 + components: + - pos: 1.5433122,-44.161217 + parent: 1 + type: Transform + - uid: 11514 + components: + - pos: 1.5433122,-44.161217 + parent: 1 + type: Transform +- proto: FloorDrain + entities: + - uid: 974 + components: + - pos: 7.5,25.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 1080 + components: + - pos: -0.5,21.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 1858 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-11.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 3324 + components: + - pos: 33.5,14.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 3571 + components: + - pos: -15.5,9.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 4930 + components: + - rot: 3.141592653589793 rad + pos: 56.5,8.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 5299 + components: + - rot: 1.5707963267948966 rad + pos: 83.5,29.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 5334 + components: + - pos: 74.5,24.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 5425 + components: + - rot: 1.5707963267948966 rad + pos: 83.5,28.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 6310 + components: + - pos: -47.5,14.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 6312 + components: + - pos: -46.5,14.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 6819 + components: + - pos: -52.5,-30.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 6820 + components: + - pos: -50.5,-30.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 6821 + components: + - pos: -47.5,-30.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 10376 + components: + - pos: 72.5,-10.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 12353 + components: + - pos: -2.5,-28.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 13940 + components: + - pos: 61.5,-17.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 15772 + components: + - pos: -59.5,8.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures +- proto: FloorTileItemBar + entities: + - uid: 12305 + components: + - pos: -25.481087,-35.501602 + parent: 1 + type: Transform + - uid: 12306 + components: + - pos: -25.418587,-35.428635 + parent: 1 + type: Transform + - uid: 12307 + components: + - pos: -25.429005,-35.59542 + parent: 1 + type: Transform + - uid: 12308 + components: + - pos: -25.37692,-35.501602 + parent: 1 + type: Transform + - uid: 12309 + components: + - pos: -25.37692,-35.501602 + parent: 1 + type: Transform + - uid: 12310 + components: + - pos: -25.460255,-35.51203 + parent: 1 + type: Transform + - uid: 12311 + components: + - pos: -25.460255,-35.51203 + parent: 1 + type: Transform + - uid: 12312 + components: + - pos: -25.324837,-35.428635 + parent: 1 + type: Transform + - uid: 12313 + components: + - pos: -25.324837,-35.428635 + parent: 1 + type: Transform + - uid: 12314 + components: + - pos: -25.324837,-35.428635 + parent: 1 + type: Transform +- proto: FloorTileItemGratingMaint + entities: + - uid: 11515 + components: + - pos: -1.519188,-41.534393 + parent: 1 + type: Transform + - uid: 22739 + components: + - pos: -13.020942,38.0149 + parent: 1 + type: Transform + - uid: 22740 + components: + - pos: -13.114692,37.5354 + parent: 1 + type: Transform +- proto: FloorTileItemMetalDiamond + entities: + - uid: 22741 + components: + - pos: -12.025458,37.04242 + parent: 1 + type: Transform +- proto: FloorTileItemSilver + entities: + - uid: 11516 + components: + - pos: 0.7933122,-43.275185 + parent: 1 + type: Transform + - uid: 11517 + components: + - pos: 0.42872894,-43.358574 + parent: 1 + type: Transform + - uid: 11518 + components: + - pos: 0.64747894,-43.473244 + parent: 1 + type: Transform + - uid: 11519 + components: + - pos: 0.62664545,-43.306458 + parent: 1 + type: Transform + - uid: 11520 + components: + - pos: 0.75164545,-43.42112 + parent: 1 + type: Transform +- proto: FloorTileItemWood + entities: + - uid: 12482 + components: + - pos: -38.65496,-16.340256 + parent: 1 + type: Transform + - uid: 12483 + components: + - pos: -38.384125,-16.621702 + parent: 1 + type: Transform + - uid: 12484 + components: + - pos: -38.46746,-16.715517 + parent: 1 + type: Transform +- proto: FloraRockSolid01 + entities: + - uid: 6992 + components: + - pos: 25.381252,3.582109 + parent: 1 + type: Transform +- proto: FloraRockSolid02 + entities: + - uid: 6990 + components: + - pos: 18.540522,9.513626 + parent: 1 + type: Transform +- proto: FloraRockSolid03 + entities: + - uid: 6991 + components: + - pos: 21.550938,9.534474 + parent: 1 + type: Transform +- proto: FloraTree01 + entities: + - uid: 6987 + components: + - pos: 18.455774,0.44340944 + parent: 1 + type: Transform +- proto: FloraTree02 + entities: + - uid: 7506 + components: + - pos: 9.196162,7.8838353 + parent: 1 + type: Transform + - uid: 9948 + components: + - pos: 17.404531,34.418114 + parent: 1 + type: Transform +- proto: FloraTree03 + entities: + - uid: 4286 + components: + - pos: 44.48104,2.7493863 + parent: 1 + type: Transform +- proto: FloraTree04 + entities: + - uid: 7507 + components: + - pos: 8.384585,0.7780981 + parent: 1 + type: Transform +- proto: FloraTree05 + entities: + - uid: 6988 + components: + - pos: 27.804825,4.579666 + parent: 1 + type: Transform + - uid: 9947 + components: + - pos: 6.956615,34.240913 + parent: 1 + type: Transform +- proto: FloraTreeConifer01 + entities: + - uid: 9533 + components: + - pos: -16.620405,-12.237252 + parent: 1 + type: Transform +- proto: FloraTreeLarge06 + entities: + - uid: 6986 + components: + - pos: 24.235424,7.6290107 + parent: 1 + type: Transform +- proto: FloraTreeSnow01 + entities: + - uid: 9534 + components: + - pos: -17.089155,-14.572207 + parent: 1 + type: Transform +- proto: FloraTreeStump + entities: + - uid: 6989 + components: + - pos: 27.575712,9.288048 + parent: 1 + type: Transform +- proto: FloraTreeStumpConifer + entities: + - uid: 2101 + components: + - pos: -15.213456,-17.149166 + parent: 1 + type: Transform +- proto: FoodApple + entities: + - uid: 16795 + components: + - pos: 25.358315,1.590658 + parent: 1 + type: Transform + - uid: 16796 + components: + - pos: 25.472897,1.8199842 + parent: 1 + type: Transform + - uid: 16797 + components: + - pos: 25.55623,1.6427774 + parent: 1 + type: Transform +- proto: FoodBakedCannabisBrownie + entities: + - uid: 5381 + components: + - flags: InContainer + type: MetaData + - parent: 5373 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 6964 + components: + - pos: 28.498558,-13.459676 + parent: 1 + type: Transform +- proto: FoodBakedCookieOatmeal + entities: + - uid: 12762 + components: + - pos: 88.49689,-7.520007 + parent: 1 + type: Transform +- proto: FoodBakedCookieRaisin + entities: + - uid: 14237 + components: + - pos: 90.52814,-5.4456496 + parent: 1 + type: Transform +- proto: FoodBakedCookieSugar + entities: + - uid: 14146 + components: + - pos: 92.49689,-7.499159 + parent: 1 + type: Transform +- proto: FoodBakedDumplings + entities: + - uid: 17192 + components: + - pos: 91.49615,12.692582 + parent: 1 + type: Transform +- proto: FoodBowlBig + entities: + - uid: 1053 + components: + - pos: 6.249839,25.72279 + parent: 1 + type: Transform + - uid: 7452 + components: + - pos: 13.559852,50.71897 + parent: 1 + type: Transform + - solutions: + food: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 50 + reagents: + - data: null + ReagentId: Blood + Quantity: 15 + type: SolutionContainerManager + - tags: [] + type: Tag + - uid: 12787 + components: + - pos: 14.530063,-41.387856 + parent: 1 + type: Transform + - solutions: + food: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 50 + reagents: + - data: null + ReagentId: IrishCoffee + Quantity: 50 + type: SolutionContainerManager + - tags: [] + type: Tag +- proto: FoodBowlBigTrash + entities: + - uid: 22639 + components: + - pos: 95.74197,20.701979 + parent: 1 + type: Transform +- proto: FoodBoxDonut + entities: + - uid: 7759 + components: + - pos: 38.50375,-16.315777 + parent: 1 + type: Transform + - uid: 16557 + components: + - rot: 1.5707963267948966 rad + pos: 47.422173,37.719696 + parent: 1 + type: Transform +- proto: FoodBoxNugget + entities: + - uid: 6365 + components: + - pos: -39.49553,9.736956 + parent: 1 + type: Transform +- proto: FoodBoxPizzaFilled + entities: + - uid: 6957 + components: + - pos: 28.513195,-6.1995034 + parent: 1 + type: Transform + - uid: 16275 + components: + - pos: 89.485725,-11.17649 + parent: 1 + type: Transform +- proto: FoodBreadMeat + entities: + - uid: 2032 + components: + - pos: 2.3802695,-9.35951 + parent: 1 + type: Transform +- proto: FoodBreadMoldySlice + entities: + - uid: 14387 + components: + - pos: -9.425618,-37.55757 + parent: 1 + type: Transform +- proto: FoodCabbage + entities: + - uid: 16005 + components: + - pos: 130.20393,-21.40956 + parent: 1 + type: Transform + - uid: 16114 + components: + - pos: 129.95833,-21.342096 + parent: 1 + type: Transform + - uid: 16115 + components: + - pos: 130.23958,-21.571423 + parent: 1 + type: Transform + - uid: 16116 + components: + - pos: 129.8229,-21.602694 + parent: 1 + type: Transform +- proto: FoodCakeBirthdaySlice + entities: + - uid: 7616 + components: + - pos: 87.469604,-15.38748 + parent: 1 + type: Transform +- proto: FoodCartCold + entities: + - uid: 23804 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-0.5 + parent: 1 + type: Transform +- proto: FoodCartHot + entities: + - uid: 23805 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-0.5 + parent: 1 + type: Transform +- proto: FoodCheese + entities: + - uid: 12478 + components: + - pos: -38.464108,-18.364017 + parent: 1 + type: Transform +- proto: FoodCheeseSlice + entities: + - uid: 15979 + components: + - rot: -1.5707963267948966 rad + pos: -28.081333,30.774084 + parent: 1 + type: Transform + - uid: 15980 + components: + - rot: 3.141592653589793 rad + pos: -28.175083,31.076376 + parent: 1 + type: Transform + - uid: 15981 + components: + - rot: 1.5707963267948966 rad + pos: -27.820915,31.211887 + parent: 1 + type: Transform +- proto: FoodCondimentBottleColdsauce + entities: + - uid: 9407 + components: + - pos: 24.422249,-43.389412 + parent: 1 + type: Transform +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 1103 + components: + - pos: 5.2410345,25.591587 + parent: 1 + type: Transform + - uid: 1104 + components: + - pos: 5.251451,25.383108 + parent: 1 + type: Transform + - uid: 1168 + components: + - pos: 15.281449,-44.24633 + parent: 1 + type: Transform + - uid: 1169 + components: + - pos: 15.254366,-43.97531 + parent: 1 + type: Transform + - uid: 22489 + components: + - flags: InContainer + type: MetaData + - parent: 22485 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 22490 + components: + - flags: InContainer + type: MetaData + - parent: 22485 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodCondimentPacketPepper + entities: + - uid: 5 + components: + - pos: 104.834015,7.562147 + parent: 1 + type: Transform +- proto: FoodCornTrash + entities: + - uid: 13927 + components: + - pos: -12.641951,-36.118378 + parent: 1 + type: Transform + - uid: 13928 + components: + - pos: -12.537785,-36.295586 + parent: 1 + type: Transform +- proto: FoodDonkpocketDank + entities: + - uid: 5419 + components: + - flags: InContainer + type: MetaData + - parent: 5411 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodDonutJellyBungo + entities: + - uid: 1538 + components: + - pos: 12.330721,-35.38836 + parent: 1 + type: Transform +- proto: FoodDonutJellyCaramel + entities: + - uid: 22574 + components: + - pos: -20.659592,-0.7707323 + parent: 1 + type: Transform +- proto: FoodDough + entities: + - uid: 10618 + components: + - flags: InContainer + type: MetaData + - parent: 866 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 11210 + components: + - flags: InContainer + type: MetaData + - parent: 866 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 11355 + components: + - flags: InContainer + type: MetaData + - parent: 866 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodEggplant + entities: + - uid: 16681 + components: + - pos: 50.738735,-5.627189 + parent: 1 + type: Transform +- proto: FoodFrozenPopsicleJumbo + entities: + - uid: 5189 + components: + - flags: InContainer + type: MetaData + - parent: 5188 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5190 + components: + - flags: InContainer + type: MetaData + - parent: 5188 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodFrozenPopsicleOrange + entities: + - uid: 5191 + components: + - flags: InContainer + type: MetaData + - parent: 5188 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodFrozenPopsicleTrash + entities: + - uid: 22642 + components: + - rot: -1.5707963267948966 rad + pos: 96.72114,20.764523 + parent: 1 + type: Transform +- proto: FoodFrozenSandwichStrawberry + entities: + - uid: 9590 + components: + - flags: InContainer + type: MetaData + - parent: 9583 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodFrozenSnowconeTrash + entities: + - uid: 2784 + components: + - pos: 20.744116,14.222363 + parent: 1 + type: Transform + - uid: 13227 + components: + - rot: 3.141592653589793 rad + pos: 50.361702,35.768944 + parent: 1 + type: Transform +- proto: FoodLollipop + entities: + - uid: 7633 + components: + - pos: 70.341064,-2.4932804 + parent: 1 + type: Transform + - uid: 7634 + components: + - pos: 70.559814,-2.4515853 + parent: 1 + type: Transform + - uid: 7635 + components: + - rot: -1.5707963267948966 rad + pos: 70.4244,-2.4828568 + parent: 1 + type: Transform + - uid: 21577 + components: + - rot: 1.5707963267948966 rad + pos: 73.746414,-3.366796 + parent: 1 + type: Transform +- proto: FoodMealFries + entities: + - uid: 22899 + components: + - pos: -25.730461,-16.442062 + parent: 1 + type: Transform +- proto: FoodMealGrilledCheese + entities: + - uid: 25755 + components: + - pos: -64.3447,-14.591825 + parent: 1 + type: Transform +- proto: FoodMealPigblanket + entities: + - uid: 414 + components: + - pos: 86.48025,18.664864 + parent: 1 + type: Transform +- proto: FoodMealSashimi + entities: + - uid: 16161 + components: + - pos: 41.006504,-38.41726 + parent: 1 + type: Transform + - solutions: + food: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 18 + reagents: + - data: null + ReagentId: Nutriment + Quantity: 2 + - data: null + ReagentId: Protein + Quantity: 6 + - data: null + ReagentId: Soysauce + Quantity: 5 + type: SolutionContainerManager +- proto: FoodMeat + entities: + - uid: 867 + components: + - flags: InContainer + type: MetaData + - parent: 866 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 868 + components: + - flags: InContainer + type: MetaData + - parent: 866 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 869 + components: + - flags: InContainer + type: MetaData + - parent: 866 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 870 + components: + - flags: InContainer + type: MetaData + - parent: 866 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 871 + components: + - flags: InContainer + type: MetaData + - parent: 866 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 872 + components: + - flags: InContainer + type: MetaData + - parent: 866 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 873 + components: + - flags: InContainer + type: MetaData + - parent: 866 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 874 + components: + - flags: InContainer + type: MetaData + - parent: 866 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 875 + components: + - flags: InContainer + type: MetaData + - parent: 866 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 876 + components: + - flags: InContainer + type: MetaData + - parent: 866 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1083 + components: + - pos: 0.45228082,21.685434 + parent: 1 + type: Transform + - uid: 1084 + components: + - pos: 0.36894748,21.612469 + parent: 1 + type: Transform + - uid: 1085 + components: + - pos: 0.29603082,21.508228 + parent: 1 + type: Transform + - uid: 22491 + components: + - flags: InContainer + type: MetaData + - parent: 22485 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 22493 + components: + - flags: InContainer + type: MetaData + - parent: 22485 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 22494 + components: + - flags: InContainer + type: MetaData + - parent: 22485 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 22495 + components: + - flags: InContainer + type: MetaData + - parent: 22485 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 22496 + components: + - flags: InContainer + type: MetaData + - parent: 22485 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 22497 + components: + - flags: InContainer + type: MetaData + - parent: 22485 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 22498 + components: + - flags: InContainer + type: MetaData + - parent: 22485 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 22499 + components: + - flags: InContainer + type: MetaData + - parent: 22485 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 22500 + components: + - flags: InContainer + type: MetaData + - parent: 22485 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodMeatBacon + entities: + - uid: 9584 + components: + - flags: InContainer + type: MetaData + - parent: 9583 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 9585 + components: + - flags: InContainer + type: MetaData + - parent: 9583 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 9586 + components: + - flags: InContainer + type: MetaData + - parent: 9583 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 9587 + components: + - flags: InContainer + type: MetaData + - parent: 9583 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 9588 + components: + - flags: InContainer + type: MetaData + - parent: 9583 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 9589 + components: + - flags: InContainer + type: MetaData + - parent: 9583 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodMeatChickenCutlet + entities: + - uid: 1073 + components: + - flags: InContainer + type: MetaData + - parent: 1072 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1074 + components: + - flags: InContainer + type: MetaData + - parent: 1072 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1075 + components: + - flags: InContainer + type: MetaData + - parent: 1072 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodMeatFish + entities: + - uid: 1081 + components: + - pos: -1.5998026,21.633316 + parent: 1 + type: Transform + - uid: 1082 + components: + - pos: -1.4643859,21.466534 + parent: 1 + type: Transform +- proto: FoodMeatMeatball + entities: + - uid: 5192 + components: + - flags: InContainer + type: MetaData + - parent: 5188 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5193 + components: + - flags: InContainer + type: MetaData + - parent: 5188 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5194 + components: + - flags: InContainer + type: MetaData + - parent: 5188 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5195 + components: + - flags: InContainer + type: MetaData + - parent: 5188 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5196 + components: + - flags: InContainer + type: MetaData + - parent: 5188 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5197 + components: + - flags: InContainer + type: MetaData + - parent: 5188 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodMeatRat + entities: + - uid: 22492 + components: + - flags: InContainer + type: MetaData + - parent: 22485 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodMeatRatKebab + entities: + - uid: 22779 + components: + - pos: -24.100885,16.586544 + parent: 1 + type: Transform +- proto: FoodMothBakedCheesePlatter + entities: + - uid: 6613 + components: + - pos: -35.4673,10.603635 + parent: 1 + type: Transform +- proto: FoodOnionRedSlice + entities: + - uid: 1105 + components: + - pos: 8.3660345,24.424109 + parent: 1 + type: Transform + - uid: 1106 + components: + - pos: 8.449368,24.361565 + parent: 1 + type: Transform + - uid: 1172 + components: + - pos: 15.538741,-43.74494 + parent: 1 + type: Transform + - uid: 1173 + components: + - pos: 15.674157,-43.79915 + parent: 1 + type: Transform +- proto: FoodPieBananaCream + entities: + - uid: 12960 + components: + - pos: 23.335775,-36.11216 + parent: 1 + type: Transform + - uid: 12961 + components: + - pos: 23.617025,-36.3936 + parent: 1 + type: Transform +- proto: FoodPineapple + entities: + - uid: 1279 + components: + - pos: 7.550951,18.61268 + parent: 1 + type: Transform +- proto: FoodPlatePlastic + entities: + - uid: 15823 + components: + - pos: -64.51977,10.995331 + parent: 1 + type: Transform +- proto: FoodPlateSmallPlastic + entities: + - uid: 6800 + components: + - pos: -48.504536,7.252874 + parent: 1 + type: Transform +- proto: FoodPlateTrash + entities: + - uid: 13925 + components: + - pos: -10.787785,-39.03707 + parent: 1 + type: Transform + - uid: 16124 + components: + - pos: 35.66773,-37.688553 + parent: 1 + type: Transform + - uid: 22765 + components: + - rot: 3.141592653589793 rad + pos: -31.527704,21.782972 + parent: 1 + type: Transform +- proto: FoodRicePudding + entities: + - uid: 4745 + components: + - pos: -18.49058,19.727833 + parent: 1 + type: Transform +- proto: FoodSaladWatermelonFruitBowl + entities: + - uid: 7620 + components: + - pos: 84.485886,-16.27072 + parent: 1 + type: Transform +- proto: FoodShakerPepper + entities: + - uid: 9410 + components: + - pos: 24.495167,-43.806374 + parent: 1 + type: Transform + - uid: 9413 + components: + - pos: 27.568083,-43.76468 + parent: 1 + type: Transform + - solutions: + food: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 20 + reagents: + - data: null + ReagentId: Blackpepper + Quantity: 1 + type: SolutionContainerManager +- proto: FoodShakerSalt + entities: + - uid: 9408 + components: + - pos: 24.609749,-43.66044 + parent: 1 + type: Transform + - uid: 9409 + components: + - pos: 27.672249,-43.889763 + parent: 1 + type: Transform +- proto: FoodSnackBoritos + entities: + - uid: 1254 + components: + - rot: 3.141592653589793 rad + pos: -12.914378,14.578607 + parent: 1 + type: Transform +- proto: FoodSnackChowMein + entities: + - uid: 16342 + components: + - pos: 17.677313,-26.219698 + parent: 1 + type: Transform +- proto: FoodSnackCookieFortune + entities: + - uid: 23527 + components: + - pos: -5.682117,21.580381 + parent: 1 + type: Transform +- proto: FoodSnackEnergyBar + entities: + - uid: 12269 + components: + - pos: -19.36977,-29.124964 + parent: 1 + type: Transform +- proto: FoodSnackNutribrick + entities: + - uid: 2272 + components: + - flags: InContainer + type: MetaData + - parent: 2225 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 3284 + components: + - flags: InContainer + type: MetaData + - parent: 3283 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodSnackRaisins + entities: + - uid: 4303 + components: + - pos: -4.5202436,-49.423706 + parent: 1 + type: Transform +- proto: FoodSnackSus + entities: + - uid: 5418 + components: + - flags: InContainer + type: MetaData + - parent: 5411 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 16341 + components: + - rot: 1.5707963267948966 rad + pos: 29.581558,-28.1701 + parent: 1 + type: Transform +- proto: FoodSoupBisque + entities: + - uid: 7443 + components: + - pos: 18.410418,48.715508 + parent: 1 + type: Transform +- proto: FoodSoupBungo + entities: + - uid: 12075 + components: + - pos: 3.5873184,49.66391 + parent: 1 + type: Transform +- proto: FoodTinBeans + entities: + - uid: 9320 + components: + - pos: 8.325765,6.5075274 + parent: 1 + type: Transform + - uid: 16083 + components: + - pos: 25.319202,35.78401 + parent: 1 + type: Transform + - uid: 16084 + components: + - pos: 25.631702,35.67977 + parent: 1 + type: Transform +- proto: FoodTinBeansTrash + entities: + - uid: 13926 + components: + - pos: -11.246118,-38.55757 + parent: 1 + type: Transform +- proto: FoodTinMRETrash + entities: + - uid: 22640 + components: + - pos: 96.34614,20.608164 + parent: 1 + type: Transform +- proto: FoodTinPeaches + entities: + - uid: 7329 + components: + - pos: -1.6865574,52.046722 + parent: 1 + type: Transform +- proto: FoodTinPeachesMaintOpen + entities: + - uid: 3017 + components: + - rot: -1.5707963267948966 rad + pos: -29.575474,-13.020498 + parent: 1 + type: Transform + - uid: 12908 + components: + - pos: -3.2148128,-39.55703 + parent: 1 + type: Transform +- proto: FoodTomato + entities: + - uid: 1107 + components: + - pos: 8.761868,24.246902 + parent: 1 + type: Transform + - uid: 1108 + components: + - pos: 8.511868,24.26775 + parent: 1 + type: Transform + - uid: 1170 + components: + - pos: 15.7012415,-44.341187 + parent: 1 + type: Transform + - uid: 1171 + components: + - pos: 15.633533,-44.24633 + parent: 1 + type: Transform +- proto: FoodWatermelonSlice + entities: + - uid: 16677 + components: + - pos: 50.54839,-5.294404 + parent: 1 + type: Transform +- proto: Football + entities: + - uid: 6985 + components: + - name: soccer ball + type: MetaData + - pos: 24.554068,3.2453756 + parent: 1 + type: Transform + - uid: 20994 + components: + - pos: -3.468412,-18.445648 + parent: 1 + type: Transform +- proto: ForkPlastic + entities: + - uid: 6797 + components: + - rot: -1.5707963267948966 rad + pos: -45.504536,7.0860915 + parent: 1 + type: Transform + - uid: 6798 + components: + - rot: -1.5707963267948966 rad + pos: -45.483704,6.8984613 + parent: 1 + type: Transform + - uid: 7617 + components: + - rot: -1.5707963267948966 rad + pos: 87.48002,-15.158154 + parent: 1 + type: Transform + - uid: 15824 + components: + - pos: -64.36352,10.661766 + parent: 1 + type: Transform +- proto: GasCanisterBrokenBase + entities: + - uid: 12350 + components: + - pos: -3.1226845,-27.754425 + parent: 1 + type: Transform + - uid: 16753 + components: + - pos: -21.5,-33.5 + parent: 1 + type: Transform + - uid: 22588 + components: + - pos: 38.5,-29.5 + parent: 1 + type: Transform + - uid: 22719 + components: + - pos: -17.5,51.5 + parent: 1 + type: Transform +- proto: GasFilter + entities: + - uid: 270 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,24.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 392 + components: + - rot: 3.141592653589793 rad + pos: -57.5,32.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 393 + components: + - rot: 3.141592653589793 rad + pos: -57.5,33.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice +- proto: GasFilterFlipped + entities: + - uid: 239 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,35.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 240 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,35.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 241 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,35.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 242 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,35.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 243 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,35.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 244 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,35.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 249 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,32.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 273 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,24.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#B266FFFF' + type: AtmosPipeColor +- proto: GasMinerCarbonDioxide + entities: + - uid: 2494 + components: + - pos: -43.5,31.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice +- proto: GasMinerNitrogenStationLarge + entities: + - uid: 1908 + components: + - pos: -51.5,31.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice +- proto: GasMinerOxygenStationLarge + entities: + - uid: 1909 + components: + - pos: -53.5,31.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice +- proto: GasMixer + entities: + - uid: 260 + components: + - pos: -41.5,27.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#33FF33FF' + type: AtmosPipeColor + - uid: 280 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,27.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 289 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,27.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 290 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,27.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 305 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,24.5 + parent: 1 + type: Transform + - inletTwoConcentration: 0.20999998 + inletOneConcentration: 0.79 + type: GasMixer + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 314 + components: + - rot: 3.141592653589793 rad + pos: -55.5,27.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF6666FF' + type: AtmosPipeColor +- proto: GasMixerFlipped + entities: + - uid: 303 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,27.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 315 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,28.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 326 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,22.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6481 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,30.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 6483 + components: + - rot: 1.5707963267948966 rad + pos: -60.5,30.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 6484 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,30.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice +- proto: GasOutletInjector + entities: + - uid: 329 + components: + - rot: 3.141592653589793 rad + pos: -56.5,22.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 331 + components: + - rot: 3.141592653589793 rad + pos: -54.5,22.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 348 + components: + - rot: 3.141592653589793 rad + pos: -53.5,32.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#3399FFFF' + type: AtmosPipeColor + - uid: 349 + components: + - rot: 3.141592653589793 rad + pos: -51.5,32.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF6666FF' + type: AtmosPipeColor + - uid: 350 + components: + - rot: 3.141592653589793 rad + pos: -49.5,32.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#33FF33FF' + type: AtmosPipeColor + - uid: 351 + components: + - rot: 3.141592653589793 rad + pos: -47.5,32.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF66FFFF' + type: AtmosPipeColor + - uid: 352 + components: + - rot: 3.141592653589793 rad + pos: -45.5,32.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 353 + components: + - rot: 3.141592653589793 rad + pos: -43.5,32.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#808080FF' + type: AtmosPipeColor + - uid: 4685 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,46.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 4686 + components: + - pos: -4.5,45.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 6460 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,30.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#B266FFFF' + type: AtmosPipeColor +- proto: GasPassiveGate + entities: + - uid: 258 + components: + - pos: -38.5,29.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 269 + components: + - rot: 3.141592653589793 rad + pos: -45.5,25.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#33FF33FF' + type: AtmosPipeColor + - uid: 390 + components: + - rot: 3.141592653589793 rad + pos: -56.5,34.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 394 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,35.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1069 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,20.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasPassiveVent + entities: + - uid: 328 + components: + - rot: 3.141592653589793 rad + pos: -55.5,22.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 333 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,22.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 354 + components: + - pos: -53.5,30.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#3399FFFF' + type: AtmosPipeColor + - uid: 355 + components: + - pos: -51.5,30.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF6666FF' + type: AtmosPipeColor + - uid: 356 + components: + - pos: -49.5,30.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#33FF33FF' + type: AtmosPipeColor + - uid: 357 + components: + - pos: -47.5,30.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF66FFFF' + type: AtmosPipeColor + - uid: 358 + components: + - pos: -45.5,30.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 359 + components: + - pos: -43.5,30.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#808080FF' + type: AtmosPipeColor + - uid: 6459 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,31.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 6476 + components: + - rot: 1.5707963267948966 rad + pos: -61.5,35.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25229 + components: + - rot: 3.141592653589793 rad + pos: 109.5,23.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice +- proto: GasPipeBend + entities: + - uid: 254 + components: + - rot: 3.141592653589793 rad + pos: -39.5,32.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 261 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,28.5 + parent: 1 + type: Transform + - uid: 264 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,26.5 + parent: 1 + type: Transform + - color: '#33FF33FF' + type: AtmosPipeColor + - uid: 267 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,24.5 + parent: 1 + type: Transform + - color: '#33FF33FF' + type: AtmosPipeColor + - uid: 274 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 276 + components: + - rot: 3.141592653589793 rad + pos: -48.5,24.5 + parent: 1 + type: Transform + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 299 + components: + - rot: 3.141592653589793 rad + pos: -50.5,27.5 + parent: 1 + type: Transform + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 301 + components: + - pos: -50.5,28.5 + parent: 1 + type: Transform + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 306 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,24.5 + parent: 1 + type: Transform + - color: '#FF6666FF' + type: AtmosPipeColor + - uid: 320 + components: + - rot: 3.141592653589793 rad + pos: -55.5,26.5 + parent: 1 + type: Transform + - color: '#FF6666FF' + type: AtmosPipeColor + - uid: 327 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 330 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,24.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 407 + components: + - pos: -39.5,34.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 408 + components: + - rot: 3.141592653589793 rad + pos: -42.5,34.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 409 + components: + - pos: -42.5,35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 426 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 606 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 611 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,-15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 646 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 647 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 670 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 707 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-31.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 708 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-31.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 726 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1067 + components: + - rot: 3.141592653589793 rad + pos: 0.5,19.5 + parent: 1 + type: Transform + - color: '#E5CCFFFF' + type: AtmosPipeColor + - uid: 1278 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-29.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1309 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1315 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1340 + components: + - pos: -18.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1348 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1352 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1353 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1369 + components: + - pos: -9.5,17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1755 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1774 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,-16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1777 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1906 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-23.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2146 + components: + - rot: 3.141592653589793 rad + pos: -11.5,17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2148 + components: + - pos: -8.5,18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2149 + components: + - pos: -9.5,20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2150 + components: + - pos: -11.5,19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2151 + components: + - rot: 3.141592653589793 rad + pos: -9.5,18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2152 + components: + - pos: 44.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2157 + components: + - pos: 36.5,52.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2193 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2241 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-24.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2393 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2395 + components: + - pos: -25.5,-9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2821 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2924 + components: + - pos: 26.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2938 + components: + - rot: 3.141592653589793 rad + pos: 33.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3220 + components: + - pos: 45.5,24.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4665 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4681 + components: + - pos: -1.5,46.5 + parent: 1 + type: Transform + - uid: 4682 + components: + - rot: 3.141592653589793 rad + pos: -4.5,43.5 + parent: 1 + type: Transform + - uid: 5246 + components: + - rot: 3.141592653589793 rad + pos: 44.5,24.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5346 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,37.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5348 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5350 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5717 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,37.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5986 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5992 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5997 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6281 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,50.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6469 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,31.5 + parent: 1 + type: Transform + - uid: 6475 + components: + - pos: -57.5,30.5 + parent: 1 + type: Transform + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 6485 + components: + - rot: 3.141592653589793 rad + pos: -57.5,28.5 + parent: 1 + type: Transform + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 9860 + components: + - pos: 36.5,-31.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9861 + components: + - pos: 38.5,-32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9862 + components: + - pos: 35.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10825 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,31.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10865 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10900 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10901 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,38.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10902 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,38.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10903 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10904 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10905 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,40.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10906 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,40.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10907 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10915 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10916 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10918 + components: + - rot: 3.141592653589793 rad + pos: -33.5,24.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10919 + components: + - pos: -31.5,24.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10920 + components: + - rot: 3.141592653589793 rad + pos: -31.5,23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10921 + components: + - pos: -30.5,23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10922 + components: + - rot: 3.141592653589793 rad + pos: -30.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10923 + components: + - pos: -29.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10924 + components: + - rot: 3.141592653589793 rad + pos: -29.5,21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10925 + components: + - pos: -28.5,21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10926 + components: + - rot: 3.141592653589793 rad + pos: -28.5,20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10927 + components: + - rot: 3.141592653589793 rad + pos: -32.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10929 + components: + - pos: -30.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10930 + components: + - rot: 3.141592653589793 rad + pos: -30.5,24.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10931 + components: + - pos: -29.5,24.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10932 + components: + - rot: 3.141592653589793 rad + pos: -29.5,23.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10933 + components: + - pos: -28.5,23.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10934 + components: + - rot: 3.141592653589793 rad + pos: -28.5,22.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10935 + components: + - pos: -27.5,22.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10936 + components: + - rot: 3.141592653589793 rad + pos: -27.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10949 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10959 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10960 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10981 + components: + - rot: 3.141592653589793 rad + pos: -61.5,-1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10993 + components: + - pos: -54.5,-1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11011 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11048 + components: + - rot: 3.141592653589793 rad + pos: -56.5,-16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11050 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11137 + components: + - rot: 3.141592653589793 rad + pos: -18.5,9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11273 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11274 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11275 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-43.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11281 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11282 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11294 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11295 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-31.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11296 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11297 + components: + - pos: -31.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11298 + components: + - pos: -30.5,-31.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11322 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11440 + components: + - pos: 12.5,-25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11487 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-38.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11535 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-43.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11537 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-46.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12556 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12592 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12598 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12627 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12697 + components: + - rot: -1.5707963267948966 rad + pos: 48.5,34.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12709 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12710 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,24.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12712 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12720 + components: + - pos: -13.5,24.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12741 + components: + - rot: 3.141592653589793 rad + pos: -13.5,20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12742 + components: + - rot: 3.141592653589793 rad + pos: -12.5,19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12748 + components: + - pos: -12.5,20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12759 + components: + - pos: -6.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12760 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12761 + components: + - pos: -4.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12763 + components: + - rot: 3.141592653589793 rad + pos: -6.5,13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12764 + components: + - rot: 3.141592653589793 rad + pos: -5.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12767 + components: + - pos: 4.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12920 + components: + - rot: 3.141592653589793 rad + pos: 38.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12921 + components: + - pos: 48.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12940 + components: + - pos: 38.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12974 + components: + - pos: 13.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13096 + components: + - pos: 21.5,-13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13097 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13124 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13125 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13131 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,-16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13134 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,-12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13135 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13140 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,-11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13141 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13143 + components: + - rot: -1.5707963267948966 rad + pos: 48.5,-12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13145 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,-11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13161 + components: + - pos: 47.5,-6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13162 + components: + - pos: 49.5,-7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13229 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-34.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13230 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-31.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13231 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13232 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-29.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13233 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,-28.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13234 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-29.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13237 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-31.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13240 + components: + - rot: -1.5707963267948966 rad + pos: 52.5,-25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13241 + components: + - rot: -1.5707963267948966 rad + pos: 53.5,-24.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13242 + components: + - rot: -1.5707963267948966 rad + pos: 54.5,-23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13243 + components: + - rot: -1.5707963267948966 rad + pos: 55.5,-22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13244 + components: + - rot: -1.5707963267948966 rad + pos: 56.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13245 + components: + - rot: -1.5707963267948966 rad + pos: 57.5,-20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13246 + components: + - rot: 1.5707963267948966 rad + pos: 52.5,-24.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13247 + components: + - rot: 1.5707963267948966 rad + pos: 53.5,-23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13248 + components: + - rot: 1.5707963267948966 rad + pos: 54.5,-22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13249 + components: + - rot: 1.5707963267948966 rad + pos: 55.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13250 + components: + - rot: 1.5707963267948966 rad + pos: 56.5,-20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13251 + components: + - rot: 1.5707963267948966 rad + pos: 57.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13274 + components: + - rot: -1.5707963267948966 rad + pos: 86.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13280 + components: + - pos: 86.5,-2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13341 + components: + - rot: 3.141592653589793 rad + pos: 66.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13342 + components: + - pos: 66.5,-13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13365 + components: + - rot: 1.5707963267948966 rad + pos: 69.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13398 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13414 + components: + - rot: 3.141592653589793 rad + pos: 60.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13424 + components: + - rot: 3.141592653589793 rad + pos: -0.5,40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13434 + components: + - pos: -13.5,41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13435 + components: + - pos: -12.5,40.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13436 + components: + - pos: -11.5,39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13437 + components: + - pos: -10.5,38.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13438 + components: + - rot: 3.141592653589793 rad + pos: -13.5,40.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13439 + components: + - rot: 3.141592653589793 rad + pos: -12.5,39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13440 + components: + - rot: 3.141592653589793 rad + pos: -11.5,38.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13441 + components: + - rot: 3.141592653589793 rad + pos: -10.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13472 + components: + - rot: 3.141592653589793 rad + pos: -11.5,42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13479 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13567 + components: + - rot: 3.141592653589793 rad + pos: 12.5,48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13582 + components: + - rot: 3.141592653589793 rad + pos: 21.5,41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13615 + components: + - pos: 47.5,-10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13620 + components: + - pos: 28.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13622 + components: + - pos: 32.5,49.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13641 + components: + - rot: -1.5707963267948966 rad + pos: 80.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13643 + components: + - pos: 82.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13644 + components: + - rot: 3.141592653589793 rad + pos: 82.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13677 + components: + - rot: -1.5707963267948966 rad + pos: 63.5,7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13693 + components: + - pos: 60.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13702 + components: + - rot: 3.141592653589793 rad + pos: 87.5,18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13703 + components: + - pos: 87.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13765 + components: + - rot: -1.5707963267948966 rad + pos: 88.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13786 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13787 + components: + - pos: -8.5,-41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13808 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-29.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13809 + components: + - pos: 48.5,18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13810 + components: + - pos: 49.5,15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13811 + components: + - rot: 3.141592653589793 rad + pos: 48.5,15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13812 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13843 + components: + - rot: -1.5707963267948966 rad + pos: 101.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13844 + components: + - rot: 1.5707963267948966 rad + pos: 101.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13851 + components: + - pos: 104.5,10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13989 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13990 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13994 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13995 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13996 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14009 + components: + - pos: -55.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14026 + components: + - pos: -11.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14068 + components: + - rot: 3.141592653589793 rad + pos: -59.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14078 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14095 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14112 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14113 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14168 + components: + - pos: -20.5,8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14190 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14191 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14193 + components: + - rot: 3.141592653589793 rad + pos: -17.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14194 + components: + - pos: -17.5,18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14248 + components: + - pos: -15.5,-19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14249 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14338 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14339 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14340 + components: + - pos: -43.5,-25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14348 + components: + - pos: 16.5,-24.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14406 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14439 + components: + - pos: 34.5,-29.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14441 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-31.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14442 + components: + - rot: 3.141592653589793 rad + pos: 36.5,-32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14446 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-37.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14470 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14491 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-42.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14492 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-43.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14493 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-44.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14495 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,-42.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14496 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-43.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14497 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-44.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14498 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-46.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14499 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-46.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14500 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14517 + components: + - pos: 23.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14524 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14556 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-31.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14557 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-30.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14558 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-29.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14559 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14560 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,-27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14561 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-31.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14562 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-30.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14563 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-29.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14564 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14577 + components: + - rot: -1.5707963267948966 rad + pos: 51.5,-24.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14578 + components: + - rot: 1.5707963267948966 rad + pos: 51.5,-23.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14579 + components: + - rot: -1.5707963267948966 rad + pos: 53.5,-23.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14580 + components: + - rot: -1.5707963267948966 rad + pos: 54.5,-22.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14581 + components: + - rot: -1.5707963267948966 rad + pos: 55.5,-21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14582 + components: + - rot: -1.5707963267948966 rad + pos: 56.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14583 + components: + - rot: -1.5707963267948966 rad + pos: 57.5,-19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14584 + components: + - rot: 1.5707963267948966 rad + pos: 56.5,-19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14585 + components: + - rot: 1.5707963267948966 rad + pos: 55.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14586 + components: + - rot: 1.5707963267948966 rad + pos: 54.5,-21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14587 + components: + - rot: 1.5707963267948966 rad + pos: 53.5,-22.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14592 + components: + - rot: -1.5707963267948966 rad + pos: 58.5,-18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14593 + components: + - rot: 1.5707963267948966 rad + pos: 57.5,-18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14606 + components: + - rot: 1.5707963267948966 rad + pos: 58.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14607 + components: + - rot: -1.5707963267948966 rad + pos: 59.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14613 + components: + - pos: 59.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14618 + components: + - rot: 1.5707963267948966 rad + pos: 58.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14620 + components: + - pos: 101.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14637 + components: + - rot: -1.5707963267948966 rad + pos: 60.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14639 + components: + - rot: 3.141592653589793 rad + pos: 101.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14646 + components: + - rot: 3.141592653589793 rad + pos: 62.5,-4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14653 + components: + - rot: 3.141592653589793 rad + pos: 69.5,-3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14682 + components: + - pos: 67.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14683 + components: + - rot: 3.141592653589793 rad + pos: 67.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14741 + components: + - rot: 1.5707963267948966 rad + pos: 100.5,11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14746 + components: + - rot: 1.5707963267948966 rad + pos: 91.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14791 + components: + - rot: -1.5707963267948966 rad + pos: 106.5,-1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14797 + components: + - rot: 3.141592653589793 rad + pos: 112.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14821 + components: + - rot: 1.5707963267948966 rad + pos: 60.5,13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14831 + components: + - rot: 3.141592653589793 rad + pos: 64.5,7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14840 + components: + - rot: 3.141592653589793 rad + pos: 72.5,7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14854 + components: + - rot: 3.141592653589793 rad + pos: 70.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14880 + components: + - rot: -1.5707963267948966 rad + pos: 77.5,20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14882 + components: + - pos: 86.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14883 + components: + - rot: 3.141592653589793 rad + pos: 86.5,17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14900 + components: + - rot: 1.5707963267948966 rad + pos: 77.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14967 + components: + - rot: 3.141592653589793 rad + pos: 79.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14993 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15035 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15036 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15037 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15038 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15039 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15043 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15044 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15047 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,-15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15056 + components: + - pos: 44.5,-7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15064 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,41.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15066 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15067 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15072 + components: + - pos: 34.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15079 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15123 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15161 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15179 + components: + - rot: 3.141592653589793 rad + pos: -4.5,12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15180 + components: + - pos: -3.5,12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15213 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15214 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,22.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15215 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,22.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15216 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15217 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15218 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15293 + components: + - rot: 3.141592653589793 rad + pos: -8.5,24.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15294 + components: + - pos: -7.5,24.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15298 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15377 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-33.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15385 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-36.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15414 + components: + - pos: 40.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15415 + components: + - pos: 41.5,27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15416 + components: + - pos: 42.5,26.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15420 + components: + - pos: 46.5,22.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15421 + components: + - pos: 47.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15422 + components: + - pos: 48.5,20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15423 + components: + - pos: 49.5,19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15424 + components: + - pos: 50.5,18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15425 + components: + - rot: 3.141592653589793 rad + pos: 49.5,18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15426 + components: + - rot: 3.141592653589793 rad + pos: 48.5,19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15427 + components: + - rot: 3.141592653589793 rad + pos: 47.5,20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15428 + components: + - rot: 3.141592653589793 rad + pos: 46.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15429 + components: + - rot: 3.141592653589793 rad + pos: 45.5,22.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15432 + components: + - rot: 3.141592653589793 rad + pos: 42.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15433 + components: + - rot: 3.141592653589793 rad + pos: 41.5,26.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15434 + components: + - rot: 3.141592653589793 rad + pos: 40.5,27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15438 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15460 + components: + - rot: -1.5707963267948966 rad + pos: 50.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15509 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15532 + components: + - pos: 32.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15539 + components: + - pos: -13.5,40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15540 + components: + - pos: -12.5,39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15541 + components: + - pos: -11.5,38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15542 + components: + - pos: -10.5,37.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15543 + components: + - rot: 3.141592653589793 rad + pos: -10.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15544 + components: + - rot: 3.141592653589793 rad + pos: -11.5,37.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15545 + components: + - rot: 3.141592653589793 rad + pos: -12.5,38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15546 + components: + - rot: 3.141592653589793 rad + pos: -13.5,39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15555 + components: + - pos: -5.5,43.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15556 + components: + - rot: 3.141592653589793 rad + pos: -10.5,43.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15573 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15646 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15647 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,37.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15648 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15650 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15651 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15652 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,37.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15662 + components: + - rot: 3.141592653589793 rad + pos: 35.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15668 + components: + - pos: 39.5,48.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15669 + components: + - pos: 38.5,49.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15670 + components: + - pos: 37.5,50.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15673 + components: + - pos: 34.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15674 + components: + - rot: 3.141592653589793 rad + pos: 38.5,48.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15675 + components: + - rot: 3.141592653589793 rad + pos: 37.5,49.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15676 + components: + - rot: 3.141592653589793 rad + pos: 36.5,50.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15678 + components: + - rot: 3.141592653589793 rad + pos: 34.5,52.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15712 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16580 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16755 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16808 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-32.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16833 + components: + - pos: 7.5,-33.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17120 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17368 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-37.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17424 + components: + - pos: -56.5,-23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17428 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,-16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17430 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17434 + components: + - pos: -5.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17438 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17440 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17443 + components: + - pos: -47.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17466 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 18122 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 18197 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 18239 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 18240 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 18618 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,50.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19223 + components: + - rot: 3.141592653589793 rad + pos: -7.5,21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19225 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19230 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,24.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19334 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19335 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19338 + components: + - rot: 3.141592653589793 rad + pos: -1.5,19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19339 + components: + - pos: 0.5,19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19354 + components: + - pos: 24.5,11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19357 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19358 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-46.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19367 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19520 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,24.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19615 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19621 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-33.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19930 + components: + - pos: 40.5,19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19967 + components: + - rot: 3.141592653589793 rad + pos: 33.5,22.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19982 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 20018 + components: + - pos: 27.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20024 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20137 + components: + - pos: 32.5,23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20141 + components: + - rot: 3.141592653589793 rad + pos: 38.5,21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20142 + components: + - pos: 43.5,21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20143 + components: + - rot: 3.141592653589793 rad + pos: 43.5,18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20606 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20787 + components: + - rot: 3.141592653589793 rad + pos: 64.5,19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20789 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 20793 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22271 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22275 + components: + - rot: 3.141592653589793 rad + pos: 25.5,39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22380 + components: + - rot: 1.5707963267948966 rad + pos: 70.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22381 + components: + - pos: 73.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22389 + components: + - rot: 3.141592653589793 rad + pos: 76.5,-4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22391 + components: + - rot: 3.141592653589793 rad + pos: 73.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22721 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23512 + components: + - rot: -1.5707963267948966 rad + pos: 100.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23626 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23639 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,46.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23640 + components: + - pos: -23.5,46.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23643 + components: + - rot: 3.141592653589793 rad + pos: 39.5,38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23644 + components: + - rot: 3.141592653589793 rad + pos: 40.5,37.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23645 + components: + - rot: 3.141592653589793 rad + pos: 41.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23646 + components: + - rot: 3.141592653589793 rad + pos: 42.5,35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23647 + components: + - rot: 3.141592653589793 rad + pos: 43.5,34.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23648 + components: + - pos: 40.5,38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23649 + components: + - pos: 41.5,37.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23650 + components: + - pos: 42.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23651 + components: + - pos: 43.5,35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23652 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23665 + components: + - rot: 3.141592653589793 rad + pos: 57.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23666 + components: + - pos: 57.5,28.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23667 + components: + - pos: 56.5,29.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23668 + components: + - pos: 55.5,30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23669 + components: + - pos: 54.5,31.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23670 + components: + - pos: 53.5,32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23671 + components: + - rot: 3.141592653589793 rad + pos: 51.5,32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23672 + components: + - rot: 3.141592653589793 rad + pos: 53.5,31.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23673 + components: + - rot: 3.141592653589793 rad + pos: 54.5,30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23674 + components: + - rot: 3.141592653589793 rad + pos: 55.5,29.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23675 + components: + - rot: 3.141592653589793 rad + pos: 56.5,28.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23696 + components: + - rot: 1.5707963267948966 rad + pos: 51.5,38.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23697 + components: + - rot: -1.5707963267948966 rad + pos: 58.5,39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23698 + components: + - pos: 58.5,38.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23725 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23761 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23841 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23960 + components: + - rot: -1.5707963267948966 rad + pos: 66.5,19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23961 + components: + - pos: 66.5,22.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25194 + components: + - rot: 1.5707963267948966 rad + pos: 76.5,7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25332 + components: + - rot: 3.141592653589793 rad + pos: -63.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25333 + components: + - pos: -63.5,3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25362 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25363 + components: + - rot: -1.5707963267948966 rad + pos: -63.5,4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25365 + components: + - rot: 3.141592653589793 rad + pos: -71.5,4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25511 + components: + - pos: -34.5,3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25512 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25513 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25514 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25515 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 11060 + components: + - pos: -50.5,-16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11229 + components: + - pos: -9.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11248 + components: + - pos: -27.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11349 + components: + - pos: 70.5,27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12937 + components: + - pos: 99.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12982 + components: + - pos: 32.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12983 + components: + - pos: 16.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13339 + components: + - pos: 86.5,-9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13343 + components: + - pos: 63.5,-13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13585 + components: + - pos: 27.5,49.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13638 + components: + - pos: 63.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13741 + components: + - pos: 69.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13743 + components: + - pos: 64.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13744 + components: + - pos: 67.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13960 + components: + - pos: -26.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14285 + components: + - pos: 10.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14344 + components: + - pos: -51.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14417 + components: + - pos: -0.5,-38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14657 + components: + - pos: 64.5,-8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14658 + components: + - pos: 64.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14688 + components: + - pos: 85.5,-8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14830 + components: + - pos: 64.5,13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14941 + components: + - pos: 66.5,27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15603 + components: + - pos: 13.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16798 + components: + - pos: 16.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17425 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17436 + components: + - pos: -8.5,-5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 18811 + components: + - pos: 56.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19152 + components: + - pos: 57.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19614 + components: + - pos: 28.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19619 + components: + - pos: 0.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19620 + components: + - pos: 12.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19622 + components: + - pos: 10.5,20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20794 + components: + - pos: 10.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22274 + components: + - pos: 25.5,42.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25422 + components: + - pos: -49.5,-28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 246 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,32.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 256 + components: + - pos: -38.5,31.5 + parent: 1 + type: Transform + - uid: 257 + components: + - pos: -38.5,30.5 + parent: 1 + type: Transform + - uid: 272 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,26.5 + parent: 1 + type: Transform + - color: '#33FF33FF' + type: AtmosPipeColor + - uid: 302 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,26.5 + parent: 1 + type: Transform + - color: '#FF6666FF' + type: AtmosPipeColor + - uid: 304 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,27.5 + parent: 1 + type: Transform + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 308 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,24.5 + parent: 1 + type: Transform + - color: '#FF6666FF' + type: AtmosPipeColor + - uid: 309 + components: + - pos: -51.5,27.5 + parent: 1 + type: Transform + - color: '#FF6666FF' + type: AtmosPipeColor + - uid: 311 + components: + - pos: -53.5,26.5 + parent: 1 + type: Transform + - color: '#3399FFFF' + type: AtmosPipeColor + - uid: 313 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,26.5 + parent: 1 + type: Transform + - color: '#FF6666FF' + type: AtmosPipeColor + - uid: 316 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,28.5 + parent: 1 + type: Transform + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 317 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,28.5 + parent: 1 + type: Transform + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 318 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,28.5 + parent: 1 + type: Transform + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 319 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,28.5 + parent: 1 + type: Transform + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 321 + components: + - pos: -48.5,25.5 + parent: 1 + type: Transform + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 322 + components: + - pos: -48.5,26.5 + parent: 1 + type: Transform + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 323 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,24.5 + parent: 1 + type: Transform + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 332 + components: + - rot: 3.141592653589793 rad + pos: -54.5,23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 334 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 339 + components: + - pos: -56.5,23.5 + parent: 1 + type: Transform + - uid: 340 + components: + - pos: -55.5,23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 360 + components: + - pos: -53.5,29.5 + parent: 1 + type: Transform + - color: '#3399FFFF' + type: AtmosPipeColor + - uid: 361 + components: + - pos: -51.5,29.5 + parent: 1 + type: Transform + - color: '#FF6666FF' + type: AtmosPipeColor + - uid: 362 + components: + - pos: -49.5,29.5 + parent: 1 + type: Transform + - color: '#33FF33FF' + type: AtmosPipeColor + - uid: 363 + components: + - pos: -47.5,29.5 + parent: 1 + type: Transform + - color: '#FF66FFFF' + type: AtmosPipeColor + - uid: 364 + components: + - pos: -45.5,29.5 + parent: 1 + type: Transform + - uid: 365 + components: + - pos: -43.5,29.5 + parent: 1 + type: Transform + - color: '#808080FF' + type: AtmosPipeColor + - uid: 366 + components: + - pos: -43.5,33.5 + parent: 1 + type: Transform + - color: '#808080FF' + type: AtmosPipeColor + - uid: 367 + components: + - pos: -43.5,34.5 + parent: 1 + type: Transform + - color: '#808080FF' + type: AtmosPipeColor + - uid: 368 + components: + - pos: -45.5,33.5 + parent: 1 + type: Transform + - uid: 369 + components: + - pos: -45.5,34.5 + parent: 1 + type: Transform + - uid: 370 + components: + - pos: -47.5,33.5 + parent: 1 + type: Transform + - color: '#FF66FFFF' + type: AtmosPipeColor + - uid: 371 + components: + - pos: -47.5,34.5 + parent: 1 + type: Transform + - color: '#FF66FFFF' + type: AtmosPipeColor + - uid: 372 + components: + - pos: -49.5,33.5 + parent: 1 + type: Transform + - color: '#33FF33FF' + type: AtmosPipeColor + - uid: 373 + components: + - pos: -49.5,34.5 + parent: 1 + type: Transform + - color: '#33FF33FF' + type: AtmosPipeColor + - uid: 374 + components: + - pos: -51.5,33.5 + parent: 1 + type: Transform + - color: '#FF6666FF' + type: AtmosPipeColor + - uid: 375 + components: + - pos: -51.5,34.5 + parent: 1 + type: Transform + - color: '#FF6666FF' + type: AtmosPipeColor + - uid: 376 + components: + - pos: -53.5,33.5 + parent: 1 + type: Transform + - color: '#3399FFFF' + type: AtmosPipeColor + - uid: 377 + components: + - pos: -53.5,34.5 + parent: 1 + type: Transform + - color: '#3399FFFF' + type: AtmosPipeColor + - uid: 378 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 379 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 380 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 381 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 382 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 383 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 386 + components: + - rot: 3.141592653589793 rad + pos: -56.5,30.5 + parent: 1 + type: Transform + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 387 + components: + - rot: 3.141592653589793 rad + pos: -56.5,31.5 + parent: 1 + type: Transform + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 388 + components: + - rot: 3.141592653589793 rad + pos: -56.5,32.5 + parent: 1 + type: Transform + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 389 + components: + - rot: 3.141592653589793 rad + pos: -56.5,33.5 + parent: 1 + type: Transform + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 397 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,33.5 + parent: 1 + type: Transform + - uid: 398 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,32.5 + parent: 1 + type: Transform + - uid: 403 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,31.5 + parent: 1 + type: Transform + - uid: 404 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,28.5 + parent: 1 + type: Transform + - uid: 405 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,28.5 + parent: 1 + type: Transform + - uid: 410 + components: + - rot: 3.141592653589793 rad + pos: -39.5,33.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 415 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 416 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 417 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 418 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 419 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 420 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 421 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 422 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 423 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 424 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 425 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 428 + components: + - pos: -37.5,23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 429 + components: + - pos: -37.5,24.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 430 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 540 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,52.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 557 + components: + - rot: 3.141592653589793 rad + pos: 91.5,7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 594 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 598 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 610 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 625 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 644 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-30.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 645 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 648 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,-24.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 665 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 725 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 758 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 776 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 777 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 954 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1034 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-29.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1044 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1188 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-29.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1290 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1291 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-26.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1297 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1308 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1314 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1339 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1341 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1342 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1343 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1347 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1349 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1350 + components: + - pos: -18.5,-20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1351 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1354 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1523 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1752 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1754 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1756 + components: + - rot: 3.141592653589793 rad + pos: 46.5,-13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1765 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,-16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1766 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1771 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1772 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1776 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1778 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,-27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1792 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2106 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,-28.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2107 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2110 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2111 + components: + - rot: 3.141592653589793 rad + pos: 46.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2112 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2144 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2145 + components: + - rot: 3.141592653589793 rad + pos: -8.5,16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2158 + components: + - rot: 3.141592653589793 rad + pos: 36.5,51.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2188 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2236 + components: + - rot: 3.141592653589793 rad + pos: -9.5,15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2237 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2238 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2239 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2240 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,-24.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2242 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-29.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2243 + components: + - rot: 3.141592653589793 rad + pos: 48.5,-29.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2244 + components: + - rot: 3.141592653589793 rad + pos: 48.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2245 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,-27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2247 + components: + - pos: -19.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2248 + components: + - pos: -19.5,-13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2309 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2310 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2312 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2315 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2394 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2396 + components: + - pos: -19.5,-10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2712 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2721 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2724 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,-28.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2725 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2726 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2727 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2728 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2730 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2731 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2733 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2736 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2737 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2739 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2740 + components: + - pos: -19.5,-11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2746 + components: + - rot: 3.141592653589793 rad + pos: -11.5,18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2748 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2818 + components: + - rot: 3.141592653589793 rad + pos: 45.5,23.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3235 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3990 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4148 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4444 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4683 + components: + - rot: 3.141592653589793 rad + pos: -4.5,44.5 + parent: 1 + type: Transform + - uid: 4684 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,46.5 + parent: 1 + type: Transform + - uid: 5347 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5349 + components: + - rot: 3.141592653589793 rad + pos: -32.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5988 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,-24.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6048 + components: + - pos: -32.5,-27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6206 + components: + - rot: 3.141592653589793 rad + pos: 49.5,-10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6230 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6461 + components: + - rot: -1.5707963267948966 rad + pos: -60.5,31.5 + parent: 1 + type: Transform + - uid: 6465 + components: + - rot: 1.5707963267948966 rad + pos: -62.5,30.5 + parent: 1 + type: Transform + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 6466 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,30.5 + parent: 1 + type: Transform + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 6467 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,30.5 + parent: 1 + type: Transform + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 6470 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,31.5 + parent: 1 + type: Transform + - uid: 6471 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,31.5 + parent: 1 + type: Transform + - uid: 6472 + components: + - rot: 1.5707963267948966 rad + pos: -62.5,31.5 + parent: 1 + type: Transform + - uid: 6478 + components: + - rot: -1.5707963267948966 rad + pos: -60.5,35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6555 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6660 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6716 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6717 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6718 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6719 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7981 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8394 + components: + - rot: -1.5707963267948966 rad + pos: 94.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9503 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9964 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,-23.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9965 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,-23.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9974 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-23.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9999 + components: + - pos: -32.5,-20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10654 + components: + - pos: -8.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10816 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10817 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10818 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,32.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10819 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,32.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10821 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10822 + components: + - pos: -49.5,21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10823 + components: + - pos: -49.5,20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10826 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,31.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10827 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,31.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10828 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,31.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10829 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,31.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10830 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,31.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10831 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,31.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10832 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,31.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10833 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,31.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10834 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,31.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10835 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,31.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10836 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,31.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10837 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,31.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10838 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,31.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10839 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,31.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10840 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,31.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10841 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,31.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10842 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,31.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10867 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10868 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10869 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10870 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10871 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10872 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10873 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10874 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10875 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10876 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10877 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10878 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10879 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10880 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10881 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10882 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10883 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10884 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10885 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10886 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10887 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10888 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10889 + components: + - pos: -33.5,36.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10890 + components: + - pos: -33.5,35.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10891 + components: + - pos: -33.5,34.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10892 + components: + - pos: -33.5,33.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10893 + components: + - pos: -33.5,32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10894 + components: + - pos: -33.5,31.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10895 + components: + - pos: -33.5,30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10896 + components: + - pos: -33.5,29.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10897 + components: + - pos: -33.5,28.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10898 + components: + - pos: -33.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10899 + components: + - pos: -33.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10909 + components: + - pos: 34.5,-30.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10911 + components: + - pos: 34.5,-31.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10912 + components: + - pos: 34.5,-33.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10913 + components: + - pos: 34.5,-32.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10917 + components: + - pos: 38.5,-41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10928 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10937 + components: + - pos: -32.5,26.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10938 + components: + - pos: -32.5,27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10939 + components: + - pos: -32.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10940 + components: + - pos: -32.5,29.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10941 + components: + - pos: -32.5,30.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10942 + components: + - pos: -32.5,31.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10943 + components: + - pos: -32.5,33.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10944 + components: + - pos: -32.5,34.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10945 + components: + - pos: -32.5,35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10946 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,24.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10950 + components: + - rot: 3.141592653589793 rad + pos: -49.5,19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10952 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10953 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10954 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10955 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10956 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10957 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10958 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10965 + components: + - pos: -50.5,17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10966 + components: + - pos: -50.5,16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10967 + components: + - pos: -50.5,15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10969 + components: + - pos: -50.5,13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10970 + components: + - pos: -50.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10971 + components: + - pos: -50.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10972 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10973 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10974 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10975 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-43.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10982 + components: + - rot: 3.141592653589793 rad + pos: -61.5,-0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10983 + components: + - rot: 3.141592653589793 rad + pos: -61.5,0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10984 + components: + - rot: 3.141592653589793 rad + pos: -61.5,1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10985 + components: + - rot: 3.141592653589793 rad + pos: -61.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10986 + components: + - rot: 3.141592653589793 rad + pos: -61.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10988 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10989 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,-1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10990 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,-1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10991 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,-1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10992 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,-1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10995 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10996 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10997 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10998 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10999 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11000 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11001 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11002 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11003 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11004 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11005 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11006 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11007 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11008 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11016 + components: + - rot: 3.141592653589793 rad + pos: -50.5,9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11017 + components: + - rot: 3.141592653589793 rad + pos: -50.5,8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11018 + components: + - rot: 3.141592653589793 rad + pos: -50.5,6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11019 + components: + - rot: 3.141592653589793 rad + pos: -50.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11020 + components: + - rot: 3.141592653589793 rad + pos: -50.5,4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11021 + components: + - rot: 3.141592653589793 rad + pos: -50.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11022 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11023 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11024 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11025 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11026 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11027 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11028 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11029 + components: + - pos: -41.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11030 + components: + - pos: -41.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11031 + components: + - pos: -41.5,4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11032 + components: + - pos: -46.5,0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11033 + components: + - pos: -46.5,-0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11034 + components: + - pos: -50.5,0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11035 + components: + - pos: -50.5,-0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11036 + components: + - pos: -50.5,-1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11040 + components: + - pos: -50.5,-3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11041 + components: + - pos: -50.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11042 + components: + - pos: -50.5,-5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11043 + components: + - pos: -50.5,-6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11044 + components: + - pos: -50.5,-7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11045 + components: + - pos: -50.5,-8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11046 + components: + - pos: -50.5,-9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11051 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11052 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11053 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11054 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11055 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11056 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,-16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11057 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11058 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11059 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11066 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11067 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,-16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11068 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11074 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11075 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11084 + components: + - pos: -43.5,-26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11086 + components: + - pos: -50.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11088 + components: + - pos: -50.5,-13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11089 + components: + - pos: -50.5,-12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11090 + components: + - pos: -50.5,-11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11091 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11102 + components: + - rot: 3.141592653589793 rad + pos: -56.5,-26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11103 + components: + - rot: 3.141592653589793 rad + pos: -56.5,-25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11104 + components: + - rot: 3.141592653589793 rad + pos: -56.5,-24.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11105 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11110 + components: + - pos: -50.5,-22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11112 + components: + - pos: -50.5,-20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11113 + components: + - pos: -50.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11114 + components: + - pos: -50.5,-18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11115 + components: + - pos: -50.5,-17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11120 + components: + - pos: -27.5,15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11121 + components: + - pos: -27.5,16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11122 + components: + - pos: -27.5,17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11123 + components: + - pos: -27.5,18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11124 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11125 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11126 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11127 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11128 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11129 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11130 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11131 + components: + - rot: 3.141592653589793 rad + pos: -19.5,17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11132 + components: + - rot: 3.141592653589793 rad + pos: -19.5,16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11133 + components: + - rot: 3.141592653589793 rad + pos: -19.5,15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11138 + components: + - rot: 3.141592653589793 rad + pos: -18.5,10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11139 + components: + - rot: 3.141592653589793 rad + pos: -18.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11140 + components: + - rot: 3.141592653589793 rad + pos: -18.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11141 + components: + - rot: 3.141592653589793 rad + pos: -18.5,13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11250 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11251 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11252 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11253 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11254 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11255 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11256 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11257 + components: + - rot: 3.141592653589793 rad + pos: -27.5,4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11258 + components: + - rot: 3.141592653589793 rad + pos: -27.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11259 + components: + - rot: 3.141592653589793 rad + pos: -27.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11260 + components: + - rot: 3.141592653589793 rad + pos: -27.5,1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11261 + components: + - rot: 3.141592653589793 rad + pos: -27.5,0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11262 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11263 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11264 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11265 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11266 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11267 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11268 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11269 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11270 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11271 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11272 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11283 + components: + - pos: -32.5,-18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11284 + components: + - pos: -32.5,-25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11285 + components: + - pos: -32.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11286 + components: + - pos: -32.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11287 + components: + - pos: -32.5,-22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11289 + components: + - pos: -32.5,-24.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11290 + components: + - pos: -32.5,-26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11292 + components: + - pos: -32.5,-28.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11293 + components: + - pos: -32.5,-29.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11299 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11300 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11301 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11302 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11303 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11304 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11305 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11306 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11307 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11308 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11309 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11310 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11311 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11312 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11314 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-33.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11315 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-34.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11316 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-35.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11317 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-36.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11318 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11319 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-38.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11320 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11321 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-40.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11338 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11339 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11340 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11342 + components: + - rot: 3.141592653589793 rad + pos: 15.5,18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11343 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11344 + components: + - pos: -5.5,-46.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11350 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11351 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11352 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11394 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-48.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11395 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11396 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11397 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11398 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11399 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11400 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11401 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11402 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11403 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11404 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11405 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11408 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11409 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11410 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11412 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11413 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11414 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11415 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11416 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11417 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11420 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11427 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-29.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11431 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-31.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11433 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-33.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11434 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-34.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11435 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-35.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11436 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-36.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11442 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11443 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11444 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11445 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11446 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11447 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11448 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-28.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11449 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-29.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11453 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11458 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11459 + components: + - pos: 16.5,23.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11460 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11464 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11465 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11466 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11467 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11468 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11469 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11470 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11471 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11475 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11482 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-35.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11483 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-36.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11484 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11485 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-38.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11486 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-38.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11527 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11529 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,-6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11552 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-46.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11553 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-46.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11554 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-46.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11555 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-46.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11556 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-46.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11557 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-46.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11558 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-46.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11559 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-46.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11560 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-46.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11561 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-46.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11562 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-46.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11563 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-46.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11564 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-46.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11565 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-46.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11566 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-46.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11567 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-46.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11568 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-46.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11569 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-47.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11570 + components: + - pos: 16.5,22.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11571 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11572 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-47.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11573 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-45.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11574 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-44.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12071 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12073 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12074 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12516 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-34.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12517 + components: + - pos: 38.5,-40.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12518 + components: + - pos: 38.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12535 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12536 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12537 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12538 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12539 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12540 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12541 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12542 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12543 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12544 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12545 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12546 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12547 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12548 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12550 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12551 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12552 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12554 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12555 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12565 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12566 + components: + - pos: 2.5,-17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12567 + components: + - pos: 2.5,-18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12568 + components: + - pos: 2.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12569 + components: + - pos: 2.5,-20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12587 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12588 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12589 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12590 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12593 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12597 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12600 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12601 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12602 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12603 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12604 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12605 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12610 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12611 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12612 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12615 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-23.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12619 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12621 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12622 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12623 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-23.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12624 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12630 + components: + - pos: -23.5,9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12631 + components: + - pos: -23.5,10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12632 + components: + - pos: -24.5,7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12633 + components: + - pos: -24.5,6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12634 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12635 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12640 + components: + - pos: -23.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12641 + components: + - pos: -23.5,-3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12642 + components: + - pos: -23.5,-1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12643 + components: + - pos: -23.5,-0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12644 + components: + - pos: -23.5,0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12645 + components: + - pos: -23.5,1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12646 + components: + - pos: -23.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12647 + components: + - pos: -23.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12648 + components: + - pos: -23.5,4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12651 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12652 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12653 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12654 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12655 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12656 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12657 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12658 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12659 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12660 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12661 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12662 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12663 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12664 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12665 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12666 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12667 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12668 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12669 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12670 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12671 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12672 + components: + - rot: 3.141592653589793 rad + pos: -9.5,6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12673 + components: + - rot: 3.141592653589793 rad + pos: -9.5,7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12674 + components: + - rot: 3.141592653589793 rad + pos: -9.5,8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12675 + components: + - rot: 3.141592653589793 rad + pos: -9.5,9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12677 + components: + - rot: 3.141592653589793 rad + pos: -27.5,6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12678 + components: + - rot: 3.141592653589793 rad + pos: -27.5,7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12679 + components: + - rot: 3.141592653589793 rad + pos: -27.5,8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12680 + components: + - rot: 3.141592653589793 rad + pos: -27.5,9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12681 + components: + - rot: 3.141592653589793 rad + pos: -27.5,10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12682 + components: + - rot: 3.141592653589793 rad + pos: -27.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12683 + components: + - rot: 3.141592653589793 rad + pos: -27.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12684 + components: + - rot: 3.141592653589793 rad + pos: -27.5,13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12686 + components: + - pos: -27.5,19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12688 + components: + - pos: -27.5,-11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12693 + components: + - pos: -20.5,-9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12694 + components: + - pos: -20.5,-10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12695 + components: + - pos: -20.5,-11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12698 + components: + - pos: -20.5,-14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12699 + components: + - pos: -20.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12700 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12701 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12702 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12704 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12705 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12713 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12714 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12715 + components: + - pos: -18.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12716 + components: + - pos: -18.5,23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12717 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,24.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12718 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,24.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12719 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,24.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12721 + components: + - rot: 3.141592653589793 rad + pos: -15.5,25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12722 + components: + - rot: 3.141592653589793 rad + pos: -15.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12723 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12724 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12725 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12726 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12727 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12728 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12731 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12732 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12733 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12734 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12735 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12736 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12737 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12738 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12768 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12769 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12770 + components: + - rot: 3.141592653589793 rad + pos: 4.5,8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12771 + components: + - rot: 3.141592653589793 rad + pos: 4.5,9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12772 + components: + - rot: 3.141592653589793 rad + pos: 4.5,10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12773 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12774 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12775 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12776 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12777 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12778 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12779 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12780 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12782 + components: + - pos: -9.5,16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12783 + components: + - pos: -13.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12784 + components: + - pos: -13.5,23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12821 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12822 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12823 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12824 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12825 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12826 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12827 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12828 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12829 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12833 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12834 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12835 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12836 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12837 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12838 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12840 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12841 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12842 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12843 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12844 + components: + - rot: 3.141592653589793 rad + pos: 10.5,13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12845 + components: + - rot: 3.141592653589793 rad + pos: 10.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12846 + components: + - rot: 3.141592653589793 rad + pos: 10.5,15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12847 + components: + - rot: 3.141592653589793 rad + pos: 10.5,16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12848 + components: + - rot: 3.141592653589793 rad + pos: 10.5,17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12849 + components: + - rot: 3.141592653589793 rad + pos: 10.5,18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12850 + components: + - rot: 3.141592653589793 rad + pos: 10.5,19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12852 + components: + - rot: 3.141592653589793 rad + pos: 10.5,21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12853 + components: + - rot: 3.141592653589793 rad + pos: 10.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12854 + components: + - rot: 3.141592653589793 rad + pos: 10.5,23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12855 + components: + - rot: 3.141592653589793 rad + pos: 10.5,24.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12856 + components: + - rot: 3.141592653589793 rad + pos: 10.5,25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12857 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12858 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-46.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12871 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12872 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12873 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12874 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12875 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12876 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12877 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12878 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12879 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12880 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12881 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12882 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12883 + components: + - pos: -5.5,-45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12888 + components: + - rot: 3.141592653589793 rad + pos: 15.5,19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12922 + components: + - pos: 48.5,4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12923 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12924 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12925 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12926 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12927 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12928 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12929 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12930 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12931 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12933 + components: + - rot: 3.141592653589793 rad + pos: 38.5,8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12934 + components: + - rot: 3.141592653589793 rad + pos: 38.5,9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12935 + components: + - rot: 3.141592653589793 rad + pos: 38.5,10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12936 + components: + - rot: 3.141592653589793 rad + pos: 38.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12942 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12944 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12945 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12946 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12947 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12948 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12950 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12951 + components: + - rot: 3.141592653589793 rad + pos: 15.5,20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12977 + components: + - rot: 3.141592653589793 rad + pos: 27.5,10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12984 + components: + - rot: 3.141592653589793 rad + pos: 15.5,10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12985 + components: + - rot: 3.141592653589793 rad + pos: 15.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12989 + components: + - pos: 15.5,-3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12990 + components: + - pos: 15.5,-2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12991 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12996 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12997 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12998 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12999 + components: + - rot: 3.141592653589793 rad + pos: 13.5,4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13001 + components: + - rot: 3.141592653589793 rad + pos: 13.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13002 + components: + - rot: 3.141592653589793 rad + pos: 13.5,1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13003 + components: + - rot: 3.141592653589793 rad + pos: 13.5,0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13004 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13005 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13006 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13007 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13008 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13009 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13010 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13011 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13012 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13013 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13014 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13015 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13016 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13017 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13018 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13019 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13020 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13021 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13022 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13023 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13024 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13025 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13026 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13027 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13028 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13029 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13030 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13031 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13032 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13033 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13034 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13035 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13036 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13037 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13038 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13039 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13040 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13049 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13050 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13051 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13052 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13053 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13054 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13055 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13056 + components: + - pos: 32.5,-0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13057 + components: + - pos: 32.5,-1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13058 + components: + - pos: 32.5,-2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13059 + components: + - pos: 32.5,-3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13060 + components: + - pos: 32.5,-5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13061 + components: + - pos: 32.5,-6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13062 + components: + - pos: 32.5,-7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13063 + components: + - pos: 32.5,-8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13064 + components: + - pos: 32.5,-9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13066 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13067 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13068 + components: + - pos: 29.5,-1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13069 + components: + - pos: 29.5,-2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13070 + components: + - pos: 29.5,-3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13071 + components: + - pos: 28.5,-3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13072 + components: + - pos: 28.5,-2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13073 + components: + - pos: 27.5,-2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13074 + components: + - pos: 27.5,-3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13075 + components: + - pos: 26.5,-3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13076 + components: + - pos: 26.5,-2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13077 + components: + - pos: 25.5,-2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13078 + components: + - pos: 25.5,-3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13079 + components: + - pos: 29.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13083 + components: + - rot: 3.141592653589793 rad + pos: 27.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13085 + components: + - pos: 29.5,10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13086 + components: + - pos: 29.5,9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13087 + components: + - pos: 29.5,8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13088 + components: + - pos: 29.5,7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13089 + components: + - pos: 35.5,7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13090 + components: + - pos: 35.5,8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13091 + components: + - pos: 35.5,9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13092 + components: + - pos: 35.5,10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13093 + components: + - pos: 35.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13102 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13103 + components: + - pos: 25.5,-13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13104 + components: + - pos: 25.5,-12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13105 + components: + - pos: 25.5,-11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13106 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13107 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13108 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13109 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13110 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13111 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13112 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13113 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13114 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13115 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13116 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13117 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13118 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13119 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13120 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13121 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13122 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13126 + components: + - rot: 1.5707963267948966 rad + pos: 57.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13129 + components: + - pos: 42.5,-18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13149 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-23.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13157 + components: + - pos: 45.5,-5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13158 + components: + - pos: 45.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13166 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13167 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13168 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13169 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13170 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13171 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13172 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13173 + components: + - pos: 32.5,-20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13174 + components: + - pos: 32.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13175 + components: + - pos: 32.5,-18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13176 + components: + - pos: 32.5,-17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13178 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13179 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13180 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13181 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13182 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13183 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13184 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13185 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13186 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13187 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13235 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-28.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13236 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13252 + components: + - rot: 1.5707963267948966 rad + pos: 58.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13253 + components: + - rot: 1.5707963267948966 rad + pos: 59.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13254 + components: + - rot: 1.5707963267948966 rad + pos: 60.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13255 + components: + - rot: 1.5707963267948966 rad + pos: 61.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13256 + components: + - rot: 1.5707963267948966 rad + pos: 62.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13257 + components: + - rot: 1.5707963267948966 rad + pos: 63.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13258 + components: + - rot: 1.5707963267948966 rad + pos: 64.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13259 + components: + - rot: 1.5707963267948966 rad + pos: 65.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13260 + components: + - rot: 1.5707963267948966 rad + pos: 66.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13261 + components: + - rot: 1.5707963267948966 rad + pos: 67.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13262 + components: + - rot: 1.5707963267948966 rad + pos: 68.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13263 + components: + - rot: 1.5707963267948966 rad + pos: 69.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13264 + components: + - rot: 1.5707963267948966 rad + pos: 70.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13265 + components: + - rot: 1.5707963267948966 rad + pos: 71.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13266 + components: + - rot: 1.5707963267948966 rad + pos: 72.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13267 + components: + - rot: 1.5707963267948966 rad + pos: 73.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13268 + components: + - rot: 1.5707963267948966 rad + pos: 74.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13281 + components: + - pos: 86.5,-3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13282 + components: + - pos: 86.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13283 + components: + - pos: 86.5,-5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13284 + components: + - pos: 86.5,-6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13285 + components: + - pos: 86.5,-7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13286 + components: + - pos: 86.5,-8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13287 + components: + - rot: -1.5707963267948966 rad + pos: 87.5,-9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13288 + components: + - rot: -1.5707963267948966 rad + pos: 88.5,-9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13289 + components: + - rot: -1.5707963267948966 rad + pos: 89.5,-9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13290 + components: + - rot: 3.141592653589793 rad + pos: 90.5,-8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13291 + components: + - rot: 3.141592653589793 rad + pos: 86.5,-10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13292 + components: + - rot: 3.141592653589793 rad + pos: 86.5,-11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13293 + components: + - rot: 3.141592653589793 rad + pos: 86.5,-12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13294 + components: + - rot: 3.141592653589793 rad + pos: 86.5,-13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13295 + components: + - rot: 3.141592653589793 rad + pos: 86.5,-14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13296 + components: + - rot: 1.5707963267948966 rad + pos: 85.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13297 + components: + - rot: 1.5707963267948966 rad + pos: 84.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13298 + components: + - rot: 1.5707963267948966 rad + pos: 83.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13299 + components: + - rot: 1.5707963267948966 rad + pos: 81.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13300 + components: + - rot: 1.5707963267948966 rad + pos: 80.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13301 + components: + - pos: 79.5,-14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13302 + components: + - pos: 79.5,-13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13303 + components: + - pos: 79.5,-12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13304 + components: + - pos: 79.5,-11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13305 + components: + - pos: 79.5,-10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13306 + components: + - pos: 79.5,-9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13307 + components: + - pos: 79.5,-8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13309 + components: + - rot: 1.5707963267948966 rad + pos: 78.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13310 + components: + - rot: 1.5707963267948966 rad + pos: 76.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13311 + components: + - rot: 1.5707963267948966 rad + pos: 77.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13312 + components: + - pos: 75.5,-16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13313 + components: + - pos: 75.5,-17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13314 + components: + - pos: 75.5,-18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13321 + components: + - rot: -1.5707963267948966 rad + pos: 79.5,-3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13322 + components: + - rot: -1.5707963267948966 rad + pos: 78.5,-3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13323 + components: + - rot: -1.5707963267948966 rad + pos: 77.5,-3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13324 + components: + - rot: -1.5707963267948966 rad + pos: 76.5,-3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13325 + components: + - rot: -1.5707963267948966 rad + pos: 75.5,-3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13326 + components: + - rot: 3.141592653589793 rad + pos: 74.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13327 + components: + - rot: 3.141592653589793 rad + pos: 74.5,-5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13328 + components: + - rot: 3.141592653589793 rad + pos: 74.5,-6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13329 + components: + - rot: 3.141592653589793 rad + pos: 74.5,-7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13330 + components: + - rot: 3.141592653589793 rad + pos: 74.5,-8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13331 + components: + - rot: 3.141592653589793 rad + pos: 74.5,-9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13332 + components: + - rot: 3.141592653589793 rad + pos: 74.5,-10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13333 + components: + - rot: 3.141592653589793 rad + pos: 74.5,-12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13334 + components: + - rot: 3.141592653589793 rad + pos: 74.5,-13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13335 + components: + - rot: 3.141592653589793 rad + pos: 74.5,-14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13336 + components: + - rot: 1.5707963267948966 rad + pos: 73.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13340 + components: + - rot: 1.5707963267948966 rad + pos: 85.5,-9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13346 + components: + - rot: 1.5707963267948966 rad + pos: 62.5,-13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13347 + components: + - pos: 63.5,-14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13348 + components: + - pos: 63.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13349 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13350 + components: + - rot: -1.5707963267948966 rad + pos: 70.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13351 + components: + - rot: -1.5707963267948966 rad + pos: 69.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13352 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13353 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13354 + components: + - rot: 3.141592653589793 rad + pos: 66.5,-14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13355 + components: + - rot: 1.5707963267948966 rad + pos: 65.5,-13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13356 + components: + - rot: 1.5707963267948966 rad + pos: 64.5,-13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13367 + components: + - rot: -1.5707963267948966 rad + pos: 70.5,-7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13368 + components: + - rot: 3.141592653589793 rad + pos: 69.5,-6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13369 + components: + - rot: 3.141592653589793 rad + pos: 69.5,-5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13370 + components: + - rot: 1.5707963267948966 rad + pos: 68.5,-7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13371 + components: + - rot: 1.5707963267948966 rad + pos: 67.5,-7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13372 + components: + - rot: 1.5707963267948966 rad + pos: 66.5,-7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13373 + components: + - rot: 1.5707963267948966 rad + pos: 65.5,-7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13374 + components: + - rot: 1.5707963267948966 rad + pos: 64.5,-7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13375 + components: + - pos: 63.5,-6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13376 + components: + - pos: 63.5,-5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13377 + components: + - pos: 63.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13378 + components: + - rot: -1.5707963267948966 rad + pos: 64.5,-3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13379 + components: + - rot: 3.141592653589793 rad + pos: 63.5,-2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13380 + components: + - rot: 3.141592653589793 rad + pos: 63.5,-1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13381 + components: + - rot: 3.141592653589793 rad + pos: 63.5,-0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13382 + components: + - rot: 1.5707963267948966 rad + pos: 64.5,0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13383 + components: + - pos: 63.5,-8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13384 + components: + - rot: -1.5707963267948966 rad + pos: 62.5,-9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13385 + components: + - rot: 3.141592653589793 rad + pos: 63.5,-10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13386 + components: + - rot: 3.141592653589793 rad + pos: 63.5,-11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13387 + components: + - rot: 3.141592653589793 rad + pos: 63.5,-12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13389 + components: + - rot: 1.5707963267948966 rad + pos: 51.5,-25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13397 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-33.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13400 + components: + - pos: 59.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13403 + components: + - rot: -1.5707963267948966 rad + pos: 69.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13404 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13405 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13406 + components: + - rot: -1.5707963267948966 rad + pos: 66.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13407 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13408 + components: + - rot: -1.5707963267948966 rad + pos: 64.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13409 + components: + - rot: 3.141592653589793 rad + pos: 63.5,1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13410 + components: + - rot: 1.5707963267948966 rad + pos: 62.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13411 + components: + - rot: 1.5707963267948966 rad + pos: 61.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13415 + components: + - pos: 59.5,-4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13416 + components: + - pos: 59.5,-3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13420 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13421 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13422 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13423 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13425 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13426 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13427 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13428 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13429 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13430 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13431 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13433 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13449 + components: + - pos: 9.5,43.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13450 + components: + - pos: 9.5,42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13451 + components: + - pos: 9.5,41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13453 + components: + - pos: 9.5,39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13454 + components: + - pos: 9.5,38.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13455 + components: + - pos: 10.5,36.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13456 + components: + - pos: 10.5,35.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13457 + components: + - pos: 10.5,34.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13458 + components: + - pos: 10.5,33.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13459 + components: + - pos: 10.5,32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13460 + components: + - pos: 10.5,31.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13461 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13462 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13463 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13464 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13465 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13466 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13467 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13468 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13469 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13470 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13473 + components: + - pos: 9.5,48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13474 + components: + - pos: 9.5,47.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13475 + components: + - pos: 9.5,46.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13476 + components: + - pos: 9.5,45.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13481 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13482 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13483 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13484 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13485 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13486 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13487 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13488 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13489 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13490 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13492 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13493 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13494 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13495 + components: + - rot: 3.141592653589793 rad + pos: -1.5,41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13496 + components: + - rot: 3.141592653589793 rad + pos: -1.5,40.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13497 + components: + - rot: 3.141592653589793 rad + pos: -1.5,39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13498 + components: + - rot: 3.141592653589793 rad + pos: -1.5,38.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13500 + components: + - pos: 0.5,45.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13501 + components: + - pos: 0.5,44.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13502 + components: + - pos: 0.5,43.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13503 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13504 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13505 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13506 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13507 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13508 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13509 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13510 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13513 + components: + - rot: 3.141592653589793 rad + pos: -15.5,47.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13523 + components: + - rot: 3.141592653589793 rad + pos: -15.5,46.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13524 + components: + - rot: 3.141592653589793 rad + pos: -15.5,45.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13525 + components: + - rot: 3.141592653589793 rad + pos: -15.5,44.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13526 + components: + - rot: 3.141592653589793 rad + pos: -15.5,43.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13527 + components: + - rot: 3.141592653589793 rad + pos: -15.5,42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13528 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13529 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13530 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13531 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13532 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13533 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13534 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13535 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13536 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13538 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13539 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13540 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13549 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13550 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13551 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13552 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13553 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13554 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13555 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13556 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13557 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13558 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13559 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13568 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13569 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13570 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13571 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13572 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13573 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13574 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13575 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13576 + components: + - pos: 22.5,49.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13577 + components: + - pos: 22.5,50.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13578 + components: + - pos: 22.5,51.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13579 + components: + - pos: 22.5,52.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13580 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13581 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13583 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13597 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,44.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13598 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,44.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13599 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,44.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13600 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,44.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13601 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,44.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13602 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,44.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13603 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,44.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13604 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,44.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13605 + components: + - pos: 27.5,45.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13606 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,46.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13607 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,43.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13608 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,40.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13609 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,40.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13610 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13611 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13612 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13613 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13614 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13616 + components: + - rot: 3.141592653589793 rad + pos: 27.5,42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13617 + components: + - rot: 3.141592653589793 rad + pos: 27.5,47.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13618 + components: + - rot: 3.141592653589793 rad + pos: 27.5,48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13619 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13621 + components: + - rot: 3.141592653589793 rad + pos: 28.5,51.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13626 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,49.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13627 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,49.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13628 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,49.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13629 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,49.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13630 + components: + - rot: 3.141592653589793 rad + pos: 32.5,48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13648 + components: + - rot: 3.141592653589793 rad + pos: 82.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13649 + components: + - rot: 3.141592653589793 rad + pos: 82.5,13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13650 + components: + - rot: 1.5707963267948966 rad + pos: 81.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13651 + components: + - pos: 80.5,13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13652 + components: + - pos: 80.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13653 + components: + - rot: -1.5707963267948966 rad + pos: 79.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13654 + components: + - rot: -1.5707963267948966 rad + pos: 78.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13655 + components: + - rot: -1.5707963267948966 rad + pos: 76.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13656 + components: + - rot: -1.5707963267948966 rad + pos: 75.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13657 + components: + - rot: -1.5707963267948966 rad + pos: 74.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13658 + components: + - rot: 3.141592653589793 rad + pos: 73.5,10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13659 + components: + - rot: 3.141592653589793 rad + pos: 73.5,9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13660 + components: + - rot: 1.5707963267948966 rad + pos: 72.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13661 + components: + - rot: 1.5707963267948966 rad + pos: 71.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13662 + components: + - rot: 3.141592653589793 rad + pos: 70.5,11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13663 + components: + - pos: 69.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13664 + components: + - pos: 69.5,13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13665 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13666 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13667 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13668 + components: + - rot: -1.5707963267948966 rad + pos: 64.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13669 + components: + - rot: 3.141592653589793 rad + pos: 66.5,15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13670 + components: + - rot: 3.141592653589793 rad + pos: 63.5,15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13671 + components: + - rot: 3.141592653589793 rad + pos: 63.5,13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13672 + components: + - rot: 3.141592653589793 rad + pos: 63.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13673 + components: + - rot: 3.141592653589793 rad + pos: 63.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13674 + components: + - rot: 3.141592653589793 rad + pos: 63.5,10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13675 + components: + - rot: 3.141592653589793 rad + pos: 63.5,9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13676 + components: + - rot: 3.141592653589793 rad + pos: 63.5,8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13679 + components: + - rot: 1.5707963267948966 rad + pos: 61.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13680 + components: + - rot: 1.5707963267948966 rad + pos: 62.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13682 + components: + - pos: 59.5,13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13684 + components: + - pos: 59.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13685 + components: + - pos: 59.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13686 + components: + - pos: 59.5,10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13687 + components: + - pos: 59.5,9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13688 + components: + - pos: 59.5,8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13689 + components: + - pos: 59.5,7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13690 + components: + - pos: 59.5,6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13691 + components: + - pos: 59.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13692 + components: + - pos: 59.5,4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13705 + components: + - pos: 87.5,19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13706 + components: + - pos: 87.5,20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13707 + components: + - pos: 87.5,21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13708 + components: + - rot: -1.5707963267948966 rad + pos: 86.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13709 + components: + - rot: -1.5707963267948966 rad + pos: 85.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13710 + components: + - rot: -1.5707963267948966 rad + pos: 84.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13711 + components: + - rot: -1.5707963267948966 rad + pos: 83.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13712 + components: + - rot: -1.5707963267948966 rad + pos: 82.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13713 + components: + - rot: 3.141592653589793 rad + pos: 81.5,21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13714 + components: + - rot: 1.5707963267948966 rad + pos: 80.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13715 + components: + - rot: 1.5707963267948966 rad + pos: 79.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13716 + components: + - rot: 1.5707963267948966 rad + pos: 78.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13717 + components: + - rot: 1.5707963267948966 rad + pos: 77.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13718 + components: + - rot: 1.5707963267948966 rad + pos: 76.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13719 + components: + - pos: 69.5,15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13720 + components: + - rot: -1.5707963267948966 rad + pos: 70.5,16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13721 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13722 + components: + - rot: -1.5707963267948966 rad + pos: 72.5,16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13723 + components: + - rot: -1.5707963267948966 rad + pos: 73.5,16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13724 + components: + - rot: -1.5707963267948966 rad + pos: 74.5,16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13725 + components: + - rot: -1.5707963267948966 rad + pos: 75.5,16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13726 + components: + - rot: -1.5707963267948966 rad + pos: 76.5,16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13727 + components: + - rot: 3.141592653589793 rad + pos: 69.5,17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13728 + components: + - rot: 3.141592653589793 rad + pos: 69.5,18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13729 + components: + - rot: 3.141592653589793 rad + pos: 69.5,19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13730 + components: + - rot: 1.5707963267948966 rad + pos: 68.5,20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13731 + components: + - rot: 1.5707963267948966 rad + pos: 67.5,20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13733 + components: + - pos: 69.5,21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13734 + components: + - rot: -1.5707963267948966 rad + pos: 70.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13735 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13736 + components: + - rot: -1.5707963267948966 rad + pos: 72.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13737 + components: + - rot: -1.5707963267948966 rad + pos: 73.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13738 + components: + - rot: -1.5707963267948966 rad + pos: 74.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13739 + components: + - rot: 3.141592653589793 rad + pos: 69.5,23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13740 + components: + - rot: 3.141592653589793 rad + pos: 69.5,24.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13750 + components: + - pos: 64.5,25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13751 + components: + - pos: 64.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13752 + components: + - pos: 64.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13753 + components: + - pos: 64.5,28.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13754 + components: + - pos: 67.5,28.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13755 + components: + - pos: 67.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13756 + components: + - pos: 69.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13757 + components: + - pos: 69.5,28.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13758 + components: + - pos: 69.5,25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13759 + components: + - pos: 67.5,25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13760 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13761 + components: + - rot: -1.5707963267948966 rad + pos: 66.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13762 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13766 + components: + - rot: -1.5707963267948966 rad + pos: 87.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13767 + components: + - rot: -1.5707963267948966 rad + pos: 86.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13768 + components: + - rot: -1.5707963267948966 rad + pos: 85.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13769 + components: + - rot: -1.5707963267948966 rad + pos: 84.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13770 + components: + - rot: -1.5707963267948966 rad + pos: 83.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13771 + components: + - rot: -1.5707963267948966 rad + pos: 82.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13772 + components: + - rot: -1.5707963267948966 rad + pos: 81.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13773 + components: + - rot: -1.5707963267948966 rad + pos: 79.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13774 + components: + - rot: -1.5707963267948966 rad + pos: 78.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13775 + components: + - rot: -1.5707963267948966 rad + pos: 77.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13776 + components: + - rot: -1.5707963267948966 rad + pos: 76.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13777 + components: + - rot: -1.5707963267948966 rad + pos: 75.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13778 + components: + - rot: -1.5707963267948966 rad + pos: 74.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13779 + components: + - rot: -1.5707963267948966 rad + pos: 73.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13780 + components: + - rot: -1.5707963267948966 rad + pos: 72.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13781 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13782 + components: + - rot: -1.5707963267948966 rad + pos: 70.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13784 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-46.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13785 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13800 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-47.5 + parent: 1 + type: Transform + - uid: 13801 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-47.5 + parent: 1 + type: Transform + - uid: 13802 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-47.5 + parent: 1 + type: Transform + - uid: 13806 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13807 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13816 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13817 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13818 + components: + - rot: 3.141592653589793 rad + pos: 46.5,10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13819 + components: + - rot: 3.141592653589793 rad + pos: 46.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13820 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13821 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13822 + components: + - pos: 49.5,13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13823 + components: + - pos: 49.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13824 + components: + - pos: 48.5,16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13825 + components: + - pos: 48.5,17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13826 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13827 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-29.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13828 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-29.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13829 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-29.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13830 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-29.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13831 + components: + - pos: 12.5,-45.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13832 + components: + - pos: 12.5,-44.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13837 + components: + - pos: 12.5,-43.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13838 + components: + - pos: 12.5,-42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13839 + components: + - pos: 12.5,-41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13852 + components: + - rot: -1.5707963267948966 rad + pos: 103.5,10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13853 + components: + - rot: 3.141592653589793 rad + pos: 104.5,9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13854 + components: + - rot: 3.141592653589793 rad + pos: 104.5,8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13855 + components: + - rot: 3.141592653589793 rad + pos: 104.5,7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13856 + components: + - rot: 3.141592653589793 rad + pos: 104.5,6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13857 + components: + - rot: 3.141592653589793 rad + pos: 104.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13858 + components: + - rot: 3.141592653589793 rad + pos: 104.5,4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13859 + components: + - rot: 1.5707963267948966 rad + pos: 106.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13860 + components: + - rot: 1.5707963267948966 rad + pos: 107.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13861 + components: + - rot: 1.5707963267948966 rad + pos: 108.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13862 + components: + - rot: 1.5707963267948966 rad + pos: 109.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13863 + components: + - pos: 110.5,4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13864 + components: + - pos: 110.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13865 + components: + - pos: 110.5,6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13866 + components: + - pos: 110.5,7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13867 + components: + - pos: 110.5,8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13868 + components: + - pos: 110.5,9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13869 + components: + - pos: 110.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13870 + components: + - rot: -1.5707963267948966 rad + pos: 103.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13871 + components: + - rot: -1.5707963267948966 rad + pos: 102.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13872 + components: + - rot: -1.5707963267948966 rad + pos: 100.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13873 + components: + - rot: -1.5707963267948966 rad + pos: 98.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13874 + components: + - rot: -1.5707963267948966 rad + pos: 97.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13875 + components: + - rot: -1.5707963267948966 rad + pos: 96.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13876 + components: + - rot: -1.5707963267948966 rad + pos: 94.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13877 + components: + - rot: -1.5707963267948966 rad + pos: 93.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13878 + components: + - rot: -1.5707963267948966 rad + pos: 92.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13879 + components: + - rot: -1.5707963267948966 rad + pos: 91.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13880 + components: + - rot: -1.5707963267948966 rad + pos: 90.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13881 + components: + - rot: -1.5707963267948966 rad + pos: 89.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13882 + components: + - rot: -1.5707963267948966 rad + pos: 88.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13883 + components: + - rot: -1.5707963267948966 rad + pos: 87.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13884 + components: + - rot: -1.5707963267948966 rad + pos: 86.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13885 + components: + - rot: -1.5707963267948966 rad + pos: 85.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13890 + components: + - rot: -1.5707963267948966 rad + pos: 102.5,-3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13891 + components: + - rot: -1.5707963267948966 rad + pos: 103.5,-3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13892 + components: + - rot: -1.5707963267948966 rad + pos: 104.5,-3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13893 + components: + - rot: 3.141592653589793 rad + pos: 105.5,-2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13894 + components: + - rot: 3.141592653589793 rad + pos: 105.5,-1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13895 + components: + - rot: 3.141592653589793 rad + pos: 105.5,-0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13896 + components: + - rot: 3.141592653589793 rad + pos: 105.5,1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13897 + components: + - rot: 3.141592653589793 rad + pos: 105.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13899 + components: + - pos: 99.5,1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13900 + components: + - rot: -1.5707963267948966 rad + pos: 83.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13901 + components: + - rot: -1.5707963267948966 rad + pos: 82.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13902 + components: + - rot: -1.5707963267948966 rad + pos: 81.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13903 + components: + - rot: -1.5707963267948966 rad + pos: 80.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13904 + components: + - rot: -1.5707963267948966 rad + pos: 79.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13905 + components: + - rot: -1.5707963267948966 rad + pos: 78.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13906 + components: + - rot: -1.5707963267948966 rad + pos: 77.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13907 + components: + - rot: -1.5707963267948966 rad + pos: 76.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13908 + components: + - rot: -1.5707963267948966 rad + pos: 75.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13909 + components: + - rot: -1.5707963267948966 rad + pos: 73.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13910 + components: + - rot: -1.5707963267948966 rad + pos: 72.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13911 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13943 + components: + - pos: -26.5,20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13944 + components: + - pos: -26.5,19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13945 + components: + - pos: -26.5,18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13946 + components: + - pos: -26.5,17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13947 + components: + - pos: -26.5,16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13948 + components: + - pos: -26.5,15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13949 + components: + - pos: -26.5,14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13950 + components: + - pos: -26.5,13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13951 + components: + - pos: -26.5,12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13952 + components: + - pos: -26.5,11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13953 + components: + - pos: -26.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13954 + components: + - pos: -26.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13955 + components: + - pos: -26.5,8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13956 + components: + - pos: -26.5,7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13957 + components: + - pos: -26.5,6.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13958 + components: + - pos: -26.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13959 + components: + - pos: -26.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13962 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-23.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13963 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13964 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13965 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13966 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13967 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13968 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13969 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13970 + components: + - pos: -26.5,3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13971 + components: + - pos: -26.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13972 + components: + - pos: -26.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13973 + components: + - pos: -26.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13974 + components: + - pos: -26.5,-1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13975 + components: + - pos: -26.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13976 + components: + - pos: -26.5,-3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13977 + components: + - pos: -26.5,-4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13978 + components: + - pos: -26.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13979 + components: + - pos: -26.5,-6.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13980 + components: + - pos: -26.5,-7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13981 + components: + - pos: -26.5,-8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13997 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14000 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14001 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14012 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-23.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14013 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-23.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14015 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-23.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14021 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14022 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14023 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14027 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14028 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14029 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14030 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14031 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14032 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14033 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14034 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14035 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-26.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14036 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14037 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14039 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14040 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14044 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14045 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14046 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14049 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14050 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,-18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14052 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14053 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14054 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14055 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,-18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14056 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14057 + components: + - pos: -51.5,-17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14058 + components: + - pos: -51.5,-16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14059 + components: + - pos: -51.5,-15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14060 + components: + - pos: -51.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14061 + components: + - pos: -51.5,-13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14062 + components: + - pos: -51.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14072 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14073 + components: + - pos: -51.5,-10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14074 + components: + - pos: -51.5,-9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14075 + components: + - pos: -51.5,-8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14076 + components: + - pos: -51.5,-7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14077 + components: + - pos: -51.5,-6.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14079 + components: + - pos: -51.5,-4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14080 + components: + - pos: -51.5,-3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14081 + components: + - pos: -51.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14082 + components: + - pos: -51.5,-1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14083 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14084 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14085 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14086 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14087 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14089 + components: + - rot: 3.141592653589793 rad + pos: -59.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14090 + components: + - rot: 3.141592653589793 rad + pos: -59.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14091 + components: + - rot: 3.141592653589793 rad + pos: -59.5,3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14097 + components: + - pos: -42.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14098 + components: + - pos: -42.5,3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14099 + components: + - pos: -42.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14100 + components: + - pos: -42.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14101 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14102 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14103 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14104 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14105 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14106 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14107 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14108 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14117 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14118 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14119 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14120 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14121 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14122 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14123 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14124 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14125 + components: + - rot: 3.141592653589793 rad + pos: -47.5,8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14126 + components: + - rot: 3.141592653589793 rad + pos: -46.5,8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14127 + components: + - rot: 3.141592653589793 rad + pos: -46.5,9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14128 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14129 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14130 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14131 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14132 + components: + - pos: -51.5,7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14133 + components: + - pos: -51.5,6.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14134 + components: + - pos: -51.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14135 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14136 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14137 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14138 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14139 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14140 + components: + - rot: 3.141592653589793 rad + pos: -51.5,3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14141 + components: + - rot: 3.141592653589793 rad + pos: -51.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14142 + components: + - rot: 3.141592653589793 rad + pos: -51.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14147 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14148 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14149 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14150 + components: + - pos: -35.5,-21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14151 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14152 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14155 + components: + - pos: -51.5,16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14156 + components: + - pos: -51.5,15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14157 + components: + - pos: -51.5,14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14158 + components: + - pos: -51.5,13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14159 + components: + - pos: -51.5,12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14160 + components: + - pos: -51.5,11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14161 + components: + - pos: -51.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14171 + components: + - rot: 3.141592653589793 rad + pos: -21.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14172 + components: + - rot: 3.141592653589793 rad + pos: -21.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14173 + components: + - rot: 3.141592653589793 rad + pos: -20.5,7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14174 + components: + - rot: 3.141592653589793 rad + pos: -20.5,6.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14175 + components: + - rot: 3.141592653589793 rad + pos: -20.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14176 + components: + - rot: 3.141592653589793 rad + pos: -20.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14177 + components: + - rot: 3.141592653589793 rad + pos: -20.5,3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14178 + components: + - rot: 3.141592653589793 rad + pos: -21.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14179 + components: + - rot: 3.141592653589793 rad + pos: -21.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14180 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14181 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14182 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14183 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14186 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14187 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14188 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14198 + components: + - rot: 3.141592653589793 rad + pos: -17.5,17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14199 + components: + - rot: 3.141592653589793 rad + pos: -17.5,15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14200 + components: + - rot: 3.141592653589793 rad + pos: -17.5,14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14201 + components: + - rot: 3.141592653589793 rad + pos: -17.5,13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14202 + components: + - rot: 3.141592653589793 rad + pos: -17.5,12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14203 + components: + - rot: 3.141592653589793 rad + pos: -17.5,11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14204 + components: + - rot: 3.141592653589793 rad + pos: -16.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14205 + components: + - rot: 3.141592653589793 rad + pos: -17.5,7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14206 + components: + - rot: 3.141592653589793 rad + pos: -17.5,6.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14207 + components: + - rot: 3.141592653589793 rad + pos: -17.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14208 + components: + - rot: 3.141592653589793 rad + pos: -17.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14209 + components: + - rot: 3.141592653589793 rad + pos: -17.5,3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14211 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14212 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14215 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14216 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14217 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14218 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14219 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14220 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14221 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14223 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14224 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14225 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14226 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14227 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14230 + components: + - pos: -8.5,3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14231 + components: + - pos: -8.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14232 + components: + - pos: -8.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14233 + components: + - pos: -8.5,6.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14234 + components: + - pos: -8.5,7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14236 + components: + - pos: -8.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14252 + components: + - rot: -1.5707963267948966 rad + pos: 93.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14258 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14259 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14260 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14261 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14262 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14263 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14264 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14265 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14266 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14267 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14268 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14269 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14270 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14271 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14272 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14273 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14274 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14275 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14276 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14277 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14278 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14279 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14280 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14281 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14282 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14283 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14284 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14289 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14295 + components: + - pos: -55.5,-22.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14296 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-23.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14305 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14306 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14308 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14309 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14310 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14311 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14313 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14314 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14315 + components: + - pos: -15.5,-8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14316 + components: + - pos: -15.5,-7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14317 + components: + - pos: -15.5,-6.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14318 + components: + - pos: -15.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14319 + components: + - pos: -15.5,-4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14320 + components: + - pos: -15.5,-3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14321 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14322 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14323 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14326 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14327 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14328 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14329 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14334 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14341 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-22.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14342 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14345 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14349 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-24.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14350 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-24.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14351 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-24.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14352 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-24.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14353 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-24.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14354 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14355 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-22.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14356 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-23.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14357 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14358 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-26.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14359 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14360 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14361 + components: + - pos: 12.5,-40.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14365 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14366 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14367 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-34.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14368 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-33.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14369 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-32.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14371 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-30.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14408 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14424 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-29.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14425 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-29.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14426 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-29.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14427 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-29.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14428 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-29.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14430 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-29.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14431 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-29.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14432 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-29.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14433 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-29.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14434 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-29.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14435 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-29.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14436 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-29.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14437 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-29.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14438 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-29.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14440 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14443 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14444 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-33.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14445 + components: + - rot: 3.141592653589793 rad + pos: 44.5,-9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14447 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-34.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14448 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14473 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14474 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14475 + components: + - pos: 36.5,-39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14476 + components: + - pos: 36.5,-38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14477 + components: + - pos: 35.5,-36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14478 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-37.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14479 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-37.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14494 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-41.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14501 + components: + - rot: 3.141592653589793 rad + pos: 36.5,-45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14502 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14503 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14504 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14505 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14506 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14507 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14508 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14509 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14510 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14511 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14512 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14513 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14516 + components: + - pos: -5.5,-44.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14526 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14527 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14528 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14529 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14530 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14531 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14532 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14533 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14534 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14535 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14536 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14537 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14538 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14539 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14540 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14541 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14542 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-48.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14543 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14544 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14545 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14546 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14547 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14548 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14549 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14550 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14551 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14552 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14553 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14554 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14555 + components: + - pos: 24.5,-48.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14565 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14566 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14567 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-34.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14568 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-33.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14569 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-32.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14588 + components: + - rot: 1.5707963267948966 rad + pos: 52.5,-23.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14589 + components: + - rot: 1.5707963267948966 rad + pos: 50.5,-24.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14591 + components: + - pos: 49.5,-26.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14594 + components: + - pos: 58.5,-17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14595 + components: + - pos: 58.5,-16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14596 + components: + - pos: 58.5,-15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14597 + components: + - pos: 58.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14598 + components: + - pos: 58.5,-13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14599 + components: + - pos: 58.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14600 + components: + - pos: 58.5,-11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14601 + components: + - pos: 58.5,-10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14602 + components: + - pos: 58.5,-9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14603 + components: + - pos: 58.5,-8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14604 + components: + - pos: 58.5,-7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14605 + components: + - pos: 58.5,-6.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14608 + components: + - rot: 1.5707963267948966 rad + pos: 58.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14609 + components: + - pos: 59.5,-1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14610 + components: + - pos: 59.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14611 + components: + - pos: 59.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14612 + components: + - pos: 59.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14616 + components: + - rot: 1.5707963267948966 rad + pos: 56.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14619 + components: + - pos: 58.5,3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14627 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14628 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14629 + components: + - rot: -1.5707963267948966 rad + pos: 66.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14630 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14631 + components: + - rot: -1.5707963267948966 rad + pos: 64.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14632 + components: + - rot: -1.5707963267948966 rad + pos: 63.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14640 + components: + - rot: -1.5707963267948966 rad + pos: 59.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14641 + components: + - rot: 3.141592653589793 rad + pos: 62.5,3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14642 + components: + - rot: 3.141592653589793 rad + pos: 62.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14643 + components: + - rot: 3.141592653589793 rad + pos: 62.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14644 + components: + - rot: 3.141592653589793 rad + pos: 62.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14649 + components: + - rot: -1.5707963267948966 rad + pos: 63.5,-4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14650 + components: + - rot: 3.141592653589793 rad + pos: 62.5,-3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14651 + components: + - pos: 62.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14652 + components: + - rot: 3.141592653589793 rad + pos: 62.5,-1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14655 + components: + - rot: 3.141592653589793 rad + pos: 69.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14656 + components: + - rot: 3.141592653589793 rad + pos: 69.5,-1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14663 + components: + - rot: -1.5707963267948966 rad + pos: 70.5,-8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14664 + components: + - rot: -1.5707963267948966 rad + pos: 69.5,-8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14665 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,-8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14666 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,-8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14667 + components: + - rot: -1.5707963267948966 rad + pos: 66.5,-8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14668 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,-8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14669 + components: + - rot: 3.141592653589793 rad + pos: 64.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14670 + components: + - rot: 3.141592653589793 rad + pos: 64.5,-6.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14671 + components: + - rot: 3.141592653589793 rad + pos: 64.5,-7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14672 + components: + - rot: 1.5707963267948966 rad + pos: 63.5,-8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14673 + components: + - rot: 1.5707963267948966 rad + pos: 62.5,-8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14674 + components: + - pos: 64.5,-9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14675 + components: + - pos: 64.5,-10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14676 + components: + - pos: 64.5,-11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14677 + components: + - rot: -1.5707963267948966 rad + pos: 63.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14678 + components: + - rot: -1.5707963267948966 rad + pos: 62.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14679 + components: + - rot: 3.141592653589793 rad + pos: 64.5,-13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14680 + components: + - rot: 3.141592653589793 rad + pos: 64.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14681 + components: + - rot: 3.141592653589793 rad + pos: 64.5,-15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14698 + components: + - rot: 1.5707963267948966 rad + pos: 65.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14699 + components: + - rot: 1.5707963267948966 rad + pos: 66.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14700 + components: + - pos: 67.5,-13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14701 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14702 + components: + - rot: -1.5707963267948966 rad + pos: 69.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14703 + components: + - rot: 3.141592653589793 rad + pos: 70.5,-15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14704 + components: + - rot: 1.5707963267948966 rad + pos: 71.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14705 + components: + - rot: 1.5707963267948966 rad + pos: 72.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14706 + components: + - rot: 1.5707963267948966 rad + pos: 73.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14707 + components: + - rot: 1.5707963267948966 rad + pos: 74.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14708 + components: + - pos: 75.5,-13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14709 + components: + - pos: 75.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14710 + components: + - pos: 75.5,-11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14711 + components: + - rot: -1.5707963267948966 rad + pos: 76.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14712 + components: + - rot: -1.5707963267948966 rad + pos: 77.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14713 + components: + - rot: -1.5707963267948966 rad + pos: 78.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14714 + components: + - rot: -1.5707963267948966 rad + pos: 79.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14715 + components: + - rot: -1.5707963267948966 rad + pos: 80.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14716 + components: + - rot: 3.141592653589793 rad + pos: 81.5,-13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14717 + components: + - rot: 3.141592653589793 rad + pos: 81.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14718 + components: + - rot: 3.141592653589793 rad + pos: 81.5,-11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14719 + components: + - rot: 3.141592653589793 rad + pos: 81.5,-10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14720 + components: + - rot: 3.141592653589793 rad + pos: 81.5,-9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14721 + components: + - rot: 3.141592653589793 rad + pos: 81.5,-8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14722 + components: + - rot: 1.5707963267948966 rad + pos: 82.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14723 + components: + - rot: 1.5707963267948966 rad + pos: 83.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14724 + components: + - rot: 1.5707963267948966 rad + pos: 84.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14725 + components: + - pos: 85.5,-15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14726 + components: + - pos: 85.5,-13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14727 + components: + - pos: 85.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14728 + components: + - pos: 85.5,-11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14729 + components: + - pos: 85.5,-10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14730 + components: + - pos: 85.5,-9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14731 + components: + - pos: 85.5,-7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14732 + components: + - pos: 85.5,-6.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14733 + components: + - pos: 85.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14734 + components: + - pos: 85.5,-4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14735 + components: + - rot: -1.5707963267948966 rad + pos: 86.5,-8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14736 + components: + - rot: -1.5707963267948966 rad + pos: 87.5,-8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14737 + components: + - rot: -1.5707963267948966 rad + pos: 89.5,-8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14738 + components: + - rot: -1.5707963267948966 rad + pos: 90.5,-8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14742 + components: + - rot: 1.5707963267948966 rad + pos: 101.5,11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14743 + components: + - pos: 100.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14748 + components: + - rot: -1.5707963267948966 rad + pos: 102.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14749 + components: + - rot: -1.5707963267948966 rad + pos: 103.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14753 + components: + - rot: 1.5707963267948966 rad + pos: 61.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14754 + components: + - pos: 62.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14755 + components: + - pos: 69.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14756 + components: + - rot: -1.5707963267948966 rad + pos: 63.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14757 + components: + - rot: -1.5707963267948966 rad + pos: 64.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14758 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14759 + components: + - rot: -1.5707963267948966 rad + pos: 66.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14760 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14761 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14762 + components: + - rot: -1.5707963267948966 rad + pos: 70.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14763 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14764 + components: + - rot: -1.5707963267948966 rad + pos: 72.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14765 + components: + - rot: -1.5707963267948966 rad + pos: 73.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14766 + components: + - rot: -1.5707963267948966 rad + pos: 75.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14768 + components: + - rot: -1.5707963267948966 rad + pos: 77.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14769 + components: + - rot: -1.5707963267948966 rad + pos: 78.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14770 + components: + - rot: -1.5707963267948966 rad + pos: 79.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14771 + components: + - rot: -1.5707963267948966 rad + pos: 80.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14772 + components: + - rot: -1.5707963267948966 rad + pos: 81.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14773 + components: + - rot: -1.5707963267948966 rad + pos: 82.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14774 + components: + - rot: -1.5707963267948966 rad + pos: 83.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14775 + components: + - rot: -1.5707963267948966 rad + pos: 85.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14776 + components: + - rot: -1.5707963267948966 rad + pos: 86.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14777 + components: + - rot: -1.5707963267948966 rad + pos: 87.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14778 + components: + - rot: -1.5707963267948966 rad + pos: 88.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14779 + components: + - rot: -1.5707963267948966 rad + pos: 89.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14780 + components: + - rot: -1.5707963267948966 rad + pos: 90.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14782 + components: + - rot: -1.5707963267948966 rad + pos: 92.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14783 + components: + - rot: -1.5707963267948966 rad + pos: 93.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14784 + components: + - rot: -1.5707963267948966 rad + pos: 94.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14785 + components: + - rot: -1.5707963267948966 rad + pos: 96.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14786 + components: + - rot: -1.5707963267948966 rad + pos: 97.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14787 + components: + - rot: -1.5707963267948966 rad + pos: 98.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14798 + components: + - rot: 3.141592653589793 rad + pos: 112.5,3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14799 + components: + - rot: -1.5707963267948966 rad + pos: 113.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14800 + components: + - rot: 3.141592653589793 rad + pos: 112.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14802 + components: + - rot: 3.141592653589793 rad + pos: 112.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14803 + components: + - rot: 3.141592653589793 rad + pos: 112.5,6.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14804 + components: + - rot: 3.141592653589793 rad + pos: 112.5,7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14805 + components: + - rot: 1.5707963267948966 rad + pos: 111.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14806 + components: + - rot: 1.5707963267948966 rad + pos: 110.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14807 + components: + - rot: 1.5707963267948966 rad + pos: 109.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14808 + components: + - rot: 1.5707963267948966 rad + pos: 108.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14809 + components: + - rot: 1.5707963267948966 rad + pos: 107.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14810 + components: + - pos: 106.5,3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14811 + components: + - pos: 106.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14812 + components: + - rot: -1.5707963267948966 rad + pos: 105.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14813 + components: + - rot: 3.141592653589793 rad + pos: 106.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14814 + components: + - rot: 3.141592653589793 rad + pos: 106.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14815 + components: + - rot: 1.5707963267948966 rad + pos: 105.5,-1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14816 + components: + - rot: 1.5707963267948966 rad + pos: 103.5,-1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14817 + components: + - rot: 1.5707963267948966 rad + pos: 102.5,-1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14818 + components: + - rot: 1.5707963267948966 rad + pos: 101.5,-1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14819 + components: + - rot: 1.5707963267948966 rad + pos: 104.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14820 + components: + - rot: 1.5707963267948966 rad + pos: 105.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14822 + components: + - pos: 60.5,6.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14823 + components: + - pos: 60.5,7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14824 + components: + - pos: 60.5,8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14825 + components: + - pos: 60.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14826 + components: + - pos: 60.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14827 + components: + - pos: 60.5,11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14828 + components: + - pos: 60.5,12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14841 + components: + - rot: 1.5707963267948966 rad + pos: 73.5,7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14842 + components: + - pos: 72.5,8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14843 + components: + - pos: 72.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14844 + components: + - pos: 72.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14845 + components: + - pos: 72.5,11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14846 + components: + - rot: -1.5707963267948966 rad + pos: 73.5,12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14847 + components: + - rot: -1.5707963267948966 rad + pos: 74.5,12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14848 + components: + - rot: -1.5707963267948966 rad + pos: 75.5,12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14849 + components: + - rot: -1.5707963267948966 rad + pos: 76.5,12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14850 + components: + - rot: -1.5707963267948966 rad + pos: 77.5,12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14851 + components: + - rot: -1.5707963267948966 rad + pos: 78.5,12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14852 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14857 + components: + - rot: 1.5707963267948966 rad + pos: 69.5,13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14858 + components: + - rot: 1.5707963267948966 rad + pos: 68.5,13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14859 + components: + - pos: 67.5,14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14860 + components: + - pos: 67.5,15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14861 + components: + - rot: -1.5707963267948966 rad + pos: 66.5,13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14862 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14863 + components: + - rot: 3.141592653589793 rad + pos: 64.5,14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14864 + components: + - rot: 3.141592653589793 rad + pos: 64.5,15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14865 + components: + - rot: 1.5707963267948966 rad + pos: 63.5,13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14866 + components: + - rot: 1.5707963267948966 rad + pos: 62.5,13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14867 + components: + - pos: 64.5,12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14868 + components: + - pos: 64.5,11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14869 + components: + - pos: 64.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14870 + components: + - pos: 64.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14871 + components: + - pos: 64.5,8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14872 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14873 + components: + - rot: -1.5707963267948966 rad + pos: 66.5,7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14887 + components: + - rot: -1.5707963267948966 rad + pos: 87.5,17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14888 + components: + - rot: 3.141592653589793 rad + pos: 86.5,18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14889 + components: + - rot: 3.141592653589793 rad + pos: 86.5,19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14890 + components: + - rot: 3.141592653589793 rad + pos: 86.5,20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14891 + components: + - rot: 1.5707963267948966 rad + pos: 85.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14892 + components: + - rot: 1.5707963267948966 rad + pos: 84.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14893 + components: + - pos: 83.5,19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14894 + components: + - pos: 83.5,18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14895 + components: + - pos: 83.5,16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14896 + components: + - pos: 83.5,15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14897 + components: + - pos: 83.5,14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14898 + components: + - pos: 83.5,13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14903 + components: + - rot: 3.141592653589793 rad + pos: 83.5,20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14904 + components: + - rot: 1.5707963267948966 rad + pos: 81.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14905 + components: + - rot: 1.5707963267948966 rad + pos: 80.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14906 + components: + - rot: 1.5707963267948966 rad + pos: 79.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14907 + components: + - rot: 1.5707963267948966 rad + pos: 78.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14908 + components: + - rot: 1.5707963267948966 rad + pos: 75.5,20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14909 + components: + - rot: 1.5707963267948966 rad + pos: 74.5,20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14910 + components: + - rot: 1.5707963267948966 rad + pos: 73.5,20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14911 + components: + - rot: 1.5707963267948966 rad + pos: 72.5,20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14912 + components: + - rot: 1.5707963267948966 rad + pos: 71.5,20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14913 + components: + - rot: 1.5707963267948966 rad + pos: 71.5,17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14914 + components: + - rot: 1.5707963267948966 rad + pos: 72.5,17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14915 + components: + - rot: 1.5707963267948966 rad + pos: 73.5,17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14916 + components: + - rot: 1.5707963267948966 rad + pos: 74.5,17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14917 + components: + - rot: 1.5707963267948966 rad + pos: 75.5,17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14918 + components: + - rot: 1.5707963267948966 rad + pos: 76.5,17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14919 + components: + - pos: 70.5,16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14920 + components: + - pos: 70.5,15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14921 + components: + - pos: 70.5,14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14922 + components: + - pos: 70.5,18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14923 + components: + - pos: 70.5,19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14924 + components: + - rot: -1.5707963267948966 rad + pos: 69.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14925 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14926 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14948 + components: + - pos: 63.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14949 + components: + - pos: 63.5,26.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14950 + components: + - pos: 63.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14951 + components: + - pos: 66.5,26.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14952 + components: + - pos: 66.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14953 + components: + - pos: 66.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14954 + components: + - pos: 70.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14955 + components: + - rot: -1.5707963267948966 rad + pos: 64.5,27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14957 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14958 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14959 + components: + - rot: -1.5707963267948966 rad + pos: 69.5,27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14960 + components: + - rot: 3.141592653589793 rad + pos: 70.5,26.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14961 + components: + - rot: 3.141592653589793 rad + pos: 70.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14962 + components: + - rot: 3.141592653589793 rad + pos: 70.5,24.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14963 + components: + - rot: 3.141592653589793 rad + pos: 70.5,23.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14964 + components: + - rot: 3.141592653589793 rad + pos: 70.5,22.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14971 + components: + - rot: 1.5707963267948966 rad + pos: 71.5,27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14972 + components: + - rot: 1.5707963267948966 rad + pos: 72.5,27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14973 + components: + - rot: 1.5707963267948966 rad + pos: 73.5,27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14974 + components: + - rot: 1.5707963267948966 rad + pos: 74.5,27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14975 + components: + - rot: 1.5707963267948966 rad + pos: 75.5,27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14976 + components: + - rot: 1.5707963267948966 rad + pos: 76.5,27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14977 + components: + - rot: 1.5707963267948966 rad + pos: 77.5,27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14978 + components: + - rot: 1.5707963267948966 rad + pos: 78.5,27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14979 + components: + - pos: 79.5,26.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14980 + components: + - rot: -1.5707963267948966 rad + pos: 80.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14981 + components: + - rot: -1.5707963267948966 rad + pos: 81.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14982 + components: + - rot: -1.5707963267948966 rad + pos: 82.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14983 + components: + - rot: -1.5707963267948966 rad + pos: 83.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14984 + components: + - rot: -1.5707963267948966 rad + pos: 84.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14985 + components: + - rot: -1.5707963267948966 rad + pos: 85.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14986 + components: + - rot: -1.5707963267948966 rad + pos: 86.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14987 + components: + - rot: -1.5707963267948966 rad + pos: 87.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14988 + components: + - rot: -1.5707963267948966 rad + pos: 88.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14994 + components: + - pos: 26.5,-11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14995 + components: + - pos: 26.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14996 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14997 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14998 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14999 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15000 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15001 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15002 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15003 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15004 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15005 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15006 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15007 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15008 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15009 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15010 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15011 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15012 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15013 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15014 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15015 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15018 + components: + - pos: 34.5,-17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15019 + components: + - pos: 34.5,-18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15020 + components: + - pos: 34.5,-19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15021 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15022 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15023 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15024 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15025 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15026 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15027 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15028 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15029 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15030 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15031 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15032 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15033 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15034 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15048 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15049 + components: + - pos: 41.5,-18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15050 + components: + - pos: 41.5,-17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15051 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15052 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15053 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,-10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15060 + components: + - pos: 43.5,-4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15061 + components: + - pos: 43.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15062 + components: + - pos: 43.5,-6.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15063 + components: + - pos: 44.5,-8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15065 + components: + - rot: -1.5707963267948966 rad + pos: -58.5,-1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15086 + components: + - rot: 3.141592653589793 rad + pos: 10.5,3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15087 + components: + - rot: 3.141592653589793 rad + pos: 10.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15088 + components: + - rot: 3.141592653589793 rad + pos: 10.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15089 + components: + - rot: 3.141592653589793 rad + pos: 10.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15090 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15091 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15092 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15093 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15094 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15095 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-6.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15096 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15097 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15098 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15099 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15100 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15101 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15102 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15103 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15104 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15105 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15106 + components: + - pos: 10.5,-13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15107 + components: + - pos: 10.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15108 + components: + - pos: 10.5,-15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15109 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15110 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15111 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15112 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15113 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15114 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15115 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15116 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15117 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15118 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15129 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15130 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15131 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15132 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15133 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15134 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15135 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15136 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15137 + components: + - pos: 19.5,-3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15138 + components: + - pos: 19.5,-4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15139 + components: + - pos: 19.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15140 + components: + - pos: 19.5,-6.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15141 + components: + - pos: 19.5,-7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15142 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15143 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15144 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15145 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15146 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15147 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15148 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15149 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15150 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15151 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15152 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15153 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15155 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15156 + components: + - pos: 35.5,-1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15157 + components: + - pos: 35.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15158 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15159 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15172 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15174 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15175 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15176 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15177 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15181 + components: + - rot: 3.141592653589793 rad + pos: -8.5,14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15182 + components: + - rot: 3.141592653589793 rad + pos: -8.5,12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15183 + components: + - rot: 3.141592653589793 rad + pos: -8.5,13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15187 + components: + - rot: 3.141592653589793 rad + pos: -8.5,11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15206 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15207 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15208 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15209 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15210 + components: + - rot: 3.141592653589793 rad + pos: -3.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15211 + components: + - rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15212 + components: + - rot: 3.141592653589793 rad + pos: -3.5,11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15219 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15220 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15221 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15222 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,22.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15223 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,22.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15224 + components: + - pos: -19.5,23.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15225 + components: + - pos: -19.5,24.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15226 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15227 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15228 + components: + - rot: 3.141592653589793 rad + pos: -16.5,26.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15229 + components: + - rot: 3.141592653589793 rad + pos: -16.5,27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15230 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15231 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15232 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15233 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15234 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15235 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15236 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15237 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15238 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15239 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15240 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15278 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15279 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15280 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15283 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15284 + components: + - pos: -8.5,25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15285 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15287 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15288 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15289 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15290 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15291 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15292 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15295 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15302 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15304 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15305 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15306 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15307 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15308 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15309 + components: + - rot: 3.141592653589793 rad + pos: 13.5,11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15310 + components: + - rot: 3.141592653589793 rad + pos: 13.5,12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15311 + components: + - rot: 3.141592653589793 rad + pos: 13.5,13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15312 + components: + - rot: 3.141592653589793 rad + pos: 13.5,14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15313 + components: + - rot: 3.141592653589793 rad + pos: 13.5,15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15314 + components: + - rot: 3.141592653589793 rad + pos: 13.5,16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15315 + components: + - rot: 3.141592653589793 rad + pos: 13.5,17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15316 + components: + - rot: 3.141592653589793 rad + pos: 13.5,18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15317 + components: + - rot: 3.141592653589793 rad + pos: 13.5,19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15318 + components: + - rot: 3.141592653589793 rad + pos: 13.5,20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15320 + components: + - rot: 3.141592653589793 rad + pos: 13.5,22.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15321 + components: + - rot: 3.141592653589793 rad + pos: 13.5,23.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15322 + components: + - rot: 3.141592653589793 rad + pos: 13.5,24.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15323 + components: + - rot: 3.141592653589793 rad + pos: 13.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15326 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15327 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15328 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15329 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15330 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15331 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15332 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15333 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15334 + components: + - pos: 13.5,27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15335 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15336 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15337 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15338 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15339 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15340 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15342 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15343 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15348 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-28.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15355 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-34.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15356 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15357 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15358 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15359 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15360 + components: + - pos: -2.5,-35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15361 + components: + - pos: -2.5,-34.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15362 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15363 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15364 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15365 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15366 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-37.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15367 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15368 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15369 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15370 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15371 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15382 + components: + - rot: 3.141592653589793 rad + pos: 24.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15387 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-35.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15388 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-34.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15389 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-33.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15390 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-33.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15391 + components: + - pos: -0.5,-32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15392 + components: + - pos: -0.5,-31.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15393 + components: + - rot: 3.141592653589793 rad + pos: 20.5,26.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15394 + components: + - rot: 3.141592653589793 rad + pos: 20.5,27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15395 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15396 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15397 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15398 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15399 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15400 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15401 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15402 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15403 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15404 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15405 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15406 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15407 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15408 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15409 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15410 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15411 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15412 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15413 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15419 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-33.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15430 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-33.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15440 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15441 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15442 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15443 + components: + - pos: 47.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15444 + components: + - pos: 47.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15445 + components: + - pos: 47.5,12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15446 + components: + - rot: -1.5707963267948966 rad + pos: 48.5,11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15447 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15448 + components: + - rot: 3.141592653589793 rad + pos: 50.5,12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15449 + components: + - rot: 3.141592653589793 rad + pos: 50.5,13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15450 + components: + - rot: 3.141592653589793 rad + pos: 50.5,14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15451 + components: + - rot: 3.141592653589793 rad + pos: 50.5,15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15452 + components: + - rot: 3.141592653589793 rad + pos: 50.5,16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15453 + components: + - rot: 3.141592653589793 rad + pos: 50.5,17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15454 + components: + - rot: 3.141592653589793 rad + pos: 50.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15455 + components: + - rot: 3.141592653589793 rad + pos: 50.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15456 + components: + - rot: 3.141592653589793 rad + pos: 50.5,8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15457 + components: + - rot: 3.141592653589793 rad + pos: 50.5,7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15458 + components: + - rot: 3.141592653589793 rad + pos: 50.5,6.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15459 + components: + - rot: 3.141592653589793 rad + pos: 50.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15462 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15463 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15464 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15465 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15466 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15467 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15468 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15469 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15470 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15474 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-33.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15475 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-34.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15476 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-35.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15483 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15484 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15485 + components: + - pos: 31.5,7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15486 + components: + - pos: 31.5,8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15487 + components: + - pos: 31.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15488 + components: + - pos: 33.5,7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15489 + components: + - pos: 33.5,8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15490 + components: + - pos: 33.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15491 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15492 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15493 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15494 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15495 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15496 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15497 + components: + - rot: 3.141592653589793 rad + pos: 39.5,11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15498 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-36.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15499 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15500 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-38.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15501 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15502 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15503 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15504 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15505 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15506 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15507 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15508 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15511 + components: + - pos: 39.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15512 + components: + - pos: 39.5,8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15513 + components: + - pos: 39.5,7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15514 + components: + - pos: 39.5,6.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15515 + components: + - pos: 39.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15518 + components: + - rot: 3.141592653589793 rad + pos: 60.5,15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15519 + components: + - rot: 3.141592653589793 rad + pos: 60.5,16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15520 + components: + - rot: 3.141592653589793 rad + pos: 60.5,17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15521 + components: + - rot: 3.141592653589793 rad + pos: 60.5,18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15522 + components: + - rot: 3.141592653589793 rad + pos: 61.5,18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15523 + components: + - rot: 3.141592653589793 rad + pos: 61.5,17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15524 + components: + - rot: 3.141592653589793 rad + pos: 61.5,16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15525 + components: + - rot: 3.141592653589793 rad + pos: 61.5,15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15526 + components: + - rot: 3.141592653589793 rad + pos: 61.5,14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15527 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15528 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15529 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15530 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15531 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15533 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15534 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15535 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15536 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15537 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15538 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15547 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15548 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15549 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15550 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15551 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15552 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15558 + components: + - pos: -10.5,46.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15559 + components: + - pos: -10.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15560 + components: + - pos: -10.5,44.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15561 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,43.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15562 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,43.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15563 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,43.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15564 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,43.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15565 + components: + - rot: 3.141592653589793 rad + pos: -5.5,42.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15566 + components: + - rot: 3.141592653589793 rad + pos: -5.5,40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15567 + components: + - rot: 3.141592653589793 rad + pos: -5.5,39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15568 + components: + - rot: 3.141592653589793 rad + pos: -5.5,38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15569 + components: + - rot: 3.141592653589793 rad + pos: -5.5,37.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15575 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15576 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15577 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15578 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15579 + components: + - rot: 3.141592653589793 rad + pos: -0.5,44.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15580 + components: + - rot: 3.141592653589793 rad + pos: -0.5,43.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15581 + components: + - rot: 3.141592653589793 rad + pos: -0.5,42.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15582 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,41.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15583 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,41.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15584 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,41.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15585 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15586 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15587 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15588 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15589 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15590 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15591 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15592 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15593 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15594 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15595 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15596 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15597 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15598 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15599 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15600 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15601 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15602 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15609 + components: + - rot: 3.141592653589793 rad + pos: 13.5,31.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15610 + components: + - rot: 3.141592653589793 rad + pos: 13.5,32.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15611 + components: + - rot: 3.141592653589793 rad + pos: 13.5,33.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15612 + components: + - rot: 3.141592653589793 rad + pos: 13.5,34.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15613 + components: + - rot: 3.141592653589793 rad + pos: 13.5,35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15614 + components: + - rot: 3.141592653589793 rad + pos: 13.5,37.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15615 + components: + - rot: 3.141592653589793 rad + pos: 14.5,37.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15616 + components: + - rot: 3.141592653589793 rad + pos: 14.5,38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15617 + components: + - rot: 3.141592653589793 rad + pos: 14.5,39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15618 + components: + - rot: 3.141592653589793 rad + pos: 14.5,40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15619 + components: + - rot: 3.141592653589793 rad + pos: 14.5,42.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15620 + components: + - rot: 3.141592653589793 rad + pos: 14.5,43.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15623 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,41.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15624 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,41.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15625 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,41.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15627 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15628 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15629 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15630 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15631 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15632 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15633 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15634 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15635 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15636 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15637 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15638 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15639 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15640 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15641 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15642 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15643 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15644 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15645 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15649 + components: + - rot: -1.5707963267948966 rad + pos: 48.5,-7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15653 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15654 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15655 + components: + - pos: 39.5,40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15656 + components: + - pos: 39.5,41.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15657 + components: + - pos: 39.5,42.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15658 + components: + - pos: 39.5,43.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15659 + components: + - pos: 39.5,44.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15663 + components: + - rot: 3.141592653589793 rad + pos: 35.5,46.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15664 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15665 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15666 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15667 + components: + - pos: 39.5,46.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15679 + components: + - pos: 34.5,53.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15680 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15681 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15682 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15683 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15684 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15685 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15686 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15687 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15688 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15689 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15690 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15697 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,49.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15698 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,49.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15699 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,49.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15700 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,49.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15701 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,49.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15702 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,49.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15703 + components: + - pos: 21.5,50.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15704 + components: + - pos: 21.5,51.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15705 + components: + - pos: 21.5,52.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15706 + components: + - pos: 21.5,53.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15709 + components: + - rot: 3.141592653589793 rad + pos: 29.5,51.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15710 + components: + - rot: 3.141592653589793 rad + pos: 29.5,52.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15711 + components: + - rot: 3.141592653589793 rad + pos: 29.5,53.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15714 + components: + - pos: 8.5,48.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15715 + components: + - pos: 8.5,47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15716 + components: + - pos: 8.5,46.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15717 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15718 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15719 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15721 + components: + - rot: 3.141592653589793 rad + pos: 39.5,47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15722 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,49.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15812 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-42.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15840 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-41.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15952 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16006 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16012 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-40.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16013 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16016 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16022 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-40.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16024 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16026 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16027 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16029 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16036 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-41.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16041 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-42.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16308 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-46.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16317 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-38.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16420 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16421 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16579 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16721 + components: + - rot: -1.5707963267948966 rad + pos: 70.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16759 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-29.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16809 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16810 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16830 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16831 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16834 + components: + - pos: 7.5,-31.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16836 + components: + - pos: 7.5,-34.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16837 + components: + - pos: 7.5,-35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16857 + components: + - pos: 7.5,-36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16869 + components: + - pos: 7.5,-37.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16880 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16881 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16892 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16893 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16894 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-38.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16895 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16896 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-36.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16925 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-35.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16927 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-34.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16928 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-37.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16929 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16930 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16931 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-34.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16932 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-33.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16933 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-32.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16935 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16968 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16970 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17014 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-38.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17015 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17016 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-36.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17017 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-35.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17018 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17019 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17022 + components: + - pos: 25.5,-38.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17023 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17024 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17050 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17053 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17054 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17055 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17056 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17057 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-40.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17058 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17059 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17062 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-43.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17063 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-38.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17064 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17065 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-36.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17131 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17132 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17133 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17238 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17255 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-43.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17256 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-42.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17257 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-41.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17261 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17264 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17268 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17269 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17271 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17369 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-37.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17373 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17374 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17376 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17377 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17378 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17408 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,-27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17409 + components: + - pos: -55.5,-21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17426 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17429 + components: + - pos: -50.5,-23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17435 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17439 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17441 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17467 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17469 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17470 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17477 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17478 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-23.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17616 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17635 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17966 + components: + - pos: 49.5,-9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 18028 + components: + - pos: 49.5,-8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 18117 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 18119 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-37.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 18121 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 18193 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-31.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 18194 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-30.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 18195 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-31.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 18196 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 18241 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 18242 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 18243 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 18302 + components: + - pos: 56.5,4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19145 + components: + - pos: 56.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19146 + components: + - pos: 56.5,6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19148 + components: + - pos: 56.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19149 + components: + - pos: 56.5,1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19150 + components: + - pos: 56.5,0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19153 + components: + - rot: 3.141592653589793 rad + pos: 57.5,3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19154 + components: + - rot: 3.141592653589793 rad + pos: 57.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19155 + components: + - rot: 3.141592653589793 rad + pos: 57.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19156 + components: + - rot: 3.141592653589793 rad + pos: 57.5,6.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19157 + components: + - rot: 3.141592653589793 rad + pos: 57.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19158 + components: + - rot: 3.141592653589793 rad + pos: 57.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19178 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19179 + components: + - pos: 31.5,-41.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19180 + components: + - pos: 31.5,-42.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19216 + components: + - pos: 31.5,-43.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19220 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19221 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19226 + components: + - rot: 3.141592653589793 rad + pos: -4.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19229 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19309 + components: + - rot: 3.141592653589793 rad + pos: 6.5,16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19310 + components: + - rot: 3.141592653589793 rad + pos: 6.5,17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19311 + components: + - rot: 3.141592653589793 rad + pos: 6.5,18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19312 + components: + - rot: 3.141592653589793 rad + pos: 6.5,19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19315 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19316 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19323 + components: + - pos: 3.5,21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19324 + components: + - pos: 3.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19325 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19326 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19330 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19331 + components: + - rot: 3.141592653589793 rad + pos: -7.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19332 + components: + - rot: 3.141592653589793 rad + pos: -7.5,23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19340 + components: + - pos: 0.5,18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19341 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19342 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19343 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19344 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19345 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19346 + components: + - rot: 3.141592653589793 rad + pos: -4.5,16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19347 + components: + - rot: 3.141592653589793 rad + pos: -4.5,15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19348 + components: + - rot: 3.141592653589793 rad + pos: -4.5,14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19349 + components: + - rot: 3.141592653589793 rad + pos: -4.5,13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19350 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,24.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19351 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,24.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19352 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,24.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19355 + components: + - pos: 2.5,26.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19356 + components: + - pos: 2.5,27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19361 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-29.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19362 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19363 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19366 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19371 + components: + - rot: 3.141592653589793 rad + pos: 7.5,16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19372 + components: + - rot: 3.141592653589793 rad + pos: 7.5,17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19373 + components: + - rot: 3.141592653589793 rad + pos: 7.5,18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19374 + components: + - rot: 3.141592653589793 rad + pos: 7.5,19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19400 + components: + - rot: 3.141592653589793 rad + pos: 7.5,20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19503 + components: + - rot: 3.141592653589793 rad + pos: 7.5,22.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19505 + components: + - rot: 3.141592653589793 rad + pos: 7.5,23.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19515 + components: + - rot: 3.141592653589793 rad + pos: 10.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19516 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19517 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19518 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19519 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19553 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19555 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19580 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19616 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19623 + components: + - rot: 3.141592653589793 rad + pos: 13.5,26.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19969 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,22.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19970 + components: + - rot: 3.141592653589793 rad + pos: 35.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19971 + components: + - rot: 3.141592653589793 rad + pos: 35.5,20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19972 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19974 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19975 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19976 + components: + - pos: 40.5,18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19977 + components: + - pos: 40.5,17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19978 + components: + - pos: 40.5,16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19979 + components: + - pos: 40.5,15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19981 + components: + - pos: 35.5,23.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19985 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19986 + components: + - rot: 3.141592653589793 rad + pos: 19.5,11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19987 + components: + - rot: 3.141592653589793 rad + pos: 19.5,12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19988 + components: + - rot: 3.141592653589793 rad + pos: 19.5,13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19989 + components: + - rot: 3.141592653589793 rad + pos: 19.5,14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19990 + components: + - pos: 26.5,18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19992 + components: + - pos: 26.5,20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19993 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19994 + components: + - pos: 26.5,17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19996 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19997 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19998 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19999 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 20000 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 20001 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 20002 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 20003 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 20004 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 20005 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 20006 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 20007 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 20008 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 20009 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 20010 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 20011 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 20012 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 20013 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 20014 + components: + - rot: 3.141592653589793 rad + pos: 37.5,17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 20015 + components: + - rot: 3.141592653589793 rad + pos: 37.5,18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 20019 + components: + - rot: 3.141592653589793 rad + pos: 20.5,18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20026 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20027 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20028 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20042 + components: + - rot: 3.141592653589793 rad + pos: 33.5,16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20088 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20089 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20090 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20092 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20093 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20094 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20095 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20096 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20097 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20098 + components: + - pos: 27.5,16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20099 + components: + - rot: 3.141592653589793 rad + pos: 27.5,18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20100 + components: + - pos: 27.5,19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20101 + components: + - pos: 27.5,20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20102 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20103 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20104 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20105 + components: + - rot: 3.141592653589793 rad + pos: 23.5,23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20106 + components: + - rot: 3.141592653589793 rad + pos: 23.5,24.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20107 + components: + - rot: 3.141592653589793 rad + pos: 23.5,25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20108 + components: + - rot: 3.141592653589793 rad + pos: 23.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20114 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,24.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20115 + components: + - pos: 19.5,25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20116 + components: + - pos: 19.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20118 + components: + - rot: 3.141592653589793 rad + pos: 20.5,19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20119 + components: + - rot: 3.141592653589793 rad + pos: 20.5,20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20120 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20121 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20122 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20123 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20124 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20125 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20126 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20127 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20128 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20130 + components: + - rot: 3.141592653589793 rad + pos: 32.5,16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20131 + components: + - rot: 3.141592653589793 rad + pos: 32.5,17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20132 + components: + - rot: 3.141592653589793 rad + pos: 32.5,18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20133 + components: + - rot: 3.141592653589793 rad + pos: 32.5,19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20134 + components: + - rot: 3.141592653589793 rad + pos: 32.5,20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20135 + components: + - rot: 3.141592653589793 rad + pos: 32.5,21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20136 + components: + - rot: 3.141592653589793 rad + pos: 32.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20144 + components: + - rot: 3.141592653589793 rad + pos: 38.5,23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20145 + components: + - rot: 3.141592653589793 rad + pos: 38.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20146 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20147 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20148 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20149 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20150 + components: + - pos: 43.5,20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20151 + components: + - pos: 43.5,19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20152 + components: + - pos: 44.5,17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20205 + components: + - pos: 44.5,16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20206 + components: + - pos: 44.5,15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20208 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20516 + components: + - rot: 3.141592653589793 rad + pos: 91.5,6.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 20598 + components: + - rot: 3.141592653589793 rad + pos: 91.5,8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 20599 + components: + - rot: -1.5707963267948966 rad + pos: 92.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 20601 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20605 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20711 + components: + - rot: 3.141592653589793 rad + pos: 46.5,8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20712 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20713 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20737 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20738 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20739 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20740 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20747 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20748 + components: + - pos: 28.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20749 + components: + - pos: 28.5,13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20788 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-23.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 20790 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 20798 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,-28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 21396 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 21397 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 21398 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 21399 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 21400 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 21401 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 21402 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 21468 + components: + - pos: 27.5,21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 22099 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22100 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-6.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22101 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22102 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22103 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22161 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 22162 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22164 + components: + - rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22165 + components: + - rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22166 + components: + - rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22167 + components: + - rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22181 + components: + - rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22197 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22198 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22199 + components: + - rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22200 + components: + - pos: -12.5,-10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22279 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22280 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22281 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22282 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22283 + components: + - rot: 3.141592653589793 rad + pos: 25.5,40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22284 + components: + - rot: 3.141592653589793 rad + pos: 25.5,41.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22285 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,42.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22286 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,42.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22287 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,42.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22288 + components: + - pos: 25.5,43.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22289 + components: + - pos: 25.5,44.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22290 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22291 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22292 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22293 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22294 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22295 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22296 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22297 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22298 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22299 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22300 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22301 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22383 + components: + - rot: 1.5707963267948966 rad + pos: 75.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22385 + components: + - pos: 76.5,-3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22386 + components: + - rot: 1.5707963267948966 rad + pos: 79.5,-4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22387 + components: + - rot: 1.5707963267948966 rad + pos: 78.5,-4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22388 + components: + - rot: 1.5707963267948966 rad + pos: 77.5,-4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22392 + components: + - rot: 1.5707963267948966 rad + pos: 74.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22393 + components: + - pos: 73.5,-1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22394 + components: + - pos: 73.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22395 + components: + - rot: -1.5707963267948966 rad + pos: 72.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22396 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22416 + components: + - rot: -1.5707963267948966 rad + pos: 95.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22431 + components: + - rot: 3.141592653589793 rad + pos: 100.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22432 + components: + - rot: 3.141592653589793 rad + pos: 100.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22433 + components: + - rot: 3.141592653589793 rad + pos: 100.5,3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22434 + components: + - rot: 3.141592653589793 rad + pos: 100.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22506 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 22592 + components: + - rot: 1.5707963267948966 rad + pos: 50.5,-25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 22593 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,-25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 22594 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,-25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 22595 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,-25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 22596 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,-25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 22597 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,-24.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22598 + components: + - pos: 45.5,-26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 22599 + components: + - pos: 45.5,-27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 22600 + components: + - pos: 44.5,-26.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22664 + components: + - rot: -1.5707963267948966 rad + pos: 96.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22729 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 22730 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 22731 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 22732 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 22733 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 22734 + components: + - pos: -15.5,52.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 22735 + components: + - pos: -15.5,51.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 22736 + components: + - pos: -15.5,50.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 22737 + components: + - pos: -15.5,49.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 22738 + components: + - pos: -15.5,48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 22788 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22789 + components: + - pos: -9.5,19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22790 + components: + - pos: -8.5,17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22806 + components: + - rot: -1.5707963267948966 rad + pos: 97.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22866 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 22869 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22872 + components: + - pos: -55.5,-26.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22873 + components: + - pos: -55.5,-25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22874 + components: + - pos: -55.5,-24.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22875 + components: + - pos: -55.5,-23.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22926 + components: + - rot: -1.5707963267948966 rad + pos: 98.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22927 + components: + - rot: -1.5707963267948966 rad + pos: 99.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23582 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23610 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23612 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23613 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23618 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23619 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23620 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23624 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,40.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23625 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,40.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23627 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23628 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23629 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23630 + components: + - rot: 3.141592653589793 rad + pos: -23.5,42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23631 + components: + - rot: 3.141592653589793 rad + pos: -23.5,43.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23632 + components: + - rot: 3.141592653589793 rad + pos: -23.5,44.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23633 + components: + - rot: 3.141592653589793 rad + pos: -23.5,45.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23634 + components: + - rot: 3.141592653589793 rad + pos: -22.5,41.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23635 + components: + - rot: 3.141592653589793 rad + pos: -22.5,42.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23636 + components: + - rot: 3.141592653589793 rad + pos: -22.5,43.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23637 + components: + - rot: 3.141592653589793 rad + pos: -22.5,44.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23638 + components: + - rot: 3.141592653589793 rad + pos: -22.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23655 + components: + - rot: -1.5707963267948966 rad + pos: 50.5,39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23656 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23657 + components: + - rot: 3.141592653589793 rad + pos: 48.5,38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23658 + components: + - rot: 3.141592653589793 rad + pos: 48.5,37.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23659 + components: + - rot: 3.141592653589793 rad + pos: 48.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23660 + components: + - rot: 3.141592653589793 rad + pos: 48.5,35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23661 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,34.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23662 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,34.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23663 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,34.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23664 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,34.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23676 + components: + - rot: 3.141592653589793 rad + pos: 51.5,33.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23677 + components: + - rot: 3.141592653589793 rad + pos: 51.5,34.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23678 + components: + - rot: 3.141592653589793 rad + pos: 51.5,35.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23679 + components: + - rot: 3.141592653589793 rad + pos: 51.5,36.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23680 + components: + - rot: 1.5707963267948966 rad + pos: 52.5,32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23681 + components: + - pos: 57.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23682 + components: + - pos: 57.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23683 + components: + - pos: 57.5,25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23684 + components: + - pos: 57.5,24.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23685 + components: + - pos: 57.5,23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23686 + components: + - pos: 57.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23687 + components: + - pos: 57.5,21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23688 + components: + - pos: 57.5,20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23689 + components: + - pos: 57.5,19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23690 + components: + - pos: 57.5,18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23691 + components: + - pos: 57.5,17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23692 + components: + - pos: 57.5,16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23693 + components: + - pos: 57.5,15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23694 + components: + - rot: -1.5707963267948966 rad + pos: 58.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23702 + components: + - rot: -1.5707963267948966 rad + pos: 52.5,39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23703 + components: + - rot: -1.5707963267948966 rad + pos: 53.5,39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23704 + components: + - rot: -1.5707963267948966 rad + pos: 54.5,39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23705 + components: + - rot: -1.5707963267948966 rad + pos: 55.5,39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23706 + components: + - rot: -1.5707963267948966 rad + pos: 56.5,39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23707 + components: + - rot: -1.5707963267948966 rad + pos: 57.5,39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23708 + components: + - rot: 3.141592653589793 rad + pos: 58.5,40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23709 + components: + - rot: 1.5707963267948966 rad + pos: 57.5,38.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23710 + components: + - rot: 1.5707963267948966 rad + pos: 56.5,38.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23711 + components: + - rot: 1.5707963267948966 rad + pos: 55.5,38.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23712 + components: + - rot: 1.5707963267948966 rad + pos: 54.5,38.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23713 + components: + - rot: 1.5707963267948966 rad + pos: 53.5,38.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23714 + components: + - rot: 1.5707963267948966 rad + pos: 52.5,38.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23715 + components: + - rot: 1.5707963267948966 rad + pos: 52.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23716 + components: + - rot: 1.5707963267948966 rad + pos: 53.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23719 + components: + - pos: -26.5,-13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23720 + components: + - pos: -26.5,-14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23723 + components: + - pos: -8.5,-13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23726 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23727 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23728 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23730 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23732 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23733 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23734 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23735 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23736 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23739 + components: + - rot: 3.141592653589793 rad + pos: -0.5,51.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23740 + components: + - rot: 3.141592653589793 rad + pos: -0.5,52.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23743 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23744 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23745 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23746 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23747 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23748 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23749 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23750 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23751 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23752 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23753 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23754 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23755 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23756 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23757 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23758 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23759 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23760 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23763 + components: + - rot: 3.141592653589793 rad + pos: 1.5,51.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23765 + components: + - rot: 3.141592653589793 rad + pos: 1.5,53.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23770 + components: + - pos: 25.5,54.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23843 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23844 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23962 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,22.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23963 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23965 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 24186 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-29.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25129 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25137 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25189 + components: + - rot: -1.5707963267948966 rad + pos: 76.5,8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25190 + components: + - rot: -1.5707963267948966 rad + pos: 75.5,8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25191 + components: + - rot: -1.5707963267948966 rad + pos: 74.5,8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25192 + components: + - rot: 3.141592653589793 rad + pos: 73.5,7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25193 + components: + - rot: 3.141592653589793 rad + pos: 76.5,6.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25245 + components: + - rot: 3.141592653589793 rad + pos: 109.5,24.5 + parent: 1 + type: Transform + - uid: 25337 + components: + - rot: 1.5707963267948966 rad + pos: -70.5,3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25338 + components: + - rot: 1.5707963267948966 rad + pos: -69.5,3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25339 + components: + - rot: 1.5707963267948966 rad + pos: -68.5,3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25340 + components: + - rot: 1.5707963267948966 rad + pos: -66.5,3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25341 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25342 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25343 + components: + - pos: -63.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25344 + components: + - pos: -63.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25345 + components: + - pos: -63.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25346 + components: + - pos: -63.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25347 + components: + - pos: -63.5,-1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25348 + components: + - pos: -63.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25349 + components: + - pos: -63.5,-3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25350 + components: + - pos: -63.5,-4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25351 + components: + - rot: -1.5707963267948966 rad + pos: -62.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25352 + components: + - rot: -1.5707963267948966 rad + pos: -61.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25353 + components: + - rot: -1.5707963267948966 rad + pos: -60.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25354 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25355 + components: + - rot: -1.5707963267948966 rad + pos: -58.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25356 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25357 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25358 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25359 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25360 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25361 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25368 + components: + - pos: -63.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25369 + components: + - pos: -63.5,6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25370 + components: + - pos: -63.5,7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25371 + components: + - pos: -63.5,8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25372 + components: + - pos: -63.5,9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25373 + components: + - pos: -63.5,10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25374 + components: + - pos: -63.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25375 + components: + - pos: -63.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25376 + components: + - pos: -63.5,13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25377 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25378 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25379 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25380 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25381 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25382 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25383 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25384 + components: + - rot: -1.5707963267948966 rad + pos: -58.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25385 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25386 + components: + - rot: -1.5707963267948966 rad + pos: -60.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25387 + components: + - rot: -1.5707963267948966 rad + pos: -61.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25388 + components: + - rot: -1.5707963267948966 rad + pos: -62.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25398 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-22.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25400 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25410 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-28.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25411 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-28.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25412 + components: + - rot: 3.141592653589793 rad + pos: -48.5,-28.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25413 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-28.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25414 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25415 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25416 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25417 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,-27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25418 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25419 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,-27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25420 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25421 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,-28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25429 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-30.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25430 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-30.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25431 + components: + - pos: -49.5,-29.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25432 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,-28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25434 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25435 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25436 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,-27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25437 + components: + - pos: -55.5,-27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25438 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,-28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25439 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,-28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25440 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,-28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25441 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,-28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25442 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25443 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,-28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25444 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,-28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25505 + components: + - rot: -1.5707963267948966 rad + pos: -70.5,4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25506 + components: + - rot: -1.5707963267948966 rad + pos: -69.5,4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25507 + components: + - rot: -1.5707963267948966 rad + pos: -68.5,4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25508 + components: + - rot: -1.5707963267948966 rad + pos: -66.5,4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25509 + components: + - rot: -1.5707963267948966 rad + pos: -65.5,4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25510 + components: + - rot: -1.5707963267948966 rad + pos: -64.5,4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25516 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25517 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25518 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25519 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25520 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25521 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25522 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25523 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25524 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25525 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25526 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25527 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25528 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25529 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25530 + components: + - pos: -36.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25531 + components: + - pos: -36.5,-1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25532 + components: + - pos: -36.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25533 + components: + - pos: -36.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25534 + components: + - pos: -36.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25535 + components: + - pos: -36.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25536 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25618 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25631 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25633 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25634 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-37.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25635 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25636 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25637 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-34.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25638 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-33.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25639 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-32.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25640 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-31.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25641 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-30.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25642 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-29.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25643 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-29.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25644 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25645 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-31.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25646 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25647 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-33.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25648 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-34.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25649 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-35.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25650 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-36.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25651 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25652 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-38.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25807 + components: + - rot: 3.141592653589793 rad + pos: 28.5,52.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 253 + components: + - rot: 3.141592653589793 rad + pos: -43.5,27.5 + parent: 1 + type: Transform + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 262 + components: + - pos: -43.5,26.5 + parent: 1 + type: Transform + - color: '#33FF33FF' + type: AtmosPipeColor + - uid: 263 + components: + - pos: -45.5,26.5 + parent: 1 + type: Transform + - color: '#33FF33FF' + type: AtmosPipeColor + - uid: 277 + components: + - rot: 3.141592653589793 rad + pos: -49.5,23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 297 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,26.5 + parent: 1 + type: Transform + - color: '#FF6666FF' + type: AtmosPipeColor + - uid: 298 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,27.5 + parent: 1 + type: Transform + - color: '#3399FFFF' + type: AtmosPipeColor + - uid: 385 + components: + - rot: 3.141592653589793 rad + pos: -56.5,28.5 + parent: 1 + type: Transform + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 391 + components: + - pos: -56.5,35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 400 + components: + - pos: -57.5,35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 411 + components: + - rot: 3.141592653589793 rad + pos: -40.5,34.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 412 + components: + - rot: 3.141592653589793 rad + pos: -41.5,34.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 413 + components: + - rot: 3.141592653589793 rad + pos: -38.5,28.5 + parent: 1 + type: Transform + - uid: 1068 + components: + - pos: 0.5,20.5 + parent: 1 + type: Transform + - color: '#E5CCFFFF' + type: AtmosPipeColor + - uid: 1336 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1816 + components: + - pos: -19.5,-9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2192 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2195 + components: + - rot: 3.141592653589793 rad + pos: -9.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2246 + components: + - pos: 48.5,-28.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2714 + components: + - rot: 3.141592653589793 rad + pos: 44.5,-27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2720 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-28.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2722 + components: + - pos: 47.5,-27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2734 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2738 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2926 + components: + - rot: 3.141592653589793 rad + pos: 26.5,16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3608 + components: + - pos: -37.5,25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3610 + components: + - pos: -41.5,31.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3611 + components: + - pos: -49.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4098 + components: + - rot: 3.141592653589793 rad + pos: 76.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4630 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,44.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5183 + components: + - rot: 1.5707963267948966 rad + pos: 73.5,8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6180 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6181 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6203 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6204 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6462 + components: + - rot: 3.141592653589793 rad + pos: -58.5,31.5 + parent: 1 + type: Transform + - uid: 6473 + components: + - pos: -59.5,35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7390 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7522 + components: + - rot: 3.141592653589793 rad + pos: -9.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9528 + components: + - pos: -12.5,-9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9529 + components: + - pos: 17.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10545 + components: + - pos: 33.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10824 + components: + - pos: -36.5,32.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10863 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10864 + components: + - pos: -33.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10908 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,32.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10910 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,-34.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10914 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10948 + components: + - pos: -50.5,18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10961 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10979 + components: + - pos: 59.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10987 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10994 + components: + - rot: 3.141592653589793 rad + pos: -54.5,-2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11012 + components: + - pos: -46.5,1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11013 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11014 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11015 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11037 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11039 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11101 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-24.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11117 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11118 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11134 + components: + - rot: 3.141592653589793 rad + pos: -19.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11313 + components: + - pos: -15.5,-32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11346 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11421 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11422 + components: + - pos: 16.5,-46.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11426 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11429 + components: + - rot: 3.141592653589793 rad + pos: 16.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11437 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-31.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11450 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11451 + components: + - pos: 7.5,-25.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11454 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-32.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11461 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11530 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-38.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11551 + components: + - pos: 26.5,-46.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12570 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12599 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,41.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12608 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12613 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12625 + components: + - rot: 3.141592653589793 rad + pos: -24.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12626 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12636 + components: + - pos: -23.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12639 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12649 + components: + - pos: -22.5,5.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12685 + components: + - pos: -27.5,20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12711 + components: + - rot: 3.141592653589793 rad + pos: -15.5,24.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12749 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12765 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12820 + components: + - pos: 10.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12830 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12914 + components: + - rot: 3.141592653589793 rad + pos: 95.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12919 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12938 + components: + - rot: 3.141592653589793 rad + pos: 74.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12939 + components: + - rot: 3.141592653589793 rad + pos: 84.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12969 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12970 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12971 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12973 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12975 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12976 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12978 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12979 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12980 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12981 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12986 + components: + - pos: 15.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13000 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13080 + components: + - pos: 35.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13081 + components: + - pos: 29.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13084 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13094 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13095 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13101 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13123 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13146 + components: + - pos: -26.5,-12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13147 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13150 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13177 + components: + - rot: 3.141592653589793 rad + pos: -23.5,41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13269 + components: + - rot: 3.141592653589793 rad + pos: 75.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13270 + components: + - pos: 75.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13272 + components: + - rot: 3.141592653589793 rad + pos: 79.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13273 + components: + - pos: 82.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13276 + components: + - rot: 3.141592653589793 rad + pos: 90.5,-9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13315 + components: + - rot: 3.141592653589793 rad + pos: 74.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13316 + components: + - pos: 72.5,-15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13320 + components: + - pos: 74.5,-3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13338 + components: + - rot: -1.5707963267948966 rad + pos: 74.5,-11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13357 + components: + - rot: 1.5707963267948966 rad + pos: 63.5,-7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13358 + components: + - rot: -1.5707963267948966 rad + pos: 63.5,-9.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13359 + components: + - rot: 1.5707963267948966 rad + pos: 63.5,-3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13360 + components: + - rot: 1.5707963267948966 rad + pos: 63.5,0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13364 + components: + - rot: 3.141592653589793 rad + pos: 69.5,-7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13396 + components: + - pos: 100.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13402 + components: + - rot: 3.141592653589793 rad + pos: 70.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13412 + components: + - rot: 3.141592653589793 rad + pos: 59.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13432 + components: + - rot: 3.141592653589793 rad + pos: -15.5,41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13442 + components: + - rot: 3.141592653589793 rad + pos: -1.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13443 + components: + - rot: 3.141592653589793 rad + pos: 9.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13444 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13448 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,44.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13452 + components: + - pos: -0.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13480 + components: + - pos: -1.5,42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13491 + components: + - rot: 3.141592653589793 rad + pos: 0.5,42.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13522 + components: + - rot: 3.141592653589793 rad + pos: 91.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13537 + components: + - rot: 3.141592653589793 rad + pos: 20.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13560 + components: + - pos: 22.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13562 + components: + - rot: 3.141592653589793 rad + pos: 22.5,48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13566 + components: + - rot: 3.141592653589793 rad + pos: 18.5,48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13586 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,46.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13587 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,43.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13588 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,44.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13589 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,41.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13590 + components: + - rot: 3.141592653589793 rad + pos: 27.5,40.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13595 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13623 + components: + - rot: 3.141592653589793 rad + pos: 69.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13624 + components: + - pos: 77.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13634 + components: + - rot: -1.5707963267948966 rad + pos: 69.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13635 + components: + - rot: 3.141592653589793 rad + pos: 66.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13639 + components: + - pos: 73.5,11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13642 + components: + - rot: 1.5707963267948966 rad + pos: 80.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13681 + components: + - pos: 63.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13694 + components: + - rot: 1.5707963267948966 rad + pos: 69.5,16.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13695 + components: + - rot: -1.5707963267948966 rad + pos: 69.5,20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13696 + components: + - rot: 1.5707963267948966 rad + pos: 69.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13697 + components: + - pos: 75.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13704 + components: + - pos: 81.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13783 + components: + - rot: 3.141592653589793 rad + pos: 80.5,26.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13788 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13813 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13815 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-29.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13845 + components: + - rot: 3.141592653589793 rad + pos: 104.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13846 + components: + - pos: 105.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13849 + components: + - rot: -1.5707963267948966 rad + pos: 110.5,3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13886 + components: + - rot: -1.5707963267948966 rad + pos: 105.5,0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13887 + components: + - rot: 3.141592653589793 rad + pos: 105.5,-3.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13942 + components: + - pos: -26.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13998 + components: + - pos: -35.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14002 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14016 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14017 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14038 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14048 + components: + - rot: 3.141592653589793 rad + pos: -51.5,-18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14063 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14064 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14065 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14066 + components: + - rot: 3.141592653589793 rad + pos: -54.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14096 + components: + - pos: -44.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14109 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14110 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14111 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14115 + components: + - pos: -47.5,9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14145 + components: + - pos: -46.5,10.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14153 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-24.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14162 + components: + - pos: -21.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14163 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14166 + components: + - rot: 3.141592653589793 rad + pos: -20.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14167 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14184 + components: + - rot: 3.141592653589793 rad + pos: -22.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14189 + components: + - rot: 3.141592653589793 rad + pos: -17.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14192 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14197 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14214 + components: + - rot: 3.141592653589793 rad + pos: -8.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14235 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14286 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14288 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14293 + components: + - rot: 3.141592653589793 rad + pos: -34.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14298 + components: + - pos: -44.5,-27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14299 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14330 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-24.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14343 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-18.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14362 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14364 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-37.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14405 + components: + - pos: 9.5,-48.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14407 + components: + - pos: 24.5,-29.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14469 + components: + - pos: 36.5,-37.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14490 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-37.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14514 + components: + - pos: 24.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14515 + components: + - pos: 12.5,-47.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14523 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,7.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14525 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,24.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14614 + components: + - rot: 3.141592653589793 rad + pos: 58.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14621 + components: + - pos: 95.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14622 + components: + - pos: 99.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14623 + components: + - rot: 1.5707963267948966 rad + pos: 62.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14625 + components: + - rot: 3.141592653589793 rad + pos: 70.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14626 + components: + - pos: 69.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14633 + components: + - pos: 84.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14634 + components: + - pos: 74.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14635 + components: + - pos: 69.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14636 + components: + - pos: 62.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14638 + components: + - rot: 1.5707963267948966 rad + pos: 60.5,5.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14648 + components: + - pos: 64.5,-4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14684 + components: + - pos: 70.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14685 + components: + - rot: 3.141592653589793 rad + pos: 75.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14686 + components: + - rot: 3.141592653589793 rad + pos: 81.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14687 + components: + - rot: -1.5707963267948966 rad + pos: 85.5,-14.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14689 + components: + - rot: 3.141592653589793 rad + pos: 88.5,-8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14788 + components: + - pos: 106.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14789 + components: + - rot: -1.5707963267948966 rad + pos: 106.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14790 + components: + - pos: 104.5,-1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14801 + components: + - rot: -1.5707963267948966 rad + pos: 112.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14835 + components: + - rot: -1.5707963267948966 rad + pos: 70.5,13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14836 + components: + - rot: 1.5707963267948966 rad + pos: 70.5,12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14837 + components: + - pos: 72.5,12.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14856 + components: + - rot: 3.141592653589793 rad + pos: 67.5,13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14874 + components: + - rot: 1.5707963267948966 rad + pos: 70.5,17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14875 + components: + - rot: 1.5707963267948966 rad + pos: 70.5,20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14876 + components: + - rot: -1.5707963267948966 rad + pos: 70.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14879 + components: + - rot: 3.141592653589793 rad + pos: 76.5,20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14881 + components: + - pos: 82.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14899 + components: + - rot: -1.5707963267948966 rad + pos: 83.5,17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14901 + components: + - pos: 83.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14942 + components: + - rot: 1.5707963267948966 rad + pos: 63.5,27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14956 + components: + - pos: 65.5,27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14966 + components: + - rot: -1.5707963267948966 rad + pos: 79.5,27.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14989 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14990 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15016 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-20.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15055 + components: + - rot: 3.141592653589793 rad + pos: -22.5,40.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15057 + components: + - rot: 3.141592653589793 rad + pos: 43.5,-7.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15070 + components: + - rot: 3.141592653589793 rad + pos: -60.5,-1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15071 + components: + - rot: 3.141592653589793 rad + pos: 44.5,-10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15074 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15075 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-16.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15077 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15078 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15085 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15119 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15120 + components: + - pos: 19.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15121 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15122 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15178 + components: + - rot: 3.141592653589793 rad + pos: -3.5,8.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15186 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,15.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15241 + components: + - pos: -8.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15286 + components: + - pos: 2.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15296 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15297 + components: + - pos: 13.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15299 + components: + - rot: 3.141592653589793 rad + pos: 13.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15319 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15341 + components: + - pos: 20.5,28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15344 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15345 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15349 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15354 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-35.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15372 + components: + - pos: 4.5,-38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15374 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-33.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15376 + components: + - pos: -4.5,-33.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15384 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-33.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15435 + components: + - rot: -1.5707963267948966 rad + pos: 50.5,11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15437 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,11.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15461 + components: + - rot: 3.141592653589793 rad + pos: 49.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15471 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15477 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15478 + components: + - pos: 33.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15479 + components: + - pos: 31.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15510 + components: + - pos: 3.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15516 + components: + - rot: 3.141592653589793 rad + pos: 60.5,14.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15517 + components: + - rot: 3.141592653589793 rad + pos: 61.5,13.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15553 + components: + - rot: 3.141592653589793 rad + pos: -5.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15554 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,41.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15570 + components: + - pos: -4.5,41.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15574 + components: + - pos: 4.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15604 + components: + - rot: 3.141592653589793 rad + pos: 14.5,36.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15622 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,41.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15660 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15691 + components: + - rot: 3.141592653589793 rad + pos: 21.5,49.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15692 + components: + - rot: 3.141592653589793 rad + pos: 19.5,49.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15696 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-6.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15707 + components: + - pos: 29.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16936 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16941 + components: + - pos: 17.5,-38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16942 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-38.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16943 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-37.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16944 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16945 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16946 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-39.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16973 + components: + - pos: -7.5,-9.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17379 + components: + - rot: 3.141592653589793 rad + pos: -56.5,-27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17455 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17456 + components: + - pos: -45.5,-28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 18017 + components: + - pos: 66.5,20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 18018 + components: + - rot: 3.141592653589793 rad + pos: 66.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 18206 + components: + - rot: 3.141592653589793 rad + pos: 21.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19222 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19224 + components: + - pos: -5.5,21.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19228 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,25.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19232 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,23.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19233 + components: + - rot: 3.141592653589793 rad + pos: 3.5,20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19234 + components: + - rot: 3.141592653589793 rad + pos: 4.5,20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19236 + components: + - rot: 3.141592653589793 rad + pos: 19.5,10.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19328 + components: + - rot: 3.141592653589793 rad + pos: -0.5,24.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19333 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,17.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19359 + components: + - pos: 12.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19364 + components: + - pos: 6.5,20.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19365 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,21.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19368 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-30.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19929 + components: + - rot: 3.141592653589793 rad + pos: 35.5,19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19968 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,22.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19991 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 20016 + components: + - pos: 37.5,19.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 20017 + components: + - rot: 3.141592653589793 rad + pos: 23.5,22.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20020 + components: + - rot: 3.141592653589793 rad + pos: 27.5,15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20022 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20043 + components: + - rot: 3.141592653589793 rad + pos: 32.5,15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20091 + components: + - pos: 28.5,15.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20112 + components: + - pos: 19.5,27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20117 + components: + - rot: 3.141592653589793 rad + pos: 20.5,17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20129 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,17.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20139 + components: + - pos: 44.5,18.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20768 + components: + - rot: 3.141592653589793 rad + pos: -55.5,-28.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 20797 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22272 + components: + - rot: 3.141592653589793 rad + pos: 18.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22273 + components: + - pos: 25.5,45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22390 + components: + - pos: 76.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23553 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23622 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,40.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23653 + components: + - rot: 3.141592653589793 rad + pos: 51.5,39.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23695 + components: + - rot: 1.5707963267948966 rad + pos: 51.5,37.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23741 + components: + - pos: 21.5,54.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23742 + components: + - rot: 3.141592653589793 rad + pos: 25.5,53.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23838 + components: + - pos: 28.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23839 + components: + - pos: 27.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23840 + components: + - pos: 26.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25135 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-11.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25334 + components: + - pos: -67.5,3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25364 + components: + - rot: 3.141592653589793 rad + pos: -67.5,4.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25399 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-23.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25402 + components: + - pos: -48.5,-27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25403 + components: + - pos: -50.5,-27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25404 + components: + - pos: -51.5,-27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25405 + components: + - pos: -52.5,-27.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25423 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-30.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25428 + components: + - rot: 3.141592653589793 rad + pos: -51.5,-30.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 255 + components: + - pos: -40.5,35.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 259 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,28.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 337 + components: + - pos: -56.5,25.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 338 + components: + - pos: -55.5,25.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 395 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,33.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 396 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,32.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 406 + components: + - pos: -41.5,35.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4676 + components: + - rot: 3.141592653589793 rad + pos: -1.5,44.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 4678 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,43.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 6463 + components: + - rot: 3.141592653589793 rad + pos: -60.5,29.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 6464 + components: + - rot: 3.141592653589793 rad + pos: -59.5,29.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 6479 + components: + - rot: 3.141592653589793 rad + pos: -59.5,34.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6480 + components: + - rot: 3.141592653589793 rad + pos: -58.5,29.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice +- proto: GasPressurePump + entities: + - uid: 251 + components: + - pos: -43.5,28.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#808080FF' + type: AtmosPipeColor + - uid: 268 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,26.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#33FF33FF' + type: AtmosPipeColor + - uid: 278 + components: + - pos: -45.5,28.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 293 + components: + - pos: -47.5,28.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF66FFFF' + type: AtmosPipeColor + - uid: 294 + components: + - pos: -49.5,28.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#33FF33FF' + type: AtmosPipeColor + - uid: 295 + components: + - pos: -51.5,28.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF6666FF' + type: AtmosPipeColor + - uid: 296 + components: + - pos: -53.5,28.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#3399FFFF' + type: AtmosPipeColor + - uid: 335 + components: + - rot: 3.141592653589793 rad + pos: -55.5,24.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 336 + components: + - pos: -56.5,24.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 402 + components: + - rot: 1.5707963267948966 rad + pos: -61.5,31.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 5064 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,32.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6377 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,22.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasRecycler + entities: + - uid: 265 + components: + - pos: -43.5,25.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#33FF33FF' + type: AtmosPipeColor +- proto: GasThermoMachineFreezer + entities: + - uid: 275 + components: + - pos: -49.5,24.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - joinedGrid: 1 + type: AtmosDevice + - uid: 401 + components: + - pos: -58.5,32.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice +- proto: GasThermoMachineFreezerEnabled + entities: + - uid: 1066 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,19.5 + parent: 1 + type: Transform + - targetTemperature: 249.8167 + type: GasThermoMachine + - powerDisabled: True + type: ApcPowerReceiver + - color: '#E5CCFFFF' + type: AtmosPipeColor + - joinedGrid: 1 + type: AtmosDevice +- proto: GasThermoMachineHeater + entities: + - uid: 271 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,26.5 + parent: 1 + type: Transform + - color: '#33FF33FF' + type: AtmosPipeColor + - joinedGrid: 1 + type: AtmosDevice +- proto: GasValve + entities: + - uid: 250 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,27.5 + parent: 1 + type: Transform + - open: False + type: GasValve + - joinedGrid: 1 + type: AtmosDevice + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 252 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,27.5 + parent: 1 + type: Transform + - open: False + type: GasValve + - joinedGrid: 1 + type: AtmosDevice + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 300 + components: + - rot: 3.141592653589793 rad + pos: -53.5,25.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#3399FFFF' + type: AtmosPipeColor + - uid: 307 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,26.5 + parent: 1 + type: Transform + - open: False + type: GasValve + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF6666FF' + type: AtmosPipeColor + - uid: 310 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,27.5 + parent: 1 + type: Transform + - open: False + type: GasValve + - joinedGrid: 1 + type: AtmosDevice + - color: '#3399FFFF' + type: AtmosPipeColor + - uid: 312 + components: + - rot: 3.141592653589793 rad + pos: -51.5,25.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF6666FF' + type: AtmosPipeColor + - uid: 384 + components: + - rot: 3.141592653589793 rad + pos: -56.5,29.5 + parent: 1 + type: Transform + - open: False + type: GasValve + - joinedGrid: 1 + type: AtmosDevice + - color: '#B266FFFF' + type: AtmosPipeColor + - uid: 399 + components: + - rot: 3.141592653589793 rad + pos: -57.5,34.5 + parent: 1 + type: Transform + - open: False + type: GasValve + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6477 + components: + - rot: -1.5707963267948966 rad + pos: -58.5,35.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6482 + components: + - rot: 3.141592653589793 rad + pos: -57.5,29.5 + parent: 1 + type: Transform + - open: False + type: GasValve + - joinedGrid: 1 + type: AtmosDevice + - color: '#B266FFFF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 643 + components: + - rot: 3.141592653589793 rad + pos: 48.5,-31.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 822 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,20.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#E5CCFFFF' + type: AtmosPipeColor + - uid: 2105 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,-28.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2141 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-24.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2194 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,14.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2832 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,15.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6721 + components: + - rot: 3.141592653589793 rad + pos: 73.5,6.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9504 + components: + - rot: 3.141592653589793 rad + pos: 4.5,7.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9527 + components: + - rot: 3.141592653589793 rad + pos: -9.5,4.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10820 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,25.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10866 + components: + - rot: 3.141592653589793 rad + pos: -56.5,36.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10947 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,18.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10951 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,11.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10976 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,7.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10977 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10978 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-2.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10980 + components: + - pos: -61.5,4.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11009 + components: + - pos: -41.5,5.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11010 + components: + - rot: 3.141592653589793 rad + pos: -46.5,-1.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11038 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-10.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11047 + components: + - pos: -56.5,-15.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11049 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-14.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11092 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,-23.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11116 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-24.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11119 + components: + - pos: -19.5,18.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11135 + components: + - pos: -18.5,15.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11136 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,9.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11142 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,5.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11288 + components: + - rot: 3.141592653589793 rad + pos: -46.5,7.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11337 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-42.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11392 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-49.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11393 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-49.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11439 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-25.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11548 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-49.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11549 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-49.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12553 + components: + - pos: 3.5,-15.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12577 + components: + - pos: -8.5,-4.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12578 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-12.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12607 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12609 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12617 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12628 + components: + - rot: 3.141592653589793 rad + pos: -23.5,7.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12629 + components: + - pos: -23.5,11.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12637 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-5.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12638 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-2.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12650 + components: + - rot: 3.141592653589793 rad + pos: -22.5,4.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12676 + components: + - pos: -9.5,10.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12692 + components: + - pos: -20.5,-8.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12703 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-23.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12750 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,21.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12766 + components: + - rot: 3.141592653589793 rad + pos: -4.5,10.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12831 + components: + - rot: 3.141592653589793 rad + pos: 10.5,11.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12832 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,12.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12839 + components: + - rot: 3.141592653589793 rad + pos: 15.5,9.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12869 + components: + - rot: 3.141592653589793 rad + pos: 27.5,9.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12915 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,9.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12916 + components: + - rot: 3.141592653589793 rad + pos: 48.5,3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12917 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,6.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12918 + components: + - pos: 74.5,3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12941 + components: + - pos: 84.5,3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12943 + components: + - rot: 3.141592653589793 rad + pos: 29.5,6.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12949 + components: + - rot: 3.141592653589793 rad + pos: 35.5,6.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12972 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-8.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12987 + components: + - pos: 15.5,-1.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12988 + components: + - pos: 16.5,-3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12992 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,5.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12993 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-8.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12994 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-19.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12995 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-18.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13041 + components: + - pos: 25.5,-1.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13042 + components: + - pos: 26.5,-1.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13043 + components: + - pos: 27.5,-1.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13044 + components: + - pos: 28.5,-1.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13045 + components: + - pos: 29.5,-0.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13046 + components: + - pos: 32.5,0.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13047 + components: + - pos: 38.5,-1.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13048 + components: + - rot: 3.141592653589793 rad + pos: -0.5,50.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13065 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-10.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13082 + components: + - rot: 3.141592653589793 rad + pos: 28.5,11.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13098 + components: + - pos: 19.5,-12.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13099 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-14.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13100 + components: + - pos: 25.5,-10.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13148 + components: + - pos: -60.5,-0.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13159 + components: + - pos: 45.5,-3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13160 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,-7.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13271 + components: + - pos: 79.5,-7.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13275 + components: + - rot: 1.5707963267948966 rad + pos: 84.5,-9.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13277 + components: + - rot: -1.5707963267948966 rad + pos: 91.5,-9.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13278 + components: + - pos: 90.5,-7.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13279 + components: + - rot: 1.5707963267948966 rad + pos: 85.5,-2.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13308 + components: + - rot: 3.141592653589793 rad + pos: 82.5,-16.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13317 + components: + - rot: 1.5707963267948966 rad + pos: 73.5,-11.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13318 + components: + - rot: 1.5707963267948966 rad + pos: 73.5,-3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13319 + components: + - rot: -1.5707963267948966 rad + pos: 80.5,-3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13337 + components: + - rot: 3.141592653589793 rad + pos: 72.5,-16.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13344 + components: + - rot: 3.141592653589793 rad + pos: 63.5,-16.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13345 + components: + - rot: 1.5707963267948966 rad + pos: 61.5,-13.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13361 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,0.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13362 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,-3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13363 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,-7.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13366 + components: + - rot: -1.5707963267948966 rad + pos: 70.5,-4.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13388 + components: + - rot: 1.5707963267948966 rad + pos: 61.5,-9.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13399 + components: + - pos: 60.5,19.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13401 + components: + - pos: 70.5,3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13413 + components: + - rot: 1.5707963267948966 rad + pos: 55.5,3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13445 + components: + - rot: 3.141592653589793 rad + pos: 10.5,30.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13446 + components: + - pos: 10.5,38.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13447 + components: + - pos: 9.5,49.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13471 + components: + - pos: -11.5,43.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13477 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,44.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13478 + components: + - pos: 4.5,43.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13499 + components: + - pos: 0.5,46.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13563 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,48.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13564 + components: + - pos: 18.5,49.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13565 + components: + - pos: 12.5,49.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13584 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,49.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13591 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,40.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13592 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,40.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13593 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,43.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13594 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,46.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13596 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,44.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13625 + components: + - pos: 66.5,16.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13631 + components: + - rot: 3.141592653589793 rad + pos: 32.5,47.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13632 + components: + - rot: 1.5707963267948966 rad + pos: 62.5,7.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13633 + components: + - pos: 63.5,16.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13636 + components: + - rot: 1.5707963267948966 rad + pos: 68.5,11.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13640 + components: + - rot: 3.141592653589793 rad + pos: 75.5,21.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13645 + components: + - rot: -1.5707963267948966 rad + pos: 83.5,11.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13646 + components: + - pos: 80.5,15.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13647 + components: + - rot: 3.141592653589793 rad + pos: 77.5,10.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13698 + components: + - rot: 1.5707963267948966 rad + pos: 65.5,20.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13699 + components: + - rot: -1.5707963267948966 rad + pos: 77.5,16.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13700 + components: + - rot: 3.141592653589793 rad + pos: 81.5,20.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13701 + components: + - rot: -1.5707963267948966 rad + pos: 88.5,18.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13742 + components: + - rot: 1.5707963267948966 rad + pos: 63.5,26.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13745 + components: + - rot: 3.141592653589793 rad + pos: 64.5,24.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13746 + components: + - rot: 3.141592653589793 rad + pos: 67.5,24.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13747 + components: + - pos: 64.5,29.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13748 + components: + - pos: 67.5,29.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13749 + components: + - pos: 69.5,29.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13763 + components: + - pos: 80.5,27.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13764 + components: + - pos: 88.5,27.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13814 + components: + - pos: 46.5,13.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13840 + components: + - rot: 3.141592653589793 rad + pos: 99.5,0.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13841 + components: + - pos: 99.5,3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13842 + components: + - pos: 95.5,3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13847 + components: + - rot: 3.141592653589793 rad + pos: 110.5,1.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13848 + components: + - pos: 110.5,10.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13850 + components: + - rot: 1.5707963267948966 rad + pos: 102.5,10.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13888 + components: + - rot: 1.5707963267948966 rad + pos: 101.5,-3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13889 + components: + - rot: -1.5707963267948966 rad + pos: 106.5,-3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13898 + components: + - rot: 1.5707963267948966 rad + pos: 104.5,0.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14008 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,-27.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14370 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-32.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15073 + components: + - pos: 21.5,42.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15281 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-37.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15375 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-34.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15378 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-39.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15379 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-39.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15380 + components: + - pos: 2.5,-32.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15386 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-36.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15811 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-43.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16112 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-43.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16807 + components: + - pos: 0.5,-38.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16939 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-32.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16940 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-33.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16947 + components: + - pos: 19.5,-35.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16948 + components: + - pos: 25.5,-37.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17009 + components: + - pos: 28.5,-34.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17011 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-40.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17213 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-44.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17458 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-39.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17486 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-4.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 18192 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-32.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 18207 + components: + - pos: 31.5,-38.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19147 + components: + - pos: 56.5,7.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19151 + components: + - rot: 3.141592653589793 rad + pos: 56.5,-0.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19231 + components: + - pos: 3.5,24.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19235 + components: + - pos: 4.5,21.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19307 + components: + - rot: 3.141592653589793 rad + pos: 6.5,15.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19308 + components: + - rot: 3.141592653589793 rad + pos: -5.5,20.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19327 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,23.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19329 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,23.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 19618 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,20.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20021 + components: + - pos: 33.5,17.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20025 + components: + - pos: 37.5,15.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20109 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,22.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20110 + components: + - pos: 20.5,21.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20111 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,17.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20113 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,24.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20138 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,23.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20140 + components: + - pos: 38.5,24.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 20207 + components: + - rot: 3.141592653589793 rad + pos: 44.5,14.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 21394 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 22168 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23614 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-10.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23623 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,40.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23642 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,46.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23699 + components: + - rot: -1.5707963267948966 rad + pos: 54.5,37.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23700 + components: + - rot: 3.141592653589793 rad + pos: 58.5,37.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23718 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-39.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23722 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-15.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23724 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-14.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23729 + components: + - pos: -17.5,-11.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23738 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-15.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 23769 + components: + - pos: 25.5,55.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25188 + components: + - rot: -1.5707963267948966 rad + pos: 77.5,8.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25331 + components: + - pos: 64.5,20.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25366 + components: + - pos: -71.5,5.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25367 + components: + - pos: -67.5,5.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25406 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-29.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25407 + components: + - rot: 3.141592653589793 rad + pos: -51.5,-28.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25408 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-29.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25409 + components: + - rot: 3.141592653589793 rad + pos: -48.5,-29.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25553 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-14.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25628 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-27.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 642 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-31.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2723 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,-27.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2744 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,20.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2745 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,15.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2747 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-9.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7042 + components: + - pos: -9.5,3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10718 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,-20.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10843 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,31.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10844 + components: + - rot: 3.141592653589793 rad + pos: -41.5,30.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11095 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11423 + components: + - rot: 3.141592653589793 rad + pos: 15.5,17.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11441 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-31.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12591 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-16.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12606 + components: + - pos: -4.5,-4.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13683 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,-10.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13961 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,2.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13999 + components: + - rot: 3.141592653589793 rad + pos: -35.5,-22.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14010 + components: + - pos: -52.5,-21.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14041 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-18.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14047 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,-18.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14069 + components: + - pos: -59.5,4.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14070 + components: + - pos: -54.5,0.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14071 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-11.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14093 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-1.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14094 + components: + - pos: -42.5,5.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14114 + components: + - rot: 3.141592653589793 rad + pos: -47.5,7.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14116 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,10.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14143 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,4.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14144 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,8.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14154 + components: + - pos: -51.5,17.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14164 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-5.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14165 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14169 + components: + - pos: -21.5,11.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14170 + components: + - rot: 3.141592653589793 rad + pos: -21.5,7.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14185 + components: + - pos: -22.5,3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14195 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,18.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14196 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,16.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14210 + components: + - pos: -16.5,11.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14287 + components: + - pos: -15.5,-2.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14331 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-24.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14346 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-25.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14414 + components: + - pos: -0.5,-34.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14518 + components: + - pos: -5.5,-43.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14519 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-49.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14520 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,21.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14521 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-49.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14522 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-49.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14615 + components: + - rot: 1.5707963267948966 rad + pos: 55.5,2.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14624 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,-0.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14645 + components: + - rot: 3.141592653589793 rad + pos: 69.5,3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14647 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,-4.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14654 + components: + - rot: -1.5707963267948966 rad + pos: 70.5,-3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14659 + components: + - rot: 3.141592653589793 rad + pos: 64.5,-16.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14660 + components: + - rot: 1.5707963267948966 rad + pos: 61.5,-12.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14661 + components: + - rot: 1.5707963267948966 rad + pos: 61.5,-8.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14662 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,-8.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14690 + components: + - pos: 85.5,-3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14691 + components: + - rot: 1.5707963267948966 rad + pos: 84.5,-8.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14692 + components: + - pos: 88.5,-7.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14693 + components: + - rot: -1.5707963267948966 rad + pos: 91.5,-8.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14694 + components: + - rot: 3.141592653589793 rad + pos: 85.5,-16.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14695 + components: + - pos: 81.5,-7.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14696 + components: + - pos: 75.5,-10.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14697 + components: + - rot: 3.141592653589793 rad + pos: 70.5,-16.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14739 + components: + - rot: -1.5707963267948966 rad + pos: 102.5,11.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14750 + components: + - rot: 3.141592653589793 rad + pos: 99.5,4.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14751 + components: + - rot: 3.141592653589793 rad + pos: 84.5,4.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14752 + components: + - rot: 3.141592653589793 rad + pos: 74.5,4.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14792 + components: + - rot: 1.5707963267948966 rad + pos: 100.5,-1.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14793 + components: + - rot: 3.141592653589793 rad + pos: 104.5,-2.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14794 + components: + - rot: 1.5707963267948966 rad + pos: 104.5,1.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14795 + components: + - pos: 112.5,8.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14796 + components: + - rot: -1.5707963267948966 rad + pos: 114.5,1.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14829 + components: + - pos: 61.5,19.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14832 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,7.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14833 + components: + - pos: 64.5,16.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14834 + components: + - pos: 67.5,16.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14838 + components: + - rot: -1.5707963267948966 rad + pos: 79.5,12.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14839 + components: + - rot: -1.5707963267948966 rad + pos: 74.5,7.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14855 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,10.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14877 + components: + - rot: 1.5707963267948966 rad + pos: 65.5,21.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14878 + components: + - pos: 76.5,21.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14884 + components: + - rot: 3.141592653589793 rad + pos: 83.5,12.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14885 + components: + - rot: 1.5707963267948966 rad + pos: 82.5,17.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14886 + components: + - rot: -1.5707963267948966 rad + pos: 88.5,17.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14902 + components: + - rot: 3.141592653589793 rad + pos: 82.5,20.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14928 + components: + - rot: -1.5707963267948966 rad + pos: 77.5,17.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14943 + components: + - pos: 63.5,29.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14944 + components: + - rot: 3.141592653589793 rad + pos: 63.5,24.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14945 + components: + - rot: 3.141592653589793 rad + pos: 66.5,24.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14946 + components: + - pos: 66.5,29.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14947 + components: + - pos: 70.5,29.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14968 + components: + - rot: -1.5707963267948966 rad + pos: 89.5,25.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14969 + components: + - pos: 79.5,28.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14970 + components: + - rot: 3.141592653589793 rad + pos: 65.5,26.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14991 + components: + - pos: 26.5,-10.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14992 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-13.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15058 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-7.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15059 + components: + - pos: 43.5,-3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15068 + components: + - rot: 1.5707963267948966 rad + pos: -60.5,0.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15076 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15080 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,5.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15081 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15082 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-19.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15083 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-16.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15084 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-12.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15124 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-0.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15125 + components: + - pos: 35.5,0.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15127 + components: + - pos: 23.5,-1.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15128 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-8.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15170 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,8.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15171 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15282 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-37.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15300 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,10.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15325 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,10.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15350 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-36.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15351 + components: + - pos: -2.5,-33.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15352 + components: + - pos: 3.5,-33.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15353 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-35.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15373 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-38.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15381 + components: + - rot: 3.141592653589793 rad + pos: 24.5,9.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15436 + components: + - pos: 47.5,13.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15439 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,8.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15472 + components: + - rot: 3.141592653589793 rad + pos: 39.5,3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15473 + components: + - pos: 49.5,5.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15480 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,10.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15481 + components: + - rot: 3.141592653589793 rad + pos: 31.5,6.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15482 + components: + - rot: 3.141592653589793 rad + pos: 33.5,6.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15557 + components: + - pos: -10.5,47.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15571 + components: + - rot: 3.141592653589793 rad + pos: -4.5,40.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15605 + components: + - pos: 13.5,38.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15606 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,44.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15607 + components: + - pos: 18.5,42.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15608 + components: + - rot: 3.141592653589793 rad + pos: 13.5,30.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15661 + components: + - pos: 35.5,47.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15693 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,49.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15694 + components: + - pos: 19.5,50.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15695 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,49.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15708 + components: + - rot: 3.141592653589793 rad + pos: 29.5,50.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15713 + components: + - pos: 8.5,49.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15720 + components: + - rot: 3.141592653589793 rad + pos: 4.5,44.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15810 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-43.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16111 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-43.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16937 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-33.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16938 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-32.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17216 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-44.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17284 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-38.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17344 + components: + - pos: 23.5,-36.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17380 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,-28.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17468 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 18151 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-35.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 18191 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-32.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 18198 + components: + - pos: 32.5,-34.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 18238 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-44.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19159 + components: + - rot: 3.141592653589793 rad + pos: 57.5,-0.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19160 + components: + - pos: 57.5,7.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19215 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,10.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19227 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,24.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19336 + components: + - pos: -4.5,18.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19337 + components: + - pos: -1.5,20.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19353 + components: + - pos: -0.5,25.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19369 + components: + - pos: 7.5,24.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19370 + components: + - rot: 3.141592653589793 rad + pos: 7.5,15.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19613 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,24.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19624 + components: + - rot: 3.141592653589793 rad + pos: 12.5,20.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19931 + components: + - rot: 3.141592653589793 rad + pos: 40.5,14.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19966 + components: + - pos: 33.5,23.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19973 + components: + - rot: 3.141592653589793 rad + pos: 37.5,16.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19980 + components: + - pos: 35.5,24.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19983 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,15.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19984 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,21.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 19995 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,16.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 21395 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,4.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22098 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-8.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22119 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22163 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22201 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-11.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22276 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,39.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22277 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,42.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22278 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,45.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22302 + components: + - pos: 18.5,46.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22303 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,42.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22382 + components: + - rot: -1.5707963267948966 rad + pos: 77.5,-2.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22384 + components: + - rot: -1.5707963267948966 rad + pos: 80.5,-4.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22429 + components: + - rot: 3.141592653589793 rad + pos: 95.5,4.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22430 + components: + - rot: 3.141592653589793 rad + pos: 100.5,0.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23621 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,40.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23641 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,46.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23654 + components: + - pos: 51.5,40.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23701 + components: + - pos: 58.5,41.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23717 + components: + - pos: 35.5,-34.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23721 + components: + - pos: -23.5,-15.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23731 + components: + - pos: -17.5,-16.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23737 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-14.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23762 + components: + - rot: 3.141592653589793 rad + pos: 1.5,50.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23768 + components: + - pos: 20.5,55.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23842 + components: + - pos: 30.5,1.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23845 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-0.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23846 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-0.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23847 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-0.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23848 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-0.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23964 + components: + - rot: 1.5707963267948966 rad + pos: 64.5,22.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25128 + components: + - pos: -39.5,-27.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25187 + components: + - rot: -1.5707963267948966 rad + pos: 77.5,7.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25249 + components: + - pos: 109.5,25.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 25335 + components: + - rot: 1.5707963267948966 rad + pos: -71.5,3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25336 + components: + - rot: 3.141592653589793 rad + pos: -67.5,2.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25424 + components: + - pos: -49.5,-27.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25425 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,-30.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25426 + components: + - pos: -51.5,-29.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25427 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-30.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25554 + components: + - pos: -49.5,-17.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25632 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-39.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasVolumePump + entities: + - uid: 266 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,24.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#33FF33FF' + type: AtmosPipeColor + - uid: 4679 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,43.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 4680 + components: + - rot: 3.141592653589793 rad + pos: -1.5,45.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 6468 + components: + - rot: -1.5707963267948966 rad + pos: -61.5,30.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - color: '#B266FFFF' + type: AtmosPipeColor +- proto: Gauze + entities: + - uid: 7666 + components: + - pos: 83.509544,-2.9701471 + parent: 1 + type: Transform + - uid: 16259 + components: + - pos: 77.44111,-17.413984 + parent: 1 + type: Transform +- proto: Gauze1 + entities: + - uid: 2261 + components: + - flags: InContainer + type: MetaData + - parent: 2225 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2262 + components: + - flags: InContainer + type: MetaData + - parent: 2225 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2265 + components: + - flags: InContainer + type: MetaData + - parent: 2225 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 3295 + components: + - flags: InContainer + type: MetaData + - parent: 3283 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 3302 + components: + - flags: InContainer + type: MetaData + - parent: 3283 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 3305 + components: + - flags: InContainer + type: MetaData + - parent: 3283 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5405 + components: + - flags: InContainer + type: MetaData + - parent: 5402 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: GeigerCounter + entities: + - uid: 4667 + components: + - rot: 3.141592653589793 rad + pos: -1.3836228,47.584717 + parent: 1 + type: Transform + - uid: 16871 + components: + - pos: -15.39428,22.621737 + parent: 1 + type: Transform +- proto: GeneratorBasic + entities: + - uid: 16576 + components: + - pos: 53.5,26.5 + parent: 1 + type: Transform + - uid: 25263 + components: + - pos: 104.5,28.5 + parent: 1 + type: Transform +- proto: GeneratorRTGDamaged + entities: + - uid: 7349 + components: + - pos: 130.5,5.5 + parent: 1 + type: Transform +- proto: Girder + entities: + - uid: 8118 + components: + - pos: 57.5,25.5 + parent: 1 + type: Transform + - uid: 12507 + components: + - pos: 0.5,50.5 + parent: 1 + type: Transform + - uid: 12508 + components: + - pos: 0.5,51.5 + parent: 1 + type: Transform + - uid: 12509 + components: + - pos: 0.5,52.5 + parent: 1 + type: Transform + - uid: 13204 + components: + - pos: 50.5,34.5 + parent: 1 + type: Transform + - uid: 13205 + components: + - pos: 49.5,35.5 + parent: 1 + type: Transform + - uid: 13206 + components: + - pos: 47.5,34.5 + parent: 1 + type: Transform + - uid: 13207 + components: + - pos: 47.5,35.5 + parent: 1 + type: Transform + - uid: 15737 + components: + - pos: -45.5,-6.5 + parent: 1 + type: Transform + - uid: 15738 + components: + - pos: -44.5,-6.5 + parent: 1 + type: Transform + - uid: 15739 + components: + - pos: -43.5,-5.5 + parent: 1 + type: Transform + - uid: 15740 + components: + - pos: -42.5,-6.5 + parent: 1 + type: Transform + - uid: 15741 + components: + - pos: -41.5,-6.5 + parent: 1 + type: Transform + - uid: 16032 + components: + - pos: 38.5,26.5 + parent: 1 + type: Transform + - uid: 16071 + components: + - pos: 41.5,43.5 + parent: 1 + type: Transform + - uid: 16072 + components: + - pos: 40.5,43.5 + parent: 1 + type: Transform + - uid: 16073 + components: + - pos: 40.5,44.5 + parent: 1 + type: Transform + - uid: 16345 + components: + - pos: 22.5,-18.5 + parent: 1 + type: Transform + - uid: 19460 + components: + - pos: 46.5,-15.5 + parent: 1 + type: Transform + - uid: 22583 + components: + - pos: 38.5,-45.5 + parent: 1 + type: Transform + - uid: 22584 + components: + - pos: 39.5,-44.5 + parent: 1 + type: Transform + - uid: 22924 + components: + - pos: 46.5,-14.5 + parent: 1 + type: Transform +- proto: GlimmerProber + entities: + - uid: 25731 + components: + - pos: 0.5,39.5 + parent: 1 + type: Transform +- proto: GlowstickBase + entities: + - uid: 7211 + components: + - flags: InContainer + type: MetaData + - parent: 6965 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 7216 + components: + - flags: InContainer + type: MetaData + - parent: 6965 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: GlowstickBlue + entities: + - uid: 7219 + components: + - flags: InContainer + type: MetaData + - parent: 6965 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 7220 + components: + - flags: InContainer + type: MetaData + - parent: 6965 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: GlowstickPurple + entities: + - uid: 7217 + components: + - flags: InContainer + type: MetaData + - parent: 6965 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 7218 + components: + - flags: InContainer + type: MetaData + - parent: 6965 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: GlowstickRed + entities: + - uid: 7214 + components: + - flags: InContainer + type: MetaData + - parent: 6965 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 7215 + components: + - flags: InContainer + type: MetaData + - parent: 6965 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: GlowstickYellow + entities: + - uid: 7212 + components: + - flags: InContainer + type: MetaData + - parent: 6965 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 7213 + components: + - flags: InContainer + type: MetaData + - parent: 6965 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: Gohei + entities: + - uid: 4713 + components: + - rot: 3.141592653589793 rad + pos: 64.73498,19.560637 + parent: 1 + type: Transform +- proto: GoldOre1 + entities: + - uid: 6366 + components: + - pos: -39.58928,10.654259 + parent: 1 + type: Transform +- proto: GravityGenerator + entities: + - uid: 432 + components: + - pos: -55.5,9.5 + parent: 1 + type: Transform +- proto: GrenadeFlashBang + entities: + - uid: 3778 + components: + - pos: 110.03246,11.614016 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 67 + components: + - pos: -63.5,29.5 + parent: 1 + type: Transform + - uid: 68 + components: + - pos: -62.5,30.5 + parent: 1 + type: Transform + - uid: 69 + components: + - pos: -62.5,31.5 + parent: 1 + type: Transform + - uid: 70 + components: + - pos: -62.5,32.5 + parent: 1 + type: Transform + - uid: 71 + components: + - pos: -62.5,29.5 + parent: 1 + type: Transform + - uid: 76 + components: + - pos: -61.5,29.5 + parent: 1 + type: Transform + - uid: 89 + components: + - pos: -49.5,21.5 + parent: 1 + type: Transform + - uid: 134 + components: + - pos: -54.5,30.5 + parent: 1 + type: Transform + - uid: 135 + components: + - pos: -54.5,31.5 + parent: 1 + type: Transform + - uid: 136 + components: + - pos: -54.5,32.5 + parent: 1 + type: Transform + - uid: 137 + components: + - pos: -53.5,33.5 + parent: 1 + type: Transform + - uid: 138 + components: + - pos: -53.5,29.5 + parent: 1 + type: Transform + - uid: 139 + components: + - pos: -52.5,30.5 + parent: 1 + type: Transform + - uid: 140 + components: + - pos: -52.5,31.5 + parent: 1 + type: Transform + - uid: 141 + components: + - pos: -52.5,32.5 + parent: 1 + type: Transform + - uid: 142 + components: + - pos: -50.5,32.5 + parent: 1 + type: Transform + - uid: 143 + components: + - pos: -50.5,31.5 + parent: 1 + type: Transform + - uid: 144 + components: + - pos: -50.5,30.5 + parent: 1 + type: Transform + - uid: 145 + components: + - pos: -48.5,30.5 + parent: 1 + type: Transform + - uid: 146 + components: + - pos: -48.5,31.5 + parent: 1 + type: Transform + - uid: 147 + components: + - pos: -48.5,32.5 + parent: 1 + type: Transform + - uid: 148 + components: + - pos: -46.5,32.5 + parent: 1 + type: Transform + - uid: 149 + components: + - pos: -46.5,31.5 + parent: 1 + type: Transform + - uid: 150 + components: + - pos: -46.5,30.5 + parent: 1 + type: Transform + - uid: 151 + components: + - pos: -44.5,30.5 + parent: 1 + type: Transform + - uid: 152 + components: + - pos: -44.5,31.5 + parent: 1 + type: Transform + - uid: 153 + components: + - pos: -44.5,32.5 + parent: 1 + type: Transform + - uid: 154 + components: + - pos: -45.5,33.5 + parent: 1 + type: Transform + - uid: 155 + components: + - pos: -45.5,29.5 + parent: 1 + type: Transform + - uid: 156 + components: + - pos: -47.5,29.5 + parent: 1 + type: Transform + - uid: 157 + components: + - pos: -47.5,33.5 + parent: 1 + type: Transform + - uid: 158 + components: + - pos: -49.5,33.5 + parent: 1 + type: Transform + - uid: 159 + components: + - pos: -49.5,29.5 + parent: 1 + type: Transform + - uid: 160 + components: + - pos: -51.5,29.5 + parent: 1 + type: Transform + - uid: 161 + components: + - pos: -51.5,33.5 + parent: 1 + type: Transform + - uid: 191 + components: + - pos: -43.5,33.5 + parent: 1 + type: Transform + - uid: 192 + components: + - pos: -43.5,29.5 + parent: 1 + type: Transform + - uid: 193 + components: + - pos: -42.5,30.5 + parent: 1 + type: Transform + - uid: 194 + components: + - pos: -42.5,31.5 + parent: 1 + type: Transform + - uid: 195 + components: + - pos: -42.5,32.5 + parent: 1 + type: Transform + - uid: 281 + components: + - pos: -52.5,22.5 + parent: 1 + type: Transform + - uid: 284 + components: + - pos: -56.5,23.5 + parent: 1 + type: Transform + - uid: 285 + components: + - pos: -54.5,23.5 + parent: 1 + type: Transform + - uid: 291 + components: + - pos: -53.5,23.5 + parent: 1 + type: Transform + - uid: 292 + components: + - pos: -55.5,23.5 + parent: 1 + type: Transform + - uid: 486 + components: + - pos: 7.5,42.5 + parent: 1 + type: Transform + - uid: 487 + components: + - pos: 7.5,44.5 + parent: 1 + type: Transform + - uid: 497 + components: + - pos: 3.5,-50.5 + parent: 1 + type: Transform + - uid: 498 + components: + - pos: 11.5,-50.5 + parent: 1 + type: Transform + - uid: 501 + components: + - pos: 5.5,-50.5 + parent: 1 + type: Transform + - uid: 505 + components: + - pos: 4.5,-50.5 + parent: 1 + type: Transform + - uid: 506 + components: + - pos: 6.5,-50.5 + parent: 1 + type: Transform + - uid: 511 + components: + - pos: -1.5,-50.5 + parent: 1 + type: Transform + - uid: 512 + components: + - pos: 13.5,-50.5 + parent: 1 + type: Transform + - uid: 514 + components: + - pos: -0.5,-50.5 + parent: 1 + type: Transform + - uid: 515 + components: + - pos: -5.5,-50.5 + parent: 1 + type: Transform + - uid: 517 + components: + - pos: 10.5,-50.5 + parent: 1 + type: Transform + - uid: 520 + components: + - pos: -4.5,-50.5 + parent: 1 + type: Transform + - uid: 521 + components: + - pos: -2.5,-50.5 + parent: 1 + type: Transform + - uid: 525 + components: + - pos: -3.5,-50.5 + parent: 1 + type: Transform + - uid: 544 + components: + - pos: -10.5,17.5 + parent: 1 + type: Transform + - uid: 552 + components: + - pos: 12.5,-50.5 + parent: 1 + type: Transform + - uid: 654 + components: + - pos: -65.5,5.5 + parent: 1 + type: Transform + - uid: 655 + components: + - pos: -65.5,2.5 + parent: 1 + type: Transform + - uid: 964 + components: + - pos: 13.5,-28.5 + parent: 1 + type: Transform + - uid: 965 + components: + - pos: 10.5,-36.5 + parent: 1 + type: Transform + - uid: 966 + components: + - pos: 8.5,22.5 + parent: 1 + type: Transform + - uid: 1003 + components: + - pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 1004 + components: + - pos: 3.5,13.5 + parent: 1 + type: Transform + - uid: 1007 + components: + - pos: 8.5,13.5 + parent: 1 + type: Transform + - uid: 1011 + components: + - pos: 4.5,13.5 + parent: 1 + type: Transform + - uid: 1025 + components: + - pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 1029 + components: + - pos: 6.5,18.5 + parent: 1 + type: Transform + - uid: 1030 + components: + - pos: 8.5,18.5 + parent: 1 + type: Transform + - uid: 1033 + components: + - pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 1119 + components: + - pos: 16.5,-45.5 + parent: 1 + type: Transform + - uid: 1120 + components: + - pos: 15.5,-45.5 + parent: 1 + type: Transform + - uid: 1121 + components: + - pos: 14.5,-43.5 + parent: 1 + type: Transform + - uid: 1122 + components: + - pos: 14.5,-44.5 + parent: 1 + type: Transform + - uid: 1155 + components: + - pos: 6.5,13.5 + parent: 1 + type: Transform + - uid: 1273 + components: + - pos: -12.5,18.5 + parent: 1 + type: Transform + - uid: 1322 + components: + - pos: 49.5,-26.5 + parent: 1 + type: Transform + - uid: 1323 + components: + - pos: 48.5,-26.5 + parent: 1 + type: Transform + - uid: 1355 + components: + - pos: -11.5,18.5 + parent: 1 + type: Transform + - uid: 1475 + components: + - pos: 11.5,-36.5 + parent: 1 + type: Transform + - uid: 1479 + components: + - pos: 10.5,-28.5 + parent: 1 + type: Transform + - uid: 1556 + components: + - pos: 16.5,-40.5 + parent: 1 + type: Transform + - uid: 1631 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 1632 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 1633 + components: + - pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 1634 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 1635 + components: + - pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 1636 + components: + - pos: 7.5,-1.5 + parent: 1 + type: Transform + - uid: 1668 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 1672 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 1675 + components: + - pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 1681 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 1682 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 1683 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 1736 + components: + - pos: 51.5,5.5 + parent: 1 + type: Transform + - uid: 1815 + components: + - pos: -22.5,1.5 + parent: 1 + type: Transform + - uid: 1868 + components: + - pos: -12.5,0.5 + parent: 1 + type: Transform + - uid: 1874 + components: + - pos: -7.5,-1.5 + parent: 1 + type: Transform + - uid: 1876 + components: + - pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 1883 + components: + - pos: -12.5,-3.5 + parent: 1 + type: Transform + - uid: 1888 + components: + - pos: -9.5,-1.5 + parent: 1 + type: Transform + - uid: 1911 + components: + - pos: 9.5,-11.5 + parent: 1 + type: Transform + - uid: 1912 + components: + - pos: 9.5,-13.5 + parent: 1 + type: Transform + - uid: 2025 + components: + - pos: 61.5,27.5 + parent: 1 + type: Transform + - uid: 2033 + components: + - pos: -14.5,1.5 + parent: 1 + type: Transform + - uid: 2034 + components: + - pos: -15.5,1.5 + parent: 1 + type: Transform + - uid: 2036 + components: + - pos: -17.5,1.5 + parent: 1 + type: Transform + - uid: 2037 + components: + - pos: -18.5,1.5 + parent: 1 + type: Transform + - uid: 2039 + components: + - pos: -20.5,1.5 + parent: 1 + type: Transform + - uid: 2115 + components: + - pos: 10.5,9.5 + parent: 1 + type: Transform + - uid: 2147 + components: + - pos: -10.5,16.5 + parent: 1 + type: Transform + - uid: 2205 + components: + - pos: 47.5,-26.5 + parent: 1 + type: Transform + - uid: 2250 + components: + - pos: -25.5,22.5 + parent: 1 + type: Transform + - uid: 2251 + components: + - pos: -24.5,22.5 + parent: 1 + type: Transform + - uid: 2297 + components: + - pos: 12.5,-36.5 + parent: 1 + type: Transform + - uid: 2340 + components: + - pos: -55.5,10.5 + parent: 1 + type: Transform + - uid: 2341 + components: + - pos: -54.5,10.5 + parent: 1 + type: Transform + - uid: 2342 + components: + - pos: -53.5,10.5 + parent: 1 + type: Transform + - uid: 2343 + components: + - pos: -55.5,6.5 + parent: 1 + type: Transform + - uid: 2344 + components: + - pos: -54.5,6.5 + parent: 1 + type: Transform + - uid: 2345 + components: + - pos: -53.5,6.5 + parent: 1 + type: Transform + - uid: 2346 + components: + - pos: -52.5,9.5 + parent: 1 + type: Transform + - uid: 2347 + components: + - pos: -52.5,8.5 + parent: 1 + type: Transform + - uid: 2360 + components: + - pos: -56.5,12.5 + parent: 1 + type: Transform + - uid: 2361 + components: + - pos: -55.5,12.5 + parent: 1 + type: Transform + - uid: 2362 + components: + - pos: -54.5,12.5 + parent: 1 + type: Transform + - uid: 2363 + components: + - pos: -53.5,12.5 + parent: 1 + type: Transform + - uid: 2375 + components: + - pos: -52.5,5.5 + parent: 1 + type: Transform + - uid: 2376 + components: + - pos: -52.5,2.5 + parent: 1 + type: Transform + - uid: 2379 + components: + - pos: -61.5,1.5 + parent: 1 + type: Transform + - uid: 2380 + components: + - pos: -59.5,1.5 + parent: 1 + type: Transform + - uid: 2411 + components: + - pos: -34.5,9.5 + parent: 1 + type: Transform + - uid: 2412 + components: + - pos: -34.5,10.5 + parent: 1 + type: Transform + - uid: 2413 + components: + - pos: -43.5,15.5 + parent: 1 + type: Transform + - uid: 2414 + components: + - pos: -42.5,15.5 + parent: 1 + type: Transform + - uid: 2416 + components: + - pos: -40.5,15.5 + parent: 1 + type: Transform + - uid: 2417 + components: + - pos: -39.5,15.5 + parent: 1 + type: Transform + - uid: 2462 + components: + - pos: -49.5,10.5 + parent: 1 + type: Transform + - uid: 2470 + components: + - pos: -53.5,16.5 + parent: 1 + type: Transform + - uid: 2471 + components: + - pos: -53.5,17.5 + parent: 1 + type: Transform + - uid: 2472 + components: + - pos: -53.5,18.5 + parent: 1 + type: Transform + - uid: 2473 + components: + - pos: -53.5,19.5 + parent: 1 + type: Transform + - uid: 2474 + components: + - pos: -53.5,20.5 + parent: 1 + type: Transform + - uid: 2490 + components: + - pos: -50.5,21.5 + parent: 1 + type: Transform + - uid: 2509 + components: + - pos: -39.5,0.5 + parent: 1 + type: Transform + - uid: 2510 + components: + - pos: -39.5,3.5 + parent: 1 + type: Transform + - uid: 2511 + components: + - pos: -39.5,7.5 + parent: 1 + type: Transform + - uid: 2512 + components: + - pos: -39.5,6.5 + parent: 1 + type: Transform + - uid: 2523 + components: + - pos: -49.5,2.5 + parent: 1 + type: Transform + - uid: 2524 + components: + - pos: -49.5,1.5 + parent: 1 + type: Transform + - uid: 2525 + components: + - pos: -49.5,-0.5 + parent: 1 + type: Transform + - uid: 2526 + components: + - pos: -49.5,-1.5 + parent: 1 + type: Transform + - uid: 2534 + components: + - pos: -52.5,4.5 + parent: 1 + type: Transform + - uid: 2628 + components: + - pos: 40.5,-1.5 + parent: 1 + type: Transform + - uid: 2630 + components: + - pos: 40.5,-0.5 + parent: 1 + type: Transform + - uid: 2631 + components: + - pos: 40.5,0.5 + parent: 1 + type: Transform + - uid: 2665 + components: + - pos: 40.5,-2.5 + parent: 1 + type: Transform + - uid: 2710 + components: + - pos: 37.5,-5.5 + parent: 1 + type: Transform + - uid: 2711 + components: + - pos: 39.5,-5.5 + parent: 1 + type: Transform + - uid: 2718 + components: + - pos: 39.5,-8.5 + parent: 1 + type: Transform + - uid: 2719 + components: + - pos: 37.5,-8.5 + parent: 1 + type: Transform + - uid: 2750 + components: + - pos: -30.5,-27.5 + parent: 1 + type: Transform + - uid: 2786 + components: + - pos: 13.5,-36.5 + parent: 1 + type: Transform + - uid: 2994 + components: + - pos: 89.5,-4.5 + parent: 1 + type: Transform + - uid: 2999 + components: + - pos: -62.5,-20.5 + parent: 1 + type: Transform + - uid: 3072 + components: + - pos: 40.5,8.5 + parent: 1 + type: Transform + - uid: 3073 + components: + - pos: 42.5,6.5 + parent: 1 + type: Transform + - uid: 3074 + components: + - pos: 40.5,11.5 + parent: 1 + type: Transform + - uid: 3075 + components: + - pos: 40.5,12.5 + parent: 1 + type: Transform + - uid: 3078 + components: + - pos: 43.5,6.5 + parent: 1 + type: Transform + - uid: 3082 + components: + - pos: 41.5,6.5 + parent: 1 + type: Transform + - uid: 3098 + components: + - pos: -30.5,-26.5 + parent: 1 + type: Transform + - uid: 3177 + components: + - pos: -69.5,2.5 + parent: 1 + type: Transform + - uid: 3179 + components: + - pos: -69.5,1.5 + parent: 1 + type: Transform + - uid: 3200 + components: + - pos: 50.5,-26.5 + parent: 1 + type: Transform + - uid: 3350 + components: + - pos: 92.5,25.5 + parent: 1 + type: Transform + - uid: 3353 + components: + - pos: 109.5,14.5 + parent: 1 + type: Transform + - uid: 3409 + components: + - pos: -22.5,6.5 + parent: 1 + type: Transform + - uid: 3411 + components: + - pos: -23.5,6.5 + parent: 1 + type: Transform + - uid: 3412 + components: + - pos: -21.5,6.5 + parent: 1 + type: Transform + - uid: 3437 + components: + - pos: 79.5,1.5 + parent: 1 + type: Transform + - uid: 3438 + components: + - pos: 82.5,6.5 + parent: 1 + type: Transform + - uid: 3442 + components: + - pos: 81.5,6.5 + parent: 1 + type: Transform + - uid: 3443 + components: + - pos: 80.5,6.5 + parent: 1 + type: Transform + - uid: 3444 + components: + - pos: 79.5,6.5 + parent: 1 + type: Transform + - uid: 3445 + components: + - pos: 80.5,1.5 + parent: 1 + type: Transform + - uid: 3447 + components: + - pos: 82.5,1.5 + parent: 1 + type: Transform + - uid: 3448 + components: + - pos: 81.5,1.5 + parent: 1 + type: Transform + - uid: 3501 + components: + - pos: -60.5,36.5 + parent: 1 + type: Transform + - uid: 3520 + components: + - pos: 62.5,-7.5 + parent: 1 + type: Transform + - uid: 3528 + components: + - pos: -58.5,39.5 + parent: 1 + type: Transform + - uid: 3530 + components: + - pos: -18.5,6.5 + parent: 1 + type: Transform + - uid: 3531 + components: + - pos: -16.5,6.5 + parent: 1 + type: Transform + - uid: 3532 + components: + - pos: -15.5,6.5 + parent: 1 + type: Transform + - uid: 3554 + components: + - pos: -56.5,39.5 + parent: 1 + type: Transform + - uid: 3565 + components: + - pos: -57.5,39.5 + parent: 1 + type: Transform + - uid: 3566 + components: + - pos: -60.5,37.5 + parent: 1 + type: Transform + - uid: 3599 + components: + - pos: 14.5,-18.5 + parent: 1 + type: Transform + - uid: 3600 + components: + - pos: 14.5,-15.5 + parent: 1 + type: Transform + - uid: 3601 + components: + - pos: 14.5,-17.5 + parent: 1 + type: Transform + - uid: 3607 + components: + - pos: 5.5,32.5 + parent: 1 + type: Transform + - uid: 3615 + components: + - pos: 5.5,33.5 + parent: 1 + type: Transform + - uid: 3616 + components: + - pos: 5.5,34.5 + parent: 1 + type: Transform + - uid: 3619 + components: + - pos: 18.5,32.5 + parent: 1 + type: Transform + - uid: 3620 + components: + - pos: 18.5,33.5 + parent: 1 + type: Transform + - uid: 3621 + components: + - pos: 18.5,34.5 + parent: 1 + type: Transform + - uid: 3678 + components: + - pos: -60.5,35.5 + parent: 1 + type: Transform + - uid: 3684 + components: + - pos: -57.5,-31.5 + parent: 1 + type: Transform + - uid: 3756 + components: + - pos: -58.5,-31.5 + parent: 1 + type: Transform + - uid: 3758 + components: + - pos: -76.5,0.5 + parent: 1 + type: Transform + - uid: 3762 + components: + - pos: -58.5,-31.5 + parent: 1 + type: Transform + - uid: 3814 + components: + - pos: -59.5,-31.5 + parent: 1 + type: Transform + - uid: 3843 + components: + - pos: -38.5,15.5 + parent: 1 + type: Transform + - uid: 3863 + components: + - pos: 3.5,41.5 + parent: 1 + type: Transform + - uid: 3864 + components: + - pos: 4.5,41.5 + parent: 1 + type: Transform + - uid: 3865 + components: + - pos: 5.5,41.5 + parent: 1 + type: Transform + - uid: 3866 + components: + - pos: 6.5,41.5 + parent: 1 + type: Transform + - uid: 3896 + components: + - pos: 32.5,-5.5 + parent: 1 + type: Transform + - uid: 3897 + components: + - pos: 31.5,-5.5 + parent: 1 + type: Transform + - uid: 3898 + components: + - pos: 34.5,-5.5 + parent: 1 + type: Transform + - uid: 3899 + components: + - pos: 35.5,-5.5 + parent: 1 + type: Transform + - uid: 3977 + components: + - pos: -36.5,11.5 + parent: 1 + type: Transform + - uid: 3978 + components: + - pos: -35.5,11.5 + parent: 1 + type: Transform + - uid: 3979 + components: + - pos: -36.5,12.5 + parent: 1 + type: Transform + - uid: 4026 + components: + - pos: 65.5,10.5 + parent: 1 + type: Transform + - uid: 4027 + components: + - pos: 65.5,11.5 + parent: 1 + type: Transform + - uid: 4028 + components: + - pos: 67.5,6.5 + parent: 1 + type: Transform + - uid: 4029 + components: + - pos: 66.5,6.5 + parent: 1 + type: Transform + - uid: 4030 + components: + - pos: 63.5,6.5 + parent: 1 + type: Transform + - uid: 4031 + components: + - pos: 62.5,6.5 + parent: 1 + type: Transform + - uid: 4081 + components: + - pos: 66.5,9.5 + parent: 1 + type: Transform + - uid: 4088 + components: + - pos: 72.5,1.5 + parent: 1 + type: Transform + - uid: 4089 + components: + - pos: 73.5,1.5 + parent: 1 + type: Transform + - uid: 4090 + components: + - pos: 74.5,1.5 + parent: 1 + type: Transform + - uid: 4097 + components: + - pos: 75.5,-0.5 + parent: 1 + type: Transform + - uid: 4110 + components: + - pos: 74.5,9.5 + parent: 1 + type: Transform + - uid: 4111 + components: + - pos: 72.5,9.5 + parent: 1 + type: Transform + - uid: 4138 + components: + - pos: 19.5,-26.5 + parent: 1 + type: Transform + - uid: 4141 + components: + - pos: 4.5,-25.5 + parent: 1 + type: Transform + - uid: 4142 + components: + - pos: 4.5,-27.5 + parent: 1 + type: Transform + - uid: 4152 + components: + - pos: 57.5,1.5 + parent: 1 + type: Transform + - uid: 4153 + components: + - pos: 4.5,-26.5 + parent: 1 + type: Transform + - uid: 4154 + components: + - pos: 19.5,-27.5 + parent: 1 + type: Transform + - uid: 4180 + components: + - pos: 63.5,15.5 + parent: 1 + type: Transform + - uid: 4181 + components: + - pos: 67.5,15.5 + parent: 1 + type: Transform + - uid: 4191 + components: + - pos: 78.5,22.5 + parent: 1 + type: Transform + - uid: 4196 + components: + - pos: -33.5,-15.5 + parent: 1 + type: Transform + - uid: 4197 + components: + - pos: 68.5,19.5 + parent: 1 + type: Transform + - uid: 4198 + components: + - pos: 68.5,20.5 + parent: 1 + type: Transform + - uid: 4211 + components: + - pos: 32.5,2.5 + parent: 1 + type: Transform + - uid: 4212 + components: + - pos: 33.5,2.5 + parent: 1 + type: Transform + - uid: 4213 + components: + - pos: 35.5,2.5 + parent: 1 + type: Transform + - uid: 4228 + components: + - pos: 24.5,0.5 + parent: 1 + type: Transform + - uid: 4271 + components: + - pos: 25.5,2.5 + parent: 1 + type: Transform + - uid: 4272 + components: + - pos: 27.5,2.5 + parent: 1 + type: Transform + - uid: 4273 + components: + - pos: 28.5,2.5 + parent: 1 + type: Transform + - uid: 4285 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 4287 + components: + - pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 4288 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 4289 + components: + - pos: 5.5,8.5 + parent: 1 + type: Transform + - uid: 4290 + components: + - pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 4291 + components: + - pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 4292 + components: + - pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 4293 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 4305 + components: + - pos: 14.5,-8.5 + parent: 1 + type: Transform + - uid: 4306 + components: + - pos: 14.5,-7.5 + parent: 1 + type: Transform + - uid: 4307 + components: + - pos: 14.5,-6.5 + parent: 1 + type: Transform + - uid: 4308 + components: + - pos: 14.5,-5.5 + parent: 1 + type: Transform + - uid: 4309 + components: + - pos: 15.5,-5.5 + parent: 1 + type: Transform + - uid: 4310 + components: + - pos: 16.5,-5.5 + parent: 1 + type: Transform + - uid: 4311 + components: + - pos: 17.5,-5.5 + parent: 1 + type: Transform + - uid: 4321 + components: + - pos: 14.5,-11.5 + parent: 1 + type: Transform + - uid: 4322 + components: + - pos: 14.5,-10.5 + parent: 1 + type: Transform + - uid: 4324 + components: + - pos: 20.5,-5.5 + parent: 1 + type: Transform + - uid: 4335 + components: + - pos: -40.5,39.5 + parent: 1 + type: Transform + - uid: 4337 + components: + - pos: -38.5,39.5 + parent: 1 + type: Transform + - uid: 4338 + components: + - pos: -28.5,-37.5 + parent: 1 + type: Transform + - uid: 4339 + components: + - pos: -28.5,-36.5 + parent: 1 + type: Transform + - uid: 4340 + components: + - pos: -27.5,-38.5 + parent: 1 + type: Transform + - uid: 4341 + components: + - pos: -26.5,-38.5 + parent: 1 + type: Transform + - uid: 4342 + components: + - pos: -25.5,-38.5 + parent: 1 + type: Transform + - uid: 4343 + components: + - pos: -24.5,-38.5 + parent: 1 + type: Transform + - uid: 4344 + components: + - pos: -23.5,-38.5 + parent: 1 + type: Transform + - uid: 4345 + components: + - pos: -22.5,-36.5 + parent: 1 + type: Transform + - uid: 4346 + components: + - pos: -22.5,-37.5 + parent: 1 + type: Transform + - uid: 4379 + components: + - pos: 24.5,1.5 + parent: 1 + type: Transform + - uid: 4383 + components: + - pos: 22.5,-5.5 + parent: 1 + type: Transform + - uid: 4384 + components: + - pos: 23.5,-5.5 + parent: 1 + type: Transform + - uid: 4385 + components: + - pos: 24.5,-5.5 + parent: 1 + type: Transform + - uid: 4386 + components: + - pos: 27.5,-5.5 + parent: 1 + type: Transform + - uid: 4387 + components: + - pos: 28.5,-5.5 + parent: 1 + type: Transform + - uid: 4388 + components: + - pos: 29.5,-5.5 + parent: 1 + type: Transform + - uid: 4395 + components: + - pos: 19.5,-25.5 + parent: 1 + type: Transform + - uid: 4399 + components: + - pos: 14.5,-13.5 + parent: 1 + type: Transform + - uid: 4409 + components: + - pos: 40.5,10.5 + parent: 1 + type: Transform + - uid: 4451 + components: + - pos: 21.5,44.5 + parent: 1 + type: Transform + - uid: 4452 + components: + - pos: 21.5,46.5 + parent: 1 + type: Transform + - uid: 4456 + components: + - pos: 16.5,44.5 + parent: 1 + type: Transform + - uid: 4457 + components: + - pos: 16.5,46.5 + parent: 1 + type: Transform + - uid: 4489 + components: + - pos: 11.5,47.5 + parent: 1 + type: Transform + - uid: 4490 + components: + - pos: 13.5,47.5 + parent: 1 + type: Transform + - uid: 4500 + components: + - pos: 8.5,39.5 + parent: 1 + type: Transform + - uid: 4501 + components: + - pos: 9.5,39.5 + parent: 1 + type: Transform + - uid: 4502 + components: + - pos: 10.5,39.5 + parent: 1 + type: Transform + - uid: 4503 + components: + - pos: 15.5,39.5 + parent: 1 + type: Transform + - uid: 4504 + components: + - pos: 14.5,39.5 + parent: 1 + type: Transform + - uid: 4505 + components: + - pos: 13.5,39.5 + parent: 1 + type: Transform + - uid: 4512 + components: + - pos: 16.5,40.5 + parent: 1 + type: Transform + - uid: 4513 + components: + - pos: 16.5,42.5 + parent: 1 + type: Transform + - uid: 4514 + components: + - pos: 88.5,-23.5 + parent: 1 + type: Transform + - uid: 4517 + components: + - pos: -6.5,-12.5 + parent: 1 + type: Transform + - uid: 4526 + components: + - pos: -6.5,49.5 + parent: 1 + type: Transform + - uid: 4527 + components: + - pos: -6.5,50.5 + parent: 1 + type: Transform + - uid: 4528 + components: + - pos: -6.5,51.5 + parent: 1 + type: Transform + - uid: 4529 + components: + - pos: -2.5,49.5 + parent: 1 + type: Transform + - uid: 4530 + components: + - pos: -2.5,50.5 + parent: 1 + type: Transform + - uid: 4531 + components: + - pos: -2.5,51.5 + parent: 1 + type: Transform + - uid: 4532 + components: + - pos: -5.5,52.5 + parent: 1 + type: Transform + - uid: 4533 + components: + - pos: -4.5,52.5 + parent: 1 + type: Transform + - uid: 4534 + components: + - pos: -3.5,52.5 + parent: 1 + type: Transform + - uid: 4537 + components: + - pos: -5.5,48.5 + parent: 1 + type: Transform + - uid: 4539 + components: + - pos: -5.5,44.5 + parent: 1 + type: Transform + - uid: 4540 + components: + - pos: -3.5,48.5 + parent: 1 + type: Transform + - uid: 4554 + components: + - pos: -6.5,45.5 + parent: 1 + type: Transform + - uid: 4555 + components: + - pos: -6.5,46.5 + parent: 1 + type: Transform + - uid: 4556 + components: + - pos: -6.5,47.5 + parent: 1 + type: Transform + - uid: 4562 + components: + - pos: -4.5,44.5 + parent: 1 + type: Transform + - uid: 4563 + components: + - pos: -3.5,44.5 + parent: 1 + type: Transform + - uid: 4564 + components: + - pos: -2.5,45.5 + parent: 1 + type: Transform + - uid: 4565 + components: + - pos: -2.5,47.5 + parent: 1 + type: Transform + - uid: 4589 + components: + - pos: 40.5,9.5 + parent: 1 + type: Transform + - uid: 4593 + components: + - pos: 8.5,47.5 + parent: 1 + type: Transform + - uid: 4634 + components: + - pos: 2.5,46.5 + parent: 1 + type: Transform + - uid: 4640 + components: + - pos: 2.5,43.5 + parent: 1 + type: Transform + - uid: 4652 + components: + - pos: -32.5,-15.5 + parent: 1 + type: Transform + - uid: 4654 + components: + - pos: -34.5,-15.5 + parent: 1 + type: Transform + - uid: 4759 + components: + - pos: 73.5,30.5 + parent: 1 + type: Transform + - uid: 4760 + components: + - pos: 74.5,30.5 + parent: 1 + type: Transform + - uid: 4761 + components: + - pos: 75.5,30.5 + parent: 1 + type: Transform + - uid: 4762 + components: + - pos: 76.5,30.5 + parent: 1 + type: Transform + - uid: 4763 + components: + - pos: 77.5,30.5 + parent: 1 + type: Transform + - uid: 4764 + components: + - pos: 78.5,30.5 + parent: 1 + type: Transform + - uid: 4777 + components: + - pos: 78.5,20.5 + parent: 1 + type: Transform + - uid: 4789 + components: + - pos: 75.5,10.5 + parent: 1 + type: Transform + - uid: 4790 + components: + - pos: 75.5,12.5 + parent: 1 + type: Transform + - uid: 4791 + components: + - pos: 75.5,18.5 + parent: 1 + type: Transform + - uid: 4792 + components: + - pos: 75.5,16.5 + parent: 1 + type: Transform + - uid: 4798 + components: + - pos: -30.5,-25.5 + parent: 1 + type: Transform + - uid: 4816 + components: + - pos: 84.5,13.5 + parent: 1 + type: Transform + - uid: 4818 + components: + - pos: -23.5,-27.5 + parent: 1 + type: Transform + - uid: 4853 + components: + - pos: 82.5,13.5 + parent: 1 + type: Transform + - uid: 4854 + components: + - pos: -22.5,-27.5 + parent: 1 + type: Transform + - uid: 4857 + components: + - pos: -19.5,-27.5 + parent: 1 + type: Transform + - uid: 4863 + components: + - pos: 31.5,55.5 + parent: 1 + type: Transform + - uid: 4867 + components: + - pos: 85.5,22.5 + parent: 1 + type: Transform + - uid: 4870 + components: + - pos: 33.5,55.5 + parent: 1 + type: Transform + - uid: 4932 + components: + - pos: 55.5,1.5 + parent: 1 + type: Transform + - uid: 4999 + components: + - pos: -53.5,-12.5 + parent: 1 + type: Transform + - uid: 5000 + components: + - pos: -53.5,-11.5 + parent: 1 + type: Transform + - uid: 5001 + components: + - pos: -53.5,-10.5 + parent: 1 + type: Transform + - uid: 5002 + components: + - pos: -53.5,-9.5 + parent: 1 + type: Transform + - uid: 5003 + components: + - pos: -53.5,-8.5 + parent: 1 + type: Transform + - uid: 5060 + components: + - pos: -58.5,-25.5 + parent: 1 + type: Transform + - uid: 5062 + components: + - pos: -57.5,-25.5 + parent: 1 + type: Transform + - uid: 5067 + components: + - pos: -41.5,-38.5 + parent: 1 + type: Transform + - uid: 5081 + components: + - pos: -55.5,-25.5 + parent: 1 + type: Transform + - uid: 5173 + components: + - pos: -5.5,10.5 + parent: 1 + type: Transform + - uid: 5175 + components: + - pos: -7.5,6.5 + parent: 1 + type: Transform + - uid: 5235 + components: + - pos: 10.5,-22.5 + parent: 1 + type: Transform + - uid: 5238 + components: + - pos: 13.5,-22.5 + parent: 1 + type: Transform + - uid: 5247 + components: + - pos: 9.5,-43.5 + parent: 1 + type: Transform + - uid: 5285 + components: + - pos: 84.5,26.5 + parent: 1 + type: Transform + - uid: 5286 + components: + - pos: 84.5,27.5 + parent: 1 + type: Transform + - uid: 5339 + components: + - pos: 19.5,56.5 + parent: 1 + type: Transform + - uid: 5340 + components: + - pos: 19.5,57.5 + parent: 1 + type: Transform + - uid: 5341 + components: + - pos: 20.5,57.5 + parent: 1 + type: Transform + - uid: 5342 + components: + - pos: 20.5,58.5 + parent: 1 + type: Transform + - uid: 5343 + components: + - pos: 26.5,56.5 + parent: 1 + type: Transform + - uid: 5344 + components: + - pos: 26.5,57.5 + parent: 1 + type: Transform + - uid: 5351 + components: + - pos: 11.5,55.5 + parent: 1 + type: Transform + - uid: 5352 + components: + - pos: 13.5,55.5 + parent: 1 + type: Transform + - uid: 5359 + components: + - pos: 25.5,57.5 + parent: 1 + type: Transform + - uid: 5360 + components: + - pos: -9.5,55.5 + parent: 1 + type: Transform + - uid: 5361 + components: + - pos: -7.5,57.5 + parent: 1 + type: Transform + - uid: 5362 + components: + - pos: -9.5,57.5 + parent: 1 + type: Transform + - uid: 5581 + components: + - pos: 67.5,-1.5 + parent: 1 + type: Transform + - uid: 5582 + components: + - pos: 64.5,-1.5 + parent: 1 + type: Transform + - uid: 5583 + components: + - pos: 62.5,-1.5 + parent: 1 + type: Transform + - uid: 5585 + components: + - pos: 70.5,-1.5 + parent: 1 + type: Transform + - uid: 5596 + components: + - pos: 64.5,-5.5 + parent: 1 + type: Transform + - uid: 5597 + components: + - pos: 65.5,-5.5 + parent: 1 + type: Transform + - uid: 5598 + components: + - pos: 66.5,-5.5 + parent: 1 + type: Transform + - uid: 5623 + components: + - pos: 71.5,-9.5 + parent: 1 + type: Transform + - uid: 5624 + components: + - pos: 70.5,-9.5 + parent: 1 + type: Transform + - uid: 5625 + components: + - pos: 69.5,-9.5 + parent: 1 + type: Transform + - uid: 5626 + components: + - pos: 68.5,-8.5 + parent: 1 + type: Transform + - uid: 5627 + components: + - pos: 68.5,-6.5 + parent: 1 + type: Transform + - uid: 5653 + components: + - pos: 76.5,-13.5 + parent: 1 + type: Transform + - uid: 5654 + components: + - pos: 74.5,-13.5 + parent: 1 + type: Transform + - uid: 5707 + components: + - pos: 78.5,-4.5 + parent: 1 + type: Transform + - uid: 5753 + components: + - pos: 84.5,-10.5 + parent: 1 + type: Transform + - uid: 5754 + components: + - pos: 86.5,-10.5 + parent: 1 + type: Transform + - uid: 5757 + components: + - pos: 79.5,-12.5 + parent: 1 + type: Transform + - uid: 5758 + components: + - pos: 81.5,-12.5 + parent: 1 + type: Transform + - uid: 5816 + components: + - pos: -52.5,-18.5 + parent: 1 + type: Transform + - uid: 5817 + components: + - pos: -52.5,-17.5 + parent: 1 + type: Transform + - uid: 5818 + components: + - pos: -52.5,-15.5 + parent: 1 + type: Transform + - uid: 5819 + components: + - pos: -52.5,-14.5 + parent: 1 + type: Transform + - uid: 5820 + components: + - pos: -41.5,-26.5 + parent: 1 + type: Transform + - uid: 5854 + components: + - pos: -44.5,-26.5 + parent: 1 + type: Transform + - uid: 5860 + components: + - pos: -50.5,-37.5 + parent: 1 + type: Transform + - uid: 5861 + components: + - pos: -50.5,-43.5 + parent: 1 + type: Transform + - uid: 5862 + components: + - pos: -51.5,-43.5 + parent: 1 + type: Transform + - uid: 5898 + components: + - pos: -48.5,-17.5 + parent: 1 + type: Transform + - uid: 5899 + components: + - pos: -48.5,-15.5 + parent: 1 + type: Transform + - uid: 5900 + components: + - pos: -48.5,-14.5 + parent: 1 + type: Transform + - uid: 5948 + components: + - pos: 84.5,6.5 + parent: 1 + type: Transform + - uid: 5949 + components: + - pos: 85.5,6.5 + parent: 1 + type: Transform + - uid: 5950 + components: + - pos: 86.5,6.5 + parent: 1 + type: Transform + - uid: 5951 + components: + - pos: 87.5,6.5 + parent: 1 + type: Transform + - uid: 5952 + components: + - pos: 88.5,6.5 + parent: 1 + type: Transform + - uid: 5958 + components: + - pos: 84.5,1.5 + parent: 1 + type: Transform + - uid: 5959 + components: + - pos: 85.5,1.5 + parent: 1 + type: Transform + - uid: 5960 + components: + - pos: 86.5,1.5 + parent: 1 + type: Transform + - uid: 5961 + components: + - pos: 87.5,1.5 + parent: 1 + type: Transform + - uid: 5962 + components: + - pos: 88.5,1.5 + parent: 1 + type: Transform + - uid: 6019 + components: + - pos: 111.5,-0.5 + parent: 1 + type: Transform + - uid: 6021 + components: + - pos: 114.5,-0.5 + parent: 1 + type: Transform + - uid: 6023 + components: + - pos: -23.5,-17.5 + parent: 1 + type: Transform + - uid: 6024 + components: + - pos: -25.5,-17.5 + parent: 1 + type: Transform + - uid: 6025 + components: + - pos: -26.5,-17.5 + parent: 1 + type: Transform + - uid: 6026 + components: + - pos: -24.5,-17.5 + parent: 1 + type: Transform + - uid: 6065 + components: + - pos: 116.5,1.5 + parent: 1 + type: Transform + - uid: 6066 + components: + - pos: 116.5,2.5 + parent: 1 + type: Transform + - uid: 6067 + components: + - pos: 116.5,3.5 + parent: 1 + type: Transform + - uid: 6068 + components: + - pos: 116.5,4.5 + parent: 1 + type: Transform + - uid: 6069 + components: + - pos: 116.5,5.5 + parent: 1 + type: Transform + - uid: 6070 + components: + - pos: 116.5,6.5 + parent: 1 + type: Transform + - uid: 6189 + components: + - pos: 93.5,2.5 + parent: 1 + type: Transform + - uid: 6190 + components: + - pos: 93.5,5.5 + parent: 1 + type: Transform + - uid: 6302 + components: + - pos: -44.5,9.5 + parent: 1 + type: Transform + - uid: 6303 + components: + - pos: -44.5,11.5 + parent: 1 + type: Transform + - uid: 6345 + components: + - pos: -49.5,8.5 + parent: 1 + type: Transform + - uid: 6350 + components: + - pos: -54.5,-27.5 + parent: 1 + type: Transform + - uid: 6424 + components: + - pos: -47.5,18.5 + parent: 1 + type: Transform + - uid: 6425 + components: + - pos: -47.5,19.5 + parent: 1 + type: Transform + - uid: 6426 + components: + - pos: -47.5,20.5 + parent: 1 + type: Transform + - uid: 6436 + components: + - pos: -64.5,32.5 + parent: 1 + type: Transform + - uid: 6437 + components: + - pos: -67.5,30.5 + parent: 1 + type: Transform + - uid: 6439 + components: + - pos: -67.5,32.5 + parent: 1 + type: Transform + - uid: 6440 + components: + - pos: -64.5,29.5 + parent: 1 + type: Transform + - uid: 6442 + components: + - pos: -64.5,30.5 + parent: 1 + type: Transform + - uid: 6443 + components: + - pos: -64.5,31.5 + parent: 1 + type: Transform + - uid: 6446 + components: + - pos: -66.5,29.5 + parent: 1 + type: Transform + - uid: 6447 + components: + - pos: -65.5,29.5 + parent: 1 + type: Transform + - uid: 6491 + components: + - pos: -66.5,33.5 + parent: 1 + type: Transform + - uid: 6492 + components: + - pos: -65.5,33.5 + parent: 1 + type: Transform + - uid: 6558 + components: + - pos: -52.5,-3.5 + parent: 1 + type: Transform + - uid: 6559 + components: + - pos: -52.5,-1.5 + parent: 1 + type: Transform + - uid: 6560 + components: + - pos: -52.5,-0.5 + parent: 1 + type: Transform + - uid: 6561 + components: + - pos: -52.5,0.5 + parent: 1 + type: Transform + - uid: 6623 + components: + - pos: -47.5,-12.5 + parent: 1 + type: Transform + - uid: 6624 + components: + - pos: -47.5,-11.5 + parent: 1 + type: Transform + - uid: 6625 + components: + - pos: -47.5,-10.5 + parent: 1 + type: Transform + - uid: 6645 + components: + - pos: 42.5,-37.5 + parent: 1 + type: Transform + - uid: 6680 + components: + - pos: -62.5,-23.5 + parent: 1 + type: Transform + - uid: 6681 + components: + - pos: -62.5,-21.5 + parent: 1 + type: Transform + - uid: 6691 + components: + - pos: -49.5,-36.5 + parent: 1 + type: Transform + - uid: 6722 + components: + - pos: -69.5,5.5 + parent: 1 + type: Transform + - uid: 6723 + components: + - pos: -69.5,6.5 + parent: 1 + type: Transform + - uid: 6724 + components: + - pos: -67.5,10.5 + parent: 1 + type: Transform + - uid: 6725 + components: + - pos: -66.5,10.5 + parent: 1 + type: Transform + - uid: 6726 + components: + - pos: -67.5,-2.5 + parent: 1 + type: Transform + - uid: 6727 + components: + - pos: -66.5,-2.5 + parent: 1 + type: Transform + - uid: 6728 + components: + - pos: -68.5,0.5 + parent: 1 + type: Transform + - uid: 6729 + components: + - pos: -66.5,0.5 + parent: 1 + type: Transform + - uid: 6730 + components: + - pos: -68.5,7.5 + parent: 1 + type: Transform + - uid: 6731 + components: + - pos: -66.5,7.5 + parent: 1 + type: Transform + - uid: 6735 + components: + - pos: -75.5,17.5 + parent: 1 + type: Transform + - uid: 6737 + components: + - pos: -75.5,15.5 + parent: 1 + type: Transform + - uid: 6744 + components: + - pos: 4.5,56.5 + parent: 1 + type: Transform + - uid: 6745 + components: + - pos: -59.5,-12.5 + parent: 1 + type: Transform + - uid: 6749 + components: + - pos: -59.5,-11.5 + parent: 1 + type: Transform + - uid: 6750 + components: + - pos: -59.5,-10.5 + parent: 1 + type: Transform + - uid: 6751 + components: + - pos: -59.5,-8.5 + parent: 1 + type: Transform + - uid: 6760 + components: + - pos: -48.5,-34.5 + parent: 1 + type: Transform + - uid: 6773 + components: + - pos: -62.5,-24.5 + parent: 1 + type: Transform + - uid: 7021 + components: + - pos: 13.5,29.5 + parent: 1 + type: Transform + - uid: 7024 + components: + - pos: 10.5,29.5 + parent: 1 + type: Transform + - uid: 7028 + components: + - pos: -28.5,5.5 + parent: 1 + type: Transform + - uid: 7031 + components: + - pos: -28.5,2.5 + parent: 1 + type: Transform + - uid: 7041 + components: + - pos: 51.5,2.5 + parent: 1 + type: Transform + - uid: 7068 + components: + - pos: -33.5,9.5 + parent: 1 + type: Transform + - uid: 7069 + components: + - pos: -32.5,9.5 + parent: 1 + type: Transform + - uid: 7070 + components: + - pos: -31.5,9.5 + parent: 1 + type: Transform + - uid: 7071 + components: + - pos: -33.5,-1.5 + parent: 1 + type: Transform + - uid: 7072 + components: + - pos: -32.5,-1.5 + parent: 1 + type: Transform + - uid: 7073 + components: + - pos: -31.5,-1.5 + parent: 1 + type: Transform + - uid: 7111 + components: + - pos: -1.5,58.5 + parent: 1 + type: Transform + - uid: 7114 + components: + - pos: -10.5,14.5 + parent: 1 + type: Transform + - uid: 7179 + components: + - pos: 64.5,1.5 + parent: 1 + type: Transform + - uid: 7180 + components: + - pos: 65.5,1.5 + parent: 1 + type: Transform + - uid: 7181 + components: + - pos: 66.5,1.5 + parent: 1 + type: Transform + - uid: 7182 + components: + - pos: 67.5,1.5 + parent: 1 + type: Transform + - uid: 7183 + components: + - pos: 68.5,1.5 + parent: 1 + type: Transform + - uid: 7480 + components: + - pos: -51.5,-37.5 + parent: 1 + type: Transform + - uid: 7579 + components: + - pos: -48.5,-18.5 + parent: 1 + type: Transform + - uid: 7636 + components: + - pos: 87.5,-9.5 + parent: 1 + type: Transform + - uid: 7637 + components: + - pos: 86.5,-7.5 + parent: 1 + type: Transform + - uid: 7638 + components: + - pos: 84.5,-7.5 + parent: 1 + type: Transform + - uid: 7717 + components: + - pos: 85.5,-22.5 + parent: 1 + type: Transform + - uid: 7719 + components: + - pos: 85.5,-23.5 + parent: 1 + type: Transform + - uid: 8469 + components: + - pos: 42.5,-38.5 + parent: 1 + type: Transform + - uid: 8470 + components: + - pos: 42.5,-39.5 + parent: 1 + type: Transform + - uid: 8472 + components: + - pos: 42.5,44.5 + parent: 1 + type: Transform + - uid: 8473 + components: + - pos: 42.5,45.5 + parent: 1 + type: Transform + - uid: 8479 + components: + - pos: 42.5,46.5 + parent: 1 + type: Transform + - uid: 8486 + components: + - pos: -41.5,-32.5 + parent: 1 + type: Transform + - uid: 8871 + components: + - pos: -10.5,6.5 + parent: 1 + type: Transform + - uid: 9093 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 9094 + components: + - pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 9095 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 9096 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 9097 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 9098 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 9099 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 9100 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 9157 + components: + - pos: 0.5,-51.5 + parent: 1 + type: Transform + - uid: 9158 + components: + - pos: 2.5,-51.5 + parent: 1 + type: Transform + - uid: 9159 + components: + - pos: 7.5,-51.5 + parent: 1 + type: Transform + - uid: 9160 + components: + - pos: 9.5,-51.5 + parent: 1 + type: Transform + - uid: 9187 + components: + - pos: 14.5,-50.5 + parent: 1 + type: Transform + - uid: 9188 + components: + - pos: 15.5,-50.5 + parent: 1 + type: Transform + - uid: 9189 + components: + - pos: 21.5,-50.5 + parent: 1 + type: Transform + - uid: 9190 + components: + - pos: 22.5,-50.5 + parent: 1 + type: Transform + - uid: 9191 + components: + - pos: 23.5,-50.5 + parent: 1 + type: Transform + - uid: 9192 + components: + - pos: 29.5,-50.5 + parent: 1 + type: Transform + - uid: 9193 + components: + - pos: 30.5,-50.5 + parent: 1 + type: Transform + - uid: 9194 + components: + - pos: 28.5,-51.5 + parent: 1 + type: Transform + - uid: 9195 + components: + - pos: 28.5,-52.5 + parent: 1 + type: Transform + - uid: 9196 + components: + - pos: 24.5,-52.5 + parent: 1 + type: Transform + - uid: 9197 + components: + - pos: 24.5,-51.5 + parent: 1 + type: Transform + - uid: 9198 + components: + - pos: 20.5,-52.5 + parent: 1 + type: Transform + - uid: 9199 + components: + - pos: 20.5,-51.5 + parent: 1 + type: Transform + - uid: 9200 + components: + - pos: 16.5,-52.5 + parent: 1 + type: Transform + - uid: 9201 + components: + - pos: 16.5,-51.5 + parent: 1 + type: Transform + - uid: 9234 + components: + - pos: 13.5,-45.5 + parent: 1 + type: Transform + - uid: 9235 + components: + - pos: 10.5,-45.5 + parent: 1 + type: Transform + - uid: 9329 + components: + - pos: -49.5,-35.5 + parent: 1 + type: Transform + - uid: 9546 + components: + - pos: -47.5,-34.5 + parent: 1 + type: Transform + - uid: 9550 + components: + - pos: -36.5,-33.5 + parent: 1 + type: Transform + - uid: 9551 + components: + - pos: -36.5,-32.5 + parent: 1 + type: Transform + - uid: 9733 + components: + - pos: 127.5,8.5 + parent: 1 + type: Transform + - uid: 9734 + components: + - pos: 128.5,8.5 + parent: 1 + type: Transform + - uid: 9736 + components: + - pos: 129.5,8.5 + parent: 1 + type: Transform + - uid: 9743 + components: + - pos: 127.5,-0.5 + parent: 1 + type: Transform + - uid: 9744 + components: + - pos: 131.5,3.5 + parent: 1 + type: Transform + - uid: 9745 + components: + - pos: 131.5,2.5 + parent: 1 + type: Transform + - uid: 9746 + components: + - pos: 131.5,1.5 + parent: 1 + type: Transform + - uid: 9747 + components: + - pos: 129.5,-0.5 + parent: 1 + type: Transform + - uid: 9748 + components: + - pos: 128.5,-0.5 + parent: 1 + type: Transform + - uid: 9752 + components: + - pos: 131.5,4.5 + parent: 1 + type: Transform + - uid: 9753 + components: + - pos: 131.5,5.5 + parent: 1 + type: Transform + - uid: 9754 + components: + - pos: 131.5,6.5 + parent: 1 + type: Transform + - uid: 9970 + components: + - pos: -59.5,-9.5 + parent: 1 + type: Transform + - uid: 10286 + components: + - pos: 71.5,32.5 + parent: 1 + type: Transform + - uid: 10287 + components: + - pos: 72.5,32.5 + parent: 1 + type: Transform + - uid: 10288 + components: + - pos: 73.5,32.5 + parent: 1 + type: Transform + - uid: 10289 + components: + - pos: 74.5,32.5 + parent: 1 + type: Transform + - uid: 10290 + components: + - pos: 75.5,32.5 + parent: 1 + type: Transform + - uid: 10291 + components: + - pos: 76.5,32.5 + parent: 1 + type: Transform + - uid: 10292 + components: + - pos: 77.5,32.5 + parent: 1 + type: Transform + - uid: 10293 + components: + - pos: 78.5,32.5 + parent: 1 + type: Transform + - uid: 10294 + components: + - pos: 79.5,32.5 + parent: 1 + type: Transform + - uid: 10295 + components: + - pos: 80.5,32.5 + parent: 1 + type: Transform + - uid: 10620 + components: + - pos: 41.5,49.5 + parent: 1 + type: Transform + - uid: 10623 + components: + - pos: 40.5,51.5 + parent: 1 + type: Transform + - uid: 11094 + components: + - pos: 38.5,52.5 + parent: 1 + type: Transform + - uid: 11160 + components: + - pos: 38.5,54.5 + parent: 1 + type: Transform + - uid: 11233 + components: + - pos: 21.5,13.5 + parent: 1 + type: Transform + - uid: 11234 + components: + - pos: 24.5,13.5 + parent: 1 + type: Transform + - uid: 11235 + components: + - pos: 25.5,13.5 + parent: 1 + type: Transform + - uid: 11279 + components: + - pos: 38.5,53.5 + parent: 1 + type: Transform + - uid: 11280 + components: + - pos: 39.5,51.5 + parent: 1 + type: Transform + - uid: 11324 + components: + - pos: 41.5,50.5 + parent: 1 + type: Transform + - uid: 11332 + components: + - pos: -13.5,55.5 + parent: 1 + type: Transform + - uid: 11361 + components: + - pos: 9.5,-44.5 + parent: 1 + type: Transform + - uid: 11363 + components: + - pos: 3.5,-45.5 + parent: 1 + type: Transform + - uid: 11364 + components: + - pos: 3.5,-40.5 + parent: 1 + type: Transform + - uid: 11372 + components: + - pos: 5.5,-45.5 + parent: 1 + type: Transform + - uid: 11373 + components: + - pos: 6.5,-45.5 + parent: 1 + type: Transform + - uid: 11374 + components: + - pos: 7.5,-45.5 + parent: 1 + type: Transform + - uid: 11511 + components: + - pos: -97.5,20.5 + parent: 1 + type: Transform + - uid: 11532 + components: + - pos: -75.5,16.5 + parent: 1 + type: Transform + - uid: 11584 + components: + - pos: 66.5,-24.5 + parent: 1 + type: Transform + - uid: 11585 + components: + - pos: 66.5,-22.5 + parent: 1 + type: Transform + - uid: 11586 + components: + - pos: 77.5,-24.5 + parent: 1 + type: Transform + - uid: 11587 + components: + - pos: 77.5,-22.5 + parent: 1 + type: Transform + - uid: 11595 + components: + - pos: 65.5,-21.5 + parent: 1 + type: Transform + - uid: 11596 + components: + - pos: 76.5,-21.5 + parent: 1 + type: Transform + - uid: 11615 + components: + - pos: -0.5,58.5 + parent: 1 + type: Transform + - uid: 11616 + components: + - pos: 0.5,58.5 + parent: 1 + type: Transform + - uid: 11617 + components: + - pos: 1.5,58.5 + parent: 1 + type: Transform + - uid: 11618 + components: + - pos: 2.5,58.5 + parent: 1 + type: Transform + - uid: 11623 + components: + - pos: -2.5,57.5 + parent: 1 + type: Transform + - uid: 11627 + components: + - pos: 3.5,58.5 + parent: 1 + type: Transform + - uid: 11628 + components: + - pos: -2.5,56.5 + parent: 1 + type: Transform + - uid: 11629 + components: + - pos: 3.5,57.5 + parent: 1 + type: Transform + - uid: 11630 + components: + - pos: 4.5,57.5 + parent: 1 + type: Transform + - uid: 11632 + components: + - pos: -1.5,57.5 + parent: 1 + type: Transform + - uid: 11633 + components: + - pos: 25.5,58.5 + parent: 1 + type: Transform + - uid: 11634 + components: + - pos: 24.5,58.5 + parent: 1 + type: Transform + - uid: 11635 + components: + - pos: 23.5,58.5 + parent: 1 + type: Transform + - uid: 11636 + components: + - pos: 22.5,58.5 + parent: 1 + type: Transform + - uid: 11637 + components: + - pos: 21.5,58.5 + parent: 1 + type: Transform + - uid: 11650 + components: + - pos: -7.5,55.5 + parent: 1 + type: Transform + - uid: 11657 + components: + - pos: 11.5,58.5 + parent: 1 + type: Transform + - uid: 11658 + components: + - pos: 13.5,58.5 + parent: 1 + type: Transform + - uid: 11679 + components: + - pos: 31.5,57.5 + parent: 1 + type: Transform + - uid: 11684 + components: + - pos: 33.5,57.5 + parent: 1 + type: Transform + - uid: 11916 + components: + - pos: -42.5,43.5 + parent: 1 + type: Transform + - uid: 11917 + components: + - pos: -43.5,43.5 + parent: 1 + type: Transform + - uid: 11920 + components: + - pos: -37.5,40.5 + parent: 1 + type: Transform + - uid: 11921 + components: + - pos: -37.5,41.5 + parent: 1 + type: Transform + - uid: 11922 + components: + - pos: -37.5,42.5 + parent: 1 + type: Transform + - uid: 11923 + components: + - pos: -38.5,43.5 + parent: 1 + type: Transform + - uid: 11924 + components: + - pos: -39.5,43.5 + parent: 1 + type: Transform + - uid: 11925 + components: + - pos: -40.5,43.5 + parent: 1 + type: Transform + - uid: 12061 + components: + - pos: 86.5,-21.5 + parent: 1 + type: Transform + - uid: 12111 + components: + - pos: -75.5,0.5 + parent: 1 + type: Transform + - uid: 12112 + components: + - pos: -75.5,14.5 + parent: 1 + type: Transform + - uid: 12113 + components: + - pos: -75.5,13.5 + parent: 1 + type: Transform + - uid: 12114 + components: + - pos: -75.5,12.5 + parent: 1 + type: Transform + - uid: 12120 + components: + - pos: -72.5,0.5 + parent: 1 + type: Transform + - uid: 12144 + components: + - pos: -76.5,-2.5 + parent: 1 + type: Transform + - uid: 12145 + components: + - pos: -75.5,-2.5 + parent: 1 + type: Transform + - uid: 12146 + components: + - pos: -74.5,-2.5 + parent: 1 + type: Transform + - uid: 12150 + components: + - pos: -76.5,17.5 + parent: 1 + type: Transform + - uid: 12151 + components: + - pos: -77.5,17.5 + parent: 1 + type: Transform + - uid: 12152 + components: + - pos: -77.5,18.5 + parent: 1 + type: Transform + - uid: 12153 + components: + - pos: -78.5,18.5 + parent: 1 + type: Transform + - uid: 12154 + components: + - pos: -78.5,19.5 + parent: 1 + type: Transform + - uid: 12155 + components: + - pos: -79.5,19.5 + parent: 1 + type: Transform + - uid: 12156 + components: + - pos: -79.5,20.5 + parent: 1 + type: Transform + - uid: 12157 + components: + - pos: -79.5,21.5 + parent: 1 + type: Transform + - uid: 12158 + components: + - pos: -80.5,21.5 + parent: 1 + type: Transform + - uid: 12159 + components: + - pos: -81.5,21.5 + parent: 1 + type: Transform + - uid: 12160 + components: + - pos: -82.5,21.5 + parent: 1 + type: Transform + - uid: 12161 + components: + - pos: -83.5,21.5 + parent: 1 + type: Transform + - uid: 12162 + components: + - pos: -84.5,21.5 + parent: 1 + type: Transform + - uid: 12163 + components: + - pos: -85.5,21.5 + parent: 1 + type: Transform + - uid: 12164 + components: + - pos: -86.5,21.5 + parent: 1 + type: Transform + - uid: 12165 + components: + - pos: -87.5,21.5 + parent: 1 + type: Transform + - uid: 12166 + components: + - pos: -88.5,21.5 + parent: 1 + type: Transform + - uid: 12167 + components: + - pos: -89.5,21.5 + parent: 1 + type: Transform + - uid: 12168 + components: + - pos: -90.5,21.5 + parent: 1 + type: Transform + - uid: 12169 + components: + - pos: -91.5,21.5 + parent: 1 + type: Transform + - uid: 12170 + components: + - pos: -92.5,21.5 + parent: 1 + type: Transform + - uid: 12171 + components: + - pos: -93.5,21.5 + parent: 1 + type: Transform + - uid: 12172 + components: + - pos: -94.5,21.5 + parent: 1 + type: Transform + - uid: 12173 + components: + - pos: -95.5,21.5 + parent: 1 + type: Transform + - uid: 12174 + components: + - pos: -96.5,21.5 + parent: 1 + type: Transform + - uid: 12175 + components: + - pos: -97.5,21.5 + parent: 1 + type: Transform + - uid: 12176 + components: + - pos: -97.5,19.5 + parent: 1 + type: Transform + - uid: 12177 + components: + - pos: -98.5,19.5 + parent: 1 + type: Transform + - uid: 12178 + components: + - pos: -98.5,18.5 + parent: 1 + type: Transform + - uid: 12179 + components: + - pos: -99.5,18.5 + parent: 1 + type: Transform + - uid: 12180 + components: + - pos: -99.5,17.5 + parent: 1 + type: Transform + - uid: 12181 + components: + - pos: -100.5,17.5 + parent: 1 + type: Transform + - uid: 12182 + components: + - pos: -97.5,-12.5 + parent: 1 + type: Transform + - uid: 12183 + components: + - pos: -101.5,17.5 + parent: 1 + type: Transform + - uid: 12184 + components: + - pos: -101.5,16.5 + parent: 1 + type: Transform + - uid: 12185 + components: + - pos: -101.5,15.5 + parent: 1 + type: Transform + - uid: 12186 + components: + - pos: -101.5,14.5 + parent: 1 + type: Transform + - uid: 12187 + components: + - pos: -101.5,13.5 + parent: 1 + type: Transform + - uid: 12188 + components: + - pos: -101.5,12.5 + parent: 1 + type: Transform + - uid: 12189 + components: + - pos: -101.5,11.5 + parent: 1 + type: Transform + - uid: 12190 + components: + - pos: -101.5,10.5 + parent: 1 + type: Transform + - uid: 12191 + components: + - pos: -101.5,9.5 + parent: 1 + type: Transform + - uid: 12192 + components: + - pos: -101.5,8.5 + parent: 1 + type: Transform + - uid: 12193 + components: + - pos: -101.5,7.5 + parent: 1 + type: Transform + - uid: 12194 + components: + - pos: -101.5,6.5 + parent: 1 + type: Transform + - uid: 12195 + components: + - pos: -101.5,5.5 + parent: 1 + type: Transform + - uid: 12196 + components: + - pos: -101.5,4.5 + parent: 1 + type: Transform + - uid: 12197 + components: + - pos: -101.5,3.5 + parent: 1 + type: Transform + - uid: 12198 + components: + - pos: -101.5,2.5 + parent: 1 + type: Transform + - uid: 12199 + components: + - pos: -101.5,1.5 + parent: 1 + type: Transform + - uid: 12200 + components: + - pos: -101.5,0.5 + parent: 1 + type: Transform + - uid: 12201 + components: + - pos: -101.5,-0.5 + parent: 1 + type: Transform + - uid: 12202 + components: + - pos: -101.5,-1.5 + parent: 1 + type: Transform + - uid: 12203 + components: + - pos: -101.5,-2.5 + parent: 1 + type: Transform + - uid: 12204 + components: + - pos: -101.5,-3.5 + parent: 1 + type: Transform + - uid: 12205 + components: + - pos: -101.5,-4.5 + parent: 1 + type: Transform + - uid: 12206 + components: + - pos: -101.5,-5.5 + parent: 1 + type: Transform + - uid: 12207 + components: + - pos: -101.5,-6.5 + parent: 1 + type: Transform + - uid: 12208 + components: + - pos: -101.5,-7.5 + parent: 1 + type: Transform + - uid: 12209 + components: + - pos: -101.5,-8.5 + parent: 1 + type: Transform + - uid: 12210 + components: + - pos: -100.5,-8.5 + parent: 1 + type: Transform + - uid: 12211 + components: + - pos: -99.5,-8.5 + parent: 1 + type: Transform + - uid: 12212 + components: + - pos: -99.5,-9.5 + parent: 1 + type: Transform + - uid: 12213 + components: + - pos: -98.5,-9.5 + parent: 1 + type: Transform + - uid: 12214 + components: + - pos: -98.5,-10.5 + parent: 1 + type: Transform + - uid: 12215 + components: + - pos: -97.5,-10.5 + parent: 1 + type: Transform + - uid: 12216 + components: + - pos: -97.5,-11.5 + parent: 1 + type: Transform + - uid: 12217 + components: + - pos: -96.5,-12.5 + parent: 1 + type: Transform + - uid: 12218 + components: + - pos: -95.5,-12.5 + parent: 1 + type: Transform + - uid: 12219 + components: + - pos: -94.5,-12.5 + parent: 1 + type: Transform + - uid: 12220 + components: + - pos: -93.5,-12.5 + parent: 1 + type: Transform + - uid: 12221 + components: + - pos: -92.5,-12.5 + parent: 1 + type: Transform + - uid: 12222 + components: + - pos: -91.5,-12.5 + parent: 1 + type: Transform + - uid: 12223 + components: + - pos: -90.5,-12.5 + parent: 1 + type: Transform + - uid: 12224 + components: + - pos: -89.5,-12.5 + parent: 1 + type: Transform + - uid: 12225 + components: + - pos: -88.5,-12.5 + parent: 1 + type: Transform + - uid: 12226 + components: + - pos: -87.5,-12.5 + parent: 1 + type: Transform + - uid: 12227 + components: + - pos: -86.5,-12.5 + parent: 1 + type: Transform + - uid: 12228 + components: + - pos: -85.5,-12.5 + parent: 1 + type: Transform + - uid: 12229 + components: + - pos: -84.5,-12.5 + parent: 1 + type: Transform + - uid: 12230 + components: + - pos: -83.5,-12.5 + parent: 1 + type: Transform + - uid: 12231 + components: + - pos: -82.5,-12.5 + parent: 1 + type: Transform + - uid: 12232 + components: + - pos: -81.5,-12.5 + parent: 1 + type: Transform + - uid: 12233 + components: + - pos: -80.5,-12.5 + parent: 1 + type: Transform + - uid: 12234 + components: + - pos: -79.5,-12.5 + parent: 1 + type: Transform + - uid: 12235 + components: + - pos: -79.5,-11.5 + parent: 1 + type: Transform + - uid: 12236 + components: + - pos: -79.5,-10.5 + parent: 1 + type: Transform + - uid: 12237 + components: + - pos: -78.5,-10.5 + parent: 1 + type: Transform + - uid: 12238 + components: + - pos: -78.5,-9.5 + parent: 1 + type: Transform + - uid: 12239 + components: + - pos: -77.5,-9.5 + parent: 1 + type: Transform + - uid: 12240 + components: + - pos: -77.5,-8.5 + parent: 1 + type: Transform + - uid: 12264 + components: + - pos: -18.5,-27.5 + parent: 1 + type: Transform + - uid: 12332 + components: + - pos: -12.5,55.5 + parent: 1 + type: Transform + - uid: 12333 + components: + - pos: -14.5,55.5 + parent: 1 + type: Transform + - uid: 12441 + components: + - pos: 23.5,13.5 + parent: 1 + type: Transform + - uid: 12442 + components: + - pos: 22.5,13.5 + parent: 1 + type: Transform + - uid: 12533 + components: + - pos: 90.5,27.5 + parent: 1 + type: Transform + - uid: 12534 + components: + - pos: 92.5,24.5 + parent: 1 + type: Transform + - uid: 12747 + components: + - pos: 90.5,28.5 + parent: 1 + type: Transform + - uid: 12752 + components: + - pos: 88.5,-4.5 + parent: 1 + type: Transform + - uid: 12753 + components: + - pos: 93.5,-6.5 + parent: 1 + type: Transform + - uid: 13127 + components: + - pos: 93.5,-7.5 + parent: 1 + type: Transform + - uid: 13188 + components: + - pos: 61.5,26.5 + parent: 1 + type: Transform + - uid: 13189 + components: + - pos: 61.5,25.5 + parent: 1 + type: Transform + - uid: 13190 + components: + - pos: 61.5,24.5 + parent: 1 + type: Transform + - uid: 13191 + components: + - pos: 61.5,28.5 + parent: 1 + type: Transform + - uid: 13238 + components: + - pos: -76.5,-8.5 + parent: 1 + type: Transform + - uid: 13541 + components: + - pos: -75.5,-8.5 + parent: 1 + type: Transform + - uid: 13542 + components: + - pos: -75.5,-7.5 + parent: 1 + type: Transform + - uid: 13543 + components: + - pos: -75.5,-6.5 + parent: 1 + type: Transform + - uid: 13544 + components: + - pos: -75.5,-5.5 + parent: 1 + type: Transform + - uid: 13545 + components: + - pos: -75.5,-4.5 + parent: 1 + type: Transform + - uid: 13546 + components: + - pos: -75.5,-3.5 + parent: 1 + type: Transform + - uid: 13547 + components: + - pos: -63.5,-12.5 + parent: 1 + type: Transform + - uid: 13548 + components: + - pos: -71.5,0.5 + parent: 1 + type: Transform + - uid: 14042 + components: + - pos: -73.5,-0.5 + parent: 1 + type: Transform + - uid: 14253 + components: + - pos: 96.5,10.5 + parent: 1 + type: Transform + - uid: 14570 + components: + - pos: 109.5,13.5 + parent: 1 + type: Transform + - uid: 14573 + components: + - pos: 113.5,11.5 + parent: 1 + type: Transform + - uid: 14574 + components: + - pos: 115.5,10.5 + parent: 1 + type: Transform + - uid: 14575 + components: + - pos: 115.5,8.5 + parent: 1 + type: Transform + - uid: 14576 + components: + - pos: 114.5,11.5 + parent: 1 + type: Transform + - uid: 14590 + components: + - pos: 112.5,11.5 + parent: 1 + type: Transform + - uid: 15672 + components: + - pos: 115.5,9.5 + parent: 1 + type: Transform + - uid: 15867 + components: + - pos: -25.5,48.5 + parent: 1 + type: Transform + - uid: 15872 + components: + - pos: -28.5,44.5 + parent: 1 + type: Transform + - uid: 15873 + components: + - pos: -28.5,45.5 + parent: 1 + type: Transform + - uid: 15874 + components: + - pos: -28.5,46.5 + parent: 1 + type: Transform + - uid: 15875 + components: + - pos: -24.5,48.5 + parent: 1 + type: Transform + - uid: 15876 + components: + - pos: -26.5,48.5 + parent: 1 + type: Transform + - uid: 15877 + components: + - pos: -23.5,48.5 + parent: 1 + type: Transform + - uid: 15878 + components: + - pos: -22.5,48.5 + parent: 1 + type: Transform + - uid: 15879 + components: + - pos: -21.5,48.5 + parent: 1 + type: Transform + - uid: 15880 + components: + - pos: -20.5,47.5 + parent: 1 + type: Transform + - uid: 15881 + components: + - pos: -20.5,46.5 + parent: 1 + type: Transform + - uid: 15882 + components: + - pos: -20.5,45.5 + parent: 1 + type: Transform + - uid: 16021 + components: + - pos: -77.5,6.5 + parent: 1 + type: Transform + - uid: 16025 + components: + - pos: -77.5,5.5 + parent: 1 + type: Transform + - uid: 16028 + components: + - pos: -77.5,4.5 + parent: 1 + type: Transform + - uid: 16128 + components: + - pos: 52.5,-29.5 + parent: 1 + type: Transform + - uid: 16131 + components: + - pos: 52.5,-30.5 + parent: 1 + type: Transform + - uid: 16148 + components: + - pos: 47.5,-32.5 + parent: 1 + type: Transform + - uid: 16149 + components: + - pos: 48.5,-32.5 + parent: 1 + type: Transform + - uid: 16150 + components: + - pos: 49.5,-32.5 + parent: 1 + type: Transform + - uid: 16151 + components: + - pos: 50.5,-32.5 + parent: 1 + type: Transform + - uid: 16166 + components: + - pos: 53.5,-31.5 + parent: 1 + type: Transform + - uid: 16168 + components: + - pos: 54.5,-31.5 + parent: 1 + type: Transform + - uid: 16181 + components: + - pos: -77.5,3.5 + parent: 1 + type: Transform + - uid: 16193 + components: + - pos: 66.5,-29.5 + parent: 1 + type: Transform + - uid: 16194 + components: + - pos: 66.5,-28.5 + parent: 1 + type: Transform + - uid: 16195 + components: + - pos: 65.5,-32.5 + parent: 1 + type: Transform + - uid: 16196 + components: + - pos: 62.5,-32.5 + parent: 1 + type: Transform + - uid: 16197 + components: + - pos: 61.5,-31.5 + parent: 1 + type: Transform + - uid: 16198 + components: + - pos: 60.5,-31.5 + parent: 1 + type: Transform + - uid: 16199 + components: + - pos: 59.5,-31.5 + parent: 1 + type: Transform + - uid: 16200 + components: + - pos: 55.5,-32.5 + parent: 1 + type: Transform + - uid: 16201 + components: + - pos: 58.5,-32.5 + parent: 1 + type: Transform + - uid: 16427 + components: + - pos: 58.5,34.5 + parent: 1 + type: Transform + - uid: 16428 + components: + - pos: 59.5,34.5 + parent: 1 + type: Transform + - uid: 16429 + components: + - pos: 60.5,35.5 + parent: 1 + type: Transform + - uid: 16430 + components: + - pos: 60.5,36.5 + parent: 1 + type: Transform + - uid: 16431 + components: + - pos: 60.5,40.5 + parent: 1 + type: Transform + - uid: 16434 + components: + - pos: 60.5,38.5 + parent: 1 + type: Transform + - uid: 16442 + components: + - pos: 60.5,37.5 + parent: 1 + type: Transform + - uid: 16465 + components: + - pos: 59.5,44.5 + parent: 1 + type: Transform + - uid: 16466 + components: + - pos: 58.5,44.5 + parent: 1 + type: Transform + - uid: 16467 + components: + - pos: 57.5,44.5 + parent: 1 + type: Transform + - uid: 16468 + components: + - pos: 57.5,34.5 + parent: 1 + type: Transform + - uid: 16469 + components: + - pos: 60.5,41.5 + parent: 1 + type: Transform + - uid: 16470 + components: + - pos: 60.5,42.5 + parent: 1 + type: Transform + - uid: 16471 + components: + - pos: 60.5,43.5 + parent: 1 + type: Transform + - uid: 16512 + components: + - pos: 55.5,38.5 + parent: 1 + type: Transform + - uid: 16513 + components: + - pos: 55.5,40.5 + parent: 1 + type: Transform + - uid: 16641 + components: + - pos: -77.5,2.5 + parent: 1 + type: Transform + - uid: 17033 + components: + - pos: -63.5,-11.5 + parent: 1 + type: Transform + - uid: 17034 + components: + - pos: -63.5,-10.5 + parent: 1 + type: Transform + - uid: 17124 + components: + - pos: -63.5,-9.5 + parent: 1 + type: Transform + - uid: 17125 + components: + - pos: -63.5,-8.5 + parent: 1 + type: Transform + - uid: 17164 + components: + - pos: 76.5,6.5 + parent: 1 + type: Transform + - uid: 20954 + components: + - pos: -41.5,-33.5 + parent: 1 + type: Transform + - uid: 20962 + components: + - pos: -46.5,-33.5 + parent: 1 + type: Transform + - uid: 21029 + components: + - pos: -46.5,-32.5 + parent: 1 + type: Transform + - uid: 22722 + components: + - pos: -18.5,50.5 + parent: 1 + type: Transform + - uid: 22723 + components: + - pos: -18.5,51.5 + parent: 1 + type: Transform + - uid: 22724 + components: + - pos: -18.5,52.5 + parent: 1 + type: Transform + - uid: 22797 + components: + - pos: -34.5,11.5 + parent: 1 + type: Transform + - uid: 22843 + components: + - pos: -56.5,-31.5 + parent: 1 + type: Transform + - uid: 22851 + components: + - pos: -61.5,-29.5 + parent: 1 + type: Transform + - uid: 22852 + components: + - pos: -61.5,-28.5 + parent: 1 + type: Transform + - uid: 22853 + components: + - pos: -61.5,-27.5 + parent: 1 + type: Transform + - uid: 22950 + components: + - pos: 132.5,32.5 + parent: 1 + type: Transform + - uid: 22951 + components: + - pos: 131.5,33.5 + parent: 1 + type: Transform + - uid: 22953 + components: + - pos: 128.5,33.5 + parent: 1 + type: Transform + - uid: 22954 + components: + - pos: 127.5,33.5 + parent: 1 + type: Transform + - uid: 22955 + components: + - pos: 126.5,33.5 + parent: 1 + type: Transform + - uid: 22956 + components: + - pos: 124.5,33.5 + parent: 1 + type: Transform + - uid: 22957 + components: + - pos: 123.5,33.5 + parent: 1 + type: Transform + - uid: 22959 + components: + - pos: 120.5,33.5 + parent: 1 + type: Transform + - uid: 22960 + components: + - pos: 119.5,33.5 + parent: 1 + type: Transform + - uid: 22961 + components: + - pos: 118.5,33.5 + parent: 1 + type: Transform + - uid: 22962 + components: + - pos: 116.5,33.5 + parent: 1 + type: Transform + - uid: 22964 + components: + - pos: 114.5,33.5 + parent: 1 + type: Transform + - uid: 22965 + components: + - pos: 112.5,33.5 + parent: 1 + type: Transform + - uid: 22966 + components: + - pos: 111.5,33.5 + parent: 1 + type: Transform + - uid: 22967 + components: + - pos: 110.5,33.5 + parent: 1 + type: Transform + - uid: 22968 + components: + - pos: 108.5,33.5 + parent: 1 + type: Transform + - uid: 22969 + components: + - pos: 107.5,33.5 + parent: 1 + type: Transform + - uid: 22970 + components: + - pos: 106.5,33.5 + parent: 1 + type: Transform + - uid: 22971 + components: + - pos: 104.5,33.5 + parent: 1 + type: Transform + - uid: 22973 + components: + - pos: 102.5,33.5 + parent: 1 + type: Transform + - uid: 22975 + components: + - pos: 99.5,33.5 + parent: 1 + type: Transform + - uid: 22977 + components: + - pos: 96.5,33.5 + parent: 1 + type: Transform + - uid: 22978 + components: + - pos: 95.5,33.5 + parent: 1 + type: Transform + - uid: 22979 + components: + - pos: 94.5,33.5 + parent: 1 + type: Transform + - uid: 22980 + components: + - pos: 92.5,33.5 + parent: 1 + type: Transform + - uid: 22981 + components: + - pos: 91.5,33.5 + parent: 1 + type: Transform + - uid: 22982 + components: + - pos: 90.5,33.5 + parent: 1 + type: Transform + - uid: 22983 + components: + - pos: 89.5,32.5 + parent: 1 + type: Transform + - uid: 22985 + components: + - pos: 132.5,15.5 + parent: 1 + type: Transform + - uid: 22989 + components: + - pos: 132.5,17.5 + parent: 1 + type: Transform + - uid: 22990 + components: + - pos: 132.5,18.5 + parent: 1 + type: Transform + - uid: 22991 + components: + - pos: 132.5,19.5 + parent: 1 + type: Transform + - uid: 22993 + components: + - pos: 132.5,22.5 + parent: 1 + type: Transform + - uid: 22994 + components: + - pos: 132.5,23.5 + parent: 1 + type: Transform + - uid: 22997 + components: + - pos: 132.5,27.5 + parent: 1 + type: Transform + - uid: 23010 + components: + - pos: 40.5,55.5 + parent: 1 + type: Transform + - uid: 23011 + components: + - pos: 42.5,55.5 + parent: 1 + type: Transform + - uid: 23012 + components: + - pos: 43.5,55.5 + parent: 1 + type: Transform + - uid: 23014 + components: + - pos: 46.5,55.5 + parent: 1 + type: Transform + - uid: 23015 + components: + - pos: 47.5,55.5 + parent: 1 + type: Transform + - uid: 23016 + components: + - pos: 49.5,55.5 + parent: 1 + type: Transform + - uid: 23017 + components: + - pos: 50.5,55.5 + parent: 1 + type: Transform + - uid: 23019 + components: + - pos: 52.5,54.5 + parent: 1 + type: Transform + - uid: 23020 + components: + - pos: 53.5,54.5 + parent: 1 + type: Transform + - uid: 23021 + components: + - pos: 53.5,53.5 + parent: 1 + type: Transform + - uid: 23022 + components: + - pos: 54.5,53.5 + parent: 1 + type: Transform + - uid: 23023 + components: + - pos: 55.5,51.5 + parent: 1 + type: Transform + - uid: 23025 + components: + - pos: 56.5,50.5 + parent: 1 + type: Transform + - uid: 23026 + components: + - pos: 57.5,50.5 + parent: 1 + type: Transform + - uid: 23027 + components: + - pos: 57.5,49.5 + parent: 1 + type: Transform + - uid: 23028 + components: + - pos: 58.5,49.5 + parent: 1 + type: Transform + - uid: 23029 + components: + - pos: 58.5,48.5 + parent: 1 + type: Transform + - uid: 23030 + components: + - pos: 59.5,48.5 + parent: 1 + type: Transform + - uid: 23031 + components: + - pos: 59.5,47.5 + parent: 1 + type: Transform + - uid: 23032 + components: + - pos: 61.5,46.5 + parent: 1 + type: Transform + - uid: 23033 + components: + - pos: 62.5,45.5 + parent: 1 + type: Transform + - uid: 23034 + components: + - pos: 63.5,43.5 + parent: 1 + type: Transform + - uid: 23037 + components: + - pos: 65.5,42.5 + parent: 1 + type: Transform + - uid: 23038 + components: + - pos: 65.5,41.5 + parent: 1 + type: Transform + - uid: 23039 + components: + - pos: 66.5,41.5 + parent: 1 + type: Transform + - uid: 23040 + components: + - pos: 66.5,40.5 + parent: 1 + type: Transform + - uid: 23041 + components: + - pos: 67.5,40.5 + parent: 1 + type: Transform + - uid: 23042 + components: + - pos: 67.5,39.5 + parent: 1 + type: Transform + - uid: 23045 + components: + - pos: 69.5,38.5 + parent: 1 + type: Transform + - uid: 23046 + components: + - pos: 69.5,37.5 + parent: 1 + type: Transform + - uid: 23047 + components: + - pos: 81.5,36.5 + parent: 1 + type: Transform + - uid: 23048 + components: + - pos: 71.5,37.5 + parent: 1 + type: Transform + - uid: 23049 + components: + - pos: 72.5,37.5 + parent: 1 + type: Transform + - uid: 23050 + components: + - pos: 73.5,37.5 + parent: 1 + type: Transform + - uid: 23051 + components: + - pos: 74.5,37.5 + parent: 1 + type: Transform + - uid: 23052 + components: + - pos: 76.5,37.5 + parent: 1 + type: Transform + - uid: 23053 + components: + - pos: 77.5,37.5 + parent: 1 + type: Transform + - uid: 23055 + components: + - pos: 79.5,37.5 + parent: 1 + type: Transform + - uid: 23056 + components: + - pos: 80.5,37.5 + parent: 1 + type: Transform + - uid: 23059 + components: + - pos: 83.5,35.5 + parent: 1 + type: Transform + - uid: 23060 + components: + - pos: 83.5,34.5 + parent: 1 + type: Transform + - uid: 23061 + components: + - pos: 84.5,34.5 + parent: 1 + type: Transform + - uid: 23062 + components: + - pos: 84.5,33.5 + parent: 1 + type: Transform + - uid: 23063 + components: + - pos: 85.5,33.5 + parent: 1 + type: Transform + - uid: 23065 + components: + - pos: 86.5,32.5 + parent: 1 + type: Transform + - uid: 23068 + components: + - pos: -36.5,48.5 + parent: 1 + type: Transform + - uid: 23080 + components: + - pos: -44.5,69.5 + parent: 1 + type: Transform + - uid: 23098 + components: + - pos: -21.5,54.5 + parent: 1 + type: Transform + - uid: 23100 + components: + - pos: -23.5,54.5 + parent: 1 + type: Transform + - uid: 23101 + components: + - pos: -24.5,53.5 + parent: 1 + type: Transform + - uid: 23102 + components: + - pos: -25.5,53.5 + parent: 1 + type: Transform + - uid: 23105 + components: + - pos: -26.5,51.5 + parent: 1 + type: Transform + - uid: 23106 + components: + - pos: -28.5,51.5 + parent: 1 + type: Transform + - uid: 23107 + components: + - pos: -28.5,50.5 + parent: 1 + type: Transform + - uid: 23108 + components: + - pos: -29.5,50.5 + parent: 1 + type: Transform + - uid: 23109 + components: + - pos: -29.5,49.5 + parent: 1 + type: Transform + - uid: 23110 + components: + - pos: -30.5,49.5 + parent: 1 + type: Transform + - uid: 23111 + components: + - pos: -30.5,48.5 + parent: 1 + type: Transform + - uid: 23112 + components: + - pos: -36.5,52.5 + parent: 1 + type: Transform + - uid: 23114 + components: + - pos: -36.5,49.5 + parent: 1 + type: Transform + - uid: 23115 + components: + - pos: -36.5,50.5 + parent: 1 + type: Transform + - uid: 23116 + components: + - pos: -36.5,53.5 + parent: 1 + type: Transform + - uid: 23118 + components: + - pos: -36.5,56.5 + parent: 1 + type: Transform + - uid: 23119 + components: + - pos: -36.5,57.5 + parent: 1 + type: Transform + - uid: 23120 + components: + - pos: -36.5,58.5 + parent: 1 + type: Transform + - uid: 23121 + components: + - pos: -36.5,64.5 + parent: 1 + type: Transform + - uid: 23122 + components: + - pos: -36.5,60.5 + parent: 1 + type: Transform + - uid: 23123 + components: + - pos: -36.5,61.5 + parent: 1 + type: Transform + - uid: 23124 + components: + - pos: -36.5,62.5 + parent: 1 + type: Transform + - uid: 23125 + components: + - pos: -36.5,65.5 + parent: 1 + type: Transform + - uid: 23126 + components: + - pos: -36.5,66.5 + parent: 1 + type: Transform + - uid: 23127 + components: + - pos: -37.5,69.5 + parent: 1 + type: Transform + - uid: 23128 + components: + - pos: -38.5,69.5 + parent: 1 + type: Transform + - uid: 23130 + components: + - pos: -41.5,69.5 + parent: 1 + type: Transform + - uid: 23131 + components: + - pos: -42.5,69.5 + parent: 1 + type: Transform + - uid: 23132 + components: + - pos: -43.5,69.5 + parent: 1 + type: Transform + - uid: 23133 + components: + - pos: -46.5,69.5 + parent: 1 + type: Transform + - uid: 23134 + components: + - pos: -47.5,69.5 + parent: 1 + type: Transform + - uid: 23135 + components: + - pos: -48.5,69.5 + parent: 1 + type: Transform + - uid: 23136 + components: + - pos: -49.5,69.5 + parent: 1 + type: Transform + - uid: 23137 + components: + - pos: -51.5,69.5 + parent: 1 + type: Transform + - uid: 23139 + components: + - pos: -53.5,69.5 + parent: 1 + type: Transform + - uid: 23140 + components: + - pos: -54.5,66.5 + parent: 1 + type: Transform + - uid: 23141 + components: + - pos: -54.5,65.5 + parent: 1 + type: Transform + - uid: 23142 + components: + - pos: -54.5,64.5 + parent: 1 + type: Transform + - uid: 23143 + components: + - pos: -54.5,62.5 + parent: 1 + type: Transform + - uid: 23144 + components: + - pos: -54.5,61.5 + parent: 1 + type: Transform + - uid: 23145 + components: + - pos: -54.5,60.5 + parent: 1 + type: Transform + - uid: 23146 + components: + - pos: -54.5,58.5 + parent: 1 + type: Transform + - uid: 23147 + components: + - pos: -54.5,57.5 + parent: 1 + type: Transform + - uid: 23148 + components: + - pos: -54.5,56.5 + parent: 1 + type: Transform + - uid: 23149 + components: + - pos: -54.5,54.5 + parent: 1 + type: Transform + - uid: 23150 + components: + - pos: -54.5,53.5 + parent: 1 + type: Transform + - uid: 23154 + components: + - pos: -54.5,48.5 + parent: 1 + type: Transform + - uid: 23155 + components: + - pos: -55.5,47.5 + parent: 1 + type: Transform + - uid: 23156 + components: + - pos: -56.5,46.5 + parent: 1 + type: Transform + - uid: 23157 + components: + - pos: -57.5,46.5 + parent: 1 + type: Transform + - uid: 23158 + components: + - pos: -57.5,45.5 + parent: 1 + type: Transform + - uid: 23159 + components: + - pos: -58.5,45.5 + parent: 1 + type: Transform + - uid: 23160 + components: + - pos: -58.5,44.5 + parent: 1 + type: Transform + - uid: 23162 + components: + - pos: -59.5,43.5 + parent: 1 + type: Transform + - uid: 23163 + components: + - pos: -60.5,42.5 + parent: 1 + type: Transform + - uid: 23165 + components: + - pos: -61.5,41.5 + parent: 1 + type: Transform + - uid: 23166 + components: + - pos: -62.5,41.5 + parent: 1 + type: Transform + - uid: 23167 + components: + - pos: -62.5,40.5 + parent: 1 + type: Transform + - uid: 23168 + components: + - pos: -72.5,42.5 + parent: 1 + type: Transform + - uid: 23169 + components: + - pos: -73.5,41.5 + parent: 1 + type: Transform + - uid: 23170 + components: + - pos: -73.5,40.5 + parent: 1 + type: Transform + - uid: 23172 + components: + - pos: -73.5,37.5 + parent: 1 + type: Transform + - uid: 23173 + components: + - pos: -73.5,36.5 + parent: 1 + type: Transform + - uid: 23174 + components: + - pos: -73.5,34.5 + parent: 1 + type: Transform + - uid: 23175 + components: + - pos: -73.5,33.5 + parent: 1 + type: Transform + - uid: 23176 + components: + - pos: -73.5,31.5 + parent: 1 + type: Transform + - uid: 23177 + components: + - pos: -73.5,30.5 + parent: 1 + type: Transform + - uid: 23178 + components: + - pos: -73.5,28.5 + parent: 1 + type: Transform + - uid: 23181 + components: + - pos: -73.5,24.5 + parent: 1 + type: Transform + - uid: 23182 + components: + - pos: -73.5,23.5 + parent: 1 + type: Transform + - uid: 23183 + components: + - pos: -72.5,22.5 + parent: 1 + type: Transform + - uid: 23267 + components: + - pos: -24.5,-52.5 + parent: 1 + type: Transform + - uid: 23268 + components: + - pos: -23.5,-52.5 + parent: 1 + type: Transform + - uid: 23269 + components: + - pos: -22.5,-52.5 + parent: 1 + type: Transform + - uid: 23270 + components: + - pos: -21.5,-52.5 + parent: 1 + type: Transform + - uid: 23271 + components: + - pos: -19.5,-52.5 + parent: 1 + type: Transform + - uid: 23272 + components: + - pos: -18.5,-52.5 + parent: 1 + type: Transform + - uid: 23273 + components: + - pos: -16.5,-52.5 + parent: 1 + type: Transform + - uid: 23274 + components: + - pos: -15.5,-52.5 + parent: 1 + type: Transform + - uid: 23276 + components: + - pos: -12.5,-52.5 + parent: 1 + type: Transform + - uid: 23277 + components: + - pos: -11.5,-52.5 + parent: 1 + type: Transform + - uid: 23278 + components: + - pos: -10.5,-52.5 + parent: 1 + type: Transform + - uid: 23283 + components: + - pos: 30.5,-53.5 + parent: 1 + type: Transform + - uid: 23284 + components: + - pos: 31.5,-53.5 + parent: 1 + type: Transform + - uid: 23285 + components: + - pos: 32.5,-53.5 + parent: 1 + type: Transform + - uid: 23286 + components: + - pos: 34.5,-53.5 + parent: 1 + type: Transform + - uid: 23287 + components: + - pos: 35.5,-53.5 + parent: 1 + type: Transform + - uid: 23289 + components: + - pos: 38.5,-53.5 + parent: 1 + type: Transform + - uid: 23290 + components: + - pos: 39.5,-53.5 + parent: 1 + type: Transform + - uid: 23291 + components: + - pos: 40.5,-53.5 + parent: 1 + type: Transform + - uid: 23292 + components: + - pos: 41.5,-52.5 + parent: 1 + type: Transform + - uid: 23311 + components: + - pos: 133.5,-8.5 + parent: 1 + type: Transform + - uid: 23313 + components: + - pos: 133.5,-9.5 + parent: 1 + type: Transform + - uid: 23314 + components: + - pos: 133.5,-10.5 + parent: 1 + type: Transform + - uid: 23316 + components: + - pos: 133.5,-13.5 + parent: 1 + type: Transform + - uid: 23317 + components: + - pos: 133.5,-15.5 + parent: 1 + type: Transform + - uid: 23318 + components: + - pos: 133.5,-16.5 + parent: 1 + type: Transform + - uid: 23319 + components: + - pos: 133.5,-18.5 + parent: 1 + type: Transform + - uid: 23320 + components: + - pos: 133.5,-19.5 + parent: 1 + type: Transform + - uid: 23321 + components: + - pos: 133.5,-20.5 + parent: 1 + type: Transform + - uid: 23322 + components: + - pos: 124.5,-24.5 + parent: 1 + type: Transform + - uid: 23323 + components: + - pos: 133.5,-23.5 + parent: 1 + type: Transform + - uid: 23324 + components: + - pos: 132.5,-24.5 + parent: 1 + type: Transform + - uid: 23325 + components: + - pos: 131.5,-24.5 + parent: 1 + type: Transform + - uid: 23326 + components: + - pos: 130.5,-24.5 + parent: 1 + type: Transform + - uid: 23328 + components: + - pos: 127.5,-24.5 + parent: 1 + type: Transform + - uid: 23329 + components: + - pos: 126.5,-24.5 + parent: 1 + type: Transform + - uid: 23330 + components: + - pos: 123.5,-24.5 + parent: 1 + type: Transform + - uid: 23331 + components: + - pos: 122.5,-24.5 + parent: 1 + type: Transform + - uid: 23333 + components: + - pos: 120.5,-24.5 + parent: 1 + type: Transform + - uid: 23334 + components: + - pos: 119.5,-24.5 + parent: 1 + type: Transform + - uid: 23335 + components: + - pos: 118.5,-24.5 + parent: 1 + type: Transform + - uid: 23337 + components: + - pos: 114.5,-24.5 + parent: 1 + type: Transform + - uid: 23338 + components: + - pos: 112.5,-24.5 + parent: 1 + type: Transform + - uid: 23339 + components: + - pos: 111.5,-24.5 + parent: 1 + type: Transform + - uid: 23340 + components: + - pos: 110.5,-24.5 + parent: 1 + type: Transform + - uid: 23342 + components: + - pos: 107.5,-24.5 + parent: 1 + type: Transform + - uid: 23343 + components: + - pos: 106.5,-24.5 + parent: 1 + type: Transform + - uid: 23344 + components: + - pos: 100.5,-24.5 + parent: 1 + type: Transform + - uid: 23345 + components: + - pos: 104.5,-24.5 + parent: 1 + type: Transform + - uid: 23347 + components: + - pos: 102.5,-24.5 + parent: 1 + type: Transform + - uid: 23348 + components: + - pos: 99.5,-24.5 + parent: 1 + type: Transform + - uid: 23349 + components: + - pos: 98.5,-24.5 + parent: 1 + type: Transform + - uid: 23350 + components: + - pos: 96.5,-24.5 + parent: 1 + type: Transform + - uid: 23351 + components: + - pos: 95.5,-24.5 + parent: 1 + type: Transform + - uid: 23352 + components: + - pos: 94.5,-24.5 + parent: 1 + type: Transform + - uid: 23353 + components: + - pos: 92.5,-24.5 + parent: 1 + type: Transform + - uid: 23355 + components: + - pos: 90.5,-24.5 + parent: 1 + type: Transform + - uid: 23371 + components: + - pos: 71.5,-32.5 + parent: 1 + type: Transform + - uid: 23372 + components: + - pos: 72.5,-32.5 + parent: 1 + type: Transform + - uid: 23373 + components: + - pos: 73.5,-32.5 + parent: 1 + type: Transform + - uid: 23374 + components: + - pos: 69.5,-32.5 + parent: 1 + type: Transform + - uid: 23375 + components: + - pos: 76.5,-32.5 + parent: 1 + type: Transform + - uid: 23376 + components: + - pos: 77.5,-32.5 + parent: 1 + type: Transform + - uid: 23377 + components: + - pos: 80.5,-32.5 + parent: 1 + type: Transform + - uid: 23378 + components: + - pos: 79.5,-32.5 + parent: 1 + type: Transform + - uid: 23379 + components: + - pos: 81.5,-32.5 + parent: 1 + type: Transform + - uid: 23399 + components: + - pos: 51.5,-53.5 + parent: 1 + type: Transform + - uid: 23401 + components: + - pos: 42.5,-53.5 + parent: 1 + type: Transform + - uid: 23402 + components: + - pos: 43.5,-53.5 + parent: 1 + type: Transform + - uid: 23403 + components: + - pos: 45.5,-53.5 + parent: 1 + type: Transform + - uid: 23404 + components: + - pos: 46.5,-53.5 + parent: 1 + type: Transform + - uid: 23405 + components: + - pos: 47.5,-53.5 + parent: 1 + type: Transform + - uid: 23406 + components: + - pos: 58.5,-53.5 + parent: 1 + type: Transform + - uid: 23407 + components: + - pos: 53.5,-53.5 + parent: 1 + type: Transform + - uid: 23408 + components: + - pos: 54.5,-53.5 + parent: 1 + type: Transform + - uid: 23409 + components: + - pos: 55.5,-53.5 + parent: 1 + type: Transform + - uid: 23410 + components: + - pos: 59.5,-53.5 + parent: 1 + type: Transform + - uid: 23411 + components: + - pos: 61.5,-53.5 + parent: 1 + type: Transform + - uid: 23412 + components: + - pos: 62.5,-53.5 + parent: 1 + type: Transform + - uid: 23413 + components: + - pos: 63.5,-53.5 + parent: 1 + type: Transform + - uid: 23414 + components: + - pos: 66.5,-53.5 + parent: 1 + type: Transform + - uid: 23415 + components: + - pos: 67.5,-53.5 + parent: 1 + type: Transform + - uid: 23573 + components: + - pos: 13.5,9.5 + parent: 1 + type: Transform + - uid: 23574 + components: + - pos: 13.5,15.5 + parent: 1 + type: Transform + - uid: 23575 + components: + - pos: 10.5,15.5 + parent: 1 + type: Transform + - uid: 23913 + components: + - pos: 71.5,25.5 + parent: 1 + type: Transform + - uid: 24353 + components: + - pos: -76.5,12.5 + parent: 1 + type: Transform + - uid: 24389 + components: + - pos: -83.5,-11.5 + parent: 1 + type: Transform + - uid: 24390 + components: + - pos: -81.5,20.5 + parent: 1 + type: Transform + - uid: 24391 + components: + - pos: -82.5,20.5 + parent: 1 + type: Transform + - uid: 24392 + components: + - pos: -83.5,20.5 + parent: 1 + type: Transform + - uid: 24393 + components: + - pos: -85.5,20.5 + parent: 1 + type: Transform + - uid: 24394 + components: + - pos: -86.5,20.5 + parent: 1 + type: Transform + - uid: 24395 + components: + - pos: -87.5,20.5 + parent: 1 + type: Transform + - uid: 24396 + components: + - pos: -89.5,20.5 + parent: 1 + type: Transform + - uid: 24397 + components: + - pos: -90.5,20.5 + parent: 1 + type: Transform + - uid: 24398 + components: + - pos: -91.5,20.5 + parent: 1 + type: Transform + - uid: 24399 + components: + - pos: -93.5,20.5 + parent: 1 + type: Transform + - uid: 24400 + components: + - pos: -94.5,20.5 + parent: 1 + type: Transform + - uid: 24401 + components: + - pos: -95.5,20.5 + parent: 1 + type: Transform + - uid: 24402 + components: + - pos: -100.5,15.5 + parent: 1 + type: Transform + - uid: 24403 + components: + - pos: -100.5,14.5 + parent: 1 + type: Transform + - uid: 24404 + components: + - pos: -100.5,13.5 + parent: 1 + type: Transform + - uid: 24405 + components: + - pos: -100.5,11.5 + parent: 1 + type: Transform + - uid: 24406 + components: + - pos: -100.5,10.5 + parent: 1 + type: Transform + - uid: 24407 + components: + - pos: -100.5,9.5 + parent: 1 + type: Transform + - uid: 24408 + components: + - pos: -100.5,7.5 + parent: 1 + type: Transform + - uid: 24409 + components: + - pos: -100.5,6.5 + parent: 1 + type: Transform + - uid: 24410 + components: + - pos: -100.5,5.5 + parent: 1 + type: Transform + - uid: 24411 + components: + - pos: -100.5,3.5 + parent: 1 + type: Transform + - uid: 24412 + components: + - pos: -100.5,2.5 + parent: 1 + type: Transform + - uid: 24413 + components: + - pos: -100.5,1.5 + parent: 1 + type: Transform + - uid: 24414 + components: + - pos: -100.5,-0.5 + parent: 1 + type: Transform + - uid: 24415 + components: + - pos: -100.5,-1.5 + parent: 1 + type: Transform + - uid: 24416 + components: + - pos: -100.5,-2.5 + parent: 1 + type: Transform + - uid: 24417 + components: + - pos: -100.5,-4.5 + parent: 1 + type: Transform + - uid: 24418 + components: + - pos: -100.5,-5.5 + parent: 1 + type: Transform + - uid: 24419 + components: + - pos: -100.5,-6.5 + parent: 1 + type: Transform + - uid: 24420 + components: + - pos: -95.5,-11.5 + parent: 1 + type: Transform + - uid: 24421 + components: + - pos: -94.5,-11.5 + parent: 1 + type: Transform + - uid: 24422 + components: + - pos: -93.5,-11.5 + parent: 1 + type: Transform + - uid: 24423 + components: + - pos: -91.5,-11.5 + parent: 1 + type: Transform + - uid: 24424 + components: + - pos: -90.5,-11.5 + parent: 1 + type: Transform + - uid: 24425 + components: + - pos: -89.5,-11.5 + parent: 1 + type: Transform + - uid: 24426 + components: + - pos: -87.5,-11.5 + parent: 1 + type: Transform + - uid: 24427 + components: + - pos: -86.5,-11.5 + parent: 1 + type: Transform + - uid: 24428 + components: + - pos: -85.5,-11.5 + parent: 1 + type: Transform + - uid: 24429 + components: + - pos: -82.5,-11.5 + parent: 1 + type: Transform + - uid: 24430 + components: + - pos: -81.5,-11.5 + parent: 1 + type: Transform + - uid: 24779 + components: + - pos: 88.5,-22.5 + parent: 1 + type: Transform + - uid: 24786 + components: + - pos: 86.5,-24.5 + parent: 1 + type: Transform + - uid: 24796 + components: + - pos: 84.5,-27.5 + parent: 1 + type: Transform + - uid: 24797 + components: + - pos: 84.5,-26.5 + parent: 1 + type: Transform + - uid: 24798 + components: + - pos: 84.5,-25.5 + parent: 1 + type: Transform + - uid: 24799 + components: + - pos: 89.5,-27.5 + parent: 1 + type: Transform + - uid: 24800 + components: + - pos: 89.5,-26.5 + parent: 1 + type: Transform + - uid: 24801 + components: + - pos: 89.5,-25.5 + parent: 1 + type: Transform + - uid: 24802 + components: + - pos: 87.5,-28.5 + parent: 1 + type: Transform + - uid: 24803 + components: + - pos: 88.5,-28.5 + parent: 1 + type: Transform + - uid: 25059 + components: + - pos: 70.5,-58.5 + parent: 1 + type: Transform + - uid: 25062 + components: + - pos: 62.5,-58.5 + parent: 1 + type: Transform + - uid: 25063 + components: + - pos: 63.5,-58.5 + parent: 1 + type: Transform + - uid: 25064 + components: + - pos: 66.5,-58.5 + parent: 1 + type: Transform + - uid: 25065 + components: + - pos: 67.5,-58.5 + parent: 1 + type: Transform + - uid: 25066 + components: + - pos: 71.5,-58.5 + parent: 1 + type: Transform + - uid: 25067 + components: + - pos: 72.5,-58.5 + parent: 1 + type: Transform + - uid: 25068 + components: + - pos: 76.5,-58.5 + parent: 1 + type: Transform + - uid: 25069 + components: + - pos: 78.5,-58.5 + parent: 1 + type: Transform + - uid: 25070 + components: + - pos: 79.5,-58.5 + parent: 1 + type: Transform + - uid: 25071 + components: + - pos: 80.5,-58.5 + parent: 1 + type: Transform + - uid: 25072 + components: + - pos: 82.5,-58.5 + parent: 1 + type: Transform + - uid: 25073 + components: + - pos: 83.5,-58.5 + parent: 1 + type: Transform + - uid: 25074 + components: + - pos: 84.5,-58.5 + parent: 1 + type: Transform + - uid: 25075 + components: + - pos: 86.5,-58.5 + parent: 1 + type: Transform + - uid: 25076 + components: + - pos: 88.5,-58.5 + parent: 1 + type: Transform + - uid: 25077 + components: + - pos: 90.5,-58.5 + parent: 1 + type: Transform + - uid: 25078 + components: + - pos: 91.5,-58.5 + parent: 1 + type: Transform + - uid: 25079 + components: + - pos: 94.5,-58.5 + parent: 1 + type: Transform + - uid: 25080 + components: + - pos: 95.5,-58.5 + parent: 1 + type: Transform + - uid: 25081 + components: + - pos: 96.5,-58.5 + parent: 1 + type: Transform + - uid: 25082 + components: + - pos: 99.5,-58.5 + parent: 1 + type: Transform + - uid: 25091 + components: + - pos: 104.5,-29.5 + parent: 1 + type: Transform + - uid: 25100 + components: + - pos: 104.5,-55.5 + parent: 1 + type: Transform + - uid: 25101 + components: + - pos: 104.5,-53.5 + parent: 1 + type: Transform + - uid: 25102 + components: + - pos: 104.5,-49.5 + parent: 1 + type: Transform + - uid: 25103 + components: + - pos: 104.5,-48.5 + parent: 1 + type: Transform + - uid: 25104 + components: + - pos: 104.5,-47.5 + parent: 1 + type: Transform + - uid: 25105 + components: + - pos: 104.5,-44.5 + parent: 1 + type: Transform + - uid: 25106 + components: + - pos: 104.5,-43.5 + parent: 1 + type: Transform + - uid: 25107 + components: + - pos: 104.5,-41.5 + parent: 1 + type: Transform + - uid: 25108 + components: + - pos: 104.5,-40.5 + parent: 1 + type: Transform + - uid: 25109 + components: + - pos: 104.5,-39.5 + parent: 1 + type: Transform + - uid: 25110 + components: + - pos: 104.5,-37.5 + parent: 1 + type: Transform + - uid: 25111 + components: + - pos: 104.5,-33.5 + parent: 1 + type: Transform + - uid: 25112 + components: + - pos: 104.5,-32.5 + parent: 1 + type: Transform + - uid: 25175 + components: + - pos: 75.5,0.5 + parent: 1 + type: Transform + - uid: 25200 + components: + - pos: 107.5,26.5 + parent: 1 + type: Transform + - uid: 25201 + components: + - pos: 107.5,27.5 + parent: 1 + type: Transform + - uid: 25202 + components: + - pos: 107.5,28.5 + parent: 1 + type: Transform + - uid: 25581 + components: + - pos: -48.5,-43.5 + parent: 1 + type: Transform + - uid: 25582 + components: + - pos: -47.5,-43.5 + parent: 1 + type: Transform + - uid: 25583 + components: + - pos: -46.5,-43.5 + parent: 1 + type: Transform + - uid: 25585 + components: + - pos: -41.5,-42.5 + parent: 1 + type: Transform + - uid: 25591 + components: + - pos: -41.5,-41.5 + parent: 1 + type: Transform + - uid: 25595 + components: + - pos: -44.5,-41.5 + parent: 1 + type: Transform + - uid: 25596 + components: + - pos: -44.5,-42.5 + parent: 1 + type: Transform + - uid: 25599 + components: + - pos: -41.5,-39.5 + parent: 1 + type: Transform + - uid: 25713 + components: + - pos: -51.5,-46.5 + parent: 1 + type: Transform + - uid: 25714 + components: + - pos: -50.5,-46.5 + parent: 1 + type: Transform + - uid: 25715 + components: + - pos: -48.5,-46.5 + parent: 1 + type: Transform + - uid: 25716 + components: + - pos: -47.5,-46.5 + parent: 1 + type: Transform + - uid: 25738 + components: + - pos: -69.5,-12.5 + parent: 1 + type: Transform + - uid: 25741 + components: + - pos: -69.5,-14.5 + parent: 1 + type: Transform + - uid: 25742 + components: + - pos: -69.5,-16.5 + parent: 1 + type: Transform + - uid: 25744 + components: + - pos: -69.5,-18.5 + parent: 1 + type: Transform + - uid: 25745 + components: + - pos: -69.5,-20.5 + parent: 1 + type: Transform + - uid: 25746 + components: + - pos: -69.5,-21.5 + parent: 1 + type: Transform + - uid: 25747 + components: + - pos: -69.5,-22.5 + parent: 1 + type: Transform + - uid: 25748 + components: + - pos: -69.5,-24.5 + parent: 1 + type: Transform + - uid: 25749 + components: + - pos: -69.5,-25.5 + parent: 1 + type: Transform + - uid: 25750 + components: + - pos: -69.5,-26.5 + parent: 1 + type: Transform + - uid: 25751 + components: + - pos: -69.5,-28.5 + parent: 1 + type: Transform + - uid: 25752 + components: + - pos: -69.5,-29.5 + parent: 1 + type: Transform + - uid: 25754 + components: + - pos: -69.5,-32.5 + parent: 1 + type: Transform +- proto: GrilleBroken + entities: + - uid: 22952 + components: + - rot: 1.5707963267948966 rad + pos: -73.5,38.5 + parent: 1 + type: Transform + - uid: 22958 + components: + - rot: 1.5707963267948966 rad + pos: -61.5,42.5 + parent: 1 + type: Transform + - uid: 22963 + components: + - pos: -61.5,42.5 + parent: 1 + type: Transform + - uid: 22972 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,44.5 + parent: 1 + type: Transform + - uid: 22974 + components: + - rot: 3.141592653589793 rad + pos: -54.5,50.5 + parent: 1 + type: Transform + - uid: 22976 + components: + - pos: -54.5,49.5 + parent: 1 + type: Transform + - uid: 22995 + components: + - pos: -73.5,25.5 + parent: 1 + type: Transform + - uid: 22996 + components: + - pos: -73.5,27.5 + parent: 1 + type: Transform + - uid: 23013 + components: + - rot: -1.5707963267948966 rad + pos: 56.5,51.5 + parent: 1 + type: Transform + - uid: 23018 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,55.5 + parent: 1 + type: Transform + - uid: 23024 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,54.5 + parent: 1 + type: Transform + - uid: 23035 + components: + - pos: -26.5,52.5 + parent: 1 + type: Transform + - uid: 23036 + components: + - pos: -36.5,54.5 + parent: 1 + type: Transform + - uid: 23043 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,55.5 + parent: 1 + type: Transform + - uid: 23044 + components: + - pos: -39.5,69.5 + parent: 1 + type: Transform + - uid: 23054 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,69.5 + parent: 1 + type: Transform + - uid: 23057 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,69.5 + parent: 1 + type: Transform + - uid: 23058 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,52.5 + parent: 1 + type: Transform + - uid: 23099 + components: + - pos: 51.5,55.5 + parent: 1 + type: Transform + - uid: 23103 + components: + - rot: -1.5707963267948966 rad + pos: 64.5,42.5 + parent: 1 + type: Transform + - uid: 23104 + components: + - rot: 1.5707963267948966 rad + pos: 64.5,43.5 + parent: 1 + type: Transform + - uid: 23117 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,39.5 + parent: 1 + type: Transform + - uid: 23129 + components: + - rot: -1.5707963267948966 rad + pos: 64.5,43.5 + parent: 1 + type: Transform + - uid: 23138 + components: + - rot: -1.5707963267948966 rad + pos: 78.5,37.5 + parent: 1 + type: Transform + - uid: 23151 + components: + - rot: 1.5707963267948966 rad + pos: 98.5,33.5 + parent: 1 + type: Transform + - uid: 23152 + components: + - pos: 98.5,33.5 + parent: 1 + type: Transform + - uid: 23153 + components: + - pos: 100.5,33.5 + parent: 1 + type: Transform + - uid: 23161 + components: + - rot: -1.5707963267948966 rad + pos: 103.5,33.5 + parent: 1 + type: Transform + - uid: 23164 + components: + - rot: -1.5707963267948966 rad + pos: 115.5,33.5 + parent: 1 + type: Transform + - uid: 23171 + components: + - rot: 1.5707963267948966 rad + pos: 115.5,33.5 + parent: 1 + type: Transform + - uid: 23179 + components: + - rot: 1.5707963267948966 rad + pos: 122.5,33.5 + parent: 1 + type: Transform + - uid: 23180 + components: + - rot: -1.5707963267948966 rad + pos: 130.5,33.5 + parent: 1 + type: Transform + - uid: 23217 + components: + - rot: -1.5707963267948966 rad + pos: 133.5,-12.5 + parent: 1 + type: Transform + - uid: 23224 + components: + - rot: 3.141592653589793 rad + pos: 132.5,20.5 + parent: 1 + type: Transform + - uid: 23225 + components: + - rot: 3.141592653589793 rad + pos: 132.5,25.5 + parent: 1 + type: Transform + - uid: 23228 + components: + - rot: -1.5707963267948966 rad + pos: 132.5,24.5 + parent: 1 + type: Transform + - uid: 23251 + components: + - rot: -1.5707963267948966 rad + pos: 128.5,-24.5 + parent: 1 + type: Transform + - uid: 23261 + components: + - rot: 3.141592653589793 rad + pos: 115.5,-24.5 + parent: 1 + type: Transform + - uid: 23265 + components: + - rot: 1.5707963267948966 rad + pos: 116.5,-24.5 + parent: 1 + type: Transform + - uid: 23266 + components: + - rot: -1.5707963267948966 rad + pos: 115.5,-24.5 + parent: 1 + type: Transform + - uid: 23275 + components: + - pos: 82.5,35.5 + parent: 1 + type: Transform + - uid: 23288 + components: + - rot: 3.141592653589793 rad + pos: 108.5,-24.5 + parent: 1 + type: Transform + - uid: 23293 + components: + - rot: 3.141592653589793 rad + pos: 103.5,-24.5 + parent: 1 + type: Transform + - uid: 23294 + components: + - rot: 1.5707963267948966 rad + pos: 91.5,-24.5 + parent: 1 + type: Transform + - uid: 23315 + components: + - rot: 1.5707963267948966 rad + pos: -73.5,25.5 + parent: 1 + type: Transform + - uid: 23354 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-52.5 + parent: 1 + type: Transform + - uid: 23357 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-52.5 + parent: 1 + type: Transform + - uid: 23358 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-52.5 + parent: 1 + type: Transform + - uid: 23359 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-52.5 + parent: 1 + type: Transform + - uid: 23361 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-53.5 + parent: 1 + type: Transform + - uid: 23362 + components: + - rot: 3.141592653589793 rad + pos: 41.5,-50.5 + parent: 1 + type: Transform + - uid: 23363 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-51.5 + parent: 1 + type: Transform + - uid: 23389 + components: + - rot: 3.141592653589793 rad + pos: 75.5,-32.5 + parent: 1 + type: Transform + - uid: 23395 + components: + - rot: 3.141592653589793 rad + pos: 57.5,-53.5 + parent: 1 + type: Transform + - uid: 23396 + components: + - rot: 3.141592653589793 rad + pos: 50.5,-53.5 + parent: 1 + type: Transform + - uid: 23398 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,-53.5 + parent: 1 + type: Transform + - uid: 23400 + components: + - rot: 3.141592653589793 rad + pos: 49.5,-53.5 + parent: 1 + type: Transform + - uid: 23416 + components: + - rot: 1.5707963267948966 rad + pos: 65.5,-53.5 + parent: 1 + type: Transform + - uid: 25054 + components: + - rot: 3.141592653589793 rad + pos: 98.5,-58.5 + parent: 1 + type: Transform + - uid: 25055 + components: + - rot: 1.5707963267948966 rad + pos: 100.5,-58.5 + parent: 1 + type: Transform + - uid: 25056 + components: + - rot: 1.5707963267948966 rad + pos: 92.5,-58.5 + parent: 1 + type: Transform + - uid: 25057 + components: + - rot: 3.141592653589793 rad + pos: 87.5,-58.5 + parent: 1 + type: Transform + - uid: 25058 + components: + - rot: 3.141592653589793 rad + pos: 74.5,-58.5 + parent: 1 + type: Transform + - uid: 25060 + components: + - rot: 1.5707963267948966 rad + pos: 64.5,-58.5 + parent: 1 + type: Transform + - uid: 25061 + components: + - rot: -1.5707963267948966 rad + pos: 64.5,-58.5 + parent: 1 + type: Transform + - uid: 25092 + components: + - rot: 3.141592653589793 rad + pos: 104.5,-31.5 + parent: 1 + type: Transform + - uid: 25093 + components: + - rot: -1.5707963267948966 rad + pos: 104.5,-31.5 + parent: 1 + type: Transform + - uid: 25094 + components: + - rot: -1.5707963267948966 rad + pos: 104.5,-36.5 + parent: 1 + type: Transform + - uid: 25095 + components: + - rot: 3.141592653589793 rad + pos: 104.5,-45.5 + parent: 1 + type: Transform + - uid: 25096 + components: + - rot: -1.5707963267948966 rad + pos: 104.5,-51.5 + parent: 1 + type: Transform + - uid: 25097 + components: + - pos: 104.5,-52.5 + parent: 1 + type: Transform + - uid: 25098 + components: + - rot: -1.5707963267948966 rad + pos: 104.5,-57.5 + parent: 1 + type: Transform + - uid: 25099 + components: + - rot: 3.141592653589793 rad + pos: 104.5,-56.5 + parent: 1 + type: Transform + - uid: 25737 + components: + - rot: 3.141592653589793 rad + pos: -69.5,-13.5 + parent: 1 + type: Transform + - uid: 25739 + components: + - rot: 1.5707963267948966 rad + pos: -69.5,-30.5 + parent: 1 + type: Transform + - uid: 25740 + components: + - pos: -69.5,-33.5 + parent: 1 + type: Transform + - uid: 25743 + components: + - rot: 1.5707963267948966 rad + pos: -69.5,-17.5 + parent: 1 + type: Transform + - uid: 25753 + components: + - pos: -69.5,-17.5 + parent: 1 + type: Transform +- proto: GroundCannabis + entities: + - uid: 23441 + components: + - flags: InContainer + type: MetaData + - parent: 23440 + type: Transform + - canCollide: False + type: Physics +- proto: GunSafeDisabler + entities: + - uid: 7355 + components: + - pos: 84.5,15.5 + parent: 1 + type: Transform +- proto: GunSafeLaserCarbine + entities: + - uid: 21447 + components: + - pos: 84.5,10.5 + parent: 1 + type: Transform +- proto: GunSafePistolMk58 + entities: + - uid: 9634 + components: + - pos: 84.5,14.5 + parent: 1 + type: Transform +- proto: GunSafeRifleLecter + entities: + - uid: 21442 + components: + - pos: 84.5,12.5 + parent: 1 + type: Transform +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 6672 + components: + - pos: 84.5,11.5 + parent: 1 + type: Transform +- proto: Handcuffs + entities: + - uid: 16687 + components: + - rot: 3.141592653589793 rad + pos: 77.58808,18.709356 + parent: 1 + type: Transform + - uid: 21566 + components: + - pos: 80.6716,18.609547 + parent: 1 + type: Transform +- proto: HandheldCrewMonitor + entities: + - uid: 7295 + components: + - rot: -1.5707963267948966 rad + pos: 18.562223,39.592773 + parent: 1 + type: Transform +- proto: HandheldGPSBasic + entities: + - uid: 5910 + components: + - rot: 1.5707963267948966 rad + pos: -60.462444,-28.003609 + parent: 1 + type: Transform + - uid: 7292 + components: + - pos: 18.499723,39.5615 + parent: 1 + type: Transform + - uid: 9851 + components: + - pos: 110.65168,11.563477 + parent: 1 + type: Transform + - uid: 23469 + components: + - rot: -1.5707963267948966 rad + pos: -16.500826,38.497223 + parent: 1 + type: Transform + - uid: 25240 + components: + - rot: 1.5707963267948966 rad + pos: -57.67204,-22.12014 + parent: 1 + type: Transform +- proto: HandheldHealthAnalyzer + entities: + - uid: 3423 + components: + - pos: -22.488031,7.6482143 + parent: 1 + type: Transform + - uid: 7678 + components: + - pos: 65.455215,-9.87175 + parent: 1 + type: Transform + - uid: 12521 + components: + - pos: -13.524763,48.05078 + parent: 1 + type: Transform +- proto: HandheldStationMap + entities: + - uid: 20603 + components: + - pos: 99.48844,11.626816 + parent: 1 + type: Transform +- proto: HandLabeler + entities: + - uid: 2561 + components: + - pos: -43.513184,7.067641 + parent: 1 + type: Transform + - uid: 2591 + components: + - pos: 5.5573688,-5.2340984 + parent: 1 + type: Transform + - uid: 4712 + components: + - pos: 1.470957,47.476814 + parent: 1 + type: Transform + - uid: 6851 + components: + - pos: -24.42696,11.8176565 + parent: 1 + type: Transform + - uid: 7451 + components: + - pos: 11.507768,50.71897 + parent: 1 + type: Transform + - uid: 21774 + components: + - pos: 74.47851,-12.253452 + parent: 1 + type: Transform + - uid: 21775 + components: + - pos: 74.47851,-12.472355 + parent: 1 + type: Transform + - uid: 25316 + components: + - pos: -3.5004292,-3.1555023 + parent: 1 + type: Transform +- proto: HandTeleporter + entities: + - uid: 6684 + components: + - pos: -57.254112,-22.146727 + parent: 1 + type: Transform +- proto: HappyHonk + entities: + - uid: 12271 + components: + - pos: -19.348936,-28.186813 + parent: 1 + type: Transform + - uid: 16743 + components: + - pos: 93.396835,20.794186 + parent: 1 + type: Transform +- proto: HatSpawner + entities: + - uid: 3339 + components: + - pos: 24.5,23.5 + parent: 1 + type: Transform + - uid: 5240 + components: + - pos: 15.5,4.5 + parent: 1 + type: Transform + - uid: 7552 + components: + - pos: 20.5,-6.5 + parent: 1 + type: Transform + - uid: 7563 + components: + - pos: 18.5,-13.5 + parent: 1 + type: Transform + - uid: 11249 + components: + - pos: 22.5,-40.5 + parent: 1 + type: Transform + - uid: 12473 + components: + - pos: -0.5,49.5 + parent: 1 + type: Transform + - uid: 22065 + components: + - pos: 16.5,-13.5 + parent: 1 + type: Transform + - uid: 22178 + components: + - pos: -12.5,5.5 + parent: 1 + type: Transform +- proto: HelicopterInstrument + entities: + - uid: 16095 + components: + - pos: 18.518873,52.70874 + parent: 1 + type: Transform +- proto: HighSecArmoryLocked + entities: + - uid: 4855 + components: + - pos: 83.5,13.5 + parent: 1 + type: Transform +- proto: HighSecCaptainLocked + entities: + - uid: 6213 + components: + - pos: 103.5,-2.5 + parent: 1 + type: Transform +- proto: HighSecCommandLocked + entities: + - uid: 6247 + components: + - pos: 100.5,-0.5 + parent: 1 + type: Transform +- proto: HoloprojectorSecurity + entities: + - uid: 7401 + components: + - pos: 10.484969,-30.404797 + parent: 1 + type: Transform + - uid: 22572 + components: + - rot: -1.5707963267948966 rad + pos: -20.451258,-1.2815037 + parent: 1 + type: Transform + - uid: 23977 + components: + - pos: 66.99236,12.445516 + parent: 1 + type: Transform + - uid: 23978 + components: + - pos: 88.52434,19.591347 + parent: 1 + type: Transform +- proto: HospitalCurtains + entities: + - uid: 1723 + components: + - pos: -5.5,-14.5 + parent: 1 + type: Transform + - uid: 1948 + components: + - pos: 1.5,-14.5 + parent: 1 + type: Transform + - uid: 3522 + components: + - pos: 62.5,-8.5 + parent: 1 + type: Transform + - uid: 3523 + components: + - pos: 62.5,-9.5 + parent: 1 + type: Transform + - uid: 3524 + components: + - pos: 62.5,-10.5 + parent: 1 + type: Transform + - uid: 4120 + components: + - pos: 86.5,14.5 + parent: 1 + type: Transform + - uid: 6028 + components: + - pos: 89.5,15.5 + parent: 1 + type: Transform + - uid: 6318 + components: + - pos: -40.5,13.5 + parent: 1 + type: Transform + - uid: 6319 + components: + - pos: -42.5,13.5 + parent: 1 + type: Transform + - uid: 9283 + components: + - pos: 32.5,-33.5 + parent: 1 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 2280 + components: + - pos: 33.5,24.5 + parent: 1 + type: Transform + - uid: 3313 + components: + - pos: 31.5,24.5 + parent: 1 + type: Transform + - uid: 3526 + components: + - pos: 62.5,-12.5 + parent: 1 + type: Transform + - uid: 3527 + components: + - pos: 62.5,-13.5 + parent: 1 + type: Transform + - uid: 4754 + components: + - pos: 6.5,50.5 + parent: 1 + type: Transform + - uid: 5911 + components: + - pos: -59.5,-20.5 + parent: 1 + type: Transform + - uid: 5913 + components: + - pos: -60.5,-25.5 + parent: 1 + type: Transform + - uid: 6861 + components: + - pos: -20.5,10.5 + parent: 1 + type: Transform + - uid: 6862 + components: + - pos: -20.5,11.5 + parent: 1 + type: Transform + - uid: 6863 + components: + - pos: -20.5,12.5 + parent: 1 + type: Transform + - uid: 9280 + components: + - pos: 28.5,-33.5 + parent: 1 + type: Transform + - uid: 9804 + components: + - pos: 109.5,-0.5 + parent: 1 + type: Transform + - uid: 9805 + components: + - pos: 109.5,-1.5 + parent: 1 + type: Transform + - uid: 15959 + components: + - pos: 82.5,-6.5 + parent: 1 + type: Transform + - uid: 17135 + components: + - rot: 3.141592653589793 rad + pos: 74.5,-1.5 + parent: 1 + type: Transform + - uid: 17138 + components: + - rot: 3.141592653589793 rad + pos: 72.5,-1.5 + parent: 1 + type: Transform +- proto: hydroponicsSoil + entities: + - uid: 1031 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,17.5 + parent: 1 + type: Transform + - uid: 1136 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,17.5 + parent: 1 + type: Transform + - uid: 1137 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,17.5 + parent: 1 + type: Transform + - uid: 1138 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,15.5 + parent: 1 + type: Transform + - uid: 1139 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 1144 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,15.5 + parent: 1 + type: Transform + - uid: 1145 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,14.5 + parent: 1 + type: Transform + - uid: 1146 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,15.5 + parent: 1 + type: Transform + - uid: 1147 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,14.5 + parent: 1 + type: Transform + - uid: 10084 + components: + - pos: 23.5,-41.5 + parent: 1 + type: Transform + - uid: 10085 + components: + - pos: 23.5,-40.5 + parent: 1 + type: Transform + - uid: 15723 + components: + - pos: 24.5,5.5 + parent: 1 + type: Transform + - uid: 15724 + components: + - pos: 24.5,6.5 + parent: 1 + type: Transform + - uid: 15725 + components: + - pos: 23.5,5.5 + parent: 1 + type: Transform + - uid: 15726 + components: + - pos: 23.5,6.5 + parent: 1 + type: Transform + - uid: 15727 + components: + - pos: 25.5,6.5 + parent: 1 + type: Transform + - uid: 15728 + components: + - pos: 25.5,5.5 + parent: 1 + type: Transform +- proto: HydroponicsToolClippers + entities: + - uid: 5329 + components: + - pos: 81.50727,24.4499 + parent: 1 + type: Transform + - uid: 12900 + components: + - rot: 3.141592653589793 rad + pos: 32.594513,-44.444786 + parent: 1 + type: Transform +- proto: HydroponicsToolHatchet + entities: + - uid: 12488 + components: + - pos: -38.48114,-15.954571 + parent: 1 + type: Transform +- proto: HydroponicsToolMiniHoe + entities: + - uid: 1201 + components: + - pos: 5.5353622,15.539366 + parent: 1 + type: Transform + - uid: 5330 + components: + - pos: 81.43435,24.55414 + parent: 1 + type: Transform + - uid: 11223 + components: + - pos: 23.789633,-41.318176 + parent: 1 + type: Transform + - uid: 12899 + components: + - rot: 3.141592653589793 rad + pos: 32.511177,-44.455208 + parent: 1 + type: Transform +- proto: HydroponicsToolScythe + entities: + - uid: 1198 + components: + - rot: 3.141592653589793 rad + pos: 5.511805,14.630675 + parent: 1 + type: Transform +- proto: HydroponicsToolSpade + entities: + - uid: 5331 + components: + - rot: 3.141592653589793 rad + pos: 81.486435,24.522867 + parent: 1 + type: Transform + - uid: 11224 + components: + - pos: 23.861782,-41.099274 + parent: 1 + type: Transform + - uid: 15730 + components: + - pos: 24.888361,5.993865 + parent: 1 + type: Transform + - uid: 23425 + components: + - rot: -1.5707963267948966 rad + pos: 52.569798,-19.52404 + parent: 1 + type: Transform +- proto: hydroponicsTray + entities: + - uid: 887 + components: + - rot: 3.141592653589793 rad + pos: 8.5,16.5 + parent: 1 + type: Transform + - uid: 1158 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,14.5 + parent: 1 + type: Transform + - uid: 1159 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,15.5 + parent: 1 + type: Transform + - uid: 1515 + components: + - pos: 18.5,-41.5 + parent: 1 + type: Transform + - uid: 1528 + components: + - pos: 19.5,-41.5 + parent: 1 + type: Transform + - uid: 5321 + components: + - rot: 3.141592653589793 rad + pos: 79.5,24.5 + parent: 1 + type: Transform + - uid: 5322 + components: + - rot: 3.141592653589793 rad + pos: 80.5,24.5 + parent: 1 + type: Transform + - uid: 5323 + components: + - rot: 3.141592653589793 rad + pos: 80.5,25.5 + parent: 1 + type: Transform + - uid: 5324 + components: + - rot: 3.141592653589793 rad + pos: 79.5,25.5 + parent: 1 + type: Transform + - uid: 23422 + components: + - rot: -1.5707963267948966 rad + pos: 51.5,-21.5 + parent: 1 + type: Transform +- proto: HydroponicsTrayMachineCircuitboard + entities: + - uid: 12897 + components: + - pos: 30.500763,-39.326645 + parent: 1 + type: Transform + - uid: 12898 + components: + - rot: 3.141592653589793 rad + pos: 30.500763,-39.514275 + parent: 1 + type: Transform +- proto: Igniter + entities: + - uid: 25759 + components: + - pos: -45.00301,22.488775 + parent: 1 + type: Transform +- proto: InflatableDoorStack + entities: + - uid: 3196 + components: + - rot: 3.141592653589793 rad + pos: 57.545628,0.41221666 + parent: 1 + type: Transform +- proto: InflatableDoorStack1 + entities: + - uid: 17543 + components: + - pos: -51.48888,38.562378 + parent: 1 + type: Transform + - uid: 17544 + components: + - pos: -51.48888,38.562378 + parent: 1 + type: Transform + - uid: 17545 + components: + - pos: -51.48888,38.562378 + parent: 1 + type: Transform + - uid: 17546 + components: + - pos: -51.48888,38.562378 + parent: 1 + type: Transform + - uid: 17547 + components: + - pos: -51.48888,38.562378 + parent: 1 + type: Transform + - uid: 23488 + components: + - rot: 3.141592653589793 rad + pos: -2.4678564,31.643507 + parent: 1 + type: Transform +- proto: InflatableWall + entities: + - uid: 16399 + components: + - pos: 105.5,13.5 + parent: 1 + type: Transform + - uid: 16400 + components: + - pos: 106.5,14.5 + parent: 1 + type: Transform + - uid: 16401 + components: + - pos: 105.5,14.5 + parent: 1 + type: Transform + - uid: 16410 + components: + - pos: -10.5,-24.5 + parent: 1 + type: Transform +- proto: InflatableWallStack + entities: + - uid: 427 + components: + - pos: 107.48512,11.062221 + parent: 1 + type: Transform + - uid: 3195 + components: + - rot: 3.141592653589793 rad + pos: 57.55604,0.5581511 + parent: 1 + type: Transform + - uid: 17542 + components: + - pos: -51.447216,38.708313 + parent: 1 + type: Transform +- proto: InflatableWallStack1 + entities: + - uid: 15974 + components: + - rot: -1.5707963267948966 rad + pos: 25.455803,52.61628 + parent: 1 + type: Transform + - uid: 23484 + components: + - rot: 3.141592653589793 rad + pos: -3.467857,31.633083 + parent: 1 + type: Transform + - uid: 23485 + components: + - rot: 3.141592653589793 rad + pos: -3.467857,31.633083 + parent: 1 + type: Transform + - uid: 23486 + components: + - rot: 3.141592653589793 rad + pos: -3.467857,31.633083 + parent: 1 + type: Transform + - uid: 23487 + components: + - rot: 3.141592653589793 rad + pos: -3.467857,31.633083 + parent: 1 + type: Transform +- proto: IngotGold + entities: + - uid: 7448 + components: + - pos: 17.483175,50.64588 + parent: 1 + type: Transform + - uid: 9566 + components: + - pos: 101.612114,-3.3589797 + parent: 1 + type: Transform +- proto: IngotSilver + entities: + - uid: 9567 + components: + - pos: 102.50794,-3.3277082 + parent: 1 + type: Transform +- proto: IntercomCommand + entities: + - uid: 25702 + components: + - pos: 95.5,11.5 + parent: 1 + type: Transform + - uid: 25703 + components: + - rot: -1.5707963267948966 rad + pos: 107.5,7.5 + parent: 1 + type: Transform + - uid: 25704 + components: + - pos: 108.5,7.5 + parent: 1 + type: Transform + - uid: 25705 + components: + - rot: -1.5707963267948966 rad + pos: 107.5,1.5 + parent: 1 + type: Transform +- proto: IntercomEngineering + entities: + - uid: 25683 + components: + - pos: -38.5,8.5 + parent: 1 + type: Transform + - uid: 25684 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,7.5 + parent: 1 + type: Transform + - uid: 25685 + components: + - pos: -60.5,34.5 + parent: 1 + type: Transform + - uid: 25686 + components: + - rot: 3.141592653589793 rad + pos: -73.5,0.5 + parent: 1 + type: Transform + - uid: 25687 + components: + - pos: -53.5,1.5 + parent: 1 + type: Transform + - uid: 25688 + components: + - pos: -47.5,-13.5 + parent: 1 + type: Transform +- proto: IntercomMedical + entities: + - uid: 25698 + components: + - rot: 3.141592653589793 rad + pos: 61.5,-11.5 + parent: 1 + type: Transform + - uid: 25699 + components: + - rot: 3.141592653589793 rad + pos: 64.5,-1.5 + parent: 1 + type: Transform + - uid: 25700 + components: + - rot: -1.5707963267948966 rad + pos: 86.5,-16.5 + parent: 1 + type: Transform + - uid: 25701 + components: + - rot: -1.5707963267948966 rad + pos: 83.5,-7.5 + parent: 1 + type: Transform +- proto: IntercomScience + entities: + - uid: 25706 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,46.5 + parent: 1 + type: Transform + - uid: 25708 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,41.5 + parent: 1 + type: Transform + - uid: 25709 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,49.5 + parent: 1 + type: Transform + - uid: 25710 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,40.5 + parent: 1 + type: Transform + - uid: 25814 + components: + - pos: 26.5,51.5 + parent: 1 + type: Transform +- proto: IntercomSecurity + entities: + - uid: 1535 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-30.5 + parent: 1 + type: Transform + - uid: 2828 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-35.5 + parent: 1 + type: Transform + - uid: 10079 + components: + - rot: 3.141592653589793 rad + pos: 65.5,12.5 + parent: 1 + type: Transform + - uid: 25695 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,8.5 + parent: 1 + type: Transform + - uid: 25696 + components: + - pos: 73.5,23.5 + parent: 1 + type: Transform + - uid: 25697 + components: + - rot: 1.5707963267948966 rad + pos: 85.5,17.5 + parent: 1 + type: Transform +- proto: IntercomService + entities: + - uid: 25689 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 25690 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-16.5 + parent: 1 + type: Transform + - uid: 25691 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,14.5 + parent: 1 + type: Transform + - uid: 25692 + components: + - pos: -6.5,22.5 + parent: 1 + type: Transform + - uid: 25693 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,24.5 + parent: 1 + type: Transform + - uid: 25694 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,16.5 + parent: 1 + type: Transform +- proto: IntercomSupply + entities: + - uid: 25678 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 1 + type: Transform + - uid: 25679 + components: + - pos: -5.5,-10.5 + parent: 1 + type: Transform + - uid: 25680 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-40.5 + parent: 1 + type: Transform + - uid: 25681 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-30.5 + parent: 1 + type: Transform + - uid: 25682 + components: + - pos: -59.5,-25.5 + parent: 1 + type: Transform +- proto: JanitorialTrolley + entities: + - uid: 3536 + components: + - pos: -14.5,7.5 + parent: 1 + type: Transform + - uid: 3537 + components: + - pos: -13.5,7.5 + parent: 1 + type: Transform +- proto: JanitorServiceLight + entities: + - uid: 25791 + components: + - rot: 3.141592653589793 rad + pos: -12.5,2.5 + parent: 1 + type: Transform + - links: + - 25805 + type: DeviceLinkSink + - uid: 25792 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,6.5 + parent: 1 + type: Transform + - links: + - 25806 + type: DeviceLinkSink + - uid: 25793 + components: + - pos: 9.5,12.5 + parent: 1 + type: Transform + - links: + - 25804 + - 25803 + type: DeviceLinkSink + - uid: 25795 + components: + - pos: 29.5,12.5 + parent: 1 + type: Transform + - links: + - 25802 + type: DeviceLinkSink + - uid: 25796 + components: + - pos: 66.5,5.5 + parent: 1 + type: Transform + - links: + - 25800 + type: DeviceLinkSink + - uid: 25797 + components: + - rot: 3.141592653589793 rad + pos: 66.5,2.5 + parent: 1 + type: Transform + - links: + - 25801 + type: DeviceLinkSink + - uid: 25798 + components: + - rot: -1.5707963267948966 rad + pos: 92.5,6.5 + parent: 1 + type: Transform + - links: + - 25799 + type: DeviceLinkSink + - uid: 25833 + components: + - pos: 10.5,38.5 + parent: 1 + type: Transform + - links: + - 25149 + type: DeviceLinkSink +- proto: JetpackBlueFilled + entities: + - uid: 576 + components: + - flags: InContainer + type: MetaData + - parent: 575 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1413 + components: + - flags: InContainer + type: MetaData + - parent: 1376 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 3155 + components: + - flags: InContainer + type: MetaData + - parent: 2314 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 3782 + components: + - flags: InContainer + type: MetaData + - parent: 3781 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: JetpackSecurityFilled + entities: + - uid: 5674 + components: + - flags: InContainer + type: MetaData + - parent: 4907 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5719 + components: + - flags: InContainer + type: MetaData + - parent: 4907 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5725 + components: + - flags: InContainer + type: MetaData + - parent: 5720 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5727 + components: + - flags: InContainer + type: MetaData + - parent: 5720 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: Joint + entities: + - uid: 3340 + components: + - pos: 23.431665,21.571093 + parent: 1 + type: Transform + - uid: 10033 + components: + - rot: -1.5707963267948966 rad + pos: 31.191172,-34.378197 + parent: 1 + type: Transform + - uid: 11202 + components: + - pos: 23.379581,21.62321 + parent: 1 + type: Transform + - uid: 12909 + components: + - rot: -1.5707963267948966 rad + pos: 31.309551,-34.426132 + parent: 1 + type: Transform + - uid: 16262 + components: + - pos: 79.19045,-17.945604 + parent: 1 + type: Transform +- proto: Jug + entities: + - uid: 5972 + components: + - pos: 55.61432,-17.612267 + parent: 1 + type: Transform + - solutions: + beaker: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 200 + reagents: + - data: null + ReagentId: Bleach + Quantity: 100 + type: SolutionContainerManager + - uid: 23976 + components: + - name: jug (Ammonia) + type: MetaData + - pos: -18.42741,11.182475 + parent: 1 + type: Transform + - solutions: + beaker: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 200 + reagents: + - data: null + ReagentId: Ammonia + Quantity: 200 + type: SolutionContainerManager + - currentLabel: Ammonia + type: Label +- proto: KatanaDulled + entities: + - uid: 23784 + components: + - pos: 55.51081,35.402184 + parent: 1 + type: Transform +- proto: KitchenDeepFryer + entities: + - uid: 860 + components: + - pos: 5.5,23.5 + parent: 1 + type: Transform + - uid: 1152 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-42.5 + parent: 1 + type: Transform +- proto: KitchenElectricGrill + entities: + - uid: 6808 + components: + - pos: 32.5,1.5 + parent: 1 + type: Transform + - uid: 13637 + components: + - pos: 5.5,24.5 + parent: 1 + type: Transform +- proto: KitchenKnife + entities: + - uid: 2029 + components: + - rot: 3.141592653589793 rad + pos: 2.6375613,-9.48147 + parent: 1 + type: Transform + - uid: 7453 + components: + - pos: 13.997352,50.573036 + parent: 1 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 834 + components: + - pos: -7.5,-36.5 + parent: 1 + type: Transform + - uid: 894 + components: + - pos: 18.5,-43.5 + parent: 1 + type: Transform + - uid: 976 + components: + - pos: 8.5,23.5 + parent: 1 + type: Transform + - uid: 1941 + components: + - pos: 8.5,-14.5 + parent: 1 + type: Transform + - uid: 2031 + components: + - pos: 1.5,-9.5 + parent: 1 + type: Transform + - uid: 2891 + components: + - pos: 38.5,15.5 + parent: 1 + type: Transform + - uid: 4113 + components: + - pos: -60.5,-29.5 + parent: 1 + type: Transform + - uid: 5335 + components: + - pos: 73.5,24.5 + parent: 1 + type: Transform + - uid: 6799 + components: + - pos: -48.5,6.5 + parent: 1 + type: Transform + - uid: 7117 + components: + - pos: 89.5,19.5 + parent: 1 + type: Transform + - uid: 7256 + components: + - pos: 25.5,46.5 + parent: 1 + type: Transform + - uid: 7613 + components: + - pos: 87.5,-14.5 + parent: 1 + type: Transform + - uid: 8152 + components: + - pos: 52.5,28.5 + parent: 1 + type: Transform + - uid: 10030 + components: + - pos: 30.5,-34.5 + parent: 1 + type: Transform + - uid: 12373 + components: + - pos: -34.5,-22.5 + parent: 1 + type: Transform + - uid: 13798 + components: + - pos: 26.5,-32.5 + parent: 1 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 546 + components: + - pos: 5.5,25.5 + parent: 1 + type: Transform + - uid: 1162 + components: + - pos: 18.5,-44.5 + parent: 1 + type: Transform + - uid: 1204 + components: + - pos: -6.5,18.5 + parent: 1 + type: Transform + - uid: 4692 + components: + - pos: -5.5,39.5 + parent: 1 + type: Transform + - uid: 5184 + components: + - pos: 33.5,1.5 + parent: 1 + type: Transform + - uid: 5332 + components: + - pos: 76.5,24.5 + parent: 1 + type: Transform + - uid: 5681 + components: + - pos: 70.5,-10.5 + parent: 1 + type: Transform + - uid: 7285 + components: + - pos: 21.5,39.5 + parent: 1 + type: Transform + - uid: 10379 + components: + - pos: 76.5,-9.5 + parent: 1 + type: Transform + - uid: 12864 + components: + - pos: 30.5,-44.5 + parent: 1 + type: Transform +- proto: KitchenSpike + entities: + - uid: 1070 + components: + - pos: -0.5,21.5 + parent: 1 + type: Transform +- proto: KnifePlastic + entities: + - uid: 12374 + components: + - rot: -1.5707963267948966 rad + pos: -34.51659,-24.289358 + parent: 1 + type: Transform +- proto: KvassTankFull + entities: + - uid: 16351 + components: + - pos: 32.5,-18.5 + parent: 1 + type: Transform + - solutions: + tank: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 1500 + reagents: + - data: null + ReagentId: Kvass + Quantity: 100 + type: SolutionContainerManager +- proto: Lamp + entities: + - uid: 2851 + components: + - rot: 3.141592653589793 rad + pos: 38.532623,-12.013265 + parent: 1 + type: Transform + - uid: 2852 + components: + - pos: 41.40728,-11.561753 + parent: 1 + type: Transform + - uid: 6597 + components: + - rot: 3.141592653589793 rad + pos: -53.463566,0.020269156 + parent: 1 + type: Transform + - uid: 7541 + components: + - pos: 41.439293,10.922186 + parent: 1 + type: Transform + - uid: 7542 + components: + - rot: 1.5707963267948966 rad + pos: 44.637207,8.013916 + parent: 1 + type: Transform + - uid: 10052 + components: + - rot: -1.5707963267948966 rad + pos: -2.4491892,-32.61036 + parent: 1 + type: Transform + - uid: 10053 + components: + - rot: -1.5707963267948966 rad + pos: -5.292939,-39.271233 + parent: 1 + type: Transform + - uid: 15961 + components: + - rot: 1.5707963267948966 rad + pos: 25.481878,49.092224 + parent: 1 + type: Transform + - uid: 16550 + components: + - pos: 57.422173,43.963615 + parent: 1 + type: Transform + - uid: 16552 + components: + - rot: -1.5707963267948966 rad + pos: 59.65134,36.42713 + parent: 1 + type: Transform + - uid: 16553 + components: + - rot: -1.5707963267948966 rad + pos: 53.599255,39.09565 + parent: 1 + type: Transform + - uid: 16684 + components: + - pos: 78.49813,12.103263 + parent: 1 + type: Transform + - uid: 16685 + components: + - rot: 3.141592653589793 rad + pos: 77.58146,17.92032 + parent: 1 + type: Transform +- proto: LampBanana + entities: + - uid: 12957 + components: + - pos: 26.658691,-34.96553 + parent: 1 + type: Transform +- proto: LampGold + entities: + - uid: 3998 + components: + - rot: -1.5707963267948966 rad + pos: 61.696537,20.945293 + parent: 1 + type: Transform + - uid: 5740 + components: + - pos: 72.64253,-3.0357983 + parent: 1 + type: Transform + - uid: 7145 + components: + - rot: 1.5707963267948966 rad + pos: 72.39204,19.147263 + parent: 1 + type: Transform + - uid: 7146 + components: + - rot: -1.5707963267948966 rad + pos: 72.69412,15.957547 + parent: 1 + type: Transform + - uid: 10051 + components: + - rot: -1.5707963267948966 rad + pos: 4.7591443,-34.987007 + parent: 1 + type: Transform + - uid: 21494 + components: + - rot: 1.5707963267948966 rad + pos: 31.325743,-11.20978 + parent: 1 + type: Transform +- proto: LampInterrogator + entities: + - uid: 5618 + components: + - pos: 66.67096,20.99375 + parent: 1 + type: Transform +- proto: LandMineExplosive + entities: + - uid: 5261 + components: + - pos: 87.69273,11.329636 + parent: 1 + type: Transform + - uid: 16107 + components: + - pos: 87.734406,8.817474 + parent: 1 + type: Transform + - uid: 16109 + components: + - pos: 87.68232,10.037071 + parent: 1 + type: Transform +- proto: Lantern + entities: + - uid: 16265 + components: + - pos: 80.14878,-18.289593 + parent: 1 + type: Transform +- proto: LargeBeaker + entities: + - uid: 1052 + components: + - pos: 5.5935884,25.493464 + parent: 1 + type: Transform + - uid: 1164 + components: + - pos: 18.260616,-44.395393 + parent: 1 + type: Transform + - uid: 1205 + components: + - pos: -6.6571364,18.389383 + parent: 1 + type: Transform + - uid: 5185 + components: + - pos: 33.621777,1.6179792 + parent: 1 + type: Transform + - uid: 5336 + components: + - pos: 76.62462,24.637531 + parent: 1 + type: Transform + - uid: 7286 + components: + - pos: 21.343473,39.571922 + parent: 1 + type: Transform +- proto: LeavesCannabisDried + entities: + - uid: 1112 + components: + - pos: 3.7110314,25.891462 + parent: 1 + type: Transform + - uid: 1113 + components: + - pos: 3.6797814,25.839344 + parent: 1 + type: Transform + - uid: 1114 + components: + - pos: 3.658948,25.818497 + parent: 1 + type: Transform + - uid: 1115 + components: + - pos: 3.658948,25.766376 + parent: 1 + type: Transform + - uid: 1116 + components: + - pos: 3.638115,25.891462 + parent: 1 + type: Transform + - uid: 1117 + components: + - pos: 3.658948,25.870615 + parent: 1 + type: Transform + - uid: 1118 + components: + - pos: 3.700615,25.797647 + parent: 1 + type: Transform + - uid: 1128 + components: + - pos: 3.700615,25.672562 + parent: 1 + type: Transform +- proto: LeftArmBorg + entities: + - uid: 16373 + components: + - pos: 6.989397,-17.369991 + parent: 1 + type: Transform +- proto: LightBulbBroken + entities: + - uid: 25810 + components: + - rot: -1.5707963267948966 rad + pos: -0.49652064,-44.108276 + parent: 1 + type: Transform +- proto: LightBulbMaintenance + entities: + - uid: 13936 + components: + - rot: -1.5707963267948966 rad + pos: -7.655399,-33.33628 + parent: 1 + type: Transform + - uid: 22746 + components: + - rot: 3.141592653589793 rad + pos: -17.731804,48.37307 + parent: 1 + type: Transform + - uid: 22747 + components: + - rot: 1.5707963267948966 rad + pos: -17.49222,48.425186 + parent: 1 + type: Transform +- proto: LightBulbMaintenanceRed + entities: + - uid: 13934 + components: + - pos: -7.290815,-33.503067 + parent: 1 + type: Transform + - uid: 13935 + components: + - rot: -1.5707963267948966 rad + pos: -7.551232,-33.51349 + parent: 1 + type: Transform + - uid: 22745 + components: + - rot: -1.5707963267948966 rad + pos: -17.71097,48.727478 + parent: 1 + type: Transform +- proto: Lighter + entities: + - uid: 2900 + components: + - pos: 32.856636,14.285765 + parent: 1 + type: Transform + - uid: 4003 + components: + - pos: 60.946537,20.705544 + parent: 1 + type: Transform + - uid: 11244 + components: + - pos: 24.195116,-41.735138 + parent: 1 + type: Transform +- proto: LightReplacer + entities: + - uid: 23491 + components: + - rot: -1.5707963267948966 rad + pos: 57.63595,11.631577 + parent: 1 + type: Transform +- proto: LockerAtmosphericsFilledHardsuit + entities: + - uid: 7381 + components: + - pos: -36.5,27.5 + parent: 1 + type: Transform + - uid: 7382 + components: + - pos: -36.5,28.5 + parent: 1 + type: Transform +- proto: LockerBoozeFilled + entities: + - uid: 2794 + components: + - pos: 36.5,15.5 + parent: 1 + type: Transform + - uid: 11232 + components: + - pos: 36.5,16.5 + parent: 1 + type: Transform +- proto: LockerBrigmedicFilledHardsuit + entities: + - uid: 25183 + components: + - pos: 77.5,7.5 + parent: 1 + type: Transform +- proto: LockerCaptainFilledHardsuit + entities: + - uid: 7383 + components: + - pos: 104.5,-1.5 + parent: 1 + type: Transform +- proto: LockerChemistryFilled + entities: + - uid: 6854 + components: + - pos: -23.5,12.5 + parent: 1 + type: Transform + - uid: 10344 + components: + - pos: 73.5,-8.5 + parent: 1 + type: Transform +- proto: LockerChiefEngineerFilledHardsuit + entities: + - uid: 6423 + components: + - pos: -59.5,0.5 + parent: 1 + type: Transform +- proto: LockerChiefMedicalOfficerFilledHardsuit + entities: + - uid: 7594 + components: + - pos: 82.5,-9.5 + parent: 1 + type: Transform +- proto: LockerClown + entities: + - uid: 975 + components: + - pos: 25.5,-37.5 + parent: 1 + type: Transform +- proto: LockerDetectiveFilled + entities: + - uid: 3798 + components: + - pos: 61.5,22.5 + parent: 1 + type: Transform +- proto: LockerEngineerFilled + entities: + - uid: 2536 + components: + - pos: -53.5,5.5 + parent: 1 + type: Transform + - uid: 2537 + components: + - pos: -54.5,5.5 + parent: 1 + type: Transform +- proto: LockerEngineerFilledHardsuit + entities: + - uid: 7384 + components: + - pos: -57.5,5.5 + parent: 1 + type: Transform + - uid: 7385 + components: + - pos: -56.5,5.5 + parent: 1 + type: Transform + - uid: 7386 + components: + - pos: -55.5,5.5 + parent: 1 + type: Transform +- proto: LockerEvidence + entities: + - uid: 5119 + components: + - pos: -20.478746,-3.1434608 + parent: 1 + type: Transform + - uid: 5120 + components: + - pos: -20.478746,-4.071189 + parent: 1 + type: Transform + - uid: 9313 + components: + - pos: 74.5,13.5 + parent: 1 + type: Transform + - uid: 10284 + components: + - pos: 74.5,16.5 + parent: 1 + type: Transform + - uid: 23920 + components: + - pos: 74.5,15.5 + parent: 1 + type: Transform +- proto: LockerForensicMantisFilled + entities: + - uid: 7283 + components: + - pos: 20.5,42.5 + parent: 1 + type: Transform +- proto: LockerFreezer + entities: + - uid: 866 + components: + - pos: 20.5,-42.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 877 + - 876 + - 875 + - 874 + - 873 + - 872 + - 871 + - 870 + - 869 + - 868 + - 867 + - 10618 + - 11210 + - 11355 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 1072 + components: + - pos: 1.5,21.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1073 + - 1074 + - 1075 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 5188 + components: + - pos: 35.5,1.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1497 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5197 + - 5196 + - 5195 + - 5194 + - 5193 + - 5192 + - 5191 + - 7130 + - 5190 + - 5189 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerFreezerBase + entities: + - uid: 826 + components: + - pos: 11.5,49.5 + parent: 1 + type: Transform + - uid: 5430 + components: + - pos: 25.5,50.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5434 + - 5433 + - 5432 + - 5431 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 22485 + components: + - pos: 75.5,24.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 22486 + - 22487 + - 22488 + - 22489 + - 22490 + - 22491 + - 22492 + - 22493 + - 22494 + - 22495 + - 22496 + - 22497 + - 22498 + - 22499 + - 22500 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerFreezerVaultFilled + entities: + - uid: 9583 + components: + - pos: 101.5,-1.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14658 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9590 + - 9589 + - 9588 + - 9587 + - 9586 + - 9585 + - 9584 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 25301 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform +- proto: LockerHeadOfSecurityFilledHardsuit + entities: + - uid: 7721 + components: + - pos: 78.5,14.5 + parent: 1 + type: Transform +- proto: LockerMedicalFilled + entities: + - uid: 5787 + components: + - pos: 70.5,-17.5 + parent: 1 + type: Transform + - uid: 5788 + components: + - pos: 71.5,-17.5 + parent: 1 + type: Transform + - uid: 5789 + components: + - pos: 72.5,-17.5 + parent: 1 + type: Transform + - uid: 5790 + components: + - pos: 73.5,-17.5 + parent: 1 + type: Transform +- proto: LockerMime + entities: + - uid: 12913 + components: + - pos: 21.5,-35.5 + parent: 1 + type: Transform +- proto: LockerParamedicFilledHardsuit + entities: + - uid: 7388 + components: + - pos: 69.5,-17.5 + parent: 1 + type: Transform + - uid: 7622 + components: + - pos: 87.5,-12.5 + parent: 1 + type: Transform +- proto: LockerQuarterMasterFilled + entities: + - uid: 6768 + components: + - pos: -61.5,-20.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 22591 + - 24629 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerResearchDirectorFilledHardsuit + entities: + - uid: 12053 + components: + - pos: 3.5,50.5 + parent: 1 + type: Transform +- proto: LockerSalvageSpecialistFilledHardsuit + entities: + - uid: 3002 + components: + - pos: -37.5,-28.5 + parent: 1 + type: Transform + - uid: 5057 + components: + - pos: -37.5,-29.5 + parent: 1 + type: Transform + - uid: 6791 + components: + - pos: -37.5,-30.5 + parent: 1 + type: Transform +- proto: LockerScienceFilled + entities: + - uid: 4738 + components: + - pos: 20.5,46.5 + parent: 1 + type: Transform + - uid: 4739 + components: + - pos: 19.5,46.5 + parent: 1 + type: Transform + - uid: 4740 + components: + - pos: 18.5,46.5 + parent: 1 + type: Transform + - uid: 4741 + components: + - pos: 17.5,46.5 + parent: 1 + type: Transform +- proto: LockerSecurity + entities: + - uid: 1444 + components: + - pos: 10.5,-29.5 + parent: 1 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 24309 + - 7396 + - 12796 + - 7395 + - 7394 + - 1477 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 12797 + components: + - pos: 13.5,-29.5 + parent: 1 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 24310 + - 12798 + - 12802 + - 12801 + - 12800 + - 12799 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerSecurityFilled + entities: + - uid: 7121 + components: + - pos: 84.5,22.5 + parent: 1 + type: Transform + - uid: 7122 + components: + - pos: 83.5,22.5 + parent: 1 + type: Transform + - uid: 7123 + components: + - pos: 82.5,22.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 7124 + components: + - pos: 81.5,22.5 + parent: 1 + type: Transform + - uid: 7125 + components: + - pos: 80.5,22.5 + parent: 1 + type: Transform + - uid: 7126 + components: + - pos: 79.5,22.5 + parent: 1 + type: Transform +- proto: LockerWallMedicalDoctorFilled + entities: + - uid: 6865 + components: + - pos: -21.5,13.5 + parent: 1 + type: Transform +- proto: LockerWallMedicalFilled + entities: + - uid: 9597 + components: + - pos: 107.5,5.5 + parent: 1 + type: Transform +- proto: LockerWardenFilledHardsuit + entities: + - uid: 10508 + components: + - pos: 76.5,10.5 + parent: 1 + type: Transform +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 6388 + components: + - pos: -43.5,-0.5 + parent: 1 + type: Transform + - uid: 6514 + components: + - pos: -55.5,29.5 + parent: 1 + type: Transform + - uid: 16105 + components: + - pos: 32.5,34.5 + parent: 1 + type: Transform +- proto: Log + entities: + - uid: 7504 + components: + - pos: 8.368608,7.144616 + parent: 1 + type: Transform + - uid: 7505 + components: + - pos: 8.462358,6.9882574 + parent: 1 + type: Transform + - uid: 9536 + components: + - pos: -16.557905,-14.655599 + parent: 1 + type: Transform + - uid: 12479 + components: + - pos: -38.49144,-14.297171 + parent: 1 + type: Transform + - uid: 12480 + components: + - pos: -38.376858,-14.443105 + parent: 1 + type: Transform +- proto: MachineAnomalyGenerator + entities: + - uid: 4643 + components: + - pos: -8.5,48.5 + parent: 1 + type: Transform +- proto: MachineAnomalyVessel + entities: + - uid: 4660 + components: + - pos: -13.5,46.5 + parent: 1 + type: Transform +- proto: MachineAPE + entities: + - uid: 4661 + components: + - pos: -13.5,45.5 + parent: 1 + type: Transform + - uid: 4662 + components: + - pos: -13.5,44.5 + parent: 1 + type: Transform +- proto: MachineArtifactAnalyzer + entities: + - uid: 4622 + components: + - pos: -4.5,46.5 + parent: 1 + type: Transform +- proto: MachineFrame + entities: + - uid: 4736 + components: + - pos: -3.5,40.5 + parent: 1 + type: Transform + - uid: 12813 + components: + - pos: 30.5,-41.5 + parent: 1 + type: Transform + - uid: 12814 + components: + - pos: 30.5,-40.5 + parent: 1 + type: Transform + - uid: 16367 + components: + - pos: 5.5,-18.5 + parent: 1 + type: Transform + - uid: 22889 + components: + - pos: -27.5,-16.5 + parent: 1 + type: Transform + - uid: 22890 + components: + - pos: -27.5,-15.5 + parent: 1 + type: Transform + - uid: 22909 + components: + - pos: -7.5,-45.5 + parent: 1 + type: Transform +- proto: MachineFrameDestroyed + entities: + - uid: 9998 + components: + - pos: -11.5,23.5 + parent: 1 + type: Transform + - uid: 12906 + components: + - pos: 33.5,-42.5 + parent: 1 + type: Transform + - uid: 15938 + components: + - pos: 12.5,52.5 + parent: 1 + type: Transform + - uid: 22657 + components: + - pos: 93.5,-15.5 + parent: 1 + type: Transform + - uid: 23510 + components: + - pos: 46.5,16.5 + parent: 1 + type: Transform +- proto: MachineParticleAcceleratorEndCapCircuitboard + entities: + - uid: 24539 + components: + - rot: -1.5707963267948966 rad + pos: -74.26379,9.621273 + parent: 1 + type: Transform +- proto: MachineParticleAcceleratorFuelChamberCircuitboard + entities: + - uid: 24540 + components: + - rot: -1.5707963267948966 rad + pos: -74.54504,9.590001 + parent: 1 + type: Transform +- proto: MachineParticleAcceleratorPowerBoxCircuitboard + entities: + - uid: 24541 + components: + - rot: -1.5707963267948966 rad + pos: -75.31066,9.590001 + parent: 1 + type: Transform +- proto: MagicDiceBag + entities: + - uid: 3889 + components: + - pos: 33.83647,-14.32906 + parent: 1 + type: Transform +- proto: MailingUnit + entities: + - uid: 3247 + components: + - pos: 10.5,14.5 + parent: 1 + type: Transform + - uid: 3877 + components: + - pos: 3.5,42.5 + parent: 1 + type: Transform + - uid: 5925 + components: + - pos: -43.5,3.5 + parent: 1 + type: Transform + - uid: 7141 + components: + - pos: -14.5,0.5 + parent: 1 + type: Transform + - tag: Mailing Room + type: MailingUnit + - config: + tag: Mailing Room + type: Configuration + - uid: 9595 + components: + - pos: 109.5,7.5 + parent: 1 + type: Transform + - uid: 10350 + components: + - pos: 72.5,-12.5 + parent: 1 + type: Transform + - tag: Chemistry Lab + type: MailingUnit + - config: + tag: Chemistry Lab + type: Configuration + - uid: 14451 + components: + - pos: -7.5,20.5 + parent: 1 + type: Transform + - uid: 21578 + components: + - pos: -52.5,-20.5 + parent: 1 + type: Transform + - uid: 21695 + components: + - pos: 14.5,-46.5 + parent: 1 + type: Transform + - uid: 21832 + components: + - pos: 39.5,-4.5 + parent: 1 + type: Transform + - uid: 21833 + components: + - pos: -11.5,21.5 + parent: 1 + type: Transform + - uid: 21834 + components: + - pos: 58.5,2.5 + parent: 1 + type: Transform +- proto: MailingUnitElectronics + entities: + - uid: 2137 + components: + - pos: -18.490353,0.55942345 + parent: 1 + type: Transform +- proto: MailTeleporter + entities: + - uid: 2064 + components: + - pos: -15.5,0.5 + parent: 1 + type: Transform +- proto: MaintenanceFluffSpawner + entities: + - uid: 2749 + components: + - pos: -29.5,-12.5 + parent: 1 + type: Transform + - uid: 3821 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,-3.5 + parent: 1 + type: Transform + - uid: 5239 + components: + - pos: 16.5,4.5 + parent: 1 + type: Transform + - uid: 7557 + components: + - pos: 15.5,-10.5 + parent: 1 + type: Transform + - uid: 7561 + components: + - pos: 17.5,-13.5 + parent: 1 + type: Transform + - uid: 9292 + components: + - rot: 3.141592653589793 rad + pos: -13.5,14.5 + parent: 1 + type: Transform + - uid: 10056 + components: + - pos: -3.5,-39.5 + parent: 1 + type: Transform + - uid: 10057 + components: + - pos: 4.5,-35.5 + parent: 1 + type: Transform + - uid: 11188 + components: + - pos: -20.5,14.5 + parent: 1 + type: Transform + - uid: 11521 + components: + - pos: -1.5,-44.5 + parent: 1 + type: Transform + - uid: 12453 + components: + - pos: -3.5,26.5 + parent: 1 + type: Transform + - uid: 22656 + components: + - rot: 3.141592653589793 rad + pos: 91.5,-19.5 + parent: 1 + type: Transform + - uid: 23493 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,27.5 + parent: 1 + type: Transform + - uid: 24327 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 + type: Transform +- proto: MaintenancePlantSpawner + entities: + - uid: 1079 + components: + - pos: -1.5,20.5 + parent: 1 + type: Transform + - uid: 13923 + components: + - pos: -11.5,-36.5 + parent: 1 + type: Transform + - uid: 23940 + components: + - pos: 50.5,26.5 + parent: 1 + type: Transform + - uid: 23941 + components: + - pos: 54.5,40.5 + parent: 1 + type: Transform + - uid: 23942 + components: + - pos: 57.5,37.5 + parent: 1 + type: Transform + - uid: 23944 + components: + - pos: 13.5,52.5 + parent: 1 + type: Transform + - uid: 23945 + components: + - pos: -26.5,44.5 + parent: 1 + type: Transform + - uid: 23946 + components: + - pos: -33.5,21.5 + parent: 1 + type: Transform + - uid: 23948 + components: + - pos: -25.5,-18.5 + parent: 1 + type: Transform + - uid: 23949 + components: + - pos: -23.5,-9.5 + parent: 1 + type: Transform + - uid: 23951 + components: + - pos: 51.5,-19.5 + parent: 1 + type: Transform + - uid: 23952 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 24772 + components: + - pos: -62.5,-10.5 + parent: 1 + type: Transform + - uid: 25147 + components: + - pos: -44.5,-21.5 + parent: 1 + type: Transform +- proto: MaintenanceToolSpawner + entities: + - uid: 1782 + components: + - rot: 3.141592653589793 rad + pos: -13.5,43.5 + parent: 1 + type: Transform + - uid: 7709 + components: + - pos: 45.5,-12.5 + parent: 1 + type: Transform + - uid: 9523 + components: + - pos: -9.5,-14.5 + parent: 1 + type: Transform + - uid: 11208 + components: + - pos: -6.5,29.5 + parent: 1 + type: Transform + - uid: 11600 + components: + - pos: -47.5,4.5 + parent: 1 + type: Transform + - uid: 12244 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-43.5 + parent: 1 + type: Transform + - uid: 12406 + components: + - pos: -10.5,12.5 + parent: 1 + type: Transform + - uid: 12407 + components: + - pos: -11.5,12.5 + parent: 1 + type: Transform + - uid: 12465 + components: + - pos: -2.5,26.5 + parent: 1 + type: Transform + - uid: 13922 + components: + - pos: -9.5,-39.5 + parent: 1 + type: Transform + - uid: 15736 + components: + - pos: -35.5,-2.5 + parent: 1 + type: Transform + - uid: 15856 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,30.5 + parent: 1 + type: Transform + - uid: 15861 + components: + - pos: -11.5,26.5 + parent: 1 + type: Transform + - uid: 15932 + components: + - rot: 3.141592653589793 rad + pos: -23.5,39.5 + parent: 1 + type: Transform + - uid: 16268 + components: + - rot: 3.141592653589793 rad + pos: 106.5,-7.5 + parent: 1 + type: Transform + - uid: 16355 + components: + - pos: 25.5,-19.5 + parent: 1 + type: Transform + - uid: 22589 + components: + - pos: 37.5,-29.5 + parent: 1 + type: Transform + - uid: 22630 + components: + - rot: -1.5707963267948966 rad + pos: 114.5,8.5 + parent: 1 + type: Transform + - uid: 22654 + components: + - rot: 3.141592653589793 rad + pos: 89.5,-19.5 + parent: 1 + type: Transform + - uid: 23429 + components: + - pos: 26.5,29.5 + parent: 1 + type: Transform +- proto: MaintenanceWeaponSpawner + entities: + - uid: 9524 + components: + - pos: -7.5,-15.5 + parent: 1 + type: Transform + - uid: 12328 + components: + - pos: -13.5,-31.5 + parent: 1 + type: Transform + - uid: 13921 + components: + - pos: -9.5,-36.5 + parent: 1 + type: Transform + - uid: 16287 + components: + - pos: 89.5,-14.5 + parent: 1 + type: Transform + - uid: 16738 + components: + - pos: 89.5,22.5 + parent: 1 + type: Transform + - uid: 22655 + components: + - rot: 3.141592653589793 rad + pos: 90.5,-19.5 + parent: 1 + type: Transform + - uid: 23930 + components: + - pos: 45.5,-13.5 + parent: 1 + type: Transform + - uid: 24771 + components: + - rot: 3.141592653589793 rad + pos: -62.5,-18.5 + parent: 1 + type: Transform +- proto: Matchbox + entities: + - uid: 1133 + components: + - pos: 3.346448,25.808071 + parent: 1 + type: Transform +- proto: Matchstick + entities: + - uid: 17291 + components: + - pos: 40.22946,-38.415504 + parent: 1 + type: Transform +- proto: MatchstickSpent + entities: + - uid: 3837 + components: + - rot: 1.5707963267948966 rad + pos: -35.33997,34.184677 + parent: 1 + type: Transform + - uid: 3840 + components: + - rot: 3.141592653589793 rad + pos: -35.600388,34.747574 + parent: 1 + type: Transform +- proto: MaterialCardboard + entities: + - uid: 2139 + components: + - pos: -16.499727,-4.982968 + parent: 1 + type: Transform +- proto: MaterialCardboard1 + entities: + - uid: 9518 + components: + - pos: -9.402857,-15.567858 + parent: 1 + type: Transform + - uid: 9519 + components: + - pos: -9.39244,-15.223868 + parent: 1 + type: Transform + - uid: 12417 + components: + - pos: 35.350094,-38.14863 + parent: 1 + type: Transform + - uid: 12418 + components: + - pos: 35.579258,-38.64898 + parent: 1 + type: Transform + - uid: 16302 + components: + - pos: 21.380598,25.45512 + parent: 1 + type: Transform + - uid: 16303 + components: + - pos: 21.46393,25.621902 + parent: 1 + type: Transform + - uid: 16304 + components: + - pos: 21.40143,25.475967 + parent: 1 + type: Transform +- proto: MaterialCloth + entities: + - uid: 2587 + components: + - pos: 1.4969897,-0.3486898 + parent: 1 + type: Transform +- proto: MaterialDiamond1 + entities: + - uid: 9568 + components: + - pos: 102.487114,-1.315894 + parent: 1 + type: Transform +- proto: MaterialDurathread + entities: + - uid: 2588 + components: + - pos: 1.3323683,-1.4262455 + parent: 1 + type: Transform +- proto: MaterialReclaimer + entities: + - uid: 4115 + components: + - pos: -19.5,16.5 + parent: 1 + type: Transform +- proto: MaterialWoodPlank + entities: + - uid: 1973 + components: + - pos: -3.6874166,-6.6984277 + parent: 1 + type: Transform +- proto: MaterialWoodPlank1 + entities: + - uid: 2759 + components: + - rot: -1.5707963267948966 rad + pos: -13.397758,-34.477997 + parent: 1 + type: Transform + - uid: 5943 + components: + - pos: 37.607994,-30.399096 + parent: 1 + type: Transform + - uid: 12475 + components: + - rot: -1.5707963267948966 rad + pos: -37.609943,-14.37166 + parent: 1 + type: Transform + - uid: 12476 + components: + - rot: -1.5707963267948966 rad + pos: -37.432858,-14.475901 + parent: 1 + type: Transform + - uid: 12477 + components: + - rot: -1.5707963267948966 rad + pos: -37.432858,-14.382085 + parent: 1 + type: Transform + - uid: 13917 + components: + - pos: -10.277368,-37.29628 + parent: 1 + type: Transform + - uid: 13918 + components: + - rot: -1.5707963267948966 rad + pos: -12.548201,-37.42137 + parent: 1 + type: Transform + - uid: 13919 + components: + - rot: 3.141592653589793 rad + pos: -12.183618,-37.40052 + parent: 1 + type: Transform + - uid: 15815 + components: + - rot: -1.5707963267948966 rad + pos: -57.47865,-6.520467 + parent: 1 + type: Transform + - uid: 15816 + components: + - rot: -1.5707963267948966 rad + pos: -57.207813,-6.58301 + parent: 1 + type: Transform + - uid: 15817 + components: + - rot: -1.5707963267948966 rad + pos: -56.46823,-6.520467 + parent: 1 + type: Transform + - uid: 15914 + components: + - rot: 1.5707963267948966 rad + pos: -25.413834,45.34011 + parent: 1 + type: Transform + - uid: 15915 + components: + - pos: -25.413834,45.34011 + parent: 1 + type: Transform + - uid: 15916 + components: + - pos: -25.388521,45.34011 + parent: 1 + type: Transform + - uid: 15917 + components: + - pos: -25.388521,45.34011 + parent: 1 + type: Transform + - uid: 15918 + components: + - rot: -1.5707963267948966 rad + pos: -25.388521,45.34011 + parent: 1 + type: Transform + - uid: 15919 + components: + - rot: -1.5707963267948966 rad + pos: -25.388521,45.34011 + parent: 1 + type: Transform + - uid: 15920 + components: + - rot: -1.5707963267948966 rad + pos: -25.388521,45.34011 + parent: 1 + type: Transform + - uid: 15921 + components: + - rot: -1.5707963267948966 rad + pos: -25.388521,45.34011 + parent: 1 + type: Transform + - uid: 15922 + components: + - rot: -1.5707963267948966 rad + pos: -25.388521,45.34011 + parent: 1 + type: Transform + - uid: 16599 + components: + - pos: -13.585258,-34.50927 + parent: 1 + type: Transform + - uid: 16600 + components: + - rot: -1.5707963267948966 rad + pos: -13.137341,-34.33206 + parent: 1 + type: Transform + - uid: 16756 + components: + - rot: -1.5707963267948966 rad + pos: -13.5019245,-34.477997 + parent: 1 + type: Transform + - uid: 22586 + components: + - rot: -1.5707963267948966 rad + pos: 37.410076,-30.440792 + parent: 1 + type: Transform + - uid: 22587 + components: + - rot: -1.5707963267948966 rad + pos: 37.52466,-30.597149 + parent: 1 + type: Transform + - uid: 23497 + components: + - rot: -1.5707963267948966 rad + pos: 42.791756,28.48587 + parent: 1 + type: Transform + - uid: 23498 + components: + - rot: 3.141592653589793 rad + pos: 42.823006,28.319088 + parent: 1 + type: Transform + - uid: 23499 + components: + - rot: 3.141592653589793 rad + pos: 43.281338,28.610956 + parent: 1 + type: Transform + - uid: 24769 + components: + - pos: -62.453392,-17.316093 + parent: 1 + type: Transform + - uid: 24770 + components: + - rot: -1.5707963267948966 rad + pos: -62.661724,-17.722626 + parent: 1 + type: Transform +- proto: MatterBinStockPart + entities: + - uid: 12903 + components: + - pos: 32.719513,-38.3468 + parent: 1 + type: Transform +- proto: Mattress + entities: + - uid: 3268 + components: + - pos: 32.5,27.5 + parent: 1 + type: Transform + - uid: 13912 + components: + - pos: -10.5,-38.5 + parent: 1 + type: Transform + - uid: 13913 + components: + - pos: -12.5,-36.5 + parent: 1 + type: Transform + - uid: 13914 + components: + - pos: -11.5,-39.5 + parent: 1 + type: Transform + - uid: 16339 + components: + - pos: 29.5,-27.5 + parent: 1 + type: Transform +- proto: MedalCase + entities: + - uid: 1644 + components: + - rot: -1.5707963267948966 rad + pos: 99.598785,-2.5117812 + parent: 1 + type: Transform +- proto: MedicalBed + entities: + - uid: 1270 + components: + - pos: 89.5,-5.5 + parent: 1 + type: Transform + - uid: 3163 + components: + - pos: 60.5,-7.5 + parent: 1 + type: Transform + - uid: 3510 + components: + - pos: 60.5,-8.5 + parent: 1 + type: Transform + - uid: 3511 + components: + - pos: 60.5,-10.5 + parent: 1 + type: Transform + - uid: 3516 + components: + - pos: 60.5,-9.5 + parent: 1 + type: Transform + - uid: 6855 + components: + - pos: -20.5,12.5 + parent: 1 + type: Transform + - uid: 6856 + components: + - pos: -20.5,11.5 + parent: 1 + type: Transform + - uid: 6857 + components: + - pos: -20.5,10.5 + parent: 1 + type: Transform + - uid: 12756 + components: + - pos: 92.5,-6.5 + parent: 1 + type: Transform + - uid: 12757 + components: + - pos: 88.5,-6.5 + parent: 1 + type: Transform + - uid: 12781 + components: + - pos: 91.5,-5.5 + parent: 1 + type: Transform + - uid: 25182 + components: + - pos: 77.5,8.5 + parent: 1 + type: Transform +- proto: MedicalScanner + entities: + - uid: 5634 + components: + - pos: 71.5,-6.5 + parent: 1 + type: Transform + - links: + - 5635 + type: DeviceLinkSink +- proto: MedicalScannerMachineCircuitboard + entities: + - uid: 6608 + components: + - rot: -1.5707963267948966 rad + pos: -45.55238,-0.3890481 + parent: 1 + type: Transform +- proto: MedicalTechFab + entities: + - uid: 7621 + components: + - pos: 83.5,-11.5 + parent: 1 + type: Transform +- proto: MedkitAdvancedFilled + entities: + - uid: 7364 + components: + - pos: 65.3551,-13.186854 + parent: 1 + type: Transform + - uid: 7672 + components: + - pos: 86.54591,-5.5649447 + parent: 1 + type: Transform + - uid: 9857 + components: + - pos: 109.521515,11.085428 + parent: 1 + type: Transform + - uid: 12527 + components: + - pos: -13.545596,47.612984 + parent: 1 + type: Transform +- proto: MedkitBruteFilled + entities: + - uid: 6872 + components: + - pos: -20.589258,9.726988 + parent: 1 + type: Transform + - uid: 7362 + components: + - pos: 65.59469,-13.509995 + parent: 1 + type: Transform +- proto: MedkitBurnFilled + entities: + - uid: 7363 + components: + - pos: 65.490524,-13.384909 + parent: 1 + type: Transform + - uid: 25285 + components: + - pos: 104.43841,27.457258 + parent: 1 + type: Transform +- proto: MedkitCombatFilled + entities: + - uid: 7673 + components: + - pos: 86.52508,-6.2841945 + parent: 1 + type: Transform +- proto: MedkitFilled + entities: + - uid: 6873 + components: + - pos: -20.349676,9.51851 + parent: 1 + type: Transform + - uid: 22319 + components: + - pos: -3.3814368,-3.6619654 + parent: 1 + type: Transform +- proto: MedkitOxygenFilled + entities: + - uid: 7367 + components: + - pos: 65.396774,-12.655235 + parent: 1 + type: Transform + - uid: 25287 + components: + - pos: 104.41757,27.686584 + parent: 1 + type: Transform +- proto: MedkitRadiationFilled + entities: + - uid: 7365 + components: + - pos: 65.6676,-12.957528 + parent: 1 + type: Transform + - uid: 24647 + components: + - pos: -75.51707,9.625714 + parent: 1 + type: Transform +- proto: MedkitToxinFilled + entities: + - uid: 7366 + components: + - pos: 65.521774,-12.822018 + parent: 1 + type: Transform +- proto: MegaSprayBottle + entities: + - uid: 15937 + components: + - rot: -1.5707963267948966 rad + pos: -30.419695,34.252853 + parent: 1 + type: Transform +- proto: MercuryChemistryBottle + entities: + - uid: 5776 + components: + - pos: 71.03301,-10.223683 + parent: 1 + type: Transform +- proto: MetalDoor + entities: + - uid: 4367 + components: + - pos: 29.5,7.5 + parent: 1 + type: Transform + - uid: 4368 + components: + - pos: 31.5,7.5 + parent: 1 + type: Transform + - uid: 4369 + components: + - pos: 33.5,7.5 + parent: 1 + type: Transform + - uid: 4370 + components: + - pos: 35.5,7.5 + parent: 1 + type: Transform +- proto: MicroManipulatorStockPart + entities: + - uid: 6584 + components: + - pos: -61.214928,-1.0935493 + parent: 1 + type: Transform + - uid: 6585 + components: + - pos: -61.79826,-0.42641914 + parent: 1 + type: Transform + - uid: 7336 + components: + - pos: 8.93961,50.639496 + parent: 1 + type: Transform + - uid: 15944 + components: + - rot: 1.5707963267948966 rad + pos: 12.899838,52.7772 + parent: 1 + type: Transform + - uid: 16378 + components: + - rot: 3.141592653589793 rad + pos: 6.7602305,-17.79737 + parent: 1 + type: Transform +- proto: MicrophoneInstrument + entities: + - uid: 2896 + components: + - pos: 35.50417,24.580755 + parent: 1 + type: Transform + - uid: 7370 + components: + - pos: 26.906532,-16.89667 + parent: 1 + type: Transform + - uid: 23928 + components: + - pos: 43.601128,-13.489352 + parent: 1 + type: Transform +- proto: MinimoogInstrument + entities: + - uid: 6972 + components: + - rot: 3.141592653589793 rad + pos: 41.5,-2.5 + parent: 1 + type: Transform +- proto: Mirror + entities: + - uid: 1016 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,24.5 + parent: 1 + type: Transform + - uid: 1846 + components: + - pos: 0.5,-13.5 + parent: 1 + type: Transform + - uid: 3215 + components: + - pos: 15.5,6.5 + parent: 1 + type: Transform + - uid: 3216 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-9.5 + parent: 1 + type: Transform + - uid: 3371 + components: + - pos: 32.5,24.5 + parent: 1 + type: Transform + - uid: 6832 + components: + - pos: -52.5,-26.5 + parent: 1 + type: Transform + - uid: 6833 + components: + - pos: -50.5,-26.5 + parent: 1 + type: Transform + - uid: 7572 + components: + - pos: 16.5,-9.5 + parent: 1 + type: Transform + - uid: 7630 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,-3.5 + parent: 1 + type: Transform + - uid: 10342 + components: + - pos: 66.5,-16.5 + parent: 1 + type: Transform + - uid: 17366 + components: + - pos: 30.5,7.5 + parent: 1 + type: Transform + - uid: 17367 + components: + - pos: 34.5,7.5 + parent: 1 + type: Transform +- proto: MonkeyCubeBox + entities: + - uid: 4675 + components: + - pos: 0.85536563,47.597137 + parent: 1 + type: Transform +- proto: MonkeyCubeWrapped + entities: + - uid: 12962 + components: + - pos: 26.460775,-35.455452 + parent: 1 + type: Transform + - uid: 22919 + components: + - rot: 3.141592653589793 rad + pos: -15.115506,-44.120613 + parent: 1 + type: Transform + - uid: 22920 + components: + - rot: 1.5707963267948966 rad + pos: -15.813422,-46.39302 + parent: 1 + type: Transform + - uid: 22921 + components: + - rot: 1.5707963267948966 rad + pos: -15.188422,-46.882942 + parent: 1 + type: Transform +- proto: MopBucket + entities: + - uid: 2872 + components: + - pos: 54.41774,7.514899 + parent: 1 + type: Transform + - uid: 15968 + components: + - pos: 28.927301,50.862206 + parent: 1 + type: Transform +- proto: MopBucketFull + entities: + - uid: 5973 + components: + - pos: 55.30182,-17.216158 + parent: 1 + type: Transform + - solutions: + bucket: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 600 + reagents: + - data: null + ReagentId: Water + Quantity: 6 + type: SolutionContainerManager +- proto: MopItem + entities: + - uid: 15969 + components: + - rot: 3.141592653589793 rad + pos: 29.166883,50.476524 + parent: 1 + type: Transform +- proto: Morgue + entities: + - uid: 4894 + components: + - rot: 1.5707963267948966 rad + pos: 60.5,-15.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4895 + type: ContainerContainer + - uid: 6153 + components: + - rot: 3.141592653589793 rad + pos: 63.5,-17.5 + parent: 1 + type: Transform + - uid: 6605 + components: + - rot: 3.141592653589793 rad + pos: 62.5,-17.5 + parent: 1 + type: Transform + - uid: 21456 + components: + - rot: 1.5707963267948966 rad + pos: 60.5,-16.5 + parent: 1 + type: Transform +- proto: MouseTimedSpawner + entities: + - uid: 11209 + components: + - pos: -5.5,29.5 + parent: 1 + type: Transform + - uid: 11219 + components: + - pos: 35.5,-38.5 + parent: 1 + type: Transform + - uid: 12794 + components: + - pos: -0.5,-32.5 + parent: 1 + type: Transform +- proto: Mousetrap + entities: + - uid: 16315 + components: + - pos: 22.434898,-13.551275 + parent: 1 + type: Transform + - uid: 22755 + components: + - rot: -1.5707963267948966 rad + pos: -32.686188,41.03383 + parent: 1 + type: Transform +- proto: Multitool + entities: + - uid: 2562 + components: + - pos: -43.70277,4.7097535 + parent: 1 + type: Transform + - uid: 2589 + components: + - pos: 1.6438266,-1.3720415 + parent: 1 + type: Transform + - uid: 4353 + components: + - rot: -1.5707963267948966 rad + pos: 15.602526,-17.512112 + parent: 1 + type: Transform + - uid: 4633 + components: + - pos: -1.6614271,47.64081 + parent: 1 + type: Transform + - uid: 6453 + components: + - rot: -1.5707963267948966 rad + pos: -63.493557,30.22321 + parent: 1 + type: Transform + - uid: 15819 + components: + - pos: -61.104473,14.268036 + parent: 1 + type: Transform + - uid: 23468 + components: + - rot: -1.5707963267948966 rad + pos: -16.490408,38.664 + parent: 1 + type: Transform + - uid: 23525 + components: + - pos: -5.794618,12.246648 + parent: 1 + type: Transform + - uid: 23882 + components: + - rot: -1.5707963267948966 rad + pos: 80.6783,-8.160163 + parent: 1 + type: Transform + - uid: 25433 + components: + - rot: -1.5707963267948966 rad + pos: -46.432972,-36.953247 + parent: 1 + type: Transform +- proto: MysteryFigureBox + entities: + - uid: 23926 + components: + - pos: 34.02077,-15.035777 + parent: 1 + type: Transform +- proto: NetworkConfigurator + entities: + - uid: 12250 + components: + - rot: -1.5707963267948966 rad + pos: -4.4945374,-44.31189 + parent: 1 + type: Transform + - uid: 21532 + components: + - pos: -58.494568,-14.372668 + parent: 1 + type: Transform + - uid: 22636 + components: + - rot: 3.141592653589793 rad + pos: 114.122154,7.5594997 + parent: 1 + type: Transform +- proto: NitrogenCanister + entities: + - uid: 2499 + components: + - pos: -51.5,31.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 4333 + components: + - pos: 16.5,-15.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 6786 + components: + - pos: -66.5,1.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 9116 + components: + - pos: 16.5,-21.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 9139 + components: + - pos: 61.5,10.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 12505 + components: + - pos: 3.5,52.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 15849 + components: + - pos: -34.5,24.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 15991 + components: + - pos: -25.5,-8.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 16286 + components: + - pos: 87.5,-17.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 23420 + components: + - pos: -26.5,38.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice +- proto: NitrogenTankFilled + entities: + - uid: 2882 + components: + - pos: 31.588951,27.513235 + parent: 1 + type: Transform + - uid: 8998 + components: + - pos: 97.55305,12.577534 + parent: 1 + type: Transform + - uid: 12468 + components: + - pos: 7.7134757,28.58424 + parent: 1 + type: Transform +- proto: NitrousOxideTankFilled + entities: + - uid: 7665 + components: + - pos: 86.519966,-3.1786256 + parent: 1 + type: Transform +- proto: NoticeBoard + entities: + - uid: 7456 + components: + - pos: 9.5,22.5 + parent: 1 + type: Transform +- proto: NuclearBomb + entities: + - uid: 9582 + components: + - pos: 100.5,-3.5 + parent: 1 + type: Transform +- proto: NuclearBombKeg + entities: + - uid: 3257 + components: + - desc: You probably shouldn't stick around to see if this is armed. It has a tap on the side. (Serves Gin 'n Tonic) + name: nuclear fission explosive (Gin 'n Tonic) + type: MetaData + - pos: 34.5,19.5 + parent: 1 + type: Transform + - solutions: + tank: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 3000 + reagents: + - data: null + ReagentId: GinTonic + Quantity: 500 + type: SolutionContainerManager + - uid: 16766 + components: + - pos: -13.5,-26.5 + parent: 1 + type: Transform + - solutions: + tank: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 3000 + reagents: + - data: null + ReagentId: GargleBlaster + Quantity: 500 + type: SolutionContainerManager +- proto: OatBushel + entities: + - uid: 1086 + components: + - pos: -0.57993686,19.644781 + parent: 1 + type: Transform + - uid: 1089 + components: + - pos: -0.4653536,19.613508 + parent: 1 + type: Transform + - uid: 4279 + components: + - pos: 30.565496,-0.3733579 + parent: 1 + type: Transform +- proto: OilJarCorn + entities: + - uid: 1165 + components: + - pos: 16.310617,-43.202896 + parent: 1 + type: Transform + - uid: 25198 + components: + - pos: 6.236051,24.236565 + parent: 1 + type: Transform +- proto: Ointment + entities: + - uid: 2805 + components: + - pos: 35.516792,26.51845 + parent: 1 + type: Transform + - uid: 4695 + components: + - rot: -1.5707963267948966 rad + pos: 0.34858167,47.56797 + parent: 1 + type: Transform +- proto: Omnitool + entities: + - uid: 9570 + components: + - rot: 3.141592653589793 rad + pos: 99.63294,-3.4110994 + parent: 1 + type: Transform +- proto: OperatingTable + entities: + - uid: 7658 + components: + - pos: 85.5,-4.5 + parent: 1 + type: Transform + - uid: 15954 + components: + - pos: 25.5,49.5 + parent: 1 + type: Transform +- proto: Oracle + entities: + - uid: 3861 + components: + - pos: 15.5,32.5 + parent: 1 + type: Transform +- proto: OreProcessor + entities: + - uid: 3986 + components: + - pos: -45.5,-42.5 + parent: 1 + type: Transform +- proto: OrganDwarfStomach + entities: + - uid: 5433 + components: + - flags: InContainer + type: MetaData + - parent: 5430 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: OrganHumanAppendix + entities: + - uid: 5432 + components: + - flags: InContainer + type: MetaData + - parent: 5430 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: OrganHumanHeart + entities: + - uid: 5434 + components: + - flags: InContainer + type: MetaData + - parent: 5430 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: OrganHumanTongue + entities: + - uid: 5431 + components: + - flags: InContainer + type: MetaData + - parent: 5430 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: OxygenCanister + entities: + - uid: 2498 + components: + - pos: -53.5,31.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 4332 + components: + - pos: 15.5,-15.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 6785 + components: + - pos: -66.5,6.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 9115 + components: + - pos: 7.5,-21.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 9138 + components: + - pos: 60.5,0.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 12319 + components: + - pos: -14.5,-31.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 16092 + components: + - pos: 19.5,52.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 16731 + components: + - pos: 91.5,15.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 25244 + components: + - pos: 105.5,28.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 25617 + components: + - pos: -47.5,-24.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice +- proto: PackPaperRollingFilters + entities: + - uid: 5388 + components: + - flags: InContainer + type: MetaData + - parent: 5383 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 22904 + components: + - pos: -25.141636,-16.391075 + parent: 1 + type: Transform +- proto: PaintingEmpty + entities: + - uid: 16741 + components: + - pos: -21.5,-27.5 + parent: 1 + type: Transform + - uid: 16745 + components: + - pos: -20.5,-27.5 + parent: 1 + type: Transform +- proto: PaintingMonkey + entities: + - uid: 11236 + components: + - pos: 34.5,18.5 + parent: 1 + type: Transform +- proto: PaintingMothBigCatch + entities: + - uid: 16253 + components: + - pos: 52.5,-14.5 + parent: 1 + type: Transform +- proto: PaintingSaturn + entities: + - uid: 7375 + components: + - pos: 33.5,-12.5 + parent: 1 + type: Transform +- proto: PaintingSkeletonCigarette + entities: + - uid: 2791 + components: + - pos: 38.5,18.5 + parent: 1 + type: Transform +- proto: PaintingTheScream + entities: + - uid: 13789 + components: + - pos: 20.5,-31.5 + parent: 1 + type: Transform +- proto: Paper + entities: + - uid: 574 + components: + - pos: 62.296444,8.678612 + parent: 1 + type: Transform + - uid: 580 + components: + - pos: 62.296444,8.678612 + parent: 1 + type: Transform + - uid: 945 + components: + - pos: 62.296444,8.678612 + parent: 1 + type: Transform + - uid: 1344 + components: + - pos: 62.296444,8.678612 + parent: 1 + type: Transform + - uid: 1375 + components: + - pos: 62.296444,8.678612 + parent: 1 + type: Transform + - uid: 1418 + components: + - pos: 62.296444,8.678612 + parent: 1 + type: Transform + - uid: 2256 + components: + - pos: 62.296444,8.678612 + parent: 1 + type: Transform + - uid: 2647 + components: + - rot: 3.141592653589793 rad + pos: 45.59716,-0.3914528 + parent: 1 + type: Transform + - uid: 2648 + components: + - rot: 3.141592653589793 rad + pos: 45.59716,-0.3914528 + parent: 1 + type: Transform + - uid: 2649 + components: + - rot: 3.141592653589793 rad + pos: 45.59716,-0.3914528 + parent: 1 + type: Transform + - uid: 2650 + components: + - rot: 3.141592653589793 rad + pos: 45.59716,-0.3914528 + parent: 1 + type: Transform + - uid: 2651 + components: + - rot: 3.141592653589793 rad + pos: 45.59716,-0.3914528 + parent: 1 + type: Transform + - uid: 2652 + components: + - rot: 3.141592653589793 rad + pos: 45.59716,-0.3914528 + parent: 1 + type: Transform + - uid: 2653 + components: + - rot: 3.141592653589793 rad + pos: 45.59716,-0.3914528 + parent: 1 + type: Transform + - uid: 2654 + components: + - rot: 3.141592653589793 rad + pos: 45.59716,-0.3914528 + parent: 1 + type: Transform + - uid: 3480 + components: + - pos: 62.296444,8.678612 + parent: 1 + type: Transform + - uid: 3771 + components: + - pos: 62.296444,8.678612 + parent: 1 + type: Transform + - uid: 3777 + components: + - pos: 62.296444,8.678612 + parent: 1 + type: Transform + - uid: 3780 + components: + - pos: 62.296444,8.678612 + parent: 1 + type: Transform + - uid: 3791 + components: + - pos: 62.296444,8.678612 + parent: 1 + type: Transform + - uid: 3802 + components: + - pos: 62.296444,8.678612 + parent: 1 + type: Transform + - uid: 5374 + components: + - flags: InContainer + type: MetaData + - parent: 5373 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5375 + components: + - flags: InContainer + type: MetaData + - parent: 5373 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5376 + components: + - flags: InContainer + type: MetaData + - parent: 5373 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5377 + components: + - flags: InContainer + type: MetaData + - parent: 5373 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5378 + components: + - flags: InContainer + type: MetaData + - parent: 5373 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5379 + components: + - flags: InContainer + type: MetaData + - parent: 5373 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5384 + components: + - flags: InContainer + type: MetaData + - parent: 5383 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5385 + components: + - flags: InContainer + type: MetaData + - parent: 5383 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5386 + components: + - flags: InContainer + type: MetaData + - parent: 5383 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5387 + components: + - flags: InContainer + type: MetaData + - parent: 5383 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5389 + components: + - flags: InContainer + type: MetaData + - parent: 5383 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5393 + components: + - flags: InContainer + type: MetaData + - parent: 5392 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5394 + components: + - flags: InContainer + type: MetaData + - parent: 5392 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5395 + components: + - flags: InContainer + type: MetaData + - parent: 5392 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5396 + components: + - flags: InContainer + type: MetaData + - parent: 5392 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5397 + components: + - flags: InContainer + type: MetaData + - parent: 5392 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5398 + components: + - flags: InContainer + type: MetaData + - parent: 5392 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5406 + components: + - flags: InContainer + type: MetaData + - parent: 5402 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5407 + components: + - flags: InContainer + type: MetaData + - parent: 5402 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5408 + components: + - flags: InContainer + type: MetaData + - parent: 5402 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5409 + components: + - flags: InContainer + type: MetaData + - parent: 5402 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5410 + components: + - flags: InContainer + type: MetaData + - parent: 5402 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5412 + components: + - flags: InContainer + type: MetaData + - parent: 5411 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5413 + components: + - flags: InContainer + type: MetaData + - parent: 5411 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5414 + components: + - flags: InContainer + type: MetaData + - parent: 5411 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5415 + components: + - flags: InContainer + type: MetaData + - parent: 5411 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5416 + components: + - flags: InContainer + type: MetaData + - parent: 5411 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5417 + components: + - flags: InContainer + type: MetaData + - parent: 5411 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 10008 + components: + - rot: -1.5707963267948966 rad + pos: 104.42226,8.248736 + parent: 1 + type: Transform + - uid: 10009 + components: + - rot: -1.5707963267948966 rad + pos: 104.42226,8.248736 + parent: 1 + type: Transform + - uid: 10010 + components: + - rot: -1.5707963267948966 rad + pos: 104.42226,8.248736 + parent: 1 + type: Transform + - uid: 10011 + components: + - rot: -1.5707963267948966 rad + pos: 104.42226,8.248736 + parent: 1 + type: Transform + - uid: 10012 + components: + - rot: -1.5707963267948966 rad + pos: 104.42226,8.248736 + parent: 1 + type: Transform + - uid: 10013 + components: + - rot: -1.5707963267948966 rad + pos: 104.42226,8.248736 + parent: 1 + type: Transform + - uid: 10014 + components: + - rot: -1.5707963267948966 rad + pos: 104.42226,8.248736 + parent: 1 + type: Transform + - uid: 10015 + components: + - rot: -1.5707963267948966 rad + pos: 104.42226,8.248736 + parent: 1 + type: Transform + - uid: 10016 + components: + - rot: -1.5707963267948966 rad + pos: 104.42226,8.248736 + parent: 1 + type: Transform + - uid: 11704 + components: + - rot: 1.5707963267948966 rad + pos: 36.59077,44.27675 + parent: 1 + type: Transform + - uid: 11706 + components: + - rot: 1.5707963267948966 rad + pos: 36.59077,44.27675 + parent: 1 + type: Transform + - uid: 15747 + components: + - pos: -39.615788,-6.3433766 + parent: 1 + type: Transform + - content: doodles + type: Paper + - uid: 16623 + components: + - pos: -35.582317,7.5685477 + parent: 1 + type: Transform + - uid: 16624 + components: + - pos: -35.582317,7.5685477 + parent: 1 + type: Transform + - uid: 16625 + components: + - pos: -35.582317,7.5685477 + parent: 1 + type: Transform + - uid: 16626 + components: + - pos: -35.582317,7.5685477 + parent: 1 + type: Transform + - uid: 16627 + components: + - pos: -35.582317,7.5685477 + parent: 1 + type: Transform + - uid: 16628 + components: + - pos: -35.582317,7.5685477 + parent: 1 + type: Transform + - uid: 16629 + components: + - pos: -35.582317,7.5685477 + parent: 1 + type: Transform + - uid: 16630 + components: + - pos: -35.582317,7.5685477 + parent: 1 + type: Transform + - uid: 16631 + components: + - pos: -35.582317,7.5685477 + parent: 1 + type: Transform + - uid: 16632 + components: + - pos: -35.582317,7.5685477 + parent: 1 + type: Transform + - uid: 16633 + components: + - pos: -35.582317,7.5685477 + parent: 1 + type: Transform + - uid: 16689 + components: + - rot: 1.5707963267948966 rad + pos: 78.55683,11.402199 + parent: 1 + type: Transform + - uid: 16690 + components: + - rot: 1.5707963267948966 rad + pos: 78.55683,11.402199 + parent: 1 + type: Transform + - uid: 16691 + components: + - rot: 1.5707963267948966 rad + pos: 78.55683,11.402199 + parent: 1 + type: Transform + - uid: 16692 + components: + - rot: 1.5707963267948966 rad + pos: 78.55683,11.402199 + parent: 1 + type: Transform + - uid: 16693 + components: + - rot: 1.5707963267948966 rad + pos: 78.55683,11.402199 + parent: 1 + type: Transform + - uid: 16694 + components: + - rot: 1.5707963267948966 rad + pos: 78.55683,11.402199 + parent: 1 + type: Transform + - uid: 16695 + components: + - rot: 1.5707963267948966 rad + pos: 78.55683,11.402199 + parent: 1 + type: Transform + - uid: 16696 + components: + - rot: 1.5707963267948966 rad + pos: 78.55683,11.402199 + parent: 1 + type: Transform + - uid: 16697 + components: + - rot: 1.5707963267948966 rad + pos: 78.55683,11.402199 + parent: 1 + type: Transform + - uid: 16698 + components: + - rot: 1.5707963267948966 rad + pos: 78.55683,11.402199 + parent: 1 + type: Transform + - uid: 16699 + components: + - rot: 1.5707963267948966 rad + pos: 78.55683,11.402199 + parent: 1 + type: Transform + - uid: 16700 + components: + - rot: 1.5707963267948966 rad + pos: 78.55683,11.402199 + parent: 1 + type: Transform + - uid: 16701 + components: + - rot: 1.5707963267948966 rad + pos: 78.55683,11.402199 + parent: 1 + type: Transform + - uid: 16702 + components: + - rot: 1.5707963267948966 rad + pos: 78.55683,11.402199 + parent: 1 + type: Transform + - uid: 16703 + components: + - rot: 1.5707963267948966 rad + pos: 78.55683,11.402199 + parent: 1 + type: Transform + - uid: 16704 + components: + - rot: 1.5707963267948966 rad + pos: 78.55683,11.402199 + parent: 1 + type: Transform + - uid: 16705 + components: + - rot: 1.5707963267948966 rad + pos: 78.55683,11.402199 + parent: 1 + type: Transform + - uid: 16706 + components: + - rot: 1.5707963267948966 rad + pos: 78.55683,11.402199 + parent: 1 + type: Transform + - uid: 16707 + components: + - rot: 1.5707963267948966 rad + pos: 78.55683,11.402199 + parent: 1 + type: Transform + - uid: 16708 + components: + - rot: 1.5707963267948966 rad + pos: 78.55683,11.402199 + parent: 1 + type: Transform + - uid: 16709 + components: + - rot: 1.5707963267948966 rad + pos: 78.55683,11.402199 + parent: 1 + type: Transform + - uid: 16814 + components: + - pos: 66.61638,11.958339 + parent: 1 + type: Transform + - uid: 16815 + components: + - pos: 66.61638,11.958339 + parent: 1 + type: Transform + - uid: 16816 + components: + - pos: 66.61638,11.958339 + parent: 1 + type: Transform + - uid: 16817 + components: + - pos: 66.61638,11.958339 + parent: 1 + type: Transform + - uid: 16818 + components: + - pos: 66.61638,11.958339 + parent: 1 + type: Transform + - uid: 16819 + components: + - pos: 66.61638,11.958339 + parent: 1 + type: Transform + - uid: 16820 + components: + - pos: 66.61638,11.958339 + parent: 1 + type: Transform + - uid: 16821 + components: + - pos: 66.61638,11.958339 + parent: 1 + type: Transform + - uid: 16822 + components: + - pos: 66.61638,11.958339 + parent: 1 + type: Transform + - uid: 16823 + components: + - pos: 66.61638,11.958339 + parent: 1 + type: Transform + - uid: 16824 + components: + - pos: 66.61638,11.958339 + parent: 1 + type: Transform + - uid: 16825 + components: + - pos: 66.61638,11.958339 + parent: 1 + type: Transform + - uid: 18802 + components: + - rot: -1.5707963267948966 rad + pos: 98.335594,2.7913861 + parent: 1 + type: Transform + - uid: 18803 + components: + - rot: -1.5707963267948966 rad + pos: 98.523094,6.2071013 + parent: 1 + type: Transform + - uid: 18804 + components: + - rot: -1.5707963267948966 rad + pos: 98.523094,6.2071013 + parent: 1 + type: Transform + - uid: 18805 + components: + - rot: -1.5707963267948966 rad + pos: 98.523094,6.2071013 + parent: 1 + type: Transform + - uid: 18806 + components: + - rot: -1.5707963267948966 rad + pos: 98.523094,6.2071013 + parent: 1 + type: Transform + - uid: 18807 + components: + - rot: -1.5707963267948966 rad + pos: 98.335594,2.7913861 + parent: 1 + type: Transform + - uid: 18808 + components: + - rot: -1.5707963267948966 rad + pos: 98.335594,2.7913861 + parent: 1 + type: Transform + - uid: 18809 + components: + - rot: -1.5707963267948966 rad + pos: 98.523094,6.2071013 + parent: 1 + type: Transform + - uid: 22751 + components: + - rot: -1.5707963267948966 rad + pos: -29.727852,38.094284 + parent: 1 + type: Transform + - uid: 22752 + components: + - rot: -1.5707963267948966 rad + pos: -29.352852,38.219376 + parent: 1 + type: Transform + - uid: 22753 + components: + - rot: -1.5707963267948966 rad + pos: -29.48827,38.71972 + parent: 1 + type: Transform + - uid: 25573 + components: + - pos: -5.3586574,-3.486621 + parent: 1 + type: Transform + - content: >2- + + Official Nanotrasen Memo: + + + In order to transport resources to the supply distribution center consult the logistics officer to set up a portal between stations. They have been given a handheld teleportation device. + + + -CentComm Logistics Administration + type: Paper + - uid: 25574 + components: + - pos: -44.438667,-28.714724 + parent: 1 + type: Transform + - content: >2- + + Official Nanotrasen Memo: + + + In order to transport resources to the supply distribution center consult the logistics officer to set up a portal between stations. They have been given a handheld teleportation device. + + + -CentComm Logistics Administration + type: Paper + - uid: 25758 + components: + - pos: -54.64198,24.30191 + parent: 1 + type: Transform + - content: >- + Engineering Work Order: #34671 + + + Details: Fix faulty vacuum seals + + + Observations: Seals were cracked and missing in some corners. Atmos technicians were circumventing the air chamber as a quick fix negating the potential for hull breach mitigation. + + + Work Completed: Replaced faulty or missing seals and repressurized. Vacuum tested and works as intended now. + + + Assigned Technician: Araston DePlois + + + Additional Notes: Bypassing the air chamber should no longer be necessary and should only be done under certain circumstances as extra pressure in the chamber is intended to help mitigate instances of significant spacings. + type: Paper +- proto: PaperBin + entities: + - uid: 5810 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-36.5 + parent: 1 + type: Transform + - uid: 16548 + components: + - rot: 3.141592653589793 rad + pos: 59.5,43.5 + parent: 1 + type: Transform + - uid: 22903 + components: + - pos: -24.5,-16.5 + parent: 1 + type: Transform +- proto: PaperBin10 + entities: + - uid: 2012 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 2126 + components: + - pos: 2.5,-11.5 + parent: 1 + type: Transform + - uid: 2557 + components: + - pos: -43.5,6.5 + parent: 1 + type: Transform + - uid: 2856 + components: + - rot: -1.5707963267948966 rad + pos: 37.886787,-11.356559 + parent: 1 + type: Transform + - uid: 2857 + components: + - pos: 41.78862,-11.365896 + parent: 1 + type: Transform + - uid: 3887 + components: + - pos: 31.5,-16.5 + parent: 1 + type: Transform + - uid: 4436 + components: + - pos: 107.5,10.5 + parent: 1 + type: Transform + - uid: 4706 + components: + - pos: 5.5,42.5 + parent: 1 + type: Transform + - uid: 5741 + components: + - pos: 74.5,-3.5 + parent: 1 + type: Transform + - uid: 5895 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-37.5 + parent: 1 + type: Transform + - uid: 6431 + components: + - pos: -45.5,22.5 + parent: 1 + type: Transform + - uid: 6600 + components: + - rot: 3.141592653589793 rad + pos: -54.5,-0.5 + parent: 1 + type: Transform + - uid: 6771 + components: + - pos: -57.566612,-21.396206 + parent: 1 + type: Transform + - uid: 7142 + components: + - rot: -1.5707963267948966 rad + pos: 72.5,19.5 + parent: 1 + type: Transform + - uid: 7143 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,15.5 + parent: 1 + type: Transform + - uid: 7144 + components: + - rot: -1.5707963267948966 rad + pos: 72.5,12.5 + parent: 1 + type: Transform + - uid: 7334 + components: + - pos: 9.5,50.5 + parent: 1 + type: Transform + - uid: 7547 + components: + - pos: 44.5,12.5 + parent: 1 + type: Transform + - uid: 9548 + components: + - pos: -40.5,-30.5 + parent: 1 + type: Transform + - uid: 12525 + components: + - pos: -12.5,48.5 + parent: 1 + type: Transform + - uid: 16688 + components: + - rot: 1.5707963267948966 rad + pos: 77.5,18.5 + parent: 1 + type: Transform + - uid: 22070 + components: + - pos: -4.5,-2.5 + parent: 1 + type: Transform + - uid: 22631 + components: + - rot: -1.5707963267948966 rad + pos: 113.5,7.5 + parent: 1 + type: Transform +- proto: PaperBin5 + entities: + - uid: 4001 + components: + - rot: 3.141592653589793 rad + pos: 60.5,20.5 + parent: 1 + type: Transform + - uid: 16549 + components: + - rot: 3.141592653589793 rad + pos: 58.5,35.5 + parent: 1 + type: Transform +- proto: PaperRolling1 + entities: + - uid: 1110 + components: + - pos: 3.3256145,25.495356 + parent: 1 + type: Transform + - uid: 1111 + components: + - pos: 3.3360314,25.495356 + parent: 1 + type: Transform +- proto: ParticleAcceleratorControlBox + entities: + - uid: 24538 + components: + - rot: -1.5707963267948966 rad + pos: -73.5,5.5 + parent: 1 + type: Transform +- proto: ParticleAcceleratorEmitterFore + entities: + - uid: 1918 + components: + - rot: -1.5707963267948966 rad + pos: -75.5,4.5 + parent: 1 + type: Transform +- proto: ParticleAcceleratorEmitterPort + entities: + - uid: 1966 + components: + - rot: -1.5707963267948966 rad + pos: -75.5,3.5 + parent: 1 + type: Transform +- proto: ParticleAcceleratorEmitterStarboard + entities: + - uid: 11291 + components: + - rot: -1.5707963267948966 rad + pos: -75.5,5.5 + parent: 1 + type: Transform +- proto: PartRodMetal + entities: + - uid: 1974 + components: + - pos: -3.511375,-9.327337 + parent: 1 + type: Transform + - uid: 4670 + components: + - pos: -10.461871,42.622467 + parent: 1 + type: Transform + - uid: 6622 + components: + - rot: 3.141592653589793 rad + pos: -40.5223,22.583006 + parent: 1 + type: Transform + - uid: 9950 + components: + - rot: 1.5707963267948966 rad + pos: -1.603037,49.622414 + parent: 1 + type: Transform + - uid: 12291 + components: + - pos: -25.887302,-35.42462 + parent: 1 + type: Transform + - uid: 23786 + components: + - pos: -17.335941,37.2482 + parent: 1 + type: Transform +- proto: PartRodMetal1 + entities: + - uid: 2846 + components: + - pos: -24.198305,-11.383055 + parent: 1 + type: Transform + - uid: 2861 + components: + - pos: -24.177471,-11.424749 + parent: 1 + type: Transform + - uid: 2862 + components: + - pos: -24.198305,-11.466446 + parent: 1 + type: Transform + - uid: 2863 + components: + - pos: -24.323305,-11.393478 + parent: 1 + type: Transform + - uid: 4411 + components: + - pos: -24.281637,-11.351783 + parent: 1 + type: Transform + - uid: 13208 + components: + - rot: 1.5707963267948966 rad + pos: 48.532833,35.308037 + parent: 1 + type: Transform + - uid: 13209 + components: + - rot: 1.5707963267948966 rad + pos: 48.407833,35.026596 + parent: 1 + type: Transform + - uid: 13210 + components: + - rot: 1.5707963267948966 rad + pos: 48.407833,35.1621 + parent: 1 + type: Transform + - uid: 13211 + components: + - rot: 1.5707963267948966 rad + pos: 48.636997,35.109985 + parent: 1 + type: Transform + - uid: 13212 + components: + - pos: 48.668247,34.828537 + parent: 1 + type: Transform + - uid: 13213 + components: + - pos: 48.480747,34.974472 + parent: 1 + type: Transform + - uid: 15799 + components: + - pos: -54.595806,13.677793 + parent: 1 + type: Transform + - uid: 15800 + components: + - pos: -54.574974,13.667368 + parent: 1 + type: Transform + - uid: 15801 + components: + - pos: -54.564556,13.636097 + parent: 1 + type: Transform + - uid: 15802 + components: + - pos: -54.449974,13.490162 + parent: 1 + type: Transform + - uid: 15803 + components: + - pos: -54.449974,13.490162 + parent: 1 + type: Transform + - uid: 15804 + components: + - pos: -54.522892,13.521434 + parent: 1 + type: Transform + - uid: 16307 + components: + - pos: 21.255598,26.831076 + parent: 1 + type: Transform + - uid: 22697 + components: + - rot: -1.5707963267948966 rad + pos: 36.753128,54.29844 + parent: 1 + type: Transform + - uid: 22698 + components: + - rot: -1.5707963267948966 rad + pos: 36.919796,54.433952 + parent: 1 + type: Transform + - uid: 22699 + components: + - rot: -1.5707963267948966 rad + pos: 37.14896,54.50692 + parent: 1 + type: Transform + - uid: 22700 + components: + - rot: 3.141592653589793 rad + pos: 36.857296,54.51734 + parent: 1 + type: Transform + - uid: 22701 + components: + - rot: 3.141592653589793 rad + pos: 37.18021,54.51734 + parent: 1 + type: Transform + - uid: 22702 + components: + - rot: 3.141592653589793 rad + pos: 37.74271,54.2359 + parent: 1 + type: Transform + - uid: 23501 + components: + - rot: 3.141592653589793 rad + pos: 40.573006,25.588024 + parent: 1 + type: Transform + - uid: 23502 + components: + - rot: 1.5707963267948966 rad + pos: 40.500088,25.535904 + parent: 1 + type: Transform + - uid: 23503 + components: + - rot: 1.5707963267948966 rad + pos: 40.604256,25.5776 + parent: 1 + type: Transform +- proto: Pen + entities: + - uid: 573 + components: + - rot: -1.5707963267948966 rad + pos: 62.754776,8.459709 + parent: 1 + type: Transform + - uid: 2655 + components: + - rot: 3.141592653589793 rad + pos: 45.9357,-0.3914528 + parent: 1 + type: Transform + - uid: 11721 + components: + - rot: 1.5707963267948966 rad + pos: 36.369736,44.510796 + parent: 1 + type: Transform + - uid: 16546 + components: + - rot: -1.5707963267948966 rad + pos: 58.903984,43.577934 + parent: 1 + type: Transform + - uid: 16547 + components: + - rot: 3.141592653589793 rad + pos: 59.091484,35.687035 + parent: 1 + type: Transform + - uid: 16634 + components: + - rot: -1.5707963267948966 rad + pos: -35.28023,7.651939 + parent: 1 + type: Transform + - uid: 16710 + components: + - rot: 1.5707963267948966 rad + pos: 78.70267,11.152024 + parent: 1 + type: Transform + - uid: 16711 + components: + - rot: 1.5707963267948966 rad + pos: 77.70267,18.115194 + parent: 1 + type: Transform + - uid: 18810 + components: + - rot: -1.5707963267948966 rad + pos: 98.460594,5.869511 + parent: 1 + type: Transform +- proto: PersonalAI + entities: + - uid: 5165 + components: + - flags: SessionSpecific + type: MetaData + - pos: 31.24418,25.392982 + parent: 1 + type: Transform + - uid: 22917 + components: + - flags: SessionSpecific + type: MetaData + - pos: -14.3846035,-44.406105 + parent: 1 + type: Transform + - uid: 22922 + components: + - flags: SessionSpecific + type: MetaData + - rot: 1.5707963267948966 rad + pos: 100.52132,6.279952 + parent: 1 + type: Transform + - uid: 22923 + components: + - flags: SessionSpecific + type: MetaData + - rot: -1.5707963267948966 rad + pos: -9.46362,6.5485597 + parent: 1 + type: Transform +- proto: PestSpray + entities: + - uid: 1200 + components: + - pos: 5.3193116,15.224662 + parent: 1 + type: Transform +- proto: PhoneInstrument + entities: + - uid: 9852 + components: + - pos: 105.48678,9.701997 + parent: 1 + type: Transform +- proto: Pickaxe + entities: + - uid: 8484 + components: + - rot: 1.5707963267948966 rad + pos: -40.417812,-33.379158 + parent: 1 + type: Transform + - uid: 25611 + components: + - rot: 3.141592653589793 rad + pos: -40.433437,-33.426064 + parent: 1 + type: Transform +- proto: Pill + entities: + - uid: 5708 + components: + - flags: InContainer + name: lithium + type: MetaData + - parent: 5703 + type: Transform + - solutions: + food: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 25 + reagents: + - data: null + ReagentId: Lithium + Quantity: 25 + type: SolutionContainerManager + - canCollide: False + type: Physics + - uid: 5709 + components: + - flags: InContainer + name: placebo + type: MetaData + - parent: 5703 + type: Transform + - solutions: + food: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 25 + reagents: + - data: null + ReagentId: RootBeerFloat + Quantity: 20 + type: SolutionContainerManager + - canCollide: False + type: Physics + - uid: 5799 + components: + - flags: InContainer + name: chloral hydrate + type: MetaData + - parent: 5703 + type: Transform + - solutions: + food: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 25 + reagents: + - data: null + ReagentId: ChloralHydrate + Quantity: 8 + type: SolutionContainerManager + - canCollide: False + type: Physics + - uid: 5800 + components: + - flags: InContainer + name: placebo + type: MetaData + - parent: 5703 + type: Transform + - solutions: + food: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 25 + reagents: + - data: null + ReagentId: ChloralHydrate + Quantity: 20 + type: SolutionContainerManager + - canCollide: False + type: Physics + - uid: 5801 + components: + - flags: InContainer + name: xxx-g-4=jtc + type: MetaData + - parent: 5703 + type: Transform + - solutions: + food: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 25 + reagents: + - data: null + ReagentId: Stimulants + Quantity: 25 + type: SolutionContainerManager + - canCollide: False + type: Physics + - uid: 7222 + components: + - flags: InContainer + name: switch + type: MetaData + - parent: 6965 + type: Transform + - solutions: + food: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 25 + reagents: + - data: null + ReagentId: Stimulants + Quantity: 25 + type: SolutionContainerManager + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 7223 + components: + - flags: InContainer + name: switch + type: MetaData + - parent: 6965 + type: Transform + - solutions: + food: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 25 + reagents: + - data: null + ReagentId: Stimulants + Quantity: 10 + type: SolutionContainerManager + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 7224 + components: + - flags: InContainer + name: switch + type: MetaData + - parent: 6965 + type: Transform + - solutions: + food: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 25 + reagents: + - data: null + ReagentId: Stimulants + Quantity: 15 + type: SolutionContainerManager + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 7225 + components: + - flags: InContainer + name: switch + type: MetaData + - parent: 6965 + type: Transform + - solutions: + food: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 25 + reagents: + - data: null + ReagentId: Stimulants + Quantity: 8 + - data: null + ReagentId: Desoxyephedrine + Quantity: 8 + - data: null + ReagentId: SpaceDrugs + Quantity: 9 + type: SolutionContainerManager + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 7376 + components: + - name: Georgia Home Boy + type: MetaData + - pos: 27.355684,-13.530818 + parent: 1 + type: Transform + - solutions: + food: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 25 + reagents: + - data: null + ReagentId: ChloralHydrate + Quantity: 20 + type: SolutionContainerManager +- proto: PillCanister + entities: + - uid: 5703 + components: + - name: pill canister (dump me) + type: MetaData + - pos: 81.69916,-3.4392633 + parent: 1 + type: Transform + - storageUsed: 5 + type: Storage + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 5708 + - 5709 + - 5799 + - 5800 + - 5801 + type: ContainerContainer + - currentLabel: dump me + type: Label + - uid: 22716 + components: + - rot: -1.5707963267948966 rad + pos: -17.807745,50.246315 + parent: 1 + type: Transform + - uid: 22720 + components: + - rot: 1.5707963267948966 rad + pos: -17.609827,50.559036 + parent: 1 + type: Transform +- proto: PillSpaceDrugs + entities: + - uid: 10034 + components: + - rot: -1.5707963267948966 rad + pos: 31.784922,-34.4199 + parent: 1 + type: Transform +- proto: PinpointerNuclear + entities: + - uid: 9569 + components: + - pos: 99.35169,-3.3277082 + parent: 1 + type: Transform +- proto: PlaqueAtmos + entities: + - uid: 6420 + components: + - pos: -54.5,29.5 + parent: 1 + type: Transform +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 1088 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,39.5 + parent: 1 + type: Transform + - uid: 4737 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,39.5 + parent: 1 + type: Transform + - uid: 9777 + components: + - pos: 130.5,5.5 + parent: 1 + type: Transform + - uid: 9778 + components: + - pos: 129.5,5.5 + parent: 1 + type: Transform + - uid: 9781 + components: + - rot: 3.141592653589793 rad + pos: 129.5,2.5 + parent: 1 + type: Transform + - uid: 9782 + components: + - rot: 3.141592653589793 rad + pos: 130.5,2.5 + parent: 1 + type: Transform +- proto: PlasticFlapsAirtightClear + entities: + - uid: 6677 + components: + - pos: -43.5,-34.5 + parent: 1 + type: Transform + - uid: 8474 + components: + - pos: -42.5,-34.5 + parent: 1 + type: Transform + - uid: 25584 + components: + - pos: -45.5,-43.5 + parent: 1 + type: Transform + - uid: 25609 + components: + - pos: -41.5,-37.5 + parent: 1 + type: Transform + - uid: 25610 + components: + - pos: -41.5,-36.5 + parent: 1 + type: Transform +- proto: Plunger + entities: + - uid: 21454 + components: + - rot: -1.5707963267948966 rad + pos: 107.21053,13.80428 + parent: 1 + type: Transform + - uid: 21467 + components: + - pos: 57.0701,9.196545 + parent: 1 + type: Transform +- proto: PlushieAtmosian + entities: + - uid: 6458 + components: + - pos: -66.103745,31.14192 + parent: 1 + type: Transform +- proto: PlushieHampter + entities: + - uid: 14380 + components: + - pos: -9.483529,25.800064 + parent: 1 + type: Transform +- proto: PlushieLamp + entities: + - uid: 16638 + components: + - pos: -32.699722,7.9047084 + parent: 1 + type: Transform +- proto: PlushieLizard + entities: + - uid: 6948 + components: + - pos: 26.336111,-11.1612835 + parent: 1 + type: Transform +- proto: PlushieMothRandom + entities: + - uid: 5739 + components: + - pos: 76.4967,-4.474297 + parent: 1 + type: Transform + - uid: 12345 + components: + - pos: -0.46886563,-28.336475 + parent: 1 + type: Transform + - uid: 22897 + components: + - pos: -26.446796,-16.389944 + parent: 1 + type: Transform +- proto: PlushieRGBee + entities: + - uid: 15976 + components: + - pos: 21.581562,48.472572 + parent: 1 + type: Transform +- proto: PlushieRouny + entities: + - uid: 6946 + components: + - pos: 26.346527,-11.359337 + parent: 1 + type: Transform + - uid: 14379 + components: + - pos: -9.577279,22.422718 + parent: 1 + type: Transform +- proto: PlushieSharkGrey + entities: + - uid: 4714 + components: + - pos: 87.800446,8.727818 + parent: 1 + type: Transform +- proto: PlushieSlime + entities: + - uid: 7361 + components: + - pos: 60.407185,-13.166006 + parent: 1 + type: Transform + - uid: 16113 + components: + - pos: 87.656494,9.996824 + parent: 1 + type: Transform +- proto: PlushieSnake + entities: + - uid: 6947 + components: + - pos: 26.575695,-11.296794 + parent: 1 + type: Transform +- proto: PlushieSpaceLizard + entities: + - uid: 5244 + components: + - pos: 87.74836,11.281674 + parent: 1 + type: Transform + - uid: 12520 + components: + - pos: -12.889346,48.551132 + parent: 1 + type: Transform +- proto: PonderingOrb + entities: + - uid: 11713 + components: + - pos: 32.427666,48.66883 + parent: 1 + type: Transform + - uid: 11714 + components: + - pos: 35.438084,48.606285 + parent: 1 + type: Transform + - uid: 11715 + components: + - pos: 32.636,48.585434 + parent: 1 + type: Transform + - uid: 11717 + components: + - pos: 35.635998,48.66883 + parent: 1 + type: Transform +- proto: PortableFlasher + entities: + - uid: 4910 + components: + - pos: 82.5,14.5 + parent: 1 + type: Transform +- proto: PortableGeneratorJrPacman + entities: + - uid: 4086 + components: + - pos: -45.5,38.5 + parent: 1 + type: Transform + - uid: 4095 + components: + - pos: -52.5,-24.5 + parent: 1 + type: Transform + - uid: 11698 + components: + - pos: 49.5,9.5 + parent: 1 + type: Transform + - uid: 14767 + components: + - pos: -11.5,-14.5 + parent: 1 + type: Transform + - uid: 16082 + components: + - pos: 30.5,35.5 + parent: 1 + type: Transform + - uid: 25176 + components: + - pos: -6.5,-44.5 + parent: 1 + type: Transform + - uid: 25197 + components: + - pos: 59.5,-29.5 + parent: 1 + type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 623 + components: + - pos: -59.5,-17.5 + parent: 1 + type: Transform + - uid: 8673 + components: + - pos: -59.5,-15.5 + parent: 1 + type: Transform +- proto: PortableGeneratorPacmanMachineCircuitboard + entities: + - uid: 6604 + components: + - rot: 1.5707963267948966 rad + pos: -45.300415,-0.3890481 + parent: 1 + type: Transform + - uid: 16102 + components: + - rot: -1.5707963267948966 rad + pos: 33.42119,34.582558 + parent: 1 + type: Transform + - uid: 16103 + components: + - rot: 1.5707963267948966 rad + pos: 33.63994,34.624252 + parent: 1 + type: Transform +- proto: PortableGeneratorSuperPacmanMachineCircuitboard + entities: + - uid: 7755 + components: + - pos: 109.52147,-3.3850353 + parent: 1 + type: Transform +- proto: PortableScrubber + entities: + - uid: 6486 + components: + - pos: -36.5,23.5 + parent: 1 + type: Transform + - uid: 6487 + components: + - pos: -36.5,24.5 + parent: 1 + type: Transform +- proto: PortableScrubberMachineCircuitBoard + entities: + - uid: 6488 + components: + - rot: 1.5707963267948966 rad + pos: -46.512825,22.54083 + parent: 1 + type: Transform + - uid: 13417 + components: + - rot: 1.5707963267948966 rad + pos: 105.52542,-7.4608517 + parent: 1 + type: Transform + - uid: 16870 + components: + - pos: -7.478744,40.5748 + parent: 1 + type: Transform +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 6421 + components: + - pos: -54.5,36.5 + parent: 1 + type: Transform +- proto: PosterContrabandBeachStarYamamoto + entities: + - uid: 6572 + components: + - pos: -58.5,1.5 + parent: 1 + type: Transform +- proto: PosterContrabandBountyHunters + entities: + - uid: 2789 + components: + - pos: 22.5,24.5 + parent: 1 + type: Transform +- proto: PosterContrabandBustyBackdoorExoBabes6 + entities: + - uid: 15778 + components: + - pos: -58.5,12.5 + parent: 1 + type: Transform +- proto: PosterContrabandClown + entities: + - uid: 12966 + components: + - pos: 25.5,-34.5 + parent: 1 + type: Transform +- proto: PosterContrabandCommunistState + entities: + - uid: 12907 + components: + - pos: 30.5,-33.5 + parent: 1 + type: Transform + - uid: 15934 + components: + - pos: -27.5,47.5 + parent: 1 + type: Transform +- proto: PosterContrabandFreeDrone + entities: + - uid: 12405 + components: + - pos: -9.5,12.5 + parent: 1 + type: Transform +- proto: PosterContrabandFunPolice + entities: + - uid: 13794 + components: + - pos: 30.5,-32.5 + parent: 1 + type: Transform +- proto: PosterContrabandGotWood + entities: + - uid: 12485 + components: + - pos: -38.5,-13.5 + parent: 1 + type: Transform +- proto: PosterContrabandGreyTide + entities: + - uid: 15935 + components: + - pos: -21.5,43.5 + parent: 1 + type: Transform +- proto: PosterContrabandHighEffectEngineering + entities: + - uid: 12586 + components: + - pos: -44.5,-13.5 + parent: 1 + type: Transform +- proto: PosterContrabandKudzu + entities: + - uid: 12817 + components: + - pos: 33.5,-37.5 + parent: 1 + type: Transform +- proto: PosterContrabandLamarr + entities: + - uid: 7332 + components: + - pos: 4.5,51.5 + parent: 1 + type: Transform +- proto: PosterContrabandLustyExomorph + entities: + - uid: 3570 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,20.5 + parent: 1 + type: Transform +- proto: PosterContrabandMaskedMen + entities: + - uid: 2898 + components: + - pos: 36.5,25.5 + parent: 1 + type: Transform +- proto: PosterContrabandMissingGloves + entities: + - uid: 6387 + components: + - pos: -41.5,8.5 + parent: 1 + type: Transform + - uid: 16645 + components: + - pos: 6.5,-10.5 + parent: 1 + type: Transform +- proto: PosterContrabandPunchShit + entities: + - uid: 6904 + components: + - rot: 3.141592653589793 rad + pos: 25.5,20.5 + parent: 1 + type: Transform +- proto: PosterContrabandRedRum + entities: + - uid: 12818 + components: + - pos: 31.5,-37.5 + parent: 1 + type: Transform +- proto: PosterContrabandRobustSoftdrinks + entities: + - uid: 3265 + components: + - pos: 30.5,21.5 + parent: 1 + type: Transform +- proto: PosterContrabandSaucerNumberOne + entities: + - uid: 16568 + components: + - pos: 51.5,29.5 + parent: 1 + type: Transform +- proto: PosterContrabandShamblersJuice + entities: + - uid: 6929 + components: + - pos: 28.5,24.5 + parent: 1 + type: Transform +- proto: PosterContrabandSmoke + entities: + - uid: 2877 + components: + - pos: 30.5,14.5 + parent: 1 + type: Transform +- proto: PosterContrabandSpaceUp + entities: + - uid: 22898 + components: + - pos: -27.5,-14.5 + parent: 1 + type: Transform +- proto: PosterContrabandSyndicateRecruitment + entities: + - uid: 16778 + components: + - pos: -12.5,-25.5 + parent: 1 + type: Transform +- proto: PosterContrabandUnreadableAnnouncement + entities: + - uid: 11170 + components: + - pos: -14.5,18.5 + parent: 1 + type: Transform + - uid: 22667 + components: + - pos: 95.5,21.5 + parent: 1 + type: Transform +- proto: PosterLegit12Gauge + entities: + - uid: 6886 + components: + - pos: 20.5,23.5 + parent: 1 + type: Transform +- proto: PosterLegit50thAnniversaryVintageReprint + entities: + - uid: 12324 + components: + - pos: 5.5,-41.5 + parent: 1 + type: Transform + - uid: 16569 + components: + - pos: 56.5,42.5 + parent: 1 + type: Transform +- proto: PosterLegitBarDrinks + entities: + - uid: 7413 + components: + - pos: 27.5,13.5 + parent: 1 + type: Transform +- proto: PosterLegitBotanyFood + entities: + - uid: 1267 + components: + - pos: 9.5,18.5 + parent: 1 + type: Transform +- proto: PosterLegitBuild + entities: + - uid: 16264 + components: + - pos: 65.5,-18.5 + parent: 1 + type: Transform + - uid: 16289 + components: + - pos: 103.5,-4.5 + parent: 1 + type: Transform + - uid: 16639 + components: + - pos: -47.5,5.5 + parent: 1 + type: Transform +- proto: PosterLegitCarbonDioxide + entities: + - uid: 17350 + components: + - pos: -10.5,13.5 + parent: 1 + type: Transform +- proto: PosterLegitChknDnnr + entities: + - uid: 11203 + components: + - pos: 21.5,20.5 + parent: 1 + type: Transform +- proto: PosterLegitCohibaRobustoAd + entities: + - uid: 7412 + components: + - pos: 33.5,21.5 + parent: 1 + type: Transform +- proto: PosterLegitDejaVu + entities: + - uid: 16667 + components: + - pos: -31.5,18.5 + parent: 1 + type: Transform +- proto: PosterLegitDickGumshue + entities: + - uid: 12325 + components: + - pos: 6.5,-41.5 + parent: 1 + type: Transform +- proto: PosterLegitDontPanic + entities: + - uid: 16647 + components: + - pos: 30.5,-45.5 + parent: 1 + type: Transform +- proto: PosterLegitEnlist + entities: + - uid: 3481 + components: + - rot: -1.5707963267948966 rad + pos: 58.5,6.5 + parent: 1 + type: Transform +- proto: PosterLegitFruitBowl + entities: + - uid: 9514 + components: + - rot: 3.141592653589793 rad + pos: 36.5,1.5 + parent: 1 + type: Transform +- proto: PosterLegitGetYourLEGS + entities: + - uid: 16269 + components: + - pos: 74.5,-18.5 + parent: 1 + type: Transform +- proto: PosterLegitHelpOthers + entities: + - uid: 16267 + components: + - pos: 68.5,-18.5 + parent: 1 + type: Transform +- proto: PosterLegitHereForYourSafety + entities: + - uid: 4150 + components: + - pos: 62.5,9.5 + parent: 1 + type: Transform +- proto: PosterLegitHighClassMartini + entities: + - uid: 65 + components: + - pos: 39.5,24.5 + parent: 1 + type: Transform +- proto: PosterLegitHotDonkExplosion + entities: + - uid: 3367 + components: + - pos: 42.5,24.5 + parent: 1 + type: Transform +- proto: PosterLegitLoveIan + entities: + - uid: 6900 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-6.5 + parent: 1 + type: Transform +- proto: PosterLegitMedicate + entities: + - uid: 6902 + components: + - rot: 3.141592653589793 rad + pos: 76.5,-1.5 + parent: 1 + type: Transform +- proto: PosterLegitMoreBread + entities: + - uid: 9438 + components: + - pos: 22.5,-42.5 + parent: 1 + type: Transform +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 7051 + components: + - pos: 77.5,6.5 + parent: 1 + type: Transform + - uid: 7052 + components: + - pos: 83.5,6.5 + parent: 1 + type: Transform + - uid: 7053 + components: + - pos: 83.5,1.5 + parent: 1 + type: Transform + - uid: 7054 + components: + - pos: 77.5,1.5 + parent: 1 + type: Transform + - uid: 7055 + components: + - pos: 89.5,6.5 + parent: 1 + type: Transform + - uid: 7056 + components: + - pos: 89.5,1.5 + parent: 1 + type: Transform + - uid: 16567 + components: + - pos: 50.5,40.5 + parent: 1 + type: Transform +- proto: PosterLegitNoTouching + entities: + - uid: 11536 + components: + - rot: -1.5707963267948966 rad + pos: 66.5,23.5 + parent: 1 + type: Transform +- proto: PosterLegitObey + entities: + - uid: 16646 + components: + - pos: 71.5,28.5 + parent: 1 + type: Transform +- proto: PosterLegitPDAAd + entities: + - uid: 20741 + components: + - pos: -6.5,11.5 + parent: 1 + type: Transform +- proto: PosterLegitPieSlice + entities: + - uid: 1268 + components: + - pos: 9.5,23.5 + parent: 1 + type: Transform + - uid: 9436 + components: + - pos: 14.5,-42.5 + parent: 1 + type: Transform +- proto: PosterLegitPizzaHope + entities: + - uid: 9437 + components: + - pos: 15.5,-42.5 + parent: 1 + type: Transform +- proto: PosterLegitReportCrimes + entities: + - uid: 1486 + components: + - pos: 6.5,-31.5 + parent: 1 + type: Transform +- proto: PosterLegitSafetyEyeProtection + entities: + - uid: 13941 + components: + - pos: 61.5,-14.5 + parent: 1 + type: Transform + - uid: 16642 + components: + - pos: -56.5,6.5 + parent: 1 + type: Transform +- proto: PosterLegitSafetyInternals + entities: + - uid: 16270 + components: + - pos: 86.5,-17.5 + parent: 1 + type: Transform +- proto: PosterLegitSafetyMothHardhat + entities: + - uid: 16643 + components: + - pos: -43.5,13.5 + parent: 1 + type: Transform +- proto: PosterLegitSafetyMothPills + entities: + - uid: 7374 + components: + - pos: 72.5,-9.5 + parent: 1 + type: Transform + - uid: 19218 + components: + - pos: 30.5,13.5 + parent: 1 + type: Transform +- proto: PosterLegitSafetyMothPiping + entities: + - uid: 16644 + components: + - pos: -39.5,36.5 + parent: 1 + type: Transform +- proto: PosterLegitSafetyReport + entities: + - uid: 3790 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,9.5 + parent: 1 + type: Transform +- proto: PosterLegitStateLaws + entities: + - uid: 1497 + components: + - pos: 17.5,-31.5 + parent: 1 + type: Transform +- proto: PosterLegitTheOwl + entities: + - uid: 22934 + components: + - pos: 42.5,-14.5 + parent: 1 + type: Transform +- proto: PosterLegitWalk + entities: + - uid: 12618 + components: + - pos: -52.5,-13.5 + parent: 1 + type: Transform +- proto: PosterLegitWorkForAFuture + entities: + - uid: 2995 + components: + - pos: -4.5,-46.5 + parent: 1 + type: Transform + - uid: 16640 + components: + - pos: -46.5,5.5 + parent: 1 + type: Transform +- proto: PottedPlant27 + entities: + - uid: 6325 + components: + - pos: -38.62487,14.310528 + parent: 1 + type: Transform + - uid: 23440 + components: + - pos: 29.5,30.5 + parent: 1 + type: Transform + - containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 23441 + type: ContainerContainer +- proto: PottedPlant28 + entities: + - uid: 6844 + components: + - pos: -60.5,-3.5 + parent: 1 + type: Transform +- proto: PottedPlant8 + entities: + - uid: 4711 + components: + - pos: 59.516224,16.589823 + parent: 1 + type: Transform +- proto: PottedPlantBioluminscent + entities: + - uid: 6870 + components: + - pos: -22.5,9.5 + parent: 1 + type: Transform + - uid: 7270 + components: + - pos: 22.5,46.5 + parent: 1 + type: Transform + - uid: 7271 + components: + - pos: 22.5,44.5 + parent: 1 + type: Transform + - uid: 7272 + components: + - pos: 8.5,46.5 + parent: 1 + type: Transform + - uid: 7273 + components: + - pos: 15.5,46.5 + parent: 1 + type: Transform + - uid: 7601 + components: + - pos: 81.5,-11.5 + parent: 1 + type: Transform + - uid: 7629 + components: + - pos: 66.5,-15.5 + parent: 1 + type: Transform +- proto: PottedPlantRandom + entities: + - uid: 1845 + components: + - pos: 0.5,-11.5 + parent: 1 + type: Transform + - uid: 2006 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 2066 + components: + - pos: -13.5,0.5 + parent: 1 + type: Transform + - uid: 2627 + components: + - pos: 42.5,0.5 + parent: 1 + type: Transform + - uid: 2629 + components: + - pos: 43.5,0.5 + parent: 1 + type: Transform + - uid: 2781 + components: + - pos: 13.5,20.5 + parent: 1 + type: Transform + - uid: 2931 + components: + - pos: 39.5,23.5 + parent: 1 + type: Transform + - uid: 3143 + components: + - pos: 89.5,28.5 + parent: 1 + type: Transform + - uid: 3161 + components: + - pos: -58.5,38.5 + parent: 1 + type: Transform + - uid: 3301 + components: + - pos: 43.5,22.5 + parent: 1 + type: Transform + - uid: 3366 + components: + - pos: 39.5,12.5 + parent: 1 + type: Transform + - uid: 3936 + components: + - pos: 35.5,-16.5 + parent: 1 + type: Transform + - uid: 6357 + components: + - pos: -41.5,9.5 + parent: 1 + type: Transform + - uid: 6358 + components: + - pos: -35.5,9.5 + parent: 1 + type: Transform + - uid: 6359 + components: + - pos: -43.5,12.5 + parent: 1 + type: Transform + - uid: 7045 + components: + - pos: 77.5,2.5 + parent: 1 + type: Transform + - uid: 7046 + components: + - pos: 77.5,5.5 + parent: 1 + type: Transform + - uid: 7047 + components: + - pos: 83.5,2.5 + parent: 1 + type: Transform + - uid: 7048 + components: + - pos: 83.5,5.5 + parent: 1 + type: Transform + - uid: 7049 + components: + - pos: 89.5,2.5 + parent: 1 + type: Transform + - uid: 7050 + components: + - pos: 89.5,5.5 + parent: 1 + type: Transform + - uid: 7436 + components: + - pos: 11.5,48.5 + parent: 1 + type: Transform + - uid: 7533 + components: + - pos: 44.5,10.5 + parent: 1 + type: Transform + - uid: 8575 + components: + - pos: -5.5,-32.5 + parent: 1 + type: Transform + - uid: 8576 + components: + - pos: -7.5,-38.5 + parent: 1 + type: Transform + - uid: 9387 + components: + - pos: 2.5,-46.5 + parent: 1 + type: Transform + - uid: 9440 + components: + - pos: 35.5,21.5 + parent: 1 + type: Transform + - uid: 9472 + components: + - pos: 10.5,-21.5 + parent: 1 + type: Transform + - uid: 9473 + components: + - pos: 13.5,-21.5 + parent: 1 + type: Transform + - uid: 9474 + components: + - pos: 14.5,-23.5 + parent: 1 + type: Transform + - uid: 9475 + components: + - pos: 9.5,-23.5 + parent: 1 + type: Transform + - uid: 9476 + components: + - pos: 10.5,-44.5 + parent: 1 + type: Transform + - uid: 9477 + components: + - pos: 13.5,-44.5 + parent: 1 + type: Transform + - uid: 9922 + components: + - pos: 13.5,-14.5 + parent: 1 + type: Transform + - uid: 9923 + components: + - pos: 13.5,-9.5 + parent: 1 + type: Transform + - uid: 11207 + components: + - pos: 27.5,-41.5 + parent: 1 + type: Transform + - uid: 11211 + components: + - pos: 28.5,-41.5 + parent: 1 + type: Transform + - uid: 11212 + components: + - pos: 28.5,-40.5 + parent: 1 + type: Transform + - uid: 12372 + components: + - pos: -34.5,-25.5 + parent: 1 + type: Transform + - uid: 14245 + components: + - pos: 95.5,10.5 + parent: 1 + type: Transform + - uid: 15830 + components: + - pos: -27.5,2.5 + parent: 1 + type: Transform + - uid: 15831 + components: + - pos: -27.5,5.5 + parent: 1 + type: Transform + - uid: 15841 + components: + - pos: 13.5,28.5 + parent: 1 + type: Transform + - uid: 15842 + components: + - pos: 10.5,28.5 + parent: 1 + type: Transform + - uid: 15843 + components: + - pos: 9.5,38.5 + parent: 1 + type: Transform + - uid: 15844 + components: + - pos: 14.5,38.5 + parent: 1 + type: Transform + - uid: 16603 + components: + - pos: 57.5,5.5 + parent: 1 + type: Transform + - uid: 16635 + components: + - pos: -35.5,0.5 + parent: 1 + type: Transform + - uid: 16675 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 16811 + components: + - pos: 36.5,-4.5 + parent: 1 + type: Transform + - uid: 16812 + components: + - pos: 21.5,-4.5 + parent: 1 + type: Transform + - uid: 16813 + components: + - pos: 30.5,-4.5 + parent: 1 + type: Transform + - uid: 18834 + components: + - pos: -13.5,19.5 + parent: 1 + type: Transform + - uid: 23807 + components: + - pos: 74.5,-0.5 + parent: 1 + type: Transform + - uid: 23883 + components: + - pos: 76.5,12.5 + parent: 1 + type: Transform +- proto: PottedPlantRandomPlastic + entities: + - uid: 2909 + components: + - pos: 17.5,24.5 + parent: 1 + type: Transform + - uid: 3779 + components: + - pos: 88.5,16.5 + parent: 1 + type: Transform + - uid: 6702 + components: + - pos: -55.5,-24.5 + parent: 1 + type: Transform + - uid: 6703 + components: + - pos: -55.5,-26.5 + parent: 1 + type: Transform + - uid: 11348 + components: + - pos: 1.5,-38.5 + parent: 1 + type: Transform + - uid: 11356 + components: + - pos: 3.5,-38.5 + parent: 1 + type: Transform + - uid: 11357 + components: + - pos: 4.5,-38.5 + parent: 1 + type: Transform + - uid: 12423 + components: + - pos: -23.5,-8.5 + parent: 1 + type: Transform + - uid: 12954 + components: + - pos: 25.5,-35.5 + parent: 1 + type: Transform + - uid: 16562 + components: + - pos: 56.5,41.5 + parent: 1 + type: Transform + - uid: 16563 + components: + - pos: 56.5,37.5 + parent: 1 + type: Transform +- proto: PottedPlantRD + entities: + - uid: 7333 + components: + - pos: 7.5,51.5 + parent: 1 + type: Transform +- proto: PowerCellPotato + entities: + - uid: 9900 + components: + - pos: 99.70517,17.732092 + parent: 1 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 1484 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-35.5 + parent: 1 + type: Transform + - uid: 2011 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 1 + type: Transform + - uid: 3031 + components: + - pos: 31.5,29.5 + parent: 1 + type: Transform + - uid: 3199 + components: + - rot: 3.141592653589793 rad + pos: 57.5,-0.5 + parent: 1 + type: Transform + - uid: 4691 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,40.5 + parent: 1 + type: Transform + - uid: 6299 + components: + - pos: -56.5,2.5 + parent: 1 + type: Transform + - uid: 6300 + components: + - pos: -55.5,2.5 + parent: 1 + type: Transform + - uid: 6301 + components: + - pos: -54.5,2.5 + parent: 1 + type: Transform + - uid: 7337 + components: + - pos: 8.5,50.5 + parent: 1 + type: Transform + - uid: 7600 + components: + - rot: -1.5707963267948966 rad + pos: 80.5,-9.5 + parent: 1 + type: Transform + - uid: 9856 + components: + - rot: 1.5707963267948966 rad + pos: 109.5,11.5 + parent: 1 + type: Transform + - uid: 16607 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,8.5 + parent: 1 + type: Transform + - uid: 16996 + components: + - rot: 3.141592653589793 rad + pos: 56.5,7.5 + parent: 1 + type: Transform + - uid: 17150 + components: + - pos: 70.5,-13.5 + parent: 1 + type: Transform + - uid: 17151 + components: + - pos: 71.5,-13.5 + parent: 1 + type: Transform + - uid: 17152 + components: + - pos: 72.5,-13.5 + parent: 1 + type: Transform + - uid: 17168 + components: + - rot: -1.5707963267948966 rad + pos: 78.5,10.5 + parent: 1 + type: Transform + - uid: 17537 + components: + - pos: -47.5,22.5 + parent: 1 + type: Transform + - uid: 17538 + components: + - pos: 38.5,-11.5 + parent: 1 + type: Transform + - uid: 17539 + components: + - pos: 41.5,-12.5 + parent: 1 + type: Transform + - uid: 21484 + components: + - pos: 72.5,6.5 + parent: 1 + type: Transform + - uid: 21487 + components: + - pos: 66.5,10.5 + parent: 1 + type: Transform + - uid: 22771 + components: + - pos: -19.5,27.5 + parent: 1 + type: Transform + - uid: 22772 + components: + - pos: -18.5,27.5 + parent: 1 + type: Transform + - uid: 22825 + components: + - pos: -64.5,15.5 + parent: 1 + type: Transform + - uid: 22826 + components: + - pos: -63.5,15.5 + parent: 1 + type: Transform +- proto: Poweredlight + entities: + - uid: 110 + components: + - pos: 3.5,12.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 528 + components: + - pos: 25.5,8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1298 + components: + - rot: 3.141592653589793 rad + pos: -9.5,14.5 + parent: 1 + type: Transform + - uid: 3446 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-13.5 + parent: 1 + type: Transform + - uid: 3470 + components: + - pos: -51.5,-27.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3794 + components: + - rot: 1.5707963267948966 rad + pos: 63.5,20.5 + parent: 1 + type: Transform + - uid: 6236 + components: + - rot: -1.5707963267948966 rad + pos: 78.5,17.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - links: + - 15958 + type: DeviceLinkSink + - uid: 7061 + components: + - rot: -1.5707963267948966 rad + pos: 101.5,7.5 + parent: 1 + type: Transform + - uid: 7087 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,16.5 + parent: 1 + type: Transform + - uid: 10065 + components: + - rot: 3.141592653589793 rad + pos: 5.5,19.5 + parent: 1 + type: Transform + - uid: 13511 + components: + - pos: 93.5,10.5 + parent: 1 + type: Transform + - uid: 14398 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,19.5 + parent: 1 + type: Transform + - uid: 14411 + components: + - rot: 3.141592653589793 rad + pos: 26.5,14.5 + parent: 1 + type: Transform + - uid: 14421 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,20.5 + parent: 1 + type: Transform + - uid: 14422 + components: + - pos: 6.5,25.5 + parent: 1 + type: Transform + - uid: 14452 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,22.5 + parent: 1 + type: Transform + - uid: 14455 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,16.5 + parent: 1 + type: Transform + - uid: 14456 + components: + - pos: 26.5,12.5 + parent: 1 + type: Transform + - uid: 14459 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,19.5 + parent: 1 + type: Transform + - uid: 14466 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-42.5 + parent: 1 + type: Transform + - uid: 14468 + components: + - pos: 6.5,-35.5 + parent: 1 + type: Transform + - uid: 14471 + components: + - pos: 17.5,-35.5 + parent: 1 + type: Transform + - uid: 14472 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-30.5 + parent: 1 + type: Transform + - uid: 14484 + components: + - pos: 21.5,-37.5 + parent: 1 + type: Transform + - uid: 14485 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-28.5 + parent: 1 + type: Transform + - uid: 14486 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-28.5 + parent: 1 + type: Transform + - uid: 15167 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-39.5 + parent: 1 + type: Transform + - uid: 16110 + components: + - rot: 3.141592653589793 rad + pos: 19.5,39.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16398 + components: + - rot: 1.5707963267948966 rad + pos: 72.5,8.5 + parent: 1 + type: Transform + - uid: 16609 + components: + - pos: 35.5,12.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16918 + components: + - pos: -4.5,-47.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16919 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-49.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16920 + components: + - pos: 9.5,-46.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16922 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-49.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16923 + components: + - pos: 26.5,-43.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16924 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-48.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16926 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-44.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16950 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-19.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16951 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16952 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16953 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-16.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16954 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16955 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16956 + components: + - pos: 18.5,-10.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16957 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16958 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - links: + - 25811 + type: DeviceLinkSink + - uid: 16959 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16960 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16963 + components: + - pos: 4.5,-11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16964 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-17.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16966 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16971 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16972 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16974 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-2.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16975 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16976 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16977 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16978 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-3.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16979 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16980 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16982 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16984 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16987 + components: + - pos: 47.5,0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16988 + components: + - pos: 41.5,0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16989 + components: + - rot: 3.141592653589793 rad + pos: 41.5,2.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16990 + components: + - rot: 3.141592653589793 rad + pos: 49.5,2.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16991 + components: + - rot: 3.141592653589793 rad + pos: 58.5,2.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16992 + components: + - pos: 68.5,5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16993 + components: + - pos: 56.5,9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16994 + components: + - rot: 3.141592653589793 rad + pos: 55.5,-1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16997 + components: + - pos: 43.5,12.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16998 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17007 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17008 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17010 + components: + - pos: 15.5,14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17012 + components: + - pos: 28.5,23.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17013 + components: + - pos: 24.5,19.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17020 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,17.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17021 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,25.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17025 + components: + - pos: 7.5,34.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17026 + components: + - pos: 16.5,34.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17027 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,37.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17028 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,37.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17029 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,46.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17030 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,43.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17031 + components: + - pos: 8.5,51.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17032 + components: + - pos: 14.5,50.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17038 + components: + - rot: 3.141592653589793 rad + pos: 19.5,44.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17039 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,44.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17040 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,40.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17041 + components: + - rot: 3.141592653589793 rad + pos: 0.5,39.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17042 + components: + - pos: 4.5,47.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17043 + components: + - pos: 0.5,47.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17044 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,40.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17045 + components: + - rot: 3.141592653589793 rad + pos: 4.5,39.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17046 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,45.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17047 + components: + - pos: -7.5,51.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17048 + components: + - rot: 3.141592653589793 rad + pos: -9.5,42.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17051 + components: + - pos: -5.5,5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17052 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17067 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17068 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17069 + components: + - rot: 3.141592653589793 rad + pos: -19.5,2.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17070 + components: + - rot: 3.141592653589793 rad + pos: -27.5,2.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17072 + components: + - pos: -15.5,12.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17075 + components: + - rot: 3.141592653589793 rad + pos: -14.5,7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17076 + components: + - pos: -23.5,12.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17077 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17078 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17079 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17080 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17081 + components: + - pos: -47.5,4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17082 + components: + - rot: 3.141592653589793 rad + pos: -37.5,0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17083 + components: + - pos: -37.5,7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17084 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17085 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17086 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-2.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17087 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17088 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,3.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17089 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17090 + components: + - rot: 3.141592653589793 rad + pos: -47.5,6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17091 + components: + - rot: 3.141592653589793 rad + pos: -41.5,9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17092 + components: + - pos: -37.5,12.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17100 + components: + - pos: -48.5,20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17101 + components: + - rot: 3.141592653589793 rad + pos: -52.5,16.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17102 + components: + - rot: 3.141592653589793 rad + pos: -55.5,22.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17103 + components: + - rot: 3.141592653589793 rad + pos: -37.5,22.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17104 + components: + - rot: 3.141592653589793 rad + pos: -46.5,22.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17105 + components: + - pos: -38.5,35.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17106 + components: + - pos: -48.5,35.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17107 + components: + - pos: -48.5,28.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17108 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,33.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17110 + components: + - pos: -63.5,32.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17111 + components: + - pos: -51.5,32.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17112 + components: + - pos: -45.5,32.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17113 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,-1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17115 + components: + - rot: 1.5707963267948966 rad + pos: -61.5,-0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - links: + - 17114 + type: DeviceLinkSink + - uid: 17117 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17118 + components: + - pos: -49.5,-8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17119 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-12.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17129 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-29.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17130 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-29.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17136 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-25.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - links: + - 25812 + type: DeviceLinkSink + - uid: 17137 + components: + - rot: 3.141592653589793 rad + pos: 71.5,-0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17139 + components: + - rot: 1.5707963267948966 rad + pos: 62.5,-0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17140 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,-4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17141 + components: + - rot: -1.5707963267948966 rad + pos: 70.5,-4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17142 + components: + - rot: 1.5707963267948966 rad + pos: 60.5,-13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17143 + components: + - rot: 1.5707963267948966 rad + pos: 60.5,-9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17144 + components: + - rot: 3.141592653589793 rad + pos: 71.5,-12.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17145 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,-7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17146 + components: + - rot: 3.141592653589793 rad + pos: 71.5,-17.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17147 + components: + - rot: -1.5707963267948966 rad + pos: 76.5,-10.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17153 + components: + - rot: 3.141592653589793 rad + pos: 78.5,-15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17154 + components: + - rot: -1.5707963267948966 rad + pos: 87.5,-12.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17155 + components: + - pos: 84.5,-2.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17156 + components: + - rot: 1.5707963267948966 rad + pos: 78.5,-9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - links: + - 15955 + type: DeviceLinkSink + - uid: 17157 + components: + - rot: -1.5707963267948966 rad + pos: 82.5,-9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - links: + - 15955 + type: DeviceLinkSink + - uid: 17158 + components: + - rot: 3.141592653589793 rad + pos: 90.5,-9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17159 + components: + - pos: 65.5,8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17160 + components: + - rot: 3.141592653589793 rad + pos: 65.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17161 + components: + - rot: 3.141592653589793 rad + pos: 68.5,10.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17165 + components: + - rot: -1.5707963267948966 rad + pos: 73.5,19.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17166 + components: + - rot: -1.5707963267948966 rad + pos: 80.5,11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - links: + - 25813 + type: DeviceLinkSink + - uid: 17169 + components: + - pos: 74.5,22.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17171 + components: + - pos: 82.5,22.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17179 + components: + - pos: 72.5,29.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17181 + components: + - rot: 3.141592653589793 rad + pos: 88.5,16.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17182 + components: + - rot: 3.141592653589793 rad + pos: 87.5,24.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17185 + components: + - pos: 80.5,29.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17186 + components: + - rot: 3.141592653589793 rad + pos: 80.5,24.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17187 + components: + - pos: 82.5,17.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17188 + components: + - pos: 83.5,5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17189 + components: + - rot: 3.141592653589793 rad + pos: 92.5,2.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17190 + components: + - rot: 3.141592653589793 rad + pos: 83.5,2.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17194 + components: + - rot: -1.5707963267948966 rad + pos: 101.5,0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17195 + components: + - rot: 3.141592653589793 rad + pos: 105.5,6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17196 + components: + - rot: 1.5707963267948966 rad + pos: 103.5,3.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17197 + components: + - rot: -1.5707963267948966 rad + pos: 106.5,0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17198 + components: + - rot: 1.5707963267948966 rad + pos: 99.5,-2.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17203 + components: + - rot: 3.141592653589793 rad + pos: 110.5,1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17204 + components: + - pos: 109.5,11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17206 + components: + - pos: 103.5,11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17210 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-43.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17239 + components: + - rot: -1.5707963267948966 rad + pos: -66.5,1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17240 + components: + - rot: -1.5707963267948966 rad + pos: -66.5,6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17241 + components: + - rot: -1.5707963267948966 rad + pos: -58.5,8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17270 + components: + - rot: 3.141592653589793 rad + pos: 40.5,14.5 + parent: 1 + type: Transform + - uid: 17282 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-16.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17293 + components: + - rot: 3.141592653589793 rad + pos: 51.5,-31.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17308 + components: + - rot: 3.141592653589793 rad + pos: 76.5,-6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17313 + components: + - rot: 1.5707963267948966 rad + pos: 59.5,19.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - links: + - 25815 + type: DeviceLinkSink + - uid: 17317 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,38.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17318 + components: + - pos: 53.5,41.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17319 + components: + - rot: -1.5707963267948966 rad + pos: 59.5,39.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17323 + components: + - rot: 3.141592653589793 rad + pos: 33.5,40.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17324 + components: + - pos: 32.5,51.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17331 + components: + - pos: -27.5,46.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 18832 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,16.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 20952 + components: + - pos: -59.5,-26.5 + parent: 1 + type: Transform + - uid: 21429 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-7.5 + parent: 1 + type: Transform + - uid: 22482 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,10.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 22483 + components: + - pos: 31.5,4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 22682 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,44.5 + parent: 1 + type: Transform + - uid: 22936 + components: + - pos: 42.5,-9.5 + parent: 1 + type: Transform + - uid: 23806 + components: + - pos: 38.5,24.5 + parent: 1 + type: Transform + - uid: 24765 + components: + - rot: 3.141592653589793 rad + pos: -73.5,1.5 + parent: 1 + type: Transform + - uid: 25458 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,-22.5 + parent: 1 + type: Transform + - uid: 25570 + components: + - rot: 3.141592653589793 rad + pos: 28.5,48.5 + parent: 1 + type: Transform + - uid: 25629 + components: + - pos: -46.5,-35.5 + parent: 1 + type: Transform +- proto: PoweredLightBlueInterior + entities: + - uid: 6757 + components: + - pos: -36.5,-36.5 + parent: 1 + type: Transform + - uid: 16916 + components: + - pos: -6.5,-51.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16917 + components: + - pos: 31.5,-51.5 + parent: 1 + type: Transform + - uid: 16921 + components: + - pos: 12.5,-51.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17245 + components: + - rot: 3.141592653589793 rad + pos: -47.5,40.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 23832 + components: + - rot: 1.5707963267948966 rad + pos: 104.5,-10.5 + parent: 1 + type: Transform + - uid: 23850 + components: + - rot: 1.5707963267948966 rad + pos: 106.5,17.5 + parent: 1 + type: Transform + - uid: 23853 + components: + - pos: 51.5,-19.5 + parent: 1 + type: Transform + - uid: 23857 + components: + - pos: 29.5,-23.5 + parent: 1 + type: Transform + - uid: 23858 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-29.5 + parent: 1 + type: Transform + - uid: 23860 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-6.5 + parent: 1 + type: Transform + - uid: 23863 + components: + - rot: 3.141592653589793 rad + pos: -36.5,14.5 + parent: 1 + type: Transform + - uid: 23867 + components: + - pos: -16.5,38.5 + parent: 1 + type: Transform + - uid: 23868 + components: + - rot: -1.5707963267948966 rad + pos: 54.5,21.5 + parent: 1 + type: Transform + - uid: 23869 + components: + - pos: 33.5,34.5 + parent: 1 + type: Transform + - uid: 24606 + components: + - rot: 1.5707963267948966 rad + pos: -99.5,0.5 + parent: 1 + type: Transform + - uid: 24634 + components: + - rot: 1.5707963267948966 rad + pos: -99.5,8.5 + parent: 1 + type: Transform + - uid: 24635 + components: + - rot: 3.141592653589793 rad + pos: -92.5,-10.5 + parent: 1 + type: Transform + - uid: 24636 + components: + - pos: -92.5,19.5 + parent: 1 + type: Transform + - uid: 24637 + components: + - pos: -84.5,19.5 + parent: 1 + type: Transform + - uid: 24638 + components: + - rot: 3.141592653589793 rad + pos: -84.5,-10.5 + parent: 1 + type: Transform + - uid: 24639 + components: + - rot: -1.5707963267948966 rad + pos: -78.5,11.5 + parent: 1 + type: Transform + - uid: 24641 + components: + - rot: -1.5707963267948966 rad + pos: -78.5,-2.5 + parent: 1 + type: Transform +- proto: PoweredLightColoredBlack + entities: + - uid: 5649 + components: + - pos: 7.5,-17.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14453 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,23.5 + parent: 1 + type: Transform + - uid: 14454 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,21.5 + parent: 1 + type: Transform + - uid: 17099 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17280 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-17.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17281 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-17.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredLightColoredFrostyBlue + entities: + - uid: 17116 + components: + - pos: -60.5,5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17148 + components: + - rot: 3.141592653589793 rad + pos: 62.5,-17.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17193 + components: + - rot: -1.5707963267948966 rad + pos: 130.5,7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17207 + components: + - rot: -1.5707963267948966 rad + pos: 130.5,0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredLightColoredRed + entities: + - uid: 5650 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,31.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6382 + components: + - pos: -27.5,33.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6805 + components: + - rot: -1.5707963267948966 rad + pos: 119.5,7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6806 + components: + - rot: -1.5707963267948966 rad + pos: 119.5,0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9549 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-34.5 + parent: 1 + type: Transform + - uid: 17180 + components: + - rot: 3.141592653589793 rad + pos: 83.5,10.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17208 + components: + - pos: 122.5,6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17209 + components: + - rot: 3.141592653589793 rad + pos: 122.5,1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17460 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-34.5 + parent: 1 + type: Transform + - uid: 25228 + components: + - pos: 109.5,28.5 + parent: 1 + type: Transform + - uid: 25248 + components: + - rot: 1.5707963267948966 rad + pos: 104.5,27.5 + parent: 1 + type: Transform + - uid: 25630 + components: + - pos: -41.5,-44.5 + parent: 1 + type: Transform +- proto: PoweredlightEmpty + entities: + - uid: 23522 + components: + - pos: -26.5,-14.5 + parent: 1 + type: Transform +- proto: PoweredlightLED + entities: + - uid: 14399 + components: + - pos: 3.5,17.5 + parent: 1 + type: Transform +- proto: PoweredLightPostSmallRed + entities: + - uid: 5839 + components: + - pos: -39.5,-52.5 + parent: 1 + type: Transform + - uid: 5886 + components: + - pos: -42.5,-52.5 + parent: 1 + type: Transform +- proto: PoweredlightSodium + entities: + - uid: 15164 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-41.5 + parent: 1 + type: Transform + - uid: 16986 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - links: + - 16985 + type: DeviceLinkSink + - uid: 17071 + components: + - rot: 3.141592653589793 rad + pos: -20.5,14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17121 + components: + - rot: 3.141592653589793 rad + pos: -55.5,-18.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17122 + components: + - pos: -44.5,-14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17123 + components: + - rot: 3.141592653589793 rad + pos: -51.5,-25.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17294 + components: + - pos: 60.5,-27.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 25325 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-40.5 + parent: 1 + type: Transform + - uid: 25455 + components: + - pos: -43.5,-23.5 + parent: 1 + type: Transform +- proto: PoweredSmallLight + entities: + - uid: 901 + components: + - rot: 3.141592653589793 rad + pos: -0.5,23.5 + parent: 1 + type: Transform + - uid: 911 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,16.5 + parent: 1 + type: Transform + - links: + - 14463 + type: DeviceLinkSink + - uid: 1281 + components: + - pos: 30.5,43.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - links: + - 3766 + type: DeviceLinkSink + - uid: 1843 + components: + - pos: -61.5,-23.5 + parent: 1 + type: Transform + - links: + - 1885 + type: DeviceLinkSink + - uid: 1863 + components: + - rot: 3.141592653589793 rad + pos: -61.5,-21.5 + parent: 1 + type: Transform + - links: + - 1879 + type: DeviceLinkSink + - uid: 2291 + components: + - pos: 33.5,25.5 + parent: 1 + type: Transform + - uid: 2964 + components: + - pos: 31.5,25.5 + parent: 1 + type: Transform + - uid: 3346 + components: + - pos: -15.5,19.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3485 + components: + - rot: 3.141592653589793 rad + pos: 66.5,-17.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - links: + - 10341 + type: DeviceLinkSink + - uid: 5798 + components: + - pos: 30.5,40.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - links: + - 2138 + type: DeviceLinkSink + - uid: 5912 + components: + - pos: 30.5,46.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - links: + - 1283 + type: DeviceLinkSink + - uid: 6807 + components: + - rot: 3.141592653589793 rad + pos: 89.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - links: + - 9311 + type: DeviceLinkSink + - uid: 7116 + components: + - rot: -1.5707963267948966 rad + pos: 87.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - links: + - 9086 + type: DeviceLinkSink + - uid: 11380 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-33.5 + parent: 1 + type: Transform + - links: + - 15247 + type: DeviceLinkSink + - uid: 12067 + components: + - rot: 3.141592653589793 rad + pos: 5.5,49.5 + parent: 1 + type: Transform + - links: + - 9227 + type: DeviceLinkSink + - uid: 12451 + components: + - rot: 3.141592653589793 rad + pos: 33.5,22.5 + parent: 1 + type: Transform + - uid: 13790 + components: + - pos: 20.5,-32.5 + parent: 1 + type: Transform + - links: + - 15347 + type: DeviceLinkSink + - uid: 14397 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,24.5 + parent: 1 + type: Transform + - uid: 14400 + components: + - pos: -4.5,24.5 + parent: 1 + type: Transform + - links: + - 14465 + type: DeviceLinkSink + - uid: 14401 + components: + - rot: 3.141592653589793 rad + pos: 2.5,23.5 + parent: 1 + type: Transform + - links: + - 14464 + type: DeviceLinkSink + - uid: 14416 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,22.5 + parent: 1 + type: Transform + - links: + - 14462 + type: DeviceLinkSink + - uid: 14460 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,16.5 + parent: 1 + type: Transform + - links: + - 14461 + type: DeviceLinkSink + - uid: 14467 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-39.5 + parent: 1 + type: Transform + - uid: 14487 + components: + - pos: 24.5,-35.5 + parent: 1 + type: Transform + - links: + - 15346 + type: DeviceLinkSink + - uid: 14488 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-33.5 + parent: 1 + type: Transform + - uid: 14489 + components: + - pos: 29.5,-32.5 + parent: 1 + type: Transform + - links: + - 15165 + type: DeviceLinkSink + - uid: 15162 + components: + - pos: 31.5,-32.5 + parent: 1 + type: Transform + - links: + - 15166 + type: DeviceLinkSink + - uid: 15163 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-36.5 + parent: 1 + type: Transform + - uid: 15168 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-36.5 + parent: 1 + type: Transform + - uid: 15169 + components: + - pos: 3.5,-35.5 + parent: 1 + type: Transform + - links: + - 15248 + type: DeviceLinkSink + - uid: 15242 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-34.5 + parent: 1 + type: Transform + - links: + - 15245 + type: DeviceLinkSink + - uid: 15243 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-38.5 + parent: 1 + type: Transform + - links: + - 15244 + type: DeviceLinkSink + - uid: 15249 + components: + - pos: -2.5,-38.5 + parent: 1 + type: Transform + - links: + - 15246 + type: DeviceLinkSink + - uid: 16662 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-30.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16965 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16967 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - links: + - 16969 + type: DeviceLinkSink + - uid: 16999 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,12.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17004 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17005 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17036 + components: + - rot: 3.141592653589793 rad + pos: 18.5,48.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - links: + - 17035 + type: DeviceLinkSink + - uid: 17073 + components: + - pos: -18.5,19.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - links: + - 17074 + type: DeviceLinkSink + - uid: 17093 + components: + - rot: 3.141592653589793 rad + pos: -39.5,14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - links: + - 17095 + type: DeviceLinkSink + - uid: 17094 + components: + - rot: 3.141592653589793 rad + pos: -43.5,14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - links: + - 17096 + type: DeviceLinkSink + - uid: 17097 + components: + - pos: -47.5,14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17098 + components: + - pos: -46.5,14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17128 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-30.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17162 + components: + - pos: 64.5,17.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17163 + components: + - pos: 66.5,17.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17172 + components: + - rot: 1.5707963267948966 rad + pos: 69.5,7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17173 + components: + - rot: -1.5707963267948966 rad + pos: 64.5,28.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - links: + - 17178 + type: DeviceLinkSink + - uid: 17174 + components: + - rot: -1.5707963267948966 rad + pos: 64.5,25.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - links: + - 17178 + type: DeviceLinkSink + - uid: 17175 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,28.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - links: + - 17178 + type: DeviceLinkSink + - uid: 17176 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,25.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - links: + - 17178 + type: DeviceLinkSink + - uid: 17177 + components: + - rot: -1.5707963267948966 rad + pos: 70.5,28.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - links: + - 17178 + type: DeviceLinkSink + - uid: 17183 + components: + - rot: 1.5707963267948966 rad + pos: 85.5,28.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17184 + components: + - pos: 82.5,29.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17199 + components: + - rot: -1.5707963267948966 rad + pos: 106.5,-2.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - links: + - 17200 + type: DeviceLinkSink + - uid: 17201 + components: + - rot: 1.5707963267948966 rad + pos: 108.5,-0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17205 + components: + - rot: 3.141592653589793 rad + pos: 112.5,-2.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17217 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-35.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17218 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-28.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17221 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-16.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17227 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17228 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17229 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-18.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17230 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17232 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17286 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-36.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17288 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,56.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17292 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-28.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17297 + components: + - rot: 1.5707963267948966 rad + pos: 52.5,-16.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17300 + components: + - rot: 1.5707963267948966 rad + pos: 64.5,-23.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17301 + components: + - rot: 1.5707963267948966 rad + pos: 75.5,-23.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17309 + components: + - rot: -1.5707963267948966 rad + pos: 81.5,-3.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - links: + - 17310 + type: DeviceLinkSink + - uid: 17325 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,56.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17327 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,55.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17328 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,55.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17329 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,57.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17340 + components: + - rot: 3.141592653589793 rad + pos: 100.5,16.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 23483 + components: + - rot: 3.141592653589793 rad + pos: -3.5,30.5 + parent: 1 + type: Transform + - uid: 23524 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-10.5 + parent: 1 + type: Transform + - uid: 24762 + components: + - pos: -75.5,9.5 + parent: 1 + type: Transform + - uid: 24763 + components: + - pos: -71.5,9.5 + parent: 1 + type: Transform + - uid: 24764 + components: + - rot: -1.5707963267948966 rad + pos: -70.5,-1.5 + parent: 1 + type: Transform + - uid: 25186 + components: + - pos: 77.5,8.5 + parent: 1 + type: Transform + - links: + - 2677 + type: DeviceLinkSink + - uid: 25227 + components: + - rot: -1.5707963267948966 rad + pos: 113.5,27.5 + parent: 1 + type: Transform + - uid: 25571 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,40.5 + parent: 1 + type: Transform +- proto: PoweredSmallLightEmpty + entities: + - uid: 15253 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-44.5 + parent: 1 + type: Transform + - uid: 23490 + components: + - pos: -11.5,30.5 + parent: 1 + type: Transform +- proto: PoweredSmallLightMaintenance + entities: + - uid: 11107 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-9.5 + parent: 1 + type: Transform + - uid: 15251 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-34.5 + parent: 1 + type: Transform + - uid: 15252 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-38.5 + parent: 1 + type: Transform + - uid: 16606 + components: + - rot: 3.141592653589793 rad + pos: -15.5,24.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16915 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-48.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17000 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17001 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17002 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17003 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17109 + components: + - rot: 3.141592653589793 rad + pos: -52.5,37.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17202 + components: + - rot: 1.5707963267948966 rad + pos: 108.5,-4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17211 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-48.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17222 + components: + - pos: -27.5,0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17224 + components: + - pos: -19.5,-12.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17231 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-18.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17233 + components: + - pos: -35.5,-1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17234 + components: + - pos: -38.5,-1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17235 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,-4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17237 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,-6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17242 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17243 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,38.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17244 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,38.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17247 + components: + - rot: 3.141592653589793 rad + pos: -34.5,24.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17250 + components: + - rot: 3.141592653589793 rad + pos: -27.5,7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17258 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,28.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17259 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,28.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17260 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,26.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17263 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,26.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17267 + components: + - rot: 3.141592653589793 rad + pos: 49.5,7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17272 + components: + - pos: 49.5,0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17274 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,-9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17278 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-21.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17279 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17283 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-17.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17296 + components: + - rot: 1.5707963267948966 rad + pos: 61.5,-20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17298 + components: + - pos: 60.5,0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17302 + components: + - pos: 76.5,-17.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17307 + components: + - pos: 92.5,0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17311 + components: + - rot: 3.141592653589793 rad + pos: 60.5,7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17312 + components: + - rot: -1.5707963267948966 rad + pos: 61.5,14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17314 + components: + - pos: 52.5,35.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17316 + components: + - pos: 48.5,41.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17320 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,37.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17333 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,37.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17336 + components: + - pos: -0.5,37.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17337 + components: + - rot: 1.5707963267948966 rad + pos: 91.5,16.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17343 + components: + - rot: 3.141592653589793 rad + pos: 99.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 20951 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 23794 + components: + - rot: 3.141592653589793 rad + pos: 91.5,12.5 + parent: 1 + type: Transform + - uid: 24288 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-30.5 + parent: 1 + type: Transform + - uid: 24289 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-30.5 + parent: 1 + type: Transform + - uid: 25456 + components: + - pos: -47.5,-20.5 + parent: 1 + type: Transform + - uid: 25457 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-21.5 + parent: 1 + type: Transform + - uid: 25537 + components: + - rot: 1.5707963267948966 rad + pos: -62.5,-16.5 + parent: 1 + type: Transform + - uid: 25572 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,40.5 + parent: 1 + type: Transform +- proto: PoweredSmallLightMaintenanceRed + entities: + - uid: 910 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,26.5 + parent: 1 + type: Transform + - uid: 1032 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,26.5 + parent: 1 + type: Transform + - uid: 3822 + components: + - pos: -62.5,-3.5 + parent: 1 + type: Transform + - uid: 3823 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,15.5 + parent: 1 + type: Transform + - uid: 14412 + components: + - pos: 3.5,-23.5 + parent: 1 + type: Transform + - uid: 14413 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-38.5 + parent: 1 + type: Transform + - uid: 14480 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-33.5 + parent: 1 + type: Transform + - uid: 14481 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-32.5 + parent: 1 + type: Transform + - uid: 14482 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-32.5 + parent: 1 + type: Transform + - uid: 14483 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-33.5 + parent: 1 + type: Transform + - uid: 16380 + components: + - rot: 3.141592653589793 rad + pos: -18.5,21.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 16949 + components: + - pos: 20.5,-23.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17212 + components: + - pos: -11.5,-41.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17214 + components: + - pos: -14.5,-31.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17215 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-30.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17219 + components: + - rot: 3.141592653589793 rad + pos: -35.5,-29.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17220 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-23.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17223 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17225 + components: + - pos: -10.5,-20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17226 + components: + - pos: -2.5,-18.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17236 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-3.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17246 + components: + - pos: -31.5,32.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17248 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,18.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17249 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17254 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,26.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17262 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,27.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17265 + components: + - pos: 39.5,28.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17266 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17273 + components: + - rot: -1.5707963267948966 rad + pos: 51.5,-9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17275 + components: + - pos: 36.5,-20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17276 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-21.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17277 + components: + - pos: 30.5,-19.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17285 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-30.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17287 + components: + - pos: 41.5,-36.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17289 + components: + - rot: 3.141592653589793 rad + pos: 41.5,-40.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17295 + components: + - pos: 50.5,-24.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17299 + components: + - rot: -1.5707963267948966 rad + pos: 58.5,-11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17304 + components: + - pos: 89.5,-14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17305 + components: + - rot: 3.141592653589793 rad + pos: 100.5,-7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17306 + components: + - rot: -1.5707963267948966 rad + pos: 106.5,-6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17315 + components: + - rot: 3.141592653589793 rad + pos: 51.5,32.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17321 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,38.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17322 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,46.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17326 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,44.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17330 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,42.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17332 + components: + - pos: -10.5,40.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17334 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,27.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17338 + components: + - rot: -1.5707963267948966 rad + pos: 96.5,17.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17339 + components: + - rot: 1.5707963267948966 rad + pos: 91.5,19.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17341 + components: + - pos: 93.5,22.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17342 + components: + - pos: 104.5,14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 22180 + components: + - pos: -2.5,-15.5 + parent: 1 + type: Transform + - uid: 23489 + components: + - pos: 28.5,30.5 + parent: 1 + type: Transform + - uid: 23927 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-13.5 + parent: 1 + type: Transform +- proto: Protolathe + entities: + - uid: 4702 + components: + - pos: 3.5,47.5 + parent: 1 + type: Transform +- proto: PsychBed + entities: + - uid: 5723 + components: + - pos: 76.5,-4.5 + parent: 1 + type: Transform +- proto: Puddle + entities: + - uid: 3160 + components: + - pos: -12.5,16.5 + parent: 1 + type: Transform + - solutions: + puddle: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 1000 + reagents: + - data: null + ReagentId: SpaceLube + Quantity: 50 + type: SolutionContainerManager + - modifier: 0.15 + type: TileFrictionModifier + - uid: 7455 + components: + - pos: -60.5,8.5 + parent: 1 + type: Transform + - solutions: + puddle: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 1000 + reagents: + - data: null + ReagentId: Oil + Quantity: 15 + type: SolutionContainerManager + - active: False + type: StepTrigger + - uid: 15986 + components: + - pos: -26.5,32.5 + parent: 1 + type: Transform + - solutions: + puddle: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 1000 + reagents: + - data: null + ReagentId: ChloralHydrate + Quantity: 15 + type: SolutionContainerManager + - active: False + type: StepTrigger +- proto: PuddleEgg + entities: + - uid: 15825 + components: + - pos: -64.5,10.5 + parent: 1 + type: Transform +- proto: PuddleFlour + entities: + - uid: 1134 + components: + - pos: 6.5,24.5 + parent: 1 + type: Transform + - uid: 15827 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-44.5 + parent: 1 + type: Transform +- proto: PuddleWatermelon + entities: + - uid: 12358 + components: + - pos: -6.5,-30.5 + parent: 1 + type: Transform + - uid: 15985 + components: + - pos: -34.5,34.5 + parent: 1 + type: Transform +- proto: Rack + entities: + - uid: 54 + components: + - rot: -1.5707963267948966 rad + pos: 55.5,17.5 + parent: 1 + type: Transform + - uid: 57 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-30.5 + parent: 1 + type: Transform + - uid: 75 + components: + - pos: -37.5,-5.5 + parent: 1 + type: Transform + - uid: 184 + components: + - pos: -37.5,-6.5 + parent: 1 + type: Transform + - uid: 1071 + components: + - pos: -1.5,21.5 + parent: 1 + type: Transform + - uid: 1077 + components: + - pos: -0.5,19.5 + parent: 1 + type: Transform + - uid: 1078 + components: + - pos: -1.5,19.5 + parent: 1 + type: Transform + - uid: 1178 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,14.5 + parent: 1 + type: Transform + - uid: 1179 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,14.5 + parent: 1 + type: Transform + - uid: 1180 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,14.5 + parent: 1 + type: Transform + - uid: 1495 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-30.5 + parent: 1 + type: Transform + - uid: 1919 + components: + - pos: 1.5,-17.5 + parent: 1 + type: Transform + - uid: 1924 + components: + - pos: 0.5,-16.5 + parent: 1 + type: Transform + - uid: 1988 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 2000 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 2097 + components: + - pos: -15.5,22.5 + parent: 1 + type: Transform + - uid: 2444 + components: + - pos: -47.5,4.5 + parent: 1 + type: Transform + - uid: 2544 + components: + - pos: -57.5,2.5 + parent: 1 + type: Transform + - uid: 2567 + components: + - pos: -47.5,-2.5 + parent: 1 + type: Transform + - uid: 2568 + components: + - pos: -47.5,-1.5 + parent: 1 + type: Transform + - uid: 2569 + components: + - pos: -45.5,-2.5 + parent: 1 + type: Transform + - uid: 2570 + components: + - pos: -45.5,-1.5 + parent: 1 + type: Transform + - uid: 2756 + components: + - pos: -9.5,-42.5 + parent: 1 + type: Transform + - uid: 2773 + components: + - pos: 54.5,-1.5 + parent: 1 + type: Transform + - uid: 2807 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,23.5 + parent: 1 + type: Transform + - uid: 2871 + components: + - rot: 3.141592653589793 rad + pos: 56.5,9.5 + parent: 1 + type: Transform + - uid: 2881 + components: + - pos: 31.5,27.5 + parent: 1 + type: Transform + - uid: 3007 + components: + - pos: -62.5,-4.5 + parent: 1 + type: Transform + - uid: 3014 + components: + - pos: -62.5,-3.5 + parent: 1 + type: Transform + - uid: 3097 + components: + - rot: 3.141592653589793 rad + pos: 55.5,9.5 + parent: 1 + type: Transform + - uid: 3151 + components: + - rot: -1.5707963267948966 rad + pos: 55.5,15.5 + parent: 1 + type: Transform + - uid: 3341 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,23.5 + parent: 1 + type: Transform + - uid: 3344 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,23.5 + parent: 1 + type: Transform + - uid: 3543 + components: + - pos: -13.5,8.5 + parent: 1 + type: Transform + - uid: 3544 + components: + - pos: -13.5,9.5 + parent: 1 + type: Transform + - uid: 3545 + components: + - pos: -13.5,10.5 + parent: 1 + type: Transform + - uid: 3576 + components: + - pos: -18.5,10.5 + parent: 1 + type: Transform + - uid: 3612 + components: + - pos: 15.5,-18.5 + parent: 1 + type: Transform + - uid: 3613 + components: + - pos: 15.5,-17.5 + parent: 1 + type: Transform + - uid: 3764 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-33.5 + parent: 1 + type: Transform + - uid: 4151 + components: + - rot: 3.141592653589793 rad + pos: 56.5,-1.5 + parent: 1 + type: Transform + - uid: 4264 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-0.5 + parent: 1 + type: Transform + - uid: 4267 + components: + - rot: 3.141592653589793 rad + pos: 30.5,0.5 + parent: 1 + type: Transform + - uid: 4331 + components: + - pos: 18.5,-15.5 + parent: 1 + type: Transform + - uid: 4632 + components: + - pos: -1.5,47.5 + parent: 1 + type: Transform + - uid: 4657 + components: + - pos: -9.5,42.5 + parent: 1 + type: Transform + - uid: 4658 + components: + - pos: -10.5,42.5 + parent: 1 + type: Transform + - uid: 4659 + components: + - pos: -11.5,42.5 + parent: 1 + type: Transform + - uid: 4672 + components: + - pos: -12.5,43.5 + parent: 1 + type: Transform + - uid: 4899 + components: + - pos: 84.5,17.5 + parent: 1 + type: Transform + - uid: 5118 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 1 + type: Transform + - uid: 5249 + components: + - pos: 35.5,26.5 + parent: 1 + type: Transform + - uid: 5325 + components: + - rot: 3.141592653589793 rad + pos: 81.5,24.5 + parent: 1 + type: Transform + - uid: 5680 + components: + - pos: 71.5,-12.5 + parent: 1 + type: Transform + - uid: 5942 + components: + - pos: 37.5,-29.5 + parent: 1 + type: Transform + - uid: 6385 + components: + - pos: -45.5,4.5 + parent: 1 + type: Transform + - uid: 6515 + components: + - pos: -39.5,35.5 + parent: 1 + type: Transform + - uid: 6516 + components: + - pos: -38.5,35.5 + parent: 1 + type: Transform + - uid: 6579 + components: + - pos: -47.5,-0.5 + parent: 1 + type: Transform + - uid: 6580 + components: + - pos: -45.5,-0.5 + parent: 1 + type: Transform + - uid: 6617 + components: + - rot: 3.141592653589793 rad + pos: -42.5,22.5 + parent: 1 + type: Transform + - uid: 6618 + components: + - rot: 3.141592653589793 rad + pos: -41.5,22.5 + parent: 1 + type: Transform + - uid: 6619 + components: + - rot: 3.141592653589793 rad + pos: -40.5,22.5 + parent: 1 + type: Transform + - uid: 6640 + components: + - pos: -51.5,38.5 + parent: 1 + type: Transform + - uid: 6641 + components: + - pos: -53.5,38.5 + parent: 1 + type: Transform + - uid: 6809 + components: + - pos: 76.5,-8.5 + parent: 1 + type: Transform + - uid: 6945 + components: + - pos: 26.5,-11.5 + parent: 1 + type: Transform + - uid: 7092 + components: + - pos: -19.5,14.5 + parent: 1 + type: Transform + - uid: 7093 + components: + - pos: -20.5,14.5 + parent: 1 + type: Transform + - uid: 7163 + components: + - pos: 76.5,15.5 + parent: 1 + type: Transform + - uid: 7288 + components: + - pos: 18.5,39.5 + parent: 1 + type: Transform + - uid: 7289 + components: + - pos: 17.5,39.5 + parent: 1 + type: Transform + - uid: 7356 + components: + - rot: 3.141592653589793 rad + pos: 64.5,-15.5 + parent: 1 + type: Transform + - uid: 7444 + components: + - pos: 17.5,50.5 + parent: 1 + type: Transform + - uid: 7536 + components: + - pos: 47.5,13.5 + parent: 1 + type: Transform + - uid: 7539 + components: + - pos: 47.5,11.5 + parent: 1 + type: Transform + - uid: 7553 + components: + - pos: 15.5,-10.5 + parent: 1 + type: Transform + - uid: 7554 + components: + - pos: 18.5,-10.5 + parent: 1 + type: Transform + - uid: 7556 + components: + - pos: 15.5,-13.5 + parent: 1 + type: Transform + - uid: 7558 + components: + - pos: 17.5,-13.5 + parent: 1 + type: Transform + - uid: 7559 + components: + - pos: 18.5,-13.5 + parent: 1 + type: Transform + - uid: 7560 + components: + - pos: 15.5,-11.5 + parent: 1 + type: Transform + - uid: 7571 + components: + - pos: 20.5,-10.5 + parent: 1 + type: Transform + - uid: 7574 + components: + - pos: 20.5,-11.5 + parent: 1 + type: Transform + - uid: 7625 + components: + - pos: 57.5,-10.5 + parent: 1 + type: Transform + - uid: 7627 + components: + - pos: 57.5,-12.5 + parent: 1 + type: Transform + - uid: 7668 + components: + - pos: 83.5,-12.5 + parent: 1 + type: Transform + - uid: 7731 + components: + - pos: -12.5,-18.5 + parent: 1 + type: Transform + - uid: 7740 + components: + - pos: -8.5,-43.5 + parent: 1 + type: Transform + - uid: 7747 + components: + - pos: 89.5,-11.5 + parent: 1 + type: Transform + - uid: 7748 + components: + - pos: 109.5,-3.5 + parent: 1 + type: Transform + - uid: 7752 + components: + - pos: 105.5,-7.5 + parent: 1 + type: Transform + - uid: 7753 + components: + - pos: 106.5,-7.5 + parent: 1 + type: Transform + - uid: 7757 + components: + - pos: 39.5,-16.5 + parent: 1 + type: Transform + - uid: 7769 + components: + - pos: 29.5,25.5 + parent: 1 + type: Transform + - uid: 7770 + components: + - pos: 27.5,25.5 + parent: 1 + type: Transform + - uid: 7777 + components: + - pos: -7.5,40.5 + parent: 1 + type: Transform + - uid: 7781 + components: + - pos: 89.5,21.5 + parent: 1 + type: Transform + - uid: 7782 + components: + - pos: 89.5,22.5 + parent: 1 + type: Transform + - uid: 8619 + components: + - pos: -1.5,35.5 + parent: 1 + type: Transform + - uid: 9129 + components: + - pos: 7.5,28.5 + parent: 1 + type: Transform + - uid: 9130 + components: + - pos: -6.5,35.5 + parent: 1 + type: Transform + - uid: 9619 + components: + - pos: 115.5,6.5 + parent: 1 + type: Transform + - uid: 9620 + components: + - pos: 115.5,1.5 + parent: 1 + type: Transform + - uid: 9802 + components: + - pos: 111.5,-1.5 + parent: 1 + type: Transform + - uid: 11246 + components: + - pos: -2.5,26.5 + parent: 1 + type: Transform + - uid: 11522 + components: + - pos: 3.5,-41.5 + parent: 1 + type: Transform + - uid: 11528 + components: + - pos: 3.5,-44.5 + parent: 1 + type: Transform + - uid: 11691 + components: + - pos: 32.5,48.5 + parent: 1 + type: Transform + - uid: 11697 + components: + - pos: 25.5,35.5 + parent: 1 + type: Transform + - uid: 11703 + components: + - pos: 97.5,12.5 + parent: 1 + type: Transform + - uid: 11716 + components: + - pos: 35.5,48.5 + parent: 1 + type: Transform + - uid: 11946 + components: + - pos: -38.5,40.5 + parent: 1 + type: Transform + - uid: 12048 + components: + - pos: 63.5,19.5 + parent: 1 + type: Transform + - uid: 12049 + components: + - pos: 64.5,19.5 + parent: 1 + type: Transform + - uid: 12315 + components: + - pos: -15.5,-31.5 + parent: 1 + type: Transform + - uid: 12316 + components: + - pos: -13.5,-31.5 + parent: 1 + type: Transform + - uid: 12317 + components: + - pos: -12.5,-31.5 + parent: 1 + type: Transform + - uid: 12341 + components: + - pos: -5.5,-28.5 + parent: 1 + type: Transform + - uid: 12342 + components: + - pos: -0.5,-28.5 + parent: 1 + type: Transform + - uid: 12356 + components: + - pos: -38.5,-14.5 + parent: 1 + type: Transform + - uid: 12357 + components: + - pos: -37.5,-14.5 + parent: 1 + type: Transform + - uid: 12361 + components: + - pos: -38.5,-18.5 + parent: 1 + type: Transform + - uid: 12362 + components: + - pos: -37.5,-18.5 + parent: 1 + type: Transform + - uid: 12395 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,7.5 + parent: 1 + type: Transform + - uid: 12396 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,7.5 + parent: 1 + type: Transform + - uid: 12397 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 12398 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,10.5 + parent: 1 + type: Transform + - uid: 12415 + components: + - pos: 34.5,-36.5 + parent: 1 + type: Transform + - uid: 12416 + components: + - pos: 35.5,-41.5 + parent: 1 + type: Transform + - uid: 12454 + components: + - pos: -3.5,26.5 + parent: 1 + type: Transform + - uid: 12530 + components: + - pos: -13.5,43.5 + parent: 1 + type: Transform + - uid: 12815 + components: + - pos: 30.5,-39.5 + parent: 1 + type: Transform + - uid: 12816 + components: + - pos: 30.5,-42.5 + parent: 1 + type: Transform + - uid: 12865 + components: + - pos: 32.5,-44.5 + parent: 1 + type: Transform + - uid: 14312 + components: + - pos: 16.5,-13.5 + parent: 1 + type: Transform + - uid: 15735 + components: + - pos: -35.5,-2.5 + parent: 1 + type: Transform + - uid: 15770 + components: + - pos: -58.5,9.5 + parent: 1 + type: Transform + - uid: 15773 + components: + - pos: -58.5,8.5 + parent: 1 + type: Transform + - uid: 15794 + components: + - pos: -53.5,13.5 + parent: 1 + type: Transform + - uid: 15795 + components: + - pos: -54.5,13.5 + parent: 1 + type: Transform + - uid: 15850 + components: + - pos: -31.5,32.5 + parent: 1 + type: Transform + - uid: 15851 + components: + - pos: -31.5,31.5 + parent: 1 + type: Transform + - uid: 15852 + components: + - pos: -31.5,30.5 + parent: 1 + type: Transform + - uid: 15858 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,26.5 + parent: 1 + type: Transform + - uid: 15930 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,39.5 + parent: 1 + type: Transform + - uid: 15931 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,39.5 + parent: 1 + type: Transform + - uid: 15945 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,48.5 + parent: 1 + type: Transform + - uid: 15951 + components: + - pos: 29.5,48.5 + parent: 1 + type: Transform + - uid: 15994 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-17.5 + parent: 1 + type: Transform + - uid: 15995 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-17.5 + parent: 1 + type: Transform + - uid: 15996 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-17.5 + parent: 1 + type: Transform + - uid: 16093 + components: + - pos: 18.5,52.5 + parent: 1 + type: Transform + - uid: 16096 + components: + - pos: 27.5,34.5 + parent: 1 + type: Transform + - uid: 16097 + components: + - pos: 28.5,34.5 + parent: 1 + type: Transform + - uid: 16098 + components: + - pos: 33.5,34.5 + parent: 1 + type: Transform + - uid: 16232 + components: + - pos: 65.5,-30.5 + parent: 1 + type: Transform + - uid: 16258 + components: + - pos: 77.5,-17.5 + parent: 1 + type: Transform + - uid: 16273 + components: + - rot: 3.141592653589793 rad + pos: 89.5,-14.5 + parent: 1 + type: Transform + - uid: 16274 + components: + - rot: 3.141592653589793 rad + pos: 89.5,-15.5 + parent: 1 + type: Transform + - uid: 16343 + components: + - pos: 25.5,-19.5 + parent: 1 + type: Transform + - uid: 16344 + components: + - pos: 27.5,-19.5 + parent: 1 + type: Transform + - uid: 16384 + components: + - pos: 4.5,-19.5 + parent: 1 + type: Transform + - uid: 16443 + components: + - pos: 47.5,41.5 + parent: 1 + type: Transform + - uid: 16712 + components: + - rot: 1.5707963267948966 rad + pos: 80.5,11.5 + parent: 1 + type: Transform + - uid: 16724 + components: + - rot: 3.141592653589793 rad + pos: 96.5,18.5 + parent: 1 + type: Transform + - uid: 16725 + components: + - rot: 3.141592653589793 rad + pos: 96.5,19.5 + parent: 1 + type: Transform + - uid: 16726 + components: + - rot: 3.141592653589793 rad + pos: 93.5,22.5 + parent: 1 + type: Transform + - uid: 16780 + components: + - pos: -12.5,-23.5 + parent: 1 + type: Transform + - uid: 16799 + components: + - pos: -3.5,-18.5 + parent: 1 + type: Transform + - uid: 16800 + components: + - pos: -2.5,-18.5 + parent: 1 + type: Transform + - uid: 16981 + components: + - rot: 3.141592653589793 rad + pos: 82.5,10.5 + parent: 1 + type: Transform + - uid: 19419 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-12.5 + parent: 1 + type: Transform + - uid: 21448 + components: + - pos: 82.5,11.5 + parent: 1 + type: Transform + - uid: 21529 + components: + - pos: -58.5,-14.5 + parent: 1 + type: Transform + - uid: 21530 + components: + - pos: -59.5,-18.5 + parent: 1 + type: Transform + - uid: 21550 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,47.5 + parent: 1 + type: Transform + - uid: 22336 + components: + - pos: 99.5,11.5 + parent: 1 + type: Transform + - uid: 22622 + components: + - pos: 112.5,10.5 + parent: 1 + type: Transform + - uid: 22623 + components: + - pos: 111.5,10.5 + parent: 1 + type: Transform + - uid: 22648 + components: + - pos: 89.5,-19.5 + parent: 1 + type: Transform + - uid: 22649 + components: + - pos: 90.5,-19.5 + parent: 1 + type: Transform + - uid: 22650 + components: + - pos: 91.5,-19.5 + parent: 1 + type: Transform + - uid: 22717 + components: + - pos: -17.5,52.5 + parent: 1 + type: Transform + - uid: 22757 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,35.5 + parent: 1 + type: Transform + - uid: 22759 + components: + - pos: -30.5,19.5 + parent: 1 + type: Transform + - uid: 22760 + components: + - pos: -29.5,19.5 + parent: 1 + type: Transform + - uid: 22892 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-16.5 + parent: 1 + type: Transform + - uid: 22930 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-13.5 + parent: 1 + type: Transform + - uid: 22931 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-13.5 + parent: 1 + type: Transform + - uid: 23423 + components: + - rot: -1.5707963267948966 rad + pos: 52.5,-20.5 + parent: 1 + type: Transform + - uid: 23424 + components: + - rot: -1.5707963267948966 rad + pos: 52.5,-19.5 + parent: 1 + type: Transform + - uid: 23428 + components: + - pos: 26.5,29.5 + parent: 1 + type: Transform + - uid: 23465 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,38.5 + parent: 1 + type: Transform + - uid: 23472 + components: + - pos: -13.5,29.5 + parent: 1 + type: Transform + - uid: 23480 + components: + - pos: -3.5,31.5 + parent: 1 + type: Transform + - uid: 23481 + components: + - pos: -2.5,31.5 + parent: 1 + type: Transform + - uid: 24351 + components: + - pos: -75.5,9.5 + parent: 1 + type: Transform + - uid: 24352 + components: + - pos: -74.5,9.5 + parent: 1 + type: Transform + - uid: 24766 + components: + - rot: 3.141592653589793 rad + pos: -62.5,-18.5 + parent: 1 + type: Transform + - uid: 25152 + components: + - rot: 1.5707963267948966 rad + pos: 78.5,-10.5 + parent: 1 + type: Transform + - uid: 25616 + components: + - pos: -40.5,-34.5 + parent: 1 + type: Transform +- proto: RadiationCollector + entities: + - uid: 24370 + components: + - pos: -88.5,12.5 + parent: 1 + type: Transform +- proto: RadiationCollectorFullTank + entities: + - uid: 24368 + components: + - pos: -90.5,12.5 + parent: 1 + type: Transform + - uid: 24369 + components: + - pos: -85.5,12.5 + parent: 1 + type: Transform + - uid: 24371 + components: + - pos: -86.5,12.5 + parent: 1 + type: Transform +- proto: RadiationCollectorNoTank + entities: + - uid: 24367 + components: + - pos: -90.5,-3.5 + parent: 1 + type: Transform + - uid: 25297 + components: + - pos: -84.5,-3.5 + parent: 1 + type: Transform +- proto: RadioHandheld + entities: + - uid: 5509 + components: + - rot: 1.5707963267948966 rad + pos: 72.52255,8.660531 + parent: 1 + type: Transform + - uid: 16742 + components: + - rot: 1.5707963267948966 rad + pos: 72.22149,15.786709 + parent: 1 + type: Transform + - uid: 16746 + components: + - rot: 1.5707963267948966 rad + pos: 66.56057,10.548455 + parent: 1 + type: Transform + - uid: 16747 + components: + - pos: 52.87519,-17.68409 + parent: 1 + type: Transform +- proto: RagItem + entities: + - uid: 2867 + components: + - pos: -11.62246,17.721806 + parent: 1 + type: Transform + - uid: 16734 + components: + - pos: 77.44407,29.32988 + parent: 1 + type: Transform +- proto: Railing + entities: + - uid: 859 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,15.5 + parent: 1 + type: Transform + - uid: 861 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,14.5 + parent: 1 + type: Transform + - uid: 971 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,15.5 + parent: 1 + type: Transform + - uid: 979 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,17.5 + parent: 1 + type: Transform + - uid: 980 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,17.5 + parent: 1 + type: Transform + - uid: 1553 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-26.5 + parent: 1 + type: Transform + - uid: 1554 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-25.5 + parent: 1 + type: Transform + - uid: 1555 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-27.5 + parent: 1 + type: Transform + - uid: 1563 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-25.5 + parent: 1 + type: Transform + - uid: 1565 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-27.5 + parent: 1 + type: Transform + - uid: 1566 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-26.5 + parent: 1 + type: Transform + - uid: 1688 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 1 + type: Transform + - uid: 1689 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 1 + type: Transform + - uid: 2917 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,17.5 + parent: 1 + type: Transform + - uid: 2922 + components: + - rot: 3.141592653589793 rad + pos: 23.5,18.5 + parent: 1 + type: Transform + - uid: 2930 + components: + - pos: 37.5,23.5 + parent: 1 + type: Transform + - uid: 2934 + components: + - pos: 35.5,23.5 + parent: 1 + type: Transform + - uid: 3225 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,15.5 + parent: 1 + type: Transform + - uid: 3234 + components: + - pos: 27.5,20.5 + parent: 1 + type: Transform + - uid: 3263 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,16.5 + parent: 1 + type: Transform + - uid: 3275 + components: + - pos: 28.5,20.5 + parent: 1 + type: Transform + - uid: 3285 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,14.5 + parent: 1 + type: Transform + - uid: 3286 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,15.5 + parent: 1 + type: Transform + - uid: 3287 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,16.5 + parent: 1 + type: Transform + - uid: 3288 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,17.5 + parent: 1 + type: Transform + - uid: 3289 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,14.5 + parent: 1 + type: Transform + - uid: 3561 + components: + - rot: 3.141592653589793 rad + pos: -21.5,15.5 + parent: 1 + type: Transform + - uid: 3562 + components: + - rot: 3.141592653589793 rad + pos: -20.5,15.5 + parent: 1 + type: Transform + - uid: 4974 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-0.5 + parent: 1 + type: Transform + - uid: 4975 + components: + - pos: -31.5,8.5 + parent: 1 + type: Transform + - uid: 4976 + components: + - pos: -33.5,8.5 + parent: 1 + type: Transform + - uid: 4977 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-0.5 + parent: 1 + type: Transform + - uid: 4987 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-0.5 + parent: 1 + type: Transform + - uid: 4988 + components: + - pos: -32.5,8.5 + parent: 1 + type: Transform + - uid: 4989 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-11.5 + parent: 1 + type: Transform + - uid: 4990 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,-10.5 + parent: 1 + type: Transform + - uid: 4991 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,-12.5 + parent: 1 + type: Transform + - uid: 5004 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-12.5 + parent: 1 + type: Transform + - uid: 5005 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,-11.5 + parent: 1 + type: Transform + - uid: 6521 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,20.5 + parent: 1 + type: Transform + - uid: 6522 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,19.5 + parent: 1 + type: Transform + - uid: 6523 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,18.5 + parent: 1 + type: Transform + - uid: 6524 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,17.5 + parent: 1 + type: Transform + - uid: 6525 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,16.5 + parent: 1 + type: Transform + - uid: 6526 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,18.5 + parent: 1 + type: Transform + - uid: 6527 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,19.5 + parent: 1 + type: Transform + - uid: 6528 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,20.5 + parent: 1 + type: Transform + - uid: 6969 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-16.5 + parent: 1 + type: Transform + - uid: 6970 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-17.5 + parent: 1 + type: Transform + - uid: 9787 + components: + - pos: 121.5,5.5 + parent: 1 + type: Transform + - uid: 9788 + components: + - pos: 122.5,5.5 + parent: 1 + type: Transform + - uid: 9789 + components: + - pos: 123.5,5.5 + parent: 1 + type: Transform + - uid: 9790 + components: + - pos: 124.5,5.5 + parent: 1 + type: Transform + - uid: 9791 + components: + - rot: 3.141592653589793 rad + pos: 124.5,2.5 + parent: 1 + type: Transform + - uid: 9792 + components: + - rot: 3.141592653589793 rad + pos: 123.5,2.5 + parent: 1 + type: Transform + - uid: 9793 + components: + - rot: 3.141592653589793 rad + pos: 122.5,2.5 + parent: 1 + type: Transform + - uid: 9794 + components: + - rot: 3.141592653589793 rad + pos: 121.5,2.5 + parent: 1 + type: Transform + - uid: 9917 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,2.5 + parent: 1 + type: Transform + - uid: 9918 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,2.5 + parent: 1 + type: Transform + - uid: 9919 + components: + - rot: 3.141592653589793 rad + pos: 43.5,3.5 + parent: 1 + type: Transform + - uid: 9920 + components: + - rot: 3.141592653589793 rad + pos: 44.5,3.5 + parent: 1 + type: Transform + - uid: 9921 + components: + - rot: 3.141592653589793 rad + pos: 45.5,3.5 + parent: 1 + type: Transform + - uid: 9926 + components: + - pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 9927 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,8.5 + parent: 1 + type: Transform + - uid: 9928 + components: + - rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 9929 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1 + type: Transform + - uid: 9930 + components: + - rot: 3.141592653589793 rad + pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 9931 + components: + - rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 9932 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 9933 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 12513 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-40.5 + parent: 1 + type: Transform + - uid: 12514 + components: + - pos: 14.5,-39.5 + parent: 1 + type: Transform + - uid: 12786 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-41.5 + parent: 1 + type: Transform + - uid: 25604 + components: + - pos: -44.5,-46.5 + parent: 1 + type: Transform + - uid: 25605 + components: + - pos: -43.5,-46.5 + parent: 1 + type: Transform + - uid: 25606 + components: + - pos: -42.5,-46.5 + parent: 1 + type: Transform +- proto: RailingCorner + entities: + - uid: 2929 + components: + - pos: 38.5,23.5 + parent: 1 + type: Transform + - uid: 2952 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,18.5 + parent: 1 + type: Transform + - uid: 3267 + components: + - rot: 3.141592653589793 rad + pos: 21.5,18.5 + parent: 1 + type: Transform + - uid: 3276 + components: + - pos: 29.5,20.5 + parent: 1 + type: Transform + - uid: 4992 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-10.5 + parent: 1 + type: Transform + - uid: 5844 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-46.5 + parent: 1 + type: Transform + - uid: 6967 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-16.5 + parent: 1 + type: Transform + - uid: 6968 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-16.5 + parent: 1 + type: Transform + - uid: 9915 + components: + - rot: 3.141592653589793 rad + pos: 42.5,3.5 + parent: 1 + type: Transform + - uid: 9916 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,3.5 + parent: 1 + type: Transform + - uid: 9924 + components: + - pos: 9.5,5.5 + parent: 1 + type: Transform + - uid: 9925 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,2.5 + parent: 1 + type: Transform +- proto: RailingCornerSmall + entities: + - uid: 850 + components: + - rot: 3.141592653589793 rad + pos: -3.5,18.5 + parent: 1 + type: Transform + - uid: 1237 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-42.5 + parent: 1 + type: Transform + - uid: 1690 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 1 + type: Transform + - uid: 1691 + components: + - pos: 9.5,-7.5 + parent: 1 + type: Transform + - uid: 1692 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 1 + type: Transform + - uid: 1693 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 1694 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 1695 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-6.5 + parent: 1 + type: Transform + - uid: 2925 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-39.5 + parent: 1 + type: Transform + - uid: 2933 + components: + - rot: 3.141592653589793 rad + pos: 38.5,24.5 + parent: 1 + type: Transform + - uid: 2945 + components: + - rot: 3.141592653589793 rad + pos: 29.5,21.5 + parent: 1 + type: Transform + - uid: 3563 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,15.5 + parent: 1 + type: Transform + - uid: 3564 + components: + - pos: -19.5,15.5 + parent: 1 + type: Transform + - uid: 9934 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 9935 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 9936 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 9937 + components: + - rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 1 + type: Transform + - uid: 9938 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform + - uid: 9939 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 9940 + components: + - rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 1 + type: Transform + - uid: 9941 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,6.5 + parent: 1 + type: Transform + - uid: 9942 + components: + - pos: 10.5,5.5 + parent: 1 + type: Transform + - uid: 9943 + components: + - pos: 10.5,7.5 + parent: 1 + type: Transform + - uid: 9944 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,7.5 + parent: 1 + type: Transform + - uid: 9945 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,8.5 + parent: 1 + type: Transform + - uid: 12512 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-39.5 + parent: 1 + type: Transform +- proto: RandomAnimalSpawner + entities: + - uid: 1182 + components: + - pos: -0.5,15.5 + parent: 1 + type: Transform + - uid: 4256 + components: + - pos: 26.5,-0.5 + parent: 1 + type: Transform + - uid: 4257 + components: + - pos: 27.5,-0.5 + parent: 1 + type: Transform + - uid: 4258 + components: + - pos: 28.5,-0.5 + parent: 1 + type: Transform + - uid: 7305 + components: + - pos: 29.5,45.5 + parent: 1 + type: Transform +- proto: RandomArcade + entities: + - uid: 5578 + components: + - pos: 82.5,27.5 + parent: 1 + type: Transform +- proto: RandomArtifactSpawner + entities: + - uid: 3872 + components: + - pos: 5.5,39.5 + parent: 1 + type: Transform +- proto: RandomBoards + entities: + - uid: 6576 + components: + - pos: -61.5,-0.5 + parent: 1 + type: Transform + - uid: 6577 + components: + - pos: -61.5,-1.5 + parent: 1 + type: Transform + - uid: 12246 + components: + - pos: -5.5,-45.5 + parent: 1 + type: Transform + - uid: 12247 + components: + - pos: -6.5,-45.5 + parent: 1 + type: Transform + - uid: 12409 + components: + - pos: -10.5,9.5 + parent: 1 + type: Transform + - uid: 12410 + components: + - pos: -11.5,11.5 + parent: 1 + type: Transform + - uid: 22893 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-16.5 + parent: 1 + type: Transform +- proto: RandomBook + entities: + - uid: 5519 + components: + - rot: -1.5707963267948966 rad + pos: 74.5,28.5 + parent: 1 + type: Transform + - uid: 7250 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,39.5 + parent: 1 + type: Transform + - uid: 12434 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-8.5 + parent: 1 + type: Transform + - uid: 12471 + components: + - pos: 21.5,57.5 + parent: 1 + type: Transform +- proto: RandomBox + entities: + - uid: 2128 + components: + - pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 2129 + components: + - pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 2136 + components: + - pos: -18.5,-2.5 + parent: 1 + type: Transform + - uid: 3150 + components: + - pos: 55.5,15.5 + parent: 1 + type: Transform + - uid: 3584 + components: + - pos: -23.5,15.5 + parent: 1 + type: Transform + - uid: 6669 + components: + - pos: -41.5,-23.5 + parent: 1 + type: Transform + - uid: 6683 + components: + - pos: -55.5,-22.5 + parent: 1 + type: Transform + - uid: 8036 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,38.5 + parent: 1 + type: Transform + - uid: 12329 + components: + - pos: -16.5,-31.5 + parent: 1 + type: Transform + - uid: 12413 + components: + - pos: -9.5,9.5 + parent: 1 + type: Transform + - uid: 12433 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-7.5 + parent: 1 + type: Transform + - uid: 14375 + components: + - pos: -10.5,-34.5 + parent: 1 + type: Transform + - uid: 15854 + components: + - pos: -31.5,32.5 + parent: 1 + type: Transform + - uid: 16228 + components: + - pos: 59.5,-30.5 + parent: 1 + type: Transform + - uid: 16229 + components: + - pos: 60.5,-30.5 + parent: 1 + type: Transform + - uid: 16230 + components: + - pos: 49.5,-31.5 + parent: 1 + type: Transform + - uid: 16348 + components: + - pos: 22.5,-16.5 + parent: 1 + type: Transform + - uid: 23421 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-29.5 + parent: 1 + type: Transform + - uid: 23474 + components: + - pos: -8.5,29.5 + parent: 1 + type: Transform +- proto: RandomDrinkBottle + entities: + - uid: 1035 + components: + - pos: 32.5,14.5 + parent: 1 + type: Transform + - uid: 5269 + components: + - pos: 32.5,14.5 + parent: 1 + type: Transform + - uid: 7503 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 10032 + components: + - pos: 31.5,-34.5 + parent: 1 + type: Transform + - uid: 16309 + components: + - pos: 29.5,25.5 + parent: 1 + type: Transform + - uid: 25304 + components: + - pos: -3.5,-13.5 + parent: 1 + type: Transform +- proto: RandomDrinkGlass + entities: + - uid: 2796 + components: + - pos: 43.5,15.5 + parent: 1 + type: Transform + - uid: 2879 + components: + - pos: 32.5,18.5 + parent: 1 + type: Transform + - uid: 2880 + components: + - pos: 30.5,17.5 + parent: 1 + type: Transform + - uid: 3364 + components: + - pos: 36.5,20.5 + parent: 1 + type: Transform + - uid: 3365 + components: + - pos: 41.5,16.5 + parent: 1 + type: Transform + - uid: 5258 + components: + - pos: 30.5,15.5 + parent: 1 + type: Transform + - uid: 6346 + components: + - pos: -48.5,7.5 + parent: 1 + type: Transform + - uid: 6376 + components: + - pos: -45.5,6.5 + parent: 1 + type: Transform + - uid: 6796 + components: + - pos: -45.5,7.5 + parent: 1 + type: Transform + - uid: 7319 + components: + - pos: 25.5,42.5 + parent: 1 + type: Transform + - uid: 9628 + components: + - pos: 115.5,4.5 + parent: 1 + type: Transform + - uid: 9629 + components: + - pos: 115.5,3.5 + parent: 1 + type: Transform + - uid: 12470 + components: + - pos: 24.5,57.5 + parent: 1 + type: Transform +- proto: RandomDrinkSoda + entities: + - uid: 25756 + components: + - pos: 18.5,5.5 + parent: 1 + type: Transform +- proto: RandomFoodBakedSingle + entities: + - uid: 3012 + components: + - pos: 17.5,20.5 + parent: 1 + type: Transform + - uid: 3280 + components: + - pos: 17.5,19.5 + parent: 1 + type: Transform + - uid: 5499 + components: + - pos: 77.5,28.5 + parent: 1 + type: Transform + - uid: 8151 + components: + - pos: 53.5,27.5 + parent: 1 + type: Transform + - uid: 8156 + components: + - pos: 53.5,28.5 + parent: 1 + type: Transform + - uid: 12375 + components: + - pos: -34.5,-23.5 + parent: 1 + type: Transform +- proto: RandomFoodMeal + entities: + - uid: 3345 + components: + - pos: 38.5,14.5 + parent: 1 + type: Transform + - uid: 7317 + components: + - pos: 25.5,39.5 + parent: 1 + type: Transform + - uid: 10042 + components: + - pos: -7.5,-37.5 + parent: 1 + type: Transform +- proto: RandomFoodSingle + entities: + - uid: 1135 + components: + - pos: 10.5,25.5 + parent: 1 + type: Transform + - uid: 3266 + components: + - pos: 43.5,20.5 + parent: 1 + type: Transform + - uid: 7318 + components: + - pos: 26.5,42.5 + parent: 1 + type: Transform + - uid: 10043 + components: + - pos: -3.5,-32.5 + parent: 1 + type: Transform +- proto: RandomInstruments + entities: + - uid: 2790 + components: + - pos: 26.5,23.5 + parent: 1 + type: Transform + - uid: 5166 + components: + - pos: 15.5,5.5 + parent: 1 + type: Transform + - uid: 5254 + components: + - pos: 22.5,23.5 + parent: 1 + type: Transform + - uid: 10064 + components: + - pos: 29.5,-36.5 + parent: 1 + type: Transform + - uid: 10068 + components: + - pos: 32.5,-35.5 + parent: 1 + type: Transform + - uid: 12435 + components: + - pos: -18.5,-7.5 + parent: 1 + type: Transform + - uid: 15933 + components: + - rot: 3.141592653589793 rad + pos: -22.5,39.5 + parent: 1 + type: Transform + - uid: 16361 + components: + - pos: 41.5,-16.5 + parent: 1 + type: Transform + - uid: 20963 + components: + - pos: -3.5,-11.5 + parent: 1 + type: Transform + - uid: 23475 + components: + - pos: -10.5,30.5 + parent: 1 + type: Transform +- proto: RandomItem + entities: + - uid: 1300 + components: + - pos: -7.5,49.5 + parent: 1 + type: Transform + - uid: 2941 + components: + - pos: 13.5,24.5 + parent: 1 + type: Transform + - uid: 5473 + components: + - pos: 86.5,26.5 + parent: 1 + type: Transform + - uid: 5921 + components: + - pos: -58.5,-28.5 + parent: 1 + type: Transform + - uid: 6504 + components: + - pos: -62.5,34.5 + parent: 1 + type: Transform + - uid: 6587 + components: + - pos: -62.5,-4.5 + parent: 1 + type: Transform + - uid: 6828 + components: + - pos: -50.5,-29.5 + parent: 1 + type: Transform + - uid: 7551 + components: + - pos: 25.5,-9.5 + parent: 1 + type: Transform + - uid: 9525 + components: + - pos: -8.5,-15.5 + parent: 1 + type: Transform + - uid: 10048 + components: + - pos: -5.5,-39.5 + parent: 1 + type: Transform + - uid: 10049 + components: + - pos: 4.5,-33.5 + parent: 1 + type: Transform + - uid: 10050 + components: + - pos: -2.5,-32.5 + parent: 1 + type: Transform + - uid: 10135 + components: + - pos: 31.5,-7.5 + parent: 1 + type: Transform + - uid: 12344 + components: + - pos: -5.5,-28.5 + parent: 1 + type: Transform + - uid: 12388 + components: + - pos: 2.5,57.5 + parent: 1 + type: Transform + - uid: 12400 + components: + - pos: -11.5,7.5 + parent: 1 + type: Transform + - uid: 12401 + components: + - pos: -10.5,7.5 + parent: 1 + type: Transform + - uid: 12402 + components: + - pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 12403 + components: + - pos: -6.5,10.5 + parent: 1 + type: Transform + - uid: 12791 + components: + - pos: -7.5,31.5 + parent: 1 + type: Transform + - uid: 12792 + components: + - pos: -8.5,31.5 + parent: 1 + type: Transform + - uid: 14374 + components: + - pos: -8.5,-34.5 + parent: 1 + type: Transform + - uid: 15855 + components: + - pos: -31.5,31.5 + parent: 1 + type: Transform + - uid: 16050 + components: + - pos: -1.5,35.5 + parent: 1 + type: Transform + - uid: 16288 + components: + - pos: 89.5,-15.5 + parent: 1 + type: Transform + - uid: 16356 + components: + - pos: 27.5,-19.5 + parent: 1 + type: Transform + - uid: 16386 + components: + - pos: -9.5,-17.5 + parent: 1 + type: Transform + - uid: 16387 + components: + - pos: -8.5,-17.5 + parent: 1 + type: Transform + - uid: 16739 + components: + - pos: 96.5,18.5 + parent: 1 + type: Transform + - uid: 16740 + components: + - pos: 96.5,19.5 + parent: 1 + type: Transform + - uid: 16749 + components: + - pos: 58.5,-6.5 + parent: 1 + type: Transform + - uid: 17353 + components: + - pos: -2.5,-18.5 + parent: 1 + type: Transform + - uid: 17371 + components: + - pos: 35.5,8.5 + parent: 1 + type: Transform + - uid: 22680 + components: + - pos: 43.5,37.5 + parent: 1 + type: Transform + - uid: 22778 + components: + - pos: -24.5,16.5 + parent: 1 + type: Transform + - uid: 23785 + components: + - pos: 33.5,-27.5 + parent: 1 + type: Transform + - uid: 25314 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform +- proto: RandomPainting + entities: + - uid: 3015 + components: + - pos: 88.5,29.5 + parent: 1 + type: Transform + - uid: 3016 + components: + - pos: 90.5,26.5 + parent: 1 + type: Transform + - uid: 7254 + components: + - pos: 30.5,41.5 + parent: 1 + type: Transform + - uid: 9447 + components: + - pos: 24.5,-42.5 + parent: 1 + type: Transform + - uid: 9448 + components: + - pos: 27.5,-42.5 + parent: 1 + type: Transform + - uid: 9496 + components: + - pos: 36.5,-8.5 + parent: 1 + type: Transform + - uid: 12788 + components: + - pos: 3.5,-31.5 + parent: 1 + type: Transform + - uid: 12789 + components: + - pos: -5.5,-35.5 + parent: 1 + type: Transform + - uid: 12790 + components: + - pos: -3.5,-31.5 + parent: 1 + type: Transform + - uid: 16570 + components: + - pos: 47.5,40.5 + parent: 1 + type: Transform + - uid: 16682 + components: + - pos: 79.5,18.5 + parent: 1 + type: Transform + - uid: 16683 + components: + - rot: 3.141592653589793 rad + pos: 77.5,13.5 + parent: 1 + type: Transform + - uid: 22933 + components: + - pos: 43.5,-11.5 + parent: 1 + type: Transform + - uid: 25303 + components: + - pos: 1.5,-6.5 + parent: 1 + type: Transform +- proto: RandomPosterAny + entities: + - uid: 2782 + components: + - pos: 24.5,24.5 + parent: 1 + type: Transform + - uid: 2899 + components: + - pos: 44.5,19.5 + parent: 1 + type: Transform + - uid: 3278 + components: + - pos: 14.5,23.5 + parent: 1 + type: Transform + - uid: 3279 + components: + - pos: 14.5,21.5 + parent: 1 + type: Transform + - uid: 7039 + components: + - pos: 38.5,25.5 + parent: 1 + type: Transform + - uid: 9480 + components: + - pos: 31.5,-1.5 + parent: 1 + type: Transform + - uid: 9488 + components: + - pos: 15.5,-22.5 + parent: 1 + type: Transform + - uid: 11183 + components: + - pos: -13.5,25.5 + parent: 1 + type: Transform + - uid: 11185 + components: + - pos: -10.5,21.5 + parent: 1 + type: Transform + - uid: 11712 + components: + - pos: 32.5,41.5 + parent: 1 + type: Transform + - uid: 12730 + components: + - pos: 0.5,-34.5 + parent: 1 + type: Transform + - uid: 12862 + components: + - pos: 29.5,-40.5 + parent: 1 + type: Transform + - uid: 12863 + components: + - pos: 34.5,-39.5 + parent: 1 + type: Transform + - uid: 16087 + components: + - pos: 23.5,38.5 + parent: 1 + type: Transform + - uid: 16088 + components: + - pos: 28.5,38.5 + parent: 1 + type: Transform + - uid: 16089 + components: + - pos: 32.5,38.5 + parent: 1 + type: Transform + - uid: 16090 + components: + - pos: 2.5,38.5 + parent: 1 + type: Transform + - uid: 16091 + components: + - pos: -6.5,38.5 + parent: 1 + type: Transform + - uid: 17364 + components: + - pos: 34.5,9.5 + parent: 1 + type: Transform + - uid: 17365 + components: + - pos: 30.5,9.5 + parent: 1 + type: Transform + - uid: 18550 + components: + - pos: -7.5,11.5 + parent: 1 + type: Transform + - uid: 22706 + components: + - pos: 35.5,55.5 + parent: 1 + type: Transform + - uid: 22707 + components: + - pos: 36.5,55.5 + parent: 1 + type: Transform + - uid: 22708 + components: + - pos: 41.5,48.5 + parent: 1 + type: Transform + - uid: 22709 + components: + - pos: 42.5,39.5 + parent: 1 + type: Transform + - uid: 22710 + components: + - pos: 40.5,34.5 + parent: 1 + type: Transform + - uid: 22711 + components: + - pos: 17.5,55.5 + parent: 1 + type: Transform + - uid: 22796 + components: + - rot: 3.141592653589793 rad + pos: -7.5,16.5 + parent: 1 + type: Transform +- proto: RandomPosterContraband + entities: + - uid: 11184 + components: + - pos: -12.5,25.5 + parent: 1 + type: Transform + - uid: 12819 + components: + - pos: 29.5,-42.5 + parent: 1 + type: Transform + - uid: 12859 + components: + - pos: 34.5,-42.5 + parent: 1 + type: Transform + - uid: 12860 + components: + - pos: 31.5,-45.5 + parent: 1 + type: Transform + - uid: 20997 + components: + - pos: -3.5,-17.5 + parent: 1 + type: Transform +- proto: RandomPosterLegit + entities: + - uid: 3219 + components: + - pos: 14.5,18.5 + parent: 1 + type: Transform + - uid: 6210 + components: + - pos: 91.5,11.5 + parent: 1 + type: Transform + - uid: 7040 + components: + - pos: 14.5,26.5 + parent: 1 + type: Transform + - uid: 9439 + components: + - pos: -2.5,-45.5 + parent: 1 + type: Transform + - uid: 9441 + components: + - pos: -5.5,-46.5 + parent: 1 + type: Transform + - uid: 9442 + components: + - pos: -3.5,-46.5 + parent: 1 + type: Transform + - uid: 9443 + components: + - pos: 8.5,-45.5 + parent: 1 + type: Transform + - uid: 9444 + components: + - pos: 17.5,-45.5 + parent: 1 + type: Transform + - uid: 9445 + components: + - pos: 21.5,-45.5 + parent: 1 + type: Transform + - uid: 9446 + components: + - pos: 29.5,-45.5 + parent: 1 + type: Transform + - uid: 9481 + components: + - pos: 24.5,-1.5 + parent: 1 + type: Transform + - uid: 9482 + components: + - pos: 34.5,-1.5 + parent: 1 + type: Transform + - uid: 9483 + components: + - pos: 33.5,-1.5 + parent: 1 + type: Transform + - uid: 9485 + components: + - pos: 16.5,-22.5 + parent: 1 + type: Transform + - uid: 9486 + components: + - pos: 6.5,-22.5 + parent: 1 + type: Transform + - uid: 9487 + components: + - pos: 8.5,-22.5 + parent: 1 + type: Transform + - uid: 9489 + components: + - pos: 9.5,-16.5 + parent: 1 + type: Transform + - uid: 9490 + components: + - pos: 9.5,-14.5 + parent: 1 + type: Transform + - uid: 9491 + components: + - pos: 18.5,-5.5 + parent: 1 + type: Transform + - uid: 9492 + components: + - pos: 21.5,-9.5 + parent: 1 + type: Transform + - uid: 9493 + components: + - pos: 30.5,-7.5 + parent: 1 + type: Transform + - uid: 9494 + components: + - pos: 30.5,-9.5 + parent: 1 + type: Transform + - uid: 9495 + components: + - pos: 21.5,-6.5 + parent: 1 + type: Transform + - uid: 9509 + components: + - pos: 16.5,15.5 + parent: 1 + type: Transform + - uid: 12474 + components: + - rot: 3.141592653589793 rad + pos: -13.5,18.5 + parent: 1 + type: Transform + - uid: 12511 + components: + - pos: -1.5,-37.5 + parent: 1 + type: Transform + - uid: 12739 + components: + - pos: 0.5,-37.5 + parent: 1 + type: Transform + - uid: 12740 + components: + - pos: -1.5,-35.5 + parent: 1 + type: Transform + - uid: 17359 + components: + - pos: 48.5,6.5 + parent: 1 + type: Transform + - uid: 17360 + components: + - pos: 48.5,1.5 + parent: 1 + type: Transform + - uid: 17361 + components: + - pos: 28.5,9.5 + parent: 1 + type: Transform + - uid: 17362 + components: + - pos: 32.5,9.5 + parent: 1 + type: Transform + - uid: 17363 + components: + - pos: 36.5,9.5 + parent: 1 + type: Transform + - uid: 17370 + components: + - pos: -12.5,6.5 + parent: 1 + type: Transform + - uid: 19217 + components: + - pos: 39.5,13.5 + parent: 1 + type: Transform + - uid: 20602 + components: + - pos: -4.5,-46.5 + parent: 1 + type: Transform + - uid: 22663 + components: + - pos: 93.5,-1.5 + parent: 1 + type: Transform + - uid: 22665 + components: + - pos: 93.5,14.5 + parent: 1 + type: Transform + - uid: 22666 + components: + - pos: 92.5,14.5 + parent: 1 + type: Transform +- proto: RandomProduce + entities: + - uid: 7326 + components: + - pos: -1.5,19.5 + parent: 1 + type: Transform + - uid: 7327 + components: + - pos: -1.5,19.5 + parent: 1 + type: Transform + - uid: 7328 + components: + - pos: -1.5,19.5 + parent: 1 + type: Transform + - uid: 25757 + components: + - pos: -1.5,19.5 + parent: 1 + type: Transform +- proto: RandomSnacks + entities: + - uid: 1949 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 1 + type: Transform + - uid: 2783 + components: + - pos: 29.5,23.5 + parent: 1 + type: Transform + - uid: 6756 + components: + - rot: 1.5707963267948966 rad + pos: -60.5,-28.5 + parent: 1 + type: Transform + - uid: 10047 + components: + - pos: 1.5,-36.5 + parent: 1 + type: Transform + - uid: 12268 + components: + - pos: -22.5,-28.5 + parent: 1 + type: Transform + - uid: 17354 + components: + - pos: 13.5,5.5 + parent: 1 + type: Transform + - uid: 22696 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,54.5 + parent: 1 + type: Transform + - uid: 23463 + components: + - pos: -22.5,25.5 + parent: 1 + type: Transform +- proto: RandomSoap + entities: + - uid: 5427 + components: + - pos: 83.5,28.5 + parent: 1 + type: Transform + - uid: 6344 + components: + - pos: -46.5,14.5 + parent: 1 + type: Transform + - uid: 6349 + components: + - pos: -47.5,14.5 + parent: 1 + type: Transform + - uid: 6826 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-30.5 + parent: 1 + type: Transform + - uid: 6827 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-29.5 + parent: 1 + type: Transform + - uid: 9809 + components: + - pos: 109.5,-1.5 + parent: 1 + type: Transform + - uid: 16254 + components: + - pos: 53.5,-17.5 + parent: 1 + type: Transform + - uid: 18831 + components: + - pos: -15.5,17.5 + parent: 1 + type: Transform +- proto: RandomSpawner + entities: + - uid: 1652 + components: + - pos: -1.5,-6.5 + parent: 1 + type: Transform + - uid: 2230 + components: + - pos: -22.5,24.5 + parent: 1 + type: Transform + - uid: 2232 + components: + - pos: -21.5,24.5 + parent: 1 + type: Transform + - uid: 2777 + components: + - pos: 16.5,-46.5 + parent: 1 + type: Transform + - uid: 2785 + components: + - pos: 20.5,18.5 + parent: 1 + type: Transform + - uid: 2787 + components: + - pos: 25.5,14.5 + parent: 1 + type: Transform + - uid: 2788 + components: + - pos: 44.5,17.5 + parent: 1 + type: Transform + - uid: 10713 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,-29.5 + parent: 1 + type: Transform + - uid: 11098 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 11181 + components: + - pos: -12.5,23.5 + parent: 1 + type: Transform + - uid: 11182 + components: + - pos: -13.5,20.5 + parent: 1 + type: Transform + - uid: 11191 + components: + - pos: -22.5,14.5 + parent: 1 + type: Transform + - uid: 11192 + components: + - pos: -21.5,15.5 + parent: 1 + type: Transform + - uid: 11193 + components: + - pos: -21.5,16.5 + parent: 1 + type: Transform + - uid: 11358 + components: + - pos: 2.5,-38.5 + parent: 1 + type: Transform + - uid: 11359 + components: + - pos: -0.5,-32.5 + parent: 1 + type: Transform + - uid: 11360 + components: + - pos: 18.5,-39.5 + parent: 1 + type: Transform + - uid: 12033 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-46.5 + parent: 1 + type: Transform + - uid: 12560 + components: + - pos: -4.5,-19.5 + parent: 1 + type: Transform + - uid: 15853 + components: + - pos: -35.5,36.5 + parent: 1 + type: Transform + - uid: 16075 + components: + - pos: 41.5,46.5 + parent: 1 + type: Transform + - uid: 16121 + components: + - pos: 36.5,-35.5 + parent: 1 + type: Transform + - uid: 16316 + components: + - pos: -4.5,13.5 + parent: 1 + type: Transform + - uid: 16357 + components: + - pos: 26.5,-19.5 + parent: 1 + type: Transform + - uid: 16358 + components: + - pos: 22.5,-15.5 + parent: 1 + type: Transform + - uid: 16674 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 16676 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 17356 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,2.5 + parent: 1 + type: Transform + - uid: 18833 + components: + - rot: 3.141592653589793 rad + pos: -13.5,16.5 + parent: 1 + type: Transform + - uid: 21585 + components: + - pos: -4.5,-18.5 + parent: 1 + type: Transform + - uid: 22569 + components: + - pos: 47.5,-4.5 + parent: 1 + type: Transform + - uid: 22683 + components: + - pos: 36.5,40.5 + parent: 1 + type: Transform + - uid: 22764 + components: + - rot: 3.141592653589793 rad + pos: -29.5,19.5 + parent: 1 + type: Transform + - uid: 23462 + components: + - pos: -22.5,25.5 + parent: 1 + type: Transform + - uid: 25808 + components: + - rot: 1.5707963267948966 rad + pos: 95.5,5.5 + parent: 1 + type: Transform + - uid: 25809 + components: + - pos: 71.5,5.5 + parent: 1 + type: Transform +- proto: RandomVending + entities: + - uid: 7064 + components: + - pos: 14.5,14.5 + parent: 1 + type: Transform + - uid: 7065 + components: + - pos: 15.5,14.5 + parent: 1 + type: Transform + - uid: 7465 + components: + - pos: 29.5,-9.5 + parent: 1 + type: Transform + - uid: 9357 + components: + - pos: 5.5,-49.5 + parent: 1 + type: Transform + - uid: 9367 + components: + - pos: 8.5,-46.5 + parent: 1 + type: Transform + - uid: 9371 + components: + - pos: 22.5,-49.5 + parent: 1 + type: Transform + - uid: 9946 + components: + - pos: 10.5,-15.5 + parent: 1 + type: Transform +- proto: RandomVendingDrinks + entities: + - uid: 6348 + components: + - pos: -46.5,11.5 + parent: 1 + type: Transform + - uid: 9414 + components: + - pos: 29.5,-46.5 + parent: 1 + type: Transform + - uid: 9460 + components: + - pos: 14.5,-27.5 + parent: 1 + type: Transform + - uid: 10082 + components: + - pos: 6.5,-40.5 + parent: 1 + type: Transform + - uid: 11176 + components: + - pos: -11.5,24.5 + parent: 1 + type: Transform + - uid: 15846 + components: + - pos: 15.5,38.5 + parent: 1 + type: Transform + - uid: 16673 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform +- proto: RandomVendingSnacks + entities: + - uid: 1943 + components: + - pos: 3.5,-17.5 + parent: 1 + type: Transform + - uid: 6343 + components: + - pos: -47.5,11.5 + parent: 1 + type: Transform + - uid: 9415 + components: + - pos: 30.5,-46.5 + parent: 1 + type: Transform + - uid: 9530 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform + - uid: 10083 + components: + - pos: 8.5,-41.5 + parent: 1 + type: Transform + - uid: 11175 + components: + - pos: -11.5,22.5 + parent: 1 + type: Transform + - uid: 15845 + components: + - pos: 8.5,38.5 + parent: 1 + type: Transform + - uid: 22072 + components: + - pos: 13.5,2.5 + parent: 1 + type: Transform + - uid: 22479 + components: + - pos: -24.5,-31.5 + parent: 1 + type: Transform +- proto: RCD + entities: + - uid: 6568 + components: + - pos: -61.473286,0.5690657 + parent: 1 + type: Transform +- proto: RCDAmmo + entities: + - uid: 6569 + components: + - pos: -61.754536,0.31889212 + parent: 1 + type: Transform + - uid: 6570 + components: + - pos: -61.556618,0.3710117 + parent: 1 + type: Transform +- proto: ReagentContainerFlour + entities: + - uid: 1166 + components: + - pos: 15.3626995,-43.29776 + parent: 1 + type: Transform +- proto: ReagentContainerOliveoil + entities: + - uid: 1109 + components: + - pos: 6.730618,26.008543 + parent: 1 + type: Transform + - uid: 1167 + components: + - pos: 15.7012415,-43.189346 + parent: 1 + type: Transform +- proto: ReagentContainerSugar + entities: + - uid: 1102 + components: + - pos: 8.703936,24.77852 + parent: 1 + type: Transform +- proto: Recycler + entities: + - uid: 3555 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,16.5 + parent: 1 + type: Transform + - links: + - 3560 + type: DeviceLinkSink +- proto: ReinforcedGirder + entities: + - uid: 3153 + components: + - pos: 132.5,28.5 + parent: 1 + type: Transform + - uid: 4724 + components: + - pos: -69.5,-15.5 + parent: 1 + type: Transform + - uid: 6689 + components: + - pos: -28.5,-52.5 + parent: 1 + type: Transform + - uid: 7623 + components: + - pos: 57.5,-9.5 + parent: 1 + type: Transform + - uid: 7624 + components: + - pos: 57.5,-13.5 + parent: 1 + type: Transform + - uid: 7750 + components: + - pos: 102.5,-7.5 + parent: 1 + type: Transform + - uid: 8385 + components: + - pos: 56.5,27.5 + parent: 1 + type: Transform + - uid: 18299 + components: + - pos: -69.5,-23.5 + parent: 1 + type: Transform + - uid: 18482 + components: + - pos: -69.5,-19.5 + parent: 1 + type: Transform + - uid: 22938 + components: + - pos: 132.5,33.5 + parent: 1 + type: Transform + - uid: 22939 + components: + - pos: 125.5,33.5 + parent: 1 + type: Transform + - uid: 22940 + components: + - pos: 121.5,33.5 + parent: 1 + type: Transform + - uid: 22941 + components: + - pos: 117.5,33.5 + parent: 1 + type: Transform + - uid: 22942 + components: + - pos: 113.5,33.5 + parent: 1 + type: Transform + - uid: 22943 + components: + - pos: 109.5,33.5 + parent: 1 + type: Transform + - uid: 22944 + components: + - pos: 105.5,33.5 + parent: 1 + type: Transform + - uid: 22945 + components: + - pos: 101.5,33.5 + parent: 1 + type: Transform + - uid: 22946 + components: + - pos: 97.5,33.5 + parent: 1 + type: Transform + - uid: 22947 + components: + - pos: 93.5,33.5 + parent: 1 + type: Transform + - uid: 22948 + components: + - pos: 89.5,33.5 + parent: 1 + type: Transform + - uid: 22949 + components: + - pos: 129.5,33.5 + parent: 1 + type: Transform + - uid: 22984 + components: + - pos: 132.5,14.5 + parent: 1 + type: Transform + - uid: 22986 + components: + - pos: 132.5,16.5 + parent: 1 + type: Transform + - uid: 22987 + components: + - pos: 132.5,26.5 + parent: 1 + type: Transform + - uid: 22992 + components: + - pos: 132.5,21.5 + parent: 1 + type: Transform + - uid: 22998 + components: + - pos: 70.5,37.5 + parent: 1 + type: Transform + - uid: 22999 + components: + - pos: 86.5,33.5 + parent: 1 + type: Transform + - uid: 23000 + components: + - pos: 81.5,37.5 + parent: 1 + type: Transform + - uid: 23001 + components: + - pos: 75.5,37.5 + parent: 1 + type: Transform + - uid: 23002 + components: + - pos: 63.5,44.5 + parent: 1 + type: Transform + - uid: 23003 + components: + - pos: 55.5,52.5 + parent: 1 + type: Transform + - uid: 23004 + components: + - pos: 62.5,46.5 + parent: 1 + type: Transform + - uid: 23005 + components: + - pos: 60.5,47.5 + parent: 1 + type: Transform + - uid: 23006 + components: + - pos: 52.5,55.5 + parent: 1 + type: Transform + - uid: 23007 + components: + - pos: 48.5,55.5 + parent: 1 + type: Transform + - uid: 23008 + components: + - pos: 41.5,55.5 + parent: 1 + type: Transform + - uid: 23009 + components: + - pos: 45.5,55.5 + parent: 1 + type: Transform + - uid: 23064 + components: + - pos: -24.5,54.5 + parent: 1 + type: Transform + - uid: 23066 + components: + - pos: -20.5,54.5 + parent: 1 + type: Transform + - uid: 23067 + components: + - pos: -27.5,51.5 + parent: 1 + type: Transform + - uid: 23069 + components: + - pos: -36.5,69.5 + parent: 1 + type: Transform + - uid: 23070 + components: + - pos: -36.5,47.5 + parent: 1 + type: Transform + - uid: 23071 + components: + - pos: -36.5,51.5 + parent: 1 + type: Transform + - uid: 23072 + components: + - pos: -36.5,67.5 + parent: 1 + type: Transform + - uid: 23073 + components: + - pos: -36.5,63.5 + parent: 1 + type: Transform + - uid: 23074 + components: + - pos: -36.5,55.5 + parent: 1 + type: Transform + - uid: 23075 + components: + - pos: -36.5,59.5 + parent: 1 + type: Transform + - uid: 23076 + components: + - pos: -54.5,69.5 + parent: 1 + type: Transform + - uid: 23077 + components: + - pos: -40.5,69.5 + parent: 1 + type: Transform + - uid: 23078 + components: + - pos: -50.5,69.5 + parent: 1 + type: Transform + - uid: 23079 + components: + - pos: -45.5,69.5 + parent: 1 + type: Transform + - uid: 23081 + components: + - pos: -54.5,63.5 + parent: 1 + type: Transform + - uid: 23082 + components: + - pos: -54.5,67.5 + parent: 1 + type: Transform + - uid: 23083 + components: + - pos: -54.5,59.5 + parent: 1 + type: Transform + - uid: 23084 + components: + - pos: -54.5,55.5 + parent: 1 + type: Transform + - uid: 23085 + components: + - pos: -54.5,43.5 + parent: 1 + type: Transform + - uid: 23086 + components: + - pos: -54.5,51.5 + parent: 1 + type: Transform + - uid: 23087 + components: + - pos: -54.5,47.5 + parent: 1 + type: Transform + - uid: 23088 + components: + - pos: -73.5,22.5 + parent: 1 + type: Transform + - uid: 23089 + components: + - pos: -73.5,39.5 + parent: 1 + type: Transform + - uid: 23090 + components: + - pos: -73.5,26.5 + parent: 1 + type: Transform + - uid: 23091 + components: + - pos: -73.5,29.5 + parent: 1 + type: Transform + - uid: 23092 + components: + - pos: -73.5,32.5 + parent: 1 + type: Transform + - uid: 23093 + components: + - pos: -60.5,43.5 + parent: 1 + type: Transform + - uid: 23094 + components: + - pos: -73.5,42.5 + parent: 1 + type: Transform + - uid: 23095 + components: + - pos: -73.5,35.5 + parent: 1 + type: Transform + - uid: 23096 + components: + - pos: -63.5,40.5 + parent: 1 + type: Transform + - uid: 23097 + components: + - pos: -56.5,47.5 + parent: 1 + type: Transform + - uid: 23113 + components: + - pos: -30.5,47.5 + parent: 1 + type: Transform + - uid: 23252 + components: + - pos: 41.5,-53.5 + parent: 1 + type: Transform + - uid: 23255 + components: + - pos: -9.5,-52.5 + parent: 1 + type: Transform + - uid: 23256 + components: + - pos: -13.5,-52.5 + parent: 1 + type: Transform + - uid: 23257 + components: + - pos: -17.5,-52.5 + parent: 1 + type: Transform + - uid: 23258 + components: + - pos: -20.5,-52.5 + parent: 1 + type: Transform + - uid: 23259 + components: + - pos: -25.5,-52.5 + parent: 1 + type: Transform + - uid: 23279 + components: + - pos: 41.5,-49.5 + parent: 1 + type: Transform + - uid: 23280 + components: + - pos: 37.5,-53.5 + parent: 1 + type: Transform + - uid: 23281 + components: + - pos: 33.5,-53.5 + parent: 1 + type: Transform + - uid: 23282 + components: + - pos: 29.5,-53.5 + parent: 1 + type: Transform + - uid: 23296 + components: + - pos: 133.5,-24.5 + parent: 1 + type: Transform + - uid: 23297 + components: + - pos: 93.5,-24.5 + parent: 1 + type: Transform + - uid: 23298 + components: + - pos: 97.5,-24.5 + parent: 1 + type: Transform + - uid: 23299 + components: + - pos: 133.5,-21.5 + parent: 1 + type: Transform + - uid: 23300 + components: + - pos: 101.5,-24.5 + parent: 1 + type: Transform + - uid: 23301 + components: + - pos: 105.5,-24.5 + parent: 1 + type: Transform + - uid: 23302 + components: + - pos: 109.5,-24.5 + parent: 1 + type: Transform + - uid: 23303 + components: + - pos: 113.5,-24.5 + parent: 1 + type: Transform + - uid: 23304 + components: + - pos: 117.5,-24.5 + parent: 1 + type: Transform + - uid: 23305 + components: + - pos: 121.5,-24.5 + parent: 1 + type: Transform + - uid: 23306 + components: + - pos: 125.5,-24.5 + parent: 1 + type: Transform + - uid: 23307 + components: + - pos: 129.5,-24.5 + parent: 1 + type: Transform + - uid: 23308 + components: + - pos: 133.5,-17.5 + parent: 1 + type: Transform + - uid: 23309 + components: + - pos: 133.5,-7.5 + parent: 1 + type: Transform + - uid: 23310 + components: + - pos: 133.5,-11.5 + parent: 1 + type: Transform + - uid: 23312 + components: + - pos: 133.5,-14.5 + parent: 1 + type: Transform + - uid: 23360 + components: + - pos: 44.5,-53.5 + parent: 1 + type: Transform + - uid: 23368 + components: + - pos: 78.5,-32.5 + parent: 1 + type: Transform + - uid: 23369 + components: + - pos: 74.5,-32.5 + parent: 1 + type: Transform + - uid: 23370 + components: + - pos: 70.5,-32.5 + parent: 1 + type: Transform + - uid: 23390 + components: + - pos: 48.5,-53.5 + parent: 1 + type: Transform + - uid: 23391 + components: + - pos: 52.5,-53.5 + parent: 1 + type: Transform + - uid: 23392 + components: + - pos: 56.5,-53.5 + parent: 1 + type: Transform + - uid: 23393 + components: + - pos: 60.5,-53.5 + parent: 1 + type: Transform + - uid: 23394 + components: + - pos: 64.5,-53.5 + parent: 1 + type: Transform + - uid: 23397 + components: + - pos: 68.5,-53.5 + parent: 1 + type: Transform + - uid: 24461 + components: + - pos: -99.5,16.5 + parent: 1 + type: Transform + - uid: 24474 + components: + - pos: -98.5,17.5 + parent: 1 + type: Transform + - uid: 24475 + components: + - pos: -97.5,18.5 + parent: 1 + type: Transform + - uid: 24476 + components: + - pos: -96.5,19.5 + parent: 1 + type: Transform + - uid: 24478 + components: + - pos: -99.5,-7.5 + parent: 1 + type: Transform + - uid: 24479 + components: + - pos: -98.5,-8.5 + parent: 1 + type: Transform + - uid: 24480 + components: + - pos: -97.5,-9.5 + parent: 1 + type: Transform + - uid: 24481 + components: + - pos: -96.5,-10.5 + parent: 1 + type: Transform + - uid: 25043 + components: + - pos: 61.5,-58.5 + parent: 1 + type: Transform + - uid: 25044 + components: + - pos: 65.5,-58.5 + parent: 1 + type: Transform + - uid: 25045 + components: + - pos: 69.5,-58.5 + parent: 1 + type: Transform + - uid: 25046 + components: + - pos: 73.5,-58.5 + parent: 1 + type: Transform + - uid: 25047 + components: + - pos: 77.5,-58.5 + parent: 1 + type: Transform + - uid: 25048 + components: + - pos: 81.5,-58.5 + parent: 1 + type: Transform + - uid: 25049 + components: + - pos: 85.5,-58.5 + parent: 1 + type: Transform + - uid: 25050 + components: + - pos: 89.5,-58.5 + parent: 1 + type: Transform + - uid: 25051 + components: + - pos: 93.5,-58.5 + parent: 1 + type: Transform + - uid: 25052 + components: + - pos: 97.5,-58.5 + parent: 1 + type: Transform + - uid: 25053 + components: + - pos: 101.5,-58.5 + parent: 1 + type: Transform + - uid: 25083 + components: + - pos: 104.5,-58.5 + parent: 1 + type: Transform + - uid: 25084 + components: + - pos: 104.5,-54.5 + parent: 1 + type: Transform + - uid: 25085 + components: + - pos: 104.5,-50.5 + parent: 1 + type: Transform + - uid: 25086 + components: + - pos: 104.5,-46.5 + parent: 1 + type: Transform + - uid: 25087 + components: + - pos: 104.5,-42.5 + parent: 1 + type: Transform + - uid: 25088 + components: + - pos: 104.5,-38.5 + parent: 1 + type: Transform + - uid: 25089 + components: + - pos: 104.5,-34.5 + parent: 1 + type: Transform + - uid: 25090 + components: + - pos: 104.5,-30.5 + parent: 1 + type: Transform + - uid: 25564 + components: + - pos: -69.5,-27.5 + parent: 1 + type: Transform + - uid: 25677 + components: + - pos: -49.5,-46.5 + parent: 1 + type: Transform + - uid: 25711 + components: + - pos: -46.5,-46.5 + parent: 1 + type: Transform + - uid: 25712 + components: + - pos: -52.5,-46.5 + parent: 1 + type: Transform + - uid: 25724 + components: + - pos: -69.5,-11.5 + parent: 1 + type: Transform + - uid: 25733 + components: + - pos: -67.5,-11.5 + parent: 1 + type: Transform + - uid: 25734 + components: + - pos: -69.5,-31.5 + parent: 1 + type: Transform + - uid: 25735 + components: + - pos: -69.5,-34.5 + parent: 1 + type: Transform + - uid: 25736 + components: + - pos: -67.5,-34.5 + parent: 1 + type: Transform +- proto: ReinforcedPlasmaWindow + entities: + - uid: 196 + components: + - pos: -53.5,33.5 + parent: 1 + type: Transform + - uid: 197 + components: + - pos: -51.5,33.5 + parent: 1 + type: Transform + - uid: 198 + components: + - pos: -49.5,33.5 + parent: 1 + type: Transform + - uid: 199 + components: + - pos: -47.5,33.5 + parent: 1 + type: Transform + - uid: 200 + components: + - pos: -45.5,33.5 + parent: 1 + type: Transform + - uid: 201 + components: + - pos: -43.5,33.5 + parent: 1 + type: Transform + - uid: 202 + components: + - pos: -43.5,29.5 + parent: 1 + type: Transform + - uid: 203 + components: + - pos: -45.5,29.5 + parent: 1 + type: Transform + - uid: 204 + components: + - pos: -47.5,29.5 + parent: 1 + type: Transform + - uid: 205 + components: + - pos: -49.5,29.5 + parent: 1 + type: Transform + - uid: 206 + components: + - pos: -51.5,29.5 + parent: 1 + type: Transform + - uid: 207 + components: + - pos: -53.5,29.5 + parent: 1 + type: Transform + - uid: 208 + components: + - pos: -54.5,30.5 + parent: 1 + type: Transform + - uid: 209 + components: + - pos: -54.5,31.5 + parent: 1 + type: Transform + - uid: 210 + components: + - pos: -54.5,32.5 + parent: 1 + type: Transform + - uid: 211 + components: + - pos: -52.5,32.5 + parent: 1 + type: Transform + - uid: 213 + components: + - pos: -52.5,31.5 + parent: 1 + type: Transform + - uid: 214 + components: + - pos: -52.5,30.5 + parent: 1 + type: Transform + - uid: 215 + components: + - pos: -50.5,30.5 + parent: 1 + type: Transform + - uid: 217 + components: + - pos: -50.5,31.5 + parent: 1 + type: Transform + - uid: 218 + components: + - pos: -50.5,32.5 + parent: 1 + type: Transform + - uid: 219 + components: + - pos: -48.5,32.5 + parent: 1 + type: Transform + - uid: 221 + components: + - pos: -48.5,31.5 + parent: 1 + type: Transform + - uid: 222 + components: + - pos: -48.5,30.5 + parent: 1 + type: Transform + - uid: 223 + components: + - pos: -46.5,30.5 + parent: 1 + type: Transform + - uid: 225 + components: + - pos: -46.5,31.5 + parent: 1 + type: Transform + - uid: 226 + components: + - pos: -46.5,32.5 + parent: 1 + type: Transform + - uid: 227 + components: + - pos: -44.5,32.5 + parent: 1 + type: Transform + - uid: 229 + components: + - pos: -44.5,31.5 + parent: 1 + type: Transform + - uid: 230 + components: + - pos: -44.5,30.5 + parent: 1 + type: Transform + - uid: 231 + components: + - pos: -42.5,30.5 + parent: 1 + type: Transform + - uid: 233 + components: + - pos: -42.5,31.5 + parent: 1 + type: Transform + - uid: 234 + components: + - pos: -42.5,32.5 + parent: 1 + type: Transform + - uid: 3869 + components: + - pos: 4.5,41.5 + parent: 1 + type: Transform + - uid: 3870 + components: + - pos: 3.5,41.5 + parent: 1 + type: Transform + - uid: 3873 + components: + - pos: 5.5,41.5 + parent: 1 + type: Transform + - uid: 3874 + components: + - pos: 6.5,41.5 + parent: 1 + type: Transform + - uid: 4536 + components: + - pos: -5.5,48.5 + parent: 1 + type: Transform + - uid: 4538 + components: + - pos: -3.5,48.5 + parent: 1 + type: Transform + - uid: 4541 + components: + - pos: -2.5,50.5 + parent: 1 + type: Transform + - uid: 4542 + components: + - pos: -2.5,51.5 + parent: 1 + type: Transform + - uid: 4543 + components: + - pos: -2.5,49.5 + parent: 1 + type: Transform + - uid: 4544 + components: + - pos: -3.5,52.5 + parent: 1 + type: Transform + - uid: 4545 + components: + - pos: -4.5,52.5 + parent: 1 + type: Transform + - uid: 4546 + components: + - pos: -5.5,52.5 + parent: 1 + type: Transform + - uid: 4547 + components: + - pos: -6.5,51.5 + parent: 1 + type: Transform + - uid: 4548 + components: + - pos: -6.5,50.5 + parent: 1 + type: Transform + - uid: 4549 + components: + - pos: -6.5,49.5 + parent: 1 + type: Transform + - uid: 4557 + components: + - pos: -6.5,47.5 + parent: 1 + type: Transform + - uid: 4558 + components: + - pos: -6.5,46.5 + parent: 1 + type: Transform + - uid: 4559 + components: + - pos: -6.5,45.5 + parent: 1 + type: Transform + - uid: 4566 + components: + - pos: -2.5,47.5 + parent: 1 + type: Transform + - uid: 4567 + components: + - pos: -2.5,45.5 + parent: 1 + type: Transform + - uid: 4568 + components: + - pos: -3.5,44.5 + parent: 1 + type: Transform + - uid: 4569 + components: + - pos: -4.5,44.5 + parent: 1 + type: Transform + - uid: 4570 + components: + - pos: -5.5,44.5 + parent: 1 + type: Transform + - uid: 4888 + components: + - pos: 82.5,13.5 + parent: 1 + type: Transform + - uid: 4889 + components: + - pos: 84.5,13.5 + parent: 1 + type: Transform + - uid: 6071 + components: + - pos: 116.5,1.5 + parent: 1 + type: Transform + - uid: 6072 + components: + - pos: 116.5,2.5 + parent: 1 + type: Transform + - uid: 6073 + components: + - pos: 116.5,3.5 + parent: 1 + type: Transform + - uid: 6074 + components: + - pos: 116.5,4.5 + parent: 1 + type: Transform + - uid: 6075 + components: + - pos: 116.5,5.5 + parent: 1 + type: Transform + - uid: 6076 + components: + - pos: 116.5,6.5 + parent: 1 + type: Transform + - uid: 6433 + components: + - pos: -62.5,30.5 + parent: 1 + type: Transform + - uid: 6434 + components: + - pos: -62.5,31.5 + parent: 1 + type: Transform + - uid: 6435 + components: + - pos: -62.5,32.5 + parent: 1 + type: Transform + - uid: 6444 + components: + - pos: -67.5,30.5 + parent: 1 + type: Transform + - uid: 6448 + components: + - pos: -66.5,29.5 + parent: 1 + type: Transform + - uid: 6449 + components: + - pos: -65.5,29.5 + parent: 1 + type: Transform + - uid: 6450 + components: + - pos: -64.5,30.5 + parent: 1 + type: Transform + - uid: 6451 + components: + - pos: -64.5,31.5 + parent: 1 + type: Transform + - uid: 6452 + components: + - pos: -67.5,32.5 + parent: 1 + type: Transform + - uid: 6493 + components: + - pos: -65.5,33.5 + parent: 1 + type: Transform + - uid: 6494 + components: + - pos: -66.5,33.5 + parent: 1 + type: Transform + - uid: 6495 + components: + - pos: -62.5,29.5 + parent: 1 + type: Transform + - uid: 6496 + components: + - pos: -63.5,29.5 + parent: 1 + type: Transform + - uid: 6500 + components: + - pos: -61.5,29.5 + parent: 1 + type: Transform + - uid: 6501 + components: + - pos: -64.5,29.5 + parent: 1 + type: Transform + - uid: 6502 + components: + - pos: -64.5,32.5 + parent: 1 + type: Transform + - uid: 7091 + components: + - pos: 114.5,11.5 + parent: 1 + type: Transform + - uid: 7353 + components: + - pos: 113.5,11.5 + parent: 1 + type: Transform + - uid: 9761 + components: + - pos: 127.5,8.5 + parent: 1 + type: Transform + - uid: 9762 + components: + - pos: 128.5,8.5 + parent: 1 + type: Transform + - uid: 9763 + components: + - pos: 129.5,8.5 + parent: 1 + type: Transform + - uid: 9764 + components: + - pos: 131.5,6.5 + parent: 1 + type: Transform + - uid: 9765 + components: + - pos: 131.5,5.5 + parent: 1 + type: Transform + - uid: 9766 + components: + - pos: 131.5,4.5 + parent: 1 + type: Transform + - uid: 9767 + components: + - pos: 131.5,3.5 + parent: 1 + type: Transform + - uid: 9768 + components: + - pos: 131.5,2.5 + parent: 1 + type: Transform + - uid: 9769 + components: + - pos: 131.5,1.5 + parent: 1 + type: Transform + - uid: 9770 + components: + - pos: 129.5,-0.5 + parent: 1 + type: Transform + - uid: 9771 + components: + - pos: 128.5,-0.5 + parent: 1 + type: Transform + - uid: 9772 + components: + - pos: 127.5,-0.5 + parent: 1 + type: Transform + - uid: 13133 + components: + - pos: 112.5,11.5 + parent: 1 + type: Transform + - uid: 16763 + components: + - pos: -77.5,6.5 + parent: 1 + type: Transform + - uid: 16806 + components: + - pos: -77.5,5.5 + parent: 1 + type: Transform + - uid: 16861 + components: + - pos: -77.5,4.5 + parent: 1 + type: Transform + - uid: 16862 + components: + - pos: -77.5,3.5 + parent: 1 + type: Transform + - uid: 16868 + components: + - pos: -77.5,2.5 + parent: 1 + type: Transform + - uid: 22619 + components: + - pos: 115.5,10.5 + parent: 1 + type: Transform + - uid: 22620 + components: + - pos: 115.5,9.5 + parent: 1 + type: Transform + - uid: 22621 + components: + - pos: 115.5,8.5 + parent: 1 + type: Transform + - uid: 24431 + components: + - pos: -81.5,-11.5 + parent: 1 + type: Transform + - uid: 24432 + components: + - pos: -82.5,-11.5 + parent: 1 + type: Transform + - uid: 24433 + components: + - pos: -83.5,-11.5 + parent: 1 + type: Transform + - uid: 24434 + components: + - pos: -85.5,-11.5 + parent: 1 + type: Transform + - uid: 24435 + components: + - pos: -86.5,-11.5 + parent: 1 + type: Transform + - uid: 24436 + components: + - pos: -87.5,-11.5 + parent: 1 + type: Transform + - uid: 24437 + components: + - pos: -89.5,-11.5 + parent: 1 + type: Transform + - uid: 24438 + components: + - pos: -90.5,-11.5 + parent: 1 + type: Transform + - uid: 24439 + components: + - pos: -91.5,-11.5 + parent: 1 + type: Transform + - uid: 24440 + components: + - pos: -93.5,-11.5 + parent: 1 + type: Transform + - uid: 24441 + components: + - pos: -94.5,-11.5 + parent: 1 + type: Transform + - uid: 24442 + components: + - pos: -95.5,-11.5 + parent: 1 + type: Transform + - uid: 24443 + components: + - pos: -100.5,-6.5 + parent: 1 + type: Transform + - uid: 24444 + components: + - pos: -100.5,-5.5 + parent: 1 + type: Transform + - uid: 24445 + components: + - pos: -100.5,-4.5 + parent: 1 + type: Transform + - uid: 24446 + components: + - pos: -100.5,-2.5 + parent: 1 + type: Transform + - uid: 24447 + components: + - pos: -100.5,-1.5 + parent: 1 + type: Transform + - uid: 24448 + components: + - pos: -100.5,-0.5 + parent: 1 + type: Transform + - uid: 24449 + components: + - pos: -100.5,9.5 + parent: 1 + type: Transform + - uid: 24450 + components: + - pos: -100.5,1.5 + parent: 1 + type: Transform + - uid: 24451 + components: + - pos: -100.5,2.5 + parent: 1 + type: Transform + - uid: 24452 + components: + - pos: -100.5,3.5 + parent: 1 + type: Transform + - uid: 24453 + components: + - pos: -100.5,5.5 + parent: 1 + type: Transform + - uid: 24454 + components: + - pos: -100.5,6.5 + parent: 1 + type: Transform + - uid: 24455 + components: + - pos: -100.5,7.5 + parent: 1 + type: Transform + - uid: 24456 + components: + - pos: -100.5,10.5 + parent: 1 + type: Transform + - uid: 24457 + components: + - pos: -100.5,11.5 + parent: 1 + type: Transform + - uid: 24458 + components: + - pos: -100.5,13.5 + parent: 1 + type: Transform + - uid: 24459 + components: + - pos: -100.5,14.5 + parent: 1 + type: Transform + - uid: 24460 + components: + - pos: -100.5,15.5 + parent: 1 + type: Transform + - uid: 24462 + components: + - pos: -95.5,20.5 + parent: 1 + type: Transform + - uid: 24463 + components: + - pos: -94.5,20.5 + parent: 1 + type: Transform + - uid: 24464 + components: + - pos: -93.5,20.5 + parent: 1 + type: Transform + - uid: 24465 + components: + - pos: -91.5,20.5 + parent: 1 + type: Transform + - uid: 24466 + components: + - pos: -90.5,20.5 + parent: 1 + type: Transform + - uid: 24467 + components: + - pos: -89.5,20.5 + parent: 1 + type: Transform + - uid: 24468 + components: + - pos: -87.5,20.5 + parent: 1 + type: Transform + - uid: 24469 + components: + - pos: -86.5,20.5 + parent: 1 + type: Transform + - uid: 24470 + components: + - pos: -85.5,20.5 + parent: 1 + type: Transform + - uid: 24471 + components: + - pos: -83.5,20.5 + parent: 1 + type: Transform + - uid: 24472 + components: + - pos: -82.5,20.5 + parent: 1 + type: Transform + - uid: 24473 + components: + - pos: -81.5,20.5 + parent: 1 + type: Transform + - uid: 25203 + components: + - pos: 107.5,28.5 + parent: 1 + type: Transform + - uid: 25218 + components: + - pos: 107.5,27.5 + parent: 1 + type: Transform + - uid: 25219 + components: + - pos: 107.5,26.5 + parent: 1 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 83 + components: + - pos: -56.5,23.5 + parent: 1 + type: Transform + - uid: 282 + components: + - pos: -52.5,22.5 + parent: 1 + type: Transform + - uid: 283 + components: + - pos: -53.5,23.5 + parent: 1 + type: Transform + - uid: 287 + components: + - pos: -54.5,23.5 + parent: 1 + type: Transform + - uid: 288 + components: + - pos: -55.5,23.5 + parent: 1 + type: Transform + - uid: 509 + components: + - pos: -1.5,-50.5 + parent: 1 + type: Transform + - uid: 510 + components: + - pos: -5.5,-50.5 + parent: 1 + type: Transform + - uid: 513 + components: + - pos: -2.5,-50.5 + parent: 1 + type: Transform + - uid: 519 + components: + - pos: -3.5,-50.5 + parent: 1 + type: Transform + - uid: 523 + components: + - pos: -0.5,-50.5 + parent: 1 + type: Transform + - uid: 524 + components: + - pos: -4.5,-50.5 + parent: 1 + type: Transform + - uid: 856 + components: + - pos: 13.5,-28.5 + parent: 1 + type: Transform + - uid: 884 + components: + - pos: 10.5,-28.5 + parent: 1 + type: Transform + - uid: 1037 + components: + - pos: 13.5,-36.5 + parent: 1 + type: Transform + - uid: 1257 + components: + - pos: -32.5,-15.5 + parent: 1 + type: Transform + - uid: 1301 + components: + - pos: 109.5,14.5 + parent: 1 + type: Transform + - uid: 1485 + components: + - pos: 10.5,-36.5 + parent: 1 + type: Transform + - uid: 1490 + components: + - pos: 12.5,-36.5 + parent: 1 + type: Transform + - uid: 1492 + components: + - pos: 11.5,-36.5 + parent: 1 + type: Transform + - uid: 1660 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 1661 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 1662 + components: + - pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 1663 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 1673 + components: + - pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 1677 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 1684 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 1685 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 1686 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 1687 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 1814 + components: + - pos: -20.5,1.5 + parent: 1 + type: Transform + - uid: 1965 + components: + - pos: -69.5,5.5 + parent: 1 + type: Transform + - uid: 2200 + components: + - pos: 52.5,-30.5 + parent: 1 + type: Transform + - uid: 2252 + components: + - pos: -25.5,22.5 + parent: 1 + type: Transform + - uid: 2253 + components: + - pos: -24.5,22.5 + parent: 1 + type: Transform + - uid: 2348 + components: + - pos: -55.5,10.5 + parent: 1 + type: Transform + - uid: 2349 + components: + - pos: -54.5,10.5 + parent: 1 + type: Transform + - uid: 2350 + components: + - pos: -53.5,10.5 + parent: 1 + type: Transform + - uid: 2351 + components: + - pos: -52.5,8.5 + parent: 1 + type: Transform + - uid: 2352 + components: + - pos: -52.5,9.5 + parent: 1 + type: Transform + - uid: 2353 + components: + - pos: -53.5,6.5 + parent: 1 + type: Transform + - uid: 2354 + components: + - pos: -55.5,6.5 + parent: 1 + type: Transform + - uid: 2355 + components: + - pos: -54.5,6.5 + parent: 1 + type: Transform + - uid: 2356 + components: + - pos: -56.5,12.5 + parent: 1 + type: Transform + - uid: 2357 + components: + - pos: -55.5,12.5 + parent: 1 + type: Transform + - uid: 2358 + components: + - pos: -54.5,12.5 + parent: 1 + type: Transform + - uid: 2359 + components: + - pos: -53.5,12.5 + parent: 1 + type: Transform + - uid: 2381 + components: + - pos: -61.5,1.5 + parent: 1 + type: Transform + - uid: 2382 + components: + - pos: -59.5,1.5 + parent: 1 + type: Transform + - uid: 2418 + components: + - pos: -43.5,15.5 + parent: 1 + type: Transform + - uid: 2420 + components: + - pos: -42.5,15.5 + parent: 1 + type: Transform + - uid: 2422 + components: + - pos: -40.5,15.5 + parent: 1 + type: Transform + - uid: 2423 + components: + - pos: -39.5,15.5 + parent: 1 + type: Transform + - uid: 2424 + components: + - pos: -34.5,9.5 + parent: 1 + type: Transform + - uid: 2425 + components: + - pos: -34.5,10.5 + parent: 1 + type: Transform + - uid: 2480 + components: + - pos: -53.5,16.5 + parent: 1 + type: Transform + - uid: 2481 + components: + - pos: -53.5,17.5 + parent: 1 + type: Transform + - uid: 2482 + components: + - pos: -53.5,18.5 + parent: 1 + type: Transform + - uid: 2483 + components: + - pos: -53.5,19.5 + parent: 1 + type: Transform + - uid: 2484 + components: + - pos: -53.5,20.5 + parent: 1 + type: Transform + - uid: 2491 + components: + - pos: -49.5,21.5 + parent: 1 + type: Transform + - uid: 2492 + components: + - pos: -50.5,21.5 + parent: 1 + type: Transform + - uid: 2515 + components: + - pos: -39.5,0.5 + parent: 1 + type: Transform + - uid: 2516 + components: + - pos: -39.5,3.5 + parent: 1 + type: Transform + - uid: 2517 + components: + - pos: -39.5,6.5 + parent: 1 + type: Transform + - uid: 2518 + components: + - pos: -39.5,7.5 + parent: 1 + type: Transform + - uid: 2732 + components: + - pos: -69.5,2.5 + parent: 1 + type: Transform + - uid: 2959 + components: + - pos: -69.5,1.5 + parent: 1 + type: Transform + - uid: 3410 + components: + - pos: -22.5,6.5 + parent: 1 + type: Transform + - uid: 3413 + components: + - pos: -23.5,6.5 + parent: 1 + type: Transform + - uid: 3414 + components: + - pos: -21.5,6.5 + parent: 1 + type: Transform + - uid: 3433 + components: + - pos: 82.5,6.5 + parent: 1 + type: Transform + - uid: 3434 + components: + - pos: 82.5,1.5 + parent: 1 + type: Transform + - uid: 3435 + components: + - pos: 81.5,1.5 + parent: 1 + type: Transform + - uid: 3436 + components: + - pos: 80.5,1.5 + parent: 1 + type: Transform + - uid: 3439 + components: + - pos: 81.5,6.5 + parent: 1 + type: Transform + - uid: 3440 + components: + - pos: 80.5,6.5 + parent: 1 + type: Transform + - uid: 3441 + components: + - pos: 79.5,6.5 + parent: 1 + type: Transform + - uid: 3456 + components: + - pos: 79.5,1.5 + parent: 1 + type: Transform + - uid: 3471 + components: + - pos: 75.5,-0.5 + parent: 1 + type: Transform + - uid: 3602 + components: + - pos: 14.5,-15.5 + parent: 1 + type: Transform + - uid: 3603 + components: + - pos: 14.5,-17.5 + parent: 1 + type: Transform + - uid: 3604 + components: + - pos: 14.5,-18.5 + parent: 1 + type: Transform + - uid: 3624 + components: + - pos: 5.5,32.5 + parent: 1 + type: Transform + - uid: 3625 + components: + - pos: 5.5,33.5 + parent: 1 + type: Transform + - uid: 3626 + components: + - pos: 5.5,34.5 + parent: 1 + type: Transform + - uid: 3627 + components: + - pos: 18.5,34.5 + parent: 1 + type: Transform + - uid: 3628 + components: + - pos: 18.5,33.5 + parent: 1 + type: Transform + - uid: 3629 + components: + - pos: 18.5,32.5 + parent: 1 + type: Transform + - uid: 3724 + components: + - pos: 52.5,-29.5 + parent: 1 + type: Transform + - uid: 3765 + components: + - pos: 42.5,44.5 + parent: 1 + type: Transform + - uid: 3810 + components: + - pos: 96.5,10.5 + parent: 1 + type: Transform + - uid: 3981 + components: + - pos: -38.5,15.5 + parent: 1 + type: Transform + - uid: 4032 + components: + - pos: 62.5,6.5 + parent: 1 + type: Transform + - uid: 4033 + components: + - pos: 63.5,6.5 + parent: 1 + type: Transform + - uid: 4034 + components: + - pos: 67.5,6.5 + parent: 1 + type: Transform + - uid: 4035 + components: + - pos: 66.5,6.5 + parent: 1 + type: Transform + - uid: 4038 + components: + - pos: 65.5,10.5 + parent: 1 + type: Transform + - uid: 4039 + components: + - pos: 65.5,11.5 + parent: 1 + type: Transform + - uid: 4074 + components: + - pos: 66.5,9.5 + parent: 1 + type: Transform + - uid: 4100 + components: + - pos: 74.5,1.5 + parent: 1 + type: Transform + - uid: 4101 + components: + - pos: 73.5,1.5 + parent: 1 + type: Transform + - uid: 4102 + components: + - pos: 72.5,1.5 + parent: 1 + type: Transform + - uid: 4104 + components: + - pos: -33.5,-15.5 + parent: 1 + type: Transform + - uid: 4109 + components: + - pos: 72.5,9.5 + parent: 1 + type: Transform + - uid: 4117 + components: + - pos: 85.5,22.5 + parent: 1 + type: Transform + - uid: 4122 + components: + - pos: -34.5,-15.5 + parent: 1 + type: Transform + - uid: 4137 + components: + - pos: 19.5,-27.5 + parent: 1 + type: Transform + - uid: 4155 + components: + - pos: 57.5,1.5 + parent: 1 + type: Transform + - uid: 4182 + components: + - pos: 63.5,15.5 + parent: 1 + type: Transform + - uid: 4183 + components: + - pos: 67.5,15.5 + parent: 1 + type: Transform + - uid: 4185 + components: + - pos: 75.5,10.5 + parent: 1 + type: Transform + - uid: 4336 + components: + - pos: -40.5,39.5 + parent: 1 + type: Transform + - uid: 4594 + components: + - pos: 8.5,47.5 + parent: 1 + type: Transform + - uid: 4784 + components: + - pos: -30.5,-26.5 + parent: 1 + type: Transform + - uid: 4793 + components: + - pos: 75.5,18.5 + parent: 1 + type: Transform + - uid: 4794 + components: + - pos: 75.5,16.5 + parent: 1 + type: Transform + - uid: 4795 + components: + - pos: 75.5,12.5 + parent: 1 + type: Transform + - uid: 4805 + components: + - pos: 78.5,20.5 + parent: 1 + type: Transform + - uid: 4837 + components: + - pos: 68.5,19.5 + parent: 1 + type: Transform + - uid: 4850 + components: + - pos: 68.5,20.5 + parent: 1 + type: Transform + - uid: 4851 + components: + - pos: -23.5,-27.5 + parent: 1 + type: Transform + - uid: 4879 + components: + - pos: -30.5,-27.5 + parent: 1 + type: Transform + - uid: 4881 + components: + - pos: 78.5,22.5 + parent: 1 + type: Transform + - uid: 4925 + components: + - pos: -30.5,-25.5 + parent: 1 + type: Transform + - uid: 4933 + components: + - pos: 55.5,1.5 + parent: 1 + type: Transform + - uid: 4972 + components: + - pos: 19.5,-26.5 + parent: 1 + type: Transform + - uid: 5007 + components: + - pos: -53.5,-12.5 + parent: 1 + type: Transform + - uid: 5008 + components: + - pos: -53.5,-11.5 + parent: 1 + type: Transform + - uid: 5009 + components: + - pos: -53.5,-10.5 + parent: 1 + type: Transform + - uid: 5010 + components: + - pos: -53.5,-9.5 + parent: 1 + type: Transform + - uid: 5011 + components: + - pos: -53.5,-8.5 + parent: 1 + type: Transform + - uid: 5061 + components: + - pos: -44.5,-41.5 + parent: 1 + type: Transform + - uid: 5072 + components: + - pos: -41.5,-42.5 + parent: 1 + type: Transform + - uid: 5079 + components: + - pos: -55.5,-25.5 + parent: 1 + type: Transform + - uid: 5080 + components: + - pos: -57.5,-25.5 + parent: 1 + type: Transform + - uid: 5117 + components: + - pos: -22.5,1.5 + parent: 1 + type: Transform + - uid: 5287 + components: + - pos: 84.5,26.5 + parent: 1 + type: Transform + - uid: 5288 + components: + - pos: 84.5,27.5 + parent: 1 + type: Transform + - uid: 5353 + components: + - pos: 11.5,55.5 + parent: 1 + type: Transform + - uid: 5354 + components: + - pos: -1.5,58.5 + parent: 1 + type: Transform + - uid: 5356 + components: + - pos: 4.5,57.5 + parent: 1 + type: Transform + - uid: 5357 + components: + - pos: 3.5,57.5 + parent: 1 + type: Transform + - uid: 5358 + components: + - pos: 3.5,58.5 + parent: 1 + type: Transform + - uid: 5522 + components: + - pos: 74.5,9.5 + parent: 1 + type: Transform + - uid: 5586 + components: + - pos: 62.5,-1.5 + parent: 1 + type: Transform + - uid: 5587 + components: + - pos: 64.5,-1.5 + parent: 1 + type: Transform + - uid: 5589 + components: + - pos: 70.5,-1.5 + parent: 1 + type: Transform + - uid: 5592 + components: + - pos: 67.5,-1.5 + parent: 1 + type: Transform + - uid: 5600 + components: + - pos: 64.5,-5.5 + parent: 1 + type: Transform + - uid: 5601 + components: + - pos: 65.5,-5.5 + parent: 1 + type: Transform + - uid: 5602 + components: + - pos: 66.5,-5.5 + parent: 1 + type: Transform + - uid: 5628 + components: + - pos: 71.5,-9.5 + parent: 1 + type: Transform + - uid: 5629 + components: + - pos: 70.5,-9.5 + parent: 1 + type: Transform + - uid: 5630 + components: + - pos: 69.5,-9.5 + parent: 1 + type: Transform + - uid: 5631 + components: + - pos: 68.5,-8.5 + parent: 1 + type: Transform + - uid: 5632 + components: + - pos: 68.5,-6.5 + parent: 1 + type: Transform + - uid: 5652 + components: + - pos: 74.5,-13.5 + parent: 1 + type: Transform + - uid: 5655 + components: + - pos: 76.5,-13.5 + parent: 1 + type: Transform + - uid: 5759 + components: + - pos: 79.5,-12.5 + parent: 1 + type: Transform + - uid: 5760 + components: + - pos: 81.5,-12.5 + parent: 1 + type: Transform + - uid: 5821 + components: + - pos: -41.5,-26.5 + parent: 1 + type: Transform + - uid: 5824 + components: + - pos: -52.5,-18.5 + parent: 1 + type: Transform + - uid: 5825 + components: + - pos: -52.5,-17.5 + parent: 1 + type: Transform + - uid: 5826 + components: + - pos: -52.5,-15.5 + parent: 1 + type: Transform + - uid: 5827 + components: + - pos: -52.5,-14.5 + parent: 1 + type: Transform + - uid: 5829 + components: + - pos: -44.5,-26.5 + parent: 1 + type: Transform + - uid: 5858 + components: + - pos: -51.5,-43.5 + parent: 1 + type: Transform + - uid: 5859 + components: + - pos: -50.5,-37.5 + parent: 1 + type: Transform + - uid: 5882 + components: + - pos: -41.5,-41.5 + parent: 1 + type: Transform + - uid: 5903 + components: + - pos: -48.5,-17.5 + parent: 1 + type: Transform + - uid: 5904 + components: + - pos: -48.5,-15.5 + parent: 1 + type: Transform + - uid: 5905 + components: + - pos: -48.5,-14.5 + parent: 1 + type: Transform + - uid: 5918 + components: + - pos: -62.5,-20.5 + parent: 1 + type: Transform + - uid: 5922 + components: + - pos: -58.5,-25.5 + parent: 1 + type: Transform + - uid: 5953 + components: + - pos: 84.5,6.5 + parent: 1 + type: Transform + - uid: 5954 + components: + - pos: 85.5,6.5 + parent: 1 + type: Transform + - uid: 5955 + components: + - pos: 86.5,6.5 + parent: 1 + type: Transform + - uid: 5956 + components: + - pos: 87.5,6.5 + parent: 1 + type: Transform + - uid: 5957 + components: + - pos: 88.5,6.5 + parent: 1 + type: Transform + - uid: 5963 + components: + - pos: 84.5,1.5 + parent: 1 + type: Transform + - uid: 5964 + components: + - pos: 85.5,1.5 + parent: 1 + type: Transform + - uid: 5965 + components: + - pos: 86.5,1.5 + parent: 1 + type: Transform + - uid: 5966 + components: + - pos: 87.5,1.5 + parent: 1 + type: Transform + - uid: 5967 + components: + - pos: 88.5,1.5 + parent: 1 + type: Transform + - uid: 6016 + components: + - pos: -23.5,-17.5 + parent: 1 + type: Transform + - uid: 6017 + components: + - pos: -25.5,-17.5 + parent: 1 + type: Transform + - uid: 6027 + components: + - pos: -26.5,-17.5 + parent: 1 + type: Transform + - uid: 6029 + components: + - pos: -24.5,-17.5 + parent: 1 + type: Transform + - uid: 6050 + components: + - pos: -62.5,-21.5 + parent: 1 + type: Transform + - uid: 6191 + components: + - pos: 93.5,2.5 + parent: 1 + type: Transform + - uid: 6192 + components: + - pos: 93.5,5.5 + parent: 1 + type: Transform + - uid: 6427 + components: + - pos: -47.5,18.5 + parent: 1 + type: Transform + - uid: 6428 + components: + - pos: -47.5,19.5 + parent: 1 + type: Transform + - uid: 6429 + components: + - pos: -47.5,20.5 + parent: 1 + type: Transform + - uid: 6562 + components: + - pos: -52.5,-1.5 + parent: 1 + type: Transform + - uid: 6563 + components: + - pos: -52.5,-0.5 + parent: 1 + type: Transform + - uid: 6564 + components: + - pos: -52.5,0.5 + parent: 1 + type: Transform + - uid: 6565 + components: + - pos: -52.5,-3.5 + parent: 1 + type: Transform + - uid: 6626 + components: + - pos: -47.5,-12.5 + parent: 1 + type: Transform + - uid: 6627 + components: + - pos: -47.5,-11.5 + parent: 1 + type: Transform + - uid: 6628 + components: + - pos: -47.5,-10.5 + parent: 1 + type: Transform + - uid: 6679 + components: + - pos: -62.5,-24.5 + parent: 1 + type: Transform + - uid: 6732 + components: + - pos: -66.5,10.5 + parent: 1 + type: Transform + - uid: 6733 + components: + - pos: -67.5,10.5 + parent: 1 + type: Transform + - uid: 6738 + components: + - pos: -67.5,-2.5 + parent: 1 + type: Transform + - uid: 6739 + components: + - pos: -66.5,-2.5 + parent: 1 + type: Transform + - uid: 6767 + components: + - pos: -41.5,-32.5 + parent: 1 + type: Transform + - uid: 6774 + components: + - pos: -62.5,-23.5 + parent: 1 + type: Transform + - uid: 6839 + components: + - pos: -41.5,-33.5 + parent: 1 + type: Transform + - uid: 7013 + components: + - pos: 19.5,-25.5 + parent: 1 + type: Transform + - uid: 7014 + components: + - pos: 4.5,-27.5 + parent: 1 + type: Transform + - uid: 7016 + components: + - pos: 4.5,-26.5 + parent: 1 + type: Transform + - uid: 7017 + components: + - pos: 4.5,-25.5 + parent: 1 + type: Transform + - uid: 7074 + components: + - pos: -33.5,-1.5 + parent: 1 + type: Transform + - uid: 7075 + components: + - pos: -32.5,-1.5 + parent: 1 + type: Transform + - uid: 7076 + components: + - pos: -31.5,-1.5 + parent: 1 + type: Transform + - uid: 7077 + components: + - pos: -33.5,9.5 + parent: 1 + type: Transform + - uid: 7078 + components: + - pos: -32.5,9.5 + parent: 1 + type: Transform + - uid: 7079 + components: + - pos: -31.5,9.5 + parent: 1 + type: Transform + - uid: 7478 + components: + - pos: -50.5,-43.5 + parent: 1 + type: Transform + - uid: 7479 + components: + - pos: -51.5,-37.5 + parent: 1 + type: Transform + - uid: 7643 + components: + - pos: 87.5,-9.5 + parent: 1 + type: Transform + - uid: 9101 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 9102 + components: + - pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 9103 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 9104 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 9105 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 9106 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 9107 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 9108 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 9149 + components: + - pos: 3.5,-50.5 + parent: 1 + type: Transform + - uid: 9150 + components: + - pos: 4.5,-50.5 + parent: 1 + type: Transform + - uid: 9151 + components: + - pos: 5.5,-50.5 + parent: 1 + type: Transform + - uid: 9152 + components: + - pos: 6.5,-50.5 + parent: 1 + type: Transform + - uid: 9153 + components: + - pos: 10.5,-50.5 + parent: 1 + type: Transform + - uid: 9154 + components: + - pos: 11.5,-50.5 + parent: 1 + type: Transform + - uid: 9155 + components: + - pos: 12.5,-50.5 + parent: 1 + type: Transform + - uid: 9156 + components: + - pos: 14.5,-50.5 + parent: 1 + type: Transform + - uid: 9161 + components: + - pos: 0.5,-51.5 + parent: 1 + type: Transform + - uid: 9162 + components: + - pos: 2.5,-51.5 + parent: 1 + type: Transform + - uid: 9163 + components: + - pos: 7.5,-51.5 + parent: 1 + type: Transform + - uid: 9164 + components: + - pos: 9.5,-51.5 + parent: 1 + type: Transform + - uid: 9202 + components: + - pos: 15.5,-50.5 + parent: 1 + type: Transform + - uid: 9203 + components: + - pos: 13.5,-50.5 + parent: 1 + type: Transform + - uid: 9204 + components: + - pos: 16.5,-51.5 + parent: 1 + type: Transform + - uid: 9205 + components: + - pos: 16.5,-52.5 + parent: 1 + type: Transform + - uid: 9206 + components: + - pos: 20.5,-52.5 + parent: 1 + type: Transform + - uid: 9207 + components: + - pos: 20.5,-51.5 + parent: 1 + type: Transform + - uid: 9208 + components: + - pos: 21.5,-50.5 + parent: 1 + type: Transform + - uid: 9209 + components: + - pos: 22.5,-50.5 + parent: 1 + type: Transform + - uid: 9210 + components: + - pos: 23.5,-50.5 + parent: 1 + type: Transform + - uid: 9211 + components: + - pos: 24.5,-51.5 + parent: 1 + type: Transform + - uid: 9212 + components: + - pos: 24.5,-52.5 + parent: 1 + type: Transform + - uid: 9213 + components: + - pos: 28.5,-52.5 + parent: 1 + type: Transform + - uid: 9214 + components: + - pos: 28.5,-51.5 + parent: 1 + type: Transform + - uid: 9215 + components: + - pos: 30.5,-50.5 + parent: 1 + type: Transform + - uid: 9216 + components: + - pos: 29.5,-50.5 + parent: 1 + type: Transform + - uid: 9228 + components: + - pos: 86.5,-21.5 + parent: 1 + type: Transform + - uid: 9314 + components: + - pos: 73.5,30.5 + parent: 1 + type: Transform + - uid: 9315 + components: + - pos: 74.5,30.5 + parent: 1 + type: Transform + - uid: 9316 + components: + - pos: 75.5,30.5 + parent: 1 + type: Transform + - uid: 9317 + components: + - pos: 76.5,30.5 + parent: 1 + type: Transform + - uid: 9318 + components: + - pos: 77.5,30.5 + parent: 1 + type: Transform + - uid: 9319 + components: + - pos: 78.5,30.5 + parent: 1 + type: Transform + - uid: 9554 + components: + - pos: -36.5,-33.5 + parent: 1 + type: Transform + - uid: 9555 + components: + - pos: -36.5,-32.5 + parent: 1 + type: Transform + - uid: 9556 + components: + - pos: 42.5,45.5 + parent: 1 + type: Transform + - uid: 9557 + components: + - pos: 42.5,46.5 + parent: 1 + type: Transform + - uid: 9558 + components: + - pos: 42.5,-39.5 + parent: 1 + type: Transform + - uid: 9559 + components: + - pos: 42.5,-38.5 + parent: 1 + type: Transform + - uid: 9560 + components: + - pos: 42.5,-37.5 + parent: 1 + type: Transform + - uid: 9799 + components: + - pos: 111.5,-0.5 + parent: 1 + type: Transform + - uid: 9800 + components: + - pos: 114.5,-0.5 + parent: 1 + type: Transform + - uid: 10296 + components: + - pos: 71.5,32.5 + parent: 1 + type: Transform + - uid: 10297 + components: + - pos: 72.5,32.5 + parent: 1 + type: Transform + - uid: 10298 + components: + - pos: 73.5,32.5 + parent: 1 + type: Transform + - uid: 10299 + components: + - pos: 74.5,32.5 + parent: 1 + type: Transform + - uid: 10300 + components: + - pos: 75.5,32.5 + parent: 1 + type: Transform + - uid: 10301 + components: + - pos: 76.5,32.5 + parent: 1 + type: Transform + - uid: 10302 + components: + - pos: 77.5,32.5 + parent: 1 + type: Transform + - uid: 10303 + components: + - pos: 78.5,32.5 + parent: 1 + type: Transform + - uid: 10304 + components: + - pos: 79.5,32.5 + parent: 1 + type: Transform + - uid: 10305 + components: + - pos: 80.5,32.5 + parent: 1 + type: Transform + - uid: 10509 + components: + - pos: 4.5,56.5 + parent: 1 + type: Transform + - uid: 10719 + components: + - pos: -41.5,-38.5 + parent: 1 + type: Transform + - uid: 11353 + components: + - pos: -12.5,55.5 + parent: 1 + type: Transform + - uid: 11472 + components: + - pos: -14.5,55.5 + parent: 1 + type: Transform + - uid: 11480 + components: + - pos: -69.5,6.5 + parent: 1 + type: Transform + - uid: 11588 + components: + - pos: 66.5,-24.5 + parent: 1 + type: Transform + - uid: 11589 + components: + - pos: 66.5,-22.5 + parent: 1 + type: Transform + - uid: 11590 + components: + - pos: 77.5,-24.5 + parent: 1 + type: Transform + - uid: 11591 + components: + - pos: 77.5,-22.5 + parent: 1 + type: Transform + - uid: 11597 + components: + - pos: 65.5,-21.5 + parent: 1 + type: Transform + - uid: 11598 + components: + - pos: 76.5,-21.5 + parent: 1 + type: Transform + - uid: 11619 + components: + - pos: -0.5,58.5 + parent: 1 + type: Transform + - uid: 11620 + components: + - pos: 0.5,58.5 + parent: 1 + type: Transform + - uid: 11621 + components: + - pos: 1.5,58.5 + parent: 1 + type: Transform + - uid: 11622 + components: + - pos: 2.5,58.5 + parent: 1 + type: Transform + - uid: 11624 + components: + - pos: -1.5,57.5 + parent: 1 + type: Transform + - uid: 11625 + components: + - pos: -2.5,57.5 + parent: 1 + type: Transform + - uid: 11626 + components: + - pos: -2.5,56.5 + parent: 1 + type: Transform + - uid: 11638 + components: + - pos: 19.5,56.5 + parent: 1 + type: Transform + - uid: 11639 + components: + - pos: 19.5,57.5 + parent: 1 + type: Transform + - uid: 11640 + components: + - pos: 20.5,57.5 + parent: 1 + type: Transform + - uid: 11641 + components: + - pos: 20.5,58.5 + parent: 1 + type: Transform + - uid: 11642 + components: + - pos: 21.5,58.5 + parent: 1 + type: Transform + - uid: 11643 + components: + - pos: 22.5,58.5 + parent: 1 + type: Transform + - uid: 11644 + components: + - pos: 23.5,58.5 + parent: 1 + type: Transform + - uid: 11645 + components: + - pos: 24.5,58.5 + parent: 1 + type: Transform + - uid: 11646 + components: + - pos: 25.5,58.5 + parent: 1 + type: Transform + - uid: 11647 + components: + - pos: 25.5,57.5 + parent: 1 + type: Transform + - uid: 11648 + components: + - pos: 26.5,57.5 + parent: 1 + type: Transform + - uid: 11649 + components: + - pos: 26.5,56.5 + parent: 1 + type: Transform + - uid: 11659 + components: + - pos: 11.5,58.5 + parent: 1 + type: Transform + - uid: 11660 + components: + - pos: 13.5,58.5 + parent: 1 + type: Transform + - uid: 11661 + components: + - pos: 13.5,55.5 + parent: 1 + type: Transform + - uid: 11668 + components: + - pos: -9.5,55.5 + parent: 1 + type: Transform + - uid: 11669 + components: + - pos: -7.5,55.5 + parent: 1 + type: Transform + - uid: 11670 + components: + - pos: -7.5,57.5 + parent: 1 + type: Transform + - uid: 11671 + components: + - pos: -9.5,57.5 + parent: 1 + type: Transform + - uid: 11680 + components: + - pos: 31.5,57.5 + parent: 1 + type: Transform + - uid: 11681 + components: + - pos: 33.5,57.5 + parent: 1 + type: Transform + - uid: 11682 + components: + - pos: 33.5,55.5 + parent: 1 + type: Transform + - uid: 11683 + components: + - pos: 31.5,55.5 + parent: 1 + type: Transform + - uid: 11696 + components: + - pos: -13.5,55.5 + parent: 1 + type: Transform + - uid: 11926 + components: + - pos: -38.5,39.5 + parent: 1 + type: Transform + - uid: 11928 + components: + - pos: -37.5,41.5 + parent: 1 + type: Transform + - uid: 11929 + components: + - pos: -37.5,42.5 + parent: 1 + type: Transform + - uid: 11930 + components: + - pos: -38.5,43.5 + parent: 1 + type: Transform + - uid: 11931 + components: + - pos: -39.5,43.5 + parent: 1 + type: Transform + - uid: 11932 + components: + - pos: -40.5,43.5 + parent: 1 + type: Transform + - uid: 11933 + components: + - pos: -42.5,43.5 + parent: 1 + type: Transform + - uid: 11934 + components: + - pos: -43.5,43.5 + parent: 1 + type: Transform + - uid: 11954 + components: + - pos: -37.5,40.5 + parent: 1 + type: Transform + - uid: 12041 + components: + - pos: -48.5,-18.5 + parent: 1 + type: Transform + - uid: 12122 + components: + - pos: -76.5,0.5 + parent: 1 + type: Transform + - uid: 12123 + components: + - pos: -75.5,0.5 + parent: 1 + type: Transform + - uid: 12147 + components: + - pos: -76.5,-2.5 + parent: 1 + type: Transform + - uid: 12148 + components: + - pos: -75.5,-2.5 + parent: 1 + type: Transform + - uid: 12149 + components: + - pos: -74.5,-2.5 + parent: 1 + type: Transform + - uid: 12265 + components: + - pos: -22.5,-27.5 + parent: 1 + type: Transform + - uid: 12266 + components: + - pos: -19.5,-27.5 + parent: 1 + type: Transform + - uid: 12267 + components: + - pos: -18.5,-27.5 + parent: 1 + type: Transform + - uid: 12274 + components: + - pos: -28.5,-36.5 + parent: 1 + type: Transform + - uid: 12275 + components: + - pos: -28.5,-37.5 + parent: 1 + type: Transform + - uid: 12276 + components: + - pos: -27.5,-38.5 + parent: 1 + type: Transform + - uid: 12278 + components: + - pos: -26.5,-38.5 + parent: 1 + type: Transform + - uid: 12279 + components: + - pos: -25.5,-38.5 + parent: 1 + type: Transform + - uid: 12280 + components: + - pos: -24.5,-38.5 + parent: 1 + type: Transform + - uid: 12281 + components: + - pos: -23.5,-38.5 + parent: 1 + type: Transform + - uid: 12282 + components: + - pos: -22.5,-37.5 + parent: 1 + type: Transform + - uid: 12283 + components: + - pos: -22.5,-36.5 + parent: 1 + type: Transform + - uid: 14043 + components: + - pos: -73.5,-0.5 + parent: 1 + type: Transform + - uid: 14929 + components: + - pos: -72.5,0.5 + parent: 1 + type: Transform + - uid: 14930 + components: + - pos: -71.5,0.5 + parent: 1 + type: Transform + - uid: 15200 + components: + - pos: 88.5,-4.5 + parent: 1 + type: Transform + - uid: 15201 + components: + - pos: 93.5,-6.5 + parent: 1 + type: Transform + - uid: 15202 + components: + - pos: 93.5,-7.5 + parent: 1 + type: Transform + - uid: 15203 + components: + - pos: 89.5,-4.5 + parent: 1 + type: Transform + - uid: 15820 + components: + - pos: 109.5,13.5 + parent: 1 + type: Transform + - uid: 15883 + components: + - pos: -21.5,48.5 + parent: 1 + type: Transform + - uid: 15884 + components: + - pos: -22.5,48.5 + parent: 1 + type: Transform + - uid: 15885 + components: + - pos: -23.5,48.5 + parent: 1 + type: Transform + - uid: 15886 + components: + - pos: -25.5,48.5 + parent: 1 + type: Transform + - uid: 15887 + components: + - pos: -24.5,48.5 + parent: 1 + type: Transform + - uid: 15889 + components: + - pos: -28.5,46.5 + parent: 1 + type: Transform + - uid: 15890 + components: + - pos: -28.5,45.5 + parent: 1 + type: Transform + - uid: 15891 + components: + - pos: -28.5,44.5 + parent: 1 + type: Transform + - uid: 15892 + components: + - pos: -20.5,45.5 + parent: 1 + type: Transform + - uid: 15893 + components: + - pos: -20.5,46.5 + parent: 1 + type: Transform + - uid: 15894 + components: + - pos: -20.5,47.5 + parent: 1 + type: Transform + - uid: 15910 + components: + - pos: -26.5,48.5 + parent: 1 + type: Transform + - uid: 16152 + components: + - pos: 47.5,-32.5 + parent: 1 + type: Transform + - uid: 16153 + components: + - pos: 48.5,-32.5 + parent: 1 + type: Transform + - uid: 16154 + components: + - pos: 49.5,-32.5 + parent: 1 + type: Transform + - uid: 16155 + components: + - pos: 50.5,-32.5 + parent: 1 + type: Transform + - uid: 16202 + components: + - pos: 55.5,-32.5 + parent: 1 + type: Transform + - uid: 16203 + components: + - pos: 58.5,-32.5 + parent: 1 + type: Transform + - uid: 16204 + components: + - pos: 59.5,-31.5 + parent: 1 + type: Transform + - uid: 16205 + components: + - pos: 60.5,-31.5 + parent: 1 + type: Transform + - uid: 16206 + components: + - pos: 61.5,-31.5 + parent: 1 + type: Transform + - uid: 16207 + components: + - pos: 62.5,-32.5 + parent: 1 + type: Transform + - uid: 16208 + components: + - pos: 65.5,-32.5 + parent: 1 + type: Transform + - uid: 16209 + components: + - pos: 66.5,-28.5 + parent: 1 + type: Transform + - uid: 16210 + components: + - pos: 66.5,-29.5 + parent: 1 + type: Transform + - uid: 16220 + components: + - pos: 54.5,-31.5 + parent: 1 + type: Transform + - uid: 16221 + components: + - pos: 53.5,-31.5 + parent: 1 + type: Transform + - uid: 16496 + components: + - pos: 57.5,44.5 + parent: 1 + type: Transform + - uid: 16497 + components: + - pos: 58.5,44.5 + parent: 1 + type: Transform + - uid: 16498 + components: + - pos: 59.5,44.5 + parent: 1 + type: Transform + - uid: 16499 + components: + - pos: 60.5,43.5 + parent: 1 + type: Transform + - uid: 16500 + components: + - pos: 60.5,42.5 + parent: 1 + type: Transform + - uid: 16501 + components: + - pos: 60.5,41.5 + parent: 1 + type: Transform + - uid: 16502 + components: + - pos: 60.5,40.5 + parent: 1 + type: Transform + - uid: 16503 + components: + - pos: 60.5,38.5 + parent: 1 + type: Transform + - uid: 16504 + components: + - pos: 60.5,37.5 + parent: 1 + type: Transform + - uid: 16505 + components: + - pos: 60.5,36.5 + parent: 1 + type: Transform + - uid: 16506 + components: + - pos: 60.5,35.5 + parent: 1 + type: Transform + - uid: 16507 + components: + - pos: 59.5,34.5 + parent: 1 + type: Transform + - uid: 16508 + components: + - pos: 58.5,34.5 + parent: 1 + type: Transform + - uid: 16509 + components: + - pos: 57.5,34.5 + parent: 1 + type: Transform + - uid: 17126 + components: + - pos: -59.5,-12.5 + parent: 1 + type: Transform + - uid: 17127 + components: + - pos: -59.5,-11.5 + parent: 1 + type: Transform + - uid: 17170 + components: + - pos: -59.5,-10.5 + parent: 1 + type: Transform + - uid: 17303 + components: + - pos: -59.5,-9.5 + parent: 1 + type: Transform + - uid: 17381 + components: + - pos: -59.5,-8.5 + parent: 1 + type: Transform + - uid: 17382 + components: + - pos: -63.5,-12.5 + parent: 1 + type: Transform + - uid: 17383 + components: + - pos: -63.5,-11.5 + parent: 1 + type: Transform + - uid: 17384 + components: + - pos: -63.5,-10.5 + parent: 1 + type: Transform + - uid: 17385 + components: + - pos: -63.5,-9.5 + parent: 1 + type: Transform + - uid: 17386 + components: + - pos: -63.5,-8.5 + parent: 1 + type: Transform + - uid: 20961 + components: + - pos: -41.5,-39.5 + parent: 1 + type: Transform + - uid: 21450 + components: + - pos: -46.5,-33.5 + parent: 1 + type: Transform + - uid: 22672 + components: + - pos: 90.5,27.5 + parent: 1 + type: Transform + - uid: 22673 + components: + - pos: 90.5,28.5 + parent: 1 + type: Transform + - uid: 22674 + components: + - pos: 92.5,24.5 + parent: 1 + type: Transform + - uid: 22675 + components: + - pos: 92.5,25.5 + parent: 1 + type: Transform + - uid: 22684 + components: + - pos: 38.5,54.5 + parent: 1 + type: Transform + - uid: 22685 + components: + - pos: 38.5,53.5 + parent: 1 + type: Transform + - uid: 22686 + components: + - pos: 38.5,52.5 + parent: 1 + type: Transform + - uid: 22687 + components: + - pos: 39.5,51.5 + parent: 1 + type: Transform + - uid: 22688 + components: + - pos: 40.5,51.5 + parent: 1 + type: Transform + - uid: 22689 + components: + - pos: 41.5,50.5 + parent: 1 + type: Transform + - uid: 22690 + components: + - pos: 41.5,49.5 + parent: 1 + type: Transform + - uid: 22726 + components: + - pos: -18.5,52.5 + parent: 1 + type: Transform + - uid: 22727 + components: + - pos: -18.5,51.5 + parent: 1 + type: Transform + - uid: 22728 + components: + - pos: -18.5,50.5 + parent: 1 + type: Transform + - uid: 22798 + components: + - pos: -36.5,12.5 + parent: 1 + type: Transform + - uid: 22799 + components: + - pos: -36.5,11.5 + parent: 1 + type: Transform + - uid: 22800 + components: + - pos: -35.5,11.5 + parent: 1 + type: Transform + - uid: 22801 + components: + - pos: -34.5,11.5 + parent: 1 + type: Transform + - uid: 22802 + components: + - pos: -60.5,35.5 + parent: 1 + type: Transform + - uid: 22803 + components: + - pos: -60.5,36.5 + parent: 1 + type: Transform + - uid: 22804 + components: + - pos: -60.5,37.5 + parent: 1 + type: Transform + - uid: 22805 + components: + - pos: -58.5,39.5 + parent: 1 + type: Transform + - uid: 22807 + components: + - pos: -57.5,39.5 + parent: 1 + type: Transform + - uid: 22808 + components: + - pos: -56.5,39.5 + parent: 1 + type: Transform + - uid: 22847 + components: + - pos: -58.5,-31.5 + parent: 1 + type: Transform + - uid: 22848 + components: + - pos: -57.5,-31.5 + parent: 1 + type: Transform + - uid: 22849 + components: + - pos: -56.5,-31.5 + parent: 1 + type: Transform + - uid: 22850 + components: + - pos: -59.5,-31.5 + parent: 1 + type: Transform + - uid: 22854 + components: + - pos: -61.5,-29.5 + parent: 1 + type: Transform + - uid: 22855 + components: + - pos: -61.5,-28.5 + parent: 1 + type: Transform + - uid: 22856 + components: + - pos: -61.5,-27.5 + parent: 1 + type: Transform + - uid: 23914 + components: + - pos: 71.5,25.5 + parent: 1 + type: Transform + - uid: 24780 + components: + - pos: 85.5,-22.5 + parent: 1 + type: Transform + - uid: 24781 + components: + - pos: 85.5,-23.5 + parent: 1 + type: Transform + - uid: 24782 + components: + - pos: 88.5,-23.5 + parent: 1 + type: Transform + - uid: 24783 + components: + - pos: 88.5,-22.5 + parent: 1 + type: Transform + - uid: 24787 + components: + - pos: 86.5,-24.5 + parent: 1 + type: Transform + - uid: 24804 + components: + - pos: 84.5,-27.5 + parent: 1 + type: Transform + - uid: 24805 + components: + - pos: 84.5,-26.5 + parent: 1 + type: Transform + - uid: 24806 + components: + - pos: 84.5,-25.5 + parent: 1 + type: Transform + - uid: 24807 + components: + - pos: 89.5,-27.5 + parent: 1 + type: Transform + - uid: 24808 + components: + - pos: 89.5,-26.5 + parent: 1 + type: Transform + - uid: 24809 + components: + - pos: 89.5,-25.5 + parent: 1 + type: Transform + - uid: 24810 + components: + - pos: 87.5,-28.5 + parent: 1 + type: Transform + - uid: 24811 + components: + - pos: 88.5,-28.5 + parent: 1 + type: Transform + - uid: 25174 + components: + - pos: 75.5,0.5 + parent: 1 + type: Transform + - uid: 25179 + components: + - pos: 76.5,6.5 + parent: 1 + type: Transform + - uid: 25468 + components: + - pos: -46.5,-32.5 + parent: 1 + type: Transform + - uid: 25470 + components: + - pos: -49.5,-36.5 + parent: 1 + type: Transform + - uid: 25489 + components: + - pos: -49.5,-35.5 + parent: 1 + type: Transform + - uid: 25490 + components: + - pos: -47.5,-34.5 + parent: 1 + type: Transform + - uid: 25491 + components: + - pos: -48.5,-34.5 + parent: 1 + type: Transform + - uid: 25587 + components: + - pos: -48.5,-43.5 + parent: 1 + type: Transform + - uid: 25588 + components: + - pos: -47.5,-43.5 + parent: 1 + type: Transform + - uid: 25589 + components: + - pos: -46.5,-43.5 + parent: 1 + type: Transform + - uid: 25598 + components: + - pos: -44.5,-42.5 + parent: 1 + type: Transform +- proto: RemoteSignaller + entities: + - uid: 9627 + components: + - pos: 115.523636,6.5958166 + parent: 1 + type: Transform + - linkedPorts: + 9618: + - Pressed: Toggle + 9617: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 11599 + components: + - rot: 3.141592653589793 rad + pos: 64.39123,19.498093 + parent: 1 + type: Transform + - linkedPorts: + 3797: + - Pressed: Trigger + type: DeviceLinkSource + - uid: 16872 + components: + - pos: -15.623448,22.68428 + parent: 1 + type: Transform + - uid: 25394 + components: + - rot: 1.5707963267948966 rad + pos: 3.7427154,-1.2062497 + parent: 1 + type: Transform + - linkedPorts: + 2594: + - Pressed: Toggle + 2595: + - Pressed: Toggle + 2596: + - Pressed: Toggle + 2597: + - Pressed: Toggle + 2598: + - Pressed: Toggle + 2599: + - Pressed: Toggle + 2600: + - Pressed: Toggle + 2601: + - Pressed: Toggle + 2602: + - Pressed: Toggle + 2603: + - Pressed: Toggle + 25565: + - Pressed: Toggle + 25825: + - Pressed: Toggle + type: DeviceLinkSource +- proto: ResearchAndDevelopmentServer + entities: + - uid: 4709 + components: + - pos: 6.5,46.5 + parent: 1 + type: Transform +- proto: ReverseEngineeringMachine + entities: + - uid: 9968 + components: + - pos: 5.5,47.5 + parent: 1 + type: Transform +- proto: RightLegBorg + entities: + - uid: 16372 + components: + - pos: 6.4789805,-18.172632 + parent: 1 + type: Transform +- proto: RiotShield + entities: + - uid: 4898 + components: + - flags: InContainer + type: MetaData + - parent: 4906 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5507 + components: + - flags: InContainer + type: MetaData + - parent: 4906 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5728 + components: + - flags: InContainer + type: MetaData + - parent: 4909 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5731 + components: + - flags: InContainer + type: MetaData + - parent: 4909 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: RobustHarvestChemistryBottle + entities: + - uid: 1208 + components: + - pos: 5.5219564,14.892907 + parent: 1 + type: Transform + - uid: 12870 + components: + - pos: 31.292429,-38.22171 + parent: 1 + type: Transform +- proto: RollerBed + entities: + - uid: 5804 + components: + - pos: 62.5,-4.5 + parent: 1 + type: Transform + - uid: 5806 + components: + - pos: 62.5,-3.5 + parent: 1 + type: Transform + - uid: 5807 + components: + - pos: 62.5,-2.5 + parent: 1 + type: Transform +- proto: RollerBedSpawnFolded + entities: + - uid: 16257 + components: + - pos: 78.64231,-17.180124 + parent: 1 + type: Transform +- proto: SalvageCanisterSpawner + entities: + - uid: 6512 + components: + - pos: -61.5,32.5 + parent: 1 + type: Transform + - uid: 7344 + components: + - pos: -1.5,41.5 + parent: 1 + type: Transform + - uid: 16231 + components: + - pos: 65.5,-27.5 + parent: 1 + type: Transform + - uid: 22750 + components: + - pos: -32.5,40.5 + parent: 1 + type: Transform + - uid: 22829 + components: + - pos: -61.5,12.5 + parent: 1 + type: Transform + - uid: 25148 + components: + - pos: -47.5,-20.5 + parent: 1 + type: Transform +- proto: SalvageMagnet + entities: + - uid: 5835 + components: + - pos: -41.5,-52.5 + parent: 1 + type: Transform +- proto: SalvagePartsSpawnerLow + entities: + - uid: 4696 + components: + - pos: -3.5,39.5 + parent: 1 + type: Transform + - uid: 6574 + components: + - pos: -61.5,-1.5 + parent: 1 + type: Transform + - uid: 6575 + components: + - pos: -61.5,-0.5 + parent: 1 + type: Transform + - uid: 9899 + components: + - pos: 100.5,17.5 + parent: 1 + type: Transform + - uid: 12248 + components: + - pos: -4.5,-43.5 + parent: 1 + type: Transform + - uid: 12249 + components: + - pos: -4.5,-45.5 + parent: 1 + type: Transform + - uid: 12526 + components: + - pos: -13.5,48.5 + parent: 1 + type: Transform +- proto: SalvagePartsT2Spawner + entities: + - uid: 22628 + components: + - pos: 114.5,10.5 + parent: 1 + type: Transform +- proto: SalvageSeedSpawnerLow + entities: + - uid: 1207 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,17.5 + parent: 1 + type: Transform + - uid: 5490 + components: + - pos: 76.5,25.5 + parent: 1 + type: Transform + - uid: 5491 + components: + - pos: 76.5,25.5 + parent: 1 + type: Transform + - uid: 5492 + components: + - pos: 76.5,25.5 + parent: 1 + type: Transform + - uid: 11218 + components: + - pos: 23.5,-41.5 + parent: 1 + type: Transform + - uid: 11220 + components: + - pos: 23.5,-40.5 + parent: 1 + type: Transform + - uid: 12885 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-44.5 + parent: 1 + type: Transform + - uid: 12886 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-44.5 + parent: 1 + type: Transform + - uid: 12887 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-44.5 + parent: 1 + type: Transform + - uid: 12889 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-44.5 + parent: 1 + type: Transform + - uid: 12890 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-44.5 + parent: 1 + type: Transform +- proto: Saw + entities: + - uid: 12481 + components: + - pos: -38.49144,-15.4438 + parent: 1 + type: Transform +- proto: SawImprov + entities: + - uid: 7664 + components: + - pos: 83.488716,-2.647006 + parent: 1 + type: Transform +- proto: SaxophoneInstrument + entities: + - uid: 2895 + components: + - pos: 35.483337,23.6843 + parent: 1 + type: Transform +- proto: SchoolgirlUniformSpawner + entities: + - uid: 7774 + components: + - rot: 3.141592653589793 rad + pos: -12.5,14.5 + parent: 1 + type: Transform + - uid: 22681 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,37.5 + parent: 1 + type: Transform +- proto: Screen + entities: + - uid: 2501 + components: + - pos: 24.5,2.5 + parent: 1 + type: Transform + - uid: 6279 + components: + - pos: 15.5,47.5 + parent: 1 + type: Transform + - uid: 25767 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-50.5 + parent: 1 + type: Transform + - uid: 25768 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-50.5 + parent: 1 + type: Transform + - uid: 25769 + components: + - rot: 3.141592653589793 rad + pos: 115.5,7.5 + parent: 1 + type: Transform + - uid: 25770 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 25771 + components: + - pos: 74.5,23.5 + parent: 1 + type: Transform + - uid: 25772 + components: + - pos: 58.5,1.5 + parent: 1 + type: Transform +- proto: Screwdriver + entities: + - uid: 2593 + components: + - rot: -1.5707963267948966 rad + pos: 5.00216,-5.450916 + parent: 1 + type: Transform + - uid: 12408 + components: + - rot: 3.141592653589793 rad + pos: -11.428268,11.947783 + parent: 1 + type: Transform + - uid: 16369 + components: + - rot: 3.141592653589793 rad + pos: 6.6039805,-18.2456 + parent: 1 + type: Transform + - uid: 17372 + components: + - pos: 34.24908,6.6179085 + parent: 1 + type: Transform + - uid: 22660 + components: + - rot: 3.141592653589793 rad + pos: 94.569305,-14.87072 + parent: 1 + type: Transform +- proto: SecBreachingHammer + entities: + - uid: 21457 + components: + - pos: 84.52116,17.583738 + parent: 1 + type: Transform +- proto: SecurityTechFab + entities: + - uid: 4904 + components: + - pos: 84.5,19.5 + parent: 1 + type: Transform +- proto: SecurityTechFabCircuitboard + entities: + - uid: 6583 + components: + - pos: -61.496178,-1.1560925 + parent: 1 + type: Transform +- proto: SeedExtractor + entities: + - uid: 1174 + components: + - pos: 5.5,17.5 + parent: 1 + type: Transform + - uid: 5328 + components: + - pos: 78.5,24.5 + parent: 1 + type: Transform +- proto: ShardGlass + entities: + - uid: 5401 + components: + - flags: InContainer + type: MetaData + - parent: 5392 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 15254 + components: + - rot: -1.5707963267948966 rad + pos: 0.21808088,-44.706192 + parent: 1 + type: Transform +- proto: ShardGlassReinforced + entities: + - uid: 13938 + components: + - rot: -1.5707963267948966 rad + pos: -8.634565,-32.429405 + parent: 1 + type: Transform + - uid: 23516 + components: + - pos: 44.543358,28.077852 + parent: 1 + type: Transform +- proto: SheetGlass + entities: + - uid: 2579 + components: + - pos: -45.560844,-1.414053 + parent: 1 + type: Transform + - uid: 2580 + components: + - pos: -45.344177,-1.414053 + parent: 1 + type: Transform + - uid: 4671 + components: + - pos: -9.534787,42.580765 + parent: 1 + type: Transform + - uid: 7670 + components: + - pos: 83.60841,-12.423875 + parent: 1 + type: Transform + - uid: 12901 + components: + - rot: 1.5707963267948966 rad + pos: 30.511179,-42.401695 + parent: 1 + type: Transform + - uid: 16099 + components: + - pos: 27.514942,34.592987 + parent: 1 + type: Transform + - uid: 21552 + components: + - rot: -1.5707963267948966 rad + pos: 4.5037045,47.536232 + parent: 1 + type: Transform +- proto: SheetGlass1 + entities: + - uid: 12506 + components: + - rot: 1.5707963267948966 rad + pos: 1.3425372,49.923714 + parent: 1 + type: Transform + - uid: 12510 + components: + - rot: 1.5707963267948966 rad + pos: 1.1133705,49.48591 + parent: 1 + type: Transform + - uid: 15805 + components: + - rot: 3.141592653589793 rad + pos: -53.449974,13.604825 + parent: 1 + type: Transform + - uid: 15806 + components: + - rot: 3.141592653589793 rad + pos: -53.449974,13.604825 + parent: 1 + type: Transform + - uid: 15807 + components: + - rot: 3.141592653589793 rad + pos: -53.449974,13.604825 + parent: 1 + type: Transform + - uid: 15808 + components: + - rot: 3.141592653589793 rad + pos: -53.449974,13.604825 + parent: 1 + type: Transform + - uid: 15809 + components: + - rot: 3.141592653589793 rad + pos: -53.449974,13.604825 + parent: 1 + type: Transform + - uid: 22703 + components: + - rot: 3.141592653589793 rad + pos: 37.340588,53.995293 + parent: 1 + type: Transform + - uid: 22704 + components: + - rot: 1.5707963267948966 rad + pos: 35.81975,54.71454 + parent: 1 + type: Transform + - uid: 22705 + components: + - rot: 1.5707963267948966 rad + pos: 36.08017,54.495636 + parent: 1 + type: Transform + - uid: 23500 + components: + - rot: 3.141592653589793 rad + pos: 42.198006,28.423326 + parent: 1 + type: Transform +- proto: SheetPlasma + entities: + - uid: 4664 + components: + - rot: 3.141592653589793 rad + pos: -11.456412,42.57039 + parent: 1 + type: Transform + - uid: 10380 + components: + - pos: 76.478424,-8.364154 + parent: 1 + type: Transform + - uid: 24350 + components: + - pos: -58.47716,-14.288223 + parent: 1 + type: Transform +- proto: SheetPlasteel + entities: + - uid: 2581 + components: + - pos: -47.47022,-2.4439356 + parent: 1 + type: Transform + - uid: 22625 + components: + - pos: 112.5022,10.561641 + parent: 1 + type: Transform +- proto: SheetPlastic + entities: + - uid: 13 + components: + - rot: 1.5707963267948966 rad + pos: 0.52784956,-16.416348 + parent: 1 + type: Transform + - uid: 2538 + components: + - rot: -1.5707963267948966 rad + pos: 4.544836,47.459152 + parent: 1 + type: Transform + - uid: 2582 + components: + - pos: -45.43897,-2.3897307 + parent: 1 + type: Transform + - uid: 6620 + components: + - rot: 3.141592653589793 rad + pos: -42.467487,22.565443 + parent: 1 + type: Transform + - uid: 7352 + components: + - flags: InContainer + type: MetaData + - parent: 7351 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 7671 + components: + - pos: 83.36883,-12.444723 + parent: 1 + type: Transform + - uid: 16605 + components: + - rot: 3.141592653589793 rad + pos: 56.45922,-1.4015429 + parent: 1 + type: Transform +- proto: SheetRPGlass + entities: + - uid: 22624 + components: + - pos: 111.46053,10.551217 + parent: 1 + type: Transform +- proto: SheetSteel + entities: + - uid: 21 + components: + - rot: -1.5707963267948966 rad + pos: 1.5299329,-17.432678 + parent: 1 + type: Transform + - uid: 2577 + components: + - pos: -47.524387,-1.3462977 + parent: 1 + type: Transform + - uid: 2578 + components: + - pos: -47.40251,-1.3734 + parent: 1 + type: Transform + - uid: 6621 + components: + - rot: 3.141592653589793 rad + pos: -41.55082,22.565443 + parent: 1 + type: Transform + - uid: 7354 + components: + - flags: InContainer + type: MetaData + - parent: 7351 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 7669 + components: + - pos: 83.45216,-12.444723 + parent: 1 + type: Transform + - uid: 16604 + components: + - rot: 3.141592653589793 rad + pos: 56.636303,-1.4015429 + parent: 1 + type: Transform + - uid: 21553 + components: + - rot: -1.5707963267948966 rad + pos: 4.524538,47.484116 + parent: 1 + type: Transform +- proto: SheetSteel1 + entities: + - uid: 13214 + components: + - pos: 49.511997,34.609634 + parent: 1 + type: Transform + - uid: 13216 + components: + - pos: 46.220333,35.54779 + parent: 1 + type: Transform + - uid: 13217 + components: + - pos: 46.574497,35.04744 + parent: 1 + type: Transform + - uid: 15888 + components: + - rot: 1.5707963267948966 rad + pos: -25.452076,44.66256 + parent: 1 + type: Transform + - uid: 15911 + components: + - rot: 1.5707963267948966 rad + pos: -25.452076,44.67298 + parent: 1 + type: Transform + - uid: 15912 + components: + - rot: 1.5707963267948966 rad + pos: -25.431242,44.75637 + parent: 1 + type: Transform + - uid: 15913 + components: + - rot: 1.5707963267948966 rad + pos: -25.431242,44.75637 + parent: 1 + type: Transform + - uid: 15941 + components: + - rot: -1.5707963267948966 rad + pos: 11.5977545,52.276855 + parent: 1 + type: Transform + - uid: 22659 + components: + - rot: 3.141592653589793 rad + pos: 93.86097,-14.724785 + parent: 1 + type: Transform + - uid: 22661 + components: + - rot: -1.5707963267948966 rad + pos: 93.57972,-14.995807 + parent: 1 + type: Transform +- proto: ShellTranquilizer + entities: + - uid: 2888 + components: + - flags: InContainer + type: MetaData + - parent: 2884 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: Shinai + entities: + - uid: 9141 + components: + - rot: 3.141592653589793 rad + pos: 29.446661,26.482416 + parent: 1 + type: Transform + - uid: 15276 + components: + - rot: -1.5707963267948966 rad + pos: -22.719162,-18.696447 + parent: 1 + type: Transform + - uid: 15277 + components: + - pos: -22.729578,-18.57136 + parent: 1 + type: Transform + - uid: 16789 + components: + - rot: 3.141592653589793 rad + pos: 29.332079,26.503263 + parent: 1 + type: Transform +- proto: ShockCollar + entities: + - uid: 3797 + components: + - rot: 3.141592653589793 rad + pos: 64.49539,19.696146 + parent: 1 + type: Transform + - links: + - 11599 + type: DeviceLinkSink +- proto: Shovel + entities: + - uid: 1203 + components: + - pos: 3.0156603,17.014688 + parent: 1 + type: Transform + - uid: 6384 + components: + - rot: -1.5707963267948966 rad + pos: -45.525345,4.55153 + parent: 1 + type: Transform + - uid: 21567 + components: + - pos: -15.428805,30.576233 + parent: 1 + type: Transform +- proto: ShuttersFrame + entities: + - uid: 12427 + components: + - pos: -17.5,-7.5 + parent: 1 + type: Transform +- proto: ShuttersNormal + entities: + - uid: 12138 + components: + - pos: -76.5,7.5 + parent: 1 + type: Transform + - links: + - 24563 + type: DeviceLinkSink + - uid: 12139 + components: + - pos: -75.5,7.5 + parent: 1 + type: Transform + - links: + - 24563 + type: DeviceLinkSink + - uid: 12140 + components: + - pos: -74.5,7.5 + parent: 1 + type: Transform + - links: + - 24563 + type: DeviceLinkSink + - uid: 12141 + components: + - pos: -72.5,7.5 + parent: 1 + type: Transform + - links: + - 24563 + type: DeviceLinkSink + - uid: 12142 + components: + - pos: -70.5,7.5 + parent: 1 + type: Transform + - links: + - 24563 + type: DeviceLinkSink + - uid: 12143 + components: + - pos: -71.5,7.5 + parent: 1 + type: Transform + - links: + - 24563 + type: DeviceLinkSink + - uid: 25817 + components: + - pos: -17.5,35.5 + parent: 1 + type: Transform + - links: + - 25820 + type: DeviceLinkSink + - uid: 25818 + components: + - pos: -16.5,35.5 + parent: 1 + type: Transform + - links: + - 25820 + type: DeviceLinkSink + - uid: 25819 + components: + - pos: -15.5,35.5 + parent: 1 + type: Transform + - links: + - 25820 + type: DeviceLinkSink +- proto: ShuttersNormalOpen + entities: + - uid: 2594 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - links: + - 25394 + type: DeviceLinkSink + - uid: 2595 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - links: + - 25394 + type: DeviceLinkSink + - uid: 2596 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform + - links: + - 25394 + type: DeviceLinkSink + - uid: 2597 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - links: + - 25394 + type: DeviceLinkSink + - uid: 2598 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - links: + - 25394 + type: DeviceLinkSink + - uid: 2599 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform + - links: + - 25394 + type: DeviceLinkSink + - uid: 2600 + components: + - pos: 5.5,-1.5 + parent: 1 + type: Transform + - links: + - 25394 + type: DeviceLinkSink + - uid: 2601 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - links: + - 25394 + type: DeviceLinkSink + - uid: 2602 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - links: + - 25394 + type: DeviceLinkSink + - uid: 2603 + components: + - pos: 6.5,-5.5 + parent: 1 + type: Transform + - links: + - 25394 + type: DeviceLinkSink + - uid: 7080 + components: + - pos: -52.5,0.5 + parent: 1 + type: Transform + - links: + - 7084 + type: DeviceLinkSink + - uid: 7081 + components: + - pos: -52.5,-0.5 + parent: 1 + type: Transform + - links: + - 7084 + type: DeviceLinkSink + - uid: 7082 + components: + - pos: -52.5,-1.5 + parent: 1 + type: Transform + - links: + - 7084 + type: DeviceLinkSink + - uid: 7083 + components: + - pos: -52.5,-3.5 + parent: 1 + type: Transform + - links: + - 7084 + type: DeviceLinkSink + - uid: 7590 + components: + - pos: 79.5,-12.5 + parent: 1 + type: Transform + - links: + - 7593 + type: DeviceLinkSink + - uid: 7591 + components: + - pos: 81.5,-12.5 + parent: 1 + type: Transform + - links: + - 7593 + type: DeviceLinkSink + - uid: 7592 + components: + - pos: 80.5,-12.5 + parent: 1 + type: Transform + - links: + - 7593 + type: DeviceLinkSink + - uid: 9300 + components: + - pos: -24.5,1.5 + parent: 1 + type: Transform + - links: + - 22186 + type: DeviceLinkSink + - uid: 22184 + components: + - pos: -23.5,1.5 + parent: 1 + type: Transform + - links: + - 22186 + type: DeviceLinkSink + - uid: 22185 + components: + - pos: -21.5,1.5 + parent: 1 + type: Transform + - links: + - 22186 + type: DeviceLinkSink + - uid: 22439 + components: + - pos: 75.5,16.5 + parent: 1 + type: Transform + - links: + - 22444 + type: DeviceLinkSink + - uid: 22440 + components: + - pos: 75.5,17.5 + parent: 1 + type: Transform + - links: + - 22444 + type: DeviceLinkSink + - uid: 22443 + components: + - pos: 75.5,18.5 + parent: 1 + type: Transform + - links: + - 22444 + type: DeviceLinkSink + - uid: 23828 + components: + - pos: 66.5,6.5 + parent: 1 + type: Transform + - links: + - 4079 + type: DeviceLinkSink + - uid: 23829 + components: + - pos: 67.5,6.5 + parent: 1 + type: Transform + - links: + - 4079 + type: DeviceLinkSink + - uid: 23830 + components: + - pos: 63.5,6.5 + parent: 1 + type: Transform + - links: + - 4079 + type: DeviceLinkSink + - uid: 23831 + components: + - pos: 62.5,6.5 + parent: 1 + type: Transform + - links: + - 4079 + type: DeviceLinkSink +- proto: ShuttersWindow + entities: + - uid: 6670 + components: + - pos: -43.5,-26.5 + parent: 1 + type: Transform + - links: + - 3987 + - 3988 + type: DeviceLinkSink + - uid: 6780 + components: + - pos: -42.5,-26.5 + parent: 1 + type: Transform + - links: + - 3987 + - 3988 + type: DeviceLinkSink + - uid: 12425 + components: + - pos: -17.5,-9.5 + parent: 1 + type: Transform +- proto: ShuttersWindowOpen + entities: + - uid: 12426 + components: + - pos: -17.5,-8.5 + parent: 1 + type: Transform + - uid: 25565 + components: + - pos: 6.5,-4.5 + parent: 1 + type: Transform + - links: + - 25394 + type: DeviceLinkSink + - uid: 25825 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - links: + - 25394 + type: DeviceLinkSink + - uid: 25826 + components: + - pos: -52.5,-2.5 + parent: 1 + type: Transform + - links: + - 7084 + type: DeviceLinkSink +- proto: SignalButton + entities: + - uid: 25827 + components: + - name: exit button + type: MetaData + - pos: 64.5,-5.5 + parent: 1 + type: Transform + - linkedPorts: + 5595: + - Pressed: Open + 5594: + - Pressed: Open + type: DeviceLinkSource +- proto: SignalButtonDirectional + entities: + - uid: 25149 + components: + - pos: 6.5,47.5 + parent: 1 + type: Transform + - linkedPorts: + 25833: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 25799 + components: + - desc: Activate button to alert janitors their service is needed. + name: janitorial service button + type: MetaData + - rot: -1.5707963267948966 rad + pos: 107.5,6.5 + parent: 1 + type: Transform + - linkedPorts: + 25798: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 25800 + components: + - desc: Activate button to alert janitors their service is needed. + name: janitorial service button + type: MetaData + - rot: 1.5707963267948966 rad + pos: 68.5,16.5 + parent: 1 + type: Transform + - linkedPorts: + 25796: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 25801 + components: + - desc: Activate button to alert janitors their service is needed. + name: janitorial service button + type: MetaData + - rot: -1.5707963267948966 rad + pos: 68.5,-4.5 + parent: 1 + type: Transform + - linkedPorts: + 25797: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 25802 + components: + - desc: Activate button to alert janitors their service is needed. + name: janitorial service button + type: MetaData + - rot: 3.141592653589793 rad + pos: 34.5,13.5 + parent: 1 + type: Transform + - linkedPorts: + 25795: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 25803 + components: + - desc: Activate button to alert janitors their service is needed. + name: janitorial service button + type: MetaData + - pos: 4.5,18.5 + parent: 1 + type: Transform + - linkedPorts: + 25793: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 25804 + components: + - desc: Activate button to alert janitors their service is needed. + name: janitorial service button + type: MetaData + - rot: -1.5707963267948966 rad + pos: 4.5,24.5 + parent: 1 + type: Transform + - linkedPorts: + 25793: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 25805 + components: + - desc: Activate button to alert janitors their service is needed. + name: janitorial service button + type: MetaData + - rot: 1.5707963267948966 rad + pos: -12.5,-5.5 + parent: 1 + type: Transform + - linkedPorts: + 25791: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 25806 + components: + - desc: Activate button to alert janitors their service is needed. + name: janitorial service button + type: MetaData + - rot: -1.5707963267948966 rad + pos: -49.5,4.5 + parent: 1 + type: Transform + - linkedPorts: + 25792: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 25828 + components: + - name: exit button + type: MetaData + - rot: 1.5707963267948966 rad + pos: 68.5,-2.5 + parent: 1 + type: Transform + - linkedPorts: + 2495: + - Pressed: Open + type: DeviceLinkSource +- proto: SignalSwitchDirectional + entities: + - uid: 845 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-31.5 + parent: 1 + type: Transform + - linkedPorts: + 922: + - On: Toggle + - Off: Toggle + - Status: Toggle + 960: + - On: Toggle + - Off: Toggle + - Status: Toggle + type: DeviceLinkSource + - uid: 952 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-31.5 + parent: 1 + type: Transform + - linkedPorts: + 891: + - On: Toggle + - Off: Toggle + - Status: Toggle + 961: + - On: Toggle + - Off: Toggle + - Status: Toggle + type: DeviceLinkSource + - uid: 959 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-34.5 + parent: 1 + type: Transform + - linkedPorts: + 921: + - On: Toggle + - Off: Toggle + - Status: Toggle + 892: + - On: Toggle + - Off: Toggle + - Status: Toggle + type: DeviceLinkSource + - uid: 1283 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,46.5 + parent: 1 + type: Transform + - linkedPorts: + 5912: + - Status: Toggle + type: DeviceLinkSource + - uid: 1543 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-34.5 + parent: 1 + type: Transform + - linkedPorts: + 951: + - On: Toggle + - Off: Toggle + - Status: Toggle + 890: + - On: Toggle + - Off: Toggle + - Status: Toggle + type: DeviceLinkSource + - uid: 1879 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,-21.5 + parent: 1 + type: Transform + - linkedPorts: + 1863: + - Status: Toggle + type: DeviceLinkSource + - uid: 1885 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,-24.5 + parent: 1 + type: Transform + - linkedPorts: + 1843: + - Status: Toggle + type: DeviceLinkSource + - uid: 2138 + components: + - pos: 29.5,41.5 + parent: 1 + type: Transform + - linkedPorts: + 5798: + - Status: Toggle + type: DeviceLinkSource + - uid: 2677 + components: + - pos: 76.5,9.5 + parent: 1 + type: Transform + - linkedPorts: + 25186: + - Status: Toggle + type: DeviceLinkSource + - uid: 3194 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,-31.5 + parent: 1 + type: Transform + - linkedPorts: + 16134: + - On: Toggle + - Off: Toggle + - Status: Toggle + 16133: + - On: Toggle + - Off: Toggle + - Status: Toggle + type: DeviceLinkSource + - uid: 3766 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,42.5 + parent: 1 + type: Transform + - linkedPorts: + 1281: + - Status: Toggle + type: DeviceLinkSource + - uid: 3876 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,41.5 + parent: 1 + type: Transform + - linkedPorts: + 484: + - On: Toggle + - Off: Toggle + - Status: Toggle + type: DeviceLinkSource + - uid: 3987 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-26.5 + parent: 1 + type: Transform + - linkedPorts: + 6780: + - On: Toggle + - Off: Toggle + - Status: Toggle + 6670: + - On: Toggle + - Off: Toggle + - Status: Toggle + type: DeviceLinkSource + - uid: 3988 + components: + - pos: -40.5,-26.5 + parent: 1 + type: Transform + - linkedPorts: + 6780: + - On: Toggle + - Off: Toggle + - Status: Toggle + 6670: + - On: Toggle + - Off: Toggle + - Status: Toggle + type: DeviceLinkSource + - uid: 4079 + components: + - rot: 3.141592653589793 rad + pos: 68.5,9.5 + parent: 1 + type: Transform + - linkedPorts: + 23826: + - On: Toggle + - Off: Toggle + - Status: Toggle + 23827: + - On: Toggle + - Off: Toggle + - Status: Toggle + 23829: + - On: Toggle + - Off: Toggle + - Status: Toggle + 23828: + - On: Toggle + - Off: Toggle + - Status: Toggle + 23824: + - On: Toggle + - Off: Toggle + - Status: Toggle + 23825: + - On: Toggle + - Off: Toggle + - Status: Toggle + 23830: + - On: Toggle + - Off: Toggle + - Status: Toggle + 23831: + - On: Toggle + - Off: Toggle + - Status: Toggle + type: DeviceLinkSource + - uid: 4723 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,41.5 + parent: 1 + type: Transform + - linkedPorts: + 483: + - On: Toggle + - Off: Toggle + - Status: Toggle + type: DeviceLinkSource + - uid: 5497 + components: + - rot: -1.5707963267948966 rad + pos: 75.5,7.5 + parent: 1 + type: Transform + - linkedPorts: + 5521: + - On: Toggle + - Off: Toggle + - Status: Toggle + 5520: + - On: Toggle + - Off: Toggle + - Status: Toggle + 4112: + - On: Toggle + - Off: Toggle + - Status: Toggle + 3455: + - On: Toggle + - Off: Toggle + - Status: Toggle + type: DeviceLinkSource + - uid: 6445 + components: + - pos: -67.5,29.5 + parent: 1 + type: Transform + - linkedPorts: + 6441: + - On: Open + - Off: Close + type: DeviceLinkSource + - uid: 7084 + components: + - pos: -54.5,1.5 + parent: 1 + type: Transform + - linkedPorts: + 7080: + - On: Toggle + - Off: Toggle + - Status: Toggle + 7081: + - On: Toggle + - Off: Toggle + - Status: Toggle + 7082: + - On: Toggle + - Off: Toggle + - Status: Toggle + 7083: + - On: Toggle + - Off: Toggle + - Status: Toggle + 25826: + - On: Toggle + - Off: Toggle + - Status: Toggle + type: DeviceLinkSource + - uid: 7593 + components: + - rot: 1.5707963267948966 rad + pos: 78.5,-7.5 + parent: 1 + type: Transform + - linkedPorts: + 7592: + - On: Toggle + - Off: Toggle + - Status: Toggle + 7590: + - On: Toggle + - Off: Toggle + - Status: Toggle + 7591: + - On: Toggle + - Off: Toggle + - Status: Toggle + type: DeviceLinkSource + - uid: 9086 + components: + - pos: 87.5,14.5 + parent: 1 + type: Transform + - linkedPorts: + 7116: + - Status: Toggle + type: DeviceLinkSource + - uid: 9227 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,49.5 + parent: 1 + type: Transform + - linkedPorts: + 12067: + - Status: Toggle + type: DeviceLinkSource + - uid: 9311 + components: + - rot: 1.5707963267948966 rad + pos: 88.5,14.5 + parent: 1 + type: Transform + - linkedPorts: + 6807: + - Status: Toggle + type: DeviceLinkSource + - uid: 10330 + components: + - pos: 78.5,6.5 + parent: 1 + type: Transform + - linkedPorts: + 5521: + - On: Toggle + - Off: Toggle + - Status: Toggle + 5520: + - On: Toggle + - Off: Toggle + - Status: Toggle + 4112: + - On: Toggle + - Off: Toggle + - Status: Toggle + 3455: + - On: Toggle + - Off: Toggle + - Status: Toggle + type: DeviceLinkSource + - uid: 10341 + components: + - rot: 3.141592653589793 rad + pos: 66.5,-18.5 + parent: 1 + type: Transform + - linkedPorts: + 3485: + - Status: Toggle + type: DeviceLinkSource + - uid: 14461 + components: + - rot: 3.141592653589793 rad + pos: 36.5,13.5 + parent: 1 + type: Transform + - linkedPorts: + 14460: + - Status: Toggle + type: DeviceLinkSource + - uid: 14462 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,21.5 + parent: 1 + type: Transform + - linkedPorts: + 14416: + - Status: Toggle + type: DeviceLinkSource + - uid: 14463 + components: + - pos: 16.5,18.5 + parent: 1 + type: Transform + - linkedPorts: + 911: + - Status: Toggle + type: DeviceLinkSource + - uid: 14464 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,23.5 + parent: 1 + type: Transform + - linkedPorts: + 14401: + - Status: Toggle + type: DeviceLinkSource + - uid: 14465 + components: + - rot: 3.141592653589793 rad + pos: -3.5,22.5 + parent: 1 + type: Transform + - linkedPorts: + 14400: + - Status: Toggle + type: DeviceLinkSource + - uid: 15165 + components: + - pos: 28.5,-31.5 + parent: 1 + type: Transform + - linkedPorts: + 14489: + - Status: Toggle + type: DeviceLinkSource + - uid: 15166 + components: + - pos: 32.5,-31.5 + parent: 1 + type: Transform + - linkedPorts: + 15162: + - Status: Toggle + type: DeviceLinkSource + - uid: 15244 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-37.5 + parent: 1 + type: Transform + - linkedPorts: + 15243: + - Status: Toggle + type: DeviceLinkSource + - uid: 15245 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-35.5 + parent: 1 + type: Transform + - linkedPorts: + 15242: + - Status: Toggle + type: DeviceLinkSource + - uid: 15246 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-40.5 + parent: 1 + type: Transform + - linkedPorts: + 15249: + - Status: Toggle + type: DeviceLinkSource + - uid: 15247 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-34.5 + parent: 1 + type: Transform + - linkedPorts: + 11380: + - Status: Toggle + type: DeviceLinkSource + - uid: 15248 + components: + - pos: 1.5,-34.5 + parent: 1 + type: Transform + - linkedPorts: + 15169: + - Status: Toggle + type: DeviceLinkSource + - uid: 15346 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-38.5 + parent: 1 + type: Transform + - linkedPorts: + 14487: + - Status: Toggle + type: DeviceLinkSource + - uid: 15347 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-36.5 + parent: 1 + type: Transform + - linkedPorts: + 13790: + - Status: Toggle + type: DeviceLinkSource + - uid: 15955 + components: + - pos: 82.5,-5.5 + parent: 1 + type: Transform + - linkedPorts: + 17157: + - Status: Toggle + 17156: + - Status: Toggle + type: DeviceLinkSource + - uid: 15958 + components: + - rot: -1.5707963267948966 rad + pos: 79.5,17.5 + parent: 1 + type: Transform + - linkedPorts: + 6236: + - Status: Toggle + type: DeviceLinkSource + - uid: 16219 + components: + - rot: 3.141592653589793 rad + pos: 55.5,-31.5 + parent: 1 + type: Transform + - linkedPorts: + 16216: + - Status: Toggle + - On: Toggle + - Off: Toggle + 16215: + - On: Toggle + - Off: Toggle + - Status: Toggle + type: DeviceLinkSource + - uid: 16969 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-15.5 + parent: 1 + type: Transform + - linkedPorts: + 16967: + - Status: Toggle + type: DeviceLinkSource + - uid: 16985 + components: + - pos: 16.5,6.5 + parent: 1 + type: Transform + - linkedPorts: + 16986: + - Status: Toggle + type: DeviceLinkSource + - uid: 17035 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,48.5 + parent: 1 + type: Transform + - linkedPorts: + 17036: + - Status: Toggle + type: DeviceLinkSource + - uid: 17074 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,18.5 + parent: 1 + type: Transform + - linkedPorts: + 17073: + - Status: Toggle + type: DeviceLinkSource + - uid: 17095 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,14.5 + parent: 1 + type: Transform + - linkedPorts: + 17093: + - Status: Toggle + type: DeviceLinkSource + - uid: 17096 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,14.5 + parent: 1 + type: Transform + - linkedPorts: + 17094: + - Status: Toggle + type: DeviceLinkSource + - uid: 17114 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,-1.5 + parent: 1 + type: Transform + - linkedPorts: + 17115: + - Status: Toggle + type: DeviceLinkSource + - uid: 17178 + components: + - name: lights out + type: MetaData + - rot: 1.5707963267948966 rad + pos: 68.5,25.5 + parent: 1 + type: Transform + - linkedPorts: + 17176: + - Status: Toggle + 17174: + - Status: Toggle + 17173: + - Status: Toggle + 17175: + - Status: Toggle + 17177: + - Status: Toggle + type: DeviceLinkSource + - uid: 17200 + components: + - pos: 106.5,-0.5 + parent: 1 + type: Transform + - linkedPorts: + 17199: + - Status: Toggle + type: DeviceLinkSource + - uid: 17310 + components: + - rot: 3.141592653589793 rad + pos: 80.5,-5.5 + parent: 1 + type: Transform + - linkedPorts: + 17309: + - Status: Toggle + type: DeviceLinkSource + - uid: 22186 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-2.5 + parent: 1 + type: Transform + - linkedPorts: + 9300: + - On: Open + - Off: Close + 22184: + - On: Open + - Off: Close + 22185: + - On: Open + - Off: Close + type: DeviceLinkSource + - uid: 22444 + components: + - pos: 76.5,19.5 + parent: 1 + type: Transform + - linkedPorts: + 22443: + - On: Toggle + - Off: Toggle + - Status: Toggle + 22440: + - On: Toggle + - Off: Toggle + - Status: Toggle + 22439: + - On: Toggle + - Off: Toggle + - Status: Toggle + type: DeviceLinkSource + - uid: 24563 + components: + - pos: -73.5,7.5 + parent: 1 + type: Transform + - linkedPorts: + 12138: + - On: Toggle + - Off: Toggle + - Status: Toggle + 12139: + - On: Toggle + - Off: Toggle + - Status: Toggle + 12140: + - On: Toggle + - Off: Toggle + - Status: Toggle + 12141: + - On: Toggle + - Off: Toggle + - Status: Toggle + 12143: + - On: Toggle + - Off: Toggle + - Status: Toggle + 12142: + - On: Toggle + - Off: Toggle + - Status: Toggle + type: DeviceLinkSource + - uid: 25250 + components: + - rot: -1.5707963267948966 rad + pos: 111.5,26.5 + parent: 1 + type: Transform + - linkedPorts: + 25216: + - On: Toggle + - Off: Toggle + - Status: Toggle + type: DeviceLinkSource + - uid: 25251 + components: + - pos: 112.5,28.5 + parent: 1 + type: Transform + - linkedPorts: + 25216: + - On: Toggle + - Status: Toggle + - Off: Toggle + type: DeviceLinkSource + - uid: 25315 + components: + - pos: -2.5,44.5 + parent: 1 + type: Transform + - linkedPorts: + 4535: + - On: Toggle + - Off: Toggle + - Status: Toggle + type: DeviceLinkSource + - uid: 25550 + components: + - pos: 27.5,51.5 + parent: 1 + type: Transform + - linkedPorts: + 13561: + - On: Toggle + - Off: Toggle + - Status: Toggle + 1996: + - On: Toggle + - Off: Toggle + - Status: Toggle + type: DeviceLinkSource + - uid: 25665 + components: + - pos: -49.5,-37.5 + parent: 1 + type: Transform + - linkedPorts: + 7477: + - On: Forward + - Off: Off + 5857: + - On: Forward + - Off: Off + 5890: + - On: Toggle + - Off: Toggle + - Status: Toggle + 8477: + - On: Forward + - Off: Off + 5830: + - On: Toggle + - Off: Toggle + - Status: Toggle + 5856: + - On: Forward + - Off: Off + 5855: + - On: Forward + - Off: Off + 8475: + - On: Forward + - Off: Off + 7707: + - On: Forward + - Off: Off + 5845: + - On: Forward + - Off: Off + 7706: + - On: Forward + - Off: Off + type: DeviceLinkSource + - uid: 25666 + components: + - pos: -44.5,-43.5 + parent: 1 + type: Transform + - linkedPorts: + 3985: + - On: Forward + - Off: Off + 5059: + - On: Forward + - Off: Off + 5874: + - On: Forward + - Off: Off + 25600: + - On: Forward + - Off: Off + 5840: + - On: Forward + - Off: Off + 25590: + - On: Forward + - Off: Off + type: DeviceLinkSource + - uid: 25667 + components: + - pos: -40.5,-35.5 + parent: 1 + type: Transform + - linkedPorts: + 25607: + - On: Forward + - Off: Off + 10723: + - On: Forward + - Off: Off + 12000: + - On: Forward + - Off: Off + 10801: + - On: Forward + - Off: Off + 7172: + - On: Forward + - Off: Off + 7449: + - On: Forward + - Off: Off + 6787: + - On: Forward + - Off: Off + 5679: + - On: Forward + - Off: Off + 6840: + - On: Forward + - Off: Off + 25601: + - On: Forward + - Off: Off + 5908: + - On: Forward + - Off: Off + 6661: + - On: Forward + - Off: Off + 5894: + - On: Forward + - Off: Off + 5893: + - On: Forward + - Off: Off + 6648: + - On: Forward + - Off: Off + 10800: + - On: Forward + - Off: Off + 10803: + - On: Forward + - Off: Off + 25608: + - On: Forward + - Off: Off + type: DeviceLinkSource + - uid: 25668 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-31.5 + parent: 1 + type: Transform + - linkedPorts: + 6840: + - On: Forward + - Off: Off + 25601: + - On: Forward + - Off: Off + 5908: + - On: Forward + - Off: Off + 6661: + - On: Forward + - Off: Off + 5894: + - On: Forward + - Off: Off + 5893: + - On: Forward + - Off: Off + 6648: + - On: Forward + - Off: Off + 10800: + - On: Forward + - Off: Off + 10803: + - On: Forward + - Off: Off + 25608: + - On: Forward + - Off: Off + 25607: + - On: Forward + - Off: Off + 10723: + - On: Forward + - Off: Off + 12000: + - On: Forward + - Off: Off + 10801: + - On: Forward + - Off: Off + 7172: + - On: Forward + - Off: Off + 7449: + - On: Forward + - Off: Off + 6787: + - On: Forward + - Off: Off + 5679: + - On: Forward + - Off: Off + type: DeviceLinkSource + - uid: 25811 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 1 + type: Transform + - linkedPorts: + 16958: + - Status: Toggle + type: DeviceLinkSource + - uid: 25812 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-23.5 + parent: 1 + type: Transform + - linkedPorts: + 17136: + - Status: Toggle + type: DeviceLinkSource + - uid: 25813 + components: + - pos: 78.5,13.5 + parent: 1 + type: Transform + - linkedPorts: + 17166: + - Status: Toggle + type: DeviceLinkSource + - uid: 25815 + components: + - rot: 1.5707963267948966 rad + pos: 58.5,21.5 + parent: 1 + type: Transform + - linkedPorts: + 17313: + - Status: Toggle + type: DeviceLinkSource + - uid: 25820 + components: + - pos: -18.5,35.5 + parent: 1 + type: Transform + - linkedPorts: + 25817: + - On: Toggle + - Off: Toggle + - Status: Toggle + 25818: + - On: Toggle + - Off: Toggle + - Status: Toggle + 25819: + - On: Toggle + - Off: Toggle + - Status: Toggle + type: DeviceLinkSource +- proto: SignAnomaly2 + entities: + - uid: 4722 + components: + - pos: -6.5,41.5 + parent: 1 + type: Transform +- proto: SignArmory + entities: + - uid: 4901 + components: + - pos: 82.5,18.5 + parent: 1 + type: Transform +- proto: SignAtmos + entities: + - uid: 6419 + components: + - pos: -52.5,21.5 + parent: 1 + type: Transform +- proto: SignAtmosMinsky + entities: + - uid: 2479 + components: + - pos: -48.5,21.5 + parent: 1 + type: Transform +- proto: SignBlankMed + entities: + - uid: 15751 + components: + - pos: -42.5,-3.5 + parent: 1 + type: Transform +- proto: SignBridge + entities: + - uid: 7059 + components: + - pos: 96.5,8.5 + parent: 1 + type: Transform +- proto: SignCanisters + entities: + - uid: 23419 + components: + - pos: -58.5,26.5 + parent: 1 + type: Transform +- proto: SignCargo + entities: + - uid: 2047 + components: + - pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 2048 + components: + - pos: -11.5,1.5 + parent: 1 + type: Transform +- proto: SignChemistry1 + entities: + - uid: 5774 + components: + - pos: 73.5,-13.5 + parent: 1 + type: Transform +- proto: SignChemistry2 + entities: + - uid: 5775 + components: + - pos: 68.5,-13.5 + parent: 1 + type: Transform +- proto: SignCloning + entities: + - uid: 5636 + components: + - pos: 68.5,-9.5 + parent: 1 + type: Transform +- proto: SignConspiracyBoard + entities: + - uid: 7205 + components: + - pos: 60.5,23.5 + parent: 1 + type: Transform +- proto: SignCourt + entities: + - uid: 26 + components: + - pos: 93.5,6.5 + parent: 1 + type: Transform +- proto: SignDirectionalBar + entities: + - uid: 916 + components: + - rot: 3.141592653589793 rad + pos: 36.49841,5.6013875 + parent: 1 + type: Transform + - uid: 22518 + components: + - rot: 3.141592653589793 rad + pos: 9.518294,-1.2439593 + parent: 1 + type: Transform + - uid: 24294 + components: + - rot: 3.141592653589793 rad + pos: 1.4869667,6.7236543 + parent: 1 + type: Transform + - uid: 24296 + components: + - rot: 1.5707963267948966 rad + pos: 5.4986377,13.474565 + parent: 1 + type: Transform +- proto: SignDirectionalBridge + entities: + - uid: 3804 + components: + - rot: 1.5707963267948966 rad + pos: 90.5,10.5 + parent: 1 + type: Transform + - uid: 16826 + components: + - rot: 1.5707963267948966 rad + pos: 14.519942,-1.18925 + parent: 1 + type: Transform + - uid: 16838 + components: + - rot: 1.5707963267948966 rad + pos: 40.511135,6.8566136 + parent: 1 + type: Transform + - uid: 16845 + components: + - rot: 1.5707963267948966 rad + pos: 71.5,6.5 + parent: 1 + type: Transform + - uid: 16851 + components: + - rot: 1.5707963267948966 rad + pos: 17.534399,13.802422 + parent: 1 + type: Transform +- proto: SignDirectionalChemistry + entities: + - uid: 14415 + components: + - rot: -1.5707963267948966 rad + pos: -6.822244,20.407187 + parent: 1 + type: Transform +- proto: SignDirectionalDorms + entities: + - uid: 918 + components: + - pos: 9.523503,-1.8902416 + parent: 1 + type: Transform + - uid: 1236 + components: + - pos: 36.4932,5.1792192 + parent: 1 + type: Transform + - uid: 10069 + components: + - rot: -1.5707963267948966 rad + pos: 5.4893227,-37.265564 + parent: 1 + type: Transform + - uid: 10081 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-36.5 + parent: 1 + type: Transform + - uid: 16832 + components: + - pos: 14.510866,15.604276 + parent: 1 + type: Transform +- proto: SignDirectionalEng + entities: + - uid: 9142 + components: + - rot: -1.5707963267948966 rad + pos: 5.509887,5.7708597 + parent: 1 + type: Transform + - uid: 15250 + components: + - rot: -1.5707963267948966 rad + pos: -6.42474,6.652866 + parent: 1 + type: Transform + - uid: 16854 + components: + - rot: -1.5707963267948966 rad + pos: 9.471456,13.810013 + parent: 1 + type: Transform +- proto: SignDirectionalEvac + entities: + - uid: 9247 + components: + - pos: 5.5,-28.5 + parent: 1 + type: Transform + - uid: 9416 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-45.5 + parent: 1 + type: Transform + - uid: 10080 + components: + - pos: 5.484114,-37.640823 + parent: 1 + type: Transform + - uid: 16829 + components: + - pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 16848 + components: + - pos: 36.499573,2.4343407 + parent: 1 + type: Transform + - uid: 16849 + components: + - pos: 14.5,9.5 + parent: 1 + type: Transform + - uid: 16850 + components: + - pos: 9.5,9.5 + parent: 1 + type: Transform + - uid: 16863 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 16864 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,6.5 + parent: 1 + type: Transform + - uid: 16865 + components: + - pos: 14.509374,15.262538 + parent: 1 + type: Transform + - uid: 24297 + components: + - pos: 18.5,-28.5 + parent: 1 + type: Transform +- proto: SignDirectionalFood + entities: + - uid: 1213 + components: + - rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 1235 + components: + - rot: 3.141592653589793 rad + pos: 36.49841,5.382486 + parent: 1 + type: Transform + - uid: 16858 + components: + - rot: 3.141592653589793 rad + pos: 9.518294,-1.4628615 + parent: 1 + type: Transform + - uid: 24292 + components: + - rot: 3.141592653589793 rad + pos: 9.498883,14.703264 + parent: 1 + type: Transform +- proto: SignDirectionalHop + entities: + - uid: 16844 + components: + - pos: 36.509987,2.7783298 + parent: 1 + type: Transform +- proto: SignDirectionalHydro + entities: + - uid: 917 + components: + - rot: 3.141592653589793 rad + pos: 9.518294,-1.6765513 + parent: 1 + type: Transform + - uid: 24293 + components: + - rot: -1.5707963267948966 rad + pos: 9.467633,13.147432 + parent: 1 + type: Transform + - uid: 24295 + components: + - rot: 3.141592653589793 rad + pos: 1.4973834,6.254578 + parent: 1 + type: Transform +- proto: SignDirectionalJanitor + entities: + - uid: 1175 + components: + - rot: -1.5707963267948966 rad + pos: 9.492764,14.245799 + parent: 1 + type: Transform + - uid: 16843 + components: + - rot: -1.5707963267948966 rad + pos: 5.515095,5.1193657 + parent: 1 + type: Transform +- proto: SignDirectionalMed + entities: + - uid: 16828 + components: + - rot: 1.5707963267948966 rad + pos: 14.519942,-1.7208693 + parent: 1 + type: Transform + - uid: 16840 + components: + - rot: 1.5707963267948966 rad + pos: 40.505928,6.2937226 + parent: 1 + type: Transform + - uid: 16853 + components: + - rot: 1.5707963267948966 rad + pos: 17.539606,13.307286 + parent: 1 + type: Transform +- proto: SignDirectionalSalvage + entities: + - uid: 1549 + components: + - pos: -25.5,1.5 + parent: 1 + type: Transform + - uid: 15205 + components: + - rot: -1.5707963267948966 rad + pos: -6.42474,6.3714204 + parent: 1 + type: Transform + - uid: 16765 + components: + - rot: -1.5707963267948966 rad + pos: 5.509887,5.546746 + parent: 1 + type: Transform + - uid: 16855 + components: + - rot: -1.5707963267948966 rad + pos: 9.466248,13.585899 + parent: 1 + type: Transform + - uid: 20811 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-8.5 + parent: 1 + type: Transform + - uid: 22071 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-13.5 + parent: 1 + type: Transform + - uid: 22087 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-11.5 + parent: 1 + type: Transform + - uid: 25326 + components: + - pos: -39.5,-22.5 + parent: 1 + type: Transform + - uid: 25619 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-21.5 + parent: 1 + type: Transform +- proto: SignDirectionalSci + entities: + - uid: 16835 + components: + - rot: 3.141592653589793 rad + pos: 36.49867,5.808786 + parent: 1 + type: Transform + - uid: 16859 + components: + - rot: 3.141592653589793 rad + pos: 9.487533,14.4693365 + parent: 1 + type: Transform +- proto: SignDirectionalSec + entities: + - uid: 16827 + components: + - rot: 1.5707963267948966 rad + pos: 14.514734,-1.4498477 + parent: 1 + type: Transform + - uid: 16839 + components: + - rot: 1.5707963267948966 rad + pos: 40.511135,6.575168 + parent: 1 + type: Transform + - uid: 16852 + components: + - rot: 1.5707963267948966 rad + pos: 17.539606,13.55746 + parent: 1 + type: Transform +- proto: SignDirectionalSolar + entities: + - uid: 11995 + components: + - rot: 3.141592653589793 rad + pos: -27.5,6.5 + parent: 1 + type: Transform + - uid: 16860 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,39.5 + parent: 1 + type: Transform +- proto: SignDirectionalSupply + entities: + - uid: 16842 + components: + - rot: -1.5707963267948966 rad + pos: 5.5046787,5.322632 + parent: 1 + type: Transform + - uid: 16856 + components: + - rot: -1.5707963267948966 rad + pos: 9.466248,13.361785 + parent: 1 + type: Transform +- proto: SignDirectionalWash + entities: + - uid: 2963 + components: + - rot: 3.141592653589793 rad + pos: 31.5,21.5 + parent: 1 + type: Transform + - uid: 9515 + components: + - rot: 3.141592653589793 rad + pos: 32.5,5.5 + parent: 1 + type: Transform +- proto: SignDrones + entities: + - uid: 24778 + components: + - pos: -62.5,9.5 + parent: 1 + type: Transform +- proto: SignElectricalMed + entities: + - uid: 13192 + components: + - pos: 61.5,24.5 + parent: 1 + type: Transform + - uid: 13193 + components: + - pos: 61.5,28.5 + parent: 1 + type: Transform +- proto: SignEngine + entities: + - uid: 5927 + components: + - pos: -49.5,-13.5 + parent: 1 + type: Transform +- proto: SignEngineering + entities: + - uid: 5928 + components: + - pos: -34.5,6.5 + parent: 1 + type: Transform + - uid: 5929 + components: + - pos: -34.5,1.5 + parent: 1 + type: Transform +- proto: SignEscapePods + entities: + - uid: 11607 + components: + - pos: 63.5,-21.5 + parent: 1 + type: Transform + - uid: 11608 + components: + - pos: 74.5,-21.5 + parent: 1 + type: Transform + - uid: 23791 + components: + - rot: 3.141592653589793 rad + pos: 10.5,55.5 + parent: 1 + type: Transform + - uid: 23792 + components: + - rot: 3.141592653589793 rad + pos: 34.5,55.5 + parent: 1 + type: Transform + - uid: 23793 + components: + - rot: 3.141592653589793 rad + pos: -10.5,55.5 + parent: 1 + type: Transform +- proto: SignEVA + entities: + - uid: 16887 + components: + - pos: 14.5,-14.5 + parent: 1 + type: Transform + - uid: 16888 + components: + - pos: 14.5,-19.5 + parent: 1 + type: Transform +- proto: SignExamroom + entities: + - uid: 5554 + components: + - pos: 62.5,-6.5 + parent: 1 + type: Transform +- proto: SignExplosives + entities: + - uid: 25217 + components: + - pos: 109.5,29.5 + parent: 1 + type: Transform +- proto: SignGravity + entities: + - uid: 12003 + components: + - pos: -52.5,10.5 + parent: 1 + type: Transform +- proto: SignHead + entities: + - uid: 16847 + components: + - rot: 1.5707963267948966 rad + pos: 103.5,5.5 + parent: 1 + type: Transform +- proto: SignHydro1 + entities: + - uid: 14410 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,13.5 + parent: 1 + type: Transform +- proto: SignHydro2 + entities: + - uid: 1231 + components: + - pos: -5.5,22.5 + parent: 1 + type: Transform +- proto: SignHydro3 + entities: + - uid: 1230 + components: + - pos: 3.5,18.5 + parent: 1 + type: Transform +- proto: SignInterrogation + entities: + - uid: 4916 + components: + - pos: 68.5,22.5 + parent: 1 + type: Transform +- proto: SignJanitor + entities: + - uid: 21586 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,6.5 + parent: 1 + type: Transform + - uid: 21587 + components: + - rot: -1.5707963267948966 rad + pos: 54.5,6.5 + parent: 1 + type: Transform +- proto: SignLawyer + entities: + - uid: 25717 + components: + - pos: 45.5,6.5 + parent: 1 + type: Transform +- proto: SignLibrary + entities: + - uid: 3968 + components: + - pos: 30.5,-5.5 + parent: 1 + type: Transform +- proto: SignMail + entities: + - uid: 2069 + components: + - pos: -13.5,1.5 + parent: 1 + type: Transform +- proto: SignMedical + entities: + - uid: 5603 + components: + - pos: 71.5,1.5 + parent: 1 + type: Transform + - uid: 5689 + components: + - pos: 61.5,1.5 + parent: 1 + type: Transform +- proto: SignMorgue + entities: + - uid: 5553 + components: + - pos: 64.5,-14.5 + parent: 1 + type: Transform +- proto: SignNanotrasen1 + entities: + - uid: 2616 + components: + - rot: 3.141592653589793 rad + pos: 42.5,1.5 + parent: 1 + type: Transform +- proto: SignNanotrasen2 + entities: + - uid: 2617 + components: + - rot: 3.141592653589793 rad + pos: 43.5,1.5 + parent: 1 + type: Transform +- proto: SignNanotrasen3 + entities: + - uid: 2618 + components: + - rot: 3.141592653589793 rad + pos: 44.5,1.5 + parent: 1 + type: Transform +- proto: SignNanotrasen4 + entities: + - uid: 2619 + components: + - rot: 3.141592653589793 rad + pos: 45.5,1.5 + parent: 1 + type: Transform +- proto: SignNanotrasen5 + entities: + - uid: 2620 + components: + - rot: 3.141592653589793 rad + pos: 46.5,1.5 + parent: 1 + type: Transform +- proto: SignPrison + entities: + - uid: 5537 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,23.5 + parent: 1 + type: Transform +- proto: SignPsychology + entities: + - uid: 12581 + components: + - rot: 1.5707963267948966 rad + pos: 71.5,-1.5 + parent: 1 + type: Transform +- proto: SignRadiation + entities: + - uid: 24567 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,21.5 + parent: 1 + type: Transform + - uid: 24569 + components: + - rot: -1.5707963267948966 rad + pos: -101.5,4.5 + parent: 1 + type: Transform + - uid: 24571 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,-12.5 + parent: 1 + type: Transform + - uid: 24642 + components: + - rot: -1.5707963267948966 rad + pos: -69.5,6.5 + parent: 1 + type: Transform + - uid: 24643 + components: + - rot: -1.5707963267948966 rad + pos: -69.5,1.5 + parent: 1 + type: Transform +- proto: SignRedOne + entities: + - uid: 16719 + components: + - pos: 65.469,15.24925 + parent: 1 + type: Transform +- proto: SignRedTwo + entities: + - uid: 16720 + components: + - pos: 68.469,15.24925 + parent: 1 + type: Transform +- proto: SignRobo + entities: + - uid: 5786 + components: + - pos: 26.5,47.5 + parent: 1 + type: Transform +- proto: SignScience1 + entities: + - uid: 4742 + components: + - pos: 9.5,35.5 + parent: 1 + type: Transform +- proto: SignScience2 + entities: + - uid: 4743 + components: + - pos: 14.5,35.5 + parent: 1 + type: Transform +- proto: SignSec + entities: + - uid: 801 + components: + - pos: 14.5,-36.5 + parent: 1 + type: Transform + - uid: 962 + components: + - pos: 9.5,-36.5 + parent: 1 + type: Transform + - uid: 4048 + components: + - pos: 61.5,6.5 + parent: 1 + type: Transform + - uid: 4057 + components: + - pos: 68.5,6.5 + parent: 1 + type: Transform +- proto: SignSecurity + entities: + - uid: 1496 + components: + - pos: 14.5,-28.5 + parent: 1 + type: Transform + - uid: 1539 + components: + - pos: 9.5,-28.5 + parent: 1 + type: Transform + - uid: 7127 + components: + - pos: 75.5,6.5 + parent: 1 + type: Transform + - uid: 15829 + components: + - pos: -19.5,1.5 + parent: 1 + type: Transform +- proto: SignShock + entities: + - uid: 24529 + components: + - pos: -97.5,21.5 + parent: 1 + type: Transform + - uid: 24564 + components: + - pos: -75.5,17.5 + parent: 1 + type: Transform + - uid: 24565 + components: + - pos: -79.5,21.5 + parent: 1 + type: Transform + - uid: 24566 + components: + - pos: -101.5,17.5 + parent: 1 + type: Transform + - uid: 24568 + components: + - pos: -101.5,-8.5 + parent: 1 + type: Transform + - uid: 24570 + components: + - pos: -97.5,-12.5 + parent: 1 + type: Transform + - uid: 24572 + components: + - pos: -79.5,-12.5 + parent: 1 + type: Transform + - uid: 24574 + components: + - pos: -75.5,-8.5 + parent: 1 + type: Transform +- proto: SignSpace + entities: + - uid: 7002 + components: + - pos: 53.5,1.5 + parent: 1 + type: Transform + - uid: 7006 + components: + - pos: 53.5,6.5 + parent: 1 + type: Transform + - uid: 11143 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,8.5 + parent: 1 + type: Transform + - uid: 11144 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-0.5 + parent: 1 + type: Transform + - uid: 11145 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,-9.5 + parent: 1 + type: Transform + - uid: 11146 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-21.5 + parent: 1 + type: Transform + - uid: 11147 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-30.5 + parent: 1 + type: Transform + - uid: 11148 + components: + - pos: -65.5,6.5 + parent: 1 + type: Transform + - uid: 11149 + components: + - pos: -65.5,1.5 + parent: 1 + type: Transform + - uid: 11150 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,17.5 + parent: 1 + type: Transform + - uid: 11151 + components: + - rot: 3.141592653589793 rad + pos: -61.5,27.5 + parent: 1 + type: Transform + - uid: 11152 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,29.5 + parent: 1 + type: Transform + - uid: 11153 + components: + - pos: -32.5,23.5 + parent: 1 + type: Transform + - uid: 11154 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,39.5 + parent: 1 + type: Transform + - uid: 11155 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,31.5 + parent: 1 + type: Transform + - uid: 11156 + components: + - pos: 5.5,31.5 + parent: 1 + type: Transform + - uid: 11157 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,29.5 + parent: 1 + type: Transform + - uid: 11158 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,31.5 + parent: 1 + type: Transform + - uid: 11159 + components: + - rot: 1.5707963267948966 rad + pos: 102.5,15.5 + parent: 1 + type: Transform + - uid: 11162 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-22.5 + parent: 1 + type: Transform + - uid: 11163 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-24.5 + parent: 1 + type: Transform + - uid: 11164 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-24.5 + parent: 1 + type: Transform + - uid: 11165 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,-23.5 + parent: 1 + type: Transform + - uid: 11166 + components: + - rot: 1.5707963267948966 rad + pos: 100.5,-8.5 + parent: 1 + type: Transform +- proto: SignSurgery + entities: + - uid: 5555 + components: + - pos: 83.5,-10.5 + parent: 1 + type: Transform +- proto: SignTelecomms + entities: + - uid: 6588 + components: + - pos: -60.5,6.5 + parent: 1 + type: Transform +- proto: SignVirology + entities: + - uid: 7433 + components: + - pos: 87.5,-10.5 + parent: 1 + type: Transform +- proto: SilverDoor + entities: + - uid: 9165 + components: + - pos: 1.5,-50.5 + parent: 1 + type: Transform + - uid: 9166 + components: + - pos: 8.5,-50.5 + parent: 1 + type: Transform +- proto: SilverOre1 + entities: + - uid: 6367 + components: + - pos: -38.380947,9.580597 + parent: 1 + type: Transform + - uid: 6368 + components: + - pos: -38.24553,9.789075 + parent: 1 + type: Transform +- proto: SingularityGenerator + entities: + - uid: 24354 + components: + - pos: -87.5,4.5 + parent: 1 + type: Transform +- proto: Sink + entities: + - uid: 908 + components: + - pos: 7.5,25.5 + parent: 1 + type: Transform + - uid: 1008 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,24.5 + parent: 1 + type: Transform + - uid: 3490 + components: + - pos: 66.5,-17.5 + parent: 1 + type: Transform + - uid: 4371 + components: + - pos: 30.5,6.5 + parent: 1 + type: Transform + - uid: 4372 + components: + - pos: 34.5,6.5 + parent: 1 + type: Transform + - uid: 6315 + components: + - rot: 3.141592653589793 rad + pos: -47.5,13.5 + parent: 1 + type: Transform + - uid: 6316 + components: + - rot: 3.141592653589793 rad + pos: -46.5,13.5 + parent: 1 + type: Transform + - uid: 10381 + components: + - pos: 72.5,-10.5 + parent: 1 + type: Transform + - uid: 10630 + components: + - pos: 32.5,23.5 + parent: 1 + type: Transform + - uid: 11200 + components: + - rot: 3.141592653589793 rad + pos: 33.5,14.5 + parent: 1 + type: Transform + - uid: 16245 + components: + - rot: -1.5707963267948966 rad + pos: 53.5,-16.5 + parent: 1 + type: Transform +- proto: SinkStemlessWater + entities: + - uid: 1853 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-12.5 + parent: 1 + type: Transform + - uid: 5127 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-5.5 + parent: 1 + type: Transform + - uid: 7067 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,13.5 + parent: 1 + type: Transform + - uid: 9312 + components: + - pos: 54.5,5.5 + parent: 1 + type: Transform + - uid: 9372 + components: + - pos: 21.5,-46.5 + parent: 1 + type: Transform + - uid: 15832 + components: + - pos: -19.5,5.5 + parent: 1 + type: Transform + - uid: 15899 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,47.5 + parent: 1 + type: Transform +- proto: SinkWide + entities: + - uid: 5333 + components: + - rot: 3.141592653589793 rad + pos: 74.5,24.5 + parent: 1 + type: Transform + - uid: 6830 + components: + - pos: -52.5,-27.5 + parent: 1 + type: Transform + - uid: 6831 + components: + - pos: -50.5,-27.5 + parent: 1 + type: Transform + - uid: 7508 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-8.5 + parent: 1 + type: Transform + - uid: 7509 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-7.5 + parent: 1 + type: Transform + - uid: 7511 + components: + - pos: 16.5,-6.5 + parent: 1 + type: Transform + - uid: 7512 + components: + - pos: 17.5,-6.5 + parent: 1 + type: Transform + - uid: 11196 + components: + - rot: 3.141592653589793 rad + pos: -11.5,14.5 + parent: 1 + type: Transform +- proto: SmartFridge + entities: + - uid: 5637 + components: + - flags: SessionSpecific + type: MetaData + - pos: 68.5,-10.5 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 437 + components: + - name: SMES Bank 1 + type: MetaData + - pos: -53.5,-15.5 + parent: 1 + type: Transform + - uid: 445 + components: + - name: SMES Bank 2 + type: MetaData + - pos: -54.5,-15.5 + parent: 1 + type: Transform + - uid: 451 + components: + - name: SMES Bank 3 + type: MetaData + - pos: -55.5,-15.5 + parent: 1 + type: Transform + - uid: 460 + components: + - name: SMES Bank 4 + type: MetaData + - pos: -55.5,-17.5 + parent: 1 + type: Transform + - uid: 461 + components: + - name: SMES Bank 5 + type: MetaData + - pos: -54.5,-17.5 + parent: 1 + type: Transform + - uid: 462 + components: + - name: SMES Bank 6 + type: MetaData + - pos: -53.5,-17.5 + parent: 1 + type: Transform + - uid: 11834 + components: + - name: Solar (Port Aft) SMES + type: MetaData + - pos: -40.5,40.5 + parent: 1 + type: Transform + - uid: 12121 + components: + - name: Particle Accelerator SMES + type: MetaData + - pos: -72.5,-0.5 + parent: 1 + type: Transform + - uid: 21030 + components: + - name: server room SMES + type: MetaData + - pos: 130.5,2.5 + parent: 1 + type: Transform +- proto: SMESBasicEmpty + entities: + - uid: 7751 + components: + - pos: 104.5,-7.5 + parent: 1 + type: Transform + - uid: 16577 + components: + - pos: 53.5,24.5 + parent: 1 + type: Transform + - uid: 24818 + components: + - name: Solar(Starboard Fore) SMES + type: MetaData + - pos: 86.5,-22.5 + parent: 1 + type: Transform +- proto: SMESMachineCircuitboard + entities: + - uid: 6606 + components: + - rot: 1.5707963267948966 rad + pos: -45.425415,-0.40989614 + parent: 1 + type: Transform + - uid: 16100 + components: + - pos: 28.525358,34.645103 + parent: 1 + type: Transform +- proto: SmokingPipeFilledCannabis + entities: + - uid: 7293 + components: + - pos: 22.468473,42.657394 + parent: 1 + type: Transform +- proto: SmokingPipeFilledTobacco + entities: + - uid: 22635 + components: + - pos: 114.53433,8.088414 + parent: 1 + type: Transform +- proto: soda_dispenser + entities: + - uid: 1942 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-15.5 + parent: 1 + type: Transform + - uid: 3886 + components: + - pos: 31.5,-13.5 + parent: 1 + type: Transform + - uid: 4629 + components: + - pos: 107.5,11.5 + parent: 1 + type: Transform + - uid: 5255 + components: + - rot: 3.141592653589793 rad + pos: 35.5,18.5 + parent: 1 + type: Transform + - uid: 5263 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,15.5 + parent: 1 + type: Transform + - uid: 15907 + components: + - rot: 3.141592653589793 rad + pos: -26.5,43.5 + parent: 1 + type: Transform +- proto: SodaDispenserMachineCircuitboard + entities: + - uid: 12299 + components: + - flags: InContainer + type: MetaData + - parent: 12295 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: SolarPanel + entities: + - uid: 6810 + components: + - pos: 85.5,-38.5 + parent: 1 + type: Transform + - uid: 7160 + components: + - pos: 86.5,-38.5 + parent: 1 + type: Transform + - uid: 7161 + components: + - pos: 84.5,-38.5 + parent: 1 + type: Transform + - uid: 7162 + components: + - pos: 87.5,-36.5 + parent: 1 + type: Transform + - uid: 7247 + components: + - pos: 86.5,-36.5 + parent: 1 + type: Transform + - uid: 7251 + components: + - pos: 83.5,-36.5 + parent: 1 + type: Transform + - uid: 7252 + components: + - pos: 84.5,-36.5 + parent: 1 + type: Transform + - uid: 7284 + components: + - pos: 82.5,-36.5 + parent: 1 + type: Transform + - uid: 7330 + components: + - pos: 82.5,-38.5 + parent: 1 + type: Transform + - uid: 9971 + components: + - pos: 91.5,-36.5 + parent: 1 + type: Transform + - uid: 9973 + components: + - pos: 85.5,-36.5 + parent: 1 + type: Transform + - uid: 10131 + components: + - pos: 83.5,-38.5 + parent: 1 + type: Transform + - uid: 10507 + components: + - pos: 87.5,-38.5 + parent: 1 + type: Transform + - uid: 11736 + components: + - pos: -52.5,50.5 + parent: 1 + type: Transform + - uid: 11738 + components: + - pos: -52.5,62.5 + parent: 1 + type: Transform + - uid: 11739 + components: + - pos: -51.5,60.5 + parent: 1 + type: Transform + - uid: 11740 + components: + - pos: -50.5,60.5 + parent: 1 + type: Transform + - uid: 11741 + components: + - pos: -48.5,62.5 + parent: 1 + type: Transform + - uid: 11742 + components: + - pos: -47.5,62.5 + parent: 1 + type: Transform + - uid: 11743 + components: + - pos: -43.5,60.5 + parent: 1 + type: Transform + - uid: 11744 + components: + - pos: -41.5,58.5 + parent: 1 + type: Transform + - uid: 11745 + components: + - pos: -40.5,58.5 + parent: 1 + type: Transform + - uid: 11746 + components: + - pos: -39.5,58.5 + parent: 1 + type: Transform + - uid: 11747 + components: + - pos: -39.5,56.5 + parent: 1 + type: Transform + - uid: 11748 + components: + - pos: -38.5,56.5 + parent: 1 + type: Transform + - uid: 11749 + components: + - pos: -40.5,56.5 + parent: 1 + type: Transform + - uid: 11750 + components: + - pos: -41.5,56.5 + parent: 1 + type: Transform + - uid: 11751 + components: + - pos: -42.5,56.5 + parent: 1 + type: Transform + - uid: 11752 + components: + - pos: -43.5,56.5 + parent: 1 + type: Transform + - uid: 11753 + components: + - pos: -47.5,56.5 + parent: 1 + type: Transform + - uid: 11754 + components: + - pos: -48.5,56.5 + parent: 1 + type: Transform + - uid: 11755 + components: + - pos: -49.5,56.5 + parent: 1 + type: Transform + - uid: 11756 + components: + - pos: -50.5,56.5 + parent: 1 + type: Transform + - uid: 11757 + components: + - pos: -51.5,56.5 + parent: 1 + type: Transform + - uid: 11758 + components: + - pos: -52.5,56.5 + parent: 1 + type: Transform + - uid: 11759 + components: + - pos: -52.5,58.5 + parent: 1 + type: Transform + - uid: 11760 + components: + - pos: -51.5,58.5 + parent: 1 + type: Transform + - uid: 11761 + components: + - pos: -50.5,58.5 + parent: 1 + type: Transform + - uid: 11762 + components: + - pos: -49.5,58.5 + parent: 1 + type: Transform + - uid: 11763 + components: + - pos: -48.5,58.5 + parent: 1 + type: Transform + - uid: 11764 + components: + - pos: -47.5,58.5 + parent: 1 + type: Transform + - uid: 11765 + components: + - pos: -43.5,54.5 + parent: 1 + type: Transform + - uid: 11766 + components: + - pos: -42.5,54.5 + parent: 1 + type: Transform + - uid: 11767 + components: + - pos: -41.5,54.5 + parent: 1 + type: Transform + - uid: 11768 + components: + - pos: -40.5,54.5 + parent: 1 + type: Transform + - uid: 11769 + components: + - pos: -39.5,54.5 + parent: 1 + type: Transform + - uid: 11770 + components: + - pos: -38.5,52.5 + parent: 1 + type: Transform + - uid: 11771 + components: + - pos: -39.5,52.5 + parent: 1 + type: Transform + - uid: 11772 + components: + - pos: -40.5,52.5 + parent: 1 + type: Transform + - uid: 11773 + components: + - pos: -42.5,52.5 + parent: 1 + type: Transform + - uid: 11774 + components: + - pos: -43.5,52.5 + parent: 1 + type: Transform + - uid: 11775 + components: + - pos: -47.5,52.5 + parent: 1 + type: Transform + - uid: 11776 + components: + - pos: -48.5,52.5 + parent: 1 + type: Transform + - uid: 11777 + components: + - pos: -49.5,52.5 + parent: 1 + type: Transform + - uid: 11778 + components: + - pos: -51.5,52.5 + parent: 1 + type: Transform + - uid: 11779 + components: + - pos: -52.5,52.5 + parent: 1 + type: Transform + - uid: 11780 + components: + - pos: -52.5,54.5 + parent: 1 + type: Transform + - uid: 11781 + components: + - pos: -51.5,54.5 + parent: 1 + type: Transform + - uid: 11782 + components: + - pos: -50.5,54.5 + parent: 1 + type: Transform + - uid: 11783 + components: + - pos: -49.5,54.5 + parent: 1 + type: Transform + - uid: 11784 + components: + - pos: -48.5,54.5 + parent: 1 + type: Transform + - uid: 11785 + components: + - pos: -47.5,54.5 + parent: 1 + type: Transform + - uid: 11786 + components: + - pos: -51.5,50.5 + parent: 1 + type: Transform + - uid: 11787 + components: + - pos: -50.5,50.5 + parent: 1 + type: Transform + - uid: 11788 + components: + - pos: -49.5,50.5 + parent: 1 + type: Transform + - uid: 11789 + components: + - pos: -48.5,50.5 + parent: 1 + type: Transform + - uid: 11790 + components: + - pos: -47.5,50.5 + parent: 1 + type: Transform + - uid: 11791 + components: + - pos: -43.5,50.5 + parent: 1 + type: Transform + - uid: 11792 + components: + - pos: -42.5,50.5 + parent: 1 + type: Transform + - uid: 11793 + components: + - pos: -41.5,50.5 + parent: 1 + type: Transform + - uid: 11794 + components: + - pos: -40.5,50.5 + parent: 1 + type: Transform + - uid: 11795 + components: + - pos: -39.5,50.5 + parent: 1 + type: Transform + - uid: 11796 + components: + - pos: -38.5,50.5 + parent: 1 + type: Transform + - uid: 11797 + components: + - pos: -38.5,48.5 + parent: 1 + type: Transform + - uid: 11798 + components: + - pos: -39.5,48.5 + parent: 1 + type: Transform + - uid: 11799 + components: + - pos: -40.5,48.5 + parent: 1 + type: Transform + - uid: 11800 + components: + - pos: -41.5,48.5 + parent: 1 + type: Transform + - uid: 11801 + components: + - pos: -42.5,48.5 + parent: 1 + type: Transform + - uid: 11802 + components: + - pos: -43.5,48.5 + parent: 1 + type: Transform + - uid: 11803 + components: + - pos: -47.5,48.5 + parent: 1 + type: Transform + - uid: 11804 + components: + - pos: -48.5,48.5 + parent: 1 + type: Transform + - uid: 11805 + components: + - pos: -49.5,48.5 + parent: 1 + type: Transform + - uid: 11806 + components: + - pos: -50.5,48.5 + parent: 1 + type: Transform + - uid: 11807 + components: + - pos: -51.5,48.5 + parent: 1 + type: Transform + - uid: 11808 + components: + - pos: -52.5,48.5 + parent: 1 + type: Transform + - uid: 24831 + components: + - pos: 92.5,-36.5 + parent: 1 + type: Transform + - uid: 24832 + components: + - pos: 93.5,-36.5 + parent: 1 + type: Transform + - uid: 24833 + components: + - pos: 94.5,-36.5 + parent: 1 + type: Transform + - uid: 24834 + components: + - pos: 95.5,-36.5 + parent: 1 + type: Transform + - uid: 24835 + components: + - pos: 96.5,-36.5 + parent: 1 + type: Transform + - uid: 24836 + components: + - pos: 91.5,-38.5 + parent: 1 + type: Transform + - uid: 24837 + components: + - pos: 92.5,-38.5 + parent: 1 + type: Transform + - uid: 24838 + components: + - pos: 93.5,-38.5 + parent: 1 + type: Transform + - uid: 24839 + components: + - pos: 95.5,-38.5 + parent: 1 + type: Transform + - uid: 24840 + components: + - pos: 96.5,-38.5 + parent: 1 + type: Transform + - uid: 24841 + components: + - pos: 82.5,-40.5 + parent: 1 + type: Transform + - uid: 24842 + components: + - pos: 83.5,-40.5 + parent: 1 + type: Transform + - uid: 24843 + components: + - pos: 84.5,-40.5 + parent: 1 + type: Transform + - uid: 24844 + components: + - pos: 85.5,-40.5 + parent: 1 + type: Transform + - uid: 24845 + components: + - pos: 86.5,-40.5 + parent: 1 + type: Transform + - uid: 24846 + components: + - pos: 87.5,-40.5 + parent: 1 + type: Transform + - uid: 24847 + components: + - pos: 82.5,-42.5 + parent: 1 + type: Transform + - uid: 24848 + components: + - pos: 83.5,-42.5 + parent: 1 + type: Transform + - uid: 24849 + components: + - pos: 84.5,-42.5 + parent: 1 + type: Transform + - uid: 24850 + components: + - pos: 92.5,-40.5 + parent: 1 + type: Transform + - uid: 24851 + components: + - pos: 93.5,-40.5 + parent: 1 + type: Transform + - uid: 24852 + components: + - pos: 94.5,-40.5 + parent: 1 + type: Transform + - uid: 24853 + components: + - pos: 95.5,-40.5 + parent: 1 + type: Transform + - uid: 24854 + components: + - pos: 91.5,-42.5 + parent: 1 + type: Transform + - uid: 24855 + components: + - pos: 92.5,-42.5 + parent: 1 + type: Transform + - uid: 24856 + components: + - pos: 93.5,-42.5 + parent: 1 + type: Transform + - uid: 24857 + components: + - pos: 94.5,-42.5 + parent: 1 + type: Transform + - uid: 24858 + components: + - pos: 95.5,-42.5 + parent: 1 + type: Transform + - uid: 24859 + components: + - pos: 96.5,-42.5 + parent: 1 + type: Transform + - uid: 24860 + components: + - pos: 82.5,-44.5 + parent: 1 + type: Transform + - uid: 24861 + components: + - pos: 84.5,-44.5 + parent: 1 + type: Transform + - uid: 24862 + components: + - pos: 83.5,-46.5 + parent: 1 + type: Transform + - uid: 24863 + components: + - pos: 86.5,-44.5 + parent: 1 + type: Transform + - uid: 24864 + components: + - pos: 84.5,-46.5 + parent: 1 + type: Transform + - uid: 24865 + components: + - pos: 85.5,-46.5 + parent: 1 + type: Transform + - uid: 24866 + components: + - pos: 86.5,-46.5 + parent: 1 + type: Transform + - uid: 24867 + components: + - pos: 87.5,-46.5 + parent: 1 + type: Transform + - uid: 24868 + components: + - pos: 82.5,-48.5 + parent: 1 + type: Transform + - uid: 24869 + components: + - pos: 83.5,-48.5 + parent: 1 + type: Transform + - uid: 24870 + components: + - pos: 84.5,-48.5 + parent: 1 + type: Transform + - uid: 24871 + components: + - pos: 85.5,-48.5 + parent: 1 + type: Transform + - uid: 24872 + components: + - pos: 86.5,-48.5 + parent: 1 + type: Transform + - uid: 24873 + components: + - pos: 87.5,-48.5 + parent: 1 + type: Transform + - uid: 24874 + components: + - pos: 83.5,-50.5 + parent: 1 + type: Transform + - uid: 24875 + components: + - pos: 84.5,-50.5 + parent: 1 + type: Transform + - uid: 24876 + components: + - pos: 85.5,-50.5 + parent: 1 + type: Transform + - uid: 24877 + components: + - pos: 86.5,-50.5 + parent: 1 + type: Transform + - uid: 24878 + components: + - pos: 87.5,-50.5 + parent: 1 + type: Transform + - uid: 24879 + components: + - pos: 91.5,-50.5 + parent: 1 + type: Transform + - uid: 24880 + components: + - pos: 92.5,-50.5 + parent: 1 + type: Transform + - uid: 24881 + components: + - pos: 93.5,-50.5 + parent: 1 + type: Transform + - uid: 24882 + components: + - pos: 94.5,-50.5 + parent: 1 + type: Transform + - uid: 24883 + components: + - pos: 95.5,-50.5 + parent: 1 + type: Transform + - uid: 24884 + components: + - pos: 96.5,-50.5 + parent: 1 + type: Transform + - uid: 24885 + components: + - pos: 91.5,-48.5 + parent: 1 + type: Transform + - uid: 24886 + components: + - pos: 92.5,-48.5 + parent: 1 + type: Transform + - uid: 24887 + components: + - pos: 93.5,-48.5 + parent: 1 + type: Transform + - uid: 24888 + components: + - pos: 95.5,-48.5 + parent: 1 + type: Transform + - uid: 24889 + components: + - pos: 91.5,-46.5 + parent: 1 + type: Transform + - uid: 24890 + components: + - pos: 92.5,-46.5 + parent: 1 + type: Transform + - uid: 24891 + components: + - pos: 93.5,-46.5 + parent: 1 + type: Transform + - uid: 24892 + components: + - pos: 94.5,-46.5 + parent: 1 + type: Transform + - uid: 24893 + components: + - pos: 93.5,-44.5 + parent: 1 + type: Transform + - uid: 24894 + components: + - pos: 94.5,-44.5 + parent: 1 + type: Transform + - uid: 24895 + components: + - pos: 95.5,-44.5 + parent: 1 + type: Transform + - uid: 24896 + components: + - pos: 96.5,-44.5 + parent: 1 + type: Transform +- proto: SolarPanelBroken + entities: + - uid: 11904 + components: + - pos: -50.5,62.5 + parent: 1 + type: Transform + - uid: 11905 + components: + - pos: -49.5,62.5 + parent: 1 + type: Transform + - uid: 11906 + components: + - pos: -42.5,62.5 + parent: 1 + type: Transform + - uid: 11907 + components: + - pos: -39.5,62.5 + parent: 1 + type: Transform + - uid: 11908 + components: + - pos: -38.5,62.5 + parent: 1 + type: Transform + - uid: 11909 + components: + - pos: -41.5,60.5 + parent: 1 + type: Transform + - uid: 11910 + components: + - pos: -40.5,60.5 + parent: 1 + type: Transform + - uid: 11911 + components: + - pos: -52.5,60.5 + parent: 1 + type: Transform +- proto: SolarTracker + entities: + - uid: 9972 + components: + - pos: 89.5,-52.5 + parent: 1 + type: Transform + - uid: 11737 + components: + - pos: -45.5,64.5 + parent: 1 + type: Transform +- proto: SophicScribe + entities: + - uid: 3862 + components: + - pos: 8.5,32.5 + parent: 1 + type: Transform +- proto: SpaceCash + entities: + - uid: 1957 + components: + - pos: 5.4788985,-15.054702 + parent: 1 + type: Transform + - uid: 6369 + components: + - pos: -38.474697,10.779346 + parent: 1 + type: Transform + - uid: 13223 + components: + - pos: 53.30257,35.787537 + parent: 1 + type: Transform + - uid: 16792 + components: + - pos: 25.669851,1.8512559 + parent: 1 + type: Transform + - uid: 16793 + components: + - pos: 25.669851,1.8512559 + parent: 1 + type: Transform + - uid: 16794 + components: + - pos: 25.659435,1.8408315 + parent: 1 + type: Transform +- proto: SpaceCash10 + entities: + - uid: 23795 + components: + - rot: 3.141592653589793 rad + pos: 42.361298,-42.496124 + parent: 1 + type: Transform +- proto: SpaceCash1000 + entities: + - uid: 9571 + components: + - rot: 1.5707963267948966 rad + pos: 101.96628,-3.3485556 + parent: 1 + type: Transform + - uid: 9572 + components: + - rot: 1.5707963267948966 rad + pos: 101.99753,-3.3589797 + parent: 1 + type: Transform + - uid: 9573 + components: + - rot: 1.5707963267948966 rad + pos: 101.99753,-3.3589797 + parent: 1 + type: Transform + - uid: 9574 + components: + - rot: 1.5707963267948966 rad + pos: 101.99753,-3.3589797 + parent: 1 + type: Transform + - uid: 9575 + components: + - rot: 1.5707963267948966 rad + pos: 101.99753,-3.3589797 + parent: 1 + type: Transform +- proto: SpacemenFigureSpawner + entities: + - uid: 23925 + components: + - pos: 29.5,39.5 + parent: 1 + type: Transform +- proto: SpaceQuartz1 + entities: + - uid: 16744 + components: + - pos: 96.26142,17.698286 + parent: 1 + type: Transform +- proto: SpaceVillainArcade + entities: + - uid: 7255 + components: + - pos: 24.5,46.5 + parent: 1 + type: Transform + - uid: 16592 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,27.5 + parent: 1 + type: Transform +- proto: SpaceVillainArcadeFilled + entities: + - uid: 1946 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-16.5 + parent: 1 + type: Transform + - uid: 3262 + components: + - pos: 41.5,23.5 + parent: 1 + type: Transform + - uid: 6926 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-10.5 + parent: 1 + type: Transform + - uid: 13517 + components: + - rot: 1.5707963267948966 rad + pos: 91.5,13.5 + parent: 1 + type: Transform +- proto: SpareIdCabinet + entities: + - uid: 25840 + components: + - rot: 1.5707963267948966 rad + pos: 102.5,8.5 + parent: 1 + type: Transform +- proto: SpawnMobAlexander + entities: + - uid: 1181 + components: + - pos: -1.5,16.5 + parent: 1 + type: Transform +- proto: SpawnMobBandito + entities: + - uid: 13152 + components: + - pos: -49.5,-25.5 + parent: 1 + type: Transform +- proto: SpawnMobCat + entities: + - uid: 7584 + components: + - pos: 82.5,-7.5 + parent: 1 + type: Transform + - uid: 10035 + components: + - pos: 30.5,-35.5 + parent: 1 + type: Transform +- proto: SpawnMobCatGeneric + entities: + - uid: 4320 + components: + - pos: 25.5,-0.5 + parent: 1 + type: Transform + - uid: 12793 + components: + - pos: 27.5,-40.5 + parent: 1 + type: Transform + - uid: 16754 + components: + - pos: -23.5,-11.5 + parent: 1 + type: Transform +- proto: SpawnMobCatSpace + entities: + - uid: 13151 + components: + - pos: -57.5,38.5 + parent: 1 + type: Transform +- proto: SpawnMobCleanBot + entities: + - uid: 12385 + components: + - pos: -16.5,7.5 + parent: 1 + type: Transform +- proto: SpawnMobCorgi + entities: + - uid: 2014 + components: + - pos: 4.5,-8.5 + parent: 1 + type: Transform +- proto: SpawnMobCow + entities: + - uid: 1183 + components: + - pos: -2.5,17.5 + parent: 1 + type: Transform +- proto: SpawnMobDrone + entities: + - uid: 24776 + components: + - pos: -61.5,9.5 + parent: 1 + type: Transform + - uid: 24777 + components: + - pos: -60.5,9.5 + parent: 1 + type: Transform +- proto: SpawnMobFerret + entities: + - uid: 3131 + components: + - pos: -20.5,18.5 + parent: 1 + type: Transform + - uid: 12384 + components: + - pos: -36.5,-23.5 + parent: 1 + type: Transform +- proto: SpawnMobFoxRenault + entities: + - uid: 15017 + components: + - pos: 105.5,-2.5 + parent: 1 + type: Transform +- proto: SpawnMobGorilla + entities: + - uid: 9225 + components: + - pos: 59.5,21.5 + parent: 1 + type: Transform +- proto: SpawnMobHamsterHamlet + entities: + - uid: 23783 + components: + - pos: 105.5,10.5 + parent: 1 + type: Transform +- proto: SpawnMobKangarooWillow + entities: + - uid: 12029 + components: + - pos: 19.5,19.5 + parent: 1 + type: Transform +- proto: SpawnMobMcGriff + entities: + - uid: 7171 + components: + - pos: 79.5,10.5 + parent: 1 + type: Transform +- proto: SpawnMobMedibot + entities: + - uid: 25764 + components: + - pos: 65.5,-4.5 + parent: 1 + type: Transform +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 865 + components: + - pos: 33.5,16.5 + parent: 1 + type: Transform +- proto: SpawnMobMouse + entities: + - uid: 22754 + components: + - pos: -32.5,39.5 + parent: 1 + type: Transform + - uid: 23615 + components: + - pos: 57.5,36.5 + parent: 1 + type: Transform +- proto: SpawnMobPossumMorty + entities: + - uid: 13154 + components: + - pos: 61.5,-17.5 + parent: 1 + type: Transform +- proto: SpawnMobRaccoonMorticia + entities: + - uid: 13153 + components: + - pos: -9.5,-15.5 + parent: 1 + type: Transform +- proto: SpawnMobShiva + entities: + - uid: 4065 + components: + - pos: 78.5,15.5 + parent: 1 + type: Transform +- proto: SpawnMobSlothPaperwork + entities: + - uid: 1642 + components: + - pos: 32.5,-16.5 + parent: 1 + type: Transform +- proto: SpawnMobSmile + entities: + - uid: 23774 + components: + - pos: 11.5,44.5 + parent: 1 + type: Transform +- proto: SpawnPointAssistant + entities: + - uid: 7391 + components: + - pos: 23.5,-43.5 + parent: 1 + type: Transform + - uid: 7392 + components: + - pos: 25.5,-44.5 + parent: 1 + type: Transform + - uid: 7460 + components: + - pos: 29.5,-6.5 + parent: 1 + type: Transform + - uid: 7461 + components: + - pos: 27.5,-6.5 + parent: 1 + type: Transform + - uid: 7462 + components: + - pos: 29.5,8.5 + parent: 1 + type: Transform + - uid: 7463 + components: + - pos: 15.5,0.5 + parent: 1 + type: Transform + - uid: 12109 + components: + - pos: 12.5,-48.5 + parent: 1 + type: Transform + - uid: 15126 + components: + - pos: 25.5,-43.5 + parent: 1 + type: Transform + - uid: 23837 + components: + - pos: 28.5,-43.5 + parent: 1 + type: Transform +- proto: SpawnPointAtmos + entities: + - uid: 6404 + components: + - pos: -39.5,14.5 + parent: 1 + type: Transform + - uid: 6407 + components: + - pos: -38.5,12.5 + parent: 1 + type: Transform + - uid: 6409 + components: + - pos: -37.5,10.5 + parent: 1 + type: Transform + - uid: 6410 + components: + - pos: -37.5,9.5 + parent: 1 + type: Transform + - uid: 6804 + components: + - pos: -46.5,7.5 + parent: 1 + type: Transform + - uid: 23884 + components: + - pos: -0.5,-48.5 + parent: 1 + type: Transform +- proto: SpawnPointBartender + entities: + - uid: 914 + components: + - pos: 37.5,14.5 + parent: 1 + type: Transform + - uid: 985 + components: + - pos: 38.5,17.5 + parent: 1 + type: Transform + - uid: 23885 + components: + - pos: 0.5,-48.5 + parent: 1 + type: Transform +- proto: SpawnPointBorg + entities: + - uid: 4582 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,11.5 + parent: 1 + type: Transform + - uid: 12031 + components: + - pos: 28.5,49.5 + parent: 1 + type: Transform + - uid: 12032 + components: + - pos: 29.5,49.5 + parent: 1 + type: Transform + - uid: 12056 + components: + - pos: 27.5,49.5 + parent: 1 + type: Transform + - uid: 12057 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,7.5 + parent: 1 + type: Transform +- proto: SpawnPointBotanist + entities: + - uid: 821 + components: + - pos: -5.5,18.5 + parent: 1 + type: Transform + - uid: 906 + components: + - pos: 6.5,17.5 + parent: 1 + type: Transform + - uid: 1047 + components: + - pos: -5.5,24.5 + parent: 1 + type: Transform + - uid: 1431 + components: + - pos: 3.5,16.5 + parent: 1 + type: Transform + - uid: 23886 + components: + - pos: 1.5,-48.5 + parent: 1 + type: Transform +- proto: SpawnPointBoxer + entities: + - uid: 2940 + components: + - pos: 20.5,22.5 + parent: 1 + type: Transform + - uid: 3228 + components: + - pos: 16.5,16.5 + parent: 1 + type: Transform + - uid: 23887 + components: + - pos: 2.5,-48.5 + parent: 1 + type: Transform +- proto: SpawnPointBrigmedic + entities: + - uid: 25185 + components: + - pos: 76.5,8.5 + parent: 1 + type: Transform +- proto: SpawnPointCaptain + entities: + - uid: 6262 + components: + - pos: 104.5,10.5 + parent: 1 + type: Transform +- proto: SpawnPointCargoTechnician + entities: + - uid: 12042 + components: + - pos: -4.5,-16.5 + parent: 1 + type: Transform + - uid: 12044 + components: + - pos: -13.5,-11.5 + parent: 1 + type: Transform + - uid: 12045 + components: + - pos: -6.5,-2.5 + parent: 1 + type: Transform +- proto: SpawnPointChaplain + entities: + - uid: 7342 + components: + - pos: 17.5,48.5 + parent: 1 + type: Transform + - uid: 7347 + components: + - pos: 18.5,50.5 + parent: 1 + type: Transform + - uid: 7348 + components: + - pos: 19.5,48.5 + parent: 1 + type: Transform + - uid: 23889 + components: + - pos: 4.5,-48.5 + parent: 1 + type: Transform +- proto: SpawnPointChef + entities: + - uid: 1428 + components: + - pos: 1.5,25.5 + parent: 1 + type: Transform + - uid: 1429 + components: + - pos: 3.5,24.5 + parent: 1 + type: Transform + - uid: 1430 + components: + - pos: -0.5,25.5 + parent: 1 + type: Transform + - uid: 23890 + components: + - pos: 5.5,-48.5 + parent: 1 + type: Transform +- proto: SpawnPointChemist + entities: + - uid: 12038 + components: + - pos: 83.5,-16.5 + parent: 1 + type: Transform + - uid: 12039 + components: + - pos: 82.5,-16.5 + parent: 1 + type: Transform +- proto: SpawnPointChiefEngineer + entities: + - uid: 6261 + components: + - pos: 106.5,9.5 + parent: 1 + type: Transform +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 6265 + components: + - pos: 106.5,8.5 + parent: 1 + type: Transform +- proto: SpawnPointClown + entities: + - uid: 12964 + components: + - pos: 26.5,-36.5 + parent: 1 + type: Transform + - uid: 12965 + components: + - pos: 26.5,-37.5 + parent: 1 + type: Transform + - uid: 23891 + components: + - pos: 6.5,-48.5 + parent: 1 + type: Transform +- proto: SpawnPointDetective + entities: + - uid: 2540 + components: + - pos: 7.5,-46.5 + parent: 1 + type: Transform + - uid: 11662 + components: + - pos: 61.5,18.5 + parent: 1 + type: Transform + - uid: 12097 + components: + - pos: 61.5,17.5 + parent: 1 + type: Transform +- proto: SpawnPointForensicMantis + entities: + - uid: 7315 + components: + - pos: 21.5,42.5 + parent: 1 + type: Transform + - uid: 23893 + components: + - pos: 8.5,-48.5 + parent: 1 + type: Transform +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 6266 + components: + - pos: 106.5,7.5 + parent: 1 + type: Transform +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 6267 + components: + - pos: 103.5,9.5 + parent: 1 + type: Transform +- proto: SpawnPointJanitor + entities: + - uid: 7090 + components: + - pos: -17.5,19.5 + parent: 1 + type: Transform + - uid: 22777 + components: + - pos: -20.5,19.5 + parent: 1 + type: Transform + - uid: 23894 + components: + - pos: 9.5,-48.5 + parent: 1 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 1763 + components: + - pos: 2.5,-49.5 + parent: 1 + type: Transform + - uid: 1773 + components: + - pos: 7.5,-49.5 + parent: 1 + type: Transform + - uid: 2984 + components: + - pos: 8.5,-49.5 + parent: 1 + type: Transform + - uid: 3360 + components: + - pos: 0.5,-49.5 + parent: 1 + type: Transform + - uid: 3695 + components: + - pos: 9.5,-49.5 + parent: 1 + type: Transform + - uid: 5999 + components: + - pos: 1.5,-49.5 + parent: 1 + type: Transform + - uid: 19601 + components: + - pos: 1.5,-47.5 + parent: 1 + type: Transform + - uid: 19602 + components: + - pos: 8.5,-47.5 + parent: 1 + type: Transform +- proto: SpawnPointLawyer + entities: + - uid: 9075 + components: + - pos: 41.5,11.5 + parent: 1 + type: Transform + - uid: 9076 + components: + - pos: 45.5,8.5 + parent: 1 + type: Transform + - uid: 23895 + components: + - pos: 10.5,-48.5 + parent: 1 + type: Transform +- proto: SpawnPointLibrarian + entities: + - uid: 9513 + components: + - pos: 31.5,-10.5 + parent: 1 + type: Transform + - uid: 23888 + components: + - pos: 3.5,-48.5 + parent: 1 + type: Transform + - uid: 25289 + components: + - pos: 3.5,-32.5 + parent: 1 + type: Transform +- proto: SpawnPointLocationMidRoundAntag + entities: + - uid: 7099 + components: + - pos: 83.5,29.5 + parent: 1 + type: Transform + - uid: 7416 + components: + - pos: 31.5,8.5 + parent: 1 + type: Transform + - uid: 7417 + components: + - pos: 29.5,-13.5 + parent: 1 + type: Transform + - uid: 9505 + components: + - pos: 9.5,8.5 + parent: 1 + type: Transform + - uid: 9506 + components: + - pos: 22.5,-13.5 + parent: 1 + type: Transform + - uid: 16636 + components: + - pos: 48.5,41.5 + parent: 1 + type: Transform + - uid: 16637 + components: + - pos: 0.5,56.5 + parent: 1 + type: Transform + - uid: 21555 + components: + - pos: 36.5,-36.5 + parent: 1 + type: Transform + - uid: 21556 + components: + - pos: -5.5,-49.5 + parent: 1 + type: Transform + - uid: 21557 + components: + - pos: -25.5,-28.5 + parent: 1 + type: Transform + - uid: 21558 + components: + - pos: -31.5,17.5 + parent: 1 + type: Transform + - uid: 21559 + components: + - pos: -29.5,32.5 + parent: 1 + type: Transform + - uid: 21560 + components: + - pos: -21.5,-10.5 + parent: 1 + type: Transform + - uid: 21562 + components: + - pos: 20.5,55.5 + parent: 1 + type: Transform + - uid: 21563 + components: + - pos: -14.5,15.5 + parent: 1 + type: Transform + - uid: 21564 + components: + - pos: 103.5,-7.5 + parent: 1 + type: Transform + - uid: 21565 + components: + - pos: 107.5,14.5 + parent: 1 + type: Transform + - uid: 24290 + components: + - pos: -9.5,22.5 + parent: 1 + type: Transform + - uid: 25239 + components: + - pos: 106.5,11.5 + parent: 1 + type: Transform + - uid: 25829 + components: + - pos: -53.5,-24.5 + parent: 1 + type: Transform +- proto: SpawnPointMailCarrier + entities: + - uid: 7387 + components: + - pos: -16.5,0.5 + parent: 1 + type: Transform + - uid: 12037 + components: + - pos: -17.5,-5.5 + parent: 1 + type: Transform + - uid: 23896 + components: + - pos: -1.5,-48.5 + parent: 1 + type: Transform +- proto: SpawnPointMedicalDoctor + entities: + - uid: 5552 + components: + - pos: 67.5,-17.5 + parent: 1 + type: Transform + - uid: 7380 + components: + - pos: -22.5,11.5 + parent: 1 + type: Transform + - uid: 7708 + components: + - pos: 66.5,-2.5 + parent: 1 + type: Transform + - uid: 7710 + components: + - pos: 70.5,-16.5 + parent: 1 + type: Transform + - uid: 7711 + components: + - pos: 71.5,-16.5 + parent: 1 + type: Transform + - uid: 7712 + components: + - pos: 72.5,-16.5 + parent: 1 + type: Transform + - uid: 7713 + components: + - pos: 73.5,-16.5 + parent: 1 + type: Transform + - uid: 7714 + components: + - pos: 80.5,-16.5 + parent: 1 + type: Transform + - uid: 7715 + components: + - pos: 86.5,-14.5 + parent: 1 + type: Transform + - uid: 23897 + components: + - pos: -0.5,-49.5 + parent: 1 + type: Transform +- proto: SpawnPointMedicalIntern + entities: + - uid: 12107 + components: + - pos: -5.5,-48.5 + parent: 1 + type: Transform + - uid: 25161 + components: + - pos: 65.5,-0.5 + parent: 1 + type: Transform + - uid: 25162 + components: + - pos: 65.5,0.5 + parent: 1 + type: Transform + - uid: 25163 + components: + - pos: 66.5,-0.5 + parent: 1 + type: Transform + - uid: 25164 + components: + - pos: 66.5,0.5 + parent: 1 + type: Transform +- proto: SpawnPointMime + entities: + - uid: 13793 + components: + - pos: 20.5,-33.5 + parent: 1 + type: Transform + - uid: 23898 + components: + - pos: -2.5,-49.5 + parent: 1 + type: Transform +- proto: SpawnPointMusician + entities: + - uid: 10037 + components: + - pos: 28.5,-32.5 + parent: 1 + type: Transform + - uid: 10038 + components: + - pos: 32.5,-32.5 + parent: 1 + type: Transform + - uid: 10040 + components: + - pos: 32.5,-36.5 + parent: 1 + type: Transform + - uid: 10041 + components: + - pos: 30.5,-36.5 + parent: 1 + type: Transform + - uid: 23899 + components: + - pos: -3.5,-49.5 + parent: 1 + type: Transform +- proto: SpawnPointObserver + entities: + - uid: 4719 + components: + - pos: 10.5,3.5 + parent: 1 + type: Transform + - uid: 4720 + components: + - pos: 10.5,4.5 + parent: 1 + type: Transform + - uid: 11609 + components: + - pos: 11.5,6.5 + parent: 1 + type: Transform + - uid: 11610 + components: + - pos: 11.5,5.5 + parent: 1 + type: Transform + - uid: 11611 + components: + - pos: 12.5,4.5 + parent: 1 + type: Transform + - uid: 11612 + components: + - pos: 12.5,3.5 + parent: 1 + type: Transform + - uid: 11613 + components: + - pos: 11.5,2.5 + parent: 1 + type: Transform + - uid: 11614 + components: + - pos: 11.5,1.5 + parent: 1 + type: Transform +- proto: SpawnPointParamedic + entities: + - uid: 7716 + components: + - pos: 85.5,-16.5 + parent: 1 + type: Transform + - uid: 7718 + components: + - pos: 65.5,-2.5 + parent: 1 + type: Transform + - uid: 14088 + components: + - pos: 69.5,-16.5 + parent: 1 + type: Transform + - uid: 23900 + components: + - pos: -2.5,-46.5 + parent: 1 + type: Transform +- proto: SpawnPointPrisoner + entities: + - uid: 7094 + components: + - pos: 63.5,28.5 + parent: 1 + type: Transform + - uid: 7095 + components: + - pos: 63.5,24.5 + parent: 1 + type: Transform + - uid: 7096 + components: + - pos: 66.5,25.5 + parent: 1 + type: Transform + - uid: 7097 + components: + - pos: 66.5,24.5 + parent: 1 + type: Transform + - uid: 7098 + components: + - pos: 69.5,29.5 + parent: 1 + type: Transform +- proto: SpawnPointPrisonGuard + entities: + - uid: 7470 + components: + - pos: 87.5,21.5 + parent: 1 + type: Transform + - uid: 7471 + components: + - pos: 86.5,21.5 + parent: 1 + type: Transform + - uid: 7472 + components: + - pos: 88.5,18.5 + parent: 1 + type: Transform + - uid: 9895 + components: + - pos: 89.5,13.5 + parent: 1 + type: Transform + - uid: 23901 + components: + - pos: -0.5,-46.5 + parent: 1 + type: Transform +- proto: SpawnPointPsychologist + entities: + - uid: 5742 + components: + - pos: 80.5,-2.5 + parent: 1 + type: Transform + - uid: 23902 + components: + - pos: 10.5,-49.5 + parent: 1 + type: Transform +- proto: SpawnPointQuartermaster + entities: + - uid: 9577 + components: + - pos: 103.5,7.5 + parent: 1 + type: Transform + - uid: 23903 + components: + - pos: 12.5,-49.5 + parent: 1 + type: Transform +- proto: SpawnPointReporter + entities: + - uid: 7418 + components: + - pos: 37.5,-12.5 + parent: 1 + type: Transform + - uid: 7419 + components: + - pos: 42.5,-12.5 + parent: 1 + type: Transform + - uid: 23904 + components: + - pos: 13.5,-49.5 + parent: 1 + type: Transform +- proto: SpawnPointResearchAssistant + entities: + - uid: 12108 + components: + - pos: -4.5,-48.5 + parent: 1 + type: Transform + - uid: 25157 + components: + - pos: 11.5,33.5 + parent: 1 + type: Transform + - uid: 25158 + components: + - pos: 11.5,32.5 + parent: 1 + type: Transform + - uid: 25159 + components: + - pos: 12.5,33.5 + parent: 1 + type: Transform + - uid: 25160 + components: + - pos: 12.5,32.5 + parent: 1 + type: Transform + - uid: 25168 + components: + - pos: 5.5,40.5 + parent: 1 + type: Transform +- proto: SpawnPointResearchDirector + entities: + - uid: 6268 + components: + - pos: 103.5,8.5 + parent: 1 + type: Transform +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 5078 + components: + - pos: -61.5,-24.5 + parent: 1 + type: Transform + - uid: 5909 + components: + - pos: -57.5,-30.5 + parent: 1 + type: Transform + - uid: 5919 + components: + - pos: -57.5,-26.5 + parent: 1 + type: Transform + - uid: 6769 + components: + - pos: -61.5,-23.5 + parent: 1 + type: Transform + - uid: 7457 + components: + - pos: -48.5,-30.5 + parent: 1 + type: Transform + - uid: 7458 + components: + - pos: -52.5,-30.5 + parent: 1 + type: Transform + - uid: 7459 + components: + - pos: -50.5,-27.5 + parent: 1 + type: Transform + - uid: 12004 + components: + - pos: -58.5,-26.5 + parent: 1 + type: Transform + - uid: 23905 + components: + - pos: 15.5,-49.5 + parent: 1 + type: Transform +- proto: SpawnPointScientist + entities: + - uid: 7307 + components: + - pos: 25.5,43.5 + parent: 1 + type: Transform + - uid: 7308 + components: + - pos: 26.5,43.5 + parent: 1 + type: Transform + - uid: 7309 + components: + - pos: 26.5,41.5 + parent: 1 + type: Transform + - uid: 7310 + components: + - pos: 25.5,41.5 + parent: 1 + type: Transform + - uid: 7311 + components: + - pos: 25.5,40.5 + parent: 1 + type: Transform + - uid: 7312 + components: + - pos: 27.5,39.5 + parent: 1 + type: Transform + - uid: 7313 + components: + - pos: 30.5,42.5 + parent: 1 + type: Transform + - uid: 7314 + components: + - pos: 30.5,46.5 + parent: 1 + type: Transform + - uid: 23892 + components: + - pos: 7.5,-48.5 + parent: 1 + type: Transform +- proto: SpawnPointSecurityCadet + entities: + - uid: 9077 + components: + - pos: 68.5,14.5 + parent: 1 + type: Transform + - uid: 9078 + components: + - pos: 68.5,13.5 + parent: 1 + type: Transform + - uid: 23906 + components: + - pos: 15.5,-46.5 + parent: 1 + type: Transform + - uid: 25165 + components: + - pos: 67.5,8.5 + parent: 1 + type: Transform + - uid: 25166 + components: + - pos: 64.5,5.5 + parent: 1 + type: Transform + - uid: 25167 + components: + - pos: 65.5,5.5 + parent: 1 + type: Transform +- proto: SpawnPointSecurityOfficer + entities: + - uid: 4066 + components: + - pos: 86.5,19.5 + parent: 1 + type: Transform + - uid: 7379 + components: + - pos: -21.5,0.5 + parent: 1 + type: Transform + - uid: 9079 + components: + - pos: 72.5,13.5 + parent: 1 + type: Transform + - uid: 9080 + components: + - pos: 71.5,16.5 + parent: 1 + type: Transform + - uid: 9081 + components: + - pos: 73.5,19.5 + parent: 1 + type: Transform + - uid: 9082 + components: + - pos: 80.5,21.5 + parent: 1 + type: Transform + - uid: 9083 + components: + - pos: 81.5,21.5 + parent: 1 + type: Transform + - uid: 9084 + components: + - pos: 82.5,21.5 + parent: 1 + type: Transform + - uid: 9085 + components: + - pos: 83.5,21.5 + parent: 1 + type: Transform + - uid: 9088 + components: + - pos: 73.5,7.5 + parent: 1 + type: Transform + - uid: 9245 + components: + - pos: 11.5,-34.5 + parent: 1 + type: Transform + - uid: 9246 + components: + - pos: 13.5,-33.5 + parent: 1 + type: Transform + - uid: 9310 + components: + - pos: 87.5,13.5 + parent: 1 + type: Transform + - uid: 23907 + components: + - pos: 17.5,-46.5 + parent: 1 + type: Transform +- proto: SpawnPointServiceWorker + entities: + - uid: 12030 + components: + - pos: 26.5,1.5 + parent: 1 + type: Transform + - uid: 23909 + components: + - pos: 14.5,-48.5 + parent: 1 + type: Transform + - uid: 25113 + components: + - pos: 4.5,-14.5 + parent: 1 + type: Transform + - uid: 25114 + components: + - pos: 4.5,-15.5 + parent: 1 + type: Transform + - uid: 25115 + components: + - pos: 7.5,-14.5 + parent: 1 + type: Transform +- proto: SpawnPointStationEngineer + entities: + - uid: 6399 + components: + - pos: -57.5,4.5 + parent: 1 + type: Transform + - uid: 6400 + components: + - pos: -56.5,4.5 + parent: 1 + type: Transform + - uid: 6401 + components: + - pos: -55.5,4.5 + parent: 1 + type: Transform + - uid: 6402 + components: + - pos: -54.5,4.5 + parent: 1 + type: Transform + - uid: 6403 + components: + - pos: -53.5,4.5 + parent: 1 + type: Transform + - uid: 6405 + components: + - pos: -43.5,14.5 + parent: 1 + type: Transform + - uid: 6406 + components: + - pos: -39.5,12.5 + parent: 1 + type: Transform + - uid: 6408 + components: + - pos: -37.5,12.5 + parent: 1 + type: Transform + - uid: 6411 + components: + - pos: -40.5,9.5 + parent: 1 + type: Transform + - uid: 6413 + components: + - pos: -45.5,14.5 + parent: 1 + type: Transform + - uid: 6414 + components: + - pos: -48.5,14.5 + parent: 1 + type: Transform + - uid: 6416 + components: + - pos: -40.5,5.5 + parent: 1 + type: Transform + - uid: 6803 + components: + - pos: -47.5,7.5 + parent: 1 + type: Transform + - uid: 7341 + components: + - pos: -41.5,6.5 + parent: 1 + type: Transform + - uid: 23908 + components: + - pos: 11.5,-48.5 + parent: 1 + type: Transform +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 12110 + components: + - pos: -3.5,-48.5 + parent: 1 + type: Transform + - uid: 25153 + components: + - pos: -37.5,5.5 + parent: 1 + type: Transform + - uid: 25154 + components: + - pos: -38.5,4.5 + parent: 1 + type: Transform + - uid: 25155 + components: + - pos: -38.5,5.5 + parent: 1 + type: Transform + - uid: 25156 + components: + - pos: -37.5,4.5 + parent: 1 + type: Transform +- proto: SpawnPointWarden + entities: + - uid: 7469 + components: + - pos: 79.5,11.5 + parent: 1 + type: Transform +- proto: SpawnVehicleATV + entities: + - uid: 2067 + components: + - pos: -13.5,-2.5 + parent: 1 + type: Transform + - uid: 2571 + components: + - pos: -40.5,-1.5 + parent: 1 + type: Transform + - uid: 2572 + components: + - pos: -41.5,-1.5 + parent: 1 + type: Transform + - uid: 15771 + components: + - pos: -59.5,9.5 + parent: 1 + type: Transform + - uid: 20949 + components: + - pos: -11.5,-2.5 + parent: 1 + type: Transform +- proto: SpawnVehicleJanicart + entities: + - uid: 3538 + components: + - pos: -15.5,7.5 + parent: 1 + type: Transform +- proto: SpawnVehicleMotobike + entities: + - uid: 16388 + components: + - pos: -4.5,34.5 + parent: 1 + type: Transform +- proto: SpawnVehicleSecway + entities: + - uid: 13163 + components: + - pos: 77.5,22.5 + parent: 1 + type: Transform + - uid: 13164 + components: + - pos: 76.5,22.5 + parent: 1 + type: Transform +- proto: SpawnVendingMachineRestockFoodDrink + entities: + - uid: 2130 + components: + - pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 3585 + components: + - pos: -18.5,8.5 + parent: 1 + type: Transform + - uid: 11187 + components: + - pos: -18.5,10.5 + parent: 1 + type: Transform + - uid: 16601 + components: + - pos: 56.5,9.5 + parent: 1 + type: Transform +- proto: SpiderWeb + entities: + - uid: 11387 + components: + - pos: 1.5,-41.5 + parent: 1 + type: Transform + - uid: 11388 + components: + - pos: -1.5,-44.5 + parent: 1 + type: Transform + - uid: 11389 + components: + - pos: -1.5,-43.5 + parent: 1 + type: Transform + - uid: 11390 + components: + - pos: -0.5,-43.5 + parent: 1 + type: Transform + - uid: 11391 + components: + - pos: -0.5,-42.5 + parent: 1 + type: Transform + - uid: 14372 + components: + - pos: -10.5,-34.5 + parent: 1 + type: Transform + - uid: 14373 + components: + - pos: -9.5,-36.5 + parent: 1 + type: Transform +- proto: SprayBottle + entities: + - uid: 12963 + components: + - pos: 23.294107,-35.267822 + parent: 1 + type: Transform + - tags: + - Spray + type: Tag + - solutions: + spray: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 100 + reagents: + - data: null + ReagentId: Water + Quantity: 100 + type: SolutionContainerManager + - uid: 22761 + components: + - rot: 3.141592653589793 rad + pos: -30.611036,19.677345 + parent: 1 + type: Transform + - uid: 22762 + components: + - rot: 3.141592653589793 rad + pos: -30.371454,19.677345 + parent: 1 + type: Transform +- proto: SprayBottleSpaceCleaner + entities: + - uid: 3582 + components: + - pos: -18.60124,9.6989 + parent: 1 + type: Transform + - uid: 3583 + components: + - pos: -18.340822,9.615509 + parent: 1 + type: Transform + - uid: 13931 + components: + - rot: -1.5707963267948966 rad + pos: -7.4049897,-34.800797 + parent: 1 + type: Transform + - uid: 16389 + components: + - pos: -7.3581147,-17.51362 + parent: 1 + type: Transform + - uid: 16390 + components: + - pos: -7.5872817,-17.471924 + parent: 1 + type: Transform + - uid: 16733 + components: + - pos: 77.57948,29.454966 + parent: 1 + type: Transform +- proto: SprayBottleWater + entities: + - uid: 2753 + components: + - pos: -11.362043,17.575872 + parent: 1 + type: Transform + - uid: 25762 + components: + - pos: 15.409637,-7.9829473 + parent: 1 + type: Transform + - uid: 25763 + components: + - pos: 17.034637,-6.325546 + parent: 1 + type: Transform +- proto: SS13Memorial + entities: + - uid: 12785 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-40.5 + parent: 1 + type: Transform +- proto: StasisBed + entities: + - uid: 3512 + components: + - pos: 60.5,-12.5 + parent: 1 + type: Transform +- proto: StasisBedMachineCircuitboard + entities: + - uid: 6582 + components: + - pos: -61.51701,-0.9163426 + parent: 1 + type: Transform +- proto: StationMap + entities: + - uid: 13803 + components: + - rot: -1.5707963267948966 rad + pos: 93.5,7.5 + parent: 1 + type: Transform + - uid: 23417 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 23511 + components: + - pos: 44.5,6.5 + parent: 1 + type: Transform + - uid: 23513 + components: + - pos: 14.5,-22.5 + parent: 1 + type: Transform + - uid: 23514 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,19.5 + parent: 1 + type: Transform +- proto: StationMapBroken + entities: + - uid: 23515 + components: + - pos: 16.5,55.5 + parent: 1 + type: Transform +- proto: StatueVenusBlue + entities: + - uid: 23797 + components: + - pos: 80.5,5.5 + parent: 1 + type: Transform + - uid: 23799 + components: + - pos: 80.5,2.5 + parent: 1 + type: Transform +- proto: StatueVenusRed + entities: + - uid: 23796 + components: + - pos: 86.5,5.5 + parent: 1 + type: Transform + - uid: 23798 + components: + - pos: 86.5,2.5 + parent: 1 + type: Transform +- proto: SteelBench + entities: + - uid: 1667 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 12571 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + type: Transform +- proto: Stool + entities: + - uid: 3243 + components: + - rot: 3.141592653589793 rad + pos: 40.478237,22.958717 + parent: 1 + type: Transform + - uid: 3252 + components: + - rot: 3.141592653589793 rad + pos: 41.509487,22.927446 + parent: 1 + type: Transform + - uid: 6933 + components: + - rot: -1.5707963267948966 rad + pos: 23.023611,-10.480188 + parent: 1 + type: Transform + - uid: 6934 + components: + - rot: -1.5707963267948966 rad + pos: 23.023611,-9.458645 + parent: 1 + type: Transform + - uid: 6935 + components: + - rot: -1.5707963267948966 rad + pos: 23.044443,-8.489222 + parent: 1 + type: Transform + - uid: 7510 + components: + - pos: 17.512272,-6.562121 + parent: 1 + type: Transform + - uid: 7513 + components: + - pos: 16.491438,-6.562121 + parent: 1 + type: Transform + - uid: 7514 + components: + - rot: 1.5707963267948966 rad + pos: 15.606021,-7.437729 + parent: 1 + type: Transform + - uid: 7515 + components: + - rot: 1.5707963267948966 rad + pos: 15.606021,-8.386305 + parent: 1 + type: Transform + - uid: 15787 + components: + - rot: -1.5707963267948966 rad + pos: -58.5,10.5 + parent: 1 + type: Transform + - uid: 22669 + components: + - rot: 3.141592653589793 rad + pos: 88.49075,28.020401 + parent: 1 + type: Transform +- proto: StoolBar + entities: + - uid: 1021 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,20.5 + parent: 1 + type: Transform + - uid: 1023 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,19.5 + parent: 1 + type: Transform + - uid: 1027 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,21.5 + parent: 1 + type: Transform + - uid: 2886 + components: + - pos: 32.5,19.5 + parent: 1 + type: Transform + - uid: 3253 + components: + - pos: 39.5,21.5 + parent: 1 + type: Transform + - uid: 3261 + components: + - pos: 37.5,21.5 + parent: 1 + type: Transform + - uid: 3272 + components: + - pos: 36.5,21.5 + parent: 1 + type: Transform + - uid: 3281 + components: + - pos: 31.5,19.5 + parent: 1 + type: Transform + - uid: 5267 + components: + - pos: 38.5,21.5 + parent: 1 + type: Transform + - uid: 7226 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,17.5 + parent: 1 + type: Transform + - uid: 9433 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,15.5 + parent: 1 + type: Transform + - uid: 9510 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,16.5 + parent: 1 + type: Transform + - uid: 12288 + components: + - pos: -26.5,-34.5 + parent: 1 + type: Transform + - uid: 12289 + components: + - pos: -24.5,-34.5 + parent: 1 + type: Transform + - uid: 12290 + components: + - pos: -23.5,-34.5 + parent: 1 + type: Transform + - uid: 15895 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,45.5 + parent: 1 + type: Transform +- proto: StorageCanister + entities: + - uid: 935 + components: + - pos: -49.5,31.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 1012 + components: + - pos: -4.5,26.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 2502 + components: + - pos: -45.5,31.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 3683 + components: + - pos: -58.5,27.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 3685 + components: + - pos: -59.5,27.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 3691 + components: + - pos: -35.5,22.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 3751 + components: + - pos: -30.5,-29.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 7350 + components: + - pos: -0.5,41.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 8389 + components: + - pos: 55.5,16.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 9526 + components: + - pos: -7.5,-14.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 15731 + components: + - pos: -41.5,-3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 15732 + components: + - pos: -40.5,-3.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 15769 + components: + - pos: -16.5,-38.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 15859 + components: + - pos: -13.5,26.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 15992 + components: + - pos: -19.5,-12.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 16311 + components: + - pos: 25.5,25.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 22575 + components: + - pos: -57.5,25.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice + - uid: 22814 + components: + - pos: -57.5,26.5 + parent: 1 + type: Transform + - joinedGrid: 1 + type: AtmosDevice +- proto: Stunbaton + entities: + - uid: 16713 + components: + - pos: 80.32869,11.702414 + parent: 1 + type: Transform + - uid: 16715 + components: + - pos: 80.412025,11.566902 + parent: 1 + type: Transform +- proto: SubstationBasic + entities: + - uid: 554 + components: + - name: Docking Wing Substation + type: MetaData + - pos: -5.5,-41.5 + parent: 1 + type: Transform + - uid: 2118 + components: + - name: NorthWest Core Section Substation + type: MetaData + - pos: -16.5,22.5 + parent: 1 + type: Transform + - uid: 6630 + components: + - name: Salvage Wing Substation + type: MetaData + - pos: -52.5,-8.5 + parent: 1 + type: Transform + - uid: 6636 + components: + - name: Central Engineering Substation + type: MetaData + - pos: -53.5,9.5 + parent: 1 + type: Transform + - uid: 6639 + components: + - name: Atmospherics Wing Substation + type: MetaData + - pos: -52.5,38.5 + parent: 1 + type: Transform + - uid: 7727 + components: + - name: SouthWest Core Section Substation + type: MetaData + - pos: -12.5,-14.5 + parent: 1 + type: Transform + - uid: 7746 + components: + - name: Medical Wing Substation + type: MetaData + - pos: 90.5,-11.5 + parent: 1 + type: Transform + - uid: 7749 + components: + - name: Bridge(Starboard) Substation + type: MetaData + - pos: 109.5,-4.5 + parent: 1 + type: Transform + - uid: 7754 + components: + - name: SouthEast Core Section Substation + type: MetaData + - pos: 37.5,-16.5 + parent: 1 + type: Transform + - uid: 7768 + components: + - name: NorthEast Core Section Substation + type: MetaData + - pos: 28.5,25.5 + parent: 1 + type: Transform + - uid: 7776 + components: + - name: Epistemics Wing Substation + type: MetaData + - pos: -8.5,40.5 + parent: 1 + type: Transform + - uid: 7783 + components: + - name: Security Wing Substation + type: MetaData + - pos: 91.5,22.5 + parent: 1 + type: Transform + - uid: 8098 + components: + - name: Bridge(Port) Substation + type: MetaData + - pos: 98.5,17.5 + parent: 1 + type: Transform + - uid: 12130 + components: + - name: Particle Accelerator Substation + type: MetaData + - pos: -76.5,10.5 + parent: 1 + type: Transform + - uid: 21031 + components: + - name: server room substation + type: MetaData + - pos: 128.5,0.5 + parent: 1 + type: Transform +- proto: SubstationMachineCircuitboard + entities: + - uid: 6602 + components: + - rot: 1.5707963267948966 rad + pos: -47.560833,-0.3890481 + parent: 1 + type: Transform + - uid: 6603 + components: + - rot: 1.5707963267948966 rad + pos: -47.560833,-0.3890481 + parent: 1 + type: Transform + - uid: 7756 + components: + - pos: 109.56053,-3.463214 + parent: 1 + type: Transform +- proto: SubstationWallBasic + entities: + - uid: 3152 + components: + - rot: 1.5707963267948966 rad + pos: 50.5,25.5 + parent: 1 + type: Transform + - uid: 25256 + components: + - pos: 104.5,29.5 + parent: 1 + type: Transform +- proto: SuitStorageBasic + entities: + - uid: 9553 + components: + - pos: -47.5,-23.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 24628 + components: + - pos: -47.5,-25.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: SuitStorageEngi + entities: + - uid: 11956 + components: + - pos: -43.5,40.5 + parent: 1 + type: Transform + - uid: 11957 + components: + - pos: -42.5,40.5 + parent: 1 + type: Transform + - uid: 24816 + components: + - pos: 85.5,-25.5 + parent: 1 + type: Transform +- proto: SuitStorageEVA + entities: + - uid: 575 + components: + - pos: 19.5,-17.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 576 + - 577 + type: ContainerContainer + - uid: 1376 + components: + - pos: 17.5,-17.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1413 + - 1414 + type: ContainerContainer + - uid: 2314 + components: + - pos: 19.5,-18.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3155 + - 3156 + type: ContainerContainer + - uid: 3781 + components: + - pos: 17.5,-18.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3782 + - 3789 + type: ContainerContainer +- proto: SuitStorageEVAPrisoner + entities: + - uid: 578 + components: + - pos: 76.5,20.5 + parent: 1 + type: Transform + - uid: 942 + components: + - pos: 77.5,20.5 + parent: 1 + type: Transform + - uid: 1416 + components: + - pos: 75.5,20.5 + parent: 1 + type: Transform + - uid: 3799 + components: + - pos: 74.5,20.5 + parent: 1 + type: Transform +- proto: SuitStorageSalv + entities: + - uid: 25615 + components: + - pos: -37.5,-34.5 + parent: 1 + type: Transform +- proto: SuitStorageSec + entities: + - uid: 4907 + components: + - pos: 82.5,16.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4908 + - 5719 + - 5076 + - 5674 + type: ContainerContainer + - uid: 5720 + components: + - pos: 82.5,15.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5077 + - 5721 + - 5727 + - 5725 + type: ContainerContainer + - uid: 25230 + components: + - pos: 71.5,10.5 + parent: 1 + type: Transform + - uid: 25231 + components: + - pos: 72.5,10.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraCommand + entities: + - uid: 3472 + components: + - rot: -1.5707963267948966 rad + pos: 108.5,2.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: bridge + type: SurveillanceCamera + - uid: 21459 + components: + - rot: -1.5707963267948966 rad + pos: 127.5,2.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: server room camera + type: SurveillanceCamera + - uid: 21460 + components: + - pos: 100.5,-3.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: vault camera + type: SurveillanceCamera + - uid: 21461 + components: + - rot: 3.141592653589793 rad + pos: 105.5,11.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: conference room + type: SurveillanceCamera + - uid: 21462 + components: + - pos: 125.5,3.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: server room entrance + type: SurveillanceCamera + - uid: 21463 + components: + - rot: 1.5707963267948966 rad + pos: 101.5,3.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: court room + type: SurveillanceCamera + - uid: 21465 + components: + - name: camera + type: MetaData + - rot: 3.141592653589793 rad + pos: 83.5,5.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: court room entrance + type: SurveillanceCamera + - uid: 21496 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-17.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: EVA room + type: SurveillanceCamera +- proto: SurveillanceCameraConstructed + entities: + - uid: 15267 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-36.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraEngineering + entities: + - uid: 466 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,-1.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: CE office + type: SurveillanceCamera + - uid: 492 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,7.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: gravity generator + type: SurveillanceCamera + - uid: 495 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,4.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: telecomms server room + type: SurveillanceCamera + - uid: 618 + components: + - rot: 3.141592653589793 rad + pos: -39.5,12.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: engineering lounge + type: SurveillanceCamera + - uid: 619 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,29.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: atmos 1 + type: SurveillanceCamera + - uid: 626 + components: + - pos: -42.5,-0.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: engineering main + type: SurveillanceCamera + - uid: 631 + components: + - rot: 3.141592653589793 rad + pos: -56.5,-14.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: battery room + type: SurveillanceCamera + - uid: 680 + components: + - pos: -57.5,24.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: atmos 2 + type: SurveillanceCamera + - uid: 716 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,15.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: hallway-(atmos) + type: SurveillanceCamera + - uid: 4705 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,8.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: engineering kitchen + type: SurveillanceCamera + - uid: 21519 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-14.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: AME + type: SurveillanceCamera + - uid: 21534 + components: + - rot: 3.141592653589793 rad + pos: -54.5,35.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: atmos 3 + type: SurveillanceCamera + - uid: 25545 + components: + - pos: -49.5,-18.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: hallway-(engine) + type: SurveillanceCamera +- proto: SurveillanceCameraGeneral + entities: + - uid: 14395 + components: + - rot: 3.141592653589793 rad + pos: -2.5,12.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: hallway-(botany) + type: SurveillanceCamera + - uid: 15260 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,20.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: hallway (kitchen) + type: SurveillanceCamera + - uid: 15261 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-23.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: hallway (sec-point in) + type: SurveillanceCamera + - uid: 15262 + components: + - pos: 9.5,-41.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: hallway (sec-point out) + type: SurveillanceCamera + - uid: 17521 + components: + - pos: 26.5,-49.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: evac + type: SurveillanceCamera + - uid: 21489 + components: + - pos: 60.5,2.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: hallway-med/sec + type: SurveillanceCamera + - uid: 21490 + components: + - pos: 40.5,2.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: hallway-East commons + type: SurveillanceCamera + - uid: 21491 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-8.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: library + type: SurveillanceCamera + - uid: 21495 + components: + - pos: 27.5,-11.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: arcade + type: SurveillanceCamera + - uid: 21497 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-12.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: clothing boutique + type: SurveillanceCamera + - uid: 21498 + components: + - pos: 17.5,-8.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: barber shop + type: SurveillanceCamera + - uid: 21501 + components: + - pos: 31.5,3.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: park wash rooms + type: SurveillanceCamera + - uid: 21502 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,2.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: park main + type: SurveillanceCamera + - uid: 21503 + components: + - rot: 3.141592653589793 rad + pos: 31.5,12.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: hallway-(park/boxing) + type: SurveillanceCamera + - uid: 21504 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-2.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: hallway-(park/arcade) + type: SurveillanceCamera + - uid: 21505 + components: + - pos: 2.5,-49.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: arrivals + type: SurveillanceCamera + - uid: 21511 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: hallway-(HoP) + type: SurveillanceCamera + - uid: 21535 + components: + - rot: 3.141592653589793 rad + pos: -34.5,5.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: engineering lobby + type: SurveillanceCamera + - uid: 21537 + components: + - rot: 3.141592653589793 rad + pos: -13.5,5.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: hallway-(cargo/jani) + type: SurveillanceCamera + - uid: 21540 + components: + - pos: -13.5,14.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: laundry room + type: SurveillanceCamera + - uid: 21541 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: hallway-(HoP/Dorms) + type: SurveillanceCamera + - uid: 21544 + components: + - pos: 14.5,10.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: hallway-(main intersection) + type: SurveillanceCamera + - uid: 21546 + components: + - pos: 14.5,30.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: hallway-(epistemics) + type: SurveillanceCamera +- proto: SurveillanceCameraMedical + entities: + - uid: 21451 + components: + - rot: 3.141592653589793 rad + pos: 62.5,-15.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: morgue + type: SurveillanceCamera + - uid: 21477 + components: + - rot: 3.141592653589793 rad + pos: 82.5,-13.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: medical break room + type: SurveillanceCamera + - uid: 21479 + components: + - rot: 1.5707963267948966 rad + pos: 67.5,-9.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: medical examination room + type: SurveillanceCamera + - uid: 21482 + components: + - pos: 68.5,-0.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: medical lobby + type: SurveillanceCamera + - uid: 21483 + components: + - rot: -1.5707963267948966 rad + pos: 84.5,-5.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: surgery + type: SurveillanceCamera + - uid: 21485 + components: + - pos: 73.5,-12.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: chemistry lab + type: SurveillanceCamera + - uid: 21486 + components: + - pos: 91.5,-9.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: virology + type: SurveillanceCamera + - uid: 21536 + components: + - rot: 3.141592653589793 rad + pos: -22.5,12.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: medical outpost + type: SurveillanceCamera +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 9773 + components: + - name: command camera router + type: MetaData + - pos: 130.5,6.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 28 + components: + - name: engineering camera router + type: MetaData + - pos: 126.5,1.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 9774 + components: + - name: common camera router + type: MetaData + - pos: 130.5,1.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 788 + components: + - name: medical camera router + type: MetaData + - pos: 126.5,7.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterScience + entities: + - uid: 9633 + components: + - name: epistemics camera router + type: MetaData + - pos: 130.5,0.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 9775 + components: + - name: security camera router + type: MetaData + - pos: 126.5,0.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterService + entities: + - uid: 787 + components: + - name: service camera router + type: MetaData + - pos: 126.5,6.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraScience + entities: + - uid: 4715 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,42.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: epistemics office + type: SurveillanceCamera + - uid: 4716 + components: + - pos: -0.5,39.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: main lab + type: SurveillanceCamera + - uid: 4717 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,44.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: anomaly lab + type: SurveillanceCamera + - uid: 21547 + components: + - rot: 3.141592653589793 rad + pos: 14.5,46.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: epistemics lobby + type: SurveillanceCamera + - uid: 21548 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,43.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: epistemics break room + type: SurveillanceCamera + - uid: 21549 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,49.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: mystagouge's office + type: SurveillanceCamera + - uid: 25551 + components: + - pos: 26.5,48.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Robotics Lab + type: SurveillanceCamera +- proto: SurveillanceCameraSecurity + entities: + - uid: 15263 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-32.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: sec-point arrivals + type: SurveillanceCamera + - uid: 15264 + components: + - pos: 6.5,-33.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: sec-point departures + type: SurveillanceCamera + - uid: 21449 + components: + - rot: -1.5707963267948966 rad + pos: 63.5,26.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: brig cells + type: SurveillanceCamera + - uid: 21458 + components: + - pos: 78.5,24.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: brig commons + type: SurveillanceCamera + - uid: 21469 + components: + - rot: 3.141592653589793 rad + pos: 71.5,5.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: bridge checkpoint + type: SurveillanceCamera + - uid: 21470 + components: + - rot: 1.5707963267948966 rad + pos: 67.5,7.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: security lobby + type: SurveillanceCamera + - uid: 21471 + components: + - pos: 71.5,10.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: security office + type: SurveillanceCamera + - uid: 21472 + components: + - rot: 3.141592653589793 rad + pos: 75.5,22.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: security upper hall + type: SurveillanceCamera + - uid: 21473 + components: + - rot: 1.5707963267948966 rad + pos: 81.5,18.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: armory/lockers + type: SurveillanceCamera + - uid: 21474 + components: + - rot: 3.141592653589793 rad + pos: 88.5,19.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: security break room + type: SurveillanceCamera + - uid: 21488 + components: + - pos: 87.5,24.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: brig rec room + type: SurveillanceCamera + - uid: 21516 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-3.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: 'engineering checkpoint ' + type: SurveillanceCamera +- proto: SurveillanceCameraService + entities: + - uid: 4718 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-9.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: entertainment office + type: SurveillanceCamera + - uid: 15256 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,19.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: kitchen + type: SurveillanceCamera + - uid: 15257 + components: + - pos: -3.5,15.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: hydroponics + type: SurveillanceCamera + - uid: 15258 + components: + - pos: 27.5,14.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: bar/boxing ring + type: SurveillanceCamera + - uid: 15259 + components: + - pos: 42.5,14.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: casino + type: SurveillanceCamera + - uid: 21508 + components: + - pos: 17.5,-44.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: arrivals diner + type: SurveillanceCamera + - uid: 21512 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-11.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: service break room + type: SurveillanceCamera + - uid: 21513 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: HoP's office + type: SurveillanceCamera + - uid: 21538 + components: + - rot: 3.141592653589793 rad + pos: -16.5,12.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: custodial office + type: SurveillanceCamera + - uid: 21539 + components: + - pos: -21.5,14.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: recycling room + type: SurveillanceCamera +- proto: SurveillanceCameraSupply + entities: + - uid: 6283 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-11.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Breakroom + type: SurveillanceCamera + - uid: 12046 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Mailroom + type: SurveillanceCamera + - uid: 12047 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo + type: SurveillanceCamera + - uid: 17459 + components: + - pos: -44.5,-39.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Dock + type: SurveillanceCamera + - uid: 25143 + components: + - rot: -1.5707963267948966 rad + pos: -58.5,-22.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Logistics Officer Office + type: SurveillanceCamera + - uid: 25144 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-29.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage Breakroom + type: SurveillanceCamera + - uid: 25145 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-27.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage Docks + type: SurveillanceCamera + - uid: 25146 + components: + - pos: -40.5,-25.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage Storage + type: SurveillanceCamera +- proto: SurveillanceCameraWirelessRouterEntertainment + entities: + - uid: 2729 + components: + - name: news and entertainment camera router + type: MetaData + - pos: 40.5,-14.5 + parent: 1 + type: Transform +- proto: SurveillanceWirelessCameraAnchoredCircuitboard + entities: + - uid: 16538 + components: + - rot: -1.5707963267948966 rad + pos: 47.702396,41.51853 + parent: 1 + type: Transform +- proto: SurveillanceWirelessCameraAnchoredEntertainment + entities: + - uid: 2656 + components: + - rot: 3.141592653589793 rad + pos: 46.5,-2.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEntertainment + nameSet: True + id: 'Nanotrasen News and Interviews ' + type: SurveillanceCamera + - uid: 2905 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,16.5 + parent: 1 + type: Transform +- proto: SurveillanceWirelessCameraMonitorCircuitboard + entities: + - uid: 22902 + components: + - rot: -1.5707963267948966 rad + pos: -22.407545,-16.483759 + parent: 1 + type: Transform +- proto: SurveillanceWirelessCameraMovableCircuitboard + entities: + - uid: 16539 + components: + - rot: -1.5707963267948966 rad + pos: 47.462814,41.549805 + parent: 1 + type: Transform +- proto: SurveillanceWirelessCameraMovableEntertainment + entities: + - uid: 2848 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-14.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEntertainment + nameSet: True + id: NTV-2 + type: SurveillanceCamera + - uid: 2849 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-14.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEntertainment + nameSet: True + id: NTV-1 + type: SurveillanceCamera +- proto: SynthesizerInstrument + entities: + - uid: 6958 + components: + - pos: 27.394392,-17.379065 + parent: 1 + type: Transform +- proto: Syringe + entities: + - uid: 7294 + components: + - pos: 20.051807,39.634468 + parent: 1 + type: Transform + - tags: [] + type: Tag + - solutions: + injector: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 15 + reagents: + - data: null + ReagentId: Codeine + Quantity: 15 + type: SolutionContainerManager + - uid: 7660 + components: + - pos: 78.58384,-9.200169 + parent: 1 + type: Transform + - tags: [] + type: Tag + - solutions: + injector: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 15 + reagents: + - data: null + ReagentId: Dermaline + Quantity: 15 + type: SolutionContainerManager +- proto: SyringeEphedrine + entities: + - uid: 7659 + components: + - pos: 78.80259,-9.210592 + parent: 1 + type: Transform +- proto: Table + entities: + - uid: 1148 + components: + - pos: 15.5,-44.5 + parent: 1 + type: Transform + - uid: 1149 + components: + - pos: 15.5,-43.5 + parent: 1 + type: Transform + - uid: 1150 + components: + - pos: 18.5,-44.5 + parent: 1 + type: Transform + - uid: 1151 + components: + - pos: 18.5,-43.5 + parent: 1 + type: Transform + - uid: 1153 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,14.5 + parent: 1 + type: Transform + - uid: 1154 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,15.5 + parent: 1 + type: Transform + - uid: 1189 + components: + - pos: -5.5,17.5 + parent: 1 + type: Transform + - uid: 1190 + components: + - pos: -6.5,17.5 + parent: 1 + type: Transform + - uid: 1191 + components: + - pos: -6.5,18.5 + parent: 1 + type: Transform + - uid: 1193 + components: + - pos: -6.5,19.5 + parent: 1 + type: Transform + - uid: 1671 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 1678 + components: + - pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 1897 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + type: Transform + - uid: 1899 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1 + type: Transform + - uid: 1933 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-15.5 + parent: 1 + type: Transform + - uid: 1934 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-14.5 + parent: 1 + type: Transform + - uid: 2028 + components: + - pos: 1.5,-9.5 + parent: 1 + type: Transform + - uid: 2030 + components: + - pos: 2.5,-9.5 + parent: 1 + type: Transform + - uid: 2061 + components: + - pos: -17.5,0.5 + parent: 1 + type: Transform + - uid: 2063 + components: + - pos: -18.5,0.5 + parent: 1 + type: Transform + - uid: 2071 + components: + - pos: -18.5,-1.5 + parent: 1 + type: Transform + - uid: 2072 + components: + - pos: -18.5,-2.5 + parent: 1 + type: Transform + - uid: 2073 + components: + - pos: -16.5,-1.5 + parent: 1 + type: Transform + - uid: 2074 + components: + - pos: -16.5,-2.5 + parent: 1 + type: Transform + - uid: 2075 + components: + - pos: -18.5,-5.5 + parent: 1 + type: Transform + - uid: 2076 + components: + - pos: -18.5,-4.5 + parent: 1 + type: Transform + - uid: 2077 + components: + - pos: -16.5,-5.5 + parent: 1 + type: Transform + - uid: 2078 + components: + - pos: -16.5,-4.5 + parent: 1 + type: Transform + - uid: 2123 + components: + - pos: 1.5,-11.5 + parent: 1 + type: Transform + - uid: 2124 + components: + - pos: 2.5,-11.5 + parent: 1 + type: Transform + - uid: 2541 + components: + - pos: -56.5,2.5 + parent: 1 + type: Transform + - uid: 2542 + components: + - pos: -55.5,2.5 + parent: 1 + type: Transform + - uid: 2543 + components: + - pos: -54.5,2.5 + parent: 1 + type: Transform + - uid: 2912 + components: + - pos: 17.5,23.5 + parent: 1 + type: Transform + - uid: 3556 + components: + - pos: 86.5,18.5 + parent: 1 + type: Transform + - uid: 5075 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-36.5 + parent: 1 + type: Transform + - uid: 5181 + components: + - pos: 32.5,1.5 + parent: 1 + type: Transform + - uid: 5182 + components: + - pos: 33.5,1.5 + parent: 1 + type: Transform + - uid: 5718 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-37.5 + parent: 1 + type: Transform + - uid: 7108 + components: + - rot: -1.5707963267948966 rad + pos: 89.5,18.5 + parent: 1 + type: Transform + - uid: 7109 + components: + - rot: -1.5707963267948966 rad + pos: 89.5,19.5 + parent: 1 + type: Transform + - uid: 7110 + components: + - rot: -1.5707963267948966 rad + pos: 88.5,19.5 + parent: 1 + type: Transform + - uid: 7611 + components: + - rot: -1.5707963267948966 rad + pos: 86.5,-15.5 + parent: 1 + type: Transform + - uid: 7612 + components: + - rot: -1.5707963267948966 rad + pos: 87.5,-15.5 + parent: 1 + type: Transform + - uid: 7614 + components: + - rot: -1.5707963267948966 rad + pos: 87.5,-14.5 + parent: 1 + type: Transform + - uid: 7988 + components: + - pos: -7.5,-37.5 + parent: 1 + type: Transform + - uid: 7989 + components: + - pos: -7.5,-36.5 + parent: 1 + type: Transform + - uid: 8570 + components: + - pos: 4.5,-35.5 + parent: 1 + type: Transform + - uid: 8571 + components: + - pos: 4.5,-33.5 + parent: 1 + type: Transform + - uid: 8572 + components: + - pos: -3.5,-32.5 + parent: 1 + type: Transform + - uid: 8573 + components: + - pos: -2.5,-32.5 + parent: 1 + type: Transform + - uid: 8574 + components: + - pos: -2.5,-33.5 + parent: 1 + type: Transform + - uid: 9806 + components: + - pos: 109.5,-1.5 + parent: 1 + type: Transform + - uid: 9807 + components: + - pos: 109.5,-0.5 + parent: 1 + type: Transform + - uid: 12252 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-28.5 + parent: 1 + type: Transform + - uid: 12253 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-29.5 + parent: 1 + type: Transform + - uid: 12254 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-28.5 + parent: 1 + type: Transform + - uid: 12255 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-29.5 + parent: 1 + type: Transform + - uid: 12318 + components: + - pos: -16.5,-31.5 + parent: 1 + type: Transform + - uid: 12389 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,12.5 + parent: 1 + type: Transform + - uid: 12390 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,12.5 + parent: 1 + type: Transform + - uid: 12391 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,11.5 + parent: 1 + type: Transform + - uid: 12392 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,9.5 + parent: 1 + type: Transform + - uid: 12393 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,9.5 + parent: 1 + type: Transform + - uid: 12394 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,9.5 + parent: 1 + type: Transform + - uid: 12806 + components: + - pos: 31.5,-44.5 + parent: 1 + type: Transform + - uid: 12807 + components: + - pos: 30.5,-44.5 + parent: 1 + type: Transform + - uid: 12808 + components: + - pos: 30.5,-43.5 + parent: 1 + type: Transform + - uid: 12809 + components: + - pos: 30.5,-38.5 + parent: 1 + type: Transform + - uid: 12810 + components: + - pos: 31.5,-38.5 + parent: 1 + type: Transform + - uid: 12811 + components: + - pos: 32.5,-38.5 + parent: 1 + type: Transform + - uid: 12812 + components: + - pos: 33.5,-38.5 + parent: 1 + type: Transform + - uid: 15925 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,42.5 + parent: 1 + type: Transform + - uid: 16362 + components: + - pos: 6.5,-18.5 + parent: 1 + type: Transform + - uid: 16363 + components: + - pos: 6.5,-17.5 + parent: 1 + type: Transform + - uid: 16364 + components: + - pos: 7.5,-17.5 + parent: 1 + type: Transform + - uid: 16365 + components: + - pos: 8.5,-17.5 + parent: 1 + type: Transform + - uid: 16366 + components: + - pos: 8.5,-18.5 + parent: 1 + type: Transform + - uid: 16791 + components: + - pos: 25.5,1.5 + parent: 1 + type: Transform + - uid: 25311 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 25312 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 25313 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform +- proto: TableCarpet + entities: + - uid: 1925 + components: + - pos: 6.5,-15.5 + parent: 1 + type: Transform + - uid: 1926 + components: + - pos: 6.5,-14.5 + parent: 1 + type: Transform + - uid: 1927 + components: + - pos: 5.5,-14.5 + parent: 1 + type: Transform + - uid: 1928 + components: + - pos: 5.5,-15.5 + parent: 1 + type: Transform + - uid: 2883 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,16.5 + parent: 1 + type: Transform + - uid: 2914 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,16.5 + parent: 1 + type: Transform + - uid: 3244 + components: + - pos: 41.5,20.5 + parent: 1 + type: Transform + - uid: 3245 + components: + - pos: 43.5,20.5 + parent: 1 + type: Transform + - uid: 3373 + components: + - pos: 41.5,15.5 + parent: 1 + type: Transform + - uid: 3925 + components: + - pos: 33.5,-14.5 + parent: 1 + type: Transform + - uid: 3926 + components: + - pos: 33.5,-15.5 + parent: 1 + type: Transform + - uid: 3927 + components: + - pos: 34.5,-14.5 + parent: 1 + type: Transform + - uid: 3928 + components: + - pos: 34.5,-15.5 + parent: 1 + type: Transform + - uid: 5464 + components: + - rot: 3.141592653589793 rad + pos: 88.5,24.5 + parent: 1 + type: Transform + - uid: 5465 + components: + - rot: 3.141592653589793 rad + pos: 89.5,24.5 + parent: 1 + type: Transform + - uid: 6332 + components: + - rot: 3.141592653589793 rad + pos: -39.5,10.5 + parent: 1 + type: Transform + - uid: 6333 + components: + - rot: 3.141592653589793 rad + pos: -39.5,9.5 + parent: 1 + type: Transform + - uid: 6334 + components: + - rot: 3.141592653589793 rad + pos: -38.5,9.5 + parent: 1 + type: Transform + - uid: 6335 + components: + - rot: 3.141592653589793 rad + pos: -38.5,10.5 + parent: 1 + type: Transform + - uid: 6693 + components: + - pos: -57.5,-28.5 + parent: 1 + type: Transform + - uid: 6695 + components: + - pos: -57.5,-27.5 + parent: 1 + type: Transform + - uid: 6696 + components: + - pos: -58.5,-28.5 + parent: 1 + type: Transform + - uid: 6878 + components: + - pos: 43.5,15.5 + parent: 1 + type: Transform + - uid: 10627 + components: + - pos: 41.5,16.5 + parent: 1 + type: Transform + - uid: 10629 + components: + - pos: 42.5,15.5 + parent: 1 + type: Transform + - uid: 10712 + components: + - pos: -58.5,-27.5 + parent: 1 + type: Transform + - uid: 13198 + components: + - pos: 52.5,34.5 + parent: 1 + type: Transform + - uid: 13199 + components: + - pos: 52.5,35.5 + parent: 1 + type: Transform + - uid: 16727 + components: + - rot: 3.141592653589793 rad + pos: 93.5,20.5 + parent: 1 + type: Transform +- proto: TableCounterMetal + entities: + - uid: 485 + components: + - pos: 7.5,43.5 + parent: 1 + type: Transform + - uid: 956 + components: + - pos: 9.5,-33.5 + parent: 1 + type: Transform + - uid: 984 + components: + - pos: 8.5,20.5 + parent: 1 + type: Transform + - uid: 1040 + components: + - pos: 8.5,21.5 + parent: 1 + type: Transform + - uid: 1041 + components: + - pos: 8.5,19.5 + parent: 1 + type: Transform + - uid: 1156 + components: + - pos: 21.5,-44.5 + parent: 1 + type: Transform + - uid: 1157 + components: + - pos: 21.5,-43.5 + parent: 1 + type: Transform + - uid: 1476 + components: + - pos: 14.5,-33.5 + parent: 1 + type: Transform + - uid: 1512 + components: + - pos: 14.5,-32.5 + parent: 1 + type: Transform + - uid: 1513 + components: + - pos: 9.5,-32.5 + parent: 1 + type: Transform + - uid: 1674 + components: + - pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 1894 + components: + - pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 2062 + components: + - pos: -16.5,1.5 + parent: 1 + type: Transform + - uid: 2520 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,4.5 + parent: 1 + type: Transform + - uid: 2522 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,5.5 + parent: 1 + type: Transform + - uid: 3030 + components: + - pos: 31.5,29.5 + parent: 1 + type: Transform + - uid: 3829 + components: + - pos: -64.5,15.5 + parent: 1 + type: Transform + - uid: 4268 + components: + - pos: 26.5,2.5 + parent: 1 + type: Transform + - uid: 5172 + components: + - pos: -5.5,8.5 + parent: 1 + type: Transform + - uid: 5174 + components: + - pos: -8.5,6.5 + parent: 1 + type: Transform + - uid: 5447 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 5466 + components: + - pos: 65.5,-1.5 + parent: 1 + type: Transform + - uid: 5580 + components: + - pos: 66.5,-1.5 + parent: 1 + type: Transform + - uid: 5638 + components: + - pos: 68.5,-12.5 + parent: 1 + type: Transform + - uid: 5639 + components: + - pos: 68.5,-11.5 + parent: 1 + type: Transform + - uid: 6697 + components: + - pos: -60.5,-28.5 + parent: 1 + type: Transform + - uid: 6698 + components: + - pos: -60.5,-29.5 + parent: 1 + type: Transform + - uid: 6761 + components: + - pos: -60.5,-29.5 + parent: 1 + type: Transform + - uid: 6762 + components: + - pos: -60.5,-27.5 + parent: 1 + type: Transform + - uid: 7009 + components: + - pos: 56.5,1.5 + parent: 1 + type: Transform + - uid: 8949 + components: + - pos: -9.5,6.5 + parent: 1 + type: Transform + - uid: 16660 + components: + - pos: 71.5,-13.5 + parent: 1 + type: Transform + - uid: 16661 + components: + - pos: 70.5,-13.5 + parent: 1 + type: Transform + - uid: 16995 + components: + - rot: 3.141592653589793 rad + pos: 56.5,7.5 + parent: 1 + type: Transform + - uid: 17149 + components: + - pos: 72.5,-13.5 + parent: 1 + type: Transform + - uid: 22769 + components: + - pos: -19.5,27.5 + parent: 1 + type: Transform + - uid: 22770 + components: + - pos: -18.5,27.5 + parent: 1 + type: Transform + - uid: 22824 + components: + - pos: -63.5,15.5 + parent: 1 + type: Transform + - uid: 23915 + components: + - pos: 71.5,24.5 + parent: 1 + type: Transform + - uid: 25282 + components: + - pos: 104.5,26.5 + parent: 1 + type: Transform + - uid: 25283 + components: + - pos: 104.5,27.5 + parent: 1 + type: Transform +- proto: TableCounterWood + entities: + - uid: 2281 + components: + - pos: 36.5,20.5 + parent: 1 + type: Transform + - uid: 2284 + components: + - pos: 30.5,16.5 + parent: 1 + type: Transform + - uid: 2286 + components: + - pos: 30.5,17.5 + parent: 1 + type: Transform + - uid: 2623 + components: + - pos: 44.5,0.5 + parent: 1 + type: Transform + - uid: 2624 + components: + - pos: 44.5,-0.5 + parent: 1 + type: Transform + - uid: 2625 + components: + - pos: 45.5,-0.5 + parent: 1 + type: Transform + - uid: 2626 + components: + - pos: 46.5,-0.5 + parent: 1 + type: Transform + - uid: 2967 + components: + - pos: 37.5,20.5 + parent: 1 + type: Transform + - uid: 3298 + components: + - pos: 39.5,20.5 + parent: 1 + type: Transform + - uid: 3303 + components: + - pos: 35.5,20.5 + parent: 1 + type: Transform + - uid: 6879 + components: + - pos: 32.5,18.5 + parent: 1 + type: Transform + - uid: 6938 + components: + - pos: 24.5,-10.5 + parent: 1 + type: Transform + - uid: 6939 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-10.5 + parent: 1 + type: Transform + - uid: 6940 + components: + - pos: 27.5,-11.5 + parent: 1 + type: Transform + - uid: 6941 + components: + - pos: 24.5,-9.5 + parent: 1 + type: Transform + - uid: 6942 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-9.5 + parent: 1 + type: Transform + - uid: 6943 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-9.5 + parent: 1 + type: Transform + - uid: 6944 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-9.5 + parent: 1 + type: Transform + - uid: 7516 + components: + - pos: 15.5,-6.5 + parent: 1 + type: Transform + - uid: 9284 + components: + - pos: 31.5,17.5 + parent: 1 + type: Transform + - uid: 10628 + components: + - pos: 38.5,20.5 + parent: 1 + type: Transform + - uid: 11198 + components: + - pos: 30.5,15.5 + parent: 1 + type: Transform + - uid: 12277 + components: + - pos: -24.5,-35.5 + parent: 1 + type: Transform + - uid: 12284 + components: + - pos: -23.5,-35.5 + parent: 1 + type: Transform + - uid: 12285 + components: + - pos: -25.5,-35.5 + parent: 1 + type: Transform + - uid: 12286 + components: + - pos: -26.5,-35.5 + parent: 1 + type: Transform + - uid: 12448 + components: + - pos: 31.5,18.5 + parent: 1 + type: Transform + - uid: 15869 + components: + - pos: -25.5,44.5 + parent: 1 + type: Transform + - uid: 15870 + components: + - pos: -25.5,45.5 + parent: 1 + type: Transform + - uid: 15871 + components: + - pos: -25.5,46.5 + parent: 1 + type: Transform +- proto: TableFrame + entities: + - uid: 8386 + components: + - rot: 1.5707963267948966 rad + pos: 55.5,24.5 + parent: 1 + type: Transform + - uid: 8387 + components: + - rot: 1.5707963267948966 rad + pos: 56.5,24.5 + parent: 1 + type: Transform + - uid: 12420 + components: + - pos: -22.5,-8.5 + parent: 1 + type: Transform + - uid: 12421 + components: + - pos: -21.5,-8.5 + parent: 1 + type: Transform + - uid: 12422 + components: + - pos: -20.5,-8.5 + parent: 1 + type: Transform + - uid: 13915 + components: + - pos: -10.5,-36.5 + parent: 1 + type: Transform + - uid: 13916 + components: + - pos: -12.5,-39.5 + parent: 1 + type: Transform +- proto: TableGlass + entities: + - uid: 903 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,17.5 + parent: 1 + type: Transform + - uid: 968 + components: + - pos: 6.5,-26.5 + parent: 1 + type: Transform + - uid: 2017 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 1 + type: Transform + - uid: 2800 + components: + - pos: 38.5,14.5 + parent: 1 + type: Transform + - uid: 2859 + components: + - pos: 42.5,-9.5 + parent: 1 + type: Transform + - uid: 2977 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,20.5 + parent: 1 + type: Transform + - uid: 3149 + components: + - pos: -13.5,20.5 + parent: 1 + type: Transform + - uid: 3311 + components: + - pos: 13.5,22.5 + parent: 1 + type: Transform + - uid: 3343 + components: + - pos: 29.5,23.5 + parent: 1 + type: Transform + - uid: 3420 + components: + - rot: 3.141592653589793 rad + pos: -22.5,7.5 + parent: 1 + type: Transform + - uid: 3568 + components: + - pos: -18.5,19.5 + parent: 1 + type: Transform + - uid: 3719 + components: + - pos: -14.5,-44.5 + parent: 1 + type: Transform + - uid: 3884 + components: + - pos: 31.5,-13.5 + parent: 1 + type: Transform + - uid: 3885 + components: + - pos: 31.5,-16.5 + parent: 1 + type: Transform + - uid: 4746 + components: + - pos: 9.5,50.5 + parent: 1 + type: Transform + - uid: 4747 + components: + - pos: 8.5,50.5 + parent: 1 + type: Transform + - uid: 5167 + components: + - pos: 21.5,57.5 + parent: 1 + type: Transform + - uid: 5259 + components: + - pos: 38.5,15.5 + parent: 1 + type: Transform + - uid: 5662 + components: + - pos: 65.5,-8.5 + parent: 1 + type: Transform + - uid: 5663 + components: + - pos: 65.5,-9.5 + parent: 1 + type: Transform + - uid: 5664 + components: + - pos: 65.5,-10.5 + parent: 1 + type: Transform + - uid: 5665 + components: + - pos: 65.5,-12.5 + parent: 1 + type: Transform + - uid: 5666 + components: + - pos: 65.5,-13.5 + parent: 1 + type: Transform + - uid: 5713 + components: + - pos: 81.5,-3.5 + parent: 1 + type: Transform + - uid: 5734 + components: + - rot: 3.141592653589793 rad + pos: 76.5,-2.5 + parent: 1 + type: Transform + - uid: 6612 + components: + - pos: -35.5,10.5 + parent: 1 + type: Transform + - uid: 6871 + components: + - pos: -20.5,9.5 + parent: 1 + type: Transform + - uid: 6959 + components: + - pos: 27.5,-13.5 + parent: 1 + type: Transform + - uid: 6960 + components: + - pos: 28.5,-13.5 + parent: 1 + type: Transform + - uid: 7246 + components: + - pos: 29.5,39.5 + parent: 1 + type: Transform + - uid: 7257 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,42.5 + parent: 1 + type: Transform + - uid: 7259 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,42.5 + parent: 1 + type: Transform + - uid: 7260 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,39.5 + parent: 1 + type: Transform + - uid: 7261 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,39.5 + parent: 1 + type: Transform + - uid: 7359 + components: + - pos: 60.5,-13.5 + parent: 1 + type: Transform + - uid: 7581 + components: + - pos: 80.5,-8.5 + parent: 1 + type: Transform + - uid: 7583 + components: + - pos: 78.5,-9.5 + parent: 1 + type: Transform + - uid: 7585 + components: + - pos: 79.5,-9.5 + parent: 1 + type: Transform + - uid: 7586 + components: + - pos: 80.5,-9.5 + parent: 1 + type: Transform + - uid: 7604 + components: + - rot: -1.5707963267948966 rad + pos: 81.5,-16.5 + parent: 1 + type: Transform + - uid: 7605 + components: + - rot: -1.5707963267948966 rad + pos: 84.5,-16.5 + parent: 1 + type: Transform + - uid: 7631 + components: + - rot: -1.5707963267948966 rad + pos: 70.5,-2.5 + parent: 1 + type: Transform + - uid: 7674 + components: + - pos: 84.5,-8.5 + parent: 1 + type: Transform + - uid: 7676 + components: + - pos: 83.5,-13.5 + parent: 1 + type: Transform + - uid: 7682 + components: + - rot: 1.5707963267948966 rad + pos: 84.5,-9.5 + parent: 1 + type: Transform + - uid: 7758 + components: + - pos: 38.5,-16.5 + parent: 1 + type: Transform + - uid: 7987 + components: + - pos: -5.5,-39.5 + parent: 1 + type: Transform + - uid: 8153 + components: + - pos: 53.5,28.5 + parent: 1 + type: Transform + - uid: 8154 + components: + - pos: 52.5,28.5 + parent: 1 + type: Transform + - uid: 8155 + components: + - pos: 53.5,27.5 + parent: 1 + type: Transform + - uid: 9354 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-49.5 + parent: 1 + type: Transform + - uid: 9355 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-49.5 + parent: 1 + type: Transform + - uid: 9356 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-46.5 + parent: 1 + type: Transform + - uid: 9368 + components: + - pos: 16.5,-46.5 + parent: 1 + type: Transform + - uid: 9420 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-49.5 + parent: 1 + type: Transform + - uid: 9428 + components: + - pos: 14.5,-49.5 + parent: 1 + type: Transform + - uid: 9431 + components: + - pos: 11.5,-49.5 + parent: 1 + type: Transform + - uid: 9455 + components: + - pos: 17.5,-26.5 + parent: 1 + type: Transform + - uid: 9471 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-17.5 + parent: 1 + type: Transform + - uid: 9497 + components: + - pos: 13.5,5.5 + parent: 1 + type: Transform + - uid: 9498 + components: + - pos: 13.5,0.5 + parent: 1 + type: Transform + - uid: 9592 + components: + - pos: 109.5,10.5 + parent: 1 + type: Transform + - uid: 9593 + components: + - pos: 110.5,11.5 + parent: 1 + type: Transform + - uid: 9594 + components: + - pos: 109.5,11.5 + parent: 1 + type: Transform + - uid: 9621 + components: + - pos: 115.5,4.5 + parent: 1 + type: Transform + - uid: 9622 + components: + - pos: 115.5,3.5 + parent: 1 + type: Transform + - uid: 11205 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,21.5 + parent: 1 + type: Transform + - uid: 11477 + components: + - pos: 17.5,19.5 + parent: 1 + type: Transform + - uid: 12469 + components: + - pos: 24.5,57.5 + parent: 1 + type: Transform + - uid: 12472 + components: + - pos: 2.5,57.5 + parent: 1 + type: Transform + - uid: 12955 + components: + - pos: 23.5,-36.5 + parent: 1 + type: Transform + - uid: 12956 + components: + - pos: 23.5,-35.5 + parent: 1 + type: Transform + - uid: 15833 + components: + - pos: 13.5,17.5 + parent: 1 + type: Transform + - uid: 15834 + components: + - pos: 10.5,25.5 + parent: 1 + type: Transform + - uid: 15960 + components: + - pos: 25.5,48.5 + parent: 1 + type: Transform + - uid: 16064 + components: + - pos: -17.5,44.5 + parent: 1 + type: Transform + - uid: 16252 + components: + - rot: -1.5707963267948966 rad + pos: 53.5,-17.5 + parent: 1 + type: Transform + - uid: 16522 + components: + - pos: 51.5,41.5 + parent: 1 + type: Transform + - uid: 16523 + components: + - pos: 54.5,41.5 + parent: 1 + type: Transform + - uid: 16610 + components: + - pos: -32.5,7.5 + parent: 1 + type: Transform + - uid: 16611 + components: + - pos: -32.5,0.5 + parent: 1 + type: Transform + - uid: 16767 + components: + - pos: -14.5,-26.5 + parent: 1 + type: Transform + - uid: 17358 + components: + - rot: -1.5707963267948966 rad + pos: 48.5,2.5 + parent: 1 + type: Transform + - uid: 19554 + components: + - pos: -5.5,21.5 + parent: 1 + type: Transform + - uid: 22170 + components: + - pos: -12.5,5.5 + parent: 1 + type: Transform + - uid: 22691 + components: + - pos: 40.5,50.5 + parent: 1 + type: Transform +- proto: TablePlasmaGlass + entities: + - uid: 5995 + components: + - pos: 104.5,7.5 + parent: 1 + type: Transform + - uid: 6034 + components: + - pos: 104.5,8.5 + parent: 1 + type: Transform + - uid: 6237 + components: + - pos: 105.5,8.5 + parent: 1 + type: Transform + - uid: 6239 + components: + - pos: 105.5,7.5 + parent: 1 + type: Transform + - uid: 6240 + components: + - pos: 104.5,9.5 + parent: 1 + type: Transform + - uid: 6241 + components: + - pos: 105.5,9.5 + parent: 1 + type: Transform + - uid: 7291 + components: + - pos: 22.5,42.5 + parent: 1 + type: Transform + - uid: 8480 + components: + - pos: 99.5,-1.5 + parent: 1 + type: Transform + - uid: 9561 + components: + - pos: 99.5,-3.5 + parent: 1 + type: Transform + - uid: 9562 + components: + - pos: 102.5,-3.5 + parent: 1 + type: Transform + - uid: 9563 + components: + - pos: 101.5,-3.5 + parent: 1 + type: Transform + - uid: 9564 + components: + - pos: 102.5,-1.5 + parent: 1 + type: Transform + - uid: 9576 + components: + - pos: 99.5,-2.5 + parent: 1 + type: Transform +- proto: TableReinforced + entities: + - uid: 56 + components: + - pos: -23.5,16.5 + parent: 1 + type: Transform + - uid: 63 + components: + - pos: -24.5,16.5 + parent: 1 + type: Transform + - uid: 857 + components: + - pos: 5.5,24.5 + parent: 1 + type: Transform + - uid: 889 + components: + - pos: 13.5,-35.5 + parent: 1 + type: Transform + - uid: 904 + components: + - pos: 5.5,25.5 + parent: 1 + type: Transform + - uid: 986 + components: + - pos: 8.5,24.5 + parent: 1 + type: Transform + - uid: 990 + components: + - pos: 6.5,25.5 + parent: 1 + type: Transform + - uid: 1018 + components: + - pos: 8.5,23.5 + parent: 1 + type: Transform + - uid: 1042 + components: + - pos: 10.5,-35.5 + parent: 1 + type: Transform + - uid: 1493 + components: + - pos: 12.5,-35.5 + parent: 1 + type: Transform + - uid: 1534 + components: + - pos: 11.5,-35.5 + parent: 1 + type: Transform + - uid: 2008 + components: + - pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 2010 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform + - uid: 2477 + components: + - pos: -44.5,22.5 + parent: 1 + type: Transform + - uid: 2478 + components: + - pos: -46.5,22.5 + parent: 1 + type: Transform + - uid: 2488 + components: + - pos: -45.5,22.5 + parent: 1 + type: Transform + - uid: 2549 + components: + - pos: -43.5,7.5 + parent: 1 + type: Transform + - uid: 2550 + components: + - pos: -43.5,6.5 + parent: 1 + type: Transform + - uid: 2551 + components: + - pos: -43.5,5.5 + parent: 1 + type: Transform + - uid: 2552 + components: + - pos: -43.5,4.5 + parent: 1 + type: Transform + - uid: 3003 + components: + - pos: 113.5,7.5 + parent: 1 + type: Transform + - uid: 3004 + components: + - pos: 114.5,10.5 + parent: 1 + type: Transform + - uid: 3005 + components: + - pos: 114.5,8.5 + parent: 1 + type: Transform + - uid: 3126 + components: + - pos: 113.5,10.5 + parent: 1 + type: Transform + - uid: 3127 + components: + - pos: 114.5,7.5 + parent: 1 + type: Transform + - uid: 3128 + components: + - pos: 114.5,9.5 + parent: 1 + type: Transform + - uid: 3197 + components: + - rot: 3.141592653589793 rad + pos: 57.5,-0.5 + parent: 1 + type: Transform + - uid: 3573 + components: + - pos: -18.5,7.5 + parent: 1 + type: Transform + - uid: 3574 + components: + - pos: -18.5,8.5 + parent: 1 + type: Transform + - uid: 3575 + components: + - pos: -18.5,9.5 + parent: 1 + type: Transform + - uid: 4024 + components: + - rot: 3.141592653589793 rad + pos: 67.5,9.5 + parent: 1 + type: Transform + - uid: 4073 + components: + - rot: 3.141592653589793 rad + pos: 66.5,10.5 + parent: 1 + type: Transform + - uid: 4075 + components: + - pos: 66.5,11.5 + parent: 1 + type: Transform + - uid: 4076 + components: + - pos: 66.5,12.5 + parent: 1 + type: Transform + - uid: 4077 + components: + - pos: 67.5,12.5 + parent: 1 + type: Transform + - uid: 4801 + components: + - pos: 81.5,18.5 + parent: 1 + type: Transform + - uid: 4878 + components: + - pos: 80.5,18.5 + parent: 1 + type: Transform + - uid: 5014 + components: + - pos: -48.5,7.5 + parent: 1 + type: Transform + - uid: 5047 + components: + - pos: -45.5,6.5 + parent: 1 + type: Transform + - uid: 5051 + components: + - pos: -47.5,6.5 + parent: 1 + type: Transform + - uid: 5097 + components: + - pos: -21.5,1.5 + parent: 1 + type: Transform + - uid: 5112 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-0.5 + parent: 1 + type: Transform + - uid: 5114 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 1 + type: Transform + - uid: 5208 + components: + - pos: -45.5,7.5 + parent: 1 + type: Transform + - uid: 5293 + components: + - pos: 74.5,29.5 + parent: 1 + type: Transform + - uid: 5294 + components: + - pos: 74.5,28.5 + parent: 1 + type: Transform + - uid: 5295 + components: + - pos: 77.5,29.5 + parent: 1 + type: Transform + - uid: 5296 + components: + - pos: 77.5,28.5 + parent: 1 + type: Transform + - uid: 5317 + components: + - rot: 3.141592653589793 rad + pos: 73.5,24.5 + parent: 1 + type: Transform + - uid: 5318 + components: + - rot: 3.141592653589793 rad + pos: 73.5,25.5 + parent: 1 + type: Transform + - uid: 5319 + components: + - rot: 3.141592653589793 rad + pos: 76.5,24.5 + parent: 1 + type: Transform + - uid: 5320 + components: + - rot: 3.141592653589793 rad + pos: 76.5,25.5 + parent: 1 + type: Transform + - uid: 5513 + components: + - pos: 72.5,6.5 + parent: 1 + type: Transform + - uid: 5514 + components: + - pos: 72.5,7.5 + parent: 1 + type: Transform + - uid: 5515 + components: + - pos: 72.5,8.5 + parent: 1 + type: Transform + - uid: 5914 + components: + - pos: -40.5,-30.5 + parent: 1 + type: Transform + - uid: 5915 + components: + - pos: -41.5,-30.5 + parent: 1 + type: Transform + - uid: 6340 + components: + - pos: -48.5,6.5 + parent: 1 + type: Transform + - uid: 6347 + components: + - pos: -46.5,6.5 + parent: 1 + type: Transform + - uid: 6546 + components: + - pos: -61.5,0.5 + parent: 1 + type: Transform + - uid: 6548 + components: + - pos: -61.5,-0.5 + parent: 1 + type: Transform + - uid: 6550 + components: + - pos: -61.5,-1.5 + parent: 1 + type: Transform + - uid: 7011 + components: + - rot: 3.141592653589793 rad + pos: 57.5,0.5 + parent: 1 + type: Transform + - uid: 7138 + components: + - pos: 66.5,20.5 + parent: 1 + type: Transform + - uid: 7728 + components: + - pos: -12.5,-17.5 + parent: 1 + type: Transform + - uid: 7729 + components: + - pos: -12.5,-16.5 + parent: 1 + type: Transform + - uid: 7734 + components: + - pos: -6.5,-45.5 + parent: 1 + type: Transform + - uid: 7735 + components: + - pos: -5.5,-45.5 + parent: 1 + type: Transform + - uid: 7736 + components: + - pos: -4.5,-45.5 + parent: 1 + type: Transform + - uid: 7737 + components: + - pos: -4.5,-44.5 + parent: 1 + type: Transform + - uid: 7738 + components: + - pos: -4.5,-43.5 + parent: 1 + type: Transform + - uid: 9896 + components: + - pos: 99.5,17.5 + parent: 1 + type: Transform + - uid: 9897 + components: + - pos: 100.5,17.5 + parent: 1 + type: Transform + - uid: 12355 + components: + - pos: -38.5,-15.5 + parent: 1 + type: Transform + - uid: 12359 + components: + - pos: -38.5,-16.5 + parent: 1 + type: Transform + - uid: 12360 + components: + - pos: -38.5,-17.5 + parent: 1 + type: Transform + - uid: 15742 + components: + - pos: -39.5,-6.5 + parent: 1 + type: Transform + - uid: 15743 + components: + - pos: -39.5,-5.5 + parent: 1 + type: Transform + - uid: 15774 + components: + - pos: -58.5,7.5 + parent: 1 + type: Transform + - uid: 15775 + components: + - pos: -59.5,7.5 + parent: 1 + type: Transform + - uid: 15776 + components: + - pos: -60.5,7.5 + parent: 1 + type: Transform + - uid: 16622 + components: + - rot: 3.141592653589793 rad + pos: -35.5,7.5 + parent: 1 + type: Transform + - uid: 16672 + components: + - rot: 3.141592653589793 rad + pos: 96.5,17.5 + parent: 1 + type: Transform + - uid: 16722 + components: + - rot: 3.141592653589793 rad + pos: 95.5,17.5 + parent: 1 + type: Transform + - uid: 16723 + components: + - rot: 3.141592653589793 rad + pos: 94.5,17.5 + parent: 1 + type: Transform + - uid: 17536 + components: + - pos: -47.5,22.5 + parent: 1 + type: Transform + - uid: 22108 + components: + - pos: 91.5,12.5 + parent: 1 + type: Transform + - uid: 22894 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-16.5 + parent: 1 + type: Transform + - uid: 22895 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-16.5 + parent: 1 + type: Transform + - uid: 22896 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-16.5 + parent: 1 + type: Transform + - uid: 23494 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,25.5 + parent: 1 + type: Transform + - uid: 23495 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,25.5 + parent: 1 + type: Transform + - uid: 23496 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,25.5 + parent: 1 + type: Transform + - uid: 24813 + components: + - pos: 88.5,-26.5 + parent: 1 + type: Transform + - uid: 24814 + components: + - pos: 88.5,-25.5 + parent: 1 + type: Transform +- proto: TableReinforcedGlass + entities: + - uid: 59 + components: + - pos: 92.5,-7.5 + parent: 1 + type: Transform + - uid: 1304 + components: + - pos: 90.5,-5.5 + parent: 1 + type: Transform + - uid: 1306 + components: + - pos: 88.5,-7.5 + parent: 1 + type: Transform + - uid: 1788 + components: + - pos: -13.5,47.5 + parent: 1 + type: Transform + - uid: 1789 + components: + - pos: -13.5,48.5 + parent: 1 + type: Transform + - uid: 4005 + components: + - rot: 3.141592653589793 rad + pos: 59.5,17.5 + parent: 1 + type: Transform + - uid: 4006 + components: + - rot: 3.141592653589793 rad + pos: 59.5,18.5 + parent: 1 + type: Transform + - uid: 4639 + components: + - pos: 0.5,47.5 + parent: 1 + type: Transform + - uid: 4642 + components: + - pos: 1.5,47.5 + parent: 1 + type: Transform + - uid: 4687 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,40.5 + parent: 1 + type: Transform + - uid: 4688 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,39.5 + parent: 1 + type: Transform + - uid: 4689 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,39.5 + parent: 1 + type: Transform + - uid: 4690 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,39.5 + parent: 1 + type: Transform + - uid: 4733 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,42.5 + parent: 1 + type: Transform + - uid: 5022 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,42.5 + parent: 1 + type: Transform + - uid: 5676 + components: + - pos: 70.5,-10.5 + parent: 1 + type: Transform + - uid: 5677 + components: + - pos: 71.5,-10.5 + parent: 1 + type: Transform + - uid: 6551 + components: + - pos: -58.5,0.5 + parent: 1 + type: Transform + - uid: 6591 + components: + - rot: 3.141592653589793 rad + pos: -54.5,-3.5 + parent: 1 + type: Transform + - uid: 6775 + components: + - pos: 76.5,-9.5 + parent: 1 + type: Transform + - uid: 6852 + components: + - pos: -24.5,11.5 + parent: 1 + type: Transform + - uid: 7279 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,39.5 + parent: 1 + type: Transform + - uid: 7280 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,39.5 + parent: 1 + type: Transform + - uid: 7281 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,39.5 + parent: 1 + type: Transform + - uid: 7530 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,12.5 + parent: 1 + type: Transform + - uid: 7531 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,12.5 + parent: 1 + type: Transform + - uid: 7652 + components: + - pos: 86.5,-6.5 + parent: 1 + type: Transform + - uid: 7653 + components: + - pos: 86.5,-5.5 + parent: 1 + type: Transform + - uid: 7654 + components: + - pos: 83.5,-3.5 + parent: 1 + type: Transform + - uid: 7655 + components: + - pos: 83.5,-2.5 + parent: 1 + type: Transform + - uid: 7656 + components: + - pos: 86.5,-3.5 + parent: 1 + type: Transform + - uid: 7657 + components: + - pos: 86.5,-2.5 + parent: 1 + type: Transform + - uid: 10378 + components: + - pos: 73.5,-12.5 + parent: 1 + type: Transform + - uid: 11705 + components: + - rot: 3.141592653589793 rad + pos: 36.5,44.5 + parent: 1 + type: Transform + - uid: 11707 + components: + - rot: 3.141592653589793 rad + pos: 36.5,43.5 + parent: 1 + type: Transform + - uid: 12079 + components: + - pos: 3.5,49.5 + parent: 1 + type: Transform + - uid: 12522 + components: + - pos: -12.5,48.5 + parent: 1 + type: Transform + - uid: 21772 + components: + - pos: 74.5,-12.5 + parent: 1 + type: Transform +- proto: TableStone + entities: + - uid: 899 + components: + - pos: 7.5,18.5 + parent: 1 + type: Transform + - uid: 1076 + components: + - pos: 0.5,21.5 + parent: 1 + type: Transform + - uid: 1160 + components: + - pos: 7.5,13.5 + parent: 1 + type: Transform + - uid: 6974 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-0.5 + parent: 1 + type: Transform + - uid: 6975 + components: + - rot: 3.141592653589793 rad + pos: 16.5,8.5 + parent: 1 + type: Transform + - uid: 6976 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-0.5 + parent: 1 + type: Transform + - uid: 7262 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,46.5 + parent: 1 + type: Transform + - uid: 7263 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,46.5 + parent: 1 + type: Transform + - uid: 7434 + components: + - pos: 13.5,50.5 + parent: 1 + type: Transform + - uid: 7435 + components: + - pos: 14.5,50.5 + parent: 1 + type: Transform + - uid: 7437 + components: + - pos: 11.5,50.5 + parent: 1 + type: Transform + - uid: 13797 + components: + - pos: 26.5,-32.5 + parent: 1 + type: Transform + - uid: 16108 + components: + - pos: 41.5,-38.5 + parent: 1 + type: Transform + - uid: 16156 + components: + - pos: 40.5,-38.5 + parent: 1 + type: Transform +- proto: TableWood + entities: + - uid: 1020 + components: + - pos: 3.5,25.5 + parent: 1 + type: Transform + - uid: 1274 + components: + - pos: -11.5,17.5 + parent: 1 + type: Transform + - uid: 2797 + components: + - pos: 35.5,24.5 + parent: 1 + type: Transform + - uid: 2834 + components: + - pos: 37.5,-11.5 + parent: 1 + type: Transform + - uid: 2835 + components: + - pos: 38.5,-11.5 + parent: 1 + type: Transform + - uid: 2836 + components: + - pos: 38.5,-12.5 + parent: 1 + type: Transform + - uid: 2837 + components: + - pos: 41.5,-11.5 + parent: 1 + type: Transform + - uid: 2839 + components: + - pos: 41.5,-12.5 + parent: 1 + type: Transform + - uid: 2841 + components: + - pos: 42.5,-11.5 + parent: 1 + type: Transform + - uid: 3326 + components: + - pos: 34.5,16.5 + parent: 1 + type: Transform + - uid: 3327 + components: + - pos: 34.5,15.5 + parent: 1 + type: Transform + - uid: 3962 + components: + - pos: 35.5,-6.5 + parent: 1 + type: Transform + - uid: 3963 + components: + - pos: 31.5,-7.5 + parent: 1 + type: Transform + - uid: 3994 + components: + - pos: 61.5,20.5 + parent: 1 + type: Transform + - uid: 3995 + components: + - pos: 60.5,20.5 + parent: 1 + type: Transform + - uid: 4188 + components: + - pos: 71.5,15.5 + parent: 1 + type: Transform + - uid: 4189 + components: + - pos: 72.5,15.5 + parent: 1 + type: Transform + - uid: 4192 + components: + - pos: 71.5,12.5 + parent: 1 + type: Transform + - uid: 4703 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-11.5 + parent: 1 + type: Transform + - uid: 4804 + components: + - pos: 72.5,12.5 + parent: 1 + type: Transform + - uid: 4807 + components: + - pos: 72.5,18.5 + parent: 1 + type: Transform + - uid: 4829 + components: + - pos: 76.5,-5.5 + parent: 1 + type: Transform + - uid: 4880 + components: + - pos: 72.5,19.5 + parent: 1 + type: Transform + - uid: 5715 + components: + - rot: 3.141592653589793 rad + pos: 74.5,-3.5 + parent: 1 + type: Transform + - uid: 5716 + components: + - rot: 3.141592653589793 rad + pos: 72.5,-3.5 + parent: 1 + type: Transform + - uid: 6161 + components: + - rot: -1.5707963267948966 rad + pos: 98.5,5.5 + parent: 1 + type: Transform + - uid: 6162 + components: + - rot: -1.5707963267948966 rad + pos: 98.5,6.5 + parent: 1 + type: Transform + - uid: 6163 + components: + - rot: -1.5707963267948966 rad + pos: 98.5,3.5 + parent: 1 + type: Transform + - uid: 6164 + components: + - rot: -1.5707963267948966 rad + pos: 98.5,2.5 + parent: 1 + type: Transform + - uid: 6936 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-6.5 + parent: 1 + type: Transform + - uid: 6937 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-6.5 + parent: 1 + type: Transform + - uid: 8569 + components: + - pos: 1.5,-36.5 + parent: 1 + type: Transform + - uid: 9373 + components: + - pos: 27.5,-44.5 + parent: 1 + type: Transform + - uid: 9374 + components: + - pos: 27.5,-43.5 + parent: 1 + type: Transform + - uid: 9375 + components: + - pos: 24.5,-44.5 + parent: 1 + type: Transform + - uid: 9376 + components: + - pos: 24.5,-43.5 + parent: 1 + type: Transform + - uid: 9511 + components: + - pos: 32.5,14.5 + parent: 1 + type: Transform + - uid: 9539 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-15.5 + parent: 1 + type: Transform + - uid: 11172 + components: + - pos: -12.5,14.5 + parent: 1 + type: Transform + - uid: 11173 + components: + - pos: -13.5,14.5 + parent: 1 + type: Transform + - uid: 11354 + components: + - pos: 73.5,-3.5 + parent: 1 + type: Transform + - uid: 12369 + components: + - pos: -34.5,-22.5 + parent: 1 + type: Transform + - uid: 12370 + components: + - pos: -34.5,-23.5 + parent: 1 + type: Transform + - uid: 12371 + components: + - pos: -34.5,-24.5 + parent: 1 + type: Transform + - uid: 13932 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-33.5 + parent: 1 + type: Transform + - uid: 15897 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,43.5 + parent: 1 + type: Transform + - uid: 15898 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,46.5 + parent: 1 + type: Transform + - uid: 16136 + components: + - pos: 48.5,-30.5 + parent: 1 + type: Transform + - uid: 16138 + components: + - pos: 49.5,-31.5 + parent: 1 + type: Transform + - uid: 16139 + components: + - pos: 49.5,-30.5 + parent: 1 + type: Transform + - uid: 16324 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-19.5 + parent: 1 + type: Transform + - uid: 16482 + components: + - rot: 1.5707963267948966 rad + pos: 57.5,42.5 + parent: 1 + type: Transform + - uid: 16483 + components: + - rot: 1.5707963267948966 rad + pos: 57.5,43.5 + parent: 1 + type: Transform + - uid: 16484 + components: + - rot: 1.5707963267948966 rad + pos: 58.5,43.5 + parent: 1 + type: Transform + - uid: 16485 + components: + - rot: 1.5707963267948966 rad + pos: 59.5,43.5 + parent: 1 + type: Transform + - uid: 16486 + components: + - rot: 1.5707963267948966 rad + pos: 59.5,36.5 + parent: 1 + type: Transform + - uid: 16487 + components: + - rot: 1.5707963267948966 rad + pos: 58.5,35.5 + parent: 1 + type: Transform + - uid: 16488 + components: + - rot: 1.5707963267948966 rad + pos: 59.5,35.5 + parent: 1 + type: Transform + - uid: 16517 + components: + - pos: 52.5,37.5 + parent: 1 + type: Transform + - uid: 16518 + components: + - pos: 52.5,38.5 + parent: 1 + type: Transform + - uid: 16519 + components: + - pos: 53.5,38.5 + parent: 1 + type: Transform + - uid: 22637 + components: + - rot: 3.141592653589793 rad + pos: 96.5,20.5 + parent: 1 + type: Transform + - uid: 22638 + components: + - rot: 3.141592653589793 rad + pos: 95.5,20.5 + parent: 1 + type: Transform + - uid: 22811 + components: + - rot: -1.5707963267948966 rad + pos: -58.5,36.5 + parent: 1 + type: Transform +- proto: TableWoodReinforced + entities: + - uid: 848 + components: + - pos: 10.5,23.5 + parent: 1 + type: Transform + - uid: 1256 + components: + - pos: -57.5,-22.5 + parent: 1 + type: Transform + - uid: 1282 + components: + - pos: -56.5,-22.5 + parent: 1 + type: Transform + - uid: 2903 + components: + - pos: 18.5,14.5 + parent: 1 + type: Transform + - uid: 3112 + components: + - pos: 42.5,10.5 + parent: 1 + type: Transform + - uid: 3162 + components: + - pos: 91.5,24.5 + parent: 1 + type: Transform + - uid: 3811 + components: + - rot: 3.141592653589793 rad + pos: 62.5,8.5 + parent: 1 + type: Transform + - uid: 4400 + components: + - pos: 44.5,7.5 + parent: 1 + type: Transform + - uid: 4401 + components: + - pos: 41.5,10.5 + parent: 1 + type: Transform + - uid: 4402 + components: + - pos: 44.5,8.5 + parent: 1 + type: Transform + - uid: 4649 + components: + - pos: 107.5,11.5 + parent: 1 + type: Transform + - uid: 4650 + components: + - pos: 107.5,10.5 + parent: 1 + type: Transform + - uid: 4651 + components: + - pos: 107.5,9.5 + parent: 1 + type: Transform + - uid: 5066 + components: + - pos: -55.5,-22.5 + parent: 1 + type: Transform + - uid: 5128 + components: + - pos: 18.5,2.5 + parent: 1 + type: Transform + - uid: 5129 + components: + - pos: 18.5,3.5 + parent: 1 + type: Transform + - uid: 5130 + components: + - pos: 18.5,4.5 + parent: 1 + type: Transform + - uid: 5131 + components: + - pos: 18.5,5.5 + parent: 1 + type: Transform + - uid: 5132 + components: + - pos: 17.5,2.5 + parent: 1 + type: Transform + - uid: 5133 + components: + - pos: 17.5,3.5 + parent: 1 + type: Transform + - uid: 5134 + components: + - pos: 17.5,4.5 + parent: 1 + type: Transform + - uid: 5135 + components: + - pos: 17.5,5.5 + parent: 1 + type: Transform + - uid: 5148 + components: + - pos: 16.5,2.5 + parent: 1 + type: Transform + - uid: 5149 + components: + - pos: 16.5,5.5 + parent: 1 + type: Transform + - uid: 5256 + components: + - pos: 35.5,18.5 + parent: 1 + type: Transform + - uid: 5446 + components: + - rot: 3.141592653589793 rad + pos: 86.5,26.5 + parent: 1 + type: Transform + - uid: 6152 + components: + - pos: 100.5,6.5 + parent: 1 + type: Transform + - uid: 6154 + components: + - pos: 100.5,4.5 + parent: 1 + type: Transform + - uid: 6155 + components: + - pos: 100.5,3.5 + parent: 1 + type: Transform + - uid: 6156 + components: + - pos: 101.5,3.5 + parent: 1 + type: Transform + - uid: 6157 + components: + - pos: 100.5,2.5 + parent: 1 + type: Transform + - uid: 6556 + components: + - pos: -53.5,-0.5 + parent: 1 + type: Transform + - uid: 6557 + components: + - pos: -54.5,-0.5 + parent: 1 + type: Transform + - uid: 6667 + components: + - pos: -57.5,-21.5 + parent: 1 + type: Transform + - uid: 7100 + components: + - pos: 78.5,10.5 + parent: 1 + type: Transform + - uid: 7101 + components: + - pos: 78.5,11.5 + parent: 1 + type: Transform + - uid: 7102 + components: + - pos: 77.5,17.5 + parent: 1 + type: Transform + - uid: 7103 + components: + - pos: 77.5,18.5 + parent: 1 + type: Transform + - uid: 7438 + components: + - pos: 18.5,48.5 + parent: 1 + type: Transform + - uid: 9453 + components: + - pos: 29.5,-34.5 + parent: 1 + type: Transform + - uid: 9454 + components: + - pos: 30.5,-34.5 + parent: 1 + type: Transform + - uid: 9456 + components: + - pos: 31.5,-34.5 + parent: 1 + type: Transform + - uid: 11428 + components: + - pos: 1.5,-44.5 + parent: 1 + type: Transform + - uid: 11438 + components: + - pos: 1.5,-43.5 + parent: 1 + type: Transform + - uid: 12300 + components: + - pos: -23.5,-37.5 + parent: 1 + type: Transform + - uid: 12301 + components: + - pos: -24.5,-37.5 + parent: 1 + type: Transform + - uid: 12462 + components: + - pos: 3.5,-42.5 + parent: 1 + type: Transform + - uid: 12523 + components: + - rot: 3.141592653589793 rad + pos: -13.5,51.5 + parent: 1 + type: Transform + - uid: 12952 + components: + - pos: 26.5,-35.5 + parent: 1 + type: Transform + - uid: 13805 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-33.5 + parent: 1 + type: Transform + - uid: 15972 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,52.5 + parent: 1 + type: Transform + - uid: 15973 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,52.5 + parent: 1 + type: Transform + - uid: 16555 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,37.5 + parent: 1 + type: Transform + - uid: 16556 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,38.5 + parent: 1 + type: Transform + - uid: 21455 + components: + - pos: 100.5,5.5 + parent: 1 + type: Transform + - uid: 22641 + components: + - pos: 92.5,-3.5 + parent: 1 + type: Transform + - uid: 22643 + components: + - pos: 91.5,-3.5 + parent: 1 + type: Transform + - uid: 25295 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-13.5 + parent: 1 + type: Transform +- proto: tatamimat + entities: + - uid: 15270 + components: + - pos: -5.5,-38.5 + parent: 1 + type: Transform + - uid: 15271 + components: + - pos: -6.5,-38.5 + parent: 1 + type: Transform + - uid: 15272 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-36.5 + parent: 1 + type: Transform + - uid: 15273 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-37.5 + parent: 1 + type: Transform + - uid: 15274 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-36.5 + parent: 1 + type: Transform + - uid: 15275 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-37.5 + parent: 1 + type: Transform +- proto: TelecomServer + entities: + - uid: 6415 + components: + - pos: -61.5,3.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 6417 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 6529 + components: + - pos: -59.5,5.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 6530 + - 6531 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 6532 + components: + - pos: -60.5,5.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 6533 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 6534 + components: + - pos: -61.5,5.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 6535 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 6536 + components: + - pos: -59.5,3.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 6537 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 6538 + components: + - pos: -61.5,2.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 6539 + - 6540 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 6541 + components: + - pos: -59.5,2.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 6542 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer +- proto: TelecomServerCircuitboard + entities: + - uid: 6571 + components: + - pos: -61.504536,-1.4635959 + parent: 1 + type: Transform +- proto: ThermomachineHeaterMachineCircuitBoard + entities: + - uid: 6499 + components: + - pos: -46.528687,22.511957 + parent: 1 + type: Transform + - uid: 6601 + components: + - rot: 1.5707963267948966 rad + pos: -47.675415,-0.37862384 + parent: 1 + type: Transform + - uid: 16101 + components: + - pos: 28.556608,34.49917 + parent: 1 + type: Transform +- proto: TintedWindow + entities: + - uid: 16594 + components: + - pos: 13.5,47.5 + parent: 1 + type: Transform + - uid: 21773 + components: + - pos: -54.5,-27.5 + parent: 1 + type: Transform + - uid: 22935 + components: + - pos: 11.5,47.5 + parent: 1 + type: Transform +- proto: ToiletDirtyWater + entities: + - uid: 4366 + components: + - pos: 31.5,8.5 + parent: 1 + type: Transform + - uid: 5126 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-5.5 + parent: 1 + type: Transform + - uid: 5298 + components: + - rot: 1.5707963267948966 rad + pos: 63.5,25.5 + parent: 1 + type: Transform + - uid: 5300 + components: + - rot: 1.5707963267948966 rad + pos: 66.5,28.5 + parent: 1 + type: Transform + - uid: 16244 + components: + - rot: 3.141592653589793 rad + pos: 52.5,-17.5 + parent: 1 + type: Transform +- proto: ToiletEmpty + entities: + - uid: 853 + components: + - pos: -0.5,25.5 + parent: 1 + type: Transform + - uid: 1852 + components: + - pos: -11.5,-11.5 + parent: 1 + type: Transform + - uid: 3054 + components: + - pos: 31.5,25.5 + parent: 1 + type: Transform + - uid: 3484 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,-17.5 + parent: 1 + type: Transform + - uid: 4363 + components: + - pos: 29.5,8.5 + parent: 1 + type: Transform + - uid: 4364 + components: + - pos: 33.5,8.5 + parent: 1 + type: Transform + - uid: 4365 + components: + - pos: 35.5,8.5 + parent: 1 + type: Transform + - uid: 5297 + components: + - rot: 1.5707963267948966 rad + pos: 63.5,28.5 + parent: 1 + type: Transform + - uid: 5309 + components: + - rot: 1.5707963267948966 rad + pos: 69.5,28.5 + parent: 1 + type: Transform + - uid: 5310 + components: + - rot: 1.5707963267948966 rad + pos: 66.5,25.5 + parent: 1 + type: Transform + - solutions: + toilet: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 250 + reagents: + - data: null + ReagentId: BahamaMama + Quantity: 100 + type: SolutionContainerManager + - uid: 6313 + components: + - pos: -48.5,14.5 + parent: 1 + type: Transform + - uid: 6314 + components: + - pos: -45.5,14.5 + parent: 1 + type: Transform + - uid: 6822 + components: + - rot: 3.141592653589793 rad + pos: -48.5,-30.5 + parent: 1 + type: Transform + - uid: 6921 + components: + - pos: 33.5,25.5 + parent: 1 + type: Transform + - uid: 7720 + components: + - pos: -29.5,32.5 + parent: 1 + type: Transform + - solutions: + toilet: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 250 + reagents: + - data: null + ReagentId: SpaceDrugs + Quantity: 250 + type: SolutionContainerManager + - uid: 9803 + components: + - pos: 108.5,-0.5 + parent: 1 + type: Transform + - uid: 11167 + components: + - pos: -15.5,19.5 + parent: 1 + type: Transform + - uid: 23776 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,36.5 + parent: 1 + type: Transform +- proto: TomDrumsInstrument + entities: + - uid: 3277 + components: + - pos: 27.5,21.5 + parent: 1 + type: Transform +- proto: ToolboxElectricalFilled + entities: + - uid: 2560 + components: + - pos: -43.526726,5.2924495 + parent: 1 + type: Transform + - uid: 6518 + components: + - pos: -39.493694,35.660034 + parent: 1 + type: Transform + - uid: 11958 + components: + - pos: -38.466843,40.621162 + parent: 1 + type: Transform + - uid: 16117 + components: + - pos: 34.521114,-36.36554 + parent: 1 + type: Transform + - uid: 16385 + components: + - pos: 4.4796867,-19.344759 + parent: 1 + type: Transform + - uid: 17540 + components: + - pos: 57.48263,-10.339664 + parent: 1 + type: Transform + - uid: 21531 + components: + - pos: -59.488827,-18.34462 + parent: 1 + type: Transform +- proto: ToolboxEmergencyFilled + entities: + - uid: 2558 + components: + - pos: -43.526726,5.9022484 + parent: 1 + type: Transform + - uid: 3009 + components: + - pos: 55.486626,17.676275 + parent: 1 + type: Transform + - uid: 4351 + components: + - pos: 18.508778,-15.3543625 + parent: 1 + type: Transform + - uid: 4673 + components: + - pos: -12.497769,43.675278 + parent: 1 + type: Transform + - uid: 7540 + components: + - pos: 47.470543,11.641436 + parent: 1 + type: Transform + - uid: 16354 + components: + - pos: 35.537704,-19.633842 + parent: 1 + type: Transform +- proto: ToolboxGoldFilled + entities: + - uid: 22629 + components: + - pos: 113.5876,10.589914 + parent: 1 + type: Transform +- proto: ToolboxMechanicalFilled + entities: + - uid: 2559 + components: + - pos: -43.486103,5.5770216 + parent: 1 + type: Transform + - uid: 6520 + components: + - pos: -38.50411,35.649612 + parent: 1 + type: Transform + - uid: 9859 + components: + - pos: 115.51419,1.6393521 + parent: 1 + type: Transform + - uid: 11489 + components: + - pos: 1.5953954,-43.51494 + parent: 1 + type: Transform + - uid: 12330 + components: + - pos: -15.533917,-31.36511 + parent: 1 + type: Transform + - uid: 12902 + components: + - pos: 33.46951,-38.273834 + parent: 1 + type: Transform + - uid: 15780 + components: + - pos: -58.497425,9.664507 + parent: 1 + type: Transform + - uid: 17541 + components: + - pos: 57.492496,-12.343625 + parent: 1 + type: Transform + - uid: 23476 + components: + - pos: -13.477189,29.661222 + parent: 1 + type: Transform +- proto: Torch + entities: + - uid: 11424 + components: + - pos: -2.5112228,-43.438583 + parent: 1 + type: Transform + - uid: 11425 + components: + - rot: 3.141592653589793 rad + pos: -2.4799728,-43.59494 + parent: 1 + type: Transform + - uid: 15946 + components: + - rot: -1.5707963267948966 rad + pos: 22.57196,48.411674 + parent: 1 + type: Transform + - uid: 15947 + components: + - rot: -1.5707963267948966 rad + pos: 22.582376,48.495064 + parent: 1 + type: Transform + - uid: 15948 + components: + - rot: -1.5707963267948966 rad + pos: 22.811543,48.55761 + parent: 1 + type: Transform + - uid: 15949 + components: + - rot: -1.5707963267948966 rad + pos: 22.707376,48.515915 + parent: 1 + type: Transform + - uid: 17290 + components: + - pos: 40.4923,-38.35749 + parent: 1 + type: Transform +- proto: ToyAi + entities: + - uid: 9632 + components: + - pos: 130.02727,4.142705 + parent: 1 + type: Transform +- proto: ToyGygax + entities: + - uid: 17549 + components: + - pos: 31.531408,41.07316 + parent: 1 + type: Transform +- proto: ToyIan + entities: + - uid: 2590 + components: + - pos: 3.905285,-1.4397969 + parent: 1 + type: Transform +- proto: ToyMouse + entities: + - uid: 12795 + components: + - pos: 28.765259,-32.01741 + parent: 1 + type: Transform + - uid: 15978 + components: + - pos: -27.625803,32.806747 + parent: 1 + type: Transform +- proto: ToyPhazon + entities: + - uid: 6949 + components: + - pos: 26.669445,-11.380185 + parent: 1 + type: Transform +- proto: ToyRubberDuck + entities: + - uid: 9808 + components: + - pos: 109.517685,-0.46876407 + parent: 1 + type: Transform + - uid: 16063 + components: + - pos: -17.5,47.5 + parent: 1 + type: Transform +- proto: ToySpawner + entities: + - uid: 5168 + components: + - pos: -0.5,57.5 + parent: 1 + type: Transform + - uid: 5504 + components: + - pos: 85.5,27.5 + parent: 1 + type: Transform + - uid: 16748 + components: + - pos: 95.5,17.5 + parent: 1 + type: Transform +- proto: TrackingImplanter + entities: + - uid: 12054 + components: + - rot: 1.5707963267948966 rad + pos: 63.682888,19.57106 + parent: 1 + type: Transform +- proto: TrashBananaPeel + entities: + - uid: 13924 + components: + - rot: -1.5707963267948966 rad + pos: -12.808618,-38.17189 + parent: 1 + type: Transform + - uid: 16123 + components: + - pos: 36.157314,-38.960274 + parent: 1 + type: Transform + - uid: 22695 + components: + - rot: -1.5707963267948966 rad + pos: 38.848614,48.25934 + parent: 1 + type: Transform +- proto: trayScanner + entities: + - uid: 6616 + components: + - rot: 3.141592653589793 rad + pos: -54.0254,-0.42244828 + parent: 1 + type: Transform + - uid: 12251 + components: + - rot: -1.5707963267948966 rad + pos: -4.4007874,-44.80181 + parent: 1 + type: Transform + - uid: 21533 + components: + - pos: -58.60377,-14.360134 + parent: 1 + type: Transform +- proto: TwoWayLever + entities: + - uid: 3560 + components: + - pos: -22.5,15.5 + parent: 1 + type: Transform + - linkedPorts: + 3555: + - Left: Forward + - Right: Reverse + - Middle: Off + 3557: + - Left: Forward + - Right: Reverse + - Middle: Off + 3558: + - Left: Forward + - Right: Reverse + - Middle: Off + 3559: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 6849 + components: + - pos: -9.5,-2.5 + parent: 1 + type: Transform + - linkedPorts: + 1875: + - Left: Forward + - Right: Reverse + - Middle: Off + 1873: + - Left: Forward + - Right: Reverse + - Middle: Off + 1872: + - Left: Forward + - Right: Reverse + - Middle: Off + 12386: + - Left: Open + - Right: Open + - Middle: Close + type: DeviceLinkSource + - uid: 14385 + components: + - pos: -7.5,25.5 + parent: 1 + type: Transform + - linkedPorts: + 14381: + - Left: Forward + - Right: Reverse + - Middle: Off + 14384: + - Left: Forward + - Right: Reverse + - Middle: Off + 14382: + - Left: Forward + - Right: Reverse + - Middle: Off + 14383: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource +- proto: UnfinishedMachineFrame + entities: + - uid: 12302 + components: + - pos: -23.5,-37.5 + parent: 1 + type: Transform + - uid: 12303 + components: + - pos: -24.5,-37.5 + parent: 1 + type: Transform + - uid: 12404 + components: + - pos: -11.5,10.5 + parent: 1 + type: Transform + - uid: 15813 + components: + - pos: -60.5,14.5 + parent: 1 + type: Transform + - uid: 22658 + components: + - pos: 94.5,-15.5 + parent: 1 + type: Transform + - uid: 22773 + components: + - pos: -22.5,22.5 + parent: 1 + type: Transform +- proto: UniformJabroni + entities: + - uid: 15982 + components: + - rot: 1.5707963267948966 rad + pos: -26.664665,33.630234 + parent: 1 + type: Transform +- proto: UniformPrinter + entities: + - uid: 1987 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform +- proto: UniformScrubsColorGreen + entities: + - uid: 25170 + components: + - rot: 3.141592653589793 rad + pos: 29.42162,48.64881 + parent: 1 + type: Transform + - uid: 25171 + components: + - rot: 3.141592653589793 rad + pos: 29.629953,48.680084 + parent: 1 + type: Transform +- proto: UnstableMutagenChemistryBottle + entities: + - uid: 12884 + components: + - pos: 31.417429,-38.41977 + parent: 1 + type: Transform +- proto: UprightPianoInstrument + entities: + - uid: 2894 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,22.5 + parent: 1 + type: Transform + - uid: 22668 + components: + - rot: 3.141592653589793 rad + pos: 88.5,28.5 + parent: 1 + type: Transform +- proto: Vaccinator + entities: + - uid: 7701 + components: + - pos: 92.5,-8.5 + parent: 1 + type: Transform +- proto: VehicleKeyATV + entities: + - uid: 6614 + components: + - pos: -41.16545,-1.5169582 + parent: 1 + type: Transform + - uid: 6615 + components: + - pos: -40.155033,-1.5065346 + parent: 1 + type: Transform + - uid: 25317 + components: + - pos: -3.7712626,-3.6350017 + parent: 1 + type: Transform +- proto: VehicleKeyJanicart + entities: + - uid: 3581 + components: + - pos: -18.517906,8.2082815 + parent: 1 + type: Transform +- proto: VehicleKeySecway + entities: + - uid: 13155 + components: + - rot: -1.5707963267948966 rad + pos: 78.625916,11.489756 + parent: 1 + type: Transform + - uid: 13156 + components: + - pos: 78.45925,11.406364 + parent: 1 + type: Transform +- proto: VehicleKeySkeleton + entities: + - uid: 23800 + components: + - pos: -4.8936534,34.49346 + parent: 1 + type: Transform +- proto: VendingBarDrobe + entities: + - uid: 3363 + components: + - flags: SessionSpecific + type: MetaData + - pos: 36.5,17.5 + parent: 1 + type: Transform +- proto: VendingMachineAtmosDrobe + entities: + - uid: 6418 + components: + - flags: SessionSpecific + type: MetaData + - pos: -36.5,30.5 + parent: 1 + type: Transform +- proto: VendingMachineBooze + entities: + - uid: 3325 + components: + - flags: SessionSpecific + type: MetaData + - pos: 34.5,17.5 + parent: 1 + type: Transform + - uid: 12304 + components: + - flags: SessionSpecific + type: MetaData + - pos: -25.5,-37.5 + parent: 1 + type: Transform + - uid: 15896 + components: + - flags: SessionSpecific + type: MetaData + - pos: -27.5,43.5 + parent: 1 + type: Transform +- proto: VendingMachineBoxingDrobe + entities: + - uid: 2906 + components: + - flags: SessionSpecific + type: MetaData + - pos: 15.5,25.5 + parent: 1 + type: Transform +- proto: VendingMachineCargoDrobe + entities: + - uid: 1976 + components: + - flags: SessionSpecific + type: MetaData + - pos: -7.5,-12.5 + parent: 1 + type: Transform +- proto: VendingMachineCart + entities: + - uid: 2005 + components: + - flags: SessionSpecific + type: MetaData + - pos: 1.5,-2.5 + parent: 1 + type: Transform +- proto: VendingMachineChapel + entities: + - uid: 7346 + components: + - flags: SessionSpecific + type: MetaData + - pos: 14.5,48.5 + parent: 1 + type: Transform +- proto: VendingMachineChefDrobe + entities: + - uid: 978 + components: + - flags: SessionSpecific + type: MetaData + - pos: 3.5,19.5 + parent: 1 + type: Transform +- proto: VendingMachineChefvend + entities: + - uid: 1015 + components: + - flags: SessionSpecific + type: MetaData + - pos: 5.5,22.5 + parent: 1 + type: Transform + - uid: 1527 + components: + - flags: SessionSpecific + type: MetaData + - pos: 20.5,-41.5 + parent: 1 + type: Transform +- proto: VendingMachineChemDrobe + entities: + - uid: 10383 + components: + - flags: SessionSpecific + type: MetaData + - pos: 73.5,-9.5 + parent: 1 + type: Transform +- proto: VendingMachineChemicals + entities: + - uid: 3572 + components: + - flags: SessionSpecific + type: MetaData + - pos: -24.5,10.5 + parent: 1 + type: Transform +- proto: VendingMachineCigs + entities: + - uid: 2292 + components: + - flags: SessionSpecific + type: MetaData + - pos: 31.5,22.5 + parent: 1 + type: Transform + - uid: 10802 + components: + - pos: -55.5,-30.5 + parent: 1 + type: Transform + - uid: 11718 + components: + - flags: SessionSpecific + type: MetaData + - pos: 32.5,51.5 + parent: 1 + type: Transform +- proto: VendingMachineClothing + entities: + - uid: 1697 + components: + - flags: SessionSpecific + type: MetaData + - pos: 8.5,-9.5 + parent: 1 + type: Transform +- proto: VendingMachineCoffee + entities: + - uid: 550 + components: + - flags: SessionSpecific + type: MetaData + - pos: 90.5,9.5 + parent: 1 + type: Transform + - uid: 7106 + components: + - flags: SessionSpecific + type: MetaData + - pos: 86.5,22.5 + parent: 1 + type: Transform +- proto: VendingMachineCondiments + entities: + - uid: 1019 + components: + - flags: SessionSpecific + type: MetaData + - pos: 10.5,23.5 + parent: 1 + type: Transform + - uid: 5337 + components: + - flags: SessionSpecific + type: MetaData + - pos: 73.5,25.5 + parent: 1 + type: Transform + - uid: 6802 + components: + - flags: SessionSpecific + type: MetaData + - rot: 3.141592653589793 rad + pos: -46.5,6.5 + parent: 1 + type: Transform +- proto: VendingMachineCourierDrobe + entities: + - uid: 12058 + components: + - pos: -13.5,-5.5 + parent: 1 + type: Transform +- proto: VendingMachineDinnerware + entities: + - uid: 993 + components: + - flags: SessionSpecific + type: MetaData + - pos: 4.5,19.5 + parent: 1 + type: Transform + - uid: 1532 + components: + - flags: SessionSpecific + type: MetaData + - pos: 16.5,-41.5 + parent: 1 + type: Transform + - uid: 5186 + components: + - flags: SessionSpecific + type: MetaData + - pos: 32.5,-0.5 + parent: 1 + type: Transform +- proto: VendingMachineDonut + entities: + - uid: 7107 + components: + - flags: SessionSpecific + type: MetaData + - pos: 87.5,22.5 + parent: 1 + type: Transform +- proto: VendingMachineEngiDrobe + entities: + - uid: 2442 + components: + - flags: SessionSpecific + type: MetaData + - pos: -43.5,-2.5 + parent: 1 + type: Transform +- proto: VendingMachineEngivend + entities: + - uid: 2443 + components: + - flags: SessionSpecific + type: MetaData + - pos: -43.5,-1.5 + parent: 1 + type: Transform + - uid: 3121 + components: + - flags: SessionSpecific + type: MetaData + - pos: 57.5,-1.5 + parent: 1 + type: Transform +- proto: VendingMachineGames + entities: + - uid: 5472 + components: + - flags: SessionSpecific + type: MetaData + - pos: 83.5,27.5 + parent: 1 + type: Transform + - uid: 6931 + components: + - flags: SessionSpecific + type: MetaData + - pos: 29.5,-8.5 + parent: 1 + type: Transform +- proto: VendingMachineHappyHonk + entities: + - uid: 1022 + components: + - flags: SessionSpecific + type: MetaData + - pos: 5.5,19.5 + parent: 1 + type: Transform +- proto: VendingMachineHydrobe + entities: + - uid: 1196 + components: + - flags: SessionSpecific + type: MetaData + - pos: -3.5,24.5 + parent: 1 + type: Transform +- proto: VendingMachineJaniDrobe + entities: + - uid: 3539 + components: + - flags: SessionSpecific + type: MetaData + - pos: -13.5,12.5 + parent: 1 + type: Transform + - uid: 4931 + components: + - flags: SessionSpecific + type: MetaData + - pos: 57.5,9.5 + parent: 1 + type: Transform +- proto: VendingMachineLawDrobe + entities: + - uid: 7535 + components: + - flags: SessionSpecific + type: MetaData + - pos: 46.5,13.5 + parent: 1 + type: Transform +- proto: VendingMachineMedical + entities: + - uid: 8718 + components: + - flags: SessionSpecific + type: MetaData + - pos: 61.5,-6.5 + parent: 1 + type: Transform +- proto: VendingMachineMediDrobe + entities: + - uid: 7628 + components: + - flags: SessionSpecific + type: MetaData + - pos: 87.5,-13.5 + parent: 1 + type: Transform +- proto: VendingMachineMNKDrobe + entities: + - uid: 7466 + components: + - flags: SessionSpecific + type: MetaData + - pos: 29.5,-10.5 + parent: 1 + type: Transform +- proto: VendingMachineNutri + entities: + - uid: 1212 + components: + - flags: SessionSpecific + type: MetaData + - pos: -3.5,21.5 + parent: 1 + type: Transform +- proto: VendingMachinePride + entities: + - uid: 6930 + components: + - flags: SessionSpecific + type: MetaData + - pos: 29.5,-11.5 + parent: 1 + type: Transform +- proto: VendingMachinePwrGame + entities: + - uid: 16070 + components: + - flags: SessionSpecific + type: MetaData + - pos: 41.5,47.5 + parent: 1 + type: Transform +- proto: VendingMachineRepDrobe + entities: + - uid: 2833 + components: + - flags: SessionSpecific + type: MetaData + - pos: 41.5,-9.5 + parent: 1 + type: Transform +- proto: VendingMachineRoboDrobe + entities: + - uid: 12094 + components: + - pos: 30.5,50.5 + parent: 1 + type: Transform +- proto: VendingMachineRobotics + entities: + - uid: 11631 + components: + - pos: 26.5,50.5 + parent: 1 + type: Transform +- proto: VendingMachineSalvage + entities: + - uid: 12027 + components: + - pos: -37.5,-27.5 + parent: 1 + type: Transform +- proto: VendingMachineSciDrobe + entities: + - uid: 4744 + components: + - flags: SessionSpecific + type: MetaData + - pos: 23.5,46.5 + parent: 1 + type: Transform +- proto: VendingMachineSec + entities: + - uid: 4905 + components: + - flags: SessionSpecific + type: MetaData + - pos: 84.5,20.5 + parent: 1 + type: Transform +- proto: VendingMachineSecDrobe + entities: + - uid: 4071 + components: + - flags: SessionSpecific + type: MetaData + - pos: 87.5,15.5 + parent: 1 + type: Transform +- proto: VendingMachineSeeds + entities: + - uid: 1211 + components: + - flags: SessionSpecific + type: MetaData + - pos: -3.5,20.5 + parent: 1 + type: Transform +- proto: VendingMachineSovietSoda + entities: + - uid: 2865 + components: + - flags: SessionSpecific + type: MetaData + - pos: -56.5,-30.5 + parent: 1 + type: Transform +- proto: VendingMachineSustenance + entities: + - uid: 5176 + components: + - flags: SessionSpecific + type: MetaData + - pos: 80.5,29.5 + parent: 1 + type: Transform +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 25569 + components: + - pos: -74.5,5.5 + parent: 1 + type: Transform +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 2545 + components: + - flags: SessionSpecific + type: MetaData + - pos: -53.5,2.5 + parent: 1 + type: Transform + - uid: 4330 + components: + - flags: SessionSpecific + type: MetaData + - pos: 19.5,-15.5 + parent: 1 + type: Transform + - uid: 6497 + components: + - flags: SessionSpecific + type: MetaData + - pos: -60.5,27.5 + parent: 1 + type: Transform + - uid: 6676 + components: + - pos: -37.5,-32.5 + parent: 1 + type: Transform + - uid: 9801 + components: + - flags: SessionSpecific + type: MetaData + - pos: 111.5,-2.5 + parent: 1 + type: Transform +- proto: VendingMachineTheater + entities: + - uid: 1696 + components: + - flags: SessionSpecific + type: MetaData + - pos: 7.5,-9.5 + parent: 1 + type: Transform + - uid: 5164 + components: + - flags: SessionSpecific + type: MetaData + - pos: 15.5,2.5 + parent: 1 + type: Transform +- proto: VendingMachineVendomat + entities: + - uid: 18330 + components: + - pos: -0.5,39.5 + parent: 1 + type: Transform +- proto: VendingMachineViroDrobe + entities: + - uid: 7704 + components: + - flags: SessionSpecific + type: MetaData + - pos: 88.5,-9.5 + parent: 1 + type: Transform +- proto: VendingMachineWallMedical + entities: + - uid: 6864 + components: + - flags: SessionSpecific + type: MetaData + - pos: -22.5,13.5 + parent: 1 + type: Transform +- proto: VendingMachineWinter + entities: + - uid: 25718 + components: + - pos: -15.5,-11.5 + parent: 1 + type: Transform +- proto: VendingMachineYouTool + entities: + - uid: 12059 + components: + - pos: -48.5,4.5 + parent: 1 + type: Transform +- proto: WallInvisible + entities: + - uid: 7389 + components: + - pos: -10.13835,-5.522104 + parent: 1 + type: Transform +- proto: WallMining + entities: + - uid: 25199 + components: + - pos: 107.5,29.5 + parent: 1 + type: Transform + - uid: 25204 + components: + - pos: 107.5,24.5 + parent: 1 + type: Transform + - uid: 25205 + components: + - pos: 108.5,24.5 + parent: 1 + type: Transform + - uid: 25206 + components: + - pos: 110.5,24.5 + parent: 1 + type: Transform + - uid: 25207 + components: + - pos: 111.5,24.5 + parent: 1 + type: Transform + - uid: 25208 + components: + - pos: 111.5,25.5 + parent: 1 + type: Transform + - uid: 25209 + components: + - pos: 111.5,26.5 + parent: 1 + type: Transform + - uid: 25210 + components: + - pos: 112.5,26.5 + parent: 1 + type: Transform + - uid: 25211 + components: + - pos: 111.5,28.5 + parent: 1 + type: Transform + - uid: 25212 + components: + - pos: 111.5,29.5 + parent: 1 + type: Transform + - uid: 25213 + components: + - pos: 108.5,29.5 + parent: 1 + type: Transform + - uid: 25214 + components: + - pos: 109.5,29.5 + parent: 1 + type: Transform + - uid: 25215 + components: + - pos: 110.5,29.5 + parent: 1 + type: Transform + - uid: 25220 + components: + - pos: 106.5,29.5 + parent: 1 + type: Transform + - uid: 25224 + components: + - pos: 114.5,26.5 + parent: 1 + type: Transform + - uid: 25225 + components: + - pos: 114.5,27.5 + parent: 1 + type: Transform + - uid: 25226 + components: + - pos: 114.5,28.5 + parent: 1 + type: Transform + - uid: 25233 + components: + - pos: 113.5,26.5 + parent: 1 + type: Transform + - uid: 25234 + components: + - pos: 112.5,28.5 + parent: 1 + type: Transform + - uid: 25235 + components: + - pos: 113.5,28.5 + parent: 1 + type: Transform + - uid: 25238 + components: + - pos: 109.5,24.5 + parent: 1 + type: Transform + - uid: 25252 + components: + - pos: 105.5,29.5 + parent: 1 + type: Transform + - uid: 25253 + components: + - pos: 104.5,29.5 + parent: 1 + type: Transform + - uid: 25254 + components: + - pos: 103.5,29.5 + parent: 1 + type: Transform + - uid: 25255 + components: + - pos: 106.5,24.5 + parent: 1 + type: Transform + - uid: 25257 + components: + - pos: 104.5,24.5 + parent: 1 + type: Transform + - uid: 25258 + components: + - pos: 103.5,24.5 + parent: 1 + type: Transform + - uid: 25259 + components: + - pos: 103.5,25.5 + parent: 1 + type: Transform + - uid: 25260 + components: + - pos: 103.5,26.5 + parent: 1 + type: Transform + - uid: 25261 + components: + - pos: 103.5,27.5 + parent: 1 + type: Transform + - uid: 25262 + components: + - pos: 103.5,28.5 + parent: 1 + type: Transform +- proto: WallmountTelescreen + entities: + - uid: 7149 + components: + - pos: 78.5,19.5 + parent: 1 + type: Transform + - uid: 7150 + components: + - rot: 3.141592653589793 rad + pos: 79.5,9.5 + parent: 1 + type: Transform +- proto: WallmountTelescreenFrame + entities: + - uid: 22901 + components: + - pos: -23.5,-14.5 + parent: 1 + type: Transform +- proto: WallmountTelevision + entities: + - uid: 3249 + components: + - pos: 23.5,20.5 + parent: 1 + type: Transform + - uid: 6328 + components: + - pos: -38.5,13.5 + parent: 1 + type: Transform + - uid: 11377 + components: + - pos: 8.5,-42.5 + parent: 1 + type: Transform + - uid: 16774 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-24.5 + parent: 1 + type: Transform +- proto: WallPlastic + entities: + - uid: 1537 + components: + - pos: 22.5,-38.5 + parent: 1 + type: Transform + - uid: 1545 + components: + - pos: 27.5,-37.5 + parent: 1 + type: Transform + - uid: 3018 + components: + - pos: 26.5,-38.5 + parent: 1 + type: Transform + - uid: 6910 + components: + - pos: 27.5,-38.5 + parent: 1 + type: Transform + - uid: 7232 + components: + - pos: 25.5,-38.5 + parent: 1 + type: Transform + - uid: 7340 + components: + - pos: 23.5,-38.5 + parent: 1 + type: Transform + - uid: 7393 + components: + - pos: 24.5,-38.5 + parent: 1 + type: Transform + - uid: 7397 + components: + - pos: 26.5,-34.5 + parent: 1 + type: Transform + - uid: 7398 + components: + - pos: 25.5,-34.5 + parent: 1 + type: Transform + - uid: 7399 + components: + - pos: 24.5,-34.5 + parent: 1 + type: Transform + - uid: 7400 + components: + - pos: 23.5,-34.5 + parent: 1 + type: Transform +- proto: WallReinforced + entities: + - uid: 20 + components: + - pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 30 + components: + - pos: -27.5,39.5 + parent: 1 + type: Transform + - uid: 31 + components: + - pos: -34.5,38.5 + parent: 1 + type: Transform + - uid: 32 + components: + - pos: -35.5,38.5 + parent: 1 + type: Transform + - uid: 33 + components: + - pos: -36.5,38.5 + parent: 1 + type: Transform + - uid: 34 + components: + - pos: -36.5,39.5 + parent: 1 + type: Transform + - uid: 35 + components: + - pos: -37.5,39.5 + parent: 1 + type: Transform + - uid: 39 + components: + - pos: -41.5,39.5 + parent: 1 + type: Transform + - uid: 40 + components: + - pos: -42.5,39.5 + parent: 1 + type: Transform + - uid: 41 + components: + - pos: -43.5,39.5 + parent: 1 + type: Transform + - uid: 42 + components: + - pos: -44.5,39.5 + parent: 1 + type: Transform + - uid: 43 + components: + - pos: -45.5,39.5 + parent: 1 + type: Transform + - uid: 44 + components: + - pos: -46.5,39.5 + parent: 1 + type: Transform + - uid: 45 + components: + - pos: -47.5,39.5 + parent: 1 + type: Transform + - uid: 46 + components: + - pos: -48.5,39.5 + parent: 1 + type: Transform + - uid: 47 + components: + - pos: -49.5,39.5 + parent: 1 + type: Transform + - uid: 48 + components: + - pos: -50.5,39.5 + parent: 1 + type: Transform + - uid: 49 + components: + - pos: -51.5,39.5 + parent: 1 + type: Transform + - uid: 50 + components: + - pos: -52.5,39.5 + parent: 1 + type: Transform + - uid: 51 + components: + - pos: -53.5,39.5 + parent: 1 + type: Transform + - uid: 52 + components: + - pos: -54.5,39.5 + parent: 1 + type: Transform + - uid: 53 + components: + - pos: -55.5,39.5 + parent: 1 + type: Transform + - uid: 61 + components: + - pos: -62.5,33.5 + parent: 1 + type: Transform + - uid: 77 + components: + - pos: -62.5,27.5 + parent: 1 + type: Transform + - uid: 78 + components: + - pos: -61.5,-3.5 + parent: 1 + type: Transform + - uid: 81 + components: + - pos: -57.5,23.5 + parent: 1 + type: Transform + - uid: 82 + components: + - pos: -57.5,22.5 + parent: 1 + type: Transform + - uid: 84 + components: + - pos: -56.5,21.5 + parent: 1 + type: Transform + - uid: 85 + components: + - pos: -55.5,21.5 + parent: 1 + type: Transform + - uid: 86 + components: + - pos: -54.5,21.5 + parent: 1 + type: Transform + - uid: 87 + components: + - pos: -53.5,21.5 + parent: 1 + type: Transform + - uid: 88 + components: + - pos: -52.5,21.5 + parent: 1 + type: Transform + - uid: 90 + components: + - pos: -48.5,21.5 + parent: 1 + type: Transform + - uid: 91 + components: + - pos: -47.5,21.5 + parent: 1 + type: Transform + - uid: 92 + components: + - pos: -46.5,21.5 + parent: 1 + type: Transform + - uid: 93 + components: + - pos: -45.5,21.5 + parent: 1 + type: Transform + - uid: 94 + components: + - pos: -44.5,21.5 + parent: 1 + type: Transform + - uid: 95 + components: + - pos: -43.5,21.5 + parent: 1 + type: Transform + - uid: 96 + components: + - pos: -42.5,21.5 + parent: 1 + type: Transform + - uid: 97 + components: + - pos: -41.5,21.5 + parent: 1 + type: Transform + - uid: 98 + components: + - pos: -40.5,21.5 + parent: 1 + type: Transform + - uid: 99 + components: + - pos: -39.5,21.5 + parent: 1 + type: Transform + - uid: 100 + components: + - pos: -38.5,21.5 + parent: 1 + type: Transform + - uid: 101 + components: + - pos: -37.5,21.5 + parent: 1 + type: Transform + - uid: 105 + components: + - pos: -35.5,23.5 + parent: 1 + type: Transform + - uid: 106 + components: + - pos: -34.5,23.5 + parent: 1 + type: Transform + - uid: 107 + components: + - pos: -34.5,20.5 + parent: 1 + type: Transform + - uid: 111 + components: + - pos: -30.5,27.5 + parent: 1 + type: Transform + - uid: 113 + components: + - pos: -30.5,29.5 + parent: 1 + type: Transform + - uid: 114 + components: + - pos: -30.5,30.5 + parent: 1 + type: Transform + - uid: 115 + components: + - pos: -30.5,31.5 + parent: 1 + type: Transform + - uid: 116 + components: + - pos: -30.5,32.5 + parent: 1 + type: Transform + - uid: 117 + components: + - pos: -30.5,33.5 + parent: 1 + type: Transform + - uid: 118 + components: + - pos: -31.5,33.5 + parent: 1 + type: Transform + - uid: 119 + components: + - pos: -31.5,34.5 + parent: 1 + type: Transform + - uid: 120 + components: + - pos: -31.5,35.5 + parent: 1 + type: Transform + - uid: 122 + components: + - pos: -54.5,33.5 + parent: 1 + type: Transform + - uid: 123 + components: + - pos: -54.5,29.5 + parent: 1 + type: Transform + - uid: 124 + components: + - pos: -52.5,29.5 + parent: 1 + type: Transform + - uid: 125 + components: + - pos: -52.5,33.5 + parent: 1 + type: Transform + - uid: 126 + components: + - pos: -50.5,33.5 + parent: 1 + type: Transform + - uid: 127 + components: + - pos: -50.5,29.5 + parent: 1 + type: Transform + - uid: 128 + components: + - pos: -48.5,29.5 + parent: 1 + type: Transform + - uid: 129 + components: + - pos: -48.5,33.5 + parent: 1 + type: Transform + - uid: 130 + components: + - pos: -46.5,33.5 + parent: 1 + type: Transform + - uid: 131 + components: + - pos: -46.5,29.5 + parent: 1 + type: Transform + - uid: 132 + components: + - pos: -44.5,29.5 + parent: 1 + type: Transform + - uid: 133 + components: + - pos: -44.5,33.5 + parent: 1 + type: Transform + - uid: 162 + components: + - pos: -42.5,33.5 + parent: 1 + type: Transform + - uid: 163 + components: + - pos: -54.5,38.5 + parent: 1 + type: Transform + - uid: 166 + components: + - pos: -54.5,36.5 + parent: 1 + type: Transform + - uid: 167 + components: + - pos: -53.5,36.5 + parent: 1 + type: Transform + - uid: 168 + components: + - pos: -52.5,36.5 + parent: 1 + type: Transform + - uid: 169 + components: + - pos: -51.5,36.5 + parent: 1 + type: Transform + - uid: 170 + components: + - pos: -50.5,36.5 + parent: 1 + type: Transform + - uid: 171 + components: + - pos: -49.5,36.5 + parent: 1 + type: Transform + - uid: 172 + components: + - pos: -48.5,36.5 + parent: 1 + type: Transform + - uid: 173 + components: + - pos: -47.5,36.5 + parent: 1 + type: Transform + - uid: 174 + components: + - pos: -46.5,36.5 + parent: 1 + type: Transform + - uid: 175 + components: + - pos: -45.5,36.5 + parent: 1 + type: Transform + - uid: 176 + components: + - pos: -44.5,36.5 + parent: 1 + type: Transform + - uid: 177 + components: + - pos: -43.5,36.5 + parent: 1 + type: Transform + - uid: 178 + components: + - pos: -42.5,36.5 + parent: 1 + type: Transform + - uid: 179 + components: + - pos: -41.5,36.5 + parent: 1 + type: Transform + - uid: 180 + components: + - pos: -40.5,36.5 + parent: 1 + type: Transform + - uid: 181 + components: + - pos: -39.5,36.5 + parent: 1 + type: Transform + - uid: 182 + components: + - pos: -38.5,36.5 + parent: 1 + type: Transform + - uid: 190 + components: + - pos: -42.5,29.5 + parent: 1 + type: Transform + - uid: 279 + components: + - pos: -57.5,21.5 + parent: 1 + type: Transform + - uid: 286 + components: + - pos: -52.5,23.5 + parent: 1 + type: Transform + - uid: 341 + components: + - pos: -34.5,31.5 + parent: 1 + type: Transform + - uid: 342 + components: + - pos: -34.5,30.5 + parent: 1 + type: Transform + - uid: 343 + components: + - pos: -35.5,30.5 + parent: 1 + type: Transform + - uid: 344 + components: + - pos: -35.5,29.5 + parent: 1 + type: Transform + - uid: 345 + components: + - pos: -35.5,28.5 + parent: 1 + type: Transform + - uid: 346 + components: + - pos: -35.5,27.5 + parent: 1 + type: Transform + - uid: 347 + components: + - pos: -35.5,26.5 + parent: 1 + type: Transform + - uid: 431 + components: + - pos: -62.5,-19.5 + parent: 1 + type: Transform + - uid: 456 + components: + - pos: -14.5,49.5 + parent: 1 + type: Transform + - uid: 493 + components: + - pos: -61.5,-19.5 + parent: 1 + type: Transform + - uid: 496 + components: + - pos: -14.5,20.5 + parent: 1 + type: Transform + - uid: 499 + components: + - pos: 2.5,-52.5 + parent: 1 + type: Transform + - uid: 500 + components: + - pos: 0.5,-50.5 + parent: 1 + type: Transform + - uid: 502 + components: + - pos: 9.5,-50.5 + parent: 1 + type: Transform + - uid: 503 + components: + - pos: 7.5,-52.5 + parent: 1 + type: Transform + - uid: 504 + components: + - pos: 2.5,-50.5 + parent: 1 + type: Transform + - uid: 507 + components: + - pos: 9.5,-52.5 + parent: 1 + type: Transform + - uid: 508 + components: + - pos: 7.5,-50.5 + parent: 1 + type: Transform + - uid: 516 + components: + - pos: -6.5,-50.5 + parent: 1 + type: Transform + - uid: 518 + components: + - pos: 0.5,-52.5 + parent: 1 + type: Transform + - uid: 522 + components: + - pos: 31.5,-50.5 + parent: 1 + type: Transform + - uid: 529 + components: + - pos: -6.5,-49.5 + parent: 1 + type: Transform + - uid: 530 + components: + - pos: -7.5,-49.5 + parent: 1 + type: Transform + - uid: 531 + components: + - pos: -8.5,-49.5 + parent: 1 + type: Transform + - uid: 535 + components: + - pos: -11.5,50.5 + parent: 1 + type: Transform + - uid: 537 + components: + - pos: -11.5,52.5 + parent: 1 + type: Transform + - uid: 541 + components: + - pos: -73.5,0.5 + parent: 1 + type: Transform + - uid: 551 + components: + - pos: 90.5,11.5 + parent: 1 + type: Transform + - uid: 556 + components: + - pos: 89.5,9.5 + parent: 1 + type: Transform + - uid: 559 + components: + - pos: -17.5,-40.5 + parent: 1 + type: Transform + - uid: 560 + components: + - pos: -17.5,-39.5 + parent: 1 + type: Transform + - uid: 561 + components: + - pos: -17.5,-38.5 + parent: 1 + type: Transform + - uid: 562 + components: + - pos: -17.5,-37.5 + parent: 1 + type: Transform + - uid: 563 + components: + - pos: -17.5,-36.5 + parent: 1 + type: Transform + - uid: 564 + components: + - pos: -17.5,-35.5 + parent: 1 + type: Transform + - uid: 565 + components: + - pos: -17.5,-34.5 + parent: 1 + type: Transform + - uid: 566 + components: + - pos: -18.5,-34.5 + parent: 1 + type: Transform + - uid: 567 + components: + - pos: -19.5,-34.5 + parent: 1 + type: Transform + - uid: 568 + components: + - pos: -20.5,-34.5 + parent: 1 + type: Transform + - uid: 569 + components: + - pos: -21.5,-34.5 + parent: 1 + type: Transform + - uid: 570 + components: + - pos: -22.5,-34.5 + parent: 1 + type: Transform + - uid: 571 + components: + - pos: -22.5,-35.5 + parent: 1 + type: Transform + - uid: 581 + components: + - pos: -28.5,-35.5 + parent: 1 + type: Transform + - uid: 582 + components: + - pos: -28.5,-34.5 + parent: 1 + type: Transform + - uid: 583 + components: + - pos: -29.5,-34.5 + parent: 1 + type: Transform + - uid: 584 + components: + - pos: -30.5,-34.5 + parent: 1 + type: Transform + - uid: 586 + components: + - pos: 93.5,0.5 + parent: 1 + type: Transform + - uid: 587 + components: + - pos: 90.5,-0.5 + parent: 1 + type: Transform + - uid: 588 + components: + - pos: 90.5,0.5 + parent: 1 + type: Transform + - uid: 589 + components: + - pos: -10.5,-42.5 + parent: 1 + type: Transform + - uid: 590 + components: + - pos: 90.5,-1.5 + parent: 1 + type: Transform + - uid: 591 + components: + - pos: 31.5,-49.5 + parent: 1 + type: Transform + - uid: 592 + components: + - pos: 90.5,-3.5 + parent: 1 + type: Transform + - uid: 593 + components: + - pos: 90.5,-2.5 + parent: 1 + type: Transform + - uid: 599 + components: + - pos: -34.5,-30.5 + parent: 1 + type: Transform + - uid: 600 + components: + - pos: -35.5,-30.5 + parent: 1 + type: Transform + - uid: 601 + components: + - pos: -36.5,-30.5 + parent: 1 + type: Transform + - uid: 602 + components: + - pos: -36.5,-31.5 + parent: 1 + type: Transform + - uid: 603 + components: + - pos: -46.5,-31.5 + parent: 1 + type: Transform + - uid: 604 + components: + - pos: -54.5,-31.5 + parent: 1 + type: Transform + - uid: 605 + components: + - pos: -55.5,-31.5 + parent: 1 + type: Transform + - uid: 628 + components: + - pos: -55.5,-13.5 + parent: 1 + type: Transform + - uid: 629 + components: + - pos: -54.5,-13.5 + parent: 1 + type: Transform + - uid: 630 + components: + - pos: -53.5,-13.5 + parent: 1 + type: Transform + - uid: 632 + components: + - pos: -53.5,-7.5 + parent: 1 + type: Transform + - uid: 633 + components: + - pos: -54.5,-7.5 + parent: 1 + type: Transform + - uid: 634 + components: + - pos: -55.5,-7.5 + parent: 1 + type: Transform + - uid: 635 + components: + - pos: -56.5,-7.5 + parent: 1 + type: Transform + - uid: 636 + components: + - pos: -57.5,-7.5 + parent: 1 + type: Transform + - uid: 637 + components: + - pos: -58.5,-7.5 + parent: 1 + type: Transform + - uid: 638 + components: + - pos: -59.5,-7.5 + parent: 1 + type: Transform + - uid: 639 + components: + - pos: -60.5,-7.5 + parent: 1 + type: Transform + - uid: 649 + components: + - pos: -65.5,-2.5 + parent: 1 + type: Transform + - uid: 650 + components: + - pos: -65.5,-1.5 + parent: 1 + type: Transform + - uid: 651 + components: + - pos: -65.5,-0.5 + parent: 1 + type: Transform + - uid: 652 + components: + - pos: -65.5,0.5 + parent: 1 + type: Transform + - uid: 653 + components: + - pos: -65.5,1.5 + parent: 1 + type: Transform + - uid: 658 + components: + - pos: -65.5,6.5 + parent: 1 + type: Transform + - uid: 659 + components: + - pos: -65.5,7.5 + parent: 1 + type: Transform + - uid: 660 + components: + - pos: -65.5,8.5 + parent: 1 + type: Transform + - uid: 661 + components: + - pos: -65.5,9.5 + parent: 1 + type: Transform + - uid: 662 + components: + - pos: -65.5,10.5 + parent: 1 + type: Transform + - uid: 672 + components: + - pos: -60.5,15.5 + parent: 1 + type: Transform + - uid: 673 + components: + - pos: -59.5,15.5 + parent: 1 + type: Transform + - uid: 674 + components: + - pos: -58.5,15.5 + parent: 1 + type: Transform + - uid: 675 + components: + - pos: -57.5,15.5 + parent: 1 + type: Transform + - uid: 676 + components: + - pos: -56.5,15.5 + parent: 1 + type: Transform + - uid: 677 + components: + - pos: -55.5,15.5 + parent: 1 + type: Transform + - uid: 678 + components: + - pos: -54.5,15.5 + parent: 1 + type: Transform + - uid: 679 + components: + - pos: -53.5,15.5 + parent: 1 + type: Transform + - uid: 681 + components: + - pos: -34.5,21.5 + parent: 1 + type: Transform + - uid: 683 + components: + - pos: 94.5,7.5 + parent: 1 + type: Transform + - uid: 684 + components: + - pos: 98.5,12.5 + parent: 1 + type: Transform + - uid: 686 + components: + - pos: 89.5,7.5 + parent: 1 + type: Transform + - uid: 688 + components: + - pos: -34.5,22.5 + parent: 1 + type: Transform + - uid: 691 + components: + - pos: 53.5,-1.5 + parent: 1 + type: Transform + - uid: 692 + components: + - pos: 54.5,-2.5 + parent: 1 + type: Transform + - uid: 693 + components: + - pos: 53.5,6.5 + parent: 1 + type: Transform + - uid: 695 + components: + - pos: -28.5,13.5 + parent: 1 + type: Transform + - uid: 696 + components: + - pos: -28.5,12.5 + parent: 1 + type: Transform + - uid: 697 + components: + - pos: -28.5,11.5 + parent: 1 + type: Transform + - uid: 698 + components: + - pos: -28.5,10.5 + parent: 1 + type: Transform + - uid: 699 + components: + - pos: -28.5,9.5 + parent: 1 + type: Transform + - uid: 700 + components: + - pos: -28.5,8.5 + parent: 1 + type: Transform + - uid: 703 + components: + - pos: -34.5,6.5 + parent: 1 + type: Transform + - uid: 704 + components: + - pos: -34.5,7.5 + parent: 1 + type: Transform + - uid: 705 + components: + - pos: -34.5,8.5 + parent: 1 + type: Transform + - uid: 712 + components: + - pos: -37.5,13.5 + parent: 1 + type: Transform + - uid: 715 + components: + - pos: -44.5,15.5 + parent: 1 + type: Transform + - uid: 717 + components: + - pos: -39.5,-7.5 + parent: 1 + type: Transform + - uid: 718 + components: + - pos: -34.5,-2.5 + parent: 1 + type: Transform + - uid: 728 + components: + - pos: -40.5,-7.5 + parent: 1 + type: Transform + - uid: 729 + components: + - pos: -41.5,-7.5 + parent: 1 + type: Transform + - uid: 730 + components: + - pos: -42.5,-7.5 + parent: 1 + type: Transform + - uid: 731 + components: + - pos: -43.5,-7.5 + parent: 1 + type: Transform + - uid: 732 + components: + - pos: -44.5,-7.5 + parent: 1 + type: Transform + - uid: 733 + components: + - pos: -45.5,-7.5 + parent: 1 + type: Transform + - uid: 734 + components: + - pos: -46.5,-7.5 + parent: 1 + type: Transform + - uid: 735 + components: + - pos: -47.5,-7.5 + parent: 1 + type: Transform + - uid: 736 + components: + - pos: -48.5,-7.5 + parent: 1 + type: Transform + - uid: 737 + components: + - pos: -49.5,-7.5 + parent: 1 + type: Transform + - uid: 738 + components: + - pos: -34.5,-1.5 + parent: 1 + type: Transform + - uid: 739 + components: + - pos: -34.5,-0.5 + parent: 1 + type: Transform + - uid: 740 + components: + - pos: -34.5,0.5 + parent: 1 + type: Transform + - uid: 741 + components: + - pos: -34.5,1.5 + parent: 1 + type: Transform + - uid: 742 + components: + - pos: -37.5,-13.5 + parent: 1 + type: Transform + - uid: 743 + components: + - pos: -38.5,-13.5 + parent: 1 + type: Transform + - uid: 744 + components: + - pos: -39.5,-13.5 + parent: 1 + type: Transform + - uid: 762 + components: + - pos: -28.5,-11.5 + parent: 1 + type: Transform + - uid: 764 + components: + - pos: -28.5,-9.5 + parent: 1 + type: Transform + - uid: 765 + components: + - pos: -28.5,-8.5 + parent: 1 + type: Transform + - uid: 766 + components: + - pos: -28.5,-7.5 + parent: 1 + type: Transform + - uid: 767 + components: + - pos: -28.5,-6.5 + parent: 1 + type: Transform + - uid: 768 + components: + - pos: -28.5,-5.5 + parent: 1 + type: Transform + - uid: 769 + components: + - pos: -28.5,-4.5 + parent: 1 + type: Transform + - uid: 770 + components: + - pos: -28.5,-3.5 + parent: 1 + type: Transform + - uid: 771 + components: + - pos: -28.5,-2.5 + parent: 1 + type: Transform + - uid: 772 + components: + - pos: -28.5,-1.5 + parent: 1 + type: Transform + - uid: 773 + components: + - pos: -28.5,-0.5 + parent: 1 + type: Transform + - uid: 783 + components: + - pos: 89.5,8.5 + parent: 1 + type: Transform + - uid: 785 + components: + - pos: 90.5,10.5 + parent: 1 + type: Transform + - uid: 786 + components: + - pos: 93.5,7.5 + parent: 1 + type: Transform + - uid: 791 + components: + - pos: 110.5,-4.5 + parent: 1 + type: Transform + - uid: 793 + components: + - pos: 110.5,-3.5 + parent: 1 + type: Transform + - uid: 794 + components: + - pos: 123.5,0.5 + parent: 1 + type: Transform + - uid: 795 + components: + - pos: 121.5,0.5 + parent: 1 + type: Transform + - uid: 803 + components: + - pos: 122.5,0.5 + parent: 1 + type: Transform + - uid: 815 + components: + - pos: -6.5,-46.5 + parent: 1 + type: Transform + - uid: 816 + components: + - pos: -3.5,-45.5 + parent: 1 + type: Transform + - uid: 817 + components: + - pos: -3.5,-44.5 + parent: 1 + type: Transform + - uid: 818 + components: + - pos: -3.5,-43.5 + parent: 1 + type: Transform + - uid: 819 + components: + - pos: -3.5,-42.5 + parent: 1 + type: Transform + - uid: 820 + components: + - pos: -3.5,-41.5 + parent: 1 + type: Transform + - uid: 847 + components: + - pos: 14.5,-31.5 + parent: 1 + type: Transform + - uid: 881 + components: + - pos: 14.5,-28.5 + parent: 1 + type: Transform + - uid: 888 + components: + - pos: 17.5,-34.5 + parent: 1 + type: Transform + - uid: 895 + components: + - pos: 9.5,-36.5 + parent: 1 + type: Transform + - uid: 896 + components: + - pos: 14.5,-34.5 + parent: 1 + type: Transform + - uid: 923 + components: + - pos: 124.5,0.5 + parent: 1 + type: Transform + - uid: 924 + components: + - pos: -3.5,-40.5 + parent: 1 + type: Transform + - uid: 925 + components: + - pos: -4.5,-40.5 + parent: 1 + type: Transform + - uid: 926 + components: + - pos: -5.5,-40.5 + parent: 1 + type: Transform + - uid: 927 + components: + - pos: -6.5,-40.5 + parent: 1 + type: Transform + - uid: 928 + components: + - pos: -7.5,-40.5 + parent: 1 + type: Transform + - uid: 929 + components: + - pos: -8.5,-40.5 + parent: 1 + type: Transform + - uid: 930 + components: + - pos: -9.5,-40.5 + parent: 1 + type: Transform + - uid: 936 + components: + - pos: -9.5,-28.5 + parent: 1 + type: Transform + - uid: 937 + components: + - pos: -8.5,-28.5 + parent: 1 + type: Transform + - uid: 938 + components: + - pos: -7.5,-28.5 + parent: 1 + type: Transform + - uid: 939 + components: + - pos: -6.5,-28.5 + parent: 1 + type: Transform + - uid: 941 + components: + - pos: -4.5,-28.5 + parent: 1 + type: Transform + - uid: 944 + components: + - pos: -1.5,-28.5 + parent: 1 + type: Transform + - uid: 946 + components: + - pos: 0.5,-28.5 + parent: 1 + type: Transform + - uid: 947 + components: + - pos: 1.5,-28.5 + parent: 1 + type: Transform + - uid: 948 + components: + - pos: 2.5,-28.5 + parent: 1 + type: Transform + - uid: 949 + components: + - pos: 3.5,-28.5 + parent: 1 + type: Transform + - uid: 950 + components: + - pos: 4.5,-28.5 + parent: 1 + type: Transform + - uid: 955 + components: + - pos: 9.5,-28.5 + parent: 1 + type: Transform + - uid: 957 + components: + - pos: 14.5,-35.5 + parent: 1 + type: Transform + - uid: 963 + components: + - pos: 9.5,-29.5 + parent: 1 + type: Transform + - uid: 967 + components: + - pos: 9.5,-34.5 + parent: 1 + type: Transform + - uid: 1087 + components: + - pos: -10.5,-40.5 + parent: 1 + type: Transform + - uid: 1218 + components: + - pos: 124.5,7.5 + parent: 1 + type: Transform + - uid: 1219 + components: + - pos: 123.5,7.5 + parent: 1 + type: Transform + - uid: 1220 + components: + - pos: 122.5,7.5 + parent: 1 + type: Transform + - uid: 1232 + components: + - pos: 121.5,7.5 + parent: 1 + type: Transform + - uid: 1255 + components: + - pos: -11.5,49.5 + parent: 1 + type: Transform + - uid: 1261 + components: + - pos: 32.5,-49.5 + parent: 1 + type: Transform + - uid: 1262 + components: + - pos: 33.5,-49.5 + parent: 1 + type: Transform + - uid: 1263 + components: + - pos: -12.5,41.5 + parent: 1 + type: Transform + - uid: 1272 + components: + - pos: 46.5,-29.5 + parent: 1 + type: Transform + - uid: 1280 + components: + - pos: 42.5,-40.5 + parent: 1 + type: Transform + - uid: 1284 + components: + - pos: 42.5,-36.5 + parent: 1 + type: Transform + - uid: 1285 + components: + - pos: 42.5,-35.5 + parent: 1 + type: Transform + - uid: 1286 + components: + - pos: 41.5,-34.5 + parent: 1 + type: Transform + - uid: 1287 + components: + - pos: 41.5,-33.5 + parent: 1 + type: Transform + - uid: 1288 + components: + - pos: 41.5,-35.5 + parent: 1 + type: Transform + - uid: 1293 + components: + - pos: -59.5,-4.5 + parent: 1 + type: Transform + - uid: 1305 + components: + - pos: 92.5,-4.5 + parent: 1 + type: Transform + - uid: 1318 + components: + - pos: 45.5,-29.5 + parent: 1 + type: Transform + - uid: 1319 + components: + - pos: 46.5,-31.5 + parent: 1 + type: Transform + - uid: 1327 + components: + - pos: 51.5,-26.5 + parent: 1 + type: Transform + - uid: 1328 + components: + - pos: 52.5,-26.5 + parent: 1 + type: Transform + - uid: 1329 + components: + - pos: 46.5,-23.5 + parent: 1 + type: Transform + - uid: 1330 + components: + - pos: 47.5,-23.5 + parent: 1 + type: Transform + - uid: 1331 + components: + - pos: 48.5,-23.5 + parent: 1 + type: Transform + - uid: 1332 + components: + - pos: 50.5,-22.5 + parent: 1 + type: Transform + - uid: 1333 + components: + - pos: 50.5,-23.5 + parent: 1 + type: Transform + - uid: 1357 + components: + - pos: 56.5,-17.5 + parent: 1 + type: Transform + - uid: 1358 + components: + - pos: 56.5,-16.5 + parent: 1 + type: Transform + - uid: 1359 + components: + - pos: 55.5,-16.5 + parent: 1 + type: Transform + - uid: 1361 + components: + - pos: 55.5,-14.5 + parent: 1 + type: Transform + - uid: 1362 + components: + - pos: 55.5,-13.5 + parent: 1 + type: Transform + - uid: 1363 + components: + - pos: 55.5,-12.5 + parent: 1 + type: Transform + - uid: 1364 + components: + - pos: 55.5,-11.5 + parent: 1 + type: Transform + - uid: 1365 + components: + - pos: 55.5,-10.5 + parent: 1 + type: Transform + - uid: 1366 + components: + - pos: 55.5,-9.5 + parent: 1 + type: Transform + - uid: 1367 + components: + - pos: 55.5,-8.5 + parent: 1 + type: Transform + - uid: 1368 + components: + - pos: 55.5,-7.5 + parent: 1 + type: Transform + - uid: 1370 + components: + - pos: 60.5,-20.5 + parent: 1 + type: Transform + - uid: 1371 + components: + - pos: 60.5,-21.5 + parent: 1 + type: Transform + - uid: 1372 + components: + - pos: 61.5,-21.5 + parent: 1 + type: Transform + - uid: 1373 + components: + - pos: 62.5,-21.5 + parent: 1 + type: Transform + - uid: 1374 + components: + - pos: 63.5,-21.5 + parent: 1 + type: Transform + - uid: 1377 + components: + - pos: 66.5,-21.5 + parent: 1 + type: Transform + - uid: 1378 + components: + - pos: 67.5,-21.5 + parent: 1 + type: Transform + - uid: 1379 + components: + - pos: 68.5,-21.5 + parent: 1 + type: Transform + - uid: 1380 + components: + - pos: 69.5,-21.5 + parent: 1 + type: Transform + - uid: 1381 + components: + - pos: 70.5,-21.5 + parent: 1 + type: Transform + - uid: 1382 + components: + - pos: 71.5,-21.5 + parent: 1 + type: Transform + - uid: 1385 + components: + - pos: 84.5,-21.5 + parent: 1 + type: Transform + - uid: 1386 + components: + - pos: 82.5,-21.5 + parent: 1 + type: Transform + - uid: 1387 + components: + - pos: 80.5,-21.5 + parent: 1 + type: Transform + - uid: 1388 + components: + - pos: 78.5,-21.5 + parent: 1 + type: Transform + - uid: 1389 + components: + - pos: 79.5,-21.5 + parent: 1 + type: Transform + - uid: 1390 + components: + - pos: 81.5,-21.5 + parent: 1 + type: Transform + - uid: 1391 + components: + - pos: 83.5,-21.5 + parent: 1 + type: Transform + - uid: 1392 + components: + - pos: 85.5,-21.5 + parent: 1 + type: Transform + - uid: 1393 + components: + - pos: 100.5,-10.5 + parent: 1 + type: Transform + - uid: 1394 + components: + - pos: 73.5,-18.5 + parent: 1 + type: Transform + - uid: 1395 + components: + - pos: 72.5,-18.5 + parent: 1 + type: Transform + - uid: 1396 + components: + - pos: 71.5,-18.5 + parent: 1 + type: Transform + - uid: 1397 + components: + - pos: 70.5,-18.5 + parent: 1 + type: Transform + - uid: 1398 + components: + - pos: 69.5,-18.5 + parent: 1 + type: Transform + - uid: 1399 + components: + - pos: 68.5,-18.5 + parent: 1 + type: Transform + - uid: 1400 + components: + - pos: 67.5,-18.5 + parent: 1 + type: Transform + - uid: 1401 + components: + - pos: 66.5,-18.5 + parent: 1 + type: Transform + - uid: 1402 + components: + - pos: 65.5,-18.5 + parent: 1 + type: Transform + - uid: 1404 + components: + - pos: -12.5,-30.5 + parent: 1 + type: Transform + - uid: 1405 + components: + - pos: -13.5,-30.5 + parent: 1 + type: Transform + - uid: 1406 + components: + - pos: -14.5,-30.5 + parent: 1 + type: Transform + - uid: 1407 + components: + - pos: -15.5,-30.5 + parent: 1 + type: Transform + - uid: 1408 + components: + - pos: -16.5,-30.5 + parent: 1 + type: Transform + - uid: 1409 + components: + - pos: -17.5,-30.5 + parent: 1 + type: Transform + - uid: 1410 + components: + - pos: -17.5,-29.5 + parent: 1 + type: Transform + - uid: 1411 + components: + - pos: -17.5,-28.5 + parent: 1 + type: Transform + - uid: 1412 + components: + - pos: -17.5,-27.5 + parent: 1 + type: Transform + - uid: 1415 + components: + - pos: -20.5,-27.5 + parent: 1 + type: Transform + - uid: 1419 + components: + - pos: -24.5,-27.5 + parent: 1 + type: Transform + - uid: 1420 + components: + - pos: -24.5,-28.5 + parent: 1 + type: Transform + - uid: 1421 + components: + - pos: -24.5,-29.5 + parent: 1 + type: Transform + - uid: 1422 + components: + - pos: -24.5,-30.5 + parent: 1 + type: Transform + - uid: 1424 + components: + - pos: -26.5,-30.5 + parent: 1 + type: Transform + - uid: 1425 + components: + - pos: -27.5,-30.5 + parent: 1 + type: Transform + - uid: 1445 + components: + - pos: 14.5,-36.5 + parent: 1 + type: Transform + - uid: 1449 + components: + - pos: 19.5,-28.5 + parent: 1 + type: Transform + - uid: 1450 + components: + - pos: 20.5,-28.5 + parent: 1 + type: Transform + - uid: 1451 + components: + - pos: 21.5,-28.5 + parent: 1 + type: Transform + - uid: 1452 + components: + - pos: 22.5,-28.5 + parent: 1 + type: Transform + - uid: 1453 + components: + - pos: 23.5,-28.5 + parent: 1 + type: Transform + - uid: 1454 + components: + - pos: 24.5,-28.5 + parent: 1 + type: Transform + - uid: 1455 + components: + - pos: 25.5,-28.5 + parent: 1 + type: Transform + - uid: 1457 + components: + - pos: 27.5,-28.5 + parent: 1 + type: Transform + - uid: 1460 + components: + - pos: 30.5,-28.5 + parent: 1 + type: Transform + - uid: 1462 + components: + - pos: 32.5,-28.5 + parent: 1 + type: Transform + - uid: 1463 + components: + - pos: 33.5,-28.5 + parent: 1 + type: Transform + - uid: 1464 + components: + - pos: 34.5,-28.5 + parent: 1 + type: Transform + - uid: 1478 + components: + - pos: 9.5,-31.5 + parent: 1 + type: Transform + - uid: 1481 + components: + - pos: 9.5,-35.5 + parent: 1 + type: Transform + - uid: 1501 + components: + - pos: 5.5,-24.5 + parent: 1 + type: Transform + - uid: 1502 + components: + - pos: 18.5,-24.5 + parent: 1 + type: Transform + - uid: 1504 + components: + - pos: 18.5,-34.5 + parent: 1 + type: Transform + - uid: 1507 + components: + - pos: 5.5,-32.5 + parent: 1 + type: Transform + - uid: 1511 + components: + - pos: 5.5,-34.5 + parent: 1 + type: Transform + - uid: 1517 + components: + - pos: 5.5,-31.5 + parent: 1 + type: Transform + - uid: 1525 + components: + - pos: 5.5,-33.5 + parent: 1 + type: Transform + - uid: 1540 + components: + - pos: 17.5,-31.5 + parent: 1 + type: Transform + - uid: 1541 + components: + - pos: 6.5,-34.5 + parent: 1 + type: Transform + - uid: 1542 + components: + - pos: 6.5,-31.5 + parent: 1 + type: Transform + - uid: 1544 + components: + - pos: 18.5,-32.5 + parent: 1 + type: Transform + - uid: 1551 + components: + - pos: 3.5,-24.5 + parent: 1 + type: Transform + - uid: 1557 + components: + - pos: 20.5,-24.5 + parent: 1 + type: Transform + - uid: 1561 + components: + - pos: 2.5,-24.5 + parent: 1 + type: Transform + - uid: 1562 + components: + - pos: 4.5,-24.5 + parent: 1 + type: Transform + - uid: 1564 + components: + - pos: 5.5,-22.5 + parent: 1 + type: Transform + - uid: 1567 + components: + - pos: 19.5,-24.5 + parent: 1 + type: Transform + - uid: 1568 + components: + - pos: 21.5,-24.5 + parent: 1 + type: Transform + - uid: 1577 + components: + - pos: 4.5,-22.5 + parent: 1 + type: Transform + - uid: 1578 + components: + - pos: 3.5,-22.5 + parent: 1 + type: Transform + - uid: 1579 + components: + - pos: 2.5,-22.5 + parent: 1 + type: Transform + - uid: 1580 + components: + - pos: 1.5,-22.5 + parent: 1 + type: Transform + - uid: 1581 + components: + - pos: 0.5,-22.5 + parent: 1 + type: Transform + - uid: 1582 + components: + - pos: -0.5,-22.5 + parent: 1 + type: Transform + - uid: 1583 + components: + - pos: -1.5,-22.5 + parent: 1 + type: Transform + - uid: 1584 + components: + - pos: -2.5,-22.5 + parent: 1 + type: Transform + - uid: 1585 + components: + - pos: -3.5,-22.5 + parent: 1 + type: Transform + - uid: 1586 + components: + - pos: -4.5,-22.5 + parent: 1 + type: Transform + - uid: 1587 + components: + - pos: -5.5,-22.5 + parent: 1 + type: Transform + - uid: 1588 + components: + - pos: -6.5,-22.5 + parent: 1 + type: Transform + - uid: 1589 + components: + - pos: -7.5,-22.5 + parent: 1 + type: Transform + - uid: 1590 + components: + - pos: -8.5,-22.5 + parent: 1 + type: Transform + - uid: 1591 + components: + - pos: -9.5,-22.5 + parent: 1 + type: Transform + - uid: 1592 + components: + - pos: -10.5,-22.5 + parent: 1 + type: Transform + - uid: 1598 + components: + - pos: -16.5,-22.5 + parent: 1 + type: Transform + - uid: 1599 + components: + - pos: 18.5,-22.5 + parent: 1 + type: Transform + - uid: 1600 + components: + - pos: 19.5,-22.5 + parent: 1 + type: Transform + - uid: 1601 + components: + - pos: 20.5,-22.5 + parent: 1 + type: Transform + - uid: 1602 + components: + - pos: 21.5,-22.5 + parent: 1 + type: Transform + - uid: 1603 + components: + - pos: 22.5,-22.5 + parent: 1 + type: Transform + - uid: 1604 + components: + - pos: 23.5,-22.5 + parent: 1 + type: Transform + - uid: 1605 + components: + - pos: 24.5,-22.5 + parent: 1 + type: Transform + - uid: 1606 + components: + - pos: 25.5,-22.5 + parent: 1 + type: Transform + - uid: 1607 + components: + - pos: 26.5,-22.5 + parent: 1 + type: Transform + - uid: 1608 + components: + - pos: 27.5,-22.5 + parent: 1 + type: Transform + - uid: 1609 + components: + - pos: 28.5,-22.5 + parent: 1 + type: Transform + - uid: 1610 + components: + - pos: 29.5,-22.5 + parent: 1 + type: Transform + - uid: 1611 + components: + - pos: 30.5,-22.5 + parent: 1 + type: Transform + - uid: 1612 + components: + - pos: 31.5,-22.5 + parent: 1 + type: Transform + - uid: 1613 + components: + - pos: 32.5,-22.5 + parent: 1 + type: Transform + - uid: 1614 + components: + - pos: 33.5,-22.5 + parent: 1 + type: Transform + - uid: 1615 + components: + - pos: 34.5,-22.5 + parent: 1 + type: Transform + - uid: 1616 + components: + - pos: 35.5,-22.5 + parent: 1 + type: Transform + - uid: 1617 + components: + - pos: 36.5,-22.5 + parent: 1 + type: Transform + - uid: 1618 + components: + - pos: 37.5,-22.5 + parent: 1 + type: Transform + - uid: 1619 + components: + - pos: 38.5,-22.5 + parent: 1 + type: Transform + - uid: 1622 + components: + - pos: 41.5,-22.5 + parent: 1 + type: Transform + - uid: 1623 + components: + - pos: 41.5,-21.5 + parent: 1 + type: Transform + - uid: 1628 + components: + - pos: 6.5,-10.5 + parent: 1 + type: Transform + - uid: 1637 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 1638 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 1639 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 1640 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 1641 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 1645 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 1646 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 1653 + components: + - pos: 0.5,-9.5 + parent: 1 + type: Transform + - uid: 1656 + components: + - pos: 2.5,-10.5 + parent: 1 + type: Transform + - uid: 1658 + components: + - pos: 4.5,-10.5 + parent: 1 + type: Transform + - uid: 1669 + components: + - pos: 6.5,-9.5 + parent: 1 + type: Transform + - uid: 1670 + components: + - pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 1680 + components: + - pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 1716 + components: + - pos: 20.5,-19.5 + parent: 1 + type: Transform + - uid: 1717 + components: + - pos: 19.5,-19.5 + parent: 1 + type: Transform + - uid: 1718 + components: + - pos: 18.5,-19.5 + parent: 1 + type: Transform + - uid: 1719 + components: + - pos: 17.5,-19.5 + parent: 1 + type: Transform + - uid: 1720 + components: + - pos: 16.5,-19.5 + parent: 1 + type: Transform + - uid: 1721 + components: + - pos: 15.5,-19.5 + parent: 1 + type: Transform + - uid: 1722 + components: + - pos: 14.5,-19.5 + parent: 1 + type: Transform + - uid: 1737 + components: + - pos: -11.5,-13.5 + parent: 1 + type: Transform + - uid: 1738 + components: + - pos: -10.5,-13.5 + parent: 1 + type: Transform + - uid: 1739 + components: + - pos: -12.5,-13.5 + parent: 1 + type: Transform + - uid: 1740 + components: + - pos: -13.5,-13.5 + parent: 1 + type: Transform + - uid: 1741 + components: + - pos: -13.5,-14.5 + parent: 1 + type: Transform + - uid: 1742 + components: + - pos: -13.5,-15.5 + parent: 1 + type: Transform + - uid: 1743 + components: + - pos: -13.5,-16.5 + parent: 1 + type: Transform + - uid: 1744 + components: + - pos: -13.5,-17.5 + parent: 1 + type: Transform + - uid: 1745 + components: + - pos: -13.5,-18.5 + parent: 1 + type: Transform + - uid: 1746 + components: + - pos: -13.5,-19.5 + parent: 1 + type: Transform + - uid: 1747 + components: + - pos: -12.5,-19.5 + parent: 1 + type: Transform + - uid: 1759 + components: + - pos: -23.5,-7.5 + parent: 1 + type: Transform + - uid: 1770 + components: + - pos: -24.5,-7.5 + parent: 1 + type: Transform + - uid: 1779 + components: + - pos: -14.5,48.5 + parent: 1 + type: Transform + - uid: 1780 + components: + - pos: -14.5,47.5 + parent: 1 + type: Transform + - uid: 1781 + components: + - pos: -13.5,49.5 + parent: 1 + type: Transform + - uid: 1783 + components: + - pos: -11.5,51.5 + parent: 1 + type: Transform + - uid: 1784 + components: + - pos: -9.5,52.5 + parent: 1 + type: Transform + - uid: 1785 + components: + - pos: -10.5,52.5 + parent: 1 + type: Transform + - uid: 1787 + components: + - pos: -12.5,49.5 + parent: 1 + type: Transform + - uid: 1793 + components: + - pos: -6.5,30.5 + parent: 1 + type: Transform + - uid: 1800 + components: + - pos: -31.5,-13.5 + parent: 1 + type: Transform + - uid: 1802 + components: + - pos: -25.5,-7.5 + parent: 1 + type: Transform + - uid: 1803 + components: + - pos: -25.5,-6.5 + parent: 1 + type: Transform + - uid: 1804 + components: + - pos: -25.5,-5.5 + parent: 1 + type: Transform + - uid: 1805 + components: + - pos: -25.5,-4.5 + parent: 1 + type: Transform + - uid: 1806 + components: + - pos: -25.5,-3.5 + parent: 1 + type: Transform + - uid: 1807 + components: + - pos: -25.5,-2.5 + parent: 1 + type: Transform + - uid: 1808 + components: + - pos: -25.5,-1.5 + parent: 1 + type: Transform + - uid: 1809 + components: + - pos: -25.5,-0.5 + parent: 1 + type: Transform + - uid: 1810 + components: + - pos: -25.5,0.5 + parent: 1 + type: Transform + - uid: 1823 + components: + - pos: -21.5,-7.5 + parent: 1 + type: Transform + - uid: 1824 + components: + - pos: -22.5,-7.5 + parent: 1 + type: Transform + - uid: 1839 + components: + - pos: -19.5,-6.5 + parent: 1 + type: Transform + - uid: 1840 + components: + - pos: -19.5,-7.5 + parent: 1 + type: Transform + - uid: 1841 + components: + - pos: -20.5,-7.5 + parent: 1 + type: Transform + - uid: 1867 + components: + - pos: -59.5,-24.5 + parent: 1 + type: Transform + - uid: 1982 + components: + - pos: 6.5,-7.5 + parent: 1 + type: Transform + - uid: 1993 + components: + - pos: -77.5,-2.5 + parent: 1 + type: Transform + - uid: 2024 + components: + - pos: 5.5,-10.5 + parent: 1 + type: Transform + - uid: 2038 + components: + - pos: -19.5,0.5 + parent: 1 + type: Transform + - uid: 2046 + components: + - pos: 6.5,55.5 + parent: 1 + type: Transform + - uid: 2079 + components: + - pos: -19.5,-5.5 + parent: 1 + type: Transform + - uid: 2080 + components: + - pos: -19.5,-4.5 + parent: 1 + type: Transform + - uid: 2081 + components: + - pos: -19.5,-3.5 + parent: 1 + type: Transform + - uid: 2082 + components: + - pos: -19.5,-2.5 + parent: 1 + type: Transform + - uid: 2083 + components: + - pos: -19.5,1.5 + parent: 1 + type: Transform + - uid: 2084 + components: + - pos: -19.5,-1.5 + parent: 1 + type: Transform + - uid: 2085 + components: + - pos: -19.5,-0.5 + parent: 1 + type: Transform + - uid: 2086 + components: + - pos: -10.5,-19.5 + parent: 1 + type: Transform + - uid: 2087 + components: + - pos: -15.5,20.5 + parent: 1 + type: Transform + - uid: 2088 + components: + - pos: -16.5,20.5 + parent: 1 + type: Transform + - uid: 2091 + components: + - pos: -17.5,20.5 + parent: 1 + type: Transform + - uid: 2093 + components: + - pos: -14.5,21.5 + parent: 1 + type: Transform + - uid: 2094 + components: + - pos: -14.5,22.5 + parent: 1 + type: Transform + - uid: 2095 + components: + - pos: -15.5,23.5 + parent: 1 + type: Transform + - uid: 2096 + components: + - pos: -17.5,23.5 + parent: 1 + type: Transform + - uid: 2098 + components: + - pos: -14.5,23.5 + parent: 1 + type: Transform + - uid: 2099 + components: + - pos: -16.5,23.5 + parent: 1 + type: Transform + - uid: 2100 + components: + - pos: -17.5,22.5 + parent: 1 + type: Transform + - uid: 2156 + components: + - pos: -29.5,42.5 + parent: 1 + type: Transform + - uid: 2161 + components: + - pos: -28.5,42.5 + parent: 1 + type: Transform + - uid: 2162 + components: + - pos: -27.5,42.5 + parent: 1 + type: Transform + - uid: 2163 + components: + - pos: -26.5,42.5 + parent: 1 + type: Transform + - uid: 2164 + components: + - pos: -25.5,42.5 + parent: 1 + type: Transform + - uid: 2165 + components: + - pos: -25.5,43.5 + parent: 1 + type: Transform + - uid: 2166 + components: + - pos: -24.5,43.5 + parent: 1 + type: Transform + - uid: 2169 + components: + - pos: -21.5,43.5 + parent: 1 + type: Transform + - uid: 2170 + components: + - pos: -20.5,43.5 + parent: 1 + type: Transform + - uid: 2171 + components: + - pos: -20.5,42.5 + parent: 1 + type: Transform + - uid: 2172 + components: + - pos: -19.5,42.5 + parent: 1 + type: Transform + - uid: 2173 + components: + - pos: -18.5,42.5 + parent: 1 + type: Transform + - uid: 2174 + components: + - pos: -26.5,39.5 + parent: 1 + type: Transform + - uid: 2175 + components: + - pos: -25.5,39.5 + parent: 1 + type: Transform + - uid: 2176 + components: + - pos: -25.5,38.5 + parent: 1 + type: Transform + - uid: 2177 + components: + - pos: -24.5,38.5 + parent: 1 + type: Transform + - uid: 2178 + components: + - pos: -23.5,38.5 + parent: 1 + type: Transform + - uid: 2179 + components: + - pos: -22.5,38.5 + parent: 1 + type: Transform + - uid: 2180 + components: + - pos: -21.5,38.5 + parent: 1 + type: Transform + - uid: 2181 + components: + - pos: -20.5,38.5 + parent: 1 + type: Transform + - uid: 2182 + components: + - pos: -20.5,39.5 + parent: 1 + type: Transform + - uid: 2184 + components: + - pos: -18.5,39.5 + parent: 1 + type: Transform + - uid: 2185 + components: + - pos: -17.5,39.5 + parent: 1 + type: Transform + - uid: 2186 + components: + - pos: -16.5,39.5 + parent: 1 + type: Transform + - uid: 2187 + components: + - pos: -15.5,39.5 + parent: 1 + type: Transform + - uid: 2196 + components: + - pos: -10.5,35.5 + parent: 1 + type: Transform + - uid: 2197 + components: + - pos: -9.5,35.5 + parent: 1 + type: Transform + - uid: 2198 + components: + - pos: -8.5,35.5 + parent: 1 + type: Transform + - uid: 2199 + components: + - pos: -7.5,35.5 + parent: 1 + type: Transform + - uid: 2201 + components: + - pos: -5.5,35.5 + parent: 1 + type: Transform + - uid: 2202 + components: + - pos: -4.5,35.5 + parent: 1 + type: Transform + - uid: 2203 + components: + - pos: -3.5,35.5 + parent: 1 + type: Transform + - uid: 2204 + components: + - pos: -2.5,35.5 + parent: 1 + type: Transform + - uid: 2206 + components: + - pos: -0.5,35.5 + parent: 1 + type: Transform + - uid: 2207 + components: + - pos: 0.5,35.5 + parent: 1 + type: Transform + - uid: 2208 + components: + - pos: 1.5,35.5 + parent: 1 + type: Transform + - uid: 2209 + components: + - pos: 2.5,35.5 + parent: 1 + type: Transform + - uid: 2210 + components: + - pos: 3.5,35.5 + parent: 1 + type: Transform + - uid: 2211 + components: + - pos: 4.5,35.5 + parent: 1 + type: Transform + - uid: 2212 + components: + - pos: 5.5,35.5 + parent: 1 + type: Transform + - uid: 2213 + components: + - pos: 5.5,29.5 + parent: 1 + type: Transform + - uid: 2214 + components: + - pos: 4.5,29.5 + parent: 1 + type: Transform + - uid: 2215 + components: + - pos: 3.5,29.5 + parent: 1 + type: Transform + - uid: 2216 + components: + - pos: 2.5,29.5 + parent: 1 + type: Transform + - uid: 2217 + components: + - pos: 1.5,29.5 + parent: 1 + type: Transform + - uid: 2218 + components: + - pos: 0.5,29.5 + parent: 1 + type: Transform + - uid: 2219 + components: + - pos: -0.5,29.5 + parent: 1 + type: Transform + - uid: 2220 + components: + - pos: -1.5,29.5 + parent: 1 + type: Transform + - uid: 2221 + components: + - pos: -4.5,32.5 + parent: 1 + type: Transform + - uid: 2222 + components: + - pos: -3.5,32.5 + parent: 1 + type: Transform + - uid: 2223 + components: + - pos: -4.5,29.5 + parent: 1 + type: Transform + - uid: 2226 + components: + - pos: -7.5,29.5 + parent: 1 + type: Transform + - uid: 2227 + components: + - pos: -2.5,32.5 + parent: 1 + type: Transform + - uid: 2228 + components: + - pos: -9.5,29.5 + parent: 1 + type: Transform + - uid: 2229 + components: + - pos: -1.5,32.5 + parent: 1 + type: Transform + - uid: 2231 + components: + - pos: -12.5,29.5 + parent: 1 + type: Transform + - uid: 2233 + components: + - pos: -14.5,29.5 + parent: 1 + type: Transform + - uid: 2234 + components: + - pos: -15.5,29.5 + parent: 1 + type: Transform + - uid: 2235 + components: + - pos: -16.5,29.5 + parent: 1 + type: Transform + - uid: 2266 + components: + - pos: 18.5,-33.5 + parent: 1 + type: Transform + - uid: 2285 + components: + - pos: -23.5,13.5 + parent: 1 + type: Transform + - uid: 2296 + components: + - pos: 18.5,-31.5 + parent: 1 + type: Transform + - uid: 2316 + components: + - pos: -57.5,6.5 + parent: 1 + type: Transform + - uid: 2317 + components: + - pos: -57.5,7.5 + parent: 1 + type: Transform + - uid: 2318 + components: + - pos: -57.5,8.5 + parent: 1 + type: Transform + - uid: 2319 + components: + - pos: -57.5,9.5 + parent: 1 + type: Transform + - uid: 2320 + components: + - pos: -57.5,10.5 + parent: 1 + type: Transform + - uid: 2321 + components: + - pos: -58.5,1.5 + parent: 1 + type: Transform + - uid: 2322 + components: + - pos: -58.5,2.5 + parent: 1 + type: Transform + - uid: 2323 + components: + - pos: -58.5,3.5 + parent: 1 + type: Transform + - uid: 2324 + components: + - pos: -58.5,4.5 + parent: 1 + type: Transform + - uid: 2325 + components: + - pos: -58.5,5.5 + parent: 1 + type: Transform + - uid: 2326 + components: + - pos: -58.5,6.5 + parent: 1 + type: Transform + - uid: 2327 + components: + - pos: -59.5,6.5 + parent: 1 + type: Transform + - uid: 2328 + components: + - pos: -60.5,6.5 + parent: 1 + type: Transform + - uid: 2329 + components: + - pos: -61.5,6.5 + parent: 1 + type: Transform + - uid: 2330 + components: + - pos: -62.5,6.5 + parent: 1 + type: Transform + - uid: 2331 + components: + - pos: -62.5,5.5 + parent: 1 + type: Transform + - uid: 2332 + components: + - pos: -62.5,4.5 + parent: 1 + type: Transform + - uid: 2333 + components: + - pos: -62.5,3.5 + parent: 1 + type: Transform + - uid: 2334 + components: + - pos: -62.5,2.5 + parent: 1 + type: Transform + - uid: 2335 + components: + - pos: -62.5,1.5 + parent: 1 + type: Transform + - uid: 2336 + components: + - pos: -52.5,6.5 + parent: 1 + type: Transform + - uid: 2337 + components: + - pos: -52.5,10.5 + parent: 1 + type: Transform + - uid: 2338 + components: + - pos: -56.5,10.5 + parent: 1 + type: Transform + - uid: 2339 + components: + - pos: -56.5,6.5 + parent: 1 + type: Transform + - uid: 2364 + components: + - pos: -57.5,11.5 + parent: 1 + type: Transform + - uid: 2365 + components: + - pos: -57.5,12.5 + parent: 1 + type: Transform + - uid: 2366 + components: + - pos: -52.5,11.5 + parent: 1 + type: Transform + - uid: 2367 + components: + - pos: -52.5,12.5 + parent: 1 + type: Transform + - uid: 2369 + components: + - pos: -57.5,1.5 + parent: 1 + type: Transform + - uid: 2370 + components: + - pos: -56.5,1.5 + parent: 1 + type: Transform + - uid: 2371 + components: + - pos: -55.5,1.5 + parent: 1 + type: Transform + - uid: 2372 + components: + - pos: -54.5,1.5 + parent: 1 + type: Transform + - uid: 2373 + components: + - pos: -53.5,1.5 + parent: 1 + type: Transform + - uid: 2374 + components: + - pos: -52.5,1.5 + parent: 1 + type: Transform + - uid: 2383 + components: + - pos: -62.5,0.5 + parent: 1 + type: Transform + - uid: 2384 + components: + - pos: -62.5,-0.5 + parent: 1 + type: Transform + - uid: 2385 + components: + - pos: -62.5,-1.5 + parent: 1 + type: Transform + - uid: 2386 + components: + - pos: -52.5,-4.5 + parent: 1 + type: Transform + - uid: 2387 + components: + - pos: -53.5,-4.5 + parent: 1 + type: Transform + - uid: 2388 + components: + - pos: -54.5,-4.5 + parent: 1 + type: Transform + - uid: 2389 + components: + - pos: -55.5,-4.5 + parent: 1 + type: Transform + - uid: 2390 + components: + - pos: -56.5,-4.5 + parent: 1 + type: Transform + - uid: 2391 + components: + - pos: -57.5,-4.5 + parent: 1 + type: Transform + - uid: 2392 + components: + - pos: -58.5,-4.5 + parent: 1 + type: Transform + - uid: 2397 + components: + - pos: -62.5,-2.5 + parent: 1 + type: Transform + - uid: 2398 + components: + - pos: -61.5,-2.5 + parent: 1 + type: Transform + - uid: 2404 + components: + - pos: -48.5,15.5 + parent: 1 + type: Transform + - uid: 2405 + components: + - pos: -47.5,15.5 + parent: 1 + type: Transform + - uid: 2406 + components: + - pos: -46.5,15.5 + parent: 1 + type: Transform + - uid: 2407 + components: + - pos: -45.5,15.5 + parent: 1 + type: Transform + - uid: 2415 + components: + - pos: -41.5,15.5 + parent: 1 + type: Transform + - uid: 2432 + components: + - pos: -49.5,-4.5 + parent: 1 + type: Transform + - uid: 2433 + components: + - pos: -49.5,-6.5 + parent: 1 + type: Transform + - uid: 2434 + components: + - pos: -49.5,-3.5 + parent: 1 + type: Transform + - uid: 2435 + components: + - pos: -48.5,-3.5 + parent: 1 + type: Transform + - uid: 2436 + components: + - pos: -47.5,-3.5 + parent: 1 + type: Transform + - uid: 2437 + components: + - pos: -46.5,-3.5 + parent: 1 + type: Transform + - uid: 2438 + components: + - pos: -45.5,-3.5 + parent: 1 + type: Transform + - uid: 2439 + components: + - pos: -44.5,-3.5 + parent: 1 + type: Transform + - uid: 2440 + components: + - pos: -43.5,-3.5 + parent: 1 + type: Transform + - uid: 2441 + components: + - pos: -42.5,-3.5 + parent: 1 + type: Transform + - uid: 2445 + components: + - pos: -39.5,-2.5 + parent: 1 + type: Transform + - uid: 2446 + components: + - pos: -39.5,-1.5 + parent: 1 + type: Transform + - uid: 2447 + components: + - pos: -39.5,-0.5 + parent: 1 + type: Transform + - uid: 2475 + components: + - pos: -46.5,17.5 + parent: 1 + type: Transform + - uid: 2476 + components: + - pos: -48.5,17.5 + parent: 1 + type: Transform + - uid: 2485 + components: + - pos: -45.5,17.5 + parent: 1 + type: Transform + - uid: 2486 + components: + - pos: -47.5,17.5 + parent: 1 + type: Transform + - uid: 2496 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 2506 + components: + - pos: -35.5,24.5 + parent: 1 + type: Transform + - uid: 2573 + components: + - pos: -42.5,-1.5 + parent: 1 + type: Transform + - uid: 2574 + components: + - pos: -42.5,-2.5 + parent: 1 + type: Transform + - uid: 2575 + components: + - pos: -41.5,-2.5 + parent: 1 + type: Transform + - uid: 2576 + components: + - pos: -40.5,-2.5 + parent: 1 + type: Transform + - uid: 2743 + components: + - pos: 37.5,-24.5 + parent: 1 + type: Transform + - uid: 2763 + components: + - pos: 51.5,-10.5 + parent: 1 + type: Transform + - uid: 2765 + components: + - pos: 51.5,-8.5 + parent: 1 + type: Transform + - uid: 2766 + components: + - pos: 51.5,-7.5 + parent: 1 + type: Transform + - uid: 2767 + components: + - pos: 51.5,-6.5 + parent: 1 + type: Transform + - uid: 2768 + components: + - pos: 51.5,-5.5 + parent: 1 + type: Transform + - uid: 2769 + components: + - pos: 51.5,-4.5 + parent: 1 + type: Transform + - uid: 2770 + components: + - pos: 51.5,-3.5 + parent: 1 + type: Transform + - uid: 2771 + components: + - pos: 51.5,-2.5 + parent: 1 + type: Transform + - uid: 2772 + components: + - pos: 51.5,-1.5 + parent: 1 + type: Transform + - uid: 2826 + components: + - pos: -5.5,30.5 + parent: 1 + type: Transform + - uid: 2843 + components: + - pos: 93.5,-4.5 + parent: 1 + type: Transform + - uid: 2868 + components: + - pos: 58.5,-2.5 + parent: 1 + type: Transform + - uid: 2869 + components: + - pos: 58.5,-1.5 + parent: 1 + type: Transform + - uid: 2972 + components: + - pos: 40.5,-17.5 + parent: 1 + type: Transform + - uid: 2973 + components: + - pos: 30.5,24.5 + parent: 1 + type: Transform + - uid: 2974 + components: + - pos: 29.5,24.5 + parent: 1 + type: Transform + - uid: 2975 + components: + - pos: 28.5,24.5 + parent: 1 + type: Transform + - uid: 2976 + components: + - pos: 27.5,24.5 + parent: 1 + type: Transform + - uid: 2985 + components: + - pos: 39.5,-18.5 + parent: 1 + type: Transform + - uid: 2986 + components: + - pos: 40.5,-18.5 + parent: 1 + type: Transform + - uid: 2987 + components: + - pos: 40.5,-16.5 + parent: 1 + type: Transform + - uid: 2998 + components: + - pos: -61.5,-4.5 + parent: 1 + type: Transform + - uid: 3001 + components: + - pos: -25.5,1.5 + parent: 1 + type: Transform + - uid: 3006 + components: + - pos: -60.5,-4.5 + parent: 1 + type: Transform + - uid: 3019 + components: + - pos: 40.5,29.5 + parent: 1 + type: Transform + - uid: 3020 + components: + - pos: 39.5,29.5 + parent: 1 + type: Transform + - uid: 3021 + components: + - pos: 36.5,31.5 + parent: 1 + type: Transform + - uid: 3022 + components: + - pos: 37.5,29.5 + parent: 1 + type: Transform + - uid: 3023 + components: + - pos: 36.5,29.5 + parent: 1 + type: Transform + - uid: 3024 + components: + - pos: 35.5,29.5 + parent: 1 + type: Transform + - uid: 3025 + components: + - pos: 34.5,29.5 + parent: 1 + type: Transform + - uid: 3026 + components: + - pos: 33.5,29.5 + parent: 1 + type: Transform + - uid: 3027 + components: + - pos: 32.5,29.5 + parent: 1 + type: Transform + - uid: 3029 + components: + - pos: 30.5,29.5 + parent: 1 + type: Transform + - uid: 3032 + components: + - pos: 27.5,29.5 + parent: 1 + type: Transform + - uid: 3034 + components: + - pos: 25.5,29.5 + parent: 1 + type: Transform + - uid: 3035 + components: + - pos: 24.5,29.5 + parent: 1 + type: Transform + - uid: 3036 + components: + - pos: 23.5,29.5 + parent: 1 + type: Transform + - uid: 3037 + components: + - pos: 22.5,29.5 + parent: 1 + type: Transform + - uid: 3038 + components: + - pos: 21.5,29.5 + parent: 1 + type: Transform + - uid: 3039 + components: + - pos: 20.5,29.5 + parent: 1 + type: Transform + - uid: 3040 + components: + - pos: 19.5,29.5 + parent: 1 + type: Transform + - uid: 3041 + components: + - pos: 18.5,29.5 + parent: 1 + type: Transform + - uid: 3071 + components: + - pos: 26.5,24.5 + parent: 1 + type: Transform + - uid: 3086 + components: + - pos: 51.5,18.5 + parent: 1 + type: Transform + - uid: 3087 + components: + - pos: 51.5,17.5 + parent: 1 + type: Transform + - uid: 3088 + components: + - pos: 51.5,16.5 + parent: 1 + type: Transform + - uid: 3089 + components: + - pos: 51.5,15.5 + parent: 1 + type: Transform + - uid: 3090 + components: + - pos: 51.5,14.5 + parent: 1 + type: Transform + - uid: 3091 + components: + - pos: 51.5,13.5 + parent: 1 + type: Transform + - uid: 3092 + components: + - pos: 51.5,12.5 + parent: 1 + type: Transform + - uid: 3093 + components: + - pos: 51.5,11.5 + parent: 1 + type: Transform + - uid: 3094 + components: + - pos: 51.5,10.5 + parent: 1 + type: Transform + - uid: 3095 + components: + - pos: 51.5,9.5 + parent: 1 + type: Transform + - uid: 3123 + components: + - pos: 58.5,10.5 + parent: 1 + type: Transform + - uid: 3124 + components: + - pos: 58.5,11.5 + parent: 1 + type: Transform + - uid: 3134 + components: + - pos: 55.5,18.5 + parent: 1 + type: Transform + - uid: 3135 + components: + - pos: 55.5,19.5 + parent: 1 + type: Transform + - uid: 3136 + components: + - pos: 55.5,20.5 + parent: 1 + type: Transform + - uid: 3137 + components: + - pos: 55.5,21.5 + parent: 1 + type: Transform + - uid: 3138 + components: + - pos: 55.5,22.5 + parent: 1 + type: Transform + - uid: 3139 + components: + - pos: 55.5,23.5 + parent: 1 + type: Transform + - uid: 3144 + components: + - pos: -59.5,26.5 + parent: 1 + type: Transform + - uid: 3145 + components: + - pos: -61.5,26.5 + parent: 1 + type: Transform + - uid: 3146 + components: + - pos: -60.5,26.5 + parent: 1 + type: Transform + - uid: 3166 + components: + - pos: 56.5,-6.5 + parent: 1 + type: Transform + - uid: 3167 + components: + - pos: 54.5,16.5 + parent: 1 + type: Transform + - uid: 3168 + components: + - pos: 54.5,17.5 + parent: 1 + type: Transform + - uid: 3169 + components: + - pos: 54.5,18.5 + parent: 1 + type: Transform + - uid: 3170 + components: + - pos: 62.5,30.5 + parent: 1 + type: Transform + - uid: 3171 + components: + - pos: 62.5,29.5 + parent: 1 + type: Transform + - uid: 3172 + components: + - pos: 62.5,28.5 + parent: 1 + type: Transform + - uid: 3173 + components: + - pos: 62.5,27.5 + parent: 1 + type: Transform + - uid: 3174 + components: + - pos: 62.5,26.5 + parent: 1 + type: Transform + - uid: 3175 + components: + - pos: 62.5,25.5 + parent: 1 + type: Transform + - uid: 3176 + components: + - pos: 62.5,24.5 + parent: 1 + type: Transform + - uid: 3178 + components: + - pos: 62.5,22.5 + parent: 1 + type: Transform + - uid: 3180 + components: + - pos: 62.5,20.5 + parent: 1 + type: Transform + - uid: 3181 + components: + - pos: 62.5,19.5 + parent: 1 + type: Transform + - uid: 3182 + components: + - pos: 62.5,18.5 + parent: 1 + type: Transform + - uid: 3183 + components: + - pos: 62.5,17.5 + parent: 1 + type: Transform + - uid: 3184 + components: + - pos: 62.5,16.5 + parent: 1 + type: Transform + - uid: 3185 + components: + - pos: 62.5,15.5 + parent: 1 + type: Transform + - uid: 3186 + components: + - pos: 62.5,14.5 + parent: 1 + type: Transform + - uid: 3188 + components: + - pos: 62.5,12.5 + parent: 1 + type: Transform + - uid: 3189 + components: + - pos: 62.5,11.5 + parent: 1 + type: Transform + - uid: 3190 + components: + - pos: 62.5,10.5 + parent: 1 + type: Transform + - uid: 3191 + components: + - pos: 62.5,9.5 + parent: 1 + type: Transform + - uid: 3192 + components: + - pos: 54.5,34.5 + parent: 1 + type: Transform + - uid: 3193 + components: + - pos: 54.5,35.5 + parent: 1 + type: Transform + - uid: 3201 + components: + - pos: 53.5,7.5 + parent: 1 + type: Transform + - uid: 3202 + components: + - pos: 46.5,36.5 + parent: 1 + type: Transform + - uid: 3203 + components: + - pos: 45.5,36.5 + parent: 1 + type: Transform + - uid: 3204 + components: + - pos: 51.5,31.5 + parent: 1 + type: Transform + - uid: 3205 + components: + - pos: 51.5,30.5 + parent: 1 + type: Transform + - uid: 3206 + components: + - pos: 49.5,31.5 + parent: 1 + type: Transform + - uid: 3207 + components: + - pos: 48.5,31.5 + parent: 1 + type: Transform + - uid: 3208 + components: + - pos: 47.5,31.5 + parent: 1 + type: Transform + - uid: 3209 + components: + - pos: 46.5,31.5 + parent: 1 + type: Transform + - uid: 3210 + components: + - pos: 45.5,31.5 + parent: 1 + type: Transform + - uid: 3316 + components: + - pos: 46.5,25.5 + parent: 1 + type: Transform + - uid: 3328 + components: + - pos: 30.5,26.5 + parent: 1 + type: Transform + - uid: 3347 + components: + - pos: -25.5,13.5 + parent: 1 + type: Transform + - uid: 3348 + components: + - pos: -24.5,13.5 + parent: 1 + type: Transform + - uid: 3354 + components: + - pos: 65.5,-25.5 + parent: 1 + type: Transform + - uid: 3355 + components: + - pos: 64.5,-25.5 + parent: 1 + type: Transform + - uid: 3356 + components: + - pos: 65.5,-26.5 + parent: 1 + type: Transform + - uid: 3357 + components: + - pos: 64.5,-26.5 + parent: 1 + type: Transform + - uid: 3362 + components: + - pos: -61.5,33.5 + parent: 1 + type: Transform + - uid: 3376 + components: + - pos: -22.5,13.5 + parent: 1 + type: Transform + - uid: 3377 + components: + - pos: -21.5,13.5 + parent: 1 + type: Transform + - uid: 3378 + components: + - pos: -20.5,13.5 + parent: 1 + type: Transform + - uid: 3379 + components: + - pos: -19.5,13.5 + parent: 1 + type: Transform + - uid: 3400 + components: + - pos: -19.5,10.5 + parent: 1 + type: Transform + - uid: 3401 + components: + - pos: -19.5,11.5 + parent: 1 + type: Transform + - uid: 3402 + components: + - pos: -19.5,12.5 + parent: 1 + type: Transform + - uid: 3406 + components: + - pos: -25.5,10.5 + parent: 1 + type: Transform + - uid: 3407 + components: + - pos: -25.5,11.5 + parent: 1 + type: Transform + - uid: 3408 + components: + - pos: -25.5,12.5 + parent: 1 + type: Transform + - uid: 3449 + components: + - pos: 78.5,1.5 + parent: 1 + type: Transform + - uid: 3450 + components: + - pos: 83.5,1.5 + parent: 1 + type: Transform + - uid: 3451 + components: + - pos: 83.5,6.5 + parent: 1 + type: Transform + - uid: 3452 + components: + - pos: 77.5,1.5 + parent: 1 + type: Transform + - uid: 3453 + components: + - pos: 77.5,6.5 + parent: 1 + type: Transform + - uid: 3457 + components: + - pos: 71.5,1.5 + parent: 1 + type: Transform + - uid: 3458 + components: + - pos: 71.5,-1.5 + parent: 1 + type: Transform + - uid: 3460 + components: + - pos: 75.5,-1.5 + parent: 1 + type: Transform + - uid: 3461 + components: + - pos: 77.5,-1.5 + parent: 1 + type: Transform + - uid: 3462 + components: + - pos: 79.5,-1.5 + parent: 1 + type: Transform + - uid: 3463 + components: + - pos: 81.5,-1.5 + parent: 1 + type: Transform + - uid: 3464 + components: + - pos: 83.5,-1.5 + parent: 1 + type: Transform + - uid: 3465 + components: + - pos: 82.5,-1.5 + parent: 1 + type: Transform + - uid: 3466 + components: + - pos: 80.5,-1.5 + parent: 1 + type: Transform + - uid: 3467 + components: + - pos: 78.5,-1.5 + parent: 1 + type: Transform + - uid: 3468 + components: + - pos: 76.5,-1.5 + parent: 1 + type: Transform + - uid: 3474 + components: + - pos: 84.5,-1.5 + parent: 1 + type: Transform + - uid: 3475 + components: + - pos: 85.5,-1.5 + parent: 1 + type: Transform + - uid: 3476 + components: + - pos: 86.5,-1.5 + parent: 1 + type: Transform + - uid: 3477 + components: + - pos: 72.5,-21.5 + parent: 1 + type: Transform + - uid: 3478 + components: + - pos: 73.5,-21.5 + parent: 1 + type: Transform + - uid: 3479 + components: + - pos: 74.5,-21.5 + parent: 1 + type: Transform + - uid: 3482 + components: + - pos: 77.5,-21.5 + parent: 1 + type: Transform + - uid: 3483 + components: + - pos: -44.5,-19.5 + parent: 1 + type: Transform + - uid: 3487 + components: + - pos: 59.5,-14.5 + parent: 1 + type: Transform + - uid: 3492 + components: + - pos: 59.5,-13.5 + parent: 1 + type: Transform + - uid: 3493 + components: + - pos: 59.5,-12.5 + parent: 1 + type: Transform + - uid: 3494 + components: + - pos: 59.5,-11.5 + parent: 1 + type: Transform + - uid: 3495 + components: + - pos: 59.5,-10.5 + parent: 1 + type: Transform + - uid: 3496 + components: + - pos: 59.5,-9.5 + parent: 1 + type: Transform + - uid: 3497 + components: + - pos: 59.5,-8.5 + parent: 1 + type: Transform + - uid: 3498 + components: + - pos: -61.5,34.5 + parent: 1 + type: Transform + - uid: 3499 + components: + - pos: -60.5,39.5 + parent: 1 + type: Transform + - uid: 3500 + components: + - pos: -59.5,39.5 + parent: 1 + type: Transform + - uid: 3502 + components: + - pos: 61.5,-5.5 + parent: 1 + type: Transform + - uid: 3503 + components: + - pos: 61.5,-4.5 + parent: 1 + type: Transform + - uid: 3504 + components: + - pos: 61.5,-3.5 + parent: 1 + type: Transform + - uid: 3505 + components: + - pos: 61.5,-2.5 + parent: 1 + type: Transform + - uid: 3506 + components: + - pos: 61.5,-1.5 + parent: 1 + type: Transform + - uid: 3588 + components: + - pos: 14.5,-14.5 + parent: 1 + type: Transform + - uid: 3589 + components: + - pos: 15.5,-14.5 + parent: 1 + type: Transform + - uid: 3590 + components: + - pos: 16.5,-14.5 + parent: 1 + type: Transform + - uid: 3591 + components: + - pos: 17.5,-14.5 + parent: 1 + type: Transform + - uid: 3592 + components: + - pos: 18.5,-14.5 + parent: 1 + type: Transform + - uid: 3593 + components: + - pos: 19.5,-14.5 + parent: 1 + type: Transform + - uid: 3594 + components: + - pos: 20.5,-14.5 + parent: 1 + type: Transform + - uid: 3595 + components: + - pos: 20.5,-15.5 + parent: 1 + type: Transform + - uid: 3596 + components: + - pos: 20.5,-16.5 + parent: 1 + type: Transform + - uid: 3597 + components: + - pos: 20.5,-17.5 + parent: 1 + type: Transform + - uid: 3598 + components: + - pos: 20.5,-18.5 + parent: 1 + type: Transform + - uid: 3606 + components: + - pos: 3.5,31.5 + parent: 1 + type: Transform + - uid: 3609 + components: + - pos: 5.5,31.5 + parent: 1 + type: Transform + - uid: 3617 + components: + - pos: 20.5,31.5 + parent: 1 + type: Transform + - uid: 3618 + components: + - pos: 18.5,31.5 + parent: 1 + type: Transform + - uid: 3622 + components: + - pos: 2.5,31.5 + parent: 1 + type: Transform + - uid: 3623 + components: + - pos: 4.5,31.5 + parent: 1 + type: Transform + - uid: 3630 + components: + - pos: 19.5,31.5 + parent: 1 + type: Transform + - uid: 3631 + components: + - pos: 21.5,31.5 + parent: 1 + type: Transform + - uid: 3641 + components: + - pos: 18.5,35.5 + parent: 1 + type: Transform + - uid: 3642 + components: + - pos: 3.5,38.5 + parent: 1 + type: Transform + - uid: 3643 + components: + - pos: 2.5,38.5 + parent: 1 + type: Transform + - uid: 3644 + components: + - pos: 16.5,39.5 + parent: 1 + type: Transform + - uid: 3645 + components: + - pos: 16.5,38.5 + parent: 1 + type: Transform + - uid: 3646 + components: + - pos: 4.5,38.5 + parent: 1 + type: Transform + - uid: 3647 + components: + - pos: 5.5,38.5 + parent: 1 + type: Transform + - uid: 3648 + components: + - pos: 6.5,38.5 + parent: 1 + type: Transform + - uid: 3649 + components: + - pos: 7.5,38.5 + parent: 1 + type: Transform + - uid: 3650 + components: + - pos: 7.5,39.5 + parent: 1 + type: Transform + - uid: 3659 + components: + - pos: -6.5,38.5 + parent: 1 + type: Transform + - uid: 3660 + components: + - pos: -7.5,38.5 + parent: 1 + type: Transform + - uid: 3661 + components: + - pos: -8.5,38.5 + parent: 1 + type: Transform + - uid: 3662 + components: + - pos: 17.5,38.5 + parent: 1 + type: Transform + - uid: 3663 + components: + - pos: 18.5,38.5 + parent: 1 + type: Transform + - uid: 3664 + components: + - pos: 19.5,38.5 + parent: 1 + type: Transform + - uid: 3665 + components: + - pos: 20.5,38.5 + parent: 1 + type: Transform + - uid: 3666 + components: + - pos: 21.5,38.5 + parent: 1 + type: Transform + - uid: 3667 + components: + - pos: 22.5,38.5 + parent: 1 + type: Transform + - uid: 3668 + components: + - pos: 23.5,38.5 + parent: 1 + type: Transform + - uid: 3679 + components: + - pos: -60.5,38.5 + parent: 1 + type: Transform + - uid: 3680 + components: + - pos: -60.5,34.5 + parent: 1 + type: Transform + - uid: 3681 + components: + - pos: -58.5,26.5 + parent: 1 + type: Transform + - uid: 3682 + components: + - pos: -58.5,24.5 + parent: 1 + type: Transform + - uid: 3687 + components: + - pos: -58.5,25.5 + parent: 1 + type: Transform + - uid: 3688 + components: + - pos: -58.5,23.5 + parent: 1 + type: Transform + - uid: 3690 + components: + - pos: -35.5,21.5 + parent: 1 + type: Transform + - uid: 3692 + components: + - pos: -36.5,21.5 + parent: 1 + type: Transform + - uid: 3693 + components: + - pos: -33.5,41.5 + parent: 1 + type: Transform + - uid: 3694 + components: + - pos: -26.5,22.5 + parent: 1 + type: Transform + - uid: 3696 + components: + - pos: -33.5,39.5 + parent: 1 + type: Transform + - uid: 3697 + components: + - pos: -37.5,36.5 + parent: 1 + type: Transform + - uid: 3698 + components: + - pos: -36.5,35.5 + parent: 1 + type: Transform + - uid: 3699 + components: + - pos: -36.5,33.5 + parent: 1 + type: Transform + - uid: 3700 + components: + - pos: -34.5,33.5 + parent: 1 + type: Transform + - uid: 3701 + components: + - pos: -35.5,33.5 + parent: 1 + type: Transform + - uid: 3702 + components: + - pos: -36.5,34.5 + parent: 1 + type: Transform + - uid: 3703 + components: + - pos: -36.5,36.5 + parent: 1 + type: Transform + - uid: 3704 + components: + - pos: -60.5,-14.5 + parent: 1 + type: Transform + - uid: 3705 + components: + - pos: -9.5,-43.5 + parent: 1 + type: Transform + - uid: 3706 + components: + - pos: -17.5,-42.5 + parent: 1 + type: Transform + - uid: 3707 + components: + - pos: -16.5,-43.5 + parent: 1 + type: Transform + - uid: 3711 + components: + - pos: -16.5,-46.5 + parent: 1 + type: Transform + - uid: 3712 + components: + - pos: -12.5,-47.5 + parent: 1 + type: Transform + - uid: 3713 + components: + - pos: -16.5,-45.5 + parent: 1 + type: Transform + - uid: 3714 + components: + - pos: -10.5,-49.5 + parent: 1 + type: Transform + - uid: 3715 + components: + - pos: -9.5,-49.5 + parent: 1 + type: Transform + - uid: 3716 + components: + - pos: -11.5,-48.5 + parent: 1 + type: Transform + - uid: 3720 + components: + - pos: 34.5,35.5 + parent: 1 + type: Transform + - uid: 3721 + components: + - pos: 33.5,35.5 + parent: 1 + type: Transform + - uid: 3722 + components: + - pos: 32.5,35.5 + parent: 1 + type: Transform + - uid: 3723 + components: + - pos: 31.5,35.5 + parent: 1 + type: Transform + - uid: 3725 + components: + - pos: 29.5,35.5 + parent: 1 + type: Transform + - uid: 3726 + components: + - pos: 28.5,35.5 + parent: 1 + type: Transform + - uid: 3727 + components: + - pos: 27.5,35.5 + parent: 1 + type: Transform + - uid: 3728 + components: + - pos: 26.5,35.5 + parent: 1 + type: Transform + - uid: 3729 + components: + - pos: 46.5,-30.5 + parent: 1 + type: Transform + - uid: 3730 + components: + - pos: 24.5,35.5 + parent: 1 + type: Transform + - uid: 3731 + components: + - pos: 23.5,35.5 + parent: 1 + type: Transform + - uid: 3732 + components: + - pos: 22.5,35.5 + parent: 1 + type: Transform + - uid: 3733 + components: + - pos: 21.5,35.5 + parent: 1 + type: Transform + - uid: 3734 + components: + - pos: 20.5,35.5 + parent: 1 + type: Transform + - uid: 3735 + components: + - pos: 19.5,35.5 + parent: 1 + type: Transform + - uid: 3737 + components: + - pos: -17.5,-43.5 + parent: 1 + type: Transform + - uid: 3738 + components: + - pos: -17.5,-41.5 + parent: 1 + type: Transform + - uid: 3739 + components: + - pos: -8.5,-44.5 + parent: 1 + type: Transform + - uid: 3740 + components: + - pos: -8.5,-46.5 + parent: 1 + type: Transform + - uid: 3741 + components: + - pos: -7.5,-46.5 + parent: 1 + type: Transform + - uid: 3742 + components: + - pos: -8.5,-45.5 + parent: 1 + type: Transform + - uid: 3743 + components: + - pos: -9.5,-44.5 + parent: 1 + type: Transform + - uid: 3744 + components: + - pos: -10.5,-28.5 + parent: 1 + type: Transform + - uid: 3745 + components: + - pos: -10.5,-29.5 + parent: 1 + type: Transform + - uid: 3746 + components: + - pos: -11.5,-30.5 + parent: 1 + type: Transform + - uid: 3747 + components: + - pos: -11.5,-29.5 + parent: 1 + type: Transform + - uid: 3748 + components: + - pos: -10.5,-43.5 + parent: 1 + type: Transform + - uid: 3749 + components: + - pos: -33.5,-30.5 + parent: 1 + type: Transform + - uid: 3750 + components: + - pos: -33.5,-32.5 + parent: 1 + type: Transform + - uid: 3752 + components: + - pos: -31.5,-34.5 + parent: 1 + type: Transform + - uid: 3753 + components: + - pos: -33.5,-31.5 + parent: 1 + type: Transform + - uid: 3754 + components: + - pos: -33.5,-33.5 + parent: 1 + type: Transform + - uid: 3755 + components: + - pos: -32.5,-34.5 + parent: 1 + type: Transform + - uid: 3759 + components: + - pos: -60.5,-30.5 + parent: 1 + type: Transform + - uid: 3761 + components: + - pos: -61.5,-25.5 + parent: 1 + type: Transform + - uid: 3763 + components: + - pos: 42.5,47.5 + parent: 1 + type: Transform + - uid: 3767 + components: + - pos: 42.5,43.5 + parent: 1 + type: Transform + - uid: 3768 + components: + - pos: 34.5,55.5 + parent: 1 + type: Transform + - uid: 3770 + components: + - pos: 53.5,-2.5 + parent: 1 + type: Transform + - uid: 3772 + components: + - pos: 30.5,55.5 + parent: 1 + type: Transform + - uid: 3773 + components: + - pos: 29.5,55.5 + parent: 1 + type: Transform + - uid: 3774 + components: + - pos: 28.5,55.5 + parent: 1 + type: Transform + - uid: 3775 + components: + - pos: 27.5,55.5 + parent: 1 + type: Transform + - uid: 3776 + components: + - pos: 26.5,55.5 + parent: 1 + type: Transform + - uid: 3783 + components: + - pos: 19.5,55.5 + parent: 1 + type: Transform + - uid: 3784 + components: + - pos: 18.5,55.5 + parent: 1 + type: Transform + - uid: 3785 + components: + - pos: 17.5,55.5 + parent: 1 + type: Transform + - uid: 3786 + components: + - pos: 16.5,55.5 + parent: 1 + type: Transform + - uid: 3787 + components: + - pos: 15.5,55.5 + parent: 1 + type: Transform + - uid: 3788 + components: + - pos: 14.5,55.5 + parent: 1 + type: Transform + - uid: 3792 + components: + - pos: 10.5,55.5 + parent: 1 + type: Transform + - uid: 3796 + components: + - pos: 61.5,15.5 + parent: 1 + type: Transform + - uid: 3805 + components: + - pos: -2.5,55.5 + parent: 1 + type: Transform + - uid: 3806 + components: + - pos: -3.5,55.5 + parent: 1 + type: Transform + - uid: 3807 + components: + - pos: -4.5,55.5 + parent: 1 + type: Transform + - uid: 3808 + components: + - pos: -5.5,55.5 + parent: 1 + type: Transform + - uid: 3809 + components: + - pos: -6.5,55.5 + parent: 1 + type: Transform + - uid: 3813 + components: + - pos: -10.5,55.5 + parent: 1 + type: Transform + - uid: 3815 + components: + - pos: -60.5,-31.5 + parent: 1 + type: Transform + - uid: 3816 + components: + - pos: -61.5,-26.5 + parent: 1 + type: Transform + - uid: 3817 + components: + - pos: -61.5,-30.5 + parent: 1 + type: Transform + - uid: 3818 + components: + - pos: -64.5,-6.5 + parent: 1 + type: Transform + - uid: 3820 + components: + - pos: -65.5,-3.5 + parent: 1 + type: Transform + - uid: 3825 + components: + - pos: -65.5,-4.5 + parent: 1 + type: Transform + - uid: 3826 + components: + - pos: -64.5,-5.5 + parent: 1 + type: Transform + - uid: 3827 + components: + - pos: -62.5,15.5 + parent: 1 + type: Transform + - uid: 3828 + components: + - pos: -61.5,15.5 + parent: 1 + type: Transform + - uid: 3830 + components: + - pos: -65.5,14.5 + parent: 1 + type: Transform + - uid: 3831 + components: + - pos: -65.5,12.5 + parent: 1 + type: Transform + - uid: 3832 + components: + - pos: -65.5,11.5 + parent: 1 + type: Transform + - uid: 3833 + components: + - pos: -65.5,13.5 + parent: 1 + type: Transform + - uid: 3834 + components: + - pos: -65.5,15.5 + parent: 1 + type: Transform + - uid: 3844 + components: + - pos: -37.5,15.5 + parent: 1 + type: Transform + - uid: 3845 + components: + - pos: -7.5,41.5 + parent: 1 + type: Transform + - uid: 3846 + components: + - pos: -10.5,41.5 + parent: 1 + type: Transform + - uid: 3847 + components: + - pos: -8.5,41.5 + parent: 1 + type: Transform + - uid: 3848 + components: + - pos: -9.5,41.5 + parent: 1 + type: Transform + - uid: 3849 + components: + - pos: -11.5,41.5 + parent: 1 + type: Transform + - uid: 3850 + components: + - pos: -6.5,41.5 + parent: 1 + type: Transform + - uid: 3851 + components: + - pos: -6.5,40.5 + parent: 1 + type: Transform + - uid: 3852 + components: + - pos: -6.5,39.5 + parent: 1 + type: Transform + - uid: 3853 + components: + - pos: -9.5,38.5 + parent: 1 + type: Transform + - uid: 3854 + components: + - pos: -9.5,40.5 + parent: 1 + type: Transform + - uid: 3855 + components: + - pos: -18.5,43.5 + parent: 1 + type: Transform + - uid: 3856 + components: + - pos: -18.5,44.5 + parent: 1 + type: Transform + - uid: 3857 + components: + - pos: -18.5,45.5 + parent: 1 + type: Transform + - uid: 3858 + components: + - pos: -18.5,46.5 + parent: 1 + type: Transform + - uid: 3859 + components: + - pos: -18.5,47.5 + parent: 1 + type: Transform + - uid: 3860 + components: + - pos: 7.5,41.5 + parent: 1 + type: Transform + - uid: 3867 + components: + - pos: 2.5,41.5 + parent: 1 + type: Transform + - uid: 3868 + components: + - pos: 2.5,39.5 + parent: 1 + type: Transform + - uid: 3976 + components: + - pos: -36.5,13.5 + parent: 1 + type: Transform + - uid: 3980 + components: + - pos: -37.5,14.5 + parent: 1 + type: Transform + - uid: 3982 + components: + - pos: -34.5,-3.5 + parent: 1 + type: Transform + - uid: 3983 + components: + - pos: -35.5,-4.5 + parent: 1 + type: Transform + - uid: 4040 + components: + - pos: 65.5,9.5 + parent: 1 + type: Transform + - uid: 4041 + components: + - pos: 65.5,12.5 + parent: 1 + type: Transform + - uid: 4049 + components: + - pos: 68.5,6.5 + parent: 1 + type: Transform + - uid: 4050 + components: + - pos: 68.5,7.5 + parent: 1 + type: Transform + - uid: 4051 + components: + - pos: 68.5,8.5 + parent: 1 + type: Transform + - uid: 4052 + components: + - pos: 68.5,9.5 + parent: 1 + type: Transform + - uid: 4053 + components: + - pos: 71.5,6.5 + parent: 1 + type: Transform + - uid: 4054 + components: + - pos: 71.5,7.5 + parent: 1 + type: Transform + - uid: 4055 + components: + - pos: 71.5,8.5 + parent: 1 + type: Transform + - uid: 4056 + components: + - pos: 71.5,9.5 + parent: 1 + type: Transform + - uid: 4062 + components: + - pos: -36.5,-5.5 + parent: 1 + type: Transform + - uid: 4063 + components: + - pos: -36.5,-7.5 + parent: 1 + type: Transform + - uid: 4064 + components: + - pos: -37.5,-7.5 + parent: 1 + type: Transform + - uid: 4067 + components: + - pos: -38.5,-7.5 + parent: 1 + type: Transform + - uid: 4068 + components: + - pos: -36.5,-6.5 + parent: 1 + type: Transform + - uid: 4072 + components: + - pos: -36.5,-4.5 + parent: 1 + type: Transform + - uid: 4085 + components: + - pos: 75.5,7.5 + parent: 1 + type: Transform + - uid: 4087 + components: + - pos: 75.5,1.5 + parent: 1 + type: Transform + - uid: 4091 + components: + - pos: 76.5,1.5 + parent: 1 + type: Transform + - uid: 4096 + components: + - pos: 75.5,6.5 + parent: 1 + type: Transform + - uid: 4103 + components: + - pos: -34.5,-4.5 + parent: 1 + type: Transform + - uid: 4107 + components: + - pos: 68.5,22.5 + parent: 1 + type: Transform + - uid: 4108 + components: + - pos: 93.5,23.5 + parent: 1 + type: Transform + - uid: 4116 + components: + - pos: 88.5,21.5 + parent: 1 + type: Transform + - uid: 4118 + components: + - pos: 88.5,22.5 + parent: 1 + type: Transform + - uid: 4119 + components: + - pos: 82.5,9.5 + parent: 1 + type: Transform + - uid: 4125 + components: + - pos: 63.5,30.5 + parent: 1 + type: Transform + - uid: 4126 + components: + - pos: 64.5,30.5 + parent: 1 + type: Transform + - uid: 4127 + components: + - pos: 65.5,30.5 + parent: 1 + type: Transform + - uid: 4128 + components: + - pos: 66.5,30.5 + parent: 1 + type: Transform + - uid: 4129 + components: + - pos: 67.5,30.5 + parent: 1 + type: Transform + - uid: 4130 + components: + - pos: 68.5,30.5 + parent: 1 + type: Transform + - uid: 4131 + components: + - pos: 69.5,30.5 + parent: 1 + type: Transform + - uid: 4132 + components: + - pos: 70.5,30.5 + parent: 1 + type: Transform + - uid: 4133 + components: + - pos: 53.5,9.5 + parent: 1 + type: Transform + - uid: 4134 + components: + - pos: 57.5,10.5 + parent: 1 + type: Transform + - uid: 4139 + components: + - pos: 53.5,8.5 + parent: 1 + type: Transform + - uid: 4146 + components: + - pos: 53.5,10.5 + parent: 1 + type: Transform + - uid: 4147 + components: + - pos: 56.5,-2.5 + parent: 1 + type: Transform + - uid: 4160 + components: + - pos: 63.5,18.5 + parent: 1 + type: Transform + - uid: 4161 + components: + - pos: 68.5,16.5 + parent: 1 + type: Transform + - uid: 4162 + components: + - pos: 64.5,18.5 + parent: 1 + type: Transform + - uid: 4163 + components: + - pos: 68.5,15.5 + parent: 1 + type: Transform + - uid: 4164 + components: + - pos: 67.5,18.5 + parent: 1 + type: Transform + - uid: 4165 + components: + - pos: 66.5,18.5 + parent: 1 + type: Transform + - uid: 4166 + components: + - pos: 65.5,18.5 + parent: 1 + type: Transform + - uid: 4167 + components: + - pos: 65.5,23.5 + parent: 1 + type: Transform + - uid: 4168 + components: + - pos: 63.5,23.5 + parent: 1 + type: Transform + - uid: 4169 + components: + - pos: 64.5,23.5 + parent: 1 + type: Transform + - uid: 4170 + components: + - pos: 66.5,23.5 + parent: 1 + type: Transform + - uid: 4171 + components: + - pos: 67.5,23.5 + parent: 1 + type: Transform + - uid: 4172 + components: + - pos: 68.5,23.5 + parent: 1 + type: Transform + - uid: 4173 + components: + - pos: 65.5,15.5 + parent: 1 + type: Transform + - uid: 4174 + components: + - pos: 65.5,16.5 + parent: 1 + type: Transform + - uid: 4175 + components: + - pos: 65.5,17.5 + parent: 1 + type: Transform + - uid: 4176 + components: + - pos: 68.5,18.5 + parent: 1 + type: Transform + - uid: 4177 + components: + - pos: 68.5,17.5 + parent: 1 + type: Transform + - uid: 4187 + components: + - pos: 76.5,13.5 + parent: 1 + type: Transform + - uid: 4193 + components: + - pos: 77.5,19.5 + parent: 1 + type: Transform + - uid: 4194 + components: + - pos: 79.5,19.5 + parent: 1 + type: Transform + - uid: 4195 + components: + - pos: 75.5,13.5 + parent: 1 + type: Transform + - uid: 4347 + components: + - pos: -5.5,-27.5 + parent: 1 + type: Transform + - uid: 4348 + components: + - pos: -3.5,-26.5 + parent: 1 + type: Transform + - uid: 4349 + components: + - pos: -4.5,-26.5 + parent: 1 + type: Transform + - uid: 4350 + components: + - pos: -6.5,-27.5 + parent: 1 + type: Transform + - uid: 4412 + components: + - pos: 16.5,43.5 + parent: 1 + type: Transform + - uid: 4413 + components: + - pos: 17.5,43.5 + parent: 1 + type: Transform + - uid: 4414 + components: + - pos: 18.5,43.5 + parent: 1 + type: Transform + - uid: 4415 + components: + - pos: 19.5,43.5 + parent: 1 + type: Transform + - uid: 4416 + components: + - pos: 20.5,43.5 + parent: 1 + type: Transform + - uid: 4417 + components: + - pos: 21.5,43.5 + parent: 1 + type: Transform + - uid: 4418 + components: + - pos: 22.5,43.5 + parent: 1 + type: Transform + - uid: 4419 + components: + - pos: 23.5,43.5 + parent: 1 + type: Transform + - uid: 4420 + components: + - pos: 23.5,42.5 + parent: 1 + type: Transform + - uid: 4421 + components: + - pos: 23.5,39.5 + parent: 1 + type: Transform + - uid: 4422 + components: + - pos: 23.5,40.5 + parent: 1 + type: Transform + - uid: 4463 + components: + - pos: 10.5,47.5 + parent: 1 + type: Transform + - uid: 4464 + components: + - pos: 10.5,48.5 + parent: 1 + type: Transform + - uid: 4465 + components: + - pos: 10.5,49.5 + parent: 1 + type: Transform + - uid: 4466 + components: + - pos: 10.5,50.5 + parent: 1 + type: Transform + - uid: 4467 + components: + - pos: 10.5,51.5 + parent: 1 + type: Transform + - uid: 4468 + components: + - pos: 10.5,52.5 + parent: 1 + type: Transform + - uid: 4523 + components: + - pos: -14.5,44.5 + parent: 1 + type: Transform + - uid: 4524 + components: + - pos: -14.5,45.5 + parent: 1 + type: Transform + - uid: 4525 + components: + - pos: -14.5,46.5 + parent: 1 + type: Transform + - uid: 4550 + components: + - pos: -6.5,52.5 + parent: 1 + type: Transform + - uid: 4551 + components: + - pos: -2.5,52.5 + parent: 1 + type: Transform + - uid: 4552 + components: + - pos: -2.5,48.5 + parent: 1 + type: Transform + - uid: 4553 + components: + - pos: -6.5,48.5 + parent: 1 + type: Transform + - uid: 4560 + components: + - pos: -6.5,44.5 + parent: 1 + type: Transform + - uid: 4579 + components: + - pos: 3.5,48.5 + parent: 1 + type: Transform + - uid: 4580 + components: + - pos: 4.5,48.5 + parent: 1 + type: Transform + - uid: 4581 + components: + - pos: 5.5,48.5 + parent: 1 + type: Transform + - uid: 4583 + components: + - pos: 54.5,10.5 + parent: 1 + type: Transform + - uid: 4585 + components: + - pos: -73.5,-2.5 + parent: 1 + type: Transform + - uid: 4586 + components: + - pos: 6.5,52.5 + parent: 1 + type: Transform + - uid: 4590 + components: + - pos: 6.5,48.5 + parent: 1 + type: Transform + - uid: 4591 + components: + - pos: 6.5,47.5 + parent: 1 + type: Transform + - uid: 4592 + components: + - pos: 7.5,47.5 + parent: 1 + type: Transform + - uid: 4597 + components: + - pos: 4.5,51.5 + parent: 1 + type: Transform + - uid: 4598 + components: + - pos: 4.5,52.5 + parent: 1 + type: Transform + - uid: 4599 + components: + - pos: 5.5,52.5 + parent: 1 + type: Transform + - uid: 4626 + components: + - pos: -8.5,52.5 + parent: 1 + type: Transform + - uid: 4627 + components: + - pos: -7.5,52.5 + parent: 1 + type: Transform + - uid: 4656 + components: + - pos: -31.5,-12.5 + parent: 1 + type: Transform + - uid: 4663 + components: + - pos: -30.5,-12.5 + parent: 1 + type: Transform + - uid: 4666 + components: + - pos: -31.5,-15.5 + parent: 1 + type: Transform + - uid: 4668 + components: + - pos: -35.5,-14.5 + parent: 1 + type: Transform + - uid: 4669 + components: + - pos: -35.5,-13.5 + parent: 1 + type: Transform + - uid: 4674 + components: + - pos: -35.5,-15.5 + parent: 1 + type: Transform + - uid: 4697 + components: + - pos: -31.5,-14.5 + parent: 1 + type: Transform + - uid: 4725 + components: + - pos: -36.5,-13.5 + parent: 1 + type: Transform + - uid: 4755 + components: + - pos: 88.5,23.5 + parent: 1 + type: Transform + - uid: 4756 + components: + - pos: 81.5,30.5 + parent: 1 + type: Transform + - uid: 4757 + components: + - pos: 80.5,30.5 + parent: 1 + type: Transform + - uid: 4758 + components: + - pos: 79.5,30.5 + parent: 1 + type: Transform + - uid: 4765 + components: + - pos: 72.5,30.5 + parent: 1 + type: Transform + - uid: 4766 + components: + - pos: 71.5,30.5 + parent: 1 + type: Transform + - uid: 4767 + components: + - pos: 68.5,25.5 + parent: 1 + type: Transform + - uid: 4768 + components: + - pos: 68.5,24.5 + parent: 1 + type: Transform + - uid: 4769 + components: + - pos: 68.5,28.5 + parent: 1 + type: Transform + - uid: 4770 + components: + - pos: 75.5,9.5 + parent: 1 + type: Transform + - uid: 4771 + components: + - pos: 76.5,9.5 + parent: 1 + type: Transform + - uid: 4772 + components: + - pos: 77.5,9.5 + parent: 1 + type: Transform + - uid: 4773 + components: + - pos: 78.5,9.5 + parent: 1 + type: Transform + - uid: 4774 + components: + - pos: 79.5,9.5 + parent: 1 + type: Transform + - uid: 4775 + components: + - pos: 80.5,9.5 + parent: 1 + type: Transform + - uid: 4776 + components: + - pos: 81.5,9.5 + parent: 1 + type: Transform + - uid: 4779 + components: + - pos: 74.5,19.5 + parent: 1 + type: Transform + - uid: 4780 + components: + - pos: 75.5,19.5 + parent: 1 + type: Transform + - uid: 4781 + components: + - pos: 76.5,19.5 + parent: 1 + type: Transform + - uid: 4782 + components: + - pos: 78.5,13.5 + parent: 1 + type: Transform + - uid: 4783 + components: + - pos: 79.5,13.5 + parent: 1 + type: Transform + - uid: 4785 + components: + - pos: 79.5,14.5 + parent: 1 + type: Transform + - uid: 4786 + components: + - pos: 79.5,15.5 + parent: 1 + type: Transform + - uid: 4788 + components: + - pos: 79.5,17.5 + parent: 1 + type: Transform + - uid: 4796 + components: + - pos: 75.5,15.5 + parent: 1 + type: Transform + - uid: 4797 + components: + - pos: 79.5,18.5 + parent: 1 + type: Transform + - uid: 4799 + components: + - pos: 74.5,-25.5 + parent: 1 + type: Transform + - uid: 4800 + components: + - pos: 78.5,19.5 + parent: 1 + type: Transform + - uid: 4802 + components: + - pos: 75.5,14.5 + parent: 1 + type: Transform + - uid: 4803 + components: + - pos: 77.5,13.5 + parent: 1 + type: Transform + - uid: 4808 + components: + - pos: 71.5,23.5 + parent: 1 + type: Transform + - uid: 4809 + components: + - pos: 72.5,23.5 + parent: 1 + type: Transform + - uid: 4810 + components: + - pos: 73.5,23.5 + parent: 1 + type: Transform + - uid: 4811 + components: + - pos: 74.5,23.5 + parent: 1 + type: Transform + - uid: 4812 + components: + - pos: 75.5,23.5 + parent: 1 + type: Transform + - uid: 4813 + components: + - pos: 76.5,23.5 + parent: 1 + type: Transform + - uid: 4814 + components: + - pos: 77.5,23.5 + parent: 1 + type: Transform + - uid: 4815 + components: + - pos: 78.5,23.5 + parent: 1 + type: Transform + - uid: 4817 + components: + - pos: 75.5,-25.5 + parent: 1 + type: Transform + - uid: 4819 + components: + - pos: 81.5,13.5 + parent: 1 + type: Transform + - uid: 4820 + components: + - pos: 81.5,10.5 + parent: 1 + type: Transform + - uid: 4821 + components: + - pos: 81.5,11.5 + parent: 1 + type: Transform + - uid: 4822 + components: + - pos: 81.5,12.5 + parent: 1 + type: Transform + - uid: 4823 + components: + - pos: 90.5,20.5 + parent: 1 + type: Transform + - uid: 4824 + components: + - pos: -21.5,-27.5 + parent: 1 + type: Transform + - uid: 4825 + components: + - pos: 90.5,18.5 + parent: 1 + type: Transform + - uid: 4826 + components: + - pos: 90.5,19.5 + parent: 1 + type: Transform + - uid: 4827 + components: + - pos: 85.5,16.5 + parent: 1 + type: Transform + - uid: 4828 + components: + - pos: 84.5,9.5 + parent: 1 + type: Transform + - uid: 4830 + components: + - pos: 85.5,15.5 + parent: 1 + type: Transform + - uid: 4831 + components: + - pos: 85.5,14.5 + parent: 1 + type: Transform + - uid: 4832 + components: + - pos: 85.5,12.5 + parent: 1 + type: Transform + - uid: 4833 + components: + - pos: 85.5,11.5 + parent: 1 + type: Transform + - uid: 4834 + components: + - pos: 85.5,19.5 + parent: 1 + type: Transform + - uid: 4835 + components: + - pos: 85.5,20.5 + parent: 1 + type: Transform + - uid: 4836 + components: + - pos: 68.5,29.5 + parent: 1 + type: Transform + - uid: 4838 + components: + - pos: 87.5,23.5 + parent: 1 + type: Transform + - uid: 4839 + components: + - pos: 86.5,23.5 + parent: 1 + type: Transform + - uid: 4840 + components: + - pos: 85.5,23.5 + parent: 1 + type: Transform + - uid: 4841 + components: + - pos: 84.5,23.5 + parent: 1 + type: Transform + - uid: 4842 + components: + - pos: 83.5,23.5 + parent: 1 + type: Transform + - uid: 4843 + components: + - pos: 82.5,23.5 + parent: 1 + type: Transform + - uid: 4844 + components: + - pos: 81.5,23.5 + parent: 1 + type: Transform + - uid: 4845 + components: + - pos: 80.5,23.5 + parent: 1 + type: Transform + - uid: 4846 + components: + - pos: 79.5,23.5 + parent: 1 + type: Transform + - uid: 4848 + components: + - pos: 84.5,8.5 + parent: 1 + type: Transform + - uid: 4849 + components: + - pos: 83.5,8.5 + parent: 1 + type: Transform + - uid: 4852 + components: + - pos: 86.5,10.5 + parent: 1 + type: Transform + - uid: 4858 + components: + - pos: 85.5,13.5 + parent: 1 + type: Transform + - uid: 4859 + components: + - pos: 86.5,9.5 + parent: 1 + type: Transform + - uid: 4860 + components: + - pos: 83.5,9.5 + parent: 1 + type: Transform + - uid: 4861 + components: + - pos: 76.5,-25.5 + parent: 1 + type: Transform + - uid: 4862 + components: + - pos: 77.5,-25.5 + parent: 1 + type: Transform + - uid: 4864 + components: + - pos: 85.5,8.5 + parent: 1 + type: Transform + - uid: 4865 + components: + - pos: 88.5,20.5 + parent: 1 + type: Transform + - uid: 4866 + components: + - pos: 81.5,8.5 + parent: 1 + type: Transform + - uid: 4868 + components: + - pos: 82.5,8.5 + parent: 1 + type: Transform + - uid: 4869 + components: + - pos: 89.5,20.5 + parent: 1 + type: Transform + - uid: 4873 + components: + - pos: 85.5,9.5 + parent: 1 + type: Transform + - uid: 4874 + components: + - pos: 85.5,10.5 + parent: 1 + type: Transform + - uid: 4875 + components: + - pos: 85.5,17.5 + parent: 1 + type: Transform + - uid: 4876 + components: + - pos: 85.5,18.5 + parent: 1 + type: Transform + - uid: 4877 + components: + - pos: 86.5,8.5 + parent: 1 + type: Transform + - uid: 4882 + components: + - pos: 89.5,23.5 + parent: 1 + type: Transform + - uid: 4883 + components: + - pos: 90.5,23.5 + parent: 1 + type: Transform + - uid: 4884 + components: + - pos: 91.5,23.5 + parent: 1 + type: Transform + - uid: 4885 + components: + - pos: 92.5,23.5 + parent: 1 + type: Transform + - uid: 4886 + components: + - pos: 86.5,11.5 + parent: 1 + type: Transform + - uid: 4887 + components: + - pos: 86.5,12.5 + parent: 1 + type: Transform + - uid: 4902 + components: + - pos: 82.5,18.5 + parent: 1 + type: Transform + - uid: 4903 + components: + - pos: 84.5,18.5 + parent: 1 + type: Transform + - uid: 4911 + components: + - pos: 82.5,30.5 + parent: 1 + type: Transform + - uid: 4912 + components: + - pos: 83.5,30.5 + parent: 1 + type: Transform + - uid: 4913 + components: + - pos: 84.5,30.5 + parent: 1 + type: Transform + - uid: 4914 + components: + - pos: 85.5,30.5 + parent: 1 + type: Transform + - uid: 4915 + components: + - pos: 86.5,30.5 + parent: 1 + type: Transform + - uid: 4923 + components: + - pos: 40.5,-22.5 + parent: 1 + type: Transform + - uid: 4926 + components: + - pos: 38.5,-24.5 + parent: 1 + type: Transform + - uid: 4927 + components: + - pos: 39.5,-24.5 + parent: 1 + type: Transform + - uid: 4928 + components: + - pos: 40.5,-24.5 + parent: 1 + type: Transform + - uid: 4929 + components: + - pos: 41.5,-24.5 + parent: 1 + type: Transform + - uid: 4934 + components: + - pos: 51.5,29.5 + parent: 1 + type: Transform + - uid: 4935 + components: + - pos: 50.5,29.5 + parent: 1 + type: Transform + - uid: 4936 + components: + - pos: 49.5,29.5 + parent: 1 + type: Transform + - uid: 4937 + components: + - pos: 48.5,29.5 + parent: 1 + type: Transform + - uid: 4940 + components: + - pos: 37.5,31.5 + parent: 1 + type: Transform + - uid: 4941 + components: + - pos: 38.5,31.5 + parent: 1 + type: Transform + - uid: 4942 + components: + - pos: 39.5,31.5 + parent: 1 + type: Transform + - uid: 4943 + components: + - pos: 40.5,31.5 + parent: 1 + type: Transform + - uid: 4951 + components: + - pos: -20.5,37.5 + parent: 1 + type: Transform + - uid: 4952 + components: + - pos: -20.5,36.5 + parent: 1 + type: Transform + - uid: 4953 + components: + - pos: -18.5,38.5 + parent: 1 + type: Transform + - uid: 4954 + components: + - pos: -18.5,37.5 + parent: 1 + type: Transform + - uid: 4955 + components: + - pos: -18.5,36.5 + parent: 1 + type: Transform + - uid: 4957 + components: + - pos: -29.5,29.5 + parent: 1 + type: Transform + - uid: 4958 + components: + - pos: -28.5,29.5 + parent: 1 + type: Transform + - uid: 4959 + components: + - pos: -27.5,29.5 + parent: 1 + type: Transform + - uid: 4960 + components: + - pos: -27.5,27.5 + parent: 1 + type: Transform + - uid: 4961 + components: + - pos: -28.5,27.5 + parent: 1 + type: Transform + - uid: 4962 + components: + - pos: -29.5,27.5 + parent: 1 + type: Transform + - uid: 4966 + components: + - pos: -32.5,20.5 + parent: 1 + type: Transform + - uid: 4967 + components: + - pos: -32.5,21.5 + parent: 1 + type: Transform + - uid: 4968 + components: + - pos: -32.5,22.5 + parent: 1 + type: Transform + - uid: 4969 + components: + - pos: -32.5,23.5 + parent: 1 + type: Transform + - uid: 4980 + components: + - pos: -30.5,8.5 + parent: 1 + type: Transform + - uid: 4981 + components: + - pos: -30.5,9.5 + parent: 1 + type: Transform + - uid: 4982 + components: + - pos: -30.5,10.5 + parent: 1 + type: Transform + - uid: 4983 + components: + - pos: -30.5,11.5 + parent: 1 + type: Transform + - uid: 4993 + components: + - pos: -30.5,-0.5 + parent: 1 + type: Transform + - uid: 4994 + components: + - pos: -30.5,-1.5 + parent: 1 + type: Transform + - uid: 4995 + components: + - pos: -30.5,-2.5 + parent: 1 + type: Transform + - uid: 4996 + components: + - pos: -30.5,-3.5 + parent: 1 + type: Transform + - uid: 5006 + components: + - pos: -39.5,-18.5 + parent: 1 + type: Transform + - uid: 5012 + components: + - pos: -39.5,-14.5 + parent: 1 + type: Transform + - uid: 5015 + components: + - pos: -48.5,-9.5 + parent: 1 + type: Transform + - uid: 5016 + components: + - pos: -47.5,-9.5 + parent: 1 + type: Transform + - uid: 5017 + components: + - pos: -46.5,-9.5 + parent: 1 + type: Transform + - uid: 5018 + components: + - pos: -45.5,-9.5 + parent: 1 + type: Transform + - uid: 5023 + components: + - pos: -47.5,-13.5 + parent: 1 + type: Transform + - uid: 5024 + components: + - pos: -46.5,-13.5 + parent: 1 + type: Transform + - uid: 5025 + components: + - pos: -45.5,-13.5 + parent: 1 + type: Transform + - uid: 5026 + components: + - pos: -44.5,-13.5 + parent: 1 + type: Transform + - uid: 5027 + components: + - pos: -43.5,-13.5 + parent: 1 + type: Transform + - uid: 5028 + components: + - pos: -42.5,-13.5 + parent: 1 + type: Transform + - uid: 5029 + components: + - pos: -41.5,-13.5 + parent: 1 + type: Transform + - uid: 5030 + components: + - pos: -40.5,-13.5 + parent: 1 + type: Transform + - uid: 5033 + components: + - pos: -30.5,-24.5 + parent: 1 + type: Transform + - uid: 5034 + components: + - pos: -30.5,-23.5 + parent: 1 + type: Transform + - uid: 5036 + components: + - pos: -30.5,-21.5 + parent: 1 + type: Transform + - uid: 5037 + components: + - pos: -30.5,-20.5 + parent: 1 + type: Transform + - uid: 5038 + components: + - pos: -26.5,-29.5 + parent: 1 + type: Transform + - uid: 5039 + components: + - pos: -26.5,-28.5 + parent: 1 + type: Transform + - uid: 5040 + components: + - pos: -26.5,-27.5 + parent: 1 + type: Transform + - uid: 5043 + components: + - pos: -29.5,-23.5 + parent: 1 + type: Transform + - uid: 5044 + components: + - pos: -28.5,-23.5 + parent: 1 + type: Transform + - uid: 5045 + components: + - pos: -29.5,-21.5 + parent: 1 + type: Transform + - uid: 5046 + components: + - pos: -28.5,-21.5 + parent: 1 + type: Transform + - uid: 5048 + components: + - pos: -39.5,-15.5 + parent: 1 + type: Transform + - uid: 5049 + components: + - pos: -39.5,-16.5 + parent: 1 + type: Transform + - uid: 5050 + components: + - pos: -39.5,-17.5 + parent: 1 + type: Transform + - uid: 5052 + components: + - pos: -39.5,-19.5 + parent: 1 + type: Transform + - uid: 5055 + components: + - pos: 65.5,28.5 + parent: 1 + type: Transform + - uid: 5070 + components: + - pos: -44.5,-40.5 + parent: 1 + type: Transform + - uid: 5074 + components: + - pos: -37.5,-31.5 + parent: 1 + type: Transform + - uid: 5082 + components: + - pos: -29.5,-11.5 + parent: 1 + type: Transform + - uid: 5083 + components: + - pos: -30.5,-11.5 + parent: 1 + type: Transform + - uid: 5084 + components: + - pos: -30.5,-10.5 + parent: 1 + type: Transform + - uid: 5085 + components: + - pos: -30.5,-9.5 + parent: 1 + type: Transform + - uid: 5087 + components: + - pos: -30.5,-8.5 + parent: 1 + type: Transform + - uid: 5088 + components: + - pos: 50.5,-21.5 + parent: 1 + type: Transform + - uid: 5089 + components: + - pos: 49.5,-21.5 + parent: 1 + type: Transform + - uid: 5090 + components: + - pos: 48.5,-21.5 + parent: 1 + type: Transform + - uid: 5091 + components: + - pos: 47.5,-21.5 + parent: 1 + type: Transform + - uid: 5271 + components: + - pos: 65.5,29.5 + parent: 1 + type: Transform + - uid: 5272 + components: + - pos: 65.5,25.5 + parent: 1 + type: Transform + - uid: 5273 + components: + - pos: 65.5,24.5 + parent: 1 + type: Transform + - uid: 5289 + components: + - pos: 84.5,28.5 + parent: 1 + type: Transform + - uid: 5290 + components: + - pos: 84.5,29.5 + parent: 1 + type: Transform + - uid: 5311 + components: + - pos: 71.5,28.5 + parent: 1 + type: Transform + - uid: 5312 + components: + - pos: 71.5,29.5 + parent: 1 + type: Transform + - uid: 5444 + components: + - pos: -29.5,-28.5 + parent: 1 + type: Transform + - uid: 5445 + components: + - pos: -29.5,-30.5 + parent: 1 + type: Transform + - uid: 5467 + components: + - pos: -28.5,-30.5 + parent: 1 + type: Transform + - uid: 5470 + components: + - pos: -29.5,-29.5 + parent: 1 + type: Transform + - uid: 5471 + components: + - pos: -30.5,-28.5 + parent: 1 + type: Transform + - uid: 5493 + components: + - pos: 115.5,0.5 + parent: 1 + type: Transform + - uid: 5496 + components: + - pos: 41.5,-42.5 + parent: 1 + type: Transform + - uid: 5500 + components: + - pos: 41.5,-44.5 + parent: 1 + type: Transform + - uid: 5501 + components: + - pos: 41.5,-46.5 + parent: 1 + type: Transform + - uid: 5505 + components: + - pos: 39.5,-46.5 + parent: 1 + type: Transform + - uid: 5506 + components: + - pos: 37.5,-46.5 + parent: 1 + type: Transform + - uid: 5510 + components: + - pos: 93.5,1.5 + parent: 1 + type: Transform + - uid: 5511 + components: + - pos: 100.5,-9.5 + parent: 1 + type: Transform + - uid: 5512 + components: + - pos: 93.5,-10.5 + parent: 1 + type: Transform + - uid: 5524 + components: + - pos: 93.5,-9.5 + parent: 1 + type: Transform + - uid: 5525 + components: + - pos: 36.5,-47.5 + parent: 1 + type: Transform + - uid: 5526 + components: + - pos: 35.5,-48.5 + parent: 1 + type: Transform + - uid: 5528 + components: + - pos: 34.5,-49.5 + parent: 1 + type: Transform + - uid: 5529 + components: + - pos: 35.5,-49.5 + parent: 1 + type: Transform + - uid: 5530 + components: + - pos: 36.5,-48.5 + parent: 1 + type: Transform + - uid: 5531 + components: + - pos: 37.5,-47.5 + parent: 1 + type: Transform + - uid: 5532 + components: + - pos: 87.5,-2.5 + parent: 1 + type: Transform + - uid: 5533 + components: + - pos: 92.5,-10.5 + parent: 1 + type: Transform + - uid: 5534 + components: + - pos: 91.5,-10.5 + parent: 1 + type: Transform + - uid: 5535 + components: + - pos: 38.5,-46.5 + parent: 1 + type: Transform + - uid: 5536 + components: + - pos: 40.5,-46.5 + parent: 1 + type: Transform + - uid: 5539 + components: + - pos: 41.5,-45.5 + parent: 1 + type: Transform + - uid: 5540 + components: + - pos: 90.5,-10.5 + parent: 1 + type: Transform + - uid: 5541 + components: + - pos: 89.5,-10.5 + parent: 1 + type: Transform + - uid: 5542 + components: + - pos: 88.5,-10.5 + parent: 1 + type: Transform + - uid: 5543 + components: + - pos: 87.5,-10.5 + parent: 1 + type: Transform + - uid: 5545 + components: + - pos: 83.5,-10.5 + parent: 1 + type: Transform + - uid: 5546 + components: + - pos: 82.5,-10.5 + parent: 1 + type: Transform + - uid: 5547 + components: + - pos: 87.5,-1.5 + parent: 1 + type: Transform + - uid: 5548 + components: + - pos: 83.5,-6.5 + parent: 1 + type: Transform + - uid: 5549 + components: + - pos: 87.5,-16.5 + parent: 1 + type: Transform + - uid: 5550 + components: + - pos: 86.5,-16.5 + parent: 1 + type: Transform + - uid: 5551 + components: + - pos: 79.5,-17.5 + parent: 1 + type: Transform + - uid: 5556 + components: + - pos: 86.5,-17.5 + parent: 1 + type: Transform + - uid: 5557 + components: + - pos: 79.5,-16.5 + parent: 1 + type: Transform + - uid: 5558 + components: + - pos: 78.5,-16.5 + parent: 1 + type: Transform + - uid: 5559 + components: + - pos: 77.5,-16.5 + parent: 1 + type: Transform + - uid: 5560 + components: + - pos: 76.5,-16.5 + parent: 1 + type: Transform + - uid: 5561 + components: + - pos: 74.5,-17.5 + parent: 1 + type: Transform + - uid: 5562 + components: + - pos: 74.5,-16.5 + parent: 1 + type: Transform + - uid: 5563 + components: + - pos: 74.5,-18.5 + parent: 1 + type: Transform + - uid: 5564 + components: + - pos: 41.5,-43.5 + parent: 1 + type: Transform + - uid: 5565 + components: + - pos: 44.5,-29.5 + parent: 1 + type: Transform + - uid: 5566 + components: + - pos: 44.5,-31.5 + parent: 1 + type: Transform + - uid: 5567 + components: + - pos: 41.5,-32.5 + parent: 1 + type: Transform + - uid: 5568 + components: + - pos: 42.5,-32.5 + parent: 1 + type: Transform + - uid: 5569 + components: + - pos: 43.5,-32.5 + parent: 1 + type: Transform + - uid: 5570 + components: + - pos: 44.5,-32.5 + parent: 1 + type: Transform + - uid: 5571 + components: + - pos: 44.5,-30.5 + parent: 1 + type: Transform + - uid: 5572 + components: + - pos: 44.5,-23.5 + parent: 1 + type: Transform + - uid: 5573 + components: + - pos: 43.5,-24.5 + parent: 1 + type: Transform + - uid: 5574 + components: + - pos: 43.5,-26.5 + parent: 1 + type: Transform + - uid: 5575 + components: + - pos: 42.5,-27.5 + parent: 1 + type: Transform + - uid: 5576 + components: + - pos: 40.5,-27.5 + parent: 1 + type: Transform + - uid: 5579 + components: + - pos: 39.5,-28.5 + parent: 1 + type: Transform + - uid: 5584 + components: + - pos: 68.5,-1.5 + parent: 1 + type: Transform + - uid: 5588 + components: + - pos: 78.5,-6.5 + parent: 1 + type: Transform + - uid: 5604 + components: + - pos: 83.5,-7.5 + parent: 1 + type: Transform + - uid: 5605 + components: + - pos: 68.5,-2.5 + parent: 1 + type: Transform + - uid: 5607 + components: + - pos: 68.5,-4.5 + parent: 1 + type: Transform + - uid: 5609 + components: + - pos: 71.5,-2.5 + parent: 1 + type: Transform + - uid: 5610 + components: + - pos: 71.5,-3.5 + parent: 1 + type: Transform + - uid: 5611 + components: + - pos: 71.5,-4.5 + parent: 1 + type: Transform + - uid: 5612 + components: + - pos: 71.5,-5.5 + parent: 1 + type: Transform + - uid: 5613 + components: + - pos: 70.5,-5.5 + parent: 1 + type: Transform + - uid: 5617 + components: + - pos: 78.5,6.5 + parent: 1 + type: Transform + - uid: 5619 + components: + - pos: 72.5,-7.5 + parent: 1 + type: Transform + - uid: 5620 + components: + - pos: 72.5,-8.5 + parent: 1 + type: Transform + - uid: 5621 + components: + - pos: 72.5,-9.5 + parent: 1 + type: Transform + - uid: 5622 + components: + - pos: 68.5,-9.5 + parent: 1 + type: Transform + - uid: 5646 + components: + - pos: 68.5,-13.5 + parent: 1 + type: Transform + - uid: 5647 + components: + - pos: 69.5,-13.5 + parent: 1 + type: Transform + - uid: 5651 + components: + - pos: 73.5,-13.5 + parent: 1 + type: Transform + - uid: 5656 + components: + - pos: 73.5,-7.5 + parent: 1 + type: Transform + - uid: 5657 + components: + - pos: 75.5,-7.5 + parent: 1 + type: Transform + - uid: 5658 + components: + - pos: 76.5,-7.5 + parent: 1 + type: Transform + - uid: 5659 + components: + - pos: 77.5,-7.5 + parent: 1 + type: Transform + - uid: 5660 + components: + - pos: 78.5,-7.5 + parent: 1 + type: Transform + - uid: 5668 + components: + - pos: 68.5,-17.5 + parent: 1 + type: Transform + - uid: 5669 + components: + - pos: 68.5,-16.5 + parent: 1 + type: Transform + - uid: 5675 + components: + - pos: -60.5,-22.5 + parent: 1 + type: Transform + - uid: 5683 + components: + - pos: 77.5,-13.5 + parent: 1 + type: Transform + - uid: 5684 + components: + - pos: 77.5,-12.5 + parent: 1 + type: Transform + - uid: 5685 + components: + - pos: 77.5,-11.5 + parent: 1 + type: Transform + - uid: 5686 + components: + - pos: 77.5,-10.5 + parent: 1 + type: Transform + - uid: 5687 + components: + - pos: 77.5,-9.5 + parent: 1 + type: Transform + - uid: 5688 + components: + - pos: 77.5,-8.5 + parent: 1 + type: Transform + - uid: 5696 + components: + - pos: 78.5,-5.5 + parent: 1 + type: Transform + - uid: 5697 + components: + - pos: 79.5,-5.5 + parent: 1 + type: Transform + - uid: 5698 + components: + - pos: 80.5,-5.5 + parent: 1 + type: Transform + - uid: 5699 + components: + - pos: 81.5,-5.5 + parent: 1 + type: Transform + - uid: 5700 + components: + - pos: 82.5,-5.5 + parent: 1 + type: Transform + - uid: 5743 + components: + - pos: 88.5,-15.5 + parent: 1 + type: Transform + - uid: 5744 + components: + - pos: 88.5,-14.5 + parent: 1 + type: Transform + - uid: 5745 + components: + - pos: 88.5,-13.5 + parent: 1 + type: Transform + - uid: 5746 + components: + - pos: 88.5,-12.5 + parent: 1 + type: Transform + - uid: 5747 + components: + - pos: 88.5,-11.5 + parent: 1 + type: Transform + - uid: 5748 + components: + - pos: 68.5,-5.5 + parent: 1 + type: Transform + - uid: 5749 + components: + - pos: 83.5,-9.5 + parent: 1 + type: Transform + - uid: 5750 + components: + - pos: 82.5,-11.5 + parent: 1 + type: Transform + - uid: 5751 + components: + - pos: 82.5,-12.5 + parent: 1 + type: Transform + - uid: 5752 + components: + - pos: 78.5,-12.5 + parent: 1 + type: Transform + - uid: 5791 + components: + - pos: 59.5,-15.5 + parent: 1 + type: Transform + - uid: 5792 + components: + - pos: 59.5,-16.5 + parent: 1 + type: Transform + - uid: 5793 + components: + - pos: 59.5,-17.5 + parent: 1 + type: Transform + - uid: 5794 + components: + - pos: 37.5,-28.5 + parent: 1 + type: Transform + - uid: 5795 + components: + - pos: 60.5,-18.5 + parent: 1 + type: Transform + - uid: 5796 + components: + - pos: 61.5,-18.5 + parent: 1 + type: Transform + - uid: 5797 + components: + - pos: 62.5,-18.5 + parent: 1 + type: Transform + - uid: 5831 + components: + - pos: -49.5,-37.5 + parent: 1 + type: Transform + - uid: 5863 + components: + - pos: -49.5,-43.5 + parent: 1 + type: Transform + - uid: 5864 + components: + - pos: -52.5,-43.5 + parent: 1 + type: Transform + - uid: 5865 + components: + - pos: -52.5,-40.5 + parent: 1 + type: Transform + - uid: 5875 + components: + - pos: -47.5,-31.5 + parent: 1 + type: Transform + - uid: 5876 + components: + - pos: -48.5,-31.5 + parent: 1 + type: Transform + - uid: 5877 + components: + - pos: -49.5,-31.5 + parent: 1 + type: Transform + - uid: 5878 + components: + - pos: -50.5,-31.5 + parent: 1 + type: Transform + - uid: 5879 + components: + - pos: -51.5,-31.5 + parent: 1 + type: Transform + - uid: 5880 + components: + - pos: -52.5,-31.5 + parent: 1 + type: Transform + - uid: 5881 + components: + - pos: -53.5,-31.5 + parent: 1 + type: Transform + - uid: 5889 + components: + - pos: -52.5,-37.5 + parent: 1 + type: Transform + - uid: 5902 + components: + - pos: -60.5,-19.5 + parent: 1 + type: Transform + - uid: 5906 + components: + - pos: -58.5,-19.5 + parent: 1 + type: Transform + - uid: 5907 + components: + - pos: 83.5,-8.5 + parent: 1 + type: Transform + - uid: 5916 + components: + - pos: -59.5,-25.5 + parent: 1 + type: Transform + - uid: 5917 + components: + - pos: -59.5,-23.5 + parent: 1 + type: Transform + - uid: 5924 + components: + - pos: -59.5,-22.5 + parent: 1 + type: Transform + - uid: 5926 + components: + - pos: -61.5,-22.5 + parent: 1 + type: Transform + - uid: 5931 + components: + - pos: 35.5,-28.5 + parent: 1 + type: Transform + - uid: 5932 + components: + - pos: 36.5,-28.5 + parent: 1 + type: Transform + - uid: 5933 + components: + - pos: 38.5,-28.5 + parent: 1 + type: Transform + - uid: 5934 + components: + - pos: 40.5,-28.5 + parent: 1 + type: Transform + - uid: 5935 + components: + - pos: 41.5,-27.5 + parent: 1 + type: Transform + - uid: 5936 + components: + - pos: 42.5,-26.5 + parent: 1 + type: Transform + - uid: 5937 + components: + - pos: 43.5,-25.5 + parent: 1 + type: Transform + - uid: 5938 + components: + - pos: 44.5,-24.5 + parent: 1 + type: Transform + - uid: 5939 + components: + - pos: 45.5,-23.5 + parent: 1 + type: Transform + - uid: 5946 + components: + - pos: 52.5,-22.5 + parent: 1 + type: Transform + - uid: 5947 + components: + - pos: 89.5,6.5 + parent: 1 + type: Transform + - uid: 5968 + components: + - pos: 89.5,1.5 + parent: 1 + type: Transform + - uid: 5969 + components: + - pos: 53.5,-21.5 + parent: 1 + type: Transform + - uid: 5970 + components: + - pos: 53.5,-19.5 + parent: 1 + type: Transform + - uid: 5971 + components: + - pos: 56.5,-18.5 + parent: 1 + type: Transform + - uid: 5975 + components: + - pos: 53.5,-20.5 + parent: 1 + type: Transform + - uid: 5976 + components: + - pos: 52.5,-21.5 + parent: 1 + type: Transform + - uid: 5977 + components: + - pos: 59.5,-7.5 + parent: 1 + type: Transform + - uid: 5978 + components: + - pos: 58.5,-22.5 + parent: 1 + type: Transform + - uid: 5979 + components: + - pos: 56.5,-22.5 + parent: 1 + type: Transform + - uid: 5980 + components: + - pos: 56.5,-24.5 + parent: 1 + type: Transform + - uid: 5981 + components: + - pos: 54.5,-24.5 + parent: 1 + type: Transform + - uid: 5982 + components: + - pos: 54.5,-25.5 + parent: 1 + type: Transform + - uid: 5983 + components: + - pos: 55.5,-24.5 + parent: 1 + type: Transform + - uid: 5984 + components: + - pos: 56.5,-23.5 + parent: 1 + type: Transform + - uid: 5985 + components: + - pos: 57.5,-22.5 + parent: 1 + type: Transform + - uid: 5987 + components: + - pos: 58.5,-21.5 + parent: 1 + type: Transform + - uid: 5989 + components: + - pos: 93.5,-16.5 + parent: 1 + type: Transform + - uid: 5991 + components: + - pos: -17.5,-22.5 + parent: 1 + type: Transform + - uid: 5993 + components: + - pos: -19.5,-22.5 + parent: 1 + type: Transform + - uid: 5994 + components: + - pos: -19.5,-20.5 + parent: 1 + type: Transform + - uid: 5996 + components: + - pos: -21.5,-20.5 + parent: 1 + type: Transform + - uid: 5998 + components: + - pos: 93.5,-8.5 + parent: 1 + type: Transform + - uid: 6000 + components: + - pos: 112.5,-3.5 + parent: 1 + type: Transform + - uid: 6001 + components: + - pos: -21.5,-18.5 + parent: 1 + type: Transform + - uid: 6002 + components: + - pos: -22.5,-17.5 + parent: 1 + type: Transform + - uid: 6003 + components: + - pos: 93.5,6.5 + parent: 1 + type: Transform + - uid: 6004 + components: + - pos: -28.5,-17.5 + parent: 1 + type: Transform + - uid: 6005 + components: + - pos: -29.5,-19.5 + parent: 1 + type: Transform + - uid: 6007 + components: + - pos: -18.5,-22.5 + parent: 1 + type: Transform + - uid: 6008 + components: + - pos: -19.5,-21.5 + parent: 1 + type: Transform + - uid: 6011 + components: + - pos: -20.5,-20.5 + parent: 1 + type: Transform + - uid: 6012 + components: + - pos: -21.5,-19.5 + parent: 1 + type: Transform + - uid: 6013 + components: + - pos: -21.5,-17.5 + parent: 1 + type: Transform + - uid: 6014 + components: + - pos: -27.5,-17.5 + parent: 1 + type: Transform + - uid: 6015 + components: + - pos: 98.5,-0.5 + parent: 1 + type: Transform + - uid: 6018 + components: + - pos: 114.5,-3.5 + parent: 1 + type: Transform + - uid: 6020 + components: + - pos: 115.5,-0.5 + parent: 1 + type: Transform + - uid: 6030 + components: + - pos: -30.5,-19.5 + parent: 1 + type: Transform + - uid: 6031 + components: + - pos: -28.5,-18.5 + parent: 1 + type: Transform + - uid: 6032 + components: + - pos: -28.5,-19.5 + parent: 1 + type: Transform + - uid: 6036 + components: + - pos: -27.5,25.5 + parent: 1 + type: Transform + - uid: 6037 + components: + - pos: -27.5,23.5 + parent: 1 + type: Transform + - uid: 6038 + components: + - pos: -27.5,26.5 + parent: 1 + type: Transform + - uid: 6039 + components: + - pos: 110.5,12.5 + parent: 1 + type: Transform + - uid: 6040 + components: + - pos: -27.5,24.5 + parent: 1 + type: Transform + - uid: 6041 + components: + - pos: 102.5,15.5 + parent: 1 + type: Transform + - uid: 6043 + components: + - pos: 104.5,15.5 + parent: 1 + type: Transform + - uid: 6044 + components: + - pos: 105.5,15.5 + parent: 1 + type: Transform + - uid: 6045 + components: + - pos: 106.5,15.5 + parent: 1 + type: Transform + - uid: 6046 + components: + - pos: 107.5,15.5 + parent: 1 + type: Transform + - uid: 6047 + components: + - pos: -26.5,23.5 + parent: 1 + type: Transform + - uid: 6049 + components: + - pos: 99.5,12.5 + parent: 1 + type: Transform + - uid: 6051 + components: + - pos: 101.5,12.5 + parent: 1 + type: Transform + - uid: 6052 + components: + - pos: 102.5,12.5 + parent: 1 + type: Transform + - uid: 6053 + components: + - pos: 103.5,12.5 + parent: 1 + type: Transform + - uid: 6054 + components: + - pos: 104.5,12.5 + parent: 1 + type: Transform + - uid: 6055 + components: + - pos: 105.5,12.5 + parent: 1 + type: Transform + - uid: 6056 + components: + - pos: 106.5,12.5 + parent: 1 + type: Transform + - uid: 6057 + components: + - pos: 107.5,12.5 + parent: 1 + type: Transform + - uid: 6058 + components: + - pos: 108.5,12.5 + parent: 1 + type: Transform + - uid: 6059 + components: + - pos: 109.5,12.5 + parent: 1 + type: Transform + - uid: 6061 + components: + - pos: 103.5,-10.5 + parent: 1 + type: Transform + - uid: 6062 + components: + - pos: 102.5,-10.5 + parent: 1 + type: Transform + - uid: 6063 + components: + - pos: 101.5,-10.5 + parent: 1 + type: Transform + - uid: 6064 + components: + - pos: 98.5,-2.5 + parent: 1 + type: Transform + - uid: 6077 + components: + - pos: 107.5,-7.5 + parent: 1 + type: Transform + - uid: 6078 + components: + - pos: 107.5,-8.5 + parent: 1 + type: Transform + - uid: 6079 + components: + - pos: 107.5,-6.5 + parent: 1 + type: Transform + - uid: 6080 + components: + - pos: 103.5,2.5 + parent: 1 + type: Transform + - uid: 6081 + components: + - pos: 107.5,-4.5 + parent: 1 + type: Transform + - uid: 6082 + components: + - pos: 106.5,-4.5 + parent: 1 + type: Transform + - uid: 6083 + components: + - pos: 105.5,-4.5 + parent: 1 + type: Transform + - uid: 6084 + components: + - pos: 104.5,-4.5 + parent: 1 + type: Transform + - uid: 6085 + components: + - pos: 103.5,-4.5 + parent: 1 + type: Transform + - uid: 6086 + components: + - pos: 102.5,-4.5 + parent: 1 + type: Transform + - uid: 6087 + components: + - pos: 101.5,-4.5 + parent: 1 + type: Transform + - uid: 6088 + components: + - pos: 100.5,-4.5 + parent: 1 + type: Transform + - uid: 6089 + components: + - pos: 99.5,-4.5 + parent: 1 + type: Transform + - uid: 6091 + components: + - pos: 98.5,-1.5 + parent: 1 + type: Transform + - uid: 6092 + components: + - pos: -33.5,40.5 + parent: 1 + type: Transform + - uid: 6093 + components: + - pos: 106.5,-8.5 + parent: 1 + type: Transform + - uid: 6094 + components: + - pos: 105.5,-8.5 + parent: 1 + type: Transform + - uid: 6095 + components: + - pos: 104.5,-8.5 + parent: 1 + type: Transform + - uid: 6096 + components: + - pos: 103.5,-8.5 + parent: 1 + type: Transform + - uid: 6097 + components: + - pos: 102.5,-8.5 + parent: 1 + type: Transform + - uid: 6099 + components: + - pos: 100.5,-8.5 + parent: 1 + type: Transform + - uid: 6100 + components: + - pos: -32.5,41.5 + parent: 1 + type: Transform + - uid: 6101 + components: + - pos: -30.5,41.5 + parent: 1 + type: Transform + - uid: 6102 + components: + - pos: -30.5,42.5 + parent: 1 + type: Transform + - uid: 6103 + components: + - pos: -31.5,41.5 + parent: 1 + type: Transform + - uid: 6104 + components: + - pos: -33.5,38.5 + parent: 1 + type: Transform + - uid: 6105 + components: + - pos: -30.5,36.5 + parent: 1 + type: Transform + - uid: 6107 + components: + - pos: -28.5,36.5 + parent: 1 + type: Transform + - uid: 6108 + components: + - pos: -28.5,38.5 + parent: 1 + type: Transform + - uid: 6109 + components: + - pos: -28.5,39.5 + parent: 1 + type: Transform + - uid: 6110 + components: + - pos: -28.5,37.5 + parent: 1 + type: Transform + - uid: 6111 + components: + - pos: -29.5,36.5 + parent: 1 + type: Transform + - uid: 6112 + components: + - pos: -31.5,36.5 + parent: 1 + type: Transform + - uid: 6113 + components: + - pos: -11.5,35.5 + parent: 1 + type: Transform + - uid: 6114 + components: + - pos: -13.5,35.5 + parent: 1 + type: Transform + - uid: 6115 + components: + - pos: -14.5,36.5 + parent: 1 + type: Transform + - uid: 6116 + components: + - pos: -14.5,38.5 + parent: 1 + type: Transform + - uid: 6117 + components: + - pos: 98.5,-3.5 + parent: 1 + type: Transform + - uid: 6118 + components: + - pos: -12.5,35.5 + parent: 1 + type: Transform + - uid: 6119 + components: + - pos: -14.5,35.5 + parent: 1 + type: Transform + - uid: 6120 + components: + - pos: -14.5,37.5 + parent: 1 + type: Transform + - uid: 6121 + components: + - pos: -14.5,39.5 + parent: 1 + type: Transform + - uid: 6122 + components: + - pos: 99.5,-0.5 + parent: 1 + type: Transform + - uid: 6124 + components: + - pos: 101.5,-0.5 + parent: 1 + type: Transform + - uid: 6125 + components: + - pos: 102.5,-0.5 + parent: 1 + type: Transform + - uid: 6126 + components: + - pos: 102.5,0.5 + parent: 1 + type: Transform + - uid: 6127 + components: + - pos: 102.5,1.5 + parent: 1 + type: Transform + - uid: 6128 + components: + - pos: 102.5,2.5 + parent: 1 + type: Transform + - uid: 6129 + components: + - pos: 102.5,3.5 + parent: 1 + type: Transform + - uid: 6131 + components: + - pos: 102.5,5.5 + parent: 1 + type: Transform + - uid: 6132 + components: + - pos: 102.5,6.5 + parent: 1 + type: Transform + - uid: 6133 + components: + - pos: 102.5,7.5 + parent: 1 + type: Transform + - uid: 6134 + components: + - pos: 102.5,8.5 + parent: 1 + type: Transform + - uid: 6137 + components: + - pos: 97.5,8.5 + parent: 1 + type: Transform + - uid: 6138 + components: + - pos: 96.5,7.5 + parent: 1 + type: Transform + - uid: 6141 + components: + - pos: 103.5,-0.5 + parent: 1 + type: Transform + - uid: 6142 + components: + - pos: 103.5,-3.5 + parent: 1 + type: Transform + - uid: 6143 + components: + - pos: 103.5,-1.5 + parent: 1 + type: Transform + - uid: 6144 + components: + - pos: 113.5,-3.5 + parent: 1 + type: Transform + - uid: 6145 + components: + - pos: 98.5,18.5 + parent: 1 + type: Transform + - uid: 6146 + components: + - pos: 51.5,-22.5 + parent: 1 + type: Transform + - uid: 6147 + components: + - pos: -17.5,29.5 + parent: 1 + type: Transform + - uid: 6148 + components: + - pos: -17.5,27.5 + parent: 1 + type: Transform + - uid: 6211 + components: + - pos: 98.5,8.5 + parent: 1 + type: Transform + - uid: 6214 + components: + - pos: 103.5,5.5 + parent: 1 + type: Transform + - uid: 6215 + components: + - pos: 105.5,5.5 + parent: 1 + type: Transform + - uid: 6216 + components: + - pos: 106.5,5.5 + parent: 1 + type: Transform + - uid: 6217 + components: + - pos: 107.5,5.5 + parent: 1 + type: Transform + - uid: 6219 + components: + - pos: 107.5,7.5 + parent: 1 + type: Transform + - uid: 6220 + components: + - pos: 108.5,7.5 + parent: 1 + type: Transform + - uid: 6221 + components: + - pos: 108.5,8.5 + parent: 1 + type: Transform + - uid: 6222 + components: + - pos: 108.5,9.5 + parent: 1 + type: Transform + - uid: 6223 + components: + - pos: 108.5,10.5 + parent: 1 + type: Transform + - uid: 6224 + components: + - pos: 108.5,11.5 + parent: 1 + type: Transform + - uid: 6226 + components: + - pos: 107.5,-2.5 + parent: 1 + type: Transform + - uid: 6227 + components: + - pos: 107.5,0.5 + parent: 1 + type: Transform + - uid: 6228 + components: + - pos: 115.5,-3.5 + parent: 1 + type: Transform + - uid: 6229 + components: + - pos: 109.5,-2.5 + parent: 1 + type: Transform + - uid: 6231 + components: + - pos: 109.5,0.5 + parent: 1 + type: Transform + - uid: 6233 + components: + - pos: 107.5,6.5 + parent: 1 + type: Transform + - uid: 6235 + components: + - pos: 111.5,-3.5 + parent: 1 + type: Transform + - uid: 6238 + components: + - pos: -20.5,26.5 + parent: 1 + type: Transform + - uid: 6246 + components: + - pos: 99.5,8.5 + parent: 1 + type: Transform + - uid: 6249 + components: + - pos: 110.5,0.5 + parent: 1 + type: Transform + - uid: 6252 + components: + - pos: 108.5,0.5 + parent: 1 + type: Transform + - uid: 6253 + components: + - pos: 110.5,-2.5 + parent: 1 + type: Transform + - uid: 6254 + components: + - pos: 110.5,-1.5 + parent: 1 + type: Transform + - uid: 6255 + components: + - pos: 110.5,-0.5 + parent: 1 + type: Transform + - uid: 6256 + components: + - pos: 104.5,2.5 + parent: 1 + type: Transform + - uid: 6258 + components: + - pos: 106.5,2.5 + parent: 1 + type: Transform + - uid: 6259 + components: + - pos: 107.5,2.5 + parent: 1 + type: Transform + - uid: 6260 + components: + - pos: 107.5,1.5 + parent: 1 + type: Transform + - uid: 6273 + components: + - pos: -20.5,24.5 + parent: 1 + type: Transform + - uid: 6277 + components: + - pos: 102.5,18.5 + parent: 1 + type: Transform + - uid: 6375 + components: + - pos: -21.5,23.5 + parent: 1 + type: Transform + - uid: 6380 + components: + - pos: -23.5,23.5 + parent: 1 + type: Transform + - uid: 6395 + components: + - pos: -23.5,22.5 + parent: 1 + type: Transform + - uid: 6396 + components: + - pos: -22.5,23.5 + parent: 1 + type: Transform + - uid: 6438 + components: + - pos: -67.5,29.5 + parent: 1 + type: Transform + - uid: 6454 + components: + - pos: -63.5,27.5 + parent: 1 + type: Transform + - uid: 6455 + components: + - pos: -64.5,27.5 + parent: 1 + type: Transform + - uid: 6474 + components: + - pos: -67.5,33.5 + parent: 1 + type: Transform + - uid: 6489 + components: + - pos: -61.5,27.5 + parent: 1 + type: Transform + - uid: 6490 + components: + - pos: -64.5,33.5 + parent: 1 + type: Transform + - uid: 6503 + components: + - pos: -63.5,33.5 + parent: 1 + type: Transform + - uid: 6509 + components: + - pos: -20.5,23.5 + parent: 1 + type: Transform + - uid: 6510 + components: + - pos: -20.5,25.5 + parent: 1 + type: Transform + - uid: 6511 + components: + - pos: -20.5,27.5 + parent: 1 + type: Transform + - uid: 6554 + components: + - pos: -17.5,28.5 + parent: 1 + type: Transform + - uid: 6633 + components: + - pos: -60.5,-18.5 + parent: 1 + type: Transform + - uid: 6637 + components: + - pos: -50.5,38.5 + parent: 1 + type: Transform + - uid: 6662 + components: + - pos: -57.5,-19.5 + parent: 1 + type: Transform + - uid: 6665 + components: + - pos: -51.5,-19.5 + parent: 1 + type: Transform + - uid: 6705 + components: + - pos: -40.5,-19.5 + parent: 1 + type: Transform + - uid: 6708 + components: + - pos: -69.5,10.5 + parent: 1 + type: Transform + - uid: 6709 + components: + - pos: -69.5,-2.5 + parent: 1 + type: Transform + - uid: 6710 + components: + - pos: -69.5,0.5 + parent: 1 + type: Transform + - uid: 6711 + components: + - pos: -69.5,7.5 + parent: 1 + type: Transform + - uid: 6712 + components: + - pos: 4.5,55.5 + parent: 1 + type: Transform + - uid: 6713 + components: + - pos: 7.5,55.5 + parent: 1 + type: Transform + - uid: 6714 + components: + - pos: 8.5,55.5 + parent: 1 + type: Transform + - uid: 6715 + components: + - pos: 9.5,55.5 + parent: 1 + type: Transform + - uid: 6734 + components: + - pos: -69.5,9.5 + parent: 1 + type: Transform + - uid: 6736 + components: + - pos: -69.5,-1.5 + parent: 1 + type: Transform + - uid: 6754 + components: + - pos: -41.5,-19.5 + parent: 1 + type: Transform + - uid: 6755 + components: + - pos: -43.5,-19.5 + parent: 1 + type: Transform + - uid: 6758 + components: + - pos: -41.5,-31.5 + parent: 1 + type: Transform + - uid: 6772 + components: + - pos: -62.5,-22.5 + parent: 1 + type: Transform + - uid: 6845 + components: + - pos: 38.5,-18.5 + parent: 1 + type: Transform + - uid: 6847 + components: + - pos: -54.5,-20.5 + parent: 1 + type: Transform + - uid: 6874 + components: + - pos: 38.5,-19.5 + parent: 1 + type: Transform + - uid: 6875 + components: + - pos: 49.5,-12.5 + parent: 1 + type: Transform + - uid: 6876 + components: + - pos: 51.5,-11.5 + parent: 1 + type: Transform + - uid: 6877 + components: + - pos: 50.5,-12.5 + parent: 1 + type: Transform + - uid: 6881 + components: + - pos: 49.5,-13.5 + parent: 1 + type: Transform + - uid: 6882 + components: + - pos: 48.5,-14.5 + parent: 1 + type: Transform + - uid: 6883 + components: + - pos: 48.5,-16.5 + parent: 1 + type: Transform + - uid: 6884 + components: + - pos: 47.5,-17.5 + parent: 1 + type: Transform + - uid: 6888 + components: + - pos: 45.5,-17.5 + parent: 1 + type: Transform + - uid: 6889 + components: + - pos: 44.5,-18.5 + parent: 1 + type: Transform + - uid: 6890 + components: + - pos: 44.5,-20.5 + parent: 1 + type: Transform + - uid: 6891 + components: + - pos: 48.5,-13.5 + parent: 1 + type: Transform + - uid: 6892 + components: + - pos: 48.5,-15.5 + parent: 1 + type: Transform + - uid: 6893 + components: + - pos: 48.5,-17.5 + parent: 1 + type: Transform + - uid: 6894 + components: + - pos: 46.5,-17.5 + parent: 1 + type: Transform + - uid: 6895 + components: + - pos: 44.5,-17.5 + parent: 1 + type: Transform + - uid: 6896 + components: + - pos: 44.5,-19.5 + parent: 1 + type: Transform + - uid: 6897 + components: + - pos: 44.5,-21.5 + parent: 1 + type: Transform + - uid: 6899 + components: + - pos: 101.5,18.5 + parent: 1 + type: Transform + - uid: 6903 + components: + - pos: 43.5,-21.5 + parent: 1 + type: Transform + - uid: 6932 + components: + - pos: 61.5,29.5 + parent: 1 + type: Transform + - uid: 6993 + components: + - pos: 97.5,18.5 + parent: 1 + type: Transform + - uid: 7000 + components: + - pos: 57.5,-2.5 + parent: 1 + type: Transform + - uid: 7005 + components: + - pos: 56.5,10.5 + parent: 1 + type: Transform + - uid: 7057 + components: + - pos: 42.5,-21.5 + parent: 1 + type: Transform + - uid: 7113 + components: + - pos: 90.5,16.5 + parent: 1 + type: Transform + - uid: 7128 + components: + - pos: 90.5,15.5 + parent: 1 + type: Transform + - uid: 7129 + components: + - pos: 90.5,13.5 + parent: 1 + type: Transform + - uid: 7170 + components: + - pos: 90.5,14.5 + parent: 1 + type: Transform + - uid: 7209 + components: + - pos: 98.5,-4.5 + parent: 1 + type: Transform + - uid: 7210 + components: + - pos: 56.5,-4.5 + parent: 1 + type: Transform + - uid: 7331 + components: + - pos: 3.5,51.5 + parent: 1 + type: Transform + - uid: 7371 + components: + - pos: 99.5,-5.5 + parent: 1 + type: Transform + - uid: 7373 + components: + - pos: 100.5,-5.5 + parent: 1 + type: Transform + - uid: 7377 + components: + - pos: 101.5,-5.5 + parent: 1 + type: Transform + - uid: 7378 + components: + - pos: 102.5,-5.5 + parent: 1 + type: Transform + - uid: 7407 + components: + - pos: 99.5,18.5 + parent: 1 + type: Transform + - uid: 7420 + components: + - pos: 55.5,-6.5 + parent: 1 + type: Transform + - uid: 7421 + components: + - pos: 56.5,-5.5 + parent: 1 + type: Transform + - uid: 7422 + components: + - pos: 57.5,-4.5 + parent: 1 + type: Transform + - uid: 7423 + components: + - pos: 51.5,20.5 + parent: 1 + type: Transform + - uid: 7427 + components: + - pos: 80.5,-17.5 + parent: 1 + type: Transform + - uid: 7428 + components: + - pos: 81.5,-17.5 + parent: 1 + type: Transform + - uid: 7429 + components: + - pos: 82.5,-17.5 + parent: 1 + type: Transform + - uid: 7430 + components: + - pos: 83.5,-17.5 + parent: 1 + type: Transform + - uid: 7431 + components: + - pos: 84.5,-17.5 + parent: 1 + type: Transform + - uid: 7432 + components: + - pos: 85.5,-17.5 + parent: 1 + type: Transform + - uid: 7473 + components: + - pos: 50.5,21.5 + parent: 1 + type: Transform + - uid: 7474 + components: + - pos: 97.5,17.5 + parent: 1 + type: Transform + - uid: 7475 + components: + - pos: -60.5,-15.5 + parent: 1 + type: Transform + - uid: 7632 + components: + - pos: 87.5,-7.5 + parent: 1 + type: Transform + - uid: 7639 + components: + - pos: 83.5,-5.5 + parent: 1 + type: Transform + - uid: 7644 + components: + - pos: 87.5,-6.5 + parent: 1 + type: Transform + - uid: 7645 + components: + - pos: 87.5,-5.5 + parent: 1 + type: Transform + - uid: 7646 + components: + - pos: 87.5,-4.5 + parent: 1 + type: Transform + - uid: 7647 + components: + - pos: 87.5,-3.5 + parent: 1 + type: Transform + - uid: 7684 + components: + - pos: 48.5,21.5 + parent: 1 + type: Transform + - uid: 7685 + components: + - pos: 47.5,22.5 + parent: 1 + type: Transform + - uid: 7686 + components: + - pos: 46.5,23.5 + parent: 1 + type: Transform + - uid: 7688 + components: + - pos: 45.5,26.5 + parent: 1 + type: Transform + - uid: 7689 + components: + - pos: 45.5,28.5 + parent: 1 + type: Transform + - uid: 7690 + components: + - pos: 44.5,29.5 + parent: 1 + type: Transform + - uid: 7691 + components: + - pos: 42.5,29.5 + parent: 1 + type: Transform + - uid: 7692 + components: + - pos: 41.5,29.5 + parent: 1 + type: Transform + - uid: 7693 + components: + - pos: 43.5,29.5 + parent: 1 + type: Transform + - uid: 7694 + components: + - pos: 45.5,29.5 + parent: 1 + type: Transform + - uid: 7695 + components: + - pos: 45.5,27.5 + parent: 1 + type: Transform + - uid: 7722 + components: + - pos: -10.5,-18.5 + parent: 1 + type: Transform + - uid: 7723 + components: + - pos: -10.5,-17.5 + parent: 1 + type: Transform + - uid: 7724 + components: + - pos: -10.5,-16.5 + parent: 1 + type: Transform + - uid: 7725 + components: + - pos: -10.5,-15.5 + parent: 1 + type: Transform + - uid: 7726 + components: + - pos: -10.5,-14.5 + parent: 1 + type: Transform + - uid: 7730 + components: + - pos: -5.5,-46.5 + parent: 1 + type: Transform + - uid: 7732 + components: + - pos: -4.5,-46.5 + parent: 1 + type: Transform + - uid: 7733 + components: + - pos: -3.5,-46.5 + parent: 1 + type: Transform + - uid: 7739 + components: + - pos: 45.5,25.5 + parent: 1 + type: Transform + - uid: 7741 + components: + - pos: 91.5,-13.5 + parent: 1 + type: Transform + - uid: 7742 + components: + - pos: 91.5,-12.5 + parent: 1 + type: Transform + - uid: 7743 + components: + - pos: 91.5,-11.5 + parent: 1 + type: Transform + - uid: 7744 + components: + - pos: 89.5,-13.5 + parent: 1 + type: Transform + - uid: 7760 + components: + - pos: 26.5,25.5 + parent: 1 + type: Transform + - uid: 7761 + components: + - pos: 26.5,27.5 + parent: 1 + type: Transform + - uid: 7762 + components: + - pos: 27.5,27.5 + parent: 1 + type: Transform + - uid: 7763 + components: + - pos: 28.5,27.5 + parent: 1 + type: Transform + - uid: 7764 + components: + - pos: 29.5,27.5 + parent: 1 + type: Transform + - uid: 7765 + components: + - pos: 30.5,27.5 + parent: 1 + type: Transform + - uid: 7767 + components: + - pos: 30.5,25.5 + parent: 1 + type: Transform + - uid: 7778 + components: + - pos: 92.5,20.5 + parent: 1 + type: Transform + - uid: 7779 + components: + - pos: 92.5,21.5 + parent: 1 + type: Transform + - uid: 7780 + components: + - pos: 92.5,22.5 + parent: 1 + type: Transform + - uid: 7914 + components: + - pos: 46.5,24.5 + parent: 1 + type: Transform + - uid: 7915 + components: + - pos: 47.5,23.5 + parent: 1 + type: Transform + - uid: 7916 + components: + - pos: 48.5,22.5 + parent: 1 + type: Transform + - uid: 7917 + components: + - pos: 49.5,21.5 + parent: 1 + type: Transform + - uid: 7918 + components: + - pos: 51.5,21.5 + parent: 1 + type: Transform + - uid: 7919 + components: + - pos: 51.5,19.5 + parent: 1 + type: Transform + - uid: 7920 + components: + - pos: -59.5,-13.5 + parent: 1 + type: Transform + - uid: 8030 + components: + - pos: 54.5,15.5 + parent: 1 + type: Transform + - uid: 8031 + components: + - pos: 57.5,12.5 + parent: 1 + type: Transform + - uid: 8032 + components: + - pos: 56.5,13.5 + parent: 1 + type: Transform + - uid: 8033 + components: + - pos: 55.5,13.5 + parent: 1 + type: Transform + - uid: 8034 + components: + - pos: 56.5,12.5 + parent: 1 + type: Transform + - uid: 8035 + components: + - pos: 58.5,12.5 + parent: 1 + type: Transform + - uid: 8092 + components: + - pos: 97.5,15.5 + parent: 1 + type: Transform + - uid: 8093 + components: + - pos: 98.5,15.5 + parent: 1 + type: Transform + - uid: 8094 + components: + - pos: 99.5,15.5 + parent: 1 + type: Transform + - uid: 8095 + components: + - pos: 100.5,15.5 + parent: 1 + type: Transform + - uid: 8096 + components: + - pos: 101.5,15.5 + parent: 1 + type: Transform + - uid: 8391 + components: + - pos: 59.5,29.5 + parent: 1 + type: Transform + - uid: 8393 + components: + - pos: 60.5,29.5 + parent: 1 + type: Transform + - uid: 8476 + components: + - pos: -41.5,-34.5 + parent: 1 + type: Transform + - uid: 8481 + components: + - pos: 63.5,-18.5 + parent: 1 + type: Transform + - uid: 8482 + components: + - pos: 100.5,18.5 + parent: 1 + type: Transform + - uid: 8494 + components: + - pos: -40.5,-31.5 + parent: 1 + type: Transform + - uid: 8546 + components: + - pos: 90.5,12.5 + parent: 1 + type: Transform + - uid: 8684 + components: + - pos: 58.5,29.5 + parent: 1 + type: Transform + - uid: 8710 + components: + - pos: 57.5,30.5 + parent: 1 + type: Transform + - uid: 8711 + components: + - pos: 56.5,31.5 + parent: 1 + type: Transform + - uid: 8712 + components: + - pos: 55.5,32.5 + parent: 1 + type: Transform + - uid: 8713 + components: + - pos: 54.5,33.5 + parent: 1 + type: Transform + - uid: 8714 + components: + - pos: 54.5,32.5 + parent: 1 + type: Transform + - uid: 8715 + components: + - pos: 56.5,32.5 + parent: 1 + type: Transform + - uid: 8716 + components: + - pos: 57.5,31.5 + parent: 1 + type: Transform + - uid: 8717 + components: + - pos: 57.5,29.5 + parent: 1 + type: Transform + - uid: 8719 + components: + - pos: 60.5,-6.5 + parent: 1 + type: Transform + - uid: 8720 + components: + - pos: 59.5,-6.5 + parent: 1 + type: Transform + - uid: 8721 + components: + - pos: 60.5,-5.5 + parent: 1 + type: Transform + - uid: 8722 + components: + - pos: 42.5,34.5 + parent: 1 + type: Transform + - uid: 8723 + components: + - pos: 44.5,37.5 + parent: 1 + type: Transform + - uid: 8793 + components: + - pos: -60.5,-17.5 + parent: 1 + type: Transform + - uid: 8795 + components: + - pos: -58.5,-13.5 + parent: 1 + type: Transform + - uid: 8796 + components: + - pos: -57.5,-13.5 + parent: 1 + type: Transform + - uid: 8797 + components: + - pos: -56.5,-13.5 + parent: 1 + type: Transform + - uid: 8966 + components: + - pos: 44.5,32.5 + parent: 1 + type: Transform + - uid: 8987 + components: + - pos: 89.5,10.5 + parent: 1 + type: Transform + - uid: 8988 + components: + - pos: 42.5,33.5 + parent: 1 + type: Transform + - uid: 8989 + components: + - pos: 43.5,32.5 + parent: 1 + type: Transform + - uid: 8990 + components: + - pos: 44.5,31.5 + parent: 1 + type: Transform + - uid: 8991 + components: + - pos: 41.5,42.5 + parent: 1 + type: Transform + - uid: 8992 + components: + - pos: 40.5,41.5 + parent: 1 + type: Transform + - uid: 8993 + components: + - pos: 40.5,39.5 + parent: 1 + type: Transform + - uid: 8994 + components: + - pos: 42.5,39.5 + parent: 1 + type: Transform + - uid: 8995 + components: + - pos: 96.5,11.5 + parent: 1 + type: Transform + - uid: 8997 + components: + - pos: 39.5,34.5 + parent: 1 + type: Transform + - uid: 9087 + components: + - pos: 44.5,39.5 + parent: 1 + type: Transform + - uid: 9089 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 9090 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 9091 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 9092 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 9117 + components: + - pos: 44.5,38.5 + parent: 1 + type: Transform + - uid: 9118 + components: + - pos: 44.5,36.5 + parent: 1 + type: Transform + - uid: 9148 + components: + - pos: 43.5,39.5 + parent: 1 + type: Transform + - uid: 9171 + components: + - pos: 16.5,-50.5 + parent: 1 + type: Transform + - uid: 9172 + components: + - pos: 16.5,-53.5 + parent: 1 + type: Transform + - uid: 9173 + components: + - pos: 18.5,-50.5 + parent: 1 + type: Transform + - uid: 9174 + components: + - pos: 18.5,-51.5 + parent: 1 + type: Transform + - uid: 9175 + components: + - pos: 18.5,-52.5 + parent: 1 + type: Transform + - uid: 9176 + components: + - pos: 18.5,-53.5 + parent: 1 + type: Transform + - uid: 9177 + components: + - pos: 20.5,-50.5 + parent: 1 + type: Transform + - uid: 9178 + components: + - pos: 20.5,-53.5 + parent: 1 + type: Transform + - uid: 9179 + components: + - pos: 24.5,-50.5 + parent: 1 + type: Transform + - uid: 9180 + components: + - pos: 24.5,-53.5 + parent: 1 + type: Transform + - uid: 9181 + components: + - pos: 26.5,-50.5 + parent: 1 + type: Transform + - uid: 9182 + components: + - pos: 26.5,-51.5 + parent: 1 + type: Transform + - uid: 9183 + components: + - pos: 26.5,-52.5 + parent: 1 + type: Transform + - uid: 9184 + components: + - pos: 26.5,-53.5 + parent: 1 + type: Transform + - uid: 9185 + components: + - pos: 28.5,-50.5 + parent: 1 + type: Transform + - uid: 9186 + components: + - pos: 28.5,-53.5 + parent: 1 + type: Transform + - uid: 9321 + components: + - pos: 102.5,16.5 + parent: 1 + type: Transform + - uid: 9348 + components: + - pos: 102.5,17.5 + parent: 1 + type: Transform + - uid: 9349 + components: + - pos: 103.5,17.5 + parent: 1 + type: Transform + - uid: 9350 + components: + - pos: 104.5,17.5 + parent: 1 + type: Transform + - uid: 9351 + components: + - pos: 105.5,17.5 + parent: 1 + type: Transform + - uid: 9547 + components: + - pos: -36.5,-34.5 + parent: 1 + type: Transform + - uid: 9596 + components: + - pos: 36.5,-19.5 + parent: 1 + type: Transform + - uid: 9598 + components: + - pos: 120.5,5.5 + parent: 1 + type: Transform + - uid: 9599 + components: + - pos: 120.5,8.5 + parent: 1 + type: Transform + - uid: 9600 + components: + - pos: 120.5,6.5 + parent: 1 + type: Transform + - uid: 9601 + components: + - pos: 36.5,-18.5 + parent: 1 + type: Transform + - uid: 9602 + components: + - pos: 126.5,5.5 + parent: 1 + type: Transform + - uid: 9603 + components: + - pos: 36.5,-17.5 + parent: 1 + type: Transform + - uid: 9604 + components: + - pos: 36.5,-16.5 + parent: 1 + type: Transform + - uid: 9605 + components: + - pos: 120.5,9.5 + parent: 1 + type: Transform + - uid: 9606 + components: + - pos: 120.5,7.5 + parent: 1 + type: Transform + - uid: 9607 + components: + - pos: 125.5,5.5 + parent: 1 + type: Transform + - uid: 9608 + components: + - pos: 126.5,2.5 + parent: 1 + type: Transform + - uid: 9609 + components: + - pos: 125.5,2.5 + parent: 1 + type: Transform + - uid: 9610 + components: + - pos: 36.5,-15.5 + parent: 1 + type: Transform + - uid: 9611 + components: + - pos: 37.5,-15.5 + parent: 1 + type: Transform + - uid: 9612 + components: + - pos: 38.5,-15.5 + parent: 1 + type: Transform + - uid: 9613 + components: + - pos: 39.5,-15.5 + parent: 1 + type: Transform + - uid: 9614 + components: + - pos: 120.5,2.5 + parent: 1 + type: Transform + - uid: 9615 + components: + - pos: 120.5,10.5 + parent: 1 + type: Transform + - uid: 9616 + components: + - pos: 120.5,11.5 + parent: 1 + type: Transform + - uid: 9626 + components: + - pos: 120.5,1.5 + parent: 1 + type: Transform + - uid: 9630 + components: + - pos: 40.5,-15.5 + parent: 1 + type: Transform + - uid: 9631 + components: + - pos: 41.5,39.5 + parent: 1 + type: Transform + - uid: 9635 + components: + - pos: 40.5,40.5 + parent: 1 + type: Transform + - uid: 9636 + components: + - pos: 40.5,42.5 + parent: 1 + type: Transform + - uid: 9637 + components: + - pos: 41.5,34.5 + parent: 1 + type: Transform + - uid: 9638 + components: + - pos: 120.5,0.5 + parent: 1 + type: Transform + - uid: 9639 + components: + - pos: 120.5,-0.5 + parent: 1 + type: Transform + - uid: 9640 + components: + - pos: 120.5,-1.5 + parent: 1 + type: Transform + - uid: 9641 + components: + - pos: 120.5,-2.5 + parent: 1 + type: Transform + - uid: 9642 + components: + - pos: 120.5,-3.5 + parent: 1 + type: Transform + - uid: 9643 + components: + - pos: 120.5,-4.5 + parent: 1 + type: Transform + - uid: 9644 + components: + - pos: 121.5,-4.5 + parent: 1 + type: Transform + - uid: 9645 + components: + - pos: 122.5,-4.5 + parent: 1 + type: Transform + - uid: 9646 + components: + - pos: 123.5,-4.5 + parent: 1 + type: Transform + - uid: 9647 + components: + - pos: 124.5,-4.5 + parent: 1 + type: Transform + - uid: 9648 + components: + - pos: 125.5,-4.5 + parent: 1 + type: Transform + - uid: 9649 + components: + - pos: 126.5,-4.5 + parent: 1 + type: Transform + - uid: 9650 + components: + - pos: 127.5,-4.5 + parent: 1 + type: Transform + - uid: 9651 + components: + - pos: 128.5,-4.5 + parent: 1 + type: Transform + - uid: 9652 + components: + - pos: 129.5,-4.5 + parent: 1 + type: Transform + - uid: 9653 + components: + - pos: 130.5,-4.5 + parent: 1 + type: Transform + - uid: 9654 + components: + - pos: 131.5,-4.5 + parent: 1 + type: Transform + - uid: 9655 + components: + - pos: 132.5,-4.5 + parent: 1 + type: Transform + - uid: 9656 + components: + - pos: 133.5,-4.5 + parent: 1 + type: Transform + - uid: 9657 + components: + - pos: 134.5,-4.5 + parent: 1 + type: Transform + - uid: 9658 + components: + - pos: 135.5,-4.5 + parent: 1 + type: Transform + - uid: 9659 + components: + - pos: 136.5,-4.5 + parent: 1 + type: Transform + - uid: 9660 + components: + - pos: 136.5,-3.5 + parent: 1 + type: Transform + - uid: 9661 + components: + - pos: 136.5,-2.5 + parent: 1 + type: Transform + - uid: 9662 + components: + - pos: 136.5,-1.5 + parent: 1 + type: Transform + - uid: 9663 + components: + - pos: 136.5,-0.5 + parent: 1 + type: Transform + - uid: 9664 + components: + - pos: 136.5,0.5 + parent: 1 + type: Transform + - uid: 9665 + components: + - pos: 136.5,1.5 + parent: 1 + type: Transform + - uid: 9666 + components: + - pos: 136.5,2.5 + parent: 1 + type: Transform + - uid: 9667 + components: + - pos: 136.5,3.5 + parent: 1 + type: Transform + - uid: 9668 + components: + - pos: 136.5,4.5 + parent: 1 + type: Transform + - uid: 9669 + components: + - pos: 136.5,5.5 + parent: 1 + type: Transform + - uid: 9670 + components: + - pos: 136.5,6.5 + parent: 1 + type: Transform + - uid: 9671 + components: + - pos: 136.5,7.5 + parent: 1 + type: Transform + - uid: 9672 + components: + - pos: 136.5,8.5 + parent: 1 + type: Transform + - uid: 9673 + components: + - pos: 136.5,9.5 + parent: 1 + type: Transform + - uid: 9674 + components: + - pos: 136.5,10.5 + parent: 1 + type: Transform + - uid: 9675 + components: + - pos: 136.5,11.5 + parent: 1 + type: Transform + - uid: 9676 + components: + - pos: 120.5,12.5 + parent: 1 + type: Transform + - uid: 9677 + components: + - pos: 121.5,10.5 + parent: 1 + type: Transform + - uid: 9678 + components: + - pos: 122.5,10.5 + parent: 1 + type: Transform + - uid: 9679 + components: + - pos: 123.5,10.5 + parent: 1 + type: Transform + - uid: 9680 + components: + - pos: 124.5,10.5 + parent: 1 + type: Transform + - uid: 9681 + components: + - pos: 125.5,10.5 + parent: 1 + type: Transform + - uid: 9682 + components: + - pos: 126.5,10.5 + parent: 1 + type: Transform + - uid: 9683 + components: + - pos: 127.5,10.5 + parent: 1 + type: Transform + - uid: 9684 + components: + - pos: 128.5,10.5 + parent: 1 + type: Transform + - uid: 9685 + components: + - pos: 129.5,10.5 + parent: 1 + type: Transform + - uid: 9686 + components: + - pos: 134.5,10.5 + parent: 1 + type: Transform + - uid: 9687 + components: + - pos: 130.5,10.5 + parent: 1 + type: Transform + - uid: 9688 + components: + - pos: 131.5,10.5 + parent: 1 + type: Transform + - uid: 9689 + components: + - pos: 132.5,10.5 + parent: 1 + type: Transform + - uid: 9690 + components: + - pos: 133.5,10.5 + parent: 1 + type: Transform + - uid: 9691 + components: + - pos: 133.5,12.5 + parent: 1 + type: Transform + - uid: 9692 + components: + - pos: 132.5,12.5 + parent: 1 + type: Transform + - uid: 9693 + components: + - pos: 131.5,12.5 + parent: 1 + type: Transform + - uid: 9694 + components: + - pos: 130.5,12.5 + parent: 1 + type: Transform + - uid: 9695 + components: + - pos: 129.5,12.5 + parent: 1 + type: Transform + - uid: 9696 + components: + - pos: 128.5,12.5 + parent: 1 + type: Transform + - uid: 9697 + components: + - pos: 127.5,12.5 + parent: 1 + type: Transform + - uid: 9698 + components: + - pos: 126.5,12.5 + parent: 1 + type: Transform + - uid: 9699 + components: + - pos: 125.5,12.5 + parent: 1 + type: Transform + - uid: 9700 + components: + - pos: 124.5,12.5 + parent: 1 + type: Transform + - uid: 9701 + components: + - pos: 123.5,12.5 + parent: 1 + type: Transform + - uid: 9702 + components: + - pos: 122.5,12.5 + parent: 1 + type: Transform + - uid: 9703 + components: + - pos: 121.5,12.5 + parent: 1 + type: Transform + - uid: 9704 + components: + - pos: 134.5,9.5 + parent: 1 + type: Transform + - uid: 9705 + components: + - pos: 134.5,8.5 + parent: 1 + type: Transform + - uid: 9706 + components: + - pos: 134.5,7.5 + parent: 1 + type: Transform + - uid: 9707 + components: + - pos: 134.5,6.5 + parent: 1 + type: Transform + - uid: 9708 + components: + - pos: 134.5,5.5 + parent: 1 + type: Transform + - uid: 9709 + components: + - pos: 134.5,4.5 + parent: 1 + type: Transform + - uid: 9710 + components: + - pos: 134.5,3.5 + parent: 1 + type: Transform + - uid: 9711 + components: + - pos: 134.5,2.5 + parent: 1 + type: Transform + - uid: 9712 + components: + - pos: 134.5,1.5 + parent: 1 + type: Transform + - uid: 9713 + components: + - pos: 134.5,0.5 + parent: 1 + type: Transform + - uid: 9714 + components: + - pos: 134.5,-0.5 + parent: 1 + type: Transform + - uid: 9715 + components: + - pos: 134.5,-1.5 + parent: 1 + type: Transform + - uid: 9716 + components: + - pos: 134.5,-2.5 + parent: 1 + type: Transform + - uid: 9717 + components: + - pos: 133.5,-2.5 + parent: 1 + type: Transform + - uid: 9718 + components: + - pos: 132.5,-2.5 + parent: 1 + type: Transform + - uid: 9719 + components: + - pos: 131.5,-2.5 + parent: 1 + type: Transform + - uid: 9720 + components: + - pos: 130.5,-2.5 + parent: 1 + type: Transform + - uid: 9721 + components: + - pos: 129.5,-2.5 + parent: 1 + type: Transform + - uid: 9722 + components: + - pos: 128.5,-2.5 + parent: 1 + type: Transform + - uid: 9723 + components: + - pos: 127.5,-2.5 + parent: 1 + type: Transform + - uid: 9724 + components: + - pos: 126.5,-2.5 + parent: 1 + type: Transform + - uid: 9725 + components: + - pos: 125.5,-2.5 + parent: 1 + type: Transform + - uid: 9726 + components: + - pos: 124.5,-2.5 + parent: 1 + type: Transform + - uid: 9727 + components: + - pos: 123.5,-2.5 + parent: 1 + type: Transform + - uid: 9728 + components: + - pos: 122.5,-2.5 + parent: 1 + type: Transform + - uid: 9729 + components: + - pos: 121.5,-2.5 + parent: 1 + type: Transform + - uid: 9730 + components: + - pos: 134.5,12.5 + parent: 1 + type: Transform + - uid: 9731 + components: + - pos: 135.5,12.5 + parent: 1 + type: Transform + - uid: 9732 + components: + - pos: 136.5,12.5 + parent: 1 + type: Transform + - uid: 9735 + components: + - pos: 125.5,8.5 + parent: 1 + type: Transform + - uid: 9737 + components: + - pos: 125.5,7.5 + parent: 1 + type: Transform + - uid: 9738 + components: + - pos: 125.5,6.5 + parent: 1 + type: Transform + - uid: 9739 + components: + - pos: 126.5,8.5 + parent: 1 + type: Transform + - uid: 9740 + components: + - pos: 130.5,8.5 + parent: 1 + type: Transform + - uid: 9741 + components: + - pos: 131.5,8.5 + parent: 1 + type: Transform + - uid: 9742 + components: + - pos: 131.5,7.5 + parent: 1 + type: Transform + - uid: 9749 + components: + - pos: 131.5,0.5 + parent: 1 + type: Transform + - uid: 9750 + components: + - pos: 131.5,-0.5 + parent: 1 + type: Transform + - uid: 9751 + components: + - pos: 130.5,-0.5 + parent: 1 + type: Transform + - uid: 9755 + components: + - pos: 126.5,-0.5 + parent: 1 + type: Transform + - uid: 9756 + components: + - pos: 125.5,-0.5 + parent: 1 + type: Transform + - uid: 9757 + components: + - pos: 125.5,0.5 + parent: 1 + type: Transform + - uid: 9758 + components: + - pos: 125.5,1.5 + parent: 1 + type: Transform + - uid: 9848 + components: + - pos: 42.5,32.5 + parent: 1 + type: Transform + - uid: 9849 + components: + - pos: 39.5,35.5 + parent: 1 + type: Transform + - uid: 9850 + components: + - pos: 39.5,36.5 + parent: 1 + type: Transform + - uid: 9910 + components: + - pos: 53.5,-0.5 + parent: 1 + type: Transform + - uid: 9911 + components: + - pos: 53.5,1.5 + parent: 1 + type: Transform + - uid: 9912 + components: + - pos: 53.5,0.5 + parent: 1 + type: Transform + - uid: 9913 + components: + - pos: 55.5,-2.5 + parent: 1 + type: Transform + - uid: 9914 + components: + - pos: 55.5,10.5 + parent: 1 + type: Transform + - uid: 9951 + components: + - pos: -42.5,-19.5 + parent: 1 + type: Transform + - uid: 9953 + components: + - pos: -28.5,43.5 + parent: 1 + type: Transform + - uid: 9992 + components: + - pos: 97.5,19.5 + parent: 1 + type: Transform + - uid: 9994 + components: + - pos: 39.5,37.5 + parent: 1 + type: Transform + - uid: 9995 + components: + - pos: 87.5,12.5 + parent: 1 + type: Transform + - uid: 9996 + components: + - pos: 89.5,12.5 + parent: 1 + type: Transform + - uid: 9997 + components: + - pos: 36.5,37.5 + parent: 1 + type: Transform + - uid: 10002 + components: + - pos: 88.5,12.5 + parent: 1 + type: Transform + - uid: 10028 + components: + - pos: 36.5,36.5 + parent: 1 + type: Transform + - uid: 10029 + components: + - pos: 35.5,35.5 + parent: 1 + type: Transform + - uid: 10282 + components: + - pos: 70.5,31.5 + parent: 1 + type: Transform + - uid: 10283 + components: + - pos: 70.5,32.5 + parent: 1 + type: Transform + - uid: 10285 + components: + - pos: 81.5,32.5 + parent: 1 + type: Transform + - uid: 10412 + components: + - pos: 42.5,42.5 + parent: 1 + type: Transform + - uid: 10413 + components: + - pos: 35.5,36.5 + parent: 1 + type: Transform + - uid: 10607 + components: + - pos: 37.5,37.5 + parent: 1 + type: Transform + - uid: 10619 + components: + - pos: 38.5,37.5 + parent: 1 + type: Transform + - uid: 10808 + components: + - pos: 51.5,-0.5 + parent: 1 + type: Transform + - uid: 11069 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 11093 + components: + - pos: 51.5,0.5 + parent: 1 + type: Transform + - uid: 11161 + components: + - pos: 36.5,55.5 + parent: 1 + type: Transform + - uid: 11179 + components: + - pos: 38.5,55.5 + parent: 1 + type: Transform + - uid: 11180 + components: + - pos: 41.5,51.5 + parent: 1 + type: Transform + - uid: 11197 + components: + - pos: 41.5,48.5 + parent: 1 + type: Transform + - uid: 11217 + components: + - pos: 42.5,48.5 + parent: 1 + type: Transform + - uid: 11276 + components: + - pos: 38.5,51.5 + parent: 1 + type: Transform + - uid: 11277 + components: + - pos: 37.5,55.5 + parent: 1 + type: Transform + - uid: 11278 + components: + - pos: 35.5,55.5 + parent: 1 + type: Transform + - uid: 11331 + components: + - pos: -11.5,55.5 + parent: 1 + type: Transform + - uid: 11345 + components: + - pos: -15.5,55.5 + parent: 1 + type: Transform + - uid: 11347 + components: + - pos: -16.5,54.5 + parent: 1 + type: Transform + - uid: 11474 + components: + - pos: 107.5,-3.5 + parent: 1 + type: Transform + - uid: 11476 + components: + - pos: 108.5,-6.5 + parent: 1 + type: Transform + - uid: 11531 + components: + - pos: -69.5,8.5 + parent: 1 + type: Transform + - uid: 11534 + components: + - pos: -69.5,-0.5 + parent: 1 + type: Transform + - uid: 11577 + components: + - pos: 63.5,-22.5 + parent: 1 + type: Transform + - uid: 11578 + components: + - pos: 63.5,-23.5 + parent: 1 + type: Transform + - uid: 11579 + components: + - pos: 63.5,-24.5 + parent: 1 + type: Transform + - uid: 11580 + components: + - pos: 63.5,-25.5 + parent: 1 + type: Transform + - uid: 11582 + components: + - pos: -18.5,49.5 + parent: 1 + type: Transform + - uid: 11583 + components: + - pos: 66.5,-25.5 + parent: 1 + type: Transform + - uid: 11592 + components: + - pos: 74.5,-24.5 + parent: 1 + type: Transform + - uid: 11593 + components: + - pos: 74.5,-23.5 + parent: 1 + type: Transform + - uid: 11594 + components: + - pos: 74.5,-22.5 + parent: 1 + type: Transform + - uid: 11603 + components: + - pos: -18.5,48.5 + parent: 1 + type: Transform + - uid: 11651 + components: + - pos: 10.5,56.5 + parent: 1 + type: Transform + - uid: 11652 + components: + - pos: 10.5,57.5 + parent: 1 + type: Transform + - uid: 11653 + components: + - pos: 10.5,58.5 + parent: 1 + type: Transform + - uid: 11654 + components: + - pos: 14.5,56.5 + parent: 1 + type: Transform + - uid: 11655 + components: + - pos: 14.5,57.5 + parent: 1 + type: Transform + - uid: 11656 + components: + - pos: 14.5,58.5 + parent: 1 + type: Transform + - uid: 11664 + components: + - pos: -10.5,56.5 + parent: 1 + type: Transform + - uid: 11665 + components: + - pos: -10.5,57.5 + parent: 1 + type: Transform + - uid: 11666 + components: + - pos: -6.5,57.5 + parent: 1 + type: Transform + - uid: 11667 + components: + - pos: -6.5,56.5 + parent: 1 + type: Transform + - uid: 11675 + components: + - pos: 34.5,56.5 + parent: 1 + type: Transform + - uid: 11676 + components: + - pos: 34.5,57.5 + parent: 1 + type: Transform + - uid: 11677 + components: + - pos: 30.5,56.5 + parent: 1 + type: Transform + - uid: 11678 + components: + - pos: 30.5,57.5 + parent: 1 + type: Transform + - uid: 11690 + components: + - pos: 54.5,36.5 + parent: 1 + type: Transform + - uid: 11699 + components: + - pos: 42.5,-41.5 + parent: 1 + type: Transform + - uid: 11700 + components: + - pos: 41.5,-41.5 + parent: 1 + type: Transform + - uid: 11701 + components: + - pos: 53.5,-26.5 + parent: 1 + type: Transform + - uid: 11702 + components: + - pos: 88.5,-16.5 + parent: 1 + type: Transform + - uid: 11913 + components: + - pos: -44.5,43.5 + parent: 1 + type: Transform + - uid: 11914 + components: + - pos: -37.5,43.5 + parent: 1 + type: Transform + - uid: 11915 + components: + - pos: -44.5,40.5 + parent: 1 + type: Transform + - uid: 11918 + components: + - pos: -41.5,43.5 + parent: 1 + type: Transform + - uid: 11919 + components: + - pos: -41.5,40.5 + parent: 1 + type: Transform + - uid: 11999 + components: + - pos: -59.5,-19.5 + parent: 1 + type: Transform + - uid: 12005 + components: + - pos: -62.5,-25.5 + parent: 1 + type: Transform + - uid: 12006 + components: + - pos: -37.5,-35.5 + parent: 1 + type: Transform + - uid: 12007 + components: + - pos: -54.5,-24.5 + parent: 1 + type: Transform + - uid: 12008 + components: + - pos: -56.5,-19.5 + parent: 1 + type: Transform + - uid: 12009 + components: + - pos: -55.5,-19.5 + parent: 1 + type: Transform + - uid: 12010 + components: + - pos: -54.5,-19.5 + parent: 1 + type: Transform + - uid: 12011 + components: + - pos: -53.5,-19.5 + parent: 1 + type: Transform + - uid: 12012 + components: + - pos: -52.5,-19.5 + parent: 1 + type: Transform + - uid: 12013 + components: + - pos: -49.5,-19.5 + parent: 1 + type: Transform + - uid: 12015 + components: + - pos: -48.5,-19.5 + parent: 1 + type: Transform + - uid: 12018 + components: + - pos: -54.5,-21.5 + parent: 1 + type: Transform + - uid: 12021 + components: + - pos: -45.5,-19.5 + parent: 1 + type: Transform + - uid: 12026 + components: + - pos: -54.5,-25.5 + parent: 1 + type: Transform + - uid: 12040 + components: + - pos: -77.5,0.5 + parent: 1 + type: Transform + - uid: 12063 + components: + - pos: 62.5,23.5 + parent: 1 + type: Transform + - uid: 12065 + components: + - pos: 8.5,52.5 + parent: 1 + type: Transform + - uid: 12068 + components: + - pos: 2.5,49.5 + parent: 1 + type: Transform + - uid: 12069 + components: + - pos: 2.5,50.5 + parent: 1 + type: Transform + - uid: 12070 + components: + - pos: 2.5,51.5 + parent: 1 + type: Transform + - uid: 12072 + components: + - pos: 9.5,52.5 + parent: 1 + type: Transform + - uid: 12083 + components: + - pos: 59.5,15.5 + parent: 1 + type: Transform + - uid: 12084 + components: + - pos: 58.5,22.5 + parent: 1 + type: Transform + - uid: 12085 + components: + - pos: 58.5,23.5 + parent: 1 + type: Transform + - uid: 12087 + components: + - pos: 58.5,17.5 + parent: 1 + type: Transform + - uid: 12088 + components: + - pos: 58.5,19.5 + parent: 1 + type: Transform + - uid: 12089 + components: + - pos: 58.5,20.5 + parent: 1 + type: Transform + - uid: 12090 + components: + - pos: 58.5,18.5 + parent: 1 + type: Transform + - uid: 12091 + components: + - pos: 58.5,21.5 + parent: 1 + type: Transform + - uid: 12092 + components: + - pos: 60.5,23.5 + parent: 1 + type: Transform + - uid: 12093 + components: + - pos: 61.5,23.5 + parent: 1 + type: Transform + - uid: 12095 + components: + - pos: 5.5,55.5 + parent: 1 + type: Transform + - uid: 12098 + components: + - pos: 58.5,16.5 + parent: 1 + type: Transform + - uid: 12099 + components: + - pos: 58.5,15.5 + parent: 1 + type: Transform + - uid: 12100 + components: + - pos: 59.5,23.5 + parent: 1 + type: Transform + - uid: 12105 + components: + - pos: -77.5,11.5 + parent: 1 + type: Transform + - uid: 12115 + components: + - pos: -72.5,-2.5 + parent: 1 + type: Transform + - uid: 12116 + components: + - pos: -71.5,-2.5 + parent: 1 + type: Transform + - uid: 12117 + components: + - pos: -70.5,-2.5 + parent: 1 + type: Transform + - uid: 12124 + components: + - pos: -77.5,7.5 + parent: 1 + type: Transform + - uid: 12125 + components: + - pos: -77.5,10.5 + parent: 1 + type: Transform + - uid: 12126 + components: + - pos: -73.5,10.5 + parent: 1 + type: Transform + - uid: 12127 + components: + - pos: -73.5,9.5 + parent: 1 + type: Transform + - uid: 12128 + components: + - pos: -73.5,8.5 + parent: 1 + type: Transform + - uid: 12129 + components: + - pos: -73.5,7.5 + parent: 1 + type: Transform + - uid: 12131 + components: + - pos: -75.5,10.5 + parent: 1 + type: Transform + - uid: 12132 + components: + - pos: -74.5,10.5 + parent: 1 + type: Transform + - uid: 12133 + components: + - pos: -77.5,9.5 + parent: 1 + type: Transform + - uid: 12134 + components: + - pos: -77.5,8.5 + parent: 1 + type: Transform + - uid: 12135 + components: + - pos: -72.5,10.5 + parent: 1 + type: Transform + - uid: 12136 + components: + - pos: -71.5,10.5 + parent: 1 + type: Transform + - uid: 12137 + components: + - pos: -70.5,10.5 + parent: 1 + type: Transform + - uid: 12243 + components: + - pos: -17.5,54.5 + parent: 1 + type: Transform + - uid: 12245 + components: + - pos: -16.5,55.5 + parent: 1 + type: Transform + - uid: 12272 + components: + - pos: -22.5,-38.5 + parent: 1 + type: Transform + - uid: 12273 + components: + - pos: -28.5,-38.5 + parent: 1 + type: Transform + - uid: 12337 + components: + - pos: -4.5,-27.5 + parent: 1 + type: Transform + - uid: 12338 + components: + - pos: -1.5,-27.5 + parent: 1 + type: Transform + - uid: 12339 + components: + - pos: -0.5,-27.5 + parent: 1 + type: Transform + - uid: 12340 + components: + - pos: 0.5,-27.5 + parent: 1 + type: Transform + - uid: 12348 + components: + - pos: -2.5,-26.5 + parent: 1 + type: Transform + - uid: 12349 + components: + - pos: -1.5,-26.5 + parent: 1 + type: Transform + - uid: 12489 + components: + - pos: -29.5,33.5 + parent: 1 + type: Transform + - uid: 12490 + components: + - pos: -25.5,31.5 + parent: 1 + type: Transform + - uid: 12491 + components: + - pos: -25.5,30.5 + parent: 1 + type: Transform + - uid: 12492 + components: + - pos: -25.5,34.5 + parent: 1 + type: Transform + - uid: 12493 + components: + - pos: -27.5,30.5 + parent: 1 + type: Transform + - uid: 12494 + components: + - pos: -26.5,30.5 + parent: 1 + type: Transform + - uid: 12495 + components: + - pos: -29.5,34.5 + parent: 1 + type: Transform + - uid: 12496 + components: + - pos: -28.5,34.5 + parent: 1 + type: Transform + - uid: 12497 + components: + - pos: -27.5,34.5 + parent: 1 + type: Transform + - uid: 12498 + components: + - pos: -26.5,34.5 + parent: 1 + type: Transform + - uid: 12499 + components: + - pos: -25.5,33.5 + parent: 1 + type: Transform + - uid: 12501 + components: + - pos: -30.5,26.5 + parent: 1 + type: Transform + - uid: 12502 + components: + - pos: -20.5,44.5 + parent: 1 + type: Transform + - uid: 12528 + components: + - pos: -12.5,42.5 + parent: 1 + type: Transform + - uid: 12529 + components: + - pos: -14.5,42.5 + parent: 1 + type: Transform + - uid: 12531 + components: + - pos: -13.5,42.5 + parent: 1 + type: Transform + - uid: 12532 + components: + - pos: -14.5,43.5 + parent: 1 + type: Transform + - uid: 12594 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 12616 + components: + - pos: -47.5,-19.5 + parent: 1 + type: Transform + - uid: 12687 + components: + - pos: 90.5,29.5 + parent: 1 + type: Transform + - uid: 12689 + components: + - pos: 91.5,26.5 + parent: 1 + type: Transform + - uid: 12691 + components: + - pos: 87.5,30.5 + parent: 1 + type: Transform + - uid: 12696 + components: + - pos: 88.5,29.5 + parent: 1 + type: Transform + - uid: 12706 + components: + - pos: 88.5,30.5 + parent: 1 + type: Transform + - uid: 12708 + components: + - pos: 89.5,29.5 + parent: 1 + type: Transform + - uid: 12743 + components: + - pos: 40.5,34.5 + parent: 1 + type: Transform + - uid: 12744 + components: + - pos: -59.5,-14.5 + parent: 1 + type: Transform + - uid: 12745 + components: + - pos: 90.5,26.5 + parent: 1 + type: Transform + - uid: 12746 + components: + - pos: 92.5,26.5 + parent: 1 + type: Transform + - uid: 12751 + components: + - pos: 50.5,-11.5 + parent: 1 + type: Transform + - uid: 12754 + components: + - pos: 93.5,-5.5 + parent: 1 + type: Transform + - uid: 12755 + components: + - pos: 90.5,-4.5 + parent: 1 + type: Transform + - uid: 13132 + components: + - pos: 91.5,-4.5 + parent: 1 + type: Transform + - uid: 13136 + components: + - pos: 92.5,-17.5 + parent: 1 + type: Transform + - uid: 13137 + components: + - pos: 92.5,-19.5 + parent: 1 + type: Transform + - uid: 13138 + components: + - pos: 91.5,-20.5 + parent: 1 + type: Transform + - uid: 13139 + components: + - pos: 89.5,-20.5 + parent: 1 + type: Transform + - uid: 13142 + components: + - pos: 88.5,-21.5 + parent: 1 + type: Transform + - uid: 13144 + components: + - pos: 92.5,-16.5 + parent: 1 + type: Transform + - uid: 13239 + components: + - pos: 88.5,-20.5 + parent: 1 + type: Transform + - uid: 13390 + components: + - pos: 90.5,-20.5 + parent: 1 + type: Transform + - uid: 13391 + components: + - pos: 92.5,-20.5 + parent: 1 + type: Transform + - uid: 13392 + components: + - pos: 92.5,-18.5 + parent: 1 + type: Transform + - uid: 13393 + components: + - pos: 88.5,-19.5 + parent: 1 + type: Transform + - uid: 13394 + components: + - pos: 59.5,-18.5 + parent: 1 + type: Transform + - uid: 13518 + components: + - pos: 101.5,8.5 + parent: 1 + type: Transform + - uid: 13520 + components: + - pos: 100.5,8.5 + parent: 1 + type: Transform + - uid: 13834 + components: + - pos: 94.5,-1.5 + parent: 1 + type: Transform + - uid: 13835 + components: + - pos: 95.5,-2.5 + parent: 1 + type: Transform + - uid: 13982 + components: + - pos: 96.5,-3.5 + parent: 1 + type: Transform + - uid: 13984 + components: + - pos: 94.5,-5.5 + parent: 1 + type: Transform + - uid: 13985 + components: + - pos: 95.5,-6.5 + parent: 1 + type: Transform + - uid: 13986 + components: + - pos: 97.5,-3.5 + parent: 1 + type: Transform + - uid: 13987 + components: + - pos: 95.5,-5.5 + parent: 1 + type: Transform + - uid: 13988 + components: + - pos: 93.5,-1.5 + parent: 1 + type: Transform + - uid: 13991 + components: + - pos: 95.5,-1.5 + parent: 1 + type: Transform + - uid: 13992 + components: + - pos: 95.5,-3.5 + parent: 1 + type: Transform + - uid: 13993 + components: + - pos: 94.5,-8.5 + parent: 1 + type: Transform + - uid: 14014 + components: + - pos: 95.5,-7.5 + parent: 1 + type: Transform + - uid: 14238 + components: + - pos: 115.5,11.5 + parent: 1 + type: Transform + - uid: 14239 + components: + - pos: 110.5,-5.5 + parent: 1 + type: Transform + - uid: 14240 + components: + - pos: 109.5,-6.5 + parent: 1 + type: Transform + - uid: 14241 + components: + - pos: 116.5,0.5 + parent: 1 + type: Transform + - uid: 14242 + components: + - pos: 110.5,-6.5 + parent: 1 + type: Transform + - uid: 14244 + components: + - pos: 95.5,7.5 + parent: 1 + type: Transform + - uid: 14250 + components: + - pos: 96.5,8.5 + parent: 1 + type: Transform + - uid: 14255 + components: + - pos: 95.5,22.5 + parent: 1 + type: Transform + - uid: 14256 + components: + - pos: 97.5,20.5 + parent: 1 + type: Transform + - uid: 14257 + components: + - pos: 96.5,21.5 + parent: 1 + type: Transform + - uid: 14294 + components: + - pos: -54.5,-22.5 + parent: 1 + type: Transform + - uid: 14304 + components: + - pos: -46.5,-19.5 + parent: 1 + type: Transform + - uid: 14324 + components: + - pos: 94.5,23.5 + parent: 1 + type: Transform + - uid: 14325 + components: + - pos: 108.5,15.5 + parent: 1 + type: Transform + - uid: 14418 + components: + - pos: 9.5,-30.5 + parent: 1 + type: Transform + - uid: 14419 + components: + - pos: 14.5,-29.5 + parent: 1 + type: Transform + - uid: 14420 + components: + - pos: 14.5,-30.5 + parent: 1 + type: Transform + - uid: 14571 + components: + - pos: 111.5,12.5 + parent: 1 + type: Transform + - uid: 14572 + components: + - pos: 116.5,7.5 + parent: 1 + type: Transform + - uid: 15040 + components: + - pos: 115.5,7.5 + parent: 1 + type: Transform + - uid: 15041 + components: + - pos: 111.5,11.5 + parent: 1 + type: Transform + - uid: 15042 + components: + - pos: 95.5,-15.5 + parent: 1 + type: Transform + - uid: 15045 + components: + - pos: 109.5,15.5 + parent: 1 + type: Transform + - uid: 15054 + components: + - pos: 94.5,-16.5 + parent: 1 + type: Transform + - uid: 15184 + components: + - pos: 95.5,-13.5 + parent: 1 + type: Transform + - uid: 15185 + components: + - pos: 96.5,-12.5 + parent: 1 + type: Transform + - uid: 15188 + components: + - pos: 96.5,-10.5 + parent: 1 + type: Transform + - uid: 15189 + components: + - pos: 98.5,-10.5 + parent: 1 + type: Transform + - uid: 15190 + components: + - pos: 95.5,-16.5 + parent: 1 + type: Transform + - uid: 15191 + components: + - pos: 95.5,-14.5 + parent: 1 + type: Transform + - uid: 15192 + components: + - pos: 95.5,-12.5 + parent: 1 + type: Transform + - uid: 15193 + components: + - pos: 96.5,-11.5 + parent: 1 + type: Transform + - uid: 15194 + components: + - pos: 97.5,-10.5 + parent: 1 + type: Transform + - uid: 15195 + components: + - pos: 99.5,-10.5 + parent: 1 + type: Transform + - uid: 15418 + components: + - pos: 97.5,21.5 + parent: 1 + type: Transform + - uid: 15431 + components: + - pos: 95.5,21.5 + parent: 1 + type: Transform + - uid: 15671 + components: + - pos: 95.5,23.5 + parent: 1 + type: Transform + - uid: 15677 + components: + - pos: 95.5,-8.5 + parent: 1 + type: Transform + - uid: 15796 + components: + - pos: 50.5,25.5 + parent: 1 + type: Transform + - uid: 15798 + components: + - pos: 50.5,24.5 + parent: 1 + type: Transform + - uid: 15814 + components: + - pos: 48.5,25.5 + parent: 1 + type: Transform + - uid: 15818 + components: + - pos: 50.5,23.5 + parent: 1 + type: Transform + - uid: 15863 + components: + - pos: -28.5,47.5 + parent: 1 + type: Transform + - uid: 15865 + components: + - pos: -27.5,47.5 + parent: 1 + type: Transform + - uid: 15866 + components: + - pos: -20.5,48.5 + parent: 1 + type: Transform + - uid: 15868 + components: + - pos: -27.5,48.5 + parent: 1 + type: Transform + - uid: 15971 + components: + - pos: 54.5,28.5 + parent: 1 + type: Transform + - uid: 16019 + components: + - pos: 53.5,29.5 + parent: 1 + type: Transform + - uid: 16023 + components: + - pos: 54.5,27.5 + parent: 1 + type: Transform + - uid: 16033 + components: + - pos: -7.5,34.5 + parent: 1 + type: Transform + - uid: 16038 + components: + - pos: -6.5,34.5 + parent: 1 + type: Transform + - uid: 16040 + components: + - pos: -5.5,34.5 + parent: 1 + type: Transform + - uid: 16044 + components: + - pos: -2.5,34.5 + parent: 1 + type: Transform + - uid: 16045 + components: + - pos: -1.5,34.5 + parent: 1 + type: Transform + - uid: 16046 + components: + - pos: -0.5,34.5 + parent: 1 + type: Transform + - uid: 16055 + components: + - pos: 52.5,29.5 + parent: 1 + type: Transform + - uid: 16076 + components: + - pos: 24.5,34.5 + parent: 1 + type: Transform + - uid: 16077 + components: + - pos: 25.5,34.5 + parent: 1 + type: Transform + - uid: 16078 + components: + - pos: 26.5,34.5 + parent: 1 + type: Transform + - uid: 16079 + components: + - pos: 29.5,34.5 + parent: 1 + type: Transform + - uid: 16080 + components: + - pos: 30.5,34.5 + parent: 1 + type: Transform + - uid: 16081 + components: + - pos: 31.5,34.5 + parent: 1 + type: Transform + - uid: 16106 + components: + - pos: 54.5,29.5 + parent: 1 + type: Transform + - uid: 16120 + components: + - pos: 49.5,25.5 + parent: 1 + type: Transform + - uid: 16132 + components: + - pos: 52.5,-31.5 + parent: 1 + type: Transform + - uid: 16145 + components: + - pos: 46.5,-32.5 + parent: 1 + type: Transform + - uid: 16146 + components: + - pos: 51.5,-32.5 + parent: 1 + type: Transform + - uid: 16147 + components: + - pos: 52.5,-32.5 + parent: 1 + type: Transform + - uid: 16169 + components: + - pos: 55.5,-31.5 + parent: 1 + type: Transform + - uid: 16170 + components: + - pos: 55.5,-33.5 + parent: 1 + type: Transform + - uid: 16171 + components: + - pos: 58.5,-33.5 + parent: 1 + type: Transform + - uid: 16172 + components: + - pos: 58.5,-31.5 + parent: 1 + type: Transform + - uid: 16173 + components: + - pos: 62.5,-31.5 + parent: 1 + type: Transform + - uid: 16174 + components: + - pos: 62.5,-33.5 + parent: 1 + type: Transform + - uid: 16175 + components: + - pos: 65.5,-33.5 + parent: 1 + type: Transform + - uid: 16176 + components: + - pos: 65.5,-31.5 + parent: 1 + type: Transform + - uid: 16177 + components: + - pos: 66.5,-31.5 + parent: 1 + type: Transform + - uid: 16178 + components: + - pos: 66.5,-30.5 + parent: 1 + type: Transform + - uid: 16179 + components: + - pos: 66.5,-27.5 + parent: 1 + type: Transform + - uid: 16180 + components: + - pos: 66.5,-26.5 + parent: 1 + type: Transform + - uid: 16183 + components: + - pos: 63.5,-26.5 + parent: 1 + type: Transform + - uid: 16184 + components: + - pos: 62.5,-26.5 + parent: 1 + type: Transform + - uid: 16185 + components: + - pos: 61.5,-26.5 + parent: 1 + type: Transform + - uid: 16186 + components: + - pos: 60.5,-26.5 + parent: 1 + type: Transform + - uid: 16187 + components: + - pos: 59.5,-26.5 + parent: 1 + type: Transform + - uid: 16188 + components: + - pos: 58.5,-26.5 + parent: 1 + type: Transform + - uid: 16189 + components: + - pos: 57.5,-26.5 + parent: 1 + type: Transform + - uid: 16190 + components: + - pos: 56.5,-26.5 + parent: 1 + type: Transform + - uid: 16191 + components: + - pos: 55.5,-26.5 + parent: 1 + type: Transform + - uid: 16192 + components: + - pos: 54.5,-26.5 + parent: 1 + type: Transform + - uid: 16237 + components: + - pos: 54.5,-14.5 + parent: 1 + type: Transform + - uid: 16238 + components: + - pos: 53.5,-14.5 + parent: 1 + type: Transform + - uid: 16239 + components: + - pos: 52.5,-14.5 + parent: 1 + type: Transform + - uid: 16240 + components: + - pos: 51.5,-14.5 + parent: 1 + type: Transform + - uid: 16241 + components: + - pos: 51.5,-15.5 + parent: 1 + type: Transform + - uid: 16242 + components: + - pos: 51.5,-16.5 + parent: 1 + type: Transform + - uid: 16243 + components: + - pos: 51.5,-17.5 + parent: 1 + type: Transform + - uid: 16246 + components: + - pos: 54.5,-17.5 + parent: 1 + type: Transform + - uid: 16247 + components: + - pos: 54.5,-16.5 + parent: 1 + type: Transform + - uid: 16248 + components: + - pos: 54.5,-18.5 + parent: 1 + type: Transform + - uid: 16249 + components: + - pos: 53.5,-18.5 + parent: 1 + type: Transform + - uid: 16250 + components: + - pos: 52.5,-18.5 + parent: 1 + type: Transform + - uid: 16251 + components: + - pos: 51.5,-18.5 + parent: 1 + type: Transform + - uid: 16319 + components: + - pos: 52.5,-10.5 + parent: 1 + type: Transform + - uid: 16320 + components: + - pos: 52.5,-9.5 + parent: 1 + type: Transform + - uid: 16321 + components: + - pos: 52.5,-8.5 + parent: 1 + type: Transform + - uid: 16328 + components: + - pos: 25.5,-27.5 + parent: 1 + type: Transform + - uid: 16329 + components: + - pos: 26.5,-27.5 + parent: 1 + type: Transform + - uid: 16330 + components: + - pos: 27.5,-27.5 + parent: 1 + type: Transform + - uid: 16331 + components: + - pos: 30.5,-27.5 + parent: 1 + type: Transform + - uid: 16332 + components: + - pos: 31.5,-27.5 + parent: 1 + type: Transform + - uid: 16333 + components: + - pos: 32.5,-27.5 + parent: 1 + type: Transform + - uid: 16334 + components: + - pos: 27.5,-26.5 + parent: 1 + type: Transform + - uid: 16335 + components: + - pos: 28.5,-26.5 + parent: 1 + type: Transform + - uid: 16336 + components: + - pos: 29.5,-26.5 + parent: 1 + type: Transform + - uid: 16337 + components: + - pos: 30.5,-26.5 + parent: 1 + type: Transform + - uid: 16402 + components: + - pos: -15.5,-27.5 + parent: 1 + type: Transform + - uid: 16403 + components: + - pos: -14.5,-27.5 + parent: 1 + type: Transform + - uid: 16404 + components: + - pos: -13.5,-27.5 + parent: 1 + type: Transform + - uid: 16405 + components: + - pos: -12.5,-27.5 + parent: 1 + type: Transform + - uid: 16406 + components: + - pos: -12.5,-26.5 + parent: 1 + type: Transform + - uid: 16407 + components: + - pos: -12.5,-25.5 + parent: 1 + type: Transform + - uid: 16408 + components: + - pos: -11.5,-25.5 + parent: 1 + type: Transform + - uid: 16409 + components: + - pos: -10.5,-25.5 + parent: 1 + type: Transform + - uid: 16411 + components: + - pos: -10.5,-23.5 + parent: 1 + type: Transform + - uid: 16412 + components: + - pos: -15.5,-26.5 + parent: 1 + type: Transform + - uid: 16413 + components: + - pos: -15.5,-25.5 + parent: 1 + type: Transform + - uid: 16414 + components: + - pos: -16.5,-25.5 + parent: 1 + type: Transform + - uid: 16415 + components: + - pos: -16.5,-24.5 + parent: 1 + type: Transform + - uid: 16416 + components: + - pos: -16.5,-23.5 + parent: 1 + type: Transform + - uid: 16418 + components: + - pos: 90.5,1.5 + parent: 1 + type: Transform + - uid: 16419 + components: + - pos: 54.5,24.5 + parent: 1 + type: Transform + - uid: 16422 + components: + - pos: 51.5,23.5 + parent: 1 + type: Transform + - uid: 16423 + components: + - pos: 52.5,23.5 + parent: 1 + type: Transform + - uid: 16424 + components: + - pos: 53.5,23.5 + parent: 1 + type: Transform + - uid: 16425 + components: + - pos: 54.5,25.5 + parent: 1 + type: Transform + - uid: 16426 + components: + - pos: 54.5,26.5 + parent: 1 + type: Transform + - uid: 16432 + components: + - pos: 48.5,28.5 + parent: 1 + type: Transform + - uid: 16433 + components: + - pos: 48.5,27.5 + parent: 1 + type: Transform + - uid: 16435 + components: + - pos: 54.5,23.5 + parent: 1 + type: Transform + - uid: 16436 + components: + - pos: 46.5,37.5 + parent: 1 + type: Transform + - uid: 16437 + components: + - pos: 46.5,38.5 + parent: 1 + type: Transform + - uid: 16438 + components: + - pos: 46.5,39.5 + parent: 1 + type: Transform + - uid: 16439 + components: + - pos: 46.5,40.5 + parent: 1 + type: Transform + - uid: 16440 + components: + - pos: 46.5,41.5 + parent: 1 + type: Transform + - uid: 16441 + components: + - pos: 46.5,42.5 + parent: 1 + type: Transform + - uid: 16446 + components: + - pos: 60.5,34.5 + parent: 1 + type: Transform + - uid: 16447 + components: + - pos: 56.5,42.5 + parent: 1 + type: Transform + - uid: 16448 + components: + - pos: 55.5,42.5 + parent: 1 + type: Transform + - uid: 16449 + components: + - pos: 54.5,42.5 + parent: 1 + type: Transform + - uid: 16450 + components: + - pos: 53.5,42.5 + parent: 1 + type: Transform + - uid: 16451 + components: + - pos: 52.5,42.5 + parent: 1 + type: Transform + - uid: 16452 + components: + - pos: 51.5,42.5 + parent: 1 + type: Transform + - uid: 16453 + components: + - pos: 50.5,42.5 + parent: 1 + type: Transform + - uid: 16454 + components: + - pos: 49.5,42.5 + parent: 1 + type: Transform + - uid: 16455 + components: + - pos: 48.5,42.5 + parent: 1 + type: Transform + - uid: 16456 + components: + - pos: 47.5,42.5 + parent: 1 + type: Transform + - uid: 16457 + components: + - pos: 55.5,36.5 + parent: 1 + type: Transform + - uid: 16458 + components: + - pos: 56.5,36.5 + parent: 1 + type: Transform + - uid: 16460 + components: + - pos: 56.5,35.5 + parent: 1 + type: Transform + - uid: 16461 + components: + - pos: 56.5,34.5 + parent: 1 + type: Transform + - uid: 16472 + components: + - pos: 58.5,1.5 + parent: 1 + type: Transform + - uid: 16473 + components: + - pos: 58.5,0.5 + parent: 1 + type: Transform + - uid: 16474 + components: + - pos: 56.5,44.5 + parent: 1 + type: Transform + - uid: 16475 + components: + - pos: 56.5,43.5 + parent: 1 + type: Transform + - uid: 16476 + components: + - pos: 60.5,39.5 + parent: 1 + type: Transform + - uid: 16477 + components: + - pos: 58.5,-0.5 + parent: 1 + type: Transform + - uid: 16478 + components: + - pos: 51.5,8.5 + parent: 1 + type: Transform + - uid: 16479 + components: + - pos: 51.5,7.5 + parent: 1 + type: Transform + - uid: 16480 + components: + - pos: 51.5,6.5 + parent: 1 + type: Transform + - uid: 16481 + components: + - pos: 60.5,44.5 + parent: 1 + type: Transform + - uid: 16608 + components: + - pos: -30.5,13.5 + parent: 1 + type: Transform + - uid: 16650 + components: + - pos: -31.5,18.5 + parent: 1 + type: Transform + - uid: 16651 + components: + - pos: -32.5,18.5 + parent: 1 + type: Transform + - uid: 16654 + components: + - pos: -34.5,17.5 + parent: 1 + type: Transform + - uid: 16655 + components: + - pos: -34.5,16.5 + parent: 1 + type: Transform + - uid: 16656 + components: + - pos: -34.5,15.5 + parent: 1 + type: Transform + - uid: 16657 + components: + - pos: -34.5,14.5 + parent: 1 + type: Transform + - uid: 16658 + components: + - pos: -33.5,14.5 + parent: 1 + type: Transform + - uid: 16659 + components: + - pos: -32.5,14.5 + parent: 1 + type: Transform + - uid: 16665 + components: + - pos: -33.5,18.5 + parent: 1 + type: Transform + - uid: 16666 + components: + - pos: -34.5,18.5 + parent: 1 + type: Transform + - uid: 16669 + components: + - pos: -31.5,19.5 + parent: 1 + type: Transform + - uid: 16670 + components: + - pos: -31.5,20.5 + parent: 1 + type: Transform + - uid: 16760 + components: + - pos: -77.5,1.5 + parent: 1 + type: Transform + - uid: 16889 + components: + - pos: -76.5,11.5 + parent: 1 + type: Transform + - uid: 16904 + components: + - pos: -75.5,11.5 + parent: 1 + type: Transform + - uid: 17134 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 17251 + components: + - pos: -29.5,13.5 + parent: 1 + type: Transform + - uid: 17252 + components: + - pos: -31.5,14.5 + parent: 1 + type: Transform + - uid: 17253 + components: + - pos: -30.5,14.5 + parent: 1 + type: Transform + - uid: 17387 + components: + - pos: -63.5,-13.5 + parent: 1 + type: Transform + - uid: 17388 + components: + - pos: -63.5,-14.5 + parent: 1 + type: Transform + - uid: 17389 + components: + - pos: -63.5,-15.5 + parent: 1 + type: Transform + - uid: 17390 + components: + - pos: -63.5,-16.5 + parent: 1 + type: Transform + - uid: 17391 + components: + - pos: -63.5,-17.5 + parent: 1 + type: Transform + - uid: 17392 + components: + - pos: -63.5,-18.5 + parent: 1 + type: Transform + - uid: 17393 + components: + - pos: -63.5,-19.5 + parent: 1 + type: Transform + - uid: 17411 + components: + - pos: 51.5,1.5 + parent: 1 + type: Transform + - uid: 19579 + components: + - pos: 72.5,-5.5 + parent: 1 + type: Transform + - uid: 20608 + components: + - pos: 98.5,11.5 + parent: 1 + type: Transform + - uid: 20791 + components: + - pos: -54.5,-23.5 + parent: 1 + type: Transform + - uid: 20953 + components: + - pos: -36.5,-35.5 + parent: 1 + type: Transform + - uid: 21864 + components: + - pos: 97.5,11.5 + parent: 1 + type: Transform + - uid: 22346 + components: + - pos: 1.5,-10.5 + parent: 1 + type: Transform + - uid: 22464 + components: + - pos: 55.5,14.5 + parent: 1 + type: Transform + - uid: 22525 + components: + - pos: -11.5,-47.5 + parent: 1 + type: Transform + - uid: 22617 + components: + - pos: 59.5,-21.5 + parent: 1 + type: Transform + - uid: 22618 + components: + - pos: 57.5,-3.5 + parent: 1 + type: Transform + - uid: 22676 + components: + - pos: 54.5,14.5 + parent: 1 + type: Transform + - uid: 22718 + components: + - pos: -17.5,53.5 + parent: 1 + type: Transform + - uid: 22725 + components: + - pos: -18.5,53.5 + parent: 1 + type: Transform + - uid: 22766 + components: + - pos: -20.5,28.5 + parent: 1 + type: Transform + - uid: 22767 + components: + - pos: -19.5,28.5 + parent: 1 + type: Transform + - uid: 22768 + components: + - pos: -18.5,28.5 + parent: 1 + type: Transform + - uid: 22820 + components: + - pos: -65.5,16.5 + parent: 1 + type: Transform + - uid: 22821 + components: + - pos: -64.5,16.5 + parent: 1 + type: Transform + - uid: 22822 + components: + - pos: -63.5,16.5 + parent: 1 + type: Transform + - uid: 22823 + components: + - pos: -62.5,16.5 + parent: 1 + type: Transform + - uid: 22834 + components: + - pos: -64.5,-7.5 + parent: 1 + type: Transform + - uid: 22835 + components: + - pos: -63.5,-7.5 + parent: 1 + type: Transform + - uid: 22836 + components: + - pos: -62.5,-7.5 + parent: 1 + type: Transform + - uid: 22838 + components: + - pos: -65.5,-5.5 + parent: 1 + type: Transform + - uid: 22876 + components: + - pos: -32.5,-33.5 + parent: 1 + type: Transform + - uid: 22911 + components: + - pos: -16.5,-44.5 + parent: 1 + type: Transform + - uid: 22912 + components: + - pos: -10.5,-48.5 + parent: 1 + type: Transform + - uid: 22913 + components: + - pos: -16.5,-47.5 + parent: 1 + type: Transform + - uid: 22914 + components: + - pos: -15.5,-47.5 + parent: 1 + type: Transform + - uid: 22915 + components: + - pos: -14.5,-47.5 + parent: 1 + type: Transform + - uid: 22916 + components: + - pos: -13.5,-47.5 + parent: 1 + type: Transform + - uid: 22925 + components: + - pos: 72.5,-6.5 + parent: 1 + type: Transform + - uid: 23427 + components: + - pos: 25.5,30.5 + parent: 1 + type: Transform + - uid: 23430 + components: + - pos: 27.5,31.5 + parent: 1 + type: Transform + - uid: 23431 + components: + - pos: 28.5,31.5 + parent: 1 + type: Transform + - uid: 23432 + components: + - pos: 29.5,31.5 + parent: 1 + type: Transform + - uid: 23433 + components: + - pos: 30.5,31.5 + parent: 1 + type: Transform + - uid: 23434 + components: + - pos: 31.5,30.5 + parent: 1 + type: Transform + - uid: 23435 + components: + - pos: 26.5,30.5 + parent: 1 + type: Transform + - uid: 23436 + components: + - pos: 32.5,30.5 + parent: 1 + type: Transform + - uid: 23437 + components: + - pos: 27.5,30.5 + parent: 1 + type: Transform + - uid: 23438 + components: + - pos: 30.5,30.5 + parent: 1 + type: Transform + - uid: 23446 + components: + - pos: -4.5,30.5 + parent: 1 + type: Transform + - uid: 23447 + components: + - pos: -4.5,31.5 + parent: 1 + type: Transform + - uid: 23450 + components: + - pos: -1.5,31.5 + parent: 1 + type: Transform + - uid: 23451 + components: + - pos: -1.5,30.5 + parent: 1 + type: Transform + - uid: 23452 + components: + - pos: -7.5,30.5 + parent: 1 + type: Transform + - uid: 23453 + components: + - pos: -8.5,30.5 + parent: 1 + type: Transform + - uid: 23454 + components: + - pos: -9.5,30.5 + parent: 1 + type: Transform + - uid: 23455 + components: + - pos: -9.5,31.5 + parent: 1 + type: Transform + - uid: 23456 + components: + - pos: -10.5,31.5 + parent: 1 + type: Transform + - uid: 23457 + components: + - pos: -11.5,31.5 + parent: 1 + type: Transform + - uid: 23458 + components: + - pos: -12.5,31.5 + parent: 1 + type: Transform + - uid: 23459 + components: + - pos: -12.5,30.5 + parent: 1 + type: Transform + - uid: 23460 + components: + - pos: -13.5,30.5 + parent: 1 + type: Transform + - uid: 23461 + components: + - pos: -14.5,30.5 + parent: 1 + type: Transform + - uid: 24372 + components: + - pos: -100.5,-7.5 + parent: 1 + type: Transform + - uid: 24373 + components: + - pos: -100.5,-3.5 + parent: 1 + type: Transform + - uid: 24374 + components: + - pos: -100.5,0.5 + parent: 1 + type: Transform + - uid: 24375 + components: + - pos: -96.5,20.5 + parent: 1 + type: Transform + - uid: 24376 + components: + - pos: -100.5,4.5 + parent: 1 + type: Transform + - uid: 24377 + components: + - pos: -100.5,8.5 + parent: 1 + type: Transform + - uid: 24378 + components: + - pos: -100.5,12.5 + parent: 1 + type: Transform + - uid: 24379 + components: + - pos: -100.5,16.5 + parent: 1 + type: Transform + - uid: 24380 + components: + - pos: -92.5,20.5 + parent: 1 + type: Transform + - uid: 24381 + components: + - pos: -88.5,20.5 + parent: 1 + type: Transform + - uid: 24382 + components: + - pos: -80.5,20.5 + parent: 1 + type: Transform + - uid: 24383 + components: + - pos: -84.5,20.5 + parent: 1 + type: Transform + - uid: 24384 + components: + - pos: -96.5,-11.5 + parent: 1 + type: Transform + - uid: 24385 + components: + - pos: -92.5,-11.5 + parent: 1 + type: Transform + - uid: 24386 + components: + - pos: -88.5,-11.5 + parent: 1 + type: Transform + - uid: 24387 + components: + - pos: -84.5,-11.5 + parent: 1 + type: Transform + - uid: 24388 + components: + - pos: -80.5,-11.5 + parent: 1 + type: Transform + - uid: 24756 + components: + - pos: 84.5,-24.5 + parent: 1 + type: Transform + - uid: 24784 + components: + - pos: 85.5,-24.5 + parent: 1 + type: Transform + - uid: 24785 + components: + - pos: 88.5,-24.5 + parent: 1 + type: Transform + - uid: 24790 + components: + - pos: 84.5,-28.5 + parent: 1 + type: Transform + - uid: 24791 + components: + - pos: 89.5,-24.5 + parent: 1 + type: Transform + - uid: 24792 + components: + - pos: 89.5,-28.5 + parent: 1 + type: Transform + - uid: 25177 + components: + - pos: 78.5,7.5 + parent: 1 + type: Transform + - uid: 25178 + components: + - pos: 78.5,8.5 + parent: 1 + type: Transform + - uid: 25469 + components: + - pos: -46.5,-34.5 + parent: 1 + type: Transform + - uid: 25580 + components: + - pos: -49.5,-34.5 + parent: 1 + type: Transform + - uid: 25593 + components: + - pos: -44.5,-43.5 + parent: 1 + type: Transform + - uid: 25594 + components: + - pos: -41.5,-43.5 + parent: 1 + type: Transform + - uid: 25597 + components: + - pos: -41.5,-40.5 + parent: 1 + type: Transform + - uid: 25602 + components: + - pos: -41.5,-35.5 + parent: 1 + type: Transform + - uid: 25603 + components: + - pos: -40.5,-35.5 + parent: 1 + type: Transform + - uid: 25816 + components: + - pos: -18.5,35.5 + parent: 1 + type: Transform +- proto: WallSolid + entities: + - uid: 2 + components: + - pos: 1.5,-18.5 + parent: 1 + type: Transform + - uid: 3 + components: + - pos: -0.5,-19.5 + parent: 1 + type: Transform + - uid: 9 + components: + - pos: -3.5,-14.5 + parent: 1 + type: Transform + - uid: 10 + components: + - pos: -0.5,-18.5 + parent: 1 + type: Transform + - uid: 14 + components: + - pos: 0.5,-18.5 + parent: 1 + type: Transform + - uid: 15 + components: + - pos: -4.5,-17.5 + parent: 1 + type: Transform + - uid: 17 + components: + - pos: -0.5,-17.5 + parent: 1 + type: Transform + - uid: 24 + components: + - pos: -5.5,-17.5 + parent: 1 + type: Transform + - uid: 37 + components: + - pos: 88.5,14.5 + parent: 1 + type: Transform + - uid: 38 + components: + - pos: 88.5,13.5 + parent: 1 + type: Transform + - uid: 58 + components: + - pos: -7.5,16.5 + parent: 1 + type: Transform + - uid: 64 + components: + - pos: -6.5,16.5 + parent: 1 + type: Transform + - uid: 108 + components: + - pos: -61.5,11.5 + parent: 1 + type: Transform + - uid: 109 + components: + - pos: -62.5,11.5 + parent: 1 + type: Transform + - uid: 185 + components: + - pos: -28.5,-16.5 + parent: 1 + type: Transform + - uid: 186 + components: + - pos: -27.5,-14.5 + parent: 1 + type: Transform + - uid: 187 + components: + - pos: -22.5,-15.5 + parent: 1 + type: Transform + - uid: 490 + components: + - pos: 7.5,46.5 + parent: 1 + type: Transform + - uid: 542 + components: + - pos: -5.5,11.5 + parent: 1 + type: Transform + - uid: 545 + components: + - pos: -10.5,18.5 + parent: 1 + type: Transform + - uid: 548 + components: + - pos: -13.5,-43.5 + parent: 1 + type: Transform + - uid: 612 + components: + - pos: -28.5,-15.5 + parent: 1 + type: Transform + - uid: 613 + components: + - pos: -21.5,-15.5 + parent: 1 + type: Transform + - uid: 614 + components: + - pos: -26.5,-13.5 + parent: 1 + type: Transform + - uid: 701 + components: + - pos: -28.5,6.5 + parent: 1 + type: Transform + - uid: 702 + components: + - pos: -28.5,7.5 + parent: 1 + type: Transform + - uid: 709 + components: + - pos: 43.5,24.5 + parent: 1 + type: Transform + - uid: 710 + components: + - pos: 41.5,24.5 + parent: 1 + type: Transform + - uid: 711 + components: + - pos: -6.5,25.5 + parent: 1 + type: Transform + - uid: 719 + components: + - pos: -18.5,-16.5 + parent: 1 + type: Transform + - uid: 720 + components: + - pos: -17.5,-17.5 + parent: 1 + type: Transform + - uid: 721 + components: + - pos: -16.5,-18.5 + parent: 1 + type: Transform + - uid: 750 + components: + - pos: -21.5,-16.5 + parent: 1 + type: Transform + - uid: 751 + components: + - pos: -24.5,-13.5 + parent: 1 + type: Transform + - uid: 774 + components: + - pos: -28.5,1.5 + parent: 1 + type: Transform + - uid: 775 + components: + - pos: -28.5,0.5 + parent: 1 + type: Transform + - uid: 782 + components: + - pos: 91.5,11.5 + parent: 1 + type: Transform + - uid: 792 + components: + - pos: 107.5,-0.5 + parent: 1 + type: Transform + - uid: 797 + components: + - pos: -5.5,-31.5 + parent: 1 + type: Transform + - uid: 798 + components: + - pos: -12.5,-40.5 + parent: 1 + type: Transform + - uid: 799 + components: + - pos: -13.5,-40.5 + parent: 1 + type: Transform + - uid: 800 + components: + - pos: -13.5,-39.5 + parent: 1 + type: Transform + - uid: 802 + components: + - pos: -13.5,-37.5 + parent: 1 + type: Transform + - uid: 804 + components: + - pos: 31.5,-48.5 + parent: 1 + type: Transform + - uid: 805 + components: + - pos: 31.5,-46.5 + parent: 1 + type: Transform + - uid: 806 + components: + - pos: 9.5,-45.5 + parent: 1 + type: Transform + - uid: 807 + components: + - pos: 8.5,-45.5 + parent: 1 + type: Transform + - uid: 809 + components: + - pos: 2.5,-45.5 + parent: 1 + type: Transform + - uid: 810 + components: + - pos: 1.5,-45.5 + parent: 1 + type: Transform + - uid: 811 + components: + - pos: 0.5,-45.5 + parent: 1 + type: Transform + - uid: 812 + components: + - pos: -0.5,-45.5 + parent: 1 + type: Transform + - uid: 813 + components: + - pos: -1.5,-45.5 + parent: 1 + type: Transform + - uid: 814 + components: + - pos: -2.5,-45.5 + parent: 1 + type: Transform + - uid: 823 + components: + - pos: -6.5,24.5 + parent: 1 + type: Transform + - uid: 824 + components: + - pos: 29.5,-39.5 + parent: 1 + type: Transform + - uid: 825 + components: + - pos: -3.5,-31.5 + parent: 1 + type: Transform + - uid: 827 + components: + - pos: 29.5,-41.5 + parent: 1 + type: Transform + - uid: 828 + components: + - pos: 29.5,-40.5 + parent: 1 + type: Transform + - uid: 829 + components: + - pos: 29.5,-37.5 + parent: 1 + type: Transform + - uid: 830 + components: + - pos: 30.5,-37.5 + parent: 1 + type: Transform + - uid: 831 + components: + - pos: 5.5,-37.5 + parent: 1 + type: Transform + - uid: 832 + components: + - pos: 29.5,-38.5 + parent: 1 + type: Transform + - uid: 833 + components: + - pos: 32.5,-37.5 + parent: 1 + type: Transform + - uid: 838 + components: + - pos: 5.5,-30.5 + parent: 1 + type: Transform + - uid: 840 + components: + - pos: 0.5,-31.5 + parent: 1 + type: Transform + - uid: 841 + components: + - pos: 1.5,-31.5 + parent: 1 + type: Transform + - uid: 842 + components: + - pos: 2.5,-31.5 + parent: 1 + type: Transform + - uid: 843 + components: + - pos: 3.5,-31.5 + parent: 1 + type: Transform + - uid: 844 + components: + - pos: 4.5,-31.5 + parent: 1 + type: Transform + - uid: 846 + components: + - pos: 18.5,-30.5 + parent: 1 + type: Transform + - uid: 854 + components: + - pos: -2.5,-31.5 + parent: 1 + type: Transform + - uid: 855 + components: + - pos: -1.5,-31.5 + parent: 1 + type: Transform + - uid: 862 + components: + - pos: -5.5,22.5 + parent: 1 + type: Transform + - uid: 863 + components: + - pos: -3.5,22.5 + parent: 1 + type: Transform + - uid: 878 + components: + - pos: 21.5,-41.5 + parent: 1 + type: Transform + - uid: 879 + components: + - pos: 15.5,-41.5 + parent: 1 + type: Transform + - uid: 882 + components: + - pos: 5.5,-36.5 + parent: 1 + type: Transform + - uid: 883 + components: + - pos: 5.5,-35.5 + parent: 1 + type: Transform + - uid: 897 + components: + - pos: 2.5,19.5 + parent: 1 + type: Transform + - uid: 900 + components: + - pos: 9.5,23.5 + parent: 1 + type: Transform + - uid: 931 + components: + - pos: -11.5,-40.5 + parent: 1 + type: Transform + - uid: 934 + components: + - pos: -6.5,-31.5 + parent: 1 + type: Transform + - uid: 969 + components: + - pos: 22.5,-35.5 + parent: 1 + type: Transform + - uid: 973 + components: + - pos: -0.5,26.5 + parent: 1 + type: Transform + - uid: 982 + components: + - pos: -6.5,23.5 + parent: 1 + type: Transform + - uid: 987 + components: + - pos: -1.5,26.5 + parent: 1 + type: Transform + - uid: 988 + components: + - pos: -1.5,24.5 + parent: 1 + type: Transform + - uid: 989 + components: + - pos: 0.5,25.5 + parent: 1 + type: Transform + - uid: 991 + components: + - pos: 0.5,24.5 + parent: 1 + type: Transform + - uid: 994 + components: + - pos: 31.5,-37.5 + parent: 1 + type: Transform + - uid: 996 + components: + - pos: -2.5,19.5 + parent: 1 + type: Transform + - uid: 997 + components: + - pos: -2.5,20.5 + parent: 1 + type: Transform + - uid: 998 + components: + - pos: -1.5,22.5 + parent: 1 + type: Transform + - uid: 999 + components: + - pos: -8.5,22.5 + parent: 1 + type: Transform + - uid: 1000 + components: + - pos: -1.5,25.5 + parent: 1 + type: Transform + - uid: 1001 + components: + - pos: 4.5,24.5 + parent: 1 + type: Transform + - uid: 1002 + components: + - pos: 4.5,23.5 + parent: 1 + type: Transform + - uid: 1009 + components: + - pos: -2.5,22.5 + parent: 1 + type: Transform + - uid: 1013 + components: + - pos: 4.5,25.5 + parent: 1 + type: Transform + - uid: 1014 + components: + - pos: 3.5,26.5 + parent: 1 + type: Transform + - uid: 1028 + components: + - pos: -2.5,21.5 + parent: 1 + type: Transform + - uid: 1043 + components: + - pos: 2.5,21.5 + parent: 1 + type: Transform + - uid: 1048 + components: + - pos: -2.5,18.5 + parent: 1 + type: Transform + - uid: 1049 + components: + - pos: -1.5,18.5 + parent: 1 + type: Transform + - uid: 1054 + components: + - pos: -8.5,21.5 + parent: 1 + type: Transform + - uid: 1056 + components: + - pos: -6.5,22.5 + parent: 1 + type: Transform + - uid: 1091 + components: + - pos: -2.5,44.5 + parent: 1 + type: Transform + - uid: 1092 + components: + - pos: 21.5,-42.5 + parent: 1 + type: Transform + - uid: 1093 + components: + - pos: 22.5,-42.5 + parent: 1 + type: Transform + - uid: 1094 + components: + - pos: 23.5,-42.5 + parent: 1 + type: Transform + - uid: 1095 + components: + - pos: 24.5,-42.5 + parent: 1 + type: Transform + - uid: 1096 + components: + - pos: 25.5,-42.5 + parent: 1 + type: Transform + - uid: 1097 + components: + - pos: 26.5,-42.5 + parent: 1 + type: Transform + - uid: 1098 + components: + - pos: 27.5,-42.5 + parent: 1 + type: Transform + - uid: 1099 + components: + - pos: 28.5,-42.5 + parent: 1 + type: Transform + - uid: 1100 + components: + - pos: 29.5,-42.5 + parent: 1 + type: Transform + - uid: 1126 + components: + - pos: 17.5,-45.5 + parent: 1 + type: Transform + - uid: 1127 + components: + - pos: 15.5,-42.5 + parent: 1 + type: Transform + - uid: 1129 + components: + - pos: 21.5,-45.5 + parent: 1 + type: Transform + - uid: 1130 + components: + - pos: 18.5,-45.5 + parent: 1 + type: Transform + - uid: 1132 + components: + - pos: 14.5,-42.5 + parent: 1 + type: Transform + - uid: 1143 + components: + - pos: 20.5,-45.5 + parent: 1 + type: Transform + - uid: 1215 + components: + - pos: 30.5,-45.5 + parent: 1 + type: Transform + - uid: 1216 + components: + - pos: 31.5,-45.5 + parent: 1 + type: Transform + - uid: 1217 + components: + - pos: 32.5,-45.5 + parent: 1 + type: Transform + - uid: 1221 + components: + - pos: 34.5,-43.5 + parent: 1 + type: Transform + - uid: 1222 + components: + - pos: 34.5,-42.5 + parent: 1 + type: Transform + - uid: 1223 + components: + - pos: 34.5,-41.5 + parent: 1 + type: Transform + - uid: 1224 + components: + - pos: 34.5,-39.5 + parent: 1 + type: Transform + - uid: 1225 + components: + - pos: 34.5,-39.5 + parent: 1 + type: Transform + - uid: 1226 + components: + - pos: 34.5,-38.5 + parent: 1 + type: Transform + - uid: 1227 + components: + - pos: 33.5,-35.5 + parent: 1 + type: Transform + - uid: 1228 + components: + - pos: 33.5,-37.5 + parent: 1 + type: Transform + - uid: 1238 + components: + - pos: 33.5,-36.5 + parent: 1 + type: Transform + - uid: 1239 + components: + - pos: 33.5,-34.5 + parent: 1 + type: Transform + - uid: 1240 + components: + - pos: 33.5,-33.5 + parent: 1 + type: Transform + - uid: 1241 + components: + - pos: 33.5,-32.5 + parent: 1 + type: Transform + - uid: 1242 + components: + - pos: 33.5,-31.5 + parent: 1 + type: Transform + - uid: 1243 + components: + - pos: 32.5,-31.5 + parent: 1 + type: Transform + - uid: 1244 + components: + - pos: 31.5,-31.5 + parent: 1 + type: Transform + - uid: 1245 + components: + - pos: 30.5,-31.5 + parent: 1 + type: Transform + - uid: 1246 + components: + - pos: 29.5,-31.5 + parent: 1 + type: Transform + - uid: 1247 + components: + - pos: 28.5,-31.5 + parent: 1 + type: Transform + - uid: 1248 + components: + - pos: 37.5,-40.5 + parent: 1 + type: Transform + - uid: 1249 + components: + - pos: 37.5,-39.5 + parent: 1 + type: Transform + - uid: 1251 + components: + - pos: 37.5,-37.5 + parent: 1 + type: Transform + - uid: 1252 + components: + - pos: 37.5,-36.5 + parent: 1 + type: Transform + - uid: 1266 + components: + - pos: 36.5,-42.5 + parent: 1 + type: Transform + - uid: 1311 + components: + - pos: -28.5,-14.5 + parent: 1 + type: Transform + - uid: 1312 + components: + - pos: -23.5,-14.5 + parent: 1 + type: Transform + - uid: 1313 + components: + - pos: -27.5,-13.5 + parent: 1 + type: Transform + - uid: 1316 + components: + - pos: -14.5,-43.5 + parent: 1 + type: Transform + - uid: 1435 + components: + - pos: 27.5,-31.5 + parent: 1 + type: Transform + - uid: 1436 + components: + - pos: 26.5,-31.5 + parent: 1 + type: Transform + - uid: 1438 + components: + - pos: 24.5,-31.5 + parent: 1 + type: Transform + - uid: 1439 + components: + - pos: 23.5,-31.5 + parent: 1 + type: Transform + - uid: 1440 + components: + - pos: 22.5,-31.5 + parent: 1 + type: Transform + - uid: 1441 + components: + - pos: 21.5,-31.5 + parent: 1 + type: Transform + - uid: 1442 + components: + - pos: 20.5,-31.5 + parent: 1 + type: Transform + - uid: 1443 + components: + - pos: 19.5,-31.5 + parent: 1 + type: Transform + - uid: 1488 + components: + - pos: 22.5,-36.5 + parent: 1 + type: Transform + - uid: 1494 + components: + - pos: 21.5,-36.5 + parent: 1 + type: Transform + - uid: 1499 + components: + - pos: 18.5,-28.5 + parent: 1 + type: Transform + - uid: 1500 + components: + - pos: 5.5,-28.5 + parent: 1 + type: Transform + - uid: 1503 + components: + - pos: 18.5,-35.5 + parent: 1 + type: Transform + - uid: 1519 + components: + - pos: 18.5,-36.5 + parent: 1 + type: Transform + - uid: 1520 + components: + - pos: 4.5,-34.5 + parent: 1 + type: Transform + - uid: 1521 + components: + - pos: 19.5,-40.5 + parent: 1 + type: Transform + - uid: 1522 + components: + - pos: 22.5,-32.5 + parent: 1 + type: Transform + - uid: 1524 + components: + - pos: 22.5,-33.5 + parent: 1 + type: Transform + - uid: 1526 + components: + - pos: 19.5,-36.5 + parent: 1 + type: Transform + - uid: 1529 + components: + - pos: 29.5,-45.5 + parent: 1 + type: Transform + - uid: 1530 + components: + - pos: 29.5,-44.5 + parent: 1 + type: Transform + - uid: 1531 + components: + - pos: 29.5,-43.5 + parent: 1 + type: Transform + - uid: 1546 + components: + - pos: 15.5,-40.5 + parent: 1 + type: Transform + - uid: 1547 + components: + - pos: 20.5,-40.5 + parent: 1 + type: Transform + - uid: 1552 + components: + - pos: 22.5,-34.5 + parent: 1 + type: Transform + - uid: 1559 + components: + - pos: 14.5,-45.5 + parent: 1 + type: Transform + - uid: 1569 + components: + - pos: 6.5,-22.5 + parent: 1 + type: Transform + - uid: 1570 + components: + - pos: 7.5,-22.5 + parent: 1 + type: Transform + - uid: 1571 + components: + - pos: 8.5,-22.5 + parent: 1 + type: Transform + - uid: 1572 + components: + - pos: 9.5,-22.5 + parent: 1 + type: Transform + - uid: 1573 + components: + - pos: 14.5,-22.5 + parent: 1 + type: Transform + - uid: 1574 + components: + - pos: 15.5,-22.5 + parent: 1 + type: Transform + - uid: 1575 + components: + - pos: 16.5,-22.5 + parent: 1 + type: Transform + - uid: 1576 + components: + - pos: 17.5,-22.5 + parent: 1 + type: Transform + - uid: 1624 + components: + - pos: 9.5,-9.5 + parent: 1 + type: Transform + - uid: 1625 + components: + - pos: 9.5,-10.5 + parent: 1 + type: Transform + - uid: 1626 + components: + - pos: 8.5,-10.5 + parent: 1 + type: Transform + - uid: 1627 + components: + - pos: 7.5,-10.5 + parent: 1 + type: Transform + - uid: 1629 + components: + - pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 1630 + components: + - pos: 9.5,-1.5 + parent: 1 + type: Transform + - uid: 1698 + components: + - pos: -4.5,-14.5 + parent: 1 + type: Transform + - uid: 1700 + components: + - pos: 3.5,-18.5 + parent: 1 + type: Transform + - uid: 1701 + components: + - pos: 4.5,-18.5 + parent: 1 + type: Transform + - uid: 1702 + components: + - pos: 4.5,-17.5 + parent: 1 + type: Transform + - uid: 1703 + components: + - pos: 5.5,-17.5 + parent: 1 + type: Transform + - uid: 1704 + components: + - pos: 5.5,-16.5 + parent: 1 + type: Transform + - uid: 1705 + components: + - pos: 6.5,-16.5 + parent: 1 + type: Transform + - uid: 1706 + components: + - pos: 7.5,-16.5 + parent: 1 + type: Transform + - uid: 1707 + components: + - pos: 8.5,-16.5 + parent: 1 + type: Transform + - uid: 1708 + components: + - pos: 9.5,-16.5 + parent: 1 + type: Transform + - uid: 1709 + components: + - pos: 9.5,-17.5 + parent: 1 + type: Transform + - uid: 1710 + components: + - pos: 9.5,-18.5 + parent: 1 + type: Transform + - uid: 1711 + components: + - pos: 9.5,-19.5 + parent: 1 + type: Transform + - uid: 1712 + components: + - pos: 9.5,-21.5 + parent: 1 + type: Transform + - uid: 1715 + components: + - pos: 14.5,-21.5 + parent: 1 + type: Transform + - uid: 1724 + components: + - pos: -3.5,-15.5 + parent: 1 + type: Transform + - uid: 1726 + components: + - pos: -6.5,-19.5 + parent: 1 + type: Transform + - uid: 1728 + components: + - pos: -6.5,-17.5 + parent: 1 + type: Transform + - uid: 1729 + components: + - pos: -6.5,-16.5 + parent: 1 + type: Transform + - uid: 1730 + components: + - pos: -6.5,-15.5 + parent: 1 + type: Transform + - uid: 1731 + components: + - pos: -6.5,-14.5 + parent: 1 + type: Transform + - uid: 1732 + components: + - pos: -6.5,-13.5 + parent: 1 + type: Transform + - uid: 1733 + components: + - pos: -7.5,-13.5 + parent: 1 + type: Transform + - uid: 1735 + components: + - pos: -9.5,-13.5 + parent: 1 + type: Transform + - uid: 1749 + components: + - pos: -9.5,-19.5 + parent: 1 + type: Transform + - uid: 1750 + components: + - pos: -8.5,-19.5 + parent: 1 + type: Transform + - uid: 1751 + components: + - pos: -7.5,-19.5 + parent: 1 + type: Transform + - uid: 1758 + components: + - pos: -16.5,-10.5 + parent: 1 + type: Transform + - uid: 1760 + components: + - pos: 33.5,-45.5 + parent: 1 + type: Transform + - uid: 1761 + components: + - pos: 18.5,-40.5 + parent: 1 + type: Transform + - uid: 1762 + components: + - pos: 34.5,-44.5 + parent: 1 + type: Transform + - uid: 1764 + components: + - pos: 35.5,-42.5 + parent: 1 + type: Transform + - uid: 1768 + components: + - pos: -15.5,-10.5 + parent: 1 + type: Transform + - uid: 1769 + components: + - pos: -17.5,-10.5 + parent: 1 + type: Transform + - uid: 1775 + components: + - pos: 45.5,-14.5 + parent: 1 + type: Transform + - uid: 1794 + components: + - pos: 42.5,24.5 + parent: 1 + type: Transform + - uid: 1797 + components: + - pos: -23.5,-13.5 + parent: 1 + type: Transform + - uid: 1799 + components: + - pos: -22.5,-14.5 + parent: 1 + type: Transform + - uid: 1812 + components: + - pos: -27.5,1.5 + parent: 1 + type: Transform + - uid: 1819 + components: + - pos: -16.5,-17.5 + parent: 1 + type: Transform + - uid: 1820 + components: + - pos: -19.5,9.5 + parent: 1 + type: Transform + - uid: 1822 + components: + - pos: -25.5,6.5 + parent: 1 + type: Transform + - uid: 1825 + components: + - pos: -14.5,-11.5 + parent: 1 + type: Transform + - uid: 1826 + components: + - pos: -14.5,-10.5 + parent: 1 + type: Transform + - uid: 1827 + components: + - pos: -13.5,-10.5 + parent: 1 + type: Transform + - uid: 1828 + components: + - pos: -12.5,-10.5 + parent: 1 + type: Transform + - uid: 1830 + components: + - pos: -12.5,-8.5 + parent: 1 + type: Transform + - uid: 1831 + components: + - pos: -12.5,-7.5 + parent: 1 + type: Transform + - uid: 1832 + components: + - pos: -12.5,-6.5 + parent: 1 + type: Transform + - uid: 1833 + components: + - pos: -13.5,-6.5 + parent: 1 + type: Transform + - uid: 1834 + components: + - pos: -14.5,-6.5 + parent: 1 + type: Transform + - uid: 1836 + components: + - pos: -16.5,-6.5 + parent: 1 + type: Transform + - uid: 1837 + components: + - pos: -17.5,-6.5 + parent: 1 + type: Transform + - uid: 1838 + components: + - pos: -18.5,-6.5 + parent: 1 + type: Transform + - uid: 1842 + components: + - pos: -2.5,-17.5 + parent: 1 + type: Transform + - uid: 1848 + components: + - pos: -11.5,-10.5 + parent: 1 + type: Transform + - uid: 1849 + components: + - pos: -10.5,-10.5 + parent: 1 + type: Transform + - uid: 1851 + components: + - pos: -10.5,-11.5 + parent: 1 + type: Transform + - uid: 1856 + components: + - pos: -14.5,-12.5 + parent: 1 + type: Transform + - uid: 1857 + components: + - pos: -14.5,-13.5 + parent: 1 + type: Transform + - uid: 1859 + components: + - pos: -12.5,1.5 + parent: 1 + type: Transform + - uid: 1860 + components: + - pos: -11.5,1.5 + parent: 1 + type: Transform + - uid: 1862 + components: + - pos: -13.5,1.5 + parent: 1 + type: Transform + - uid: 1866 + components: + - pos: -59.5,-21.5 + parent: 1 + type: Transform + - uid: 1869 + components: + - pos: -12.5,-1.5 + parent: 1 + type: Transform + - uid: 1870 + components: + - pos: -11.5,-1.5 + parent: 1 + type: Transform + - uid: 1877 + components: + - pos: -4.5,-1.5 + parent: 1 + type: Transform + - uid: 1880 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 1881 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 1882 + components: + - pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 1884 + components: + - pos: -12.5,-2.5 + parent: 1 + type: Transform + - uid: 1914 + components: + - pos: 9.5,-15.5 + parent: 1 + type: Transform + - uid: 1916 + components: + - pos: 9.5,-14.5 + parent: 1 + type: Transform + - uid: 1917 + components: + - pos: -0.5,-15.5 + parent: 1 + type: Transform + - uid: 1921 + components: + - pos: -0.5,-13.5 + parent: 1 + type: Transform + - uid: 1922 + components: + - pos: -0.5,-11.5 + parent: 1 + type: Transform + - uid: 1923 + components: + - pos: -0.5,-14.5 + parent: 1 + type: Transform + - uid: 1935 + components: + - pos: 0.5,-13.5 + parent: 1 + type: Transform + - uid: 1944 + components: + - pos: 0.5,-15.5 + parent: 1 + type: Transform + - uid: 1945 + components: + - pos: 1.5,-13.5 + parent: 1 + type: Transform + - uid: 1947 + components: + - pos: 1.5,-15.5 + parent: 1 + type: Transform + - uid: 1962 + components: + - pos: -3.5,-17.5 + parent: 1 + type: Transform + - uid: 1980 + components: + - pos: 1.5,-6.5 + parent: 1 + type: Transform + - uid: 1981 + components: + - pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 1983 + components: + - pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 1984 + components: + - pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 1995 + components: + - pos: 31.5,50.5 + parent: 1 + type: Transform + - uid: 2089 + components: + - pos: -18.5,20.5 + parent: 1 + type: Transform + - uid: 2090 + components: + - pos: -19.5,20.5 + parent: 1 + type: Transform + - uid: 2092 + components: + - pos: -18.5,-15.5 + parent: 1 + type: Transform + - uid: 2102 + components: + - pos: -15.5,-18.5 + parent: 1 + type: Transform + - uid: 2103 + components: + - pos: 34.5,-33.5 + parent: 1 + type: Transform + - uid: 2104 + components: + - pos: -18.5,-17.5 + parent: 1 + type: Transform + - uid: 2108 + components: + - pos: -22.5,17.5 + parent: 1 + type: Transform + - uid: 2109 + components: + - pos: -21.5,17.5 + parent: 1 + type: Transform + - uid: 2114 + components: + - pos: 44.5,-14.5 + parent: 1 + type: Transform + - uid: 2116 + components: + - pos: 21.5,-40.5 + parent: 1 + type: Transform + - uid: 2119 + components: + - pos: -10.5,13.5 + parent: 1 + type: Transform + - uid: 2120 + components: + - pos: -9.5,13.5 + parent: 1 + type: Transform + - uid: 2127 + components: + - pos: -39.5,-22.5 + parent: 1 + type: Transform + - uid: 2131 + components: + - pos: -46.5,-22.5 + parent: 1 + type: Transform + - uid: 2154 + components: + - pos: 43.5,23.5 + parent: 1 + type: Transform + - uid: 2155 + components: + - pos: 35.5,51.5 + parent: 1 + type: Transform + - uid: 2160 + components: + - pos: -10.5,-32.5 + parent: 1 + type: Transform + - uid: 2254 + components: + - pos: -14.5,25.5 + parent: 1 + type: Transform + - uid: 2255 + components: + - pos: -13.5,25.5 + parent: 1 + type: Transform + - uid: 2258 + components: + - pos: -10.5,25.5 + parent: 1 + type: Transform + - uid: 2259 + components: + - pos: -10.5,24.5 + parent: 1 + type: Transform + - uid: 2260 + components: + - pos: -10.5,23.5 + parent: 1 + type: Transform + - uid: 2263 + components: + - pos: -10.5,22.5 + parent: 1 + type: Transform + - uid: 2267 + components: + - pos: -10.5,21.5 + parent: 1 + type: Transform + - uid: 2271 + components: + - pos: -9.5,21.5 + parent: 1 + type: Transform + - uid: 2275 + components: + - pos: 39.5,18.5 + parent: 1 + type: Transform + - uid: 2277 + components: + - pos: 9.5,15.5 + parent: 1 + type: Transform + - uid: 2283 + components: + - pos: 19.5,20.5 + parent: 1 + type: Transform + - uid: 2289 + components: + - pos: -2.5,25.5 + parent: 1 + type: Transform + - uid: 2290 + components: + - pos: 32.5,24.5 + parent: 1 + type: Transform + - uid: 2298 + components: + - pos: 5.5,26.5 + parent: 1 + type: Transform + - uid: 2299 + components: + - pos: 6.5,26.5 + parent: 1 + type: Transform + - uid: 2300 + components: + - pos: 7.5,26.5 + parent: 1 + type: Transform + - uid: 2301 + components: + - pos: 8.5,26.5 + parent: 1 + type: Transform + - uid: 2302 + components: + - pos: 9.5,26.5 + parent: 1 + type: Transform + - uid: 2303 + components: + - pos: 9.5,28.5 + parent: 1 + type: Transform + - uid: 2304 + components: + - pos: 9.5,29.5 + parent: 1 + type: Transform + - uid: 2305 + components: + - pos: 9.5,29.5 + parent: 1 + type: Transform + - uid: 2306 + components: + - pos: 8.5,29.5 + parent: 1 + type: Transform + - uid: 2307 + components: + - pos: 7.5,29.5 + parent: 1 + type: Transform + - uid: 2308 + components: + - pos: 6.5,29.5 + parent: 1 + type: Transform + - uid: 2311 + components: + - pos: -14.5,-18.5 + parent: 1 + type: Transform + - uid: 2399 + components: + - pos: -49.5,12.5 + parent: 1 + type: Transform + - uid: 2400 + components: + - pos: -49.5,13.5 + parent: 1 + type: Transform + - uid: 2401 + components: + - pos: -49.5,14.5 + parent: 1 + type: Transform + - uid: 2402 + components: + - pos: -47.5,12.5 + parent: 1 + type: Transform + - uid: 2403 + components: + - pos: -46.5,12.5 + parent: 1 + type: Transform + - uid: 2408 + components: + - pos: -44.5,14.5 + parent: 1 + type: Transform + - uid: 2409 + components: + - pos: -44.5,13.5 + parent: 1 + type: Transform + - uid: 2410 + components: + - pos: -44.5,12.5 + parent: 1 + type: Transform + - uid: 2419 + components: + - pos: -35.5,8.5 + parent: 1 + type: Transform + - uid: 2421 + components: + - pos: -41.5,14.5 + parent: 1 + type: Transform + - uid: 2426 + components: + - pos: -36.5,8.5 + parent: 1 + type: Transform + - uid: 2427 + components: + - pos: -37.5,8.5 + parent: 1 + type: Transform + - uid: 2428 + components: + - pos: -38.5,8.5 + parent: 1 + type: Transform + - uid: 2429 + components: + - pos: -38.5,-0.5 + parent: 1 + type: Transform + - uid: 2430 + components: + - pos: -37.5,-0.5 + parent: 1 + type: Transform + - uid: 2431 + components: + - pos: -35.5,-0.5 + parent: 1 + type: Transform + - uid: 2448 + components: + - pos: -39.5,8.5 + parent: 1 + type: Transform + - uid: 2449 + components: + - pos: -40.5,8.5 + parent: 1 + type: Transform + - uid: 2450 + components: + - pos: -41.5,8.5 + parent: 1 + type: Transform + - uid: 2451 + components: + - pos: -42.5,8.5 + parent: 1 + type: Transform + - uid: 2452 + components: + - pos: -43.5,8.5 + parent: 1 + type: Transform + - uid: 2453 + components: + - pos: -44.5,8.5 + parent: 1 + type: Transform + - uid: 2454 + components: + - pos: -44.5,7.5 + parent: 1 + type: Transform + - uid: 2455 + components: + - pos: -44.5,6.5 + parent: 1 + type: Transform + - uid: 2456 + components: + - pos: -44.5,5.5 + parent: 1 + type: Transform + - uid: 2457 + components: + - pos: -49.5,7.5 + parent: 1 + type: Transform + - uid: 2459 + components: + - pos: -49.5,6.5 + parent: 1 + type: Transform + - uid: 2463 + components: + - pos: -49.5,3.5 + parent: 1 + type: Transform + - uid: 2468 + components: + - pos: -52.5,13.5 + parent: 1 + type: Transform + - uid: 2469 + components: + - pos: -52.5,-6.5 + parent: 1 + type: Transform + - uid: 2497 + components: + - pos: -47.5,-22.5 + parent: 1 + type: Transform + - uid: 2531 + components: + - pos: -49.5,-2.5 + parent: 1 + type: Transform + - uid: 2565 + components: + - pos: -44.5,4.5 + parent: 1 + type: Transform + - uid: 2566 + components: + - pos: -44.5,3.5 + parent: 1 + type: Transform + - uid: 2607 + components: + - pos: 48.5,1.5 + parent: 1 + type: Transform + - uid: 2608 + components: + - pos: 47.5,1.5 + parent: 1 + type: Transform + - uid: 2609 + components: + - pos: 46.5,1.5 + parent: 1 + type: Transform + - uid: 2610 + components: + - pos: 45.5,1.5 + parent: 1 + type: Transform + - uid: 2611 + components: + - pos: 44.5,1.5 + parent: 1 + type: Transform + - uid: 2612 + components: + - pos: 43.5,1.5 + parent: 1 + type: Transform + - uid: 2613 + components: + - pos: 42.5,1.5 + parent: 1 + type: Transform + - uid: 2614 + components: + - pos: 41.5,1.5 + parent: 1 + type: Transform + - uid: 2615 + components: + - pos: 40.5,1.5 + parent: 1 + type: Transform + - uid: 2637 + components: + - pos: 48.5,0.5 + parent: 1 + type: Transform + - uid: 2638 + components: + - pos: 48.5,-0.5 + parent: 1 + type: Transform + - uid: 2639 + components: + - pos: 48.5,-1.5 + parent: 1 + type: Transform + - uid: 2640 + components: + - pos: 48.5,-2.5 + parent: 1 + type: Transform + - uid: 2641 + components: + - pos: 48.5,-3.5 + parent: 1 + type: Transform + - uid: 2642 + components: + - pos: 48.5,-4.5 + parent: 1 + type: Transform + - uid: 2643 + components: + - pos: 48.5,-5.5 + parent: 1 + type: Transform + - uid: 2681 + components: + - pos: 40.5,-5.5 + parent: 1 + type: Transform + - uid: 2682 + components: + - pos: 40.5,-4.5 + parent: 1 + type: Transform + - uid: 2683 + components: + - pos: 40.5,-3.5 + parent: 1 + type: Transform + - uid: 2685 + components: + - pos: 40.5,-6.5 + parent: 1 + type: Transform + - uid: 2687 + components: + - pos: 40.5,-8.5 + parent: 1 + type: Transform + - uid: 2688 + components: + - pos: 41.5,-8.5 + parent: 1 + type: Transform + - uid: 2689 + components: + - pos: 42.5,-8.5 + parent: 1 + type: Transform + - uid: 2690 + components: + - pos: 43.5,-8.5 + parent: 1 + type: Transform + - uid: 2693 + components: + - pos: 46.5,-8.5 + parent: 1 + type: Transform + - uid: 2694 + components: + - pos: 47.5,-8.5 + parent: 1 + type: Transform + - uid: 2695 + components: + - pos: 48.5,-8.5 + parent: 1 + type: Transform + - uid: 2697 + components: + - pos: 48.5,-6.5 + parent: 1 + type: Transform + - uid: 2699 + components: + - pos: 36.5,-5.5 + parent: 1 + type: Transform + - uid: 2700 + components: + - pos: 36.5,-6.5 + parent: 1 + type: Transform + - uid: 2701 + components: + - pos: 36.5,-7.5 + parent: 1 + type: Transform + - uid: 2702 + components: + - pos: 36.5,-8.5 + parent: 1 + type: Transform + - uid: 2703 + components: + - pos: 36.5,-9.5 + parent: 1 + type: Transform + - uid: 2704 + components: + - pos: 36.5,-10.5 + parent: 1 + type: Transform + - uid: 2705 + components: + - pos: 36.5,-11.5 + parent: 1 + type: Transform + - uid: 2706 + components: + - pos: 36.5,-12.5 + parent: 1 + type: Transform + - uid: 2707 + components: + - pos: 40.5,-9.5 + parent: 1 + type: Transform + - uid: 2741 + components: + - pos: 36.5,-14.5 + parent: 1 + type: Transform + - uid: 2742 + components: + - pos: 36.5,-13.5 + parent: 1 + type: Transform + - uid: 2757 + components: + - pos: -64.5,-2.5 + parent: 1 + type: Transform + - uid: 2758 + components: + - pos: -13.5,-36.5 + parent: 1 + type: Transform + - uid: 2760 + components: + - pos: -13.5,-35.5 + parent: 1 + type: Transform + - uid: 2761 + components: + - pos: -12.5,-35.5 + parent: 1 + type: Transform + - uid: 2776 + components: + - pos: 49.5,1.5 + parent: 1 + type: Transform + - uid: 2779 + components: + - pos: 46.5,-9.5 + parent: 1 + type: Transform + - uid: 2798 + components: + - pos: 25.5,21.5 + parent: 1 + type: Transform + - uid: 2801 + components: + - pos: 0.5,13.5 + parent: 1 + type: Transform + - uid: 2802 + components: + - pos: 5.5,13.5 + parent: 1 + type: Transform + - uid: 2809 + components: + - pos: 18.5,22.5 + parent: 1 + type: Transform + - uid: 2810 + components: + - pos: 9.5,17.5 + parent: 1 + type: Transform + - uid: 2811 + components: + - pos: -1.5,-32.5 + parent: 1 + type: Transform + - uid: 2814 + components: + - pos: 9.5,13.5 + parent: 1 + type: Transform + - uid: 2815 + components: + - pos: 9.5,14.5 + parent: 1 + type: Transform + - uid: 2816 + components: + - pos: 1.5,13.5 + parent: 1 + type: Transform + - uid: 2817 + components: + - pos: 31.5,26.5 + parent: 1 + type: Transform + - uid: 2823 + components: + - pos: 3.5,18.5 + parent: 1 + type: Transform + - uid: 2824 + components: + - pos: 4.5,18.5 + parent: 1 + type: Transform + - uid: 2825 + components: + - pos: 5.5,18.5 + parent: 1 + type: Transform + - uid: 2827 + components: + - pos: 4.5,22.5 + parent: 1 + type: Transform + - uid: 2829 + components: + - pos: 9.5,16.5 + parent: 1 + type: Transform + - uid: 2830 + components: + - pos: 9.5,25.5 + parent: 1 + type: Transform + - uid: 2831 + components: + - pos: 9.5,24.5 + parent: 1 + type: Transform + - uid: 2873 + components: + - pos: 60.5,1.5 + parent: 1 + type: Transform + - uid: 2876 + components: + - pos: 27.5,-32.5 + parent: 1 + type: Transform + - uid: 2878 + components: + - pos: 21.5,23.5 + parent: 1 + type: Transform + - uid: 2892 + components: + - pos: 30.5,22.5 + parent: 1 + type: Transform + - uid: 2901 + components: + - pos: 35.5,13.5 + parent: 1 + type: Transform + - uid: 2902 + components: + - pos: 34.5,13.5 + parent: 1 + type: Transform + - uid: 2907 + components: + - pos: 34.5,18.5 + parent: 1 + type: Transform + - uid: 2910 + components: + - pos: 22.5,20.5 + parent: 1 + type: Transform + - uid: 2911 + components: + - pos: 34.5,20.5 + parent: 1 + type: Transform + - uid: 2913 + components: + - pos: 35.5,16.5 + parent: 1 + type: Transform + - uid: 2916 + components: + - pos: 27.5,-33.5 + parent: 1 + type: Transform + - uid: 2919 + components: + - pos: 32.5,13.5 + parent: 1 + type: Transform + - uid: 2920 + components: + - pos: 31.5,13.5 + parent: 1 + type: Transform + - uid: 2921 + components: + - pos: 44.5,23.5 + parent: 1 + type: Transform + - uid: 2935 + components: + - pos: 23.5,20.5 + parent: 1 + type: Transform + - uid: 2936 + components: + - pos: 24.5,20.5 + parent: 1 + type: Transform + - uid: 2937 + components: + - pos: 25.5,20.5 + parent: 1 + type: Transform + - uid: 2942 + components: + - pos: 9.5,-42.5 + parent: 1 + type: Transform + - uid: 2944 + components: + - pos: 33.5,21.5 + parent: 1 + type: Transform + - uid: 2947 + components: + - pos: 8.5,-42.5 + parent: 1 + type: Transform + - uid: 2948 + components: + - pos: 30.5,21.5 + parent: 1 + type: Transform + - uid: 2949 + components: + - pos: 30.5,23.5 + parent: 1 + type: Transform + - uid: 2950 + components: + - pos: 7.5,-42.5 + parent: 1 + type: Transform + - uid: 2951 + components: + - pos: 7.5,-41.5 + parent: 1 + type: Transform + - uid: 2953 + components: + - pos: 6.5,-41.5 + parent: 1 + type: Transform + - uid: 2957 + components: + - pos: 38.5,13.5 + parent: 1 + type: Transform + - uid: 2960 + components: + - pos: 14.5,22.5 + parent: 1 + type: Transform + - uid: 2961 + components: + - pos: 14.5,20.5 + parent: 1 + type: Transform + - uid: 2962 + components: + - pos: 21.5,22.5 + parent: 1 + type: Transform + - uid: 2969 + components: + - pos: 14.5,21.5 + parent: 1 + type: Transform + - uid: 2970 + components: + - pos: 21.5,20.5 + parent: 1 + type: Transform + - uid: 2971 + components: + - pos: 25.5,24.5 + parent: 1 + type: Transform + - uid: 2978 + components: + - pos: 34.5,24.5 + parent: 1 + type: Transform + - uid: 2979 + components: + - pos: 34.5,25.5 + parent: 1 + type: Transform + - uid: 2980 + components: + - pos: 35.5,25.5 + parent: 1 + type: Transform + - uid: 2981 + components: + - pos: 36.5,25.5 + parent: 1 + type: Transform + - uid: 2982 + components: + - pos: 37.5,25.5 + parent: 1 + type: Transform + - uid: 2983 + components: + - pos: 38.5,25.5 + parent: 1 + type: Transform + - uid: 2997 + components: + - pos: -7.5,19.5 + parent: 1 + type: Transform + - uid: 3011 + components: + - pos: 5.5,-41.5 + parent: 1 + type: Transform + - uid: 3013 + components: + - pos: 5.5,-40.5 + parent: 1 + type: Transform + - uid: 3033 + components: + - pos: 3.5,-34.5 + parent: 1 + type: Transform + - uid: 3042 + components: + - pos: 17.5,29.5 + parent: 1 + type: Transform + - uid: 3043 + components: + - pos: 16.5,29.5 + parent: 1 + type: Transform + - uid: 3044 + components: + - pos: 15.5,29.5 + parent: 1 + type: Transform + - uid: 3045 + components: + - pos: 14.5,29.5 + parent: 1 + type: Transform + - uid: 3046 + components: + - pos: 14.5,28.5 + parent: 1 + type: Transform + - uid: 3047 + components: + - pos: 22.5,24.5 + parent: 1 + type: Transform + - uid: 3048 + components: + - pos: 22.5,25.5 + parent: 1 + type: Transform + - uid: 3049 + components: + - pos: 22.5,26.5 + parent: 1 + type: Transform + - uid: 3050 + components: + - pos: 21.5,24.5 + parent: 1 + type: Transform + - uid: 3051 + components: + - pos: 2.5,-34.5 + parent: 1 + type: Transform + - uid: 3053 + components: + - pos: 18.5,24.5 + parent: 1 + type: Transform + - uid: 3055 + components: + - pos: 18.5,26.5 + parent: 1 + type: Transform + - uid: 3056 + components: + - pos: 17.5,26.5 + parent: 1 + type: Transform + - uid: 3057 + components: + - pos: 16.5,26.5 + parent: 1 + type: Transform + - uid: 3058 + components: + - pos: 15.5,26.5 + parent: 1 + type: Transform + - uid: 3059 + components: + - pos: 14.5,26.5 + parent: 1 + type: Transform + - uid: 3060 + components: + - pos: 1.5,-34.5 + parent: 1 + type: Transform + - uid: 3061 + components: + - pos: 45.5,17.5 + parent: 1 + type: Transform + - uid: 3062 + components: + - pos: 45.5,16.5 + parent: 1 + type: Transform + - uid: 3063 + components: + - pos: 45.5,15.5 + parent: 1 + type: Transform + - uid: 3064 + components: + - pos: 45.5,14.5 + parent: 1 + type: Transform + - uid: 3065 + components: + - pos: 45.5,13.5 + parent: 1 + type: Transform + - uid: 3066 + components: + - pos: 44.5,13.5 + parent: 1 + type: Transform + - uid: 3067 + components: + - pos: 43.5,13.5 + parent: 1 + type: Transform + - uid: 3068 + components: + - pos: 42.5,13.5 + parent: 1 + type: Transform + - uid: 3069 + components: + - pos: 41.5,13.5 + parent: 1 + type: Transform + - uid: 3070 + components: + - pos: 40.5,13.5 + parent: 1 + type: Transform + - uid: 3080 + components: + - pos: 45.5,10.5 + parent: 1 + type: Transform + - uid: 3081 + components: + - pos: 40.5,6.5 + parent: 1 + type: Transform + - uid: 3083 + components: + - pos: 45.5,12.5 + parent: 1 + type: Transform + - uid: 3099 + components: + - pos: 49.5,6.5 + parent: 1 + type: Transform + - uid: 3100 + components: + - pos: 48.5,6.5 + parent: 1 + type: Transform + - uid: 3101 + components: + - pos: 48.5,7.5 + parent: 1 + type: Transform + - uid: 3102 + components: + - pos: 48.5,8.5 + parent: 1 + type: Transform + - uid: 3103 + components: + - pos: 48.5,9.5 + parent: 1 + type: Transform + - uid: 3104 + components: + - pos: 48.5,10.5 + parent: 1 + type: Transform + - uid: 3105 + components: + - pos: 48.5,11.5 + parent: 1 + type: Transform + - uid: 3107 + components: + - pos: 48.5,13.5 + parent: 1 + type: Transform + - uid: 3108 + components: + - pos: 48.5,14.5 + parent: 1 + type: Transform + - uid: 3109 + components: + - pos: 47.5,14.5 + parent: 1 + type: Transform + - uid: 3110 + components: + - pos: 46.5,14.5 + parent: 1 + type: Transform + - uid: 3114 + components: + - pos: 47.5,6.5 + parent: 1 + type: Transform + - uid: 3115 + components: + - pos: 46.5,6.5 + parent: 1 + type: Transform + - uid: 3116 + components: + - pos: 45.5,6.5 + parent: 1 + type: Transform + - uid: 3117 + components: + - pos: 44.5,6.5 + parent: 1 + type: Transform + - uid: 3118 + components: + - pos: 58.5,6.5 + parent: 1 + type: Transform + - uid: 3119 + components: + - pos: 58.5,7.5 + parent: 1 + type: Transform + - uid: 3120 + components: + - pos: 58.5,8.5 + parent: 1 + type: Transform + - uid: 3122 + components: + - pos: 60.5,6.5 + parent: 1 + type: Transform + - uid: 3129 + components: + - pos: -3.5,-35.5 + parent: 1 + type: Transform + - uid: 3130 + components: + - pos: 0.5,-32.5 + parent: 1 + type: Transform + - uid: 3133 + components: + - pos: -5.5,16.5 + parent: 1 + type: Transform + - uid: 3140 + components: + - pos: 44.5,22.5 + parent: 1 + type: Transform + - uid: 3141 + components: + - pos: 9.5,18.5 + parent: 1 + type: Transform + - uid: 3142 + components: + - pos: -8.5,19.5 + parent: 1 + type: Transform + - uid: 3147 + components: + - pos: 56.5,23.5 + parent: 1 + type: Transform + - uid: 3164 + components: + - pos: -28.5,18.5 + parent: 1 + type: Transform + - uid: 3211 + components: + - pos: 18.5,19.5 + parent: 1 + type: Transform + - uid: 3213 + components: + - pos: 4.5,-37.5 + parent: 1 + type: Transform + - uid: 3217 + components: + - pos: 32.5,26.5 + parent: 1 + type: Transform + - uid: 3218 + components: + - pos: 35.5,15.5 + parent: 1 + type: Transform + - uid: 3222 + components: + - pos: 2.5,18.5 + parent: 1 + type: Transform + - uid: 3224 + components: + - pos: 17.5,13.5 + parent: 1 + type: Transform + - uid: 3227 + components: + - pos: 25.5,23.5 + parent: 1 + type: Transform + - uid: 3229 + components: + - pos: 14.5,15.5 + parent: 1 + type: Transform + - uid: 3230 + components: + - pos: 14.5,16.5 + parent: 1 + type: Transform + - uid: 3231 + components: + - pos: 14.5,17.5 + parent: 1 + type: Transform + - uid: 3232 + components: + - pos: 14.5,18.5 + parent: 1 + type: Transform + - uid: 3233 + components: + - pos: 14.5,19.5 + parent: 1 + type: Transform + - uid: 3236 + components: + - pos: 3.5,-37.5 + parent: 1 + type: Transform + - uid: 3238 + components: + - pos: 17.5,14.5 + parent: 1 + type: Transform + - uid: 3240 + components: + - pos: 17.5,15.5 + parent: 1 + type: Transform + - uid: 3241 + components: + - pos: 17.5,16.5 + parent: 1 + type: Transform + - uid: 3259 + components: + - pos: 31.5,21.5 + parent: 1 + type: Transform + - uid: 3260 + components: + - pos: 34.5,21.5 + parent: 1 + type: Transform + - uid: 3264 + components: + - pos: 18.5,23.5 + parent: 1 + type: Transform + - uid: 3269 + components: + - pos: 14.5,25.5 + parent: 1 + type: Transform + - uid: 3290 + components: + - pos: 34.5,23.5 + parent: 1 + type: Transform + - uid: 3292 + components: + - pos: 35.5,17.5 + parent: 1 + type: Transform + - uid: 3293 + components: + - pos: 16.5,15.5 + parent: 1 + type: Transform + - uid: 3294 + components: + - pos: 15.5,15.5 + parent: 1 + type: Transform + - uid: 3299 + components: + - pos: 18.5,20.5 + parent: 1 + type: Transform + - uid: 3300 + components: + - pos: 14.5,24.5 + parent: 1 + type: Transform + - uid: 3309 + components: + - pos: 14.5,23.5 + parent: 1 + type: Transform + - uid: 3310 + components: + - pos: 21.5,21.5 + parent: 1 + type: Transform + - uid: 3312 + components: + - pos: 39.5,17.5 + parent: 1 + type: Transform + - uid: 3314 + components: + - pos: 38.5,18.5 + parent: 1 + type: Transform + - uid: 3319 + components: + - pos: 30.5,13.5 + parent: 1 + type: Transform + - uid: 3321 + components: + - pos: 19.5,23.5 + parent: 1 + type: Transform + - uid: 3329 + components: + - pos: 34.5,26.5 + parent: 1 + type: Transform + - uid: 3334 + components: + - pos: 2.5,-37.5 + parent: 1 + type: Transform + - uid: 3335 + components: + - pos: 1.5,-37.5 + parent: 1 + type: Transform + - uid: 3336 + components: + - pos: 2.5,-44.5 + parent: 1 + type: Transform + - uid: 3337 + components: + - pos: 2.5,-43.5 + parent: 1 + type: Transform + - uid: 3338 + components: + - pos: 1.5,18.5 + parent: 1 + type: Transform + - uid: 3342 + components: + - pos: 2.5,-42.5 + parent: 1 + type: Transform + - uid: 3351 + components: + - pos: 91.5,14.5 + parent: 1 + type: Transform + - uid: 3352 + components: + - pos: 41.5,-15.5 + parent: 1 + type: Transform + - uid: 3358 + components: + - pos: -29.5,18.5 + parent: 1 + type: Transform + - uid: 3359 + components: + - pos: -30.5,18.5 + parent: 1 + type: Transform + - uid: 3368 + components: + - pos: 36.5,13.5 + parent: 1 + type: Transform + - uid: 3369 + components: + - pos: 39.5,15.5 + parent: 1 + type: Transform + - uid: 3372 + components: + - pos: 27.5,13.5 + parent: 1 + type: Transform + - uid: 3380 + components: + - pos: -16.5,19.5 + parent: 1 + type: Transform + - uid: 3381 + components: + - pos: -16.5,18.5 + parent: 1 + type: Transform + - uid: 3382 + components: + - pos: -16.5,17.5 + parent: 1 + type: Transform + - uid: 3383 + components: + - pos: -16.5,16.5 + parent: 1 + type: Transform + - uid: 3385 + components: + - pos: -16.5,14.5 + parent: 1 + type: Transform + - uid: 3386 + components: + - pos: -16.5,13.5 + parent: 1 + type: Transform + - uid: 3387 + components: + - pos: -15.5,13.5 + parent: 1 + type: Transform + - uid: 3388 + components: + - pos: -14.5,13.5 + parent: 1 + type: Transform + - uid: 3389 + components: + - pos: -13.5,13.5 + parent: 1 + type: Transform + - uid: 3390 + components: + - pos: -12.5,13.5 + parent: 1 + type: Transform + - uid: 3391 + components: + - pos: -11.5,13.5 + parent: 1 + type: Transform + - uid: 3393 + components: + - pos: -18.5,13.5 + parent: 1 + type: Transform + - uid: 3394 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 3395 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 3396 + components: + - pos: -6.5,6.5 + parent: 1 + type: Transform + - uid: 3397 + components: + - pos: -25.5,9.5 + parent: 1 + type: Transform + - uid: 3398 + components: + - pos: -25.5,8.5 + parent: 1 + type: Transform + - uid: 3399 + components: + - pos: -25.5,7.5 + parent: 1 + type: Transform + - uid: 3403 + components: + - pos: -19.5,6.5 + parent: 1 + type: Transform + - uid: 3404 + components: + - pos: -19.5,7.5 + parent: 1 + type: Transform + - uid: 3405 + components: + - pos: -19.5,8.5 + parent: 1 + type: Transform + - uid: 3424 + components: + - pos: -14.5,6.5 + parent: 1 + type: Transform + - uid: 3425 + components: + - pos: -13.5,6.5 + parent: 1 + type: Transform + - uid: 3426 + components: + - pos: -12.5,6.5 + parent: 1 + type: Transform + - uid: 3427 + components: + - pos: -11.5,6.5 + parent: 1 + type: Transform + - uid: 3428 + components: + - pos: -12.5,7.5 + parent: 1 + type: Transform + - uid: 3429 + components: + - pos: -12.5,12.5 + parent: 1 + type: Transform + - uid: 3459 + components: + - pos: -54.5,-30.5 + parent: 1 + type: Transform + - uid: 3507 + components: + - pos: 61.5,1.5 + parent: 1 + type: Transform + - uid: 3508 + components: + - pos: 61.5,0.5 + parent: 1 + type: Transform + - uid: 3509 + components: + - pos: 61.5,-0.5 + parent: 1 + type: Transform + - uid: 3513 + components: + - pos: 61.5,-14.5 + parent: 1 + type: Transform + - uid: 3514 + components: + - pos: 60.5,-11.5 + parent: 1 + type: Transform + - uid: 3515 + components: + - pos: 61.5,-11.5 + parent: 1 + type: Transform + - uid: 3517 + components: + - pos: 62.5,-11.5 + parent: 1 + type: Transform + - uid: 3519 + components: + - pos: 62.5,-5.5 + parent: 1 + type: Transform + - uid: 3525 + components: + - pos: 62.5,-14.5 + parent: 1 + type: Transform + - uid: 3546 + components: + - pos: -12.5,8.5 + parent: 1 + type: Transform + - uid: 3547 + components: + - pos: -12.5,9.5 + parent: 1 + type: Transform + - uid: 3548 + components: + - pos: -12.5,10.5 + parent: 1 + type: Transform + - uid: 3549 + components: + - pos: -12.5,11.5 + parent: 1 + type: Transform + - uid: 3550 + components: + - pos: -20.5,17.5 + parent: 1 + type: Transform + - uid: 3551 + components: + - pos: -19.5,17.5 + parent: 1 + type: Transform + - uid: 3567 + components: + - pos: -18.5,17.5 + parent: 1 + type: Transform + - uid: 3577 + components: + - pos: 2.5,-41.5 + parent: 1 + type: Transform + - uid: 3614 + components: + - pos: 1.5,-40.5 + parent: 1 + type: Transform + - uid: 3632 + components: + - pos: 6.5,35.5 + parent: 1 + type: Transform + - uid: 3633 + components: + - pos: 6.5,35.5 + parent: 1 + type: Transform + - uid: 3634 + components: + - pos: 7.5,35.5 + parent: 1 + type: Transform + - uid: 3635 + components: + - pos: 8.5,35.5 + parent: 1 + type: Transform + - uid: 3636 + components: + - pos: 9.5,35.5 + parent: 1 + type: Transform + - uid: 3637 + components: + - pos: 14.5,35.5 + parent: 1 + type: Transform + - uid: 3638 + components: + - pos: 15.5,35.5 + parent: 1 + type: Transform + - uid: 3639 + components: + - pos: 16.5,35.5 + parent: 1 + type: Transform + - uid: 3640 + components: + - pos: 17.5,35.5 + parent: 1 + type: Transform + - uid: 3651 + components: + - pos: 1.5,38.5 + parent: 1 + type: Transform + - uid: 3652 + components: + - pos: 0.5,38.5 + parent: 1 + type: Transform + - uid: 3653 + components: + - pos: -0.5,38.5 + parent: 1 + type: Transform + - uid: 3655 + components: + - pos: -2.5,38.5 + parent: 1 + type: Transform + - uid: 3656 + components: + - pos: -3.5,38.5 + parent: 1 + type: Transform + - uid: 3657 + components: + - pos: -4.5,38.5 + parent: 1 + type: Transform + - uid: 3658 + components: + - pos: -5.5,38.5 + parent: 1 + type: Transform + - uid: 3669 + components: + - pos: 24.5,38.5 + parent: 1 + type: Transform + - uid: 3670 + components: + - pos: 25.5,38.5 + parent: 1 + type: Transform + - uid: 3671 + components: + - pos: 31.5,47.5 + parent: 1 + type: Transform + - uid: 3672 + components: + - pos: 27.5,38.5 + parent: 1 + type: Transform + - uid: 3673 + components: + - pos: 28.5,38.5 + parent: 1 + type: Transform + - uid: 3674 + components: + - pos: 29.5,38.5 + parent: 1 + type: Transform + - uid: 3676 + components: + - pos: 31.5,38.5 + parent: 1 + type: Transform + - uid: 3677 + components: + - pos: 32.5,38.5 + parent: 1 + type: Transform + - uid: 3686 + components: + - pos: 88.5,15.5 + parent: 1 + type: Transform + - uid: 3689 + components: + - pos: 33.5,39.5 + parent: 1 + type: Transform + - uid: 3717 + components: + - pos: -13.5,-44.5 + parent: 1 + type: Transform + - uid: 3718 + components: + - pos: -13.5,-45.5 + parent: 1 + type: Transform + - uid: 3736 + components: + - pos: -15.5,-43.5 + parent: 1 + type: Transform + - uid: 3769 + components: + - pos: 87.5,14.5 + parent: 1 + type: Transform + - uid: 3875 + components: + - pos: 2.5,42.5 + parent: 1 + type: Transform + - uid: 3879 + components: + - pos: 35.5,-12.5 + parent: 1 + type: Transform + - uid: 3881 + components: + - pos: 33.5,-12.5 + parent: 1 + type: Transform + - uid: 3882 + components: + - pos: 32.5,-12.5 + parent: 1 + type: Transform + - uid: 3883 + components: + - pos: 31.5,-12.5 + parent: 1 + type: Transform + - uid: 3888 + components: + - pos: 31.5,-17.5 + parent: 1 + type: Transform + - uid: 3890 + components: + - pos: 25.5,-18.5 + parent: 1 + type: Transform + - uid: 3891 + components: + - pos: 26.5,-18.5 + parent: 1 + type: Transform + - uid: 3892 + components: + - pos: 27.5,-18.5 + parent: 1 + type: Transform + - uid: 3893 + components: + - pos: 28.5,-18.5 + parent: 1 + type: Transform + - uid: 3894 + components: + - pos: 29.5,-18.5 + parent: 1 + type: Transform + - uid: 3895 + components: + - pos: 30.5,-18.5 + parent: 1 + type: Transform + - uid: 3904 + components: + - pos: 30.5,-12.5 + parent: 1 + type: Transform + - uid: 3905 + components: + - pos: 30.5,-11.5 + parent: 1 + type: Transform + - uid: 3906 + components: + - pos: 30.5,-10.5 + parent: 1 + type: Transform + - uid: 3907 + components: + - pos: 30.5,-9.5 + parent: 1 + type: Transform + - uid: 3908 + components: + - pos: 30.5,-8.5 + parent: 1 + type: Transform + - uid: 3909 + components: + - pos: 30.5,-7.5 + parent: 1 + type: Transform + - uid: 3910 + components: + - pos: 30.5,-6.5 + parent: 1 + type: Transform + - uid: 3911 + components: + - pos: 30.5,-5.5 + parent: 1 + type: Transform + - uid: 3921 + components: + - pos: 32.5,-17.5 + parent: 1 + type: Transform + - uid: 3922 + components: + - pos: 33.5,-17.5 + parent: 1 + type: Transform + - uid: 3923 + components: + - pos: 34.5,-17.5 + parent: 1 + type: Transform + - uid: 3924 + components: + - pos: 35.5,-17.5 + parent: 1 + type: Transform + - uid: 3937 + components: + - pos: 30.5,-17.5 + parent: 1 + type: Transform + - uid: 3938 + components: + - pos: 30.5,-16.5 + parent: 1 + type: Transform + - uid: 3939 + components: + - pos: 30.5,-15.5 + parent: 1 + type: Transform + - uid: 3940 + components: + - pos: 30.5,-14.5 + parent: 1 + type: Transform + - uid: 3941 + components: + - pos: 30.5,-13.5 + parent: 1 + type: Transform + - uid: 3943 + components: + - pos: 21.5,-12.5 + parent: 1 + type: Transform + - uid: 3944 + components: + - pos: 21.5,-11.5 + parent: 1 + type: Transform + - uid: 3945 + components: + - pos: 21.5,-10.5 + parent: 1 + type: Transform + - uid: 3946 + components: + - pos: 21.5,-9.5 + parent: 1 + type: Transform + - uid: 3947 + components: + - pos: 21.5,-8.5 + parent: 1 + type: Transform + - uid: 3948 + components: + - pos: 21.5,-7.5 + parent: 1 + type: Transform + - uid: 3949 + components: + - pos: 21.5,-6.5 + parent: 1 + type: Transform + - uid: 3950 + components: + - pos: 21.5,-5.5 + parent: 1 + type: Transform + - uid: 3951 + components: + - pos: 24.5,-17.5 + parent: 1 + type: Transform + - uid: 3952 + components: + - pos: 20.5,-12.5 + parent: 1 + type: Transform + - uid: 3953 + components: + - pos: 24.5,-16.5 + parent: 1 + type: Transform + - uid: 3954 + components: + - pos: 24.5,-15.5 + parent: 1 + type: Transform + - uid: 3956 + components: + - pos: 24.5,-13.5 + parent: 1 + type: Transform + - uid: 3958 + components: + - pos: 22.5,-12.5 + parent: 1 + type: Transform + - uid: 3959 + components: + - pos: 23.5,-12.5 + parent: 1 + type: Transform + - uid: 3960 + components: + - pos: 24.5,-12.5 + parent: 1 + type: Transform + - uid: 3961 + components: + - pos: 24.5,-18.5 + parent: 1 + type: Transform + - uid: 3989 + components: + - pos: -40.5,-26.5 + parent: 1 + type: Transform + - uid: 4020 + components: + - pos: 61.5,9.5 + parent: 1 + type: Transform + - uid: 4021 + components: + - pos: 61.5,8.5 + parent: 1 + type: Transform + - uid: 4022 + components: + - pos: 61.5,7.5 + parent: 1 + type: Transform + - uid: 4023 + components: + - pos: 61.5,6.5 + parent: 1 + type: Transform + - uid: 4124 + components: + - pos: 54.5,6.5 + parent: 1 + type: Transform + - uid: 4136 + components: + - pos: 26.5,-12.5 + parent: 1 + type: Transform + - uid: 4200 + components: + - pos: 36.5,9.5 + parent: 1 + type: Transform + - uid: 4201 + components: + - pos: 35.5,9.5 + parent: 1 + type: Transform + - uid: 4202 + components: + - pos: 34.5,9.5 + parent: 1 + type: Transform + - uid: 4203 + components: + - pos: 33.5,9.5 + parent: 1 + type: Transform + - uid: 4204 + components: + - pos: 32.5,9.5 + parent: 1 + type: Transform + - uid: 4205 + components: + - pos: 31.5,9.5 + parent: 1 + type: Transform + - uid: 4206 + components: + - pos: 30.5,9.5 + parent: 1 + type: Transform + - uid: 4207 + components: + - pos: 29.5,9.5 + parent: 1 + type: Transform + - uid: 4208 + components: + - pos: 28.5,9.5 + parent: 1 + type: Transform + - uid: 4209 + components: + - pos: 14.5,-1.5 + parent: 1 + type: Transform + - uid: 4210 + components: + - pos: 14.5,9.5 + parent: 1 + type: Transform + - uid: 4216 + components: + - pos: 28.5,8.5 + parent: 1 + type: Transform + - uid: 4217 + components: + - pos: 28.5,7.5 + parent: 1 + type: Transform + - uid: 4218 + components: + - pos: 28.5,6.5 + parent: 1 + type: Transform + - uid: 4219 + components: + - pos: 32.5,8.5 + parent: 1 + type: Transform + - uid: 4220 + components: + - pos: 32.5,7.5 + parent: 1 + type: Transform + - uid: 4221 + components: + - pos: 32.5,6.5 + parent: 1 + type: Transform + - uid: 4222 + components: + - pos: 36.5,8.5 + parent: 1 + type: Transform + - uid: 4223 + components: + - pos: 36.5,7.5 + parent: 1 + type: Transform + - uid: 4224 + components: + - pos: 36.5,6.5 + parent: 1 + type: Transform + - uid: 4225 + components: + - pos: 24.5,-1.5 + parent: 1 + type: Transform + - uid: 4226 + components: + - pos: 24.5,-0.5 + parent: 1 + type: Transform + - uid: 4233 + components: + - pos: 29.5,-1.5 + parent: 1 + type: Transform + - uid: 4234 + components: + - pos: 30.5,-1.5 + parent: 1 + type: Transform + - uid: 4235 + components: + - pos: 31.5,-1.5 + parent: 1 + type: Transform + - uid: 4236 + components: + - pos: 32.5,-1.5 + parent: 1 + type: Transform + - uid: 4237 + components: + - pos: 33.5,-1.5 + parent: 1 + type: Transform + - uid: 4238 + components: + - pos: 34.5,-1.5 + parent: 1 + type: Transform + - uid: 4239 + components: + - pos: 35.5,-1.5 + parent: 1 + type: Transform + - uid: 4240 + components: + - pos: 36.5,-1.5 + parent: 1 + type: Transform + - uid: 4241 + components: + - pos: 36.5,-0.5 + parent: 1 + type: Transform + - uid: 4242 + components: + - pos: 36.5,0.5 + parent: 1 + type: Transform + - uid: 4243 + components: + - pos: 36.5,1.5 + parent: 1 + type: Transform + - uid: 4247 + components: + - pos: 31.5,-0.5 + parent: 1 + type: Transform + - uid: 4248 + components: + - pos: 31.5,0.5 + parent: 1 + type: Transform + - uid: 4249 + components: + - pos: 31.5,1.5 + parent: 1 + type: Transform + - uid: 4255 + components: + - pos: 62.5,-6.5 + parent: 1 + type: Transform + - uid: 4266 + components: + - pos: 31.5,2.5 + parent: 1 + type: Transform + - uid: 4269 + components: + - pos: 30.5,2.5 + parent: 1 + type: Transform + - uid: 4270 + components: + - pos: 24.5,2.5 + parent: 1 + type: Transform + - uid: 4280 + components: + - pos: 36.5,2.5 + parent: 1 + type: Transform + - uid: 4281 + components: + - pos: 36.5,5.5 + parent: 1 + type: Transform + - uid: 4282 + components: + - pos: 30.5,8.5 + parent: 1 + type: Transform + - uid: 4283 + components: + - pos: 28.5,5.5 + parent: 1 + type: Transform + - uid: 4294 + components: + - pos: 9.5,9.5 + parent: 1 + type: Transform + - uid: 4319 + components: + - pos: 14.5,-9.5 + parent: 1 + type: Transform + - uid: 4323 + components: + - pos: 18.5,-5.5 + parent: 1 + type: Transform + - uid: 4359 + components: + - pos: 34.5,7.5 + parent: 1 + type: Transform + - uid: 4360 + components: + - pos: 30.5,7.5 + parent: 1 + type: Transform + - uid: 4361 + components: + - pos: 32.5,5.5 + parent: 1 + type: Transform + - uid: 4362 + components: + - pos: 34.5,8.5 + parent: 1 + type: Transform + - uid: 4373 + components: + - pos: 29.5,5.5 + parent: 1 + type: Transform + - uid: 4374 + components: + - pos: 31.5,5.5 + parent: 1 + type: Transform + - uid: 4375 + components: + - pos: 33.5,5.5 + parent: 1 + type: Transform + - uid: 4376 + components: + - pos: 35.5,5.5 + parent: 1 + type: Transform + - uid: 4396 + components: + - pos: 27.5,-12.5 + parent: 1 + type: Transform + - uid: 4397 + components: + - pos: 28.5,-12.5 + parent: 1 + type: Transform + - uid: 4398 + components: + - pos: 29.5,-12.5 + parent: 1 + type: Transform + - uid: 4404 + components: + - pos: 45.5,11.5 + parent: 1 + type: Transform + - uid: 4408 + components: + - pos: 47.5,10.5 + parent: 1 + type: Transform + - uid: 4423 + components: + - pos: 28.5,39.5 + parent: 1 + type: Transform + - uid: 4424 + components: + - pos: 28.5,41.5 + parent: 1 + type: Transform + - uid: 4425 + components: + - pos: 28.5,42.5 + parent: 1 + type: Transform + - uid: 4426 + components: + - pos: 28.5,46.5 + parent: 1 + type: Transform + - uid: 4427 + components: + - pos: 28.5,44.5 + parent: 1 + type: Transform + - uid: 4428 + components: + - pos: 29.5,44.5 + parent: 1 + type: Transform + - uid: 4429 + components: + - pos: 30.5,44.5 + parent: 1 + type: Transform + - uid: 4430 + components: + - pos: 31.5,44.5 + parent: 1 + type: Transform + - uid: 4431 + components: + - pos: 31.5,46.5 + parent: 1 + type: Transform + - uid: 4432 + components: + - pos: 31.5,45.5 + parent: 1 + type: Transform + - uid: 4433 + components: + - pos: 31.5,43.5 + parent: 1 + type: Transform + - uid: 4434 + components: + - pos: 31.5,42.5 + parent: 1 + type: Transform + - uid: 4435 + components: + - pos: 31.5,41.5 + parent: 1 + type: Transform + - uid: 4438 + components: + - pos: 29.5,41.5 + parent: 1 + type: Transform + - uid: 4439 + components: + - pos: 30.5,41.5 + parent: 1 + type: Transform + - uid: 4440 + components: + - pos: 32.5,52.5 + parent: 1 + type: Transform + - uid: 4441 + components: + - pos: 30.5,47.5 + parent: 1 + type: Transform + - uid: 4442 + components: + - pos: 29.5,47.5 + parent: 1 + type: Transform + - uid: 4443 + components: + - pos: 28.5,47.5 + parent: 1 + type: Transform + - uid: 4445 + components: + - pos: 26.5,47.5 + parent: 1 + type: Transform + - uid: 4446 + components: + - pos: 25.5,47.5 + parent: 1 + type: Transform + - uid: 4447 + components: + - pos: 24.5,47.5 + parent: 1 + type: Transform + - uid: 4448 + components: + - pos: 23.5,47.5 + parent: 1 + type: Transform + - uid: 4449 + components: + - pos: 22.5,47.5 + parent: 1 + type: Transform + - uid: 4450 + components: + - pos: 21.5,47.5 + parent: 1 + type: Transform + - uid: 4453 + components: + - pos: 20.5,47.5 + parent: 1 + type: Transform + - uid: 4460 + components: + - pos: 16.5,47.5 + parent: 1 + type: Transform + - uid: 4461 + components: + - pos: 15.5,47.5 + parent: 1 + type: Transform + - uid: 4462 + components: + - pos: 14.5,47.5 + parent: 1 + type: Transform + - uid: 4469 + components: + - pos: 11.5,51.5 + parent: 1 + type: Transform + - uid: 4470 + components: + - pos: 12.5,51.5 + parent: 1 + type: Transform + - uid: 4471 + components: + - pos: 13.5,51.5 + parent: 1 + type: Transform + - uid: 4472 + components: + - pos: 14.5,51.5 + parent: 1 + type: Transform + - uid: 4473 + components: + - pos: 15.5,51.5 + parent: 1 + type: Transform + - uid: 4474 + components: + - pos: 16.5,52.5 + parent: 1 + type: Transform + - uid: 4475 + components: + - pos: 16.5,48.5 + parent: 1 + type: Transform + - uid: 4476 + components: + - pos: 16.5,51.5 + parent: 1 + type: Transform + - uid: 4477 + components: + - pos: 16.5,50.5 + parent: 1 + type: Transform + - uid: 4478 + components: + - pos: 17.5,47.5 + parent: 1 + type: Transform + - uid: 4479 + components: + - pos: 18.5,47.5 + parent: 1 + type: Transform + - uid: 4480 + components: + - pos: 19.5,47.5 + parent: 1 + type: Transform + - uid: 4481 + components: + - pos: 17.5,51.5 + parent: 1 + type: Transform + - uid: 4482 + components: + - pos: 18.5,51.5 + parent: 1 + type: Transform + - uid: 4483 + components: + - pos: 19.5,51.5 + parent: 1 + type: Transform + - uid: 4484 + components: + - pos: 20.5,52.5 + parent: 1 + type: Transform + - uid: 4485 + components: + - pos: 20.5,51.5 + parent: 1 + type: Transform + - uid: 4486 + components: + - pos: 20.5,50.5 + parent: 1 + type: Transform + - uid: 4488 + components: + - pos: 20.5,48.5 + parent: 1 + type: Transform + - uid: 4495 + components: + - pos: 26.5,38.5 + parent: 1 + type: Transform + - uid: 4498 + components: + - pos: 7.5,37.5 + parent: 1 + type: Transform + - uid: 4499 + components: + - pos: 16.5,37.5 + parent: 1 + type: Transform + - uid: 4574 + components: + - pos: -1.5,48.5 + parent: 1 + type: Transform + - uid: 4575 + components: + - pos: -0.5,48.5 + parent: 1 + type: Transform + - uid: 4576 + components: + - pos: 0.5,48.5 + parent: 1 + type: Transform + - uid: 4577 + components: + - pos: 1.5,48.5 + parent: 1 + type: Transform + - uid: 4578 + components: + - pos: 2.5,48.5 + parent: 1 + type: Transform + - uid: 4611 + components: + - pos: 24.5,51.5 + parent: 1 + type: Transform + - uid: 4612 + components: + - pos: 24.5,50.5 + parent: 1 + type: Transform + - uid: 4613 + components: + - pos: 24.5,49.5 + parent: 1 + type: Transform + - uid: 4619 + components: + - pos: 31.5,51.5 + parent: 1 + type: Transform + - uid: 4620 + components: + - pos: 28.5,40.5 + parent: 1 + type: Transform + - uid: 4621 + components: + - pos: 31.5,48.5 + parent: 1 + type: Transform + - uid: 4624 + components: + - pos: 24.5,48.5 + parent: 1 + type: Transform + - uid: 4625 + components: + - pos: 31.5,52.5 + parent: 1 + type: Transform + - uid: 4635 + components: + - pos: 2.5,47.5 + parent: 1 + type: Transform + - uid: 4646 + components: + - pos: 32.5,39.5 + parent: 1 + type: Transform + - uid: 4647 + components: + - pos: 32.5,40.5 + parent: 1 + type: Transform + - uid: 4648 + components: + - pos: 32.5,41.5 + parent: 1 + type: Transform + - uid: 4731 + components: + - pos: 38.5,46.5 + parent: 1 + type: Transform + - uid: 4732 + components: + - pos: 38.5,44.5 + parent: 1 + type: Transform + - uid: 4752 + components: + - pos: 6.5,49.5 + parent: 1 + type: Transform + - uid: 4753 + components: + - pos: 6.5,51.5 + parent: 1 + type: Transform + - uid: 4986 + components: + - pos: -27.5,6.5 + parent: 1 + type: Transform + - uid: 5013 + components: + - pos: 25.5,9.5 + parent: 1 + type: Transform + - uid: 5098 + components: + - pos: -21.5,-11.5 + parent: 1 + type: Transform + - uid: 5100 + components: + - pos: -19.5,-11.5 + parent: 1 + type: Transform + - uid: 5101 + components: + - pos: -18.5,-11.5 + parent: 1 + type: Transform + - uid: 5102 + components: + - pos: -18.5,-12.5 + parent: 1 + type: Transform + - uid: 5104 + components: + - pos: -18.5,-14.5 + parent: 1 + type: Transform + - uid: 5245 + components: + - pos: 44.5,21.5 + parent: 1 + type: Transform + - uid: 5248 + components: + - pos: 4.5,26.5 + parent: 1 + type: Transform + - uid: 5251 + components: + - pos: 39.5,13.5 + parent: 1 + type: Transform + - uid: 5253 + components: + - pos: 33.5,26.5 + parent: 1 + type: Transform + - uid: 5262 + components: + - pos: 29.5,13.5 + parent: 1 + type: Transform + - uid: 5264 + components: + - pos: 2.5,-40.5 + parent: 1 + type: Transform + - uid: 5266 + components: + - pos: -0.5,-40.5 + parent: 1 + type: Transform + - uid: 5428 + components: + - pos: -1.5,-40.5 + parent: 1 + type: Transform + - uid: 5429 + components: + - pos: -2.5,-40.5 + parent: 1 + type: Transform + - uid: 5436 + components: + - pos: -9.5,-35.5 + parent: 1 + type: Transform + - uid: 5437 + components: + - pos: -8.5,-35.5 + parent: 1 + type: Transform + - uid: 5438 + components: + - pos: -8.5,-36.5 + parent: 1 + type: Transform + - uid: 5439 + components: + - pos: -8.5,-37.5 + parent: 1 + type: Transform + - uid: 5442 + components: + - pos: -8.5,-39.5 + parent: 1 + type: Transform + - uid: 5443 + components: + - pos: -7.5,-35.5 + parent: 1 + type: Transform + - uid: 5667 + components: + - pos: 65.5,-15.5 + parent: 1 + type: Transform + - uid: 5701 + components: + - pos: 82.5,-3.5 + parent: 1 + type: Transform + - uid: 5702 + components: + - pos: 82.5,-2.5 + parent: 1 + type: Transform + - uid: 5802 + components: + - pos: 78.5,-2.5 + parent: 1 + type: Transform + - uid: 5805 + components: + - pos: 67.5,-16.5 + parent: 1 + type: Transform + - uid: 5811 + components: + - pos: -52.5,-7.5 + parent: 1 + type: Transform + - uid: 5813 + components: + - pos: -52.5,15.5 + parent: 1 + type: Transform + - uid: 5814 + components: + - pos: -49.5,15.5 + parent: 1 + type: Transform + - uid: 5866 + components: + - pos: -53.5,-26.5 + parent: 1 + type: Transform + - uid: 5867 + components: + - pos: -52.5,-26.5 + parent: 1 + type: Transform + - uid: 5868 + components: + - pos: -51.5,-26.5 + parent: 1 + type: Transform + - uid: 5869 + components: + - pos: -50.5,-26.5 + parent: 1 + type: Transform + - uid: 5870 + components: + - pos: -49.5,-26.5 + parent: 1 + type: Transform + - uid: 5871 + components: + - pos: -48.5,-26.5 + parent: 1 + type: Transform + - uid: 5872 + components: + - pos: -48.5,-25.5 + parent: 1 + type: Transform + - uid: 5873 + components: + - pos: -48.5,-24.5 + parent: 1 + type: Transform + - uid: 5883 + components: + - pos: -48.5,-20.5 + parent: 1 + type: Transform + - uid: 5891 + components: + - pos: -52.5,-13.5 + parent: 1 + type: Transform + - uid: 5892 + components: + - pos: -49.5,-13.5 + parent: 1 + type: Transform + - uid: 5940 + components: + - pos: 36.5,-29.5 + parent: 1 + type: Transform + - uid: 5941 + components: + - pos: 39.5,-29.5 + parent: 1 + type: Transform + - uid: 5945 + components: + - pos: 36.5,-30.5 + parent: 1 + type: Transform + - uid: 6090 + components: + - pos: 66.5,-16.5 + parent: 1 + type: Transform + - uid: 6136 + components: + - pos: 94.5,11.5 + parent: 1 + type: Transform + - uid: 6205 + components: + - pos: 44.5,-11.5 + parent: 1 + type: Transform + - uid: 6225 + components: + - pos: 65.5,-16.5 + parent: 1 + type: Transform + - uid: 6270 + components: + - pos: 25.5,51.5 + parent: 1 + type: Transform + - uid: 6271 + components: + - pos: 23.5,51.5 + parent: 1 + type: Transform + - uid: 6272 + components: + - pos: 21.5,51.5 + parent: 1 + type: Transform + - uid: 6278 + components: + - pos: 26.5,51.5 + parent: 1 + type: Transform + - uid: 6280 + components: + - pos: 30.5,51.5 + parent: 1 + type: Transform + - uid: 6317 + components: + - pos: -41.5,13.5 + parent: 1 + type: Transform + - uid: 6320 + components: + - pos: -43.5,13.5 + parent: 1 + type: Transform + - uid: 6321 + components: + - pos: -39.5,13.5 + parent: 1 + type: Transform + - uid: 6322 + components: + - pos: -38.5,13.5 + parent: 1 + type: Transform + - uid: 6341 + components: + - pos: -49.5,11.5 + parent: 1 + type: Transform + - uid: 6342 + components: + - pos: -49.5,4.5 + parent: 1 + type: Transform + - uid: 6351 + components: + - pos: -48.5,5.5 + parent: 1 + type: Transform + - uid: 6352 + components: + - pos: -49.5,5.5 + parent: 1 + type: Transform + - uid: 6353 + components: + - pos: -46.5,5.5 + parent: 1 + type: Transform + - uid: 6354 + components: + - pos: 60.5,-14.5 + parent: 1 + type: Transform + - uid: 6374 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 6378 + components: + - pos: -47.5,5.5 + parent: 1 + type: Transform + - uid: 6379 + components: + - pos: -45.5,5.5 + parent: 1 + type: Transform + - uid: 6386 + components: + - pos: -44.5,-22.5 + parent: 1 + type: Transform + - uid: 6397 + components: + - pos: -45.5,-22.5 + parent: 1 + type: Transform + - uid: 6412 + components: + - pos: 9.5,22.5 + parent: 1 + type: Transform + - uid: 6543 + components: + - pos: -57.5,0.5 + parent: 1 + type: Transform + - uid: 6545 + components: + - pos: -57.5,-2.5 + parent: 1 + type: Transform + - uid: 6549 + components: + - pos: -57.5,-1.5 + parent: 1 + type: Transform + - uid: 6553 + components: + - pos: -57.5,-3.5 + parent: 1 + type: Transform + - uid: 6631 + components: + - pos: -48.5,-13.5 + parent: 1 + type: Transform + - uid: 6653 + components: + - pos: -43.5,-22.5 + parent: 1 + type: Transform + - uid: 6658 + components: + - pos: -41.5,-22.5 + parent: 1 + type: Transform + - uid: 6666 + components: + - pos: -48.5,-23.5 + parent: 1 + type: Transform + - uid: 6671 + components: + - pos: -5.5,-10.5 + parent: 1 + type: Transform + - uid: 6704 + components: + - pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 6788 + components: + - pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 6880 + components: + - pos: 1.5,26.5 + parent: 1 + type: Transform + - uid: 6885 + components: + - pos: 0.5,26.5 + parent: 1 + type: Transform + - uid: 6906 + components: + - pos: 20.5,13.5 + parent: 1 + type: Transform + - uid: 6907 + components: + - pos: -6.5,-35.5 + parent: 1 + type: Transform + - uid: 6911 + components: + - pos: -4.5,-37.5 + parent: 1 + type: Transform + - uid: 6912 + components: + - pos: -4.5,-38.5 + parent: 1 + type: Transform + - uid: 6913 + components: + - pos: -4.5,-39.5 + parent: 1 + type: Transform + - uid: 6915 + components: + - pos: 0.5,22.5 + parent: 1 + type: Transform + - uid: 6916 + components: + - pos: -3.5,25.5 + parent: 1 + type: Transform + - uid: 6917 + components: + - pos: -6.5,-32.5 + parent: 1 + type: Transform + - uid: 6918 + components: + - pos: -6.5,-33.5 + parent: 1 + type: Transform + - uid: 6920 + components: + - pos: -6.5,-34.5 + parent: 1 + type: Transform + - uid: 6922 + components: + - pos: 36.5,18.5 + parent: 1 + type: Transform + - uid: 6923 + components: + - pos: -1.5,-33.5 + parent: 1 + type: Transform + - uid: 6928 + components: + - pos: -1.5,-34.5 + parent: 1 + type: Transform + - uid: 7007 + components: + - pos: 57.5,6.5 + parent: 1 + type: Transform + - uid: 7008 + components: + - pos: 56.5,6.5 + parent: 1 + type: Transform + - uid: 7035 + components: + - pos: -0.5,-12.5 + parent: 1 + type: Transform + - uid: 7058 + components: + - pos: 92.5,1.5 + parent: 1 + type: Transform + - uid: 7085 + components: + - pos: -1.5,-35.5 + parent: 1 + type: Transform + - uid: 7088 + components: + - pos: -4.5,-31.5 + parent: 1 + type: Transform + - uid: 7089 + components: + - pos: -3.5,-37.5 + parent: 1 + type: Transform + - uid: 7155 + components: + - pos: -2.5,-37.5 + parent: 1 + type: Transform + - uid: 7206 + components: + - pos: 65.5,-14.5 + parent: 1 + type: Transform + - uid: 7207 + components: + - pos: 64.5,-14.5 + parent: 1 + type: Transform + - uid: 7221 + components: + - pos: 30.5,14.5 + parent: 1 + type: Transform + - uid: 7227 + components: + - pos: -1.5,-37.5 + parent: 1 + type: Transform + - uid: 7229 + components: + - pos: -1.5,-38.5 + parent: 1 + type: Transform + - uid: 7230 + components: + - pos: 2.5,22.5 + parent: 1 + type: Transform + - uid: 7231 + components: + - pos: 1.5,22.5 + parent: 1 + type: Transform + - uid: 7368 + components: + - pos: 82.5,-4.5 + parent: 1 + type: Transform + - uid: 7405 + components: + - pos: 0.5,-37.5 + parent: 1 + type: Transform + - uid: 7406 + components: + - pos: 0.5,-36.5 + parent: 1 + type: Transform + - uid: 7409 + components: + - pos: 0.5,-34.5 + parent: 1 + type: Transform + - uid: 7518 + components: + - pos: 15.5,-9.5 + parent: 1 + type: Transform + - uid: 7519 + components: + - pos: 16.5,-9.5 + parent: 1 + type: Transform + - uid: 7520 + components: + - pos: 17.5,-9.5 + parent: 1 + type: Transform + - uid: 7521 + components: + - pos: 18.5,-9.5 + parent: 1 + type: Transform + - uid: 7523 + components: + - pos: 20.5,-9.5 + parent: 1 + type: Transform + - uid: 7705 + components: + - pos: 27.5,51.5 + parent: 1 + type: Transform + - uid: 7775 + components: + - pos: -9.5,12.5 + parent: 1 + type: Transform + - uid: 8614 + components: + - pos: -11.5,-22.5 + parent: 1 + type: Transform + - uid: 8615 + components: + - pos: -12.5,-22.5 + parent: 1 + type: Transform + - uid: 8616 + components: + - pos: -13.5,-22.5 + parent: 1 + type: Transform + - uid: 8617 + components: + - pos: -14.5,-22.5 + parent: 1 + type: Transform + - uid: 8618 + components: + - pos: -15.5,-22.5 + parent: 1 + type: Transform + - uid: 9248 + components: + - pos: 30.5,-32.5 + parent: 1 + type: Transform + - uid: 9249 + components: + - pos: 30.5,-33.5 + parent: 1 + type: Transform + - uid: 9278 + components: + - pos: 29.5,-33.5 + parent: 1 + type: Transform + - uid: 9279 + components: + - pos: 31.5,-33.5 + parent: 1 + type: Transform + - uid: 9291 + components: + - pos: 33.5,13.5 + parent: 1 + type: Transform + - uid: 9304 + components: + - pos: -2.5,-12.5 + parent: 1 + type: Transform + - uid: 9305 + components: + - pos: -4.5,-10.5 + parent: 1 + type: Transform + - uid: 9343 + components: + - pos: -28.5,15.5 + parent: 1 + type: Transform + - uid: 9344 + components: + - pos: -31.5,16.5 + parent: 1 + type: Transform + - uid: 9516 + components: + - pos: -8.5,-16.5 + parent: 1 + type: Transform + - uid: 9517 + components: + - pos: -7.5,-16.5 + parent: 1 + type: Transform + - uid: 9776 + components: + - pos: 34.5,-45.5 + parent: 1 + type: Transform + - uid: 9865 + components: + - pos: 104.5,-0.5 + parent: 1 + type: Transform + - uid: 9866 + components: + - pos: 106.5,-0.5 + parent: 1 + type: Transform + - uid: 9902 + components: + - pos: 58.5,9.5 + parent: 1 + type: Transform + - uid: 9905 + components: + - pos: 51.5,36.5 + parent: 1 + type: Transform + - uid: 9906 + components: + - pos: 50.5,36.5 + parent: 1 + type: Transform + - uid: 9907 + components: + - pos: 49.5,36.5 + parent: 1 + type: Transform + - uid: 9908 + components: + - pos: 47.5,36.5 + parent: 1 + type: Transform + - uid: 9982 + components: + - pos: -35.5,-27.5 + parent: 1 + type: Transform + - uid: 9983 + components: + - pos: -34.5,-27.5 + parent: 1 + type: Transform + - uid: 9984 + components: + - pos: -33.5,-27.5 + parent: 1 + type: Transform + - uid: 9985 + components: + - pos: -33.5,-26.5 + parent: 1 + type: Transform + - uid: 9986 + components: + - pos: -33.5,-25.5 + parent: 1 + type: Transform + - uid: 9987 + components: + - pos: -33.5,-24.5 + parent: 1 + type: Transform + - uid: 9988 + components: + - pos: -33.5,-23.5 + parent: 1 + type: Transform + - uid: 9989 + components: + - pos: -33.5,-22.5 + parent: 1 + type: Transform + - uid: 9990 + components: + - pos: -33.5,-21.5 + parent: 1 + type: Transform + - uid: 9991 + components: + - pos: -34.5,-21.5 + parent: 1 + type: Transform + - uid: 9993 + components: + - pos: -36.5,-21.5 + parent: 1 + type: Transform + - uid: 10001 + components: + - pos: -21.5,18.5 + parent: 1 + type: Transform + - uid: 10044 + components: + - pos: -3.5,14.5 + parent: 1 + type: Transform + - uid: 10078 + components: + - pos: -3.5,13.5 + parent: 1 + type: Transform + - uid: 10159 + components: + - pos: 44.5,-13.5 + parent: 1 + type: Transform + - uid: 10161 + components: + - pos: 44.5,-12.5 + parent: 1 + type: Transform + - uid: 10622 + components: + - pos: -48.5,-22.5 + parent: 1 + type: Transform + - uid: 10799 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 10804 + components: + - pos: -37.5,-22.5 + parent: 1 + type: Transform + - uid: 10805 + components: + - pos: -37.5,-23.5 + parent: 1 + type: Transform + - uid: 10806 + components: + - pos: -37.5,-24.5 + parent: 1 + type: Transform + - uid: 10807 + components: + - pos: -37.5,-25.5 + parent: 1 + type: Transform + - uid: 10812 + components: + - pos: -37.5,-26.5 + parent: 1 + type: Transform + - uid: 10813 + components: + - pos: -36.5,-26.5 + parent: 1 + type: Transform + - uid: 10815 + components: + - pos: -36.5,-27.5 + parent: 1 + type: Transform + - uid: 11064 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 11065 + components: + - pos: -2.5,-9.5 + parent: 1 + type: Transform + - uid: 11070 + components: + - pos: -36.5,-28.5 + parent: 1 + type: Transform + - uid: 11071 + components: + - pos: -36.5,-29.5 + parent: 1 + type: Transform + - uid: 11096 + components: + - pos: -3.5,-16.5 + parent: 1 + type: Transform + - uid: 11168 + components: + - pos: -13.5,18.5 + parent: 1 + type: Transform + - uid: 11169 + components: + - pos: -14.5,18.5 + parent: 1 + type: Transform + - uid: 11171 + components: + - pos: -14.5,19.5 + parent: 1 + type: Transform + - uid: 11177 + components: + - pos: -11.5,25.5 + parent: 1 + type: Transform + - uid: 11178 + components: + - pos: -12.5,25.5 + parent: 1 + type: Transform + - uid: 11214 + components: + - pos: -5.5,15.5 + parent: 1 + type: Transform + - uid: 11215 + components: + - pos: -2.5,13.5 + parent: 1 + type: Transform + - uid: 11216 + components: + - pos: -0.5,18.5 + parent: 1 + type: Transform + - uid: 11221 + components: + - pos: -4.5,25.5 + parent: 1 + type: Transform + - uid: 11222 + components: + - pos: -5.5,25.5 + parent: 1 + type: Transform + - uid: 11225 + components: + - pos: -0.5,22.5 + parent: 1 + type: Transform + - uid: 11230 + components: + - pos: 24.5,24.5 + parent: 1 + type: Transform + - uid: 11239 + components: + - pos: -10.5,26.5 + parent: 1 + type: Transform + - uid: 11240 + components: + - pos: -9.5,26.5 + parent: 1 + type: Transform + - uid: 11242 + components: + - pos: -7.5,26.5 + parent: 1 + type: Transform + - uid: 11243 + components: + - pos: -6.5,26.5 + parent: 1 + type: Transform + - uid: 11245 + components: + - pos: 39.5,14.5 + parent: 1 + type: Transform + - uid: 11478 + components: + - pos: 32.5,25.5 + parent: 1 + type: Transform + - uid: 11581 + components: + - pos: -17.5,49.5 + parent: 1 + type: Transform + - uid: 11735 + components: + - pos: -46.5,-30.5 + parent: 1 + type: Transform + - uid: 11983 + components: + - pos: -46.5,-29.5 + parent: 1 + type: Transform + - uid: 11996 + components: + - pos: -46.5,-27.5 + parent: 1 + type: Transform + - uid: 11997 + components: + - pos: -46.5,-26.5 + parent: 1 + type: Transform + - uid: 11998 + components: + - pos: -45.5,-26.5 + parent: 1 + type: Transform + - uid: 12001 + components: + - pos: -39.5,-26.5 + parent: 1 + type: Transform + - uid: 12002 + components: + - pos: -38.5,-26.5 + parent: 1 + type: Transform + - uid: 12016 + components: + - pos: -40.5,-22.5 + parent: 1 + type: Transform + - uid: 12060 + components: + - pos: -54.5,-26.5 + parent: 1 + type: Transform + - uid: 12076 + components: + - pos: -37.5,-19.5 + parent: 1 + type: Transform + - uid: 12077 + components: + - pos: -37.5,-21.5 + parent: 1 + type: Transform + - uid: 12080 + components: + - pos: -38.5,-19.5 + parent: 1 + type: Transform + - uid: 12437 + components: + - pos: 20.5,23.5 + parent: 1 + type: Transform + - uid: 12439 + components: + - pos: 18.5,18.5 + parent: 1 + type: Transform + - uid: 12440 + components: + - pos: 39.5,16.5 + parent: 1 + type: Transform + - uid: 12444 + components: + - pos: 17.5,18.5 + parent: 1 + type: Transform + - uid: 12445 + components: + - pos: 16.5,18.5 + parent: 1 + type: Transform + - uid: 12458 + components: + - pos: 26.5,13.5 + parent: 1 + type: Transform + - uid: 12459 + components: + - pos: 18.5,13.5 + parent: 1 + type: Transform + - uid: 12620 + components: + - pos: -42.5,-22.5 + parent: 1 + type: Transform + - uid: 12803 + components: + - pos: 27.5,-36.5 + parent: 1 + type: Transform + - uid: 12804 + components: + - pos: 27.5,-35.5 + parent: 1 + type: Transform + - uid: 12805 + components: + - pos: 27.5,-34.5 + parent: 1 + type: Transform + - uid: 13395 + components: + - pos: 93.5,11.5 + parent: 1 + type: Transform + - uid: 13512 + components: + - pos: 92.5,14.5 + parent: 1 + type: Transform + - uid: 13516 + components: + - pos: 94.5,14.5 + parent: 1 + type: Transform + - uid: 13519 + components: + - pos: 93.5,14.5 + parent: 1 + type: Transform + - uid: 13521 + components: + - pos: 92.5,15.5 + parent: 1 + type: Transform + - uid: 14051 + components: + - pos: -2.5,-2.5 + parent: 1 + type: Transform + - uid: 14067 + components: + - pos: 43.5,-11.5 + parent: 1 + type: Transform + - uid: 14229 + components: + - pos: -5.5,14.5 + parent: 1 + type: Transform + - uid: 14290 + components: + - pos: -2.5,-10.5 + parent: 1 + type: Transform + - uid: 14291 + components: + - pos: -2.5,-8.5 + parent: 1 + type: Transform + - uid: 14292 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform + - uid: 14307 + components: + - pos: -47.5,-26.5 + parent: 1 + type: Transform + - uid: 14423 + components: + - pos: -8.5,20.5 + parent: 1 + type: Transform + - uid: 14781 + components: + - pos: 95.5,11.5 + parent: 1 + type: Transform + - uid: 15754 + components: + - pos: -0.5,-16.5 + parent: 1 + type: Transform + - uid: 15764 + components: + - pos: -58.5,12.5 + parent: 1 + type: Transform + - uid: 15765 + components: + - pos: -62.5,7.5 + parent: 1 + type: Transform + - uid: 16127 + components: + - pos: 46.5,-26.5 + parent: 1 + type: Transform + - uid: 16182 + components: + - pos: -7.5,18.5 + parent: 1 + type: Transform + - uid: 16417 + components: + - pos: -7.5,17.5 + parent: 1 + type: Transform + - uid: 16459 + components: + - pos: 50.5,40.5 + parent: 1 + type: Transform + - uid: 16463 + components: + - pos: 49.5,40.5 + parent: 1 + type: Transform + - uid: 16464 + components: + - pos: 47.5,40.5 + parent: 1 + type: Transform + - uid: 16510 + components: + - pos: 55.5,37.5 + parent: 1 + type: Transform + - uid: 16511 + components: + - pos: 55.5,41.5 + parent: 1 + type: Transform + - uid: 16588 + components: + - pos: -11.5,-33.5 + parent: 1 + type: Transform + - uid: 16589 + components: + - pos: -9.5,-31.5 + parent: 1 + type: Transform + - uid: 16590 + components: + - pos: -9.5,-32.5 + parent: 1 + type: Transform + - uid: 16591 + components: + - pos: -11.5,-34.5 + parent: 1 + type: Transform + - uid: 16648 + components: + - pos: -10.5,-33.5 + parent: 1 + type: Transform + - uid: 16649 + components: + - pos: -8.5,-31.5 + parent: 1 + type: Transform + - uid: 16652 + components: + - pos: -28.5,16.5 + parent: 1 + type: Transform + - uid: 16653 + components: + - pos: -28.5,17.5 + parent: 1 + type: Transform + - uid: 16664 + components: + - pos: -30.5,16.5 + parent: 1 + type: Transform + - uid: 16668 + components: + - pos: -32.5,16.5 + parent: 1 + type: Transform + - uid: 16671 + components: + - pos: -6.5,-48.5 + parent: 1 + type: Transform + - uid: 16751 + components: + - pos: -54.5,-29.5 + parent: 1 + type: Transform + - uid: 16757 + components: + - pos: -11.5,-35.5 + parent: 1 + type: Transform + - uid: 16761 + components: + - pos: 37.5,-41.5 + parent: 1 + type: Transform + - uid: 16762 + components: + - pos: 35.5,-33.5 + parent: 1 + type: Transform + - uid: 16775 + components: + - pos: -15.5,-24.5 + parent: 1 + type: Transform + - uid: 16776 + components: + - pos: -15.5,-23.5 + parent: 1 + type: Transform + - uid: 16802 + components: + - pos: -2.5,-14.5 + parent: 1 + type: Transform + - uid: 16841 + components: + - pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 16873 + components: + - pos: 36.5,-33.5 + parent: 1 + type: Transform + - uid: 16983 + components: + - pos: 37.5,-35.5 + parent: 1 + type: Transform + - uid: 17060 + components: + - pos: 37.5,-34.5 + parent: 1 + type: Transform + - uid: 17617 + components: + - pos: -22.5,-10.5 + parent: 1 + type: Transform + - uid: 17618 + components: + - pos: -23.5,-10.5 + parent: 1 + type: Transform + - uid: 17619 + components: + - pos: -24.5,-9.5 + parent: 1 + type: Transform + - uid: 17629 + components: + - pos: -22.5,-11.5 + parent: 1 + type: Transform + - uid: 17630 + components: + - pos: -24.5,-10.5 + parent: 1 + type: Transform + - uid: 17637 + components: + - pos: -21.5,19.5 + parent: 1 + type: Transform + - uid: 17639 + components: + - pos: -21.5,20.5 + parent: 1 + type: Transform + - uid: 17652 + components: + - pos: -23.5,17.5 + parent: 1 + type: Transform + - uid: 17871 + components: + - pos: -25.5,15.5 + parent: 1 + type: Transform + - uid: 17872 + components: + - pos: -24.5,17.5 + parent: 1 + type: Transform + - uid: 17873 + components: + - pos: -25.5,16.5 + parent: 1 + type: Transform + - uid: 17874 + components: + - pos: -25.5,17.5 + parent: 1 + type: Transform + - uid: 18149 + components: + - pos: -20.5,20.5 + parent: 1 + type: Transform + - uid: 18552 + components: + - pos: -7.5,11.5 + parent: 1 + type: Transform + - uid: 18553 + components: + - pos: -6.5,11.5 + parent: 1 + type: Transform + - uid: 18554 + components: + - pos: -59.5,12.5 + parent: 1 + type: Transform + - uid: 18556 + components: + - pos: -60.5,12.5 + parent: 1 + type: Transform + - uid: 18558 + components: + - pos: -62.5,10.5 + parent: 1 + type: Transform + - uid: 18567 + components: + - pos: -2.5,54.5 + parent: 1 + type: Transform + - uid: 18617 + components: + - pos: 26.5,54.5 + parent: 1 + type: Transform + - uid: 18682 + components: + - pos: -62.5,9.5 + parent: 1 + type: Transform + - uid: 18915 + components: + - pos: -60.5,11.5 + parent: 1 + type: Transform + - uid: 19459 + components: + - pos: 42.5,-15.5 + parent: 1 + type: Transform + - uid: 19461 + components: + - pos: 45.5,-11.5 + parent: 1 + type: Transform + - uid: 19578 + components: + - pos: 42.5,-14.5 + parent: 1 + type: Transform + - uid: 19581 + components: + - pos: 46.5,-11.5 + parent: 1 + type: Transform + - uid: 19582 + components: + - pos: 43.5,-14.5 + parent: 1 + type: Transform + - uid: 19711 + components: + - pos: 45.5,19.5 + parent: 1 + type: Transform + - uid: 20600 + components: + - pos: 39.5,25.5 + parent: 1 + type: Transform + - uid: 20604 + components: + - pos: 44.5,19.5 + parent: 1 + type: Transform + - uid: 20607 + components: + - pos: 39.5,24.5 + parent: 1 + type: Transform + - uid: 20707 + components: + - pos: 40.5,24.5 + parent: 1 + type: Transform + - uid: 20709 + components: + - pos: 44.5,20.5 + parent: 1 + type: Transform + - uid: 20721 + components: + - pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 20750 + components: + - pos: 38.5,42.5 + parent: 1 + type: Transform + - uid: 20751 + components: + - pos: 35.5,41.5 + parent: 1 + type: Transform + - uid: 20752 + components: + - pos: 34.5,39.5 + parent: 1 + type: Transform + - uid: 20792 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 20795 + components: + - pos: -2.5,-4.5 + parent: 1 + type: Transform + - uid: 20888 + components: + - pos: 36.5,41.5 + parent: 1 + type: Transform + - uid: 20889 + components: + - pos: 38.5,43.5 + parent: 1 + type: Transform + - uid: 20890 + components: + - pos: 38.5,41.5 + parent: 1 + type: Transform + - uid: 20891 + components: + - pos: 35.5,40.5 + parent: 1 + type: Transform + - uid: 20902 + components: + - pos: 35.5,39.5 + parent: 1 + type: Transform + - uid: 20903 + components: + - pos: 37.5,41.5 + parent: 1 + type: Transform + - uid: 20904 + components: + - pos: 37.5,47.5 + parent: 1 + type: Transform + - uid: 20905 + components: + - pos: 36.5,48.5 + parent: 1 + type: Transform + - uid: 20906 + components: + - pos: 36.5,49.5 + parent: 1 + type: Transform + - uid: 20907 + components: + - pos: 34.5,51.5 + parent: 1 + type: Transform + - uid: 21111 + components: + - pos: 33.5,51.5 + parent: 1 + type: Transform + - uid: 21152 + components: + - pos: 35.5,50.5 + parent: 1 + type: Transform + - uid: 21153 + components: + - pos: 36.5,47.5 + parent: 1 + type: Transform + - uid: 21542 + components: + - pos: 33.5,52.5 + parent: 1 + type: Transform + - uid: 21977 + components: + - pos: 35.5,49.5 + parent: 1 + type: Transform + - uid: 21978 + components: + - pos: 38.5,47.5 + parent: 1 + type: Transform + - uid: 22175 + components: + - pos: -0.5,-10.5 + parent: 1 + type: Transform + - uid: 22196 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 22234 + components: + - pos: -2.5,-1.5 + parent: 1 + type: Transform + - uid: 22254 + components: + - pos: 26.5,52.5 + parent: 1 + type: Transform + - uid: 22255 + components: + - pos: 4.5,54.5 + parent: 1 + type: Transform + - uid: 22818 + components: + - pos: -64.5,11.5 + parent: 1 + type: Transform + - uid: 23448 + components: + - pos: -3.5,29.5 + parent: 1 + type: Transform + - uid: 23529 + components: + - pos: -9.5,11.5 + parent: 1 + type: Transform + - uid: 23585 + components: + - pos: 45.5,-8.5 + parent: 1 + type: Transform + - uid: 25118 + components: + - pos: -6.5,-10.5 + parent: 1 + type: Transform + - uid: 25120 + components: + - pos: -12.5,-5.5 + parent: 1 + type: Transform + - uid: 25121 + components: + - pos: -3.5,-10.5 + parent: 1 + type: Transform +- proto: WallSolidRust + entities: + - uid: 2288 + components: + - pos: 36.5,-41.5 + parent: 1 + type: Transform + - uid: 2812 + components: + - pos: 34.5,-37.5 + parent: 1 + type: Transform + - uid: 2813 + components: + - pos: 37.5,-33.5 + parent: 1 + type: Transform + - uid: 5435 + components: + - pos: -4.5,-35.5 + parent: 1 + type: Transform + - uid: 5440 + components: + - pos: -10.5,-35.5 + parent: 1 + type: Transform + - uid: 6908 + components: + - pos: -5.5,-35.5 + parent: 1 + type: Transform + - uid: 6909 + components: + - pos: -8.5,-38.5 + parent: 1 + type: Transform + - uid: 9578 + components: + - pos: -18.5,-10.5 + parent: 1 + type: Transform + - uid: 9903 + components: + - pos: 53.5,36.5 + parent: 1 + type: Transform + - uid: 9904 + components: + - pos: 52.5,36.5 + parent: 1 + type: Transform + - uid: 14429 + components: + - pos: -0.5,-31.5 + parent: 1 + type: Transform + - uid: 16462 + components: + - pos: 50.5,41.5 + parent: 1 + type: Transform + - uid: 16876 + components: + - pos: -24.5,-8.5 + parent: 1 + type: Transform + - uid: 16885 + components: + - pos: -9.5,-16.5 + parent: 1 + type: Transform +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 16716 + components: + - pos: 79.5,13.5 + parent: 1 + type: Transform + - uid: 21476 + components: + - pos: 77.5,23.5 + parent: 1 + type: Transform + - uid: 21480 + components: + - pos: 76.5,23.5 + parent: 1 + type: Transform +- proto: WallWood + entities: + - uid: 5136 + components: + - pos: 17.5,1.5 + parent: 1 + type: Transform + - uid: 5137 + components: + - pos: 16.5,1.5 + parent: 1 + type: Transform + - uid: 5138 + components: + - pos: 15.5,1.5 + parent: 1 + type: Transform + - uid: 5139 + components: + - pos: 14.5,1.5 + parent: 1 + type: Transform + - uid: 5140 + components: + - pos: 14.5,2.5 + parent: 1 + type: Transform + - uid: 5142 + components: + - pos: 14.5,4.5 + parent: 1 + type: Transform + - uid: 5143 + components: + - pos: 14.5,5.5 + parent: 1 + type: Transform + - uid: 5144 + components: + - pos: 14.5,6.5 + parent: 1 + type: Transform + - uid: 5145 + components: + - pos: 15.5,6.5 + parent: 1 + type: Transform + - uid: 5146 + components: + - pos: 16.5,6.5 + parent: 1 + type: Transform + - uid: 5147 + components: + - pos: 17.5,6.5 + parent: 1 + type: Transform +- proto: WardrobeAtmosphericsFilled + entities: + - uid: 2489 + components: + - pos: -36.5,26.5 + parent: 1 + type: Transform +- proto: WardrobeBlackFilled + entities: + - uid: 6274 + components: + - desc: A wardrobe packed with proper garb for a judge. + name: judge wardrobe + type: MetaData + - pos: 103.5,3.5 + parent: 1 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6275 + - 6276 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: WardrobeBlueFilled + entities: + - uid: 1937 + components: + - pos: 5.5,-11.5 + parent: 1 + type: Transform +- proto: WardrobeBotanistFilled + entities: + - uid: 852 + components: + - pos: -2.5,24.5 + parent: 1 + type: Transform +- proto: WardrobeCargoFilled + entities: + - uid: 11082 + components: + - pos: -11.5,-6.5 + parent: 1 + type: Transform + - uid: 11083 + components: + - pos: -11.5,-7.5 + parent: 1 + type: Transform +- proto: WardrobeChapelFilled + entities: + - uid: 7345 + components: + - pos: 15.5,48.5 + parent: 1 + type: Transform +- proto: WardrobeEngineeringFilled + entities: + - uid: 6794 + components: + - pos: -41.5,12.5 + parent: 1 + type: Transform +- proto: WardrobeGreenFilled + entities: + - uid: 1940 + components: + - pos: 8.5,-11.5 + parent: 1 + type: Transform + - uid: 12866 + components: + - pos: 33.5,-44.5 + parent: 1 + type: Transform +- proto: WardrobeMixedFilled + entities: + - uid: 1939 + components: + - pos: 7.5,-11.5 + parent: 1 + type: Transform + - uid: 15950 + components: + - pos: 23.5,48.5 + parent: 1 + type: Transform +- proto: WardrobePinkFilled + entities: + - uid: 1938 + components: + - pos: 6.5,-11.5 + parent: 1 + type: Transform +- proto: WardrobePrisonFilled + entities: + - uid: 7177 + components: + - pos: 63.5,16.5 + parent: 1 + type: Transform + - uid: 7178 + components: + - pos: 67.5,16.5 + parent: 1 + type: Transform +- proto: WardrobeSalvageFilled + entities: + - uid: 6792 + components: + - pos: -47.5,-27.5 + parent: 1 + type: Transform + - uid: 6836 + components: + - pos: -48.5,-27.5 + parent: 1 + type: Transform +- proto: WardrobeYellowFilled + entities: + - uid: 1936 + components: + - pos: 4.5,-11.5 + parent: 1 + type: Transform +- proto: WarningCO2 + entities: + - uid: 228 + components: + - pos: -42.5,33.5 + parent: 1 + type: Transform + - uid: 232 + components: + - pos: -42.5,29.5 + parent: 1 + type: Transform +- proto: WarningN2 + entities: + - uid: 212 + components: + - pos: -50.5,29.5 + parent: 1 + type: Transform + - uid: 216 + components: + - pos: -50.5,33.5 + parent: 1 + type: Transform +- proto: WarningO2 + entities: + - uid: 220 + components: + - pos: -52.5,33.5 + parent: 1 + type: Transform + - uid: 224 + components: + - pos: -52.5,29.5 + parent: 1 + type: Transform +- proto: WarningPlasma + entities: + - uid: 235 + components: + - pos: -46.5,33.5 + parent: 1 + type: Transform + - uid: 236 + components: + - pos: -46.5,29.5 + parent: 1 + type: Transform +- proto: WarningTritium + entities: + - uid: 164 + components: + - pos: -48.5,29.5 + parent: 1 + type: Transform + - uid: 165 + components: + - pos: -48.5,33.5 + parent: 1 + type: Transform +- proto: WarningWaste + entities: + - uid: 237 + components: + - pos: -44.5,29.5 + parent: 1 + type: Transform + - uid: 238 + components: + - pos: -44.5,33.5 + parent: 1 + type: Transform +- proto: WarpPoint + entities: + - uid: 849 + components: + - pos: 29.5,19.5 + parent: 1 + type: Transform + - location: Bar/Boxing + type: WarpPoint + - type: BombingTarget + - color: '#791500FF' + text: Bar-Boxing-Casino + type: NavMapBeacon + - uid: 995 + components: + - pos: 3.5,20.5 + parent: 1 + type: Transform + - location: Kitchen/Botany + type: WarpPoint + - type: BombingTarget + - color: '#9FED58FF' + text: Kitchen-Botany + type: NavMapBeacon + - uid: 14927 + components: + - pos: 66.5,-9.5 + parent: 1 + type: Transform + - location: Medbay + type: WarpPoint + - color: '#52B4E9FF' + text: Medbay + type: NavMapBeacon + - type: BombingTarget + - uid: 16875 + components: + - pos: 12.5,-47.5 + parent: 1 + type: Transform + - location: Arrivals/Evac + type: WarpPoint + - color: '#D4D4D4FF' + text: Arrivals-Evac + type: NavMapBeacon + - uid: 16877 + components: + - pos: 44.5,-5.5 + parent: 1 + type: Transform + - location: News/Entertainment Studio + type: WarpPoint + - type: BombingTarget + - color: '#9FED58FF' + text: Nanotrasen News + type: NavMapBeacon + - uid: 16878 + components: + - pos: 18.5,-7.5 + parent: 1 + type: Transform + - location: Barber Shop/Arcade + type: WarpPoint + - color: '#D4D4D4FF' + text: Shopping District + type: NavMapBeacon + - uid: 16879 + components: + - pos: 25.5,4.5 + parent: 1 + type: Transform + - location: Central Park + type: WarpPoint + - type: BombingTarget + - color: '#D4D4D4FF' + text: Central Park + type: NavMapBeacon + - uid: 16882 + components: + - pos: -17.5,15.5 + parent: 1 + type: Transform + - location: Janitor/Recycling Room + type: WarpPoint + - color: '#9FED58FF' + text: Janitor-Recycling + type: NavMapBeacon + - uid: 16883 + components: + - pos: -48.5,28.5 + parent: 1 + type: Transform + - location: Atmospherics + type: WarpPoint + - color: '#EFB341FF' + text: Atmospherics + type: NavMapBeacon + - uid: 16884 + components: + - pos: -46.5,2.5 + parent: 1 + type: Transform + - location: Engineering + type: WarpPoint + - type: BombingTarget + - color: '#EFB341FF' + text: Engineering + type: NavMapBeacon + - uid: 16886 + components: + - pos: 12.5,44.5 + parent: 1 + type: Transform + - location: Epistemics + type: WarpPoint + - color: '#D381C9FF' + text: Epistemics + type: NavMapBeacon + - uid: 18015 + components: + - pos: 70.5,22.5 + parent: 1 + type: Transform + - location: Sec/Perma + type: WarpPoint + - type: BombingTarget + - color: '#DE3A3AFF' + text: Security + type: NavMapBeacon + - uid: 23823 + components: + - pos: 105.5,4.5 + parent: 1 + type: Transform + - location: Bridge/Courtroom + type: WarpPoint + - type: BombingTarget + - color: '#334E6DFF' + text: Bridge + type: NavMapBeacon +- proto: WarpPointBeaconCargo + entities: + - uid: 22088 + components: + - pos: -7.5,-7.5 + parent: 1 + type: Transform + - text: Cargo-Mailroom + type: NavMapBeacon + - location: Cargo + type: WarpPoint + - type: BombingTarget + - uid: 23773 + components: + - pos: -41.5,-27.5 + parent: 1 + type: Transform + - text: Salvage + type: NavMapBeacon + - location: Salvage + type: WarpPoint + - type: BombingTarget +- proto: WarpPointBeaconCommand + entities: + - uid: 25243 + components: + - pos: 3.5,-0.5 + parent: 1 + type: Transform + - text: Head of Personnel Office + type: NavMapBeacon + - location: Head of Personnel Office + type: WarpPoint + - type: BombingTarget +- proto: WarpPointBeaconService + entities: + - uid: 25242 + components: + - pos: 3.5,-14.5 + parent: 1 + type: Transform + - text: Service Lounge + type: NavMapBeacon + - location: Service Lounge + type: WarpPoint +- proto: WarpPointBombing + entities: + - uid: 25241 + components: + - pos: -87.5,4.5 + parent: 1 + type: Transform + - location: Singularity + type: WarpPoint +- proto: WashingMachine + entities: + - uid: 2121 + components: + - pos: -14.5,14.5 + parent: 1 + type: Transform + - uid: 3384 + components: + - pos: -15.5,14.5 + parent: 1 + type: Transform + - uid: 11174 + components: + - pos: -13.5,17.5 + parent: 1 + type: Transform + - type: ItemCooldown +- proto: WashingMachineBroken + entities: + - uid: 73 + components: + - pos: -12.5,17.5 + parent: 1 + type: Transform +- proto: WashingMachineFilledClothes + entities: + - uid: 2992 + components: + - pos: -14.5,17.5 + parent: 1 + type: Transform +- proto: WaterCooler + entities: + - uid: 2140 + components: + - pos: -14.5,-5.5 + parent: 1 + type: Transform + - uid: 2858 + components: + - pos: 45.5,-9.5 + parent: 1 + type: Transform + - uid: 2991 + components: + - pos: 91.5,25.5 + parent: 1 + type: Transform + - uid: 2996 + components: + - pos: 17.5,22.5 + parent: 1 + type: Transform + - uid: 5736 + components: + - pos: 77.5,-2.5 + parent: 1 + type: Transform + - uid: 7139 + components: + - pos: 67.5,22.5 + parent: 1 + type: Transform + - uid: 7548 + components: + - pos: 44.5,11.5 + parent: 1 + type: Transform + - uid: 7618 + components: + - pos: 82.5,-13.5 + parent: 1 + type: Transform + - uid: 12463 + components: + - pos: 3.5,-43.5 + parent: 1 + type: Transform + - uid: 13796 + components: + - pos: 23.5,-33.5 + parent: 1 + type: Transform + - uid: 16554 + components: + - pos: 47.5,39.5 + parent: 1 + type: Transform +- proto: WaterTank + entities: + - uid: 9135 + components: + - pos: -14.5,26.5 + parent: 1 + type: Transform + - uid: 12321 + components: + - pos: -35.5,-29.5 + parent: 1 + type: Transform +- proto: WaterTankFull + entities: + - uid: 6793 + components: + - pos: -53.5,-20.5 + parent: 1 + type: Transform + - uid: 10020 + components: + - pos: 33.5,38.5 + parent: 1 + type: Transform + - uid: 15797 + components: + - pos: -53.5,-6.5 + parent: 1 + type: Transform + - uid: 16020 + components: + - pos: 36.5,26.5 + parent: 1 + type: Transform + - uid: 16272 + components: + - pos: 92.5,-11.5 + parent: 1 + type: Transform + - uid: 16350 + components: + - pos: 34.5,-18.5 + parent: 1 + type: Transform + - uid: 16602 + components: + - pos: 57.5,7.5 + parent: 1 + type: Transform +- proto: WaterTankHighCapacity + entities: + - uid: 1161 + components: + - pos: 8.5,17.5 + parent: 1 + type: Transform + - uid: 5326 + components: + - pos: 81.5,25.5 + parent: 1 + type: Transform + - uid: 7118 + components: + - pos: -18.5,12.5 + parent: 1 + type: Transform +- proto: WeaponCapacitorRecharger + entities: + - uid: 1491 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-35.5 + parent: 1 + type: Transform + - uid: 4025 + components: + - pos: 67.5,12.5 + parent: 1 + type: Transform + - uid: 4082 + components: + - pos: 66.5,12.5 + parent: 1 + type: Transform + - uid: 5508 + components: + - pos: 72.5,7.5 + parent: 1 + type: Transform + - uid: 9853 + components: + - pos: 105.5,7.5 + parent: 1 + type: Transform + - uid: 9854 + components: + - pos: 104.5,7.5 + parent: 1 + type: Transform +- proto: WeaponEnergyGunPistol + entities: + - uid: 21591 + components: + - rot: 1.5707963267948966 rad + pos: 78.404945,11.145396 + parent: 1 + type: Transform + - currentFireMode: + state: disabler + name: disable + fireCost: 100 + proto: BulletDisabler + type: EnergyGun + - heldPrefix: disabler + type: Item +- proto: WeaponFlareGun + entities: + - uid: 4352 + components: + - pos: 15.467109,-17.42872 + parent: 1 + type: Transform +- proto: WeaponLauncherRocket + entities: + - uid: 21478 + components: + - rot: 3.141592653589793 rad + pos: 82.50444,10.569468 + parent: 1 + type: Transform + - uid: 21481 + components: + - pos: 82.52527,10.611163 + parent: 1 + type: Transform +- proto: WeaponShotgunBulldog + entities: + - uid: 16686 + components: + - desc: NanoTrasen's attempt at recreating the Syndicate's infamous bulldog, an automatic drum-fed shotgun. The design was rejected for full distribution because it was "More of a rip-off then a remake." Uses .50 shotgun shells. + name: HoS's Prototype Pitbull + type: MetaData + - rot: 3.141592653589793 rad + pos: 76.54642,15.603033 + parent: 1 + type: Transform +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 9783 + components: + - pos: 122.5,6.5 + parent: 1 + type: Transform + - uid: 9784 + components: + - pos: 124.5,6.5 + parent: 1 + type: Transform + - uid: 9785 + components: + - pos: 121.5,1.5 + parent: 1 + type: Transform + - uid: 9786 + components: + - pos: 123.5,1.5 + parent: 1 + type: Transform +- proto: WeaponWaterBlaster + entities: + - uid: 16680 + components: + - rot: 3.141592653589793 rad + pos: 78.507545,10.626206 + parent: 1 + type: Transform + - uid: 16732 + components: + - rot: 3.141592653589793 rad + pos: 99.58242,-2.7569826 + parent: 1 + type: Transform +- proto: WeaponWaterPistol + entities: + - uid: 10326 + components: + - flags: InContainer + type: MetaData + - parent: 12295 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: Welder + entities: + - uid: 15781 + components: + - rot: -1.5707963267948966 rad + pos: -58.424507,8.528301 + parent: 1 + type: Transform + - uid: 22758 + components: + - rot: -1.5707963267948966 rad + pos: -37.480576,35.490395 + parent: 1 + type: Transform + - uid: 22910 + components: + - rot: 3.141592653589793 rad + pos: -9.558419,-42.438652 + parent: 1 + type: Transform +- proto: WeldingFuelTankFull + entities: + - uid: 7626 + components: + - pos: 57.5,-11.5 + parent: 1 + type: Transform + - uid: 9136 + components: + - pos: -17.5,24.5 + parent: 1 + type: Transform + - uid: 9552 + components: + - pos: -40.5,-32.5 + parent: 1 + type: Transform + - uid: 12320 + components: + - pos: -35.5,-28.5 + parent: 1 + type: Transform + - uid: 13228 + components: + - pos: 45.5,35.5 + parent: 1 + type: Transform + - uid: 15777 + components: + - pos: -61.5,7.5 + parent: 1 + type: Transform + - uid: 15936 + components: + - pos: -10.5,40.5 + parent: 1 + type: Transform + - uid: 16349 + components: + - pos: 35.5,-18.5 + parent: 1 + type: Transform +- proto: WeldingFuelTankHighCapacity + entities: + - uid: 4334 + components: + - pos: 17.5,-15.5 + parent: 1 + type: Transform + - uid: 6389 + components: + - pos: -42.5,-0.5 + parent: 1 + type: Transform +- proto: WetFloorSign + entities: + - uid: 12354 + components: + - pos: -2.6297998,-30.000998 + parent: 1 + type: Transform + - uid: 23616 + components: + - pos: -18.728722,11.839817 + parent: 1 + type: Transform + - uid: 23617 + components: + - pos: -18.770388,11.47498 + parent: 1 + type: Transform +- proto: WheatBushel + entities: + - uid: 1185 + components: + - pos: -1.452406,14.577756 + parent: 1 + type: Transform + - uid: 1186 + components: + - pos: -0.48365605,14.588181 + parent: 1 + type: Transform + - uid: 1187 + components: + - pos: 0.55801064,14.598604 + parent: 1 + type: Transform + - uid: 4277 + components: + - pos: 30.502996,0.58564115 + parent: 1 + type: Transform + - uid: 4278 + components: + - pos: 30.648829,0.58564115 + parent: 1 + type: Transform +- proto: Windoor + entities: + - uid: 1855 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-12.5 + parent: 1 + type: Transform + - uid: 2988 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,50.5 + parent: 1 + type: Transform + - uid: 5169 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,8.5 + parent: 1 + type: Transform + - uid: 5170 + components: + - rot: 3.141592653589793 rad + pos: -9.5,6.5 + parent: 1 + type: Transform + - uid: 5177 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 5178 + components: + - rot: 3.141592653589793 rad + pos: -8.5,6.5 + parent: 1 + type: Transform + - uid: 6971 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-17.5 + parent: 1 + type: Transform + - uid: 12322 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-29.5 + parent: 1 + type: Transform + - uid: 12323 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-28.5 + parent: 1 + type: Transform + - uid: 12346 + components: + - pos: -5.5,-28.5 + parent: 1 + type: Transform + - uid: 12347 + components: + - pos: -0.5,-28.5 + parent: 1 + type: Transform + - uid: 22756 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,22.5 + parent: 1 + type: Transform +- proto: WindoorBarLocked + entities: + - uid: 932 + components: + - rot: 3.141592653589793 rad + pos: 33.5,18.5 + parent: 1 + type: Transform + - uid: 2943 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,19.5 + parent: 1 + type: Transform + - uid: 3297 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,19.5 + parent: 1 + type: Transform +- proto: WindoorCargoLocked + entities: + - uid: 1892 + components: + - pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 2044 + components: + - pos: -16.5,1.5 + parent: 1 + type: Transform +- proto: WindoorHydroponicsLocked + entities: + - uid: 885 + components: + - pos: 7.5,18.5 + parent: 1 + type: Transform + - uid: 1006 + components: + - rot: 3.141592653589793 rad + pos: 7.5,13.5 + parent: 1 + type: Transform + - uid: 1176 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,16.5 + parent: 1 + type: Transform + - uid: 1177 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,16.5 + parent: 1 + type: Transform +- proto: WindoorKitchenLocked + entities: + - uid: 898 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,19.5 + parent: 1 + type: Transform + - uid: 1024 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,21.5 + parent: 1 + type: Transform + - uid: 1045 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,20.5 + parent: 1 + type: Transform + - uid: 1140 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-44.5 + parent: 1 + type: Transform + - uid: 1141 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-43.5 + parent: 1 + type: Transform +- proto: WindoorSecure + entities: + - uid: 2500 + components: + - pos: 26.5,29.5 + parent: 1 + type: Transform + - uid: 2755 + components: + - rot: 1.5707963267948966 rad + pos: 55.5,17.5 + parent: 1 + type: Transform + - uid: 3028 + components: + - pos: 31.5,29.5 + parent: 1 + type: Transform + - uid: 3430 + components: + - rot: -1.5707963267948966 rad + pos: 77.5,4.5 + parent: 1 + type: Transform + - uid: 3454 + components: + - rot: -1.5707963267948966 rad + pos: 77.5,3.5 + parent: 1 + type: Transform + - uid: 4037 + components: + - pos: 67.5,9.5 + parent: 1 + type: Transform + - uid: 4084 + components: + - rot: 1.5707963267948966 rad + pos: 71.5,3.5 + parent: 1 + type: Transform + - uid: 4094 + components: + - rot: 1.5707963267948966 rad + pos: 71.5,4.5 + parent: 1 + type: Transform + - uid: 5424 + components: + - rot: 1.5707963267948966 rad + pos: 81.5,28.5 + parent: 1 + type: Transform + - uid: 5616 + components: + - rot: 3.141592653589793 rad + pos: 69.5,-5.5 + parent: 1 + type: Transform + - uid: 6033 + components: + - pos: -28.5,26.5 + parent: 1 + type: Transform + - uid: 6035 + components: + - pos: -29.5,26.5 + parent: 1 + type: Transform + - uid: 6149 + components: + - pos: -18.5,27.5 + parent: 1 + type: Transform + - uid: 6207 + components: + - rot: -1.5707963267948966 rad + pos: 98.5,0.5 + parent: 1 + type: Transform + - uid: 6519 + components: + - pos: -19.5,27.5 + parent: 1 + type: Transform + - uid: 6823 + components: + - rot: 3.141592653589793 rad + pos: -53.5,-29.5 + parent: 1 + type: Transform + - uid: 6824 + components: + - rot: 3.141592653589793 rad + pos: -51.5,-29.5 + parent: 1 + type: Transform + - uid: 6825 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-29.5 + parent: 1 + type: Transform + - uid: 6905 + components: + - pos: 31.5,-28.5 + parent: 1 + type: Transform + - uid: 8150 + components: + - rot: 1.5707963267948966 rad + pos: 55.5,15.5 + parent: 1 + type: Transform + - uid: 8329 + components: + - rot: 1.5707963267948966 rad + pos: 55.5,16.5 + parent: 1 + type: Transform + - uid: 8612 + components: + - pos: 26.5,-28.5 + parent: 1 + type: Transform + - uid: 16047 + components: + - rot: 3.141592653589793 rad + pos: -6.5,35.5 + parent: 1 + type: Transform + - uid: 16048 + components: + - rot: 3.141592653589793 rad + pos: -1.5,35.5 + parent: 1 + type: Transform + - uid: 16085 + components: + - rot: 3.141592653589793 rad + pos: 25.5,35.5 + parent: 1 + type: Transform + - uid: 16086 + components: + - rot: 3.141592653589793 rad + pos: 30.5,35.5 + parent: 1 + type: Transform + - uid: 16140 + components: + - rot: 3.141592653589793 rad + pos: 50.5,-30.5 + parent: 1 + type: Transform + - uid: 16143 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-30.5 + parent: 1 + type: Transform + - uid: 16144 + components: + - rot: 3.141592653589793 rad + pos: 51.5,-30.5 + parent: 1 + type: Transform + - uid: 16322 + components: + - rot: -1.5707963267948966 rad + pos: 51.5,-9.5 + parent: 1 + type: Transform + - uid: 22651 + components: + - rot: 3.141592653589793 rad + pos: 89.5,-19.5 + parent: 1 + type: Transform + - uid: 22652 + components: + - rot: 3.141592653589793 rad + pos: 90.5,-19.5 + parent: 1 + type: Transform + - uid: 22653 + components: + - rot: 3.141592653589793 rad + pos: 91.5,-19.5 + parent: 1 + type: Transform + - uid: 22827 + components: + - pos: -64.5,15.5 + parent: 1 + type: Transform + - uid: 22828 + components: + - pos: -63.5,15.5 + parent: 1 + type: Transform + - uid: 22891 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-16.5 + parent: 1 + type: Transform + - uid: 23470 + components: + - pos: -13.5,29.5 + parent: 1 + type: Transform + - uid: 23471 + components: + - pos: -8.5,29.5 + parent: 1 + type: Transform + - uid: 23916 + components: + - rot: 1.5707963267948966 rad + pos: 71.5,24.5 + parent: 1 + type: Transform +- proto: WindoorSecureArmoryLocked + entities: + - uid: 4778 + components: + - pos: 80.5,18.5 + parent: 1 + type: Transform + - uid: 4847 + components: + - pos: 81.5,18.5 + parent: 1 + type: Transform + - uid: 9863 + components: + - rot: 3.141592653589793 rad + pos: 64.5,19.5 + parent: 1 + type: Transform + - uid: 9966 + components: + - rot: 3.141592653589793 rad + pos: 63.5,19.5 + parent: 1 + type: Transform +- proto: WindoorSecureChemistryLocked + entities: + - uid: 5640 + components: + - rot: 1.5707963267948966 rad + pos: 68.5,-12.5 + parent: 1 + type: Transform + - uid: 5641 + components: + - rot: 1.5707963267948966 rad + pos: 68.5,-11.5 + parent: 1 + type: Transform + - uid: 5642 + components: + - rot: 1.5707963267948966 rad + pos: 68.5,-10.5 + parent: 1 + type: Transform +- proto: WindoorSecureCommandLocked + entities: + - uid: 9779 + components: + - rot: -1.5707963267948966 rad + pos: 129.5,3.5 + parent: 1 + type: Transform + - uid: 9780 + components: + - rot: -1.5707963267948966 rad + pos: 129.5,4.5 + parent: 1 + type: Transform + - uid: 10329 + components: + - rot: 3.141592653589793 rad + pos: 78.5,5.5 + parent: 1 + type: Transform + - uid: 21466 + components: + - rot: 3.141592653589793 rad + pos: 101.5,5.5 + parent: 1 + type: Transform +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 2519 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,4.5 + parent: 1 + type: Transform + - uid: 2521 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,5.5 + parent: 1 + type: Transform + - uid: 7003 + components: + - pos: 56.5,1.5 + parent: 1 + type: Transform +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 1676 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 1 + type: Transform +- proto: WindoorSecureMedicalLocked + entities: + - uid: 3418 + components: + - rot: 3.141592653589793 rad + pos: -21.5,9.5 + parent: 1 + type: Transform + - uid: 3419 + components: + - rot: 3.141592653589793 rad + pos: -23.5,9.5 + parent: 1 + type: Transform + - uid: 5590 + components: + - pos: 65.5,-1.5 + parent: 1 + type: Transform + - uid: 5591 + components: + - pos: 66.5,-1.5 + parent: 1 + type: Transform + - uid: 5614 + components: + - pos: 69.5,-5.5 + parent: 1 + type: Transform + - uid: 5643 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,-12.5 + parent: 1 + type: Transform + - uid: 5644 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,-11.5 + parent: 1 + type: Transform + - uid: 5645 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,-10.5 + parent: 1 + type: Transform + - uid: 7700 + components: + - pos: 89.5,-7.5 + parent: 1 + type: Transform +- proto: WindoorSecureScienceLocked + entities: + - uid: 3878 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,43.5 + parent: 1 + type: Transform + - uid: 25732 + components: + - rot: 3.141592653589793 rad + pos: 0.5,39.5 + parent: 1 + type: Transform +- proto: WindoorSecureSecurityLawyerLocked + entities: + - uid: 22408 + components: + - rot: 1.5707963267948966 rad + pos: 96.5,4.5 + parent: 1 + type: Transform +- proto: WindoorSecureSecurityLocked + entities: + - uid: 839 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-33.5 + parent: 1 + type: Transform + - uid: 893 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-33.5 + parent: 1 + type: Transform + - uid: 920 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-32.5 + parent: 1 + type: Transform + - uid: 958 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-33.5 + parent: 1 + type: Transform + - uid: 970 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-32.5 + parent: 1 + type: Transform + - uid: 1039 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-32.5 + parent: 1 + type: Transform + - uid: 1446 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-33.5 + parent: 1 + type: Transform + - uid: 1489 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-32.5 + parent: 1 + type: Transform + - uid: 4080 + components: + - rot: 3.141592653589793 rad + pos: 67.5,9.5 + parent: 1 + type: Transform + - uid: 5096 + components: + - pos: -21.5,1.5 + parent: 1 + type: Transform + - uid: 5106 + components: + - pos: -22.5,-4.5 + parent: 1 + type: Transform + - uid: 5277 + components: + - rot: 3.141592653589793 rad + pos: 64.5,27.5 + parent: 1 + type: Transform + - uid: 5278 + components: + - rot: 3.141592653589793 rad + pos: 67.5,27.5 + parent: 1 + type: Transform + - uid: 5279 + components: + - pos: 67.5,26.5 + parent: 1 + type: Transform + - uid: 5280 + components: + - pos: 64.5,26.5 + parent: 1 + type: Transform + - uid: 5315 + components: + - rot: 3.141592653589793 rad + pos: 70.5,27.5 + parent: 1 + type: Transform + - uid: 5498 + components: + - pos: 73.5,6.5 + parent: 1 + type: Transform + - uid: 12103 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,20.5 + parent: 1 + type: Transform + - uid: 12104 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,21.5 + parent: 1 + type: Transform + - uid: 23917 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,24.5 + parent: 1 + type: Transform +- proto: WindoorServiceLocked + entities: + - uid: 3258 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,14.5 + parent: 1 + type: Transform + - uid: 3273 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,14.5 + parent: 1 + type: Transform + - uid: 4251 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-0.5 + parent: 1 + type: Transform + - uid: 4252 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-0.5 + parent: 1 + type: Transform + - uid: 4253 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-0.5 + parent: 1 + type: Transform + - uid: 4254 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-0.5 + parent: 1 + type: Transform + - uid: 4263 + components: + - pos: 26.5,2.5 + parent: 1 + type: Transform +- proto: WindoorTheatreLocked + entities: + - uid: 5154 + components: + - rot: 3.141592653589793 rad + pos: 16.5,4.5 + parent: 1 + type: Transform + - uid: 5155 + components: + - pos: 16.5,3.5 + parent: 1 + type: Transform + - uid: 7235 + components: + - pos: 26.5,20.5 + parent: 1 + type: Transform + - uid: 7237 + components: + - pos: 36.5,23.5 + parent: 1 + type: Transform + - uid: 12452 + components: + - rot: 3.141592653589793 rad + pos: 24.5,18.5 + parent: 1 + type: Transform + - uid: 13795 + components: + - rot: 3.141592653589793 rad + pos: 22.5,18.5 + parent: 1 + type: Transform + - uid: 16323 + components: + - pos: 44.5,-3.5 + parent: 1 + type: Transform +- proto: Window + entities: + - uid: 488 + components: + - pos: 7.5,42.5 + parent: 1 + type: Transform + - uid: 489 + components: + - pos: 7.5,44.5 + parent: 1 + type: Transform + - uid: 543 + components: + - pos: -10.5,17.5 + parent: 1 + type: Transform + - uid: 912 + components: + - pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 913 + components: + - pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 919 + components: + - pos: 8.5,13.5 + parent: 1 + type: Transform + - uid: 1005 + components: + - pos: 6.5,13.5 + parent: 1 + type: Transform + - uid: 1010 + components: + - pos: 6.5,18.5 + parent: 1 + type: Transform + - uid: 1017 + components: + - pos: 8.5,18.5 + parent: 1 + type: Transform + - uid: 1036 + components: + - pos: 8.5,22.5 + parent: 1 + type: Transform + - uid: 1123 + components: + - pos: 14.5,-43.5 + parent: 1 + type: Transform + - uid: 1124 + components: + - pos: 14.5,-44.5 + parent: 1 + type: Transform + - uid: 1125 + components: + - pos: 15.5,-45.5 + parent: 1 + type: Transform + - uid: 1142 + components: + - pos: 16.5,-45.5 + parent: 1 + type: Transform + - uid: 1210 + components: + - pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 1214 + components: + - pos: 3.5,13.5 + parent: 1 + type: Transform + - uid: 1229 + components: + - pos: 4.5,13.5 + parent: 1 + type: Transform + - uid: 1276 + components: + - pos: -12.5,18.5 + parent: 1 + type: Transform + - uid: 1325 + components: + - pos: 50.5,-26.5 + parent: 1 + type: Transform + - uid: 1356 + components: + - pos: -10.5,16.5 + parent: 1 + type: Transform + - uid: 1383 + components: + - pos: -11.5,18.5 + parent: 1 + type: Transform + - uid: 1508 + components: + - pos: 16.5,-40.5 + parent: 1 + type: Transform + - uid: 1664 + components: + - pos: 7.5,-1.5 + parent: 1 + type: Transform + - uid: 1665 + components: + - pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 1861 + components: + - pos: -12.5,0.5 + parent: 1 + type: Transform + - uid: 1886 + components: + - pos: -12.5,-3.5 + parent: 1 + type: Transform + - uid: 1889 + components: + - pos: -9.5,-1.5 + parent: 1 + type: Transform + - uid: 1890 + components: + - pos: -7.5,-1.5 + parent: 1 + type: Transform + - uid: 1891 + components: + - pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 1913 + components: + - pos: 9.5,-13.5 + parent: 1 + type: Transform + - uid: 1915 + components: + - pos: 9.5,-11.5 + parent: 1 + type: Transform + - uid: 2035 + components: + - pos: -14.5,1.5 + parent: 1 + type: Transform + - uid: 2041 + components: + - pos: -15.5,1.5 + parent: 1 + type: Transform + - uid: 2042 + components: + - pos: -17.5,1.5 + parent: 1 + type: Transform + - uid: 2043 + components: + - pos: -18.5,1.5 + parent: 1 + type: Transform + - uid: 2377 + components: + - pos: -52.5,2.5 + parent: 1 + type: Transform + - uid: 2378 + components: + - pos: -52.5,5.5 + parent: 1 + type: Transform + - uid: 2460 + components: + - pos: -49.5,10.5 + parent: 1 + type: Transform + - uid: 2461 + components: + - pos: -49.5,8.5 + parent: 1 + type: Transform + - uid: 2527 + components: + - pos: -49.5,2.5 + parent: 1 + type: Transform + - uid: 2528 + components: + - pos: -49.5,1.5 + parent: 1 + type: Transform + - uid: 2529 + components: + - pos: -49.5,-0.5 + parent: 1 + type: Transform + - uid: 2530 + components: + - pos: -49.5,-1.5 + parent: 1 + type: Transform + - uid: 2535 + components: + - pos: -52.5,4.5 + parent: 1 + type: Transform + - uid: 2632 + components: + - pos: 40.5,-0.5 + parent: 1 + type: Transform + - uid: 2634 + components: + - pos: 40.5,0.5 + parent: 1 + type: Transform + - uid: 2635 + components: + - pos: 40.5,-1.5 + parent: 1 + type: Transform + - uid: 2684 + components: + - pos: 40.5,-2.5 + parent: 1 + type: Transform + - uid: 2709 + components: + - pos: 37.5,-8.5 + parent: 1 + type: Transform + - uid: 2713 + components: + - pos: 39.5,-8.5 + parent: 1 + type: Transform + - uid: 2715 + components: + - pos: 39.5,-5.5 + parent: 1 + type: Transform + - uid: 2716 + components: + - pos: 37.5,-5.5 + parent: 1 + type: Transform + - uid: 3076 + components: + - pos: 40.5,12.5 + parent: 1 + type: Transform + - uid: 3077 + components: + - pos: 40.5,11.5 + parent: 1 + type: Transform + - uid: 3079 + components: + - pos: 40.5,8.5 + parent: 1 + type: Transform + - uid: 3518 + components: + - pos: 40.5,9.5 + parent: 1 + type: Transform + - uid: 3521 + components: + - pos: 62.5,-7.5 + parent: 1 + type: Transform + - uid: 3533 + components: + - pos: -18.5,6.5 + parent: 1 + type: Transform + - uid: 3534 + components: + - pos: -15.5,6.5 + parent: 1 + type: Transform + - uid: 3535 + components: + - pos: -16.5,6.5 + parent: 1 + type: Transform + - uid: 3900 + components: + - pos: 31.5,-5.5 + parent: 1 + type: Transform + - uid: 3901 + components: + - pos: 32.5,-5.5 + parent: 1 + type: Transform + - uid: 3902 + components: + - pos: 34.5,-5.5 + parent: 1 + type: Transform + - uid: 3903 + components: + - pos: 35.5,-5.5 + parent: 1 + type: Transform + - uid: 4214 + components: + - pos: 33.5,2.5 + parent: 1 + type: Transform + - uid: 4215 + components: + - pos: 32.5,2.5 + parent: 1 + type: Transform + - uid: 4227 + components: + - pos: 24.5,0.5 + parent: 1 + type: Transform + - uid: 4274 + components: + - pos: 25.5,2.5 + parent: 1 + type: Transform + - uid: 4275 + components: + - pos: 27.5,2.5 + parent: 1 + type: Transform + - uid: 4276 + components: + - pos: 28.5,2.5 + parent: 1 + type: Transform + - uid: 4284 + components: + - pos: 35.5,2.5 + parent: 1 + type: Transform + - uid: 4296 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 4297 + components: + - pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 4298 + components: + - pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 4299 + components: + - pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 4300 + components: + - pos: 5.5,8.5 + parent: 1 + type: Transform + - uid: 4301 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 4302 + components: + - pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 4304 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 4312 + components: + - pos: 14.5,-8.5 + parent: 1 + type: Transform + - uid: 4313 + components: + - pos: 14.5,-7.5 + parent: 1 + type: Transform + - uid: 4314 + components: + - pos: 14.5,-6.5 + parent: 1 + type: Transform + - uid: 4315 + components: + - pos: 14.5,-5.5 + parent: 1 + type: Transform + - uid: 4316 + components: + - pos: 15.5,-5.5 + parent: 1 + type: Transform + - uid: 4317 + components: + - pos: 16.5,-5.5 + parent: 1 + type: Transform + - uid: 4318 + components: + - pos: 17.5,-5.5 + parent: 1 + type: Transform + - uid: 4325 + components: + - pos: 20.5,-5.5 + parent: 1 + type: Transform + - uid: 4326 + components: + - pos: 14.5,-10.5 + parent: 1 + type: Transform + - uid: 4327 + components: + - pos: 14.5,-11.5 + parent: 1 + type: Transform + - uid: 4380 + components: + - pos: 24.5,1.5 + parent: 1 + type: Transform + - uid: 4389 + components: + - pos: 22.5,-5.5 + parent: 1 + type: Transform + - uid: 4390 + components: + - pos: 23.5,-5.5 + parent: 1 + type: Transform + - uid: 4391 + components: + - pos: 24.5,-5.5 + parent: 1 + type: Transform + - uid: 4392 + components: + - pos: 27.5,-5.5 + parent: 1 + type: Transform + - uid: 4393 + components: + - pos: 28.5,-5.5 + parent: 1 + type: Transform + - uid: 4394 + components: + - pos: 29.5,-5.5 + parent: 1 + type: Transform + - uid: 4405 + components: + - pos: 41.5,6.5 + parent: 1 + type: Transform + - uid: 4406 + components: + - pos: 42.5,6.5 + parent: 1 + type: Transform + - uid: 4407 + components: + - pos: 43.5,6.5 + parent: 1 + type: Transform + - uid: 4410 + components: + - pos: 40.5,10.5 + parent: 1 + type: Transform + - uid: 4454 + components: + - pos: 21.5,44.5 + parent: 1 + type: Transform + - uid: 4455 + components: + - pos: 21.5,46.5 + parent: 1 + type: Transform + - uid: 4458 + components: + - pos: 16.5,44.5 + parent: 1 + type: Transform + - uid: 4459 + components: + - pos: 16.5,46.5 + parent: 1 + type: Transform + - uid: 4506 + components: + - pos: 8.5,39.5 + parent: 1 + type: Transform + - uid: 4507 + components: + - pos: 9.5,39.5 + parent: 1 + type: Transform + - uid: 4508 + components: + - pos: 10.5,39.5 + parent: 1 + type: Transform + - uid: 4509 + components: + - pos: 13.5,39.5 + parent: 1 + type: Transform + - uid: 4510 + components: + - pos: 14.5,39.5 + parent: 1 + type: Transform + - uid: 4511 + components: + - pos: 15.5,39.5 + parent: 1 + type: Transform + - uid: 4515 + components: + - pos: 16.5,42.5 + parent: 1 + type: Transform + - uid: 4516 + components: + - pos: 16.5,40.5 + parent: 1 + type: Transform + - uid: 4637 + components: + - pos: 2.5,43.5 + parent: 1 + type: Transform + - uid: 4638 + components: + - pos: 2.5,46.5 + parent: 1 + type: Transform + - uid: 5171 + components: + - pos: -10.5,6.5 + parent: 1 + type: Transform + - uid: 5179 + components: + - pos: -7.5,6.5 + parent: 1 + type: Transform + - uid: 5180 + components: + - pos: -5.5,10.5 + parent: 1 + type: Transform + - uid: 5228 + components: + - pos: 10.5,9.5 + parent: 1 + type: Transform + - uid: 5231 + components: + - pos: 13.5,9.5 + parent: 1 + type: Transform + - uid: 5755 + components: + - pos: 84.5,-10.5 + parent: 1 + type: Transform + - uid: 5756 + components: + - pos: 86.5,-10.5 + parent: 1 + type: Transform + - uid: 5803 + components: + - pos: 78.5,-4.5 + parent: 1 + type: Transform + - uid: 5990 + components: + - pos: 10.5,15.5 + parent: 1 + type: Transform + - uid: 6179 + components: + - pos: 13.5,15.5 + parent: 1 + type: Transform + - uid: 6304 + components: + - pos: -44.5,9.5 + parent: 1 + type: Transform + - uid: 6305 + components: + - pos: -44.5,11.5 + parent: 1 + type: Transform + - uid: 6740 + components: + - pos: -68.5,7.5 + parent: 1 + type: Transform + - uid: 6741 + components: + - pos: -66.5,7.5 + parent: 1 + type: Transform + - uid: 6742 + components: + - pos: -66.5,0.5 + parent: 1 + type: Transform + - uid: 6743 + components: + - pos: -68.5,0.5 + parent: 1 + type: Transform + - uid: 6746 + components: + - pos: -65.5,2.5 + parent: 1 + type: Transform + - uid: 6747 + components: + - pos: -65.5,5.5 + parent: 1 + type: Transform + - uid: 6887 + components: + - pos: 21.5,13.5 + parent: 1 + type: Transform + - uid: 6898 + components: + - pos: 23.5,13.5 + parent: 1 + type: Transform + - uid: 6901 + components: + - pos: 25.5,13.5 + parent: 1 + type: Transform + - uid: 7184 + components: + - pos: 64.5,1.5 + parent: 1 + type: Transform + - uid: 7185 + components: + - pos: 65.5,1.5 + parent: 1 + type: Transform + - uid: 7186 + components: + - pos: 66.5,1.5 + parent: 1 + type: Transform + - uid: 7187 + components: + - pos: 67.5,1.5 + parent: 1 + type: Transform + - uid: 7188 + components: + - pos: 68.5,1.5 + parent: 1 + type: Transform + - uid: 7193 + components: + - pos: 10.5,29.5 + parent: 1 + type: Transform + - uid: 7196 + components: + - pos: 13.5,29.5 + parent: 1 + type: Transform + - uid: 7197 + components: + - pos: 10.5,-22.5 + parent: 1 + type: Transform + - uid: 7198 + components: + - pos: 13.5,-22.5 + parent: 1 + type: Transform + - uid: 7201 + components: + - pos: -28.5,2.5 + parent: 1 + type: Transform + - uid: 7202 + components: + - pos: -28.5,5.5 + parent: 1 + type: Transform + - uid: 7569 + components: + - pos: 14.5,-13.5 + parent: 1 + type: Transform + - uid: 7641 + components: + - pos: 84.5,-7.5 + parent: 1 + type: Transform + - uid: 7642 + components: + - pos: 86.5,-7.5 + parent: 1 + type: Transform + - uid: 9229 + components: + - pos: 51.5,2.5 + parent: 1 + type: Transform + - uid: 9230 + components: + - pos: 51.5,5.5 + parent: 1 + type: Transform + - uid: 9233 + components: + - pos: 13.5,-45.5 + parent: 1 + type: Transform + - uid: 9236 + components: + - pos: 10.5,-45.5 + parent: 1 + type: Transform + - uid: 11365 + components: + - pos: 9.5,-44.5 + parent: 1 + type: Transform + - uid: 11366 + components: + - pos: 9.5,-43.5 + parent: 1 + type: Transform + - uid: 11367 + components: + - pos: 3.5,-45.5 + parent: 1 + type: Transform + - uid: 11368 + components: + - pos: 3.5,-40.5 + parent: 1 + type: Transform + - uid: 11369 + components: + - pos: 5.5,-45.5 + parent: 1 + type: Transform + - uid: 11370 + components: + - pos: 6.5,-45.5 + parent: 1 + type: Transform + - uid: 11371 + components: + - pos: 7.5,-45.5 + parent: 1 + type: Transform + - uid: 12456 + components: + - pos: 22.5,13.5 + parent: 1 + type: Transform + - uid: 12457 + components: + - pos: 24.5,13.5 + parent: 1 + type: Transform + - uid: 16122 + components: + - pos: 49.5,-26.5 + parent: 1 + type: Transform + - uid: 16125 + components: + - pos: 48.5,-26.5 + parent: 1 + type: Transform + - uid: 16126 + components: + - pos: 47.5,-26.5 + parent: 1 + type: Transform + - uid: 16514 + components: + - pos: 55.5,38.5 + parent: 1 + type: Transform + - uid: 16515 + components: + - pos: 55.5,40.5 + parent: 1 + type: Transform + - uid: 17066 + components: + - pos: -10.5,14.5 + parent: 1 + type: Transform + - uid: 25123 + components: + - pos: -6.5,-12.5 + parent: 1 + type: Transform +- proto: WindowDirectional + entities: + - uid: 2664 + components: + - pos: 41.5,-3.5 + parent: 1 + type: Transform + - uid: 2666 + components: + - pos: 42.5,-3.5 + parent: 1 + type: Transform + - uid: 2676 + components: + - pos: 43.5,-3.5 + parent: 1 + type: Transform + - uid: 2678 + components: + - pos: 45.5,-3.5 + parent: 1 + type: Transform + - uid: 2679 + components: + - pos: 46.5,-3.5 + parent: 1 + type: Transform + - uid: 2680 + components: + - pos: 47.5,-3.5 + parent: 1 + type: Transform + - uid: 2845 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,52.5 + parent: 1 + type: Transform + - uid: 3158 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,51.5 + parent: 1 + type: Transform + - uid: 3469 + components: + - rot: 3.141592653589793 rad + pos: 72.5,-1.5 + parent: 1 + type: Transform + - uid: 4123 + components: + - rot: 3.141592653589793 rad + pos: 74.5,-1.5 + parent: 1 + type: Transform + - uid: 4229 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-1.5 + parent: 1 + type: Transform + - uid: 4230 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-1.5 + parent: 1 + type: Transform + - uid: 4231 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-1.5 + parent: 1 + type: Transform + - uid: 4232 + components: + - pos: 25.5,-1.5 + parent: 1 + type: Transform + - uid: 4244 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-0.5 + parent: 1 + type: Transform + - uid: 4245 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-0.5 + parent: 1 + type: Transform + - uid: 4246 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-0.5 + parent: 1 + type: Transform + - uid: 4250 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-0.5 + parent: 1 + type: Transform + - uid: 4260 + components: + - pos: 26.5,-1.5 + parent: 1 + type: Transform + - uid: 4261 + components: + - pos: 27.5,-1.5 + parent: 1 + type: Transform + - uid: 4262 + components: + - pos: 28.5,-1.5 + parent: 1 + type: Transform + - uid: 5198 + components: + - rot: 3.141592653589793 rad + pos: 21.5,9.5 + parent: 1 + type: Transform + - uid: 5199 + components: + - rot: 3.141592653589793 rad + pos: 22.5,9.5 + parent: 1 + type: Transform + - uid: 5200 + components: + - rot: 3.141592653589793 rad + pos: 23.5,9.5 + parent: 1 + type: Transform + - uid: 5201 + components: + - rot: 3.141592653589793 rad + pos: 15.5,9.5 + parent: 1 + type: Transform + - uid: 5202 + components: + - rot: 3.141592653589793 rad + pos: 16.5,9.5 + parent: 1 + type: Transform + - uid: 5203 + components: + - rot: 3.141592653589793 rad + pos: 17.5,9.5 + parent: 1 + type: Transform + - uid: 5204 + components: + - rot: 3.141592653589793 rad + pos: 18.5,9.5 + parent: 1 + type: Transform + - uid: 5207 + components: + - rot: 3.141592653589793 rad + pos: 24.5,9.5 + parent: 1 + type: Transform + - uid: 5209 + components: + - rot: 3.141592653589793 rad + pos: 27.5,9.5 + parent: 1 + type: Transform + - uid: 5210 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,7.5 + parent: 1 + type: Transform + - uid: 5211 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,8.5 + parent: 1 + type: Transform + - uid: 5212 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 1 + type: Transform + - uid: 5213 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,0.5 + parent: 1 + type: Transform + - uid: 5214 + components: + - pos: 23.5,-1.5 + parent: 1 + type: Transform + - uid: 5215 + components: + - pos: 22.5,-1.5 + parent: 1 + type: Transform + - uid: 5216 + components: + - pos: 21.5,-1.5 + parent: 1 + type: Transform + - uid: 5218 + components: + - pos: 18.5,-1.5 + parent: 1 + type: Transform + - uid: 5219 + components: + - pos: 17.5,-1.5 + parent: 1 + type: Transform + - uid: 5220 + components: + - pos: 16.5,-1.5 + parent: 1 + type: Transform + - uid: 5221 + components: + - pos: 15.5,-1.5 + parent: 1 + type: Transform + - uid: 5648 + components: + - pos: 74.5,-0.5 + parent: 1 + type: Transform + - uid: 6208 + components: + - rot: 3.141592653589793 rad + pos: 97.5,-0.5 + parent: 1 + type: Transform + - uid: 6209 + components: + - rot: 1.5707963267948966 rad + pos: 96.5,0.5 + parent: 1 + type: Transform + - uid: 12335 + components: + - rot: 3.141592653589793 rad + pos: -14.5,52.5 + parent: 1 + type: Transform + - uid: 12519 + components: + - rot: 3.141592653589793 rad + pos: -12.5,52.5 + parent: 1 + type: Transform + - uid: 12524 + components: + - rot: 3.141592653589793 rad + pos: -13.5,52.5 + parent: 1 + type: Transform + - uid: 16752 + components: + - pos: 72.5,-0.5 + parent: 1 + type: Transform + - uid: 22110 + components: + - rot: 3.141592653589793 rad + pos: 94.5,0.5 + parent: 1 + type: Transform + - uid: 22111 + components: + - rot: 3.141592653589793 rad + pos: 95.5,0.5 + parent: 1 + type: Transform + - uid: 22152 + components: + - rot: 3.141592653589793 rad + pos: 96.5,0.5 + parent: 1 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 1767 + components: + - pos: -21.5,-4.5 + parent: 1 + type: Transform + - uid: 2040 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 1 + type: Transform + - uid: 3415 + components: + - rot: 3.141592653589793 rad + pos: -24.5,9.5 + parent: 1 + type: Transform + - uid: 3416 + components: + - rot: 3.141592653589793 rad + pos: -22.5,9.5 + parent: 1 + type: Transform + - uid: 3417 + components: + - rot: 3.141592653589793 rad + pos: -20.5,9.5 + parent: 1 + type: Transform + - uid: 4070 + components: + - rot: 1.5707963267948966 rad + pos: 71.5,5.5 + parent: 1 + type: Transform + - uid: 4083 + components: + - rot: -1.5707963267948966 rad + pos: 77.5,5.5 + parent: 1 + type: Transform + - uid: 4092 + components: + - rot: 1.5707963267948966 rad + pos: 71.5,2.5 + parent: 1 + type: Transform + - uid: 4093 + components: + - rot: -1.5707963267948966 rad + pos: 77.5,2.5 + parent: 1 + type: Transform + - uid: 4199 + components: + - rot: 3.141592653589793 rad + pos: 63.5,27.5 + parent: 1 + type: Transform + - uid: 4356 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-15.5 + parent: 1 + type: Transform + - uid: 4357 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-17.5 + parent: 1 + type: Transform + - uid: 4358 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-18.5 + parent: 1 + type: Transform + - uid: 5105 + components: + - pos: -20.5,-4.5 + parent: 1 + type: Transform + - uid: 5107 + components: + - pos: -23.5,-4.5 + parent: 1 + type: Transform + - uid: 5108 + components: + - pos: -24.5,-4.5 + parent: 1 + type: Transform + - uid: 5111 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 1 + type: Transform + - uid: 5113 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,0.5 + parent: 1 + type: Transform + - uid: 5274 + components: + - pos: 63.5,26.5 + parent: 1 + type: Transform + - uid: 5275 + components: + - pos: 66.5,26.5 + parent: 1 + type: Transform + - uid: 5276 + components: + - rot: 3.141592653589793 rad + pos: 66.5,27.5 + parent: 1 + type: Transform + - uid: 5281 + components: + - rot: 3.141592653589793 rad + pos: 65.5,27.5 + parent: 1 + type: Transform + - uid: 5282 + components: + - pos: 65.5,26.5 + parent: 1 + type: Transform + - uid: 5283 + components: + - rot: 3.141592653589793 rad + pos: 68.5,27.5 + parent: 1 + type: Transform + - uid: 5284 + components: + - pos: 68.5,26.5 + parent: 1 + type: Transform + - uid: 5313 + components: + - rot: 3.141592653589793 rad + pos: 71.5,27.5 + parent: 1 + type: Transform + - uid: 5314 + components: + - rot: 3.141592653589793 rad + pos: 69.5,27.5 + parent: 1 + type: Transform + - uid: 5494 + components: + - pos: 74.5,6.5 + parent: 1 + type: Transform + - uid: 5523 + components: + - pos: 72.5,6.5 + parent: 1 + type: Transform + - uid: 6173 + components: + - pos: 101.5,1.5 + parent: 1 + type: Transform + - uid: 6174 + components: + - pos: 100.5,1.5 + parent: 1 + type: Transform + - uid: 6175 + components: + - pos: 99.5,1.5 + parent: 1 + type: Transform + - uid: 6176 + components: + - pos: 98.5,1.5 + parent: 1 + type: Transform + - uid: 6177 + components: + - rot: 1.5707963267948966 rad + pos: 96.5,6.5 + parent: 1 + type: Transform + - uid: 6178 + components: + - rot: 1.5707963267948966 rad + pos: 96.5,5.5 + parent: 1 + type: Transform + - uid: 6182 + components: + - rot: 1.5707963267948966 rad + pos: 96.5,3.5 + parent: 1 + type: Transform + - uid: 6183 + components: + - rot: 1.5707963267948966 rad + pos: 96.5,2.5 + parent: 1 + type: Transform + - uid: 6202 + components: + - rot: 1.5707963267948966 rad + pos: 96.5,1.5 + parent: 1 + type: Transform + - uid: 7696 + components: + - pos: 88.5,-7.5 + parent: 1 + type: Transform + - uid: 7697 + components: + - pos: 90.5,-7.5 + parent: 1 + type: Transform + - uid: 7698 + components: + - pos: 91.5,-7.5 + parent: 1 + type: Transform + - uid: 7699 + components: + - pos: 92.5,-7.5 + parent: 1 + type: Transform + - uid: 16141 + components: + - rot: 3.141592653589793 rad + pos: 49.5,-30.5 + parent: 1 + type: Transform + - uid: 16142 + components: + - rot: 3.141592653589793 rad + pos: 48.5,-30.5 + parent: 1 + type: Transform + - uid: 21583 + components: + - rot: 1.5707963267948966 rad + pos: 64.5,-3.5 + parent: 1 + type: Transform + - uid: 23545 + components: + - rot: 3.141592653589793 rad + pos: 101.5,3.5 + parent: 1 + type: Transform + - uid: 23546 + components: + - rot: 1.5707963267948966 rad + pos: 100.5,4.5 + parent: 1 + type: Transform + - uid: 23547 + components: + - rot: 1.5707963267948966 rad + pos: 100.5,5.5 + parent: 1 + type: Transform + - uid: 25765 + components: + - rot: 1.5707963267948966 rad + pos: 64.5,-2.5 + parent: 1 + type: Transform + - uid: 25766 + components: + - rot: 1.5707963267948966 rad + pos: 64.5,-4.5 + parent: 1 + type: Transform +- proto: WindowTintedDirectional + entities: + - uid: 1854 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-11.5 + parent: 1 + type: Transform + - uid: 2792 + components: + - rot: 3.141592653589793 rad + pos: 35.5,20.5 + parent: 1 + type: Transform + - uid: 2795 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,20.5 + parent: 1 + type: Transform + - uid: 3256 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,19.5 + parent: 1 + type: Transform + - uid: 5150 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,4.5 + parent: 1 + type: Transform + - uid: 5151 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,3.5 + parent: 1 + type: Transform + - uid: 5152 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,5.5 + parent: 1 + type: Transform + - uid: 5153 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,2.5 + parent: 1 + type: Transform + - uid: 5422 + components: + - rot: 3.141592653589793 rad + pos: 83.5,27.5 + parent: 1 + type: Transform + - uid: 5423 + components: + - rot: 3.141592653589793 rad + pos: 82.5,27.5 + parent: 1 + type: Transform + - uid: 5426 + components: + - rot: 1.5707963267948966 rad + pos: 81.5,29.5 + parent: 1 + type: Transform + - uid: 6309 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,13.5 + parent: 1 + type: Transform + - uid: 6311 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,14.5 + parent: 1 + type: Transform + - uid: 6811 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,-30.5 + parent: 1 + type: Transform + - uid: 6812 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-29.5 + parent: 1 + type: Transform + - uid: 6813 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,-29.5 + parent: 1 + type: Transform + - uid: 6814 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-30.5 + parent: 1 + type: Transform + - uid: 6815 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-29.5 + parent: 1 + type: Transform + - uid: 6816 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-29.5 + parent: 1 + type: Transform + - uid: 6817 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-29.5 + parent: 1 + type: Transform + - uid: 6818 + components: + - rot: 3.141592653589793 rad + pos: -48.5,-29.5 + parent: 1 + type: Transform + - uid: 9894 + components: + - rot: 3.141592653589793 rad + pos: 72.5,-13.5 + parent: 1 + type: Transform + - uid: 11533 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,22.5 + parent: 1 + type: Transform + - uid: 12446 + components: + - pos: 35.5,18.5 + parent: 1 + type: Transform + - uid: 12503 + components: + - rot: 3.141592653589793 rad + pos: 70.5,-13.5 + parent: 1 + type: Transform + - uid: 12504 + components: + - rot: 3.141592653589793 rad + pos: 71.5,-13.5 + parent: 1 + type: Transform + - uid: 12515 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,19.5 + parent: 1 + type: Transform + - uid: 14457 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,18.5 + parent: 1 + type: Transform + - uid: 14458 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,18.5 + parent: 1 + type: Transform +- proto: Wirecutter + entities: + - uid: 21445 + components: + - flags: InContainer + type: MetaData + - parent: 21443 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 23504 + components: + - pos: 41.013756,25.640142 + parent: 1 + type: Transform +- proto: WoodblockInstrument + entities: + - uid: 12486 + components: + - pos: -38.51239,-17.320103 + parent: 1 + type: Transform +- proto: Wrench + entities: + - uid: 2752 + components: + - rot: -1.5707963267948966 rad + pos: -12.237044,16.773232 + parent: 1 + type: Transform + - uid: 2887 + components: + - flags: InContainer + type: MetaData + - parent: 2884 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5920 + components: + - rot: 1.5707963267948966 rad + pos: -57.493694,-28.27463 + parent: 1 + type: Transform + - uid: 12414 + components: + - pos: -11.01125,12.566254 + parent: 1 + type: Transform + - uid: 13215 + components: + - pos: 50.47686,35.43313 + parent: 1 + type: Transform + - uid: 15779 + components: + - pos: -59.924507,9.101616 + parent: 1 + type: Transform + - uid: 15927 + components: + - rot: -1.5707963267948966 rad + pos: -21.418816,42.568207 + parent: 1 + type: Transform + - uid: 25288 + components: + - rot: 1.5707963267948966 rad + pos: 104.46438,26.96052 + parent: 1 + type: Transform +- proto: Zipties + entities: + - uid: 1260 + components: + - rot: 1.5707963267948966 rad + pos: 12.871309,-35.39483 + parent: 1 + type: Transform + - uid: 7147 + components: + - rot: -1.5707963267948966 rad + pos: 72.03819,12.5615015 + parent: 1 + type: Transform + - uid: 15785 + components: + - rot: 1.5707963267948966 rad + pos: -58.570343,7.59015 + parent: 1 + type: Transform + - uid: 22715 + components: + - rot: -1.5707963267948966 rad + pos: -13.529626,51.52552 + parent: 1 + type: Transform +- proto: ZiptiesBroken + entities: + - uid: 15269 + components: + - rot: 1.5707963267948966 rad + pos: -0.6065011,-35.103004 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/infiltrator.yml b/Resources/Maps/infiltrator.yml index 6670301e90..6f561e03b1 100644 --- a/Resources/Maps/infiltrator.yml +++ b/Resources/Maps/infiltrator.yml @@ -1,26 +1,26 @@ meta: - format: 5 + format: 6 postmapinit: false tilemap: 0: Space 3: FloorArcadeRed - 23: FloorDark - 28: FloorDarkMono - 32: FloorDarkPlastic - 45: FloorGreenCircuit - 59: FloorReinforced - 65: FloorShuttleRed - 66: FloorShuttleWhite - 69: FloorSteel - 75: FloorSteelMono - 81: FloorTechMaint3 - 92: FloorWood - 94: Lattice - 95: Plating + 29: FloorDark + 34: FloorDarkMono + 38: FloorDarkPlastic + 54: FloorGreenCircuit + 77: FloorReinforced + 84: FloorShuttleRed + 85: FloorShuttleWhite + 89: FloorSteel + 100: FloorSteelMono + 106: FloorTechMaint3 + 118: FloorWood + 120: Lattice + 121: Plating entities: - proto: "" entities: - - uid: 73 + - uid: 1 components: - name: GX-13 Infiltrator type: MetaData @@ -30,19 +30,24 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADFwAAARcAAAIXAAABFwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAUQAAAF8AAABfAAAAXwAAABcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAQQAAABcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAEEAAAAXAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABBAAAAFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAAAXAAABFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAFwAAAhcAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAAAXAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAkEAAAAXAAACFwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAACSwAAAEIAAAAXAAADFwAAABcAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAA0IAAABLAAABQQAAABcAAAAXAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABFAAAARQAAA0EAAAAXAAACFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABBAAAAQQAAAEEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVAAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVAAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVAAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACVAAAAAAAHQAAAAACHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACZAAAAAAAVQAAAAAAHQAAAAADHQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADVQAAAAAAZAAAAAABVAAAAAAAHQAAAAAAHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADVAAAAAAAHQAAAAACHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,-1: ind: 0,-1 - tiles: FwAAARcAAAEXAAABFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAFEAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAACQQAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAkEAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAFBAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAV8AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAANfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAUEAAABcAAADXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAMXAAAAFwAAAFwAAANcAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAQQAAAFwAAAADAAAAXAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAA0EAAABfAAAAAwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAABBAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: HQAAAAABHQAAAAABHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACVAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACVAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABVAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABVAAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAAAHQAAAAAAdgAAAAADdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAVAAAAAAAdgAAAAAAAwAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADVAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEEAAABBAAAAQQAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAtAAAAHAAAAC0AAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAALQAAABwAAAAtAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAC0AAAAcAAAALQAAAEEAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAACFwAAABcAAANBAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAjsAAAAXAAABQQAAAF8AAABfAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAAXAAAAFwAAAEEAAABfAAAAFwAAABcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAIAAAACAAAABBAAAAFwAAAxcAAAAXAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEEAAAAXAAAAQQAAAF8AAAAXAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAABFwAAABcAAAMXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAFEAAAAXAAAAFwAAAV8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAANgAAAAAAIgAAAAAANgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAANgAAAAAAIgAAAAAANgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAANgAAAAAAIgAAAAAANgAAAAAAVAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADVAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACTQAAAAAAHQAAAAABVAAAAAAAeQAAAAAAeQAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAVAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAVAAAAAAAHQAAAAADHQAAAAAAHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAVAAAAAAAHQAAAAAAVAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAADsAAABfAAAAOwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAAA7AAAAXwAAADsAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAOwAAAF8AAAA7AAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAFwAAAV8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAEXAAADFwAAARcAAAMXAAABQQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAADFwAAAhcAAAAXAAACFwAAA18AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAAIXAAAAFwAAAxcAAAFfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAABFwAAABcAAAEXAAADXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAXAAAAFwAAAlEAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAABVAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 type: MapGrid - type: Broadphase - - angularDamping: 0.05 + - bodyStatus: InAir + angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic @@ -240,20 +245,20 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 128: -6,-24 + 115: -6,-24 - node: color: '#FFFFFFFF' id: Bot decals: - 125: -6,-27 - 126: -6,-26 - 127: -6,-25 + 112: -6,-27 + 113: -6,-26 + 114: -6,-25 - node: color: '#79150096' id: Box decals: - 115: -6,-21 - 116: -5,-21 + 110: -6,-21 + 111: -5,-21 - node: color: '#DE3A3A96' id: BrickTileSteelCornerNe @@ -335,47 +340,47 @@ entities: color: '#79150096' id: BrickTileWhiteCornerNe decals: - 109: -5,-22 + 104: -5,-22 - node: color: '#79150096' id: BrickTileWhiteCornerNw decals: - 108: -7,-22 + 103: -7,-22 - node: color: '#79150096' id: BrickTileWhiteCornerSe decals: - 110: -5,-24 + 105: -5,-24 - node: color: '#79150096' id: BrickTileWhiteCornerSw decals: - 111: -7,-24 + 106: -7,-24 - node: color: '#79150096' id: BrickTileWhiteLineE decals: - 107: -5,-23 + 102: -5,-23 - node: color: '#79150096' id: BrickTileWhiteLineN decals: - 114: -6,-22 + 109: -6,-22 - node: color: '#79150096' id: BrickTileWhiteLineS decals: - 112: -6,-24 + 107: -6,-24 - node: color: '#79150096' id: BrickTileWhiteLineW decals: - 113: -7,-23 + 108: -7,-23 - node: color: '#79150096' id: Delivery decals: - 129: -1,-23 + 116: -1,-23 - node: color: '#DE3A3A96' id: DeliveryGreyscale @@ -427,22 +432,22 @@ entities: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 101: -7,-24 + 99: -7,-24 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 100: -5,-24 + 98: -5,-24 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 99: -7,-22 + 97: -7,-22 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 106: -5,-22 + 101: -5,-22 - node: color: '#FFFFFFFF' id: WarnLineE @@ -450,7 +455,7 @@ entities: 3: -4,-23 4: -4,-24 5: -4,-25 - 96: -7,-23 + 95: -7,-23 - node: color: '#DE3A3A96' id: WarnLineGreyscaleE @@ -483,17 +488,17 @@ entities: 91: -5,-28 92: -6,-28 93: -7,-28 - 105: -6,-22 + 100: -6,-22 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 95: -5,-23 + 94: -5,-23 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 97: -6,-24 + 96: -6,-24 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -574,1443 +579,1316 @@ entities: - type: GasTileOverlay - type: SpreaderGrid - type: GridPathfinding -- proto: AirlockSyndicateLocked +- proto: AirlockExternalGlassShuttleSyndicateLocked entities: - - uid: 69 - components: - - pos: -5.5,-16.5 - parent: 73 - type: Transform - - uid: 70 + - uid: 8 components: - - pos: 3.5,-14.5 - parent: 73 + - rot: 1.5707963267948966 rad + pos: 8.5,-16.5 + parent: 1 type: Transform - - uid: 78 + - links: + - 13 + type: DeviceLinkSink + - linkedPorts: + 13: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 10 components: - - pos: -0.5,-22.5 - parent: 73 + - rot: -1.5707963267948966 rad + pos: -9.5,-16.5 + parent: 1 type: Transform - - uid: 138 + - links: + - 3 + type: DeviceLinkSink + - linkedPorts: + 3: + - DoorStatus: DoorBolt + type: DeviceLinkSource +- proto: AirlockExternalSyndicateLocked + entities: + - uid: 2 components: - - pos: -4.5,-14.5 - parent: 73 + - pos: -0.5,-25.5 + parent: 1 type: Transform - - uid: 184 + - links: + - 14 + type: DeviceLinkSink + - linkedPorts: + 14: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 3 components: - - pos: 4.5,-16.5 - parent: 73 + - pos: -5.5,-16.5 + parent: 1 type: Transform - - uid: 442 + - links: + - 10 + type: DeviceLinkSink + - linkedPorts: + 10: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 7 components: - - pos: -0.5,-25.5 - parent: 73 + - pos: -4.5,-14.5 + parent: 1 type: Transform - - uid: 443 + - links: + - 12 + type: DeviceLinkSink + - linkedPorts: + 12: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 9 components: - - pos: 3.5,-10.5 - parent: 73 + - pos: 3.5,-14.5 + parent: 1 type: Transform - - uid: 444 + - links: + - 22 + type: DeviceLinkSink + - linkedPorts: + 22: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 12 components: - pos: -4.5,-10.5 - parent: 73 + parent: 1 type: Transform -- proto: AirlockSyndicateLocked - entities: - - uid: 201 + - links: + - 7 + type: DeviceLinkSink + - linkedPorts: + 7: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 13 components: - - name: Commander's Office - type: MetaData - - pos: 2.5,-5.5 - parent: 73 + - pos: 4.5,-16.5 + parent: 1 type: Transform - - uid: 237 + - links: + - 8 + type: DeviceLinkSink + - linkedPorts: + 8: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 14 components: - - name: Bridge - type: MetaData - - pos: -0.5,-7.5 - parent: 73 + - pos: -0.5,-22.5 + parent: 1 type: Transform - - uid: 375 + - links: + - 2 + type: DeviceLinkSink + - linkedPorts: + 2: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 22 components: - - pos: -0.5,-14.5 - parent: 73 + - pos: 3.5,-10.5 + parent: 1 type: Transform + - links: + - 9 + type: DeviceLinkSink + - linkedPorts: + 9: + - DoorStatus: DoorBolt + type: DeviceLinkSource - proto: AirlockSyndicateGlassLocked entities: - - uid: 371 + - uid: 4 components: - - name: syndicate airlock - type: MetaData - - pos: -2.5,-20.5 - parent: 73 + - pos: -0.5,-7.5 + parent: 1 type: Transform - - uid: 495 + - uid: 5 components: - pos: 3.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 646 + - uid: 6 components: - pos: -0.5,-18.5 - parent: 73 + parent: 1 + type: Transform + - uid: 17 + components: + - pos: -2.5,-20.5 + parent: 1 type: Transform -- proto: AirlockShuttle +- proto: AirlockSyndicateLocked entities: - - uid: 439 + - uid: 15 components: - - rot: 1.5707963267948966 rad - pos: 8.5,-16.5 - parent: 73 + - pos: -0.5,-14.5 + parent: 1 type: Transform - - uid: 734 + - uid: 16 components: - - rot: -1.5707963267948966 rad - pos: -9.5,-16.5 - parent: 73 + - pos: 2.5,-5.5 + parent: 1 type: Transform - proto: APCBasic entities: - - uid: 220 + - uid: 18 components: - pos: -3.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 500 + - uid: 19 components: - rot: -1.5707963267948966 rad pos: 1.5,-8.5 - parent: 73 - type: Transform -- proto: AtmosDeviceFanTiny - entities: - - uid: 480 - components: - - pos: 8.5,-16.5 - parent: 73 - type: Transform - - uid: 501 - components: - - pos: 3.5,-10.5 - parent: 73 - type: Transform - - uid: 555 - components: - - pos: -9.5,-16.5 - parent: 73 - type: Transform - - uid: 561 - components: - - pos: -4.5,-10.5 - parent: 73 - type: Transform - - uid: 571 - components: - - pos: -0.5,-25.5 - parent: 73 + parent: 1 type: Transform - proto: AtmosFixNitrogenMarker entities: - - uid: 517 + - uid: 25 components: - pos: 5.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 787 + - uid: 26 components: - pos: 5.5,-27.5 - parent: 73 + parent: 1 type: Transform - proto: AtmosFixOxygenMarker entities: - - uid: 516 + - uid: 27 components: - pos: 3.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 789 + - uid: 28 components: - pos: 3.5,-27.5 - parent: 73 + parent: 1 type: Transform - proto: BannerSyndicate entities: - - uid: 794 + - uid: 29 components: - pos: 2.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 795 + - uid: 30 components: - pos: -3.5,-15.5 - parent: 73 + parent: 1 type: Transform - proto: Bed entities: - - uid: 564 + - uid: 31 components: - pos: 3.5,-3.5 - parent: 73 + parent: 1 type: Transform - proto: BedsheetSyndie entities: - - uid: 194 + - uid: 32 components: - pos: 3.5,-3.5 - parent: 73 + parent: 1 type: Transform - proto: BoxEncryptionKeySyndie entities: - - uid: 710 + - uid: 34 components: - flags: InContainer type: MetaData - - parent: 692 + - parent: 33 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: BoxFlashbang entities: - - uid: 844 + - uid: 42 components: - pos: 0.49331844,-13.366474 - parent: 73 + parent: 1 type: Transform - proto: BoxHandcuff entities: - - uid: 775 + - uid: 43 components: - pos: 1.4510483,-2.399527 - parent: 73 + parent: 1 type: Transform - proto: Brutepack entities: - - uid: 28 + - uid: 44 components: - pos: -3.292087,-4.1600046 - parent: 73 + parent: 1 type: Transform - - uid: 51 + - uid: 45 components: - pos: -3.354587,-4.4256296 - parent: 73 + parent: 1 type: Transform - proto: C4 entities: - - uid: 729 + - uid: 46 components: - pos: 1.7857682,-12.631323 - parent: 73 + parent: 1 type: Transform - - uid: 730 + - uid: 47 components: - pos: 1.5045182,-12.646948 - parent: 73 + parent: 1 type: Transform - - uid: 749 + - uid: 48 components: - pos: 1.5982682,-12.646948 - parent: 73 + parent: 1 type: Transform - - uid: 750 + - uid: 49 components: - pos: 1.4107682,-12.646948 - parent: 73 + parent: 1 type: Transform - - uid: 843 + - uid: 50 components: - pos: 1.6920182,-12.631323 - parent: 73 + parent: 1 type: Transform - proto: CableApcExtension entities: - - uid: 249 + - uid: 51 components: - pos: -3.5,-18.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 250 + - uid: 52 components: - pos: -3.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 251 + - uid: 53 components: - pos: -3.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 252 + - uid: 54 components: - pos: -4.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 253 + - uid: 55 components: - pos: -5.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 254 + - uid: 56 components: - pos: -6.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 255 + - uid: 57 components: - pos: -7.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 256 + - uid: 58 components: - pos: -8.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 257 + - uid: 59 components: - pos: -6.5,-15.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 258 + - uid: 60 components: - pos: -6.5,-17.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 259 + - uid: 61 components: - pos: -4.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 260 + - uid: 62 components: - pos: -4.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 261 + - uid: 63 components: - pos: -4.5,-13.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 262 + - uid: 64 components: - pos: -4.5,-12.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 263 + - uid: 65 components: - pos: -4.5,-11.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 264 + - uid: 66 components: - pos: -4.5,-10.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 265 + - uid: 67 components: - pos: -5.5,-12.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 266 + - uid: 68 components: - pos: -6.5,-12.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 267 + - uid: 69 components: - pos: -2.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 268 + - uid: 70 components: - pos: -1.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 269 + - uid: 71 components: - pos: -0.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 270 + - uid: 72 components: - pos: 0.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 271 + - uid: 73 components: - pos: 1.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 272 + - uid: 74 components: - pos: 2.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 273 + - uid: 75 components: - pos: 3.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 274 + - uid: 76 components: - pos: 4.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 275 + - uid: 77 components: - pos: 5.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 276 + - uid: 78 components: - pos: 5.5,-15.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 277 + - uid: 79 components: - pos: 5.5,-17.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 278 + - uid: 80 components: - pos: 6.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 279 + - uid: 81 components: - pos: 7.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 280 + - uid: 82 components: - pos: 3.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 281 + - uid: 83 components: - pos: 3.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 282 + - uid: 84 components: - pos: 3.5,-13.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 283 + - uid: 85 components: - pos: 3.5,-12.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 284 + - uid: 86 components: - pos: 3.5,-11.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 285 + - uid: 87 components: - pos: 3.5,-11.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 286 + - uid: 88 components: - pos: 3.5,-10.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 287 + - uid: 89 components: - pos: 4.5,-12.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 288 + - uid: 90 components: - pos: 5.5,-12.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 290 + - uid: 91 components: - pos: -0.5,-6.5 - parent: 73 + parent: 1 type: Transform - - uid: 291 + - uid: 92 components: - pos: -0.5,-7.5 - parent: 73 + parent: 1 type: Transform - - uid: 292 + - uid: 93 components: - pos: -0.5,-8.5 - parent: 73 + parent: 1 type: Transform - - uid: 293 + - uid: 94 components: - pos: -0.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 294 + - uid: 95 components: - pos: -0.5,-10.5 - parent: 73 + parent: 1 type: Transform - - uid: 295 + - uid: 96 components: - pos: -0.5,-11.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 296 + - uid: 97 components: - pos: -0.5,-12.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 297 + - uid: 98 components: - pos: -0.5,-13.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 298 + - uid: 99 components: - pos: -0.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 299 + - uid: 100 components: - pos: -1.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 300 + - uid: 101 components: - pos: 0.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 301 + - uid: 102 components: - pos: -0.5,-5.5 - parent: 73 + parent: 1 type: Transform - - uid: 302 + - uid: 103 components: - pos: 0.5,-5.5 - parent: 73 + parent: 1 type: Transform - - uid: 303 + - uid: 104 components: - pos: 1.5,-5.5 - parent: 73 + parent: 1 type: Transform - - uid: 304 + - uid: 105 components: - pos: 2.5,-5.5 - parent: 73 + parent: 1 type: Transform - - uid: 305 + - uid: 106 components: - pos: 3.5,-5.5 - parent: 73 + parent: 1 type: Transform - - uid: 306 + - uid: 107 components: - pos: 3.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 307 + - uid: 108 components: - pos: -0.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 308 + - uid: 109 components: - pos: -0.5,-3.5 - parent: 73 + parent: 1 type: Transform - - uid: 309 + - uid: 110 components: - pos: -0.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 310 + - uid: 111 components: - pos: 0.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 311 + - uid: 112 components: - pos: 1.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 312 + - uid: 113 components: - pos: -1.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 313 + - uid: 114 components: - pos: -2.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 314 + - uid: 115 components: - pos: -1.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 315 + - uid: 116 components: - pos: -3.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 316 + - uid: 117 components: - pos: -2.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 317 + - uid: 118 components: - pos: -4.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 318 + - uid: 119 components: - pos: -5.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 319 + - uid: 120 components: - pos: -5.5,-5.5 - parent: 73 + parent: 1 type: Transform - - uid: 320 + - uid: 121 components: - pos: -5.5,-6.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 321 + - uid: 122 components: - pos: -5.5,-3.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 322 + - uid: 123 components: - pos: 4.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 323 + - uid: 124 components: - pos: 4.5,-3.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 324 + - uid: 125 components: - pos: 3.5,-6.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 325 + - uid: 126 components: - pos: -0.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 326 + - uid: 127 components: - pos: -3.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 327 + - uid: 128 components: - pos: -3.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 328 + - uid: 129 components: - pos: -3.5,-21.5 - parent: 73 + parent: 1 type: Transform - - uid: 329 + - uid: 130 components: - pos: -4.5,-21.5 - parent: 73 + parent: 1 type: Transform - - uid: 330 + - uid: 131 components: - pos: -4.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 331 + - uid: 132 components: - pos: -4.5,-23.5 - parent: 73 + parent: 1 type: Transform - - uid: 332 + - uid: 133 components: - pos: -4.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 333 + - uid: 134 components: - pos: -4.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 334 + - uid: 135 components: - pos: -4.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 335 + - uid: 136 components: - pos: -4.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 336 + - uid: 137 components: - pos: -4.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 337 + - uid: 138 components: - pos: -5.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 338 + - uid: 139 components: - pos: -6.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 339 + - uid: 140 components: - pos: -6.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 340 + - uid: 141 components: - pos: -6.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 341 + - uid: 142 components: - pos: -6.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 342 + - uid: 143 components: - pos: -6.5,-23.5 - parent: 73 + parent: 1 type: Transform - - uid: 343 + - uid: 144 components: - pos: -6.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 344 + - uid: 145 components: - pos: -2.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 345 + - uid: 146 components: - pos: -1.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 346 + - uid: 147 components: - pos: -0.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 347 + - uid: 148 components: - pos: -0.5,-21.5 - parent: 73 + parent: 1 type: Transform - - uid: 348 + - uid: 149 components: - pos: -0.5,-23.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 349 + - uid: 150 components: - pos: -0.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 350 + - uid: 151 components: - pos: -0.5,-24.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 351 + - uid: 152 components: - pos: -0.5,-25.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 352 + - uid: 153 components: - pos: -0.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 353 + - uid: 154 components: - pos: 0.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 354 + - uid: 155 components: - pos: 1.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 355 + - uid: 156 components: - pos: 2.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 356 + - uid: 157 components: - pos: 3.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 357 + - uid: 158 components: - pos: 4.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 358 + - uid: 159 components: - pos: 3.5,-21.5 - parent: 73 + parent: 1 type: Transform - - uid: 359 + - uid: 160 components: - pos: 3.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 360 + - uid: 161 components: - pos: 3.5,-23.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 361 + - uid: 162 components: - pos: 3.5,-24.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 362 + - uid: 163 components: - pos: 3.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 363 + - uid: 164 components: - pos: 3.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 364 + - uid: 165 components: - pos: 3.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 365 + - uid: 166 components: - pos: 4.5,-27.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 366 + - uid: 167 components: - pos: 5.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 367 + - uid: 168 components: - pos: 5.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 368 + - uid: 169 components: - pos: 5.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 369 + - uid: 170 components: - pos: 5.5,-24.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 370 + - uid: 171 components: - pos: 5.5,-23.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 632 + - uid: 172 components: - pos: 0.5,-8.5 - parent: 73 + parent: 1 type: Transform - - uid: 650 + - uid: 173 components: - pos: 1.5,-26.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 659 + - uid: 174 components: - pos: 1.5,-8.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 671 + - uid: 175 components: - pos: -0.5,-26.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 691 + - uid: 176 components: - pos: -1.5,-26.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 751 + - uid: 177 components: - pos: 0.5,-26.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 752 + - uid: 178 components: - pos: -2.5,-26.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 814 + - uid: 179 components: - pos: -2.5,-27.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 816 + - uid: 180 components: - pos: 1.5,-27.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 825 + - uid: 181 components: - pos: -6.5,-28.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 826 + - uid: 182 components: - pos: -6.5,-29.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 827 + - uid: 183 components: - pos: -2.5,-28.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 828 + - uid: 184 components: - pos: -2.5,-29.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 829 + - uid: 185 components: - pos: -2.5,-30.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 830 + - uid: 186 components: - pos: -3.5,-30.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 831 + - uid: 187 components: - pos: -4.5,-30.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 832 + - uid: 188 components: - pos: -5.5,-30.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 833 + - uid: 189 components: - pos: 1.5,-28.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 834 + - uid: 190 components: - pos: 1.5,-29.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 835 + - uid: 191 components: - pos: 1.5,-30.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 836 + - uid: 192 components: - pos: 2.5,-30.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 837 + - uid: 193 components: - pos: 3.5,-30.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 838 + - uid: 194 components: - pos: 4.5,-30.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 839 + - uid: 195 components: - pos: 5.5,-28.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 840 + - uid: 196 components: - pos: 5.5,-29.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - proto: CableHV entities: - - uid: 65 + - uid: 197 components: - pos: -2.5,-21.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 202 + - uid: 198 components: - pos: -4.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 203 + - uid: 199 components: - pos: -4.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 204 + - uid: 200 components: - pos: -5.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 205 + - uid: 201 components: - pos: -6.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 208 + - uid: 202 components: - pos: -5.5,-23.5 - parent: 73 + parent: 1 type: Transform - - uid: 209 + - uid: 203 components: - pos: -5.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 214 + - uid: 204 components: - pos: -5.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 215 + - uid: 205 components: - pos: -4.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 216 + - uid: 206 components: - pos: -5.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 217 + - uid: 207 components: - pos: -4.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 218 + - uid: 208 components: - pos: -3.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 576 + - uid: 209 components: - pos: -5.5,-21.5 - parent: 73 + parent: 1 type: Transform - - uid: 579 + - uid: 210 components: - pos: -6.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 580 + - uid: 211 components: - pos: -6.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 581 + - uid: 212 components: - pos: -6.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 653 + - uid: 213 components: - pos: -4.5,-23.5 - parent: 73 + parent: 1 type: Transform - - uid: 663 + - uid: 214 components: - pos: -2.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 664 + - uid: 215 components: - pos: -2.5,-19.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 679 + - uid: 216 components: - pos: -4.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 712 + - uid: 217 components: - pos: -6.5,-23.5 - parent: 73 + parent: 1 type: Transform - - uid: 715 + - uid: 218 components: - pos: -6.5,-20.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 716 + - uid: 219 components: - pos: -4.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 853 + - uid: 220 components: - pos: -5.5,-18.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 854 + - uid: 221 components: - pos: -4.5,-18.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 855 + - uid: 222 components: - pos: -3.5,-18.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 856 + - uid: 223 components: - pos: -3.5,-21.5 - parent: 73 + parent: 1 type: Transform - - uid: 857 + - uid: 224 components: - pos: -4.5,-21.5 - parent: 73 + parent: 1 type: Transform - proto: CableMV entities: - - uid: 222 + - uid: 225 components: - pos: -3.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 223 + - uid: 226 components: - pos: -3.5,-18.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 224 + - uid: 227 components: - pos: -3.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 225 + - uid: 228 components: - pos: -3.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 226 + - uid: 229 components: - pos: -2.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 227 + - uid: 230 components: - pos: -0.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 228 + - uid: 231 components: - pos: -1.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 229 + - uid: 232 components: - pos: -0.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 230 + - uid: 233 components: - pos: -0.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 231 + - uid: 234 components: - pos: -0.5,-13.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 232 + - uid: 235 components: - pos: -0.5,-12.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 233 + - uid: 236 components: - pos: -0.5,-11.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 234 + - uid: 237 components: - pos: -0.5,-10.5 - parent: 73 + parent: 1 type: Transform - - uid: 235 + - uid: 238 components: - pos: -0.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 236 + - uid: 239 components: - pos: -0.5,-8.5 - parent: 73 + parent: 1 type: Transform - uid: 240 components: - pos: -3.5,-20.5 - parent: 73 + parent: 1 type: Transform - uid: 241 components: - pos: -3.5,-21.5 - parent: 73 + parent: 1 type: Transform - uid: 242 components: - pos: -4.5,-21.5 - parent: 73 + parent: 1 type: Transform - uid: 243 components: - pos: -4.5,-22.5 - parent: 73 + parent: 1 type: Transform - uid: 244 components: - pos: -4.5,-23.5 - parent: 73 + parent: 1 type: Transform - uid: 245 components: - pos: -4.5,-24.5 - parent: 73 + parent: 1 type: Transform - uid: 246 components: - pos: -4.5,-25.5 - parent: 73 + parent: 1 type: Transform - uid: 247 components: - pos: -4.5,-26.5 - parent: 73 + parent: 1 type: Transform - uid: 248 components: - pos: -4.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 643 + - uid: 249 components: - pos: 1.5,-8.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 661 + - uid: 250 components: - pos: 0.5,-8.5 - parent: 73 + parent: 1 type: Transform - proto: CableTerminal entities: - - uid: 212 + - uid: 251 components: - rot: 3.141592653589793 rad pos: -5.5,-20.5 - parent: 73 + parent: 1 type: Transform - canCollide: False type: Physics - fixtures: {} type: Fixtures - - uid: 213 + - uid: 252 components: - rot: 3.141592653589793 rad pos: -4.5,-20.5 - parent: 73 + parent: 1 type: Transform - canCollide: False type: Physics @@ -2018,778 +1896,785 @@ entities: type: Fixtures - proto: Carpet entities: - - uid: 422 + - uid: 253 components: - rot: -1.5707963267948966 rad pos: 4.5,-5.5 - parent: 73 + parent: 1 type: Transform - - uid: 559 + - uid: 254 components: - rot: -1.5707963267948966 rad pos: 4.5,-4.5 - parent: 73 + parent: 1 type: Transform - proto: Catwalk entities: - - uid: 67 + - uid: 255 components: - pos: -2.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 68 + - uid: 256 components: - pos: -2.5,-28.5 - parent: 73 + parent: 1 type: Transform - - uid: 441 + - uid: 257 components: - pos: -8.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 543 + - uid: 258 components: - pos: -1.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 548 + - uid: 259 components: - pos: -2.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 582 + - uid: 260 components: - pos: 4.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 583 + - uid: 261 components: - pos: 5.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 587 + - uid: 262 components: - pos: -6.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 588 + - uid: 263 components: - pos: -7.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 589 + - uid: 264 components: - pos: -4.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 590 + - uid: 265 components: - pos: -4.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 591 + - uid: 266 components: - pos: -4.5,-11.5 - parent: 73 + parent: 1 type: Transform - - uid: 592 + - uid: 267 components: - pos: 3.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 593 + - uid: 268 components: - pos: 3.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 594 + - uid: 269 components: - pos: 3.5,-11.5 - parent: 73 + parent: 1 type: Transform - - uid: 595 + - uid: 270 components: - pos: 5.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 596 + - uid: 271 components: - pos: 6.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 597 + - uid: 272 components: - pos: -0.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 598 + - uid: 273 components: - pos: -0.5,-23.5 - parent: 73 + parent: 1 type: Transform - - uid: 631 + - uid: 274 components: - pos: -0.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 634 + - uid: 275 components: - pos: 5.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 640 + - uid: 276 components: - pos: 3.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 642 + - uid: 277 components: - pos: 0.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 645 + - uid: 278 components: - pos: 0.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 647 + - uid: 279 components: - pos: 1.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 648 + - uid: 280 components: - pos: -2.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 649 + - uid: 281 components: - pos: -2.5,-29.5 - parent: 73 + parent: 1 type: Transform - - uid: 654 + - uid: 282 components: - pos: 1.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 662 + - uid: 283 components: - pos: 4.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 666 + - uid: 284 components: - pos: -0.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 674 + - uid: 285 components: - pos: 1.5,-28.5 - parent: 73 + parent: 1 type: Transform - - uid: 675 + - uid: 286 components: - pos: 1.5,-29.5 - parent: 73 + parent: 1 type: Transform - - uid: 681 + - uid: 287 components: - pos: -1.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 685 + - uid: 288 components: - pos: -3.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 686 + - uid: 289 components: - pos: 1.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 701 + - uid: 290 components: - pos: 2.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 728 + - uid: 291 components: - pos: -6.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 731 + - uid: 292 components: - pos: -5.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 732 + - uid: 293 components: - pos: -4.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 733 + - uid: 294 components: - pos: 7.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 759 + - uid: 295 components: - pos: -0.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 760 + - uid: 296 components: - pos: -0.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 761 + - uid: 297 components: - pos: -0.5,-11.5 - parent: 73 + parent: 1 type: Transform - proto: Chair entities: - - uid: 112 + - uid: 298 components: - rot: -1.5707963267948966 rad pos: 2.5,-21.5 - parent: 73 + parent: 1 type: Transform - - uid: 696 + - uid: 299 components: - rot: 1.5707963267948966 rad pos: 0.5,-21.5 - parent: 73 + parent: 1 type: Transform - proto: ChairOfficeDark entities: - - uid: 698 + - uid: 300 components: - rot: 1.5707963267948966 rad pos: 0.5,-3.5 - parent: 73 + parent: 1 type: Transform - proto: ChairPilotSeat entities: - - uid: 36 + - uid: 301 components: - rot: 1.5707963267948966 rad pos: -1.5,-21.5 - parent: 73 + parent: 1 type: Transform - - uid: 601 + - uid: 302 components: - rot: 1.5707963267948966 rad pos: -1.5,-8.5 - parent: 73 + parent: 1 type: Transform - - uid: 602 + - uid: 303 components: - rot: 1.5707963267948966 rad pos: -1.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 603 + - uid: 304 components: - rot: 1.5707963267948966 rad pos: -1.5,-10.5 - parent: 73 + parent: 1 type: Transform - - uid: 604 + - uid: 305 components: - rot: -1.5707963267948966 rad pos: 0.5,-8.5 - parent: 73 + parent: 1 type: Transform - - uid: 605 + - uid: 306 components: - rot: -1.5707963267948966 rad pos: 0.5,-10.5 - parent: 73 + parent: 1 type: Transform - - uid: 606 + - uid: 307 components: - rot: -1.5707963267948966 rad pos: 0.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 758 + - uid: 308 components: - pos: -2.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 762 + - uid: 309 components: - pos: -1.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 763 + - uid: 310 components: - pos: 0.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 764 + - uid: 311 components: - pos: 1.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 767 + - uid: 312 components: - rot: 3.141592653589793 rad pos: -0.5,-3.5 - parent: 73 + parent: 1 type: Transform - proto: CigPackSyndicate entities: - - uid: 449 + - uid: 313 components: - pos: -3.5658307,-17.516623 - parent: 73 + parent: 1 type: Transform - proto: ClothingBackpackDuffelSyndicateFilledMedical entities: - - uid: 669 + - uid: 314 components: - pos: -3.5044222,-6.293252 - parent: 73 + parent: 1 type: Transform - proto: ClothingHeadHatSyndie entities: - - uid: 447 + - uid: 315 components: - pos: -3.1200604,-17.289778 - parent: 73 + parent: 1 type: Transform - proto: ClothingHeadHatSyndieMAA entities: - - uid: 709 + - uid: 35 components: - flags: InContainer type: MetaData - - parent: 692 + - parent: 33 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: ClothingHeadPyjamaSyndicateRed entities: - - uid: 699 + - uid: 36 components: - flags: InContainer type: MetaData - - parent: 692 + - parent: 33 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: ClothingHeadsetAltSyndicate entities: - - uid: 706 + - uid: 316 components: - pos: 1.3157192,-13.513277 - parent: 73 + parent: 1 type: Transform - proto: ClothingMaskGasSyndicate entities: - - uid: 705 + - uid: 317 components: - pos: 0.94071925,-13.482027 - parent: 73 + parent: 1 type: Transform - proto: ClothingNeckMantleHOS entities: - - uid: 563 + - uid: 37 components: - flags: InContainer desc: Looted from a fallen enemy, the commander earned this in battle. name: commander mantle type: MetaData - - parent: 692 + - parent: 33 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: ClothingOuterCoatSyndieCap entities: - - uid: 694 + - uid: 38 components: - flags: InContainer type: MetaData - - parent: 692 + - parent: 33 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: ClothingUniformJumpskirtSyndieFormalDress entities: - - uid: 700 + - uid: 39 components: - flags: InContainer type: MetaData - - parent: 692 + - parent: 33 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: ClothingUniformJumpsuitPyjamaSyndicateRed entities: - - uid: 697 + - uid: 40 components: - flags: InContainer type: MetaData - - parent: 692 + - parent: 33 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: ClothingUniformJumpsuitSyndieFormal entities: - - uid: 695 + - uid: 41 components: - flags: InContainer type: MetaData - - parent: 692 + - parent: 33 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: ComfyChair entities: - - uid: 635 + - uid: 318 components: - rot: -1.5707963267948966 rad pos: 4.5,-4.5 - parent: 73 + parent: 1 type: Transform - proto: computerBodyScanner entities: - - uid: 721 + - uid: 319 components: - rot: 1.5707963267948966 rad pos: -5.5,-5.5 - parent: 73 + parent: 1 type: Transform - proto: ComputerIFFSyndicate entities: - - uid: 665 + - uid: 320 components: - rot: -1.5707963267948966 rad pos: 1.5,-3.5 - parent: 73 + parent: 1 type: Transform - proto: ComputerPowerMonitoring entities: - - uid: 668 + - uid: 321 components: - rot: -1.5707963267948966 rad pos: -3.5,-21.5 - parent: 73 + parent: 1 type: Transform - proto: ComputerRadar entities: - - uid: 771 + - uid: 322 components: - pos: 0.5,-2.5 - parent: 73 + parent: 1 type: Transform - proto: ComputerShuttleSyndie entities: - - uid: 766 + - uid: 323 components: - pos: -0.5,-2.5 - parent: 73 + parent: 1 type: Transform - proto: CrowbarRed entities: - - uid: 448 + - uid: 324 components: - pos: -3.492848,-22.485775 - parent: 73 + parent: 1 type: Transform - proto: DisposalBend entities: - - uid: 607 + - uid: 325 components: - rot: 1.5707963267948966 rad pos: -0.5,-6.5 - parent: 73 + parent: 1 type: Transform - proto: DisposalJunction entities: - - uid: 586 + - uid: 326 components: - rot: -1.5707963267948966 rad pos: -0.5,-19.5 - parent: 73 + parent: 1 type: Transform - proto: DisposalPipe entities: - - uid: 608 + - uid: 327 components: - rot: 1.5707963267948966 rad pos: 0.5,-6.5 - parent: 73 + parent: 1 type: Transform - - uid: 610 + - uid: 328 components: - rot: -1.5707963267948966 rad pos: -1.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 611 + - uid: 329 components: - rot: -1.5707963267948966 rad pos: -2.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 612 + - uid: 330 components: - rot: -1.5707963267948966 rad pos: -3.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 613 + - uid: 331 components: - rot: -1.5707963267948966 rad pos: -4.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 614 + - uid: 332 components: - rot: -1.5707963267948966 rad pos: -5.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 615 + - uid: 333 components: - rot: -1.5707963267948966 rad pos: -6.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 617 + - uid: 334 components: - pos: -0.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 618 + - uid: 335 components: - pos: -0.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 619 + - uid: 336 components: - pos: -0.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 620 + - uid: 337 components: - pos: -0.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 621 + - uid: 338 components: - pos: -0.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 622 + - uid: 339 components: - pos: -0.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 623 + - uid: 340 components: - pos: -0.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 624 + - uid: 341 components: - pos: -0.5,-11.5 - parent: 73 + parent: 1 type: Transform - - uid: 625 + - uid: 342 components: - pos: -0.5,-10.5 - parent: 73 + parent: 1 type: Transform - - uid: 626 + - uid: 343 components: - pos: -0.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 627 + - uid: 344 components: - pos: -0.5,-8.5 - parent: 73 + parent: 1 type: Transform - - uid: 628 + - uid: 345 components: - pos: -0.5,-7.5 - parent: 73 + parent: 1 type: Transform - proto: DisposalTrunk entities: - - uid: 609 + - uid: 346 components: - rot: -1.5707963267948966 rad pos: 1.5,-6.5 - parent: 73 + parent: 1 type: Transform - - uid: 616 + - uid: 347 components: - rot: 1.5707963267948966 rad pos: -7.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 667 + - uid: 348 components: - rot: -1.5707963267948966 rad pos: 0.5,-19.5 - parent: 73 + parent: 1 type: Transform - proto: DisposalUnit entities: - - uid: 629 + - uid: 349 components: - pos: 1.5,-6.5 - parent: 73 + parent: 1 type: Transform - - uid: 682 + - uid: 350 components: - pos: 0.5,-19.5 - parent: 73 + parent: 1 type: Transform - proto: DoubleEmergencyOxygenTankFilled entities: - - uid: 551 + - uid: 351 components: - pos: -1.6924903,-23.407444 - parent: 73 + parent: 1 type: Transform - - uid: 552 + - uid: 352 components: - pos: -1.4112403,-23.458082 - parent: 73 + parent: 1 type: Transform - - uid: 783 + - uid: 353 components: - pos: 5.390987,-17.346693 - parent: 73 + parent: 1 type: Transform - - uid: 784 + - uid: 354 components: - pos: -6.6334953,-17.346693 - parent: 73 + parent: 1 type: Transform - proto: DrinkGlass entities: - - uid: 537 + - uid: 355 components: - pos: 2.0779252,-19.21155 - parent: 73 + parent: 1 type: Transform - - uid: 538 + - uid: 356 components: - pos: 2.3123002,-19.21155 - parent: 73 + parent: 1 type: Transform - proto: DrinkMugDog entities: - - uid: 539 + - uid: 357 components: - pos: 2.2843437,-19.542192 - parent: 73 + parent: 1 type: Transform - proto: DrinkMugMetal entities: - - uid: 540 + - uid: 358 components: - pos: 2.0968437,-19.526567 - parent: 73 + parent: 1 type: Transform - proto: DrinkMugRed entities: - - uid: 600 + - uid: 359 components: - pos: 1.9918958,-17.588755 - parent: 73 + parent: 1 type: Transform - proto: DrinkVacuumFlask entities: - - uid: 541 + - uid: 360 components: - pos: 5.6435027,-21.180143 - parent: 73 + parent: 1 type: Transform - - uid: 542 + - uid: 361 components: - pos: 5.7372527,-21.398893 - parent: 73 + parent: 1 type: Transform - proto: ExtendedEmergencyOxygenTankFilled entities: - - uid: 703 + - uid: 362 components: - pos: -5.678572,-12.319441 - parent: 73 + parent: 1 type: Transform - - uid: 707 + - uid: 363 components: - pos: 4.305803,-12.272566 - parent: 73 + parent: 1 + type: Transform +- proto: FireAxeFlaming + entities: + - uid: 23 + components: + - pos: -1.5018963,-3.4569345 + parent: 1 type: Transform - proto: FoodBoxDonkpocketPizza entities: - - uid: 531 + - uid: 364 components: - pos: 2.7185502,-19.320925 - parent: 73 + parent: 1 type: Transform - proto: FoodBoxDonut entities: - - uid: 756 + - uid: 365 components: - pos: 5.5401826,-21.187487 - parent: 73 + parent: 1 type: Transform - proto: FoodPizzaDonkpocket entities: - - uid: 644 + - uid: 366 components: - pos: 1.4776825,-21.296862 - parent: 73 + parent: 1 type: Transform - proto: FoodSnackSyndi entities: - - uid: 446 + - uid: 367 components: - pos: 1.5361897,-17.367903 - parent: 73 + parent: 1 type: Transform - proto: GasMinerNitrogen entities: - - uid: 390 + - uid: 368 components: - rot: 3.141592653589793 rad pos: 5.5,-27.5 - parent: 73 + parent: 1 type: Transform - proto: GasMinerOxygen entities: - - uid: 389 + - uid: 369 components: - rot: 3.141592653589793 rad pos: 3.5,-27.5 - parent: 73 + parent: 1 type: Transform - proto: GasMixer entities: - - uid: 395 + - uid: 370 components: - name: O2+N2 mixer type: MetaData - rot: 3.141592653589793 rad pos: 3.5,-24.5 - parent: 73 + parent: 1 type: Transform - inletTwoConcentration: 0.78 inletOneConcentration: 0.22 @@ -2798,983 +2683,923 @@ entities: type: AtmosPipeColor - proto: GasPassiveVent entities: - - uid: 387 + - uid: 371 components: - rot: 3.141592653589793 rad pos: 3.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 388 + - uid: 372 components: - rot: 3.141592653589793 rad pos: 5.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 451 + - uid: 373 components: - rot: -1.5707963267948966 rad pos: 6.5,-19.5 - parent: 73 + parent: 1 type: Transform - proto: GasPipeBend entities: - - uid: 378 + - uid: 374 components: - rot: 1.5707963267948966 rad pos: -0.5,-5.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 393 + - uid: 375 components: - pos: 5.5,-24.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 399 + - uid: 376 components: - pos: 3.5,-20.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 407 + - uid: 377 components: - rot: 1.5707963267948966 rad pos: -4.5,-20.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 424 + - uid: 378 components: - rot: -1.5707963267948966 rad pos: 0.5,-5.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 425 + - uid: 379 components: - rot: 1.5707963267948966 rad pos: -1.5,-4.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 474 + - uid: 380 components: - pos: 0.5,-8.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 476 + - uid: 381 components: - rot: 3.141592653589793 rad pos: -1.5,-8.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 482 + - uid: 382 components: - rot: -1.5707963267948966 rad pos: -0.5,-4.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 489 + - uid: 383 components: - rot: -1.5707963267948966 rad pos: 0.5,-21.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - proto: GasPipeFourway entities: - - uid: 396 + - uid: 384 components: - pos: 3.5,-23.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 403 + - uid: 385 components: - pos: -0.5,-20.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 411 + - uid: 386 components: - pos: -0.5,-16.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 459 + - uid: 387 components: - pos: 0.5,-17.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - proto: GasPipeStraight entities: - - uid: 391 + - uid: 388 components: - rot: 3.141592653589793 rad pos: 3.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 392 + - uid: 389 components: - rot: 3.141592653589793 rad pos: 5.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 394 + - uid: 390 components: - rot: -1.5707963267948966 rad pos: 4.5,-24.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 397 + - uid: 391 components: - pos: 3.5,-22.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 398 + - uid: 392 components: - pos: 3.5,-21.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 400 + - uid: 393 components: - rot: -1.5707963267948966 rad pos: 2.5,-20.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 401 + - uid: 394 components: - rot: -1.5707963267948966 rad pos: 1.5,-20.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 402 + - uid: 395 components: - rot: -1.5707963267948966 rad pos: 0.5,-20.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 404 + - uid: 396 components: - rot: -1.5707963267948966 rad pos: -1.5,-20.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 405 + - uid: 397 components: - rot: -1.5707963267948966 rad pos: -2.5,-20.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 406 + - uid: 398 components: - rot: -1.5707963267948966 rad pos: -3.5,-20.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 408 + - uid: 399 components: - pos: -0.5,-19.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 409 + - uid: 400 components: - pos: -0.5,-18.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 410 + - uid: 401 components: - pos: -0.5,-17.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 412 + - uid: 402 components: - pos: -0.5,-15.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 413 + - uid: 403 components: - pos: -0.5,-14.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 414 + - uid: 404 components: - pos: -0.5,-13.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 415 + - uid: 405 components: - pos: -0.5,-12.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 417 + - uid: 406 components: - pos: -0.5,-10.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 418 + - uid: 407 components: - pos: -0.5,-9.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 419 + - uid: 408 components: - pos: -0.5,-8.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 420 + - uid: 409 components: - pos: -0.5,-7.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 421 + - uid: 410 components: - pos: -0.5,-6.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 427 + - uid: 411 components: - pos: 0.5,-18.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 429 + - uid: 412 components: - rot: -1.5707963267948966 rad pos: -1.5,-16.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 433 + - uid: 413 components: - rot: -1.5707963267948966 rad pos: 0.5,-16.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 434 + - uid: 414 components: - rot: -1.5707963267948966 rad pos: 1.5,-16.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 435 + - uid: 415 components: - rot: -1.5707963267948966 rad pos: -2.5,-16.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 436 + - uid: 416 components: - rot: -1.5707963267948966 rad pos: -3.5,-16.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 437 + - uid: 417 components: - rot: -1.5707963267948966 rad pos: 2.5,-16.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 452 + - uid: 418 components: - rot: -1.5707963267948966 rad pos: 5.5,-19.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 454 + - uid: 419 components: - rot: 1.5707963267948966 rad pos: 3.5,-19.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 456 + - uid: 420 components: - rot: -1.5707963267948966 rad pos: 1.5,-19.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 458 + - uid: 421 components: - rot: 3.141592653589793 rad pos: -1.5,-6.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 460 + - uid: 422 components: - rot: -1.5707963267948966 rad pos: -0.5,-17.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 461 + - uid: 423 components: - rot: -1.5707963267948966 rad pos: -1.5,-17.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 462 + - uid: 424 components: - rot: -1.5707963267948966 rad pos: -2.5,-17.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 463 + - uid: 425 components: - rot: -1.5707963267948966 rad pos: -3.5,-17.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 464 + - uid: 426 components: - rot: -1.5707963267948966 rad pos: 1.5,-17.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 465 + - uid: 427 components: - rot: -1.5707963267948966 rad pos: 2.5,-17.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 466 + - uid: 428 components: - rot: 3.141592653589793 rad pos: 0.5,-16.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 467 + - uid: 429 components: - rot: 3.141592653589793 rad pos: 0.5,-15.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 468 + - uid: 430 components: - rot: 3.141592653589793 rad pos: 0.5,-14.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 469 + - uid: 431 components: - rot: 3.141592653589793 rad pos: 0.5,-13.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 471 + - uid: 432 components: - pos: 0.5,-11.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 472 + - uid: 433 components: - pos: 0.5,-10.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 473 + - uid: 434 components: - pos: 0.5,-9.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 475 + - uid: 435 components: - rot: -1.5707963267948966 rad pos: -0.5,-8.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 477 + - uid: 436 components: - rot: 3.141592653589793 rad pos: -1.5,-7.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 488 + - uid: 437 components: - pos: 0.5,-20.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 490 + - uid: 438 components: - rot: -1.5707963267948966 rad pos: -0.5,-21.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 491 + - uid: 439 components: - rot: -1.5707963267948966 rad pos: -1.5,-21.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 492 + - uid: 440 components: - rot: -1.5707963267948966 rad pos: -2.5,-21.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 704 + - uid: 441 components: - rot: 3.141592653589793 rad pos: -1.5,-5.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 711 + - uid: 442 components: - rot: 3.141592653589793 rad pos: 0.5,-4.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - proto: GasPipeTJunction entities: - - uid: 416 + - uid: 443 components: - rot: 1.5707963267948966 rad pos: -0.5,-11.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 455 + - uid: 444 components: - pos: 2.5,-19.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 457 + - uid: 445 components: - rot: 1.5707963267948966 rad pos: 0.5,-19.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 470 + - uid: 446 components: - rot: 1.5707963267948966 rad pos: 0.5,-12.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - proto: GasPort entities: - - uid: 523 + - uid: 447 components: - rot: 1.5707963267948966 rad pos: 2.5,-23.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - proto: GasPressurePump entities: - - uid: 453 + - uid: 448 components: - name: waste pump type: MetaData - rot: 1.5707963267948966 rad pos: 4.5,-19.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - proto: GasVentPump entities: - - uid: 428 + - uid: 449 components: - rot: -1.5707963267948966 rad pos: 0.5,-11.5 - parent: 73 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - - uid: 430 + - uid: 450 components: - rot: 3.141592653589793 rad pos: -0.5,-21.5 - parent: 73 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - - uid: 431 + - uid: 451 components: - rot: -1.5707963267948966 rad pos: 4.5,-23.5 - parent: 73 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - - uid: 432 + - uid: 452 components: - rot: 3.141592653589793 rad pos: -4.5,-21.5 - parent: 73 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - - uid: 438 + - uid: 453 components: - rot: 1.5707963267948966 rad pos: -4.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - - uid: 440 + - uid: 454 components: - rot: -1.5707963267948966 rad pos: 3.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - - uid: 708 + - uid: 455 components: - pos: 0.5,-3.5 - parent: 73 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - proto: GasVentScrubber entities: - - uid: 484 + - uid: 456 components: - rot: -1.5707963267948966 rad pos: 1.5,-12.5 - parent: 73 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - - uid: 485 + - uid: 457 components: - rot: -1.5707963267948966 rad pos: 3.5,-17.5 - parent: 73 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - - uid: 486 + - uid: 458 components: - rot: 3.141592653589793 rad pos: 2.5,-20.5 - parent: 73 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - - uid: 487 + - uid: 459 components: - rot: 1.5707963267948966 rad pos: -4.5,-17.5 - parent: 73 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - - uid: 493 + - uid: 460 components: - rot: 1.5707963267948966 rad pos: -3.5,-21.5 - parent: 73 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - - uid: 714 + - uid: 461 components: - pos: -0.5,-3.5 - parent: 73 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - proto: GeneratorBasic15kW entities: - - uid: 206 + - uid: 462 components: - pos: -4.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 207 + - uid: 463 components: - pos: -4.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 502 + - uid: 464 components: - pos: -4.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 567 + - uid: 465 components: - pos: -6.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 568 + - uid: 466 components: - pos: -6.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 570 + - uid: 467 components: - pos: -6.5,-26.5 - parent: 73 + parent: 1 type: Transform - proto: GeneratorWallmountAPU entities: - - uid: 676 + - uid: 468 components: - pos: -6.5,-20.5 - parent: 73 + parent: 1 type: Transform - proto: GravityGeneratorMini entities: - - uid: 652 + - uid: 469 components: - pos: -5.5,-22.5 - parent: 73 + parent: 1 type: Transform - proto: Grille entities: - - uid: 9 + - uid: 470 components: - pos: 2.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 16 + - uid: 471 components: - pos: -3.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 37 + - uid: 472 components: - rot: 1.5707963267948966 rad pos: -1.5,-7.5 - parent: 73 + parent: 1 type: Transform - - uid: 114 + - uid: 473 components: - pos: -2.5,-1.5 - parent: 73 + parent: 1 type: Transform - - uid: 117 + - uid: 474 components: - pos: -0.5,-1.5 - parent: 73 + parent: 1 type: Transform - - uid: 118 + - uid: 475 components: - pos: -4.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 119 + - uid: 476 components: - pos: -6.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 123 + - uid: 477 components: - pos: 3.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 125 + - uid: 478 components: - pos: -1.5,-1.5 - parent: 73 + parent: 1 type: Transform - - uid: 132 + - uid: 479 components: - pos: 5.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 137 + - uid: 480 components: - pos: 0.5,-1.5 - parent: 73 + parent: 1 type: Transform - - uid: 146 + - uid: 481 components: - pos: 1.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 148 + - uid: 482 components: - pos: -2.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 156 + - uid: 483 components: - pos: 1.5,-1.5 - parent: 73 + parent: 1 type: Transform - - uid: 177 + - uid: 484 components: - pos: -2.5,-21.5 - parent: 73 + parent: 1 type: Transform - - uid: 178 + - uid: 485 components: - pos: -2.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 179 + - uid: 486 components: - pos: 2.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 180 + - uid: 487 components: - pos: 4.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 186 + - uid: 488 components: - pos: -1.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 221 + - uid: 489 components: - pos: 0.5,-7.5 - parent: 73 + parent: 1 type: Transform - - uid: 385 + - uid: 490 components: - pos: 3.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 386 + - uid: 491 components: - pos: 5.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 494 + - uid: 492 components: - rot: 1.5707963267948966 rad pos: 5.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 547 + - uid: 493 components: - pos: 0.5,-18.5 - parent: 73 + parent: 1 type: Transform - proto: Gyroscope entities: - - uid: 560 + - uid: 494 components: - pos: -5.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 562 + - uid: 495 components: - pos: 4.5,-13.5 - parent: 73 + parent: 1 type: Transform - proto: HospitalCurtainsOpen entities: - - uid: 633 + - uid: 496 components: - pos: 3.5,-3.5 - parent: 73 + parent: 1 type: Transform - proto: KitchenMicrowave entities: - - uid: 530 + - uid: 497 components: - pos: 3.5,-19.5 - parent: 73 + parent: 1 type: Transform - proto: KnifePlastic entities: - - uid: 544 + - uid: 498 components: - pos: 5.3509636,-21.445768 - parent: 73 + parent: 1 type: Transform - proto: Lamp entities: - - uid: 88 + - uid: 499 components: - pos: -1.483297,-2.2444057 - parent: 73 + parent: 1 type: Transform - proto: LockerSyndicatePersonal entities: - - uid: 692 + - uid: 33 components: - pos: 4.5,-5.5 - parent: 73 + parent: 1 type: Transform - air: volume: 200 @@ -3799,14 +3624,14 @@ entities: showEnts: False occludes: True ents: - - 563 - - 700 - - 699 - - 697 - - 695 - - 694 - - 709 - - 710 + - 37 + - 39 + - 36 + - 40 + - 41 + - 38 + - 35 + - 34 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -3814,1993 +3639,2009 @@ entities: type: ContainerContainer - proto: MedicalBed entities: - - uid: 673 + - uid: 500 components: - pos: -4.5,-3.5 - parent: 73 + parent: 1 type: Transform - proto: MedkitCombatFilled entities: - - uid: 533 + - uid: 501 components: - pos: -3.401462,-3.5350046 - parent: 73 + parent: 1 type: Transform - - uid: 584 + - uid: 502 components: - pos: -3.557712,-3.4256296 - parent: 73 + parent: 1 type: Transform - proto: Mirror entities: - - uid: 884 + - uid: 503 components: - pos: 4.5,-3.5 - parent: 73 + parent: 1 type: Transform - proto: Multitool entities: - - uid: 499 + - uid: 504 components: - pos: -3.383473,-22.548275 - parent: 73 + parent: 1 type: Transform - proto: NitrogenTankFilled entities: - - uid: 376 + - uid: 505 components: - pos: 4.633928,-12.616316 - parent: 73 + parent: 1 type: Transform - - uid: 684 + - uid: 506 components: - pos: -5.397322,-12.569441 - parent: 73 + parent: 1 type: Transform - - uid: 788 + - uid: 507 components: - pos: -6.3522453,-17.549818 - parent: 73 + parent: 1 type: Transform - - uid: 790 + - uid: 508 components: - pos: 5.6633797,-17.565443 - parent: 73 + parent: 1 type: Transform - proto: NuclearBombUnanchored entities: - - uid: 76 + - uid: 509 components: - pos: -2.5,-12.5 - parent: 73 + parent: 1 type: Transform - proto: NukeCodePaper entities: - - uid: 846 + - uid: 510 components: - pos: -2.5286522,-11.44479 - parent: 73 + parent: 1 type: Transform - proto: Ointment entities: - - uid: 575 + - uid: 511 components: - pos: -3.651462,-4.5193796 - parent: 73 + parent: 1 type: Transform - - uid: 585 + - uid: 512 components: - pos: -3.667087,-4.2225046 - parent: 73 + parent: 1 type: Transform - proto: OperatingTable entities: - - uid: 720 + - uid: 513 components: - pos: -5.5,-4.5 - parent: 73 + parent: 1 type: Transform - proto: OxygenCanister entities: - - uid: 553 + - uid: 514 components: - pos: -1.5,-24.5 - parent: 73 + parent: 1 type: Transform - proto: OxygenTankFilled entities: - - uid: 66 + - uid: 515 components: - pos: -5.600447,-12.569441 - parent: 73 + parent: 1 type: Transform - - uid: 450 + - uid: 516 components: - pos: 4.399553,-12.522566 - parent: 73 + parent: 1 type: Transform - - uid: 785 + - uid: 517 components: - pos: 5.5227547,-17.440443 - parent: 73 + parent: 1 type: Transform - - uid: 786 + - uid: 518 components: - pos: -6.4928703,-17.440443 - parent: 73 + parent: 1 type: Transform - proto: PinpointerNuclear entities: - - uid: 872 + - uid: 519 components: - pos: -2.4942985,-13.37949 - parent: 73 + parent: 1 type: Transform - proto: PlasmaReinforcedWindowDirectional entities: - - uid: 549 + - uid: 520 components: - rot: -1.5707963267948966 rad pos: -2.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 573 + - uid: 521 components: - rot: -1.5707963267948966 rad pos: -2.5,-6.5 - parent: 73 + parent: 1 type: Transform - - uid: 727 + - uid: 522 components: - rot: -1.5707963267948966 rad pos: -2.5,-3.5 - parent: 73 + parent: 1 type: Transform - proto: PlushieNuke entities: - - uid: 92 + - uid: 523 components: - pos: -2.4227936,-2.3320491 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandC20r entities: - - uid: 778 + - uid: 524 components: - pos: 1.5,-14.5 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandCC64KAd entities: - - uid: 796 + - uid: 525 components: - pos: -5.5,-18.5 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandCybersun600 entities: - - uid: 793 + - uid: 526 components: - pos: 2.5,-6.5 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandDonk entities: - - uid: 719 + - uid: 527 components: - rot: 3.141592653589793 rad pos: 3.5,-18.5 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandDonutCorp entities: - - uid: 755 + - uid: 528 components: - rot: 3.141592653589793 rad pos: 1.5,-22.5 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandEnergySwords entities: - - uid: 534 + - uid: 529 components: - pos: 2.5,-18.5 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandEnlistGorlex entities: - - uid: 754 + - uid: 530 components: - rot: 3.141592653589793 rad pos: 2.5,-13.5 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandFreeSyndicateEncryptionKey entities: - - uid: 779 + - uid: 531 components: - pos: -2.5,-8.5 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandInterdyne entities: - - uid: 725 + - uid: 532 components: - rot: 3.141592653589793 rad pos: -4.5,-6.5 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandKosmicheskayaStantsiya entities: - - uid: 780 + - uid: 533 components: - pos: -2.5,-22.5 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandMoth entities: - - uid: 757 + - uid: 534 components: - pos: -2.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 792 + - uid: 535 components: - pos: 2.5,-3.5 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandNuclearDeviceInformational entities: - - uid: 717 + - uid: 536 components: - rot: 3.141592653589793 rad pos: -3.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 791 + - uid: 537 components: - pos: 0.5,-14.5 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandSyndicatePistol entities: - - uid: 776 + - uid: 538 components: - pos: 1.5,-10.5 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandSyndicateRecruitment entities: - - uid: 777 + - uid: 539 components: - pos: -1.5,-14.5 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandWaffleCorp entities: - - uid: 722 + - uid: 540 components: - rot: 3.141592653589793 rad pos: -2.5,-23.5 - parent: 73 + parent: 1 type: Transform - proto: Poweredlight entities: - - uid: 129 + - uid: 541 components: - rot: 1.5707963267948966 rad pos: -1.5,-8.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 139 + - uid: 542 components: - rot: -1.5707963267948966 rad pos: 1.5,-4.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 372 + - uid: 543 components: - rot: 1.5707963267948966 rad pos: -6.5,-23.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 373 + - uid: 544 components: - rot: 1.5707963267948966 rad pos: -6.5,-26.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 374 + - uid: 545 components: - pos: -4.5,-19.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 377 + - uid: 546 components: - rot: 3.141592653589793 rad pos: 1.5,-13.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 496 + - uid: 547 components: - rot: 3.141592653589793 rad pos: 3.5,-27.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 497 + - uid: 548 components: - rot: 3.141592653589793 rad pos: 5.5,-27.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 503 + - uid: 549 components: - pos: 2.5,-15.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 504 + - uid: 550 components: - pos: -3.5,-15.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 512 + - uid: 551 components: - rot: 3.141592653589793 rad pos: -4.5,-5.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 515 + - uid: 552 components: - rot: -1.5707963267948966 rad pos: 1.5,-2.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 724 + - uid: 553 components: - rot: -1.5707963267948966 rad pos: 1.5,-6.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - proto: PoweredSmallLight entities: - - uid: 19 + - uid: 554 components: - rot: 3.141592653589793 rad pos: 4.5,-13.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 239 + - uid: 555 components: - rot: 3.141592653589793 rad pos: 5.5,-21.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 423 + - uid: 556 components: - rot: 3.141592653589793 rad pos: 3.5,-5.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 483 + - uid: 557 components: - rot: -1.5707963267948966 rad pos: 5.5,-24.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 505 + - uid: 558 components: - rot: 3.141592653589793 rad pos: -5.5,-13.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 513 + - uid: 559 components: - rot: 1.5707963267948966 rad pos: -1.5,-24.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 655 + - uid: 560 components: - pos: -6.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 660 + - uid: 561 components: - pos: 5.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 740 + - uid: 562 components: - pos: 2.5,-19.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 741 + - uid: 563 components: - pos: -1.5,-26.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 742 + - uid: 564 components: - rot: 3.141592653589793 rad pos: -5.5,-9.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 744 + - uid: 565 components: - rot: 3.141592653589793 rad pos: 4.5,-9.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - proto: Rack entities: - - uid: 478 + - uid: 566 components: - pos: -3.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 525 + - uid: 567 components: - pos: 5.5,-23.5 - parent: 73 + parent: 1 type: Transform - - uid: 550 + - uid: 568 components: - rot: 3.141592653589793 rad pos: 4.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 554 + - uid: 569 components: - rot: 3.141592653589793 rad pos: -5.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 558 + - uid: 570 components: - pos: -1.5,-23.5 - parent: 73 + parent: 1 type: Transform - - uid: 689 + - uid: 571 components: - pos: -6.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 690 + - uid: 572 components: - pos: 5.5,-17.5 - parent: 73 + parent: 1 type: Transform - proto: ReinforcedPlasmaWindow entities: - - uid: 2 + - uid: 573 components: - pos: 3.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 95 + - uid: 574 components: - rot: 1.5707963267948966 rad pos: 5.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 115 + - uid: 575 components: - pos: -0.5,-1.5 - parent: 73 + parent: 1 type: Transform - - uid: 116 + - uid: 576 components: - pos: -6.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 126 + - uid: 577 components: - pos: -2.5,-1.5 - parent: 73 + parent: 1 type: Transform - - uid: 134 + - uid: 578 components: - pos: -4.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 145 + - uid: 579 components: - pos: 5.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 149 + - uid: 580 components: - pos: -1.5,-1.5 - parent: 73 + parent: 1 type: Transform - - uid: 153 + - uid: 581 components: - pos: 0.5,-1.5 - parent: 73 + parent: 1 type: Transform - - uid: 155 + - uid: 582 components: - pos: 1.5,-1.5 - parent: 73 + parent: 1 type: Transform - - uid: 159 + - uid: 583 components: - pos: -1.5,-7.5 - parent: 73 + parent: 1 type: Transform - - uid: 172 + - uid: 584 components: - pos: 4.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 173 + - uid: 585 components: - pos: 2.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 175 + - uid: 586 components: - pos: -2.5,-21.5 - parent: 73 + parent: 1 type: Transform - - uid: 176 + - uid: 587 components: - pos: -2.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 181 + - uid: 588 components: - pos: -2.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 182 + - uid: 589 components: - pos: 1.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 289 + - uid: 590 components: - pos: 0.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 383 + - uid: 591 components: - pos: 3.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 384 + - uid: 592 components: - pos: 5.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 506 + - uid: 593 components: - pos: 2.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 509 + - uid: 594 components: - pos: -3.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 510 + - uid: 595 components: - pos: 0.5,-7.5 - parent: 73 + parent: 1 type: Transform - - uid: 557 + - uid: 596 components: - pos: -1.5,-18.5 - parent: 73 + parent: 1 type: Transform - proto: ShuttersNormalOpen entities: - - uid: 4 + - uid: 597 components: - pos: -6.5,-4.5 - parent: 73 + parent: 1 type: Transform - links: - - 238 + - 21 type: DeviceLinkSink - - uid: 38 + - uid: 598 components: - pos: 5.5,-4.5 - parent: 73 + parent: 1 type: Transform - links: - - 630 + - 20 type: DeviceLinkSink - - uid: 48 + - uid: 599 components: - pos: 1.5,-9.5 - parent: 73 + parent: 1 type: Transform - links: - - 143 + - 609 type: DeviceLinkSink - - uid: 140 + - uid: 600 components: - pos: -2.5,-9.5 - parent: 73 + parent: 1 type: Transform - links: - - 143 + - 609 type: DeviceLinkSink - - uid: 160 + - uid: 601 components: - pos: -4.5,-2.5 - parent: 73 + parent: 1 type: Transform - links: - - 238 + - 21 type: DeviceLinkSink - - uid: 189 + - uid: 602 components: - pos: 3.5,-2.5 - parent: 73 + parent: 1 type: Transform - links: - - 630 + - 20 type: DeviceLinkSink - - uid: 193 + - uid: 603 components: - pos: 1.5,-1.5 - parent: 73 + parent: 1 type: Transform - links: - - 238 + - 21 type: DeviceLinkSink - - uid: 511 + - uid: 604 components: - pos: -0.5,-1.5 - parent: 73 + parent: 1 type: Transform - links: - - 238 + - 21 type: DeviceLinkSink - - uid: 577 + - uid: 605 components: - pos: 5.5,-19.5 - parent: 73 + parent: 1 type: Transform - links: - - 578 + - 611 type: DeviceLinkSink - - uid: 670 + - uid: 606 components: - pos: -1.5,-1.5 - parent: 73 + parent: 1 type: Transform - links: - - 238 + - 21 type: DeviceLinkSink - - uid: 687 + - uid: 607 components: - pos: 0.5,-1.5 - parent: 73 + parent: 1 type: Transform - links: - - 238 + - 21 type: DeviceLinkSink - - uid: 693 + - uid: 608 components: - pos: -2.5,-1.5 - parent: 73 + parent: 1 type: Transform - links: - - 238 + - 21 type: DeviceLinkSink - proto: SignalButton entities: - - uid: 143 + - uid: 609 components: - pos: -2.5,-10.5 - parent: 73 + parent: 1 type: Transform - linkedPorts: - 140: + 600: - Pressed: Toggle - 48: + 599: - Pressed: Toggle type: DeviceLinkSource - - uid: 238 + - uid: 611 components: - - pos: -2.5,-7.5 - parent: 73 + - pos: 5.5,-20.5 + parent: 1 type: Transform - linkedPorts: - 4: - - Pressed: Toggle - 160: - - Pressed: Toggle - 693: - - Pressed: Toggle - 670: - - Pressed: Toggle - 511: - - Pressed: Toggle - 687: - - Pressed: Toggle - 193: + 605: - Pressed: Toggle type: DeviceLinkSource - - uid: 578 +- proto: SignalButtonDirectional + entities: + - uid: 20 components: - - pos: 5.5,-20.5 - parent: 73 + - rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 type: Transform - linkedPorts: - 577: + 602: + - Pressed: Toggle + 598: - Pressed: Toggle type: DeviceLinkSource - - uid: 630 + - uid: 21 components: - - pos: 3.5,-6.5 - parent: 73 + - rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 1 type: Transform - linkedPorts: - 189: + 597: + - Pressed: Toggle + 601: + - Pressed: Toggle + 608: + - Pressed: Toggle + 606: - Pressed: Toggle - 38: + 604: + - Pressed: Toggle + 607: + - Pressed: Toggle + 603: - Pressed: Toggle type: DeviceLinkSource - proto: SignDirectionalEvac entities: - - uid: 572 + - uid: 613 components: - pos: 0.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 574 + - uid: 614 components: - rot: 1.5707963267948966 rad pos: 4.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 680 + - uid: 615 components: - rot: 3.141592653589793 rad pos: -5.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 688 + - uid: 616 components: - rot: 3.141592653589793 rad pos: 4.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 718 + - uid: 617 components: - rot: -1.5707963267948966 rad pos: -5.5,-15.5 - parent: 73 + parent: 1 type: Transform - proto: SignElectricalMed entities: - - uid: 521 + - uid: 618 components: - pos: -2.5,-18.5 - parent: 73 + parent: 1 type: Transform - proto: SignNosmoking entities: - - uid: 522 + - uid: 619 components: - pos: 5.5,-22.5 - parent: 73 + parent: 1 type: Transform - proto: SignSecureSmallRed entities: - - uid: 745 + - uid: 620 components: - pos: -3.5,-11.5 - parent: 73 + parent: 1 type: Transform - - uid: 746 + - uid: 621 components: - pos: 4.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 747 + - uid: 622 components: - pos: 2.5,-11.5 - parent: 73 + parent: 1 type: Transform - proto: SMESBasic entities: - - uid: 210 + - uid: 623 components: - pos: -5.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 211 + - uid: 624 components: - pos: -4.5,-19.5 - parent: 73 + parent: 1 type: Transform - proto: SoapSyndie entities: - - uid: 797 + - uid: 625 components: - pos: 2.4424396,-17.430403 - parent: 73 + parent: 1 type: Transform - proto: soda_dispenser entities: - - uid: 535 + - uid: 626 components: - pos: 1.5,-19.5 - parent: 73 + parent: 1 type: Transform - proto: StorageCanister entities: - - uid: 498 + - uid: 627 components: - pos: 2.5,-23.5 - parent: 73 + parent: 1 type: Transform - proto: SubstationBasic entities: - - uid: 219 + - uid: 628 components: - pos: -3.5,-19.5 - parent: 73 + parent: 1 type: Transform - proto: SuitStorageEVASyndicate entities: - - uid: 426 + - uid: 629 components: - pos: 0.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 565 + - uid: 630 components: - pos: 0.5,-23.5 - parent: 73 + parent: 1 type: Transform - - uid: 774 + - uid: 631 components: - pos: 3.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 782 + - uid: 632 components: - pos: -4.5,-17.5 - parent: 73 + parent: 1 type: Transform - proto: SyndieMiniBomb entities: - - uid: 723 + - uid: 633 components: - pos: 1.4127003,-11.973867 - parent: 73 + parent: 1 type: Transform - - uid: 726 + - uid: 634 components: - pos: 1.6939503,-11.973867 - parent: 73 + parent: 1 type: Transform - proto: SyringeInaprovaline entities: - - uid: 526 + - uid: 635 components: - pos: -3.510837,-4.3787546 - parent: 73 + parent: 1 type: Transform - - uid: 536 + - uid: 636 components: - pos: -3.510837,-4.0193796 - parent: 73 + parent: 1 type: Transform - proto: Table entities: - - uid: 90 + - uid: 637 components: - pos: 5.5,-21.5 - parent: 73 + parent: 1 type: Transform - - uid: 445 + - uid: 638 components: - rot: 3.141592653589793 rad pos: 1.5,-21.5 - parent: 73 + parent: 1 type: Transform - - uid: 527 + - uid: 639 components: - pos: 3.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 528 + - uid: 640 components: - pos: 2.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 529 + - uid: 641 components: - pos: 1.5,-19.5 - parent: 73 + parent: 1 type: Transform - proto: TablePlasmaGlass entities: - - uid: 52 + - uid: 642 components: - pos: -3.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 672 + - uid: 643 components: - pos: -3.5,-6.5 - parent: 73 + parent: 1 type: Transform - - uid: 702 + - uid: 644 components: - pos: -3.5,-3.5 - parent: 73 + parent: 1 type: Transform - proto: TableReinforced entities: - - uid: 87 + - uid: 645 components: - pos: -2.5,-11.5 - parent: 73 + parent: 1 type: Transform - - uid: 190 + - uid: 646 components: - pos: -2.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 508 + - uid: 647 components: - pos: -1.5,-3.5 - parent: 73 + parent: 1 type: Transform - - uid: 532 + - uid: 648 components: - pos: -2.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 735 + - uid: 649 components: - pos: 0.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 736 + - uid: 650 components: - pos: 1.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 737 + - uid: 651 components: - pos: 1.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 738 + - uid: 652 components: - pos: 1.5,-11.5 - parent: 73 + parent: 1 type: Transform - - uid: 765 + - uid: 653 components: - pos: 2.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 768 + - uid: 654 components: - pos: 1.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 769 + - uid: 655 components: - pos: -2.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 770 + - uid: 656 components: - rot: -1.5707963267948966 rad pos: 1.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 772 + - uid: 657 components: - pos: -3.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 773 + - uid: 658 components: - rot: -1.5707963267948966 rad pos: -1.5,-2.5 - parent: 73 + parent: 1 type: Transform - proto: Thruster entities: - - uid: 187 + - uid: 659 components: - pos: -6.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 188 + - uid: 660 components: - pos: 5.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 191 + - uid: 661 components: - rot: 1.5707963267948966 rad pos: -5.5,-7.5 - parent: 73 + parent: 1 type: Transform - - uid: 192 + - uid: 662 components: - rot: -1.5707963267948966 rad pos: 4.5,-7.5 - parent: 73 + parent: 1 type: Transform - - uid: 657 + - uid: 663 components: - rot: 1.5707963267948966 rad pos: -7.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 658 + - uid: 664 components: - rot: -1.5707963267948966 rad pos: 6.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 819 + - uid: 665 components: - rot: 3.141592653589793 rad pos: -5.5,-30.5 - parent: 73 + parent: 1 type: Transform - - uid: 820 + - uid: 666 components: - rot: 3.141592653589793 rad pos: -4.5,-30.5 - parent: 73 + parent: 1 type: Transform - - uid: 821 + - uid: 667 components: - rot: 3.141592653589793 rad pos: 4.5,-30.5 - parent: 73 + parent: 1 type: Transform - - uid: 822 + - uid: 668 components: - rot: 3.141592653589793 rad pos: 3.5,-30.5 - parent: 73 + parent: 1 type: Transform - proto: ToolboxSyndicate entities: - - uid: 651 + - uid: 669 components: - pos: -2.5731854,-17.414778 - parent: 73 + parent: 1 type: Transform - proto: ToolboxSyndicateFilled entities: - - uid: 748 + - uid: 670 components: - pos: 1.5034143,-11.298322 - parent: 73 + parent: 1 type: Transform - proto: VendingMachineTankDispenserEVA entities: - - uid: 479 + - uid: 671 components: - flags: SessionSpecific type: MetaData - pos: 5.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 524 + - uid: 672 components: - flags: SessionSpecific name: tank dispenser type: MetaData - pos: 2.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 656 + - uid: 673 components: - flags: SessionSpecific type: MetaData - pos: -6.5,-15.5 - parent: 73 + parent: 1 type: Transform - proto: VendingMachineYouTool entities: - - uid: 507 + - uid: 674 components: - flags: SessionSpecific type: MetaData - pos: -3.5,-24.5 - parent: 73 + parent: 1 type: Transform - proto: WallPlastitanium entities: - - uid: 1 + - uid: 11 + components: + - pos: -1.5,-25.5 + parent: 1 + type: Transform + - uid: 675 components: - pos: 2.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 3 + - uid: 676 components: - pos: 4.5,-3.5 - parent: 73 + parent: 1 type: Transform - - uid: 5 + - uid: 677 components: - pos: -3.5,-11.5 - parent: 73 + parent: 1 type: Transform - - uid: 6 + - uid: 678 components: - pos: 2.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 7 + - uid: 679 components: - pos: 4.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 8 + - uid: 680 components: - pos: -2.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 10 + - uid: 681 components: - pos: 2.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 11 + - uid: 682 components: - pos: 1.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 12 + - uid: 683 components: - pos: 1.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 13 + - uid: 684 components: - pos: 7.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 14 + - uid: 685 components: - pos: -3.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 15 + - uid: 686 components: - rot: 1.5707963267948966 rad pos: 3.5,-7.5 - parent: 73 + parent: 1 type: Transform - - uid: 17 + - uid: 687 components: - pos: 2.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 18 + - uid: 688 components: - pos: -3.5,-28.5 - parent: 73 + parent: 1 type: Transform - - uid: 20 + - uid: 689 components: - pos: 2.5,-10.5 - parent: 73 + parent: 1 type: Transform - - uid: 21 + - uid: 690 components: - pos: 4.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 22 + - uid: 691 components: - pos: -2.5,-10.5 - parent: 73 + parent: 1 type: Transform - - uid: 23 + - uid: 692 components: - pos: -3.5,-10.5 - parent: 73 + parent: 1 type: Transform - - uid: 24 + - uid: 693 components: - pos: -6.5,-11.5 - parent: 73 + parent: 1 type: Transform - - uid: 25 + - uid: 694 components: - pos: 4.5,-10.5 - parent: 73 + parent: 1 type: Transform - - uid: 26 + - uid: 695 components: - pos: 4.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 27 + - uid: 696 components: - rot: 1.5707963267948966 rad pos: -4.5,-7.5 - parent: 73 + parent: 1 type: Transform - - uid: 29 + - uid: 697 components: - pos: -6.5,-6.5 - parent: 73 + parent: 1 type: Transform - - uid: 30 + - uid: 698 components: - pos: -5.5,-6.5 - parent: 73 + parent: 1 type: Transform - - uid: 31 + - uid: 699 components: - pos: 4.5,-6.5 - parent: 73 + parent: 1 type: Transform - - uid: 32 + - uid: 700 components: - pos: -6.5,-5.5 - parent: 73 + parent: 1 type: Transform - - uid: 33 + - uid: 701 components: - rot: 1.5707963267948966 rad pos: -2.5,-8.5 - parent: 73 + parent: 1 type: Transform - - uid: 34 + - uid: 702 components: - rot: 1.5707963267948966 rad pos: 1.5,-7.5 - parent: 73 + parent: 1 type: Transform - - uid: 35 + - uid: 703 components: - rot: 1.5707963267948966 rad pos: 1.5,-8.5 - parent: 73 + parent: 1 type: Transform - - uid: 39 + - uid: 704 components: - pos: 2.5,-11.5 - parent: 73 + parent: 1 type: Transform - - uid: 40 + - uid: 705 components: - pos: 5.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 41 + - uid: 706 components: - pos: -8.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 42 + - uid: 707 components: - pos: -8.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 43 + - uid: 708 components: - pos: -7.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 44 + - uid: 709 components: - pos: -5.5,-10.5 - parent: 73 + parent: 1 type: Transform - - uid: 45 + - uid: 710 components: - pos: -3.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 46 + - uid: 711 components: - pos: 3.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 47 + - uid: 712 components: - rot: 1.5707963267948966 rad pos: -4.5,-6.5 - parent: 73 + parent: 1 type: Transform - - uid: 49 + - uid: 713 components: - rot: 1.5707963267948966 rad pos: -3.5,-7.5 - parent: 73 + parent: 1 type: Transform - - uid: 50 + - uid: 714 components: - rot: 1.5707963267948966 rad pos: -3.5,-8.5 - parent: 73 + parent: 1 type: Transform - - uid: 53 + - uid: 715 components: - pos: 5.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 54 + - uid: 716 components: - pos: 7.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 55 + - uid: 717 components: - pos: -6.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 56 + - uid: 718 components: - pos: -6.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 57 + - uid: 719 components: - pos: -3.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 58 + - uid: 720 components: - pos: 2.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 59 + - uid: 721 components: - pos: 2.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 60 + - uid: 722 components: - pos: 4.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 61 + - uid: 723 components: - pos: -7.5,-21.5 - parent: 73 + parent: 1 type: Transform - - uid: 62 + - uid: 724 components: - pos: -7.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 63 + - uid: 725 components: - pos: -7.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 64 + - uid: 726 components: - pos: 6.5,-21.5 - parent: 73 + parent: 1 type: Transform - - uid: 71 + - uid: 727 components: - pos: 6.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 72 + - uid: 728 components: - pos: 6.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 74 + - uid: 729 components: - rot: 1.5707963267948966 rad pos: 2.5,-3.5 - parent: 73 + parent: 1 type: Transform - - uid: 75 + - uid: 730 components: - pos: 1.5,-10.5 - parent: 73 + parent: 1 type: Transform - - uid: 77 + - uid: 731 components: - pos: -3.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 79 + - uid: 732 components: - pos: -6.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 80 + - uid: 733 components: - pos: 5.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 81 + - uid: 734 components: - pos: 5.5,-11.5 - parent: 73 + parent: 1 type: Transform - - uid: 82 + - uid: 735 components: - pos: -5.5,-11.5 - parent: 73 + parent: 1 type: Transform - - uid: 83 + - uid: 736 components: - pos: -6.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 84 + - uid: 737 components: - pos: 0.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 85 + - uid: 738 components: - pos: -1.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 86 + - uid: 739 components: - pos: 5.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 89 + - uid: 740 components: - pos: -5.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 91 + - uid: 741 components: - pos: 6.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 93 + - uid: 742 components: - pos: -3.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 94 + - uid: 743 components: - pos: -2.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 96 + - uid: 744 components: - pos: 2.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 97 + - uid: 745 components: - pos: 2.5,-28.5 - parent: 73 + parent: 1 type: Transform - - uid: 98 + - uid: 746 components: - pos: 6.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 99 + - uid: 747 components: - pos: 6.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 100 + - uid: 748 components: - pos: -7.5,-23.5 - parent: 73 + parent: 1 type: Transform - - uid: 101 + - uid: 749 components: - pos: -7.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 102 + - uid: 750 components: - pos: -7.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 103 + - uid: 751 components: - pos: -7.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 104 + - uid: 752 components: - pos: 4.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 105 + - uid: 753 components: - pos: 6.5,-28.5 - parent: 73 + parent: 1 type: Transform - - uid: 106 + - uid: 754 components: - pos: 6.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 107 + - uid: 755 components: - pos: 6.5,-23.5 - parent: 73 + parent: 1 type: Transform - - uid: 108 + - uid: 756 components: - pos: 6.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 109 + - uid: 757 components: - pos: -7.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 110 + - uid: 758 components: - pos: -7.5,-28.5 - parent: 73 + parent: 1 type: Transform - - uid: 111 + - uid: 759 components: - rot: 3.141592653589793 rad pos: -5.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 113 + - uid: 760 components: - pos: -5.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 120 + - uid: 761 components: - pos: -5.5,-3.5 - parent: 73 + parent: 1 type: Transform - - uid: 121 + - uid: 762 components: - pos: 5.5,-5.5 - parent: 73 + parent: 1 type: Transform - - uid: 122 + - uid: 763 components: - pos: -3.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 124 + - uid: 764 components: - pos: -6.5,-3.5 - parent: 73 + parent: 1 type: Transform - - uid: 127 + - uid: 765 components: - rot: 1.5707963267948966 rad pos: -2.5,-7.5 - parent: 73 + parent: 1 type: Transform - - uid: 128 + - uid: 766 components: - pos: -3.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 130 + - uid: 767 components: - pos: -3.5,-1.5 - parent: 73 + parent: 1 type: Transform - - uid: 131 + - uid: 768 components: - pos: 2.5,-1.5 - parent: 73 + parent: 1 type: Transform - - uid: 133 + - uid: 769 components: - pos: -6.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 135 + - uid: 770 components: - pos: -5.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 136 + - uid: 771 components: - pos: 5.5,-6.5 - parent: 73 + parent: 1 type: Transform - - uid: 141 + - uid: 772 components: - rot: 1.5707963267948966 rad pos: 2.5,-7.5 - parent: 73 + parent: 1 type: Transform - - uid: 142 + - uid: 773 components: - rot: 1.5707963267948966 rad pos: 2.5,-8.5 - parent: 73 + parent: 1 type: Transform - - uid: 144 + - uid: 774 components: - pos: 4.5,-11.5 - parent: 73 + parent: 1 type: Transform - - uid: 147 + - uid: 775 components: - pos: -6.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 150 + - uid: 776 components: - pos: -3.5,-30.5 - parent: 73 + parent: 1 type: Transform - - uid: 151 + - uid: 777 components: - pos: 6.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 152 + - uid: 778 components: - pos: 5.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 154 + - uid: 779 components: - pos: -7.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 157 + - uid: 780 components: - pos: 1.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 158 + - uid: 781 components: - pos: -4.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 161 + - uid: 782 components: - pos: -2.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 162 + - uid: 783 components: - pos: 0.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 163 - components: - - pos: -1.5,-25.5 - parent: 73 - type: Transform - - uid: 164 + - uid: 785 components: - pos: -1.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 165 + - uid: 786 components: - pos: 0.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 166 + - uid: 787 components: - pos: 1.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 167 + - uid: 788 components: - pos: 1.5,-23.5 - parent: 73 + parent: 1 type: Transform - - uid: 168 + - uid: 789 components: - pos: 1.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 169 + - uid: 790 components: - pos: -2.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 170 + - uid: 791 components: - pos: -2.5,-23.5 - parent: 73 + parent: 1 type: Transform - - uid: 171 + - uid: 792 components: - pos: -2.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 174 + - uid: 793 components: - pos: 5.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 183 + - uid: 794 components: - pos: -7.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 185 + - uid: 795 components: - pos: -7.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 195 + - uid: 796 components: - rot: -1.5707963267948966 rad pos: -4.5,-28.5 - parent: 73 + parent: 1 type: Transform - - uid: 196 + - uid: 797 components: - rot: -1.5707963267948966 rad pos: -5.5,-28.5 - parent: 73 + parent: 1 type: Transform - - uid: 197 + - uid: 798 components: - rot: -1.5707963267948966 rad pos: -6.5,-28.5 - parent: 73 + parent: 1 type: Transform - - uid: 198 + - uid: 799 components: - rot: -1.5707963267948966 rad pos: 3.5,-28.5 - parent: 73 + parent: 1 type: Transform - - uid: 199 + - uid: 800 components: - rot: -1.5707963267948966 rad pos: 4.5,-28.5 - parent: 73 + parent: 1 type: Transform - - uid: 200 + - uid: 801 components: - rot: -1.5707963267948966 rad pos: 5.5,-28.5 - parent: 73 + parent: 1 type: Transform - - uid: 379 + - uid: 802 components: - rot: -1.5707963267948966 rad pos: 2.5,-6.5 - parent: 73 + parent: 1 type: Transform - - uid: 380 + - uid: 803 components: - pos: 4.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 381 + - uid: 804 components: - pos: 4.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 382 + - uid: 805 components: - pos: 4.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 481 + - uid: 806 components: - pos: 2.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 514 + - uid: 807 components: - pos: 3.5,-6.5 - parent: 73 + parent: 1 type: Transform - - uid: 566 + - uid: 808 components: - pos: 2.5,-30.5 - parent: 73 + parent: 1 type: Transform - - uid: 569 + - uid: 809 components: - rot: 3.141592653589793 rad pos: -5.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 636 + - uid: 810 components: - pos: 3.5,-29.5 - parent: 73 + parent: 1 type: Transform - - uid: 637 + - uid: 811 components: - pos: -5.5,-29.5 - parent: 73 + parent: 1 type: Transform - - uid: 638 + - uid: 812 components: - pos: 4.5,-29.5 - parent: 73 + parent: 1 type: Transform - - uid: 639 + - uid: 813 components: - pos: -4.5,-29.5 - parent: 73 + parent: 1 type: Transform - - uid: 641 + - uid: 814 components: - pos: 5.5,-29.5 - parent: 73 + parent: 1 type: Transform - - uid: 677 + - uid: 815 components: - pos: -3.5,-29.5 - parent: 73 + parent: 1 type: Transform - - uid: 678 + - uid: 816 components: - pos: 2.5,-29.5 - parent: 73 + parent: 1 type: Transform - - uid: 683 + - uid: 817 components: - pos: 6.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 739 + - uid: 818 components: - pos: 6.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 753 + - uid: 819 components: - pos: 5.5,-3.5 - parent: 73 + parent: 1 type: Transform - - uid: 781 + - uid: 820 components: - pos: -6.5,-29.5 - parent: 73 + parent: 1 type: Transform - - uid: 823 + - uid: 821 components: - rot: 3.141592653589793 rad pos: -6.5,-30.5 - parent: 73 + parent: 1 type: Transform - - uid: 824 + - uid: 822 components: - rot: 3.141592653589793 rad pos: 5.5,-30.5 - parent: 73 + parent: 1 type: Transform - - uid: 847 + - uid: 823 components: - pos: 8.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 848 + - uid: 824 components: - pos: 8.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 849 + - uid: 825 components: - pos: -9.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 850 + - uid: 826 components: - pos: -9.5,-15.5 - parent: 73 + parent: 1 type: Transform - proto: WarningN2 entities: - - uid: 519 + - uid: 827 components: - pos: 4.5,-25.5 - parent: 73 + parent: 1 type: Transform - proto: WarningO2 entities: - - uid: 518 + - uid: 828 components: - pos: 2.5,-25.5 - parent: 73 + parent: 1 type: Transform - proto: WarningWaste entities: - - uid: 520 + - uid: 829 components: - pos: 4.5,-18.5 - parent: 73 + parent: 1 type: Transform - proto: WaterCooler entities: - - uid: 599 + - uid: 830 components: - pos: 0.5,-17.5 - parent: 73 + parent: 1 + type: Transform +- proto: WeaponTurretSyndicate + entities: + - uid: 24 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform + - uid: 610 + components: + - pos: -1.5,-19.5 + parent: 1 type: Transform - proto: WindoorSecure entities: - - uid: 713 + - uid: 831 components: - rot: -1.5707963267948966 rad pos: -2.5,-5.5 - parent: 73 + parent: 1 type: Transform - proto: Wrench entities: - - uid: 545 + - uid: 832 components: - pos: 5.4749,-23.512577 - parent: 73 + parent: 1 type: Transform - - uid: 546 + - uid: 833 components: - pos: 5.63115,-23.481327 - parent: 73 + parent: 1 type: Transform - - uid: 743 + - uid: 834 components: - pos: 1.6061028,-13.284962 - parent: 73 + parent: 1 type: Transform ... diff --git a/Resources/Maps/nukieplanet.yml b/Resources/Maps/nukieplanet.yml index 3ce69a4dc7..e943239711 100644 --- a/Resources/Maps/nukieplanet.yml +++ b/Resources/Maps/nukieplanet.yml @@ -3,23 +3,23 @@ meta: postmapinit: false tilemap: 0: Space - 12: FloorBar - 18: FloorCarpetClown - 26: FloorDark - 41: FloorFreezer - 56: FloorIce - 71: FloorReinforced - 73: FloorRockVault - 74: FloorShowroom - 76: FloorShuttleOrange - 78: FloorShuttleRed - 81: FloorSnow - 83: FloorSteel - 95: FloorTechMaint - 99: FloorWhite - 109: FloorWood - 111: Lattice - 112: Plating + 14: FloorBar + 20: FloorCarpetClown + 29: FloorDark + 44: FloorFreezer + 59: FloorIce + 77: FloorReinforced + 79: FloorRockVault + 80: FloorShowroom + 82: FloorShuttleOrange + 84: FloorShuttleRed + 87: FloorSnow + 89: FloorSteel + 104: FloorTechMaint + 108: FloorWhite + 118: FloorWood + 120: Lattice + 121: Plating entities: - proto: "" entities: @@ -36,95 +36,95 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAKUQAAAAAAcAAAAAAAGgAAAAACYwAAAAADYwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAGgAAAAABYwAAAAADUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAGgAAAAAAYwAAAAACYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAADUQAAAAAEUQAAAAAAUQAAAAAEDAAAAAACbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAADAAAAAACbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAADAAAAAACbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAGgAAAAADUQAAAAAAUQAAAAAAUQAAAAALDAAAAAAADAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAADAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAIcAAAAAAADAAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATwAAAAAATwAAAAAAVwAAAAAKVwAAAAAAeQAAAAAAHQAAAAACbAAAAAADbAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAHQAAAAABbAAAAAADWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAHQAAAAAAbAAAAAACbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATwAAAAAATwAAAAAAVwAAAAADVwAAAAAEVwAAAAAAVwAAAAAEDgAAAAACdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAADgAAAAACdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAADgAAAAACdgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATwAAAAAATwAAAAAAHQAAAAADVwAAAAAAVwAAAAAAVwAAAAALDgAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATwAAAAAATwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAFVwAAAAAIeQAAAAAADgAAAAAB version: 6 0,-1: ind: 0,-1 - tiles: YwAAAAAAYwAAAAADcAAAAAAAYwAAAAAAYwAAAAACYwAAAAACYwAAAAADYwAAAAABGgAAAAAAGgAAAAABGgAAAAABGgAAAAABGgAAAAABGgAAAAAAGgAAAAADGgAAAAACUwAAAAAAYwAAAAADYwAAAAADYwAAAAADYwAAAAACYwAAAAAAYwAAAAADYwAAAAADGgAAAAADTgAAAAAAGgAAAAACTgAAAAAAGgAAAAADTgAAAAAAGgAAAAADGgAAAAADYwAAAAAAYwAAAAACcAAAAAAAYwAAAAADYwAAAAACYwAAAAADYwAAAAACYwAAAAACGgAAAAADTgAAAAAAGgAAAAADTgAAAAAAGgAAAAABTgAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAADGgAAAAAAUwAAAAADUwAAAAACUwAAAAADYwAAAAADYwAAAAACGgAAAAABGgAAAAAAGgAAAAAAGgAAAAABGgAAAAABGgAAAAABGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACYwAAAAADYwAAAAACDAAAAAACGgAAAAADGgAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAAAGgAAAAADUQAAAAAAUQAAAAAAYwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAYwAAAAACYwAAAAAAUQAAAAAAGgAAAAADGgAAAAADTAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAADAAAAAABDAAAAAADDAAAAAACDAAAAAAADAAAAAADcAAAAAAAGgAAAAABcAAAAAAADAAAAAADDAAAAAACDAAAAAAADAAAAAACDAAAAAAAGgAAAAABGgAAAAADGgAAAAABTgAAAAAATgAAAAAAbQAAAAACbQAAAAACbQAAAAADGgAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAADGgAAAAACcAAAAAAAGgAAAAACGgAAAAACGgAAAAADGgAAAAABbQAAAAAAbQAAAAACbQAAAAACbQAAAAADbQAAAAADGgAAAAAAGgAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAADGgAAAAABGgAAAAACGgAAAAABbQAAAAAAbQAAAAABbQAAAAAAbQAAAAADbQAAAAADGgAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAABGgAAAAADcAAAAAAAGgAAAAACGgAAAAABGgAAAAABGgAAAAACDAAAAAACDAAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAABDAAAAAACDAAAAAAADAAAAAAADAAAAAACDAAAAAADDAAAAAAADAAAAAABGgAAAAAAGgAAAAACGgAAAAACDAAAAAAADAAAAAABDAAAAAACDAAAAAAADAAAAAABDAAAAAABDAAAAAADDAAAAAAADAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADAAAAAACbQAAAAAAbQAAAAADbQAAAAABDAAAAAACDAAAAAACDAAAAAAADAAAAAAADAAAAAADDAAAAAAADAAAAAAATgAAAAAADAAAAAACKQAAAAAAKQAAAAAAKQAAAAAADAAAAAADbQAAAAABbQAAAAABbQAAAAADDAAAAAADDAAAAAABDAAAAAADDAAAAAACDAAAAAADDAAAAAAADAAAAAAATgAAAAAADAAAAAAASgAAAAAAKQAAAAAADAAAAAAADAAAAAACGgAAAAAAGgAAAAACcAAAAAAADAAAAAACDAAAAAACDAAAAAACDAAAAAAADAAAAAADDAAAAAABDAAAAAACTgAAAAAADAAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAAADAAAAAADDAAAAAACDAAAAAACDAAAAAACDAAAAAABDAAAAAABDAAAAAAADAAAAAACSgAAAAAASgAAAAAAKQAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAA + tiles: bAAAAAAAbAAAAAADeQAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAACWQAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAACbAAAAAAAbAAAAAADbAAAAAADHQAAAAADVAAAAAAAHQAAAAACVAAAAAAAHQAAAAADVAAAAAAAHQAAAAADHQAAAAADbAAAAAAAbAAAAAACeQAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAACbAAAAAACHQAAAAADVAAAAAAAHQAAAAADVAAAAAAAHQAAAAABVAAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAWQAAAAADWQAAAAACWQAAAAADbAAAAAADbAAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACbAAAAAADbAAAAAACDgAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAADVwAAAAAAVwAAAAAAbAAAAAAAWQAAAAABWQAAAAAAWQAAAAAAbAAAAAACbAAAAAAAVwAAAAAAHQAAAAADHQAAAAADUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAADgAAAAABDgAAAAADDgAAAAACDgAAAAAADgAAAAADeQAAAAAAHQAAAAABeQAAAAAADgAAAAADDgAAAAACDgAAAAAADgAAAAACDgAAAAAAHQAAAAABHQAAAAADHQAAAAABVAAAAAAAVAAAAAAAdgAAAAACdgAAAAACdgAAAAADHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAABdgAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAABdgAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAACDgAAAAACDgAAAAAADgAAAAACDgAAAAADDgAAAAACDgAAAAABDgAAAAACDgAAAAAADgAAAAAADgAAAAACDgAAAAADDgAAAAAADgAAAAABHQAAAAAAHQAAAAACHQAAAAACDgAAAAAADgAAAAABDgAAAAACDgAAAAAADgAAAAABDgAAAAABDgAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAACdgAAAAAAdgAAAAADdgAAAAABDgAAAAACDgAAAAACDgAAAAAADgAAAAAADgAAAAADDgAAAAAADgAAAAAAVAAAAAAADgAAAAACLAAAAAAALAAAAAAALAAAAAAADgAAAAADdgAAAAABdgAAAAABdgAAAAADDgAAAAADDgAAAAABDgAAAAADDgAAAAACDgAAAAADDgAAAAAADgAAAAAAVAAAAAAADgAAAAAAUAAAAAAALAAAAAAADgAAAAAADgAAAAACHQAAAAAAHQAAAAACeQAAAAAADgAAAAACDgAAAAACDgAAAAACDgAAAAAADgAAAAADDgAAAAABDgAAAAACVAAAAAAADgAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAADgAAAAAADgAAAAADDgAAAAACDgAAAAACDgAAAAACDgAAAAABDgAAAAABDgAAAAAADgAAAAACUAAAAAAAUAAAAAAALAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAA version: 6 0,0: ind: 0,0 - tiles: GgAAAAADGgAAAAACGgAAAAACDAAAAAAADAAAAAABDAAAAAABDAAAAAABDAAAAAACDAAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAUQAAAAAGcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAADAAAAAAADAAAAAABDAAAAAABDAAAAAACDAAAAAABDAAAAAAADAAAAAACDAAAAAACUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAASQAAAAAAcAAAAAAAUQAAAAAAUQAAAAAHUQAAAAAAUQAAAAAAUQAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAABUQAAAAAAcAAAAAAASQAAAAAAcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAABUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAASQAAAAAAUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMUQAAAAAAUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAUQAAAAAIUQAAAAAAUQAAAAACUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAIUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAKUQAAAAABUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAHUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAGUQAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAMUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAHUQAAAAAAUQAAAAACUQAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAABUQAAAAAJUQAAAAAAUQAAAAAFSQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAHUQAAAAAHUQAAAAAKUQAAAAAFUQAAAAAAUQAAAAALUQAAAAAA + tiles: HQAAAAADHQAAAAACHQAAAAACDgAAAAAADgAAAAABDgAAAAABDgAAAAABDgAAAAACDgAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAVwAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAADgAAAAAADgAAAAABDgAAAAABDgAAAAACDgAAAAABDgAAAAAADgAAAAACDgAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAATwAAAAAAeQAAAAAAVwAAAAAAVwAAAAAHVwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAeQAAAAAATwAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAATwAAAAAATwAAAAAAVwAAAAAFVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAMVwAAAAAAVwAAAAAFVwAAAAAAVwAAAAAAVwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAIVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAOwAAAAAAVwAAAAAIVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAFVwAAAAAIVwAAAAAAVwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAVwAAAAAKVwAAAAABVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAOwAAAAAAOwAAAAAAVwAAAAAAVwAAAAAHVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAATwAAAAAATwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAJVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAIVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAATwAAAAAATwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAIVwAAAAAAVwAAAAAGVwAAAAAATwAAAAAATwAAAAAATwAAAAAAVwAAAAAMVwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAHVwAAAAAAVwAAAAACVwAAAAAATwAAAAAATwAAAAAATwAAAAAAVwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAJVwAAAAAAVwAAAAAFTwAAAAAATwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAOwAAAAAAOwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAFVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAHVwAAAAAHVwAAAAAKVwAAAAAFVwAAAAAAVwAAAAALVwAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMUQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAAUQAAAAAKUQAAAAAIUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAKUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAGGgAAAAADGgAAAAADGgAAAAAAcAAAAAAAGgAAAAAAGgAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAALUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAAIcAAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAADGgAAAAACGgAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAABGgAAAAABUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAALUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAABUQAAAAAGSQAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAADUQAAAAAASQAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAASQAAAAAASQAAAAAASQAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASQAAAAAASQAAAAAASQAAAAAAOAAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMUQAAAAAAUQAAAAABUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAGUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAABUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKSQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAABUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAMVwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATwAAAAAAVwAAAAAKVwAAAAAIVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAATwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAFVwAAAAAKVwAAAAAAVwAAAAAEVwAAAAAAVwAAAAAGHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAALVwAAAAAAVwAAAAAAVwAAAAAKVwAAAAAIeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAACVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAABVwAAAAAJVwAAAAAAVwAAAAAAVwAAAAALVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAGTwAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAIVwAAAAADVwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAOwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAOwAAAAAAVwAAAAAAVwAAAAAEVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAMVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAATwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAMVwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAVwAAAAAAVwAAAAAIVwAAAAAAVwAAAAAGVwAAAAAAVwAAAAAIVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAOwAAAAAAOwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAKTwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAJVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: GgAAAAADGgAAAAADGgAAAAACGgAAAAACGgAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAADGgAAAAACGgAAAAACGgAAAAACcAAAAAAAUQAAAAAAUQAAAAABUQAAAAACGgAAAAADGgAAAAADGgAAAAADGgAAAAAAGgAAAAADRwAAAAAARwAAAAAARwAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAACcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAADGgAAAAABGgAAAAACcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAGgAAAAADGgAAAAAAGgAAAAAAGgAAAAADGgAAAAADGgAAAAABGgAAAAACGgAAAAADGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUQAAAAAMUQAAAAAHUQAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAABGgAAAAACGgAAAAAAGgAAAAADGgAAAAACGgAAAAACGgAAAAABUQAAAAAAUQAAAAADUQAAAAAAUQAAAAACUQAAAAAAAAAAAAAAGgAAAAAAGgAAAAABGgAAAAABGgAAAAADGgAAAAABGgAAAAABGgAAAAABGgAAAAADGgAAAAABGgAAAAACUQAAAAAFUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAGgAAAAADGgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAGgAAAAACGgAAAAACGgAAAAACUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAACAAAAAAAAcAAAAAAAGgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAGgAAAAADGgAAAAADGgAAAAACUQAAAAAESQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAAAAAAAAAGgAAAAAAGgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAGgAAAAACGgAAAAADGgAAAAACUQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAGgAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAGgAAAAAAGgAAAAADGgAAAAACUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAcAAAAAAAGgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAGgAAAAAAGgAAAAABGgAAAAADUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAABGgAAAAABUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAACGgAAAAADGgAAAAADGgAAAAACGgAAAAAAGgAAAAADUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAABUQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAGcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAUQAAAAAASQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAA + tiles: HQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAAATQAAAAAATQAAAAAATQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAACeQAAAAAAVwAAAAAAVwAAAAABVwAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAADTQAAAAAATQAAAAAATQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAACeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAACeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAVwAAAAAMVwAAAAAHVwAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAAAAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAACVwAAAAAFVwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAHQAAAAADHQAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAHQAAAAACHQAAAAACHQAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACAAAAAAAAeQAAAAAAHQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAHQAAAAADHQAAAAADHQAAAAACVwAAAAAETwAAAAAAVwAAAAAEVwAAAAAAVwAAAAAAAAAAAAAAHQAAAAAAHQAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAHQAAAAACHQAAAAADHQAAAAACVwAAAAAATwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAHQAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAHQAAAAAAHQAAAAADHQAAAAACVwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAJVwAAAAAAeQAAAAAAHQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAHQAAAAAAHQAAAAABHQAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAABVwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAJVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAABVwAAAAAATwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAGeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAEVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAVwAAAAAATwAAAAAAVwAAAAAEVwAAAAAAVwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAATwAAAAAATwAAAAAAVwAAAAAAVwAAAAAEVwAAAAAAVwAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAACUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAALUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAGUQAAAAAAUQAAAAAAUQAAAAACUQAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUQAAAAAAUQAAAAAHUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUQAAAAAAUQAAAAAGUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUQAAAAAAYwAAAAAAYwAAAAADYwAAAAADYwAAAAADYwAAAAAAcAAAAAAAXwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAADcAAAAAAAGgAAAAAAGgAAAAABUQAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAADYwAAAAAAXwAAAAAAXwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAKVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAFVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAALVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAGVwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAHVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAGVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAVwAAAAAKVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAVwAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAAAeQAAAAAAaAAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAAHQAAAAAAHQAAAAABVwAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAADbAAAAAAAaAAAAAAAaAAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAAUQAAAAAFUQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAGgAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAGUQAAAAAAUQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAALUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAEVwAAAAAAVwAAAAAAVwAAAAAEVwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAFVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAEVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAFVwAAAAAAVwAAAAAFVwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATwAAAAAATwAAAAAAHQAAAAACVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAGVwAAAAAAVwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATwAAAAAATwAAAAAAVwAAAAALVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATwAAAAAATwAAAAAAVwAAAAAFVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAKVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATwAAAAAATwAAAAAAVwAAAAAAVwAAAAAEVwAAAAAAVwAAAAAAVwAAAAAEVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAC version: 6 -1,1: ind: -1,1 - tiles: UQAAAAAIUQAAAAAAUQAAAAALUQAAAAAAUQAAAAADUQAAAAAMUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAGUQAAAAAAUQAAAAAFUQAAAAADUQAAAAAEUQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAHUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAEEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFSQAAAAAASQAAAAAASQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAUQAAAAAAUQAAAAAKUQAAAAAAUQAAAAACUQAAAAAAUQAAAAADSQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAMUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAABUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAUQAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAALUQAAAAAHUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VwAAAAAIVwAAAAAAVwAAAAALVwAAAAAAVwAAAAADVwAAAAAMVwAAAAAAVwAAAAAAVwAAAAAKVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAJVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAMVwAAAAAEVwAAAAAAVwAAAAAAVwAAAAAGVwAAAAAAVwAAAAAFVwAAAAADVwAAAAAEVwAAAAAATwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAATwAAAAAATwAAAAAAVwAAAAAAVwAAAAAEVwAAAAAHVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAEFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAATwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAFTwAAAAAATwAAAAAATwAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAVwAAAAAAVwAAAAAKVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADTwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAFVwAAAAAMVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAKFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAVwAAAAAEVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAFVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAALVwAAAAAHVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAMVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAKVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAKAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAKVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,1: ind: 0,1 - tiles: UQAAAAAAUQAAAAAEUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAACUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAHUQAAAAAAUQAAAAAJUQAAAAAGUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAHUQAAAAAAUQAAAAAAUQAAAAALUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAABUQAAAAALUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAACUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAMUQAAAAAIUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAGUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAACUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAADUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAA + tiles: VwAAAAAAVwAAAAAEVwAAAAAEVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAJVwAAAAAAVwAAAAAAVwAAAAAHVwAAAAAAVwAAAAAJVwAAAAAGVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAKVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAIVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAIVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAHVwAAAAAAVwAAAAAAVwAAAAALVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAATwAAAAAAVwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAIVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAALVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAFVwAAAAAAVwAAAAAAVwAAAAAMVwAAAAAIVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAJVwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAGVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAKVwAAAAACVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAIVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAAJVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAA version: 6 1,1: ind: 1,1 - tiles: UQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAAMUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAGUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMUQAAAAAAUQAAAAAAUQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAABUQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAKVwAAAAAMVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAATwAAAAAATwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAIVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAEVwAAAAAAVwAAAAAAVwAAAAAEVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAGVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAMVwAAAAAAVwAAAAAAVwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAJVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAJVwAAAAAAVwAAAAABVwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAJVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,0: ind: 1,0 - tiles: UQAAAAAASQAAAAAASQAAAAAAUQAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAALUQAAAAALUQAAAAAAUQAAAAAMUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAACUQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAUQAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAMUQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAACUQAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAFUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAACOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAHAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAHUQAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAEUQAAAAAJUQAAAAAAUQAAAAAHUQAAAAAAUQAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAACUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAHUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAABUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VwAAAAAATwAAAAAATwAAAAAAVwAAAAAAOwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAVwAAAAAAVwAAAAAAOwAAAAAAOwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAALVwAAAAALVwAAAAAAVwAAAAAMVwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAMVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAOwAAAAAAOwAAAAAAVwAAAAAATwAAAAAATwAAAAAATwAAAAAAVwAAAAAMVwAAAAAAVwAAAAAAVwAAAAAAOwAAAAAAOwAAAAAAVwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAOwAAAAAAOwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAFVwAAAAAFVwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAHAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAVwAAAAAAVwAAAAAKVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAEVwAAAAAHVwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAEVwAAAAAJVwAAAAAAVwAAAAAHVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAAAVwAAAAAJVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAKVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAHVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAABVwAAAAAATwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAUQAAAAABUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAABUQAAAAAAUQAAAAAAAAAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAMUQAAAAAAUQAAAAALUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAACUQAAAAAMUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAXwAAAAAAGgAAAAACGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAABXwAAAAAAcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJcAAAAAAAXwAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAACGgAAAAACGgAAAAADGgAAAAABGgAAAAABGgAAAAABXwAAAAAAcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAXwAAAAAAGgAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAACXwAAAAAAcAAAAAAAUQAAAAALUQAAAAAAUQAAAAAAUQAAAAAEGgAAAAACGgAAAAACGgAAAAABGgAAAAABRwAAAAAARwAAAAAARwAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAAAcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAIVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAFVwAAAAABVwAAAAAAVwAAAAAAAAAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAVwAAAAAMVwAAAAAAVwAAAAALVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAKVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAFVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAEVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAACVwAAAAAMVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAaAAAAAAAHQAAAAACHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABaAAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAJeQAAAAAAaAAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAABaAAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACaAAAAAAAeQAAAAAAVwAAAAALVwAAAAAAVwAAAAAAVwAAAAAEHQAAAAACHQAAAAACHQAAAAABHQAAAAABTQAAAAAATQAAAAAATQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAD version: 6 -2,0: ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAHUQAAAAAAUQAAAAABSQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAASQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAESQAAAAAASQAAAAAASQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAALUQAAAAAAUQAAAAALUQAAAAABUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAALUQAAAAAAUQAAAAAAUQAAAAABUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAEVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAHVwAAAAAAVwAAAAABTwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAFVwAAAAAATwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAETwAAAAAATwAAAAAATwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAALVwAAAAAAVwAAAAALVwAAAAABVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAIVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAALVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAEVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAA version: 6 -2,1: ind: -2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAKEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAHUQAAAAAKUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAGUQAAAAAJUQAAAAALUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAALUQAAAAAIUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAUQAAAAAGEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAEUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAEUQAAAAAAUQAAAAAMUQAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAJVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAJVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAJVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAATwAAAAAAVwAAAAAAFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAATwAAAAAAVwAAAAAKFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAJVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAHVwAAAAAKVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAGVwAAAAAJVwAAAAALVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAALVwAAAAAIVwAAAAAAVwAAAAAIVwAAAAAAVwAAAAAAVwAAAAAGFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAEVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAFVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAEVwAAAAAAVwAAAAAMVwAAAAACVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAEVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAIVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAFVwAAAAAFVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,0: ind: 2,0 - tiles: SQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: TwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: SQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAAUQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAAUQAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: TwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAVwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAVwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAIUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAIVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,2: ind: -2,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,2: ind: 0,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAEUQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAFVwAAAAAEVwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,2: ind: 1,2 - tiles: UQAAAAAAUQAAAAAFUQAAAAACUQAAAAAJUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VwAAAAAAVwAAAAAFVwAAAAACVwAAAAAJVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,0: ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 type: MapGrid - type: Broadphase @@ -158,7 +158,7 @@ entities: color: '#FFFFFFFF' id: Basalt1 decals: - 369: 26.834131,4.97881 + 368: 26.834131,4.97881 - node: color: '#FFFFFFFF' id: Bot @@ -791,7 +791,7 @@ entities: color: '#AB0000FF' id: d decals: - 374: 21.412256,2.9944348 + 373: 21.412256,2.9944348 - node: color: '#FFFFFFFF' id: grasssnowa1 @@ -801,7 +801,7 @@ entities: 47: -2.8426914,5.7681084 84: 16.072964,17.452217 85: -4.644718,19.141476 - 370: 26.896631,2.9944348 + 369: 26.896631,2.9944348 - node: color: '#FFFFFFFF' id: grasssnowa2 @@ -896,38 +896,38 @@ entities: color: '#AB0000FF' id: i decals: - 375: 21.677881,2.8381848 + 374: 21.677881,2.8381848 - node: color: '#AB0000FF' id: k decals: - 380: 23.427881,2.8069348 + 377: 23.427881,2.8069348 - node: color: '#AB0000FF' id: n decals: - 373: 20.943506,2.9006848 - 381: 22.959131,2.9631848 + 372: 20.943506,2.9006848 + 378: 22.959131,2.9631848 - node: color: '#AB0000FF' id: r decals: - 376: 22.099756,2.7913098 + 375: 22.099756,2.7913098 - node: color: '#AB0000FF' id: s decals: - 371: 20.224756,2.9788098 + 370: 20.224756,2.9788098 - node: color: '#AB0000FF' id: shortline decals: - 377: 22.552881,2.8381848 + 376: 22.552881,2.8381848 - node: color: '#AB0000FF' id: y decals: - 372: 20.568506,2.9319348 + 371: 20.568506,2.9319348 type: DecalGrid - version: 2 data: @@ -1653,31 +1653,24 @@ entities: - type: LoadedMap - type: GridTree - type: MovedGrids -- proto: AirlockCargoGlass +- proto: AirlockExternalGlassNukeopLocked entities: - - uid: 650 - components: - - pos: -11.5,6.5 - parent: 104 - type: Transform -- proto: AirlockExternalGlass - entities: - - uid: 148 + - uid: 49 components: - pos: 3.5,1.5 parent: 104 type: Transform - - uid: 1088 + - uid: 55 components: - pos: -1.5,-3.5 parent: 104 type: Transform - - uid: 1089 + - uid: 56 components: - pos: -5.5,-3.5 parent: 104 type: Transform - - uid: 2448 + - uid: 58 components: - pos: 3.5,3.5 parent: 104 @@ -1750,89 +1743,92 @@ entities: pos: -13.5,-20.5 parent: 104 type: Transform -- proto: AirlockMedicalGlass +- proto: AirlockSyndicateNukeopGlassLocked entities: - - uid: 1119 + - uid: 48 + components: + - pos: -11.5,6.5 + parent: 104 + type: Transform + - uid: 65 components: - pos: 2.5,-14.5 parent: 104 type: Transform -- proto: AirlockScienceGlass - entities: - - uid: 1810 + - uid: 96 components: - pos: 8.5,-16.5 parent: 104 type: Transform -- proto: AirlockSecurity - entities: - - uid: 272 + - uid: 112 components: - - pos: 14.5,-1.5 + - pos: 16.5,-7.5 parent: 104 type: Transform -- proto: AirlockSecurityGlass - entities: - - uid: 49 + - uid: 122 components: - - pos: 16.5,-7.5 + - pos: 9.5,-9.5 parent: 104 type: Transform - - uid: 55 + - uid: 130 components: - - pos: 23.5,-7.5 + - pos: 11.5,-7.5 parent: 104 type: Transform - - uid: 65 + - uid: 131 components: - - pos: 9.5,-9.5 + - pos: 8.5,-0.5 parent: 104 type: Transform - - uid: 109 + - uid: 165 components: - - pos: 11.5,-7.5 + - pos: 10.5,-2.5 parent: 104 type: Transform - - uid: 112 + - uid: 190 components: - - pos: 8.5,-0.5 + - pos: 16.5,-13.5 parent: 104 type: Transform - - uid: 122 + - uid: 302 components: - - pos: 17.5,-7.5 + - pos: 14.5,-5.5 parent: 104 type: Transform - - uid: 131 + - uid: 305 components: - - pos: 20.5,-10.5 + - pos: 6.5,-9.5 parent: 104 type: Transform - - uid: 136 +- proto: AirlockSyndicateNukeopLocked + entities: + - uid: 109 components: - - pos: 10.5,-2.5 + - pos: 14.5,-1.5 parent: 104 type: Transform - - uid: 190 + - uid: 120 components: - - pos: 16.5,-13.5 + - rot: 1.5707963267948966 rad + pos: 23.5,-7.5 parent: 104 type: Transform - - uid: 317 + - uid: 136 components: - - pos: 20.5,-4.5 + - rot: 1.5707963267948966 rad + pos: 17.5,-7.5 parent: 104 type: Transform - - uid: 348 + - uid: 148 components: - - pos: 14.5,-5.5 + - rot: 1.5707963267948966 rad + pos: 20.5,-10.5 parent: 104 type: Transform -- proto: AirlockVirologyGlass - entities: - - uid: 96 + - uid: 272 components: - - pos: 6.5,-9.5 + - rot: 1.5707963267948966 rad + pos: 20.5,-4.5 parent: 104 type: Transform - proto: AlwaysPoweredLightExterior @@ -6701,8 +6697,6 @@ entities: - pos: -10.5,-5.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 100 components: - pos: 13.5,0.5 @@ -6743,421 +6737,301 @@ entities: - pos: -10.5,-7.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 397 components: - pos: -10.5,0.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 411 components: - pos: -10.5,-8.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 429 components: - pos: -10.5,-0.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 430 components: - pos: -10.5,1.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 432 components: - pos: -27.5,1.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 434 components: - pos: -31.5,1.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 435 components: - pos: -10.5,-4.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 436 components: - pos: -10.5,-6.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 437 components: - pos: -10.5,-9.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 438 components: - pos: -25.5,1.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 439 components: - pos: -10.5,-3.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 442 components: - pos: -33.5,1.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 444 components: - pos: -10.5,1.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 449 components: - pos: -11.5,1.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 450 components: - pos: -12.5,1.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 451 components: - pos: -13.5,1.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 452 components: - pos: -14.5,1.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 453 components: - pos: -32.5,1.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 454 components: - pos: -15.5,1.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 464 components: - pos: -16.5,1.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 465 components: - pos: -17.5,1.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 466 components: - pos: -18.5,1.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 467 components: - pos: -19.5,1.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 501 components: - pos: -34.5,1.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 503 components: - pos: -20.5,1.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 508 components: - pos: -21.5,1.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 510 components: - pos: -22.5,1.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 514 components: - pos: -23.5,1.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 515 components: - pos: -24.5,1.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 619 components: - pos: -10.5,-12.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 624 components: - pos: -10.5,-10.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 625 components: - pos: -10.5,-11.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 627 components: - pos: -10.5,-15.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 628 components: - pos: -10.5,-16.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 630 components: - pos: -10.5,-17.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 635 components: - pos: -10.5,-20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 636 components: - pos: -11.5,-20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 638 components: - pos: -12.5,-20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 639 components: - pos: -13.5,-20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 644 components: - pos: -30.5,-20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 645 components: - pos: -31.5,-20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 646 components: - pos: -32.5,-20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 653 components: - pos: -15.5,-20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 654 components: - pos: -16.5,-20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 655 components: - pos: -17.5,-20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 656 components: - pos: -18.5,-20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 657 components: - pos: -19.5,-20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 658 components: - pos: -20.5,-20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 659 components: - pos: -21.5,-20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 660 components: - pos: -22.5,-20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 661 components: - pos: -23.5,-20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 662 components: - pos: -24.5,-20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 665 components: - pos: -25.5,-20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 666 components: - pos: -26.5,-20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 667 components: - pos: -27.5,-20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 668 components: - pos: -28.5,-20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 669 components: - pos: -29.5,-20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 707 components: - pos: -33.5,-20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 713 components: - pos: -34.5,-20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 814 components: - pos: -6.5,-3.5 @@ -7173,15 +7047,11 @@ entities: - pos: -10.5,-1.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 866 components: - pos: -10.5,-2.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 867 components: - pos: -5.5,-3.5 @@ -7192,15 +7062,11 @@ entities: - pos: -10.5,-3.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 870 components: - pos: -9.5,-3.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 877 components: - pos: -8.5,-3.5 @@ -7216,22 +7082,16 @@ entities: - pos: -10.5,-13.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 926 components: - pos: -30.5,1.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 927 components: - pos: -26.5,1.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 931 components: - pos: 12.5,-19.5 @@ -7242,22 +7102,16 @@ entities: - pos: -10.5,-19.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 934 components: - pos: -10.5,-14.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 941 components: - pos: -14.5,-20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 960 components: - pos: 12.5,-17.5 @@ -7288,22 +7142,16 @@ entities: - pos: -10.5,-18.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 970 components: - pos: -29.5,1.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 971 components: - pos: -28.5,1.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 973 components: - pos: 5.5,-17.5 @@ -7409,22 +7257,16 @@ entities: - pos: -10.5,4.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 1235 components: - pos: -10.5,3.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 1236 components: - pos: -10.5,2.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 1237 components: - pos: -11.5,6.5 @@ -8065,22 +7907,16 @@ entities: - pos: 21.5,-17.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 2386 components: - pos: 22.5,-17.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 2387 components: - pos: 23.5,-17.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 2388 components: - pos: 24.5,-17.5 @@ -8146,8 +7982,6 @@ entities: - pos: 7.5,-9.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 3379 components: - pos: 7.5,-10.5 @@ -8227,22 +8061,16 @@ entities: - pos: 21.5,-19.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 2341 components: - pos: 22.5,-19.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 2342 components: - pos: 23.5,-19.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 2343 components: - pos: 24.5,-19.5 @@ -8293,15 +8121,11 @@ entities: - pos: 22.5,-17.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 2356 components: - pos: 23.5,-17.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 2357 components: - pos: 24.5,-17.5 @@ -8327,8 +8151,6 @@ entities: - pos: 21.5,-17.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - uid: 2362 components: - pos: 25.5,-14.5 @@ -10146,6 +9968,8 @@ entities: - pos: 9.36168,-4.462339 parent: 104 type: Transform + - maxShots: 200 + type: SolutionAmmoProvider - proto: ClothingBeltUtilityFilled entities: - uid: 212 @@ -10153,6 +9977,13 @@ entities: - pos: 13.897393,-10.470539 parent: 104 type: Transform +- proto: ClothingEyesGlassesChemical + entities: + - uid: 1738 + components: + - pos: 3.5303125,-10.872155 + parent: 104 + type: Transform - proto: ClothingNeckScarfStripedRed entities: - uid: 1150 @@ -10208,6 +10039,14 @@ entities: pos: 0.5,-14.5 parent: 104 type: Transform +- proto: ComputerPowerMonitoring + entities: + - uid: 1730 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-14.5 + parent: 104 + type: Transform - proto: ComputerSurveillanceWirelessCameraMonitor entities: - uid: 1127 @@ -10386,6 +10225,40 @@ entities: - pos: 13.550529,12.489372 parent: 104 type: Transform +- proto: FloraTreeChristmas01 + entities: + - uid: 1473 + components: + - pos: -4.1215005,3.4208694 + parent: 104 + type: Transform + - uid: 1533 + components: + - pos: 6.8247085,6.284115 + parent: 104 + type: Transform + - uid: 1535 + components: + - pos: 13.572808,8.250701 + parent: 104 + type: Transform + - uid: 1554 + components: + - pos: -1.6674995,17.727627 + parent: 104 + type: Transform + - uid: 1674 + components: + - pos: -7.4741755,7.8987026 + parent: 104 + type: Transform +- proto: FloraTreeChristmas02 + entities: + - uid: 24 + components: + - pos: 4.971142,-2.524268 + parent: 104 + type: Transform - proto: FloraTreeConifer01 entities: - uid: 261 @@ -11188,6 +11061,13 @@ entities: - pos: 24.5,-16.5 parent: 104 type: Transform +- proto: PhoneInstrumentSyndicate + entities: + - uid: 1684 + components: + - pos: 1.4424791,-6.340748 + parent: 104 + type: Transform - proto: PianoInstrument entities: - uid: 2430 @@ -11236,11 +11116,6 @@ entities: - pos: -1.5,-16.5 parent: 104 type: Transform - - uid: 2472 - components: - - pos: 4.5344934,-2.448209 - parent: 104 - type: Transform - uid: 3367 components: - pos: -4.605839,20.481245 @@ -11660,8 +11535,6 @@ entities: pos: 13.5,-0.5 parent: 104 type: Transform - - enabled: False - type: AmbientSound - proto: PoweredSmallLight entities: - uid: 23 @@ -12623,6 +12496,17 @@ entities: - pos: -1.5,-4.5 parent: 104 type: Transform +- proto: SignEscapePods + entities: + - uid: 1737 + components: + - desc: steel rain babey + name: drop pod sign + type: MetaData + - rot: 1.5707963267948966 rad + pos: 16.5,-8.5 + parent: 104 + type: Transform - proto: SignMedical entities: - uid: 351 @@ -12792,9 +12676,9 @@ entities: type: Transform - proto: SprayBottle entities: - - uid: 1825 + - uid: 1699 components: - - pos: 14.641994,-17.021217 + - pos: 14.060668,-16.439913 parent: 104 type: Transform - proto: StasisBed @@ -12806,12 +12690,6 @@ entities: type: Transform - proto: Stool entities: - - uid: 24 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 104 - type: Transform - uid: 156 components: - rot: -1.5707963267948966 rad @@ -13393,6 +13271,18 @@ entities: - pos: 0.5,10.5 parent: 104 type: Transform +- proto: TearGasGrenade + entities: + - uid: 306 + components: + - pos: 14.638793,-16.908663 + parent: 104 + type: Transform + - uid: 1703 + components: + - pos: 14.341918,-16.877413 + parent: 104 + type: Transform - proto: Telecrystal1 entities: - uid: 2474 @@ -13523,7 +13413,7 @@ entities: - pos: -10.5,7.5 parent: 104 type: Transform -- proto: VendingMachineChemicals +- proto: VendingMachineChemicalsSyndicate entities: - uid: 1335 components: @@ -14152,6 +14042,18 @@ entities: - pos: 16.5,-2.5 parent: 104 type: Transform + - uid: 307 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-8.5 + parent: 104 + type: Transform + - uid: 308 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-10.5 + parent: 104 + type: Transform - uid: 309 components: - rot: 1.5707963267948966 rad @@ -14194,6 +14096,48 @@ entities: pos: 20.5,-12.5 parent: 104 type: Transform + - uid: 316 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-6.5 + parent: 104 + type: Transform + - uid: 317 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-4.5 + parent: 104 + type: Transform + - uid: 318 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-6.5 + parent: 104 + type: Transform + - uid: 319 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-4.5 + parent: 104 + type: Transform + - uid: 320 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-8.5 + parent: 104 + type: Transform + - uid: 321 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-10.5 + parent: 104 + type: Transform + - uid: 322 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-7.5 + parent: 104 + type: Transform - uid: 339 components: - rot: 1.5707963267948966 rad @@ -14836,123 +14780,75 @@ entities: - pos: -1.5,-4.5 parent: 104 type: Transform -- proto: WallShuttle +- proto: WallPlastitaniumDiagonal entities: - - uid: 48 - components: - - pos: 23.5,-8.5 - parent: 104 - type: Transform - - uid: 56 - components: - - pos: 19.5,-10.5 - parent: 104 - type: Transform - - uid: 130 - components: - - pos: 23.5,-6.5 - parent: 104 - type: Transform - - uid: 165 - components: - - pos: 21.5,-4.5 - parent: 104 - type: Transform - - uid: 302 - components: - - pos: 17.5,-6.5 - parent: 104 - type: Transform - - uid: 305 - components: - - pos: 19.5,-4.5 - parent: 104 - type: Transform - - uid: 307 - components: - - pos: 17.5,-8.5 - parent: 104 - type: Transform - - uid: 316 + - uid: 323 components: - - pos: 21.5,-10.5 + - pos: 18.5,-4.5 parent: 104 type: Transform - - uid: 338 + - uid: 324 components: - rot: 1.5707963267948966 rad - pos: 20.5,-7.5 + pos: 22.5,-5.5 parent: 104 type: Transform -- proto: WallShuttleDiagonal - entities: - - uid: 58 + - uid: 325 components: - rot: 3.141592653589793 rad - pos: 18.5,-5.5 - parent: 104 - type: Transform - - uid: 120 - components: - - pos: 22.5,-9.5 + pos: 23.5,-9.5 parent: 104 type: Transform - - uid: 306 + - uid: 338 components: - rot: 1.5707963267948966 rad - pos: 22.5,-5.5 + pos: 17.5,-9.5 parent: 104 type: Transform - - uid: 308 + - uid: 348 components: - rot: -1.5707963267948966 rad pos: 18.5,-9.5 parent: 104 type: Transform - - uid: 318 + - uid: 650 components: - rot: 1.5707963267948966 rad - pos: 17.5,-9.5 + pos: 18.5,-10.5 parent: 104 type: Transform - - uid: 319 + - uid: 1088 components: - - rot: 1.5707963267948966 rad - pos: 18.5,-10.5 + - rot: 3.141592653589793 rad + pos: 18.5,-5.5 parent: 104 type: Transform - - uid: 320 + - uid: 1089 components: - pos: 17.5,-5.5 parent: 104 type: Transform - - uid: 321 + - uid: 1119 components: - - pos: 18.5,-4.5 + - rot: 3.141592653589793 rad + pos: 22.5,-10.5 parent: 104 type: Transform - - uid: 322 + - uid: 1689 components: - - rot: -1.5707963267948966 rad - pos: 22.5,-4.5 + - pos: 22.5,-9.5 parent: 104 type: Transform - - uid: 323 + - uid: 1690 components: - rot: -1.5707963267948966 rad pos: 23.5,-5.5 parent: 104 type: Transform - - uid: 324 - components: - - rot: 3.141592653589793 rad - pos: 23.5,-9.5 - parent: 104 - type: Transform - - uid: 325 + - uid: 1697 components: - - rot: 3.141592653589793 rad - pos: 22.5,-10.5 + - rot: -1.5707963267948966 rad + pos: 22.5,-4.5 parent: 104 type: Transform - proto: WaterTankFull diff --git a/Resources/Maps/pebble.yml b/Resources/Maps/pebble.yml index 08c0207603..f482f041c2 100644 --- a/Resources/Maps/pebble.yml +++ b/Resources/Maps/pebble.yml @@ -5,56 +5,60 @@ tilemap: 0: Space 7: FloorAsteroidSand 8: FloorAsteroidSandDug - 12: FloorBar - 13: FloorBasalt - 15: FloorBlueCircuit - 17: FloorBrokenWood - 23: FloorClown - 27: FloorDark - 28: FloorDarkDiagonal - 29: FloorDarkDiagonalMini - 32: FloorDarkMono - 33: FloorDarkOffset - 36: FloorDarkPlastic - 38: FloorDirt - 39: FloorEighties - 42: FloorFreezer - 43: FloorGlass - 52: FloorGreenCircuit - 53: FloorGym - 55: FloorHullReinforced - 56: FloorHydro - 58: FloorKitchen - 60: FloorLino - 62: FloorMetalDiamond - 63: FloorMime - 64: FloorMono - 69: FloorPlanetGrass - 70: FloorPlastic - 71: FloorRGlass - 72: FloorReinforced - 74: FloorRockVault - 75: FloorShowroom - 84: FloorSteel - 87: FloorSteelDiagonal - 89: FloorSteelDirty - 90: FloorSteelHerringbone - 92: FloorSteelMono - 93: FloorSteelOffset - 94: FloorSteelPavement - 96: FloorTechMaint - 97: FloorTechMaint2 - 98: FloorTechMaint3 - 100: FloorWhite - 101: FloorWhiteDiagonal - 102: FloorWhiteDiagonalMini - 104: FloorWhiteMini - 105: FloorWhiteMono - 106: FloorWhiteOffset - 110: FloorWood - 111: FloorWoodTile - 112: Lattice - 113: Plating + 10: FloorAsteroidSandUnvariantized + 14: FloorBar + 15: FloorBasalt + 18: FloorBlueCircuit + 20: FloorBrokenWood + 26: FloorClown + 30: FloorDark + 31: FloorDarkDiagonal + 32: FloorDarkDiagonalMini + 35: FloorDarkMono + 36: FloorDarkOffset + 39: FloorDarkPlastic + 41: FloorDirt + 42: FloorEighties + 45: FloorFreezer + 46: FloorGlass + 55: FloorGreenCircuit + 56: FloorGym + 59: FloorHydro + 61: FloorKitchen + 63: FloorLino + 65: FloorMetalDiamond + 66: FloorMime + 68: FloorMiningDark + 70: FloorMono + 75: FloorPlanetGrass + 76: FloorPlastic + 77: FloorRGlass + 78: FloorReinforced + 80: FloorRockVault + 81: FloorShowroom + 90: FloorSteel + 94: FloorSteelDamaged + 95: FloorSteelDiagonal + 97: FloorSteelDirty + 98: FloorSteelHerringbone + 101: FloorSteelMono + 102: FloorSteelOffset + 103: FloorSteelPavement + 105: FloorTechMaint + 106: FloorTechMaint2 + 107: FloorTechMaint3 + 109: FloorWhite + 110: FloorWhiteDiagonal + 111: FloorWhiteDiagonalMini + 113: FloorWhiteMini + 114: FloorWhiteMono + 115: FloorWhiteOffset + 119: FloorWood + 120: FloorWoodTile + 121: Lattice + 122: Plating + 124: PlatingBurnt + 125: PlatingDamaged entities: - proto: "" entities: @@ -75,165 +79,157 @@ entities: components: - name: Pebble Station type: MetaData - - pos: -0.010280192,2.4700837 + - pos: 5.7333984,1.6669159 parent: 1 type: Transform - chunks: -1,-1: ind: -1,-1 - tiles: VAAAAAABVAAAAAABcQAAAAAAVwAAAAACVwAAAAABYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABcQAAAAAAVwAAAAAAVwAAAAADcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYQAAAAAAVAAAAAABVAAAAAAASAAAAAAAVwAAAAAAVwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPwAAAAAAVAAAAAAAVAAAAAADXAAAAAADVwAAAAACVwAAAAABcQAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAJwAAAAAAJwAAAAAAPwAAAAAAVAAAAAADVAAAAAABXAAAAAACVwAAAAADVwAAAAADcQAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAJwAAAAAAJwAAAAAAPwAAAAAAVAAAAAADVAAAAAACSAAAAAAAVwAAAAADVwAAAAAAcQAAAAAAbgAAAAACbgAAAAADcQAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAABVwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAADbgAAAAABcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAXAAAAAAAXAAAAAABcQAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAACbgAAAAABbgAAAAABcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAIQAAAAAAIQAAAAAAGwAAAAADVwAAAAAAVwAAAAADcQAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAVwAAAAACVwAAAAABcQAAAAAAYAAAAAAAcQAAAAAAXAAAAAACXAAAAAABXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAAAVwAAAAADcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAVAAAAAACXAAAAAAAVwAAAAABVwAAAAAAVwAAAAABXAAAAAAAXQAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVAAAAAACXAAAAAADVwAAAAAAVwAAAAAAVwAAAAABXAAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAADVwAAAAADVwAAAAADVwAAAAABVwAAAAABVwAAAAADVwAAAAABVAAAAAADXAAAAAACVwAAAAACVwAAAAACVwAAAAAAXAAAAAAAXQAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAACVwAAAAACcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAVwAAAAADVwAAAAACcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAcQAAAAAADAAAAAABDAAAAAABDAAAAAAB + tiles: WgAAAAABWgAAAAABegAAAAAAXwAAAAACXwAAAAABagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAABegAAAAAAXwAAAAAAXwAAAAADegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAagAAAAAAWgAAAAABWgAAAAAATgAAAAAAXwAAAAAAXwAAAAABegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAQgAAAAAAWgAAAAAAWgAAAAADZQAAAAADXwAAAAACXwAAAAABegAAAAAAdwAAAAACdwAAAAACdwAAAAACdwAAAAACegAAAAAAegAAAAAAegAAAAAAKgAAAAAAKgAAAAAAQgAAAAAAWgAAAAADWgAAAAABZQAAAAACXwAAAAADXwAAAAADegAAAAAAdwAAAAAAdwAAAAADdwAAAAAAdwAAAAADegAAAAAAegAAAAAAegAAAAAAKgAAAAAAKgAAAAAAQgAAAAAAWgAAAAADWgAAAAACTgAAAAAAXwAAAAADXwAAAAAAegAAAAAAdwAAAAACdwAAAAADegAAAAAAdwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAXwAAAAABXwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAADdwAAAAADdwAAAAABegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAJAAAAAAAJAAAAAAAegAAAAAAZQAAAAAAZQAAAAABegAAAAAAdwAAAAABdwAAAAACdwAAAAAAdwAAAAACdwAAAAABdwAAAAABegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAJAAAAAAAJAAAAAAAHgAAAAADXwAAAAAAXwAAAAADTgAAAAAAdwAAAAABdwAAAAACdwAAAAAAdwAAAAADdwAAAAAAdwAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAJAAAAAAAJAAAAAAATgAAAAAAXwAAAAACXwAAAAABegAAAAAAaQAAAAAATgAAAAAAZQAAAAACZQAAAAABZQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAXwAAAAAAXwAAAAADTgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAWgAAAAACZQAAAAAAXwAAAAABXwAAAAAAXwAAAAABZQAAAAAAZgAAAAAAXwAAAAAAXwAAAAABXwAAAAABXwAAAAAAXwAAAAADXwAAAAAAXwAAAAADXwAAAAAAXwAAAAADWgAAAAACZQAAAAADXwAAAAAAXwAAAAAAXwAAAAABZQAAAAAAXwAAAAADXwAAAAACXwAAAAABXwAAAAADXwAAAAADXwAAAAADXwAAAAABXwAAAAABXwAAAAADXwAAAAABWgAAAAADZQAAAAACXwAAAAACXwAAAAACXwAAAAAAZQAAAAAAZgAAAAAAXwAAAAAAXwAAAAABXwAAAAABXwAAAAACXwAAAAACXwAAAAAAXwAAAAAAXwAAAAACXwAAAAACegAAAAAAegAAAAAAegAAAAAAXwAAAAACXwAAAAACTgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAegAAAAAAegAAAAAAagAAAAAAXwAAAAADXwAAAAACegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPQAAAAAATgAAAAAADgAAAAABDgAAAAABDgAAAAAB version: 6 0,-1: ind: 0,-1 - tiles: cQAAAAAAcQAAAAAAYQAAAAAAVwAAAAAAVwAAAAADVwAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAAAVwAAAAABVwAAAAABcQAAAAAAVAAAAAADVAAAAAABcQAAAAAAVAAAAAADVAAAAAADcQAAAAAAGwAAAAADGwAAAAACGwAAAAABFwAAAAAAFwAAAAAAcQAAAAAAVwAAAAABVwAAAAABVwAAAAADcQAAAAAAVAAAAAABVAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAGwAAAAACGwAAAAADGwAAAAAAPwAAAAAAFwAAAAAAYAAAAAAAVwAAAAACVwAAAAABVwAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPwAAAAAAFwAAAAAAcQAAAAAAVwAAAAADVwAAAAABVwAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAADYQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAACVwAAAAACVwAAAAADcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVwAAAAACVwAAAAAAVwAAAAADcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVwAAAAABVwAAAAACVwAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAXAAAAAABXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAVwAAAAAAVwAAAAABbgAAAAABbgAAAAAAbgAAAAACbgAAAAAAbgAAAAACcQAAAAAAbwAAAAACbwAAAAAAcQAAAAAASwAAAAAAcQAAAAAAXQAAAAAAXQAAAAAAcQAAAAAAVwAAAAAAVwAAAAABcQAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAAAbwAAAAABbwAAAAADbwAAAAADSwAAAAAASwAAAAAAcQAAAAAAVwAAAAAAXQAAAAAAXAAAAAABVwAAAAAAVwAAAAADXAAAAAAAbgAAAAAAbgAAAAABbgAAAAADbgAAAAACcQAAAAAAbwAAAAACbwAAAAAAcQAAAAAASwAAAAAAcQAAAAAAVwAAAAACVwAAAAAAXAAAAAAAVwAAAAACVwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAAAXQAAAAAAXAAAAAACVwAAAAABVwAAAAACcQAAAAAAGwAAAAAAGwAAAAAASAAAAAAASAAAAAAAXAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAXQAAAAAAXQAAAAAAcQAAAAAAVwAAAAAAVwAAAAABcQAAAAAAGwAAAAAAGwAAAAAASAAAAAAASAAAAAAAXAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAACVwAAAAADXAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAXAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAA + tiles: egAAAAAAegAAAAAAagAAAAAAXwAAAAAAXwAAAAADXwAAAAACWgAAAAABWgAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAXwAAAAAAXwAAAAABXwAAAAABTgAAAAAAWgAAAAADWgAAAAABegAAAAAAWgAAAAADWgAAAAADegAAAAAAHgAAAAADHgAAAAACHgAAAAABGgAAAAAAGgAAAAAAegAAAAAAXwAAAAABXwAAAAABXwAAAAADegAAAAAAWgAAAAABWgAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAAAHgAAAAACHgAAAAADHgAAAAAAQgAAAAAAGgAAAAAAaQAAAAAAXwAAAAACXwAAAAABXwAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAQgAAAAAAGgAAAAAAegAAAAAAXwAAAAADXwAAAAABXwAAAAACWgAAAAADWgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAADagAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAXwAAAAACXwAAAAACXwAAAAADegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAegAAAAAAXwAAAAACXwAAAAAAXwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAQQAAAAAAWgAAAAAAWgAAAAAATgAAAAAAXwAAAAABXwAAAAACXwAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAATgAAAAAAZQAAAAABZQAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYQAAAAAATgAAAAAAegAAAAAAXwAAAAAAXwAAAAABdwAAAAABdwAAAAAAdwAAAAACdwAAAAAAdwAAAAACegAAAAAAeAAAAAACeAAAAAAAegAAAAAAUQAAAAAAegAAAAAAZgAAAAAAZgAAAAAATgAAAAAAXwAAAAAAXwAAAAABTgAAAAAAdwAAAAABdwAAAAABdwAAAAACdwAAAAAAeAAAAAABeAAAAAADeAAAAAADUQAAAAAAUQAAAAAAegAAAAAAXwAAAAAAZgAAAAAAZQAAAAABXwAAAAAAXwAAAAADZQAAAAAAdwAAAAAAdwAAAAABdwAAAAADdwAAAAACegAAAAAAeAAAAAACeAAAAAAAegAAAAAAUQAAAAAAegAAAAAAXwAAAAACXwAAAAAAZQAAAAAAXwAAAAACXwAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAXwAAAAAAZgAAAAAAZQAAAAACXwAAAAABXwAAAAACegAAAAAAHgAAAAAAHgAAAAAATgAAAAAATgAAAAAAZQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAZgAAAAAAZgAAAAAATgAAAAAAXwAAAAAAXwAAAAABTgAAAAAAHgAAAAAAHgAAAAAATgAAAAAATgAAAAAAZQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAXwAAAAACXwAAAAADZQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAZQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAA version: 6 -1,0: ind: -1,0 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAVwAAAAACVwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAACXAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAABVwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAZAAAAAADZAAAAAAAcQAAAAAAVwAAAAADVwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAZAAAAAACZAAAAAACcQAAAAAAVwAAAAAAVwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAZAAAAAAAZAAAAAACcQAAAAAAVwAAAAABVwAAAAABYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAZAAAAAADcQAAAAAAcQAAAAAAVwAAAAABVwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAABcQAAAAAAVwAAAAADVwAAAAAAVwAAAAACcQAAAAAAYQAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAADGwAAAAACGwAAAAABGwAAAAACGwAAAAABZAAAAAACZAAAAAADVwAAAAAAVwAAAAABVwAAAAABGwAAAAACGwAAAAACGwAAAAABGwAAAAADOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAGwAAAAACZAAAAAABZAAAAAADVwAAAAADVwAAAAABVwAAAAABGwAAAAABGwAAAAAAGwAAAAABGwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAGwAAAAAAZAAAAAACcQAAAAAAVwAAAAACVwAAAAABVwAAAAACGwAAAAABGwAAAAADGwAAAAAAGwAAAAADGwAAAAABGwAAAAABGwAAAAADGwAAAAADGwAAAAABGwAAAAAAGwAAAAACZAAAAAADcQAAAAAAcQAAAAAAXAAAAAADXAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZAAAAAABcQAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAAAVwAAAAADXAAAAAACVwAAAAADVwAAAAAAVwAAAAAAZAAAAAADZAAAAAABcQAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAADXAAAAAABVwAAAAAAVwAAAAAAVwAAAAACZAAAAAADZAAAAAADcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADVwAAAAACcQAAAAAASAAAAAAAYAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAbgAAAAABbgAAAAADSAAAAAAAcQAAAAAAcQAAAAAAXAAAAAACXAAAAAACXAAAAAAB + tiles: egAAAAAAegAAAAAAegAAAAAAXwAAAAACXwAAAAADegAAAAAAegAAAAAAegAAAAAALQAAAAAALQAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAACZQAAAAABegAAAAAAegAAAAAAegAAAAAALQAAAAAALQAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAegAAAAAAegAAAAAAXwAAAAABXwAAAAADegAAAAAAegAAAAAAegAAAAAALQAAAAAALQAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAbQAAAAADbQAAAAAATgAAAAAAXwAAAAADXwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAbQAAAAACbQAAAAACTgAAAAAAXwAAAAAAXwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAbQAAAAAAbQAAAAACTgAAAAAAXwAAAAABXwAAAAABagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAbQAAAAADegAAAAAAegAAAAAAXwAAAAABXwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAbQAAAAABTgAAAAAAXwAAAAADXwAAAAAAXwAAAAACegAAAAAAagAAAAAAegAAAAAAHgAAAAADHgAAAAACHgAAAAADHgAAAAADHgAAAAACHgAAAAABHgAAAAACHgAAAAABbQAAAAACbQAAAAADXwAAAAAAXwAAAAABXwAAAAABHgAAAAACHgAAAAACHgAAAAABHgAAAAADOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAHgAAAAACbQAAAAABbQAAAAADXwAAAAADXwAAAAABXwAAAAABHgAAAAABHgAAAAAAHgAAAAABHgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAHgAAAAAAbQAAAAACTgAAAAAAXwAAAAACXwAAAAABXwAAAAACHgAAAAABHgAAAAADHgAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAADHgAAAAABHgAAAAAAHgAAAAACbQAAAAADegAAAAAAegAAAAAAZQAAAAADZQAAAAACegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAbQAAAAACbQAAAAABTgAAAAAAXwAAAAACXwAAAAABXwAAAAACXwAAAAAAXwAAAAABXwAAAAABXwAAAAACXwAAAAAAXwAAAAADZQAAAAACXwAAAAADXwAAAAAAXwAAAAAAbQAAAAADbQAAAAABTgAAAAAAXwAAAAAAXwAAAAAAXwAAAAABXwAAAAAAXwAAAAADXwAAAAAAXwAAAAABXwAAAAABXwAAAAADZQAAAAABXwAAAAAAXwAAAAAAXwAAAAACbQAAAAADbQAAAAADegAAAAAAagAAAAAAegAAAAAAegAAAAAAXwAAAAADXwAAAAACXwAAAAAAXwAAAAAAXwAAAAADXwAAAAACegAAAAAATgAAAAAAaQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAATgAAAAAAdwAAAAABdwAAAAADTgAAAAAAegAAAAAAegAAAAAAZQAAAAACZQAAAAACZQAAAAAB version: 6 -2,0: ind: -2,0 - tiles: SAAAAAAAVAAAAAABKwAAAAAAKwAAAAAAKwAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAABcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAADYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAAAXAAAAAABRwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAaAAAAAABaAAAAAAAaAAAAAADaAAAAAABcQAAAAAAZAAAAAACZAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAVAAAAAABVAAAAAACKwAAAAAAVAAAAAACVAAAAAABcQAAAAAAaAAAAAADaAAAAAADaAAAAAACaAAAAAABcQAAAAAAZAAAAAADZAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAVAAAAAAAKwAAAAAAVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAaAAAAAACaAAAAAACaAAAAAABaAAAAAABZAAAAAADZAAAAAACZAAAAAADRwAAAAAARwAAAAAAcQAAAAAAVAAAAAAAKwAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAARwAAAAAARwAAAAAAQAAAAAAAVwAAAAABVwAAAAAAVwAAAAAAcQAAAAAAZQAAAAACZQAAAAACZQAAAAADZQAAAAACcQAAAAAAZAAAAAADZAAAAAABZAAAAAABZAAAAAADRwAAAAAARwAAAAAAcQAAAAAAWgAAAAACVwAAAAACWgAAAAACcQAAAAAAZQAAAAAAZgAAAAAAZgAAAAABZQAAAAADZAAAAAAAZAAAAAADZQAAAAAAZQAAAAACZQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAWgAAAAAAVwAAAAABWgAAAAAAcQAAAAAAZQAAAAACZgAAAAADZgAAAAACZQAAAAACcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAABAAAAAAAAAAAAAAAARwAAAAAAVwAAAAABVwAAAAABVwAAAAAAcQAAAAAAZQAAAAAAZQAAAAAAZQAAAAACZQAAAAACcQAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAZAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAVAAAAAACKwAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAABZAAAAAADcQAAAAAAZAAAAAABAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACKwAAAAAAVAAAAAAAVAAAAAACcQAAAAAAZAAAAAAAZAAAAAADZAAAAAADcQAAAAAAZAAAAAACZAAAAAAAcQAAAAAAZAAAAAABRwAAAAAARwAAAAAAcQAAAAAAVAAAAAAAVAAAAAACKwAAAAAAVAAAAAAAcQAAAAAAZAAAAAABZAAAAAACZAAAAAACZAAAAAACZAAAAAADZAAAAAACZAAAAAAAZAAAAAADRwAAAAAARwAAAAAAQAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAADcQAAAAAAZAAAAAABZAAAAAACcQAAAAAAZAAAAAACRwAAAAAARwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAA + tiles: egAAAAAAWgAAAAABLgAAAAAALgAAAAAALgAAAAAAWgAAAAACWgAAAAABWgAAAAAAWgAAAAABegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAABWgAAAAADagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAAAZQAAAAABTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADegAAAAAAcQAAAAABcQAAAAAAcQAAAAADcQAAAAABegAAAAAAbQAAAAACbQAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAABWgAAAAACLgAAAAAAWgAAAAACWgAAAAABegAAAAAAcQAAAAADcQAAAAADcQAAAAACcQAAAAABTgAAAAAAbQAAAAADbQAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAAALgAAAAAAWgAAAAAAWgAAAAABWgAAAAABegAAAAAAcQAAAAACcQAAAAACcQAAAAABcQAAAAABbQAAAAADbQAAAAACbQAAAAADTgAAAAAATgAAAAAAegAAAAAAWgAAAAAALgAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAATgAAAAAAbQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAAATQAAAAAATQAAAAAARgAAAAAAXwAAAAABXwAAAAAAXwAAAAAAegAAAAAAbgAAAAACbgAAAAACbgAAAAADbgAAAAACegAAAAAAbQAAAAADbQAAAAABbQAAAAABbQAAAAADTgAAAAAATgAAAAAAegAAAAAAYgAAAAACXwAAAAACYgAAAAACTgAAAAAAbgAAAAAAbwAAAAAAbwAAAAABbgAAAAADbQAAAAAAbQAAAAADbgAAAAAAbgAAAAACbgAAAAAAAAAAAAAAeQAAAAAAegAAAAAAYgAAAAAAXwAAAAABYgAAAAAATgAAAAAAbgAAAAACbwAAAAADbwAAAAACbgAAAAACTgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAABAAAAAAAAAAAAAAAATgAAAAAAXwAAAAABXwAAAAABXwAAAAAAegAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACegAAAAAAbQAAAAAAbQAAAAAATgAAAAAAbQAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAACLgAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAADegAAAAAAbQAAAAABAAAAAAAAeQAAAAAAegAAAAAAWgAAAAACLgAAAAAAWgAAAAAAWgAAAAACegAAAAAAbQAAAAAAbQAAAAADbQAAAAADegAAAAAAbQAAAAACbQAAAAAATgAAAAAAbQAAAAABTgAAAAAATgAAAAAAegAAAAAAWgAAAAAAWgAAAAACLgAAAAAAWgAAAAAAegAAAAAAbQAAAAABbQAAAAACbQAAAAACbQAAAAACbQAAAAADbQAAAAACbQAAAAAAbQAAAAADTQAAAAAATQAAAAAARgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAbQAAAAAAbQAAAAAAbQAAAAADTgAAAAAAbQAAAAABbQAAAAACegAAAAAAbQAAAAACTgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACegAAAAAAegAAAAAATgAAAAAAHgAAAAACegAAAAAAegAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAcQAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAADXAAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAACAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAACAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAACAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAYAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAADcQAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAAAIQAAAAAASAAAAAAAVAAAAAABKwAAAAAAKwAAAAAAKwAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAACJAAAAAADIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAYAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAIAAAAAAAGwAAAAAAcQAAAAAAcQAAAAAARQAAAAAARgAAAAACVwAAAAABVwAAAAADKwAAAAAAKwAAAAAAKwAAAAAAVwAAAAADVwAAAAADVAAAAAACXAAAAAADIQAAAAAAIQAAAAAAIQAAAAAAXAAAAAAAVAAAAAAARQAAAAABVwAAAAACVwAAAAAAVwAAAAADVwAAAAABKwAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAADXAAAAAACIQAAAAAAIQAAAAAAIQAAAAAAXAAAAAAAVAAAAAADRQAAAAABRgAAAAADVwAAAAABVwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAVwAAAAACVwAAAAADVAAAAAABXAAAAAADIQAAAAAAIQAAAAAAIQAAAAAAXAAAAAABVAAAAAABcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAA + tiles: AAAAAAAATgAAAAAAZQAAAAAAZQAAAAACZQAAAAAAZQAAAAACWgAAAAADWgAAAAAAWgAAAAACWgAAAAADZQAAAAABWgAAAAACWgAAAAADWgAAAAABWgAAAAACWgAAAAACAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAAAWgAAAAACAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAACWgAAAAACAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAACWgAAAAADAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAABWgAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAaQAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAABWgAAAAADTgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAJAAAAAAAegAAAAAAWgAAAAABLgAAAAAALgAAAAAALgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAACJwAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAaQAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAABWgAAAAACWgAAAAABWgAAAAAAegAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAABWgAAAAAAWgAAAAACegAAAAAATgAAAAAAIwAAAAAAHgAAAAAAegAAAAAATgAAAAAASwAAAAAATAAAAAACXwAAAAABXwAAAAADLgAAAAAALgAAAAAALgAAAAAAXwAAAAADXwAAAAADWgAAAAACZQAAAAADJAAAAAAAJAAAAAAAJAAAAAAAZQAAAAAAWgAAAAAASwAAAAABXwAAAAACXwAAAAAAXwAAAAADXwAAAAABLgAAAAAAXwAAAAACXwAAAAADXwAAAAAAXwAAAAADZQAAAAACJAAAAAAAJAAAAAAAJAAAAAAAZQAAAAAAWgAAAAADSwAAAAABTAAAAAADXwAAAAABXwAAAAAALgAAAAAALgAAAAAALgAAAAAAXwAAAAACXwAAAAADWgAAAAABZQAAAAADJAAAAAAAJAAAAAAAJAAAAAAAZQAAAAABWgAAAAABegAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAaQAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAABWgAAAAABWgAAAAAAWgAAAAACWgAAAAABegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAA version: 6 0,0: ind: 0,0 - tiles: OgAAAAAAcQAAAAAAVwAAAAAAVwAAAAAAVwAAAAACXAAAAAAAGwAAAAAAKwAAAAAAKwAAAAAAGwAAAAAAXAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAOgAAAAAAcQAAAAAAVwAAAAABVwAAAAAAVwAAAAABcQAAAAAAGwAAAAAAKwAAAAAAKwAAAAAAGwAAAAAAXAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVwAAAAABVwAAAAABVwAAAAACcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAXAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAADcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAABcQAAAAAAGwAAAAADGwAAAAADGwAAAAACcQAAAAAAbgAAAAADbgAAAAACbgAAAAADbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAACXAAAAAAAGwAAAAABGwAAAAABGwAAAAABcQAAAAAAbgAAAAADbgAAAAACbgAAAAABbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAABcQAAAAAAGwAAAAABGwAAAAABGwAAAAAAYAAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAAAVwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAABVwAAAAACcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAADVwAAAAACcQAAAAAAXQAAAAAAXQAAAAAAQAAAAAAAXQAAAAAAXQAAAAAAcQAAAAAAYgAAAAABYgAAAAADYgAAAAACYgAAAAAAYgAAAAADYQAAAAAAcQAAAAAAVwAAAAABVwAAAAADXAAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAYQAAAAAAYgAAAAACYgAAAAABYgAAAAAAYgAAAAADYgAAAAABcQAAAAAAcQAAAAAAXAAAAAAAXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAACVwAAAAADVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAABcQAAAAAAVAAAAAACVAAAAAACVAAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAACVwAAAAABVwAAAAABVwAAAAABVwAAAAABYAAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAASAAAAAAAYAAAAAAASAAAAAAAcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABcQAAAAAAVAAAAAABVAAAAAABVAAAAAABXAAAAAAAXAAAAAACXAAAAAADXAAAAAADcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAPgAAAAAAVAAAAAACVAAAAAAB + tiles: PQAAAAAAegAAAAAAXwAAAAAAXwAAAAAAXwAAAAACZQAAAAAAHgAAAAAALgAAAAAALgAAAAAAHgAAAAAATgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAPQAAAAAAegAAAAAAXwAAAAABXwAAAAAAXwAAAAABTgAAAAAAHgAAAAAALgAAAAAALgAAAAAAHgAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAWgAAAAAAegAAAAAAegAAAAAAXwAAAAABXwAAAAABXwAAAAACegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAZQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAWgAAAAAAegAAAAAAXwAAAAADXwAAAAACXwAAAAABXwAAAAADegAAAAAATgAAAAAATgAAAAAAHgAAAAAAegAAAAAAegAAAAAAZQAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAXwAAAAABXwAAAAABXwAAAAAAXwAAAAABegAAAAAAHgAAAAADHgAAAAADHgAAAAACegAAAAAAdwAAAAADdwAAAAACdwAAAAADdwAAAAABegAAAAAAegAAAAAAegAAAAAAXwAAAAABXwAAAAABXwAAAAAAXwAAAAACZQAAAAAAHgAAAAABHgAAAAABHgAAAAABegAAAAAAdwAAAAADdwAAAAACdwAAAAABdwAAAAAAegAAAAAAegAAAAAAegAAAAAAXwAAAAACXwAAAAAAXwAAAAACXwAAAAABegAAAAAAHgAAAAABHgAAAAABHgAAAAAAaQAAAAAAdwAAAAACdwAAAAACdwAAAAACdwAAAAABegAAAAAAegAAAAAAegAAAAAAXwAAAAAAXwAAAAABegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAXwAAAAABXwAAAAACegAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAegAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAegAAAAAAegAAAAAATgAAAAAAXwAAAAADXwAAAAACegAAAAAAZgAAAAAAZgAAAAAARgAAAAAAZgAAAAAAZgAAAAAAegAAAAAAawAAAAABawAAAAADawAAAAACawAAAAAAawAAAAADagAAAAAAegAAAAAAXwAAAAABXwAAAAADZQAAAAABZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAagAAAAAAawAAAAACawAAAAABawAAAAAAawAAAAADawAAAAABegAAAAAAegAAAAAAZQAAAAAAZQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAXwAAAAACXwAAAAABXwAAAAADXwAAAAACXwAAAAADXwAAAAAAXwAAAAABXwAAAAAAXwAAAAACXwAAAAABXwAAAAACXwAAAAABTgAAAAAAWgAAAAACWgAAAAACWgAAAAABXwAAAAAAXwAAAAADXwAAAAAAXwAAAAADXwAAAAADXwAAAAACXwAAAAADXwAAAAACXwAAAAABXwAAAAABXwAAAAABXwAAAAABaQAAAAAAWgAAAAACWgAAAAABWgAAAAADegAAAAAATgAAAAAAaQAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAABTgAAAAAAWgAAAAABWgAAAAABWgAAAAABZQAAAAAAZQAAAAACZQAAAAADZQAAAAADegAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAegAAAAAAegAAAAAAWgAAAAABegAAAAAAQQAAAAAAWgAAAAACWgAAAAAB version: 6 -2,1: ind: -2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAADcQAAAAAAGwAAAAADGwAAAAABGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAYAAAAAAAYQAAAAAAGwAAAAABGwAAAAADGwAAAAADcQAAAAAAGwAAAAABGwAAAAABGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAADbgAAAAADbgAAAAACcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARwAAAAAARwAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAACbgAAAAAAbgAAAAADPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAADPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAAAZAAAAAADZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAABZAAAAAAAZAAAAAABWQAAAAAAcQAAAAAAWQAAAAAAHAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAACZAAAAAABZAAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAABZAAAAAACZAAAAAACWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAAAegAAAAAAHgAAAAADHgAAAAADHgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAXgAAAAAAegAAAAAAaQAAAAAAegAAAAAAHgAAAAADHgAAAAACHgAAAAADegAAAAAAHgAAAAADHgAAAAABHgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAXgAAAAAAfQAAAAAAaQAAAAAAagAAAAAAHgAAAAABHgAAAAADHgAAAAADegAAAAAAHgAAAAABHgAAAAABHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAXgAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAABHgAAAAADegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAQQAAAAAAegAAAAAAaQAAAAAAegAAAAAAdwAAAAADdwAAAAADdwAAAAACegAAAAAAHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAQQAAAAAAegAAAAAAaQAAAAAAegAAAAAAdwAAAAACdwAAAAAAdwAAAAADPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAaQAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAADPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAAAbQAAAAADbQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAABbQAAAAAAbQAAAAABYQAAAAAAegAAAAAAYQAAAAAAHwAAAAADegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAACbQAAAAABbQAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAfQAAAAAAegAAAAAATgAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAABbQAAAAACbQAAAAACYQAAAAAAfQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: cQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAABGwAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAABBwAAAAABBwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADcQAAAAAABwAAAAACBwAAAAACBwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAAAbgAAAAACcQAAAAAABwAAAAABCAAAAAAABwAAAAABPgAAAAAAPgAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAACcQAAAAAABwAAAAAABwAAAAABBwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAABBwAAAAAABwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAXAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAXAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAXAAAAAAAcQAAAAAAcQAAAAAA + tiles: egAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAABwAAAAAACAAAAAAACAAAAAAACAAAAAAABwAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAABHgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAABwAAAAABBwAAAAABBwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAfQAAAAAAegAAAAAAegAAAAAAdwAAAAADTgAAAAAABwAAAAACBwAAAAACBwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAADdwAAAAAAdwAAAAACTgAAAAAABwAAAAABCAAAAAAABwAAAAABQQAAAAAAQQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAfQAAAAAAdwAAAAACdwAAAAACTgAAAAAABwAAAAAABwAAAAABBwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAfQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAeQAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAZQAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAWgAAAAAAWgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAATgAAAAAAWgAAAAAAWgAAAAAAegAAAAAATgAAAAAATgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAWgAAAAAAWgAAAAAAZQAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAZQAAAAAATgAAAAAAZQAAAAAATgAAAAAAegAAAAAAWgAAAAAAWgAAAAAAZQAAAAAAegAAAAAAegAAAAAA version: 6 -1,1: ind: -1,1 - tiles: cQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAADbgAAAAACbgAAAAADbgAAAAABbgAAAAABbgAAAAAAcQAAAAAAXAAAAAADXAAAAAAAXAAAAAACcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYQAAAAAAbgAAAAABbgAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAACcQAAAAAAXAAAAAABXAAAAAADXAAAAAACcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAbgAAAAACHAAAAAACbgAAAAABbgAAAAABHAAAAAADbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACbgAAAAABHQAAAAAASAAAAAAASAAAAAAAHQAAAAABYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAAAbgAAAAACIAAAAAAAIAAAAAACbgAAAAACbgAAAAABHQAAAAAASAAAAAAASAAAAAAAHQAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAACIAAAAAAAIAAAAAABbgAAAAABbgAAAAAAHQAAAAAASAAAAAAASAAAAAAAHQAAAAADPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAACbgAAAAABbgAAAAAAbgAAAAABIAAAAAADIAAAAAACbgAAAAABbgAAAAAAcQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAABbgAAAAABbgAAAAABbgAAAAADcQAAAAAAaQAAAAACaQAAAAABaQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAABbgAAAAABbgAAAAAAbgAAAAADbgAAAAABQAAAAAAAZQAAAAABZQAAAAADZQAAAAABYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAcQAAAAAAZQAAAAAAZQAAAAADZQAAAAACcQAAAAAAYQAAAAAAcQAAAAAAbgAAAAAAbgAAAAABbgAAAAADbgAAAAADcQAAAAAAZAAAAAADZAAAAAABZAAAAAABZAAAAAACcQAAAAAAZQAAAAABZQAAAAAAZQAAAAACcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAcQAAAAAAZAAAAAAAZAAAAAACZAAAAAAAZAAAAAADaQAAAAAAZQAAAAACZQAAAAAAZQAAAAADcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAACcQAAAAAAZAAAAAADZAAAAAAAZAAAAAADZAAAAAABaQAAAAACZQAAAAADZQAAAAACZQAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAADZAAAAAABZAAAAAABZAAAAAABcQAAAAAAZQAAAAACZQAAAAADZQAAAAABcQAAAAAAXAAAAAABXAAAAAAAXAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAaQAAAAADaQAAAAADcQAAAAAAcQAAAAAAZQAAAAACZQAAAAABZQAAAAAAcQAAAAAAXAAAAAABXAAAAAAAXAAAAAACWQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAaQAAAAADZQAAAAADZQAAAAAAZQAAAAAA + tiles: egAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAdwAAAAADdwAAAAACdwAAAAADdwAAAAABdwAAAAABdwAAAAAAegAAAAAAZQAAAAADZQAAAAAAZQAAAAACegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAdwAAAAABdwAAAAAAdwAAAAADdwAAAAAAdwAAAAADdwAAAAACegAAAAAAZQAAAAABZQAAAAADZQAAAAACegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAagAAAAAAdwAAAAACHwAAAAACdwAAAAABdwAAAAABHwAAAAADdwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAdwAAAAADdwAAAAADdwAAAAAAdwAAAAAAdwAAAAACdwAAAAABIAAAAAAATgAAAAAATgAAAAAAIAAAAAABaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAdwAAAAAAdwAAAAACIwAAAAAAIwAAAAACdwAAAAACdwAAAAABIAAAAAAATgAAAAAATgAAAAAAIAAAAAAAQQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAADdwAAAAACIwAAAAAAIwAAAAABdwAAAAABdwAAAAAAIAAAAAAATgAAAAAATgAAAAAAIAAAAAADQQAAAAAAegAAAAAAaQAAAAAAegAAAAAAdwAAAAACdwAAAAABdwAAAAAAdwAAAAABIwAAAAADIwAAAAACdwAAAAABdwAAAAAAegAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAQQAAAAAAegAAAAAAaQAAAAAAegAAAAAAdwAAAAAAdwAAAAACdwAAAAACdwAAAAABdwAAAAABdwAAAAABdwAAAAABdwAAAAADegAAAAAAcgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAdwAAAAADdwAAAAADdwAAAAAAdwAAAAABdwAAAAABdwAAAAAAdwAAAAADdwAAAAABRgAAAAAAbgAAAAABbgAAAAADbgAAAAABaQAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACTgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAARgAAAAAAegAAAAAAegAAAAAAbgAAAAAAbgAAAAADbgAAAAACegAAAAAAagAAAAAAegAAAAAAdwAAAAAAdwAAAAABdwAAAAADdwAAAAADegAAAAAAbQAAAAADbQAAAAABbQAAAAABbQAAAAACTgAAAAAAbgAAAAABbgAAAAAAbgAAAAACegAAAAAAegAAAAAAegAAAAAAdwAAAAADdwAAAAABdwAAAAAAdwAAAAAAegAAAAAAbQAAAAAAbQAAAAACbQAAAAAAbQAAAAADcgAAAAAAbgAAAAACbgAAAAAAbgAAAAADegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAADdwAAAAADdwAAAAACegAAAAAAbQAAAAADbQAAAAAAbQAAAAADbQAAAAABcgAAAAACbgAAAAADbgAAAAACbgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAABbQAAAAABbQAAAAABTgAAAAAAbgAAAAACbgAAAAADbgAAAAABegAAAAAAZQAAAAABZQAAAAAAZQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAcgAAAAADcgAAAAADegAAAAAAegAAAAAAbgAAAAACbgAAAAABbgAAAAAAegAAAAAAZQAAAAABZQAAAAAAZQAAAAACYQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcgAAAAADbgAAAAADbgAAAAAAbgAAAAAA version: 6 0,1: ind: 0,1 - tiles: XAAAAAADXAAAAAAAXAAAAAABXAAAAAAAcQAAAAAAXQAAAAAAIAAAAAABIAAAAAABXQAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAADXAAAAAACXAAAAAABXAAAAAABcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAXQAAAAAASAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAHQAAAAAAQAAAAAAAbgAAAAABbgAAAAACbgAAAAABbgAAAAABcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHQAAAAAAcQAAAAAAbgAAAAACHAAAAAACHAAAAAAAbgAAAAAAcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHQAAAAACcQAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAADcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAADHQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAAASAAAAAAAYAAAAAAAYAAAAAAAQAAAAAAAIQAAAAAAHAAAAAABHAAAAAAAHAAAAAACIQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAABSAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAIQAAAAAAHAAAAAACHAAAAAABHAAAAAACIQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAABZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: ZQAAAAADZQAAAAAAZQAAAAABZQAAAAAAegAAAAAAZgAAAAAAIwAAAAABIwAAAAABZgAAAAAAaQAAAAAAegAAAAAAWgAAAAABWgAAAAABegAAAAAAegAAAAAAegAAAAAAZQAAAAADZQAAAAACZQAAAAABZQAAAAABegAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAZgAAAAAATgAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAADWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAACegAAAAAAegAAAAAAegAAAAAAIAAAAAAAegAAAAAAdwAAAAABdwAAAAACdwAAAAABdwAAAAABegAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAWgAAAAABWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIAAAAAAAegAAAAAAdwAAAAACHwAAAAACHwAAAAAAdwAAAAAAegAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIAAAAAACegAAAAAAdwAAAAADdwAAAAAAdwAAAAACdwAAAAADegAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAWgAAAAABWgAAAAADWgAAAAABWgAAAAABWgAAAAADWgAAAAADIAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAAATgAAAAAAaQAAAAAAaQAAAAAARgAAAAAAJAAAAAAAHwAAAAABHwAAAAAAHwAAAAACJAAAAAAAegAAAAAAegAAAAAATgAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABTgAAAAAAaQAAAAAAegAAAAAATgAAAAAAJAAAAAAAHwAAAAACHwAAAAABHwAAAAACJAAAAAAAegAAAAAAegAAAAAATgAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAegAAAAAAegAAAAAATgAAAAAAHgAAAAABHgAAAAADHgAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAARgAAAAAARgAAAAAARgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAARgAAAAAARgAAAAAARgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: cAAAAAAAcQAAAAAAPAAAAAAAbgAAAAABbgAAAAACcQAAAAAAcQAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAPAAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAABcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAPAAAAAAAbgAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAACcQAAAAAAbgAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAPAAAAAAAbgAAAAABbgAAAAADbgAAAAAAbgAAAAAAcQAAAAAAbgAAAAADbgAAAAABcQAAAAAAYAAAAAAAYAAAAAAAGwAAAAACGwAAAAAABwAAAAABAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAGwAAAAABGwAAAAABGwAAAAAACAAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAADcQAAAAAAYAAAAAAAGwAAAAACGwAAAAADGwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAACcQAAAAAAGwAAAAACVAAAAAABVAAAAAACGwAAAAABcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAAAcQAAAAAAGwAAAAABVAAAAAADVAAAAAABGwAAAAABcQAAAAAAGwAAAAABGwAAAAABVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAABwAAAAACBwAAAAACBwAAAAAAcQAAAAAAGwAAAAAAVAAAAAACVAAAAAADGwAAAAABcQAAAAAAGwAAAAAAVAAAAAABVAAAAAADVAAAAAAANAAAAAAANAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABVAAAAAAAVAAAAAABGwAAAAAAcQAAAAAAGwAAAAACVAAAAAACVAAAAAADVAAAAAADNAAAAAAANAAAAAAAcQAAAAAAVwAAAAADVwAAAAADVwAAAAABcQAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAABcQAAAAAAGwAAAAABVAAAAAABVAAAAAACVAAAAAACGwAAAAACGwAAAAABYAAAAAAAVwAAAAAAVwAAAAADVwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAGwAAAAADGwAAAAADVAAAAAADVAAAAAAAGwAAAAABGwAAAAADcQAAAAAAVwAAAAAAVwAAAAACVwAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAACcQAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAAAVwAAAAAAVwAAAAACGwAAAAABGwAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAAAGwAAAAABcAAAAAAAcAAAAAAAcQAAAAAAVwAAAAAAVwAAAAACVwAAAAABcQAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAACcQAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAACVwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAA + tiles: eQAAAAAATgAAAAAAPwAAAAAAdwAAAAABdwAAAAACegAAAAAAegAAAAAALQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAPwAAAAAAdwAAAAABdwAAAAAAdwAAAAAAdwAAAAACdwAAAAADdwAAAAABdwAAAAABegAAAAAAegAAAAAAeQAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAATgAAAAAAPwAAAAAAdwAAAAAAdwAAAAACdwAAAAABdwAAAAADdwAAAAACegAAAAAAdwAAAAAAdwAAAAABegAAAAAATgAAAAAAegAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAeQAAAAAATgAAAAAAPwAAAAAAdwAAAAABdwAAAAADdwAAAAAAdwAAAAAAegAAAAAAdwAAAAADdwAAAAABegAAAAAAaQAAAAAAaQAAAAAAHgAAAAACHgAAAAAABwAAAAABAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAHgAAAAABHgAAAAABHgAAAAAACAAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAAAegAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAADegAAAAAAaQAAAAAAHgAAAAACHgAAAAADHgAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAACegAAAAAAHgAAAAACWgAAAAABWgAAAAACHgAAAAABegAAAAAAegAAAAAAaQAAAAAATgAAAAAATgAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAAATgAAAAAAHgAAAAABWgAAAAADWgAAAAABHgAAAAABegAAAAAAHgAAAAABHgAAAAABWgAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAABwAAAAACBwAAAAACBwAAAAAATgAAAAAAHgAAAAAAWgAAAAACWgAAAAADHgAAAAABegAAAAAAHgAAAAAAWgAAAAABWgAAAAADWgAAAAAANwAAAAAANwAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAHgAAAAABWgAAAAAAWgAAAAABHgAAAAAAegAAAAAAHgAAAAACWgAAAAACWgAAAAADWgAAAAADNwAAAAAANwAAAAAAegAAAAAAXwAAAAADXwAAAAADXwAAAAABegAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAABegAAAAAAHgAAAAABWgAAAAABWgAAAAACWgAAAAACHgAAAAACHgAAAAABaQAAAAAAXwAAAAAAXwAAAAADXwAAAAABegAAAAAAegAAAAAATgAAAAAAHgAAAAACegAAAAAAegAAAAAAHgAAAAADHgAAAAADWgAAAAADWgAAAAAAHgAAAAABHgAAAAADegAAAAAAXwAAAAAAXwAAAAACXwAAAAAATgAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAACTgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAABegAAAAAAegAAAAAAegAAAAAAXwAAAAAAXwAAAAAAXwAAAAACHgAAAAABHgAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAABeQAAAAAAeQAAAAAAegAAAAAAXwAAAAAAXwAAAAACXwAAAAABTgAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAACTgAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAAATgAAAAAATgAAAAAAegAAAAAAXwAAAAACXwAAAAADegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: cAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJgAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAGwAAAAACYAAAAAAAYAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAGwAAAAAAGwAAAAACYAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAGwAAAAABGwAAAAADYAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAVAAAAAACVAAAAAACcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABGwAAAAADGwAAAAACcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADGwAAAAAAcQAAAAAAcQAAAAAAVwAAAAABcQAAAAAAcQAAAAAAPAAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADYAAAAAAAVAAAAAACVAAAAAABGwAAAAABcQAAAAAAVwAAAAACVwAAAAAAVwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAACcQAAAAAAGwAAAAADYAAAAAAAVAAAAAADVAAAAAAAGwAAAAAAcQAAAAAAVwAAAAADVwAAAAACVwAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACcQAAAAAAGwAAAAACYAAAAAAAVAAAAAAAGwAAAAADGwAAAAACcQAAAAAAVwAAAAAAVwAAAAADVwAAAAABcQAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAACcQAAAAAAGwAAAAACcQAAAAAAGwAAAAADGwAAAAACGwAAAAACcQAAAAAAVwAAAAABVwAAAAAAVwAAAAACcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADGwAAAAAAGwAAAAABGwAAAAACGwAAAAABVwAAAAADVwAAAAAAVwAAAAADcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAACGwAAAAABGwAAAAABGwAAAAADcQAAAAAAVwAAAAACVwAAAAABVwAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAABXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAAB + tiles: eQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAKQAAAAAAaQAAAAAAegAAAAAATgAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAHgAAAAACaQAAAAAAaQAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAHgAAAAAAHgAAAAACaQAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAHgAAAAABHgAAAAADaQAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAATgAAAAAAaQAAAAAAegAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAWgAAAAACWgAAAAACegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABHgAAAAADHgAAAAACegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAWgAAAAAAWgAAAAABegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADHgAAAAAAegAAAAAATgAAAAAAXwAAAAABTgAAAAAAegAAAAAAPwAAAAAAegAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAHgAAAAADaQAAAAAAWgAAAAACWgAAAAABHgAAAAABTgAAAAAAXwAAAAACXwAAAAAAXwAAAAADegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAACTgAAAAAAHgAAAAADaQAAAAAAWgAAAAADWgAAAAAAHgAAAAAATgAAAAAAXwAAAAADXwAAAAACXwAAAAAATgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAACTgAAAAAAHgAAAAACaQAAAAAAWgAAAAAAHgAAAAADHgAAAAACegAAAAAAXwAAAAAAXwAAAAADXwAAAAABTgAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAACWgAAAAACegAAAAAAHgAAAAACegAAAAAAHgAAAAADHgAAAAACHgAAAAACTgAAAAAAXwAAAAABXwAAAAAAXwAAAAACegAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADHgAAAAAAHgAAAAABHgAAAAACHgAAAAABXwAAAAADXwAAAAAAXwAAAAADTgAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAADWgAAAAAAWgAAAAABWgAAAAADWgAAAAACHgAAAAABHgAAAAABHgAAAAADTgAAAAAAXwAAAAACXwAAAAABXwAAAAAATgAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAABZQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAACWgAAAAACWgAAAAAB version: 6 -2,-2: ind: -2,-2 - tiles: PgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAABwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAABwAAAAACBwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAABwAAAAACBwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAABwAAAAAAcQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXgAAAAAAXgAAAAADXgAAAAACcQAAAAAAcQAAAAAABwAAAAAABwAAAAABcQAAAAAAcQAAAAAABwAAAAACBwAAAAAAcQAAAAAAXAAAAAACXAAAAAACXAAAAAACcQAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAACcQAAAAAABwAAAAACBwAAAAAAcQAAAAAAcQAAAAAABwAAAAABBwAAAAAAcQAAAAAAXAAAAAABXAAAAAAAXAAAAAABcQAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAACcQAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAABwAAAAACcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAXAAAAAABXAAAAAADXAAAAAABXAAAAAACXAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAXAAAAAADXAAAAAABXAAAAAABXAAAAAADcQAAAAAAVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAXAAAAAAAXAAAAAABXAAAAAADcQAAAAAAcQAAAAAAXAAAAAAAXAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAXAAAAAABXAAAAAABXAAAAAACcQAAAAAAXQAAAAAAKwAAAAAAXAAAAAACXQAAAAAAcQAAAAAAbwAAAAAAKwAAAAAAKwAAAAAAbwAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAXAAAAAACXAAAAAABXAAAAAAAcQAAAAAAXQAAAAAAXAAAAAAAKwAAAAAAXQAAAAAAcQAAAAAAbwAAAAAAKwAAAAAAKwAAAAAAbwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAACXQAAAAAAKwAAAAAAXAAAAAAAXQAAAAAAXAAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXQAAAAAAXAAAAAABKwAAAAAAXQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAXAAAAAACXAAAAAAAXAAAAAABcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAA + tiles: QQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAAAegAAAAAAegAAAAAAeQAAAAAABwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABwAAAAACBwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAABwAAAAACBwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAABwAAAAAAegAAAAAAegAAAAAAZQAAAAAAZQAAAAAAZQAAAAACZwAAAAAAZwAAAAADZwAAAAACegAAAAAAegAAAAAABwAAAAAABwAAAAABegAAAAAAegAAAAAABwAAAAACBwAAAAAAegAAAAAAZQAAAAACZQAAAAACZQAAAAACegAAAAAAZwAAAAADZwAAAAABZwAAAAABZwAAAAACegAAAAAABwAAAAACBwAAAAAAegAAAAAAegAAAAAABwAAAAABBwAAAAAAegAAAAAAZQAAAAABZQAAAAAAZQAAAAABegAAAAAAZwAAAAABZwAAAAABZwAAAAABZwAAAAACegAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAABwAAAAACeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAZwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAATgAAAAAAZQAAAAABZQAAAAADZQAAAAABZQAAAAACZQAAAAAAWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAATgAAAAAAZQAAAAADZQAAAAABZQAAAAABZQAAAAADegAAAAAAWgAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAZQAAAAAAZQAAAAABZQAAAAADegAAAAAAegAAAAAAZQAAAAAAZQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAegAAAAAAZQAAAAABZQAAAAABZQAAAAACegAAAAAAZgAAAAAALgAAAAAAZQAAAAACZgAAAAAAegAAAAAAeAAAAAAALgAAAAAALgAAAAAAeAAAAAAAegAAAAAAeQAAAAAATgAAAAAAZQAAAAACZQAAAAABZQAAAAAAegAAAAAAZgAAAAAAZQAAAAAALgAAAAAAZgAAAAAAegAAAAAAeAAAAAAALgAAAAAALgAAAAAAeAAAAAAAegAAAAAAAAAAAAAATgAAAAAAZQAAAAADZQAAAAAAZQAAAAAAZQAAAAACZgAAAAAALgAAAAAAZQAAAAAAZgAAAAAAZQAAAAACeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZgAAAAAAZQAAAAABLgAAAAAAZgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAATgAAAAAAZQAAAAACZQAAAAAAZQAAAAABegAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZQAAAAADWgAAAAACWgAAAAACWgAAAAAAWgAAAAAAegAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAPAAAAAAAbgAAAAABcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAPwAAAAAAdwAAAAABegAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: cQAAAAAAcQAAAAAAcQAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABJgAAAAACJgAAAAAAJgAAAAACcQAAAAAAcQAAAAAABwAAAAACBwAAAAACcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAABwAAAAABBwAAAAACcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAABwAAAAABBwAAAAABcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAACCAAAAAAABwAAAAAABwAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAABwAAAAAABwAAAAACCAAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAABVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAABwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAABwAAAAACBwAAAAABBwAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAABwAAAAABBwAAAAAACAAAAAAABwAAAAACBwAAAAABVAAAAAAAVAAAAAAAVAAAAAAABwAAAAACBwAAAAABBwAAAAACcQAAAAAAcQAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABcQAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAACHAAAAAADIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACGwAAAAACGwAAAAADGwAAAAADGwAAAAACGwAAAAABcQAAAAAAHAAAAAABIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAACcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAACAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAAACAAAAAAA + tiles: TgAAAAAATgAAAAAATgAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABKQAAAAACKQAAAAAAKQAAAAACTgAAAAAAegAAAAAABwAAAAACBwAAAAACegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAABwAAAAABBwAAAAACegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAABwAAAAABBwAAAAABegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAACCAAAAAAABwAAAAAABwAAAAACWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAABwAAAAAABwAAAAACCAAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAABegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAABegAAAAAAWgAAAAAAegAAAAAATgAAAAAAegAAAAAABwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAAAegAAAAAAWgAAAAAAegAAAAAABwAAAAACBwAAAAABBwAAAAAAegAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAABwAAAAABBwAAAAAACAAAAAAABwAAAAACBwAAAAABegAAAAAAWgAAAAAAegAAAAAABwAAAAACBwAAAAABBwAAAAACegAAAAAAegAAAAAALQAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABegAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAACHwAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAATgAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAACHgAAAAABegAAAAAAHwAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAegAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAATgAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAABwAAAAACBwAAAAABCAAAAAAACAAAAAAACAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAABwAAAAABCAAAAAAACAAAAAAABwAAAAAACAAAAAAA version: 6 1,0: ind: 1,0 - tiles: VAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAXAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAXAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAAXAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAXAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAAXAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAGwAAAAACGwAAAAAAGwAAAAACYAAAAAAAcQAAAAAAbwAAAAADbwAAAAABbwAAAAACbwAAAAADbwAAAAADcQAAAAAASwAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAbwAAAAABbwAAAAADbwAAAAABbwAAAAABbwAAAAABbwAAAAACSwAAAAAASwAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAAAYAAAAAAAcQAAAAAAbwAAAAACbwAAAAAAbwAAAAACcQAAAAAAcQAAAAAAcQAAAAAASwAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAADbwAAAAABcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: WgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAATgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAAZQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAZQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAAZQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAZQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfQAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAATQAAAAAAegAAAAAATQAAAAAAegAAAAAATQAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABTgAAAAAAHgAAAAACHgAAAAAAHgAAAAACaQAAAAAATgAAAAAAeAAAAAADeAAAAAABeAAAAAACeAAAAAADeAAAAAADegAAAAAAUQAAAAAAegAAAAAAegAAAAAAWgAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAeAAAAAABeAAAAAADeAAAAAABeAAAAAABeAAAAAABeAAAAAACUQAAAAAAUQAAAAAAegAAAAAAegAAAAAAWgAAAAAATgAAAAAAHgAAAAABHgAAAAACHgAAAAAAaQAAAAAAegAAAAAAeAAAAAACeAAAAAAAeAAAAAACegAAAAAAegAAAAAAegAAAAAAUQAAAAAAegAAAAAAegAAAAAAWgAAAAACegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAADeAAAAAABegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 1,1: ind: 1,1 - tiles: VAAAAAABVAAAAAACVAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACYAAAAAAAYAAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABVAAAAAABVAAAAAABcQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAVAAAAAABVAAAAAABcQAAAAAAVAAAAAADVAAAAAACcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAVAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAVAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAADwAAAAAADwAAAAAAcQAAAAAAVAAAAAACPgAAAAAAcQAAAAAAPgAAAAAAVAAAAAADcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADPgAAAAAAcQAAAAAAPgAAAAAAVAAAAAADcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACPgAAAAAAcQAAAAAAPgAAAAAAVAAAAAABcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAVAAAAAABcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAA + tiles: WgAAAAABWgAAAAACWgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAACaQAAAAAAaQAAAAAAQQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAARgAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAJAAAAAAAJAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfQAAAAAAegAAAAAAegAAAAAAdwAAAAABWgAAAAABWgAAAAABTgAAAAAAJAAAAAAAJAAAAAAAegAAAAAAWgAAAAABWgAAAAABegAAAAAAWgAAAAADWgAAAAACegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJAAAAAAAJAAAAAAAegAAAAAAWgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAWgAAAAAAegAAAAAAaQAAAAAAegAAAAAATgAAAAAAdwAAAAADegAAAAAAegAAAAAAegAAAAAAEgAAAAAAEgAAAAAAegAAAAAAWgAAAAACQQAAAAAAegAAAAAAQQAAAAAAWgAAAAADegAAAAAAaQAAAAAAegAAAAAAegAAAAAAdwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADQQAAAAAAegAAAAAAQQAAAAAAWgAAAAADegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACQQAAAAAAegAAAAAAQQAAAAAAWgAAAAABegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAWgAAAAABegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAeQAAAAAA version: 6 0,2: ind: 0,2 - tiles: ZAAAAAADZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAABZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANAAAAAAAIQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAACBwAAAAAABwAAAAAADwAAAAAAcQAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAABBwAAAAACDwAAAAAAcQAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAABBwAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: bQAAAAADbQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAJAAAAAAAJAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfAAAAAAAegAAAAAANwAAAAAAJAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfAAAAAAAJAAAAAAAJAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAegAAAAAAfAAAAAAAegAAAAAAfAAAAAAAfAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAAEgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAegAAAAAAfAAAAAAAfAAAAAAAegAAAAAABwAAAAABBwAAAAACEgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAegAAAAAAegAAAAAABwAAAAABBwAAAAACegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: QAAAAAAAXAAAAAABYgAAAAACXAAAAAAAcQAAAAAAagAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAABagAAAAAAaQAAAAAAZQAAAAACZQAAAAADZQAAAAACcQAAAAAAXAAAAAAAXAAAAAAAXAAAAAABcQAAAAAAagAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAABagAAAAAAcQAAAAAAZQAAAAACZQAAAAABZQAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAagAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAACHAAAAAAAagAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAagAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAABHAAAAAADagAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAQAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAcQAAAAAAIQAAAAAANAAAAAAANAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADwAAAAAAVAAAAAABVAAAAAAAVAAAAAAADwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANAAAAAAANAAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAABcQAAAAAADwAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAADDwAAAAAAcQAAAAAAXAAAAAACXAAAAAADXAAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAABcQAAAAAADwAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAAADwAAAAAAQAAAAAAADwAAAAAADwAAAAAADwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAABcQAAAAAANAAAAAAANAAAAAAAGwAAAAABNAAAAAAAGwAAAAABNAAAAAAANAAAAAAAcQAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAACNAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAACcQAAAAAANAAAAAAANAAAAAAAGwAAAAACNAAAAAAAGwAAAAABNAAAAAAANAAAAAAAcQAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAABGwAAAAACcQAAAAAABwAAAAABBwAAAAABBwAAAAABcAAAAAAABwAAAAABBwAAAAAABwAAAAACcQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAcQAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACcQAAAAAAcQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAACBwAAAAAC + tiles: RgAAAAAAZQAAAAABawAAAAACZQAAAAAATgAAAAAAcwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABcwAAAAAAcgAAAAAAbgAAAAACbgAAAAADbgAAAAACegAAAAAAZQAAAAAAZQAAAAAAZQAAAAABegAAAAAAcwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAABcwAAAAAATgAAAAAAbgAAAAACbgAAAAABbgAAAAABegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAcwAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAcwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAcwAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAABHwAAAAADcwAAAAAAegAAAAAAJAAAAAAAJAAAAAAAJAAAAAAARgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAegAAAAAAJAAAAAAANwAAAAAANwAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAARgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAEgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAABegAAAAAAEgAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAADWgAAAAADEgAAAAAAegAAAAAAZQAAAAACZQAAAAADZQAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAABegAAAAAAEgAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAABWgAAAAAAEgAAAAAARgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAAegAAAAAAegAAAAAATgAAAAAARgAAAAAAegAAAAAARgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAABegAAAAAANwAAAAAANwAAAAAAHgAAAAABNwAAAAAAHgAAAAABNwAAAAAANwAAAAAAegAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAAAegAAAAAAHgAAAAADHgAAAAACHgAAAAACNwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAACegAAAAAANwAAAAAANwAAAAAAHgAAAAACNwAAAAAAHgAAAAABNwAAAAAANwAAAAAAegAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAABHgAAAAADHgAAAAABHgAAAAACegAAAAAABwAAAAABBwAAAAABBwAAAAABeQAAAAAABwAAAAABBwAAAAAABwAAAAACegAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAegAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACegAAAAAAegAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAACBwAAAAAC version: 6 1,2: ind: 1,2 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAABwAAAAACBwAAAAACBwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAABBwAAAAACcQAAAAAABwAAAAAABwAAAAACBwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAACcQAAAAAABwAAAAAACAAAAAAABwAAAAACcQAAAAAANwAAAAAAcQAAAAAANwAAAAAAcQAAAAAANwAAAAAAcQAAAAAANwAAAAAANwAAAAAAcQAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAABcQAAAAAANwAAAAAAcQAAAAAANwAAAAAAcQAAAAAANwAAAAAAcQAAAAAANwAAAAAANwAAAAAAcQAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAAcQAAAAAANwAAAAAAcQAAAAAANwAAAAAAcQAAAAAANwAAAAAAcQAAAAAANwAAAAAANwAAAAAAcQAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAACCAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACDQAAAAAADQAAAAAABwAAAAAACAAAAAAABwAAAAACBwAAAAAABwAAAAAACAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAABDQAAAAAADQAAAAAADQAAAAAAAAAAAAAACAAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAAADQAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACDQAAAAAADQAAAAAADQAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAeQAAAAAATgAAAAAABwAAAAACBwAAAAACBwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAABBwAAAAACTgAAAAAABwAAAAAABwAAAAACBwAAAAACegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAABwAAAAAABwAAAAACTgAAAAAABwAAAAAACAAAAAAABwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAACCAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACDwAAAAAADwAAAAAABwAAAAAACAAAAAAABwAAAAACBwAAAAAABwAAAAAACAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAABDwAAAAAADwAAAAAADwAAAAAAAAAAAAAACAAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACDwAAAAAADwAAAAAADwAAAAAA version: 6 2,1: ind: 2,1 - tiles: cQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAbgAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAbgAAAAAAbgAAAAAAbgAAAAADcQAAAAAAbgAAAAABbgAAAAACcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAbgAAAAACEQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAABcQAAAAAAbgAAAAADbgAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAbgAAAAACcQAAAAAAbgAAAAADbgAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAADEQAAAAAAbgAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAXQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: egAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAALgAAAAAAeQAAAAAALgAAAAAATgAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAeQAAAAAALgAAAAAAegAAAAAAdwAAAAABPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAeQAAAAAALgAAAAAAegAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAdwAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALgAAAAAAeQAAAAAALgAAAAAAFAAAAAAAdwAAAAAAdwAAAAAAdwAAAAADegAAAAAAdwAAAAABdwAAAAACegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAeQAAAAAALgAAAAAAdwAAAAAAegAAAAAAdwAAAAAAdwAAAAAAegAAAAAAdwAAAAACFAAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAALgAAAAAAeQAAAAAALgAAAAAAdwAAAAACdwAAAAAAdwAAAAABdwAAAAABegAAAAAAdwAAAAADdwAAAAACTgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAALgAAAAAAeQAAAAAALgAAAAAAdwAAAAAAdwAAAAAAegAAAAAAdwAAAAACegAAAAAAdwAAAAADdwAAAAACTgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAATgAAAAAAdwAAAAAAdwAAAAAAdwAAAAADdwAAAAACdwAAAAADFAAAAAAAdwAAAAACegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,0: ind: 2,0 - tiles: cQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA + tiles: TgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAATgAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAALgAAAAAAeQAAAAAALgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAALgAAAAAAeQAAAAAALgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAALgAAAAAAeQAAAAAALgAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALgAAAAAAeQAAAAAALgAAAAAAaQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAeQAAAAAALgAAAAAAaQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAeQAAAAAALgAAAAAAaQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAALgAAAAAAeQAAAAAALgAAAAAAaQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAA version: 6 -2,2: ind: -2,2 - tiles: WQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAXAAAAAADWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAXAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAXAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAXAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAXAAAAAADBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAACCAAAAAAABwAAAAABBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAACAAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YQAAAAAAYQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAaQAAAAAAZQAAAAADYQAAAAAAYQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAaQAAAAAAZQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAaQAAAAAAZQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATgAAAAAAaQAAAAAAZQAAAAABTgAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAZQAAAAADBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAACCAAAAAAABwAAAAABBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAACAAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAYAAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATQAAAAAAaQAAAAAATQAAAAAAaQAAAAAATQAAAAAAaQAAAAAATQAAAAAAaQAAAAAATQAAAAAAaQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATQAAAAAAaQAAAAAATQAAAAAAaQAAAAAATQAAAAAAaQAAAAAATQAAAAAAaQAAAAAATQAAAAAAaQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATQAAAAAAaQAAAAAATQAAAAAAaQAAAAAATQAAAAAAaQAAAAAATQAAAAAAaQAAAAAATQAAAAAAaQAAAAAATQAAAAAA version: 6 -3,0: ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATQAAAAAAaQAAAAAATQAAAAAAaQAAAAAATQAAAAAAaQAAAAAATQAAAAAAaQAAAAAATQAAAAAAaQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAACAAAAAAABwAAAAACBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAACAAAAAAABwAAAAACBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAC version: 6 -3,1: ind: -3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAABcQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAACAAAAAAABwAAAAACcQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACcQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAACcQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAABCAAAAAAABwAAAAACBwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAACcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACCAAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAABcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAABegAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAACAAAAAAABwAAAAACTgAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACTgAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAACegAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAABCAAAAAAABwAAAAACBwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAACTgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACCAAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAABTgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAA version: 6 -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACcQAAAAAANQAAAAADNQAAAAADNQAAAAACNQAAAAABAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAAcQAAAAAANQAAAAAANQAAAAADNQAAAAAANQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABCAAAAAAABwAAAAABBwAAAAABcQAAAAAANQAAAAABNQAAAAABNQAAAAABNQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAABcQAAAAAANQAAAAABNQAAAAACNQAAAAADNQAAAAABAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAACAAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAACCAAAAAAABwAAAAABBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAACCAAAAAAABwAAAAABBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACegAAAAAAOAAAAAADOAAAAAADOAAAAAACOAAAAAABAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAATgAAAAAAOAAAAAAAOAAAAAADOAAAAAAAOAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABCAAAAAAABwAAAAABBwAAAAABTgAAAAAAOAAAAAABOAAAAAABOAAAAAABOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAABegAAAAAAOAAAAAABOAAAAAACOAAAAAADOAAAAAABAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAABegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAACAAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAACCAAAAAAABwAAAAABBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAACCAAAAAAABwAAAAABBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: BwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAACAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAABBwAAAAAACgAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAACAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAASAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAASAAAAAAASAAAAAAASAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAASAAAAAAASAAAAAAASAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAASAAAAAAASAAAAAAASAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAegAAAAAARAAAAAAARAAAAAAARAAAAAAAegAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAARAAAAAAARAAAAAAARAAAAAAAegAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAARAAAAAAARAAAAAAARAAAAAAAegAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAABBwAAAAABBwAAAAAADQAAAAAADQAAAAAADQAAAAAAcQAAAAAAcQAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAABwAAAAACBwAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAAcQAAAAAAcQAAAAAADQAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACcQAAAAAAcQAAAAAAcAAAAAAABwAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAcQAAAAAAcQAAAAAADQAAAAAADQAAAAAABwAAAAAABwAAAAABBwAAAAABcQAAAAAAcQAAAAAAcAAAAAAABwAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAcQAAAAAAcQAAAAAADQAAAAAADQAAAAAABwAAAAABBwAAAAAABwAAAAABcQAAAAAAcQAAAAAAcAAAAAAABwAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAcQAAAAAAcQAAAAAADQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAACcQAAAAAAcQAAAAAAcAAAAAAABwAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAcQAAAAAAcQAAAAAADQAAAAAADQAAAAAABwAAAAAABwAAAAABBwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAABwAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAcQAAAAAAcQAAAAAADQAAAAAADQAAAAAABwAAAAACBwAAAAACBwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAABwAAAAABBwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAcQAAAAAAcQAAAAAADQAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAABwAAAAABBwAAAAABBwAAAAAADQAAAAAADQAAAAAADQAAAAAAcQAAAAAAcQAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAACAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAA - version: 6 - 3,1: - ind: 3,1 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAcAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAcAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAcAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAcAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAcAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAcAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAABBwAAAAABBwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAegAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAAAegAAAAAAegAAAAAAeQAAAAAABwAAAAACBwAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAegAAAAAADwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACegAAAAAAegAAAAAAeQAAAAAABwAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAegAAAAAADwAAAAAADwAAAAAABwAAAAAABwAAAAABBwAAAAABegAAAAAAegAAAAAAeQAAAAAABwAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAegAAAAAADwAAAAAADwAAAAAABwAAAAABBwAAAAAABwAAAAABegAAAAAAegAAAAAAeQAAAAAABwAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAegAAAAAADwAAAAAADwAAAAAABwAAAAAABwAAAAAABwAAAAACegAAAAAAegAAAAAAeQAAAAAABwAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAegAAAAAADwAAAAAADwAAAAAABwAAAAAABwAAAAABBwAAAAAAegAAAAAAegAAAAAAeQAAAAAABwAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAegAAAAAADwAAAAAADwAAAAAABwAAAAACBwAAAAACBwAAAAAAegAAAAAAegAAAAAAeQAAAAAABwAAAAABBwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAegAAAAAADwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAAAegAAAAAAegAAAAAAeQAAAAAABwAAAAABBwAAAAABBwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAegAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAACAAAAAAAegAAAAAAegAAAAAAeQAAAAAA version: 6 -1,3: ind: -1,3 - tiles: BwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAACCAAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAABCAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAAAAAAAAAABwAAAAABAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACCAAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAACAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKwAAAAAAcAAAAAAAcAAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAACCAAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAABCAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAAAAAAAAAABwAAAAABAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAATgAAAAAABwAAAAABBwAAAAACCAAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAACAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,3: ind: -2,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAeQAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAATgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAeQAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAeQAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAATgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAeQAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAeQAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAATgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAeQAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,0: ind: 3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAA - version: 6 - 3,2: - ind: 3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAATgAAAAAAAAAAAAAATgAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALgAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALgAAAAAAAAAAAAAALgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAALgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,2: ind: 2,2 - tiles: cAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAABwAAAAAABwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAABwAAAAAABwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: BwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAACCAAAAAAABwAAAAABBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAACAAAAAAABwAAAAABBwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAABAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAACCAAAAAAABwAAAAABBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAACCAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABCgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAABCgAAAAAABwAAAAAABwAAAAACBwAAAAACCgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABCgAAAAAACgAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAACCgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAACgAAAAAACgAAAAAACgAAAAAACAAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAABAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-3: ind: 2,-3 @@ -243,17 +239,17 @@ entities: ind: -3,-3 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAAACAAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 - -3,3: - ind: -3,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 3,1: + ind: 3,1 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAALgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAALgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,4: ind: -2,4 - tiles: cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,4: ind: -1,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: TgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,3: ind: 0,3 @@ -265,7 +261,7 @@ entities: version: 6 1,3: ind: 1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABDQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABDwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-4: ind: -3,-4 @@ -278,8 +274,8 @@ entities: type: MapGrid - type: Broadphase - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 + angularDamping: 10000 + linearDamping: 10000 fixedRotation: False bodyType: Dynamic type: Physics @@ -1778,6 +1774,22 @@ entities: 1963: 17,-29 1964: 18,-26 1965: 15,-26 + - node: + cleanable: True + zIndex: 3 + color: '#FFFFFFFF' + id: Dirt + decals: + 2067: 34.042126,-25.012278 + 2068: 33.981354,-24.986235 + 2069: 33.97267,-24.517485 + 2070: 33.96399,-24.005333 + 2071: 34.050808,-23.371653 + 2072: 33.226,-24.77444 + 2073: 33.269413,-25.607775 + 2074: 32.2536,-25.954996 + 2075: 32.522747,-25.0609 + 2076: 32.73112,-23.915066 - node: color: '#FFFFFFFF' id: DirtHeavy @@ -2956,6 +2968,17 @@ entities: 807: -32,-4 808: -31.98216,-3.624074 809: -31.992577,-4.7394323 + - node: + cleanable: True + zIndex: 3 + color: '#FFFFFFFF' + id: Rock07 + decals: + 2062: 34.059795,-25.497591 + 2063: 33.72987,-25.575716 + 2064: 33.63437,-25.45419 + 2065: 33.825375,-25.254536 + 2066: 34.051113,-25.350021 - node: color: '#4766D6D6' id: Rust @@ -3360,6 +3383,55 @@ entities: id: WoodTrimThinLineS decals: 1477: -11,22 + - node: + angle: -0.7853981633974483 rad + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 2050: 34.373898,-30.94792 + - node: + cleanable: True + angle: -0.4014257279586958 rad + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 2054: 34.198574,-21.879633 + 2055: 34.41574,-20.639322 + 2056: 34.89326,-19.979599 + - node: + cleanable: True + angle: -0.3141592653589793 rad + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 2057: 35.118996,-19.35439 + - node: + cleanable: True + angle: -0.2617993877991494 rad + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 2060: 35.157677,-17.216322 + - node: + cleanable: True + angle: -0.13962634015954636 rad + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 2061: 35.148994,-16.38299 + - node: + angle: -0.12217304763960307 rad + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 2049: 34.01793,-31.984425 + - node: + cleanable: True + angle: -0.08726646259971647 rad + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 2058: 35.13636,-18.64659 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -3373,6 +3445,8 @@ entities: 1745: 19,0 1746: 20,0 1926: 17,-8 + 2046: 33.97903,-34.293705 + 2047: 34.03529,-33.633984 - node: zIndex: 1 color: '#FFFFFFFF' @@ -3385,6 +3459,32 @@ entities: id: WoodTrimThinLineS decals: 914: 4,19 + - node: + angle: 0.08726646259971647 rad + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 2053: 33.981518,-23.6715 + - node: + cleanable: True + angle: 0.15707963267948966 rad + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 2059: 34.98403,-17.737156 + - node: + angle: 0.2617993877991494 rad + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 2048: 33.852966,-32.81051 + - node: + angle: 0.5759586531581288 rad + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 2051: 33.809555,-34.960224 + 2052: 33.721054,-24.713167 - node: color: '#9D9D97FF' id: WoodTrimThinLineW @@ -3450,6 +3550,51 @@ entities: decals: 236: -25.273138,-1.1306946 237: -24.616888,-1.1306946 + - node: + zIndex: 2 + angle: -0.6108652381980153 rad + color: '#A09DAFFF' + id: shortline + decals: + 2010: 34.800472,-20.761982 + 2011: 34.253494,-20.631775 + 2012: 34.63551,-20.970316 + 2013: 34.097218,-20.822746 + - node: + zIndex: 2 + angle: -0.4363323129985824 rad + color: '#A09DAFFF' + id: shortline + decals: + 2006: 35.173805,-20.086166 + 2007: 34.56605,-20.025402 + 2008: 35.00016,-20.41476 + 2009: 34.401093,-20.371357 + 2014: 34.47055,-21.282816 + 2015: 33.91489,-21.126566 + - node: + zIndex: 2 + angle: -0.2617993877991494 rad + color: '#A09DAFFF' + id: shortline + decals: + 2004: 35.30404,-19.738945 + 2005: 34.687603,-19.686861 + 2016: 34.331635,-21.638718 + 2017: 33.79334,-21.49983 + - node: + zIndex: 2 + color: '#A09DAFFF' + id: shortline + decals: + 2018: 34.27954,-21.994621 + 2019: 33.741245,-21.873093 + 2020: 33.741245,-22.207142 + 2021: 34.288223,-22.31131 + 2022: 34.296906,-22.597767 + 2023: 34.296906,-22.8061 + 2024: 34.296906,-23.031796 + 2025: 34.31427,-23.231447 - node: color: '#FFFFFFFF' id: space @@ -3469,6 +3614,39 @@ entities: id: splatter decals: 1985: -37,-30 + - node: + zIndex: 2 + color: '#A09DAFFF' + id: thinline + decals: + 1996: 35.373497,-16.917324 + 1997: 34.74838,-16.908644 + 1998: 34.75706,-17.63781 + 1999: 35.34745,-17.672533 + 2000: 35.373497,-18.349615 + 2001: 34.74838,-18.340935 + 2002: 34.74838,-19.04406 + 2003: 35.338768,-19.122185 + 2026: 33.736828,-22.768236 + 2027: 34.30117,-23.532125 + 2028: 33.728146,-23.488724 + 2029: 33.719467,-24.249603 + 2030: 34.275124,-24.462158 + 2031: 34.26644,-24.861464 + 2032: 33.714603,-32.30149 + 2033: 33.714603,-33.0355 + 2034: 33.714603,-33.70769 + 2035: 33.731968,-34.212395 + 2036: 33.731968,-34.744766 + 2037: 33.731968,-35.18496 + 2038: 34.296307,-34.671642 + 2039: 34.278942,-34.054947 + 2040: 34.278942,-33.56878 + 2041: 34.278942,-33.002064 + 2042: 34.278942,-32.33696 + 2043: 34.278942,-31.859684 + 2044: 34.278942,-31.379225 + 2045: 34.27026,-30.90482 - node: cleanable: True zIndex: 1 @@ -3540,7 +3718,8 @@ entities: -5,-4: 0: 65535 -5,-7: - 0: 65535 + 0: 65433 + 2: 102 -5,-6: 0: 65535 -5,-5: @@ -3600,7 +3779,8 @@ entities: -6,-4: 0: 61439 -6,-8: - 0: 65535 + 0: 62263 + 2: 3272 -6,-7: 0: 65535 -6,-6: @@ -3608,7 +3788,8 @@ entities: -6,-5: 0: 65535 -5,-8: - 0: 65535 + 2: 30583 + 0: 34952 -4,-8: 0: 65535 -3,-8: @@ -3658,13 +3839,17 @@ entities: 1,-10: 0: 65535 -6,-10: - 0: 65535 + 2: 13105 + 0: 52430 -6,-9: - 0: 65535 + 2: 35123 + 0: 30412 -5,-10: - 0: 65535 + 0: 39321 + 2: 26214 -5,-9: - 0: 65535 + 2: 30583 + 0: 34952 2,-4: 0: 65535 3,-4: @@ -3818,8 +4003,7 @@ entities: -4,5: 0: 65535 -3,6: - 0: 64511 - 2: 1024 + 0: 65535 -3,7: 0: 65535 -2,6: @@ -3904,7 +4088,7 @@ entities: 0: 65535 3,8: 0: 16383 - 3: 49152 + 2: 49152 -2,8: 0: 65535 -1,8: @@ -3943,7 +4127,7 @@ entities: 0: 65535 3,9: 0: 61155 - 3: 4380 + 2: 4380 4,8: 0: 65535 4,9: @@ -3952,23 +4136,23 @@ entities: 0: 65535 5,9: 0: 21855 - 4: 8736 - 5: 34944 + 3: 8736 + 4: 34944 5,10: 0: 65535 6,8: 0: 65535 6,9: 0: 21855 - 6: 8736 - 3: 34944 + 5: 8736 + 2: 34944 6,10: 0: 65535 7,8: 0: 65535 7,9: 0: 61167 - 3: 4368 + 2: 4368 7,10: 0: 65535 8,4: @@ -4010,7 +4194,7 @@ entities: 4,10: 0: 65535 -7,10: - 0: 43767 + 0: 48119 -7,9: 0: 62448 -7,8: @@ -4080,9 +4264,11 @@ entities: -8,-5: 0: 65279 -8,-8: - 0: 65535 + 2: 767 + 0: 64768 -7,-8: - 0: 65535 + 2: 255 + 0: 65280 -7,-7: 0: 65535 -7,-6: @@ -4105,7 +4291,7 @@ entities: 0: 16383 1,9: 0: 30591 - 3: 34944 + 2: 34944 1,10: 0: 30591 -4,8: @@ -4163,8 +4349,7 @@ entities: 8,-4: 0: 65535 8,-3: - 0: 16383 - 3: 49152 + 0: 65535 -9,-6: 0: 34952 7,-8: @@ -4173,7 +4358,7 @@ entities: 0: 65535 2,9: 0: 15 - 3: 65520 + 2: 65520 -4,11: 0: 65535 6,11: @@ -4185,25 +4370,25 @@ entities: 10,4: 0: 10111 10,5: - 0: 61986 + 0: 62178 10,6: - 0: 32896 + 0: 50372 10,7: - 0: 128 + 0: 17604 11,4: - 0: 8751 + 0: 61039 11,5: - 0: 61986 + 0: 65278 11,6: - 0: 45489 + 0: 49087 11,7: 0: 4529 10,3: 0: 30512 11,3: - 0: 34824 + 0: 52974 -7,11: - 0: 48906 + 0: 48923 -6,11: 0: 44938 -5,11: @@ -4211,49 +4396,52 @@ entities: 6,-9: 0: 65534 12,4: - 0: 9007 + 0: 61295 12,5: - 0: 61986 + 0: 65278 12,6: - 0: 45489 + 0: 46003 12,7: 0: 4529 13,4: - 0: 25135 + 0: 61039 13,5: - 0: 61986 + 0: 62006 13,6: - 0: 45489 + 0: 49087 13,7: 0: 4529 14,4: - 0: 8751 + 0: 8943 14,5: 0: 61954 14,6: - 0: 12593 + 0: 14193 14,7: 0: 4401 -4,12: 0: 12287 -7,12: - 0: 4011 + 0: 20395 -6,12: 0: 36778 -5,12: 0: 4010 -8,-10: - 0: 65535 + 0: 4371 + 2: 61164 -8,-9: - 0: 65535 + 2: 65535 -7,-10: - 0: 65535 + 2: 65535 -7,-9: - 0: 65535 + 2: 65535 -4,-11: - 0: 4081 + 0: 1 + 2: 4080 -3,-11: - 0: 9200 + 2: 816 + 0: 8384 -2,-11: 0: 62 4,11: @@ -4291,26 +4479,29 @@ entities: -9,10: 0: 65535 9,-3: - 0: 511 - 3: 15872 + 0: 16383 10,-4: - 0: 4369 - 3: 61134 + 0: 65503 10,-3: - 0: 1 - 3: 3324 + 0: 3325 -10,-8: - 0: 61439 + 0: 61431 + 2: 8 -9,-8: - 0: 65535 + 2: 2255 + 0: 63280 -8,-11: - 0: 65535 + 0: 28687 + 2: 36848 -7,-11: - 0: 65535 + 0: 15 + 2: 65520 -6,-11: - 0: 65535 + 0: 61455 + 2: 4080 -5,-11: - 0: 65535 + 0: 36879 + 2: 28656 15,4: 0: 17479 15,6: @@ -4320,27 +4511,27 @@ entities: 15,5: 0: 17476 -4,13: - 0: 62192 + 0: 65535 -8,12: 0: 16072 -8,13: - 0: 8177 + 0: 16383 -7,13: - 0: 60400 + 0: 61439 -6,13: - 0: 47864 + 0: 48123 -6,14: - 0: 34958 + 0: 35839 -5,14: - 0: 11 + 0: 3839 -5,13: - 0: 60144 + 0: 61182 13,3: - 0: 8751 + 0: 28399 14,2: - 0: 8192 + 0: 29764 14,3: - 0: 8751 + 0: 58991 12,9: 0: 61440 13,9: @@ -4354,7 +4545,7 @@ entities: 9,11: 0: 22391 10,9: - 0: 61440 + 0: 62532 11,8: 0: 4369 11,9: @@ -4388,8 +4579,7 @@ entities: 10,-6: 0: 4368 10,-5: - 0: 4369 - 3: 52928 + 0: 57297 8,-11: 0: 12544 8,-10: @@ -4401,11 +4591,14 @@ entities: -10,-9: 0: 65535 -9,-10: - 0: 65535 + 2: 19 + 0: 65516 -9,-9: - 0: 65535 + 0: 273 + 2: 65262 -9,-11: - 0: 65535 + 0: 32783 + 2: 32752 -10,12: 0: 136 -9,12: @@ -4415,7 +4608,7 @@ entities: 2,11: 0: 4094 2,10: - 3: 15 + 2: 15 0: 17472 3,11: 0: 4095 @@ -4444,7 +4637,7 @@ entities: -9,-5: 0: 34952 12,3: - 0: 15 + 0: 20207 15,3: 0: 17479 8,12: @@ -4470,7 +4663,7 @@ entities: -10,9: 0: 65535 -3,13: - 0: 29950 + 0: 30719 -3,12: 0: 65535 0,11: @@ -4482,41 +4675,41 @@ entities: -1,11: 0: 65535 -4,15: - 0: 8751 + 0: 16383 -4,14: - 0: 2 + 0: 8191 -3,15: - 0: 17479 + 0: 26471 -3,14: - 0: 17476 + 0: 26471 -2,12: 0: 65535 -1,12: 0: 65535 -8,14: - 0: 4369 + 0: 16319 -8,15: - 0: 4383 + 0: 16319 -7,15: - 0: 43695 + 0: 61439 -7,14: - 0: 10 + 0: 20479 -6,15: - 0: 43695 + 0: 44031 -5,15: - 0: 43695 + 0: 44799 -8,16: - 0: 61713 + 0: 65331 -7,16: - 0: 61440 + 0: 65348 -6,16: - 0: 63624 + 0: 65480 -5,16: - 0: 61440 + 0: 65296 -4,16: - 0: 61440 + 0: 65297 -3,16: - 0: 29764 + 0: 30566 -10,-3: 0: 65408 -10,-2: @@ -4530,11 +4723,9 @@ entities: 6,-1: 0: 65535 7,-2: - 0: 16383 - 3: 49152 + 0: 65535 7,-1: - 0: 65523 - 3: 12 + 0: 65535 5,0: 0: 65535 6,1: @@ -4584,7 +4775,8 @@ entities: 8,-9: 0: 65395 -10,-10: - 0: 65535 + 0: 63351 + 2: 2184 0,12: 0: 17 7,12: @@ -4610,7 +4802,8 @@ entities: -10,-12: 0: 65518 -10,-11: - 0: 65535 + 0: 29567 + 2: 35968 -9,-12: 0: 65535 -10,-13: @@ -4624,17 +4817,35 @@ entities: 8,0: 0: 4369 8,-2: - 0: 257 - 3: 4096 + 0: 4353 8,-1: - 0: 4368 - 3: 1 + 0: 4369 11,-4: - 3: 4113 + 0: 4113 11,-3: - 3: 273 + 0: 273 11,-5: - 3: 4368 + 0: 4368 + 10,1: + 0: 34816 + 10,2: + 0: 34952 + 11,1: + 0: 44800 + 11,2: + 0: 65262 + 12,1: + 0: 44800 + 12,2: + 0: 65262 + 13,1: + 0: 44800 + 13,2: + 0: 65262 + 14,1: + 0: 18176 + 10,8: + 0: 17476 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -4666,21 +4877,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -4746,7 +4942,9 @@ entities: - id: PebbleStation type: BecomesStation - type: OccluderTree - - type: Shuttle + - angularDamping: 10000 + linearDamping: 10000 + type: Shuttle - type: GridPathfinding - type: RadiationGridResistance - type: GasTileOverlay @@ -4768,27 +4966,31 @@ entities: parent: 2 type: Transform - devices: - - 5297 - - 5281 + - 5290 + - 5274 - 263 - - 6864 - - 6961 + - 6857 + - 6954 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 5 components: - pos: -5.5,11.5 parent: 2 type: Transform - devices: - - 5282 - - 5421 + - 5275 + - 5414 - 285 - - 5378 - - 5379 - - 5380 - - 6941 - - 6845 + - 5371 + - 5372 + - 5373 + - 6934 + - 6838 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 6 components: - pos: 12.5,11.5 @@ -4796,30 +4998,36 @@ entities: type: Transform - devices: - 296 - - 5385 - - 5281 - - 6974 - - 6885 + - 5378 + - 5274 + - 6967 + - 6878 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 7 components: - pos: -6.5,-16.5 parent: 2 type: Transform - devices: - - 5354 - - 5355 + - 5347 + - 5348 - 274 - - 5340 - - 6867 - - 6955 + - 5333 + - 6860 + - 6948 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 8 components: - rot: 3.141592653589793 rad pos: -17.5,6.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - uid: 9 components: - rot: 1.5707963267948966 rad @@ -4827,12 +5035,14 @@ entities: parent: 2 type: Transform - devices: - - 5339 + - 5332 - 275 - - 5340 - - 6856 - - 6946 + - 5333 + - 6849 + - 6939 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 10 components: - rot: -1.5707963267948966 rad @@ -4841,10 +5051,12 @@ entities: type: Transform - devices: - 257 - - 5339 - - 6952 - - 6862 + - 5332 + - 6945 + - 6855 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 11 components: - pos: -15.5,-9.5 @@ -4852,11 +5064,13 @@ entities: type: Transform - devices: - 272 - - 5391 - - 5390 - - 6945 - - 6854 + - 5384 + - 5383 + - 6938 + - 6847 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 12 components: - rot: 3.141592653589793 rad @@ -4864,12 +5078,14 @@ entities: parent: 2 type: Transform - devices: - - 5337 - - 5338 + - 5330 + - 5331 - 276 - - 6861 - - 6949 + - 6854 + - 6942 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 13 components: - rot: 1.5707963267948966 rad @@ -4877,14 +5093,16 @@ entities: parent: 2 type: Transform - devices: - - 5356 - - 5344 - - 5345 + - 5349 + - 5337 + - 5338 - 278 - - 6888 - - 5294 - - 6995 + - 6881 + - 5287 + - 6988 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 14 components: - rot: -1.5707963267948966 rad @@ -4893,34 +5111,40 @@ entities: type: Transform - devices: - 280 - - 5349 - - 5388 - - 6839 - - 6930 + - 5342 + - 5381 + - 6832 + - 6923 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 15 components: - pos: 24.5,-18.5 parent: 2 type: Transform - devices: - - 5359 + - 5352 - 259 - - 6959 - - 6871 + - 6952 + - 6864 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 16 components: - pos: 17.5,-17.5 parent: 2 type: Transform - devices: - - 5358 - - 5359 + - 5351 + - 5352 - 260 - - 6958 - - 6870 + - 6951 + - 6863 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 17 components: - rot: 1.5707963267948966 rad @@ -4928,11 +5152,13 @@ entities: parent: 2 type: Transform - devices: - - 5360 - - 5357 + - 5353 + - 5350 - 282 - - 6858 + - 6851 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 18 components: - pos: 13.5,-15.5 @@ -4940,11 +5166,13 @@ entities: type: Transform - devices: - 283 - - 5357 - - 5277 - - 6857 - - 6950 + - 5350 + - 5270 + - 6850 + - 6943 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 19 components: - rot: 3.141592653589793 rad @@ -4952,14 +5180,16 @@ entities: parent: 2 type: Transform - devices: - - 5369 - - 5367 - - 5368 + - 5362 + - 5360 + - 5361 - 262 - - 6889 - - 6973 - - 5366 + - 6882 + - 6966 + - 5359 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 20 components: - rot: 1.5707963267948966 rad @@ -4967,15 +5197,17 @@ entities: parent: 2 type: Transform - devices: - - 6875 - - 6992 + - 6868 + - 6985 + - 5285 + - 5335 + - 5334 + - 5288 - 5292 - - 5342 - - 5341 - - 5295 - - 5299 - - 5300 + - 5293 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 21 components: - rot: -1.5707963267948966 rad @@ -4983,19 +5215,21 @@ entities: parent: 2 type: Transform - devices: - - 5405 - - 5406 + - 5398 + - 5399 - 294 - - 5382 - - 5386 - - 5387 - - 5381 - - 5404 - - 5424 - - 6960 - - 6996 - - 5428 + - 5375 + - 5379 + - 5380 + - 5374 + - 5397 + - 5417 + - 6953 + - 6989 + - 5421 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 22 components: - rot: 3.141592653589793 rad @@ -5003,16 +5237,18 @@ entities: parent: 2 type: Transform - devices: - - 5332 - - 5329 - 5325 - - 5293 + - 5322 + - 5318 + - 5286 - 292 - - 5330 - - 5331 - - 6954 - - 6866 + - 5323 + - 5324 + - 6947 + - 6859 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 23 components: - rot: 3.141592653589793 rad @@ -5020,9 +5256,11 @@ entities: parent: 2 type: Transform - devices: - - 5290 + - 5283 - 266 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 24 components: - pos: -19.5,23.5 @@ -5030,10 +5268,12 @@ entities: type: Transform - devices: - 268 - - 5320 - - 6968 - - 6878 + - 5313 + - 6961 + - 6871 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 25 components: - rot: 1.5707963267948966 rad @@ -5041,36 +5281,42 @@ entities: parent: 2 type: Transform - devices: - - 5320 - - 5377 + - 5313 + - 5370 - 269 - - 6853 - - 6938 + - 6846 + - 6931 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 26 components: - pos: -15.5,15.5 parent: 2 type: Transform - devices: - - 5375 - - 5351 - - 5376 + - 5368 + - 5344 + - 5369 - 291 - - 6848 - - 6937 + - 6841 + - 6930 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 27 components: - pos: -22.5,19.5 parent: 2 type: Transform - devices: - - 5348 + - 5341 - 270 - - 6935 - - 6852 + - 6928 + - 6845 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 28 components: - rot: 3.141592653589793 rad @@ -5078,12 +5324,14 @@ entities: parent: 2 type: Transform - devices: - - 5348 - - 5319 + - 5341 + - 5312 - 290 - - 6936 - - 6851 + - 6929 + - 6844 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 29 components: - rot: 1.5707963267948966 rad @@ -5091,29 +5339,33 @@ entities: parent: 2 type: Transform - devices: - - 5377 - - 5351 - - 5319 - - 5317 - - 5318 + - 5370 + - 5344 + - 5312 + - 5310 + - 5311 - 289 - - 6880 - - 6970 + - 6873 + - 6963 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 30 components: - pos: -3.5,-16.5 parent: 2 type: Transform - devices: - - 5355 + - 5348 - 277 - - 5356 - - 5337 - - 5338 - - 6860 - - 6948 + - 5349 + - 5330 + - 5331 + - 6853 + - 6941 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 31 components: - rot: 1.5707963267948966 rad @@ -5121,46 +5373,45 @@ entities: parent: 2 type: Transform - devices: - - 5346 - - 5347 - - 5384 + - 5339 + - 5340 + - 5377 - 279 - - 5363 + - 5356 + - 5355 + - 5338 + - 5337 - 5362 - - 5345 - - 5344 - - 5369 - - 6929 - - 6886 - - 5417 + - 6922 + - 6879 + - 5410 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 32 components: - rot: 3.141592653589793 rad pos: 15.5,-20.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 6951 - - 6859 - - 295 - type: DeviceNetwork - devices: - - 5350 + - 5343 + - 5351 + - 5270 - 5358 - - 5277 - - 5365 - - 5364 - - 5366 - - 5361 - - 5326 + - 5357 + - 5359 + - 5354 + - 5319 - 304 - - 6993 - - 6907 - - 6951 - - 6859 + - 6986 + - 6900 + - 6944 + - 6852 - 295 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 33 components: - rot: 3.141592653589793 rad @@ -5168,16 +5419,18 @@ entities: parent: 2 type: Transform - devices: - - 5331 - - 5330 - - 5327 - - 5328 - - 5280 - - 5279 + - 5324 + - 5323 + - 5320 + - 5321 + - 5273 + - 5272 - 293 - - 6967 - - 6876 + - 6960 + - 6869 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 34 components: - rot: 3.141592653589793 rad @@ -5185,25 +5438,27 @@ entities: parent: 2 type: Transform - devices: - - 5373 - - 5372 - - 5310 - - 5311 - - 5312 - - 5301 - - 5302 + - 5366 + - 5365 - 5303 - - 5309 - - 5308 - - 5307 - - 5374 - - 5306 - - 5305 - 5304 + - 5305 + - 5294 + - 5295 + - 5296 + - 5302 + - 5301 + - 5300 + - 5367 + - 5299 + - 5298 + - 5297 - 265 - - 6840 - - 6934 + - 6833 + - 6927 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 35 components: - rot: 3.141592653589793 rad @@ -5211,34 +5466,33 @@ entities: parent: 2 type: Transform - devices: - - 5315 - - 5316 + - 5308 + - 5309 - 287 - - 6940 - - 6849 - - 5395 + - 6933 + - 6842 + - 5388 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 36 components: - rot: 1.5707963267948966 rad pos: -10.5,19.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 267 - - 6965 - - 6877 - type: DeviceNetwork - devices: - 267 - - 5293 - - 5325 + - 5286 + - 5318 - 254 - - 6882 - - 6966 - - 6965 - - 6877 + - 6875 + - 6959 + - 6958 + - 6870 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 37 components: - rot: -1.5707963267948966 rad @@ -5247,16 +5501,18 @@ entities: type: Transform - devices: - 281 - - 5329 - - 5332 - - 5333 - - 5334 - - 5313 - - 5314 - - 6971 - - 6883 - - 5413 + - 5322 + - 5325 + - 5326 + - 5327 + - 5306 + - 5307 + - 6964 + - 6876 + - 5406 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 38 components: - rot: 1.5707963267948966 rad @@ -5264,40 +5520,46 @@ entities: parent: 2 type: Transform - devices: - - 5335 - - 5336 + - 5328 + - 5329 - 271 - - 5354 - - 5392 - - 6947 - - 6863 - - 6953 - - 6865 + - 5347 + - 5385 + - 6940 + - 6856 + - 6946 + - 6858 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 39 components: - pos: -19.5,6.5 parent: 2 type: Transform - devices: - - 5393 + - 5386 - 297 - - 5395 - - 6891 - - 6977 + - 5388 + - 6884 + - 6970 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 40 components: - pos: -24.5,11.5 parent: 2 type: Transform - devices: - - 5394 - - 5393 - - 6976 - - 253 - - 6872 + - 5387 + - 5386 + - 6969 + - 253 + - 6865 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 41 components: - rot: -1.5707963267948966 rad @@ -5306,29 +5568,33 @@ entities: type: Transform - devices: - 299 - - 5398 - - 5399 - - 5400 - - 5411 - - 5429 - - 5401 - - 5402 - - 5403 + - 5391 + - 5392 + - 5393 + - 5404 + - 5422 + - 5394 + - 5395 + - 5396 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 42 components: - pos: -15.5,-5.5 parent: 2 type: Transform - devices: - - 5396 - - 5397 + - 5389 + - 5390 - 298 - - 6846 - - 6944 - - 5287 - - 5411 + - 6839 + - 6937 + - 5280 + - 5404 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 43 components: - rot: -1.5707963267948966 rad @@ -5336,12 +5602,14 @@ entities: parent: 2 type: Transform - devices: - - 5280 - - 5279 + - 5273 + - 5272 - 300 - - 6896 - - 6979 + - 6889 + - 6972 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 44 components: - rot: -1.5707963267948966 rad @@ -5350,40 +5618,46 @@ entities: type: Transform - devices: - 301 - - 5410 - - 5409 - - 5407 - - 5427 - - 5408 + - 5403 + - 5402 + - 5400 + - 5420 + - 5401 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 45 components: - pos: -22.5,-14.5 parent: 2 type: Transform - devices: - - 5419 - - 5418 + - 5412 + - 5411 - 302 - - 6898 - - 6985 - - 5371 - - 5298 + - 6891 + - 6978 + - 5364 + - 5291 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 46 components: - pos: -18.5,-10.5 parent: 2 type: Transform - devices: - - 5419 - - 5418 + - 5412 + - 5411 - 272 - - 5391 - - 5390 - - 6945 - - 6854 + - 5384 + - 5383 + - 6938 + - 6847 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 47 components: - rot: 1.5707963267948966 rad @@ -5391,11 +5665,13 @@ entities: parent: 2 type: Transform - devices: - - 5294 - - 5326 - - 6887 - - 6975 + - 5287 + - 5319 + - 6880 + - 6968 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 48 components: - rot: -1.5707963267948966 rad @@ -5403,14 +5679,16 @@ entities: parent: 2 type: Transform - devices: - - 5288 - - 5271 - - 5272 - - 5420 + - 5281 + - 5264 + - 5265 + - 5413 - 303 - - 6905 - - 6991 + - 6898 + - 6984 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 49 components: - rot: 1.5707963267948966 rad @@ -5418,16 +5696,18 @@ entities: parent: 2 type: Transform - devices: - - 5282 - - 5421 + - 5275 + - 5414 - 284 - - 5310 - - 5311 - - 5312 - - 5373 - - 6844 - - 6942 + - 5303 + - 5304 + - 5305 + - 5366 + - 6837 + - 6935 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 50 components: - rot: 1.5707963267948966 rad @@ -5435,21 +5715,23 @@ entities: parent: 2 type: Transform - devices: - - 5327 - - 5328 - - 5297 - - 5422 - - 5288 - - 5271 - - 5347 - - 5346 - - 5303 - - 5302 - - 5301 + - 5320 + - 5321 + - 5290 + - 5415 + - 5281 + - 5264 + - 5340 + - 5339 + - 5296 + - 5295 + - 5294 - 256 - - 6933 - - 6841 + - 6926 + - 6834 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 51 components: - rot: -1.5707963267948966 rad @@ -5457,13 +5739,15 @@ entities: parent: 2 type: Transform - devices: - - 5405 - - 5406 + - 5398 + - 5399 - 266 - - 6836 - - 6926 - - 5290 + - 6829 + - 6919 + - 5283 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 52 components: - rot: 1.5707963267948966 rad @@ -5473,6 +5757,8 @@ entities: - devices: - 306 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 53 components: - rot: -1.5707963267948966 rad @@ -5481,10 +5767,12 @@ entities: type: Transform - devices: - 307 - - 5423 - - 6881 - - 6927 + - 5416 + - 6874 + - 6920 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 54 components: - rot: 1.5707963267948966 rad @@ -5492,125 +5780,124 @@ entities: parent: 2 type: Transform - devices: - - 5299 - - 5353 - - 5343 - - 6874 - - 6964 - - 5296 - - 5423 + - 5292 + - 5346 + - 5336 + - 6867 + - 6957 + - 5289 + - 5416 - 255 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 55 components: - pos: -10.5,41.5 parent: 2 type: Transform - devices: - - 6873 - - 6997 - - 5292 - - 5322 - - 5323 + - 6866 + - 6990 + - 5285 + - 5315 + - 5316 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 56 components: - pos: -8.5,48.5 parent: 2 type: Transform - devices: - - 6868 - - 6980 - - 5322 - - 5323 + - 6861 + - 6973 + - 5315 + - 5316 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 57 components: - pos: 13.5,34.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 311 - type: DeviceNetwork - devices: - 311 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 58 components: - pos: 6.5,36.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 308 - type: DeviceNetwork - devices: - 308 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 59 components: - rot: 3.141592653589793 rad pos: 9.5,27.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 5430 - - 5265 - type: DeviceNetwork - devices: - - 5265 - - 5275 - - 5274 - - 7001 - - 6917 + - 5258 + - 5268 + - 5267 + - 6994 + - 6910 - 310 - - 5430 + - 5423 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 60 components: - rot: 3.141592653589793 rad pos: -1.5,18.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 5276 - - 5266 - type: DeviceNetwork - devices: - - 6931 - - 6835 - - 5431 - - 5432 - - 5433 - - 5434 - - 5266 - - 5276 + - 6924 + - 6828 + - 5424 + - 5425 + - 5426 + - 5427 + - 5259 + - 5269 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - uid: 61 components: - pos: 14.5,1.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 315 - type: DeviceNetwork - devices: - - 6913 - - 6919 + - 6906 + - 6912 - 312 - - 6922 - - 6832 - - 313 - 6915 - - 6920 + - 6825 + - 313 + - 6908 + - 6913 + - 6907 - 6914 - - 6921 - - 5286 - - 5437 - - 5438 - - 5439 + - 5279 + - 5430 + - 5431 + - 5432 - 314 - 315 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - proto: AirCanister entities: - uid: 62 @@ -5618,6 +5905,8 @@ entities: - pos: -37.5,-27.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: Airlock entities: - uid: 63 @@ -5636,7 +5925,7 @@ entities: parent: 2 type: Transform - links: - - 8683 + - 8674 type: DeviceLinkSink - uid: 66 components: @@ -5659,7 +5948,7 @@ entities: parent: 2 type: Transform - links: - - 8682 + - 8673 type: DeviceLinkSink - uid: 70 components: @@ -5667,7 +5956,7 @@ entities: parent: 2 type: Transform - links: - - 8681 + - 8672 type: DeviceLinkSink - proto: AirlockArmoryGlassLocked entities: @@ -5723,78 +6012,29 @@ entities: - pos: -6.5,-10.5 parent: 2 type: Transform -- proto: AirlockBrigGlassLocked - entities: - - uid: 80 - components: - - pos: -13.5,-7.5 - parent: 2 - type: Transform - - uid: 81 - components: - - pos: 9.5,-12.5 - parent: 2 - type: Transform - - uid: 82 - components: - - pos: 6.5,-11.5 - parent: 2 - type: Transform - - uid: 83 - components: - - pos: 5.5,-23.5 - parent: 2 - type: Transform - - uid: 84 - components: - - pos: 9.5,-11.5 - parent: 2 - type: Transform - - uid: 85 - components: - - pos: 6.5,-12.5 - parent: 2 - type: Transform - - uid: 86 - components: - - pos: 9.5,-25.5 - parent: 2 - type: Transform - - uid: 87 - components: - - pos: -23.5,-25.5 - parent: 2 - type: Transform -- proto: AirlockBrigLocked - entities: - - uid: 88 - components: - - pos: -26.5,-28.5 - parent: 2 - type: Transform - proto: AirlockCaptainGlassLocked entities: - - uid: 89 + - uid: 80 components: - pos: -6.5,-20.5 parent: 2 type: Transform - proto: AirlockCaptainLocked entities: - - uid: 90 + - uid: 81 components: - pos: -8.5,-27.5 parent: 2 type: Transform - proto: AirlockCargoGlass entities: - - uid: 91 + - uid: 82 components: - rot: -1.5707963267948966 rad pos: 5.5,0.5 parent: 2 type: Transform - - uid: 92 + - uid: 83 components: - rot: -1.5707963267948966 rad pos: 5.5,-0.5 @@ -5802,277 +6042,277 @@ entities: type: Transform - proto: AirlockCargoLocked entities: - - uid: 93 + - uid: 84 components: - pos: 21.5,1.5 parent: 2 type: Transform - - uid: 94 + - uid: 85 components: - pos: 10.5,2.5 parent: 2 type: Transform - proto: AirlockChapelLocked entities: - - uid: 95 + - uid: 86 components: - pos: 4.5,22.5 parent: 2 type: Transform - - uid: 96 + - uid: 87 components: - pos: 1.5,20.5 parent: 2 type: Transform -- proto: AirlockChemistryLocked +- proto: AirlockChemistryGlassLocked entities: - - uid: 97 + - uid: 88 components: - pos: -17.5,13.5 parent: 2 type: Transform - proto: AirlockChiefEngineerGlassLocked entities: - - uid: 98 + - uid: 89 components: - pos: 17.5,13.5 parent: 2 type: Transform - proto: AirlockChiefEngineerLocked entities: - - uid: 99 + - uid: 90 components: - pos: 22.5,13.5 parent: 2 type: Transform - - uid: 100 + - uid: 91 components: - pos: 10.5,22.5 parent: 2 type: Transform - proto: AirlockChiefMedicalOfficerGlassLocked entities: - - uid: 101 + - uid: 92 components: - pos: -18.5,15.5 parent: 2 type: Transform - proto: AirlockChiefMedicalOfficerLocked entities: - - uid: 102 + - uid: 93 components: - pos: -19.5,20.5 parent: 2 type: Transform - proto: AirlockCommandGlassLocked entities: - - uid: 103 + - uid: 94 components: - pos: -9.5,-18.5 parent: 2 type: Transform - - uid: 104 + - uid: 95 components: - pos: -4.5,-18.5 parent: 2 type: Transform - - uid: 105 + - uid: 96 components: - pos: 3.5,-18.5 parent: 2 type: Transform - - uid: 106 + - uid: 97 components: - pos: -6.5,41.5 parent: 2 type: Transform - - uid: 107 + - uid: 98 components: - pos: -2.5,-25.5 parent: 2 type: Transform - - uid: 108 + - uid: 99 components: - pos: 1.5,-25.5 parent: 2 type: Transform - - uid: 109 + - uid: 100 components: - pos: -8.5,41.5 parent: 2 type: Transform - - uid: 110 + - uid: 101 components: - pos: 0.5,-6.5 parent: 2 type: Transform - proto: AirlockCommandLocked entities: - - uid: 111 + - uid: 102 components: - pos: 20.5,19.5 parent: 2 type: Transform - - uid: 112 + - uid: 103 components: - pos: -3.5,40.5 parent: 2 type: Transform - proto: AirlockDetectiveLocked entities: - - uid: 113 + - uid: 104 components: - pos: -21.5,-18.5 parent: 2 type: Transform - proto: AirlockEngineeringGlassLocked entities: - - uid: 114 + - uid: 105 components: - pos: 9.5,16.5 parent: 2 type: Transform - - uid: 115 + - uid: 106 components: - pos: 10.5,14.5 parent: 2 type: Transform - - uid: 116 + - uid: 107 components: - pos: 11.5,14.5 parent: 2 type: Transform - - uid: 117 + - uid: 108 components: - pos: 22.5,19.5 parent: 2 type: Transform - - uid: 118 + - uid: 109 components: - pos: 7.5,27.5 parent: 2 type: Transform - - uid: 119 + - uid: 110 components: - pos: 7.5,22.5 parent: 2 type: Transform - proto: AirlockEngineeringLocked entities: - - uid: 120 + - uid: 111 components: - pos: -14.5,26.5 parent: 2 type: Transform - - uid: 121 + - uid: 112 components: - pos: -15.5,1.5 parent: 2 type: Transform - - uid: 122 + - uid: 113 components: - pos: -28.5,24.5 parent: 2 type: Transform - - uid: 123 + - uid: 114 components: - pos: -8.5,4.5 parent: 2 type: Transform - - uid: 124 + - uid: 115 components: - pos: -4.5,-13.5 parent: 2 type: Transform - - uid: 125 + - uid: 116 components: - pos: -21.5,26.5 parent: 2 type: Transform - - uid: 126 + - uid: 117 components: - pos: 34.5,16.5 parent: 2 type: Transform - - uid: 127 + - uid: 118 components: - pos: 21.5,-11.5 parent: 2 type: Transform - proto: AirlockExternalGlass entities: - - uid: 128 + - uid: 119 components: - pos: -31.5,1.5 parent: 2 type: Transform - - uid: 129 + - uid: 120 components: - pos: -31.5,-8.5 parent: 2 type: Transform - - uid: 130 + - uid: 121 components: - pos: -31.5,-6.5 parent: 2 type: Transform - - uid: 131 + - uid: 122 components: - pos: -31.5,-0.5 parent: 2 type: Transform - - uid: 132 + - uid: 123 components: - pos: -20.5,29.5 parent: 2 type: Transform - - uid: 133 + - uid: 124 components: - pos: -21.5,31.5 parent: 2 type: Transform - proto: AirlockExternalGlassAtmosphericsLocked entities: - - uid: 134 + - uid: 125 components: - rot: -1.5707963267948966 rad pos: 13.5,35.5 parent: 2 type: Transform - links: - - 142 + - 133 type: DeviceLinkSink - linkedPorts: - 142: + 133: - DoorStatus: DoorBolt type: DeviceLinkSource - proto: AirlockExternalGlassCargoLocked entities: - - uid: 135 + - uid: 126 components: - rot: -1.5707963267948966 rad pos: 29.5,-0.5 parent: 2 type: Transform - - uid: 136 + - uid: 127 components: - rot: 1.5707963267948966 rad pos: 29.5,-7.5 parent: 2 type: Transform - - uid: 137 + - uid: 128 components: - rot: -1.5707963267948966 rad pos: 29.5,1.5 parent: 2 type: Transform - - uid: 138 + - uid: 129 components: - rot: 1.5707963267948966 rad pos: 29.5,-5.5 parent: 2 type: Transform - - uid: 139 + - uid: 130 components: - rot: 1.5707963267948966 rad pos: 27.5,-4.5 @@ -6080,13 +6320,13 @@ entities: type: Transform - proto: AirlockExternalGlassEasyPry entities: - - uid: 140 + - uid: 131 components: - rot: -1.5707963267948966 rad pos: -29.5,7.5 parent: 2 type: Transform - - uid: 141 + - uid: 132 components: - rot: -1.5707963267948966 rad pos: -29.5,14.5 @@ -6094,56 +6334,56 @@ entities: type: Transform - proto: AirlockExternalGlassEngineeringLocked entities: - - uid: 142 + - uid: 133 components: - rot: -1.5707963267948966 rad pos: 11.5,35.5 parent: 2 type: Transform - links: + - 125 - 134 - - 143 type: DeviceLinkSink - linkedPorts: - 143: - - DoorStatus: DoorBolt 134: - DoorStatus: DoorBolt + 125: + - DoorStatus: DoorBolt type: DeviceLinkSource - - uid: 143 + - uid: 134 components: - rot: -1.5707963267948966 rad pos: 12.5,36.5 parent: 2 type: Transform - links: - - 142 + - 133 type: DeviceLinkSink - linkedPorts: - 142: + 133: - DoorStatus: DoorBolt type: DeviceLinkSource - proto: AirlockExternalGlassLocked entities: - - uid: 144 + - uid: 135 components: - pos: 38.5,15.5 parent: 2 type: Transform - - uid: 145 + - uid: 136 components: - pos: 42.5,16.5 parent: 2 type: Transform - proto: AirlockExternalGlassShuttleArrivals entities: - - uid: 146 + - uid: 137 components: - rot: -1.5707963267948966 rad pos: -32.5,14.5 parent: 2 type: Transform - - uid: 147 + - uid: 138 components: - rot: -1.5707963267948966 rad pos: -32.5,7.5 @@ -6151,25 +6391,25 @@ entities: type: Transform - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - - uid: 148 + - uid: 139 components: - rot: -1.5707963267948966 rad pos: -43.5,-8.5 parent: 2 type: Transform - - uid: 149 + - uid: 140 components: - rot: -1.5707963267948966 rad pos: -43.5,-6.5 parent: 2 type: Transform - - uid: 150 + - uid: 141 components: - rot: -1.5707963267948966 rad pos: -43.5,1.5 parent: 2 type: Transform - - uid: 151 + - uid: 142 components: - rot: -1.5707963267948966 rad pos: -43.5,-0.5 @@ -6177,7 +6417,7 @@ entities: type: Transform - proto: AirlockExternalGlassShuttleEscape entities: - - uid: 152 + - uid: 143 components: - rot: 1.5707963267948966 rad pos: -28.5,34.5 @@ -6185,13 +6425,13 @@ entities: type: Transform - proto: AirlockExternalGlassShuttleLocked entities: - - uid: 153 + - uid: 144 components: - rot: 1.5707963267948966 rad pos: 32.5,-0.5 parent: 2 type: Transform - - uid: 154 + - uid: 145 components: - rot: 1.5707963267948966 rad pos: 32.5,1.5 @@ -6199,84 +6439,84 @@ entities: type: Transform - proto: AirlockExternalLocked entities: - - uid: 155 + - uid: 146 components: - pos: -18.5,-25.5 parent: 2 type: Transform - - uid: 156 + - uid: 147 components: - pos: -22.5,-23.5 parent: 2 type: Transform - proto: AirlockFreezerKitchenHydroLocked entities: - - uid: 157 + - uid: 148 components: - pos: -4.5,6.5 parent: 2 type: Transform - - uid: 158 + - uid: 149 components: - pos: -5.5,1.5 parent: 2 type: Transform - proto: AirlockGlass entities: - - uid: 159 + - uid: 150 components: - pos: -13.5,-12.5 parent: 2 type: Transform - - uid: 160 + - uid: 151 components: - pos: -13.5,-11.5 parent: 2 type: Transform - - uid: 161 + - uid: 152 components: - pos: -14.5,-2.5 parent: 2 type: Transform - - uid: 162 + - uid: 153 components: - pos: -6.5,15.5 parent: 2 type: Transform - - uid: 163 + - uid: 154 components: - pos: -7.5,15.5 parent: 2 type: Transform - - uid: 164 + - uid: 155 components: - pos: -14.5,-3.5 parent: 2 type: Transform - - uid: 165 + - uid: 156 components: - pos: -14.5,-4.5 parent: 2 type: Transform - - uid: 166 + - uid: 157 components: - pos: -1.5,14.5 parent: 2 type: Transform - - uid: 167 + - uid: 158 components: - pos: 2.5,14.5 parent: 2 type: Transform - proto: AirlockGlassShuttle entities: - - uid: 168 + - uid: 159 components: - rot: 1.5707963267948966 rad pos: 44.5,-15.5 parent: 2 type: Transform - - uid: 169 + - uid: 160 components: - rot: 1.5707963267948966 rad pos: 44.5,-17.5 @@ -6284,71 +6524,85 @@ entities: type: Transform - proto: AirlockHeadOfPersonnelLocked entities: - - uid: 170 + - uid: 161 components: - pos: 10.5,-5.5 parent: 2 type: Transform - - uid: 171 + - uid: 162 components: - pos: 5.5,-6.5 parent: 2 type: Transform - proto: AirlockHeadOfSecurityGlassLocked entities: - - uid: 172 + - uid: 163 components: - pos: 16.5,-19.5 parent: 2 type: Transform - proto: AirlockHeadOfSecurityLocked entities: - - uid: 173 + - uid: 164 components: - pos: 21.5,-20.5 parent: 2 type: Transform - proto: AirlockHydroponicsLocked entities: - - uid: 174 + - uid: 165 components: - pos: -10.5,10.5 parent: 2 type: Transform - proto: AirlockJanitorLocked entities: - - uid: 175 + - uid: 166 components: - pos: 3.5,10.5 parent: 2 type: Transform - proto: AirlockKitchenLocked entities: - - uid: 176 + - uid: 167 components: - pos: -4.5,-0.5 parent: 2 type: Transform +- proto: AirlockLawyerGlassLocked + entities: + - uid: 168 + components: + - pos: -23.5,-25.5 + parent: 2 + type: Transform +- proto: AirlockLawyerLocked + entities: + - uid: 169 + components: + - pos: -26.5,-28.5 + parent: 2 + type: Transform - proto: AirlockMailLocked entities: - - uid: 177 + - uid: 170 components: - pos: 8.5,3.5 parent: 2 type: Transform - - uid: 178 + - uid: 171 components: - pos: 11.5,3.5 parent: 2 type: Transform - - uid: 179 + - uid: 172 components: - pos: 9.5,6.5 parent: 2 type: Transform - proto: AirlockMaint entities: - - uid: 180 + - uid: 173 components: - rot: -1.5707963267948966 rad pos: 11.5,11.5 @@ -6356,76 +6610,76 @@ entities: type: Transform - proto: AirlockMaintAtmoLocked entities: - - uid: 181 + - uid: 174 components: - pos: 30.5,27.5 parent: 2 type: Transform - proto: AirlockMaintBarLocked entities: - - uid: 182 + - uid: 175 components: - pos: -7.5,-13.5 parent: 2 type: Transform - proto: AirlockMaintCargoLocked entities: - - uid: 183 + - uid: 176 components: - pos: 15.5,3.5 parent: 2 type: Transform - - uid: 184 + - uid: 177 components: - pos: 20.5,-3.5 parent: 2 type: Transform - proto: AirlockMaintCommandLocked entities: - - uid: 185 + - uid: 178 components: - pos: -1.5,-16.5 parent: 2 type: Transform - - uid: 186 + - uid: 179 components: - pos: -7.5,-16.5 parent: 2 type: Transform - proto: AirlockMaintEngiLocked entities: - - uid: 187 + - uid: 180 components: - pos: 23.5,17.5 parent: 2 type: Transform - proto: AirlockMaintGlass entities: - - uid: 188 + - uid: 181 components: - rot: 3.141592653589793 rad pos: 30.5,21.5 parent: 2 type: Transform - - uid: 189 + - uid: 182 components: - pos: -26.5,26.5 parent: 2 type: Transform - - uid: 190 + - uid: 183 components: - pos: -27.5,26.5 parent: 2 type: Transform - proto: AirlockMaintGlassLocked entities: - - uid: 191 + - uid: 184 components: - rot: -1.5707963267948966 rad pos: 30.5,10.5 parent: 2 type: Transform - - uid: 192 + - uid: 185 components: - rot: -1.5707963267948966 rad pos: 22.5,10.5 @@ -6433,169 +6687,169 @@ entities: type: Transform - proto: AirlockMaintHOPLocked entities: - - uid: 193 + - uid: 186 components: - pos: 8.5,-7.5 parent: 2 type: Transform - proto: AirlockMaintHydroLocked entities: - - uid: 194 + - uid: 187 components: - pos: -9.5,7.5 parent: 2 type: Transform - proto: AirlockMaintJanitorLocked entities: - - uid: 195 + - uid: 188 components: - pos: 9.5,10.5 parent: 2 type: Transform - proto: AirlockMaintKitchenLocked entities: - - uid: 196 + - uid: 189 components: - pos: -8.5,2.5 parent: 2 type: Transform - proto: AirlockMaintLocked entities: - - uid: 197 + - uid: 190 components: - pos: 2.5,-15.5 parent: 2 type: Transform - - uid: 198 + - uid: 191 components: - pos: -10.5,-15.5 parent: 2 type: Transform - - uid: 199 + - uid: 192 components: - pos: -26.5,15.5 parent: 2 type: Transform - - uid: 200 + - uid: 193 components: - pos: -22.5,1.5 parent: 2 type: Transform - - uid: 201 + - uid: 194 components: - pos: -28.5,22.5 parent: 2 type: Transform - - uid: 202 + - uid: 195 components: - pos: -10.5,5.5 parent: 2 type: Transform - - uid: 203 + - uid: 196 components: - pos: -9.5,-0.5 parent: 2 type: Transform - - uid: 204 + - uid: 197 components: - pos: 6.5,-8.5 parent: 2 type: Transform - - uid: 205 + - uid: 198 components: - pos: 15.5,9.5 parent: 2 type: Transform - - uid: 206 + - uid: 199 components: - pos: -10.5,18.5 parent: 2 type: Transform - - uid: 207 + - uid: 200 components: - pos: -12.5,14.5 parent: 2 type: Transform - - uid: 208 + - uid: 201 components: - pos: -31.5,28.5 parent: 2 type: Transform - - uid: 209 + - uid: 202 components: - pos: -16.5,-1.5 parent: 2 type: Transform - - uid: 210 + - uid: 203 components: - pos: -13.5,-0.5 parent: 2 type: Transform - - uid: 211 + - uid: 204 components: - pos: 20.5,-8.5 parent: 2 type: Transform - - uid: 212 + - uid: 205 components: - pos: 26.5,9.5 parent: 2 type: Transform - proto: AirlockMaintMedLocked entities: - - uid: 213 + - uid: 206 components: - pos: -16.5,2.5 parent: 2 type: Transform - - uid: 214 + - uid: 207 components: - pos: -20.5,2.5 parent: 2 type: Transform - proto: AirlockMaintRnDLocked entities: - - uid: 215 + - uid: 208 components: - pos: 0.5,29.5 parent: 2 type: Transform - proto: AirlockMaintRnDMedLocked entities: - - uid: 216 + - uid: 209 components: - pos: -24.5,18.5 parent: 2 type: Transform - proto: AirlockMaintSalvageLocked entities: - - uid: 217 + - uid: 210 components: - pos: 23.5,-4.5 parent: 2 type: Transform - - uid: 218 + - uid: 211 components: - pos: 28.5,4.5 parent: 2 type: Transform - proto: AirlockMaintSecLocked entities: - - uid: 219 + - uid: 212 components: - pos: 12.5,-11.5 parent: 2 type: Transform - proto: AirlockMaintTheatreLocked entities: - - uid: 220 + - uid: 213 components: - pos: -0.5,-14.5 parent: 2 type: Transform - proto: AirlockMantisLocked entities: - - uid: 221 + - uid: 214 components: - rot: -1.5707963267948966 rad pos: -11.5,25.5 @@ -6603,58 +6857,66 @@ entities: type: Transform - proto: AirlockMedicalGlass entities: - - uid: 222 + - uid: 215 components: - pos: -14.5,8.5 parent: 2 type: Transform - - uid: 223 + - uid: 216 components: - pos: -14.5,9.5 parent: 2 type: Transform - proto: AirlockMedicalGlassLocked entities: - - uid: 224 + - uid: 217 components: - pos: -20.5,13.5 parent: 2 type: Transform - - uid: 225 + - uid: 218 components: - pos: -19.5,10.5 parent: 2 type: Transform - - uid: 226 + - uid: 219 components: - pos: -18.5,10.5 parent: 2 type: Transform - - uid: 227 + - uid: 220 components: - pos: -16.5,6.5 parent: 2 type: Transform - - uid: 228 + - uid: 221 components: - pos: -15.5,6.5 parent: 2 type: Transform - - uid: 229 + - uid: 222 components: - pos: -20.5,8.5 parent: 2 type: Transform - proto: AirlockMedicalLocked entities: - - uid: 230 + - uid: 223 components: - pos: -22.5,15.5 parent: 2 type: Transform +- proto: AirlockMining + entities: + - uid: 7541 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-30.5 + parent: 2 + type: Transform - proto: AirlockQuartermasterGlassLocked entities: - - uid: 231 + - uid: 224 components: - rot: 1.5707963267948966 rad pos: 16.5,-3.5 @@ -6662,41 +6924,41 @@ entities: type: Transform - proto: AirlockResearchDirectorLocked entities: - - uid: 232 + - uid: 225 components: - pos: -0.5,34.5 parent: 2 type: Transform - proto: AirlockSalvageGlassLocked entities: - - uid: 233 + - uid: 226 components: - pos: 22.5,-0.5 parent: 2 type: Transform - proto: AirlockScienceGlassLocked entities: - - uid: 234 + - uid: 227 components: - pos: -11.5,31.5 parent: 2 type: Transform - - uid: 235 + - uid: 228 components: - pos: -15.5,32.5 parent: 2 type: Transform - - uid: 236 + - uid: 229 components: - pos: -15.5,36.5 parent: 2 type: Transform - - uid: 237 + - uid: 230 components: - pos: -7.5,37.5 parent: 2 type: Transform - - uid: 238 + - uid: 231 components: - rot: 1.5707963267948966 rad pos: -3.5,21.5 @@ -6704,36 +6966,36 @@ entities: type: Transform - proto: AirlockScienceLocked entities: - - uid: 239 + - uid: 232 components: - pos: -3.5,24.5 parent: 2 type: Transform - - uid: 240 + - uid: 233 components: - pos: -16.5,31.5 parent: 2 type: Transform - - uid: 241 + - uid: 234 components: - pos: 0.5,24.5 parent: 2 type: Transform - - uid: 242 + - uid: 235 components: - pos: -2.5,23.5 parent: 2 type: Transform - proto: AirlockSecurity entities: - - uid: 243 + - uid: 236 components: - pos: 17.5,-24.5 parent: 2 type: Transform - proto: AirlockSecurityGlassLocked entities: - - uid: 244 + - uid: 237 components: - pos: 14.5,-23.5 parent: 2 @@ -6741,21 +7003,58 @@ entities: - links: - 1611 type: DeviceLinkSink - - uid: 245 + - uid: 238 components: - pos: 14.5,-20.5 parent: 2 type: Transform - - uid: 246 + - uid: 239 components: - pos: 9.5,-15.5 parent: 2 type: Transform - - uid: 247 + - uid: 240 components: - pos: 10.5,-23.5 parent: 2 type: Transform +- proto: AirlockSecurityLawyerGlassLocked + entities: + - uid: 241 + components: + - pos: -13.5,-7.5 + parent: 2 + type: Transform + - uid: 242 + components: + - pos: 9.5,-12.5 + parent: 2 + type: Transform + - uid: 243 + components: + - pos: 6.5,-11.5 + parent: 2 + type: Transform + - uid: 244 + components: + - pos: 5.5,-23.5 + parent: 2 + type: Transform + - uid: 245 + components: + - pos: 9.5,-11.5 + parent: 2 + type: Transform + - uid: 246 + components: + - pos: 6.5,-12.5 + parent: 2 + type: Transform + - uid: 247 + components: + - pos: 9.5,-25.5 + parent: 2 + type: Transform - proto: AirlockSecurityLocked entities: - uid: 248 @@ -6872,9 +7171,6 @@ entities: pos: -11.5,26.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 36 - type: DeviceNetwork - uid: 268 components: - pos: -20.5,22.5 @@ -7024,9 +7320,6 @@ entities: - pos: 14.5,-22.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 32 - type: DeviceNetwork - uid: 296 components: - rot: -1.5707963267948966 rad @@ -7098,9 +7391,6 @@ entities: pos: 11.5,38.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 58 - type: DeviceNetwork - uid: 309 components: - rot: 3.141592653589793 rad @@ -7118,9 +7408,6 @@ entities: - pos: 15.5,36.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 57 - type: DeviceNetwork - uid: 312 components: - pos: 8.5,0.5 @@ -7142,9 +7429,6 @@ entities: pos: 24.5,-2.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 61 - type: DeviceNetwork - proto: AltarSpawner entities: - uid: 316 @@ -9452,22 +9736,22 @@ entities: type: Transform - uid: 770 components: - - pos: 33.5,-32.5 + - pos: 40.5,-18.5 parent: 2 type: Transform - uid: 771 components: - - pos: 34.5,-34.5 + - pos: 40.5,-16.5 parent: 2 type: Transform - uid: 772 components: - - pos: 34.5,-33.5 + - pos: 40.5,-15.5 parent: 2 type: Transform - uid: 773 components: - - pos: 34.5,-32.5 + - pos: 29.5,-24.5 parent: 2 type: Transform - uid: 774 @@ -9510,16 +9794,6 @@ entities: - pos: 33.5,-30.5 parent: 2 type: Transform - - uid: 782 - components: - - pos: 34.5,-31.5 - parent: 2 - type: Transform - - uid: 783 - components: - - pos: 34.5,-30.5 - parent: 2 - type: Transform - uid: 784 components: - pos: 32.5,-31.5 @@ -9635,11 +9909,6 @@ entities: - pos: 33.5,-27.5 parent: 2 type: Transform - - uid: 807 - components: - - pos: 32.5,-26.5 - parent: 2 - type: Transform - uid: 808 components: - pos: 32.5,-27.5 @@ -9790,26 +10059,11 @@ entities: - pos: 33.5,-22.5 parent: 2 type: Transform - - uid: 838 - components: - - pos: 33.5,-21.5 - parent: 2 - type: Transform - uid: 839 components: - pos: 33.5,-20.5 parent: 2 type: Transform - - uid: 840 - components: - - pos: 34.5,-21.5 - parent: 2 - type: Transform - - uid: 841 - components: - - pos: 34.5,-22.5 - parent: 2 - type: Transform - uid: 842 components: - pos: 31.5,-23.5 @@ -9884,11 +10138,6 @@ entities: pos: 28.5,-16.5 parent: 2 type: Transform - - uid: 856 - components: - - pos: 35.5,-20.5 - parent: 2 - type: Transform - uid: 857 components: - pos: 30.5,-19.5 @@ -9936,7 +10185,7 @@ entities: type: Transform - uid: 866 components: - - pos: 34.5,-19.5 + - pos: 40.5,-19.5 parent: 2 type: Transform - uid: 867 @@ -9949,14 +10198,9 @@ entities: - pos: 34.5,-18.5 parent: 2 type: Transform - - uid: 869 - components: - - pos: 35.5,-18.5 - parent: 2 - type: Transform - uid: 870 components: - - pos: 37.5,-17.5 + - pos: 30.5,-23.5 parent: 2 type: Transform - uid: 871 @@ -9984,11 +10228,6 @@ entities: - pos: 37.5,-20.5 parent: 2 type: Transform - - uid: 876 - components: - - pos: 35.5,-19.5 - parent: 2 - type: Transform - uid: 877 components: - pos: 39.5,-21.5 @@ -10009,11 +10248,6 @@ entities: - pos: 40.5,-20.5 parent: 2 type: Transform - - uid: 881 - components: - - pos: 37.5,-16.5 - parent: 2 - type: Transform - uid: 882 components: - pos: 38.5,-16.5 @@ -10061,7 +10295,7 @@ entities: type: Transform - uid: 891 components: - - pos: 35.5,-11.5 + - pos: 29.5,-13.5 parent: 2 type: Transform - uid: 892 @@ -10071,7 +10305,7 @@ entities: type: Transform - uid: 893 components: - - pos: 35.5,-9.5 + - pos: 29.5,-12.5 parent: 2 type: Transform - uid: 894 @@ -10509,11 +10743,6 @@ entities: - pos: 32.5,-17.5 parent: 2 type: Transform - - uid: 981 - components: - - pos: 38.5,-17.5 - parent: 2 - type: Transform - uid: 982 components: - pos: 30.5,-18.5 @@ -10597,6 +10826,196 @@ entities: pos: 27.5,-15.5 parent: 2 type: Transform + - uid: 3772 + components: + - pos: 30.5,-11.5 + parent: 2 + type: Transform + - uid: 3773 + components: + - pos: 32.5,-12.5 + parent: 2 + type: Transform + - uid: 3775 + components: + - pos: 29.5,-15.5 + parent: 2 + type: Transform + - uid: 3778 + components: + - pos: 30.5,-13.5 + parent: 2 + type: Transform + - uid: 4202 + components: + - pos: 33.5,-12.5 + parent: 2 + type: Transform + - uid: 4216 + components: + - pos: 30.5,-14.5 + parent: 2 + type: Transform + - uid: 4223 + components: + - pos: 29.5,-14.5 + parent: 2 + type: Transform + - uid: 4224 + components: + - pos: 28.5,-14.5 + parent: 2 + type: Transform + - uid: 4225 + components: + - pos: 34.5,-12.5 + parent: 2 + type: Transform + - uid: 4226 + components: + - pos: 35.5,-12.5 + parent: 2 + type: Transform + - uid: 4227 + components: + - pos: 36.5,-12.5 + parent: 2 + type: Transform + - uid: 4229 + components: + - pos: 38.5,-12.5 + parent: 2 + type: Transform + - uid: 4230 + components: + - pos: 39.5,-12.5 + parent: 2 + type: Transform + - uid: 4231 + components: + - pos: 40.5,-12.5 + parent: 2 + type: Transform + - uid: 4269 + components: + - pos: 30.5,-10.5 + parent: 2 + type: Transform + - uid: 5184 + components: + - pos: 38.5,-10.5 + parent: 2 + type: Transform + - uid: 5186 + components: + - pos: 39.5,-10.5 + parent: 2 + type: Transform + - uid: 5187 + components: + - pos: 39.5,-11.5 + parent: 2 + type: Transform + - uid: 5188 + components: + - pos: 37.5,-8.5 + parent: 2 + type: Transform + - uid: 5189 + components: + - pos: 35.5,-8.5 + parent: 2 + type: Transform + - uid: 5190 + components: + - pos: 29.5,-11.5 + parent: 2 + type: Transform + - uid: 5191 + components: + - pos: 36.5,-8.5 + parent: 2 + type: Transform + - uid: 5192 + components: + - pos: 37.5,-9.5 + parent: 2 + type: Transform + - uid: 5193 + components: + - pos: 36.5,-9.5 + parent: 2 + type: Transform + - uid: 5195 + components: + - pos: 30.5,-9.5 + parent: 2 + type: Transform + - uid: 5196 + components: + - pos: 29.5,-9.5 + parent: 2 + type: Transform + - uid: 5197 + components: + - pos: 29.5,-10.5 + parent: 2 + type: Transform + - uid: 5198 + components: + - pos: 30.5,-8.5 + parent: 2 + type: Transform + - uid: 7645 + components: + - pos: 32.5,-15.5 + parent: 2 + type: Transform + - uid: 7646 + components: + - pos: 30.5,-15.5 + parent: 2 + type: Transform + - uid: 10688 + components: + - pos: 31.5,-15.5 + parent: 2 + type: Transform + - uid: 10859 + components: + - pos: 32.5,-16.5 + parent: 2 + type: Transform + - uid: 10861 + components: + - pos: 37.5,-15.5 + parent: 2 + type: Transform + - uid: 10862 + components: + - pos: 37.5,-16.5 + parent: 2 + type: Transform + - uid: 10863 + components: + - pos: 38.5,-17.5 + parent: 2 + type: Transform + - uid: 10864 + components: + - pos: 39.5,-17.5 + parent: 2 + type: Transform + - uid: 10865 + components: + - pos: 39.5,-18.5 + parent: 2 + type: Transform + - uid: 10866 + components: + - pos: 40.5,-17.5 + parent: 2 + type: Transform - proto: AsteroidRockMining entities: - uid: 998 @@ -13401,7 +13820,7 @@ entities: parent: 2 type: Transform - links: - - 8679 + - 8670 type: DeviceLinkSink - uid: 1541 components: @@ -13409,7 +13828,7 @@ entities: parent: 2 type: Transform - links: - - 8680 + - 8671 type: DeviceLinkSink - uid: 1542 components: @@ -13417,7 +13836,7 @@ entities: parent: 2 type: Transform - links: - - 8680 + - 8671 type: DeviceLinkSink - uid: 1543 components: @@ -13425,7 +13844,7 @@ entities: parent: 2 type: Transform - links: - - 8679 + - 8670 type: DeviceLinkSink - uid: 1544 components: @@ -13433,7 +13852,7 @@ entities: parent: 2 type: Transform - links: - - 8679 + - 8670 type: DeviceLinkSink - uid: 1545 components: @@ -13441,7 +13860,7 @@ entities: parent: 2 type: Transform - links: - - 8685 + - 8676 type: DeviceLinkSink - uid: 1546 components: @@ -13449,7 +13868,7 @@ entities: parent: 2 type: Transform - links: - - 8685 + - 8676 type: DeviceLinkSink - uid: 1547 components: @@ -13457,7 +13876,7 @@ entities: parent: 2 type: Transform - links: - - 8685 + - 8676 type: DeviceLinkSink - uid: 1548 components: @@ -13465,7 +13884,7 @@ entities: parent: 2 type: Transform - links: - - 8685 + - 8676 type: DeviceLinkSink - proto: BlastDoorOpen entities: @@ -13475,7 +13894,7 @@ entities: parent: 2 type: Transform - links: - - 8678 + - 8669 type: DeviceLinkSink - uid: 1550 components: @@ -13483,7 +13902,7 @@ entities: parent: 2 type: Transform - links: - - 8678 + - 8669 type: DeviceLinkSink - uid: 1551 components: @@ -13491,7 +13910,7 @@ entities: parent: 2 type: Transform - links: - - 8678 + - 8669 type: DeviceLinkSink - uid: 1552 components: @@ -13499,7 +13918,7 @@ entities: parent: 2 type: Transform - links: - - 8678 + - 8669 type: DeviceLinkSink - uid: 1553 components: @@ -13507,7 +13926,7 @@ entities: parent: 2 type: Transform - links: - - 8678 + - 8669 type: DeviceLinkSink - proto: BlockGameArcade entities: @@ -13542,7 +13961,7 @@ entities: entities: - uid: 1558 components: - - pos: -15.790929,14.6313305 + - pos: -24.31285,7.528866 parent: 2 type: Transform - proto: BookEngineersHandbook @@ -13588,7 +14007,7 @@ entities: entities: - uid: 1566 components: - - pos: -24.473717,7.5462623 + - pos: -24.75035,7.528866 parent: 2 type: Transform - proto: BookRandom @@ -13702,7 +14121,7 @@ entities: entities: - uid: 1586 components: - - pos: -0.5,4.5 + - pos: -0.3755088,5.643908 parent: 2 type: Transform - proto: BoxBeanbag @@ -13863,7 +14282,7 @@ entities: parent: 2 type: Transform - linkedPorts: - 244: + 237: - Timer: Open - Timer: AutoClose type: DeviceLinkSource @@ -19998,6 +20417,16 @@ entities: - pos: -9.5,-7.5 parent: 2 type: Transform + - uid: 10871 + components: + - pos: 35.5,-14.5 + parent: 2 + type: Transform + - uid: 10872 + components: + - pos: 35.5,-15.5 + parent: 2 + type: Transform - proto: CableApcStack entities: - uid: 2837 @@ -20362,11 +20791,6 @@ entities: - pos: 16.5,15.5 parent: 2 type: Transform - - uid: 2908 - components: - - pos: -20.5,50.5 - parent: 2 - type: Transform - uid: 2909 components: - pos: 12.5,13.5 @@ -20892,169 +21316,44 @@ entities: - pos: -16.5,24.5 parent: 2 type: Transform - - uid: 3014 - components: - - pos: -14.5,63.5 - parent: 2 - type: Transform - uid: 3015 components: - - pos: -20.5,61.5 - parent: 2 - type: Transform - - uid: 3016 - components: - - pos: -20.5,63.5 - parent: 2 - type: Transform - - uid: 3017 - components: - - pos: -20.5,62.5 + - pos: -24.5,56.5 parent: 2 type: Transform - uid: 3018 components: - - pos: -21.5,60.5 + - pos: -27.5,54.5 parent: 2 type: Transform - uid: 3019 - components: - - pos: -20.5,60.5 - parent: 2 - type: Transform - - uid: 3020 - components: - - pos: -20.5,41.5 - parent: 2 - type: Transform - - uid: 3021 - components: - - pos: -20.5,47.5 - parent: 2 - type: Transform - - uid: 3022 - components: - - pos: -20.5,45.5 - parent: 2 - type: Transform - - uid: 3023 components: - pos: -22.5,56.5 parent: 2 type: Transform - - uid: 3024 - components: - - pos: -23.5,53.5 - parent: 2 - type: Transform - - uid: 3025 - components: - - pos: -26.5,54.5 - parent: 2 - type: Transform - uid: 3026 components: - - pos: -22.5,60.5 - parent: 2 - type: Transform - - uid: 3027 - components: - - pos: -22.5,63.5 + - pos: -25.5,54.5 parent: 2 type: Transform - uid: 3028 components: - - pos: -26.5,61.5 - parent: 2 - type: Transform - - uid: 3029 - components: - - pos: -26.5,63.5 + - pos: -23.5,54.5 parent: 2 type: Transform - uid: 3030 components: - - pos: -18.5,54.5 - parent: 2 - type: Transform - - uid: 3031 - components: - - pos: -20.5,43.5 - parent: 2 - type: Transform - - uid: 3032 - components: - - pos: -21.5,53.5 - parent: 2 - type: Transform - - uid: 3033 - components: - - pos: -26.5,56.5 - parent: 2 - type: Transform - - uid: 3034 - components: - - pos: -20.5,57.5 - parent: 2 - type: Transform - - uid: 3035 - components: - - pos: -16.5,60.5 - parent: 2 - type: Transform - - uid: 3036 - components: - - pos: -24.5,61.5 - parent: 2 - type: Transform - - uid: 3037 - components: - - pos: -14.5,55.5 - parent: 2 - type: Transform - - uid: 3038 - components: - - pos: -26.5,62.5 - parent: 2 - type: Transform - - uid: 3039 - components: - - pos: -17.5,53.5 - parent: 2 - type: Transform - - uid: 3040 - components: - - pos: -16.5,56.5 + - pos: -25.5,52.5 parent: 2 type: Transform - uid: 3041 components: - - pos: -20.5,49.5 - parent: 2 - type: Transform - - uid: 3042 - components: - - pos: -16.5,63.5 + - pos: -28.5,58.5 parent: 2 type: Transform - uid: 3043 components: - - pos: -19.5,60.5 - parent: 2 - type: Transform - - uid: 3044 - components: - - pos: -25.5,60.5 - parent: 2 - type: Transform - - uid: 3045 - components: - - pos: -16.5,62.5 - parent: 2 - type: Transform - - uid: 3046 - components: - - pos: -23.5,60.5 + - pos: -27.5,56.5 parent: 2 type: Transform - uid: 3047 @@ -21069,57 +21368,17 @@ entities: type: Transform - uid: 3049 components: - - pos: -20.5,59.5 - parent: 2 - type: Transform - - uid: 3050 - components: - - pos: -20.5,64.5 - parent: 2 - type: Transform - - uid: 3051 - components: - - pos: -14.5,53.5 + - pos: -22.5,57.5 parent: 2 type: Transform - uid: 3052 components: - - pos: -24.5,60.5 - parent: 2 - type: Transform - - uid: 3053 - components: - - pos: -26.5,60.5 + - pos: -19.5,53.5 parent: 2 type: Transform - uid: 3054 components: - - pos: -20.5,55.5 - parent: 2 - type: Transform - - uid: 3055 - components: - - pos: -20.5,41.5 - parent: 2 - type: Transform - - uid: 3056 - components: - - pos: -18.5,62.5 - parent: 2 - type: Transform - - uid: 3057 - components: - - pos: -24.5,53.5 - parent: 2 - type: Transform - - uid: 3058 - components: - - pos: -24.5,54.5 - parent: 2 - type: Transform - - uid: 3059 - components: - - pos: -24.5,55.5 + - pos: -22.5,58.5 parent: 2 type: Transform - uid: 3060 @@ -21127,184 +21386,59 @@ entities: - pos: -21.5,30.5 parent: 2 type: Transform - - uid: 3061 - components: - - pos: -24.5,56.5 - parent: 2 - type: Transform - - uid: 3062 - components: - - pos: -20.5,40.5 - parent: 2 - type: Transform - - uid: 3063 - components: - - pos: -20.5,39.5 - parent: 2 - type: Transform - - uid: 3064 - components: - - pos: -20.5,38.5 - parent: 2 - type: Transform - - uid: 3065 - components: - - pos: -20.5,37.5 - parent: 2 - type: Transform - - uid: 3066 - components: - - pos: -20.5,36.5 - parent: 2 - type: Transform - - uid: 3067 - components: - - pos: -20.5,35.5 - parent: 2 - type: Transform - uid: 3068 components: - pos: -20.5,29.5 parent: 2 type: Transform - - uid: 3069 - components: - - pos: -16.5,61.5 - parent: 2 - type: Transform - uid: 3070 components: - - pos: -18.5,60.5 + - pos: -26.5,56.5 parent: 2 type: Transform - uid: 3071 components: - - pos: -20.5,56.5 - parent: 2 - type: Transform - - uid: 3072 - components: - - pos: -22.5,55.5 - parent: 2 - type: Transform - - uid: 3073 - components: - - pos: -15.5,60.5 - parent: 2 - type: Transform - - uid: 3074 - components: - - pos: -22.5,53.5 - parent: 2 - type: Transform - - uid: 3075 - components: - - pos: -28.5,53.5 - parent: 2 - type: Transform - - uid: 3076 - components: - - pos: -22.5,54.5 + - pos: -23.5,56.5 parent: 2 type: Transform - uid: 3077 components: - - pos: -18.5,61.5 + - pos: -25.5,56.5 parent: 2 type: Transform - uid: 3078 components: - - pos: -20.5,48.5 - parent: 2 - type: Transform - - uid: 3079 - components: - - pos: -18.5,63.5 - parent: 2 - type: Transform - - uid: 3080 - components: - - pos: -20.5,42.5 + - pos: -22.5,53.5 parent: 2 type: Transform - uid: 3081 components: - - pos: -28.5,60.5 - parent: 2 - type: Transform - - uid: 3082 - components: - - pos: -17.5,60.5 - parent: 2 - type: Transform - - uid: 3083 - components: - - pos: -24.5,62.5 + - pos: -23.5,52.5 parent: 2 type: Transform - uid: 3084 components: - - pos: -27.5,60.5 - parent: 2 - type: Transform - - uid: 3085 - components: - - pos: -15.5,53.5 + - pos: -24.5,52.5 parent: 2 type: Transform - uid: 3086 components: - - pos: -18.5,56.5 - parent: 2 - type: Transform - - uid: 3087 - components: - - pos: -13.5,53.5 - parent: 2 - type: Transform - - uid: 3088 - components: - - pos: -13.5,60.5 + - pos: -28.5,52.5 parent: 2 type: Transform - uid: 3089 components: - - pos: -18.5,53.5 + - pos: -26.5,52.5 parent: 2 type: Transform - uid: 3090 components: - - pos: -22.5,62.5 - parent: 2 - type: Transform - - uid: 3091 - components: - - pos: -20.5,46.5 + - pos: -26.5,54.5 parent: 2 type: Transform - uid: 3092 components: - - pos: -20.5,58.5 - parent: 2 - type: Transform - - uid: 3093 - components: - - pos: -27.5,53.5 - parent: 2 - type: Transform - - uid: 3094 - components: - - pos: -12.5,60.5 - parent: 2 - type: Transform - - uid: 3095 - components: - - pos: -25.5,53.5 - parent: 2 - type: Transform - - uid: 3096 - components: - - pos: -20.5,44.5 + - pos: -23.5,58.5 parent: 2 type: Transform - uid: 3097 @@ -21344,22 +21478,22 @@ entities: type: Transform - uid: 3104 components: - - pos: 48.5,24.5 + - pos: 45.5,10.5 parent: 2 type: Transform - uid: 3105 components: - - pos: 44.5,24.5 + - pos: 49.5,18.5 parent: 2 type: Transform - uid: 3106 components: - - pos: 44.5,25.5 + - pos: 50.5,17.5 parent: 2 type: Transform - uid: 3107 components: - - pos: 45.5,22.5 + - pos: 53.5,19.5 parent: 2 type: Transform - uid: 3108 @@ -21632,11 +21766,6 @@ entities: - pos: 13.5,20.5 parent: 2 type: Transform - - uid: 3162 - components: - - pos: -14.5,61.5 - parent: 2 - type: Transform - uid: 3163 components: - pos: 36.5,14.5 @@ -21767,2695 +21896,2924 @@ entities: - pos: 24.5,22.5 parent: 2 type: Transform - - uid: 3189 + - uid: 3196 components: - - pos: 59.5,23.5 + - pos: 53.5,18.5 parent: 2 type: Transform - - uid: 3190 + - uid: 3199 components: - - pos: 58.5,23.5 + - pos: -20.5,61.5 parent: 2 type: Transform - - uid: 3191 + - uid: 3202 components: - - pos: 57.5,23.5 + - pos: 46.5,16.5 parent: 2 type: Transform - - uid: 3192 + - uid: 3203 components: - - pos: 56.5,23.5 + - pos: 45.5,13.5 parent: 2 type: Transform - - uid: 3193 + - uid: 3204 components: - - pos: 56.5,24.5 + - pos: 45.5,8.5 parent: 2 type: Transform - - uid: 3194 + - uid: 3205 components: - - pos: 56.5,25.5 + - pos: 47.5,11.5 parent: 2 type: Transform - - uid: 3195 + - uid: 3206 components: - - pos: 56.5,26.5 + - pos: 47.5,13.5 parent: 2 type: Transform - - uid: 3196 + - uid: 3207 components: - - pos: 56.5,27.5 + - pos: 47.5,9.5 parent: 2 type: Transform - - uid: 3197 + - uid: 3208 components: - - pos: 56.5,28.5 + - pos: 51.5,13.5 parent: 2 type: Transform - - uid: 3198 + - uid: 3209 components: - - pos: 56.5,29.5 + - pos: 53.5,14.5 parent: 2 type: Transform - - uid: 3199 + - uid: 3211 components: - - pos: 56.5,30.5 + - pos: 51.5,11.5 parent: 2 type: Transform - - uid: 3200 + - uid: 3216 components: - - pos: 55.5,23.5 + - pos: 42.5,16.5 parent: 2 type: Transform - - uid: 3201 + - uid: 3217 components: - - pos: 54.5,23.5 + - pos: 41.5,16.5 parent: 2 type: Transform - - uid: 3202 + - uid: 3218 components: - - pos: 53.5,23.5 + - pos: 41.5,15.5 parent: 2 type: Transform - - uid: 3203 + - uid: 3219 components: - - pos: 52.5,23.5 + - pos: 40.5,15.5 parent: 2 type: Transform - - uid: 3204 + - uid: 3220 components: - - pos: 51.5,23.5 + - pos: 39.5,15.5 parent: 2 type: Transform - - uid: 3205 + - uid: 3221 components: - - pos: 50.5,23.5 + - pos: 38.5,15.5 parent: 2 type: Transform - - uid: 3206 + - uid: 3222 components: - - pos: 49.5,23.5 + - pos: 47.5,18.5 parent: 2 type: Transform - - uid: 3207 + - uid: 3223 components: - - pos: 48.5,23.5 + - pos: 47.5,20.5 parent: 2 type: Transform - - uid: 3208 + - uid: 3224 components: - - pos: 47.5,23.5 + - pos: 47.5,24.5 parent: 2 type: Transform - - uid: 3209 + - uid: 3225 components: - - pos: 46.5,23.5 + - pos: 45.5,23.5 parent: 2 type: Transform - - uid: 3210 + - uid: 3226 components: - - pos: 45.5,23.5 + - pos: 45.5,20.5 parent: 2 type: Transform - - uid: 3211 + - uid: 3227 components: - - pos: 44.5,23.5 + - pos: 46.5,14.5 parent: 2 type: Transform - - uid: 3212 + - uid: 3233 components: - - pos: 43.5,23.5 + - pos: 44.5,16.5 parent: 2 type: Transform - - uid: 3213 + - uid: 3249 components: - - pos: 45.5,19.5 + - pos: -26.5,62.5 parent: 2 type: Transform - - uid: 3214 + - uid: 3250 components: - - pos: 45.5,18.5 + - pos: -24.5,62.5 parent: 2 type: Transform - - uid: 3215 + - uid: 3253 components: - - pos: 45.5,17.5 + - pos: -22.5,62.5 parent: 2 type: Transform - - uid: 3216 + - uid: 3255 components: - - pos: 45.5,16.5 + - pos: 47.5,22.5 parent: 2 type: Transform - - uid: 3217 + - uid: 3256 components: - - pos: 44.5,16.5 + - pos: 45.5,22.5 parent: 2 type: Transform - - uid: 3218 + - uid: 3257 components: - - pos: 43.5,16.5 + - pos: 45.5,19.5 parent: 2 type: Transform - - uid: 3219 + - uid: 3258 components: - - pos: 42.5,16.5 + - pos: 53.5,20.5 parent: 2 type: Transform - - uid: 3220 + - uid: 3263 components: - - pos: 41.5,16.5 + - pos: -20.5,64.5 parent: 2 type: Transform - - uid: 3221 + - uid: 3264 components: - - pos: 41.5,15.5 + - pos: -18.5,61.5 parent: 2 type: Transform - - uid: 3222 + - uid: 3267 components: - - pos: 40.5,15.5 + - pos: -24.5,58.5 parent: 2 type: Transform - - uid: 3223 + - uid: 3271 components: - - pos: 39.5,15.5 + - pos: -24.5,54.5 parent: 2 type: Transform - - uid: 3224 + - uid: 3272 components: - - pos: 38.5,15.5 + - pos: -28.5,56.5 parent: 2 type: Transform - - uid: 3225 + - uid: 3275 components: - - pos: 44.5,26.5 + - pos: -27.5,52.5 parent: 2 type: Transform - - uid: 3226 + - uid: 3279 components: - - pos: 44.5,27.5 + - pos: -28.5,54.5 parent: 2 type: Transform - - uid: 3227 + - uid: 3280 components: - - pos: 44.5,28.5 + - pos: 24.5,25.5 parent: 2 type: Transform - - uid: 3228 + - uid: 3281 components: - - pos: 44.5,29.5 + - pos: 21.5,20.5 parent: 2 type: Transform - - uid: 3229 + - uid: 3282 components: - - pos: 44.5,30.5 + - pos: 24.5,23.5 parent: 2 type: Transform - - uid: 3230 + - uid: 3283 components: - - pos: 48.5,25.5 + - pos: 24.5,20.5 parent: 2 type: Transform - - uid: 3231 + - uid: 3284 components: - - pos: 48.5,26.5 + - pos: -29.5,27.5 parent: 2 type: Transform - - uid: 3232 + - uid: 3285 components: - - pos: 48.5,27.5 + - pos: -29.5,26.5 parent: 2 type: Transform - - uid: 3233 + - uid: 3286 components: - - pos: 48.5,28.5 + - pos: -29.5,25.5 parent: 2 type: Transform - - uid: 3234 + - uid: 3287 components: - - pos: 48.5,29.5 + - pos: -20.5,28.5 parent: 2 type: Transform - - uid: 3235 + - uid: 3288 components: - - pos: 48.5,30.5 + - pos: 2.5,29.5 parent: 2 type: Transform - - uid: 3236 + - uid: 3289 components: - - pos: 52.5,24.5 + - pos: -26.5,58.5 parent: 2 type: Transform - - uid: 3237 + - uid: 3290 components: - - pos: 52.5,25.5 + - pos: -25.5,58.5 parent: 2 type: Transform - - uid: 3238 + - uid: 3291 components: - - pos: 52.5,26.5 + - pos: 3.5,29.5 parent: 2 type: Transform - - uid: 3239 + - uid: 3292 components: - - pos: 52.5,27.5 + - pos: -27.5,58.5 parent: 2 type: Transform - - uid: 3240 + - uid: 3293 components: - - pos: 52.5,28.5 + - pos: 3.5,28.5 parent: 2 type: Transform - - uid: 3241 + - uid: 3294 components: - - pos: 52.5,29.5 + - pos: 1.5,28.5 parent: 2 type: Transform - - uid: 3242 + - uid: 3295 components: - - pos: 52.5,30.5 + - pos: 22.5,-13.5 parent: 2 type: Transform - - uid: 3243 + - uid: 3296 components: - - pos: 53.5,25.5 + - pos: 22.5,-14.5 parent: 2 type: Transform - - uid: 3244 + - uid: 3297 components: - - pos: 51.5,25.5 + - pos: 22.5,-15.5 parent: 2 type: Transform - - uid: 3245 + - uid: 3298 components: - - pos: 53.5,27.5 + - pos: 22.5,-16.5 parent: 2 type: Transform - - uid: 3246 + - uid: 3299 components: - - pos: 51.5,27.5 + - pos: 23.5,-16.5 parent: 2 type: Transform - - uid: 3247 + - uid: 3300 components: - - pos: 51.5,29.5 + - pos: 24.5,-16.5 parent: 2 type: Transform - - uid: 3248 + - uid: 3301 components: - - pos: 53.5,29.5 + - pos: 25.5,-16.5 parent: 2 type: Transform - - uid: 3249 + - uid: 3302 components: - - pos: 52.5,31.5 + - pos: 25.5,-15.5 parent: 2 type: Transform - - uid: 3250 + - uid: 3303 components: - - pos: 48.5,31.5 + - pos: 26.5,-15.5 parent: 2 type: Transform - - uid: 3251 + - uid: 3304 components: - - pos: 49.5,29.5 + - pos: 26.5,-16.5 parent: 2 type: Transform - - uid: 3252 + - uid: 3305 components: - - pos: 47.5,29.5 + - pos: 26.5,-17.5 parent: 2 type: Transform - - uid: 3253 + - uid: 3306 components: - - pos: 47.5,27.5 + - pos: 25.5,-17.5 parent: 2 type: Transform - - uid: 3254 + - uid: 3307 components: - - pos: 49.5,27.5 + - pos: 7.5,24.5 parent: 2 type: Transform - - uid: 3255 + - uid: 3308 components: - - pos: 49.5,25.5 + - pos: 7.5,23.5 parent: 2 type: Transform - - uid: 3256 + - uid: 3309 components: - - pos: 47.5,25.5 + - pos: 7.5,33.5 parent: 2 type: Transform - - uid: 3257 + - uid: 3310 components: - - pos: 45.5,25.5 + - pos: 7.5,31.5 parent: 2 type: Transform - - uid: 3258 + - uid: 3311 components: - - pos: 43.5,25.5 + - pos: 7.5,20.5 parent: 2 type: Transform - - uid: 3259 + - uid: 3312 components: - - pos: 43.5,27.5 + - pos: 10.5,20.5 parent: 2 type: Transform - - uid: 3260 + - uid: 3313 components: - - pos: 45.5,27.5 + - pos: 11.5,20.5 parent: 2 type: Transform - - uid: 3261 + - uid: 3314 components: - - pos: 43.5,29.5 + - pos: 9.5,20.5 parent: 2 type: Transform - - uid: 3262 + - uid: 3315 components: - - pos: 45.5,29.5 + - pos: 7.5,22.5 parent: 2 type: Transform - - uid: 3263 + - uid: 3316 components: - - pos: 44.5,31.5 + - pos: 8.5,20.5 parent: 2 type: Transform - - uid: 3264 + - uid: 3317 components: - - pos: 55.5,27.5 + - pos: 7.5,21.5 parent: 2 type: Transform - - uid: 3265 + - uid: 3318 components: - - pos: 55.5,25.5 + - pos: 12.5,20.5 parent: 2 type: Transform - - uid: 3266 + - uid: 3319 components: - - pos: 57.5,25.5 + - pos: 7.5,32.5 parent: 2 type: Transform - - uid: 3267 + - uid: 3862 components: - - pos: 57.5,27.5 + - pos: 53.5,13.5 parent: 2 type: Transform - - uid: 3268 + - uid: 3959 components: - - pos: 57.5,29.5 + - pos: 51.5,10.5 parent: 2 type: Transform - - uid: 3269 + - uid: 3960 components: - - pos: 55.5,29.5 + - pos: 47.5,10.5 parent: 2 type: Transform - - uid: 3270 + - uid: 3961 components: - - pos: 56.5,31.5 + - pos: 47.5,14.5 parent: 2 type: Transform - - uid: 3271 + - uid: 3962 components: - - pos: -14.5,62.5 + - pos: 47.5,12.5 parent: 2 type: Transform - - uid: 3272 + - uid: 3963 components: - - pos: -14.5,60.5 + - pos: 47.5,8.5 parent: 2 type: Transform - - uid: 3273 + - uid: 3964 components: - - pos: -20.5,54.5 + - pos: 45.5,12.5 parent: 2 type: Transform - - uid: 3274 + - uid: 3965 components: - - pos: -26.5,53.5 + - pos: 46.5,15.5 parent: 2 type: Transform - - uid: 3275 + - uid: 3977 components: - - pos: -12.5,53.5 + - pos: -21.5,61.5 parent: 2 type: Transform - - uid: 3276 + - uid: 3985 components: - - pos: -26.5,55.5 + - pos: 45.5,9.5 parent: 2 type: Transform - - uid: 3277 + - uid: 3986 components: - - pos: -22.5,61.5 + - pos: 45.5,14.5 parent: 2 type: Transform - - uid: 3278 + - uid: 3992 components: - - pos: -18.5,55.5 + - pos: 49.5,19.5 parent: 2 type: Transform - - uid: 3279 + - uid: 3994 components: - - pos: -16.5,54.5 + - pos: 54.5,17.5 parent: 2 type: Transform - - uid: 3280 + - uid: 3995 components: - - pos: -16.5,55.5 + - pos: 47.5,19.5 parent: 2 type: Transform - - uid: 3281 + - uid: 3996 components: - - pos: -19.5,53.5 + - pos: 47.5,23.5 parent: 2 type: Transform - - uid: 3282 + - uid: 3997 components: - - pos: -16.5,53.5 + - pos: 45.5,24.5 parent: 2 type: Transform - - uid: 3283 + - uid: 3998 components: - - pos: -14.5,54.5 + - pos: 45.5,21.5 parent: 2 type: Transform - - uid: 3284 + - uid: 4449 components: - - pos: -14.5,56.5 + - pos: -12.5,62.5 parent: 2 type: Transform - - uid: 3285 + - uid: 4450 components: - - pos: -24.5,63.5 + - pos: -12.5,60.5 parent: 2 type: Transform - - uid: 3286 + - uid: 7105 components: - - pos: 24.5,25.5 + - pos: -16.5,52.5 parent: 2 type: Transform - - uid: 3287 + - uid: 7110 components: - - pos: 21.5,20.5 + - pos: -18.5,53.5 parent: 2 type: Transform - - uid: 3288 + - uid: 7113 components: - - pos: 24.5,23.5 + - pos: -18.5,52.5 parent: 2 type: Transform - - uid: 3289 + - uid: 7114 components: - - pos: 24.5,20.5 + - pos: -14.5,52.5 parent: 2 type: Transform - - uid: 3290 + - uid: 7115 components: - - pos: -29.5,27.5 + - pos: -17.5,52.5 parent: 2 type: Transform - - uid: 3291 + - uid: 7116 components: - - pos: -29.5,26.5 + - pos: -15.5,52.5 parent: 2 type: Transform - - uid: 3292 + - uid: 7152 components: - - pos: -29.5,25.5 + - pos: -20.5,40.5 parent: 2 type: Transform - - uid: 3293 + - uid: 7153 components: - - pos: -20.5,28.5 + - pos: -20.5,35.5 parent: 2 type: Transform - - uid: 3294 + - uid: 7154 components: - - pos: 2.5,29.5 + - pos: -20.5,41.5 parent: 2 type: Transform - - uid: 3295 + - uid: 7156 components: - - pos: -20.5,52.5 + - pos: -20.5,39.5 parent: 2 type: Transform - - uid: 3296 + - uid: 7169 components: - - pos: -20.5,53.5 + - pos: -15.5,54.5 parent: 2 type: Transform - - uid: 3297 + - uid: 7170 components: - - pos: 3.5,29.5 + - pos: -13.5,54.5 parent: 2 type: Transform - - uid: 3298 + - uid: 7251 components: - - pos: -20.5,51.5 + - pos: -12.5,54.5 parent: 2 type: Transform - - uid: 3299 + - uid: 7252 components: - - pos: 3.5,28.5 + - pos: -21.5,53.5 parent: 2 type: Transform - - uid: 3300 + - uid: 7253 components: - - pos: 1.5,28.5 + - pos: -17.5,54.5 parent: 2 type: Transform - - uid: 3301 + - uid: 7254 components: - - pos: 22.5,-13.5 + - pos: -16.5,54.5 parent: 2 type: Transform - - uid: 3302 + - uid: 7255 components: - - pos: 22.5,-14.5 + - pos: -14.5,54.5 parent: 2 type: Transform - - uid: 3303 + - uid: 7277 components: - - pos: 22.5,-15.5 + - pos: -17.5,62.5 parent: 2 type: Transform - - uid: 3304 + - uid: 7278 components: - - pos: 22.5,-16.5 + - pos: -18.5,62.5 parent: 2 type: Transform - - uid: 3305 + - uid: 7279 components: - - pos: 23.5,-16.5 + - pos: -28.5,62.5 parent: 2 type: Transform - - uid: 3306 + - uid: 7287 components: - - pos: 24.5,-16.5 + - pos: -13.5,60.5 parent: 2 type: Transform - - uid: 3307 + - uid: 7288 components: - - pos: 25.5,-16.5 + - pos: -16.5,60.5 parent: 2 type: Transform - - uid: 3308 + - uid: 7289 components: - - pos: 25.5,-15.5 + - pos: -17.5,60.5 parent: 2 type: Transform - - uid: 3309 + - uid: 7290 components: - - pos: 26.5,-15.5 + - pos: -18.5,60.5 parent: 2 type: Transform - - uid: 3310 + - uid: 7291 components: - - pos: 26.5,-16.5 + - pos: -20.5,63.5 parent: 2 type: Transform - - uid: 3311 + - uid: 7294 components: - - pos: 26.5,-17.5 + - pos: -15.5,58.5 parent: 2 type: Transform - - uid: 3312 + - uid: 7295 components: - - pos: 25.5,-17.5 + - pos: -17.5,58.5 parent: 2 type: Transform - - uid: 3313 + - uid: 7296 components: - - pos: 7.5,24.5 + - pos: -28.5,60.5 parent: 2 type: Transform - - uid: 3314 + - uid: 7297 components: - - pos: 7.5,23.5 + - pos: -18.5,57.5 parent: 2 type: Transform - - uid: 3315 + - uid: 7302 components: - - pos: 7.5,33.5 + - pos: -20.5,44.5 parent: 2 type: Transform - - uid: 3316 + - uid: 7303 components: - - pos: 7.5,31.5 + - pos: -20.5,32.5 parent: 2 type: Transform - - uid: 3317 + - uid: 7304 components: - - pos: 7.5,20.5 + - pos: -18.5,56.5 parent: 2 type: Transform - - uid: 3318 + - uid: 7307 components: - - pos: 10.5,20.5 + - pos: -17.5,56.5 parent: 2 type: Transform - - uid: 3319 + - uid: 7308 components: - - pos: 11.5,20.5 + - pos: -16.5,56.5 parent: 2 type: Transform - - uid: 3320 + - uid: 7309 components: - - pos: 9.5,20.5 + - pos: -15.5,56.5 parent: 2 type: Transform - - uid: 3321 + - uid: 7334 components: - - pos: 7.5,22.5 + - pos: -22.5,60.5 parent: 2 type: Transform - - uid: 3322 + - uid: 7335 components: - - pos: 8.5,20.5 + - pos: -23.5,60.5 parent: 2 type: Transform - - uid: 3323 + - uid: 7336 components: - - pos: 7.5,21.5 + - pos: -24.5,60.5 parent: 2 type: Transform - - uid: 3324 + - uid: 7337 components: - - pos: 12.5,20.5 + - pos: -25.5,60.5 parent: 2 type: Transform - - uid: 3325 + - uid: 7338 components: - - pos: 7.5,32.5 + - pos: -14.5,58.5 parent: 2 type: Transform -- proto: CableHVStack - entities: - - uid: 3326 + - uid: 7339 components: - - pos: 0.6388791,40.625793 + - pos: -12.5,58.5 parent: 2 type: Transform - - uid: 3327 + - uid: 7340 components: - - pos: 0.5659625,40.45901 + - pos: -12.5,56.5 parent: 2 type: Transform - - uid: 3328 + - uid: 7341 components: - - pos: 0.74304587,40.68834 + - pos: -13.5,56.5 parent: 2 type: Transform - - uid: 3329 + - uid: 7342 components: - - pos: -29.460981,24.892977 + - pos: -14.5,56.5 parent: 2 type: Transform - - uid: 3330 + - uid: 7388 components: - - pos: 35.399845,14.705568 + - pos: -20.5,43.5 parent: 2 type: Transform - - uid: 3331 + - uid: 7474 components: - - pos: 35.54568,14.528362 + - pos: -16.5,62.5 parent: 2 type: Transform - - uid: 3332 + - uid: 7478 components: - - pos: -24.336763,28.719553 + - pos: -14.5,60.5 parent: 2 type: Transform - - uid: 3333 + - uid: 7481 components: - - pos: -24.25343,28.438108 + - pos: -15.5,62.5 parent: 2 type: Transform - - uid: 3334 + - uid: 7482 components: - - pos: -4.2951384,36.23426 + - pos: -15.5,60.5 parent: 2 type: Transform -- proto: CableMV - entities: - - uid: 3335 + - uid: 7492 components: - - pos: 7.5,28.5 + - pos: -22.5,54.5 parent: 2 type: Transform - - uid: 3336 + - uid: 7501 components: - - pos: 21.5,-1.5 + - pos: -22.5,61.5 parent: 2 type: Transform - - uid: 3337 + - uid: 7502 components: - - pos: -15.5,-12.5 + - pos: -27.5,60.5 parent: 2 type: Transform - - uid: 3338 + - uid: 7503 components: - - pos: -9.5,-7.5 + - pos: -16.5,58.5 parent: 2 type: Transform - - uid: 3339 + - uid: 7505 components: - - pos: -9.5,-5.5 + - pos: -13.5,58.5 parent: 2 type: Transform - - uid: 3340 + - uid: 7506 components: - - pos: -9.5,-6.5 + - pos: -26.5,60.5 parent: 2 type: Transform - - uid: 3341 + - uid: 7507 components: - - pos: -9.5,-4.5 + - pos: -18.5,58.5 parent: 2 type: Transform - - uid: 3342 + - uid: 7525 components: - - pos: -12.5,18.5 + - pos: -22.5,52.5 parent: 2 type: Transform - - uid: 3343 + - uid: 8763 components: - - pos: -12.5,17.5 + - pos: -13.5,62.5 parent: 2 type: Transform - - uid: 3344 + - uid: 8764 components: - - pos: -12.5,16.5 + - pos: 45.5,18.5 parent: 2 type: Transform - - uid: 3345 + - uid: 8765 components: - - pos: -7.5,18.5 + - pos: -14.5,62.5 parent: 2 type: Transform - - uid: 3346 + - uid: 8766 components: - - pos: -12.5,15.5 + - pos: 46.5,18.5 parent: 2 type: Transform - - uid: 3347 + - uid: 8768 components: - - pos: -12.5,14.5 + - pos: -20.5,65.5 parent: 2 type: Transform - - uid: 3348 + - uid: 8769 components: - - pos: -12.5,13.5 + - pos: -19.5,61.5 parent: 2 type: Transform - - uid: 3349 + - uid: 8770 components: - - pos: -16.5,8.5 + - pos: -12.5,52.5 parent: 2 type: Transform - - uid: 3350 + - uid: 8772 + components: + - pos: -20.5,37.5 + parent: 2 + type: Transform + - uid: 8774 + components: + - pos: -20.5,34.5 + parent: 2 + type: Transform + - uid: 8780 + components: + - pos: -20.5,62.5 + parent: 2 + type: Transform + - uid: 8788 + components: + - pos: 54.5,18.5 + parent: 2 + type: Transform + - uid: 8789 + components: + - pos: -27.5,62.5 + parent: 2 + type: Transform + - uid: 8790 + components: + - pos: -25.5,62.5 + parent: 2 + type: Transform + - uid: 8793 + components: + - pos: 47.5,21.5 + parent: 2 + type: Transform + - uid: 8795 + components: + - pos: 43.5,16.5 + parent: 2 + type: Transform + - uid: 8796 + components: + - pos: 50.5,16.5 + parent: 2 + type: Transform + - uid: 8797 + components: + - pos: -23.5,62.5 + parent: 2 + type: Transform + - uid: 8802 + components: + - pos: -18.5,54.5 + parent: 2 + type: Transform + - uid: 8804 + components: + - pos: -20.5,36.5 + parent: 2 + type: Transform + - uid: 8805 + components: + - pos: -13.5,52.5 + parent: 2 + type: Transform + - uid: 8808 + components: + - pos: -20.5,45.5 + parent: 2 + type: Transform + - uid: 8809 + components: + - pos: 45.5,11.5 + parent: 2 + type: Transform + - uid: 8812 + components: + - pos: -20.5,33.5 + parent: 2 + type: Transform + - uid: 8813 + components: + - pos: -20.5,42.5 + parent: 2 + type: Transform + - uid: 8822 + components: + - pos: -20.5,38.5 + parent: 2 + type: Transform +- proto: CableHVStack + entities: + - uid: 3320 + components: + - pos: 0.6388791,40.625793 + parent: 2 + type: Transform + - uid: 3321 + components: + - pos: 0.5659625,40.45901 + parent: 2 + type: Transform + - uid: 3322 + components: + - pos: 0.74304587,40.68834 + parent: 2 + type: Transform + - uid: 3323 + components: + - pos: -29.460981,24.892977 + parent: 2 + type: Transform + - uid: 3324 + components: + - pos: 35.399845,14.705568 + parent: 2 + type: Transform + - uid: 3325 + components: + - pos: 35.54568,14.528362 + parent: 2 + type: Transform + - uid: 3326 + components: + - pos: -24.336763,28.719553 + parent: 2 + type: Transform + - uid: 3327 + components: + - pos: -24.25343,28.438108 + parent: 2 + type: Transform + - uid: 3328 + components: + - pos: -4.2951384,36.23426 + parent: 2 + type: Transform +- proto: CableHVStack1 + entities: + - uid: 3197 + components: + - rot: 1.5707963267948966 rad + pos: 50.5,23.5 + parent: 2 + type: Transform + - uid: 3975 + components: + - pos: 54.5,19.5 + parent: 2 + type: Transform + - uid: 8782 + components: + - rot: 1.5707963267948966 rad + pos: 51.5,21.5 + parent: 2 + type: Transform +- proto: CableMV + entities: + - uid: 3329 + components: + - pos: 7.5,28.5 + parent: 2 + type: Transform + - uid: 3330 + components: + - pos: 21.5,-1.5 + parent: 2 + type: Transform + - uid: 3331 + components: + - pos: -15.5,-12.5 + parent: 2 + type: Transform + - uid: 3332 + components: + - pos: -9.5,-7.5 + parent: 2 + type: Transform + - uid: 3333 + components: + - pos: -9.5,-5.5 + parent: 2 + type: Transform + - uid: 3334 + components: + - pos: -9.5,-6.5 + parent: 2 + type: Transform + - uid: 3335 + components: + - pos: -9.5,-4.5 + parent: 2 + type: Transform + - uid: 3336 + components: + - pos: -12.5,18.5 + parent: 2 + type: Transform + - uid: 3337 + components: + - pos: -12.5,17.5 + parent: 2 + type: Transform + - uid: 3338 + components: + - pos: -12.5,16.5 + parent: 2 + type: Transform + - uid: 3339 + components: + - pos: -7.5,18.5 + parent: 2 + type: Transform + - uid: 3340 + components: + - pos: -12.5,15.5 + parent: 2 + type: Transform + - uid: 3341 + components: + - pos: -12.5,14.5 + parent: 2 + type: Transform + - uid: 3342 + components: + - pos: -12.5,13.5 + parent: 2 + type: Transform + - uid: 3343 + components: + - pos: -16.5,8.5 + parent: 2 + type: Transform + - uid: 3344 components: - pos: -17.5,8.5 parent: 2 type: Transform - - uid: 3351 + - uid: 3345 components: - pos: -18.5,8.5 parent: 2 type: Transform - - uid: 3352 + - uid: 3346 components: - pos: -18.5,9.5 parent: 2 type: Transform - - uid: 3353 + - uid: 3347 components: - pos: -18.5,10.5 parent: 2 type: Transform - - uid: 3354 + - uid: 3348 components: - pos: -18.5,11.5 parent: 2 type: Transform - - uid: 3355 + - uid: 3349 components: - pos: -17.5,11.5 parent: 2 type: Transform - - uid: 3356 + - uid: 3350 components: - pos: -8.5,7.5 parent: 2 type: Transform - - uid: 3357 + - uid: 3351 components: - pos: -8.5,-3.5 parent: 2 type: Transform - - uid: 3358 + - uid: 3352 components: - pos: -7.5,-3.5 parent: 2 type: Transform - - uid: 3359 + - uid: 3353 components: - pos: -6.5,-3.5 parent: 2 type: Transform - - uid: 3360 + - uid: 3354 components: - pos: -5.5,-3.5 parent: 2 type: Transform - - uid: 3361 + - uid: 3355 components: - pos: -4.5,-3.5 parent: 2 type: Transform - - uid: 3362 + - uid: 3356 components: - pos: -4.5,-2.5 parent: 2 type: Transform - - uid: 3363 + - uid: 3357 components: - pos: -4.5,-1.5 parent: 2 type: Transform - - uid: 3364 + - uid: 3358 components: - pos: -4.5,-0.5 parent: 2 type: Transform - - uid: 3365 + - uid: 3359 components: - pos: -4.5,0.5 parent: 2 type: Transform - - uid: 3366 + - uid: 3360 components: - pos: -4.5,1.5 parent: 2 type: Transform - - uid: 3367 + - uid: 3361 components: - pos: -3.5,1.5 parent: 2 type: Transform - - uid: 3368 + - uid: 3362 components: - pos: -2.5,1.5 parent: 2 type: Transform - - uid: 3369 + - uid: 3363 components: - pos: -1.5,1.5 parent: 2 type: Transform - - uid: 3370 + - uid: 3364 components: - pos: -0.5,1.5 parent: 2 type: Transform - - uid: 3371 + - uid: 3365 components: - pos: 0.5,1.5 parent: 2 type: Transform - - uid: 3372 + - uid: 3366 components: - pos: 0.5,2.5 parent: 2 type: Transform - - uid: 3373 + - uid: 3367 components: - pos: -11.5,-2.5 parent: 2 type: Transform - - uid: 3374 + - uid: 3368 components: - pos: -11.5,-3.5 parent: 2 type: Transform - - uid: 3375 + - uid: 3369 components: - pos: -10.5,-3.5 parent: 2 type: Transform - - uid: 3376 + - uid: 3370 components: - pos: -9.5,-3.5 parent: 2 type: Transform - - uid: 3377 + - uid: 3371 components: - pos: -9.5,-2.5 parent: 2 type: Transform - - uid: 3378 + - uid: 3372 components: - pos: -9.5,-1.5 parent: 2 type: Transform - - uid: 3379 + - uid: 3373 components: - pos: -9.5,-0.5 parent: 2 type: Transform - - uid: 3380 + - uid: 3374 components: - pos: -9.5,0.5 parent: 2 type: Transform - - uid: 3381 + - uid: 3375 components: - pos: -9.5,1.5 parent: 2 type: Transform - - uid: 3382 + - uid: 3376 components: - pos: -9.5,2.5 parent: 2 type: Transform - - uid: 3383 + - uid: 3377 components: - pos: -9.5,3.5 parent: 2 type: Transform - - uid: 3384 + - uid: 3378 components: - pos: -9.5,7.5 parent: 2 type: Transform - - uid: 3385 + - uid: 3379 components: - pos: -9.5,6.5 parent: 2 type: Transform - - uid: 3386 + - uid: 3380 components: - pos: -9.5,5.5 parent: 2 type: Transform - - uid: 3387 + - uid: 3381 components: - pos: -9.5,4.5 parent: 2 type: Transform - - uid: 3388 + - uid: 3382 components: - pos: -8.5,4.5 parent: 2 type: Transform - - uid: 3389 + - uid: 3383 components: - pos: -7.5,4.5 parent: 2 type: Transform - - uid: 3390 + - uid: 3384 components: - pos: -13.5,-1.5 parent: 2 type: Transform - - uid: 3391 + - uid: 3385 components: - pos: -12.5,-1.5 parent: 2 type: Transform - - uid: 3392 + - uid: 3386 components: - pos: -11.5,-1.5 parent: 2 type: Transform - - uid: 3393 + - uid: 3387 components: - pos: -7.5,5.5 parent: 2 type: Transform - - uid: 3394 + - uid: 3388 components: - pos: -14.5,-12.5 parent: 2 type: Transform - - uid: 3395 + - uid: 3389 components: - pos: -13.5,-12.5 parent: 2 type: Transform - - uid: 3396 + - uid: 3390 components: - pos: -12.5,-12.5 parent: 2 type: Transform - - uid: 3397 + - uid: 3391 components: - pos: -12.5,-13.5 parent: 2 type: Transform - - uid: 3398 + - uid: 3392 components: - pos: -12.5,-14.5 parent: 2 type: Transform - - uid: 3399 + - uid: 3393 components: - pos: -12.5,-15.5 parent: 2 type: Transform - - uid: 3400 + - uid: 3394 components: - pos: -11.5,-15.5 parent: 2 type: Transform - - uid: 3401 + - uid: 3395 components: - pos: -10.5,-15.5 parent: 2 type: Transform - - uid: 3402 + - uid: 3396 components: - pos: -9.5,-15.5 parent: 2 type: Transform - - uid: 3403 + - uid: 3397 components: - pos: -8.5,-15.5 parent: 2 type: Transform - - uid: 3404 + - uid: 3398 components: - pos: 15.5,-10.5 parent: 2 type: Transform - - uid: 3405 + - uid: 3399 components: - pos: -7.5,-15.5 parent: 2 type: Transform - - uid: 3406 + - uid: 3400 components: - pos: -6.5,-15.5 parent: 2 type: Transform - - uid: 3407 + - uid: 3401 components: - pos: 12.5,-8.5 parent: 2 type: Transform - - uid: 3408 + - uid: 3402 components: - pos: -5.5,-15.5 parent: 2 type: Transform - - uid: 3409 + - uid: 3403 components: - pos: 10.5,-12.5 parent: 2 type: Transform - - uid: 3410 + - uid: 3404 components: - pos: 17.5,-10.5 parent: 2 type: Transform - - uid: 3411 + - uid: 3405 components: - pos: 12.5,-11.5 parent: 2 type: Transform - - uid: 3412 + - uid: 3406 components: - pos: 21.5,-11.5 parent: 2 type: Transform - - uid: 3413 + - uid: 3407 components: - pos: 8.5,-8.5 parent: 2 type: Transform - - uid: 3414 + - uid: 3408 components: - pos: 18.5,-10.5 parent: 2 type: Transform - - uid: 3415 + - uid: 3409 components: - pos: 7.5,-8.5 parent: 2 type: Transform - - uid: 3416 + - uid: 3410 components: - pos: 4.5,-12.5 parent: 2 type: Transform - - uid: 3417 + - uid: 3411 components: - pos: 20.5,-10.5 parent: 2 type: Transform - - uid: 3418 + - uid: 3412 components: - pos: 14.5,-10.5 parent: 2 type: Transform - - uid: 3419 + - uid: 3413 components: - pos: 20.5,-11.5 parent: 2 type: Transform - - uid: 3420 + - uid: 3414 components: - pos: 22.5,-12.5 parent: 2 type: Transform - - uid: 3421 + - uid: 3415 components: - pos: 14.5,-9.5 parent: 2 type: Transform - - uid: 3422 + - uid: 3416 components: - pos: 14.5,-11.5 parent: 2 type: Transform - - uid: 3423 + - uid: 3417 components: - pos: 13.5,-8.5 parent: 2 type: Transform - - uid: 3424 + - uid: 3418 components: - pos: 9.5,-8.5 parent: 2 type: Transform - - uid: 3425 + - uid: 3419 components: - pos: 10.5,-8.5 parent: 2 type: Transform - - uid: 3426 + - uid: 3420 components: - pos: 13.5,-11.5 parent: 2 type: Transform - - uid: 3427 + - uid: 3421 components: - pos: 7.5,-7.5 parent: 2 type: Transform - - uid: 3428 + - uid: 3422 components: - pos: 22.5,-11.5 parent: 2 type: Transform - - uid: 3429 + - uid: 3423 components: - pos: 14.5,-8.5 parent: 2 type: Transform - - uid: 3430 + - uid: 3424 components: - pos: 19.5,-10.5 parent: 2 type: Transform - - uid: 3431 + - uid: 3425 components: - pos: 16.5,-10.5 parent: 2 type: Transform - - uid: 3432 + - uid: 3426 components: - pos: -9.5,-8.5 parent: 2 type: Transform - - uid: 3433 + - uid: 3427 components: - pos: -8.5,-8.5 parent: 2 type: Transform - - uid: 3434 + - uid: 3428 components: - pos: -7.5,-8.5 parent: 2 type: Transform - - uid: 3435 + - uid: 3429 components: - pos: -6.5,-8.5 parent: 2 type: Transform - - uid: 3436 + - uid: 3430 components: - pos: -5.5,-8.5 parent: 2 type: Transform - - uid: 3437 + - uid: 3431 components: - pos: -5.5,-9.5 parent: 2 type: Transform - - uid: 3438 + - uid: 3432 components: - pos: -5.5,-10.5 parent: 2 type: Transform - - uid: 3439 + - uid: 3433 components: - pos: -6.5,44.5 parent: 2 type: Transform - - uid: 3440 + - uid: 3434 components: - pos: 4.5,-13.5 parent: 2 type: Transform - - uid: 3441 + - uid: 3435 components: - pos: 4.5,-14.5 parent: 2 type: Transform - - uid: 3442 + - uid: 3436 components: - pos: -1.5,-18.5 parent: 2 type: Transform - - uid: 3443 + - uid: 3437 components: - pos: -0.5,-18.5 parent: 2 type: Transform - - uid: 3444 + - uid: 3438 components: - pos: 0.5,-18.5 parent: 2 type: Transform - - uid: 3445 + - uid: 3439 components: - pos: 1.5,-18.5 parent: 2 type: Transform - - uid: 3446 + - uid: 3440 components: - pos: 7.5,21.5 parent: 2 type: Transform - - uid: 3447 + - uid: 3441 components: - pos: 8.5,21.5 parent: 2 type: Transform - - uid: 3448 + - uid: 3442 components: - pos: 9.5,21.5 parent: 2 type: Transform - - uid: 3449 + - uid: 3443 components: - pos: 10.5,21.5 parent: 2 type: Transform - - uid: 3450 + - uid: 3444 components: - pos: -5.5,21.5 parent: 2 type: Transform - - uid: 3451 + - uid: 3445 components: - pos: -6.5,18.5 parent: 2 type: Transform - - uid: 3452 + - uid: 3446 components: - pos: -5.5,20.5 parent: 2 type: Transform - - uid: 3453 + - uid: 3447 components: - pos: -6.5,19.5 parent: 2 type: Transform - - uid: 3454 + - uid: 3448 components: - pos: -6.5,20.5 parent: 2 type: Transform - - uid: 3455 + - uid: 3449 components: - pos: 2.5,-18.5 parent: 2 type: Transform - - uid: 3456 + - uid: 3450 components: - pos: 3.5,-18.5 parent: 2 type: Transform - - uid: 3457 + - uid: 3451 components: - pos: 4.5,-18.5 parent: 2 type: Transform - - uid: 3458 + - uid: 3452 components: - pos: 4.5,-17.5 parent: 2 type: Transform - - uid: 3459 + - uid: 3453 components: - pos: 4.5,-16.5 parent: 2 type: Transform - - uid: 3460 + - uid: 3454 components: - pos: 4.5,-15.5 parent: 2 type: Transform - - uid: 3461 + - uid: 3455 components: - pos: 3.5,-15.5 parent: 2 type: Transform - - uid: 3462 + - uid: 3456 components: - pos: 2.5,-15.5 parent: 2 type: Transform - - uid: 3463 + - uid: 3457 components: - pos: 1.5,-15.5 parent: 2 type: Transform - - uid: 3464 + - uid: 3458 components: - pos: 0.5,-15.5 parent: 2 type: Transform - - uid: 3465 + - uid: 3459 components: - pos: -0.5,-15.5 parent: 2 type: Transform - - uid: 3466 + - uid: 3460 components: - pos: -1.5,-15.5 parent: 2 type: Transform - - uid: 3467 + - uid: 3461 components: - pos: -2.5,-15.5 parent: 2 type: Transform - - uid: 3468 + - uid: 3462 components: - pos: -3.5,-15.5 parent: 2 type: Transform - - uid: 3469 + - uid: 3463 components: - pos: -4.5,-15.5 parent: 2 type: Transform - - uid: 3470 + - uid: 3464 components: - pos: -4.5,-14.5 parent: 2 type: Transform - - uid: 3471 + - uid: 3465 components: - pos: -4.5,-13.5 parent: 2 type: Transform - - uid: 3472 + - uid: 3466 components: - pos: -4.5,-12.5 parent: 2 type: Transform - - uid: 3473 + - uid: 3467 components: - pos: -4.5,-11.5 parent: 2 type: Transform - - uid: 3474 + - uid: 3468 components: - pos: 16.5,15.5 parent: 2 type: Transform - - uid: 3475 + - uid: 3469 components: - pos: 11.5,13.5 parent: 2 type: Transform - - uid: 3476 + - uid: 3470 components: - pos: 10.5,13.5 parent: 2 type: Transform - - uid: 3477 + - uid: 3471 components: - pos: 9.5,13.5 parent: 2 type: Transform - - uid: 3478 + - uid: 3472 components: - pos: 8.5,13.5 parent: 2 type: Transform - - uid: 3479 + - uid: 3473 components: - pos: 7.5,13.5 parent: 2 type: Transform - - uid: 3480 + - uid: 3474 components: - pos: 6.5,13.5 parent: 2 type: Transform - - uid: 3481 + - uid: 3475 components: - pos: 5.5,13.5 parent: 2 type: Transform - - uid: 3482 + - uid: 3476 components: - pos: 11.5,14.5 parent: 2 type: Transform - - uid: 3483 + - uid: 3477 components: - pos: 11.5,15.5 parent: 2 type: Transform - - uid: 3484 + - uid: 3478 components: - pos: 11.5,16.5 parent: 2 type: Transform - - uid: 3485 + - uid: 3479 components: - pos: 11.5,17.5 parent: 2 type: Transform - - uid: 3486 + - uid: 3480 components: - pos: 11.5,18.5 parent: 2 type: Transform - - uid: 3487 + - uid: 3481 components: - pos: 11.5,19.5 parent: 2 type: Transform - - uid: 3488 + - uid: 3482 components: - pos: 11.5,20.5 parent: 2 type: Transform - - uid: 3489 + - uid: 3483 components: - pos: 11.5,21.5 parent: 2 type: Transform - - uid: 3490 + - uid: 3484 components: - pos: 4.5,13.5 parent: 2 type: Transform - - uid: 3491 + - uid: 3485 components: - pos: 3.5,13.5 parent: 2 type: Transform - - uid: 3492 + - uid: 3486 components: - pos: 2.5,13.5 parent: 2 type: Transform - - uid: 3493 + - uid: 3487 components: - pos: 2.5,12.5 parent: 2 type: Transform - - uid: 3494 + - uid: 3488 components: - pos: 2.5,11.5 parent: 2 type: Transform - - uid: 3495 + - uid: 3489 components: - pos: 2.5,10.5 parent: 2 type: Transform - - uid: 3496 + - uid: 3490 components: - pos: 2.5,9.5 parent: 2 type: Transform - - uid: 3497 + - uid: 3491 components: - pos: 2.5,8.5 parent: 2 type: Transform - - uid: 3498 + - uid: 3492 components: - pos: 2.5,7.5 parent: 2 type: Transform - - uid: 3499 + - uid: 3493 components: - pos: 10.5,18.5 parent: 2 type: Transform - - uid: 3500 + - uid: 3494 components: - pos: 9.5,18.5 parent: 2 type: Transform - - uid: 3501 + - uid: 3495 components: - pos: 20.5,-9.5 parent: 2 type: Transform - - uid: 3502 + - uid: 3496 components: - pos: 20.5,-8.5 parent: 2 type: Transform - - uid: 3503 + - uid: 3497 components: - pos: -14.5,25.5 parent: 2 type: Transform - - uid: 3504 + - uid: 3498 components: - pos: 20.5,-7.5 parent: 2 type: Transform - - uid: 3505 + - uid: 3499 components: - pos: 0.5,30.5 parent: 2 type: Transform - - uid: 3506 + - uid: 3500 components: - pos: 2.5,-10.5 parent: 2 type: Transform - - uid: 3507 + - uid: 3501 components: - pos: 3.5,-10.5 parent: 2 type: Transform - - uid: 3508 + - uid: 3502 components: - pos: 4.5,-10.5 parent: 2 type: Transform - - uid: 3509 + - uid: 3503 components: - pos: 4.5,-11.5 parent: 2 type: Transform - - uid: 3510 + - uid: 3504 components: - pos: -1.5,-19.5 parent: 2 type: Transform - - uid: 3511 + - uid: 3505 components: - pos: -1.5,-20.5 parent: 2 type: Transform - - uid: 3512 + - uid: 3506 components: - pos: -2.5,-20.5 parent: 2 type: Transform - - uid: 3513 + - uid: 3507 components: - pos: -3.5,-20.5 parent: 2 type: Transform - - uid: 3514 + - uid: 3508 components: - pos: -4.5,-20.5 parent: 2 type: Transform - - uid: 3515 + - uid: 3509 components: - pos: -1.5,-17.5 parent: 2 type: Transform - - uid: 3516 + - uid: 3510 components: - pos: -1.5,-16.5 parent: 2 type: Transform - - uid: 3517 + - uid: 3511 components: - pos: -14.5,24.5 parent: 2 type: Transform - - uid: 3518 + - uid: 3512 components: - pos: -14.5,26.5 parent: 2 type: Transform - - uid: 3519 + - uid: 3513 components: - pos: 10.5,-13.5 parent: 2 type: Transform - - uid: 3520 + - uid: 3514 components: - pos: 10.5,-14.5 parent: 2 type: Transform - - uid: 3521 + - uid: 3515 components: - pos: 10.5,-15.5 parent: 2 type: Transform - - uid: 3522 + - uid: 3516 components: - pos: 11.5,-15.5 parent: 2 type: Transform - - uid: 3523 + - uid: 3517 components: - pos: 12.5,-15.5 parent: 2 type: Transform - - uid: 3524 + - uid: 3518 components: - pos: 10.5,-16.5 parent: 2 type: Transform - - uid: 3525 + - uid: 3519 components: - pos: 10.5,-17.5 parent: 2 type: Transform - - uid: 3526 + - uid: 3520 components: - pos: 10.5,-18.5 parent: 2 type: Transform - - uid: 3527 + - uid: 3521 components: - pos: 10.5,-19.5 parent: 2 type: Transform - - uid: 3528 + - uid: 3522 components: - pos: 11.5,-19.5 parent: 2 type: Transform - - uid: 3529 + - uid: 3523 components: - pos: 12.5,-19.5 parent: 2 type: Transform - - uid: 3530 + - uid: 3524 components: - pos: 13.5,-19.5 parent: 2 type: Transform - - uid: 3531 + - uid: 3525 components: - pos: 14.5,-19.5 parent: 2 type: Transform - - uid: 3532 + - uid: 3526 components: - pos: 15.5,-19.5 parent: 2 type: Transform - - uid: 3533 + - uid: 3527 components: - pos: 16.5,-19.5 parent: 2 type: Transform - - uid: 3534 + - uid: 3528 components: - pos: 17.5,-19.5 parent: 2 type: Transform - - uid: 3535 + - uid: 3529 components: - pos: 18.5,-19.5 parent: 2 type: Transform - - uid: 3536 + - uid: 3530 components: - pos: 19.5,-19.5 parent: 2 type: Transform - - uid: 3537 + - uid: 3531 components: - pos: 20.5,-19.5 parent: 2 type: Transform - - uid: 3538 + - uid: 3532 components: - pos: 21.5,-19.5 parent: 2 type: Transform - - uid: 3539 + - uid: 3533 components: - pos: -12.5,19.5 parent: 2 type: Transform - - uid: 3540 + - uid: 3534 components: - pos: -12.5,20.5 parent: 2 type: Transform - - uid: 3541 + - uid: 3535 components: - pos: -12.5,21.5 parent: 2 type: Transform - - uid: 3542 + - uid: 3536 components: - pos: -11.5,13.5 parent: 2 type: Transform - - uid: 3543 + - uid: 3537 components: - pos: -10.5,13.5 parent: 2 type: Transform - - uid: 3544 + - uid: 3538 components: - pos: -10.5,14.5 parent: 2 type: Transform - - uid: 3545 + - uid: 3539 components: - pos: 12.5,21.5 parent: 2 type: Transform - - uid: 3546 + - uid: 3540 components: - pos: 13.5,21.5 parent: 2 type: Transform - - uid: 3547 + - uid: 3541 components: - pos: 14.5,21.5 parent: 2 type: Transform - - uid: 3548 + - uid: 3542 components: - pos: 15.5,21.5 parent: 2 type: Transform - - uid: 3549 + - uid: 3543 components: - pos: 16.5,21.5 parent: 2 type: Transform - - uid: 3550 + - uid: 3544 components: - pos: 16.5,22.5 parent: 2 type: Transform - - uid: 3551 + - uid: 3545 components: - pos: 16.5,23.5 parent: 2 type: Transform - - uid: 3552 + - uid: 3546 components: - pos: 16.5,24.5 parent: 2 type: Transform - - uid: 3553 + - uid: 3547 components: - pos: 17.5,24.5 parent: 2 type: Transform - - uid: 3554 + - uid: 3548 components: - pos: 18.5,24.5 parent: 2 type: Transform - - uid: 3555 + - uid: 3549 components: - pos: 1.5,29.5 parent: 2 type: Transform - - uid: 3556 + - uid: 3550 components: - pos: 3.5,7.5 parent: 2 type: Transform - - uid: 3557 + - uid: 3551 components: - pos: -9.5,18.5 parent: 2 type: Transform - - uid: 3558 + - uid: 3552 components: - pos: -8.5,18.5 parent: 2 type: Transform - - uid: 3559 + - uid: 3553 components: - pos: -11.5,18.5 parent: 2 type: Transform - - uid: 3560 + - uid: 3554 components: - pos: -4.5,45.5 parent: 2 type: Transform - - uid: 3561 + - uid: 3555 components: - pos: -10.5,18.5 parent: 2 type: Transform - - uid: 3562 + - uid: 3556 components: - pos: 9.5,22.5 parent: 2 type: Transform - - uid: 3563 + - uid: 3557 components: - pos: 7.5,25.5 parent: 2 type: Transform - - uid: 3564 + - uid: 3558 components: - pos: 7.5,22.5 parent: 2 type: Transform - - uid: 3565 + - uid: 3559 components: - pos: 11.5,-8.5 parent: 2 type: Transform - - uid: 3566 + - uid: 3560 components: - pos: -14.5,27.5 parent: 2 type: Transform - - uid: 3567 + - uid: 3561 components: - pos: -14.5,28.5 parent: 2 type: Transform - - uid: 3568 + - uid: 3562 components: - pos: -5.5,31.5 parent: 2 type: Transform - - uid: 3569 + - uid: 3563 components: - pos: -8.5,31.5 parent: 2 type: Transform - - uid: 3570 + - uid: 3564 components: - pos: -8.5,30.5 parent: 2 type: Transform - - uid: 3571 + - uid: 3565 components: - pos: -6.5,31.5 parent: 2 type: Transform - - uid: 3572 + - uid: 3566 components: - pos: 15.5,13.5 parent: 2 type: Transform - - uid: 3573 + - uid: 3567 components: - pos: 16.5,13.5 parent: 2 type: Transform - - uid: 3574 + - uid: 3568 components: - pos: 17.5,13.5 parent: 2 type: Transform - - uid: 3575 + - uid: 3569 components: - pos: 18.5,13.5 parent: 2 type: Transform - - uid: 3576 + - uid: 3570 components: - pos: 19.5,13.5 parent: 2 type: Transform - - uid: 3577 + - uid: 3571 components: - pos: 20.5,13.5 parent: 2 type: Transform - - uid: 3578 + - uid: 3572 components: - pos: 21.5,13.5 parent: 2 type: Transform - - uid: 3579 + - uid: 3573 components: - pos: 21.5,12.5 parent: 2 type: Transform - - uid: 3580 + - uid: 3574 components: - pos: 21.5,11.5 parent: 2 type: Transform - - uid: 3581 + - uid: 3575 components: - pos: 7.5,23.5 parent: 2 type: Transform - - uid: 3582 + - uid: 3576 components: - pos: 7.5,24.5 parent: 2 type: Transform - - uid: 3583 + - uid: 3577 components: - pos: -6.5,43.5 parent: 2 type: Transform - - uid: 3584 + - uid: 3578 components: - pos: -6.5,40.5 parent: 2 type: Transform - - uid: 3585 + - uid: 3579 components: - pos: 1.5,28.5 parent: 2 type: Transform - - uid: 3586 + - uid: 3580 components: - pos: 11.5,-11.5 parent: 2 type: Transform - - uid: 3587 + - uid: 3581 components: - pos: 10.5,-11.5 parent: 2 type: Transform - - uid: 3588 + - uid: 3582 components: - pos: -5.5,22.5 parent: 2 type: Transform - - uid: 3589 + - uid: 3583 components: - pos: -5.5,23.5 parent: 2 type: Transform - - uid: 3590 + - uid: 3584 components: - pos: 17.5,25.5 parent: 2 type: Transform - - uid: 3591 + - uid: 3585 components: - pos: 17.5,26.5 parent: 2 type: Transform - - uid: 3592 + - uid: 3586 components: - pos: 17.5,27.5 parent: 2 type: Transform - - uid: 3593 + - uid: 3587 components: - pos: 17.5,28.5 parent: 2 type: Transform - - uid: 3594 + - uid: 3588 components: - pos: 16.5,28.5 parent: 2 type: Transform - - uid: 3595 + - uid: 3589 components: - pos: 15.5,28.5 parent: 2 type: Transform - - uid: 3596 + - uid: 3590 components: - pos: 14.5,28.5 parent: 2 type: Transform - - uid: 3597 + - uid: 3591 components: - pos: 13.5,28.5 parent: 2 type: Transform - - uid: 3598 + - uid: 3592 components: - pos: 7.5,26.5 parent: 2 type: Transform - - uid: 3599 + - uid: 3593 components: - pos: 7.5,27.5 parent: 2 type: Transform - - uid: 3600 + - uid: 3594 components: - pos: -6.5,39.5 parent: 2 type: Transform - - uid: 3601 + - uid: 3595 components: - pos: -18.5,-6.5 parent: 2 type: Transform - - uid: 3602 + - uid: 3596 components: - pos: -17.5,-3.5 parent: 2 type: Transform - - uid: 3603 + - uid: 3597 components: - pos: -18.5,-4.5 parent: 2 type: Transform - - uid: 3604 + - uid: 3598 components: - pos: -6.5,41.5 parent: 2 type: Transform - - uid: 3605 + - uid: 3599 components: - pos: -18.5,-5.5 parent: 2 type: Transform - - uid: 3606 + - uid: 3600 components: - pos: -22.5,-0.5 parent: 2 type: Transform - - uid: 3607 + - uid: 3601 components: - pos: -22.5,-1.5 parent: 2 type: Transform - - uid: 3608 + - uid: 3602 components: - pos: -22.5,-2.5 parent: 2 type: Transform - - uid: 3609 + - uid: 3603 components: - pos: -22.5,-3.5 parent: 2 type: Transform - - uid: 3610 + - uid: 3604 components: - pos: -21.5,-3.5 parent: 2 type: Transform - - uid: 3611 + - uid: 3605 components: - pos: -20.5,-3.5 parent: 2 type: Transform - - uid: 3612 + - uid: 3606 components: - pos: -19.5,-3.5 parent: 2 type: Transform - - uid: 3613 + - uid: 3607 components: - pos: -18.5,-3.5 parent: 2 type: Transform - - uid: 3614 + - uid: 3608 components: - pos: -16.5,-3.5 parent: 2 type: Transform - - uid: 3615 + - uid: 3609 components: - pos: -16.5,-2.5 parent: 2 type: Transform - - uid: 3616 + - uid: 3610 components: - pos: -16.5,-1.5 parent: 2 type: Transform - - uid: 3617 + - uid: 3611 components: - pos: -16.5,-0.5 parent: 2 type: Transform - - uid: 3618 + - uid: 3612 components: - pos: -16.5,0.5 parent: 2 type: Transform - - uid: 3619 + - uid: 3613 components: - pos: -16.5,1.5 parent: 2 type: Transform - - uid: 3620 + - uid: 3614 components: - pos: -15.5,1.5 parent: 2 type: Transform - - uid: 3621 + - uid: 3615 components: - pos: -14.5,1.5 parent: 2 type: Transform - - uid: 3622 + - uid: 3616 components: - pos: -16.5,2.5 parent: 2 type: Transform - - uid: 3623 + - uid: 3617 components: - pos: -16.5,3.5 parent: 2 type: Transform - - uid: 3624 + - uid: 3618 components: - pos: -16.5,4.5 parent: 2 type: Transform - - uid: 3625 + - uid: 3619 components: - pos: -16.5,5.5 parent: 2 type: Transform - - uid: 3626 + - uid: 3620 components: - pos: -16.5,6.5 parent: 2 type: Transform - - uid: 3627 + - uid: 3621 components: - pos: -16.5,7.5 parent: 2 type: Transform - - uid: 3628 + - uid: 3622 components: - pos: -6.5,42.5 parent: 2 type: Transform - - uid: 3629 + - uid: 3623 components: - pos: -5.5,45.5 parent: 2 type: Transform - - uid: 3630 + - uid: 3624 components: - pos: -6.5,45.5 parent: 2 type: Transform - - uid: 3631 + - uid: 3625 components: - pos: 15.5,14.5 parent: 2 type: Transform - - uid: 3632 + - uid: 3626 components: - pos: 15.5,15.5 parent: 2 type: Transform - - uid: 3633 + - uid: 3627 components: - pos: 15.5,16.5 parent: 2 type: Transform - - uid: 3634 + - uid: 3628 components: - pos: 15.5,17.5 parent: 2 type: Transform - - uid: 3635 + - uid: 3629 components: - pos: 16.5,17.5 parent: 2 type: Transform - - uid: 3636 + - uid: 3630 components: - pos: 16.5,18.5 parent: 2 type: Transform - - uid: 3637 + - uid: 3631 components: - pos: 16.5,19.5 parent: 2 type: Transform - - uid: 3638 + - uid: 3632 components: - pos: 14.5,17.5 parent: 2 type: Transform - - uid: 3639 + - uid: 3633 components: - pos: 13.5,17.5 parent: 2 type: Transform - - uid: 3640 + - uid: 3634 components: - pos: 12.5,17.5 parent: 2 type: Transform - - uid: 3641 + - uid: 3635 components: - pos: 2.5,14.5 parent: 2 type: Transform - - uid: 3642 + - uid: 3636 components: - pos: 2.5,15.5 parent: 2 type: Transform - - uid: 3643 + - uid: 3637 components: - pos: 2.5,16.5 parent: 2 type: Transform - - uid: 3644 + - uid: 3638 components: - pos: 1.5,16.5 parent: 2 type: Transform - - uid: 3645 + - uid: 3639 components: - pos: 0.5,16.5 parent: 2 type: Transform - - uid: 3646 + - uid: 3640 components: - pos: 0.5,17.5 parent: 2 type: Transform - - uid: 3647 + - uid: 3641 components: - pos: 0.5,18.5 parent: 2 type: Transform - - uid: 3648 + - uid: 3642 components: - pos: -0.5,30.5 parent: 2 type: Transform - - uid: 3649 + - uid: 3643 components: - pos: -14.5,23.5 parent: 2 type: Transform - - uid: 3650 + - uid: 3644 components: - pos: -16.5,-12.5 parent: 2 type: Transform - - uid: 3651 + - uid: 3645 components: - pos: -17.5,-12.5 parent: 2 type: Transform - - uid: 3652 + - uid: 3646 components: - pos: -18.5,-12.5 parent: 2 type: Transform - - uid: 3653 + - uid: 3647 components: - pos: -19.5,-12.5 parent: 2 type: Transform - - uid: 3654 + - uid: 3648 components: - pos: -19.5,-13.5 parent: 2 type: Transform - - uid: 3655 + - uid: 3649 components: - pos: -19.5,-14.5 parent: 2 type: Transform - - uid: 3656 + - uid: 3650 components: - pos: -20.5,-14.5 parent: 2 type: Transform - - uid: 3657 + - uid: 3651 components: - pos: -21.5,-14.5 parent: 2 type: Transform - - uid: 3658 + - uid: 3652 components: - pos: -14.5,22.5 parent: 2 type: Transform - - uid: 3659 + - uid: 3653 components: - pos: -14.5,21.5 parent: 2 type: Transform - - uid: 3660 + - uid: 3654 components: - pos: -14.5,20.5 parent: 2 type: Transform - - uid: 3661 + - uid: 3655 components: - pos: -13.5,20.5 parent: 2 type: Transform - - uid: 3662 + - uid: 3656 components: - pos: -3.5,45.5 parent: 2 type: Transform - - uid: 3663 + - uid: 3657 components: - pos: -5.5,24.5 parent: 2 type: Transform - - uid: 3664 + - uid: 3658 components: - pos: 2.5,29.5 parent: 2 type: Transform - - uid: 3665 + - uid: 3659 components: - pos: -18.5,-7.5 parent: 2 type: Transform - - uid: 3666 + - uid: 3660 components: - pos: -17.5,-7.5 parent: 2 type: Transform - - uid: 3667 + - uid: 3661 components: - pos: -16.5,-7.5 parent: 2 type: Transform - - uid: 3668 + - uid: 3662 components: - pos: -16.5,-8.5 parent: 2 type: Transform - - uid: 3669 + - uid: 3663 components: - pos: -16.5,-9.5 parent: 2 type: Transform - - uid: 3670 + - uid: 3664 components: - pos: -30.5,28.5 parent: 2 type: Transform - - uid: 3671 + - uid: 3665 components: - pos: -30.5,29.5 parent: 2 type: Transform - - uid: 3672 + - uid: 3666 components: - pos: -29.5,29.5 parent: 2 type: Transform - - uid: 3673 + - uid: 3667 components: - pos: -28.5,29.5 parent: 2 type: Transform - - uid: 3674 + - uid: 3668 components: - pos: -27.5,29.5 parent: 2 type: Transform - - uid: 3675 + - uid: 3669 components: - pos: -27.5,28.5 parent: 2 type: Transform - - uid: 3676 + - uid: 3670 components: - pos: -27.5,27.5 parent: 2 type: Transform - - uid: 3677 + - uid: 3671 components: - pos: -27.5,26.5 parent: 2 type: Transform - - uid: 3678 + - uid: 3672 components: - pos: -27.5,25.5 parent: 2 type: Transform - - uid: 3679 + - uid: 3673 components: - pos: -7.5,39.5 parent: 2 type: Transform - - uid: 3680 + - uid: 3674 components: - pos: -7.5,38.5 parent: 2 type: Transform - - uid: 3681 + - uid: 3675 components: - pos: -7.5,37.5 parent: 2 type: Transform - - uid: 3682 + - uid: 3676 components: - pos: -7.5,36.5 parent: 2 type: Transform - - uid: 3683 + - uid: 3677 components: - pos: -7.5,35.5 parent: 2 type: Transform - - uid: 3684 + - uid: 3678 components: - pos: -7.5,34.5 parent: 2 type: Transform - - uid: 3685 + - uid: 3679 components: - pos: -7.5,33.5 parent: 2 type: Transform - - uid: 3686 + - uid: 3680 components: - pos: -7.5,32.5 parent: 2 type: Transform - - uid: 3687 + - uid: 3681 components: - pos: -7.5,31.5 parent: 2 type: Transform - - uid: 3688 + - uid: 3682 components: - pos: 3.5,29.5 parent: 2 type: Transform - - uid: 3689 + - uid: 3683 components: - pos: 3.5,28.5 parent: 2 type: Transform - - uid: 3690 + - uid: 3684 components: - pos: -4.5,22.5 parent: 2 type: Transform - - uid: 3691 + - uid: 3685 components: - pos: -3.5,22.5 parent: 2 type: Transform - - uid: 3692 + - uid: 3686 components: - pos: -4.5,24.5 parent: 2 type: Transform - - uid: 3693 + - uid: 3687 components: - pos: -3.5,24.5 parent: 2 type: Transform - - uid: 3694 + - uid: 3688 components: - pos: -2.5,24.5 parent: 2 type: Transform - - uid: 3695 + - uid: 3689 components: - pos: -1.5,24.5 parent: 2 type: Transform - - uid: 3696 + - uid: 3690 components: - pos: -1.5,25.5 parent: 2 type: Transform - - uid: 3697 + - uid: 3691 components: - pos: -1.5,26.5 parent: 2 type: Transform - - uid: 3698 + - uid: 3692 components: - pos: -1.5,27.5 parent: 2 type: Transform - - uid: 3699 + - uid: 3693 components: - pos: -1.5,28.5 parent: 2 type: Transform - - uid: 3700 + - uid: 3694 components: - pos: -1.5,29.5 parent: 2 type: Transform - - uid: 3701 + - uid: 3695 components: - pos: -1.5,30.5 parent: 2 type: Transform - - uid: 3702 + - uid: 3696 components: - pos: -1.5,31.5 parent: 2 type: Transform - - uid: 3703 + - uid: 3697 components: - pos: -2.5,31.5 parent: 2 type: Transform - - uid: 3704 + - uid: 3698 components: - pos: -3.5,31.5 parent: 2 type: Transform - - uid: 3705 + - uid: 3699 components: - pos: -4.5,31.5 parent: 2 type: Transform - - uid: 3706 + - uid: 3700 components: - pos: 20.5,-5.5 parent: 2 type: Transform - - uid: 3707 + - uid: 3701 components: - pos: 20.5,-6.5 parent: 2 type: Transform - - uid: 3708 + - uid: 3702 components: - pos: 5.5,29.5 parent: 2 type: Transform - - uid: 3709 + - uid: 3703 components: - pos: 20.5,-2.5 parent: 2 type: Transform - - uid: 3710 + - uid: 3704 components: - pos: 20.5,-1.5 parent: 2 type: Transform - - uid: 3711 + - uid: 3705 components: - pos: 4.5,29.5 parent: 2 type: Transform - - uid: 3712 + - uid: 3706 components: - pos: 6.5,29.5 parent: 2 type: Transform - - uid: 3713 + - uid: 3707 components: - pos: 20.5,-4.5 parent: 2 type: Transform - - uid: 3714 + - uid: 3708 components: - pos: 7.5,29.5 parent: 2 type: Transform - - uid: 3715 + - uid: 3709 components: - pos: 20.5,-3.5 parent: 2 type: Transform - proto: CableMVStack entities: - - uid: 3716 + - uid: 3710 components: - pos: 0.43054587,40.730034 parent: 2 type: Transform - - uid: 3717 + - uid: 3711 components: - pos: 0.3784625,40.625793 parent: 2 type: Transform - - uid: 3718 + - uid: 3712 components: - pos: 0.30554587,40.500706 parent: 2 type: Transform - - uid: 3719 + - uid: 3713 components: - pos: -29.500584,24.721727 parent: 2 type: Transform - - uid: 3720 + - uid: 3714 components: - pos: -4.363492,36.379696 parent: 2 type: Transform - proto: CableTerminal entities: - - uid: 3721 + - uid: 3715 components: - pos: 14.5,20.5 parent: 2 type: Transform - - uid: 3722 + - uid: 3716 components: - pos: 15.5,20.5 parent: 2 type: Transform - - uid: 3723 + - uid: 3717 components: - pos: 13.5,20.5 parent: 2 type: Transform - - uid: 3724 + - uid: 3718 components: - pos: -20.5,28.5 parent: 2 type: Transform - - uid: 3725 + - uid: 3719 components: - rot: -1.5707963267948966 rad pos: 37.5,17.5 @@ -24463,20 +24821,20 @@ entities: type: Transform - proto: CandyBowl entities: - - uid: 3726 + - uid: 3720 components: - pos: -15.615145,10.495199 parent: 2 type: Transform - proto: Carpet entities: - - uid: 3727 + - uid: 3721 components: - rot: -1.5707963267948966 rad pos: 25.5,-20.5 parent: 2 type: Transform - - uid: 3728 + - uid: 3722 components: - rot: -1.5707963267948966 rad pos: 24.5,-20.5 @@ -24484,137 +24842,137 @@ entities: type: Transform - proto: CarpetBlack entities: - - uid: 3729 + - uid: 3723 components: - pos: -27.5,-23.5 parent: 2 type: Transform - - uid: 3730 + - uid: 3724 components: - pos: -27.5,-24.5 parent: 2 type: Transform - - uid: 3731 + - uid: 3725 components: - pos: -28.5,-24.5 parent: 2 type: Transform - - uid: 3732 + - uid: 3726 components: - pos: -26.5,-23.5 parent: 2 type: Transform - - uid: 3733 + - uid: 3727 components: - pos: -28.5,-23.5 parent: 2 type: Transform - - uid: 3734 + - uid: 3728 components: - pos: -12.5,-31.5 parent: 2 type: Transform - - uid: 3735 + - uid: 3729 components: - pos: -12.5,-30.5 parent: 2 type: Transform - - uid: 3736 + - uid: 3730 components: - pos: -12.5,-29.5 parent: 2 type: Transform - - uid: 3737 + - uid: 3731 components: - pos: -11.5,-31.5 parent: 2 type: Transform - - uid: 3738 + - uid: 3732 components: - pos: -11.5,-30.5 parent: 2 type: Transform - - uid: 3739 + - uid: 3733 components: - pos: -11.5,-29.5 parent: 2 type: Transform - - uid: 3740 + - uid: 3734 components: - pos: -9.5,-11.5 parent: 2 type: Transform - - uid: 3741 + - uid: 3735 components: - pos: -8.5,-11.5 parent: 2 type: Transform - - uid: 3742 + - uid: 3736 components: - pos: -7.5,-11.5 parent: 2 type: Transform - - uid: 3743 + - uid: 3737 components: - pos: 17.5,-6.5 parent: 2 type: Transform - - uid: 3744 + - uid: 3738 components: - pos: 17.5,-5.5 parent: 2 type: Transform - - uid: 3745 + - uid: 3739 components: - pos: -26.5,-24.5 parent: 2 type: Transform - proto: CarpetBlue entities: - - uid: 3746 + - uid: 3740 components: - pos: 12.5,-5.5 parent: 2 type: Transform - - uid: 3747 + - uid: 3741 components: - pos: 11.5,-5.5 parent: 2 type: Transform - - uid: 3748 + - uid: 3742 components: - pos: -23.5,21.5 parent: 2 type: Transform - - uid: 3749 + - uid: 3743 components: - pos: -22.5,21.5 parent: 2 type: Transform - - uid: 3750 + - uid: 3744 components: - pos: -21.5,21.5 parent: 2 type: Transform - - uid: 3751 + - uid: 3745 components: - rot: -1.5707963267948966 rad pos: 6.5,-5.5 parent: 2 type: Transform - - uid: 3752 + - uid: 3746 components: - rot: -1.5707963267948966 rad pos: 6.5,-4.5 parent: 2 type: Transform - - uid: 3753 + - uid: 3747 components: - rot: -1.5707963267948966 rad pos: 7.5,-5.5 parent: 2 type: Transform - - uid: 3754 + - uid: 3748 components: - rot: -1.5707963267948966 rad pos: 7.5,-4.5 @@ -24622,2451 +24980,2120 @@ entities: type: Transform - proto: CarpetChapel entities: - - uid: 3755 + - uid: 3749 components: - pos: -9.5,16.5 parent: 2 type: Transform - - uid: 3756 + - uid: 3750 components: - rot: 1.5707963267948966 rad pos: -4.5,16.5 parent: 2 type: Transform - - uid: 3757 + - uid: 3751 components: - rot: -1.5707963267948966 rad pos: -9.5,17.5 parent: 2 type: Transform - - uid: 3758 + - uid: 3752 components: - rot: 1.5707963267948966 rad pos: -8.5,16.5 parent: 2 type: Transform - - uid: 3759 + - uid: 3753 components: - rot: 3.141592653589793 rad pos: -8.5,17.5 parent: 2 type: Transform - - uid: 3760 + - uid: 3754 components: - rot: 3.141592653589793 rad pos: -4.5,17.5 parent: 2 type: Transform - - uid: 3761 + - uid: 3755 components: - rot: -1.5707963267948966 rad pos: -5.5,17.5 parent: 2 type: Transform - - uid: 3762 + - uid: 3756 components: - pos: -5.5,16.5 parent: 2 type: Transform - proto: CarpetGreen entities: - - uid: 3763 + - uid: 3757 components: - pos: -28.5,-19.5 parent: 2 type: Transform - - uid: 3764 + - uid: 3758 components: - pos: -27.5,-19.5 parent: 2 type: Transform - - uid: 3765 + - uid: 3759 components: - pos: -27.5,-20.5 parent: 2 type: Transform - - uid: 3766 + - uid: 3760 components: - pos: -28.5,-20.5 parent: 2 type: Transform - proto: CarpetOrange entities: - - uid: 3767 + - uid: 3761 components: - pos: 24.5,13.5 parent: 2 type: Transform - - uid: 3768 + - uid: 3762 components: - pos: 23.5,13.5 parent: 2 type: Transform - - uid: 3769 + - uid: 3763 components: - pos: 26.5,13.5 parent: 2 type: Transform - - uid: 3770 + - uid: 3764 components: - pos: 25.5,13.5 parent: 2 type: Transform - proto: CarpetSBlue entities: - - uid: 3771 + - uid: 3765 components: - pos: -25.5,-27.5 parent: 2 type: Transform - - uid: 3772 + - uid: 3766 components: - pos: -24.5,-26.5 parent: 2 type: Transform - - uid: 3773 + - uid: 3767 components: - pos: -25.5,-26.5 parent: 2 type: Transform - - uid: 3774 + - uid: 3768 components: - pos: -23.5,-27.5 parent: 2 type: Transform - - uid: 3775 + - uid: 3769 components: - pos: -24.5,-27.5 parent: 2 type: Transform - - uid: 3776 + - uid: 3770 components: - pos: -23.5,-26.5 parent: 2 type: Transform - proto: Catwalk entities: - - uid: 3777 + - uid: 3020 components: - - rot: 1.5707963267948966 rad - pos: 31.5,-13.5 + - pos: -20.5,35.5 parent: 2 type: Transform - - uid: 3778 + - uid: 3021 components: - - rot: 1.5707963267948966 rad - pos: 30.5,-12.5 + - pos: -17.5,53.5 parent: 2 type: Transform - - uid: 3779 + - uid: 3022 components: - - rot: 1.5707963267948966 rad - pos: 32.5,-12.5 + - pos: -20.5,44.5 parent: 2 type: Transform - - uid: 3780 + - uid: 3031 components: - - rot: 1.5707963267948966 rad - pos: 31.5,-12.5 + - pos: -20.5,40.5 parent: 2 type: Transform - - uid: 3781 + - uid: 3037 + components: + - pos: -13.5,61.5 + parent: 2 + type: Transform + - uid: 3039 + components: + - pos: -28.5,61.5 + parent: 2 + type: Transform + - uid: 3042 + components: + - pos: -20.5,49.5 + parent: 2 + type: Transform + - uid: 3051 + components: + - pos: -28.5,53.5 + parent: 2 + type: Transform + - uid: 3055 + components: + - pos: -20.5,36.5 + parent: 2 + type: Transform + - uid: 3062 + components: + - pos: -20.5,32.5 + parent: 2 + type: Transform + - uid: 3063 + components: + - pos: -27.5,53.5 + parent: 2 + type: Transform + - uid: 3064 + components: + - pos: -25.5,53.5 + parent: 2 + type: Transform + - uid: 3065 + components: + - pos: -23.5,53.5 + parent: 2 + type: Transform + - uid: 3066 + components: + - pos: -21.5,53.5 + parent: 2 + type: Transform + - uid: 3067 + components: + - pos: -18.5,53.5 + parent: 2 + type: Transform + - uid: 3080 + components: + - pos: -20.5,38.5 + parent: 2 + type: Transform + - uid: 3085 + components: + - pos: -15.5,57.5 + parent: 2 + type: Transform + - uid: 3087 + components: + - pos: -13.5,57.5 + parent: 2 + type: Transform + - uid: 3091 + components: + - pos: -28.5,57.5 + parent: 2 + type: Transform + - uid: 3096 + components: + - pos: -20.5,42.5 + parent: 2 + type: Transform + - uid: 3262 + components: + - pos: -18.5,61.5 + parent: 2 + type: Transform + - uid: 3269 + components: + - pos: -14.5,57.5 + parent: 2 + type: Transform + - uid: 3273 + components: + - pos: -16.5,61.5 + parent: 2 + type: Transform + - uid: 3274 + components: + - pos: -17.5,61.5 + parent: 2 + type: Transform + - uid: 3276 + components: + - pos: -15.5,61.5 + parent: 2 + type: Transform + - uid: 3277 + components: + - pos: -12.5,57.5 + parent: 2 + type: Transform + - uid: 3278 + components: + - pos: -12.5,61.5 + parent: 2 + type: Transform + - uid: 3771 components: - rot: 1.5707963267948966 rad - pos: 31.5,-8.5 + pos: 31.5,-13.5 parent: 2 type: Transform - - uid: 3782 + - uid: 3774 components: - rot: 1.5707963267948966 rad - pos: 31.5,-9.5 + pos: 31.5,-12.5 parent: 2 type: Transform - - uid: 3783 + - uid: 3776 components: - rot: 1.5707963267948966 rad - pos: 31.5,-11.5 + pos: 31.5,-9.5 parent: 2 type: Transform - - uid: 3784 + - uid: 3777 components: - rot: 1.5707963267948966 rad - pos: 30.5,-8.5 + pos: 31.5,-11.5 parent: 2 type: Transform - - uid: 3785 + - uid: 3779 components: - rot: 1.5707963267948966 rad pos: 31.5,-10.5 parent: 2 type: Transform - - uid: 3786 + - uid: 3780 components: - rot: -1.5707963267948966 rad pos: -17.5,-24.5 parent: 2 type: Transform - - uid: 3787 + - uid: 3781 components: - rot: 3.141592653589793 rad pos: 11.5,32.5 parent: 2 type: Transform - - uid: 3788 + - uid: 3782 components: - rot: 3.141592653589793 rad pos: 11.5,33.5 parent: 2 type: Transform - - uid: 3789 + - uid: 3783 components: - pos: -2.5,-15.5 parent: 2 type: Transform - - uid: 3790 + - uid: 3784 components: - pos: -6.5,-15.5 parent: 2 type: Transform - - uid: 3791 + - uid: 3785 components: - pos: -3.5,-15.5 parent: 2 type: Transform - - uid: 3792 + - uid: 3786 components: - pos: -4.5,-15.5 parent: 2 type: Transform - - uid: 3793 + - uid: 3787 components: - pos: -8.5,-15.5 parent: 2 type: Transform - - uid: 3794 + - uid: 3788 components: - pos: -7.5,-14.5 parent: 2 type: Transform - - uid: 3795 + - uid: 3789 components: - pos: -7.5,-15.5 parent: 2 type: Transform - - uid: 3796 + - uid: 3790 components: - pos: -9.5,-15.5 parent: 2 type: Transform - - uid: 3797 + - uid: 3791 components: - pos: -17.5,1.5 parent: 2 type: Transform - - uid: 3798 + - uid: 3792 components: - pos: -18.5,1.5 parent: 2 type: Transform - - uid: 3799 + - uid: 3793 components: - pos: -16.5,0.5 parent: 2 type: Transform - - uid: 3800 + - uid: 3794 components: - pos: -15.5,24.5 parent: 2 type: Transform - - uid: 3801 + - uid: 3795 components: - pos: -14.5,24.5 parent: 2 type: Transform - - uid: 3802 + - uid: 3796 components: - pos: -15.5,-0.5 parent: 2 type: Transform - - uid: 3803 + - uid: 3797 components: - pos: -16.5,1.5 parent: 2 type: Transform - - uid: 3804 + - uid: 3798 components: - pos: -19.5,24.5 parent: 2 type: Transform - - uid: 3805 + - uid: 3799 components: - pos: -9.5,6.5 parent: 2 type: Transform - - uid: 3806 + - uid: 3800 components: - pos: -20.5,1.5 parent: 2 type: Transform - - uid: 3807 + - uid: 3801 components: - pos: -19.5,1.5 parent: 2 type: Transform - - uid: 3808 + - uid: 3802 components: - pos: -21.5,1.5 parent: 2 type: Transform - - uid: 3809 + - uid: 3803 components: - pos: -14.5,-0.5 parent: 2 type: Transform - - uid: 3810 + - uid: 3804 components: - pos: -14.5,25.5 parent: 2 type: Transform - - uid: 3811 + - uid: 3805 components: - pos: -9.5,1.5 parent: 2 type: Transform - - uid: 3812 + - uid: 3806 components: - pos: -9.5,4.5 parent: 2 type: Transform - - uid: 3813 + - uid: 3807 components: - pos: 7.5,23.5 parent: 2 type: Transform - - uid: 3814 + - uid: 3808 components: - pos: -16.5,-0.5 parent: 2 type: Transform - - uid: 3815 + - uid: 3809 components: - pos: -9.5,5.5 parent: 2 type: Transform - - uid: 3816 + - uid: 3810 components: - pos: -9.5,3.5 parent: 2 type: Transform - - uid: 3817 + - uid: 3811 components: - pos: -9.5,2.5 parent: 2 type: Transform - - uid: 3818 + - uid: 3812 components: - pos: -9.5,0.5 parent: 2 type: Transform - - uid: 3819 + - uid: 3813 components: - pos: -5.5,-15.5 parent: 2 type: Transform - - uid: 3820 + - uid: 3814 components: - pos: -1.5,-15.5 parent: 2 type: Transform - - uid: 3821 + - uid: 3815 components: - pos: -0.5,-15.5 parent: 2 type: Transform - - uid: 3822 + - uid: 3816 components: - pos: 0.5,-15.5 parent: 2 type: Transform - - uid: 3823 + - uid: 3817 components: - pos: 1.5,-15.5 parent: 2 type: Transform - - uid: 3824 + - uid: 3818 components: - pos: 7.5,26.5 parent: 2 type: Transform - - uid: 3825 - components: - - pos: -20.5,61.5 - parent: 2 - type: Transform - - uid: 3826 + - uid: 3821 components: - - pos: -20.5,63.5 + - pos: -26.5,61.5 parent: 2 type: Transform - - uid: 3827 + - uid: 3822 components: - - pos: -15.5,53.5 + - pos: -27.5,61.5 parent: 2 type: Transform - uid: 3828 components: - - pos: -16.5,53.5 + - pos: -12.5,53.5 parent: 2 type: Transform - uid: 3829 components: - - pos: -23.5,53.5 + - pos: 7.5,25.5 parent: 2 type: Transform - uid: 3830 components: - - pos: -22.5,53.5 + - pos: 7.5,24.5 parent: 2 type: Transform - uid: 3831 components: - - pos: -25.5,53.5 - parent: 2 - type: Transform - - uid: 3832 - components: - - pos: -26.5,53.5 + - rot: 3.141592653589793 rad + pos: 10.5,23.5 parent: 2 type: Transform - uid: 3833 components: - - pos: -21.5,60.5 + - pos: 24.5,20.5 parent: 2 type: Transform - uid: 3834 components: - - pos: -26.5,60.5 + - pos: 24.5,24.5 parent: 2 type: Transform - uid: 3835 components: - - pos: 7.5,25.5 + - pos: 16.5,-10.5 parent: 2 type: Transform - uid: 3836 components: - - pos: 7.5,24.5 + - pos: 14.5,-10.5 parent: 2 type: Transform - uid: 3837 components: - - rot: 3.141592653589793 rad - pos: 10.5,23.5 + - pos: 14.5,-8.5 parent: 2 type: Transform - uid: 3838 components: - - pos: -23.5,60.5 + - pos: 12.5,-8.5 parent: 2 type: Transform - uid: 3839 components: - - pos: 24.5,20.5 + - pos: 9.5,-8.5 parent: 2 type: Transform - uid: 3840 components: - - pos: 24.5,24.5 + - pos: 8.5,-8.5 parent: 2 type: Transform - uid: 3841 components: - - pos: 16.5,-10.5 + - pos: 7.5,-8.5 parent: 2 type: Transform - uid: 3842 components: - - pos: 14.5,-10.5 + - pos: 20.5,-10.5 parent: 2 type: Transform - uid: 3843 components: - - pos: 14.5,-8.5 + - pos: 10.5,-8.5 parent: 2 type: Transform - uid: 3844 components: - - pos: 12.5,-8.5 + - pos: 13.5,-8.5 parent: 2 type: Transform - uid: 3845 components: - - pos: 9.5,-8.5 + - pos: 14.5,-9.5 parent: 2 type: Transform - uid: 3846 components: - - pos: 8.5,-8.5 + - pos: 15.5,-10.5 parent: 2 type: Transform - uid: 3847 components: - - pos: 7.5,-8.5 + - pos: 17.5,-10.5 parent: 2 type: Transform - uid: 3848 components: - - pos: 20.5,-10.5 + - pos: 19.5,-10.5 parent: 2 type: Transform - uid: 3849 components: - - pos: 10.5,-8.5 + - rot: 3.141592653589793 rad + pos: 9.5,23.5 parent: 2 type: Transform - uid: 3850 components: - - pos: 13.5,-8.5 + - pos: -16.5,53.5 parent: 2 type: Transform - uid: 3851 components: - - pos: 14.5,-9.5 + - pos: 11.5,-8.5 parent: 2 type: Transform - uid: 3852 components: - - pos: 15.5,-10.5 + - pos: 20.5,-11.5 parent: 2 type: Transform - uid: 3853 components: - - pos: 17.5,-10.5 + - pos: -14.5,53.5 parent: 2 type: Transform - uid: 3854 components: - - pos: 19.5,-10.5 + - pos: -20.5,37.5 parent: 2 type: Transform - uid: 3855 components: - - rot: 3.141592653589793 rad - pos: 9.5,23.5 + - pos: -20.5,33.5 parent: 2 type: Transform - uid: 3856 components: - - pos: -27.5,53.5 + - pos: -21.5,32.5 parent: 2 type: Transform - uid: 3857 components: - - pos: 11.5,-8.5 + - pos: -26.5,53.5 parent: 2 type: Transform - uid: 3858 components: - - pos: 20.5,-11.5 + - pos: -24.5,53.5 parent: 2 type: Transform - uid: 3859 components: - - pos: -21.5,53.5 + - pos: -22.5,53.5 parent: 2 type: Transform - uid: 3860 components: - - pos: -20.5,41.5 + - pos: -19.5,53.5 parent: 2 type: Transform - uid: 3861 components: - - pos: -20.5,40.5 - parent: 2 - type: Transform - - uid: 3862 - components: - - pos: -20.5,39.5 + - pos: -18.5,24.5 parent: 2 type: Transform - uid: 3863 components: - - pos: -20.5,38.5 + - pos: -12.5,15.5 parent: 2 type: Transform - uid: 3864 components: - - pos: -20.5,37.5 + - pos: -12.5,16.5 parent: 2 type: Transform - uid: 3865 components: - - pos: -20.5,36.5 + - pos: -12.5,17.5 parent: 2 type: Transform - uid: 3866 components: - - pos: -20.5,35.5 + - pos: -12.5,18.5 parent: 2 type: Transform - uid: 3867 components: - - pos: -18.5,24.5 + - pos: -12.5,20.5 parent: 2 type: Transform - uid: 3868 components: - - pos: 43.5,23.5 + - pos: -13.5,20.5 parent: 2 type: Transform - uid: 3869 components: - - pos: 44.5,23.5 + - pos: -15.5,53.5 parent: 2 type: Transform - uid: 3870 components: - - pos: -12.5,15.5 - parent: 2 - type: Transform - - uid: 3871 - components: - - pos: -12.5,16.5 + - pos: -13.5,53.5 parent: 2 type: Transform - uid: 3872 components: - - pos: -12.5,17.5 - parent: 2 - type: Transform - - uid: 3873 - components: - - pos: -12.5,18.5 + - pos: 13.5,16.5 parent: 2 type: Transform - uid: 3874 components: - - pos: -12.5,20.5 + - pos: 3.5,29.5 parent: 2 type: Transform - uid: 3875 components: - - pos: -13.5,20.5 + - pos: 14.5,16.5 parent: 2 type: Transform - uid: 3876 components: - - pos: -18.5,53.5 + - pos: -12.5,19.5 parent: 2 type: Transform - uid: 3877 components: - - pos: -24.5,53.5 + - pos: 15.5,16.5 parent: 2 type: Transform - uid: 3878 components: - - pos: -27.5,60.5 - parent: 2 - type: Transform - - uid: 3879 - components: - - pos: 13.5,16.5 + - pos: 15.5,17.5 parent: 2 type: Transform - uid: 3880 components: - - pos: -20.5,56.5 + - pos: 19.5,27.5 parent: 2 type: Transform - uid: 3881 components: - - pos: 3.5,29.5 + - pos: 19.5,26.5 parent: 2 type: Transform - uid: 3882 components: - - pos: 14.5,16.5 + - pos: 19.5,25.5 parent: 2 type: Transform - uid: 3883 components: - - pos: -12.5,19.5 + - pos: 18.5,25.5 parent: 2 type: Transform - uid: 3884 components: - - pos: 15.5,16.5 + - pos: 17.5,23.5 parent: 2 type: Transform - uid: 3885 components: - - pos: 15.5,17.5 + - pos: 17.5,24.5 parent: 2 type: Transform - uid: 3886 components: - - pos: -24.5,60.5 - parent: 2 - type: Transform - - uid: 3887 - components: - - pos: 19.5,27.5 + - pos: 17.5,25.5 parent: 2 type: Transform - uid: 3888 components: - - pos: 19.5,26.5 + - pos: 10.5,15.5 parent: 2 type: Transform - uid: 3889 components: - - pos: 19.5,25.5 + - pos: 18.5,13.5 parent: 2 type: Transform - uid: 3890 components: - - pos: 18.5,25.5 + - pos: 19.5,13.5 parent: 2 type: Transform - uid: 3891 components: - - pos: 17.5,23.5 + - pos: 20.5,13.5 parent: 2 type: Transform - uid: 3892 components: - - pos: 17.5,24.5 + - pos: 19.5,10.5 parent: 2 type: Transform - uid: 3893 components: - - pos: 17.5,25.5 + - pos: 17.5,10.5 parent: 2 type: Transform - uid: 3894 components: - - pos: -20.5,62.5 + - pos: 18.5,10.5 parent: 2 type: Transform - uid: 3895 components: - - pos: 10.5,15.5 + - pos: 21.5,10.5 parent: 2 type: Transform - uid: 3896 components: - - pos: 18.5,13.5 + - pos: 20.5,10.5 parent: 2 type: Transform - uid: 3897 components: - - pos: 19.5,13.5 - parent: 2 - type: Transform - - uid: 3898 - components: - - pos: 20.5,13.5 - parent: 2 - type: Transform - - uid: 3899 - components: - - pos: 19.5,10.5 + - pos: 25.5,17.5 parent: 2 type: Transform - uid: 3900 components: - - pos: 17.5,10.5 - parent: 2 - type: Transform - - uid: 3901 - components: - - pos: 18.5,10.5 + - pos: -25.5,61.5 parent: 2 type: Transform - uid: 3902 components: - - pos: 21.5,10.5 + - pos: -11.5,18.5 parent: 2 type: Transform - uid: 3903 components: - - pos: 20.5,10.5 + - pos: -29.5,32.5 parent: 2 type: Transform - uid: 3904 components: - - pos: 25.5,17.5 + - pos: -29.5,33.5 parent: 2 type: Transform - uid: 3905 components: - - pos: -25.5,60.5 + - pos: -29.5,31.5 parent: 2 type: Transform - uid: 3906 components: - - pos: -19.5,53.5 + - pos: -29.5,30.5 parent: 2 type: Transform - uid: 3907 components: - - pos: -17.5,53.5 + - pos: -14.5,20.5 parent: 2 type: Transform - uid: 3908 components: - - pos: -20.5,57.5 - parent: 2 - type: Transform - - uid: 3909 - components: - - pos: -11.5,18.5 + - pos: -14.5,21.5 parent: 2 type: Transform - uid: 3910 components: - - pos: -29.5,32.5 + - pos: -14.5,22.5 parent: 2 type: Transform - uid: 3911 components: - - pos: -29.5,33.5 + - pos: -14.5,23.5 parent: 2 type: Transform - uid: 3912 components: - - pos: -29.5,31.5 + - pos: 24.5,23.5 parent: 2 type: Transform - uid: 3913 components: - - pos: -29.5,30.5 + - pos: -18.5,-29.5 parent: 2 type: Transform - uid: 3914 components: - - pos: -14.5,20.5 + - pos: -18.5,-26.5 parent: 2 type: Transform - uid: 3915 components: - - pos: -14.5,21.5 + - pos: -18.5,-30.5 parent: 2 type: Transform - uid: 3916 components: - - pos: -15.5,60.5 + - pos: -17.5,-40.5 parent: 2 type: Transform - uid: 3917 components: - - pos: -14.5,22.5 + - pos: -17.5,-39.5 parent: 2 type: Transform - uid: 3918 components: - - pos: -14.5,23.5 + - pos: -18.5,-31.5 parent: 2 type: Transform - uid: 3919 components: - - pos: 24.5,23.5 + - pos: -18.5,-28.5 parent: 2 type: Transform - uid: 3920 components: - - pos: -18.5,-29.5 + - pos: -18.5,-27.5 parent: 2 type: Transform - uid: 3921 components: - - pos: -18.5,-26.5 + - pos: -17.5,-33.5 parent: 2 type: Transform - uid: 3922 components: - - pos: -18.5,-30.5 + - pos: -17.5,-34.5 parent: 2 type: Transform - uid: 3923 components: - - pos: -17.5,-40.5 + - pos: -17.5,-36.5 parent: 2 type: Transform - uid: 3924 components: - - pos: -17.5,-39.5 + - pos: -17.5,-35.5 parent: 2 type: Transform - uid: 3925 components: - - pos: -18.5,-31.5 + - pos: -17.5,-38.5 parent: 2 type: Transform - uid: 3926 components: - - pos: -18.5,-28.5 + - pos: 24.5,17.5 parent: 2 type: Transform - uid: 3927 components: - - pos: -18.5,-27.5 + - pos: 26.5,17.5 parent: 2 type: Transform - uid: 3928 components: - - pos: -17.5,-33.5 + - pos: 27.5,17.5 parent: 2 type: Transform - uid: 3929 components: - - pos: -17.5,-34.5 + - pos: 28.5,17.5 parent: 2 type: Transform - uid: 3930 components: - - pos: -17.5,-36.5 + - pos: 29.5,17.5 parent: 2 type: Transform - uid: 3931 components: - - pos: -17.5,-35.5 + - pos: 30.5,17.5 parent: 2 type: Transform - uid: 3932 components: - - pos: -17.5,-38.5 + - pos: 31.5,17.5 parent: 2 type: Transform - uid: 3933 components: - - pos: 24.5,17.5 + - pos: 31.5,16.5 parent: 2 type: Transform - uid: 3934 components: - - pos: 26.5,17.5 + - pos: 32.5,16.5 parent: 2 type: Transform - uid: 3935 components: - - pos: 27.5,17.5 + - pos: 33.5,16.5 parent: 2 type: Transform - uid: 3936 components: - - pos: 28.5,17.5 + - pos: 31.5,15.5 parent: 2 type: Transform - uid: 3937 components: - - pos: 29.5,17.5 + - pos: 31.5,14.5 parent: 2 type: Transform - uid: 3938 components: - - pos: 30.5,17.5 + - pos: 31.5,13.5 parent: 2 type: Transform - uid: 3939 components: - - pos: 31.5,17.5 + - pos: 31.5,12.5 parent: 2 type: Transform - uid: 3940 components: - - pos: 31.5,16.5 + - pos: 31.5,11.5 parent: 2 type: Transform - uid: 3941 components: - - pos: 32.5,16.5 + - pos: 31.5,10.5 parent: 2 type: Transform - uid: 3942 components: - - pos: 33.5,16.5 + - pos: 29.5,10.5 parent: 2 type: Transform - uid: 3943 components: - - pos: 31.5,15.5 + - pos: 27.5,10.5 parent: 2 type: Transform - uid: 3944 components: - - pos: 31.5,14.5 + - pos: 25.5,10.5 parent: 2 type: Transform - uid: 3945 components: - - pos: 31.5,13.5 + - pos: 23.5,10.5 parent: 2 type: Transform - uid: 3946 components: - - pos: 31.5,12.5 + - pos: 22.5,20.5 parent: 2 type: Transform - uid: 3947 components: - - pos: 31.5,11.5 + - pos: -17.5,-37.5 parent: 2 type: Transform - uid: 3948 components: - - pos: 31.5,10.5 + - pos: 16.5,10.5 parent: 2 type: Transform - uid: 3949 components: - - pos: 29.5,10.5 + - pos: 16.5,9.5 parent: 2 type: Transform - uid: 3950 components: - - pos: 27.5,10.5 + - pos: 16.5,8.5 parent: 2 type: Transform - uid: 3951 components: - - pos: 25.5,10.5 + - pos: 16.5,7.5 parent: 2 type: Transform - uid: 3952 components: - - pos: 23.5,10.5 + - pos: 16.5,6.5 parent: 2 type: Transform - uid: 3953 components: - - pos: 22.5,20.5 + - pos: 15.5,6.5 parent: 2 type: Transform - uid: 3954 components: - - pos: -17.5,-37.5 + - pos: 15.5,5.5 parent: 2 type: Transform - uid: 3955 components: - - pos: 16.5,10.5 + - pos: 15.5,4.5 parent: 2 type: Transform - uid: 3956 components: - - pos: 16.5,9.5 + - pos: -18.5,-32.5 parent: 2 type: Transform - - uid: 3957 + - uid: 4004 components: - - pos: 16.5,8.5 + - pos: 42.5,16.5 parent: 2 type: Transform - - uid: 3958 + - uid: 4005 components: - - pos: 16.5,7.5 + - pos: 41.5,16.5 parent: 2 type: Transform - - uid: 3959 + - uid: 4006 components: - - pos: 16.5,6.5 + - pos: 41.5,15.5 parent: 2 type: Transform - - uid: 3960 + - uid: 4007 components: - - pos: 15.5,6.5 + - pos: 40.5,15.5 parent: 2 type: Transform - - uid: 3961 + - uid: 4008 components: - - pos: 15.5,5.5 + - pos: 39.5,15.5 parent: 2 type: Transform - - uid: 3962 + - uid: 4009 components: - - pos: 15.5,4.5 + - pos: 38.5,15.5 parent: 2 type: Transform - - uid: 3963 + - uid: 4010 components: - - pos: -18.5,-32.5 + - pos: -20.5,39.5 parent: 2 type: Transform - - uid: 3964 + - uid: 4011 components: - - pos: 45.5,23.5 + - pos: -20.5,41.5 parent: 2 type: Transform - - uid: 3965 + - uid: 4012 components: - - pos: 46.5,23.5 + - pos: -20.5,43.5 parent: 2 type: Transform - - uid: 3966 + - uid: 4013 components: - - pos: 47.5,23.5 + - pos: -20.5,45.5 parent: 2 type: Transform - - uid: 3967 + - uid: 4015 components: - - pos: 48.5,23.5 + - pos: -20.5,48.5 parent: 2 type: Transform - - uid: 3968 + - uid: 4019 components: - - pos: 49.5,23.5 + - pos: 24.5,25.5 parent: 2 type: Transform - - uid: 3969 + - uid: 4020 components: - - pos: 50.5,23.5 + - pos: 23.5,20.5 parent: 2 type: Transform - - uid: 3970 + - uid: 4022 components: - - pos: 51.5,23.5 + - pos: -23.5,61.5 parent: 2 type: Transform - - uid: 3971 + - uid: 4030 components: - - pos: 52.5,23.5 + - pos: -24.5,61.5 parent: 2 type: Transform - - uid: 3972 + - uid: 4031 components: - - pos: 53.5,23.5 + - rot: 1.5707963267948966 rad + pos: 13.5,18.5 parent: 2 type: Transform - - uid: 3973 + - uid: 4032 components: - - pos: 54.5,23.5 + - pos: -26.5,23.5 parent: 2 type: Transform - - uid: 3974 + - uid: 4033 components: - - pos: 55.5,23.5 + - pos: -26.5,22.5 parent: 2 type: Transform - - uid: 3975 + - uid: 4034 components: - - pos: 56.5,23.5 + - pos: -26.5,21.5 parent: 2 type: Transform - - uid: 3976 + - uid: 4035 components: - - pos: 57.5,23.5 + - pos: -26.5,20.5 parent: 2 type: Transform - - uid: 3977 + - uid: 4036 components: - - pos: 58.5,23.5 + - rot: 1.5707963267948966 rad + pos: 14.5,18.5 parent: 2 type: Transform - - uid: 3978 + - uid: 4037 components: - - pos: 56.5,24.5 + - rot: 3.141592653589793 rad + pos: -23.5,24.5 parent: 2 type: Transform - - uid: 3979 + - uid: 4038 components: - - pos: 56.5,25.5 + - rot: 3.141592653589793 rad + pos: -22.5,24.5 parent: 2 type: Transform - - uid: 3980 + - uid: 4039 components: - - pos: 56.5,26.5 + - rot: 3.141592653589793 rad + pos: -21.5,24.5 parent: 2 type: Transform - - uid: 3981 + - uid: 4040 components: - - pos: 56.5,27.5 + - rot: 3.141592653589793 rad + pos: -20.5,24.5 parent: 2 type: Transform - - uid: 3982 + - uid: 4041 components: - - pos: 56.5,28.5 + - rot: 3.141592653589793 rad + pos: -16.5,24.5 parent: 2 type: Transform - - uid: 3983 + - uid: 4042 components: - - pos: 56.5,29.5 + - rot: 3.141592653589793 rad + pos: -17.5,24.5 parent: 2 type: Transform - - uid: 3984 + - uid: 4043 components: - - pos: 56.5,30.5 + - rot: 1.5707963267948966 rad + pos: 15.5,18.5 parent: 2 type: Transform - - uid: 3985 + - uid: 4044 components: - - pos: 52.5,24.5 + - pos: 10.5,20.5 parent: 2 type: Transform - - uid: 3986 + - uid: 4045 components: - - pos: 52.5,25.5 + - pos: -18.5,-33.5 parent: 2 type: Transform - - uid: 3987 + - uid: 4046 components: - - pos: 52.5,26.5 + - pos: -18.5,-38.5 parent: 2 type: Transform - - uid: 3988 + - uid: 4047 components: - - pos: 52.5,27.5 + - pos: 11.5,20.5 parent: 2 type: Transform - - uid: 3989 + - uid: 4048 components: - - pos: 52.5,28.5 + - pos: 12.5,20.5 parent: 2 type: Transform - - uid: 3990 + - uid: 4049 components: - - pos: 52.5,29.5 + - pos: -18.5,-35.5 parent: 2 type: Transform - - uid: 3991 + - uid: 4050 components: - - pos: 52.5,30.5 + - pos: 13.5,20.5 parent: 2 type: Transform - - uid: 3992 + - uid: 4051 components: - - pos: 48.5,24.5 + - pos: 14.5,20.5 parent: 2 type: Transform - - uid: 3993 + - uid: 4052 components: - - pos: 48.5,25.5 + - pos: 15.5,20.5 parent: 2 type: Transform - - uid: 3994 + - uid: 4053 components: - - pos: 48.5,26.5 + - pos: 16.5,20.5 parent: 2 type: Transform - - uid: 3995 + - uid: 4054 components: - - pos: 48.5,27.5 + - pos: 17.5,20.5 parent: 2 type: Transform - - uid: 3996 + - uid: 4057 components: - - pos: 48.5,28.5 + - pos: -18.5,-40.5 parent: 2 type: Transform - - uid: 3997 + - uid: 4058 components: - - pos: 48.5,29.5 + - pos: -18.5,-37.5 parent: 2 type: Transform - - uid: 3998 + - uid: 4063 components: - - pos: 48.5,30.5 + - rot: 3.141592653589793 rad + pos: 6.5,28.5 parent: 2 type: Transform - - uid: 3999 + - uid: 4064 components: - - pos: 44.5,24.5 + - pos: 5.5,29.5 parent: 2 type: Transform - - uid: 4000 + - uid: 4065 components: - - pos: 44.5,25.5 + - rot: 3.141592653589793 rad + pos: 5.5,28.5 parent: 2 type: Transform - - uid: 4001 + - uid: 4066 components: - - pos: 44.5,26.5 + - pos: -18.5,-39.5 parent: 2 type: Transform - - uid: 4002 + - uid: 4067 components: - - pos: 44.5,27.5 + - pos: -18.5,-36.5 parent: 2 type: Transform - - uid: 4003 + - uid: 4068 components: - - pos: 44.5,28.5 + - pos: -18.5,-34.5 parent: 2 type: Transform - - uid: 4004 + - uid: 4069 components: - - pos: 44.5,29.5 + - pos: -20.5,-42.5 parent: 2 type: Transform - - uid: 4005 + - uid: 4070 components: - - pos: 44.5,30.5 + - pos: -20.5,-41.5 parent: 2 type: Transform - - uid: 4006 + - uid: 4071 components: - - pos: 45.5,22.5 + - pos: -19.5,-42.5 parent: 2 type: Transform - - uid: 4007 + - uid: 4072 components: - - pos: 45.5,19.5 + - pos: -24.5,-35.5 parent: 2 type: Transform - - uid: 4008 + - uid: 4073 components: - - pos: 45.5,18.5 + - pos: -24.5,-36.5 parent: 2 type: Transform - - uid: 4009 + - uid: 4074 components: - - pos: 45.5,17.5 + - pos: -24.5,-37.5 parent: 2 type: Transform - - uid: 4010 + - uid: 4075 components: - - pos: 45.5,16.5 + - pos: -25.5,-36.5 parent: 2 type: Transform - - uid: 4011 + - uid: 4076 components: - - pos: 44.5,16.5 + - pos: -25.5,-35.5 parent: 2 type: Transform - - uid: 4012 + - uid: 4077 components: - - pos: 43.5,16.5 + - pos: -24.5,-38.5 parent: 2 type: Transform - - uid: 4013 + - uid: 4078 components: - - pos: 42.5,16.5 + - pos: -24.5,-39.5 parent: 2 type: Transform - - uid: 4014 + - uid: 4079 components: - - pos: 41.5,16.5 + - pos: -24.5,-42.5 parent: 2 type: Transform - - uid: 4015 + - uid: 4080 components: - - pos: 41.5,15.5 + - pos: -24.5,-40.5 parent: 2 type: Transform - - uid: 4016 + - uid: 4081 components: - - pos: 40.5,15.5 + - pos: -25.5,-32.5 parent: 2 type: Transform - - uid: 4017 + - uid: 4082 components: - - pos: 39.5,15.5 + - pos: -24.5,-41.5 parent: 2 type: Transform - - uid: 4018 + - uid: 4083 components: - - pos: 38.5,15.5 + - pos: -26.5,-41.5 parent: 2 type: Transform - - uid: 4019 + - uid: 4084 components: - - pos: -20.5,42.5 + - pos: -28.5,-41.5 parent: 2 type: Transform - - uid: 4020 + - uid: 4085 components: - - pos: -20.5,43.5 + - pos: -30.5,-41.5 parent: 2 type: Transform - - uid: 4021 + - uid: 4086 components: - - pos: -20.5,44.5 + - pos: -26.5,-42.5 parent: 2 type: Transform - - uid: 4022 + - uid: 4087 components: - - pos: -20.5,45.5 + - pos: -27.5,-42.5 parent: 2 type: Transform - - uid: 4023 + - uid: 4088 components: - - pos: -20.5,46.5 + - pos: -12.5,39.5 parent: 2 type: Transform - - uid: 4024 + - uid: 4089 components: - - pos: -20.5,47.5 + - pos: -13.5,39.5 parent: 2 type: Transform - - uid: 4025 + - uid: 4090 components: - - pos: -20.5,48.5 + - pos: -14.5,39.5 parent: 2 type: Transform - - uid: 4026 + - uid: 4091 components: - - pos: -20.5,49.5 + - pos: 1.5,29.5 parent: 2 type: Transform - - uid: 4027 + - uid: 4092 components: - - pos: -13.5,60.5 + - pos: 2.5,29.5 parent: 2 type: Transform - - uid: 4028 + - uid: 4093 components: - - pos: 24.5,25.5 + - pos: 31.5,21.5 parent: 2 type: Transform - - uid: 4029 + - uid: 4094 components: - - pos: 23.5,20.5 + - pos: 32.5,21.5 parent: 2 type: Transform - - uid: 4030 + - uid: 4095 components: - - pos: -14.5,60.5 + - pos: 33.5,21.5 parent: 2 type: Transform - - uid: 4031 + - uid: 4096 components: - - pos: -14.5,53.5 + - pos: 36.5,22.5 parent: 2 type: Transform - - uid: 4032 + - uid: 4097 components: - - pos: -18.5,60.5 + - pos: -27.5,-41.5 parent: 2 type: Transform - - uid: 4033 + - uid: 4098 components: - - pos: -20.5,53.5 + - pos: -25.5,-33.5 parent: 2 type: Transform - - uid: 4034 + - uid: 4099 components: - - pos: -20.5,51.5 + - pos: -25.5,-34.5 parent: 2 type: Transform - - uid: 4035 + - uid: 4100 components: - - pos: -20.5,50.5 + - pos: 36.5,23.5 parent: 2 type: Transform - - uid: 4036 + - uid: 4101 components: - - pos: -20.5,54.5 + - pos: 16.5,23.5 parent: 2 type: Transform - - uid: 4037 + - uid: 4102 components: - - pos: -20.5,58.5 + - pos: 16.5,24.5 parent: 2 type: Transform - - uid: 4038 + - uid: 4103 components: - - pos: -20.5,52.5 + - pos: 16.5,25.5 parent: 2 type: Transform - - uid: 4039 + - uid: 4104 components: - - pos: -13.5,53.5 + - pos: 16.5,26.5 parent: 2 type: Transform - - uid: 4040 + - uid: 4105 components: - - rot: 1.5707963267948966 rad - pos: 13.5,18.5 + - pos: 16.5,27.5 parent: 2 type: Transform - - uid: 4041 + - uid: 4106 components: - - pos: -26.5,23.5 + - pos: -29.5,34.5 parent: 2 type: Transform - - uid: 4042 + - uid: 4107 components: - - pos: -26.5,22.5 + - pos: -29.5,35.5 parent: 2 type: Transform - - uid: 4043 + - uid: 4108 components: - - pos: -26.5,21.5 + - pos: -31.5,26.5 parent: 2 type: Transform - - uid: 4044 + - uid: 4109 components: - - pos: -26.5,20.5 + - pos: -31.5,27.5 parent: 2 type: Transform - - uid: 4045 + - uid: 4110 components: - - rot: 1.5707963267948966 rad - pos: 14.5,18.5 + - pos: -31.5,25.5 parent: 2 type: Transform - - uid: 4046 + - uid: 4111 components: - - rot: 3.141592653589793 rad - pos: -23.5,24.5 + - pos: -31.5,24.5 parent: 2 type: Transform - - uid: 4047 + - uid: 4112 components: - - rot: 3.141592653589793 rad - pos: -22.5,24.5 + - pos: -31.5,23.5 parent: 2 type: Transform - - uid: 4048 + - uid: 4113 components: - - rot: 3.141592653589793 rad - pos: -21.5,24.5 + - pos: -31.5,22.5 parent: 2 type: Transform - - uid: 4049 + - uid: 4114 components: - - rot: 3.141592653589793 rad - pos: -20.5,24.5 + - pos: -30.5,22.5 parent: 2 type: Transform - - uid: 4050 + - uid: 4115 components: - - rot: 3.141592653589793 rad - pos: -16.5,24.5 + - pos: -29.5,22.5 parent: 2 type: Transform - - uid: 4051 + - uid: 4116 components: - - rot: 3.141592653589793 rad - pos: -17.5,24.5 + - pos: 36.5,24.5 parent: 2 type: Transform - - uid: 4052 + - uid: 4118 components: - - rot: 1.5707963267948966 rad - pos: 15.5,18.5 + - pos: 36.5,25.5 parent: 2 type: Transform - - uid: 4053 + - uid: 4119 components: - - pos: 10.5,20.5 + - pos: 29.5,19.5 parent: 2 type: Transform - - uid: 4054 + - uid: 4120 components: - - pos: -18.5,-33.5 + - pos: 29.5,21.5 parent: 2 type: Transform - - uid: 4055 + - uid: 4121 components: - - pos: -18.5,-38.5 + - pos: 29.5,22.5 parent: 2 type: Transform - - uid: 4056 + - uid: 4122 components: - - pos: 11.5,20.5 + - pos: 29.5,23.5 parent: 2 type: Transform - - uid: 4057 + - uid: 4123 components: - - pos: 12.5,20.5 + - pos: 29.5,24.5 parent: 2 type: Transform - - uid: 4058 + - uid: 4124 components: - - pos: -18.5,-35.5 + - pos: 29.5,25.5 parent: 2 type: Transform - - uid: 4059 + - uid: 4125 components: - - pos: 13.5,20.5 + - pos: 30.5,25.5 parent: 2 type: Transform - - uid: 4060 + - uid: 4126 components: - - pos: 14.5,20.5 + - pos: 30.5,26.5 parent: 2 type: Transform - - uid: 4061 + - uid: 4127 components: - - pos: 15.5,20.5 + - rot: 1.5707963267948966 rad + pos: 20.5,-7.5 parent: 2 type: Transform - - uid: 4062 + - uid: 4128 components: - - pos: 16.5,20.5 + - rot: 1.5707963267948966 rad + pos: 20.5,-6.5 parent: 2 type: Transform - - uid: 4063 + - uid: 4129 components: - - pos: 17.5,20.5 + - rot: 1.5707963267948966 rad + pos: 20.5,-5.5 parent: 2 type: Transform - - uid: 4064 + - uid: 4130 components: - - pos: -17.5,60.5 + - rot: 1.5707963267948966 rad + pos: 21.5,-5.5 parent: 2 type: Transform - - uid: 4065 + - uid: 4131 components: - - pos: -20.5,55.5 + - rot: 1.5707963267948966 rad + pos: 22.5,-5.5 parent: 2 type: Transform - - uid: 4066 + - uid: 4132 components: - - pos: -18.5,-40.5 + - rot: 1.5707963267948966 rad + pos: 23.5,-5.5 parent: 2 type: Transform - - uid: 4067 + - uid: 4133 components: - - pos: -18.5,-37.5 + - rot: 1.5707963267948966 rad + pos: 24.5,-5.5 parent: 2 type: Transform - - uid: 4068 + - uid: 4134 components: - - pos: -22.5,60.5 + - rot: 1.5707963267948966 rad + pos: 28.5,5.5 parent: 2 type: Transform - - uid: 4069 + - uid: 4135 components: - - pos: -20.5,59.5 + - rot: 1.5707963267948966 rad + pos: 28.5,6.5 parent: 2 type: Transform - - uid: 4070 + - uid: 4136 components: - - pos: -20.5,60.5 + - rot: 1.5707963267948966 rad + pos: 28.5,7.5 parent: 2 type: Transform - - uid: 4071 + - uid: 4137 components: - - pos: -19.5,60.5 + - rot: 1.5707963267948966 rad + pos: 28.5,8.5 parent: 2 type: Transform - - uid: 4072 + - uid: 4138 components: - - rot: 3.141592653589793 rad - pos: 6.5,28.5 + - pos: -25.5,-38.5 parent: 2 type: Transform - - uid: 4073 + - uid: 4139 components: - - pos: 5.5,29.5 - parent: 2 - type: Transform - - uid: 4074 - components: - - rot: 3.141592653589793 rad - pos: 5.5,28.5 - parent: 2 - type: Transform - - uid: 4075 - components: - - pos: -18.5,-39.5 - parent: 2 - type: Transform - - uid: 4076 - components: - - pos: -18.5,-36.5 - parent: 2 - type: Transform - - uid: 4077 - components: - - pos: -18.5,-34.5 - parent: 2 - type: Transform - - uid: 4078 - components: - - pos: -20.5,-42.5 - parent: 2 - type: Transform - - uid: 4079 - components: - - pos: -20.5,-41.5 - parent: 2 - type: Transform - - uid: 4080 - components: - - pos: -19.5,-42.5 - parent: 2 - type: Transform - - uid: 4081 - components: - - pos: -24.5,-35.5 - parent: 2 - type: Transform - - uid: 4082 - components: - - pos: -24.5,-36.5 - parent: 2 - type: Transform - - uid: 4083 - components: - - pos: -24.5,-37.5 - parent: 2 - type: Transform - - uid: 4084 - components: - - pos: -25.5,-36.5 - parent: 2 - type: Transform - - uid: 4085 - components: - - pos: -25.5,-35.5 - parent: 2 - type: Transform - - uid: 4086 - components: - - pos: -24.5,-38.5 - parent: 2 - type: Transform - - uid: 4087 - components: - - pos: -24.5,-39.5 - parent: 2 - type: Transform - - uid: 4088 - components: - - pos: -24.5,-42.5 - parent: 2 - type: Transform - - uid: 4089 - components: - - pos: -24.5,-40.5 - parent: 2 - type: Transform - - uid: 4090 - components: - - pos: -25.5,-32.5 - parent: 2 - type: Transform - - uid: 4091 - components: - - pos: -24.5,-41.5 - parent: 2 - type: Transform - - uid: 4092 - components: - - pos: -26.5,-41.5 - parent: 2 - type: Transform - - uid: 4093 - components: - - pos: -28.5,-41.5 - parent: 2 - type: Transform - - uid: 4094 - components: - - pos: -30.5,-41.5 - parent: 2 - type: Transform - - uid: 4095 - components: - - pos: -26.5,-42.5 - parent: 2 - type: Transform - - uid: 4096 - components: - - pos: -27.5,-42.5 - parent: 2 - type: Transform - - uid: 4097 - components: - - pos: -12.5,39.5 - parent: 2 - type: Transform - - uid: 4098 - components: - - pos: -13.5,39.5 - parent: 2 - type: Transform - - uid: 4099 - components: - - pos: -14.5,39.5 - parent: 2 - type: Transform - - uid: 4100 - components: - - pos: 1.5,29.5 - parent: 2 - type: Transform - - uid: 4101 - components: - - pos: 2.5,29.5 - parent: 2 - type: Transform - - uid: 4102 - components: - - pos: 31.5,21.5 - parent: 2 - type: Transform - - uid: 4103 - components: - - pos: 32.5,21.5 - parent: 2 - type: Transform - - uid: 4104 - components: - - pos: 33.5,21.5 - parent: 2 - type: Transform - - uid: 4105 - components: - - pos: 36.5,22.5 - parent: 2 - type: Transform - - uid: 4106 - components: - - pos: -27.5,-41.5 - parent: 2 - type: Transform - - uid: 4107 - components: - - pos: -25.5,-33.5 - parent: 2 - type: Transform - - uid: 4108 - components: - - pos: -25.5,-34.5 - parent: 2 - type: Transform - - uid: 4109 - components: - - pos: 36.5,23.5 - parent: 2 - type: Transform - - uid: 4110 - components: - - pos: 16.5,23.5 - parent: 2 - type: Transform - - uid: 4111 - components: - - pos: 16.5,24.5 - parent: 2 - type: Transform - - uid: 4112 - components: - - pos: 16.5,25.5 - parent: 2 - type: Transform - - uid: 4113 - components: - - pos: 16.5,26.5 - parent: 2 - type: Transform - - uid: 4114 - components: - - pos: 16.5,27.5 - parent: 2 - type: Transform - - uid: 4115 - components: - - pos: -29.5,34.5 - parent: 2 - type: Transform - - uid: 4116 - components: - - pos: -29.5,35.5 - parent: 2 - type: Transform - - uid: 4117 - components: - - pos: -31.5,26.5 - parent: 2 - type: Transform - - uid: 4118 - components: - - pos: -31.5,27.5 - parent: 2 - type: Transform - - uid: 4119 - components: - - pos: -31.5,25.5 - parent: 2 - type: Transform - - uid: 4120 - components: - - pos: -31.5,24.5 - parent: 2 - type: Transform - - uid: 4121 - components: - - pos: -31.5,23.5 - parent: 2 - type: Transform - - uid: 4122 - components: - - pos: -31.5,22.5 - parent: 2 - type: Transform - - uid: 4123 - components: - - pos: -30.5,22.5 - parent: 2 - type: Transform - - uid: 4124 - components: - - pos: -29.5,22.5 - parent: 2 - type: Transform - - uid: 4125 - components: - - pos: 36.5,24.5 - parent: 2 - type: Transform - - uid: 4126 - components: - - pos: -16.5,60.5 - parent: 2 - type: Transform - - uid: 4127 - components: - - pos: 36.5,25.5 - parent: 2 - type: Transform - - uid: 4128 - components: - - pos: 29.5,19.5 - parent: 2 - type: Transform - - uid: 4129 - components: - - pos: 29.5,21.5 - parent: 2 - type: Transform - - uid: 4130 - components: - - pos: 29.5,22.5 - parent: 2 - type: Transform - - uid: 4131 - components: - - pos: 29.5,23.5 - parent: 2 - type: Transform - - uid: 4132 - components: - - pos: 29.5,24.5 - parent: 2 - type: Transform - - uid: 4133 - components: - - pos: 29.5,25.5 - parent: 2 - type: Transform - - uid: 4134 - components: - - pos: 30.5,25.5 - parent: 2 - type: Transform - - uid: 4135 - components: - - pos: 30.5,26.5 - parent: 2 - type: Transform - - uid: 4136 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-7.5 - parent: 2 - type: Transform - - uid: 4137 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-6.5 - parent: 2 - type: Transform - - uid: 4138 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-5.5 - parent: 2 - type: Transform - - uid: 4139 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-5.5 + - pos: -25.5,-42.5 parent: 2 type: Transform - uid: 4140 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-5.5 - parent: 2 - type: Transform - - uid: 4141 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-5.5 - parent: 2 - type: Transform - - uid: 4142 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-5.5 - parent: 2 - type: Transform - - uid: 4143 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,5.5 - parent: 2 - type: Transform - - uid: 4144 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,6.5 - parent: 2 - type: Transform - - uid: 4145 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,7.5 - parent: 2 - type: Transform - - uid: 4146 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,8.5 - parent: 2 - type: Transform - - uid: 4147 - components: - - pos: -25.5,-38.5 - parent: 2 - type: Transform - - uid: 4148 - components: - - pos: -25.5,-42.5 - parent: 2 - type: Transform - - uid: 4149 components: - pos: -25.5,-41.5 parent: 2 type: Transform - - uid: 4150 + - uid: 4141 components: - pos: -25.5,-40.5 parent: 2 type: Transform - - uid: 4151 + - uid: 4142 components: - pos: -25.5,-39.5 parent: 2 type: Transform - - uid: 4152 + - uid: 4143 components: - pos: -25.5,-37.5 parent: 2 type: Transform - - uid: 4153 + - uid: 4144 components: - pos: -15.5,-41.5 parent: 2 type: Transform - - uid: 4154 + - uid: 4145 components: - pos: -14.5,-42.5 parent: 2 type: Transform - - uid: 4155 + - uid: 4146 components: - pos: -17.5,-41.5 parent: 2 type: Transform - - uid: 4156 + - uid: 4147 components: - pos: -15.5,-42.5 parent: 2 type: Transform - - uid: 4157 + - uid: 4148 components: - pos: -17.5,-30.5 parent: 2 type: Transform - - uid: 4158 + - uid: 4149 components: - pos: -17.5,-32.5 parent: 2 type: Transform - - uid: 4159 + - uid: 4150 components: - pos: -17.5,-31.5 parent: 2 type: Transform - - uid: 4160 + - uid: 4151 components: - pos: -17.5,-29.5 parent: 2 type: Transform - - uid: 4161 + - uid: 4152 components: - pos: -17.5,-28.5 parent: 2 type: Transform - - uid: 4162 + - uid: 4153 components: - pos: -16.5,-41.5 parent: 2 type: Transform - - uid: 4163 + - uid: 4154 components: - pos: -16.5,-42.5 parent: 2 type: Transform - - uid: 4164 + - uid: 4155 components: - pos: -20.5,-29.5 parent: 2 type: Transform - - uid: 4165 + - uid: 4156 components: - pos: -11.5,-42.5 parent: 2 type: Transform - - uid: 4166 + - uid: 4157 components: - pos: -10.5,-42.5 parent: 2 type: Transform - - uid: 4167 + - uid: 4158 components: - pos: -21.5,-30.5 parent: 2 type: Transform - - uid: 4168 + - uid: 4159 components: - pos: -19.5,-29.5 parent: 2 type: Transform - - uid: 4169 + - uid: 4160 components: - pos: -21.5,-42.5 parent: 2 type: Transform - - uid: 4170 + - uid: 4161 components: - pos: -21.5,-41.5 parent: 2 type: Transform - - uid: 4171 + - uid: 4162 components: - pos: -22.5,-41.5 parent: 2 type: Transform - - uid: 4172 + - uid: 4163 components: - pos: -24.5,-33.5 parent: 2 type: Transform - - uid: 4173 + - uid: 4164 components: - pos: -23.5,-42.5 parent: 2 type: Transform - - uid: 4174 + - uid: 4165 components: - pos: -24.5,-32.5 parent: 2 type: Transform - - uid: 4175 + - uid: 4166 components: - pos: -23.5,-41.5 parent: 2 type: Transform - - uid: 4176 + - uid: 4167 components: - pos: -22.5,-42.5 parent: 2 type: Transform - - uid: 4177 + - uid: 4168 components: - pos: -24.5,-34.5 parent: 2 type: Transform - - uid: 4178 + - uid: 4169 components: - pos: -17.5,-42.5 parent: 2 type: Transform - - uid: 4179 + - uid: 4170 components: - pos: -19.5,-30.5 parent: 2 type: Transform - - uid: 4180 + - uid: 4171 components: - pos: -11.5,-41.5 parent: 2 type: Transform - - uid: 4181 + - uid: 4172 components: - pos: -10.5,-41.5 parent: 2 type: Transform - - uid: 4182 + - uid: 4173 components: - pos: -17.5,-26.5 parent: 2 type: Transform - - uid: 4183 + - uid: 4174 components: - pos: -14.5,-41.5 parent: 2 type: Transform - - uid: 4184 + - uid: 4175 components: - pos: -20.5,-30.5 parent: 2 type: Transform - - uid: 4185 + - uid: 4176 components: - pos: -21.5,-29.5 parent: 2 type: Transform - - uid: 4186 + - uid: 4177 components: - pos: -17.5,-27.5 parent: 2 type: Transform - - uid: 4187 + - uid: 4178 components: - pos: -12.5,-42.5 parent: 2 type: Transform - - uid: 4188 + - uid: 4179 components: - pos: -18.5,-41.5 parent: 2 type: Transform - - uid: 4189 + - uid: 4180 components: - pos: -13.5,-42.5 parent: 2 type: Transform - - uid: 4190 + - uid: 4181 components: - pos: -13.5,-41.5 parent: 2 type: Transform - - uid: 4191 + - uid: 4182 components: - pos: -12.5,-41.5 parent: 2 type: Transform - - uid: 4192 + - uid: 4183 components: - pos: -18.5,-42.5 parent: 2 type: Transform - - uid: 4193 + - uid: 4184 components: - pos: -19.5,-41.5 parent: 2 type: Transform - - uid: 4194 + - uid: 4185 components: - pos: -29.5,-42.5 parent: 2 type: Transform - - uid: 4195 + - uid: 4186 components: - pos: -29.5,-41.5 parent: 2 type: Transform - - uid: 4196 + - uid: 4187 components: - pos: -31.5,-42.5 parent: 2 type: Transform - - uid: 4197 + - uid: 4188 components: - pos: -30.5,-42.5 parent: 2 type: Transform - - uid: 4198 + - uid: 4189 components: - pos: -28.5,-42.5 parent: 2 type: Transform - - uid: 4199 + - uid: 4190 components: - pos: -31.5,-41.5 parent: 2 type: Transform - - uid: 4200 + - uid: 4191 components: - pos: -32.5,-42.5 parent: 2 type: Transform - - uid: 4201 + - uid: 4192 components: - pos: -32.5,-41.5 parent: 2 type: Transform - - uid: 4202 + - uid: 4193 components: - rot: -1.5707963267948966 rad pos: -21.5,-23.5 parent: 2 type: Transform - - uid: 4203 + - uid: 4194 components: - rot: -1.5707963267948966 rad pos: -19.5,-24.5 parent: 2 type: Transform - - uid: 4204 + - uid: 4195 components: - rot: -1.5707963267948966 rad pos: -18.5,-24.5 parent: 2 type: Transform - - uid: 4205 + - uid: 4196 components: - rot: -1.5707963267948966 rad pos: -20.5,-23.5 parent: 2 type: Transform - - uid: 4206 + - uid: 4197 components: - rot: -1.5707963267948966 rad pos: -18.5,-23.5 parent: 2 type: Transform - - uid: 4207 + - uid: 4198 components: - rot: -1.5707963267948966 rad pos: -19.5,-23.5 parent: 2 type: Transform - - uid: 4208 + - uid: 4199 components: - rot: -1.5707963267948966 rad pos: -21.5,-24.5 parent: 2 type: Transform - - uid: 4209 + - uid: 4200 components: - rot: -1.5707963267948966 rad pos: -17.5,-23.5 parent: 2 type: Transform - - uid: 4210 + - uid: 4201 components: - rot: -1.5707963267948966 rad pos: -20.5,-24.5 parent: 2 type: Transform - - uid: 4211 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-12.5 - parent: 2 - type: Transform - - uid: 4212 + - uid: 4203 components: - rot: 3.141592653589793 rad pos: 12.5,30.5 parent: 2 type: Transform - - uid: 4213 + - uid: 4204 components: - rot: 3.141592653589793 rad pos: 12.5,31.5 parent: 2 type: Transform - - uid: 4214 + - uid: 4205 components: - rot: 1.5707963267948966 rad pos: 32.5,-3.5 parent: 2 type: Transform - - uid: 4215 + - uid: 4206 components: - pos: 27.5,-5.5 parent: 2 type: Transform - - uid: 4216 + - uid: 4207 components: - pos: 28.5,-5.5 parent: 2 type: Transform - - uid: 4217 + - uid: 4208 components: - pos: 28.5,-6.5 parent: 2 type: Transform - - uid: 4218 + - uid: 4209 components: - pos: 28.5,-7.5 parent: 2 type: Transform - - uid: 4219 + - uid: 4210 components: - pos: 29.5,-5.5 parent: 2 type: Transform - - uid: 4220 + - uid: 4211 components: - pos: 29.5,-7.5 parent: 2 type: Transform - - uid: 4221 + - uid: 4212 components: - pos: 30.5,-7.5 parent: 2 type: Transform - - uid: 4222 + - uid: 4213 components: - pos: 31.5,-7.5 parent: 2 type: Transform - - uid: 4223 - components: - - pos: 30.5,-5.5 - parent: 2 - type: Transform - - uid: 4224 + - uid: 4214 components: - - pos: 31.5,-5.5 + - pos: 30.5,-5.5 parent: 2 type: Transform - - uid: 4225 + - uid: 4215 components: - - rot: 1.5707963267948966 rad - pos: 30.5,-9.5 + - pos: 31.5,-5.5 parent: 2 type: Transform - - uid: 4226 + - uid: 4217 components: - pos: 30.5,-4.5 parent: 2 type: Transform - - uid: 4227 + - uid: 4218 components: - pos: 30.5,-3.5 parent: 2 type: Transform - - uid: 4228 + - uid: 4219 components: - pos: 31.5,-4.5 parent: 2 type: Transform - - uid: 4229 + - uid: 4220 components: - pos: 31.5,-3.5 parent: 2 type: Transform - - uid: 4230 + - uid: 4221 components: - pos: 31.5,-6.5 parent: 2 type: Transform - - uid: 4231 + - uid: 4222 components: - pos: 30.5,-6.5 parent: 2 @@ -27074,533 +27101,652 @@ entities: - uid: 4232 components: - rot: 1.5707963267948966 rad - pos: 30.5,-10.5 + pos: 40.5,-13.5 parent: 2 type: Transform - uid: 4233 components: - rot: 1.5707963267948966 rad - pos: 30.5,-11.5 + pos: 39.5,-13.5 parent: 2 type: Transform - uid: 4234 components: - rot: 1.5707963267948966 rad - pos: 34.5,-12.5 + pos: 38.5,-13.5 parent: 2 type: Transform - uid: 4235 components: - rot: 1.5707963267948966 rad - pos: 35.5,-12.5 + pos: 37.5,-13.5 parent: 2 type: Transform - uid: 4236 components: - rot: 1.5707963267948966 rad - pos: 36.5,-12.5 + pos: 36.5,-13.5 parent: 2 type: Transform - uid: 4237 components: - rot: 1.5707963267948966 rad - pos: 37.5,-12.5 + pos: 35.5,-13.5 parent: 2 type: Transform - uid: 4238 components: - rot: 1.5707963267948966 rad - pos: 38.5,-12.5 + pos: 34.5,-13.5 parent: 2 type: Transform - uid: 4239 components: - rot: 1.5707963267948966 rad - pos: 39.5,-12.5 + pos: 33.5,-13.5 parent: 2 type: Transform - uid: 4240 components: - rot: 1.5707963267948966 rad - pos: 40.5,-12.5 + pos: 32.5,-13.5 parent: 2 type: Transform - uid: 4241 components: - - rot: 1.5707963267948966 rad - pos: 40.5,-13.5 + - pos: 41.5,-12.5 parent: 2 type: Transform - uid: 4242 components: - rot: 1.5707963267948966 rad - pos: 39.5,-13.5 + pos: 41.5,-13.5 parent: 2 type: Transform - uid: 4243 components: - rot: 1.5707963267948966 rad - pos: 38.5,-13.5 + pos: 42.5,-12.5 parent: 2 type: Transform - uid: 4244 components: - rot: 1.5707963267948966 rad - pos: 37.5,-13.5 + pos: 42.5,-13.5 parent: 2 type: Transform - uid: 4245 components: - rot: 1.5707963267948966 rad - pos: 36.5,-13.5 + pos: 43.5,-12.5 parent: 2 type: Transform - uid: 4246 components: - rot: 1.5707963267948966 rad - pos: 35.5,-13.5 + pos: 43.5,-13.5 parent: 2 type: Transform - uid: 4247 components: - rot: 1.5707963267948966 rad - pos: 34.5,-13.5 + pos: 41.5,-15.5 parent: 2 type: Transform - uid: 4248 components: - rot: 1.5707963267948966 rad - pos: 33.5,-13.5 + pos: 43.5,-11.5 parent: 2 type: Transform - uid: 4249 components: - rot: 1.5707963267948966 rad - pos: 32.5,-13.5 + pos: 43.5,-10.5 parent: 2 type: Transform - uid: 4250 components: - rot: 1.5707963267948966 rad - pos: 41.5,-12.5 + pos: 42.5,-11.5 parent: 2 type: Transform - uid: 4251 components: - rot: 1.5707963267948966 rad - pos: 41.5,-13.5 + pos: 42.5,-10.5 parent: 2 type: Transform - uid: 4252 components: - rot: 1.5707963267948966 rad - pos: 42.5,-12.5 + pos: 42.5,-9.5 parent: 2 type: Transform - uid: 4253 components: - rot: 1.5707963267948966 rad - pos: 42.5,-13.5 + pos: 42.5,-14.5 parent: 2 type: Transform - uid: 4254 components: - rot: 1.5707963267948966 rad - pos: 43.5,-12.5 + pos: 42.5,-15.5 parent: 2 type: Transform - uid: 4255 components: - rot: 1.5707963267948966 rad - pos: 43.5,-13.5 + pos: 42.5,-16.5 parent: 2 type: Transform - uid: 4256 components: - rot: 1.5707963267948966 rad - pos: 41.5,-15.5 + pos: 42.5,-17.5 parent: 2 type: Transform - uid: 4257 components: - rot: 1.5707963267948966 rad - pos: 43.5,-11.5 + pos: 42.5,-18.5 parent: 2 type: Transform - uid: 4258 components: - rot: 1.5707963267948966 rad - pos: 43.5,-10.5 + pos: 43.5,-14.5 parent: 2 type: Transform - uid: 4259 components: - rot: 1.5707963267948966 rad - pos: 42.5,-11.5 + pos: 43.5,-15.5 parent: 2 type: Transform - uid: 4260 components: - rot: 1.5707963267948966 rad - pos: 42.5,-10.5 + pos: 43.5,-16.5 parent: 2 type: Transform - uid: 4261 components: - rot: 1.5707963267948966 rad - pos: 42.5,-9.5 + pos: 43.5,-17.5 parent: 2 type: Transform - uid: 4262 components: - rot: 1.5707963267948966 rad - pos: 42.5,-14.5 + pos: 43.5,-18.5 parent: 2 type: Transform - uid: 4263 components: - rot: 1.5707963267948966 rad - pos: 42.5,-15.5 + pos: 43.5,-9.5 parent: 2 type: Transform - uid: 4264 components: - - rot: 1.5707963267948966 rad - pos: 42.5,-16.5 + - pos: 44.5,-9.5 parent: 2 type: Transform - uid: 4265 components: - - rot: 1.5707963267948966 rad - pos: 42.5,-17.5 + - pos: 44.5,-10.5 parent: 2 type: Transform - uid: 4266 components: - - rot: 1.5707963267948966 rad - pos: 42.5,-18.5 + - pos: 44.5,-11.5 parent: 2 type: Transform - uid: 4267 components: - - rot: 1.5707963267948966 rad - pos: 43.5,-14.5 + - pos: 44.5,-12.5 parent: 2 type: Transform - uid: 4268 components: - rot: 1.5707963267948966 rad - pos: 43.5,-15.5 + pos: 32.5,-4.5 parent: 2 type: Transform - - uid: 4269 + - uid: 4270 components: - - rot: 1.5707963267948966 rad - pos: 43.5,-16.5 + - pos: 10.5,28.5 parent: 2 type: Transform - - uid: 4270 + - uid: 7111 components: - - rot: 1.5707963267948966 rad - pos: 43.5,-17.5 + - pos: -20.5,60.5 parent: 2 type: Transform - - uid: 4271 + - uid: 7112 components: - - rot: 1.5707963267948966 rad - pos: 43.5,-18.5 + - pos: -20.5,53.5 parent: 2 type: Transform - - uid: 4272 + - uid: 7155 components: - - rot: 1.5707963267948966 rad - pos: 43.5,-9.5 + - pos: -20.5,61.5 parent: 2 type: Transform - - uid: 4273 + - uid: 7157 components: - - pos: 44.5,-9.5 + - pos: -12.5,53.5 parent: 2 type: Transform - - uid: 4274 + - uid: 7162 components: - - pos: 44.5,-10.5 + - pos: -20.5,64.5 parent: 2 type: Transform - - uid: 4275 + - uid: 7165 components: - - pos: 44.5,-11.5 + - pos: -20.5,55.5 parent: 2 type: Transform - - uid: 4276 + - uid: 7167 components: - - pos: 44.5,-12.5 + - pos: -20.5,54.5 parent: 2 type: Transform - - uid: 4277 + - uid: 7168 components: - - rot: 1.5707963267948966 rad - pos: 32.5,-4.5 + - pos: -17.5,57.5 parent: 2 type: Transform - - uid: 4278 + - uid: 7257 components: - - rot: 3.141592653589793 rad - pos: 30.5,-13.5 + - pos: -20.5,59.5 parent: 2 type: Transform - - uid: 4279 + - uid: 7258 components: - - pos: 10.5,28.5 + - pos: -21.5,61.5 + parent: 2 + type: Transform + - uid: 7259 + components: + - pos: -22.5,61.5 + parent: 2 + type: Transform + - uid: 7268 + components: + - pos: -20.5,57.5 + parent: 2 + type: Transform + - uid: 7298 + components: + - pos: -19.5,57.5 + parent: 2 + type: Transform + - uid: 7299 + components: + - pos: -18.5,57.5 + parent: 2 + type: Transform + - uid: 7300 + components: + - pos: -21.5,57.5 + parent: 2 + type: Transform + - uid: 7301 + components: + - pos: -20.5,56.5 + parent: 2 + type: Transform + - uid: 7305 + components: + - pos: -27.5,57.5 + parent: 2 + type: Transform + - uid: 7306 + components: + - pos: -20.5,58.5 + parent: 2 + type: Transform + - uid: 7494 + components: + - pos: -16.5,57.5 + parent: 2 + type: Transform + - uid: 7526 + components: + - pos: -14.5,61.5 + parent: 2 + type: Transform + - uid: 7677 + components: + - pos: -20.5,34.5 + parent: 2 + type: Transform + - uid: 8771 + components: + - pos: -24.5,57.5 + parent: 2 + type: Transform + - uid: 8776 + components: + - pos: -19.5,61.5 + parent: 2 + type: Transform + - uid: 8777 + components: + - pos: -20.5,61.5 + parent: 2 + type: Transform + - uid: 8778 + components: + - pos: -20.5,62.5 + parent: 2 + type: Transform + - uid: 8779 + components: + - pos: -20.5,46.5 + parent: 2 + type: Transform + - uid: 8781 + components: + - pos: -22.5,57.5 + parent: 2 + type: Transform + - uid: 8799 + components: + - pos: -17.5,53.5 + parent: 2 + type: Transform + - uid: 8803 + components: + - pos: -20.5,51.5 + parent: 2 + type: Transform + - uid: 8806 + components: + - pos: -23.5,57.5 + parent: 2 + type: Transform + - uid: 8807 + components: + - pos: -26.5,57.5 + parent: 2 + type: Transform + - uid: 8810 + components: + - pos: -25.5,57.5 + parent: 2 + type: Transform + - uid: 8811 + components: + - pos: -20.5,50.5 + parent: 2 + type: Transform + - uid: 8818 + components: + - pos: -20.5,63.5 + parent: 2 + type: Transform + - uid: 8819 + components: + - pos: -20.5,47.5 + parent: 2 + type: Transform + - uid: 8820 + components: + - pos: -20.5,52.5 parent: 2 type: Transform - proto: Chair entities: - - uid: 4280 + - uid: 4271 components: - rot: 3.141592653589793 rad pos: -17.5,17.5 parent: 2 type: Transform - - uid: 4281 + - uid: 4272 components: - rot: 3.141592653589793 rad pos: -18.5,17.5 parent: 2 type: Transform - - uid: 4282 + - uid: 4273 components: - rot: 1.5707963267948966 rad pos: 2.5,1.5 parent: 2 type: Transform - - uid: 4283 + - uid: 4274 components: - rot: 1.5707963267948966 rad pos: 2.5,2.5 parent: 2 type: Transform - - uid: 4284 + - uid: 4275 components: - pos: 13.5,-16.5 parent: 2 type: Transform - - uid: 4285 + - uid: 4276 components: - rot: 3.141592653589793 rad pos: -16.5,-8.5 parent: 2 type: Transform - - uid: 4286 + - uid: 4277 components: - rot: 3.141592653589793 rad pos: -14.5,-8.5 parent: 2 type: Transform - - uid: 4287 + - uid: 4278 components: - rot: 3.141592653589793 rad pos: -28.5,-1.5 parent: 2 type: Transform - - uid: 4288 + - uid: 4279 components: - rot: 3.141592653589793 rad pos: 4.5,-29.5 parent: 2 type: Transform - - uid: 4289 + - uid: 4280 components: - pos: 11.5,-24.5 parent: 2 type: Transform - - uid: 4290 + - uid: 4281 components: - rot: 1.5707963267948966 rad pos: 18.5,-18.5 parent: 2 type: Transform - - uid: 4291 + - uid: 4282 components: - rot: 1.5707963267948966 rad pos: 18.5,-19.5 parent: 2 type: Transform - - uid: 4292 + - uid: 4283 components: - pos: 31.5,29.5 parent: 2 type: Transform - - uid: 4293 + - uid: 4284 components: - pos: 13.5,-26.5 parent: 2 type: Transform - - uid: 4294 + - uid: 4285 components: - rot: 3.141592653589793 rad pos: 13.5,-28.5 parent: 2 type: Transform - - uid: 4295 + - uid: 4286 components: - pos: -30.5,-5.5 parent: 2 type: Transform - - uid: 4296 + - uid: 4287 components: - pos: -28.5,1.5 parent: 2 type: Transform - - uid: 4297 + - uid: 4288 components: - pos: 36.5,15.5 parent: 2 type: Transform - - uid: 4298 + - uid: 4289 components: - rot: 3.141592653589793 rad pos: -25.5,-21.5 parent: 2 type: Transform - - uid: 4299 + - uid: 4290 components: - rot: 3.141592653589793 rad pos: -30.5,-1.5 parent: 2 type: Transform - - uid: 4300 + - uid: 4291 components: - rot: 1.5707963267948966 rad pos: 18.5,14.5 parent: 2 type: Transform - - uid: 4301 + - uid: 4292 components: - rot: 1.5707963267948966 rad pos: 18.5,13.5 parent: 2 type: Transform - - uid: 4302 + - uid: 4293 components: - pos: -28.5,-2.5 parent: 2 type: Transform - - uid: 4303 + - uid: 4294 components: - pos: -29.5,-2.5 parent: 2 type: Transform - - uid: 4304 + - uid: 4295 components: - rot: 3.141592653589793 rad pos: -29.5,-4.5 parent: 2 type: Transform - - uid: 4305 + - uid: 4296 components: - rot: 3.141592653589793 rad pos: -28.5,-4.5 parent: 2 type: Transform - - uid: 4306 + - uid: 4297 components: - rot: 3.141592653589793 rad pos: -26.5,-8.5 parent: 2 type: Transform - - uid: 4307 + - uid: 4298 components: - rot: 3.141592653589793 rad pos: -28.5,-8.5 parent: 2 type: Transform - - uid: 4308 + - uid: 4299 components: - pos: -28.5,-5.5 parent: 2 type: Transform - - uid: 4309 + - uid: 4300 components: - pos: -25.5,-19.5 parent: 2 type: Transform - - uid: 4310 + - uid: 4301 components: - rot: -1.5707963267948966 rad pos: -24.5,3.5 parent: 2 type: Transform - - uid: 4311 + - uid: 4302 components: - rot: -1.5707963267948966 rad pos: -25.5,14.5 parent: 2 type: Transform - - uid: 4312 + - uid: 4303 components: - rot: -1.5707963267948966 rad pos: -25.5,12.5 parent: 2 type: Transform - - uid: 4313 + - uid: 4304 components: - rot: -1.5707963267948966 rad pos: -24.5,5.5 parent: 2 type: Transform - - uid: 4314 + - uid: 4305 components: - pos: 33.5,14.5 parent: 2 type: Transform - - uid: 4315 + - uid: 4306 components: - rot: 1.5707963267948966 rad pos: 10.5,-25.5 parent: 2 type: Transform - - uid: 4316 + - uid: 4307 components: - pos: -8.5,35.5 parent: 2 type: Transform - - uid: 4317 + - uid: 4308 components: - rot: 3.141592653589793 rad pos: -8.5,33.5 parent: 2 type: Transform - - uid: 4318 + - uid: 4309 components: - pos: -6.5,35.5 parent: 2 type: Transform - - uid: 4319 + - uid: 4310 components: - rot: 3.141592653589793 rad pos: -6.5,33.5 parent: 2 type: Transform - - uid: 4320 + - uid: 4311 components: - rot: 1.5707963267948966 rad pos: 17.5,-2.5 parent: 2 type: Transform - - uid: 4321 + - uid: 4312 components: - rot: 1.5707963267948966 rad pos: 18.5,16.5 parent: 2 type: Transform - - uid: 4322 + - uid: 4313 components: - rot: 1.5707963267948966 rad pos: -20.5,-19.5 parent: 2 type: Transform - - uid: 4323 + - uid: 4314 components: - rot: 1.5707963267948966 rad pos: -20.5,-20.5 @@ -27608,31 +27754,31 @@ entities: type: Transform - proto: ChairFolding entities: - - uid: 4324 + - uid: 4315 components: - rot: 1.5707963267948966 rad pos: 0.5,-1.5 parent: 2 type: Transform - - uid: 4325 + - uid: 4316 components: - rot: 3.141592653589793 rad pos: -33.5,31.5 parent: 2 type: Transform - - uid: 4326 + - uid: 4317 components: - rot: 3.141592653589793 rad pos: -32.5,31.5 parent: 2 type: Transform - - uid: 4327 + - uid: 4318 components: - rot: -1.5707963267948966 rad pos: -31.5,32.5 parent: 2 type: Transform - - uid: 4328 + - uid: 4319 components: - rot: -1.5707963267948966 rad pos: -31.5,33.5 @@ -27640,137 +27786,137 @@ entities: type: Transform - proto: ChairOfficeDark entities: - - uid: 4329 + - uid: 4320 components: - rot: 1.5707963267948966 rad pos: 17.5,-5.5 parent: 2 type: Transform - - uid: 4330 + - uid: 4321 components: - rot: -1.5707963267948966 rad pos: 1.5,-23.5 parent: 2 type: Transform - - uid: 4331 + - uid: 4322 components: - rot: 1.5707963267948966 rad pos: -2.5,-21.5 parent: 2 type: Transform - - uid: 4332 + - uid: 4323 components: - rot: 1.5707963267948966 rad pos: -2.5,-23.5 parent: 2 type: Transform - - uid: 4333 + - uid: 4324 components: - rot: -1.5707963267948966 rad pos: 1.5,-21.5 parent: 2 type: Transform - - uid: 4334 + - uid: 4325 components: - pos: 8.5,-25.5 parent: 2 type: Transform - - uid: 4335 + - uid: 4326 components: - pos: 7.5,-25.5 parent: 2 type: Transform - - uid: 4336 + - uid: 4327 components: - rot: -1.5707963267948966 rad pos: 20.5,-19.5 parent: 2 type: Transform - - uid: 4337 + - uid: 4328 components: - pos: 9.5,-20.5 parent: 2 type: Transform - - uid: 4338 + - uid: 4329 components: - pos: 5.5,-25.5 parent: 2 type: Transform - - uid: 4339 + - uid: 4330 components: - rot: -1.5707963267948966 rad pos: 20.5,13.5 parent: 2 type: Transform - - uid: 4340 + - uid: 4331 components: - rot: 3.141592653589793 rad pos: 8.5,-14.5 parent: 2 type: Transform - - uid: 4341 + - uid: 4332 components: - rot: -1.5707963267948966 rad pos: 6.5,-4.5 parent: 2 type: Transform - - uid: 4342 + - uid: 4333 components: - pos: 4.5,-25.5 parent: 2 type: Transform - - uid: 4343 + - uid: 4334 components: - rot: -1.5707963267948966 rad pos: -19.5,-6.5 parent: 2 type: Transform - - uid: 4344 + - uid: 4335 components: - rot: -1.5707963267948966 rad pos: -28.5,-24.5 parent: 2 type: Transform - - uid: 4345 + - uid: 4336 components: - rot: 3.141592653589793 rad pos: -24.5,-28.5 parent: 2 type: Transform - - uid: 4346 + - uid: 4337 components: - pos: -24.5,-26.5 parent: 2 type: Transform - - uid: 4347 + - uid: 4338 components: - rot: -1.5707963267948966 rad pos: 30.5,29.5 parent: 2 type: Transform - - uid: 4348 + - uid: 4339 components: - rot: -1.5707963267948966 rad pos: 13.5,13.5 parent: 2 type: Transform - - uid: 4349 + - uid: 4340 components: - pos: -5.5,26.5 parent: 2 type: Transform - - uid: 4350 + - uid: 4341 components: - rot: -1.5707963267948966 rad pos: 11.5,-0.5 parent: 2 type: Transform - - uid: 4351 + - uid: 4342 components: - pos: 24.5,13.5 parent: 2 type: Transform - - uid: 4352 + - uid: 4343 components: - rot: 3.141592653589793 rad pos: 31.5,-4.5 @@ -27778,218 +27924,218 @@ entities: type: Transform - proto: ChairOfficeLight entities: - - uid: 4353 + - uid: 4344 components: - pos: -18.5,19.5 parent: 2 type: Transform - - uid: 4354 + - uid: 4345 components: - rot: 1.5707963267948966 rad pos: -15.5,12.5 parent: 2 type: Transform - - uid: 4355 + - uid: 4346 components: - rot: 1.5707963267948966 rad pos: -2.5,-22.5 parent: 2 type: Transform - - uid: 4356 + - uid: 4347 components: - rot: -1.5707963267948966 rad pos: 1.5,-22.5 parent: 2 type: Transform - - uid: 4357 + - uid: 4348 components: - pos: -23.5,21.5 parent: 2 type: Transform - - uid: 4358 + - uid: 4349 components: - pos: -0.5,-20.5 parent: 2 type: Transform - proto: ChairWood entities: - - uid: 4359 + - uid: 4350 components: - pos: -14.5,-14.5 parent: 2 type: Transform - - uid: 4360 + - uid: 4351 components: - rot: -1.5707963267948966 rad pos: -5.5,-1.5 parent: 2 type: Transform - - uid: 4361 + - uid: 4352 components: - rot: -1.5707963267948966 rad pos: -1.5,-2.5 parent: 2 type: Transform - - uid: 4362 + - uid: 4353 components: - rot: -1.5707963267948966 rad pos: -5.5,-2.5 parent: 2 type: Transform - - uid: 4363 + - uid: 4354 components: - rot: 1.5707963267948966 rad pos: -3.5,-2.5 parent: 2 type: Transform - - uid: 4364 + - uid: 4355 components: - rot: 1.5707963267948966 rad pos: -7.5,-2.5 parent: 2 type: Transform - - uid: 4365 + - uid: 4356 components: - rot: -1.5707963267948966 rad pos: 11.5,-27.5 parent: 2 type: Transform - - uid: 4366 + - uid: 4357 components: - rot: -1.5707963267948966 rad pos: 10.5,-27.5 parent: 2 type: Transform - - uid: 4367 + - uid: 4358 components: - rot: -1.5707963267948966 rad pos: 10.5,-28.5 parent: 2 type: Transform - - uid: 4368 + - uid: 4359 components: - rot: -1.5707963267948966 rad pos: 11.5,-28.5 parent: 2 type: Transform - - uid: 4369 + - uid: 4360 components: - rot: -1.5707963267948966 rad pos: 10.5,-29.5 parent: 2 type: Transform - - uid: 4370 + - uid: 4361 components: - rot: 3.141592653589793 rad pos: 27.5,-11.5 parent: 2 type: Transform - - uid: 4371 + - uid: 4362 components: - rot: -1.5707963267948966 rad pos: 11.5,-29.5 parent: 2 type: Transform - - uid: 4372 + - uid: 4363 components: - pos: 27.5,-9.5 parent: 2 type: Transform - - uid: 4373 + - uid: 4364 components: - rot: 3.141592653589793 rad pos: -8.5,21.5 parent: 2 type: Transform - - uid: 4374 + - uid: 4365 components: - rot: 1.5707963267948966 rad pos: -7.5,-1.5 parent: 2 type: Transform - - uid: 4375 + - uid: 4366 components: - rot: 3.141592653589793 rad pos: -8.5,20.5 parent: 2 type: Transform - - uid: 4376 + - uid: 4367 components: - rot: 3.141592653589793 rad pos: -9.5,21.5 parent: 2 type: Transform - - uid: 4377 + - uid: 4368 components: - rot: 3.141592653589793 rad pos: -19.5,-14.5 parent: 2 type: Transform - - uid: 4378 + - uid: 4369 components: - rot: 1.5707963267948966 rad pos: -20.5,-12.5 parent: 2 type: Transform - - uid: 4379 + - uid: 4370 components: - pos: -18.5,-11.5 parent: 2 type: Transform - - uid: 4380 + - uid: 4371 components: - rot: -1.5707963267948966 rad pos: -17.5,-13.5 parent: 2 type: Transform - - uid: 4381 + - uid: 4372 components: - rot: 3.141592653589793 rad pos: -9.5,20.5 parent: 2 type: Transform - - uid: 4382 + - uid: 4373 components: - pos: 38.5,26.5 parent: 2 type: Transform - - uid: 4383 + - uid: 4374 components: - rot: 3.141592653589793 rad pos: 38.5,24.5 parent: 2 type: Transform - - uid: 4384 + - uid: 4375 components: - rot: -1.5707963267948966 rad pos: 32.5,20.5 parent: 2 type: Transform - - uid: 4385 + - uid: 4376 components: - rot: 3.141592653589793 rad pos: -5.5,21.5 parent: 2 type: Transform - - uid: 4386 + - uid: 4377 components: - rot: 3.141592653589793 rad pos: -5.5,20.5 parent: 2 type: Transform - - uid: 4387 + - uid: 4378 components: - rot: 3.141592653589793 rad pos: -4.5,21.5 parent: 2 type: Transform - - uid: 4388 + - uid: 4379 components: - rot: 3.141592653589793 rad pos: -4.5,20.5 parent: 2 type: Transform - - uid: 4389 + - uid: 4380 components: - rot: 1.5707963267948966 rad pos: -15.5,-15.5 @@ -27997,50 +28143,50 @@ entities: type: Transform - proto: chem_master entities: - - uid: 4390 + - uid: 4381 components: - pos: -14.5,13.5 parent: 2 type: Transform - - uid: 4391 + - uid: 4382 components: - pos: -2.5,10.5 parent: 2 type: Transform - proto: ChemDispenser entities: - - uid: 4392 + - uid: 4383 components: - pos: -14.5,12.5 parent: 2 type: Transform - proto: ChemistryHotplate entities: - - uid: 4393 + - uid: 4384 components: - pos: -7.5,31.5 parent: 2 type: Transform - - uid: 4394 + - uid: 4385 components: - pos: -16.5,12.5 parent: 2 type: Transform - proto: ChessBoard entities: - - uid: 4395 + - uid: 4386 components: - pos: 1.5024004,4.570645 parent: 2 type: Transform - - uid: 4396 + - uid: 4387 components: - pos: -6.4991946,34.571983 parent: 2 type: Transform - proto: ChurchOrganInstrument entities: - - uid: 4397 + - uid: 4388 components: - rot: 1.5707963267948966 rad pos: -10.5,22.5 @@ -28048,269 +28194,283 @@ entities: type: Transform - proto: CigarCase entities: - - uid: 4398 + - uid: 4389 components: - pos: 26.35321,-21.272463 parent: 2 type: Transform - proto: CigarGoldCase entities: - - uid: 4399 + - uid: 4390 components: - pos: -13.629543,-30.506866 parent: 2 type: Transform - proto: CigPackGreen entities: - - uid: 4400 + - uid: 4391 components: - pos: -28.33635,-18.319086 parent: 2 type: Transform - proto: CircuitImprinter entities: - - uid: 4401 + - uid: 4392 components: - pos: -7.5,27.5 parent: 2 type: Transform +- proto: CleanerDispenser + entities: + - uid: 10858 + components: + - pos: 6.5,11.5 + parent: 2 + type: Transform - proto: CloningPod entities: - - uid: 4402 + - uid: 4393 components: - pos: -23.5,14.5 parent: 2 type: Transform - proto: ClosetBombFilled entities: - - uid: 4403 + - uid: 4394 components: - pos: 10.5,-10.5 parent: 2 type: Transform - proto: ClosetChefFilled entities: - - uid: 4404 + - uid: 4395 components: - pos: -6.5,0.5 parent: 2 type: Transform - proto: ClosetEmergencyFilledRandom entities: - - uid: 4405 + - uid: 4396 components: - pos: 18.5,8.5 parent: 2 type: Transform - - uid: 4406 + - uid: 4397 components: - pos: -25.5,22.5 parent: 2 type: Transform - - uid: 4407 + - uid: 4398 components: - pos: -13.5,16.5 parent: 2 type: Transform - - uid: 4408 + - uid: 4399 components: - pos: -17.5,33.5 parent: 2 type: Transform - - uid: 4409 + - uid: 4400 components: - pos: 28.5,25.5 parent: 2 type: Transform - - uid: 4410 + - uid: 4401 components: - pos: 27.5,3.5 parent: 2 type: Transform - - uid: 4411 + - uid: 4402 components: - pos: 16.5,-9.5 parent: 2 type: Transform - proto: ClosetFireFilled entities: - - uid: 4412 + - uid: 4403 components: - pos: 18.5,9.5 parent: 2 type: Transform - - uid: 4413 + - uid: 4404 components: - pos: -13.5,17.5 parent: 2 type: Transform - - uid: 4414 + - uid: 4405 components: - pos: -25.5,23.5 parent: 2 type: Transform - - uid: 4415 + - uid: 4406 components: - pos: -17.5,32.5 parent: 2 type: Transform - - uid: 4416 + - uid: 4407 components: - pos: 28.5,23.5 parent: 2 type: Transform - - uid: 4417 + - uid: 4408 components: - pos: 21.5,-7.5 parent: 2 type: Transform +- proto: ClosetJanitorFilled + entities: + - uid: 4409 + components: + - pos: 7.5,8.5 + parent: 2 + type: Transform - proto: ClosetL3JanitorFilled entities: - - uid: 4418 + - uid: 4410 components: - pos: 5.5,8.5 parent: 2 type: Transform - proto: ClosetL3ScienceFilled entities: - - uid: 4419 + - uid: 4411 components: - pos: -17.5,35.5 parent: 2 type: Transform - proto: ClosetMaintenanceFilledRandom entities: - - uid: 4420 + - uid: 4412 components: - pos: -19.5,-0.5 parent: 2 type: Transform - - uid: 4421 + - uid: 4413 components: - pos: 15.5,-11.5 parent: 2 type: Transform - - uid: 4422 + - uid: 4414 components: - pos: -8.5,-14.5 parent: 2 type: Transform - - uid: 4423 + - uid: 4415 components: - pos: -26.5,30.5 parent: 2 type: Transform - - uid: 4424 + - uid: 4416 components: - pos: -11.5,20.5 parent: 2 type: Transform - - uid: 4425 + - uid: 4417 components: - pos: 28.5,26.5 parent: 2 type: Transform - - uid: 4426 + - uid: 4418 components: - pos: 25.5,-7.5 parent: 2 type: Transform - - uid: 4427 + - uid: 4419 components: - pos: 21.5,4.5 parent: 2 type: Transform - proto: ClosetRadiationSuitFilled entities: - - uid: 4428 + - uid: 4420 components: - pos: -17.5,34.5 parent: 2 type: Transform - proto: ClosetToolFilled entities: - - uid: 4429 + - uid: 4421 components: - pos: 12.5,10.5 parent: 2 type: Transform - proto: ClosetWall entities: - - uid: 4430 + - uid: 4422 components: - pos: 1.5,30.5 parent: 2 type: Transform - proto: ClosetWallEmergencyFilledRandom entities: - - uid: 4431 + - uid: 4423 components: - rot: 3.141592653589793 rad pos: -4.5,-16.5 parent: 2 type: Transform - - uid: 4432 + - uid: 4424 components: - rot: 3.141592653589793 rad pos: -29.5,-9.5 parent: 2 type: Transform - - uid: 4433 + - uid: 4425 components: - rot: -1.5707963267948966 rad pos: -10.5,3.5 parent: 2 type: Transform - - uid: 4434 + - uid: 4426 components: - rot: -1.5707963267948966 rad pos: -10.5,-13.5 parent: 2 type: Transform - - uid: 4435 + - uid: 4427 components: - rot: 1.5707963267948966 rad pos: -4.5,-22.5 parent: 2 type: Transform - - uid: 4436 + - uid: 4428 components: - pos: -24.5,6.5 parent: 2 type: Transform - proto: ClosetWallFireFilledRandom entities: - - uid: 4437 + - uid: 4429 components: - rot: 3.141592653589793 rad pos: -5.5,-16.5 parent: 2 type: Transform - - uid: 4438 + - uid: 4430 components: - rot: -1.5707963267948966 rad pos: -10.5,2.5 parent: 2 type: Transform - - uid: 4439 + - uid: 4431 components: - rot: 1.5707963267948966 rad pos: -31.5,0.5 parent: 2 type: Transform - - uid: 4440 + - uid: 4432 components: - rot: 1.5707963267948966 rad pos: -31.5,-7.5 parent: 2 type: Transform - - uid: 4441 + - uid: 4433 components: - rot: -1.5707963267948966 rad pos: -10.5,-12.5 parent: 2 type: Transform - - uid: 4442 + - uid: 4434 components: - rot: 1.5707963267948966 rad pos: -4.5,-21.5 @@ -28318,662 +28478,650 @@ entities: type: Transform - proto: ClosetWallMaintenanceFilledRandom entities: - - uid: 4443 + - uid: 4435 components: - pos: -26.5,-22.5 parent: 2 type: Transform - proto: ClothingBackpackClown entities: - - uid: 4444 + - uid: 4436 components: - pos: 0.69071966,-13.577608 parent: 2 type: Transform - proto: ClothingBackpackDuffelSurgeryFilled entities: - - uid: 4445 + - uid: 4437 components: - pos: -23.221302,20.61573 parent: 2 type: Transform - - uid: 4446 + - uid: 4438 components: - pos: 0.5588009,22.572884 parent: 2 type: Transform - proto: ClothingBeltChampion entities: - - uid: 4447 + - uid: 4439 components: - pos: -14.40449,-19.44704 parent: 2 type: Transform - proto: ClothingBeltUtility entities: - - uid: 4448 + - uid: 4440 components: - pos: -2.4277606,15.502716 parent: 2 type: Transform - proto: ClothingBeltUtilityFilled entities: - - uid: 4449 + - uid: 4441 components: - pos: 2.3916261,17.509975 parent: 2 type: Transform - - uid: 4450 + - uid: 4442 components: - pos: -15.421325,16.620773 parent: 2 type: Transform - - uid: 4451 + - uid: 4443 components: - pos: -14.610425,30.690672 parent: 2 type: Transform - - uid: 4452 + - uid: 4444 components: - pos: -0.5427289,25.937965 parent: 2 type: Transform - - uid: 4453 + - uid: 4445 components: - pos: -0.44392976,22.589764 parent: 2 type: Transform - proto: ClothingEyesEyepatch entities: - - uid: 4454 + - uid: 4446 components: - pos: 24.334232,-13.25629 parent: 2 type: Transform - proto: ClothingEyesGlasses entities: - - uid: 4455 + - uid: 4447 components: - pos: -2.4097528,36.78708 parent: 2 type: Transform - proto: ClothingEyesGlassesMeson entities: - - uid: 4456 + - uid: 4448 components: - pos: -0.6523021,22.355389 parent: 2 type: Transform -- proto: ClothingEyesGlassesSunglasses - entities: - - uid: 4457 - components: - - pos: 52.646976,30.11999 - parent: 2 - type: Transform - - uid: 4458 - components: - - pos: 48.428226,24.838737 - parent: 2 - type: Transform - proto: ClothingEyesHudMedical entities: - - uid: 4459 + - uid: 4451 components: - pos: -21.450468,22.783903 parent: 2 type: Transform - proto: ClothingEyesHudSecurity entities: - - uid: 4460 + - uid: 4452 components: - pos: 23.70889,-17.523159 parent: 2 type: Transform - - uid: 4461 + - uid: 4453 components: - pos: 23.33389,-17.445034 parent: 2 type: Transform - - uid: 4462 + - uid: 4454 components: - pos: 13.071597,-17.533405 parent: 2 type: Transform - - uid: 4463 + - uid: 4455 components: - pos: 13.029931,-17.38747 parent: 2 type: Transform - proto: ClothingHandsDispelGloves entities: - - uid: 4464 + - uid: 4456 components: - pos: -25.600224,-20.338589 parent: 2 type: Transform - proto: ClothingHandsGlovesBoxingBlue entities: - - uid: 4465 + - uid: 4457 components: - pos: -31.50839,35.403908 parent: 2 type: Transform - proto: ClothingHandsGlovesBoxingGreen entities: - - uid: 4466 + - uid: 4458 components: - pos: -8.711445,-12.3150425 parent: 2 type: Transform - proto: ClothingHandsGlovesBoxingRed entities: - - uid: 4467 + - uid: 4459 components: - pos: -8.35207,-12.5962925 parent: 2 type: Transform - - uid: 4468 + - uid: 4460 components: - pos: -35.466724,31.474096 parent: 2 type: Transform - proto: ClothingHandsGlovesColorGreen entities: - - uid: 4469 + - uid: 4461 components: - pos: -29.476974,-18.506586 parent: 2 type: Transform - proto: ClothingHandsGlovesColorLightBrown entities: - - uid: 4470 + - uid: 4462 components: - pos: -4.3118644,-12.713078 parent: 2 type: Transform - proto: ClothingHandsGlovesColorYellow entities: - - uid: 4471 + - uid: 4463 components: - pos: 17.295452,-9.467656 parent: 2 type: Transform - proto: ClothingHandsGlovesColorYellowBudget entities: - - uid: 4472 + - uid: 4464 components: - pos: 2.8290062,17.500422 parent: 2 type: Transform - proto: ClothingHandsGlovesFingerless entities: - - uid: 4473 + - uid: 4465 components: - pos: -29.260265,-23.823717 parent: 2 type: Transform - - uid: 4474 + - uid: 4466 components: - pos: -27.480875,-16.481936 parent: 2 type: Transform - proto: ClothingHeadHatBeret entities: - - uid: 4475 + - uid: 4467 components: - pos: -29.706646,-24.212168 parent: 2 type: Transform - proto: ClothingHeadHatCone entities: - - uid: 4476 + - uid: 4468 components: - pos: -25.50438,-41.453415 parent: 2 type: Transform - - uid: 4477 + - uid: 4469 components: - pos: -24.426254,-41.28154 parent: 2 type: Transform - - uid: 4478 + - uid: 4470 components: - pos: -19.50629,-42.67721 parent: 2 type: Transform - - uid: 4479 + - uid: 4471 components: - pos: -20.03754,-41.33346 parent: 2 type: Transform - - uid: 4480 + - uid: 4472 components: - pos: -32.85447,-41.491417 parent: 2 type: Transform - - uid: 4481 + - uid: 4473 components: - pos: -30.745094,-43.913292 parent: 2 type: Transform - proto: ClothingHeadHatCorpsoftFlipped entities: - - uid: 4482 + - uid: 4474 components: - pos: -27.301373,-2.295784 parent: 2 type: Transform - proto: ClothingHeadHatFedoraBrown entities: - - uid: 4483 + - uid: 4475 components: - pos: -25.692308,-9.171927 parent: 2 type: Transform - proto: ClothingHeadHatGreensoftFlipped entities: - - uid: 4484 + - uid: 4476 components: - pos: -29.695724,-18.194086 parent: 2 type: Transform - proto: ClothingHeadHatHairflower entities: - - uid: 4485 + - uid: 4477 components: - pos: -14.827011,-19.222872 parent: 2 type: Transform - proto: ClothingHeadHatPirate entities: - - uid: 4486 + - uid: 4478 components: - pos: 24.637403,-13.204012 parent: 2 type: Transform - - uid: 4487 + - uid: 4479 components: - pos: 23.573605,4.814475 parent: 2 type: Transform - proto: ClothingHeadHatTophat entities: - - uid: 4488 + - uid: 4480 components: - pos: 35.446514,19.713148 parent: 2 type: Transform - proto: ClothingHeadHatUshanka entities: - - uid: 4489 + - uid: 4481 components: - pos: -33.466724,29.74373 parent: 2 type: Transform - - uid: 4490 + - uid: 4482 components: - pos: -33.247974,29.410164 parent: 2 type: Transform - proto: ClothingHeadHatWelding entities: - - uid: 4491 + - uid: 4483 components: - pos: 1.5363789,17.735477 parent: 2 type: Transform - - uid: 4492 + - uid: 4484 components: - pos: 8.275637,15.379625 parent: 2 type: Transform - - uid: 4493 + - uid: 4485 components: - pos: 8.724939,15.379625 parent: 2 type: Transform - proto: ClothingHeadHatWeldingMaskFlame entities: - - uid: 4494 + - uid: 4486 components: - pos: 13.770772,16.593826 parent: 2 type: Transform - - uid: 4495 + - uid: 4487 components: - pos: -3.376274,-14.352352 parent: 2 type: Transform - proto: ClothingHeadHatWeldingMaskFlameBlue entities: - - uid: 4496 + - uid: 4488 components: - pos: -27.515535,23.424908 parent: 2 type: Transform - proto: ClothingHeadHatWeldingMaskPainted entities: - - uid: 4497 + - uid: 4489 components: - pos: 19.758677,-11.577044 parent: 2 type: Transform - proto: ClothingHeadHatWizardFake entities: - - uid: 4498 + - uid: 4490 components: - pos: 26.30502,-29.291243 parent: 2 type: Transform - proto: ClothingHeadHatXmasCrown entities: - - uid: 4499 + - uid: 4491 components: - pos: -27.501709,-16.169218 parent: 2 type: Transform - proto: ClothingHeadHelmetTemplar entities: - - uid: 4500 + - uid: 4492 components: - pos: 17.67073,-9.498999 parent: 2 type: Transform - proto: ClothingHeadMailCarrier entities: - - uid: 4501 + - uid: 4493 components: - pos: 13.358376,5.9282403 parent: 2 type: Transform - proto: ClothingMaskClown entities: - - uid: 4502 + - uid: 4494 components: - pos: -33.491077,29.602762 parent: 2 type: Transform - proto: ClothingNeckMantleCap entities: - - uid: 4503 + - uid: 4495 components: - pos: -5.6337886,-29.214727 parent: 2 type: Transform - proto: ClothingNeckMantleCE entities: - - uid: 4504 + - uid: 4496 components: - pos: 24.641357,15.73859 parent: 2 type: Transform - proto: ClothingNeckMantleCMO entities: - - uid: 4505 + - uid: 4497 components: - pos: -21.585884,22.669239 parent: 2 type: Transform - proto: ClothingNeckMantleHOS entities: - - uid: 4506 + - uid: 4498 components: - pos: 26.404356,-19.232502 parent: 2 type: Transform - proto: ClothingNeckMantleMystagogue entities: - - uid: 4507 + - uid: 4499 components: - pos: -2.6285028,36.755806 parent: 2 type: Transform - proto: ClothingNeckMantleQM entities: - - uid: 4508 + - uid: 4500 components: - pos: 18.569431,-5.025442 parent: 2 type: Transform - proto: ClothingNeckScarfStripedBlue entities: - - uid: 4509 + - uid: 4501 components: - pos: 24.385212,-9.313576 parent: 2 type: Transform - - uid: 4510 + - uid: 4502 components: - pos: 26.555025,-30.512697 parent: 2 type: Transform - - uid: 4511 + - uid: 4503 components: - pos: 35.678852,14.59115 parent: 2 type: Transform - proto: ClothingNeckScarfStripedGreen entities: - - uid: 4512 + - uid: 4504 components: - pos: 7.629384,-26.33031 parent: 2 type: Transform - - uid: 4513 + - uid: 4505 components: - pos: -6.766395,-2.4450836 parent: 2 type: Transform - proto: ClothingNeckScarfStripedRed entities: - - uid: 4514 + - uid: 4506 components: - pos: -15.468121,-8.270935 parent: 2 type: Transform - - uid: 4515 + - uid: 4507 components: - pos: -14.872714,19.93544 parent: 2 type: Transform - proto: ClothingNeckScarfStripedZebra entities: - - uid: 4516 + - uid: 4508 components: - pos: -0.48609942,-11.638247 parent: 2 type: Transform - proto: ClothingNeckStethoscope entities: - - uid: 4517 + - uid: 4509 components: - pos: -14.5,4.5 parent: 2 type: Transform - proto: ClothingOuterCoatBomber entities: - - uid: 4518 + - uid: 4510 components: - pos: -6.278481,-14.723167 parent: 2 type: Transform - - uid: 4519 + - uid: 4511 components: - pos: -33.36874,-8.605465 parent: 2 type: Transform - proto: ClothingOuterCoatJensen entities: - - uid: 4520 + - uid: 4512 components: - pos: -25.379808,-9.390677 parent: 2 type: Transform - proto: ClothingOuterCoatPirate entities: - - uid: 4521 + - uid: 4513 components: - pos: 24.418653,-13.547762 parent: 2 type: Transform - - uid: 4522 + - uid: 4514 components: - pos: 23.58402,4.449639 parent: 2 type: Transform - proto: ClothingOuterHardsuitCombatOfficer entities: - - uid: 4524 + - uid: 4515 components: - pos: 23.288805,-17.384716 parent: 2 type: Transform - proto: ClothingOuterHardsuitCombatRiot entities: - - uid: 4523 + - uid: 4516 components: - pos: 23.75764,-17.494669 parent: 2 type: Transform - proto: ClothingOuterWinterCap entities: - - uid: 4525 + - uid: 4517 components: - pos: -5.3994136,-29.449102 parent: 2 type: Transform - proto: ClothingOuterWinterCoat entities: - - uid: 4526 + - uid: 4518 components: - pos: -7.5336595,1.4666128 parent: 2 type: Transform - proto: ClothingOuterWizardFake entities: - - uid: 4527 + - uid: 4519 components: - pos: 26.30502,-29.838118 parent: 2 type: Transform - proto: ClothingShoesBootsJack entities: - - uid: 4528 + - uid: 4520 components: - pos: -17.425669,-23.340431 parent: 2 type: Transform - proto: ClothingShoesBootsMag entities: - - uid: 4529 + - uid: 4521 components: - pos: -1.5,-9.5 parent: 2 type: Transform - - uid: 4530 + - uid: 4522 components: - pos: -1.5,-9.5 parent: 2 type: Transform - proto: ClothingShoesBootsPerformer entities: - - uid: 4531 + - uid: 4523 components: - pos: -1.4384303,-11.3991585 parent: 2 type: Transform - proto: ClothingShoesBootsWork entities: - - uid: 4532 + - uid: 4524 components: - pos: -6.2900386,-28.427248 parent: 2 type: Transform - proto: ClothingShoesWizardFake entities: - - uid: 4533 + - uid: 4525 components: - pos: 25.863398,-29.718887 parent: 2 type: Transform - proto: ClothingUnderSocksBee entities: - - uid: 4534 + - uid: 4526 components: - pos: 11.586774,23.307724 parent: 2 type: Transform - - uid: 4535 + - uid: 4527 components: - pos: 15.562459,-9.539251 parent: 2 type: Transform - proto: ClothingUnderSocksCoder entities: - - uid: 4536 + - uid: 4528 components: - pos: 1.257832,28.771326 parent: 2 type: Transform - proto: ClothingUniformJumpskirtBartender entities: - - uid: 4537 + - uid: 4529 components: - pos: 35.686096,19.379583 parent: 2 type: Transform - proto: ClothingUniformJumpskirtPerformer entities: - - uid: 4538 + - uid: 4530 components: - pos: -1.448847,-11.315767 parent: 2 type: Transform - proto: ClothingUniformJumpsuitBartender entities: - - uid: 4539 + - uid: 4531 components: - pos: 35.86318,19.515095 parent: 2 type: Transform - proto: ClothingUniformMailCarrier entities: - - uid: 4540 + - uid: 4532 components: - pos: 13.337543,5.5008597 parent: 2 type: Transform - proto: Cobweb1 entities: - - uid: 4541 + - uid: 4533 components: - pos: 20.5,8.5 parent: 2 type: Transform - - uid: 4542 + - uid: 4534 components: - pos: 15.5,7.5 parent: 2 type: Transform - - uid: 4543 + - uid: 4535 components: - pos: -33.5,27.5 parent: 2 type: Transform - - uid: 4544 + - uid: 4536 components: - rot: -1.5707963267948966 rad pos: 25.5,-5.5 parent: 2 type: Transform - - uid: 4545 + - uid: 4537 components: - rot: -1.5707963267948966 rad pos: 27.5,-9.5 parent: 2 type: Transform - - uid: 4546 + - uid: 4538 components: - rot: -1.5707963267948966 rad pos: -2.5,-14.5 @@ -28981,38 +29129,38 @@ entities: type: Transform - proto: Cobweb2 entities: - - uid: 4547 + - uid: 4539 components: - pos: -25.5,20.5 parent: 2 type: Transform - - uid: 4548 + - uid: 4540 components: - pos: -29.5,35.5 parent: 2 type: Transform - - uid: 4549 + - uid: 4541 components: - rot: 3.141592653589793 rad pos: -20.5,-0.5 parent: 2 type: Transform - - uid: 4550 + - uid: 4542 components: - pos: 28.5,8.5 parent: 2 type: Transform - - uid: 4551 + - uid: 4543 components: - pos: 14.5,-8.5 parent: 2 type: Transform - - uid: 4552 + - uid: 4544 components: - pos: -13.5,24.5 parent: 2 type: Transform - - uid: 4553 + - uid: 4545 components: - rot: -1.5707963267948966 rad pos: 17.5,4.5 @@ -29020,75 +29168,75 @@ entities: type: Transform - proto: ComfyChair entities: - - uid: 4554 + - uid: 4546 components: - rot: 3.141592653589793 rad pos: 1.5,3.5 parent: 2 type: Transform - - uid: 4555 + - uid: 4547 components: - pos: 1.5,5.5 parent: 2 type: Transform - - uid: 4556 + - uid: 4548 components: - pos: -5.5,-22.5 parent: 2 type: Transform - - uid: 4557 + - uid: 4549 components: - pos: -6.5,-22.5 parent: 2 type: Transform - - uid: 4558 + - uid: 4550 components: - rot: 3.141592653589793 rad pos: -6.5,-24.5 parent: 2 type: Transform - - uid: 4559 + - uid: 4551 components: - rot: 3.141592653589793 rad pos: 6.5,-29.5 parent: 2 type: Transform - - uid: 4560 + - uid: 4552 components: - rot: -1.5707963267948966 rad pos: 26.5,-20.5 parent: 2 type: Transform - - uid: 4561 + - uid: 4553 components: - rot: 3.141592653589793 rad pos: 25.5,-21.5 parent: 2 type: Transform - - uid: 4562 + - uid: 4554 components: - rot: -1.5707963267948966 rad pos: -13.5,-29.5 parent: 2 type: Transform - - uid: 4563 + - uid: 4555 components: - rot: -1.5707963267948966 rad pos: -13.5,-31.5 parent: 2 type: Transform - - uid: 4564 + - uid: 4556 components: - pos: 25.5,-30.5 parent: 2 type: Transform - - uid: 4565 + - uid: 4557 components: - rot: 1.5707963267948966 rad pos: -12.5,27.5 parent: 2 type: Transform - - uid: 4566 + - uid: 4558 components: - rot: -1.5707963267948966 rad pos: -18.5,-20.5 @@ -29096,7 +29244,7 @@ entities: type: Transform - proto: ComputerAlert entities: - - uid: 4567 + - uid: 4559 components: - rot: 1.5707963267948966 rad pos: 13.5,15.5 @@ -29104,26 +29252,26 @@ entities: type: Transform - proto: ComputerAnalysisConsole entities: - - uid: 4568 + - uid: 4560 components: - pos: -13.5,33.5 parent: 2 type: Transform - proto: ComputerCargoBounty entities: - - uid: 4569 + - uid: 4561 components: - pos: 11.5,0.5 parent: 2 type: Transform - proto: ComputerCargoOrders entities: - - uid: 4570 + - uid: 4562 components: - pos: 17.5,-4.5 parent: 2 type: Transform - - uid: 4571 + - uid: 4563 components: - rot: -1.5707963267948966 rad pos: 12.5,-0.5 @@ -29131,7 +29279,7 @@ entities: type: Transform - proto: ComputerCargoShuttle entities: - - uid: 4572 + - uid: 4564 components: - rot: 3.141592653589793 rad pos: 15.5,-2.5 @@ -29139,7 +29287,7 @@ entities: type: Transform - proto: ComputerCloningConsole entities: - - uid: 4573 + - uid: 4565 components: - rot: 1.5707963267948966 rad pos: -23.5,13.5 @@ -29147,13 +29295,13 @@ entities: type: Transform - proto: ComputerComms entities: - - uid: 4574 + - uid: 4566 components: - rot: -1.5707963267948966 rad pos: -5.5,-25.5 parent: 2 type: Transform - - uid: 4575 + - uid: 4567 components: - rot: 3.141592653589793 rad pos: -0.5,-29.5 @@ -29161,44 +29309,44 @@ entities: type: Transform - proto: ComputerCrewMonitoring entities: - - uid: 4576 + - uid: 4568 components: - rot: 1.5707963267948966 rad pos: -3.5,-26.5 parent: 2 type: Transform - - uid: 4577 + - uid: 4569 components: - rot: 3.141592653589793 rad pos: -22.5,7.5 parent: 2 type: Transform - - uid: 4578 + - uid: 4570 components: - pos: -20.5,22.5 parent: 2 type: Transform - proto: ComputerCriminalRecords entities: - - uid: 4579 + - uid: 4571 components: - rot: 1.5707963267948966 rad pos: -2.5,-28.5 parent: 2 type: Transform - - uid: 4580 + - uid: 4572 components: - rot: 1.5707963267948966 rad pos: -20.5,-6.5 parent: 2 type: Transform - - uid: 4581 + - uid: 4573 components: - rot: 1.5707963267948966 rad pos: 7.5,-14.5 parent: 2 type: Transform - - uid: 4582 + - uid: 4574 components: - rot: 3.141592653589793 rad pos: 13.5,-14.5 @@ -29206,47 +29354,47 @@ entities: type: Transform - proto: ComputerId entities: - - uid: 4583 + - uid: 4575 components: - rot: -1.5707963267948966 rad pos: -17.5,19.5 parent: 2 type: Transform - - uid: 4584 + - uid: 4576 components: - pos: 20.5,-18.5 parent: 2 type: Transform - - uid: 4585 + - uid: 4577 components: - rot: -1.5707963267948966 rad pos: 1.5,-28.5 parent: 2 type: Transform - - uid: 4586 + - uid: 4578 components: - rot: -1.5707963267948966 rad pos: -5.5,-24.5 parent: 2 type: Transform - - uid: 4587 + - uid: 4579 components: - rot: 3.141592653589793 rad pos: 6.5,-5.5 parent: 2 type: Transform - - uid: 4588 + - uid: 4580 components: - rot: -1.5707963267948966 rad pos: 18.5,-6.5 parent: 2 type: Transform - - uid: 4589 + - uid: 4581 components: - pos: -0.5,37.5 parent: 2 type: Transform - - uid: 4590 + - uid: 4582 components: - rot: 3.141592653589793 rad pos: 23.5,12.5 @@ -29254,7 +29402,7 @@ entities: type: Transform - proto: ComputerMedicalRecords entities: - - uid: 4591 + - uid: 4583 components: - rot: 1.5707963267948966 rad pos: -3.5,-27.5 @@ -29262,24 +29410,24 @@ entities: type: Transform - proto: ComputerPowerMonitoring entities: - - uid: 4592 + - uid: 4584 components: - rot: -1.5707963267948966 rad pos: 2.5,-27.5 parent: 2 type: Transform - - uid: 4593 + - uid: 4585 components: - pos: 20.5,14.5 parent: 2 type: Transform - - uid: 4594 + - uid: 4586 components: - rot: 3.141592653589793 rad pos: 13.5,12.5 parent: 2 type: Transform - - uid: 4595 + - uid: 4587 components: - rot: 3.141592653589793 rad pos: 37.5,14.5 @@ -29287,18 +29435,18 @@ entities: type: Transform - proto: ComputerRadar entities: - - uid: 4596 + - uid: 4588 components: - rot: -1.5707963267948966 rad pos: 2.5,-26.5 parent: 2 type: Transform - - uid: 4597 + - uid: 4589 components: - pos: -35.5,-27.5 parent: 2 type: Transform - - uid: 4598 + - uid: 4590 components: - rot: 1.5707963267948966 rad pos: 42.5,-10.5 @@ -29306,20 +29454,20 @@ entities: type: Transform - proto: ComputerResearchAndDevelopment entities: - - uid: 4599 + - uid: 4591 components: - rot: -1.5707963267948966 rad pos: -0.5,27.5 parent: 2 type: Transform - - uid: 4600 + - uid: 4592 components: - pos: -12.5,33.5 parent: 2 type: Transform - proto: ComputerShuttleCargo entities: - - uid: 4601 + - uid: 4593 components: - rot: -1.5707963267948966 rad pos: 28.5,0.5 @@ -29327,19 +29475,19 @@ entities: type: Transform - proto: ComputerShuttleSalvage entities: - - uid: 4602 + - uid: 4594 components: - pos: 30.5,-3.5 parent: 2 type: Transform - proto: ComputerSolarControl entities: - - uid: 4603 + - uid: 4595 components: - pos: -22.5,28.5 parent: 2 type: Transform - - uid: 4604 + - uid: 4596 components: - rot: 3.141592653589793 rad pos: 36.5,14.5 @@ -29347,12 +29495,12 @@ entities: type: Transform - proto: ComputerStationRecords entities: - - uid: 4605 + - uid: 4597 components: - pos: -18.5,-19.5 parent: 2 type: Transform - - uid: 4606 + - uid: 4598 components: - rot: 3.141592653589793 rad pos: 0.5,-29.5 @@ -29360,19 +29508,19 @@ entities: type: Transform - proto: ComputerSurveillanceCameraMonitor entities: - - uid: 4607 + - uid: 4599 components: - rot: 3.141592653589793 rad pos: -1.5,-29.5 parent: 2 type: Transform - - uid: 4608 + - uid: 4600 components: - rot: 3.141592653589793 rad pos: 15.5,-17.5 parent: 2 type: Transform - - uid: 4609 + - uid: 4601 components: - rot: 1.5707963267948966 rad pos: -19.5,-21.5 @@ -29380,7 +29528,7 @@ entities: type: Transform - proto: ComputerTechnologyDiskTerminal entities: - - uid: 4610 + - uid: 4602 components: - rot: 1.5707963267948966 rad pos: -7.5,29.5 @@ -29388,248 +29536,248 @@ entities: type: Transform - proto: ComputerTelevision entities: - - uid: 4611 + - uid: 4603 components: - pos: -29.5,-15.5 parent: 2 type: Transform - - uid: 4612 + - uid: 4604 components: - pos: -29.5,-22.5 parent: 2 type: Transform - - uid: 4613 + - uid: 4605 components: - pos: 13.5,-29.5 parent: 2 type: Transform - proto: ConveyorBelt entities: - - uid: 4614 + - uid: 4606 components: - rot: 1.5707963267948966 rad pos: 27.5,2.5 parent: 2 type: Transform - links: - - 9388 + - 9379 type: DeviceLinkSink - - uid: 4615 + - uid: 4607 components: - rot: 1.5707963267948966 rad pos: 11.5,-2.5 parent: 2 type: Transform - links: - - 9387 + - 9378 type: DeviceLinkSink - - uid: 4616 + - uid: 4608 components: - rot: 1.5707963267948966 rad pos: 32.5,2.5 parent: 2 type: Transform - - uid: 4617 + - uid: 4609 components: - rot: 1.5707963267948966 rad pos: 11.5,8.5 parent: 2 type: Transform - links: - - 9386 + - 9377 type: DeviceLinkSink - - uid: 4618 + - uid: 4610 components: - rot: 1.5707963267948966 rad pos: 10.5,8.5 parent: 2 type: Transform - links: - - 9386 + - 9377 type: DeviceLinkSink - - uid: 4619 + - uid: 4611 components: - rot: 1.5707963267948966 rad pos: 13.5,8.5 parent: 2 type: Transform - links: - - 9386 + - 9377 type: DeviceLinkSink - - uid: 4620 + - uid: 4612 components: - rot: 1.5707963267948966 rad pos: 21.5,2.5 parent: 2 type: Transform - links: - - 9388 + - 9379 type: DeviceLinkSink - - uid: 4621 + - uid: 4613 components: - rot: 1.5707963267948966 rad pos: 31.5,2.5 parent: 2 type: Transform - links: - - 9388 + - 9379 type: DeviceLinkSink - - uid: 4622 + - uid: 4614 components: - rot: 1.5707963267948966 rad pos: 23.5,2.5 parent: 2 type: Transform - links: - - 9388 + - 9379 type: DeviceLinkSink - - uid: 4623 + - uid: 4615 components: - rot: 1.5707963267948966 rad pos: 24.5,2.5 parent: 2 type: Transform - links: - - 9388 + - 9379 type: DeviceLinkSink - - uid: 4624 + - uid: 4616 components: - rot: 1.5707963267948966 rad pos: 32.5,-1.5 parent: 2 type: Transform - links: - - 9388 + - 9379 type: DeviceLinkSink - - uid: 4625 + - uid: 4617 components: - rot: 1.5707963267948966 rad pos: 30.5,-1.5 parent: 2 type: Transform - links: - - 9388 + - 9379 type: DeviceLinkSink - - uid: 4626 + - uid: 4618 components: - rot: 1.5707963267948966 rad pos: 31.5,-1.5 parent: 2 type: Transform - links: - - 9388 + - 9379 type: DeviceLinkSink - - uid: 4627 + - uid: 4619 components: - rot: 1.5707963267948966 rad pos: 28.5,-1.5 parent: 2 type: Transform - links: - - 9388 + - 9379 type: DeviceLinkSink - - uid: 4628 + - uid: 4620 components: - rot: 1.5707963267948966 rad pos: 29.5,-1.5 parent: 2 type: Transform - links: - - 9388 + - 9379 type: DeviceLinkSink - - uid: 4629 + - uid: 4621 components: - rot: 1.5707963267948966 rad pos: 29.5,2.5 parent: 2 type: Transform - links: - - 9388 + - 9379 type: DeviceLinkSink - - uid: 4630 + - uid: 4622 components: - rot: 1.5707963267948966 rad pos: 30.5,2.5 parent: 2 type: Transform - links: - - 9388 + - 9379 type: DeviceLinkSink - - uid: 4631 + - uid: 4623 components: - rot: 1.5707963267948966 rad pos: 32.5,2.5 parent: 2 type: Transform - links: - - 9388 + - 9379 type: DeviceLinkSink - - uid: 4632 + - uid: 4624 components: - rot: 1.5707963267948966 rad pos: 26.5,2.5 parent: 2 type: Transform - links: - - 9388 + - 9379 type: DeviceLinkSink - - uid: 4633 + - uid: 4625 components: - rot: 1.5707963267948966 rad pos: 20.5,2.5 parent: 2 type: Transform - links: - - 9388 + - 9379 type: DeviceLinkSink - - uid: 4634 + - uid: 4626 components: - rot: 1.5707963267948966 rad pos: 28.5,2.5 parent: 2 type: Transform - links: - - 9388 + - 9379 type: DeviceLinkSink - - uid: 4635 + - uid: 4627 components: - rot: 1.5707963267948966 rad pos: 10.5,-2.5 parent: 2 type: Transform - links: - - 9387 + - 9378 type: DeviceLinkSink - - uid: 4636 + - uid: 4628 components: - rot: 1.5707963267948966 rad pos: 9.5,-2.5 parent: 2 type: Transform - links: - - 9387 + - 9378 type: DeviceLinkSink - - uid: 4637 + - uid: 4629 components: - rot: 1.5707963267948966 rad pos: 22.5,2.5 parent: 2 type: Transform - links: - - 9388 + - 9379 type: DeviceLinkSink - - uid: 4638 + - uid: 4630 components: - rot: 1.5707963267948966 rad pos: 25.5,2.5 parent: 2 type: Transform - links: - - 9388 + - 9379 type: DeviceLinkSink - proto: CrateArtifactContainer entities: - - uid: 4639 + - uid: 4631 components: - pos: -17.5,36.5 parent: 2 @@ -29654,19 +29802,19 @@ entities: type: EntityStorage - proto: CrateEmptySpawner entities: - - uid: 4640 + - uid: 4632 components: - pos: 18.5,2.5 parent: 2 type: Transform - - uid: 4641 + - uid: 4633 components: - pos: 27.5,-7.5 parent: 2 type: Transform - proto: CrateEngineeringAMEJar entities: - - uid: 4642 + - uid: 4634 components: - pos: 23.5,21.5 parent: 2 @@ -29691,7 +29839,7 @@ entities: type: EntityStorage - proto: CrateEngineeringAMEShielding entities: - - uid: 4643 + - uid: 4635 components: - pos: 21.5,25.5 parent: 2 @@ -29714,7 +29862,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 4644 + - uid: 4636 components: - pos: 21.5,26.5 parent: 2 @@ -29739,7 +29887,7 @@ entities: type: EntityStorage - proto: CrateEngineeringCableBulk entities: - - uid: 4645 + - uid: 4637 components: - pos: 22.5,16.5 parent: 2 @@ -29762,58 +29910,53 @@ entities: - 0 - 0 type: EntityStorage - - uid: 4646 + - uid: 4638 components: - pos: -33.5,-40.5 parent: 2 type: Transform - proto: CrateFilledSpawner entities: - - uid: 4647 + - uid: 4639 components: - pos: 16.5,1.5 parent: 2 type: Transform - - uid: 4648 - components: - - pos: 34.5,-20.5 - parent: 2 - type: Transform - - uid: 4649 + - uid: 4641 components: - pos: 19.5,42.5 parent: 2 type: Transform - - uid: 4650 + - uid: 4642 components: - pos: 18.5,1.5 parent: 2 type: Transform - - uid: 4651 + - uid: 4643 components: - pos: 19.5,2.5 parent: 2 type: Transform - - uid: 4652 + - uid: 4644 components: - pos: 27.5,-6.5 parent: 2 type: Transform - proto: CrateInternals entities: - - uid: 4653 + - uid: 4645 components: - pos: -20.5,-43.5 parent: 2 type: Transform - - uid: 4654 + - uid: 4646 components: - pos: -21.5,-29.5 parent: 2 type: Transform - proto: CrateNPCCow entities: - - uid: 4655 + - uid: 4647 components: - pos: 0.5,1.5 parent: 2 @@ -29838,21 +29981,21 @@ entities: type: EntityStorage - proto: CrateNPCHamlet entities: - - uid: 4656 + - uid: 4648 components: - pos: 2.5,-17.5 parent: 2 type: Transform - proto: CrateSecurityRiot entities: - - uid: 4657 + - uid: 4649 components: - pos: 24.5,-17.5 parent: 2 type: Transform - proto: Crematorium entities: - - uid: 4658 + - uid: 4650 components: - rot: -1.5707963267948966 rad pos: 5.5,20.5 @@ -29860,86 +30003,86 @@ entities: type: Transform - proto: CrewMonitoringServer entities: - - uid: 4659 + - uid: 4651 components: - pos: -7.5,44.5 parent: 2 type: Transform - proto: CrowbarRed entities: - - uid: 4660 + - uid: 4652 components: - pos: -14.522984,31.67019 parent: 2 type: Transform - - uid: 4661 + - uid: 4653 components: - pos: 15.440716,-9.488413 parent: 2 type: Transform - - uid: 4662 + - uid: 4654 components: - pos: 2.5627413,-28.456787 parent: 2 type: Transform - - uid: 4663 + - uid: 4655 components: - pos: -29.30733,-24.230965 parent: 2 type: Transform - - uid: 4664 + - uid: 4656 components: - pos: -19.081656,1.3935633 parent: 2 type: Transform - - uid: 4665 + - uid: 4657 components: - pos: 7.6322618,-5.291768 parent: 2 type: Transform - - uid: 4666 + - uid: 4658 components: - pos: -31.5,22.5 parent: 2 type: Transform - - uid: 4667 + - uid: 4659 components: - pos: -26.5,27.5 parent: 2 type: Transform - proto: CyberPen entities: - - uid: 4668 + - uid: 4660 components: - pos: -31.483238,-25.444899 parent: 2 type: Transform - proto: d6Dice entities: - - uid: 4669 + - uid: 4661 components: - pos: 33.44027,25.27352 parent: 2 type: Transform - - uid: 4670 + - uid: 4662 components: - pos: 33.700687,25.481997 parent: 2 type: Transform - - uid: 4671 + - uid: 4663 components: - pos: 33.80485,25.2214 parent: 2 type: Transform - proto: DefibrillatorCabinetFilled entities: - - uid: 4672 + - uid: 4664 components: - rot: -1.5707963267948966 rad pos: -20.5,7.5 parent: 2 type: Transform - - uid: 4673 + - uid: 4665 components: - rot: 1.5707963267948966 rad pos: -20.5,16.5 @@ -29947,349 +30090,349 @@ entities: type: Transform - proto: DeployableBarrier entities: - - uid: 4674 + - uid: 4666 components: - pos: 7.5,-10.5 parent: 2 type: Transform - - uid: 4675 + - uid: 4667 components: - pos: 8.5,-10.5 parent: 2 type: Transform - proto: DeskBell entities: - - uid: 4676 + - uid: 4668 components: - pos: 10.5,-1.5 parent: 2 type: Transform - proto: DiceBag entities: - - uid: 4677 + - uid: 4669 components: - pos: -19.277187,-12.446125 parent: 2 type: Transform - proto: DiseaseDiagnoser entities: - - uid: 4678 + - uid: 4670 components: - pos: -19.5,4.5 parent: 2 type: Transform - proto: DisposalBend entities: - - uid: 4679 + - uid: 4671 components: - rot: 1.5707963267948966 rad pos: -20.5,-14.5 parent: 2 type: Transform - - uid: 4680 + - uid: 4672 components: - pos: -26.5,3.5 parent: 2 type: Transform - - uid: 4681 + - uid: 4673 components: - rot: -1.5707963267948966 rad pos: 11.5,12.5 parent: 2 type: Transform - - uid: 4682 + - uid: 4674 components: - rot: 1.5707963267948966 rad pos: 11.5,20.5 parent: 2 type: Transform - - uid: 4683 + - uid: 4675 components: - rot: -1.5707963267948966 rad pos: 17.5,20.5 parent: 2 type: Transform - - uid: 4684 + - uid: 4676 components: - rot: 3.141592653589793 rad pos: 2.5,0.5 parent: 2 type: Transform - - uid: 4685 + - uid: 4677 components: - pos: 3.5,0.5 parent: 2 type: Transform - - uid: 4686 + - uid: 4678 components: - rot: 3.141592653589793 rad pos: 3.5,-12.5 parent: 2 type: Transform - - uid: 4687 + - uid: 4679 components: - rot: -1.5707963267948966 rad pos: 4.5,-18.5 parent: 2 type: Transform - - uid: 4688 + - uid: 4680 components: - rot: 1.5707963267948966 rad pos: -6.5,-18.5 parent: 2 type: Transform - - uid: 4689 + - uid: 4681 components: - rot: 1.5707963267948966 rad pos: -15.5,-11.5 parent: 2 type: Transform - - uid: 4690 + - uid: 4682 components: - rot: 1.5707963267948966 rad pos: -2.5,0.5 parent: 2 type: Transform - - uid: 4691 + - uid: 4683 components: - rot: -1.5707963267948966 rad pos: -2.5,-2.5 parent: 2 type: Transform - - uid: 4692 + - uid: 4684 components: - rot: -1.5707963267948966 rad pos: -6.5,-8.5 parent: 2 type: Transform - - uid: 4693 + - uid: 4685 components: - rot: -1.5707963267948966 rad pos: -4.5,9.5 parent: 2 type: Transform - - uid: 4694 + - uid: 4686 components: - rot: 1.5707963267948966 rad pos: -11.5,12.5 parent: 2 type: Transform - - uid: 4695 + - uid: 4687 components: - rot: 3.141592653589793 rad pos: -29.5,30.5 parent: 2 type: Transform - - uid: 4696 + - uid: 4688 components: - rot: 3.141592653589793 rad pos: 10.5,-21.5 parent: 2 type: Transform - - uid: 4697 + - uid: 4689 components: - pos: 10.5,-12.5 parent: 2 type: Transform - - uid: 4698 + - uid: 4690 components: - rot: 1.5707963267948966 rad pos: -27.5,-3.5 parent: 2 type: Transform - - uid: 4699 + - uid: 4691 components: - rot: 3.141592653589793 rad pos: 7.5,6.5 parent: 2 type: Transform - - uid: 4700 + - uid: 4692 components: - pos: 10.5,6.5 parent: 2 type: Transform - - uid: 4701 + - uid: 4693 components: - rot: 3.141592653589793 rad pos: -11.5,-21.5 parent: 2 type: Transform - - uid: 4702 + - uid: 4694 components: - rot: 1.5707963267948966 rad pos: -27.5,11.5 parent: 2 type: Transform - - uid: 4703 + - uid: 4695 components: - rot: 3.141592653589793 rad pos: -27.5,3.5 parent: 2 type: Transform - - uid: 4704 + - uid: 4696 components: - rot: 1.5707963267948966 rad pos: -18.5,16.5 parent: 2 type: Transform - - uid: 4705 + - uid: 4697 components: - pos: 17.5,-19.5 parent: 2 type: Transform - - uid: 4706 + - uid: 4698 components: - rot: -1.5707963267948966 rad pos: 21.5,13.5 parent: 2 type: Transform - - uid: 4707 + - uid: 4699 components: - rot: -1.5707963267948966 rad pos: -15.5,-12.5 parent: 2 type: Transform - - uid: 4708 + - uid: 4700 components: - rot: 1.5707963267948966 rad pos: -16.5,-12.5 parent: 2 type: Transform - - uid: 4709 + - uid: 4701 components: - rot: -1.5707963267948966 rad pos: -0.5,28.5 parent: 2 type: Transform - - uid: 4710 + - uid: 4702 components: - rot: 1.5707963267948966 rad pos: -6.5,33.5 parent: 2 type: Transform - - uid: 4711 + - uid: 4703 components: - rot: 1.5707963267948966 rad pos: -0.5,29.5 parent: 2 type: Transform - - uid: 4712 + - uid: 4704 components: - pos: 3.5,29.5 parent: 2 type: Transform - - uid: 4713 + - uid: 4705 components: - rot: 3.141592653589793 rad pos: 3.5,26.5 parent: 2 type: Transform - - uid: 4714 + - uid: 4706 components: - pos: 17.5,27.5 parent: 2 type: Transform - - uid: 4715 + - uid: 4707 components: - pos: -20.5,-18.5 parent: 2 type: Transform - - uid: 4716 + - uid: 4708 components: - rot: -1.5707963267948966 rad pos: -20.5,-15.5 parent: 2 type: Transform - - uid: 4717 + - uid: 4709 components: - rot: 3.141592653589793 rad pos: -22.5,-18.5 parent: 2 type: Transform - - uid: 4718 + - uid: 4710 components: - rot: 1.5707963267948966 rad pos: -22.5,-15.5 parent: 2 type: Transform - - uid: 4719 + - uid: 4711 components: - pos: 11.5,2.5 parent: 2 type: Transform - - uid: 4720 + - uid: 4712 components: - rot: 3.141592653589793 rad pos: 11.5,1.5 parent: 2 type: Transform - - uid: 4721 + - uid: 4713 components: - pos: 13.5,1.5 parent: 2 type: Transform - - uid: 4722 + - uid: 4714 components: - rot: 3.141592653589793 rad pos: 13.5,0.5 parent: 2 type: Transform - - uid: 4723 + - uid: 4715 components: - rot: 3.141592653589793 rad pos: 27.5,-3.5 parent: 2 type: Transform - - uid: 4724 + - uid: 4716 components: - pos: 27.5,0.5 parent: 2 type: Transform - proto: DisposalJunction entities: - - uid: 4725 + - uid: 4717 components: - rot: 3.141592653589793 rad pos: -11.5,-2.5 parent: 2 type: Transform - - uid: 4726 + - uid: 4718 components: - rot: 3.141592653589793 rad pos: 2.5,6.5 parent: 2 type: Transform - - uid: 4727 + - uid: 4719 components: - rot: 3.141592653589793 rad pos: 2.5,2.5 parent: 2 type: Transform - - uid: 4728 + - uid: 4720 components: - rot: 1.5707963267948966 rad pos: -3.5,-18.5 parent: 2 type: Transform - - uid: 4729 + - uid: 4721 components: - rot: 3.141592653589793 rad pos: -6.5,-5.5 parent: 2 type: Transform - - uid: 4730 + - uid: 4722 components: - rot: 3.141592653589793 rad pos: -11.5,9.5 parent: 2 type: Transform - - uid: 4731 + - uid: 4723 components: - rot: 3.141592653589793 rad pos: 10.5,-19.5 parent: 2 type: Transform - - uid: 4732 + - uid: 4724 components: - rot: -1.5707963267948966 rad pos: -2.5,28.5 @@ -30297,94 +30440,94 @@ entities: type: Transform - proto: DisposalJunctionFlipped entities: - - uid: 4733 + - uid: 4725 components: - rot: 3.141592653589793 rad pos: -11.5,-3.5 parent: 2 type: Transform - - uid: 4734 + - uid: 4726 components: - pos: 11.5,16.5 parent: 2 type: Transform - - uid: 4735 + - uid: 4727 components: - rot: -1.5707963267948966 rad pos: 4.5,-12.5 parent: 2 type: Transform - - uid: 4736 + - uid: 4728 components: - rot: 1.5707963267948966 rad pos: 0.5,-18.5 parent: 2 type: Transform - - uid: 4737 + - uid: 4729 components: - rot: 3.141592653589793 rad pos: -11.5,-11.5 parent: 2 type: Transform - - uid: 4738 + - uid: 4730 components: - rot: -1.5707963267948966 rad pos: -6.5,-2.5 parent: 2 type: Transform - - uid: 4739 + - uid: 4731 components: - rot: 3.141592653589793 rad pos: -11.5,8.5 parent: 2 type: Transform - - uid: 4740 + - uid: 4732 components: - rot: 1.5707963267948966 rad pos: -6.5,12.5 parent: 2 type: Transform - - uid: 4741 + - uid: 4733 components: - rot: 1.5707963267948966 rad pos: -4.5,12.5 parent: 2 type: Transform - - uid: 4742 + - uid: 4734 components: - rot: 1.5707963267948966 rad pos: -26.5,-3.5 parent: 2 type: Transform - - uid: 4743 + - uid: 4735 components: - pos: 11.5,13.5 parent: 2 type: Transform - - uid: 4744 + - uid: 4736 components: - rot: 3.141592653589793 rad pos: -16.5,-14.5 parent: 2 type: Transform - - uid: 4745 + - uid: 4737 components: - pos: -6.5,28.5 parent: 2 type: Transform - - uid: 4746 + - uid: 4738 components: - rot: -1.5707963267948966 rad pos: 6.5,2.5 parent: 2 type: Transform - - uid: 4747 + - uid: 4739 components: - rot: -1.5707963267948966 rad pos: 17.5,0.5 parent: 2 type: Transform - - uid: 4748 + - uid: 4740 components: - rot: 1.5707963267948966 rad pos: -14.5,-11.5 @@ -30392,1695 +30535,1695 @@ entities: type: Transform - proto: DisposalMachineFrame entities: - - uid: 4749 + - uid: 4741 components: - pos: -29.5,35.5 parent: 2 type: Transform - proto: DisposalPipe entities: - - uid: 4750 + - uid: 4742 components: - rot: -1.5707963267948966 rad pos: -18.5,-14.5 parent: 2 type: Transform - - uid: 4751 + - uid: 4743 components: - rot: 1.5707963267948966 rad pos: -19.5,-14.5 parent: 2 type: Transform - - uid: 4752 + - uid: 4744 components: - rot: 1.5707963267948966 rad pos: 3.5,2.5 parent: 2 type: Transform - - uid: 4753 + - uid: 4745 components: - rot: 1.5707963267948966 rad pos: 4.5,2.5 parent: 2 type: Transform - - uid: 4754 + - uid: 4746 components: - rot: 1.5707963267948966 rad pos: -12.5,-3.5 parent: 2 type: Transform - - uid: 4755 + - uid: 4747 components: - rot: 1.5707963267948966 rad pos: -13.5,-3.5 parent: 2 type: Transform - - uid: 4756 + - uid: 4748 components: - rot: -1.5707963267948966 rad pos: -14.5,-3.5 parent: 2 type: Transform - - uid: 4757 + - uid: 4749 components: - rot: 3.141592653589793 rad pos: -11.5,-4.5 parent: 2 type: Transform - - uid: 4758 + - uid: 4750 components: - rot: 1.5707963267948966 rad pos: 4.5,8.5 parent: 2 type: Transform - - uid: 4759 + - uid: 4751 components: - rot: 1.5707963267948966 rad pos: 3.5,8.5 parent: 2 type: Transform - - uid: 4760 + - uid: 4752 components: - rot: 1.5707963267948966 rad pos: 8.5,8.5 parent: 2 type: Transform - - uid: 4761 + - uid: 4753 components: - rot: 1.5707963267948966 rad pos: 9.5,8.5 parent: 2 type: Transform - - uid: 4762 + - uid: 4754 components: - rot: 1.5707963267948966 rad pos: 5.5,8.5 parent: 2 type: Transform - - uid: 4763 + - uid: 4755 components: - rot: 1.5707963267948966 rad pos: 6.5,8.5 parent: 2 type: Transform - - uid: 4764 + - uid: 4756 components: - rot: -1.5707963267948966 rad pos: -2.5,12.5 parent: 2 type: Transform - - uid: 4765 + - uid: 4757 components: - rot: -1.5707963267948966 rad pos: 1.5,12.5 parent: 2 type: Transform - - uid: 4766 + - uid: 4758 components: - rot: -1.5707963267948966 rad pos: 0.5,12.5 parent: 2 type: Transform - - uid: 4767 + - uid: 4759 components: - rot: -1.5707963267948966 rad pos: -0.5,12.5 parent: 2 type: Transform - - uid: 4768 + - uid: 4760 components: - rot: -1.5707963267948966 rad pos: -1.5,12.5 parent: 2 type: Transform - - uid: 4769 + - uid: 4761 components: - rot: -1.5707963267948966 rad pos: 3.5,12.5 parent: 2 type: Transform - - uid: 4770 + - uid: 4762 components: - rot: -1.5707963267948966 rad pos: 4.5,12.5 parent: 2 type: Transform - - uid: 4771 + - uid: 4763 components: - rot: -1.5707963267948966 rad pos: 5.5,12.5 parent: 2 type: Transform - - uid: 4772 + - uid: 4764 components: - rot: -1.5707963267948966 rad pos: 6.5,12.5 parent: 2 type: Transform - - uid: 4773 + - uid: 4765 components: - rot: -1.5707963267948966 rad pos: 7.5,12.5 parent: 2 type: Transform - - uid: 4774 + - uid: 4766 components: - rot: -1.5707963267948966 rad pos: 8.5,12.5 parent: 2 type: Transform - - uid: 4775 + - uid: 4767 components: - rot: -1.5707963267948966 rad pos: 9.5,12.5 parent: 2 type: Transform - - uid: 4776 + - uid: 4768 components: - rot: -1.5707963267948966 rad pos: 10.5,12.5 parent: 2 type: Transform - - uid: 4777 + - uid: 4769 components: - rot: 3.141592653589793 rad pos: 11.5,14.5 parent: 2 type: Transform - - uid: 4778 + - uid: 4770 components: - rot: 3.141592653589793 rad pos: 11.5,15.5 parent: 2 type: Transform - - uid: 4779 + - uid: 4771 components: - pos: 11.5,17.5 parent: 2 type: Transform - - uid: 4780 + - uid: 4772 components: - pos: 11.5,18.5 parent: 2 type: Transform - - uid: 4781 + - uid: 4773 components: - pos: 11.5,19.5 parent: 2 type: Transform - - uid: 4782 + - uid: 4774 components: - rot: 1.5707963267948966 rad pos: 12.5,20.5 parent: 2 type: Transform - - uid: 4783 + - uid: 4775 components: - rot: 1.5707963267948966 rad pos: 13.5,20.5 parent: 2 type: Transform - - uid: 4784 + - uid: 4776 components: - rot: 1.5707963267948966 rad pos: 14.5,20.5 parent: 2 type: Transform - - uid: 4785 + - uid: 4777 components: - rot: 1.5707963267948966 rad pos: 15.5,20.5 parent: 2 type: Transform - - uid: 4786 + - uid: 4778 components: - rot: 1.5707963267948966 rad pos: 16.5,20.5 parent: 2 type: Transform - - uid: 4787 + - uid: 4779 components: - rot: 3.141592653589793 rad pos: 17.5,21.5 parent: 2 type: Transform - - uid: 4788 + - uid: 4780 components: - rot: 3.141592653589793 rad pos: 17.5,22.5 parent: 2 type: Transform - - uid: 4789 + - uid: 4781 components: - rot: 3.141592653589793 rad pos: 17.5,23.5 parent: 2 type: Transform - - uid: 4790 + - uid: 4782 components: - rot: 3.141592653589793 rad pos: 17.5,24.5 parent: 2 type: Transform - - uid: 4791 + - uid: 4783 components: - rot: 3.141592653589793 rad pos: 17.5,25.5 parent: 2 type: Transform - - uid: 4792 + - uid: 4784 components: - rot: 3.141592653589793 rad pos: 17.5,26.5 parent: 2 type: Transform - - uid: 4793 + - uid: 4785 components: - rot: -1.5707963267948966 rad pos: 16.5,27.5 parent: 2 type: Transform - - uid: 4794 + - uid: 4786 components: - rot: -1.5707963267948966 rad pos: 15.5,27.5 parent: 2 type: Transform - - uid: 4795 + - uid: 4787 components: - rot: -1.5707963267948966 rad pos: 14.5,27.5 parent: 2 type: Transform - - uid: 4796 + - uid: 4788 components: - pos: 2.5,11.5 parent: 2 type: Transform - - uid: 4797 + - uid: 4789 components: - pos: 2.5,10.5 parent: 2 type: Transform - - uid: 4798 + - uid: 4790 components: - pos: 2.5,9.5 parent: 2 type: Transform - - uid: 4799 + - uid: 4791 components: - pos: 2.5,7.5 parent: 2 type: Transform - - uid: 4800 + - uid: 4792 components: - rot: -1.5707963267948966 rad pos: 3.5,6.5 parent: 2 type: Transform - - uid: 4801 + - uid: 4793 components: - rot: 3.141592653589793 rad pos: 2.5,5.5 parent: 2 type: Transform - - uid: 4802 + - uid: 4794 components: - rot: 3.141592653589793 rad pos: 2.5,4.5 parent: 2 type: Transform - - uid: 4803 + - uid: 4795 components: - rot: 3.141592653589793 rad pos: 2.5,3.5 parent: 2 type: Transform - - uid: 4804 + - uid: 4796 components: - rot: 3.141592653589793 rad pos: 2.5,1.5 parent: 2 type: Transform - - uid: 4805 + - uid: 4797 components: - pos: 3.5,-0.5 parent: 2 type: Transform - - uid: 4806 + - uid: 4798 components: - pos: 3.5,-1.5 parent: 2 type: Transform - - uid: 4807 + - uid: 4799 components: - pos: 3.5,-2.5 parent: 2 type: Transform - - uid: 4808 + - uid: 4800 components: - pos: 3.5,-3.5 parent: 2 type: Transform - - uid: 4809 + - uid: 4801 components: - pos: 3.5,-4.5 parent: 2 type: Transform - - uid: 4810 + - uid: 4802 components: - pos: 3.5,-5.5 parent: 2 type: Transform - - uid: 4811 + - uid: 4803 components: - pos: 3.5,-6.5 parent: 2 type: Transform - - uid: 4812 + - uid: 4804 components: - pos: 3.5,-7.5 parent: 2 type: Transform - - uid: 4813 + - uid: 4805 components: - pos: 3.5,-8.5 parent: 2 type: Transform - - uid: 4814 + - uid: 4806 components: - pos: 3.5,-9.5 parent: 2 type: Transform - - uid: 4815 + - uid: 4807 components: - pos: 3.5,-10.5 parent: 2 type: Transform - - uid: 4816 + - uid: 4808 components: - pos: 3.5,-11.5 parent: 2 type: Transform - - uid: 4817 + - uid: 4809 components: - rot: 3.141592653589793 rad pos: 4.5,-13.5 parent: 2 type: Transform - - uid: 4818 + - uid: 4810 components: - rot: 3.141592653589793 rad pos: 4.5,-14.5 parent: 2 type: Transform - - uid: 4819 + - uid: 4811 components: - rot: 3.141592653589793 rad pos: 4.5,-15.5 parent: 2 type: Transform - - uid: 4820 + - uid: 4812 components: - rot: 3.141592653589793 rad pos: 4.5,-16.5 parent: 2 type: Transform - - uid: 4821 + - uid: 4813 components: - pos: 4.5,-17.5 parent: 2 type: Transform - - uid: 4822 + - uid: 4814 components: - rot: 1.5707963267948966 rad pos: 3.5,-18.5 parent: 2 type: Transform - - uid: 4823 + - uid: 4815 components: - rot: 1.5707963267948966 rad pos: 2.5,-18.5 parent: 2 type: Transform - - uid: 4824 + - uid: 4816 components: - rot: 3.141592653589793 rad pos: -6.5,-25.5 parent: 2 type: Transform - - uid: 4825 + - uid: 4817 components: - rot: 3.141592653589793 rad pos: -6.5,-24.5 parent: 2 type: Transform - - uid: 4826 + - uid: 4818 components: - rot: 3.141592653589793 rad pos: -6.5,-23.5 parent: 2 type: Transform - - uid: 4827 + - uid: 4819 components: - rot: 3.141592653589793 rad pos: -6.5,-22.5 parent: 2 type: Transform - - uid: 4828 + - uid: 4820 components: - rot: 3.141592653589793 rad pos: -6.5,-21.5 parent: 2 type: Transform - - uid: 4829 + - uid: 4821 components: - rot: 3.141592653589793 rad pos: -6.5,-20.5 parent: 2 type: Transform - - uid: 4830 + - uid: 4822 components: - rot: 3.141592653589793 rad pos: -6.5,-19.5 parent: 2 type: Transform - - uid: 4831 + - uid: 4823 components: - rot: 1.5707963267948966 rad pos: -5.5,-18.5 parent: 2 type: Transform - - uid: 4832 + - uid: 4824 components: - rot: 1.5707963267948966 rad pos: -4.5,-18.5 parent: 2 type: Transform - - uid: 4833 + - uid: 4825 components: - rot: 1.5707963267948966 rad pos: -2.5,-18.5 parent: 2 type: Transform - - uid: 4834 + - uid: 4826 components: - rot: 1.5707963267948966 rad pos: -1.5,-18.5 parent: 2 type: Transform - - uid: 4835 + - uid: 4827 components: - rot: 1.5707963267948966 rad pos: -0.5,-18.5 parent: 2 type: Transform - - uid: 4836 + - uid: 4828 components: - rot: 1.5707963267948966 rad pos: 1.5,-18.5 parent: 2 type: Transform - - uid: 4837 + - uid: 4829 components: - rot: 3.141592653589793 rad pos: -11.5,-5.5 parent: 2 type: Transform - - uid: 4838 + - uid: 4830 components: - rot: 3.141592653589793 rad pos: -11.5,-6.5 parent: 2 type: Transform - - uid: 4839 + - uid: 4831 components: - rot: 3.141592653589793 rad pos: -11.5,-7.5 parent: 2 type: Transform - - uid: 4840 + - uid: 4832 components: - rot: 3.141592653589793 rad pos: -11.5,-8.5 parent: 2 type: Transform - - uid: 4841 + - uid: 4833 components: - rot: 3.141592653589793 rad pos: -11.5,-9.5 parent: 2 type: Transform - - uid: 4842 + - uid: 4834 components: - rot: 3.141592653589793 rad pos: -11.5,-10.5 parent: 2 type: Transform - - uid: 4843 + - uid: 4835 components: - rot: 3.141592653589793 rad pos: -11.5,-12.5 parent: 2 type: Transform - - uid: 4844 + - uid: 4836 components: - rot: 1.5707963267948966 rad pos: -12.5,-11.5 parent: 2 type: Transform - - uid: 4845 + - uid: 4837 components: - rot: 1.5707963267948966 rad pos: -13.5,-11.5 parent: 2 type: Transform - - uid: 4846 + - uid: 4838 components: - rot: -1.5707963267948966 rad pos: -10.5,-2.5 parent: 2 type: Transform - - uid: 4847 + - uid: 4839 components: - rot: -1.5707963267948966 rad pos: -9.5,-2.5 parent: 2 type: Transform - - uid: 4848 + - uid: 4840 components: - rot: -1.5707963267948966 rad pos: -8.5,-2.5 parent: 2 type: Transform - - uid: 4849 + - uid: 4841 components: - rot: -1.5707963267948966 rad pos: -7.5,-2.5 parent: 2 type: Transform - - uid: 4850 + - uid: 4842 components: - rot: -1.5707963267948966 rad pos: -0.5,0.5 parent: 2 type: Transform - - uid: 4851 + - uid: 4843 components: - rot: -1.5707963267948966 rad pos: -1.5,0.5 parent: 2 type: Transform - - uid: 4852 + - uid: 4844 components: - pos: -2.5,-0.5 parent: 2 type: Transform - - uid: 4853 + - uid: 4845 components: - pos: -2.5,-1.5 parent: 2 type: Transform - - uid: 4854 + - uid: 4846 components: - rot: 1.5707963267948966 rad pos: -5.5,-2.5 parent: 2 type: Transform - - uid: 4855 + - uid: 4847 components: - rot: 1.5707963267948966 rad pos: -4.5,-2.5 parent: 2 type: Transform - - uid: 4856 + - uid: 4848 components: - rot: 1.5707963267948966 rad pos: -3.5,-2.5 parent: 2 type: Transform - - uid: 4857 + - uid: 4849 components: - pos: -6.5,-3.5 parent: 2 type: Transform - - uid: 4858 + - uid: 4850 components: - pos: -6.5,-4.5 parent: 2 type: Transform - - uid: 4859 + - uid: 4851 components: - pos: -6.5,-6.5 parent: 2 type: Transform - - uid: 4860 + - uid: 4852 components: - pos: -6.5,-7.5 parent: 2 type: Transform - - uid: 4861 + - uid: 4853 components: - rot: 1.5707963267948966 rad pos: -8.5,-8.5 parent: 2 type: Transform - - uid: 4862 + - uid: 4854 components: - rot: 1.5707963267948966 rad pos: -7.5,-8.5 parent: 2 type: Transform - - uid: 4863 + - uid: 4855 components: - rot: 1.5707963267948966 rad pos: -17.5,8.5 parent: 2 type: Transform - - uid: 4864 + - uid: 4856 components: - rot: 1.5707963267948966 rad pos: -16.5,8.5 parent: 2 type: Transform - - uid: 4865 + - uid: 4857 components: - rot: 1.5707963267948966 rad pos: -15.5,8.5 parent: 2 type: Transform - - uid: 4866 + - uid: 4858 components: - rot: 1.5707963267948966 rad pos: -14.5,8.5 parent: 2 type: Transform - - uid: 4867 + - uid: 4859 components: - rot: 1.5707963267948966 rad pos: -13.5,8.5 parent: 2 type: Transform - - uid: 4868 + - uid: 4860 components: - pos: -11.5,-1.5 parent: 2 type: Transform - - uid: 4869 + - uid: 4861 components: - pos: -11.5,-0.5 parent: 2 type: Transform - - uid: 4870 + - uid: 4862 components: - pos: -11.5,0.5 parent: 2 type: Transform - - uid: 4871 + - uid: 4863 components: - pos: -11.5,1.5 parent: 2 type: Transform - - uid: 4872 + - uid: 4864 components: - pos: -11.5,2.5 parent: 2 type: Transform - - uid: 4873 + - uid: 4865 components: - pos: -11.5,3.5 parent: 2 type: Transform - - uid: 4874 + - uid: 4866 components: - pos: -11.5,4.5 parent: 2 type: Transform - - uid: 4875 + - uid: 4867 components: - pos: -11.5,5.5 parent: 2 type: Transform - - uid: 4876 + - uid: 4868 components: - pos: -11.5,6.5 parent: 2 type: Transform - - uid: 4877 + - uid: 4869 components: - pos: -11.5,7.5 parent: 2 type: Transform - - uid: 4878 + - uid: 4870 components: - rot: 1.5707963267948966 rad pos: -12.5,8.5 parent: 2 type: Transform - - uid: 4879 + - uid: 4871 components: - rot: 1.5707963267948966 rad pos: -10.5,9.5 parent: 2 type: Transform - - uid: 4880 + - uid: 4872 components: - rot: 1.5707963267948966 rad pos: -9.5,9.5 parent: 2 type: Transform - - uid: 4881 + - uid: 4873 components: - rot: 1.5707963267948966 rad pos: -8.5,9.5 parent: 2 type: Transform - - uid: 4882 + - uid: 4874 components: - rot: 1.5707963267948966 rad pos: -7.5,9.5 parent: 2 type: Transform - - uid: 4883 + - uid: 4875 components: - rot: 1.5707963267948966 rad pos: -6.5,9.5 parent: 2 type: Transform - - uid: 4884 + - uid: 4876 components: - rot: 1.5707963267948966 rad pos: -5.5,9.5 parent: 2 type: Transform - - uid: 4885 + - uid: 4877 components: - pos: -4.5,13.5 parent: 2 type: Transform - - uid: 4886 + - uid: 4878 components: - pos: -11.5,11.5 parent: 2 type: Transform - - uid: 4887 + - uid: 4879 components: - pos: -11.5,10.5 parent: 2 type: Transform - - uid: 4888 + - uid: 4880 components: - rot: -1.5707963267948966 rad pos: -10.5,12.5 parent: 2 type: Transform - - uid: 4889 + - uid: 4881 components: - rot: -1.5707963267948966 rad pos: -9.5,12.5 parent: 2 type: Transform - - uid: 4890 + - uid: 4882 components: - rot: -1.5707963267948966 rad pos: -8.5,12.5 parent: 2 type: Transform - - uid: 4891 + - uid: 4883 components: - rot: -1.5707963267948966 rad pos: -7.5,12.5 parent: 2 type: Transform - - uid: 4892 + - uid: 4884 components: - rot: -1.5707963267948966 rad pos: -5.5,12.5 parent: 2 type: Transform - - uid: 4893 + - uid: 4885 components: - rot: -1.5707963267948966 rad pos: -3.5,12.5 parent: 2 type: Transform - - uid: 4894 + - uid: 4886 components: - pos: -29.5,34.5 parent: 2 type: Transform - - uid: 4895 + - uid: 4887 components: - pos: -29.5,33.5 parent: 2 type: Transform - - uid: 4896 + - uid: 4888 components: - pos: -29.5,32.5 parent: 2 type: Transform - - uid: 4897 + - uid: 4889 components: - pos: -29.5,31.5 parent: 2 type: Transform - - uid: 4898 + - uid: 4890 components: - rot: 1.5707963267948966 rad pos: -28.5,30.5 parent: 2 type: Transform - - uid: 4899 + - uid: 4891 components: - pos: -27.5,27.5 parent: 2 type: Transform - - uid: 4900 + - uid: 4892 components: - pos: -27.5,26.5 parent: 2 type: Transform - - uid: 4901 + - uid: 4893 components: - rot: 3.141592653589793 rad pos: -18.5,15.5 parent: 2 type: Transform - - uid: 4902 + - uid: 4894 components: - rot: 1.5707963267948966 rad pos: 5.5,-12.5 parent: 2 type: Transform - - uid: 4903 + - uid: 4895 components: - rot: 1.5707963267948966 rad pos: 6.5,-12.5 parent: 2 type: Transform - - uid: 4904 + - uid: 4896 components: - rot: 1.5707963267948966 rad pos: 7.5,-12.5 parent: 2 type: Transform - - uid: 4905 + - uid: 4897 components: - rot: 1.5707963267948966 rad pos: 8.5,-12.5 parent: 2 type: Transform - - uid: 4906 + - uid: 4898 components: - rot: 3.141592653589793 rad pos: 10.5,-13.5 parent: 2 type: Transform - - uid: 4907 + - uid: 4899 components: - rot: 3.141592653589793 rad pos: 10.5,-14.5 parent: 2 type: Transform - - uid: 4908 + - uid: 4900 components: - rot: 3.141592653589793 rad pos: 10.5,-18.5 parent: 2 type: Transform - - uid: 4909 + - uid: 4901 components: - rot: 3.141592653589793 rad pos: 10.5,-15.5 parent: 2 type: Transform - - uid: 4910 + - uid: 4902 components: - rot: 3.141592653589793 rad pos: 10.5,-20.5 parent: 2 type: Transform - - uid: 4911 + - uid: 4903 components: - rot: 3.141592653589793 rad pos: 10.5,-17.5 parent: 2 type: Transform - - uid: 4912 + - uid: 4904 components: - rot: -1.5707963267948966 rad pos: 11.5,-21.5 parent: 2 type: Transform - - uid: 4913 + - uid: 4905 components: - rot: 1.5707963267948966 rad pos: 9.5,-12.5 parent: 2 type: Transform - - uid: 4914 + - uid: 4906 components: - rot: 3.141592653589793 rad pos: 10.5,-16.5 parent: 2 type: Transform - - uid: 4915 + - uid: 4907 components: - rot: 1.5707963267948966 rad pos: -22.5,-3.5 parent: 2 type: Transform - - uid: 4916 + - uid: 4908 components: - rot: 1.5707963267948966 rad pos: -24.5,-3.5 parent: 2 type: Transform - - uid: 4917 + - uid: 4909 components: - rot: 1.5707963267948966 rad pos: -21.5,-3.5 parent: 2 type: Transform - - uid: 4918 + - uid: 4910 components: - rot: 1.5707963267948966 rad pos: -20.5,-3.5 parent: 2 type: Transform - - uid: 4919 + - uid: 4911 components: - rot: 1.5707963267948966 rad pos: -19.5,-3.5 parent: 2 type: Transform - - uid: 4920 + - uid: 4912 components: - rot: 1.5707963267948966 rad pos: -18.5,-3.5 parent: 2 type: Transform - - uid: 4921 + - uid: 4913 components: - rot: 1.5707963267948966 rad pos: -17.5,-3.5 parent: 2 type: Transform - - uid: 4922 + - uid: 4914 components: - rot: 1.5707963267948966 rad pos: -16.5,-3.5 parent: 2 type: Transform - - uid: 4923 + - uid: 4915 components: - rot: 1.5707963267948966 rad pos: -15.5,-3.5 parent: 2 type: Transform - - uid: 4924 + - uid: 4916 components: - rot: 1.5707963267948966 rad pos: -25.5,-3.5 parent: 2 type: Transform - - uid: 4925 + - uid: 4917 components: - rot: 1.5707963267948966 rad pos: -23.5,-3.5 parent: 2 type: Transform - - uid: 4926 + - uid: 4918 components: - pos: -27.5,7.5 parent: 2 type: Transform - - uid: 4927 + - uid: 4919 components: - rot: 3.141592653589793 rad pos: 7.5,7.5 parent: 2 type: Transform - - uid: 4928 + - uid: 4920 components: - rot: 1.5707963267948966 rad pos: 8.5,6.5 parent: 2 type: Transform - - uid: 4929 + - uid: 4921 components: - rot: 1.5707963267948966 rad pos: 9.5,6.5 parent: 2 type: Transform - - uid: 4930 + - uid: 4922 components: - pos: 10.5,5.5 parent: 2 type: Transform - - uid: 4931 + - uid: 4923 components: - rot: 3.141592653589793 rad pos: -11.5,-20.5 parent: 2 type: Transform - - uid: 4932 + - uid: 4924 components: - rot: 3.141592653589793 rad pos: -11.5,-19.5 parent: 2 type: Transform - - uid: 4933 + - uid: 4925 components: - rot: 3.141592653589793 rad pos: -11.5,-18.5 parent: 2 type: Transform - - uid: 4934 + - uid: 4926 components: - rot: 3.141592653589793 rad pos: -11.5,-17.5 parent: 2 type: Transform - - uid: 4935 + - uid: 4927 components: - rot: 3.141592653589793 rad pos: -11.5,-16.5 parent: 2 type: Transform - - uid: 4936 + - uid: 4928 components: - rot: 3.141592653589793 rad pos: -11.5,-15.5 parent: 2 type: Transform - - uid: 4937 + - uid: 4929 components: - rot: 3.141592653589793 rad pos: -11.5,-14.5 parent: 2 type: Transform - - uid: 4938 + - uid: 4930 components: - rot: 3.141592653589793 rad pos: -11.5,-13.5 parent: 2 type: Transform - - uid: 4939 + - uid: 4931 components: - pos: -27.5,10.5 parent: 2 type: Transform - - uid: 4940 + - uid: 4932 components: - rot: 3.141592653589793 rad pos: -18.5,14.5 parent: 2 type: Transform - - uid: 4941 + - uid: 4933 components: - pos: -27.5,8.5 parent: 2 type: Transform - - uid: 4942 + - uid: 4934 components: - pos: -27.5,5.5 parent: 2 type: Transform - - uid: 4943 + - uid: 4935 components: - pos: -26.5,-2.5 parent: 2 type: Transform - - uid: 4944 + - uid: 4936 components: - pos: -27.5,4.5 parent: 2 type: Transform - - uid: 4945 + - uid: 4937 components: - rot: 3.141592653589793 rad pos: -18.5,13.5 parent: 2 type: Transform - - uid: 4946 + - uid: 4938 components: - rot: 3.141592653589793 rad pos: -18.5,12.5 parent: 2 type: Transform - - uid: 4947 + - uid: 4939 components: - rot: 3.141592653589793 rad pos: -18.5,11.5 parent: 2 type: Transform - - uid: 4948 + - uid: 4940 components: - rot: 3.141592653589793 rad pos: -18.5,10.5 parent: 2 type: Transform - - uid: 4949 + - uid: 4941 components: - rot: 3.141592653589793 rad pos: -18.5,9.5 parent: 2 type: Transform - - uid: 4950 + - uid: 4942 components: - pos: -6.5,20.5 parent: 2 type: Transform - - uid: 4951 + - uid: 4943 components: - pos: -6.5,19.5 parent: 2 type: Transform - - uid: 4952 + - uid: 4944 components: - pos: -6.5,18.5 parent: 2 type: Transform - - uid: 4953 + - uid: 4945 components: - pos: -6.5,17.5 parent: 2 type: Transform - - uid: 4954 + - uid: 4946 components: - pos: -6.5,16.5 parent: 2 type: Transform - - uid: 4955 + - uid: 4947 components: - pos: -6.5,15.5 parent: 2 type: Transform - - uid: 4956 + - uid: 4948 components: - pos: -6.5,14.5 parent: 2 type: Transform - - uid: 4957 + - uid: 4949 components: - pos: -6.5,13.5 parent: 2 type: Transform - - uid: 4958 + - uid: 4950 components: - rot: -1.5707963267948966 rad pos: 20.5,13.5 parent: 2 type: Transform - - uid: 4959 + - uid: 4951 components: - rot: -1.5707963267948966 rad pos: 19.5,13.5 parent: 2 type: Transform - - uid: 4960 + - uid: 4952 components: - rot: -1.5707963267948966 rad pos: 18.5,13.5 parent: 2 type: Transform - - uid: 4961 + - uid: 4953 components: - rot: -1.5707963267948966 rad pos: 17.5,13.5 parent: 2 type: Transform - - uid: 4962 + - uid: 4954 components: - rot: -1.5707963267948966 rad pos: 16.5,13.5 parent: 2 type: Transform - - uid: 4963 + - uid: 4955 components: - rot: -1.5707963267948966 rad pos: 15.5,13.5 parent: 2 type: Transform - - uid: 4964 + - uid: 4956 components: - rot: -1.5707963267948966 rad pos: 14.5,13.5 parent: 2 type: Transform - - uid: 4965 + - uid: 4957 components: - rot: -1.5707963267948966 rad pos: 13.5,13.5 parent: 2 type: Transform - - uid: 4966 + - uid: 4958 components: - rot: -1.5707963267948966 rad pos: 12.5,13.5 parent: 2 type: Transform - - uid: 4967 + - uid: 4959 components: - rot: -1.5707963267948966 rad pos: 16.5,-19.5 parent: 2 type: Transform - - uid: 4968 + - uid: 4960 components: - rot: -1.5707963267948966 rad pos: 15.5,-19.5 parent: 2 type: Transform - - uid: 4969 + - uid: 4961 components: - rot: -1.5707963267948966 rad pos: 14.5,-19.5 parent: 2 type: Transform - - uid: 4970 + - uid: 4962 components: - rot: -1.5707963267948966 rad pos: 13.5,-19.5 parent: 2 type: Transform - - uid: 4971 + - uid: 4963 components: - rot: -1.5707963267948966 rad pos: 12.5,-19.5 parent: 2 type: Transform - - uid: 4972 + - uid: 4964 components: - rot: -1.5707963267948966 rad pos: 11.5,-19.5 parent: 2 type: Transform - - uid: 4973 + - uid: 4965 components: - rot: -1.5707963267948966 rad pos: -21.5,-15.5 parent: 2 type: Transform - - uid: 4974 + - uid: 4966 components: - pos: -26.5,-1.5 parent: 2 type: Transform - - uid: 4975 + - uid: 4967 components: - pos: -27.5,6.5 parent: 2 type: Transform - - uid: 4976 + - uid: 4968 components: - pos: -3.5,-19.5 parent: 2 type: Transform - - uid: 4977 + - uid: 4969 components: - pos: -3.5,-20.5 parent: 2 type: Transform - - uid: 4978 + - uid: 4970 components: - pos: -3.5,-21.5 parent: 2 type: Transform - - uid: 4979 + - uid: 4971 components: - pos: -3.5,-22.5 parent: 2 type: Transform - - uid: 4980 + - uid: 4972 components: - pos: -3.5,-23.5 parent: 2 type: Transform - - uid: 4981 + - uid: 4973 components: - pos: -16.5,-13.5 parent: 2 type: Transform - - uid: 4982 + - uid: 4974 components: - pos: -27.5,9.5 parent: 2 type: Transform - - uid: 4983 + - uid: 4975 components: - rot: 1.5707963267948966 rad pos: -17.5,-14.5 parent: 2 type: Transform - - uid: 4984 + - uid: 4976 components: - rot: 1.5707963267948966 rad pos: -5.5,-5.5 parent: 2 type: Transform - - uid: 4985 + - uid: 4977 components: - rot: 1.5707963267948966 rad pos: -4.5,-5.5 parent: 2 type: Transform - - uid: 4986 + - uid: 4978 components: - rot: 3.141592653589793 rad pos: -6.5,32.5 parent: 2 type: Transform - - uid: 4987 + - uid: 4979 components: - rot: 3.141592653589793 rad pos: -6.5,31.5 parent: 2 type: Transform - - uid: 4988 + - uid: 4980 components: - rot: 3.141592653589793 rad pos: -6.5,30.5 parent: 2 type: Transform - - uid: 4989 + - uid: 4981 components: - rot: 3.141592653589793 rad pos: -6.5,29.5 parent: 2 type: Transform - - uid: 4990 + - uid: 4982 components: - rot: 3.141592653589793 rad pos: -6.5,27.5 parent: 2 type: Transform - - uid: 4991 + - uid: 4983 components: - rot: 3.141592653589793 rad pos: -6.5,26.5 parent: 2 type: Transform - - uid: 4992 + - uid: 4984 components: - rot: 3.141592653589793 rad pos: -6.5,25.5 parent: 2 type: Transform - - uid: 4993 + - uid: 4985 components: - rot: 3.141592653589793 rad pos: -6.5,24.5 parent: 2 type: Transform - - uid: 4994 + - uid: 4986 components: - rot: 3.141592653589793 rad pos: -6.5,23.5 parent: 2 type: Transform - - uid: 4995 + - uid: 4987 components: - rot: 3.141592653589793 rad pos: -6.5,22.5 parent: 2 type: Transform - - uid: 4996 + - uid: 4988 components: - rot: 3.141592653589793 rad pos: -6.5,21.5 parent: 2 type: Transform - - uid: 4997 + - uid: 4989 components: - rot: -1.5707963267948966 rad pos: -5.5,28.5 parent: 2 type: Transform - - uid: 4998 + - uid: 4990 components: - rot: -1.5707963267948966 rad pos: -4.5,28.5 parent: 2 type: Transform - - uid: 4999 + - uid: 4991 components: - rot: -1.5707963267948966 rad pos: -3.5,28.5 parent: 2 type: Transform - - uid: 5000 + - uid: 4992 components: - rot: -1.5707963267948966 rad pos: -5.5,33.5 parent: 2 type: Transform - - uid: 5001 + - uid: 4993 components: - rot: 3.141592653589793 rad pos: 3.5,27.5 parent: 2 type: Transform - - uid: 5002 + - uid: 4994 components: - rot: 3.141592653589793 rad pos: 3.5,28.5 parent: 2 type: Transform - - uid: 5003 + - uid: 4995 components: - rot: 1.5707963267948966 rad pos: 2.5,29.5 parent: 2 type: Transform - - uid: 5004 + - uid: 4996 components: - rot: 1.5707963267948966 rad pos: 1.5,29.5 parent: 2 type: Transform - - uid: 5005 + - uid: 4997 components: - rot: 1.5707963267948966 rad pos: 0.5,29.5 parent: 2 type: Transform - - uid: 5006 + - uid: 4998 components: - rot: 1.5707963267948966 rad pos: -1.5,28.5 parent: 2 type: Transform - - uid: 5007 + - uid: 4999 components: - pos: -26.5,-0.5 parent: 2 type: Transform - - uid: 5008 + - uid: 5000 components: - pos: -26.5,0.5 parent: 2 type: Transform - - uid: 5009 + - uid: 5001 components: - pos: -26.5,1.5 parent: 2 type: Transform - - uid: 5010 + - uid: 5002 components: - pos: -26.5,2.5 parent: 2 type: Transform - - uid: 5011 + - uid: 5003 components: - pos: -20.5,-20.5 parent: 2 type: Transform - - uid: 5012 + - uid: 5004 components: - pos: -20.5,-19.5 parent: 2 type: Transform - - uid: 5013 + - uid: 5005 components: - rot: -1.5707963267948966 rad pos: 5.5,2.5 parent: 2 type: Transform - - uid: 5014 + - uid: 5006 components: - rot: -1.5707963267948966 rad pos: 7.5,2.5 parent: 2 type: Transform - - uid: 5015 + - uid: 5007 components: - rot: 1.5707963267948966 rad pos: -21.5,-18.5 parent: 2 type: Transform - - uid: 5016 + - uid: 5008 components: - rot: 3.141592653589793 rad pos: -22.5,-16.5 parent: 2 type: Transform - - uid: 5017 + - uid: 5009 components: - rot: 3.141592653589793 rad pos: -22.5,-17.5 parent: 2 type: Transform - - uid: 5018 + - uid: 5010 components: - rot: 3.141592653589793 rad pos: 6.5,1.5 parent: 2 type: Transform - - uid: 5019 + - uid: 5011 components: - rot: 3.141592653589793 rad pos: 6.5,0.5 parent: 2 type: Transform - - uid: 5020 + - uid: 5012 components: - rot: 3.141592653589793 rad pos: 6.5,-0.5 parent: 2 type: Transform - - uid: 5021 + - uid: 5013 components: - rot: 3.141592653589793 rad pos: 6.5,-1.5 parent: 2 type: Transform - - uid: 5022 + - uid: 5014 components: - rot: -1.5707963267948966 rad pos: 8.5,2.5 parent: 2 type: Transform - - uid: 5023 + - uid: 5015 components: - rot: -1.5707963267948966 rad pos: 9.5,2.5 parent: 2 type: Transform - - uid: 5024 + - uid: 5016 components: - rot: -1.5707963267948966 rad pos: 10.5,2.5 parent: 2 type: Transform - - uid: 5025 + - uid: 5017 components: - rot: 1.5707963267948966 rad pos: 12.5,1.5 parent: 2 type: Transform - - uid: 5026 + - uid: 5018 components: - rot: 1.5707963267948966 rad pos: 14.5,0.5 parent: 2 type: Transform - - uid: 5027 + - uid: 5019 components: - rot: 1.5707963267948966 rad pos: 15.5,0.5 parent: 2 type: Transform - - uid: 5028 + - uid: 5020 components: - rot: 1.5707963267948966 rad pos: 16.5,0.5 parent: 2 type: Transform - - uid: 5029 + - uid: 5021 components: - rot: 1.5707963267948966 rad pos: 18.5,0.5 parent: 2 type: Transform - - uid: 5030 + - uid: 5022 components: - rot: 1.5707963267948966 rad pos: 19.5,0.5 parent: 2 type: Transform - - uid: 5031 + - uid: 5023 components: - rot: 1.5707963267948966 rad pos: 20.5,0.5 parent: 2 type: Transform - - uid: 5032 + - uid: 5024 components: - rot: 1.5707963267948966 rad pos: 21.5,0.5 parent: 2 type: Transform - - uid: 5033 + - uid: 5025 components: - rot: 1.5707963267948966 rad pos: 22.5,0.5 parent: 2 type: Transform - - uid: 5034 + - uid: 5026 components: - rot: 1.5707963267948966 rad pos: 23.5,0.5 parent: 2 type: Transform - - uid: 5035 + - uid: 5027 components: - rot: 1.5707963267948966 rad pos: 24.5,0.5 parent: 2 type: Transform - - uid: 5036 + - uid: 5028 components: - rot: 1.5707963267948966 rad pos: 25.5,0.5 parent: 2 type: Transform - - uid: 5037 + - uid: 5029 components: - rot: 1.5707963267948966 rad pos: 26.5,0.5 parent: 2 type: Transform - - uid: 5038 + - uid: 5030 components: - pos: 27.5,-2.5 parent: 2 type: Transform - - uid: 5039 + - uid: 5031 components: - pos: 27.5,-1.5 parent: 2 type: Transform - - uid: 5040 + - uid: 5032 components: - pos: 27.5,-0.5 parent: 2 type: Transform - proto: DisposalPipeBroken entities: - - uid: 5041 + - uid: 5033 components: - rot: -1.5707963267948966 rad pos: -27.5,30.5 parent: 2 type: Transform - - uid: 5042 + - uid: 5034 components: - pos: -27.5,28.5 parent: 2 type: Transform - - uid: 5043 + - uid: 5035 components: - rot: 3.141592653589793 rad pos: -27.5,25.5 @@ -32088,7 +32231,7 @@ entities: type: Transform - proto: DisposalRouter entities: - - uid: 5044 + - uid: 5036 components: - rot: 1.5707963267948966 rad pos: 7.5,8.5 @@ -32099,311 +32242,311 @@ entities: type: DisposalRouter - proto: DisposalTrunk entities: - - uid: 5045 + - uid: 5037 components: - rot: -1.5707963267948966 rad pos: 0.5,0.5 parent: 2 type: Transform - - uid: 5046 + - uid: 5038 components: - rot: 3.141592653589793 rad pos: -18.5,7.5 parent: 2 type: Transform - - uid: 5047 + - uid: 5039 components: - pos: 21.5,14.5 parent: 2 type: Transform - - uid: 5048 + - uid: 5040 components: - rot: -1.5707963267948966 rad pos: 12.5,16.5 parent: 2 type: Transform - - uid: 5049 + - uid: 5041 components: - rot: 1.5707963267948966 rad pos: 13.5,27.5 parent: 2 type: Transform - - uid: 5050 + - uid: 5042 components: - rot: -1.5707963267948966 rad pos: 4.5,6.5 parent: 2 type: Transform - - uid: 5051 + - uid: 5043 components: - rot: 3.141592653589793 rad pos: -6.5,-26.5 parent: 2 type: Transform - - uid: 5052 + - uid: 5044 components: - pos: 0.5,-17.5 parent: 2 type: Transform - - uid: 5053 + - uid: 5045 components: - rot: 1.5707963267948966 rad pos: -9.5,-8.5 parent: 2 type: Transform - - uid: 5054 + - uid: 5046 components: - pos: -4.5,10.5 parent: 2 type: Transform - - uid: 5055 + - uid: 5047 components: - pos: -29.5,35.5 parent: 2 type: Transform - - uid: 5056 + - uid: 5048 components: - rot: -1.5707963267948966 rad pos: -17.5,16.5 parent: 2 type: Transform - - uid: 5057 + - uid: 5049 components: - rot: -1.5707963267948966 rad pos: 12.5,-21.5 parent: 2 type: Transform - - uid: 5058 + - uid: 5050 components: - rot: 3.141592653589793 rad pos: -27.5,-4.5 parent: 2 type: Transform - - uid: 5059 + - uid: 5051 components: - rot: 3.141592653589793 rad pos: 10.5,4.5 parent: 2 type: Transform - - uid: 5060 + - uid: 5052 components: - rot: -1.5707963267948966 rad pos: -10.5,-21.5 parent: 2 type: Transform - - uid: 5061 + - uid: 5053 components: - rot: -1.5707963267948966 rad pos: 10.5,8.5 parent: 2 type: Transform - - uid: 5062 + - uid: 5054 components: - rot: -1.5707963267948966 rad pos: -26.5,11.5 parent: 2 type: Transform - - uid: 5063 + - uid: 5055 components: - pos: -4.5,14.5 parent: 2 type: Transform - - uid: 5064 + - uid: 5056 components: - rot: 3.141592653589793 rad pos: 17.5,-20.5 parent: 2 type: Transform - - uid: 5065 + - uid: 5057 components: - rot: 3.141592653589793 rad pos: -3.5,-24.5 parent: 2 type: Transform - - uid: 5066 + - uid: 5058 components: - rot: 3.141592653589793 rad pos: -16.5,-15.5 parent: 2 type: Transform - - uid: 5067 + - uid: 5059 components: - rot: -1.5707963267948966 rad pos: -3.5,-5.5 parent: 2 type: Transform - - uid: 5068 + - uid: 5060 components: - rot: -1.5707963267948966 rad pos: -4.5,33.5 parent: 2 type: Transform - - uid: 5069 + - uid: 5061 components: - pos: -2.5,29.5 parent: 2 type: Transform - - uid: 5070 + - uid: 5062 components: - rot: -1.5707963267948966 rad pos: 4.5,26.5 parent: 2 type: Transform - - uid: 5071 + - uid: 5063 components: - rot: 3.141592653589793 rad pos: -20.5,-21.5 parent: 2 type: Transform - - uid: 5072 + - uid: 5064 components: - rot: 3.141592653589793 rad pos: 6.5,-2.5 parent: 2 type: Transform - - uid: 5073 + - uid: 5065 components: - rot: 3.141592653589793 rad pos: 17.5,-0.5 parent: 2 type: Transform - - uid: 5074 + - uid: 5066 components: - rot: -1.5707963267948966 rad pos: 28.5,-3.5 parent: 2 type: Transform - - uid: 5075 + - uid: 5067 components: - pos: -14.5,-10.5 parent: 2 type: Transform - proto: DisposalUnit entities: - - uid: 5076 + - uid: 5068 components: - pos: -14.5,-10.5 parent: 2 type: Transform - - uid: 5077 + - uid: 5069 components: - pos: -10.5,-21.5 parent: 2 type: Transform - - uid: 5078 + - uid: 5070 components: - pos: 0.5,0.5 parent: 2 type: Transform - - uid: 5079 + - uid: 5071 components: - pos: -18.5,7.5 parent: 2 type: Transform - - uid: 5080 + - uid: 5072 components: - pos: 12.5,16.5 parent: 2 type: Transform - - uid: 5081 + - uid: 5073 components: - pos: 13.5,27.5 parent: 2 type: Transform - - uid: 5082 + - uid: 5074 components: - pos: 4.5,6.5 parent: 2 type: Transform - - uid: 5083 + - uid: 5075 components: - pos: -6.5,-26.5 parent: 2 type: Transform - - uid: 5084 + - uid: 5076 components: - pos: 0.5,-17.5 parent: 2 type: Transform - - uid: 5085 + - uid: 5077 components: - pos: -3.5,-5.5 parent: 2 type: Transform - - uid: 5086 + - uid: 5078 components: - pos: -9.5,-8.5 parent: 2 type: Transform - - uid: 5087 + - uid: 5079 components: - pos: -4.5,10.5 parent: 2 type: Transform - - uid: 5088 + - uid: 5080 components: - pos: 12.5,-21.5 parent: 2 type: Transform - - uid: 5089 + - uid: 5081 components: - pos: -27.5,-4.5 parent: 2 type: Transform - - uid: 5090 + - uid: 5082 components: - pos: -26.5,11.5 parent: 2 type: Transform - - uid: 5091 + - uid: 5083 components: - pos: -4.5,14.5 parent: 2 type: Transform - - uid: 5092 + - uid: 5084 components: - pos: -2.5,29.5 parent: 2 type: Transform - - uid: 5093 + - uid: 5085 components: - pos: 4.5,26.5 parent: 2 type: Transform - - uid: 5094 + - uid: 5086 components: - pos: -20.5,-21.5 parent: 2 type: Transform - - uid: 5095 + - uid: 5087 components: - pos: 28.5,-3.5 parent: 2 type: Transform - - uid: 5096 + - uid: 5088 components: - pos: 6.5,-2.5 parent: 2 type: Transform - - uid: 5097 + - uid: 5089 components: - pos: 17.5,-0.5 parent: 2 type: Transform - proto: DisposalYJunction entities: - - uid: 5098 + - uid: 5090 components: - rot: 1.5707963267948966 rad pos: -18.5,8.5 parent: 2 type: Transform - - uid: 5099 + - uid: 5091 components: - pos: 2.5,12.5 parent: 2 type: Transform - - uid: 5100 + - uid: 5092 components: - rot: 1.5707963267948966 rad pos: 2.5,8.5 @@ -32411,276 +32554,281 @@ entities: type: Transform - proto: DogBed entities: - - uid: 5101 + - uid: 5093 components: - pos: -21.5,20.5 parent: 2 type: Transform - - uid: 5102 + - uid: 5094 components: - pos: 8.5,-5.5 parent: 2 type: Transform - - uid: 5103 + - uid: 5095 components: - pos: 11.5,-4.5 parent: 2 type: Transform - - uid: 5104 + - uid: 5096 components: - name: cat bed type: MetaData - pos: -17.5,-15.5 parent: 2 type: Transform - - uid: 5105 + - uid: 5097 components: - pos: -9.5,-30.5 parent: 2 type: Transform - - uid: 5106 + - uid: 5098 components: - pos: 17.5,-7.5 parent: 2 type: Transform - - uid: 5107 + - uid: 5099 components: - pos: 24.5,-19.5 parent: 2 type: Transform + - uid: 5100 + components: + - pos: -2.5,35.5 + parent: 2 + type: Transform - proto: DonkpocketBoxSpawner entities: - - uid: 5108 + - uid: 5101 components: - pos: 9.5,-21.5 parent: 2 type: Transform - - uid: 5109 + - uid: 5102 components: - pos: 8.5,-21.5 parent: 2 type: Transform - proto: DoubleEmergencyOxygenTankFilled entities: - - uid: 5110 + - uid: 5103 components: - pos: -29.311012,-24.540293 parent: 2 type: Transform - proto: Dresser entities: - - uid: 5111 + - uid: 5104 components: - pos: 24.5,15.5 parent: 2 type: Transform - - uid: 5112 + - uid: 5105 components: - pos: -9.5,-10.5 parent: 2 type: Transform - - uid: 5113 + - uid: 5106 components: - pos: 26.5,-19.5 parent: 2 type: Transform - - uid: 5114 + - uid: 5107 components: - pos: -21.5,22.5 parent: 2 type: Transform - - uid: 5115 + - uid: 5108 components: - pos: -2.5,36.5 parent: 2 type: Transform - proto: DrinkBeerBottleFull entities: - - uid: 5116 + - uid: 5109 components: - pos: 11.555712,23.922733 parent: 2 type: Transform - proto: DrinkBottleWhiskey entities: - - uid: 5117 + - uid: 5110 components: - rot: -1.5707963267948966 rad pos: -17.290344,-18.79433 parent: 2 type: Transform - - uid: 5118 + - uid: 5111 components: - pos: -17.83732,-18.364643 parent: 2 type: Transform - proto: DrinkDemonsBlood entities: - - uid: 5119 + - uid: 5112 components: - pos: -29.72905,-27.15858 parent: 2 type: Transform - proto: DrinkFlask entities: - - uid: 5120 + - uid: 5113 components: - pos: -12.793941,-28.380444 parent: 2 type: Transform - proto: DrinkGlass entities: - - uid: 5121 + - uid: 5114 components: - pos: 36.52614,21.733345 parent: 2 type: Transform - - uid: 5122 + - uid: 5115 components: - pos: 36.828224,21.754192 parent: 2 type: Transform - - uid: 5123 + - uid: 5116 components: - pos: 36.71364,21.514442 parent: 2 type: Transform - proto: DrinkGoldenCup entities: - - uid: 5124 + - uid: 5117 components: - pos: -15.592636,-19.488497 parent: 2 type: Transform - proto: DrinkGoldschlagerBottleFull entities: - - uid: 5125 + - uid: 5118 components: - pos: -15.32155,-19.76688 parent: 2 type: Transform - proto: DrinkGrapeCan entities: - - uid: 5126 + - uid: 5119 components: - pos: -27.170668,-26.892956 parent: 2 type: Transform - proto: DrinkIcedGreenTeaGlass entities: - - uid: 5127 + - uid: 5120 components: - pos: -28.5551,-18.490961 parent: 2 type: Transform - proto: DrinkLean entities: - - uid: 5128 + - uid: 5121 components: - pos: -8.3452635,50.461243 parent: 2 type: Transform - proto: DrinkMugGreen entities: - - uid: 5129 + - uid: 5122 components: - pos: -28.258224,-18.569086 parent: 2 type: Transform - proto: DrinkMugRainbow entities: - - uid: 5130 + - uid: 5123 components: - pos: 7.2878385,-24.341206 parent: 2 type: Transform - proto: DrinkShaker entities: - - uid: 5131 + - uid: 5124 components: - pos: 35.296974,19.39839 parent: 2 type: Transform - proto: DrinkShotGlass entities: - - uid: 5132 + - uid: 5125 components: - pos: -19.634531,-20.524155 parent: 2 type: Transform - - uid: 5133 + - uid: 5126 components: - pos: -15.340631,-8.242823 parent: 2 type: Transform - - uid: 5134 + - uid: 5127 components: - pos: -15.173964,-8.565964 parent: 2 type: Transform - - uid: 5135 + - uid: 5128 components: - pos: -19.282902,-20.406967 parent: 2 type: Transform - proto: DrinkVodkaBottleFull entities: - - uid: 5136 + - uid: 5129 components: - pos: -15.705214,-8.36791 parent: 2 type: Transform - - uid: 5137 + - uid: 5130 components: - pos: -33.827953,29.496984 parent: 2 type: Transform - proto: DrinkWaterCup entities: - - uid: 5138 + - uid: 5131 components: - pos: 7.704505,-24.278662 parent: 2 type: Transform - - uid: 5139 + - uid: 5132 components: - pos: 7.517005,-24.403748 parent: 2 type: Transform - - uid: 5140 + - uid: 5133 components: - pos: 7.735755,-24.518412 parent: 2 type: Transform - proto: DrinkWhiskeyBottleFull entities: - - uid: 5141 + - uid: 5134 components: - pos: -19.614996,-19.742905 parent: 2 type: Transform - proto: DrinkWineBottleFull entities: - - uid: 5142 + - uid: 5135 components: - pos: -4.2686324,18.777903 parent: 2 type: Transform - proto: DrinkWineGlass entities: - - uid: 5143 + - uid: 5136 components: - pos: -4.654049,18.71536 parent: 2 type: Transform - proto: EmergencyLight entities: - - uid: 5144 + - uid: 5137 components: - pos: -19.5,-18.5 parent: 2 type: Transform - - uid: 5145 + - uid: 5138 components: - pos: 6.5,17.5 parent: 2 @@ -32688,7 +32836,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 5146 + - uid: 5139 components: - rot: -1.5707963267948966 rad pos: 26.5,24.5 @@ -32697,7 +32845,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 5147 + - uid: 5140 components: - pos: -18.5,1.5 parent: 2 @@ -32705,7 +32853,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 5148 + - uid: 5141 components: - pos: -19.5,-2.5 parent: 2 @@ -32713,7 +32861,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 5149 + - uid: 5142 components: - rot: -1.5707963267948966 rad pos: -9.5,3.5 @@ -32722,7 +32870,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 5150 + - uid: 5143 components: - pos: -17.5,9.5 parent: 2 @@ -32730,7 +32878,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 5151 + - uid: 5144 components: - rot: 3.141592653589793 rad pos: -0.5,12.5 @@ -32739,7 +32887,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 5152 + - uid: 5145 components: - rot: 3.141592653589793 rad pos: -3.5,7.5 @@ -32748,7 +32896,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 5153 + - uid: 5146 components: - rot: 3.141592653589793 rad pos: -3.5,-5.5 @@ -32757,7 +32905,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 5154 + - uid: 5147 components: - rot: 1.5707963267948966 rad pos: 3.5,-11.5 @@ -32766,7 +32914,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 5155 + - uid: 5148 components: - rot: 3.141592653589793 rad pos: -3.5,-15.5 @@ -32775,7 +32923,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 5156 + - uid: 5149 components: - rot: -1.5707963267948966 rad pos: -5.5,-25.5 @@ -32784,7 +32932,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 5157 + - uid: 5150 components: - rot: 3.141592653589793 rad pos: -0.5,-24.5 @@ -32793,7 +32941,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 5158 + - uid: 5151 components: - rot: -1.5707963267948966 rad pos: -11.5,-12.5 @@ -32802,7 +32950,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 5159 + - uid: 5152 components: - rot: 1.5707963267948966 rad pos: -32.5,-3.5 @@ -32811,7 +32959,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 5160 + - uid: 5153 components: - rot: 1.5707963267948966 rad pos: 10.5,18.5 @@ -32820,7 +32968,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 5161 + - uid: 5154 components: - pos: 13.5,-16.5 parent: 2 @@ -32828,7 +32976,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 5162 + - uid: 5155 components: - rot: 1.5707963267948966 rad pos: -25.5,-19.5 @@ -32837,7 +32985,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 5163 + - uid: 5156 components: - rot: 3.141592653589793 rad pos: 21.5,-16.5 @@ -32846,7 +32994,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 5164 + - uid: 5157 components: - rot: -1.5707963267948966 rad pos: -42.5,-3.5 @@ -32855,7 +33003,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 5165 + - uid: 5158 components: - pos: -27.5,14.5 parent: 2 @@ -32863,103 +33011,103 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 5166 + - uid: 5159 components: - rot: 1.5707963267948966 rad pos: 27.5,-1.5 parent: 2 type: Transform - - uid: 5167 + - uid: 5160 components: - pos: 14.5,0.5 parent: 2 type: Transform - - uid: 5168 + - uid: 5161 components: - pos: 6.5,35.5 parent: 2 type: Transform - proto: EmergencyRollerBed entities: - - uid: 5169 + - uid: 5162 components: - pos: -17.5,7.5 parent: 2 type: Transform - proto: ExosuitFabricator entities: - - uid: 5170 + - uid: 5163 components: - pos: -0.5,19.5 parent: 2 type: Transform - proto: ExtinguisherCabinetFilled entities: - - uid: 5171 + - uid: 5164 components: - rot: 3.141592653589793 rad pos: -21.5,-6.5 parent: 2 type: Transform - - uid: 5172 + - uid: 5165 components: - rot: -1.5707963267948966 rad pos: -10.5,-14.5 parent: 2 type: Transform - - uid: 5173 + - uid: 5166 components: - pos: -10.5,4.5 parent: 2 type: Transform - - uid: 5174 + - uid: 5167 components: - pos: -0.5,11.5 parent: 2 type: Transform - - uid: 5175 + - uid: 5168 components: - pos: 2.5,-0.5 parent: 2 type: Transform - - uid: 5176 + - uid: 5169 components: - pos: 6.5,-16.5 parent: 2 type: Transform - - uid: 5177 + - uid: 5170 components: - pos: -5.5,0.5 parent: 2 type: Transform - - uid: 5178 + - uid: 5171 components: - rot: 1.5707963267948966 rad pos: -4.5,-23.5 parent: 2 type: Transform - - uid: 5179 + - uid: 5172 components: - pos: -15.5,34.5 parent: 2 type: Transform - proto: FaxMachineBase entities: - - uid: 5180 + - uid: 5173 components: - pos: -0.5,26.5 parent: 2 type: Transform - name: Epistemics type: FaxMachine - - uid: 5181 + - uid: 5174 components: - pos: -29.5,-26.5 parent: 2 type: Transform - name: Lawyers Office type: FaxMachine - - uid: 5182 + - uid: 5175 components: - pos: -0.5,-26.5 parent: 2 @@ -32967,49 +33115,49 @@ entities: - destinationAddress: Bridge name: Bridge type: FaxMachine - - uid: 5183 + - uid: 5176 components: - pos: 15.5,-18.5 parent: 2 type: Transform - name: Security type: FaxMachine - - uid: 5184 + - uid: 5177 components: - pos: -19.5,14.5 parent: 2 type: Transform - name: Medbay type: FaxMachine - - uid: 5185 + - uid: 5178 components: - pos: 16.5,14.5 parent: 2 type: Transform - name: Engineering type: FaxMachine - - uid: 5186 + - uid: 5179 components: - pos: -2.5,-11.5 parent: 2 type: Transform - name: Theater room type: FaxMachine - - uid: 5187 + - uid: 5180 components: - pos: 12.5,0.5 parent: 2 type: Transform - name: Cargo type: FaxMachine - - uid: 5188 + - uid: 5181 components: - pos: 16.5,-6.5 parent: 2 type: Transform - name: LO type: FaxMachine - - uid: 5189 + - uid: 5182 components: - pos: 32.5,-3.5 parent: 2 @@ -33018,168 +33166,74 @@ entities: type: FaxMachine - proto: FaxMachineCaptain entities: - - uid: 5190 + - uid: 5183 components: - pos: -7.5,-26.5 parent: 2 type: Transform -- proto: FenceMetalCorner - entities: - - uid: 5191 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-15.5 - parent: 2 - type: Transform -- proto: FenceMetalGate - entities: - - uid: 5192 - components: - - rot: 3.141592653589793 rad - pos: 35.5,-15.5 - parent: 2 - type: Transform -- proto: FenceMetalStraight - entities: - - uid: 5193 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-13.5 - parent: 2 - type: Transform - - uid: 5194 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-14.5 - parent: 2 - type: Transform - - uid: 5195 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-15.5 - parent: 2 - type: Transform - - uid: 5196 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-15.5 - parent: 2 - type: Transform - - uid: 5197 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-15.5 - parent: 2 - type: Transform - - uid: 5198 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-15.5 - parent: 2 - type: Transform - - uid: 5199 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-15.5 - parent: 2 - type: Transform - - uid: 5200 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-15.5 - parent: 2 - type: Transform - - uid: 5201 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-15.5 - parent: 2 - type: Transform - - uid: 5202 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-11.5 - parent: 2 - type: Transform - - uid: 5203 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-10.5 - parent: 2 - type: Transform - - uid: 5204 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-9.5 - parent: 2 - type: Transform - - uid: 5205 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-12.5 - parent: 2 - type: Transform - proto: FigureSpawner entities: - - uid: 5206 + - uid: 5199 components: - pos: -18.5,-13.5 parent: 2 type: Transform - proto: filingCabinet entities: - - uid: 5207 + - uid: 5200 components: - pos: 13.5,6.5 parent: 2 type: Transform - - uid: 5208 + - uid: 5201 components: - pos: 12.5,6.5 parent: 2 type: Transform - - uid: 5209 + - uid: 5202 components: - pos: -22.5,-27.5 parent: 2 type: Transform - proto: filingCabinetDrawer entities: - - uid: 5210 + - uid: 5203 components: - pos: -19.5,22.5 parent: 2 type: Transform - - uid: 5211 + - uid: 5204 components: - pos: -5.5,-26.5 parent: 2 type: Transform - proto: filingCabinetRandom entities: - - uid: 5212 + - uid: 5205 components: - pos: -4.5,29.5 parent: 2 type: Transform - proto: FireAlarm entities: - - uid: 5213 + - uid: 5206 components: - rot: 3.141592653589793 rad pos: 3.5,11.5 parent: 2 type: Transform - devices: - - 5331 - - 5330 - - 5327 - - 5328 - - 5280 - - 5279 + - 5324 + - 5323 + - 5320 + - 5321 + - 5273 + - 5272 - 293 type: DeviceList - - uid: 5214 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5207 components: - rot: -1.5707963267948966 rad pos: -21.5,-1.5 @@ -33187,55 +33241,60 @@ entities: type: Transform - devices: - 299 - - 5398 - - 5399 - - 5400 - - 5411 - - 5429 - - 5401 - - 5402 - - 5403 + - 5391 + - 5392 + - 5393 + - 5404 + - 5422 + - 5394 + - 5395 + - 5396 type: DeviceList - - uid: 5215 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5208 components: - pos: 8.5,11.5 parent: 2 type: Transform - devices: - - 5297 - - 5281 + - 5290 + - 5274 - 263 type: DeviceList - - uid: 5216 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5209 components: - rot: 3.141592653589793 rad pos: 13.5,-3.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 5324 - type: DeviceNetwork - devices: - - 5438 - - 5439 - - 5437 - - 5286 - - 5440 - - 5442 - - 5324 + - 5431 + - 5432 + - 5430 + - 5279 + - 5433 + - 5435 + - 5317 type: DeviceList - - uid: 5217 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5210 components: - rot: 1.5707963267948966 rad pos: -10.5,20.5 parent: 2 type: Transform - devices: - - 5293 - - 5325 + - 5286 + - 5318 - 254 type: DeviceList - - uid: 5218 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5211 components: - rot: 3.141592653589793 rad pos: -17.5,2.5 @@ -33243,33 +33302,39 @@ entities: type: Transform - devices: - 287 - - 5395 - - 5315 - - 5316 + - 5388 + - 5308 + - 5309 type: DeviceList - - uid: 5219 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5212 components: - pos: -8.5,-16.5 parent: 2 type: Transform - devices: - - 5354 - - 5355 + - 5347 + - 5348 - 274 - - 5340 + - 5333 type: DeviceList - - uid: 5220 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5213 components: - rot: 1.5707963267948966 rad pos: -9.5,-25.5 parent: 2 type: Transform - devices: - - 5339 + - 5332 - 275 - - 5340 + - 5333 type: DeviceList - - uid: 5221 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5214 components: - rot: -1.5707963267948966 rad pos: -7.5,-29.5 @@ -33277,36 +33342,42 @@ entities: type: Transform - devices: - 257 - - 5339 + - 5332 type: DeviceList - - uid: 5222 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5215 components: - rot: 3.141592653589793 rad pos: -2.5,-29.5 parent: 2 type: Transform - devices: - - 5337 - - 5338 + - 5330 + - 5331 - 276 type: DeviceList - - uid: 5223 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5216 components: - rot: 3.141592653589793 rad pos: -7.5,30.5 parent: 2 type: Transform - devices: - - 6875 - - 6992 + - 6868 + - 6985 + - 5285 + - 5335 + - 5334 + - 5288 - 5292 - - 5342 - - 5341 - - 5295 - - 5299 - - 5300 + - 5293 type: DeviceList - - uid: 5224 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5217 components: - rot: 1.5707963267948966 rad pos: 3.5,-25.5 @@ -33314,10 +33385,12 @@ entities: type: Transform - devices: - 258 - - 5294 - - 5326 + - 5287 + - 5319 type: DeviceList - - uid: 5225 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5218 components: - rot: -1.5707963267948966 rad pos: 16.5,-22.5 @@ -33325,11 +33398,13 @@ entities: type: Transform - devices: - 295 - - 5349 - - 5388 - - 5350 + - 5342 + - 5381 + - 5343 type: DeviceList - - uid: 5226 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5219 components: - rot: -1.5707963267948966 rad pos: 16.5,-25.5 @@ -33337,279 +33412,323 @@ entities: type: Transform - devices: - 280 - - 5349 - - 5388 + - 5342 + - 5381 type: DeviceList - - uid: 5227 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5220 components: - pos: 23.5,-18.5 parent: 2 type: Transform - devices: - - 5359 + - 5352 - 259 type: DeviceList - - uid: 5228 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5221 components: - rot: 3.141592653589793 rad pos: 17.5,-21.5 parent: 2 type: Transform - devices: - - 5358 - - 5359 + - 5351 + - 5352 - 260 type: DeviceList - - uid: 5229 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5222 components: - pos: 14.5,-15.5 parent: 2 type: Transform - devices: - 283 - - 5357 - - 5277 + - 5350 + - 5270 type: DeviceList - - uid: 5230 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5223 components: - rot: 1.5707963267948966 rad pos: 16.5,-14.5 parent: 2 type: Transform - devices: - - 5360 - - 5357 + - 5353 + - 5350 - 282 type: DeviceList - - uid: 5231 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5224 components: - rot: 3.141592653589793 rad pos: 8.5,-16.5 parent: 2 type: Transform - devices: - - 5369 - - 5367 - - 5368 + - 5362 + - 5360 + - 5361 - 262 - - 5366 + - 5359 type: DeviceList - - uid: 5232 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5225 components: - pos: -4.5,11.5 parent: 2 type: Transform - devices: - - 5282 - - 5421 + - 5275 + - 5414 - 285 - - 5378 - - 5379 - - 5380 + - 5371 + - 5372 + - 5373 type: DeviceList - - uid: 5233 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5226 components: - rot: 1.5707963267948966 rad pos: 12.5,15.5 parent: 2 type: Transform - devices: - - 5405 - - 5406 + - 5398 + - 5399 - 294 - - 5382 - - 5386 - - 5387 - - 5381 - - 5404 - - 5424 - - 5428 + - 5375 + - 5379 + - 5380 + - 5374 + - 5397 + - 5417 + - 5421 type: DeviceList - - uid: 5234 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5227 components: - rot: -1.5707963267948966 rad pos: 0.5,4.5 parent: 2 type: Transform - devices: - - 5421 - - 5282 - - 5373 - - 5310 - - 5311 - - 5312 + - 5414 + - 5275 + - 5366 + - 5303 + - 5304 + - 5305 - 284 type: DeviceList - - uid: 5235 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5228 components: - pos: -18.5,23.5 parent: 2 type: Transform - devices: - 268 - - 5320 + - 5313 type: DeviceList - - uid: 5236 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5229 components: - rot: 1.5707963267948966 rad pos: -20.5,17.5 parent: 2 type: Transform - devices: - - 5320 - - 5377 + - 5313 + - 5370 - 269 type: DeviceList - - uid: 5237 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5230 components: - rot: 3.141592653589793 rad pos: -9.5,11.5 parent: 2 type: Transform - devices: - - 5332 - - 5329 - 5325 - - 5293 + - 5322 + - 5318 + - 5286 - 292 - - 5330 - - 5331 + - 5323 + - 5324 type: DeviceList - - uid: 5238 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5231 components: - pos: -16.5,15.5 parent: 2 type: Transform - devices: - - 5375 - - 5351 - - 5376 + - 5368 + - 5344 + - 5369 - 291 type: DeviceList - - uid: 5239 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5232 components: - pos: -21.5,19.5 parent: 2 type: Transform - devices: - - 5348 + - 5341 - 270 type: DeviceList - - uid: 5240 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5233 components: - rot: 3.141592653589793 rad pos: -21.5,11.5 parent: 2 type: Transform - devices: - - 5348 - - 5319 + - 5341 + - 5312 - 290 type: DeviceList - - uid: 5241 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5234 components: - pos: 13.5,11.5 parent: 2 type: Transform - devices: - 296 - - 5385 - - 5281 + - 5378 + - 5274 type: DeviceList - - uid: 5242 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5235 components: - pos: -14.5,-9.5 parent: 2 type: Transform - devices: - 272 - - 5391 - - 5390 + - 5384 + - 5383 type: DeviceList - - uid: 5243 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5236 components: - pos: -2.5,-16.5 parent: 2 type: Transform - devices: - - 5355 + - 5348 - 277 - - 5356 - - 5337 - - 5338 + - 5349 + - 5330 + - 5331 type: DeviceList - - uid: 5244 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5237 components: - rot: 1.5707963267948966 rad pos: 2.5,-11.5 parent: 2 type: Transform - devices: - - 5346 - - 5347 - - 5384 + - 5339 + - 5340 + - 5377 - 279 - - 5363 + - 5356 + - 5355 + - 5338 + - 5337 - 5362 - - 5345 - - 5344 - - 5369 - - 5417 + - 5410 type: DeviceList - - uid: 5245 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5238 components: - rot: 3.141592653589793 rad pos: 13.5,-20.5 parent: 2 type: Transform - devices: - - 5350 + - 5343 + - 5351 + - 5270 - 5358 - - 5277 - - 5365 - - 5364 - - 5366 - - 5361 - - 5326 + - 5357 + - 5359 + - 5354 + - 5319 - 304 type: DeviceList - - uid: 5246 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5239 components: - rot: -1.5707963267948966 rad pos: 7.5,-19.5 parent: 2 type: Transform - devices: - - 5356 - - 5344 - - 5345 + - 5349 + - 5337 + - 5338 - 278 - - 5294 + - 5287 type: DeviceList - - uid: 5247 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5240 components: - pos: -5.5,-0.5 parent: 2 type: Transform - devices: - - 5373 - - 5372 - - 5310 - - 5311 - - 5312 - - 5301 - - 5302 + - 5366 + - 5365 - 5303 - - 5309 - - 5308 - - 5307 - - 5374 - - 5306 - - 5305 - 5304 + - 5305 + - 5294 + - 5295 + - 5296 + - 5302 + - 5301 + - 5300 + - 5367 + - 5299 + - 5298 + - 5297 - 265 type: DeviceList - - uid: 5248 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5241 components: - rot: -1.5707963267948966 rad pos: -10.5,7.5 @@ -33617,138 +33736,160 @@ entities: type: Transform - devices: - 281 - - 5329 - - 5332 - - 5333 - - 5334 - - 5313 - - 5314 - - 5413 + - 5322 + - 5325 + - 5326 + - 5327 + - 5306 + - 5307 + - 5406 type: DeviceList - - uid: 5249 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5242 components: - rot: 3.141592653589793 rad pos: -18.5,6.5 parent: 2 type: Transform - devices: - - 5313 - - 5314 - - 5376 - - 5375 + - 5306 + - 5307 + - 5369 + - 5368 - 288 - - 5315 - - 5316 - - 5317 - - 5318 + - 5308 + - 5309 + - 5310 + - 5311 type: DeviceList - - uid: 5250 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5243 components: - rot: 1.5707963267948966 rad pos: -13.5,-16.5 parent: 2 type: Transform - devices: - - 5335 - - 5336 + - 5328 + - 5329 - 271 - - 5354 - - 5392 + - 5347 + - 5385 type: DeviceList - - uid: 5251 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5244 components: - rot: 1.5707963267948966 rad pos: -20.5,12.5 parent: 2 type: Transform - devices: - - 5377 - - 5351 - - 5319 - - 5317 - - 5318 + - 5370 + - 5344 + - 5312 + - 5310 + - 5311 - 289 type: DeviceList - - uid: 5252 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5245 components: - pos: -20.5,6.5 parent: 2 type: Transform - devices: - - 5393 + - 5386 - 297 - - 5395 + - 5388 type: DeviceList - - uid: 5253 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5246 components: - pos: -23.5,11.5 parent: 2 type: Transform - devices: - - 5394 - - 5393 + - 5387 + - 5386 - 253 type: DeviceList - - uid: 5254 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5247 components: - pos: -14.5,-5.5 parent: 2 type: Transform - devices: - - 5396 - - 5397 + - 5389 + - 5390 - 298 - - 5287 - - 5411 + - 5280 + - 5404 type: DeviceList - - uid: 5255 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5248 components: - rot: -1.5707963267948966 rad pos: 4.5,15.5 parent: 2 type: Transform - devices: - - 5280 - - 5279 + - 5273 + - 5272 - 300 type: DeviceList - - uid: 5256 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5249 components: - pos: -25.5,-14.5 parent: 2 type: Transform - devices: - - 5419 - - 5418 + - 5412 + - 5411 - 302 - - 5371 - - 5298 + - 5364 + - 5291 type: DeviceList - - uid: 5257 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5250 components: - pos: -17.5,-10.5 parent: 2 type: Transform - devices: - - 5419 - - 5418 + - 5412 + - 5411 - 272 - - 5391 - - 5390 + - 5384 + - 5383 type: DeviceList - - uid: 5258 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5251 components: - pos: 9.5,-3.5 parent: 2 type: Transform - devices: - - 5288 - - 5271 - - 5272 - - 5420 + - 5281 + - 5264 + - 5265 + - 5413 - 303 type: DeviceList - - uid: 5259 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5252 components: - pos: -3.5,-13.5 parent: 2 @@ -33756,38 +33897,44 @@ entities: - devices: - 305 type: DeviceList - - uid: 5260 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5253 components: - rot: 1.5707963267948966 rad pos: 1.5,0.5 parent: 2 type: Transform - devices: - - 5327 - - 5328 - - 5297 - - 5422 - - 5288 - - 5271 - - 5347 - - 5346 - - 5303 - - 5302 - - 5301 + - 5320 + - 5321 + - 5290 + - 5415 + - 5281 + - 5264 + - 5340 + - 5339 + - 5296 + - 5295 + - 5294 - 256 type: DeviceList - - uid: 5261 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5254 components: - rot: 3.141592653589793 rad pos: 19.5,24.5 parent: 2 type: Transform - devices: - - 5405 - - 5406 + - 5398 + - 5399 - 266 type: DeviceList - - uid: 5262 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5255 components: - rot: -1.5707963267948966 rad pos: 6.5,20.5 @@ -33795,25 +33942,29 @@ entities: type: Transform - devices: - 307 - - 5423 + - 5416 type: DeviceList - - uid: 5263 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5256 components: - rot: 1.5707963267948966 rad pos: -3.5,30.5 parent: 2 type: Transform - devices: - - 5299 - - 5353 - - 5343 - - 5296 - - 5423 - - 6964 - - 5300 + - 5292 + - 5346 + - 5336 + - 5289 + - 5416 + - 6957 + - 5293 - 255 type: DeviceList - - uid: 5264 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5257 components: - rot: 3.141592653589793 rad pos: -27.5,2.5 @@ -33821,41 +33972,41 @@ entities: type: Transform - devices: - 299 - - 5352 - - 5383 + - 5345 + - 5376 type: DeviceList - - uid: 5265 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5258 components: - pos: 8.5,27.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 59 - type: DeviceNetwork - devices: - - 5275 - - 5274 - - 5430 + - 5268 + - 5267 + - 5423 - 59 type: DeviceList - - uid: 5266 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5259 components: - rot: 3.141592653589793 rad pos: -2.5,18.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 60 - type: DeviceNetwork - devices: - - 5431 - - 5432 - - 5433 - - 5434 - - 5276 + - 5424 + - 5425 + - 5426 + - 5427 + - 5269 - 60 type: DeviceList - - uid: 5267 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5260 components: - rot: 1.5707963267948966 rad pos: 26.5,-0.5 @@ -33863,32 +34014,33 @@ entities: type: Transform - devices: - 61 - - 5441 - - 5440 + - 5434 + - 5433 type: DeviceList - - uid: 5268 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5261 components: - rot: -1.5707963267948966 rad pos: 10.5,1.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 5324 - type: DeviceNetwork - devices: - - 5436 - - 5435 - - 5370 - - 5324 + - 5429 + - 5428 + - 5363 + - 5317 type: DeviceList + - joinedGrid: 2 + type: AtmosDevice - proto: FireAxeCabinetFilled entities: - - uid: 5269 + - uid: 5262 components: - pos: 30.5,30.5 parent: 2 type: Transform - - uid: 5270 + - uid: 5263 components: - rot: 3.141592653589793 rad pos: 2.5,-25.5 @@ -33896,46 +34048,43 @@ entities: type: Transform - proto: Firelock entities: - - uid: 5271 + - uid: 5264 components: - pos: 5.5,-6.5 parent: 2 type: Transform - - uid: 5272 + - uid: 5265 components: - pos: 8.5,-7.5 parent: 2 type: Transform - - uid: 5273 + - uid: 5266 components: - rot: -1.5707963267948966 rad pos: 0.5,-6.5 parent: 2 type: Transform - - uid: 5274 + - uid: 5267 components: - rot: 3.141592653589793 rad pos: 12.5,30.5 parent: 2 type: Transform - - uid: 5275 + - uid: 5268 components: - rot: 3.141592653589793 rad pos: 12.5,31.5 parent: 2 type: Transform - - uid: 5276 + - uid: 5269 components: - rot: 3.141592653589793 rad pos: 1.5,20.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 60 - type: DeviceNetwork - proto: FirelockEdge entities: - - uid: 5277 + - uid: 5270 components: - rot: -1.5707963267948966 rad pos: 12.5,-16.5 @@ -33943,855 +34092,848 @@ entities: type: Transform - proto: FirelockFrame entities: - - uid: 5278 + - uid: 5271 components: - pos: -28.5,29.5 parent: 2 type: Transform - proto: FirelockGlass entities: - - uid: 5279 + - uid: 5272 components: - pos: 2.5,14.5 parent: 2 type: Transform - - uid: 5280 + - uid: 5273 components: - pos: -1.5,14.5 parent: 2 type: Transform - - uid: 5281 + - uid: 5274 components: - pos: 9.5,10.5 parent: 2 type: Transform - - uid: 5282 + - uid: 5275 components: - pos: -2.5,6.5 parent: 2 type: Transform - - uid: 5283 + - uid: 5276 components: - pos: -14.5,-3.5 parent: 2 type: Transform - - uid: 5284 + - uid: 5277 components: - pos: -14.5,-2.5 parent: 2 type: Transform - - uid: 5285 + - uid: 5278 components: - pos: -14.5,-4.5 parent: 2 type: Transform - - uid: 5286 + - uid: 5279 components: - rot: 3.141592653589793 rad pos: 11.5,3.5 parent: 2 type: Transform - - uid: 5287 + - uid: 5280 components: - pos: -13.5,-7.5 parent: 2 type: Transform - - uid: 5288 + - uid: 5281 components: - pos: 5.5,-4.5 parent: 2 type: Transform - - uid: 5289 + - uid: 5282 components: - rot: 1.5707963267948966 rad pos: 28.5,20.5 parent: 2 type: Transform - - uid: 5290 + - uid: 5283 components: - pos: 28.5,28.5 parent: 2 type: Transform - - uid: 5291 + - uid: 5284 components: - pos: 18.5,-9.5 parent: 2 type: Transform - - uid: 5292 + - uid: 5285 components: - pos: -7.5,37.5 parent: 2 type: Transform - - uid: 5293 + - uid: 5286 components: - pos: -6.5,15.5 parent: 2 type: Transform - - uid: 5294 + - uid: 5287 components: - pos: 5.5,-23.5 parent: 2 type: Transform - - uid: 5295 + - uid: 5288 components: - pos: -5.5,30.5 parent: 2 type: Transform - - uid: 5296 + - uid: 5289 components: - pos: -3.5,24.5 parent: 2 type: Transform - - uid: 5297 + - uid: 5290 components: - pos: 3.5,10.5 parent: 2 type: Transform - - uid: 5298 + - uid: 5291 components: - pos: -23.5,-22.5 parent: 2 type: Transform - - uid: 5299 + - uid: 5292 components: - pos: -3.5,31.5 parent: 2 type: Transform - - uid: 5300 + - uid: 5293 components: - pos: -3.5,32.5 parent: 2 type: Transform - - uid: 5301 + - uid: 5294 components: - pos: 2.5,-2.5 parent: 2 type: Transform - - uid: 5302 + - uid: 5295 components: - pos: 2.5,-3.5 parent: 2 type: Transform - - uid: 5303 + - uid: 5296 components: - pos: 2.5,-4.5 parent: 2 type: Transform - - uid: 5304 + - uid: 5297 components: - pos: -10.5,-2.5 parent: 2 type: Transform - - uid: 5305 + - uid: 5298 components: - pos: -10.5,-3.5 parent: 2 type: Transform - - uid: 5306 + - uid: 5299 components: - pos: -10.5,-4.5 parent: 2 type: Transform - - uid: 5307 + - uid: 5300 components: - pos: -7.5,-6.5 parent: 2 type: Transform - - uid: 5308 + - uid: 5301 components: - pos: -6.5,-6.5 parent: 2 type: Transform - - uid: 5309 + - uid: 5302 components: - pos: -5.5,-6.5 parent: 2 type: Transform - - uid: 5310 + - uid: 5303 components: - pos: -2.5,-0.5 parent: 2 type: Transform - - uid: 5311 + - uid: 5304 components: - pos: -1.5,-0.5 parent: 2 type: Transform - - uid: 5312 + - uid: 5305 components: - pos: -0.5,-0.5 parent: 2 type: Transform - - uid: 5313 + - uid: 5306 components: - pos: -14.5,8.5 parent: 2 type: Transform - - uid: 5314 + - uid: 5307 components: - pos: -14.5,9.5 parent: 2 type: Transform - - uid: 5315 + - uid: 5308 components: - pos: -16.5,6.5 parent: 2 type: Transform - - uid: 5316 + - uid: 5309 components: - pos: -15.5,6.5 parent: 2 type: Transform - - uid: 5317 + - uid: 5310 components: - pos: -19.5,10.5 parent: 2 type: Transform - - uid: 5318 + - uid: 5311 components: - pos: -18.5,10.5 parent: 2 type: Transform - - uid: 5319 + - uid: 5312 components: - pos: -20.5,13.5 parent: 2 type: Transform - - uid: 5320 + - uid: 5313 components: - pos: -19.5,20.5 parent: 2 type: Transform - - uid: 5321 + - uid: 5314 components: - rot: 1.5707963267948966 rad pos: 29.5,20.5 parent: 2 type: Transform - - uid: 5322 + - uid: 5315 components: - pos: -8.5,41.5 parent: 2 type: Transform - - uid: 5323 + - uid: 5316 components: - pos: -6.5,41.5 parent: 2 type: Transform - - uid: 5324 + - uid: 5317 components: - pos: 9.5,6.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 5268 - - 5216 - type: DeviceNetwork - - uid: 5325 + - uid: 5318 components: - pos: -7.5,15.5 parent: 2 type: Transform - - uid: 5326 + - uid: 5319 components: - pos: 10.5,-23.5 parent: 2 type: Transform - - uid: 5327 + - uid: 5320 components: - pos: 1.5,11.5 parent: 2 type: Transform - - uid: 5328 + - uid: 5321 components: - pos: 2.5,11.5 parent: 2 type: Transform - - uid: 5329 + - uid: 5322 components: - pos: -12.5,11.5 parent: 2 type: Transform - - uid: 5330 + - uid: 5323 components: - pos: -3.5,13.5 parent: 2 type: Transform - - uid: 5331 + - uid: 5324 components: - pos: -3.5,12.5 parent: 2 type: Transform - - uid: 5332 + - uid: 5325 components: - pos: -11.5,11.5 parent: 2 type: Transform - - uid: 5333 + - uid: 5326 components: - pos: -12.5,1.5 parent: 2 type: Transform - - uid: 5334 + - uid: 5327 components: - pos: -11.5,1.5 parent: 2 type: Transform - - uid: 5335 + - uid: 5328 components: - pos: -12.5,-8.5 parent: 2 type: Transform - - uid: 5336 + - uid: 5329 components: - pos: -11.5,-8.5 parent: 2 type: Transform - - uid: 5337 + - uid: 5330 components: - pos: -2.5,-25.5 parent: 2 type: Transform - - uid: 5338 + - uid: 5331 components: - pos: 1.5,-25.5 parent: 2 type: Transform - - uid: 5339 + - uid: 5332 components: - pos: -8.5,-27.5 parent: 2 type: Transform - - uid: 5340 + - uid: 5333 components: - pos: -6.5,-20.5 parent: 2 type: Transform - - uid: 5341 + - uid: 5334 components: - pos: -6.5,30.5 parent: 2 type: Transform - - uid: 5342 + - uid: 5335 components: - pos: -11.5,31.5 parent: 2 type: Transform - - uid: 5343 + - uid: 5336 components: - pos: -3.5,27.5 parent: 2 type: Transform - - uid: 5344 + - uid: 5337 components: - pos: 4.5,-16.5 parent: 2 type: Transform - - uid: 5345 + - uid: 5338 components: - pos: 5.5,-16.5 parent: 2 type: Transform - - uid: 5346 + - uid: 5339 components: - pos: 3.5,-7.5 parent: 2 type: Transform - - uid: 5347 + - uid: 5340 components: - pos: 4.5,-7.5 parent: 2 type: Transform - - uid: 5348 + - uid: 5341 components: - pos: -22.5,15.5 parent: 2 type: Transform - - uid: 5349 + - uid: 5342 components: - pos: 14.5,-23.5 parent: 2 type: Transform - - uid: 5350 + - uid: 5343 components: - pos: 14.5,-20.5 parent: 2 type: Transform - - uid: 5351 + - uid: 5344 components: - pos: -17.5,13.5 parent: 2 type: Transform - - uid: 5352 + - uid: 5345 components: - pos: -26.5,2.5 parent: 2 type: Transform - - uid: 5353 + - uid: 5346 components: - pos: -3.5,28.5 parent: 2 type: Transform - - uid: 5354 + - uid: 5347 components: - pos: -9.5,-18.5 parent: 2 type: Transform - - uid: 5355 + - uid: 5348 components: - pos: -4.5,-18.5 parent: 2 type: Transform - - uid: 5356 + - uid: 5349 components: - pos: 3.5,-18.5 parent: 2 type: Transform - - uid: 5357 + - uid: 5350 components: - pos: 16.5,-16.5 parent: 2 type: Transform - - uid: 5358 + - uid: 5351 components: - pos: 16.5,-19.5 parent: 2 type: Transform - - uid: 5359 + - uid: 5352 components: - pos: 21.5,-20.5 parent: 2 type: Transform - - uid: 5360 + - uid: 5353 components: - pos: 16.5,-13.5 parent: 2 type: Transform - - uid: 5361 + - uid: 5354 components: - pos: 12.5,-13.5 parent: 2 type: Transform - - uid: 5362 + - uid: 5355 components: - pos: 6.5,-12.5 parent: 2 type: Transform - - uid: 5363 + - uid: 5356 components: - pos: 6.5,-11.5 parent: 2 type: Transform - - uid: 5364 + - uid: 5357 components: - pos: 9.5,-11.5 parent: 2 type: Transform - - uid: 5365 + - uid: 5358 components: - pos: 9.5,-12.5 parent: 2 type: Transform - - uid: 5366 + - uid: 5359 components: - pos: 9.5,-15.5 parent: 2 type: Transform - - uid: 5367 + - uid: 5360 components: - pos: 7.5,-13.5 parent: 2 type: Transform - - uid: 5368 + - uid: 5361 components: - pos: 8.5,-13.5 parent: 2 type: Transform - - uid: 5369 + - uid: 5362 components: - pos: 6.5,-15.5 parent: 2 type: Transform - - uid: 5370 + - uid: 5363 components: - pos: 8.5,3.5 parent: 2 type: Transform - - uid: 5371 + - uid: 5364 components: - pos: -24.5,-22.5 parent: 2 type: Transform - - uid: 5372 + - uid: 5365 components: - rot: 3.141592653589793 rad pos: -9.5,-0.5 parent: 2 type: Transform - - uid: 5373 + - uid: 5366 components: - rot: 3.141592653589793 rad pos: -4.5,-0.5 parent: 2 type: Transform - - uid: 5374 + - uid: 5367 components: - rot: 3.141592653589793 rad pos: -9.5,-6.5 parent: 2 type: Transform - - uid: 5375 + - uid: 5368 components: - pos: -16.5,10.5 parent: 2 type: Transform - - uid: 5376 + - uid: 5369 components: - pos: -15.5,10.5 parent: 2 type: Transform - - uid: 5377 + - uid: 5370 components: - pos: -18.5,15.5 parent: 2 type: Transform - - uid: 5378 + - uid: 5371 components: - pos: -10.5,8.5 parent: 2 type: Transform - - uid: 5379 + - uid: 5372 components: - pos: -10.5,9.5 parent: 2 type: Transform - - uid: 5380 + - uid: 5373 components: - pos: -10.5,10.5 parent: 2 type: Transform - - uid: 5381 + - uid: 5374 components: - pos: 17.5,13.5 parent: 2 type: Transform - - uid: 5382 + - uid: 5375 components: - pos: 9.5,16.5 parent: 2 type: Transform - - uid: 5383 + - uid: 5376 components: - pos: -25.5,2.5 parent: 2 type: Transform - - uid: 5384 + - uid: 5377 components: - pos: 2.5,-12.5 parent: 2 type: Transform - - uid: 5385 + - uid: 5378 components: - pos: 11.5,11.5 parent: 2 type: Transform - - uid: 5386 + - uid: 5379 components: - pos: 10.5,14.5 parent: 2 type: Transform - - uid: 5387 + - uid: 5380 components: - pos: 11.5,14.5 parent: 2 type: Transform - - uid: 5388 + - uid: 5381 components: - pos: 15.5,-23.5 parent: 2 type: Transform - - uid: 5389 + - uid: 5382 components: - pos: -8.5,-31.5 parent: 2 type: Transform - - uid: 5390 + - uid: 5383 components: - pos: -13.5,-12.5 parent: 2 type: Transform - - uid: 5391 + - uid: 5384 components: - pos: -13.5,-11.5 parent: 2 type: Transform - - uid: 5392 + - uid: 5385 components: - pos: -13.5,-20.5 parent: 2 type: Transform - - uid: 5393 + - uid: 5386 components: - pos: -21.5,6.5 parent: 2 type: Transform - - uid: 5394 + - uid: 5387 components: - pos: -20.5,8.5 parent: 2 type: Transform - - uid: 5395 + - uid: 5388 components: - pos: -18.5,5.5 parent: 2 type: Transform - - uid: 5396 + - uid: 5389 components: - pos: -19.5,-5.5 parent: 2 type: Transform - - uid: 5397 + - uid: 5390 components: - pos: -18.5,-5.5 parent: 2 type: Transform - - uid: 5398 + - uid: 5391 components: - pos: -21.5,-2.5 parent: 2 type: Transform - - uid: 5399 + - uid: 5392 components: - pos: -21.5,-3.5 parent: 2 type: Transform - - uid: 5400 + - uid: 5393 components: - pos: -21.5,-4.5 parent: 2 type: Transform - - uid: 5401 + - uid: 5394 components: - rot: -1.5707963267948966 rad pos: -31.5,1.5 parent: 2 type: Transform - - uid: 5402 + - uid: 5395 components: - rot: -1.5707963267948966 rad pos: -31.5,-0.5 parent: 2 type: Transform - - uid: 5403 + - uid: 5396 components: - rot: -1.5707963267948966 rad pos: -31.5,-6.5 parent: 2 type: Transform - - uid: 5404 + - uid: 5397 components: - pos: 7.5,22.5 parent: 2 type: Transform - - uid: 5405 + - uid: 5398 components: - pos: 16.5,22.5 parent: 2 type: Transform - - uid: 5406 + - uid: 5399 components: - pos: 17.5,22.5 parent: 2 type: Transform - - uid: 5407 + - uid: 5400 components: - rot: -1.5707963267948966 rad pos: -27.5,26.5 parent: 2 type: Transform - - uid: 5408 + - uid: 5401 components: - rot: -1.5707963267948966 rad pos: -26.5,26.5 parent: 2 type: Transform - - uid: 5409 + - uid: 5402 components: - pos: -24.5,25.5 parent: 2 type: Transform - - uid: 5410 + - uid: 5403 components: - pos: -24.5,24.5 parent: 2 type: Transform - - uid: 5411 + - uid: 5404 components: - pos: -21.5,-7.5 parent: 2 type: Transform - - uid: 5412 + - uid: 5405 components: - pos: -9.5,7.5 parent: 2 type: Transform - - uid: 5413 + - uid: 5406 components: - pos: -10.5,5.5 parent: 2 type: Transform - - uid: 5414 + - uid: 5407 components: - pos: 30.5,10.5 parent: 2 type: Transform - - uid: 5415 + - uid: 5408 components: - pos: 22.5,13.5 parent: 2 type: Transform - - uid: 5416 + - uid: 5409 components: - pos: 22.5,10.5 parent: 2 type: Transform - - uid: 5417 + - uid: 5410 components: - pos: 6.5,-8.5 parent: 2 type: Transform - - uid: 5418 + - uid: 5411 components: - pos: -21.5,-15.5 parent: 2 type: Transform - - uid: 5419 + - uid: 5412 components: - pos: -21.5,-16.5 parent: 2 type: Transform - - uid: 5420 + - uid: 5413 components: - pos: 10.5,-5.5 parent: 2 type: Transform - - uid: 5421 + - uid: 5414 components: - pos: -4.5,6.5 parent: 2 type: Transform - - uid: 5422 + - uid: 5415 components: - pos: 5.5,5.5 parent: 2 type: Transform - - uid: 5423 + - uid: 5416 components: - pos: 4.5,22.5 parent: 2 type: Transform - - uid: 5424 + - uid: 5417 components: - pos: 20.5,19.5 parent: 2 type: Transform - - uid: 5425 + - uid: 5418 components: - pos: 18.5,-10.5 parent: 2 type: Transform - - uid: 5426 + - uid: 5419 components: - pos: -31.5,28.5 parent: 2 type: Transform - - uid: 5427 + - uid: 5420 components: - pos: -28.5,22.5 parent: 2 type: Transform - - uid: 5428 + - uid: 5421 components: - pos: 22.5,19.5 parent: 2 type: Transform - - uid: 5429 + - uid: 5422 components: - rot: -1.5707963267948966 rad pos: -31.5,-8.5 parent: 2 type: Transform - - uid: 5430 + - uid: 5423 components: - rot: 1.5707963267948966 rad pos: 7.5,27.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 59 - type: DeviceNetwork - - uid: 5431 + - uid: 5424 components: - rot: 3.141592653589793 rad pos: -2.5,23.5 parent: 2 type: Transform - - uid: 5432 + - uid: 5425 components: - rot: 3.141592653589793 rad pos: -3.5,21.5 parent: 2 type: Transform - - uid: 5433 + - uid: 5426 components: - rot: 3.141592653589793 rad pos: -3.5,20.5 parent: 2 type: Transform - - uid: 5434 + - uid: 5427 components: - rot: 3.141592653589793 rad pos: -3.5,19.5 parent: 2 type: Transform - - uid: 5435 + - uid: 5428 components: - pos: 5.5,-0.5 parent: 2 type: Transform - - uid: 5436 + - uid: 5429 components: - pos: 5.5,0.5 parent: 2 type: Transform - - uid: 5437 + - uid: 5430 components: - pos: 10.5,2.5 parent: 2 type: Transform - - uid: 5438 + - uid: 5431 components: - pos: 10.5,-1.5 parent: 2 type: Transform - - uid: 5439 + - uid: 5432 components: - pos: 10.5,-0.5 parent: 2 type: Transform - - uid: 5440 + - uid: 5433 components: - rot: 1.5707963267948966 rad pos: 21.5,1.5 parent: 2 type: Transform - - uid: 5441 + - uid: 5434 components: - rot: 1.5707963267948966 rad pos: 22.5,-0.5 parent: 2 type: Transform - - uid: 5442 + - uid: 5435 components: - rot: 1.5707963267948966 rad pos: 16.5,-3.5 @@ -34799,60 +34941,60 @@ entities: type: Transform - proto: Fireplace entities: - - uid: 5443 + - uid: 5436 components: - pos: -11.5,-28.5 parent: 2 type: Transform - - uid: 5444 + - uid: 5437 components: - pos: -11.5,28.5 parent: 2 type: Transform - proto: Flare entities: - - uid: 5445 + - uid: 5438 components: - pos: -29.394146,-23.743418 parent: 2 type: Transform - - uid: 5446 + - uid: 5439 components: - pos: -29.534771,-23.665293 parent: 2 type: Transform - proto: FlashlightLantern entities: - - uid: 5447 + - uid: 5440 components: - pos: 14.399824,10.864872 parent: 2 type: Transform - - uid: 5448 + - uid: 5441 components: - pos: 14.44149,10.541731 parent: 2 type: Transform - proto: Floodlight entities: - - uid: 5449 + - uid: 5442 components: - pos: -33.34161,-43.27175 parent: 2 type: Transform - - uid: 5450 + - uid: 5443 components: - pos: -26.398449,-43.441235 parent: 2 type: Transform - - uid: 5451 + - uid: 5444 components: - pos: -19.495539,-31.577072 parent: 2 type: Transform - proto: FloodlightBroken entities: - - uid: 5452 + - uid: 5445 components: - rot: -1.5707963267948966 rad pos: -35.52113,-39.202206 @@ -34860,21 +35002,21 @@ entities: type: Transform - proto: FloorDrain entities: - - uid: 5453 + - uid: 5446 components: - pos: -6.5,1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 5454 + - uid: 5447 components: - pos: 29.5,12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 5455 + - uid: 5448 components: - rot: 3.141592653589793 rad pos: 6.5,9.5 @@ -34882,7 +35024,7 @@ entities: type: Transform - fixtures: {} type: Fixtures - - uid: 5456 + - uid: 5449 components: - rot: 3.141592653589793 rad pos: 14.5,-4.5 @@ -34890,429 +35032,443 @@ entities: type: Transform - fixtures: {} type: Fixtures - - uid: 5457 + - uid: 5450 components: - pos: -7.5,-32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 5458 + - uid: 5451 components: - pos: 23.5,-23.5 parent: 2 type: Transform - fixtures: {} type: Fixtures + - uid: 7946 + components: + - pos: -16.5,13.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 8637 + components: + - pos: -22.5,17.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures - proto: FloorLavaEntity entities: - - uid: 5459 + - uid: 5452 components: - pos: -34.5,-33.5 parent: 2 type: Transform - - uid: 5460 + - uid: 5453 components: - pos: -29.5,-33.5 parent: 2 type: Transform - - uid: 5461 + - uid: 5454 components: - pos: -33.5,-33.5 parent: 2 type: Transform - - uid: 5462 + - uid: 5455 components: - pos: -34.5,-34.5 parent: 2 type: Transform - - uid: 5463 + - uid: 5456 components: - pos: -34.5,-35.5 parent: 2 type: Transform - - uid: 5464 + - uid: 5457 components: - pos: -30.5,-33.5 parent: 2 type: Transform - - uid: 5465 + - uid: 5458 components: - pos: -30.5,-34.5 parent: 2 type: Transform - - uid: 5466 + - uid: 5459 components: - pos: -28.5,-33.5 parent: 2 type: Transform - - uid: 5467 + - uid: 5460 components: - pos: -26.5,-34.5 parent: 2 type: Transform - - uid: 5468 + - uid: 5461 components: - pos: -26.5,-35.5 parent: 2 type: Transform - - uid: 5469 + - uid: 5462 components: - pos: -26.5,-36.5 parent: 2 type: Transform - - uid: 5470 + - uid: 5463 components: - pos: -28.5,-36.5 parent: 2 type: Transform - - uid: 5471 + - uid: 5464 components: - pos: -26.5,-36.5 parent: 2 type: Transform - - uid: 5472 + - uid: 5465 components: - pos: -27.5,-36.5 parent: 2 type: Transform - - uid: 5473 + - uid: 5466 components: - pos: -24.5,-36.5 parent: 2 type: Transform - - uid: 5474 + - uid: 5467 components: - pos: -25.5,-36.5 parent: 2 type: Transform - - uid: 5475 + - uid: 5468 components: - pos: 30.5,46.5 parent: 2 type: Transform - - uid: 5476 + - uid: 5469 components: - pos: 31.5,45.5 parent: 2 type: Transform - - uid: 5477 + - uid: 5470 components: - pos: 30.5,45.5 parent: 2 type: Transform - - uid: 5478 + - uid: 5471 components: - pos: 33.5,44.5 parent: 2 type: Transform - - uid: 5479 + - uid: 5472 components: - pos: 32.5,44.5 parent: 2 type: Transform - - uid: 5480 + - uid: 5473 components: - pos: 32.5,43.5 parent: 2 type: Transform - - uid: 5481 + - uid: 5474 components: - pos: 33.5,46.5 parent: 2 type: Transform - - uid: 5482 + - uid: 5475 components: - pos: 32.5,46.5 parent: 2 type: Transform - - uid: 5483 + - uid: 5476 components: - pos: -29.5,-35.5 parent: 2 type: Transform - - uid: 5484 + - uid: 5477 components: - pos: -29.5,-34.5 parent: 2 type: Transform - - uid: 5485 + - uid: 5478 components: - pos: -29.5,-32.5 parent: 2 type: Transform - - uid: 5486 + - uid: 5479 components: - pos: -29.5,-34.5 parent: 2 type: Transform - - uid: 5487 + - uid: 5480 components: - pos: -31.5,-32.5 parent: 2 type: Transform - - uid: 5488 + - uid: 5481 components: - pos: -32.5,-33.5 parent: 2 type: Transform - - uid: 5489 + - uid: 5482 components: - pos: -33.5,-35.5 parent: 2 type: Transform - - uid: 5490 + - uid: 5483 components: - pos: -33.5,-34.5 parent: 2 type: Transform - - uid: 5491 + - uid: 5484 components: - pos: -26.5,-37.5 parent: 2 type: Transform - - uid: 5492 + - uid: 5485 components: - pos: -26.5,-38.5 parent: 2 type: Transform - - uid: 5493 + - uid: 5486 components: - pos: -27.5,-37.5 parent: 2 type: Transform - - uid: 5494 + - uid: 5487 components: - pos: -27.5,-35.5 parent: 2 type: Transform - - uid: 5495 + - uid: 5488 components: - pos: -25.5,-35.5 parent: 2 type: Transform - - uid: 5496 + - uid: 5489 components: - pos: -25.5,-37.5 parent: 2 type: Transform - - uid: 5497 + - uid: 5490 components: - pos: -28.5,-37.5 parent: 2 type: Transform - - uid: 5498 + - uid: 5491 components: - pos: -27.5,-38.5 parent: 2 type: Transform - - uid: 5499 + - uid: 5492 components: - pos: -25.5,-38.5 parent: 2 type: Transform - - uid: 5500 + - uid: 5493 components: - pos: -25.5,-37.5 parent: 2 type: Transform - - uid: 5501 + - uid: 5494 components: - pos: -24.5,-37.5 parent: 2 type: Transform - - uid: 5502 + - uid: 5495 components: - pos: -24.5,-35.5 parent: 2 type: Transform - - uid: 5503 + - uid: 5496 components: - pos: -25.5,-34.5 parent: 2 type: Transform - - uid: 5504 + - uid: 5497 components: - pos: -27.5,-34.5 parent: 2 type: Transform - - uid: 5505 + - uid: 5498 components: - pos: -28.5,-35.5 parent: 2 type: Transform - - uid: 5506 + - uid: 5499 components: - pos: -28.5,-38.5 parent: 2 type: Transform - - uid: 5507 + - uid: 5500 components: - pos: -28.5,-34.5 parent: 2 type: Transform - - uid: 5508 + - uid: 5501 components: - pos: -29.5,-35.5 parent: 2 type: Transform - - uid: 5509 + - uid: 5502 components: - pos: -29.5,-36.5 parent: 2 type: Transform - - uid: 5510 + - uid: 5503 components: - pos: -29.5,-37.5 parent: 2 type: Transform - - uid: 5511 + - uid: 5504 components: - pos: -27.5,-33.5 parent: 2 type: Transform - - uid: 5512 + - uid: 5505 components: - pos: -26.5,-33.5 parent: 2 type: Transform - - uid: 5513 + - uid: 5506 components: - pos: -25.5,-33.5 parent: 2 type: Transform - - uid: 5514 + - uid: 5507 components: - pos: -24.5,-34.5 parent: 2 type: Transform - - uid: 5515 + - uid: 5508 components: - pos: -23.5,-35.5 parent: 2 type: Transform - - uid: 5516 + - uid: 5509 components: - pos: -23.5,-36.5 parent: 2 type: Transform - - uid: 5517 + - uid: 5510 components: - pos: -23.5,-37.5 parent: 2 type: Transform - - uid: 5518 + - uid: 5511 components: - pos: -24.5,-38.5 parent: 2 type: Transform - - uid: 5519 + - uid: 5512 components: - pos: -25.5,-39.5 parent: 2 type: Transform - - uid: 5520 + - uid: 5513 components: - pos: -26.5,-39.5 parent: 2 type: Transform - - uid: 5521 + - uid: 5514 components: - pos: -27.5,-39.5 parent: 2 type: Transform - - uid: 5522 + - uid: 5515 components: - pos: -30.5,-32.5 parent: 2 type: Transform - - uid: 5523 + - uid: 5516 components: - pos: -32.5,-35.5 parent: 2 type: Transform - - uid: 5524 + - uid: 5517 components: - pos: -31.5,-35.5 parent: 2 type: Transform - - uid: 5525 + - uid: 5518 components: - pos: -31.5,-33.5 parent: 2 type: Transform - - uid: 5526 + - uid: 5519 components: - pos: -32.5,-34.5 parent: 2 type: Transform - - uid: 5527 + - uid: 5520 components: - pos: -31.5,-34.5 parent: 2 type: Transform - - uid: 5528 + - uid: 5521 components: - pos: -30.5,-35.5 parent: 2 type: Transform - proto: FloorTileItemDirty entities: - - uid: 5529 + - uid: 5522 components: - pos: -31.243633,35.59478 parent: 2 type: Transform - - uid: 5530 + - uid: 5523 components: - pos: -31.306133,34.719173 parent: 2 type: Transform - - uid: 5531 + - uid: 5524 components: - pos: -30.212383,35.54266 parent: 2 type: Transform - - uid: 5532 + - uid: 5525 components: - pos: -30.306133,29.684427 parent: 2 type: Transform - - uid: 5533 + - uid: 5526 components: - pos: -30.743633,30.633001 parent: 2 type: Transform - - uid: 5534 + - uid: 5527 components: - pos: -30.3478,34.510693 parent: 2 type: Transform - proto: FloorTileItemWood entities: - - uid: 5535 + - uid: 5528 components: - pos: 24.5,-9.5 parent: 2 type: Transform - - uid: 5536 + - uid: 5529 components: - pos: 24.5,-11.5 parent: 2 type: Transform - - uid: 5537 + - uid: 5530 components: - pos: 26.5,-11.5 parent: 2 type: Transform - - uid: 5538 + - uid: 5531 components: - pos: 25.5,-11.5 parent: 2 type: Transform - proto: FloraRockSolid03 entities: - - uid: 5539 + - uid: 5532 components: - desc: Mr. Pebble welcomes you to the station. name: Mr. Pebble @@ -35322,67 +35478,67 @@ entities: type: Transform - proto: FoodBanana entities: - - uid: 5540 + - uid: 5533 components: - pos: 0.74280304,-13.150227 parent: 2 type: Transform - - uid: 5541 + - uid: 5534 components: - pos: 0.77405304,-13.296162 parent: 2 type: Transform - - uid: 5542 + - uid: 5535 components: - pos: 0.6386363,-13.431673 parent: 2 type: Transform - proto: FoodBoxPizzaFilled entities: - - uid: 5543 + - uid: 5536 components: - pos: 18.499884,-2.4750767 parent: 2 type: Transform - proto: FoodBurgerBig entities: - - uid: 5544 + - uid: 5537 components: - pos: -10.579243,-34.84249 parent: 2 type: Transform - proto: FoodCondimentBottleBBQ entities: - - uid: 5545 + - uid: 5538 components: - pos: -6.422942,-1.7258348 parent: 2 type: Transform - proto: FoodLollipop entities: - - uid: 5546 + - uid: 5539 components: - pos: -16.461855,10.520372 parent: 2 type: Transform - - uid: 5547 + - uid: 5540 components: - - pos: -14.887274,14.543169 + - pos: -16.276896,10.491072 parent: 2 type: Transform - - uid: 5548 + - uid: 5541 components: - pos: -23.069107,20.758572 parent: 2 type: Transform - - uid: 5549 + - uid: 5542 components: - pos: -22.850357,20.727322 parent: 2 type: Transform - proto: FoodMealNachosCheesy entities: - - uid: 5550 + - uid: 5543 components: - desc: The delicious combination of nachos and melting cheese. Perfect for a date. type: MetaData @@ -35391,255 +35547,315 @@ entities: type: Transform - proto: FoodPieBaklava entities: - - uid: 5551 + - uid: 5544 components: - pos: -27.867994,-35.865368 parent: 2 type: Transform - proto: FoodPieBananaCream entities: - - uid: 5552 + - uid: 5545 components: - pos: 0.3261363,-13.139803 parent: 2 type: Transform - - uid: 5553 + - uid: 5546 components: - pos: 0.2948863,-13.275314 parent: 2 type: Transform - - uid: 5554 + - uid: 5547 components: - pos: 0.34696966,-13.442097 parent: 2 type: Transform - proto: FoodPieXeno entities: - - uid: 5555 + - uid: 5548 components: - pos: 23.902102,41.45766 parent: 2 type: Transform - proto: FoodPizzaCorncob entities: - - uid: 5556 + - uid: 5549 components: - pos: -1.3486013,-0.32308888 parent: 2 type: Transform - proto: FoodPizzaCorncobSlice entities: - - uid: 5557 + - uid: 5550 components: - pos: -1.9840181,-0.5107192 parent: 2 type: Transform - proto: FoodTartCoco entities: - - uid: 5558 + - uid: 5551 components: - pos: 32.130154,45.206635 parent: 2 type: Transform - proto: Fork entities: - - uid: 5559 + - uid: 5552 components: - pos: -2.5,-2.5 parent: 2 type: Transform +- proto: FuelDispenser + entities: + - uid: 10873 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,15.5 + parent: 2 + type: Transform - proto: GasMinerNitrogen entities: - - uid: 5560 + - uid: 5553 components: - pos: 23.5,39.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: GasMinerOxygen entities: - - uid: 5561 + - uid: 5554 components: - pos: 21.5,39.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: GasMinerPlasma entities: - - uid: 5562 + - uid: 5555 components: - pos: 25.5,39.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: GasMixerFlipped entities: - - uid: 5563 + - uid: 5556 components: - rot: 3.141592653589793 rad pos: 20.5,30.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#02FFD0FF' type: AtmosPipeColor - - uid: 5564 + - uid: 5557 components: - rot: 3.141592653589793 rad pos: 9.5,29.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: GasOutletInjector entities: - - uid: 5565 + - uid: 5558 components: - pos: 7.5,37.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 5566 + - uid: 5559 components: - pos: 25.5,37.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#990000FF' type: AtmosPipeColor - - uid: 5567 + - uid: 5560 components: - pos: 21.5,37.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#990000FF' type: AtmosPipeColor - - uid: 5568 + - uid: 5561 components: - pos: 23.5,37.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#990000FF' type: AtmosPipeColor - - uid: 5569 + - uid: 5562 components: - pos: 15.5,35.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#947507FF' type: AtmosPipeColor - - uid: 5570 + - uid: 5563 components: - pos: 27.5,37.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#990000FF' type: AtmosPipeColor - - uid: 5571 + - uid: 5564 components: - pos: -14.5,35.5 parent: 2 type: Transform - - uid: 5572 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5565 components: - pos: 10.5,37.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#7A5D04FF' type: AtmosPipeColor - proto: GasPassiveGate entities: - - uid: 5573 + - uid: 5566 components: - rot: 3.141592653589793 rad pos: 10.5,38.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5400FF' type: AtmosPipeColor - proto: GasPassiveVent entities: - - uid: 5574 + - uid: 5567 components: - rot: -1.5707963267948966 rad pos: 31.5,32.5 parent: 2 type: Transform - - uid: 5575 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5568 components: - rot: 1.5707963267948966 rad pos: 7.5,38.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5900FF' type: AtmosPipeColor - - uid: 5576 + - uid: 5569 components: - rot: 1.5707963267948966 rad pos: 7.5,39.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5900FF' type: AtmosPipeColor - - uid: 5577 + - uid: 5570 components: - pos: 19.5,35.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#B600FFFF' type: AtmosPipeColor - - uid: 5578 + - uid: 5571 components: - rot: 1.5707963267948966 rad pos: -7.5,2.5 parent: 2 type: Transform - - uid: 5579 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5572 components: - rot: 1.5707963267948966 rad pos: -7.5,0.5 parent: 2 type: Transform - - uid: 5580 + - joinedGrid: 2 + type: AtmosDevice + - uid: 5573 components: - pos: 28.5,37.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#947507FF' type: AtmosPipeColor - - uid: 5581 + - uid: 5574 components: - rot: 1.5707963267948966 rad pos: 25.5,38.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#947507FF' type: AtmosPipeColor - - uid: 5582 + - uid: 5575 components: - rot: -1.5707963267948966 rad pos: 21.5,38.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 5583 + - uid: 5576 components: - rot: -1.5707963267948966 rad pos: 23.5,38.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 5584 + - uid: 5577 components: - pos: 14.5,35.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#826003FF' type: AtmosPipeColor - - uid: 5585 + - uid: 5578 components: - pos: -12.5,35.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: GasPipeBend entities: - - uid: 5586 + - uid: 5579 components: - rot: -1.5707963267948966 rad pos: 22.5,30.5 @@ -35647,7 +35863,7 @@ entities: type: Transform - color: '#02FFD0FF' type: AtmosPipeColor - - uid: 5587 + - uid: 5580 components: - rot: -1.5707963267948966 rad pos: 20.5,29.5 @@ -35655,7 +35871,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5588 + - uid: 5581 components: - rot: 3.141592653589793 rad pos: 3.5,31.5 @@ -35663,14 +35879,14 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 5589 + - uid: 5582 components: - pos: 8.5,39.5 parent: 2 type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 5590 + - uid: 5583 components: - rot: 1.5707963267948966 rad pos: 9.5,39.5 @@ -35678,7 +35894,7 @@ entities: type: Transform - color: '#FF5400FF' type: AtmosPipeColor - - uid: 5591 + - uid: 5584 components: - rot: -1.5707963267948966 rad pos: 10.5,37.5 @@ -35686,35 +35902,35 @@ entities: type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 5592 + - uid: 5585 components: - pos: 10.5,39.5 parent: 2 type: Transform - color: '#FF5400FF' type: AtmosPipeColor - - uid: 5593 + - uid: 5586 components: - pos: 11.5,2.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5594 + - uid: 5587 components: - pos: 13.5,1.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5595 + - uid: 5588 components: - pos: 0.5,-6.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5596 + - uid: 5589 components: - rot: 3.141592653589793 rad pos: -1.5,-7.5 @@ -35722,7 +35938,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5597 + - uid: 5590 components: - rot: 3.141592653589793 rad pos: -0.5,-6.5 @@ -35730,38 +35946,38 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5598 + - uid: 5591 components: - pos: -14.5,-6.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5599 + - uid: 5592 components: - rot: -1.5707963267948966 rad pos: -6.5,0.5 parent: 2 type: Transform - - uid: 5600 + - uid: 5593 components: - pos: -6.5,2.5 parent: 2 type: Transform - - uid: 5601 + - uid: 5594 components: - rot: -1.5707963267948966 rad pos: -4.5,1.5 parent: 2 type: Transform - - uid: 5602 + - uid: 5595 components: - pos: 17.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5603 + - uid: 5596 components: - rot: -1.5707963267948966 rad pos: -5.5,45.5 @@ -35769,14 +35985,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5604 + - uid: 5597 components: - pos: 15.5,-25.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5605 + - uid: 5598 components: - rot: 3.141592653589793 rad pos: 13.5,-27.5 @@ -35784,14 +36000,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5606 + - uid: 5599 components: - pos: 26.5,38.5 parent: 2 type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 5607 + - uid: 5600 components: - rot: -1.5707963267948966 rad pos: 16.5,21.5 @@ -35799,7 +36015,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5608 + - uid: 5601 components: - rot: 1.5707963267948966 rad pos: -20.5,-11.5 @@ -35807,7 +36023,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5609 + - uid: 5602 components: - rot: 1.5707963267948966 rad pos: 22.5,38.5 @@ -35815,7 +36031,7 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 5610 + - uid: 5603 components: - rot: 1.5707963267948966 rad pos: 20.5,38.5 @@ -35823,7 +36039,7 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 5611 + - uid: 5604 components: - rot: 1.5707963267948966 rad pos: 3.5,39.5 @@ -35831,7 +36047,7 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 5612 + - uid: 5605 components: - rot: 3.141592653589793 rad pos: 11.5,-18.5 @@ -35839,7 +36055,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5613 + - uid: 5606 components: - rot: -1.5707963267948966 rad pos: 19.5,25.5 @@ -35847,7 +36063,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5614 + - uid: 5607 components: - rot: 1.5707963267948966 rad pos: 17.5,25.5 @@ -35855,7 +36071,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5615 + - uid: 5608 components: - rot: -1.5707963267948966 rad pos: 17.5,20.5 @@ -35863,7 +36079,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5616 + - uid: 5609 components: - rot: 3.141592653589793 rad pos: 10.5,-19.5 @@ -35871,14 +36087,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5617 + - uid: 5610 components: - pos: 13.5,-25.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5618 + - uid: 5611 components: - rot: 3.141592653589793 rad pos: 14.5,-25.5 @@ -35886,14 +36102,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5619 + - uid: 5612 components: - pos: -16.5,-0.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5620 + - uid: 5613 components: - rot: 3.141592653589793 rad pos: -18.5,9.5 @@ -35901,7 +36117,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5621 + - uid: 5614 components: - rot: -1.5707963267948966 rad pos: -17.5,17.5 @@ -35909,7 +36125,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5622 + - uid: 5615 components: - rot: 3.141592653589793 rad pos: -21.5,13.5 @@ -35917,7 +36133,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5623 + - uid: 5616 components: - rot: 1.5707963267948966 rad pos: -12.5,13.5 @@ -35925,7 +36141,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5624 + - uid: 5617 components: - rot: 1.5707963267948966 rad pos: -11.5,12.5 @@ -35933,7 +36149,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5625 + - uid: 5618 components: - rot: 3.141592653589793 rad pos: 1.5,5.5 @@ -35941,7 +36157,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5626 + - uid: 5619 components: - rot: 3.141592653589793 rad pos: 2.5,6.5 @@ -35949,21 +36165,21 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5627 + - uid: 5620 components: - pos: 4.5,6.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5628 + - uid: 5621 components: - pos: 3.5,5.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5629 + - uid: 5622 components: - rot: -1.5707963267948966 rad pos: -2.5,0.5 @@ -35971,7 +36187,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5630 + - uid: 5623 components: - rot: 3.141592653589793 rad pos: 0.5,-12.5 @@ -35979,7 +36195,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5631 + - uid: 5624 components: - rot: -1.5707963267948966 rad pos: -8.5,-28.5 @@ -35987,7 +36203,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5632 + - uid: 5625 components: - rot: -1.5707963267948966 rad pos: -6.5,-24.5 @@ -35995,7 +36211,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5633 + - uid: 5626 components: - rot: 3.141592653589793 rad pos: 4.5,-14.5 @@ -36003,7 +36219,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5634 + - uid: 5627 components: - rot: 3.141592653589793 rad pos: 3.5,-15.5 @@ -36011,21 +36227,21 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5635 + - uid: 5628 components: - pos: 4.5,-15.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5636 + - uid: 5629 components: - pos: 5.5,-14.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5637 + - uid: 5630 components: - rot: 3.141592653589793 rad pos: -11.5,-18.5 @@ -36033,7 +36249,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5638 + - uid: 5631 components: - rot: 3.141592653589793 rad pos: -2.5,-26.5 @@ -36041,7 +36257,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5639 + - uid: 5632 components: - rot: -1.5707963267948966 rad pos: 1.5,-26.5 @@ -36049,7 +36265,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5640 + - uid: 5633 components: - rot: 1.5707963267948966 rad pos: -7.5,-24.5 @@ -36057,14 +36273,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5641 + - uid: 5634 components: - pos: 11.5,-11.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5642 + - uid: 5635 components: - rot: -1.5707963267948966 rad pos: -7.5,-29.5 @@ -36072,7 +36288,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5643 + - uid: 5636 components: - rot: -1.5707963267948966 rad pos: 0.5,31.5 @@ -36080,7 +36296,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5644 + - uid: 5637 components: - rot: 1.5707963267948966 rad pos: -6.5,19.5 @@ -36088,7 +36304,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5645 + - uid: 5638 components: - rot: 3.141592653589793 rad pos: -12.5,-19.5 @@ -36096,7 +36312,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5646 + - uid: 5639 components: - rot: -1.5707963267948966 rad pos: 15.5,16.5 @@ -36104,7 +36320,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5647 + - uid: 5640 components: - rot: 3.141592653589793 rad pos: -10.5,23.5 @@ -36112,14 +36328,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5648 + - uid: 5641 components: - pos: 23.5,-20.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5649 + - uid: 5642 components: - rot: 3.141592653589793 rad pos: 19.5,-20.5 @@ -36127,14 +36343,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5650 + - uid: 5643 components: - pos: 19.5,-19.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5651 + - uid: 5644 components: - rot: -1.5707963267948966 rad pos: 4.5,19.5 @@ -36142,7 +36358,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5652 + - uid: 5645 components: - rot: 1.5707963267948966 rad pos: 10.5,21.5 @@ -36150,7 +36366,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5653 + - uid: 5646 components: - rot: 3.141592653589793 rad pos: -9.5,45.5 @@ -36158,7 +36374,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5654 + - uid: 5647 components: - rot: -1.5707963267948966 rad pos: -17.5,-15.5 @@ -36166,14 +36382,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5655 + - uid: 5648 components: - pos: 10.5,-12.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5656 + - uid: 5649 components: - rot: 3.141592653589793 rad pos: -22.5,4.5 @@ -36181,7 +36397,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5657 + - uid: 5650 components: - rot: 3.141592653589793 rad pos: -21.5,5.5 @@ -36189,7 +36405,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5658 + - uid: 5651 components: - rot: 3.141592653589793 rad pos: -9.5,24.5 @@ -36197,7 +36413,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5659 + - uid: 5652 components: - rot: 3.141592653589793 rad pos: 17.5,-14.5 @@ -36205,7 +36421,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5660 + - uid: 5653 components: - rot: 1.5707963267948966 rad pos: -5.5,27.5 @@ -36213,14 +36429,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5661 + - uid: 5654 components: - pos: -8.5,45.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5662 + - uid: 5655 components: - rot: 1.5707963267948966 rad pos: -17.5,-12.5 @@ -36228,14 +36444,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5663 + - uid: 5656 components: - pos: 6.5,10.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5664 + - uid: 5657 components: - rot: 3.141592653589793 rad pos: 11.5,10.5 @@ -36243,7 +36459,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5665 + - uid: 5658 components: - rot: 1.5707963267948966 rad pos: -8.5,-23.5 @@ -36251,7 +36467,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5666 + - uid: 5659 components: - rot: 3.141592653589793 rad pos: 15.5,26.5 @@ -36259,7 +36475,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5667 + - uid: 5660 components: - rot: 3.141592653589793 rad pos: 15.5,24.5 @@ -36267,14 +36483,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5668 + - uid: 5661 components: - pos: 20.5,-18.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5669 + - uid: 5662 components: - rot: -1.5707963267948966 rad pos: -7.5,-23.5 @@ -36282,14 +36498,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5670 + - uid: 5663 components: - pos: -21.5,7.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5671 + - uid: 5664 components: - rot: 1.5707963267948966 rad pos: -20.5,-7.5 @@ -36297,7 +36513,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5672 + - uid: 5665 components: - rot: 1.5707963267948966 rad pos: -19.5,-6.5 @@ -36305,14 +36521,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5673 + - uid: 5666 components: - pos: 31.5,17.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5674 + - uid: 5667 components: - rot: -1.5707963267948966 rad pos: 31.5,10.5 @@ -36320,7 +36536,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5675 + - uid: 5668 components: - rot: 1.5707963267948966 rad pos: 17.5,10.5 @@ -36328,14 +36544,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5676 + - uid: 5669 components: - pos: 2.5,15.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5677 + - uid: 5670 components: - rot: 1.5707963267948966 rad pos: -1.5,16.5 @@ -36343,7 +36559,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5678 + - uid: 5671 components: - rot: 1.5707963267948966 rad pos: -6.5,45.5 @@ -36351,7 +36567,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5679 + - uid: 5672 components: - rot: -1.5707963267948966 rad pos: -0.5,32.5 @@ -36359,7 +36575,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5680 + - uid: 5673 components: - rot: 1.5707963267948966 rad pos: -19.5,-15.5 @@ -36367,7 +36583,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5681 + - uid: 5674 components: - rot: -1.5707963267948966 rad pos: -19.5,-16.5 @@ -36375,7 +36591,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5682 + - uid: 5675 components: - rot: -1.5707963267948966 rad pos: -20.5,-15.5 @@ -36383,7 +36599,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5683 + - uid: 5676 components: - rot: 3.141592653589793 rad pos: -14.5,32.5 @@ -36391,18 +36607,18 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5684 + - uid: 5677 components: - rot: 3.141592653589793 rad pos: -14.5,34.5 parent: 2 type: Transform - - uid: 5685 + - uid: 5678 components: - pos: -13.5,34.5 parent: 2 type: Transform - - uid: 5686 + - uid: 5679 components: - rot: 3.141592653589793 rad pos: -1.5,25.5 @@ -36410,7 +36626,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5687 + - uid: 5680 components: - rot: 3.141592653589793 rad pos: -1.5,25.5 @@ -36418,7 +36634,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5688 + - uid: 5681 components: - rot: -1.5707963267948966 rad pos: 5.5,25.5 @@ -36426,39 +36642,39 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5689 + - uid: 5682 components: - pos: 5.5,24.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5690 + - uid: 5683 components: - rot: 1.5707963267948966 rad pos: 1.5,29.5 parent: 2 type: Transform - - uid: 5691 + - uid: 5684 components: - pos: 3.5,29.5 parent: 2 type: Transform - - uid: 5692 + - uid: 5685 components: - pos: -27.5,6.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5693 + - uid: 5686 components: - pos: -26.5,11.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5694 + - uid: 5687 components: - rot: 3.141592653589793 rad pos: -26.5,5.5 @@ -36466,7 +36682,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5695 + - uid: 5688 components: - rot: 3.141592653589793 rad pos: -27.5,4.5 @@ -36474,7 +36690,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5696 + - uid: 5689 components: - rot: 3.141592653589793 rad pos: -26.5,-2.5 @@ -36482,7 +36698,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5697 + - uid: 5690 components: - rot: 3.141592653589793 rad pos: -25.5,-4.5 @@ -36490,21 +36706,21 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5698 + - uid: 5691 components: - pos: -25.5,5.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5699 + - uid: 5692 components: - pos: -26.5,4.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5700 + - uid: 5693 components: - rot: 3.141592653589793 rad pos: 11.5,1.5 @@ -36512,7 +36728,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5701 + - uid: 5694 components: - rot: -1.5707963267948966 rad pos: 20.5,-0.5 @@ -36520,7 +36736,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5702 + - uid: 5695 components: - rot: 1.5707963267948966 rad pos: 20.5,1.5 @@ -36528,7 +36744,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5703 + - uid: 5696 components: - rot: -1.5707963267948966 rad pos: 7.5,34.5 @@ -36536,7 +36752,7 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 5704 + - uid: 5697 components: - rot: -1.5707963267948966 rad pos: 6.5,0.5 @@ -36544,14 +36760,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5705 + - uid: 5698 components: - pos: 14.5,30.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5706 + - uid: 5699 components: - rot: 3.141592653589793 rad pos: 14.5,28.5 @@ -36559,7 +36775,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5707 + - uid: 5700 components: - pos: 5.5,39.5 parent: 2 @@ -36568,182 +36784,182 @@ entities: type: AtmosPipeColor - proto: GasPipeFourway entities: - - uid: 5708 + - uid: 5701 components: - pos: 3.5,-12.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5709 + - uid: 5702 components: - pos: 4.5,-11.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5710 + - uid: 5703 components: - pos: -2.5,32.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5711 + - uid: 5704 components: - pos: -16.5,-2.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5712 + - uid: 5705 components: - pos: -11.5,-4.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5713 + - uid: 5706 components: - pos: -12.5,-2.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5714 + - uid: 5707 components: - pos: 16.5,26.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5715 + - uid: 5708 components: - pos: 11.5,-17.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5716 + - uid: 5709 components: - pos: -11.5,9.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5717 + - uid: 5710 components: - pos: -12.5,8.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5718 + - uid: 5711 components: - pos: -19.5,13.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5719 + - uid: 5712 components: - pos: -18.5,12.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5720 + - uid: 5713 components: - pos: -1.5,-4.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5721 + - uid: 5714 components: - pos: -24.5,-2.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5722 + - uid: 5715 components: - pos: -23.5,-4.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5723 + - uid: 5716 components: - pos: -1.5,31.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5724 + - uid: 5717 components: - pos: -23.5,-18.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5725 + - uid: 5718 components: - pos: -24.5,-19.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5726 + - uid: 5719 components: - pos: -23.5,-23.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5727 + - uid: 5720 components: - pos: -24.5,-24.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5728 + - uid: 5721 components: - pos: 4.5,-4.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5729 + - uid: 5722 components: - pos: 8.5,31.5 parent: 2 type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 5730 + - uid: 5723 components: - pos: 4.5,0.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5731 + - uid: 5724 components: - pos: 6.5,31.5 parent: 2 type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 5732 + - uid: 5725 components: - pos: 7.5,-0.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5733 + - uid: 5726 components: - pos: 10.5,16.5 parent: 2 @@ -36752,7 +36968,7 @@ entities: type: AtmosPipeColor - proto: GasPipeStraight entities: - - uid: 5734 + - uid: 5727 components: - rot: -1.5707963267948966 rad pos: 21.5,30.5 @@ -36760,7 +36976,7 @@ entities: type: Transform - color: '#02FFD0FF' type: AtmosPipeColor - - uid: 5735 + - uid: 5728 components: - rot: -1.5707963267948966 rad pos: 19.5,29.5 @@ -36768,7 +36984,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5736 + - uid: 5729 components: - rot: 3.141592653589793 rad pos: 22.5,31.5 @@ -36776,7 +36992,7 @@ entities: type: Transform - color: '#02FFD0FF' type: AtmosPipeColor - - uid: 5737 + - uid: 5730 components: - rot: 3.141592653589793 rad pos: 22.5,32.5 @@ -36784,7 +37000,7 @@ entities: type: Transform - color: '#02FFD0FF' type: AtmosPipeColor - - uid: 5738 + - uid: 5731 components: - rot: 3.141592653589793 rad pos: 20.5,31.5 @@ -36792,7 +37008,7 @@ entities: type: Transform - color: '#02FFD0FF' type: AtmosPipeColor - - uid: 5739 + - uid: 5732 components: - rot: -1.5707963267948966 rad pos: 9.5,16.5 @@ -36800,7 +37016,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5740 + - uid: 5733 components: - rot: -1.5707963267948966 rad pos: 12.5,29.5 @@ -36808,7 +37024,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5741 + - uid: 5734 components: - rot: 1.5707963267948966 rad pos: 22.5,0.5 @@ -36816,14 +37032,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5742 + - uid: 5735 components: - pos: 24.5,-0.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5743 + - uid: 5736 components: - rot: 3.141592653589793 rad pos: 6.5,1.5 @@ -36831,7 +37047,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5744 + - uid: 5737 components: - rot: 1.5707963267948966 rad pos: 11.5,31.5 @@ -36839,7 +37055,7 @@ entities: type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 5745 + - uid: 5738 components: - rot: 1.5707963267948966 rad pos: 16.5,-0.5 @@ -36847,7 +37063,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5746 + - uid: 5739 components: - rot: 3.141592653589793 rad pos: 7.5,1.5 @@ -36855,7 +37071,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5747 + - uid: 5740 components: - rot: -1.5707963267948966 rad pos: 8.5,-6.5 @@ -36863,7 +37079,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5748 + - uid: 5741 components: - rot: 3.141592653589793 rad pos: 7.5,36.5 @@ -36871,14 +37087,14 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 5749 + - uid: 5742 components: - pos: 9.5,36.5 parent: 2 type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 5750 + - uid: 5743 components: - rot: 1.5707963267948966 rad pos: 12.5,31.5 @@ -36886,14 +37102,14 @@ entities: type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 5751 + - uid: 5744 components: - pos: 8.5,37.5 parent: 2 type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 5752 + - uid: 5745 components: - rot: 3.141592653589793 rad pos: 7.5,0.5 @@ -36901,7 +37117,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5753 + - uid: 5746 components: - rot: -1.5707963267948966 rad pos: 11.5,-0.5 @@ -36909,7 +37125,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5754 + - uid: 5747 components: - rot: -1.5707963267948966 rad pos: 12.5,-0.5 @@ -36917,7 +37133,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5755 + - uid: 5748 components: - rot: -1.5707963267948966 rad pos: 13.5,-0.5 @@ -36925,7 +37141,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5756 + - uid: 5749 components: - rot: -1.5707963267948966 rad pos: 14.5,-0.5 @@ -36933,7 +37149,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5757 + - uid: 5750 components: - rot: -1.5707963267948966 rad pos: 23.5,0.5 @@ -36941,7 +37157,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5758 + - uid: 5751 components: - rot: 3.141592653589793 rad pos: 16.5,-3.5 @@ -36949,7 +37165,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5759 + - uid: 5752 components: - rot: 1.5707963267948966 rad pos: 21.5,0.5 @@ -36957,7 +37173,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5760 + - uid: 5753 components: - rot: 3.141592653589793 rad pos: 16.5,-0.5 @@ -36965,7 +37181,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5761 + - uid: 5754 components: - rot: 3.141592653589793 rad pos: 16.5,-1.5 @@ -36973,7 +37189,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5762 + - uid: 5755 components: - rot: 3.141592653589793 rad pos: 3.5,36.5 @@ -36981,14 +37197,14 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 5763 + - uid: 5756 components: - pos: 3.5,34.5 parent: 2 type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 5764 + - uid: 5757 components: - rot: 3.141592653589793 rad pos: 19.5,31.5 @@ -36996,14 +37212,14 @@ entities: type: Transform - color: '#B600FFFF' type: AtmosPipeColor - - uid: 5765 + - uid: 5758 components: - pos: -20.5,-14.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5766 + - uid: 5759 components: - rot: -1.5707963267948966 rad pos: -6.5,24.5 @@ -37011,14 +37227,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5767 + - uid: 5760 components: - pos: -7.5,21.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5768 + - uid: 5761 components: - rot: 1.5707963267948966 rad pos: -17.5,-11.5 @@ -37026,35 +37242,35 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5769 + - uid: 5762 components: - pos: 1.5,11.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5770 + - uid: 5763 components: - pos: 25.5,36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5771 + - uid: 5764 components: - pos: 25.5,35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5772 + - uid: 5765 components: - pos: 25.5,34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5773 + - uid: 5766 components: - rot: -1.5707963267948966 rad pos: -8.5,24.5 @@ -37062,48 +37278,48 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5774 + - uid: 5767 components: - pos: 11.5,17.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5775 + - uid: 5768 components: - pos: -11.5,-6.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5776 + - uid: 5769 components: - pos: -11.5,-0.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5777 + - uid: 5770 components: - pos: -12.5,0.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5778 + - uid: 5771 components: - pos: -12.5,-7.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5779 + - uid: 5772 components: - rot: -1.5707963267948966 rad pos: -5.5,1.5 parent: 2 type: Transform - - uid: 5780 + - uid: 5773 components: - rot: -1.5707963267948966 rad pos: -18.5,5.5 @@ -37111,7 +37327,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5781 + - uid: 5774 components: - rot: -1.5707963267948966 rad pos: -15.5,-2.5 @@ -37119,7 +37335,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5782 + - uid: 5775 components: - rot: -1.5707963267948966 rad pos: -13.5,-4.5 @@ -37127,7 +37343,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5783 + - uid: 5776 components: - rot: -1.5707963267948966 rad pos: -17.5,5.5 @@ -37135,7 +37351,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5784 + - uid: 5777 components: - rot: 3.141592653589793 rad pos: -19.5,-8.5 @@ -37143,7 +37359,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5785 + - uid: 5778 components: - rot: -1.5707963267948966 rad pos: -19.5,5.5 @@ -37151,7 +37367,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5786 + - uid: 5779 components: - rot: -1.5707963267948966 rad pos: -13.5,-2.5 @@ -37159,7 +37375,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5787 + - uid: 5780 components: - rot: -1.5707963267948966 rad pos: -14.5,-2.5 @@ -37167,7 +37383,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5788 + - uid: 5781 components: - rot: -1.5707963267948966 rad pos: 2.5,25.5 @@ -37175,7 +37391,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5789 + - uid: 5782 components: - rot: 1.5707963267948966 rad pos: -23.5,8.5 @@ -37183,14 +37399,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5790 + - uid: 5783 components: - pos: -2.5,29.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5791 + - uid: 5784 components: - rot: 3.141592653589793 rad pos: 27.5,35.5 @@ -37198,14 +37414,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5792 + - uid: 5785 components: - pos: 10.5,18.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5793 + - uid: 5786 components: - rot: 3.141592653589793 rad pos: 14.5,29.5 @@ -37213,7 +37429,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5794 + - uid: 5787 components: - rot: 3.141592653589793 rad pos: -23.5,-24.5 @@ -37221,7 +37437,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5795 + - uid: 5788 components: - rot: 1.5707963267948966 rad pos: -19.5,-11.5 @@ -37229,7 +37445,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5796 + - uid: 5789 components: - rot: -1.5707963267948966 rad pos: 3.5,-11.5 @@ -37237,14 +37453,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5797 + - uid: 5790 components: - pos: -1.5,-6.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5798 + - uid: 5791 components: - rot: 3.141592653589793 rad pos: -17.5,-8.5 @@ -37252,7 +37468,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5799 + - uid: 5792 components: - rot: 3.141592653589793 rad pos: -23.5,-26.5 @@ -37260,7 +37476,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5800 + - uid: 5793 components: - rot: -1.5707963267948966 rad pos: -24.5,-27.5 @@ -37268,7 +37484,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5801 + - uid: 5794 components: - rot: -1.5707963267948966 rad pos: 3.5,19.5 @@ -37276,14 +37492,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5802 + - uid: 5795 components: - pos: 4.5,-22.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5803 + - uid: 5796 components: - rot: -1.5707963267948966 rad pos: 14.5,29.5 @@ -37291,14 +37507,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5804 + - uid: 5797 components: - pos: -7.5,22.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5805 + - uid: 5798 components: - rot: -1.5707963267948966 rad pos: -5.5,24.5 @@ -37306,7 +37522,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5806 + - uid: 5799 components: - rot: 1.5707963267948966 rad pos: -3.5,31.5 @@ -37314,35 +37530,35 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5807 + - uid: 5800 components: - pos: -7.5,19.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5808 + - uid: 5801 components: - pos: -2.5,30.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5809 + - uid: 5802 components: - pos: 26.5,37.5 parent: 2 type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 5810 + - uid: 5803 components: - pos: 26.5,36.5 parent: 2 type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 5811 + - uid: 5804 components: - rot: 1.5707963267948966 rad pos: -4.5,20.5 @@ -37350,14 +37566,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5812 + - uid: 5805 components: - pos: 15.5,-26.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5813 + - uid: 5806 components: - rot: 3.141592653589793 rad pos: 13.5,-26.5 @@ -37365,7 +37581,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5814 + - uid: 5807 components: - rot: 3.141592653589793 rad pos: 12.5,-24.5 @@ -37373,7 +37589,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5815 + - uid: 5808 components: - rot: 1.5707963267948966 rad pos: 15.5,28.5 @@ -37381,21 +37597,21 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5816 + - uid: 5809 components: - pos: 17.5,22.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5817 + - uid: 5810 components: - pos: 16.5,23.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5818 + - uid: 5811 components: - rot: 3.141592653589793 rad pos: 27.5,36.5 @@ -37403,7 +37619,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5819 + - uid: 5812 components: - rot: 1.5707963267948966 rad pos: 16.5,20.5 @@ -37411,7 +37627,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5820 + - uid: 5813 components: - rot: 1.5707963267948966 rad pos: -3.5,19.5 @@ -37419,7 +37635,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5821 + - uid: 5814 components: - rot: 1.5707963267948966 rad pos: -2.5,20.5 @@ -37427,7 +37643,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5822 + - uid: 5815 components: - rot: 1.5707963267948966 rad pos: -1.5,19.5 @@ -37435,14 +37651,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5823 + - uid: 5816 components: - pos: 26.5,35.5 parent: 2 type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 5824 + - uid: 5817 components: - rot: 1.5707963267948966 rad pos: -5.5,20.5 @@ -37450,14 +37666,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5825 + - uid: 5818 components: - pos: 26.5,34.5 parent: 2 type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 5826 + - uid: 5819 components: - rot: -1.5707963267948966 rad pos: -10.5,32.5 @@ -37465,49 +37681,49 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5827 + - uid: 5820 components: - pos: 21.5,36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5828 + - uid: 5821 components: - pos: 21.5,35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5829 + - uid: 5822 components: - pos: 21.5,34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5830 + - uid: 5823 components: - pos: 23.5,36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5831 + - uid: 5824 components: - pos: 23.5,35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5832 + - uid: 5825 components: - pos: 23.5,34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5833 + - uid: 5826 components: - rot: -1.5707963267948966 rad pos: 3.5,24.5 @@ -37515,7 +37731,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5834 + - uid: 5827 components: - rot: 1.5707963267948966 rad pos: 2.5,19.5 @@ -37523,7 +37739,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5835 + - uid: 5828 components: - rot: -1.5707963267948966 rad pos: 1.5,25.5 @@ -37531,7 +37747,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5836 + - uid: 5829 components: - rot: -1.5707963267948966 rad pos: 12.5,18.5 @@ -37539,7 +37755,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5837 + - uid: 5830 components: - rot: -1.5707963267948966 rad pos: 13.5,18.5 @@ -37547,21 +37763,21 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5838 + - uid: 5831 components: - pos: -2.5,31.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5839 + - uid: 5832 components: - pos: 3.5,-8.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5840 + - uid: 5833 components: - rot: 3.141592653589793 rad pos: 1.5,6.5 @@ -37569,7 +37785,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5841 + - uid: 5834 components: - rot: -1.5707963267948966 rad pos: 0.5,-2.5 @@ -37577,7 +37793,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5842 + - uid: 5835 components: - rot: -1.5707963267948966 rad pos: -9.5,-4.5 @@ -37585,7 +37801,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5843 + - uid: 5836 components: - rot: 1.5707963267948966 rad pos: 16.5,28.5 @@ -37593,7 +37809,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5844 + - uid: 5837 components: - rot: 1.5707963267948966 rad pos: -16.5,-11.5 @@ -37601,7 +37817,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5845 + - uid: 5838 components: - rot: -1.5707963267948966 rad pos: -18.5,-15.5 @@ -37609,63 +37825,63 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5846 + - uid: 5839 components: - pos: 20.5,37.5 parent: 2 type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 5847 + - uid: 5840 components: - pos: 20.5,36.5 parent: 2 type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 5848 + - uid: 5841 components: - pos: 20.5,35.5 parent: 2 type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 5849 + - uid: 5842 components: - pos: 20.5,34.5 parent: 2 type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 5850 + - uid: 5843 components: - pos: 22.5,37.5 parent: 2 type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 5851 + - uid: 5844 components: - pos: 22.5,36.5 parent: 2 type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 5852 + - uid: 5845 components: - pos: 22.5,35.5 parent: 2 type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 5853 + - uid: 5846 components: - pos: 22.5,34.5 parent: 2 type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 5854 + - uid: 5847 components: - rot: 1.5707963267948966 rad pos: -16.5,-12.5 @@ -37673,7 +37889,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5855 + - uid: 5848 components: - rot: 3.141592653589793 rad pos: -6.5,37.5 @@ -37681,7 +37897,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5856 + - uid: 5849 components: - rot: 3.141592653589793 rad pos: 5.5,36.5 @@ -37689,28 +37905,28 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 5857 + - uid: 5850 components: - pos: 15.5,34.5 parent: 2 type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 5858 + - uid: 5851 components: - pos: 14.5,34.5 parent: 2 type: Transform - color: '#826003FF' type: AtmosPipeColor - - uid: 5859 + - uid: 5852 components: - pos: 19.5,34.5 parent: 2 type: Transform - color: '#B600FFFF' type: AtmosPipeColor - - uid: 5860 + - uid: 5853 components: - rot: 3.141592653589793 rad pos: 19.5,29.5 @@ -37718,14 +37934,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5861 + - uid: 5854 components: - pos: 19.5,27.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5862 + - uid: 5855 components: - rot: 3.141592653589793 rad pos: 27.5,34.5 @@ -37733,7 +37949,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5863 + - uid: 5856 components: - rot: 1.5707963267948966 rad pos: 17.5,29.5 @@ -37741,35 +37957,35 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5864 + - uid: 5857 components: - pos: 16.5,28.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5865 + - uid: 5858 components: - pos: 16.5,27.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5866 + - uid: 5859 components: - pos: 16.5,25.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5867 + - uid: 5860 components: - pos: 16.5,22.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5868 + - uid: 5861 components: - rot: 1.5707963267948966 rad pos: 18.5,25.5 @@ -37777,28 +37993,28 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5869 + - uid: 5862 components: - pos: 17.5,24.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5870 + - uid: 5863 components: - pos: 17.5,23.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5871 + - uid: 5864 components: - pos: 17.5,21.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5872 + - uid: 5865 components: - rot: -1.5707963267948966 rad pos: 15.5,20.5 @@ -37806,7 +38022,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5873 + - uid: 5866 components: - rot: -1.5707963267948966 rad pos: 14.5,20.5 @@ -37814,7 +38030,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5874 + - uid: 5867 components: - rot: -1.5707963267948966 rad pos: 13.5,20.5 @@ -37822,7 +38038,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5875 + - uid: 5868 components: - rot: -1.5707963267948966 rad pos: 12.5,20.5 @@ -37830,7 +38046,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5876 + - uid: 5869 components: - rot: -1.5707963267948966 rad pos: 15.5,21.5 @@ -37838,7 +38054,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5877 + - uid: 5870 components: - rot: -1.5707963267948966 rad pos: 14.5,21.5 @@ -37846,7 +38062,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5878 + - uid: 5871 components: - rot: -1.5707963267948966 rad pos: 13.5,21.5 @@ -37854,7 +38070,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5879 + - uid: 5872 components: - rot: -1.5707963267948966 rad pos: 12.5,21.5 @@ -37862,7 +38078,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5880 + - uid: 5873 components: - rot: -1.5707963267948966 rad pos: 11.5,21.5 @@ -37870,28 +38086,28 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5881 + - uid: 5874 components: - pos: 11.5,-13.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5882 + - uid: 5875 components: - pos: 10.5,20.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5883 + - uid: 5876 components: - pos: 10.5,19.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5884 + - uid: 5877 components: - rot: 3.141592653589793 rad pos: 10.5,-17.5 @@ -37899,56 +38115,56 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5885 + - uid: 5878 components: - pos: 10.5,17.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5886 + - uid: 5879 components: - pos: 10.5,15.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5887 + - uid: 5880 components: - pos: 10.5,14.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5888 + - uid: 5881 components: - pos: 11.5,19.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5889 + - uid: 5882 components: - pos: 11.5,16.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5890 + - uid: 5883 components: - pos: 11.5,14.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5891 + - uid: 5884 components: - pos: 11.5,13.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5892 + - uid: 5885 components: - rot: -1.5707963267948966 rad pos: 10.5,12.5 @@ -37956,7 +38172,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5893 + - uid: 5886 components: - rot: -1.5707963267948966 rad pos: 9.5,12.5 @@ -37964,7 +38180,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5894 + - uid: 5887 components: - rot: -1.5707963267948966 rad pos: 8.5,12.5 @@ -37972,7 +38188,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5895 + - uid: 5888 components: - rot: -1.5707963267948966 rad pos: 7.5,12.5 @@ -37980,7 +38196,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5896 + - uid: 5889 components: - rot: -1.5707963267948966 rad pos: 6.5,12.5 @@ -37988,7 +38204,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5897 + - uid: 5890 components: - rot: -1.5707963267948966 rad pos: 5.5,12.5 @@ -37996,7 +38212,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5898 + - uid: 5891 components: - rot: -1.5707963267948966 rad pos: 3.5,12.5 @@ -38004,7 +38220,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5899 + - uid: 5892 components: - rot: -1.5707963267948966 rad pos: 9.5,13.5 @@ -38012,7 +38228,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5900 + - uid: 5893 components: - rot: -1.5707963267948966 rad pos: 8.5,13.5 @@ -38020,7 +38236,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5901 + - uid: 5894 components: - rot: -1.5707963267948966 rad pos: 7.5,13.5 @@ -38028,7 +38244,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5902 + - uid: 5895 components: - rot: -1.5707963267948966 rad pos: 6.5,13.5 @@ -38036,7 +38252,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5903 + - uid: 5896 components: - rot: -1.5707963267948966 rad pos: 1.5,-4.5 @@ -38044,7 +38260,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5904 + - uid: 5897 components: - rot: -1.5707963267948966 rad pos: 4.5,13.5 @@ -38052,7 +38268,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5905 + - uid: 5898 components: - rot: -1.5707963267948966 rad pos: 3.5,13.5 @@ -38060,49 +38276,49 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5906 + - uid: 5899 components: - pos: 1.5,10.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5907 + - uid: 5900 components: - pos: 1.5,9.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5908 + - uid: 5901 components: - pos: 1.5,7.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5909 + - uid: 5902 components: - pos: 2.5,11.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5910 + - uid: 5903 components: - pos: 2.5,9.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5911 + - uid: 5904 components: - pos: 2.5,8.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5912 + - uid: 5905 components: - rot: -1.5707963267948966 rad pos: -8.5,-2.5 @@ -38110,168 +38326,168 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5913 + - uid: 5906 components: - pos: 3.5,4.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5914 + - uid: 5907 components: - pos: 3.5,3.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5915 + - uid: 5908 components: - pos: 3.5,2.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5916 + - uid: 5909 components: - pos: 3.5,0.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5917 + - uid: 5910 components: - pos: 3.5,-1.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5918 + - uid: 5911 components: - pos: 3.5,-3.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5919 + - uid: 5912 components: - pos: 3.5,-4.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5920 + - uid: 5913 components: - pos: 3.5,-5.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5921 + - uid: 5914 components: - pos: 3.5,-7.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5922 + - uid: 5915 components: - pos: 4.5,-9.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5923 + - uid: 5916 components: - pos: 3.5,-10.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5924 + - uid: 5917 components: - pos: 4.5,4.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5925 + - uid: 5918 components: - pos: 4.5,3.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5926 + - uid: 5919 components: - pos: 4.5,2.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5927 + - uid: 5920 components: - pos: 4.5,1.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5928 + - uid: 5921 components: - pos: 4.5,-0.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5929 + - uid: 5922 components: - pos: 4.5,-1.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5930 + - uid: 5923 components: - pos: 4.5,-2.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5931 + - uid: 5924 components: - pos: 4.5,-3.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5932 + - uid: 5925 components: - pos: 4.5,-5.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5933 + - uid: 5926 components: - pos: 4.5,-6.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5934 + - uid: 5927 components: - pos: 4.5,-7.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5935 + - uid: 5928 components: - pos: 4.5,-8.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5936 + - uid: 5929 components: - rot: -1.5707963267948966 rad pos: 0.5,13.5 @@ -38279,7 +38495,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5937 + - uid: 5930 components: - rot: -1.5707963267948966 rad pos: 0.5,12.5 @@ -38287,7 +38503,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5938 + - uid: 5931 components: - rot: -1.5707963267948966 rad pos: -0.5,13.5 @@ -38295,7 +38511,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5939 + - uid: 5932 components: - rot: -1.5707963267948966 rad pos: -0.5,12.5 @@ -38303,7 +38519,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5940 + - uid: 5933 components: - rot: -1.5707963267948966 rad pos: -1.5,13.5 @@ -38311,7 +38527,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5941 + - uid: 5934 components: - rot: -1.5707963267948966 rad pos: -2.5,13.5 @@ -38319,7 +38535,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5942 + - uid: 5935 components: - rot: -1.5707963267948966 rad pos: -2.5,12.5 @@ -38327,7 +38543,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5943 + - uid: 5936 components: - rot: -1.5707963267948966 rad pos: -3.5,13.5 @@ -38335,7 +38551,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5944 + - uid: 5937 components: - rot: -1.5707963267948966 rad pos: -3.5,12.5 @@ -38343,7 +38559,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5945 + - uid: 5938 components: - rot: -1.5707963267948966 rad pos: -4.5,12.5 @@ -38351,7 +38567,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5946 + - uid: 5939 components: - rot: -1.5707963267948966 rad pos: -5.5,13.5 @@ -38359,7 +38575,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5947 + - uid: 5940 components: - rot: -1.5707963267948966 rad pos: -4.5,13.5 @@ -38367,7 +38583,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5948 + - uid: 5941 components: - rot: -1.5707963267948966 rad pos: -6.5,13.5 @@ -38375,7 +38591,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5949 + - uid: 5942 components: - rot: -1.5707963267948966 rad pos: -8.5,13.5 @@ -38383,7 +38599,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5950 + - uid: 5943 components: - rot: -1.5707963267948966 rad pos: -8.5,12.5 @@ -38391,7 +38607,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5951 + - uid: 5944 components: - rot: -1.5707963267948966 rad pos: -9.5,12.5 @@ -38399,7 +38615,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5952 + - uid: 5945 components: - rot: -1.5707963267948966 rad pos: -10.5,13.5 @@ -38407,7 +38623,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5953 + - uid: 5946 components: - rot: -1.5707963267948966 rad pos: -10.5,12.5 @@ -38415,7 +38631,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5954 + - uid: 5947 components: - rot: 3.141592653589793 rad pos: -12.5,11.5 @@ -38423,7 +38639,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5955 + - uid: 5948 components: - rot: 3.141592653589793 rad pos: -12.5,10.5 @@ -38431,7 +38647,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5956 + - uid: 5949 components: - rot: 3.141592653589793 rad pos: -12.5,9.5 @@ -38439,7 +38655,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5957 + - uid: 5950 components: - rot: 3.141592653589793 rad pos: -12.5,7.5 @@ -38447,7 +38663,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5958 + - uid: 5951 components: - rot: 3.141592653589793 rad pos: -12.5,5.5 @@ -38455,7 +38671,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5959 + - uid: 5952 components: - rot: 3.141592653589793 rad pos: -12.5,4.5 @@ -38463,7 +38679,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5960 + - uid: 5953 components: - rot: 3.141592653589793 rad pos: -12.5,2.5 @@ -38471,7 +38687,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5961 + - uid: 5954 components: - rot: 3.141592653589793 rad pos: -12.5,1.5 @@ -38479,7 +38695,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5962 + - uid: 5955 components: - rot: 3.141592653589793 rad pos: -12.5,-0.5 @@ -38487,7 +38703,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5963 + - uid: 5956 components: - rot: 3.141592653589793 rad pos: -12.5,-1.5 @@ -38495,7 +38711,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5964 + - uid: 5957 components: - rot: 3.141592653589793 rad pos: -12.5,-3.5 @@ -38503,7 +38719,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5965 + - uid: 5958 components: - rot: 3.141592653589793 rad pos: -12.5,-4.5 @@ -38511,7 +38727,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5966 + - uid: 5959 components: - rot: 3.141592653589793 rad pos: -12.5,-5.5 @@ -38519,7 +38735,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5967 + - uid: 5960 components: - rot: 3.141592653589793 rad pos: -12.5,-6.5 @@ -38527,7 +38743,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5968 + - uid: 5961 components: - rot: 3.141592653589793 rad pos: -12.5,-8.5 @@ -38535,7 +38751,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5969 + - uid: 5962 components: - rot: 3.141592653589793 rad pos: -12.5,-10.5 @@ -38543,7 +38759,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5970 + - uid: 5963 components: - rot: 3.141592653589793 rad pos: -12.5,-12.5 @@ -38551,7 +38767,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5971 + - uid: 5964 components: - rot: 3.141592653589793 rad pos: -12.5,-13.5 @@ -38559,7 +38775,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5972 + - uid: 5965 components: - rot: 3.141592653589793 rad pos: -12.5,-14.5 @@ -38567,7 +38783,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5973 + - uid: 5966 components: - rot: 3.141592653589793 rad pos: -12.5,-15.5 @@ -38575,7 +38791,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5974 + - uid: 5967 components: - rot: 3.141592653589793 rad pos: -12.5,-16.5 @@ -38583,7 +38799,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5975 + - uid: 5968 components: - rot: 3.141592653589793 rad pos: -11.5,11.5 @@ -38591,7 +38807,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5976 + - uid: 5969 components: - rot: 3.141592653589793 rad pos: -11.5,10.5 @@ -38599,7 +38815,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5977 + - uid: 5970 components: - rot: 3.141592653589793 rad pos: -11.5,8.5 @@ -38607,7 +38823,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5978 + - uid: 5971 components: - rot: 3.141592653589793 rad pos: -11.5,6.5 @@ -38615,7 +38831,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5979 + - uid: 5972 components: - rot: 3.141592653589793 rad pos: -11.5,5.5 @@ -38623,7 +38839,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5980 + - uid: 5973 components: - rot: 3.141592653589793 rad pos: -11.5,4.5 @@ -38631,7 +38847,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5981 + - uid: 5974 components: - rot: 3.141592653589793 rad pos: -11.5,3.5 @@ -38639,7 +38855,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5982 + - uid: 5975 components: - rot: 3.141592653589793 rad pos: -11.5,1.5 @@ -38647,7 +38863,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5983 + - uid: 5976 components: - rot: 3.141592653589793 rad pos: -11.5,0.5 @@ -38655,7 +38871,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5984 + - uid: 5977 components: - rot: -1.5707963267948966 rad pos: -12.5,-4.5 @@ -38663,7 +38879,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5985 + - uid: 5978 components: - rot: 3.141592653589793 rad pos: -11.5,-1.5 @@ -38671,7 +38887,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5986 + - uid: 5979 components: - rot: 3.141592653589793 rad pos: -11.5,-2.5 @@ -38679,7 +38895,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5987 + - uid: 5980 components: - rot: 3.141592653589793 rad pos: -11.5,-3.5 @@ -38687,7 +38903,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5988 + - uid: 5981 components: - rot: -1.5707963267948966 rad pos: -14.5,-4.5 @@ -38695,7 +38911,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5989 + - uid: 5982 components: - rot: 3.141592653589793 rad pos: -11.5,-5.5 @@ -38703,7 +38919,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5990 + - uid: 5983 components: - rot: 3.141592653589793 rad pos: -11.5,-7.5 @@ -38711,7 +38927,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5991 + - uid: 5984 components: - rot: 3.141592653589793 rad pos: -11.5,-8.5 @@ -38719,7 +38935,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5992 + - uid: 5985 components: - rot: 3.141592653589793 rad pos: -11.5,-9.5 @@ -38727,7 +38943,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5993 + - uid: 5986 components: - rot: 3.141592653589793 rad pos: -11.5,-11.5 @@ -38735,7 +38951,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5994 + - uid: 5987 components: - rot: 3.141592653589793 rad pos: -11.5,-13.5 @@ -38743,7 +38959,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5995 + - uid: 5988 components: - rot: 3.141592653589793 rad pos: -11.5,-14.5 @@ -38751,7 +38967,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5996 + - uid: 5989 components: - rot: 3.141592653589793 rad pos: -11.5,-15.5 @@ -38759,7 +38975,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5997 + - uid: 5990 components: - rot: 3.141592653589793 rad pos: -11.5,-16.5 @@ -38767,14 +38983,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5998 + - uid: 5991 components: - pos: -14.5,-7.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5999 + - uid: 5992 components: - rot: -1.5707963267948966 rad pos: -7.5,-21.5 @@ -38782,14 +38998,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6000 + - uid: 5993 components: - pos: -15.5,-5.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6001 + - uid: 5994 components: - rot: 3.141592653589793 rad pos: -16.5,-6.5 @@ -38797,7 +39013,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6002 + - uid: 5995 components: - rot: 3.141592653589793 rad pos: -16.5,-5.5 @@ -38805,7 +39021,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6003 + - uid: 5996 components: - rot: 3.141592653589793 rad pos: -16.5,-4.5 @@ -38813,7 +39029,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6004 + - uid: 5997 components: - rot: 3.141592653589793 rad pos: -16.5,-3.5 @@ -38821,7 +39037,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6005 + - uid: 5998 components: - rot: 3.141592653589793 rad pos: -16.5,-1.5 @@ -38829,7 +39045,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6006 + - uid: 5999 components: - rot: -1.5707963267948966 rad pos: -12.5,9.5 @@ -38837,7 +39053,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6007 + - uid: 6000 components: - rot: -1.5707963267948966 rad pos: -13.5,9.5 @@ -38845,7 +39061,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6008 + - uid: 6001 components: - rot: -1.5707963267948966 rad pos: -14.5,9.5 @@ -38853,7 +39069,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6009 + - uid: 6002 components: - rot: -1.5707963267948966 rad pos: -15.5,9.5 @@ -38861,7 +39077,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6010 + - uid: 6003 components: - rot: -1.5707963267948966 rad pos: -17.5,9.5 @@ -38869,7 +39085,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6011 + - uid: 6004 components: - rot: -1.5707963267948966 rad pos: -13.5,8.5 @@ -38877,7 +39093,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6012 + - uid: 6005 components: - rot: -1.5707963267948966 rad pos: -14.5,8.5 @@ -38885,7 +39101,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6013 + - uid: 6006 components: - rot: -1.5707963267948966 rad pos: -16.5,8.5 @@ -38893,7 +39109,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6014 + - uid: 6007 components: - rot: -1.5707963267948966 rad pos: -17.5,8.5 @@ -38901,7 +39117,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6015 + - uid: 6008 components: - rot: -1.5707963267948966 rad pos: -18.5,8.5 @@ -38909,7 +39125,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6016 + - uid: 6009 components: - rot: 3.141592653589793 rad pos: -19.5,9.5 @@ -38917,7 +39133,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6017 + - uid: 6010 components: - rot: 3.141592653589793 rad pos: -19.5,10.5 @@ -38925,7 +39141,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6018 + - uid: 6011 components: - rot: 3.141592653589793 rad pos: -19.5,11.5 @@ -38933,7 +39149,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6019 + - uid: 6012 components: - rot: 3.141592653589793 rad pos: -18.5,10.5 @@ -38941,63 +39157,63 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6020 + - uid: 6013 components: - pos: -18.5,13.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6021 + - uid: 6014 components: - pos: -18.5,14.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6022 + - uid: 6015 components: - pos: -18.5,15.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6023 + - uid: 6016 components: - pos: -18.5,16.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6024 + - uid: 6017 components: - pos: -19.5,17.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6025 + - uid: 6018 components: - pos: -19.5,16.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6026 + - uid: 6019 components: - pos: -19.5,15.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6027 + - uid: 6020 components: - pos: -19.5,12.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6028 + - uid: 6021 components: - rot: -1.5707963267948966 rad pos: -17.5,12.5 @@ -39005,7 +39221,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6029 + - uid: 6022 components: - rot: -1.5707963267948966 rad pos: -16.5,12.5 @@ -39013,7 +39229,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6030 + - uid: 6023 components: - rot: -1.5707963267948966 rad pos: -18.5,13.5 @@ -39021,7 +39237,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6031 + - uid: 6024 components: - rot: -1.5707963267948966 rad pos: -17.5,13.5 @@ -39029,7 +39245,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6032 + - uid: 6025 components: - rot: -1.5707963267948966 rad pos: -16.5,13.5 @@ -39037,7 +39253,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6033 + - uid: 6026 components: - rot: -1.5707963267948966 rad pos: -19.5,12.5 @@ -39045,7 +39261,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6034 + - uid: 6027 components: - rot: -1.5707963267948966 rad pos: -20.5,12.5 @@ -39053,7 +39269,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6035 + - uid: 6028 components: - rot: -1.5707963267948966 rad pos: -21.5,12.5 @@ -39061,7 +39277,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6036 + - uid: 6029 components: - rot: -1.5707963267948966 rad pos: -20.5,13.5 @@ -39069,7 +39285,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6037 + - uid: 6030 components: - rot: 3.141592653589793 rad pos: -22.5,13.5 @@ -39077,7 +39293,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6038 + - uid: 6031 components: - rot: 3.141592653589793 rad pos: -22.5,14.5 @@ -39085,7 +39301,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6039 + - uid: 6032 components: - rot: 3.141592653589793 rad pos: -22.5,15.5 @@ -39093,7 +39309,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6040 + - uid: 6033 components: - rot: 3.141592653589793 rad pos: -21.5,15.5 @@ -39101,7 +39317,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6041 + - uid: 6034 components: - rot: 1.5707963267948966 rad pos: -22.5,14.5 @@ -39109,7 +39325,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6042 + - uid: 6035 components: - rot: 1.5707963267948966 rad pos: -11.5,13.5 @@ -39117,14 +39333,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6043 + - uid: 6036 components: - pos: -12.5,12.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6044 + - uid: 6037 components: - rot: 3.141592653589793 rad pos: 1.5,12.5 @@ -39132,7 +39348,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6045 + - uid: 6038 components: - rot: 1.5707963267948966 rad pos: 1.5,12.5 @@ -39140,7 +39356,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6046 + - uid: 6039 components: - rot: 1.5707963267948966 rad pos: 3.5,6.5 @@ -39148,7 +39364,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6047 + - uid: 6040 components: - rot: 1.5707963267948966 rad pos: 2.5,5.5 @@ -39156,14 +39372,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6048 + - uid: 6041 components: - pos: 4.5,5.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6049 + - uid: 6042 components: - rot: 1.5707963267948966 rad pos: 4.5,-0.5 @@ -39171,7 +39387,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6050 + - uid: 6043 components: - rot: 3.141592653589793 rad pos: 6.5,3.5 @@ -39179,7 +39395,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6051 + - uid: 6044 components: - rot: 3.141592653589793 rad pos: 7.5,3.5 @@ -39187,7 +39403,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6052 + - uid: 6045 components: - rot: -1.5707963267948966 rad pos: 2.5,-2.5 @@ -39195,7 +39411,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6053 + - uid: 6046 components: - rot: -1.5707963267948966 rad pos: 1.5,-2.5 @@ -39203,7 +39419,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6054 + - uid: 6047 components: - rot: -1.5707963267948966 rad pos: 3.5,-4.5 @@ -39211,7 +39427,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6055 + - uid: 6048 components: - rot: -1.5707963267948966 rad pos: 2.5,-4.5 @@ -39219,7 +39435,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6056 + - uid: 6049 components: - rot: 1.5707963267948966 rad pos: 13.5,-18.5 @@ -39227,7 +39443,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6057 + - uid: 6050 components: - rot: -1.5707963267948966 rad pos: 0.5,-4.5 @@ -39235,7 +39451,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6058 + - uid: 6051 components: - rot: 1.5707963267948966 rad pos: -11.5,-2.5 @@ -39243,7 +39459,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6059 + - uid: 6052 components: - rot: 1.5707963267948966 rad pos: -10.5,-2.5 @@ -39251,7 +39467,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6060 + - uid: 6053 components: - rot: 1.5707963267948966 rad pos: -9.5,-2.5 @@ -39259,7 +39475,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6061 + - uid: 6054 components: - rot: 1.5707963267948966 rad pos: -7.5,-2.5 @@ -39267,7 +39483,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6062 + - uid: 6055 components: - rot: 1.5707963267948966 rad pos: -10.5,-4.5 @@ -39275,7 +39491,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6063 + - uid: 6056 components: - rot: 1.5707963267948966 rad pos: -8.5,-4.5 @@ -39283,7 +39499,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6064 + - uid: 6057 components: - rot: 1.5707963267948966 rad pos: -7.5,-4.5 @@ -39291,7 +39507,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6065 + - uid: 6058 components: - rot: 1.5707963267948966 rad pos: -6.5,-4.5 @@ -39299,7 +39515,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6066 + - uid: 6059 components: - rot: 1.5707963267948966 rad pos: -10.5,9.5 @@ -39307,7 +39523,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6067 + - uid: 6060 components: - rot: 1.5707963267948966 rad pos: -9.5,9.5 @@ -39315,7 +39531,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6068 + - uid: 6061 components: - rot: 1.5707963267948966 rad pos: -8.5,9.5 @@ -39323,7 +39539,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6069 + - uid: 6062 components: - rot: 1.5707963267948966 rad pos: -11.5,8.5 @@ -39331,7 +39547,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6070 + - uid: 6063 components: - rot: 1.5707963267948966 rad pos: -10.5,8.5 @@ -39339,7 +39555,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6071 + - uid: 6064 components: - rot: 1.5707963267948966 rad pos: -9.5,8.5 @@ -39347,7 +39563,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6072 + - uid: 6065 components: - rot: 1.5707963267948966 rad pos: -8.5,8.5 @@ -39355,7 +39571,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6073 + - uid: 6066 components: - rot: 3.141592653589793 rad pos: -2.5,1.5 @@ -39363,7 +39579,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6074 + - uid: 6067 components: - rot: 1.5707963267948966 rad pos: -3.5,0.5 @@ -39371,7 +39587,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6075 + - uid: 6068 components: - rot: 1.5707963267948966 rad pos: -5.5,0.5 @@ -39379,63 +39595,63 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6076 + - uid: 6069 components: - pos: -4.5,-0.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6077 + - uid: 6070 components: - pos: -4.5,-1.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6078 + - uid: 6071 components: - pos: -1.5,-3.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6079 + - uid: 6072 components: - pos: -1.5,-2.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6080 + - uid: 6073 components: - pos: -1.5,-1.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6081 + - uid: 6074 components: - pos: -1.5,-0.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6082 + - uid: 6075 components: - pos: -1.5,0.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6083 + - uid: 6076 components: - pos: -1.5,1.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6084 + - uid: 6077 components: - rot: -1.5707963267948966 rad pos: -0.5,-4.5 @@ -39443,7 +39659,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6085 + - uid: 6078 components: - rot: -1.5707963267948966 rad pos: -2.5,-4.5 @@ -39451,7 +39667,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6086 + - uid: 6079 components: - rot: -1.5707963267948966 rad pos: -4.5,-4.5 @@ -39459,7 +39675,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6087 + - uid: 6080 components: - rot: 3.141592653589793 rad pos: -0.5,-5.5 @@ -39467,7 +39683,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6088 + - uid: 6081 components: - rot: -1.5707963267948966 rad pos: -1.5,-2.5 @@ -39475,7 +39691,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6089 + - uid: 6082 components: - rot: -1.5707963267948966 rad pos: -2.5,-2.5 @@ -39483,7 +39699,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6090 + - uid: 6083 components: - rot: -1.5707963267948966 rad pos: -3.5,-2.5 @@ -39491,7 +39707,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6091 + - uid: 6084 components: - rot: 3.141592653589793 rad pos: -0.5,-3.5 @@ -39499,7 +39715,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6092 + - uid: 6085 components: - rot: 3.141592653589793 rad pos: -0.5,-4.5 @@ -39507,63 +39723,63 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6093 + - uid: 6086 components: - pos: -6.5,-3.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6094 + - uid: 6087 components: - pos: -6.5,-4.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6095 + - uid: 6088 components: - pos: -6.5,-5.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6096 + - uid: 6089 components: - pos: -6.5,-6.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6097 + - uid: 6090 components: - pos: -6.5,-7.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6098 + - uid: 6091 components: - pos: -5.5,-5.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6099 + - uid: 6092 components: - pos: -5.5,-6.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6100 + - uid: 6093 components: - pos: -5.5,-7.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6101 + - uid: 6094 components: - rot: 3.141592653589793 rad pos: -7.5,-25.5 @@ -39571,7 +39787,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6102 + - uid: 6095 components: - rot: 3.141592653589793 rad pos: -16.5,8.5 @@ -39579,7 +39795,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6103 + - uid: 6096 components: - rot: 3.141592653589793 rad pos: -16.5,6.5 @@ -39587,7 +39803,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6104 + - uid: 6097 components: - rot: 3.141592653589793 rad pos: -15.5,6.5 @@ -39595,7 +39811,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6105 + - uid: 6098 components: - rot: 3.141592653589793 rad pos: -15.5,5.5 @@ -39603,7 +39819,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6106 + - uid: 6099 components: - rot: 3.141592653589793 rad pos: -6.5,-23.5 @@ -39611,7 +39827,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6107 + - uid: 6100 components: - rot: -1.5707963267948966 rad pos: 15.5,29.5 @@ -39619,7 +39835,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6108 + - uid: 6101 components: - rot: -1.5707963267948966 rad pos: -12.5,-12.5 @@ -39627,7 +39843,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6109 + - uid: 6102 components: - rot: -1.5707963267948966 rad pos: -13.5,-12.5 @@ -39635,7 +39851,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6110 + - uid: 6103 components: - rot: -1.5707963267948966 rad pos: -14.5,-12.5 @@ -39643,7 +39859,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6111 + - uid: 6104 components: - rot: -1.5707963267948966 rad pos: -13.5,-11.5 @@ -39651,7 +39867,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6112 + - uid: 6105 components: - rot: -1.5707963267948966 rad pos: -14.5,-11.5 @@ -39659,28 +39875,28 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6113 + - uid: 6106 components: - pos: 3.5,-11.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6114 + - uid: 6107 components: - pos: 4.5,-12.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6115 + - uid: 6108 components: - pos: 4.5,-13.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6116 + - uid: 6109 components: - rot: 3.141592653589793 rad pos: 3.5,-13.5 @@ -39688,7 +39904,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6117 + - uid: 6110 components: - rot: 3.141592653589793 rad pos: 3.5,-14.5 @@ -39696,49 +39912,49 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6118 + - uid: 6111 components: - pos: 4.5,-16.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6119 + - uid: 6112 components: - pos: 5.5,-15.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6120 + - uid: 6113 components: - pos: 5.5,-16.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6121 + - uid: 6114 components: - pos: 5.5,-17.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6122 + - uid: 6115 components: - pos: 4.5,-17.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6123 + - uid: 6116 components: - pos: 4.5,-18.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6124 + - uid: 6117 components: - rot: 3.141592653589793 rad pos: 5.5,-19.5 @@ -39746,7 +39962,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6125 + - uid: 6118 components: - rot: 1.5707963267948966 rad pos: 3.5,-19.5 @@ -39754,7 +39970,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6126 + - uid: 6119 components: - rot: 1.5707963267948966 rad pos: 2.5,-19.5 @@ -39762,7 +39978,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6127 + - uid: 6120 components: - rot: 1.5707963267948966 rad pos: 1.5,-19.5 @@ -39770,7 +39986,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6128 + - uid: 6121 components: - rot: 1.5707963267948966 rad pos: 4.5,-18.5 @@ -39778,7 +39994,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6129 + - uid: 6122 components: - rot: 1.5707963267948966 rad pos: 3.5,-18.5 @@ -39786,7 +40002,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6130 + - uid: 6123 components: - rot: 1.5707963267948966 rad pos: 2.5,-18.5 @@ -39794,7 +40010,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6131 + - uid: 6124 components: - rot: 1.5707963267948966 rad pos: 0.5,-18.5 @@ -39802,7 +40018,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6132 + - uid: 6125 components: - rot: 1.5707963267948966 rad pos: -0.5,-18.5 @@ -39810,7 +40026,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6133 + - uid: 6126 components: - rot: 1.5707963267948966 rad pos: -1.5,-18.5 @@ -39818,7 +40034,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6134 + - uid: 6127 components: - rot: 1.5707963267948966 rad pos: -2.5,-18.5 @@ -39826,7 +40042,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6135 + - uid: 6128 components: - rot: 1.5707963267948966 rad pos: -3.5,-18.5 @@ -39834,7 +40050,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6136 + - uid: 6129 components: - rot: 1.5707963267948966 rad pos: -4.5,-18.5 @@ -39842,7 +40058,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6137 + - uid: 6130 components: - rot: 1.5707963267948966 rad pos: -7.5,-18.5 @@ -39850,7 +40066,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6138 + - uid: 6131 components: - rot: 1.5707963267948966 rad pos: -8.5,-18.5 @@ -39858,7 +40074,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6139 + - uid: 6132 components: - rot: 1.5707963267948966 rad pos: -9.5,-18.5 @@ -39866,7 +40082,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6140 + - uid: 6133 components: - rot: 1.5707963267948966 rad pos: 0.5,-19.5 @@ -39874,7 +40090,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6141 + - uid: 6134 components: - rot: 1.5707963267948966 rad pos: -0.5,-19.5 @@ -39882,7 +40098,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6142 + - uid: 6135 components: - rot: 1.5707963267948966 rad pos: -1.5,-19.5 @@ -39890,7 +40106,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6143 + - uid: 6136 components: - rot: 1.5707963267948966 rad pos: -3.5,-19.5 @@ -39898,7 +40114,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6144 + - uid: 6137 components: - rot: 1.5707963267948966 rad pos: -4.5,-19.5 @@ -39906,7 +40122,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6145 + - uid: 6138 components: - rot: 1.5707963267948966 rad pos: -5.5,-19.5 @@ -39914,7 +40130,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6146 + - uid: 6139 components: - rot: 1.5707963267948966 rad pos: -6.5,-19.5 @@ -39922,7 +40138,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6147 + - uid: 6140 components: - rot: 1.5707963267948966 rad pos: -9.5,-19.5 @@ -39930,7 +40146,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6148 + - uid: 6141 components: - rot: 1.5707963267948966 rad pos: -11.5,-19.5 @@ -39938,7 +40154,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6149 + - uid: 6142 components: - rot: 3.141592653589793 rad pos: -12.5,-18.5 @@ -39946,7 +40162,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6150 + - uid: 6143 components: - rot: 3.141592653589793 rad pos: -12.5,-17.5 @@ -39954,7 +40170,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6151 + - uid: 6144 components: - rot: 3.141592653589793 rad pos: -11.5,-17.5 @@ -39962,21 +40178,21 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6152 + - uid: 6145 components: - pos: -2.5,-20.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6153 + - uid: 6146 components: - pos: -2.5,-21.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6154 + - uid: 6147 components: - rot: 3.141592653589793 rad pos: 1.5,-19.5 @@ -39984,7 +40200,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6155 + - uid: 6148 components: - rot: 3.141592653589793 rad pos: 1.5,-20.5 @@ -39992,7 +40208,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6156 + - uid: 6149 components: - rot: 3.141592653589793 rad pos: 1.5,-21.5 @@ -40000,7 +40216,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6157 + - uid: 6150 components: - rot: 3.141592653589793 rad pos: 1.5,-23.5 @@ -40008,7 +40224,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6158 + - uid: 6151 components: - rot: 3.141592653589793 rad pos: 1.5,-24.5 @@ -40016,7 +40232,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6159 + - uid: 6152 components: - rot: 3.141592653589793 rad pos: 1.5,-25.5 @@ -40024,7 +40240,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6160 + - uid: 6153 components: - rot: 3.141592653589793 rad pos: -2.5,-23.5 @@ -40032,7 +40248,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6161 + - uid: 6154 components: - rot: 3.141592653589793 rad pos: -2.5,-24.5 @@ -40040,7 +40256,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6162 + - uid: 6155 components: - rot: 3.141592653589793 rad pos: -2.5,-25.5 @@ -40048,42 +40264,42 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6163 + - uid: 6156 components: - pos: -6.5,-19.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6164 + - uid: 6157 components: - pos: -6.5,-20.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6165 + - uid: 6158 components: - pos: -6.5,-22.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6166 + - uid: 6159 components: - pos: -7.5,-20.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6167 + - uid: 6160 components: - pos: -7.5,-21.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6168 + - uid: 6161 components: - rot: 1.5707963267948966 rad pos: 5.5,-11.5 @@ -40091,7 +40307,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6169 + - uid: 6162 components: - rot: 3.141592653589793 rad pos: -8.5,-24.5 @@ -40099,7 +40315,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6170 + - uid: 6163 components: - rot: 3.141592653589793 rad pos: -8.5,-25.5 @@ -40107,7 +40323,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6171 + - uid: 6164 components: - rot: 1.5707963267948966 rad pos: 4.5,-12.5 @@ -40115,7 +40331,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6172 + - uid: 6165 components: - rot: 1.5707963267948966 rad pos: 5.5,-12.5 @@ -40123,7 +40339,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6173 + - uid: 6166 components: - rot: 1.5707963267948966 rad pos: 6.5,-12.5 @@ -40131,7 +40347,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6174 + - uid: 6167 components: - rot: 1.5707963267948966 rad pos: 7.5,-12.5 @@ -40139,7 +40355,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6175 + - uid: 6168 components: - rot: 1.5707963267948966 rad pos: 9.5,-12.5 @@ -40147,7 +40363,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6176 + - uid: 6169 components: - rot: 1.5707963267948966 rad pos: 6.5,-11.5 @@ -40155,7 +40371,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6177 + - uid: 6170 components: - rot: 1.5707963267948966 rad pos: 8.5,-11.5 @@ -40163,7 +40379,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6178 + - uid: 6171 components: - rot: 1.5707963267948966 rad pos: 9.5,-11.5 @@ -40171,7 +40387,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6179 + - uid: 6172 components: - rot: -1.5707963267948966 rad pos: 10.5,-11.5 @@ -40179,7 +40395,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6180 + - uid: 6173 components: - rot: 3.141592653589793 rad pos: 11.5,-12.5 @@ -40187,7 +40403,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6181 + - uid: 6174 components: - rot: 3.141592653589793 rad pos: -8.5,-26.5 @@ -40195,7 +40411,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6182 + - uid: 6175 components: - rot: 3.141592653589793 rad pos: 11.5,-15.5 @@ -40203,7 +40419,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6183 + - uid: 6176 components: - rot: 3.141592653589793 rad pos: 10.5,-13.5 @@ -40211,7 +40427,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6184 + - uid: 6177 components: - rot: 3.141592653589793 rad pos: 10.5,-14.5 @@ -40219,7 +40435,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6185 + - uid: 6178 components: - rot: 3.141592653589793 rad pos: -8.5,-27.5 @@ -40227,7 +40443,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6186 + - uid: 6179 components: - rot: 3.141592653589793 rad pos: 11.5,-16.5 @@ -40235,7 +40451,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6187 + - uid: 6180 components: - rot: 1.5707963267948966 rad pos: 11.5,-19.5 @@ -40243,7 +40459,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6188 + - uid: 6181 components: - rot: 1.5707963267948966 rad pos: 13.5,-19.5 @@ -40251,7 +40467,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6189 + - uid: 6182 components: - rot: 1.5707963267948966 rad pos: 14.5,-19.5 @@ -40259,7 +40475,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6190 + - uid: 6183 components: - rot: 1.5707963267948966 rad pos: 15.5,-19.5 @@ -40267,7 +40483,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6191 + - uid: 6184 components: - rot: 1.5707963267948966 rad pos: 16.5,-19.5 @@ -40275,7 +40491,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6192 + - uid: 6185 components: - rot: 1.5707963267948966 rad pos: 17.5,-19.5 @@ -40283,7 +40499,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6193 + - uid: 6186 components: - rot: 3.141592653589793 rad pos: -7.5,-26.5 @@ -40291,7 +40507,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6194 + - uid: 6187 components: - rot: 1.5707963267948966 rad pos: 12.5,-18.5 @@ -40299,7 +40515,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6195 + - uid: 6188 components: - rot: 1.5707963267948966 rad pos: 15.5,-18.5 @@ -40307,7 +40523,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6196 + - uid: 6189 components: - rot: 1.5707963267948966 rad pos: 16.5,-18.5 @@ -40315,7 +40531,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6197 + - uid: 6190 components: - rot: 1.5707963267948966 rad pos: 17.5,-18.5 @@ -40323,7 +40539,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6198 + - uid: 6191 components: - rot: 3.141592653589793 rad pos: -7.5,-27.5 @@ -40331,7 +40547,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6199 + - uid: 6192 components: - rot: 1.5707963267948966 rad pos: 11.5,-16.5 @@ -40339,7 +40555,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6200 + - uid: 6193 components: - rot: 1.5707963267948966 rad pos: 12.5,-16.5 @@ -40347,7 +40563,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6201 + - uid: 6194 components: - rot: 1.5707963267948966 rad pos: 14.5,-16.5 @@ -40355,7 +40571,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6202 + - uid: 6195 components: - rot: 1.5707963267948966 rad pos: 15.5,-16.5 @@ -40363,7 +40579,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6203 + - uid: 6196 components: - rot: 1.5707963267948966 rad pos: 16.5,-16.5 @@ -40371,7 +40587,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6204 + - uid: 6197 components: - rot: 1.5707963267948966 rad pos: 17.5,-16.5 @@ -40379,7 +40595,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6205 + - uid: 6198 components: - rot: 1.5707963267948966 rad pos: 12.5,-17.5 @@ -40387,7 +40603,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6206 + - uid: 6199 components: - rot: 1.5707963267948966 rad pos: 13.5,-17.5 @@ -40395,21 +40611,21 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6207 + - uid: 6200 components: - pos: 14.5,-19.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6208 + - uid: 6201 components: - pos: 14.5,-20.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6209 + - uid: 6202 components: - rot: 1.5707963267948966 rad pos: 14.5,-22.5 @@ -40417,21 +40633,21 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6210 + - uid: 6203 components: - pos: 14.5,-22.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6211 + - uid: 6204 components: - pos: 14.5,-23.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6212 + - uid: 6205 components: - rot: 1.5707963267948966 rad pos: 13.5,-22.5 @@ -40439,28 +40655,28 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6213 + - uid: 6206 components: - pos: 12.5,-21.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6214 + - uid: 6207 components: - pos: 12.5,-20.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6215 + - uid: 6208 components: - pos: 12.5,-23.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6216 + - uid: 6209 components: - rot: 3.141592653589793 rad pos: -7.5,-28.5 @@ -40468,7 +40684,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6217 + - uid: 6210 components: - rot: -1.5707963267948966 rad pos: -8.5,-29.5 @@ -40476,7 +40692,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6218 + - uid: 6211 components: - rot: -1.5707963267948966 rad pos: 5.5,10.5 @@ -40484,7 +40700,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6219 + - uid: 6212 components: - rot: 1.5707963267948966 rad pos: 2.5,8.5 @@ -40492,7 +40708,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6220 + - uid: 6213 components: - rot: 1.5707963267948966 rad pos: 3.5,8.5 @@ -40500,7 +40716,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6221 + - uid: 6214 components: - rot: 1.5707963267948966 rad pos: 3.5,10.5 @@ -40508,7 +40724,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6222 + - uid: 6215 components: - rot: -1.5707963267948966 rad pos: -5.5,12.5 @@ -40516,49 +40732,49 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6223 + - uid: 6216 components: - pos: -6.5,17.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6224 + - uid: 6217 components: - pos: -6.5,15.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6225 + - uid: 6218 components: - pos: -6.5,16.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6226 + - uid: 6219 components: - pos: -7.5,15.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6227 + - uid: 6220 components: - pos: -7.5,16.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6228 + - uid: 6221 components: - pos: -7.5,17.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6229 + - uid: 6222 components: - rot: -1.5707963267948966 rad pos: -4.5,24.5 @@ -40566,7 +40782,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6230 + - uid: 6223 components: - rot: 1.5707963267948966 rad pos: -3.5,20.5 @@ -40574,7 +40790,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6231 + - uid: 6224 components: - rot: -1.5707963267948966 rad pos: -0.5,20.5 @@ -40582,7 +40798,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6232 + - uid: 6225 components: - rot: -1.5707963267948966 rad pos: -6.5,20.5 @@ -40590,7 +40806,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6233 + - uid: 6226 components: - rot: 3.141592653589793 rad pos: -2.5,25.5 @@ -40598,7 +40814,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6234 + - uid: 6227 components: - rot: -1.5707963267948966 rad pos: -5.5,32.5 @@ -40606,7 +40822,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6235 + - uid: 6228 components: - rot: -1.5707963267948966 rad pos: -6.5,32.5 @@ -40614,7 +40830,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6236 + - uid: 6229 components: - rot: 1.5707963267948966 rad pos: -0.5,19.5 @@ -40622,7 +40838,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6237 + - uid: 6230 components: - rot: 1.5707963267948966 rad pos: 0.5,19.5 @@ -40630,14 +40846,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6238 + - uid: 6231 components: - pos: -7.5,14.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6239 + - uid: 6232 components: - rot: -1.5707963267948966 rad pos: -3.5,27.5 @@ -40645,14 +40861,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6240 + - uid: 6233 components: - pos: -5.5,20.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6241 + - uid: 6234 components: - rot: -1.5707963267948966 rad pos: -7.5,31.5 @@ -40660,7 +40876,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6242 + - uid: 6235 components: - rot: 1.5707963267948966 rad pos: 1.5,19.5 @@ -40668,7 +40884,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6243 + - uid: 6236 components: - rot: 3.141592653589793 rad pos: -8.5,-18.5 @@ -40676,7 +40892,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6244 + - uid: 6237 components: - rot: -1.5707963267948966 rad pos: -3.5,24.5 @@ -40684,7 +40900,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6245 + - uid: 6238 components: - rot: 3.141592653589793 rad pos: -18.5,-8.5 @@ -40692,7 +40908,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6246 + - uid: 6239 components: - rot: -1.5707963267948966 rad pos: 21.5,-19.5 @@ -40700,7 +40916,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6247 + - uid: 6240 components: - rot: 1.5707963267948966 rad pos: 22.5,-20.5 @@ -40708,7 +40924,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6248 + - uid: 6241 components: - rot: 1.5707963267948966 rad pos: 21.5,-20.5 @@ -40716,7 +40932,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6249 + - uid: 6242 components: - rot: 1.5707963267948966 rad pos: 20.5,-20.5 @@ -40724,7 +40940,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6250 + - uid: 6243 components: - rot: -1.5707963267948966 rad pos: 2.5,20.5 @@ -40732,7 +40948,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6251 + - uid: 6244 components: - rot: 1.5707963267948966 rad pos: 1.5,20.5 @@ -40740,7 +40956,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6252 + - uid: 6245 components: - rot: 1.5707963267948966 rad pos: 0.5,20.5 @@ -40748,7 +40964,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6253 + - uid: 6246 components: - rot: 1.5707963267948966 rad pos: -3.5,20.5 @@ -40756,7 +40972,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6254 + - uid: 6247 components: - rot: -1.5707963267948966 rad pos: -7.5,23.5 @@ -40764,14 +40980,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6255 + - uid: 6248 components: - pos: -6.5,13.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6256 + - uid: 6249 components: - rot: 3.141592653589793 rad pos: -5.5,24.5 @@ -40779,7 +40995,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6257 + - uid: 6250 components: - rot: 3.141592653589793 rad pos: -5.5,25.5 @@ -40787,7 +41003,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6258 + - uid: 6251 components: - rot: 3.141592653589793 rad pos: -5.5,26.5 @@ -40795,28 +41011,28 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6259 + - uid: 6252 components: - pos: -1.5,26.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6260 + - uid: 6253 components: - pos: -1.5,29.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6261 + - uid: 6254 components: - pos: -1.5,30.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6262 + - uid: 6255 components: - rot: -1.5707963267948966 rad pos: -3.5,32.5 @@ -40824,7 +41040,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6263 + - uid: 6256 components: - rot: -1.5707963267948966 rad pos: -4.5,32.5 @@ -40832,14 +41048,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6264 + - uid: 6257 components: - pos: -6.5,14.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6265 + - uid: 6258 components: - rot: -1.5707963267948966 rad pos: -8.5,23.5 @@ -40847,14 +41063,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6266 + - uid: 6259 components: - pos: -20.5,-12.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6267 + - uid: 6260 components: - rot: -1.5707963267948966 rad pos: 10.5,5.5 @@ -40862,7 +41078,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6268 + - uid: 6261 components: - rot: 1.5707963267948966 rad pos: -18.5,-11.5 @@ -40870,14 +41086,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6269 + - uid: 6262 components: - pos: -2.5,28.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6270 + - uid: 6263 components: - rot: 1.5707963267948966 rad pos: 9.5,-15.5 @@ -40885,7 +41101,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6271 + - uid: 6264 components: - rot: 1.5707963267948966 rad pos: 8.5,-15.5 @@ -40893,7 +41109,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6272 + - uid: 6265 components: - rot: 1.5707963267948966 rad pos: 10.5,-14.5 @@ -40901,7 +41117,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6273 + - uid: 6266 components: - rot: 1.5707963267948966 rad pos: 9.5,-14.5 @@ -40909,7 +41125,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6274 + - uid: 6267 components: - rot: 3.141592653589793 rad pos: 6.5,9.5 @@ -40917,7 +41133,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6275 + - uid: 6268 components: - rot: 3.141592653589793 rad pos: -6.5,43.5 @@ -40925,7 +41141,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6276 + - uid: 6269 components: - rot: 3.141592653589793 rad pos: -5.5,21.5 @@ -40933,21 +41149,21 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6277 + - uid: 6270 components: - pos: -20.5,-13.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6278 + - uid: 6271 components: - pos: 6.5,4.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6279 + - uid: 6272 components: - rot: 1.5707963267948966 rad pos: -2.5,27.5 @@ -40955,14 +41171,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6280 + - uid: 6273 components: - pos: 7.5,5.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6281 + - uid: 6274 components: - rot: 1.5707963267948966 rad pos: 9.5,4.5 @@ -40970,7 +41186,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6282 + - uid: 6275 components: - rot: 1.5707963267948966 rad pos: 8.5,4.5 @@ -40978,7 +41194,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6283 + - uid: 6276 components: - rot: -1.5707963267948966 rad pos: 11.5,5.5 @@ -40986,7 +41202,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6284 + - uid: 6277 components: - rot: 3.141592653589793 rad pos: 2.5,7.5 @@ -40994,7 +41210,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6285 + - uid: 6278 components: - rot: 1.5707963267948966 rad pos: 14.5,16.5 @@ -41002,7 +41218,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6286 + - uid: 6279 components: - rot: 1.5707963267948966 rad pos: 13.5,16.5 @@ -41010,7 +41226,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6287 + - uid: 6280 components: - rot: 1.5707963267948966 rad pos: 12.5,16.5 @@ -41018,7 +41234,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6288 + - uid: 6281 components: - rot: 1.5707963267948966 rad pos: 11.5,16.5 @@ -41026,7 +41242,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6289 + - uid: 6282 components: - rot: 1.5707963267948966 rad pos: 16.5,-13.5 @@ -41034,7 +41250,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6290 + - uid: 6283 components: - rot: 1.5707963267948966 rad pos: 15.5,-13.5 @@ -41042,7 +41258,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6291 + - uid: 6284 components: - rot: 1.5707963267948966 rad pos: 9.5,5.5 @@ -41050,7 +41266,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6292 + - uid: 6285 components: - rot: 1.5707963267948966 rad pos: 8.5,5.5 @@ -41058,7 +41274,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6293 + - uid: 6286 components: - rot: 3.141592653589793 rad pos: -23.5,-25.5 @@ -41066,7 +41282,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6294 + - uid: 6287 components: - rot: 1.5707963267948966 rad pos: -4.5,19.5 @@ -41074,7 +41290,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6295 + - uid: 6288 components: - rot: 1.5707963267948966 rad pos: 7.5,5.5 @@ -41082,7 +41298,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6296 + - uid: 6289 components: - rot: -1.5707963267948966 rad pos: 1.5,-12.5 @@ -41090,7 +41306,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6297 + - uid: 6290 components: - rot: -1.5707963267948966 rad pos: 2.5,-12.5 @@ -41098,7 +41314,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6298 + - uid: 6291 components: - rot: -1.5707963267948966 rad pos: 2.5,-11.5 @@ -41106,7 +41322,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6299 + - uid: 6292 components: - rot: -1.5707963267948966 rad pos: -6.5,23.5 @@ -41114,7 +41330,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6300 + - uid: 6293 components: - rot: 1.5707963267948966 rad pos: 13.5,-24.5 @@ -41122,14 +41338,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6301 + - uid: 6294 components: - pos: 5.5,-20.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6302 + - uid: 6295 components: - rot: -1.5707963267948966 rad pos: -4.5,27.5 @@ -41137,14 +41353,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6303 + - uid: 6296 components: - pos: -1.5,-5.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6304 + - uid: 6297 components: - rot: 1.5707963267948966 rad pos: 0.5,25.5 @@ -41152,7 +41368,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6305 + - uid: 6298 components: - rot: -1.5707963267948966 rad pos: -4.5,31.5 @@ -41160,77 +41376,77 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6306 + - uid: 6299 components: - pos: -10.5,25.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6307 + - uid: 6300 components: - pos: -1.5,28.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6308 + - uid: 6301 components: - pos: -9.5,25.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6309 + - uid: 6302 components: - pos: -18.5,18.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6310 + - uid: 6303 components: - pos: -18.5,19.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6311 + - uid: 6304 components: - pos: -18.5,20.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6312 + - uid: 6305 components: - pos: -18.5,21.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6313 + - uid: 6306 components: - pos: -19.5,19.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6314 + - uid: 6307 components: - pos: -19.5,20.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6315 + - uid: 6308 components: - pos: -19.5,21.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6316 + - uid: 6309 components: - rot: -1.5707963267948966 rad pos: 10.5,4.5 @@ -41238,7 +41454,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6317 + - uid: 6310 components: - rot: 3.141592653589793 rad pos: -20.5,-8.5 @@ -41246,7 +41462,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6318 + - uid: 6311 components: - rot: -1.5707963267948966 rad pos: -5.5,31.5 @@ -41254,7 +41470,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6319 + - uid: 6312 components: - rot: -1.5707963267948966 rad pos: -9.5,32.5 @@ -41262,14 +41478,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6320 + - uid: 6313 components: - pos: -6.5,34.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6321 + - uid: 6314 components: - rot: -1.5707963267948966 rad pos: -7.5,32.5 @@ -41277,7 +41493,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6322 + - uid: 6315 components: - rot: -1.5707963267948966 rad pos: 13.5,-13.5 @@ -41285,7 +41501,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6323 + - uid: 6316 components: - rot: 3.141592653589793 rad pos: 11.5,11.5 @@ -41293,7 +41509,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6324 + - uid: 6317 components: - rot: 3.141592653589793 rad pos: 10.5,12.5 @@ -41301,7 +41517,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6325 + - uid: 6318 components: - rot: 3.141592653589793 rad pos: 10.5,11.5 @@ -41309,7 +41525,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6326 + - uid: 6319 components: - rot: 3.141592653589793 rad pos: 10.5,10.5 @@ -41317,49 +41533,49 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6327 + - uid: 6320 components: - pos: 4.5,-20.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6328 + - uid: 6321 components: - pos: 4.5,-23.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6329 + - uid: 6322 components: - pos: 4.5,-24.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6330 + - uid: 6323 components: - pos: 5.5,-22.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6331 + - uid: 6324 components: - pos: 5.5,-23.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6332 + - uid: 6325 components: - pos: 5.5,-24.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6333 + - uid: 6326 components: - rot: 3.141592653589793 rad pos: -6.5,35.5 @@ -41367,7 +41583,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6334 + - uid: 6327 components: - rot: 3.141592653589793 rad pos: -8.5,41.5 @@ -41375,7 +41591,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6335 + - uid: 6328 components: - rot: -1.5707963267948966 rad pos: 12.5,-13.5 @@ -41383,7 +41599,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6336 + - uid: 6329 components: - rot: -1.5707963267948966 rad pos: 4.5,10.5 @@ -41391,7 +41607,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6337 + - uid: 6330 components: - rot: 1.5707963267948966 rad pos: 8.5,-14.5 @@ -41399,7 +41615,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6338 + - uid: 6331 components: - rot: 1.5707963267948966 rad pos: 19.5,-18.5 @@ -41407,7 +41623,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6339 + - uid: 6332 components: - rot: -1.5707963267948966 rad pos: 18.5,-18.5 @@ -41415,7 +41631,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6340 + - uid: 6333 components: - rot: -1.5707963267948966 rad pos: 8.5,-12.5 @@ -41423,7 +41639,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6341 + - uid: 6334 components: - rot: -1.5707963267948966 rad pos: 7.5,-11.5 @@ -41431,21 +41647,21 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6342 + - uid: 6335 components: - pos: -12.5,3.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6343 + - uid: 6336 components: - pos: -11.5,2.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6344 + - uid: 6337 components: - rot: -1.5707963267948966 rad pos: -20.5,8.5 @@ -41453,7 +41669,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6345 + - uid: 6338 components: - rot: -1.5707963267948966 rad pos: -21.5,8.5 @@ -41461,35 +41677,35 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6346 + - uid: 6339 components: - pos: -22.5,5.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6347 + - uid: 6340 components: - pos: -22.5,6.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6348 + - uid: 6341 components: - pos: -22.5,7.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6349 + - uid: 6342 components: - pos: -21.5,6.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6350 + - uid: 6343 components: - rot: -1.5707963267948966 rad pos: -22.5,7.5 @@ -41497,7 +41713,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6351 + - uid: 6344 components: - rot: -1.5707963267948966 rad pos: -25.5,-26.5 @@ -41505,7 +41721,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6352 + - uid: 6345 components: - rot: -1.5707963267948966 rad pos: -17.5,-7.5 @@ -41513,7 +41729,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6353 + - uid: 6346 components: - rot: 3.141592653589793 rad pos: -19.5,-7.5 @@ -41521,7 +41737,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6354 + - uid: 6347 components: - rot: -1.5707963267948966 rad pos: -19.5,-7.5 @@ -41529,7 +41745,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6355 + - uid: 6348 components: - rot: 3.141592653589793 rad pos: -17.5,-7.5 @@ -41537,7 +41753,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6356 + - uid: 6349 components: - rot: 1.5707963267948966 rad pos: -18.5,-6.5 @@ -41545,7 +41761,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6357 + - uid: 6350 components: - rot: 1.5707963267948966 rad pos: -16.5,-6.5 @@ -41553,7 +41769,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6358 + - uid: 6351 components: - rot: 3.141592653589793 rad pos: -24.5,0.5 @@ -41561,7 +41777,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6359 + - uid: 6352 components: - rot: 3.141592653589793 rad pos: -23.5,-0.5 @@ -41569,7 +41785,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6360 + - uid: 6353 components: - rot: 3.141592653589793 rad pos: -24.5,-7.5 @@ -41577,7 +41793,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6361 + - uid: 6354 components: - rot: 3.141592653589793 rad pos: -23.5,0.5 @@ -41585,7 +41801,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6362 + - uid: 6355 components: - rot: 3.141592653589793 rad pos: -23.5,-8.5 @@ -41593,7 +41809,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6363 + - uid: 6356 components: - rot: 3.141592653589793 rad pos: -24.5,-8.5 @@ -41601,49 +41817,49 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6364 + - uid: 6357 components: - pos: -23.5,-1.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6365 + - uid: 6358 components: - pos: -23.5,-2.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6366 + - uid: 6359 components: - pos: -23.5,-7.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6367 + - uid: 6360 components: - pos: -23.5,-6.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6368 + - uid: 6361 components: - pos: -23.5,-5.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6369 + - uid: 6362 components: - pos: -23.5,-3.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6370 + - uid: 6363 components: - rot: -1.5707963267948966 rad pos: -22.5,-4.5 @@ -41651,7 +41867,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6371 + - uid: 6364 components: - rot: -1.5707963267948966 rad pos: -21.5,-4.5 @@ -41659,7 +41875,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6372 + - uid: 6365 components: - rot: -1.5707963267948966 rad pos: -20.5,-4.5 @@ -41667,7 +41883,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6373 + - uid: 6366 components: - rot: -1.5707963267948966 rad pos: -19.5,-4.5 @@ -41675,7 +41891,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6374 + - uid: 6367 components: - rot: -1.5707963267948966 rad pos: -17.5,-4.5 @@ -41683,7 +41899,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6375 + - uid: 6368 components: - rot: -1.5707963267948966 rad pos: -16.5,-4.5 @@ -41691,7 +41907,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6376 + - uid: 6369 components: - rot: -1.5707963267948966 rad pos: -17.5,-2.5 @@ -41699,7 +41915,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6377 + - uid: 6370 components: - rot: -1.5707963267948966 rad pos: -18.5,-2.5 @@ -41707,7 +41923,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6378 + - uid: 6371 components: - rot: -1.5707963267948966 rad pos: -19.5,-2.5 @@ -41715,7 +41931,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6379 + - uid: 6372 components: - rot: -1.5707963267948966 rad pos: -21.5,-2.5 @@ -41723,7 +41939,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6380 + - uid: 6373 components: - rot: -1.5707963267948966 rad pos: -22.5,-2.5 @@ -41731,7 +41947,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6381 + - uid: 6374 components: - rot: -1.5707963267948966 rad pos: -23.5,-2.5 @@ -41739,49 +41955,49 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6382 + - uid: 6375 components: - pos: -24.5,-6.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6383 + - uid: 6376 components: - pos: -24.5,-5.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6384 + - uid: 6377 components: - pos: -24.5,-4.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6385 + - uid: 6378 components: - pos: -24.5,-3.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6386 + - uid: 6379 components: - pos: -24.5,-1.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6387 + - uid: 6380 components: - pos: -24.5,-0.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6388 + - uid: 6381 components: - rot: -1.5707963267948966 rad pos: -26.5,-26.5 @@ -41789,7 +42005,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6389 + - uid: 6382 components: - rot: 3.141592653589793 rad pos: -5.5,22.5 @@ -41797,7 +42013,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6390 + - uid: 6383 components: - rot: 1.5707963267948966 rad pos: 16.5,17.5 @@ -41805,7 +42021,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6391 + - uid: 6384 components: - rot: 1.5707963267948966 rad pos: 17.5,17.5 @@ -41813,7 +42029,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6392 + - uid: 6385 components: - rot: 1.5707963267948966 rad pos: 18.5,17.5 @@ -41821,7 +42037,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6393 + - uid: 6386 components: - rot: 1.5707963267948966 rad pos: 19.5,17.5 @@ -41829,7 +42045,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6394 + - uid: 6387 components: - rot: 1.5707963267948966 rad pos: 20.5,17.5 @@ -41837,7 +42053,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6395 + - uid: 6388 components: - rot: 1.5707963267948966 rad pos: 21.5,17.5 @@ -41845,7 +42061,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6396 + - uid: 6389 components: - rot: 1.5707963267948966 rad pos: 22.5,17.5 @@ -41853,7 +42069,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6397 + - uid: 6390 components: - rot: 1.5707963267948966 rad pos: 23.5,17.5 @@ -41861,7 +42077,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6398 + - uid: 6391 components: - rot: 1.5707963267948966 rad pos: 25.5,17.5 @@ -41869,7 +42085,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6399 + - uid: 6392 components: - rot: 1.5707963267948966 rad pos: 26.5,17.5 @@ -41877,7 +42093,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6400 + - uid: 6393 components: - rot: 1.5707963267948966 rad pos: 27.5,17.5 @@ -41885,7 +42101,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6401 + - uid: 6394 components: - rot: 1.5707963267948966 rad pos: 28.5,17.5 @@ -41893,7 +42109,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6402 + - uid: 6395 components: - rot: 1.5707963267948966 rad pos: 29.5,17.5 @@ -41901,7 +42117,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6403 + - uid: 6396 components: - rot: -1.5707963267948966 rad pos: 30.5,17.5 @@ -41909,7 +42125,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6404 + - uid: 6397 components: - rot: 3.141592653589793 rad pos: 31.5,16.5 @@ -41917,7 +42133,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6405 + - uid: 6398 components: - rot: 3.141592653589793 rad pos: 31.5,15.5 @@ -41925,7 +42141,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6406 + - uid: 6399 components: - rot: 3.141592653589793 rad pos: 31.5,13.5 @@ -41933,7 +42149,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6407 + - uid: 6400 components: - rot: 3.141592653589793 rad pos: 31.5,12.5 @@ -41941,7 +42157,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6408 + - uid: 6401 components: - rot: 3.141592653589793 rad pos: 31.5,11.5 @@ -41949,7 +42165,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6409 + - uid: 6402 components: - rot: -1.5707963267948966 rad pos: 30.5,10.5 @@ -41957,7 +42173,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6410 + - uid: 6403 components: - rot: -1.5707963267948966 rad pos: 29.5,10.5 @@ -41965,7 +42181,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6411 + - uid: 6404 components: - rot: -1.5707963267948966 rad pos: 28.5,10.5 @@ -41973,7 +42189,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6412 + - uid: 6405 components: - rot: -1.5707963267948966 rad pos: 27.5,10.5 @@ -41981,7 +42197,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6413 + - uid: 6406 components: - rot: -1.5707963267948966 rad pos: 26.5,10.5 @@ -41989,7 +42205,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6414 + - uid: 6407 components: - rot: -1.5707963267948966 rad pos: 25.5,10.5 @@ -41997,7 +42213,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6415 + - uid: 6408 components: - rot: -1.5707963267948966 rad pos: 24.5,10.5 @@ -42005,7 +42221,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6416 + - uid: 6409 components: - rot: -1.5707963267948966 rad pos: 23.5,10.5 @@ -42013,7 +42229,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6417 + - uid: 6410 components: - rot: -1.5707963267948966 rad pos: 22.5,10.5 @@ -42021,7 +42237,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6418 + - uid: 6411 components: - rot: -1.5707963267948966 rad pos: 21.5,10.5 @@ -42029,7 +42245,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6419 + - uid: 6412 components: - rot: -1.5707963267948966 rad pos: 20.5,10.5 @@ -42037,7 +42253,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6420 + - uid: 6413 components: - rot: -1.5707963267948966 rad pos: 19.5,10.5 @@ -42045,7 +42261,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6421 + - uid: 6414 components: - rot: -1.5707963267948966 rad pos: 18.5,10.5 @@ -42053,7 +42269,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6422 + - uid: 6415 components: - rot: 1.5707963267948966 rad pos: -0.5,16.5 @@ -42061,7 +42277,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6423 + - uid: 6416 components: - rot: 1.5707963267948966 rad pos: 1.5,15.5 @@ -42069,35 +42285,35 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6424 + - uid: 6417 components: - pos: -1.5,15.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6425 + - uid: 6418 components: - pos: -1.5,14.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6426 + - uid: 6419 components: - pos: -1.5,13.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6427 + - uid: 6420 components: - pos: 2.5,14.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6428 + - uid: 6421 components: - rot: 3.141592653589793 rad pos: -8.5,35.5 @@ -42105,7 +42321,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6429 + - uid: 6422 components: - rot: 3.141592653589793 rad pos: -6.5,42.5 @@ -42113,7 +42329,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6430 + - uid: 6423 components: - rot: 3.141592653589793 rad pos: -8.5,42.5 @@ -42121,21 +42337,21 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6431 + - uid: 6424 components: - pos: -2.5,26.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6432 + - uid: 6425 components: - pos: -2.5,27.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6433 + - uid: 6426 components: - rot: 3.141592653589793 rad pos: -8.5,43.5 @@ -42143,7 +42359,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6434 + - uid: 6427 components: - rot: 3.141592653589793 rad pos: -8.5,44.5 @@ -42151,7 +42367,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6435 + - uid: 6428 components: - rot: 3.141592653589793 rad pos: -6.5,44.5 @@ -42159,7 +42375,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6436 + - uid: 6429 components: - rot: 3.141592653589793 rad pos: -6.5,41.5 @@ -42167,7 +42383,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6437 + - uid: 6430 components: - rot: 3.141592653589793 rad pos: 0.5,32.5 @@ -42175,7 +42391,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6438 + - uid: 6431 components: - rot: 3.141592653589793 rad pos: 0.5,34.5 @@ -42183,7 +42399,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6439 + - uid: 6432 components: - rot: 3.141592653589793 rad pos: -6.5,40.5 @@ -42191,7 +42407,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6440 + - uid: 6433 components: - rot: 3.141592653589793 rad pos: -6.5,38.5 @@ -42199,7 +42415,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6441 + - uid: 6434 components: - rot: 3.141592653589793 rad pos: -8.5,38.5 @@ -42207,7 +42423,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6442 + - uid: 6435 components: - rot: 3.141592653589793 rad pos: -0.5,34.5 @@ -42215,7 +42431,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6443 + - uid: 6436 components: - rot: 3.141592653589793 rad pos: 0.5,33.5 @@ -42223,7 +42439,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6444 + - uid: 6437 components: - rot: 1.5707963267948966 rad pos: -2.5,31.5 @@ -42231,7 +42447,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6445 + - uid: 6438 components: - rot: 3.141592653589793 rad pos: -0.5,33.5 @@ -42239,14 +42455,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6446 + - uid: 6439 components: - pos: -8.5,34.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6447 + - uid: 6440 components: - rot: 1.5707963267948966 rad pos: -0.5,31.5 @@ -42254,7 +42470,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6448 + - uid: 6441 components: - rot: 1.5707963267948966 rad pos: -1.5,32.5 @@ -42262,7 +42478,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6449 + - uid: 6442 components: - rot: -1.5707963267948966 rad pos: -21.5,-15.5 @@ -42270,7 +42486,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6450 + - uid: 6443 components: - rot: -1.5707963267948966 rad pos: -22.5,-15.5 @@ -42278,7 +42494,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6451 + - uid: 6444 components: - rot: -1.5707963267948966 rad pos: -23.5,-15.5 @@ -42286,7 +42502,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6452 + - uid: 6445 components: - rot: -1.5707963267948966 rad pos: -25.5,-15.5 @@ -42294,7 +42510,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6453 + - uid: 6446 components: - rot: -1.5707963267948966 rad pos: -26.5,-15.5 @@ -42302,7 +42518,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6454 + - uid: 6447 components: - rot: -1.5707963267948966 rad pos: -27.5,-15.5 @@ -42310,7 +42526,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6455 + - uid: 6448 components: - rot: -1.5707963267948966 rad pos: -20.5,-16.5 @@ -42318,7 +42534,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6456 + - uid: 6449 components: - rot: -1.5707963267948966 rad pos: -21.5,-16.5 @@ -42326,7 +42542,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6457 + - uid: 6450 components: - rot: -1.5707963267948966 rad pos: -22.5,-16.5 @@ -42334,7 +42550,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6458 + - uid: 6451 components: - rot: -1.5707963267948966 rad pos: -24.5,-16.5 @@ -42342,7 +42558,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6459 + - uid: 6452 components: - rot: -1.5707963267948966 rad pos: -25.5,-16.5 @@ -42350,7 +42566,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6460 + - uid: 6453 components: - rot: -1.5707963267948966 rad pos: -26.5,-16.5 @@ -42358,7 +42574,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6461 + - uid: 6454 components: - rot: -1.5707963267948966 rad pos: -27.5,-16.5 @@ -42366,7 +42582,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6462 + - uid: 6455 components: - rot: -1.5707963267948966 rad pos: -28.5,-16.5 @@ -42374,7 +42590,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6463 + - uid: 6456 components: - rot: 3.141592653589793 rad pos: -8.5,40.5 @@ -42382,7 +42598,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6464 + - uid: 6457 components: - rot: 3.141592653589793 rad pos: -24.5,-16.5 @@ -42390,7 +42606,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6465 + - uid: 6458 components: - rot: 1.5707963267948966 rad pos: -22.5,-18.5 @@ -42398,7 +42614,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6466 + - uid: 6459 components: - rot: 1.5707963267948966 rad pos: -21.5,-18.5 @@ -42406,7 +42622,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6467 + - uid: 6460 components: - rot: 1.5707963267948966 rad pos: -20.5,-18.5 @@ -42414,7 +42630,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6468 + - uid: 6461 components: - rot: 1.5707963267948966 rad pos: -24.5,-18.5 @@ -42422,7 +42638,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6469 + - uid: 6462 components: - rot: 1.5707963267948966 rad pos: -25.5,-18.5 @@ -42430,7 +42646,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6470 + - uid: 6463 components: - rot: 1.5707963267948966 rad pos: -26.5,-18.5 @@ -42438,7 +42654,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6471 + - uid: 6464 components: - rot: 1.5707963267948966 rad pos: -27.5,-18.5 @@ -42446,7 +42662,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6472 + - uid: 6465 components: - rot: 1.5707963267948966 rad pos: -23.5,-19.5 @@ -42454,7 +42670,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6473 + - uid: 6466 components: - rot: 1.5707963267948966 rad pos: -22.5,-19.5 @@ -42462,7 +42678,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6474 + - uid: 6467 components: - rot: 1.5707963267948966 rad pos: -25.5,-19.5 @@ -42470,7 +42686,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6475 + - uid: 6468 components: - rot: 1.5707963267948966 rad pos: -26.5,-19.5 @@ -42478,7 +42694,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6476 + - uid: 6469 components: - rot: 1.5707963267948966 rad pos: -27.5,-19.5 @@ -42486,7 +42702,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6477 + - uid: 6470 components: - rot: 1.5707963267948966 rad pos: -28.5,-19.5 @@ -42494,63 +42710,63 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6478 + - uid: 6471 components: - pos: -24.5,-20.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6479 + - uid: 6472 components: - pos: -24.5,-21.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6480 + - uid: 6473 components: - pos: -24.5,-22.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6481 + - uid: 6474 components: - pos: -24.5,-23.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6482 + - uid: 6475 components: - pos: -23.5,-19.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6483 + - uid: 6476 components: - pos: -23.5,-20.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6484 + - uid: 6477 components: - pos: -23.5,-21.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6485 + - uid: 6478 components: - pos: -23.5,-22.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6486 + - uid: 6479 components: - rot: -1.5707963267948966 rad pos: -22.5,-23.5 @@ -42558,7 +42774,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6487 + - uid: 6480 components: - rot: -1.5707963267948966 rad pos: -21.5,-23.5 @@ -42566,7 +42782,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6488 + - uid: 6481 components: - rot: -1.5707963267948966 rad pos: -20.5,-23.5 @@ -42574,7 +42790,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6489 + - uid: 6482 components: - rot: 3.141592653589793 rad pos: -24.5,-18.5 @@ -42582,7 +42798,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6490 + - uid: 6483 components: - rot: 3.141592653589793 rad pos: -24.5,-25.5 @@ -42590,7 +42806,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6491 + - uid: 6484 components: - rot: 3.141592653589793 rad pos: -24.5,-27.5 @@ -42598,7 +42814,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6492 + - uid: 6485 components: - rot: -1.5707963267948966 rad pos: -25.5,-27.5 @@ -42606,7 +42822,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6493 + - uid: 6486 components: - rot: -1.5707963267948966 rad pos: -26.5,-27.5 @@ -42614,7 +42830,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6494 + - uid: 6487 components: - rot: -1.5707963267948966 rad pos: -27.5,-27.5 @@ -42622,7 +42838,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6495 + - uid: 6488 components: - rot: -1.5707963267948966 rad pos: -25.5,-24.5 @@ -42630,7 +42846,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6496 + - uid: 6489 components: - rot: -1.5707963267948966 rad pos: -26.5,-24.5 @@ -42638,7 +42854,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6497 + - uid: 6490 components: - rot: -1.5707963267948966 rad pos: -27.5,-24.5 @@ -42646,7 +42862,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6498 + - uid: 6491 components: - rot: -1.5707963267948966 rad pos: -28.5,-24.5 @@ -42654,7 +42870,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6499 + - uid: 6492 components: - rot: -1.5707963267948966 rad pos: -24.5,-23.5 @@ -42662,7 +42878,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6500 + - uid: 6493 components: - rot: -1.5707963267948966 rad pos: -25.5,-23.5 @@ -42670,7 +42886,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6501 + - uid: 6494 components: - rot: -1.5707963267948966 rad pos: -26.5,-23.5 @@ -42678,7 +42894,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6502 + - uid: 6495 components: - rot: -1.5707963267948966 rad pos: -27.5,-23.5 @@ -42686,7 +42902,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6503 + - uid: 6496 components: - rot: -1.5707963267948966 rad pos: -28.5,-23.5 @@ -42694,7 +42910,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6504 + - uid: 6497 components: - rot: -1.5707963267948966 rad pos: -23.5,-24.5 @@ -42702,7 +42918,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6505 + - uid: 6498 components: - rot: -1.5707963267948966 rad pos: -22.5,-24.5 @@ -42710,7 +42926,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6506 + - uid: 6499 components: - rot: -1.5707963267948966 rad pos: -21.5,-24.5 @@ -42718,28 +42934,28 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6507 + - uid: 6500 components: - pos: -17.5,-14.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6508 + - uid: 6501 components: - pos: -17.5,-13.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6509 + - uid: 6502 components: - pos: -7.5,23.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6510 + - uid: 6503 components: - rot: 1.5707963267948966 rad pos: -13.5,31.5 @@ -42747,7 +42963,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6511 + - uid: 6504 components: - rot: 1.5707963267948966 rad pos: 10.5,-6.5 @@ -42755,7 +42971,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6512 + - uid: 6505 components: - rot: 1.5707963267948966 rad pos: 9.5,-6.5 @@ -42763,7 +42979,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6513 + - uid: 6506 components: - rot: 1.5707963267948966 rad pos: 6.5,-6.5 @@ -42771,7 +42987,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6514 + - uid: 6507 components: - rot: 1.5707963267948966 rad pos: 5.5,-6.5 @@ -42779,7 +42995,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6515 + - uid: 6508 components: - rot: 1.5707963267948966 rad pos: 4.5,-6.5 @@ -42787,7 +43003,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6516 + - uid: 6509 components: - rot: 1.5707963267948966 rad pos: 11.5,-6.5 @@ -42795,7 +43011,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6517 + - uid: 6510 components: - rot: 1.5707963267948966 rad pos: 5.5,-4.5 @@ -42803,7 +43019,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6518 + - uid: 6511 components: - rot: 1.5707963267948966 rad pos: 6.5,-4.5 @@ -42811,7 +43027,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6519 + - uid: 6512 components: - rot: 1.5707963267948966 rad pos: 7.5,-4.5 @@ -42819,7 +43035,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6520 + - uid: 6513 components: - rot: 1.5707963267948966 rad pos: 9.5,-4.5 @@ -42827,7 +43043,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6521 + - uid: 6514 components: - rot: 1.5707963267948966 rad pos: 10.5,-4.5 @@ -42835,7 +43051,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6522 + - uid: 6515 components: - rot: 1.5707963267948966 rad pos: 11.5,-4.5 @@ -42843,14 +43059,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6523 + - uid: 6516 components: - pos: -0.5,35.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6524 + - uid: 6517 components: - rot: -1.5707963267948966 rad pos: -11.5,32.5 @@ -42858,7 +43074,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6525 + - uid: 6518 components: - rot: 3.141592653589793 rad pos: -8.5,37.5 @@ -42866,7 +43082,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6526 + - uid: 6519 components: - rot: -1.5707963267948966 rad pos: -12.5,32.5 @@ -42874,7 +43090,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6527 + - uid: 6520 components: - rot: -1.5707963267948966 rad pos: -8.5,31.5 @@ -42882,7 +43098,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6528 + - uid: 6521 components: - rot: -1.5707963267948966 rad pos: -9.5,31.5 @@ -42890,7 +43106,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6529 + - uid: 6522 components: - rot: -1.5707963267948966 rad pos: -10.5,31.5 @@ -42898,7 +43114,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6530 + - uid: 6523 components: - rot: -1.5707963267948966 rad pos: -11.5,31.5 @@ -42906,7 +43122,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6531 + - uid: 6524 components: - rot: -1.5707963267948966 rad pos: -12.5,31.5 @@ -42914,7 +43130,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6532 + - uid: 6525 components: - rot: -1.5707963267948966 rad pos: -13.5,32.5 @@ -42922,7 +43138,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6533 + - uid: 6526 components: - rot: 1.5707963267948966 rad pos: 12.5,-24.5 @@ -42930,32 +43146,32 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6534 + - uid: 6527 components: - pos: -13.5,32.5 parent: 2 type: Transform - - uid: 6535 + - uid: 6528 components: - pos: -13.5,33.5 parent: 2 type: Transform - - uid: 6536 + - uid: 6529 components: - pos: -12.5,32.5 parent: 2 type: Transform - - uid: 6537 + - uid: 6530 components: - pos: -12.5,33.5 parent: 2 type: Transform - - uid: 6538 + - uid: 6531 components: - pos: -12.5,34.5 parent: 2 type: Transform - - uid: 6539 + - uid: 6532 components: - rot: -1.5707963267948966 rad pos: -0.5,25.5 @@ -42963,7 +43179,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6540 + - uid: 6533 components: - rot: 1.5707963267948966 rad pos: 4.5,25.5 @@ -42971,7 +43187,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6541 + - uid: 6534 components: - rot: -1.5707963267948966 rad pos: 4.5,24.5 @@ -42979,7 +43195,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6542 + - uid: 6535 components: - rot: 1.5707963267948966 rad pos: 3.5,25.5 @@ -42987,7 +43203,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6543 + - uid: 6536 components: - rot: -1.5707963267948966 rad pos: 14.5,18.5 @@ -42995,7 +43211,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6544 + - uid: 6537 components: - rot: -1.5707963267948966 rad pos: 15.5,18.5 @@ -43003,7 +43219,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6545 + - uid: 6538 components: - rot: -1.5707963267948966 rad pos: 16.5,18.5 @@ -43011,7 +43227,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6546 + - uid: 6539 components: - rot: -1.5707963267948966 rad pos: 17.5,18.5 @@ -43019,7 +43235,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6547 + - uid: 6540 components: - rot: -1.5707963267948966 rad pos: 18.5,18.5 @@ -43027,14 +43243,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6548 + - uid: 6541 components: - pos: -10.5,24.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6549 + - uid: 6542 components: - rot: -1.5707963267948966 rad pos: -9.5,23.5 @@ -43042,14 +43258,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6550 + - uid: 6543 components: - pos: -1.5,32.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6551 + - uid: 6544 components: - rot: 3.141592653589793 rad pos: 28.5,36.5 @@ -43057,7 +43273,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 6552 + - uid: 6545 components: - rot: 3.141592653589793 rad pos: 28.5,35.5 @@ -43065,7 +43281,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 6553 + - uid: 6546 components: - rot: 3.141592653589793 rad pos: 28.5,34.5 @@ -43073,28 +43289,28 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 6554 + - uid: 6547 components: - pos: 0.5,35.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6555 + - uid: 6548 components: - pos: -0.5,36.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6556 + - uid: 6549 components: - pos: 0.5,36.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6557 + - uid: 6550 components: - rot: 3.141592653589793 rad pos: -8.5,33.5 @@ -43102,7 +43318,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6558 + - uid: 6551 components: - rot: 3.141592653589793 rad pos: -6.5,32.5 @@ -43110,7 +43326,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6559 + - uid: 6552 components: - rot: 3.141592653589793 rad pos: -6.5,33.5 @@ -43118,13 +43334,13 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6560 + - uid: 6553 components: - rot: -1.5707963267948966 rad pos: 2.5,29.5 parent: 2 type: Transform - - uid: 6561 + - uid: 6554 components: - rot: -1.5707963267948966 rad pos: 1.5,24.5 @@ -43132,7 +43348,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6562 + - uid: 6555 components: - rot: -1.5707963267948966 rad pos: 2.5,24.5 @@ -43140,7 +43356,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6563 + - uid: 6556 components: - rot: -1.5707963267948966 rad pos: -1.5,24.5 @@ -43148,7 +43364,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6564 + - uid: 6557 components: - rot: -1.5707963267948966 rad pos: -0.5,24.5 @@ -43156,7 +43372,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6565 + - uid: 6558 components: - rot: -1.5707963267948966 rad pos: 0.5,24.5 @@ -43164,7 +43380,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6566 + - uid: 6559 components: - rot: -1.5707963267948966 rad pos: -24.5,-4.5 @@ -43172,7 +43388,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6567 + - uid: 6560 components: - rot: -1.5707963267948966 rad pos: -25.5,-2.5 @@ -43180,7 +43396,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6568 + - uid: 6561 components: - rot: 3.141592653589793 rad pos: -25.5,-3.5 @@ -43188,7 +43404,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6569 + - uid: 6562 components: - rot: 3.141592653589793 rad pos: -25.5,-2.5 @@ -43196,7 +43412,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6570 + - uid: 6563 components: - rot: 3.141592653589793 rad pos: -25.5,-1.5 @@ -43204,7 +43420,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6571 + - uid: 6564 components: - rot: 3.141592653589793 rad pos: -25.5,-0.5 @@ -43212,7 +43428,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6572 + - uid: 6565 components: - rot: 3.141592653589793 rad pos: -25.5,0.5 @@ -43220,7 +43436,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6573 + - uid: 6566 components: - rot: 3.141592653589793 rad pos: -25.5,1.5 @@ -43228,7 +43444,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6574 + - uid: 6567 components: - rot: 3.141592653589793 rad pos: -25.5,2.5 @@ -43236,7 +43452,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6575 + - uid: 6568 components: - rot: 3.141592653589793 rad pos: -25.5,3.5 @@ -43244,7 +43460,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6576 + - uid: 6569 components: - rot: 3.141592653589793 rad pos: -25.5,4.5 @@ -43252,7 +43468,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6577 + - uid: 6570 components: - rot: 3.141592653589793 rad pos: -26.5,-1.5 @@ -43260,7 +43476,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6578 + - uid: 6571 components: - rot: 3.141592653589793 rad pos: -26.5,-0.5 @@ -43268,7 +43484,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6579 + - uid: 6572 components: - rot: 3.141592653589793 rad pos: -26.5,0.5 @@ -43276,7 +43492,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6580 + - uid: 6573 components: - rot: 3.141592653589793 rad pos: -26.5,1.5 @@ -43284,7 +43500,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6581 + - uid: 6574 components: - rot: 3.141592653589793 rad pos: -26.5,2.5 @@ -43292,7 +43508,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6582 + - uid: 6575 components: - rot: 3.141592653589793 rad pos: -26.5,3.5 @@ -43300,7 +43516,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6583 + - uid: 6576 components: - rot: 3.141592653589793 rad pos: -27.5,5.5 @@ -43308,7 +43524,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6584 + - uid: 6577 components: - rot: 3.141592653589793 rad pos: -26.5,6.5 @@ -43316,7 +43532,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6585 + - uid: 6578 components: - rot: 3.141592653589793 rad pos: -26.5,7.5 @@ -43324,7 +43540,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6586 + - uid: 6579 components: - rot: 3.141592653589793 rad pos: -26.5,8.5 @@ -43332,7 +43548,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6587 + - uid: 6580 components: - rot: 3.141592653589793 rad pos: -26.5,9.5 @@ -43340,7 +43556,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6588 + - uid: 6581 components: - rot: 3.141592653589793 rad pos: -26.5,10.5 @@ -43348,7 +43564,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6589 + - uid: 6582 components: - rot: 1.5707963267948966 rad pos: -27.5,11.5 @@ -43356,13 +43572,13 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6590 + - uid: 6583 components: - rot: 1.5707963267948966 rad pos: 30.5,32.5 parent: 2 type: Transform - - uid: 6591 + - uid: 6584 components: - rot: 3.141592653589793 rad pos: 3.5,32.5 @@ -43370,7 +43586,7 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6592 + - uid: 6585 components: - rot: 1.5707963267948966 rad pos: 5.5,0.5 @@ -43378,7 +43594,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6593 + - uid: 6586 components: - rot: 1.5707963267948966 rad pos: 15.5,0.5 @@ -43386,7 +43602,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6594 + - uid: 6587 components: - rot: -1.5707963267948966 rad pos: 22.5,1.5 @@ -43394,7 +43610,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6595 + - uid: 6588 components: - rot: 3.141592653589793 rad pos: 23.5,-0.5 @@ -43402,7 +43618,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6596 + - uid: 6589 components: - rot: 3.141592653589793 rad pos: 16.5,-2.5 @@ -43410,7 +43626,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6597 + - uid: 6590 components: - rot: 1.5707963267948966 rad pos: 6.5,-0.5 @@ -43418,7 +43634,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6598 + - uid: 6591 components: - rot: -1.5707963267948966 rad pos: 9.5,-0.5 @@ -43426,7 +43642,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6599 + - uid: 6592 components: - rot: -1.5707963267948966 rad pos: 8.5,-0.5 @@ -43434,7 +43650,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6600 + - uid: 6593 components: - rot: 1.5707963267948966 rad pos: 5.5,-0.5 @@ -43442,7 +43658,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6601 + - uid: 6594 components: - rot: 1.5707963267948966 rad pos: 14.5,0.5 @@ -43450,7 +43666,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6602 + - uid: 6595 components: - rot: 3.141592653589793 rad pos: 7.5,2.5 @@ -43458,14 +43674,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6603 + - uid: 6596 components: - pos: 8.5,36.5 parent: 2 type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 6604 + - uid: 6597 components: - rot: -1.5707963267948966 rad pos: 10.5,-0.5 @@ -43473,7 +43689,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6605 + - uid: 6598 components: - rot: 3.141592653589793 rad pos: 20.5,0.5 @@ -43481,7 +43697,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6606 + - uid: 6599 components: - rot: -1.5707963267948966 rad pos: 21.5,1.5 @@ -43489,7 +43705,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6607 + - uid: 6600 components: - rot: -1.5707963267948966 rad pos: 7.5,2.5 @@ -43497,7 +43713,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6608 + - uid: 6601 components: - rot: -1.5707963267948966 rad pos: 8.5,2.5 @@ -43505,7 +43721,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6609 + - uid: 6602 components: - rot: 3.141592653589793 rad pos: 17.5,-1.5 @@ -43513,7 +43729,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6610 + - uid: 6603 components: - rot: 3.141592653589793 rad pos: 17.5,-2.5 @@ -43521,7 +43737,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6611 + - uid: 6604 components: - rot: 3.141592653589793 rad pos: 17.5,-3.5 @@ -43529,7 +43745,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6612 + - uid: 6605 components: - rot: 3.141592653589793 rad pos: 17.5,-4.5 @@ -43537,7 +43753,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6613 + - uid: 6606 components: - rot: 3.141592653589793 rad pos: 23.5,0.5 @@ -43545,7 +43761,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6614 + - uid: 6607 components: - rot: 1.5707963267948966 rad pos: 18.5,-0.5 @@ -43553,7 +43769,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6615 + - uid: 6608 components: - rot: 1.5707963267948966 rad pos: 19.5,-0.5 @@ -43561,7 +43777,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6616 + - uid: 6609 components: - rot: -1.5707963267948966 rad pos: 10.5,2.5 @@ -43569,7 +43785,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6617 + - uid: 6610 components: - rot: 1.5707963267948966 rad pos: 19.5,0.5 @@ -43577,7 +43793,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6618 + - uid: 6611 components: - rot: 1.5707963267948966 rad pos: 17.5,0.5 @@ -43585,7 +43801,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6619 + - uid: 6612 components: - rot: 1.5707963267948966 rad pos: 20.5,0.5 @@ -43593,7 +43809,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6620 + - uid: 6613 components: - rot: -1.5707963267948966 rad pos: -21.5,-19.5 @@ -43601,7 +43817,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6621 + - uid: 6614 components: - rot: 1.5707963267948966 rad pos: 12.5,1.5 @@ -43609,7 +43825,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6622 + - uid: 6615 components: - rot: 1.5707963267948966 rad pos: 18.5,0.5 @@ -43617,7 +43833,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6623 + - uid: 6616 components: - rot: 1.5707963267948966 rad pos: 13.5,30.5 @@ -43625,7 +43841,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6624 + - uid: 6617 components: - rot: -1.5707963267948966 rad pos: 13.5,29.5 @@ -43633,7 +43849,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6625 + - uid: 6618 components: - rot: 1.5707963267948966 rad pos: 12.5,30.5 @@ -43641,7 +43857,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6626 + - uid: 6619 components: - rot: 1.5707963267948966 rad pos: 11.5,30.5 @@ -43649,7 +43865,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6627 + - uid: 6620 components: - rot: 1.5707963267948966 rad pos: 10.5,15.5 @@ -43657,7 +43873,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6628 + - uid: 6621 components: - rot: 1.5707963267948966 rad pos: 9.5,15.5 @@ -43665,7 +43881,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6629 + - uid: 6622 components: - rot: 1.5707963267948966 rad pos: 8.5,15.5 @@ -43673,7 +43889,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6630 + - uid: 6623 components: - rot: 3.141592653589793 rad pos: 10.5,36.5 @@ -43681,7 +43897,7 @@ entities: type: Transform - color: '#7A5D04FF' type: AtmosPipeColor - - uid: 6631 + - uid: 6624 components: - rot: 3.141592653589793 rad pos: 19.5,32.5 @@ -43689,14 +43905,14 @@ entities: type: Transform - color: '#B600FFFF' type: AtmosPipeColor - - uid: 6632 + - uid: 6625 components: - pos: 9.5,35.5 parent: 2 type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 6633 + - uid: 6626 components: - rot: 3.141592653589793 rad pos: 20.5,32.5 @@ -43706,14 +43922,14 @@ entities: type: AtmosPipeColor - proto: GasPipeTJunction entities: - - uid: 6634 + - uid: 6627 components: - pos: 16.5,29.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6635 + - uid: 6628 components: - rot: 3.141592653589793 rad pos: 14.5,31.5 @@ -43721,21 +43937,21 @@ entities: type: Transform - color: '#826003FF' type: AtmosPipeColor - - uid: 6636 + - uid: 6629 components: - pos: 18.5,28.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6637 + - uid: 6630 components: - pos: 17.5,28.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6638 + - uid: 6631 components: - rot: -1.5707963267948966 rad pos: 11.5,15.5 @@ -43743,7 +43959,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6639 + - uid: 6632 components: - rot: 1.5707963267948966 rad pos: 8.5,34.5 @@ -43751,28 +43967,28 @@ entities: type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 6640 + - uid: 6633 components: - pos: 24.5,0.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6641 + - uid: 6634 components: - pos: 17.5,-0.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6642 + - uid: 6635 components: - pos: 15.5,-0.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6643 + - uid: 6636 components: - rot: 1.5707963267948966 rad pos: 9.5,37.5 @@ -43780,7 +43996,7 @@ entities: type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 6644 + - uid: 6637 components: - rot: -1.5707963267948966 rad pos: 8.5,38.5 @@ -43788,7 +44004,7 @@ entities: type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 6645 + - uid: 6638 components: - rot: 1.5707963267948966 rad pos: 3.5,38.5 @@ -43796,7 +44012,7 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6646 + - uid: 6639 components: - rot: 1.5707963267948966 rad pos: 3.5,37.5 @@ -43804,7 +44020,7 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6647 + - uid: 6640 components: - rot: -1.5707963267948966 rad pos: 5.5,38.5 @@ -43812,7 +44028,7 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6648 + - uid: 6641 components: - rot: -1.5707963267948966 rad pos: 5.5,37.5 @@ -43820,7 +44036,7 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6649 + - uid: 6642 components: - rot: 3.141592653589793 rad pos: 15.5,31.5 @@ -43828,14 +44044,14 @@ entities: type: Transform - color: '#826003FF' type: AtmosPipeColor - - uid: 6650 + - uid: 6643 components: - pos: 6.5,34.5 parent: 2 type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6651 + - uid: 6644 components: - rot: -1.5707963267948966 rad pos: -8.5,36.5 @@ -43843,14 +44059,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6652 + - uid: 6645 components: - pos: -7.5,24.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6653 + - uid: 6646 components: - rot: -1.5707963267948966 rad pos: -5.5,23.5 @@ -43858,7 +44074,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6654 + - uid: 6647 components: - rot: -1.5707963267948966 rad pos: -16.5,5.5 @@ -43866,7 +44082,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6655 + - uid: 6648 components: - rot: 3.141592653589793 rad pos: -19.5,8.5 @@ -43874,7 +44090,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6656 + - uid: 6649 components: - rot: 3.141592653589793 rad pos: -15.5,-6.5 @@ -43882,7 +44098,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6657 + - uid: 6650 components: - rot: -1.5707963267948966 rad pos: -16.5,-7.5 @@ -43890,7 +44106,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6658 + - uid: 6651 components: - rot: -1.5707963267948966 rad pos: 14.5,-24.5 @@ -43898,27 +44114,27 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6659 + - uid: 6652 components: - rot: 1.5707963267948966 rad pos: -6.5,1.5 parent: 2 type: Transform - - uid: 6660 + - uid: 6653 components: - pos: -20.5,5.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6661 + - uid: 6654 components: - pos: 5.5,13.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6662 + - uid: 6655 components: - rot: 3.141592653589793 rad pos: 4.5,12.5 @@ -43926,7 +44142,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6663 + - uid: 6656 components: - rot: -1.5707963267948966 rad pos: -23.5,-27.5 @@ -43934,7 +44150,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6664 + - uid: 6657 components: - rot: -1.5707963267948966 rad pos: 4.5,-10.5 @@ -43942,14 +44158,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6665 + - uid: 6658 components: - pos: -1.5,20.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6666 + - uid: 6659 components: - rot: -1.5707963267948966 rad pos: 11.5,12.5 @@ -43957,7 +44173,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6667 + - uid: 6660 components: - rot: -1.5707963267948966 rad pos: 10.5,13.5 @@ -43965,7 +44181,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6668 + - uid: 6661 components: - rot: 3.141592653589793 rad pos: 12.5,-25.5 @@ -43973,14 +44189,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6669 + - uid: 6662 components: - pos: 12.5,-19.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6670 + - uid: 6663 components: - rot: 1.5707963267948966 rad pos: 11.5,18.5 @@ -43988,7 +44204,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6671 + - uid: 6664 components: - rot: 3.141592653589793 rad pos: -5.5,19.5 @@ -43996,7 +44212,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6672 + - uid: 6665 components: - rot: -1.5707963267948966 rad pos: -24.5,-26.5 @@ -44004,7 +44220,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6673 + - uid: 6666 components: - rot: -1.5707963267948966 rad pos: 19.5,28.5 @@ -44012,7 +44228,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6674 + - uid: 6667 components: - rot: 3.141592653589793 rad pos: -3.5,-4.5 @@ -44020,14 +44236,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6675 + - uid: 6668 components: - pos: -5.5,-2.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6676 + - uid: 6669 components: - rot: 1.5707963267948966 rad pos: 10.5,-18.5 @@ -44035,7 +44251,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6677 + - uid: 6670 components: - rot: 1.5707963267948966 rad pos: 1.5,8.5 @@ -44043,7 +44259,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6678 + - uid: 6671 components: - rot: 1.5707963267948966 rad pos: 2.5,10.5 @@ -44051,7 +44267,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6679 + - uid: 6672 components: - rot: 1.5707963267948966 rad pos: 3.5,-0.5 @@ -44059,7 +44275,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6680 + - uid: 6673 components: - rot: 1.5707963267948966 rad pos: 3.5,-9.5 @@ -44067,7 +44283,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6681 + - uid: 6674 components: - rot: -1.5707963267948966 rad pos: 3.5,-2.5 @@ -44075,7 +44291,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6682 + - uid: 6675 components: - rot: 3.141592653589793 rad pos: 2.5,13.5 @@ -44083,7 +44299,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6683 + - uid: 6676 components: - rot: 3.141592653589793 rad pos: -6.5,12.5 @@ -44091,14 +44307,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6684 + - uid: 6677 components: - pos: -9.5,13.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6685 + - uid: 6678 components: - rot: 3.141592653589793 rad pos: -7.5,12.5 @@ -44106,7 +44322,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6686 + - uid: 6679 components: - rot: 1.5707963267948966 rad pos: -12.5,-9.5 @@ -44114,7 +44330,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6687 + - uid: 6680 components: - rot: -1.5707963267948966 rad pos: -11.5,-10.5 @@ -44122,28 +44338,28 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6688 + - uid: 6681 components: - pos: -15.5,-4.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6689 + - uid: 6682 components: - pos: -16.5,9.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6690 + - uid: 6683 components: - pos: -15.5,8.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6691 + - uid: 6684 components: - rot: 3.141592653589793 rad pos: -22.5,12.5 @@ -44151,7 +44367,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6692 + - uid: 6685 components: - rot: -1.5707963267948966 rad pos: -21.5,14.5 @@ -44159,21 +44375,21 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6693 + - uid: 6686 components: - pos: 2.5,12.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6694 + - uid: 6687 components: - pos: 1.5,13.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6695 + - uid: 6688 components: - rot: 3.141592653589793 rad pos: -1.5,12.5 @@ -44181,14 +44397,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6696 + - uid: 6689 components: - pos: -6.5,-2.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6697 + - uid: 6690 components: - rot: 3.141592653589793 rad pos: -4.5,-2.5 @@ -44196,28 +44412,28 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6698 + - uid: 6691 components: - pos: -4.5,0.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6699 + - uid: 6692 components: - pos: -5.5,-4.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6700 + - uid: 6693 components: - pos: -0.5,-2.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6701 + - uid: 6694 components: - rot: -1.5707963267948966 rad pos: -15.5,7.5 @@ -44225,7 +44441,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6702 + - uid: 6695 components: - rot: -1.5707963267948966 rad pos: -16.5,7.5 @@ -44233,7 +44449,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6703 + - uid: 6696 components: - rot: -1.5707963267948966 rad pos: -12.5,-11.5 @@ -44241,7 +44457,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6704 + - uid: 6697 components: - rot: -1.5707963267948966 rad pos: -11.5,-12.5 @@ -44249,7 +44465,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6705 + - uid: 6698 components: - rot: 3.141592653589793 rad pos: -15.5,-11.5 @@ -44257,14 +44473,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6706 + - uid: 6699 components: - pos: -15.5,-12.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6707 + - uid: 6700 components: - rot: -1.5707963267948966 rad pos: 5.5,-18.5 @@ -44272,7 +44488,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6708 + - uid: 6701 components: - rot: -1.5707963267948966 rad pos: 4.5,-19.5 @@ -44280,14 +44496,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6709 + - uid: 6702 components: - pos: -2.5,-19.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6710 + - uid: 6703 components: - rot: 3.141592653589793 rad pos: -8.5,-19.5 @@ -44295,35 +44511,35 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6711 + - uid: 6704 components: - pos: -7.5,-19.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6712 + - uid: 6705 components: - pos: -10.5,-19.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6713 + - uid: 6706 components: - pos: 1.5,-18.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6714 + - uid: 6707 components: - pos: -6.5,-18.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6715 + - uid: 6708 components: - rot: 3.141592653589793 rad pos: -5.5,-18.5 @@ -44331,7 +44547,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6716 + - uid: 6709 components: - rot: 3.141592653589793 rad pos: -10.5,-18.5 @@ -44339,7 +44555,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6717 + - uid: 6710 components: - rot: 1.5707963267948966 rad pos: -2.5,-22.5 @@ -44347,7 +44563,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6718 + - uid: 6711 components: - rot: -1.5707963267948966 rad pos: 1.5,-22.5 @@ -44355,7 +44571,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6719 + - uid: 6712 components: - rot: 1.5707963267948966 rad pos: 10.5,-16.5 @@ -44363,28 +44579,28 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6720 + - uid: 6713 components: - pos: 14.5,-18.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6721 + - uid: 6714 components: - pos: 13.5,-16.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6722 + - uid: 6715 components: - pos: 15.5,17.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6723 + - uid: 6716 components: - rot: 1.5707963267948966 rad pos: 14.5,-21.5 @@ -44392,7 +44608,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6724 + - uid: 6717 components: - rot: 1.5707963267948966 rad pos: 12.5,-22.5 @@ -44400,7 +44616,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6725 + - uid: 6718 components: - rot: 3.141592653589793 rad pos: -7.5,13.5 @@ -44408,7 +44624,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6726 + - uid: 6719 components: - rot: -1.5707963267948966 rad pos: -7.5,18.5 @@ -44416,7 +44632,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6727 + - uid: 6720 components: - rot: 3.141592653589793 rad pos: -6.5,31.5 @@ -44424,14 +44640,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6728 + - uid: 6721 components: - pos: 18.5,-19.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6729 + - uid: 6722 components: - rot: 1.5707963267948966 rad pos: -7.5,20.5 @@ -44439,7 +44655,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6730 + - uid: 6723 components: - rot: -1.5707963267948966 rad pos: -1.5,27.5 @@ -44447,7 +44663,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6731 + - uid: 6724 components: - rot: 1.5707963267948966 rad pos: 5.5,34.5 @@ -44455,7 +44671,7 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6732 + - uid: 6725 components: - rot: 1.5707963267948966 rad pos: -6.5,39.5 @@ -44463,7 +44679,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6733 + - uid: 6726 components: - rot: 1.5707963267948966 rad pos: 3.5,1.5 @@ -44471,7 +44687,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6734 + - uid: 6727 components: - rot: 1.5707963267948966 rad pos: 6.5,5.5 @@ -44479,7 +44695,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6735 + - uid: 6728 components: - rot: 1.5707963267948966 rad pos: 5.5,-21.5 @@ -44487,7 +44703,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6736 + - uid: 6729 components: - rot: -1.5707963267948966 rad pos: 19.5,26.5 @@ -44495,7 +44711,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6737 + - uid: 6730 components: - rot: 1.5707963267948966 rad pos: -6.5,18.5 @@ -44503,7 +44719,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6738 + - uid: 6731 components: - rot: 3.141592653589793 rad pos: -2.5,19.5 @@ -44511,7 +44727,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6739 + - uid: 6732 components: - rot: -1.5707963267948966 rad pos: 16.5,24.5 @@ -44519,7 +44735,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6740 + - uid: 6733 components: - rot: 1.5707963267948966 rad pos: 4.5,-21.5 @@ -44527,7 +44743,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6741 + - uid: 6734 components: - rot: 1.5707963267948966 rad pos: 7.5,4.5 @@ -44535,21 +44751,21 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6742 + - uid: 6735 components: - pos: 14.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6743 + - uid: 6736 components: - pos: 11.5,20.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6744 + - uid: 6737 components: - rot: 1.5707963267948966 rad pos: 20.5,-19.5 @@ -44557,7 +44773,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6745 + - uid: 6738 components: - rot: -1.5707963267948966 rad pos: 10.5,-15.5 @@ -44565,7 +44781,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6746 + - uid: 6739 components: - rot: -1.5707963267948966 rad pos: 11.5,-14.5 @@ -44573,7 +44789,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6747 + - uid: 6740 components: - rot: -1.5707963267948966 rad pos: -7.5,-22.5 @@ -44581,7 +44797,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6748 + - uid: 6741 components: - rot: -1.5707963267948966 rad pos: -6.5,-21.5 @@ -44589,7 +44805,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6749 + - uid: 6742 components: - rot: 1.5707963267948966 rad pos: -19.5,14.5 @@ -44597,7 +44813,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6750 + - uid: 6743 components: - rot: 1.5707963267948966 rad pos: -18.5,17.5 @@ -44605,7 +44821,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6751 + - uid: 6744 components: - rot: 1.5707963267948966 rad pos: -19.5,18.5 @@ -44613,7 +44829,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6752 + - uid: 6745 components: - rot: -1.5707963267948966 rad pos: -18.5,11.5 @@ -44621,7 +44837,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6753 + - uid: 6746 components: - rot: 1.5707963267948966 rad pos: -12.5,6.5 @@ -44629,7 +44845,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6754 + - uid: 6747 components: - rot: -1.5707963267948966 rad pos: -11.5,7.5 @@ -44637,35 +44853,35 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6755 + - uid: 6748 components: - pos: -22.5,8.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6756 + - uid: 6749 components: - pos: -18.5,-7.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6757 + - uid: 6750 components: - pos: -17.5,-6.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6758 + - uid: 6751 components: - pos: -20.5,-2.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6759 + - uid: 6752 components: - rot: 3.141592653589793 rad pos: -18.5,-4.5 @@ -44673,7 +44889,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6760 + - uid: 6753 components: - rot: 3.141592653589793 rad pos: 24.5,17.5 @@ -44681,7 +44897,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6761 + - uid: 6754 components: - rot: 1.5707963267948966 rad pos: 31.5,14.5 @@ -44689,7 +44905,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6762 + - uid: 6755 components: - rot: 1.5707963267948966 rad pos: -6.5,36.5 @@ -44697,7 +44913,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6763 + - uid: 6756 components: - rot: 3.141592653589793 rad pos: -8.5,32.5 @@ -44705,7 +44921,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6764 + - uid: 6757 components: - rot: -1.5707963267948966 rad pos: -8.5,39.5 @@ -44713,21 +44929,21 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6765 + - uid: 6758 components: - pos: -23.5,-16.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6766 + - uid: 6759 components: - pos: -24.5,-15.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6767 + - uid: 6760 components: - rot: 1.5707963267948966 rad pos: -23.5,-17.5 @@ -44735,7 +44951,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6768 + - uid: 6761 components: - rot: -1.5707963267948966 rad pos: -24.5,-17.5 @@ -44743,14 +44959,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6769 + - uid: 6762 components: - pos: 8.5,-4.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6770 + - uid: 6763 components: - rot: 3.141592653589793 rad pos: 7.5,-6.5 @@ -44758,7 +44974,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6771 + - uid: 6764 components: - rot: 1.5707963267948966 rad pos: 3.5,-6.5 @@ -44766,7 +44982,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6772 + - uid: 6765 components: - rot: 3.141592653589793 rad pos: -2.5,24.5 @@ -44774,7 +44990,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6773 + - uid: 6766 components: - rot: 1.5707963267948966 rad pos: 9.5,32.5 @@ -44782,7 +44998,7 @@ entities: type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 6774 + - uid: 6767 components: - rot: 3.141592653589793 rad pos: 5.5,31.5 @@ -44790,7 +45006,7 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6775 + - uid: 6768 components: - rot: -1.5707963267948966 rad pos: 9.5,34.5 @@ -44798,14 +45014,14 @@ entities: type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 6776 + - uid: 6769 components: - pos: 23.5,1.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6777 + - uid: 6770 components: - rot: 3.141592653589793 rad pos: 9.5,31.5 @@ -44813,7 +45029,7 @@ entities: type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 6778 + - uid: 6771 components: - rot: -1.5707963267948966 rad pos: 5.5,32.5 @@ -44821,14 +45037,14 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6779 + - uid: 6772 components: - pos: 9.5,2.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6780 + - uid: 6773 components: - rot: 1.5707963267948966 rad pos: 6.5,2.5 @@ -44836,7 +45052,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6781 + - uid: 6774 components: - rot: 1.5707963267948966 rad pos: 13.5,0.5 @@ -44844,7 +45060,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6782 + - uid: 6775 components: - pos: 16.5,0.5 parent: 2 @@ -44853,253 +45069,325 @@ entities: type: AtmosPipeColor - proto: GasPort entities: - - uid: 6783 + - uid: 6776 components: - pos: 9.5,30.5 parent: 2 type: Transform - - uid: 6784 + - joinedGrid: 2 + type: AtmosDevice + - uid: 6777 components: - rot: -1.5707963267948966 rad pos: 10.5,29.5 parent: 2 type: Transform - - uid: 6785 + - joinedGrid: 2 + type: AtmosDevice + - uid: 6778 components: - rot: 3.141592653589793 rad pos: 9.5,28.5 parent: 2 type: Transform - - uid: 6786 + - joinedGrid: 2 + type: AtmosDevice + - uid: 6779 components: - rot: -1.5707963267948966 rad pos: 10.5,32.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5900FF' type: AtmosPipeColor - - uid: 6787 + - uid: 6780 components: - rot: 1.5707963267948966 rad pos: 4.5,32.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6788 + - uid: 6781 components: - rot: 3.141592653589793 rad pos: 8.5,29.5 parent: 2 type: Transform - - uid: 6789 + - joinedGrid: 2 + type: AtmosDevice + - uid: 6782 components: - rot: 3.141592653589793 rad pos: 6.5,29.5 parent: 2 type: Transform - - uid: 6790 + - joinedGrid: 2 + type: AtmosDevice + - uid: 6783 components: - rot: 3.141592653589793 rad pos: 18.5,27.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6791 + - uid: 6784 components: - rot: 3.141592653589793 rad pos: 17.5,27.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6792 + - uid: 6785 components: - rot: 3.141592653589793 rad pos: -12.5,30.5 parent: 2 type: Transform - - uid: 6793 + - joinedGrid: 2 + type: AtmosDevice + - uid: 6786 components: - rot: 3.141592653589793 rad pos: -13.5,30.5 parent: 2 type: Transform - - uid: 6794 + - joinedGrid: 2 + type: AtmosDevice + - uid: 6787 components: - rot: 3.141592653589793 rad pos: 10.5,34.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#7A5D04FF' type: AtmosPipeColor - proto: GasPressurePump entities: - - uid: 6795 + - uid: 6788 components: - rot: 3.141592653589793 rad pos: 27.5,33.5 parent: 2 type: Transform - - uid: 6796 + - joinedGrid: 2 + type: AtmosDevice + - uid: 6789 components: - rot: 3.141592653589793 rad pos: 21.5,33.5 parent: 2 type: Transform - - uid: 6797 + - joinedGrid: 2 + type: AtmosDevice + - uid: 6790 components: - rot: -1.5707963267948966 rad pos: 18.5,29.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6798 + - uid: 6791 components: - rot: 3.141592653589793 rad pos: 8.5,30.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5900FF' type: AtmosPipeColor - - uid: 6799 + - uid: 6792 components: - rot: 3.141592653589793 rad pos: 25.5,33.5 parent: 2 type: Transform - - uid: 6800 + - joinedGrid: 2 + type: AtmosDevice + - uid: 6793 components: - pos: 26.5,33.5 parent: 2 type: Transform - - uid: 6801 + - joinedGrid: 2 + type: AtmosDevice + - uid: 6794 components: - rot: 3.141592653589793 rad pos: 23.5,33.5 parent: 2 type: Transform - - uid: 6802 + - joinedGrid: 2 + type: AtmosDevice + - uid: 6795 components: - pos: 28.5,33.5 parent: 2 type: Transform - - uid: 6803 + - joinedGrid: 2 + type: AtmosDevice + - uid: 6796 components: - pos: 14.5,33.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#826003FF' type: AtmosPipeColor - - uid: 6804 + - uid: 6797 components: - rot: 3.141592653589793 rad pos: 19.5,30.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6805 + - uid: 6798 components: - rot: 3.141592653589793 rad pos: 6.5,30.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6806 + - uid: 6799 components: - pos: 22.5,33.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#02FFD0FF' type: AtmosPipeColor - - uid: 6807 + - uid: 6800 components: - pos: 20.5,33.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#02FFD0FF' type: AtmosPipeColor - - uid: 6808 + - uid: 6801 components: - rot: 3.141592653589793 rad pos: 15.5,33.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#826003FF' type: AtmosPipeColor - - uid: 6809 + - uid: 6802 components: - rot: 3.141592653589793 rad pos: -13.5,31.5 parent: 2 type: Transform - - uid: 6810 + - joinedGrid: 2 + type: AtmosDevice + - uid: 6803 components: - pos: -12.5,31.5 parent: 2 type: Transform - - uid: 6811 + - joinedGrid: 2 + type: AtmosDevice + - uid: 6804 components: - rot: -1.5707963267948966 rad pos: 13.5,31.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#826003FF' type: AtmosPipeColor - proto: GasThermoMachineFreezer entities: - - uid: 6812 + - uid: 6805 components: - pos: -4.5,2.5 parent: 2 type: Transform - - uid: 6813 + - joinedGrid: 2 + type: AtmosDevice + - uid: 6806 components: - pos: 15.5,25.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6814 + - joinedGrid: 2 + type: AtmosDevice + - uid: 6807 components: - pos: 17.5,33.5 parent: 2 type: Transform - - uid: 6815 + - joinedGrid: 2 + type: AtmosDevice + - uid: 6808 components: - rot: -1.5707963267948966 rad pos: 11.5,29.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: GasThermoMachineHeater entities: - - uid: 6816 + - uid: 6809 components: - pos: 18.5,33.5 parent: 2 type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 6817 + - joinedGrid: 2 + type: AtmosDevice + - uid: 6810 components: - pos: 15.5,27.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6818 + - joinedGrid: 2 + type: AtmosDevice + - uid: 6811 components: - rot: -1.5707963267948966 rad pos: 11.5,28.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: GasValve entities: - - uid: 6819 + - uid: 6812 components: - rot: 3.141592653589793 rad pos: 14.5,32.5 @@ -45107,9 +45395,11 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 2 + type: AtmosDevice - color: '#826003FF' type: AtmosPipeColor - - uid: 6820 + - uid: 6813 components: - rot: 3.141592653589793 rad pos: 15.5,32.5 @@ -45117,9 +45407,11 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 2 + type: AtmosDevice - color: '#826003FF' type: AtmosPipeColor - - uid: 6821 + - uid: 6814 components: - rot: -1.5707963267948966 rad pos: 10.5,31.5 @@ -45127,9 +45419,11 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5900FF' type: AtmosPipeColor - - uid: 6822 + - uid: 6815 components: - rot: 3.141592653589793 rad pos: 10.5,35.5 @@ -45137,25 +45431,31 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 2 + type: AtmosDevice - color: '#7A5D04FF' type: AtmosPipeColor - - uid: 6823 + - uid: 6816 components: - pos: 8.5,35.5 parent: 2 type: Transform - open: False type: GasValve + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5900FF' type: AtmosPipeColor - - uid: 6824 + - uid: 6817 components: - pos: 19.5,33.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#B600FFFF' type: AtmosPipeColor - - uid: 6825 + - uid: 6818 components: - rot: 1.5707963267948966 rad pos: 4.5,31.5 @@ -45163,48 +45463,60 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 2 + type: AtmosDevice - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6826 + - uid: 6819 components: - pos: 3.5,33.5 parent: 2 type: Transform - open: False type: GasValve + - joinedGrid: 2 + type: AtmosDevice - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6827 + - uid: 6820 components: - rot: 1.5707963267948966 rad pos: 7.5,31.5 parent: 2 type: Transform - - uid: 6828 + - joinedGrid: 2 + type: AtmosDevice + - uid: 6821 components: - pos: 5.5,33.5 parent: 2 type: Transform - open: False type: GasValve + - joinedGrid: 2 + type: AtmosDevice - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6829 + - uid: 6822 components: - pos: 9.5,33.5 parent: 2 type: Transform - open: False type: GasValve + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5900FF' type: AtmosPipeColor - - uid: 6830 + - uid: 6823 components: - rot: -1.5707963267948966 rad pos: 29.5,32.5 parent: 2 type: Transform - - uid: 6831 + - joinedGrid: 2 + type: AtmosDevice + - uid: 6824 components: - rot: 3.141592653589793 rad pos: 7.5,35.5 @@ -45212,1422 +45524,1762 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 2 + type: AtmosDevice - color: '#00B3B7FF' type: AtmosPipeColor - proto: GasVentPump entities: - - uid: 6832 + - uid: 6825 components: - rot: 3.141592653589793 rad pos: 15.5,-1.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6833 + - uid: 6826 components: - rot: 1.5707963267948966 rad pos: -17.5,-0.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6834 + - uid: 6827 components: - rot: 3.141592653589793 rad pos: -24.5,-9.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6835 + - uid: 6828 components: - rot: 3.141592653589793 rad pos: -1.5,19.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6836 + - uid: 6829 components: - rot: -1.5707963267948966 rad pos: 17.5,26.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6837 + - uid: 6830 components: - rot: 3.141592653589793 rad pos: -18.5,-9.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6838 + - uid: 6831 components: - rot: -1.5707963267948966 rad pos: 11.5,4.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6839 + - uid: 6832 components: - rot: -1.5707963267948966 rad pos: 14.5,-27.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6840 + - uid: 6833 components: - rot: 3.141592653589793 rad pos: -5.5,-3.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6841 + - uid: 6834 components: - rot: -1.5707963267948966 rad pos: 4.5,1.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6842 + - uid: 6835 components: - rot: 3.141592653589793 rad pos: 0.5,-7.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6843 + - uid: 6836 components: - rot: 1.5707963267948966 rad pos: -6.5,0.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6844 + - uid: 6837 components: - pos: -2.5,2.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6845 + - uid: 6838 components: - rot: -1.5707963267948966 rad pos: -7.5,8.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6846 + - uid: 6839 components: - rot: 3.141592653589793 rad pos: -16.5,-8.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6847 + - uid: 6840 components: - rot: 3.141592653589793 rad pos: -6.5,-8.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6848 + - uid: 6841 components: - rot: -1.5707963267948966 rad pos: -15.5,13.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6849 + - uid: 6842 components: - rot: 3.141592653589793 rad pos: -15.5,4.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6850 + - uid: 6843 components: - rot: 1.5707963267948966 rad pos: -16.5,7.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6851 + - uid: 6844 components: - rot: 1.5707963267948966 rad pos: -23.5,14.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6852 + - uid: 6845 components: - pos: -21.5,16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6853 + - uid: 6846 components: - rot: -1.5707963267948966 rad pos: -18.5,18.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6854 + - uid: 6847 components: - pos: -15.5,-10.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6855 + - uid: 6848 components: - pos: 0.5,-11.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6856 + - uid: 6849 components: - rot: 1.5707963267948966 rad pos: -8.5,-22.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6857 + - uid: 6850 components: - rot: 3.141592653589793 rad pos: 13.5,-17.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6858 + - uid: 6851 components: - rot: -1.5707963267948966 rad pos: 18.5,-16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6859 + - uid: 6852 components: - rot: -1.5707963267948966 rad pos: 15.5,-22.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 32 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6860 + - uid: 6853 components: - rot: -1.5707963267948966 rad pos: -1.5,-22.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6861 + - uid: 6854 components: - rot: -1.5707963267948966 rad pos: -1.5,-26.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6862 + - uid: 6855 components: - rot: 1.5707963267948966 rad pos: -9.5,-28.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6863 + - uid: 6856 components: - rot: 3.141592653589793 rad pos: -10.5,-20.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6864 + - uid: 6857 components: - rot: -1.5707963267948966 rad pos: 4.5,8.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6865 + - uid: 6858 components: - rot: -1.5707963267948966 rad pos: -11.5,-9.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6866 + - uid: 6859 components: - rot: 3.141592653589793 rad pos: -9.5,12.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6867 + - uid: 6860 components: - pos: -8.5,-17.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6868 + - uid: 6861 components: - pos: -9.5,46.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6869 + - uid: 6862 components: - rot: 3.141592653589793 rad pos: -20.5,-9.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6870 + - uid: 6863 components: - rot: 3.141592653589793 rad pos: 18.5,-20.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6871 + - uid: 6864 components: - rot: 3.141592653589793 rad pos: 23.5,-21.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6872 + - uid: 6865 components: - rot: 1.5707963267948966 rad pos: -24.5,8.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6873 + - uid: 6866 components: - rot: 1.5707963267948966 rad pos: -9.5,39.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6874 + - uid: 6867 components: - pos: -2.5,33.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6875 + - uid: 6868 components: - rot: 1.5707963267948966 rad pos: -9.5,36.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6876 + - uid: 6869 components: - rot: 3.141592653589793 rad pos: 5.5,12.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6877 + - uid: 6870 components: - pos: -9.5,26.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 36 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6878 + - uid: 6871 components: - pos: -19.5,22.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6879 + - uid: 6872 components: - pos: -24.5,1.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6880 + - uid: 6873 components: - rot: -1.5707963267948966 rad pos: -18.5,14.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6881 + - uid: 6874 components: - rot: -1.5707963267948966 rad pos: 3.5,20.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6882 + - uid: 6875 components: - rot: 1.5707963267948966 rad pos: -8.5,18.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6883 + - uid: 6876 components: - rot: -1.5707963267948966 rad pos: -11.5,6.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6884 + - uid: 6877 components: - pos: 7.5,6.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6885 + - uid: 6878 components: - rot: 3.141592653589793 rad pos: 10.5,9.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6886 + - uid: 6879 components: - rot: -1.5707963267948966 rad pos: 4.5,-9.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6887 + - uid: 6880 components: - rot: 3.141592653589793 rad pos: 4.5,-25.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6888 + - uid: 6881 components: - rot: -1.5707963267948966 rad pos: 5.5,-21.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6889 + - uid: 6882 components: - rot: 1.5707963267948966 rad pos: 7.5,-15.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6890 + - uid: 6883 components: - rot: 1.5707963267948966 rad pos: 14.5,17.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6891 + - uid: 6884 components: - rot: -1.5707963267948966 rad pos: -21.5,4.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6892 + - uid: 6885 components: - rot: 3.141592653589793 rad pos: -20.5,-3.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6893 + - uid: 6886 components: - rot: 3.141592653589793 rad pos: 17.5,9.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6894 + - uid: 6887 components: - rot: -1.5707963267948966 rad pos: 32.5,14.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6895 + - uid: 6888 components: - pos: 24.5,18.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6896 + - uid: 6889 components: - rot: 1.5707963267948966 rad pos: 0.5,15.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6897 + - uid: 6890 components: - rot: 3.141592653589793 rad pos: -24.5,-28.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6898 + - uid: 6891 components: - rot: 1.5707963267948966 rad pos: -25.5,-17.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6899 + - uid: 6892 components: - rot: 1.5707963267948966 rad pos: -28.5,-15.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6900 + - uid: 6893 components: - rot: -1.5707963267948966 rad pos: -20.5,-19.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6901 + - uid: 6894 components: - rot: 1.5707963267948966 rad pos: -29.5,-19.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6902 + - uid: 6895 components: - rot: 1.5707963267948966 rad pos: -27.5,-26.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6903 + - uid: 6896 components: - rot: -1.5707963267948966 rad pos: -20.5,-24.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6904 + - uid: 6897 components: - rot: 1.5707963267948966 rad pos: -29.5,-24.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6905 + - uid: 6898 components: - pos: 7.5,-5.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6906 + - uid: 6899 components: - rot: -1.5707963267948966 rad pos: 12.5,-6.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6907 + - uid: 6900 components: - rot: -1.5707963267948966 rad pos: 11.5,-18.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6908 + - uid: 6901 components: - pos: -14.5,33.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6909 + - uid: 6902 components: - rot: 1.5707963267948966 rad pos: 11.5,-25.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6910 + - uid: 6903 components: - pos: -0.5,37.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6911 + - uid: 6904 components: - rot: 3.141592653589793 rad pos: 5.5,23.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6912 + - uid: 6905 components: - rot: 1.5707963267948966 rad pos: -28.5,6.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6913 + - uid: 6906 components: - rot: 3.141592653589793 rad pos: 7.5,-1.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6914 + - uid: 6907 components: - rot: 3.141592653589793 rad pos: 23.5,-1.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6915 + - uid: 6908 components: - rot: -1.5707963267948966 rad pos: 24.5,1.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6916 + - uid: 6909 components: - rot: 3.141592653589793 rad pos: 17.5,-5.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6917 + - uid: 6910 components: - rot: 1.5707963267948966 rad pos: 11.5,29.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6918 + - uid: 6911 components: - rot: 1.5707963267948966 rad pos: 8.5,16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - proto: GasVentScrubber entities: - - uid: 6919 + - uid: 6912 components: - rot: 3.141592653589793 rad pos: 9.5,1.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6920 + - uid: 6913 components: - rot: -1.5707963267948966 rad pos: 25.5,0.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6921 + - uid: 6914 components: - rot: 3.141592653589793 rad pos: 24.5,-1.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6922 + - uid: 6915 components: - rot: 3.141592653589793 rad pos: 13.5,-0.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6923 + - uid: 6916 components: - rot: 3.141592653589793 rad pos: 16.5,-4.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6924 + - uid: 6917 components: - rot: 1.5707963267948966 rad pos: 1.5,-11.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6925 + - uid: 6918 components: - pos: -23.5,1.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6926 + - uid: 6919 components: - rot: 1.5707963267948966 rad pos: 18.5,26.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6927 + - uid: 6920 components: - pos: 4.5,20.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6928 + - uid: 6921 components: - rot: -1.5707963267948966 rad pos: -0.5,-7.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6929 + - uid: 6922 components: - rot: 1.5707963267948966 rad pos: 3.5,-10.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6930 + - uid: 6923 components: - rot: 3.141592653589793 rad pos: 15.5,-27.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6931 + - uid: 6924 components: - pos: -2.5,20.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6932 + - uid: 6925 components: - rot: -1.5707963267948966 rad pos: 12.5,5.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6933 + - uid: 6926 components: - rot: 1.5707963267948966 rad pos: 3.5,0.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6934 + - uid: 6927 components: - pos: -3.5,-3.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6935 + - uid: 6928 components: - pos: -22.5,16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6936 + - uid: 6929 components: - rot: 1.5707963267948966 rad pos: -23.5,12.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6937 + - uid: 6930 components: - rot: -1.5707963267948966 rad pos: -15.5,12.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6938 + - uid: 6931 components: - pos: -17.5,18.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6939 + - uid: 6932 components: - rot: 1.5707963267948966 rad pos: -17.5,7.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6940 + - uid: 6933 components: - rot: 3.141592653589793 rad pos: -16.5,4.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6941 + - uid: 6934 components: - rot: -1.5707963267948966 rad pos: -7.5,9.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6942 + - uid: 6935 components: - pos: -1.5,2.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6943 + - uid: 6936 components: - rot: 3.141592653589793 rad pos: -5.5,-8.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6944 + - uid: 6937 components: - rot: 3.141592653589793 rad pos: -14.5,-8.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6945 + - uid: 6938 components: - rot: 3.141592653589793 rad pos: -15.5,-13.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6946 + - uid: 6939 components: - rot: 1.5707963267948966 rad pos: -8.5,-21.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6947 + - uid: 6940 components: - pos: -10.5,-17.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6948 + - uid: 6941 components: - rot: 1.5707963267948966 rad pos: 0.5,-22.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6949 + - uid: 6942 components: - rot: 1.5707963267948966 rad pos: 0.5,-26.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6950 + - uid: 6943 components: - rot: -1.5707963267948966 rad pos: 14.5,-17.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6951 + - uid: 6944 components: - rot: -1.5707963267948966 rad pos: 15.5,-21.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 32 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6952 + - uid: 6945 components: - rot: 1.5707963267948966 rad pos: -9.5,-29.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6953 + - uid: 6946 components: - rot: 1.5707963267948966 rad pos: -12.5,-10.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6954 + - uid: 6947 components: - pos: -7.5,13.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6955 + - uid: 6948 components: - pos: -5.5,-17.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6956 + - uid: 6949 components: - rot: 3.141592653589793 rad pos: -19.5,-9.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6957 + - uid: 6950 components: - rot: 3.141592653589793 rad pos: -17.5,-9.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6958 + - uid: 6951 components: - rot: 3.141592653589793 rad pos: 20.5,-20.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6959 + - uid: 6952 components: - rot: -1.5707963267948966 rad pos: 22.5,-19.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6960 + - uid: 6953 components: - rot: 1.5707963267948966 rad pos: 10.5,20.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6961 + - uid: 6954 components: - rot: 3.141592653589793 rad pos: 6.5,8.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6962 + - uid: 6955 components: - rot: 3.141592653589793 rad pos: 14.5,-14.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#990000FF' type: AtmosPipeColor - - uid: 6963 + - uid: 6956 components: - rot: -1.5707963267948966 rad pos: 18.5,-14.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#990000FF' type: AtmosPipeColor - - uid: 6964 + - uid: 6957 components: - pos: -1.5,33.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6965 + - uid: 6958 components: - pos: -10.5,26.5 parent: 2 type: Transform - - ShutdownSubscribers: - - 36 - type: DeviceNetwork + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6966 + - uid: 6959 components: - rot: -1.5707963267948966 rad pos: -5.5,18.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6967 + - uid: 6960 components: - pos: 4.5,13.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6968 + - uid: 6961 components: - pos: -18.5,22.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6969 + - uid: 6962 components: - rot: 3.141592653589793 rad pos: -23.5,-9.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6970 + - uid: 6963 components: - rot: 1.5707963267948966 rad pos: -19.5,11.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6971 + - uid: 6964 components: - rot: 1.5707963267948966 rad pos: -12.5,7.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6972 + - uid: 6965 components: - pos: 6.5,6.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6973 + - uid: 6966 components: - rot: 1.5707963267948966 rad pos: 7.5,-14.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6974 + - uid: 6967 components: - rot: -1.5707963267948966 rad pos: 12.5,10.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6975 + - uid: 6968 components: - rot: 3.141592653589793 rad pos: 5.5,-25.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6976 + - uid: 6969 components: - rot: 1.5707963267948966 rad pos: -23.5,7.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6977 + - uid: 6970 components: - rot: 3.141592653589793 rad pos: -20.5,4.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6978 + - uid: 6971 components: - pos: -18.5,-3.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6979 + - uid: 6972 components: - rot: -1.5707963267948966 rad pos: 0.5,16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6980 + - uid: 6973 components: - pos: -5.5,46.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6981 + - uid: 6974 components: - rot: 1.5707963267948966 rad pos: -28.5,-27.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6982 + - uid: 6975 components: - rot: 3.141592653589793 rad pos: -23.5,-28.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6983 + - uid: 6976 components: - rot: -1.5707963267948966 rad pos: -19.5,-23.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6984 + - uid: 6977 components: - rot: -1.5707963267948966 rad pos: -19.5,-18.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6985 + - uid: 6978 components: - rot: -1.5707963267948966 rad pos: -22.5,-17.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6986 + - uid: 6979 components: - rot: 1.5707963267948966 rad pos: -28.5,-18.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6987 + - uid: 6980 components: - rot: 1.5707963267948966 rad pos: -29.5,-16.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6988 + - uid: 6981 components: - rot: 1.5707963267948966 rad pos: -29.5,-23.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6989 + - uid: 6982 components: - rot: 1.5707963267948966 rad pos: -14.5,31.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6990 + - uid: 6983 components: - rot: -1.5707963267948966 rad pos: 12.5,-4.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6991 + - uid: 6984 components: - rot: 3.141592653589793 rad pos: 8.5,-5.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6992 + - uid: 6985 components: - rot: -1.5707963267948966 rad pos: -5.5,36.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6993 + - uid: 6986 components: - rot: 1.5707963267948966 rad pos: 10.5,-17.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6994 + - uid: 6987 components: - rot: 1.5707963267948966 rad pos: 11.5,-24.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6995 + - uid: 6988 components: - rot: -1.5707963267948966 rad pos: 6.5,-21.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6996 + - uid: 6989 components: - rot: -1.5707963267948966 rad pos: 19.5,18.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6997 + - uid: 6990 components: - rot: -1.5707963267948966 rad pos: -5.5,39.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6998 + - uid: 6991 components: - pos: 0.5,37.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6999 + - uid: 6992 components: - pos: 5.5,26.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 7000 + - uid: 6993 components: - rot: 1.5707963267948966 rad pos: -28.5,11.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 7001 + - uid: 6994 components: - rot: 1.5707963267948966 rad pos: 10.5,30.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - - uid: 7002 + - uid: 6995 components: - rot: 1.5707963267948966 rad pos: 7.5,15.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - proto: GasVolumePump entities: - - uid: 7003 + - uid: 6996 components: - rot: 3.141592653589793 rad pos: 5.5,35.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 7004 + - uid: 6997 components: - pos: 3.5,35.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 7005 + - uid: 6998 components: - pos: 8.5,32.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5900FF' type: AtmosPipeColor - - uid: 7006 + - uid: 6999 components: - rot: 3.141592653589793 rad pos: 6.5,32.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#00B3B7FF' type: AtmosPipeColor - proto: GeneratorBasic entities: - - uid: 7007 + - uid: 7000 components: - pos: -1.5,43.5 parent: 2 type: Transform - proto: Girder entities: - - uid: 7008 + - uid: 7001 components: - pos: 22.5,7.5 parent: 2 type: Transform - - uid: 7009 + - uid: 7002 components: - pos: 18.5,6.5 parent: 2 type: Transform - - uid: 7010 + - uid: 7003 components: - pos: 31.5,25.5 parent: 2 type: Transform - - uid: 7011 + - uid: 7004 components: - pos: 16.5,4.5 parent: 2 type: Transform - proto: GlimmerProber entities: - - uid: 7012 + - uid: 7005 components: - pos: -9.5,38.5 parent: 2 @@ -46637,2946 +47289,2891 @@ entities: type: PointLight - proto: GoldOre1 entities: - - uid: 7013 + - uid: 7006 components: - pos: 24.913431,-13.565109 parent: 2 type: Transform - - uid: 7014 + - uid: 7007 components: - pos: 24.79885,-13.784012 parent: 2 type: Transform - proto: GravityGenerator entities: - - uid: 7015 + - uid: 7008 components: - pos: 10.5,25.5 parent: 2 type: Transform - proto: Grille entities: - - uid: 7016 + - uid: 7009 components: - pos: -28.5,17.5 parent: 2 type: Transform - - uid: 7017 + - uid: 7010 components: - pos: 8.5,-3.5 parent: 2 type: Transform - - uid: 7018 + - uid: 7011 components: - pos: 31.5,3.5 parent: 2 type: Transform - - uid: 7019 + - uid: 7012 components: - pos: 21.5,0.5 parent: 2 type: Transform - - uid: 7020 + - uid: 7013 components: - pos: 12.5,29.5 parent: 2 type: Transform - - uid: 7021 + - uid: 7014 components: - pos: 30.5,-2.5 parent: 2 type: Transform - - uid: 7022 + - uid: 7015 components: - pos: 30.5,3.5 parent: 2 type: Transform - - uid: 7023 + - uid: 7016 components: - pos: 8.5,36.5 parent: 2 type: Transform - - uid: 7024 + - uid: 7017 components: - pos: 9.5,36.5 parent: 2 type: Transform - - uid: 7025 + - uid: 7018 components: - pos: 26.5,-2.5 parent: 2 type: Transform - - uid: 7026 + - uid: 7019 components: - pos: 29.5,0.5 parent: 2 type: Transform - - uid: 7027 + - uid: 7020 components: - pos: 23.5,-0.5 parent: 2 type: Transform - - uid: 7028 + - uid: 7021 components: - pos: 25.5,-0.5 parent: 2 type: Transform - - uid: 7029 + - uid: 7022 components: - pos: 6.5,14.5 parent: 2 type: Transform - - uid: 7030 + - uid: 7023 components: - pos: 5.5,1.5 parent: 2 type: Transform - - uid: 7031 + - uid: 7024 components: - pos: 3.5,36.5 parent: 2 type: Transform - - uid: 7032 + - uid: 7025 components: - pos: 12.5,32.5 parent: 2 type: Transform - - uid: 7033 + - uid: 7026 components: - pos: 10.5,0.5 parent: 2 type: Transform - - uid: 7034 + - uid: 7027 components: - pos: -10.5,-7.5 parent: 2 type: Transform - - uid: 7035 + - uid: 7028 components: - pos: 0.5,8.5 parent: 2 type: Transform - - uid: 7036 + - uid: 7029 components: - pos: 0.5,9.5 parent: 2 type: Transform - - uid: 7037 + - uid: 7030 components: - pos: -19.5,15.5 parent: 2 type: Transform - - uid: 7038 + - uid: 7031 components: - pos: -20.5,14.5 parent: 2 type: Transform - - uid: 7039 + - uid: 7032 components: - pos: -14.5,7.5 parent: 2 type: Transform - - uid: 7040 + - uid: 7033 components: - pos: -17.5,10.5 parent: 2 type: Transform - - uid: 7041 + - uid: 7034 components: - pos: -17.5,12.5 parent: 2 type: Transform - - uid: 7042 + - uid: 7035 components: - pos: -13.5,13.5 parent: 2 type: Transform - - uid: 7043 + - uid: 7036 components: - pos: -13.5,-6.5 parent: 2 type: Transform - - uid: 7044 + - uid: 7037 components: - pos: -13.5,5.5 parent: 2 type: Transform - - uid: 7045 + - uid: 7038 components: - pos: -13.5,12.5 parent: 2 type: Transform - - uid: 7046 + - uid: 7039 components: - pos: -13.5,4.5 parent: 2 type: Transform - - uid: 7047 + - uid: 7040 components: - pos: -13.5,3.5 parent: 2 type: Transform - - uid: 7048 + - uid: 7041 components: - pos: 2.5,-5.5 parent: 2 type: Transform - - uid: 7049 + - uid: 7042 components: - pos: 2.5,-1.5 parent: 2 type: Transform - - uid: 7050 + - uid: 7043 components: - pos: -10.5,-5.5 parent: 2 type: Transform - - uid: 7051 + - uid: 7044 components: - pos: -10.5,-1.5 parent: 2 type: Transform - - uid: 7052 + - uid: 7045 components: - pos: -6.5,11.5 parent: 2 type: Transform - - uid: 7053 + - uid: 7046 components: - pos: -7.5,11.5 parent: 2 type: Transform - - uid: 7054 + - uid: 7047 components: - pos: -3.5,11.5 parent: 2 type: Transform - - uid: 7055 + - uid: 7048 components: - pos: -2.5,11.5 parent: 2 type: Transform - - uid: 7056 + - uid: 7049 components: - pos: -23.5,-10.5 parent: 2 type: Transform - - uid: 7057 + - uid: 7050 components: - pos: -24.5,-10.5 parent: 2 type: Transform - - uid: 7058 + - uid: 7051 components: - pos: -0.5,6.5 parent: 2 type: Transform - - uid: 7059 + - uid: 7052 components: - pos: -3.5,6.5 parent: 2 type: Transform - - uid: 7060 + - uid: 7053 components: - pos: -1.5,6.5 parent: 2 type: Transform - - uid: 7061 + - uid: 7054 components: - pos: -3.5,-0.5 parent: 2 type: Transform - - uid: 7062 + - uid: 7055 components: - pos: 17.5,14.5 parent: 2 type: Transform - - uid: 7063 + - uid: 7056 components: - pos: -20.5,-5.5 parent: 2 type: Transform - - uid: 7064 + - uid: 7057 components: - pos: -25.5,9.5 parent: 2 type: Transform - - uid: 7065 + - uid: 7058 components: - pos: -25.5,8.5 parent: 2 type: Transform - - uid: 7066 + - uid: 7059 components: - pos: 5.5,-5.5 parent: 2 type: Transform - - uid: 7067 + - uid: 7060 components: - pos: -16.5,-5.5 parent: 2 type: Transform - - uid: 7068 + - uid: 7061 components: - pos: 7.5,3.5 parent: 2 type: Transform - - uid: 7069 + - uid: 7062 components: - pos: 6.5,3.5 parent: 2 type: Transform - - uid: 7070 + - uid: 7063 components: - pos: 7.5,-30.5 parent: 2 type: Transform - - uid: 7071 + - uid: 7064 components: - pos: 6.5,-30.5 parent: 2 type: Transform - - uid: 7072 + - uid: 7065 components: - pos: 25.5,36.5 parent: 2 type: Transform - - uid: 7073 + - uid: 7066 components: - pos: 28.5,29.5 parent: 2 type: Transform - - uid: 7074 + - uid: 7067 components: - pos: -20.5,9.5 parent: 2 type: Transform - - uid: 7075 + - uid: 7068 components: - pos: 6.5,-3.5 parent: 2 type: Transform - - uid: 7076 + - uid: 7069 components: - pos: -14.5,10.5 parent: 2 type: Transform - - uid: 7077 + - uid: 7070 components: - pos: 25.5,34.5 parent: 2 type: Transform - - uid: 7078 + - uid: 7071 components: - pos: 25.5,-15.5 parent: 2 type: Transform - - uid: 7079 + - uid: 7072 components: - pos: -13.5,-13.5 parent: 2 type: Transform - - uid: 7080 + - uid: 7073 components: - pos: -13.5,-10.5 parent: 2 type: Transform - - uid: 7081 + - uid: 7074 components: - pos: 10.5,-30.5 parent: 2 type: Transform - - uid: 7082 + - uid: 7075 components: - pos: -9.5,-19.5 parent: 2 type: Transform - - uid: 7083 + - uid: 7076 components: - pos: -9.5,-17.5 parent: 2 type: Transform - - uid: 7084 + - uid: 7077 components: - pos: -4.5,-17.5 parent: 2 type: Transform - - uid: 7085 + - uid: 7078 components: - pos: -4.5,-19.5 parent: 2 type: Transform - - uid: 7086 + - uid: 7079 components: - pos: 6.5,-14.5 parent: 2 type: Transform - - uid: 7087 + - uid: 7080 components: - pos: 7.5,-17.5 parent: 2 type: Transform - - uid: 7088 + - uid: 7081 components: - pos: 7.5,-20.5 parent: 2 type: Transform - - uid: 7089 + - uid: 7082 components: - pos: 3.5,-17.5 parent: 2 type: Transform - - uid: 7090 + - uid: 7083 components: - pos: 3.5,-19.5 parent: 2 type: Transform - - uid: 7091 + - uid: 7084 components: - pos: 3.5,-21.5 parent: 2 type: Transform - - uid: 7092 + - uid: 7085 components: - pos: 3.5,-22.5 parent: 2 type: Transform - - uid: 7093 + - uid: 7086 components: - pos: -7.5,-20.5 parent: 2 type: Transform - - uid: 7094 + - uid: 7087 components: - pos: -9.5,-23.5 parent: 2 type: Transform - - uid: 7095 + - uid: 7088 components: - pos: -9.5,-24.5 parent: 2 type: Transform - - uid: 7096 + - uid: 7089 components: - pos: -3.5,-29.5 parent: 2 type: Transform - - uid: 7097 + - uid: 7090 components: - pos: -2.5,-30.5 parent: 2 type: Transform - - uid: 7098 + - uid: 7091 components: - pos: -1.5,-30.5 parent: 2 type: Transform - - uid: 7099 + - uid: 7092 components: - pos: -0.5,-30.5 parent: 2 type: Transform - - uid: 7100 + - uid: 7093 components: - pos: 0.5,-30.5 parent: 2 type: Transform - - uid: 7101 + - uid: 7094 components: - pos: 1.5,-30.5 parent: 2 type: Transform - - uid: 7102 + - uid: 7095 components: - pos: 2.5,-29.5 parent: 2 type: Transform - - uid: 7103 + - uid: 7096 components: - pos: 13.5,-22.5 parent: 2 type: Transform - - uid: 7104 + - uid: 7097 components: - pos: 13.5,-21.5 parent: 2 type: Transform - - uid: 7105 + - uid: 7098 components: - pos: 20.5,-21.5 parent: 2 type: Transform - - uid: 7106 + - uid: 7099 components: - pos: 19.5,-21.5 parent: 2 type: Transform - - uid: 7107 + - uid: 7100 components: - pos: 27.5,-20.5 parent: 2 type: Transform - - uid: 7108 + - uid: 7101 components: - pos: -12.5,-22.5 parent: 2 type: Transform - - uid: 7109 + - uid: 7102 components: - pos: -11.5,-22.5 parent: 2 type: Transform - - uid: 7110 + - uid: 7103 components: - pos: -10.5,-22.5 parent: 2 type: Transform - - uid: 7111 - components: - - pos: -8.5,-6.5 - parent: 2 - type: Transform - - uid: 7112 - components: - - pos: -31.5,56.5 - parent: 2 - type: Transform - - uid: 7113 - components: - - pos: 8.5,26.5 - parent: 2 - type: Transform - - uid: 7114 - components: - - pos: 8.5,23.5 - parent: 2 - type: Transform - - uid: 7115 - components: - - pos: 8.5,25.5 - parent: 2 - type: Transform - - uid: 7116 - components: - - pos: 8.5,24.5 - parent: 2 - type: Transform - - uid: 7117 - components: - - pos: -31.5,58.5 - parent: 2 - type: Transform - - uid: 7118 - components: - - pos: -16.5,67.5 - parent: 2 - type: Transform - - uid: 7119 + - uid: 7104 components: - - pos: -10.5,67.5 + - pos: -8.5,-6.5 parent: 2 type: Transform - - uid: 7120 + - uid: 7106 components: - - pos: -31.5,59.5 + - pos: 8.5,26.5 parent: 2 type: Transform - - uid: 7121 + - uid: 7107 components: - - pos: -31.5,60.5 + - pos: 8.5,23.5 parent: 2 type: Transform - - uid: 7122 + - uid: 7108 components: - - pos: -31.5,57.5 + - pos: 8.5,25.5 parent: 2 type: Transform - - uid: 7123 + - uid: 7109 components: - - pos: -31.5,61.5 + - pos: 8.5,24.5 parent: 2 type: Transform - - uid: 7124 + - uid: 7117 components: - pos: 27.5,36.5 parent: 2 type: Transform - - uid: 7125 + - uid: 7118 components: - pos: -30.5,-9.5 parent: 2 type: Transform - - uid: 7126 + - uid: 7119 components: - pos: 9.5,17.5 parent: 2 type: Transform - - uid: 7127 + - uid: 7120 components: - pos: 7.5,-3.5 parent: 2 type: Transform - - uid: 7128 + - uid: 7121 components: - pos: 4.5,7.5 parent: 2 type: Transform - - uid: 7129 + - uid: 7122 components: - pos: 15.5,-31.5 parent: 2 type: Transform - - uid: 7130 + - uid: 7123 components: - pos: 17.5,-31.5 parent: 2 type: Transform - - uid: 7131 + - uid: 7124 components: - pos: 28.5,-10.5 parent: 2 type: Transform - - uid: 7132 + - uid: 7125 components: - pos: 27.5,-12.5 parent: 2 type: Transform - - uid: 7133 + - uid: 7126 components: - pos: -32.5,-1.5 parent: 2 type: Transform - - uid: 7134 + - uid: 7127 components: - pos: -32.5,-9.5 parent: 2 type: Transform - - uid: 7135 + - uid: 7128 components: - pos: 27.5,-8.5 parent: 2 type: Transform - - uid: 7136 + - uid: 7129 components: - pos: 28.5,-9.5 parent: 2 type: Transform - - uid: 7137 + - uid: 7130 components: - pos: 19.5,-24.5 parent: 2 type: Transform - - uid: 7138 + - uid: 7131 components: - pos: 19.5,-30.5 parent: 2 type: Transform - - uid: 7139 + - uid: 7132 components: - pos: 18.5,-31.5 parent: 2 type: Transform - - uid: 7140 + - uid: 7133 components: - pos: -32.5,-5.5 parent: 2 type: Transform - - uid: 7141 + - uid: 7134 components: - pos: 26.5,-12.5 parent: 2 type: Transform - - uid: 7142 + - uid: 7135 components: - pos: 28.5,-11.5 parent: 2 type: Transform - - uid: 7143 + - uid: 7136 components: - pos: 24.5,27.5 parent: 2 type: Transform - - uid: 7144 + - uid: 7137 components: - pos: 16.5,-31.5 parent: 2 type: Transform - - uid: 7145 + - uid: 7138 components: - pos: 14.5,-30.5 parent: 2 type: Transform - - uid: 7146 + - uid: 7139 components: - pos: 4.5,-23.5 parent: 2 type: Transform - - uid: 7147 + - uid: 7140 components: - pos: 21.5,20.5 parent: 2 type: Transform - - uid: 7148 + - uid: 7141 components: - pos: 18.5,20.5 parent: 2 type: Transform - - uid: 7149 + - uid: 7142 components: - pos: 26.5,34.5 parent: 2 type: Transform - - uid: 7150 + - uid: 7143 components: - pos: -6.5,25.5 parent: 2 type: Transform - - uid: 7151 + - uid: 7144 components: - pos: 25.5,27.5 parent: 2 type: Transform - - uid: 7152 + - uid: 7145 components: - pos: 13.5,23.5 parent: 2 type: Transform - - uid: 7153 + - uid: 7146 components: - pos: 13.5,24.5 parent: 2 type: Transform - - uid: 7154 + - uid: 7147 components: - pos: 20.5,15.5 parent: 2 type: Transform - - uid: 7155 + - uid: 7148 components: - pos: 15.5,22.5 parent: 2 type: Transform - - uid: 7156 + - uid: 7149 components: - pos: 14.5,22.5 parent: 2 type: Transform - - uid: 7157 + - uid: 7150 components: - pos: 0.5,25.5 parent: 2 type: Transform - - uid: 7158 + - uid: 7151 components: - pos: 19.5,15.5 parent: 2 type: Transform - uid: 7159 components: - - pos: -20.5,67.5 + - pos: 41.5,17.5 parent: 2 type: Transform - uid: 7160 components: - - pos: -19.5,67.5 + - pos: 41.5,14.5 parent: 2 type: Transform - uid: 7161 components: - - pos: -18.5,67.5 - parent: 2 - type: Transform - - uid: 7162 - components: - - pos: -17.5,67.5 + - pos: 39.5,14.5 parent: 2 type: Transform - uid: 7163 components: - - pos: -21.5,67.5 + - pos: 39.5,17.5 parent: 2 type: Transform - uid: 7164 components: - - pos: -29.5,67.5 - parent: 2 - type: Transform - - uid: 7165 - components: - - pos: -9.5,67.5 + - pos: 40.5,17.5 parent: 2 type: Transform - uid: 7166 components: - - pos: 41.5,17.5 - parent: 2 - type: Transform - - uid: 7167 - components: - - pos: 41.5,14.5 - parent: 2 - type: Transform - - uid: 7168 - components: - - pos: 39.5,14.5 - parent: 2 - type: Transform - - uid: 7169 - components: - - pos: -9.5,65.5 - parent: 2 - type: Transform - - uid: 7170 - components: - - pos: 39.5,17.5 + - pos: 40.5,14.5 parent: 2 type: Transform - uid: 7171 components: - - pos: 40.5,17.5 + - pos: 14.5,34.5 parent: 2 type: Transform - uid: 7172 components: - - pos: -9.5,64.5 + - pos: 15.5,34.5 parent: 2 type: Transform - uid: 7173 components: - - pos: 40.5,14.5 + - pos: 16.5,35.5 parent: 2 type: Transform - uid: 7174 components: - - pos: -9.5,66.5 + - pos: 16.5,36.5 parent: 2 type: Transform - uid: 7175 components: - - pos: -9.5,57.5 + - pos: 16.5,37.5 parent: 2 type: Transform - uid: 7176 components: - - pos: -25.5,67.5 + - pos: 19.5,34.5 parent: 2 type: Transform - uid: 7177 components: - - pos: -31.5,67.5 + - pos: 20.5,34.5 parent: 2 type: Transform - uid: 7178 components: - - pos: 14.5,34.5 + - pos: 21.5,34.5 parent: 2 type: Transform - uid: 7179 components: - - pos: 15.5,34.5 + - pos: 22.5,34.5 parent: 2 type: Transform - uid: 7180 components: - - pos: 16.5,35.5 + - pos: 23.5,34.5 parent: 2 type: Transform - uid: 7181 components: - - pos: 16.5,36.5 + - pos: 24.5,34.5 parent: 2 type: Transform - uid: 7182 components: - - pos: 16.5,37.5 + - pos: 23.5,36.5 parent: 2 type: Transform - uid: 7183 components: - - pos: 19.5,34.5 + - pos: 21.5,36.5 parent: 2 type: Transform - uid: 7184 components: - - pos: 20.5,34.5 + - pos: -3.5,26.5 parent: 2 type: Transform - uid: 7185 components: - - pos: 21.5,34.5 + - pos: -3.5,29.5 parent: 2 type: Transform - uid: 7186 components: - - pos: 22.5,34.5 + - pos: -3.5,33.5 parent: 2 type: Transform - uid: 7187 components: - - pos: 23.5,34.5 + - pos: 12.5,14.5 parent: 2 type: Transform - uid: 7188 components: - - pos: 24.5,34.5 + - pos: 12.5,12.5 parent: 2 type: Transform - uid: 7189 components: - - pos: 23.5,36.5 + - pos: -13.5,-32.5 parent: 2 type: Transform - uid: 7190 components: - - pos: 21.5,36.5 + - pos: -14.5,-31.5 parent: 2 type: Transform - uid: 7191 components: - - pos: -3.5,26.5 + - pos: -14.5,-30.5 parent: 2 type: Transform - uid: 7192 components: - - pos: -3.5,29.5 + - pos: -14.5,-29.5 parent: 2 type: Transform - uid: 7193 components: - - pos: -3.5,33.5 + - pos: -13.5,-28.5 parent: 2 type: Transform - uid: 7194 components: - - pos: 12.5,14.5 + - pos: 30.5,22.5 parent: 2 type: Transform - uid: 7195 components: - - pos: 12.5,12.5 + - pos: 16.5,-18.5 parent: 2 type: Transform - uid: 7196 components: - - pos: -13.5,-32.5 + - pos: 22.5,27.5 parent: 2 type: Transform - uid: 7197 components: - - pos: -14.5,-31.5 + - pos: -6.5,37.5 parent: 2 type: Transform - uid: 7198 components: - - pos: -14.5,-30.5 + - pos: -1.5,38.5 parent: 2 type: Transform - uid: 7199 components: - - pos: -14.5,-29.5 + - pos: 11.5,-30.5 parent: 2 type: Transform - uid: 7200 components: - - pos: -13.5,-28.5 + - pos: 6.5,-23.5 parent: 2 type: Transform - uid: 7201 components: - - pos: 30.5,22.5 + - pos: 22.5,12.5 parent: 2 type: Transform - uid: 7202 components: - - pos: 16.5,-18.5 + - pos: -1.5,-25.5 parent: 2 type: Transform - uid: 7203 components: - - pos: 22.5,27.5 + - pos: -0.5,-25.5 parent: 2 type: Transform - uid: 7204 components: - - pos: -6.5,37.5 + - pos: 0.5,-25.5 parent: 2 type: Transform - uid: 7205 components: - - pos: -1.5,38.5 + - pos: 9.5,-30.5 parent: 2 type: Transform - uid: 7206 components: - - pos: 11.5,-30.5 + - pos: 31.5,19.5 parent: 2 type: Transform - uid: 7207 components: - - pos: 6.5,-23.5 + - pos: 32.5,19.5 parent: 2 type: Transform - uid: 7208 components: - - pos: 22.5,12.5 + - pos: 25.5,-16.5 parent: 2 type: Transform - uid: 7209 components: - - pos: -1.5,-25.5 + - pos: 18.5,-17.5 parent: 2 type: Transform - uid: 7210 components: - - pos: -0.5,-25.5 + - pos: 19.5,-17.5 parent: 2 type: Transform - uid: 7211 components: - - pos: 0.5,-25.5 + - pos: -5.5,15.5 parent: 2 type: Transform - uid: 7212 components: - - pos: 9.5,-30.5 + - pos: 25.5,-17.5 parent: 2 type: Transform - uid: 7213 components: - - pos: 31.5,19.5 + - pos: -8.5,15.5 parent: 2 type: Transform - uid: 7214 components: - - pos: 32.5,19.5 + - pos: 17.5,12.5 parent: 2 type: Transform - uid: 7215 components: - - pos: 25.5,-16.5 + - pos: 5.5,-30.5 parent: 2 type: Transform - uid: 7216 components: - - pos: 18.5,-17.5 + - pos: 7.5,-18.5 parent: 2 type: Transform - uid: 7217 components: - - pos: 19.5,-17.5 + - pos: 7.5,-21.5 parent: 2 type: Transform - uid: 7218 components: - - pos: -5.5,15.5 + - pos: -25.5,30.5 parent: 2 type: Transform - uid: 7219 components: - - pos: 25.5,-17.5 + - pos: -36.5,31.5 parent: 2 type: Transform - uid: 7220 components: - - pos: -8.5,15.5 + - pos: -36.5,33.5 parent: 2 type: Transform - uid: 7221 components: - - pos: 17.5,12.5 + - pos: -34.5,25.5 parent: 2 type: Transform - uid: 7222 components: - - pos: 5.5,-30.5 + - pos: -36.5,30.5 parent: 2 type: Transform - uid: 7223 components: - - pos: 7.5,-18.5 + - pos: -34.5,26.5 parent: 2 type: Transform - uid: 7224 components: - - pos: 7.5,-21.5 + - pos: 18.5,21.5 parent: 2 type: Transform - uid: 7225 components: - - pos: -25.5,30.5 + - pos: -23.5,29.5 parent: 2 type: Transform - uid: 7226 components: - - pos: -36.5,31.5 + - pos: -28.5,-9.5 parent: 2 type: Transform - uid: 7227 components: - - pos: -36.5,33.5 + - pos: -27.5,-9.5 parent: 2 type: Transform - uid: 7228 components: - - pos: -34.5,25.5 + - pos: -0.5,38.5 parent: 2 type: Transform - uid: 7229 components: - - pos: -36.5,30.5 + - pos: -22.5,6.5 parent: 2 type: Transform - uid: 7230 components: - - pos: -34.5,26.5 + - pos: -18.5,4.5 parent: 2 type: Transform - uid: 7231 components: - - pos: 18.5,21.5 + - pos: -21.5,-8.5 parent: 2 type: Transform - uid: 7232 components: - - pos: -23.5,29.5 + - pos: -34.5,-9.5 parent: 2 type: Transform - uid: 7233 components: - - pos: -28.5,-9.5 + - pos: -30.5,-24.5 parent: 2 type: Transform - uid: 7234 components: - - pos: -27.5,-9.5 + - pos: -30.5,-23.5 parent: 2 type: Transform - uid: 7235 components: - - pos: -0.5,38.5 + - pos: -30.5,-19.5 parent: 2 type: Transform - uid: 7236 components: - - pos: -22.5,6.5 + - pos: -30.5,-18.5 parent: 2 type: Transform - uid: 7237 components: - - pos: -18.5,4.5 + - pos: -30.5,-16.5 parent: 2 type: Transform - uid: 7238 components: - - pos: -21.5,-8.5 + - pos: -30.5,-15.5 parent: 2 type: Transform - uid: 7239 components: - - pos: -34.5,-9.5 + - pos: -21.5,-13.5 parent: 2 type: Transform - uid: 7240 components: - - pos: -30.5,-24.5 + - pos: -21.5,-12.5 parent: 2 type: Transform - uid: 7241 components: - - pos: -30.5,-23.5 + - pos: -21.5,-11.5 parent: 2 type: Transform - uid: 7242 components: - - pos: -30.5,-19.5 + - pos: -23.5,-14.5 parent: 2 type: Transform - uid: 7243 components: - - pos: -30.5,-18.5 + - pos: -24.5,-14.5 parent: 2 type: Transform - uid: 7244 components: - - pos: -30.5,-16.5 + - pos: -24.5,-25.5 parent: 2 type: Transform - uid: 7245 components: - - pos: -30.5,-15.5 + - pos: -15.5,-16.5 parent: 2 type: Transform - uid: 7246 components: - - pos: -21.5,-13.5 + - pos: -14.5,-16.5 parent: 2 type: Transform - uid: 7247 components: - - pos: -21.5,-12.5 + - pos: -2.5,14.5 parent: 2 type: Transform - uid: 7248 components: - - pos: -21.5,-11.5 + - pos: -0.5,14.5 parent: 2 type: Transform - uid: 7249 components: - - pos: -23.5,-14.5 + - pos: 1.5,14.5 parent: 2 type: Transform - uid: 7250 components: - - pos: -24.5,-14.5 + - pos: 3.5,14.5 parent: 2 type: Transform - - uid: 7251 + - uid: 7260 components: - - pos: -24.5,-25.5 + - pos: 33.5,29.5 parent: 2 type: Transform - - uid: 7252 + - uid: 7261 components: - - pos: -15.5,-16.5 + - pos: 33.5,28.5 parent: 2 type: Transform - - uid: 7253 + - uid: 7262 components: - - pos: -14.5,-16.5 + - pos: -8.5,37.5 parent: 2 type: Transform - - uid: 7254 + - uid: 7263 components: - - pos: -2.5,14.5 + - pos: -9.5,41.5 parent: 2 type: Transform - - uid: 7255 + - uid: 7264 components: - - pos: -0.5,14.5 + - pos: -24.5,29.5 parent: 2 type: Transform - - uid: 7256 + - uid: 7265 components: - - pos: 1.5,14.5 + - pos: 24.5,-31.5 parent: 2 type: Transform - - uid: 7257 + - uid: 7266 components: - - pos: 3.5,14.5 + - pos: 25.5,-31.5 parent: 2 type: Transform - - uid: 7258 + - uid: 7267 components: - - pos: -30.5,67.5 + - pos: 26.5,-31.5 parent: 2 type: Transform - - uid: 7259 + - uid: 7269 components: - - pos: -31.5,66.5 + - pos: 39.5,23.5 parent: 2 type: Transform - - uid: 7260 + - uid: 7270 components: - - pos: -24.5,67.5 + - pos: 39.5,24.5 parent: 2 type: Transform - - uid: 7261 + - uid: 7271 components: - - pos: -27.5,67.5 + - pos: 39.5,25.5 parent: 2 type: Transform - - uid: 7262 + - uid: 7272 components: - - pos: -26.5,67.5 + - pos: 37.5,27.5 parent: 2 type: Transform - - uid: 7263 + - uid: 7273 components: - - pos: -31.5,65.5 + - pos: 36.5,27.5 parent: 2 type: Transform - - uid: 7264 + - uid: 7274 components: - - pos: -15.5,67.5 + - pos: 35.5,27.5 parent: 2 type: Transform - - uid: 7265 + - uid: 7310 components: - - pos: -12.5,67.5 + - pos: -5.5,-43.5 parent: 2 type: Transform - - uid: 7266 + - uid: 7311 components: - - pos: -11.5,67.5 + - pos: -4.5,-43.5 parent: 2 type: Transform - - uid: 7267 + - uid: 7312 components: - - pos: 33.5,29.5 + - pos: -3.5,-43.5 parent: 2 type: Transform - - uid: 7268 + - uid: 7313 components: - - pos: 33.5,28.5 + - pos: -2.5,-43.5 parent: 2 type: Transform - - uid: 7269 + - uid: 7314 components: - - pos: -8.5,37.5 + - pos: 5.5,-41.5 parent: 2 type: Transform - - uid: 7270 + - uid: 7315 components: - - pos: -9.5,41.5 + - pos: 6.5,-41.5 parent: 2 type: Transform - - uid: 7271 + - uid: 7316 components: - - pos: -24.5,29.5 + - pos: 7.5,-41.5 parent: 2 type: Transform - - uid: 7272 + - uid: 7317 components: - - pos: 24.5,-31.5 + - pos: 8.5,-41.5 parent: 2 type: Transform - - uid: 7273 + - uid: 7318 components: - - pos: 25.5,-31.5 + - pos: 16.5,-42.5 parent: 2 type: Transform - - uid: 7274 + - uid: 7319 components: - - pos: 26.5,-31.5 + - pos: 17.5,-42.5 parent: 2 type: Transform - - uid: 7275 + - uid: 7320 components: - - pos: -9.5,62.5 + - pos: 18.5,-42.5 parent: 2 type: Transform - - uid: 7276 + - uid: 7321 components: - - pos: 39.5,23.5 + - pos: 19.5,-42.5 parent: 2 type: Transform - - uid: 7277 + - uid: 7322 components: - - pos: 39.5,24.5 + - pos: 15.5,-42.5 parent: 2 type: Transform - - uid: 7278 + - uid: 7323 components: - - pos: 39.5,25.5 + - pos: -11.5,32.5 parent: 2 type: Transform - - uid: 7279 + - uid: 7324 components: - - pos: 37.5,27.5 + - pos: -18.5,33.5 parent: 2 type: Transform - - uid: 7280 + - uid: 7325 components: - - pos: 36.5,27.5 + - pos: -18.5,34.5 parent: 2 type: Transform - - uid: 7281 + - uid: 7326 components: - - pos: 35.5,27.5 + - pos: -18.5,35.5 parent: 2 type: Transform - - uid: 7282 + - uid: 7327 components: - - pos: 41.5,39.5 + - pos: -14.5,34.5 parent: 2 type: Transform - - uid: 7283 + - uid: 7328 components: - - pos: 42.5,39.5 + - pos: -13.5,34.5 parent: 2 type: Transform - - uid: 7284 + - uid: 7329 components: - - pos: 43.5,39.5 + - pos: -12.5,34.5 parent: 2 type: Transform - - uid: 7285 + - uid: 7330 components: - - pos: 45.5,39.5 + - pos: -9.5,25.5 parent: 2 type: Transform - - uid: 7286 + - uid: 7331 components: - - pos: 46.5,39.5 + - pos: -10.5,25.5 parent: 2 type: Transform - - uid: 7287 + - uid: 7332 components: - - pos: 47.5,39.5 + - pos: 28.5,36.5 parent: 2 type: Transform - - uid: 7288 + - uid: 7333 components: - - pos: 48.5,39.5 + - pos: 40.5,39.5 parent: 2 type: Transform - - uid: 7289 + - uid: 7344 components: - - pos: 49.5,39.5 + - pos: -15.5,-37.5 parent: 2 type: Transform - - uid: 7290 + - uid: 7345 components: - - pos: 53.5,39.5 + - pos: -14.5,-37.5 parent: 2 type: Transform - - uid: 7291 + - uid: 7346 components: - - pos: 54.5,39.5 + - pos: -13.5,-37.5 parent: 2 type: Transform - - uid: 7292 + - uid: 7347 components: - - pos: 54.5,38.5 + - pos: -12.5,-37.5 parent: 2 type: Transform - - uid: 7293 + - uid: 7348 components: - - pos: 61.5,33.5 + - pos: -7.5,-38.5 parent: 2 type: Transform - - uid: 7294 + - uid: 7349 components: - - pos: 61.5,32.5 + - pos: -6.5,-38.5 parent: 2 type: Transform - - uid: 7295 + - uid: 7350 components: - - pos: 61.5,31.5 + - pos: -5.5,-38.5 parent: 2 type: Transform - - uid: 7296 + - uid: 7351 components: - - pos: 61.5,27.5 + - pos: -4.5,-38.5 parent: 2 type: Transform - - uid: 7297 + - uid: 7352 components: - - pos: 61.5,26.5 + - pos: -3.5,-38.5 parent: 2 type: Transform - - uid: 7298 + - uid: 7353 components: - - pos: 62.5,26.5 + - pos: 0.5,-38.5 parent: 2 type: Transform - - uid: 7299 + - uid: 7354 components: - - pos: 62.5,25.5 + - pos: 1.5,-38.5 parent: 2 type: Transform - - uid: 7300 + - uid: 7355 components: - - pos: 62.5,22.5 + - pos: 2.5,-38.5 parent: 2 type: Transform - - uid: 7301 + - uid: 7356 components: - - pos: 62.5,19.5 + - pos: 3.5,-38.5 parent: 2 type: Transform - - uid: 7302 + - uid: 7357 components: - - pos: 57.5,14.5 + - pos: 12.5,-36.5 parent: 2 type: Transform - - uid: 7303 + - uid: 7358 components: - - pos: 57.5,13.5 + - pos: 13.5,-36.5 parent: 2 type: Transform - - uid: 7304 + - uid: 7359 components: - - pos: 57.5,12.5 + - pos: 14.5,-36.5 parent: 2 type: Transform - - uid: 7305 + - uid: 7360 components: - - pos: 57.5,11.5 + - pos: 15.5,-36.5 parent: 2 type: Transform - - uid: 7306 + - uid: 7361 + components: + - pos: 11.5,-36.5 + parent: 2 + type: Transform + - uid: 7362 + components: + - pos: 10.5,-36.5 + parent: 2 + type: Transform + - uid: 7363 + components: + - pos: 19.5,-36.5 + parent: 2 + type: Transform + - uid: 7364 + components: + - pos: 20.5,-36.5 + parent: 2 + type: Transform + - uid: 7365 + components: + - pos: 21.5,-36.5 + parent: 2 + type: Transform + - uid: 7366 + components: + - pos: 22.5,-36.5 + parent: 2 + type: Transform + - uid: 7367 + components: + - pos: 23.5,-36.5 + parent: 2 + type: Transform + - uid: 7368 components: - - pos: -9.5,56.5 + - pos: 24.5,-36.5 + parent: 2 + type: Transform + - uid: 7369 + components: + - pos: -32.5,-15.5 + parent: 2 + type: Transform + - uid: 7370 + components: + - pos: -32.5,-16.5 + parent: 2 + type: Transform + - uid: 7371 + components: + - pos: -32.5,-17.5 parent: 2 type: Transform - - uid: 7307 + - uid: 7372 components: - - pos: -9.5,55.5 + - pos: -32.5,-18.5 parent: 2 type: Transform - - uid: 7308 + - uid: 7373 components: - - pos: -9.5,54.5 + - pos: -32.5,-19.5 parent: 2 type: Transform - - uid: 7309 + - uid: 7374 components: - - pos: -9.5,60.5 + - pos: -32.5,-20.5 parent: 2 type: Transform - - uid: 7310 + - uid: 7375 components: - - pos: -32.5,53.5 + - pos: 27.5,34.5 parent: 2 type: Transform - - uid: 7311 + - uid: 7376 components: - - pos: -32.5,52.5 + - pos: 28.5,34.5 parent: 2 type: Transform - - uid: 7312 + - uid: 7377 components: - - pos: -33.5,52.5 + - pos: 31.5,34.5 parent: 2 type: Transform - - uid: 7313 + - uid: 7378 components: - - pos: -9.5,59.5 + - pos: 32.5,34.5 parent: 2 type: Transform - - uid: 7314 + - uid: 7379 components: - - pos: -9.5,61.5 + - pos: 33.5,34.5 parent: 2 type: Transform - - uid: 7315 + - uid: 7380 components: - - pos: -35.5,49.5 + - pos: 33.5,33.5 parent: 2 type: Transform - - uid: 7316 + - uid: 7381 components: - - pos: -36.5,49.5 + - pos: 33.5,32.5 parent: 2 type: Transform - - uid: 7317 + - uid: 7382 components: - - pos: -34.5,50.5 + - pos: 33.5,31.5 parent: 2 type: Transform - - uid: 7318 + - uid: 7383 components: - - pos: -5.5,-43.5 + - pos: 31.5,30.5 parent: 2 type: Transform - - uid: 7319 + - uid: 7384 components: - - pos: -4.5,-43.5 + - pos: 32.5,30.5 parent: 2 type: Transform - - uid: 7320 + - uid: 7385 components: - - pos: -3.5,-43.5 + - pos: 30.5,33.5 parent: 2 type: Transform - - uid: 7321 + - uid: 7386 components: - - pos: -2.5,-43.5 + - pos: 30.5,32.5 parent: 2 type: Transform - - uid: 7322 + - uid: 7387 components: - - pos: 5.5,-41.5 + - pos: 30.5,31.5 parent: 2 type: Transform - - uid: 7323 + - uid: 7389 components: - - pos: 6.5,-41.5 + - pos: -36.5,34.5 parent: 2 type: Transform - - uid: 7324 + - uid: 7390 components: - - pos: 7.5,-41.5 + - pos: -34.5,36.5 parent: 2 type: Transform - - uid: 7325 + - uid: 7391 components: - - pos: 8.5,-41.5 + - pos: -33.5,36.5 parent: 2 type: Transform - - uid: 7326 + - uid: 7392 components: - - pos: 16.5,-42.5 + - pos: -31.5,36.5 parent: 2 type: Transform - - uid: 7327 + - uid: 7393 components: - - pos: 17.5,-42.5 + - pos: -30.5,36.5 parent: 2 type: Transform - - uid: 7328 + - uid: 7394 components: - - pos: 18.5,-42.5 + - pos: -29.5,21.5 parent: 2 type: Transform - - uid: 7329 + - uid: 7395 components: - - pos: 19.5,-42.5 + - pos: -30.5,21.5 parent: 2 type: Transform - - uid: 7330 + - uid: 7396 components: - - pos: 15.5,-42.5 + - pos: -5.5,41.5 parent: 2 type: Transform - - uid: 7331 + - uid: 7397 components: - - pos: -11.5,32.5 + - pos: 0.5,34.5 parent: 2 type: Transform - - uid: 7332 + - uid: 7398 components: - - pos: -18.5,33.5 + - pos: -34.5,0.5 parent: 2 type: Transform - - uid: 7333 + - uid: 7399 components: - - pos: -18.5,34.5 + - pos: -34.5,-5.5 parent: 2 type: Transform - - uid: 7334 + - uid: 7400 components: - - pos: -18.5,35.5 + - pos: -32.5,0.5 parent: 2 type: Transform - - uid: 7335 + - uid: 7401 components: - - pos: -14.5,34.5 + - pos: -34.5,-7.5 parent: 2 type: Transform - - uid: 7336 + - uid: 7402 components: - - pos: -13.5,34.5 + - pos: -32.5,-7.5 parent: 2 type: Transform - - uid: 7337 + - uid: 7403 components: - - pos: -12.5,34.5 + - pos: -34.5,2.5 parent: 2 type: Transform - - uid: 7338 + - uid: 7404 components: - - pos: -9.5,25.5 + - pos: -34.5,-1.5 parent: 2 type: Transform - - uid: 7339 + - uid: 7405 components: - - pos: -10.5,25.5 + - pos: 29.5,6.5 parent: 2 type: Transform - - uid: 7340 + - uid: 7406 components: - - pos: 28.5,36.5 + - pos: 29.5,7.5 parent: 2 type: Transform - - uid: 7341 + - uid: 7407 components: - - pos: 40.5,39.5 + - pos: 26.5,-15.5 parent: 2 type: Transform - - uid: 7342 + - uid: 7408 components: - - pos: 49.5,12.5 + - pos: 26.5,-16.5 parent: 2 type: Transform - - uid: 7343 + - uid: 7409 components: - - pos: 50.5,12.5 + - pos: 26.5,-17.5 parent: 2 type: Transform - - uid: 7344 + - uid: 7410 components: - - pos: 51.5,12.5 + - pos: -32.5,2.5 parent: 2 type: Transform - - uid: 7345 + - uid: 7411 components: - - pos: 52.5,12.5 + - pos: -36.5,2.5 parent: 2 type: Transform - - uid: 7346 + - uid: 7412 components: - - pos: 60.5,12.5 + - pos: -38.5,2.5 parent: 2 type: Transform - - uid: 7347 + - uid: 7413 components: - - pos: 61.5,12.5 + - pos: -40.5,2.5 parent: 2 type: Transform - - uid: 7348 + - uid: 7414 components: - - pos: 62.5,12.5 + - pos: -42.5,2.5 parent: 2 type: Transform - - uid: 7349 + - uid: 7415 components: - - pos: 62.5,13.5 + - pos: -42.5,0.5 parent: 2 type: Transform - - uid: 7350 + - uid: 7416 components: - - pos: 62.5,14.5 + - pos: -40.5,0.5 parent: 2 type: Transform - - uid: 7351 + - uid: 7417 components: - - pos: 62.5,15.5 + - pos: -38.5,0.5 parent: 2 type: Transform - - uid: 7352 + - uid: 7418 components: - - pos: -15.5,-37.5 + - pos: -36.5,0.5 parent: 2 type: Transform - - uid: 7353 + - uid: 7419 components: - - pos: -14.5,-37.5 + - pos: -36.5,-1.5 parent: 2 type: Transform - - uid: 7354 + - uid: 7420 components: - - pos: -13.5,-37.5 + - pos: -38.5,-1.5 parent: 2 type: Transform - - uid: 7355 + - uid: 7421 components: - - pos: -12.5,-37.5 + - pos: -40.5,-1.5 parent: 2 type: Transform - - uid: 7356 + - uid: 7422 components: - - pos: -7.5,-38.5 + - pos: -42.5,-1.5 parent: 2 type: Transform - - uid: 7357 + - uid: 7423 components: - - pos: -6.5,-38.5 + - pos: -42.5,-5.5 parent: 2 type: Transform - - uid: 7358 + - uid: 7424 components: - - pos: -5.5,-38.5 + - pos: -40.5,-5.5 parent: 2 type: Transform - - uid: 7359 + - uid: 7425 components: - - pos: -4.5,-38.5 + - pos: -40.5,-7.5 parent: 2 type: Transform - - uid: 7360 + - uid: 7426 components: - - pos: -3.5,-38.5 + - pos: -42.5,-7.5 parent: 2 type: Transform - - uid: 7361 + - uid: 7427 components: - - pos: 0.5,-38.5 + - pos: -42.5,-9.5 parent: 2 type: Transform - - uid: 7362 + - uid: 7428 components: - - pos: 1.5,-38.5 + - pos: -40.5,-9.5 parent: 2 type: Transform - - uid: 7363 + - uid: 7429 components: - - pos: 2.5,-38.5 + - pos: -38.5,-9.5 parent: 2 type: Transform - - uid: 7364 + - uid: 7430 components: - - pos: 3.5,-38.5 + - pos: -38.5,-7.5 parent: 2 type: Transform - - uid: 7365 + - uid: 7431 components: - - pos: 12.5,-36.5 + - pos: -38.5,-5.5 parent: 2 type: Transform - - uid: 7366 + - uid: 7432 components: - - pos: 13.5,-36.5 + - pos: -36.5,-5.5 parent: 2 type: Transform - - uid: 7367 + - uid: 7433 components: - - pos: 14.5,-36.5 + - pos: -36.5,-7.5 parent: 2 type: Transform - - uid: 7368 + - uid: 7434 components: - - pos: 15.5,-36.5 + - pos: -36.5,-9.5 parent: 2 type: Transform - - uid: 7369 + - uid: 7435 components: - - pos: 11.5,-36.5 + - pos: -2.5,-6.5 parent: 2 type: Transform - - uid: 7370 + - uid: 7436 components: - - pos: 10.5,-36.5 + - pos: -1.5,-6.5 parent: 2 type: Transform - - uid: 7371 + - uid: 7437 components: - - pos: 19.5,-36.5 + - pos: -0.5,-6.5 parent: 2 type: Transform - - uid: 7372 + - uid: 7438 components: - - pos: 20.5,-36.5 + - pos: 1.5,-6.5 parent: 2 type: Transform - - uid: 7373 + - uid: 7439 components: - - pos: 21.5,-36.5 + - pos: 2.5,-7.5 parent: 2 type: Transform - - uid: 7374 + - uid: 7440 components: - - pos: 22.5,-36.5 + - pos: 2.5,-8.5 parent: 2 type: Transform - - uid: 7375 + - uid: 7441 components: - - pos: 23.5,-36.5 + - pos: 5.5,-1.5 parent: 2 type: Transform - - uid: 7376 + - uid: 7442 components: - - pos: 24.5,-36.5 + - pos: 7.5,36.5 parent: 2 type: Transform - - uid: 7377 + - uid: 7443 components: - - pos: -32.5,-15.5 + - pos: 29.5,-6.5 parent: 2 type: Transform - - uid: 7378 + - uid: 7444 components: - - pos: -32.5,-16.5 + - pos: 7.5,14.5 parent: 2 type: Transform - - uid: 7379 + - uid: 7445 components: - - pos: -32.5,-17.5 + - pos: 18.5,-3.5 parent: 2 type: Transform - - uid: 7380 + - uid: 7446 components: - - pos: -32.5,-18.5 + - pos: 5.5,36.5 parent: 2 type: Transform - - uid: 7381 + - uid: 7447 components: - - pos: -32.5,-19.5 + - pos: 32.5,0.5 parent: 2 type: Transform - - uid: 7382 + - uid: 7448 components: - - pos: -32.5,-20.5 + - pos: 17.5,-3.5 parent: 2 type: Transform - - uid: 7383 + - uid: 7449 components: - - pos: 27.5,34.5 + - pos: 4.5,36.5 parent: 2 type: Transform - - uid: 7384 + - uid: 7450 components: - - pos: 28.5,34.5 + - pos: 31.5,-2.5 parent: 2 type: Transform - - uid: 7385 + - uid: 7451 components: - - pos: 31.5,34.5 + - pos: 10.5,36.5 parent: 2 type: Transform - - uid: 7386 + - uid: 7452 components: - - pos: 32.5,34.5 + - pos: -28.5,18.5 parent: 2 type: Transform - - uid: 7387 + - uid: 7453 components: - - pos: 33.5,34.5 + - pos: 3.5,40.5 parent: 2 type: Transform - - uid: 7388 + - uid: 7454 components: - - pos: 33.5,33.5 + - pos: 4.5,40.5 parent: 2 type: Transform - - uid: 7389 + - uid: 7455 components: - - pos: 33.5,32.5 + - pos: 5.5,40.5 parent: 2 type: Transform - - uid: 7390 + - uid: 7456 components: - - pos: 33.5,31.5 + - pos: -29.5,4.5 parent: 2 type: Transform - - uid: 7391 + - uid: 7457 components: - - pos: 31.5,30.5 + - pos: -29.5,5.5 parent: 2 type: Transform - - uid: 7392 + - uid: 7458 components: - - pos: 32.5,30.5 + - pos: -30.5,6.5 parent: 2 type: Transform - - uid: 7393 + - uid: 7459 components: - - pos: 30.5,33.5 + - pos: -31.5,6.5 parent: 2 type: Transform - - uid: 7394 + - uid: 7460 components: - - pos: 30.5,32.5 + - pos: -31.5,6.5 parent: 2 type: Transform - - uid: 7395 + - uid: 7461 components: - - pos: 30.5,31.5 + - pos: -31.5,8.5 parent: 2 type: Transform - - uid: 7396 + - uid: 7462 components: - - pos: -31.5,55.5 + - pos: -30.5,8.5 parent: 2 type: Transform - - uid: 7397 + - uid: 7463 components: - - pos: -36.5,34.5 + - pos: -29.5,10.5 parent: 2 type: Transform - - uid: 7398 + - uid: 7464 components: - - pos: -34.5,36.5 + - pos: -29.5,11.5 parent: 2 type: Transform - - uid: 7399 + - uid: 7465 components: - - pos: -33.5,36.5 + - pos: -30.5,13.5 parent: 2 type: Transform - - uid: 7400 + - uid: 7466 components: - - pos: -31.5,36.5 + - pos: -31.5,13.5 parent: 2 type: Transform - - uid: 7401 + - uid: 7467 components: - - pos: -30.5,36.5 + - pos: -31.5,15.5 parent: 2 type: Transform - - uid: 7402 + - uid: 7468 components: - - pos: -29.5,21.5 + - pos: -30.5,15.5 parent: 2 type: Transform - - uid: 7403 +- proto: GrilleBroken + entities: + - uid: 3246 components: - - pos: -30.5,21.5 + - pos: 54.5,23.5 parent: 2 type: Transform - - uid: 7404 + - uid: 3261 components: - - pos: -5.5,41.5 + - pos: 53.5,21.5 parent: 2 type: Transform - - uid: 7405 + - uid: 7292 components: - - pos: 0.5,34.5 + - pos: 55.5,25.5 parent: 2 type: Transform - - uid: 7406 + - uid: 7469 components: - - pos: -34.5,0.5 + - rot: 3.141592653589793 rad + pos: 22.5,8.5 parent: 2 type: Transform - - uid: 7407 + - uid: 7470 components: - - pos: -34.5,-5.5 + - rot: 3.141592653589793 rad + pos: 30.5,23.5 parent: 2 type: Transform - - uid: 7408 + - uid: 7471 components: - - pos: -32.5,0.5 + - pos: -28.5,30.5 parent: 2 type: Transform - - uid: 7409 + - uid: 7472 components: - - pos: -34.5,-7.5 + - rot: 3.141592653589793 rad + pos: -28.5,30.5 parent: 2 type: Transform - - uid: 7410 + - uid: 7480 components: - - pos: -32.5,-7.5 + - rot: 1.5707963267948966 rad + pos: 39.5,39.5 parent: 2 type: Transform - - uid: 7411 + - uid: 7498 components: - - pos: -34.5,2.5 + - rot: 1.5707963267948966 rad + pos: 14.5,-42.5 parent: 2 type: Transform - - uid: 7412 + - uid: 7499 components: - - pos: -34.5,-1.5 + - rot: -1.5707963267948966 rad + pos: 20.5,-42.5 parent: 2 type: Transform - - uid: 7413 + - uid: 7500 components: - - pos: 29.5,6.5 + - rot: 3.141592653589793 rad + pos: -32.5,20.5 parent: 2 type: Transform - - uid: 7414 + - uid: 7509 components: - - pos: 29.5,7.5 + - rot: -1.5707963267948966 rad + pos: 25.5,-36.5 parent: 2 type: Transform - - uid: 7415 + - uid: 7510 components: - - pos: 26.5,-15.5 + - rot: -1.5707963267948966 rad + pos: 16.5,-36.5 parent: 2 type: Transform - - uid: 7416 + - uid: 7511 components: - - pos: 26.5,-16.5 + - rot: 3.141592653589793 rad + pos: 10.5,-37.5 parent: 2 type: Transform - - uid: 7417 + - uid: 7512 components: - - pos: 26.5,-17.5 + - rot: 1.5707963267948966 rad + pos: 18.5,-36.5 parent: 2 type: Transform - - uid: 7418 + - uid: 7513 components: - - pos: -32.5,2.5 + - rot: -1.5707963267948966 rad + pos: 4.5,-38.5 parent: 2 type: Transform - - uid: 7419 + - uid: 7514 components: - - pos: -36.5,2.5 + - rot: -1.5707963267948966 rad + pos: -2.5,-38.5 parent: 2 type: Transform - - uid: 7420 + - uid: 7515 components: - - pos: -38.5,2.5 + - rot: -1.5707963267948966 rad + pos: -11.5,-37.5 parent: 2 type: Transform - - uid: 7421 + - uid: 7516 components: - - pos: -40.5,2.5 + - rot: 1.5707963267948966 rad + pos: -16.5,-37.5 parent: 2 type: Transform - - uid: 7422 + - uid: 7517 components: - - pos: -42.5,2.5 + - rot: 1.5707963267948966 rad + pos: -8.5,-38.5 parent: 2 type: Transform - - uid: 7423 + - uid: 7518 components: - - pos: -42.5,0.5 + - rot: 1.5707963267948966 rad + pos: -0.5,-38.5 parent: 2 type: Transform - - uid: 7424 + - uid: 7519 components: - - pos: -40.5,0.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-43.5 parent: 2 type: Transform - - uid: 7425 + - uid: 7520 components: - - pos: -38.5,0.5 + - rot: -1.5707963267948966 rad + pos: -1.5,-43.5 parent: 2 type: Transform - - uid: 7426 + - uid: 7521 components: - - pos: -36.5,0.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-41.5 parent: 2 type: Transform - - uid: 7427 + - uid: 7522 components: - - pos: -36.5,-1.5 + - rot: -1.5707963267948966 rad + pos: 9.5,-41.5 parent: 2 type: Transform - - uid: 7428 + - uid: 7523 components: - - pos: -38.5,-1.5 + - rot: 3.141592653589793 rad + pos: -32.5,-21.5 parent: 2 type: Transform - - uid: 7429 + - uid: 7524 components: - - pos: -40.5,-1.5 + - pos: -32.5,-14.5 parent: 2 type: Transform - - uid: 7430 + - uid: 7529 components: - - pos: -42.5,-1.5 + - rot: -1.5707963267948966 rad + pos: 24.5,9.5 parent: 2 type: Transform - - uid: 7431 + - uid: 7530 components: - - pos: -42.5,-5.5 + - rot: 1.5707963267948966 rad + pos: 25.5,9.5 parent: 2 type: Transform - - uid: 7432 + - uid: 7531 components: - - pos: -40.5,-5.5 + - pos: 17.5,4.5 parent: 2 type: Transform - - uid: 7433 +- proto: GrilleSpawner + entities: + - uid: 838 components: - - pos: -40.5,-7.5 + - pos: 42.5,38.5 parent: 2 type: Transform - - uid: 7434 + - uid: 3014 components: - - pos: -42.5,-7.5 + - pos: -10.5,58.5 parent: 2 type: Transform - - uid: 7435 + - uid: 3035 components: - - pos: -42.5,-9.5 + - pos: -26.5,46.5 parent: 2 type: Transform - - uid: 7436 + - uid: 3040 components: - - pos: -40.5,-9.5 + - pos: -10.5,64.5 parent: 2 type: Transform - - uid: 7437 + - uid: 3045 components: - - pos: -38.5,-9.5 + - pos: -10.5,54.5 parent: 2 type: Transform - - uid: 7438 + - uid: 3069 components: - - pos: -38.5,-7.5 + - pos: -27.5,46.5 parent: 2 type: Transform - - uid: 7439 + - uid: 3073 components: - - pos: -38.5,-5.5 + - pos: -10.5,55.5 parent: 2 type: Transform - - uid: 7440 + - uid: 3082 components: - - pos: -36.5,-5.5 + - pos: -23.5,46.5 parent: 2 type: Transform - - uid: 7441 + - uid: 3088 components: - - pos: -36.5,-7.5 + - pos: -10.5,60.5 parent: 2 type: Transform - - uid: 7442 + - uid: 3094 components: - - pos: -36.5,-9.5 + - pos: -19.5,65.5 parent: 2 type: Transform - - uid: 7443 + - uid: 3162 components: - - pos: -2.5,-6.5 + - pos: -10.5,56.5 parent: 2 type: Transform - - uid: 7444 + - uid: 3189 components: - - pos: -1.5,-6.5 + - pos: 58.5,13.5 parent: 2 type: Transform - - uid: 7445 + - uid: 3190 components: - - pos: -0.5,-6.5 + - pos: 55.5,6.5 parent: 2 type: Transform - - uid: 7446 + - uid: 3193 components: - - pos: 1.5,-6.5 + - pos: 43.5,10.5 parent: 2 type: Transform - - uid: 7447 + - uid: 3194 components: - - pos: 2.5,-7.5 + - pos: 57.5,6.5 parent: 2 type: Transform - - uid: 7448 + - uid: 3195 components: - - pos: 2.5,-8.5 + - pos: 59.5,16.5 parent: 2 type: Transform - - uid: 7449 + - uid: 3198 components: - - pos: 5.5,-1.5 + - pos: -10.5,63.5 parent: 2 type: Transform - - uid: 7450 + - uid: 3213 components: - - pos: 7.5,36.5 + - pos: 48.5,26.5 parent: 2 type: Transform - - uid: 7451 + - uid: 3214 components: - - pos: 29.5,-6.5 + - pos: 46.5,26.5 parent: 2 type: Transform - - uid: 7452 + - uid: 3215 components: - - pos: 7.5,14.5 + - pos: 44.5,26.5 parent: 2 type: Transform - - uid: 7453 + - uid: 3232 components: - - pos: 18.5,-3.5 + - pos: 52.5,6.5 parent: 2 type: Transform - - uid: 7454 + - uid: 3237 components: - - pos: 5.5,36.5 + - pos: 43.5,6.5 parent: 2 type: Transform - - uid: 7455 + - uid: 3238 components: - - pos: 32.5,0.5 + - pos: 58.5,6.5 parent: 2 type: Transform - - uid: 7456 + - uid: 3239 components: - - pos: 17.5,-3.5 + - pos: 57.5,26.5 parent: 2 type: Transform - - uid: 7457 + - uid: 3242 components: - - pos: 4.5,36.5 + - pos: 43.5,8.5 parent: 2 type: Transform - - uid: 7458 + - uid: 3243 components: - - pos: 31.5,-2.5 + - pos: 45.5,6.5 parent: 2 type: Transform - - uid: 7459 + - uid: 3244 components: - - pos: 10.5,36.5 + - pos: 54.5,26.5 parent: 2 type: Transform - - uid: 7460 + - uid: 3247 components: - - pos: -28.5,18.5 + - pos: 58.5,8.5 parent: 2 type: Transform - - uid: 7461 + - uid: 3248 components: - - pos: 3.5,40.5 + - pos: 47.5,6.5 parent: 2 type: Transform - - uid: 7462 + - uid: 3259 components: - - pos: 4.5,40.5 + - pos: 58.5,17.5 parent: 2 type: Transform - - uid: 7463 + - uid: 3260 components: - - pos: 5.5,40.5 + - pos: 58.5,15.5 parent: 2 type: Transform - - uid: 7464 + - uid: 3265 components: - - pos: -29.5,4.5 + - pos: -10.5,59.5 parent: 2 type: Transform - - uid: 7465 + - uid: 3266 components: - - pos: -29.5,5.5 + - pos: -10.5,57.5 parent: 2 type: Transform - - uid: 7466 + - uid: 3819 components: - - pos: -30.5,6.5 + - pos: -30.5,65.5 parent: 2 type: Transform - - uid: 7467 + - uid: 3820 components: - - pos: -31.5,6.5 + - pos: 58.5,25.5 parent: 2 type: Transform - - uid: 7468 + - uid: 3827 components: - - pos: -31.5,6.5 + - pos: -26.5,66.5 parent: 2 type: Transform - - uid: 7469 + - uid: 3871 components: - - pos: -31.5,8.5 + - pos: -30.5,51.5 parent: 2 type: Transform - - uid: 7470 + - uid: 3873 components: - - pos: -30.5,8.5 + - pos: -30.5,52.5 parent: 2 type: Transform - - uid: 7471 + - uid: 3879 components: - - pos: -29.5,10.5 + - pos: -30.5,57.5 parent: 2 type: Transform - - uid: 7472 + - uid: 3887 components: - - pos: -29.5,11.5 + - pos: -27.5,50.5 parent: 2 type: Transform - - uid: 7473 + - uid: 3898 components: - - pos: -30.5,13.5 + - pos: -30.5,58.5 parent: 2 type: Transform - - uid: 7474 + - uid: 3899 components: - - pos: -31.5,13.5 + - pos: -30.5,59.5 parent: 2 type: Transform - - uid: 7475 + - uid: 3901 components: - - pos: -31.5,15.5 + - pos: -30.5,53.5 parent: 2 type: Transform - - uid: 7476 + - uid: 3909 components: - - pos: -30.5,15.5 + - pos: -27.5,44.5 parent: 2 type: Transform -- proto: GrilleBroken - entities: - - uid: 7477 + - uid: 3970 components: - - rot: 3.141592653589793 rad - pos: 22.5,8.5 + - pos: 54.5,6.5 parent: 2 type: Transform - - uid: 7478 + - uid: 3972 components: - - rot: 3.141592653589793 rad - pos: 30.5,23.5 + - pos: 56.5,6.5 parent: 2 type: Transform - - uid: 7479 + - uid: 3973 components: - - pos: -28.5,30.5 + - pos: 59.5,15.5 parent: 2 type: Transform - - uid: 7480 + - uid: 3976 components: - - rot: 3.141592653589793 rad - pos: -28.5,30.5 + - pos: -10.5,62.5 parent: 2 type: Transform - - uid: 7481 + - uid: 3982 components: - - rot: 1.5707963267948966 rad - pos: -28.5,67.5 + - pos: 43.5,7.5 parent: 2 type: Transform - - uid: 7482 + - uid: 3984 components: - - rot: -1.5707963267948966 rad - pos: 44.5,39.5 + - pos: 58.5,25.5 parent: 2 type: Transform - - uid: 7483 + - uid: 3991 components: - - rot: -1.5707963267948966 rad - pos: 55.5,38.5 + - pos: 51.5,6.5 parent: 2 type: Transform - - uid: 7484 + - uid: 4000 components: - - rot: 1.5707963267948966 rad - pos: 52.5,39.5 + - pos: 49.5,26.5 parent: 2 type: Transform - - uid: 7485 + - uid: 4001 components: - - rot: 1.5707963267948966 rad - pos: 60.5,33.5 + - pos: 47.5,26.5 parent: 2 type: Transform - - uid: 7486 + - uid: 4002 components: - - rot: 3.141592653589793 rad - pos: 61.5,30.5 + - pos: 45.5,26.5 parent: 2 type: Transform - - uid: 7487 + - uid: 4003 components: - - rot: -1.5707963267948966 rad - pos: 50.5,39.5 + - pos: 42.5,34.5 parent: 2 type: Transform - - uid: 7488 + - uid: 4018 components: - - rot: 1.5707963267948966 rad - pos: 39.5,39.5 + - pos: -10.5,53.5 parent: 2 type: Transform - - uid: 7489 + - uid: 4021 components: - - rot: 1.5707963267948966 rad - pos: 44.5,39.5 + - pos: -27.5,42.5 parent: 2 type: Transform - - uid: 7490 + - uid: 4023 components: - - pos: 61.5,28.5 + - pos: -30.5,66.5 parent: 2 type: Transform - - uid: 7491 + - uid: 4024 components: - - rot: 3.141592653589793 rad - pos: 62.5,24.5 + - pos: -30.5,60.5 parent: 2 type: Transform - - uid: 7492 + - uid: 4025 components: - - pos: 62.5,20.5 + - pos: -30.5,62.5 parent: 2 type: Transform - - uid: 7493 + - uid: 4026 components: - - rot: 3.141592653589793 rad - pos: 62.5,21.5 + - pos: -30.5,64.5 parent: 2 type: Transform - - uid: 7494 + - uid: 4027 components: - - rot: 3.141592653589793 rad - pos: 62.5,20.5 + - pos: -30.5,61.5 parent: 2 type: Transform - - uid: 7495 + - uid: 4028 components: - - pos: 62.5,20.5 + - pos: -20.5,66.5 parent: 2 type: Transform - - uid: 7496 + - uid: 4029 components: - - rot: 3.141592653589793 rad - pos: -31.5,54.5 + - pos: -30.5,63.5 parent: 2 type: Transform - - uid: 7497 + - uid: 4055 components: - - rot: 3.141592653589793 rad - pos: -9.5,63.5 + - pos: -27.5,43.5 parent: 2 type: Transform - - uid: 7498 + - uid: 4056 components: - - rot: -1.5707963267948966 rad - pos: -31.5,53.5 + - pos: -19.5,66.5 parent: 2 type: Transform - - uid: 7499 + - uid: 4059 components: - - rot: -1.5707963267948966 rad - pos: -14.5,67.5 + - pos: -28.5,50.5 parent: 2 type: Transform - - uid: 7500 + - uid: 4061 components: - - rot: 3.141592653589793 rad - pos: -31.5,64.5 + - pos: -25.5,66.5 parent: 2 type: Transform - - uid: 7501 + - uid: 4062 components: - - rot: -1.5707963267948966 rad - pos: -23.5,67.5 + - pos: -27.5,66.5 parent: 2 type: Transform - - uid: 7502 + - uid: 4117 components: - - rot: 3.141592653589793 rad - pos: -9.5,53.5 + - pos: -27.5,45.5 parent: 2 type: Transform - - uid: 7503 + - uid: 7158 components: - - rot: 3.141592653589793 rad - pos: -33.5,51.5 + - pos: -14.5,66.5 parent: 2 type: Transform - - uid: 7504 + - uid: 7256 components: - - rot: 1.5707963267948966 rad - pos: -35.5,50.5 + - pos: -15.5,66.5 parent: 2 type: Transform - - uid: 7505 + - uid: 7275 components: - - pos: -35.5,50.5 + - pos: 42.5,39.5 parent: 2 type: Transform - - uid: 7506 + - uid: 7276 components: - rot: 1.5707963267948966 rad - pos: 14.5,-42.5 + pos: 41.5,39.5 parent: 2 type: Transform - - uid: 7507 + - uid: 7280 components: - - rot: -1.5707963267948966 rad - pos: 20.5,-42.5 + - pos: 42.5,26.5 parent: 2 type: Transform - - uid: 7508 + - uid: 7281 components: - - rot: 3.141592653589793 rad - pos: -32.5,20.5 + - pos: 42.5,27.5 parent: 2 type: Transform - - uid: 7509 + - uid: 7282 components: - - rot: 1.5707963267948966 rad - pos: 48.5,12.5 + - pos: 42.5,31.5 parent: 2 type: Transform - - uid: 7510 + - uid: 7283 components: - - rot: 1.5707963267948966 rad - pos: 56.5,12.5 + - pos: 42.5,32.5 parent: 2 type: Transform - - uid: 7511 + - uid: 7284 components: - - rot: 1.5707963267948966 rad - pos: 59.5,12.5 + - pos: 42.5,29.5 parent: 2 type: Transform - - uid: 7512 + - uid: 7285 components: - - pos: 62.5,16.5 + - pos: 42.5,24.5 parent: 2 type: Transform - - uid: 7513 + - uid: 7286 components: - - pos: 57.5,15.5 + - pos: 42.5,25.5 parent: 2 type: Transform - - uid: 7514 + - uid: 7293 components: - - rot: -1.5707963267948966 rad - pos: 53.5,12.5 + - pos: 53.5,6.5 parent: 2 type: Transform - - uid: 7515 + - uid: 7343 components: - - rot: -1.5707963267948966 rad - pos: 58.5,12.5 + - pos: 41.5,23.5 parent: 2 type: Transform - - uid: 7516 + - uid: 7475 components: - - rot: 3.141592653589793 rad - pos: 62.5,18.5 + - pos: 42.5,33.5 parent: 2 type: Transform - - uid: 7517 + - uid: 7476 components: - - rot: -1.5707963267948966 rad - pos: 25.5,-36.5 + - pos: 42.5,28.5 parent: 2 type: Transform - - uid: 7518 + - uid: 7477 components: - - rot: -1.5707963267948966 rad - pos: 16.5,-36.5 + - pos: 42.5,23.5 parent: 2 type: Transform - - uid: 7519 + - uid: 7479 components: - - rot: 3.141592653589793 rad - pos: 10.5,-37.5 + - pos: 42.5,30.5 parent: 2 type: Transform - - uid: 7520 + - uid: 7483 components: - - rot: 1.5707963267948966 rad - pos: 18.5,-36.5 + - pos: -10.5,65.5 parent: 2 type: Transform - - uid: 7521 + - uid: 7484 components: - - rot: -1.5707963267948966 rad - pos: 4.5,-38.5 + - pos: 58.5,11.5 parent: 2 type: Transform - - uid: 7522 + - uid: 7485 components: - - rot: -1.5707963267948966 rad - pos: -2.5,-38.5 + - pos: 58.5,26.5 parent: 2 type: Transform - - uid: 7523 + - uid: 7486 components: - - rot: -1.5707963267948966 rad - pos: -11.5,-37.5 + - pos: 58.5,10.5 parent: 2 type: Transform - - uid: 7524 + - uid: 7487 components: - - rot: 1.5707963267948966 rad - pos: -16.5,-37.5 + - pos: 58.5,9.5 parent: 2 type: Transform - - uid: 7525 + - uid: 7489 components: - - rot: 1.5707963267948966 rad - pos: -8.5,-38.5 + - pos: -21.5,65.5 parent: 2 type: Transform - - uid: 7526 + - uid: 7491 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-38.5 + - pos: -23.5,66.5 parent: 2 type: Transform - uid: 7527 components: - - rot: 1.5707963267948966 rad - pos: -6.5,-43.5 + - pos: -13.5,66.5 parent: 2 type: Transform - - uid: 7528 + - uid: 8767 components: - - rot: -1.5707963267948966 rad - pos: -1.5,-43.5 + - pos: 46.5,6.5 parent: 2 type: Transform - - uid: 7529 + - uid: 8775 components: - - rot: 1.5707963267948966 rad - pos: 4.5,-41.5 + - pos: -21.5,66.5 parent: 2 type: Transform - - uid: 7530 + - uid: 8783 components: - - rot: -1.5707963267948966 rad - pos: 9.5,-41.5 + - pos: 58.5,14.5 parent: 2 type: Transform - - uid: 7531 + - uid: 8784 components: - - rot: 3.141592653589793 rad - pos: -32.5,-21.5 + - pos: 59.5,17.5 parent: 2 type: Transform - - uid: 7532 + - uid: 8785 components: - - pos: -32.5,-14.5 + - pos: 43.5,9.5 parent: 2 type: Transform - - uid: 7533 + - uid: 8786 components: - - pos: -31.5,62.5 + - pos: 44.5,6.5 parent: 2 type: Transform - - uid: 7534 + - uid: 8791 components: - - rot: 3.141592653589793 rad - pos: -9.5,58.5 + - pos: 42.5,36.5 parent: 2 type: Transform - - uid: 7535 + - uid: 8792 components: - - rot: 1.5707963267948966 rad - pos: -13.5,67.5 + - pos: 42.5,35.5 parent: 2 type: Transform - - uid: 7536 + - uid: 8794 components: - - rot: 1.5707963267948966 rad - pos: -22.5,67.5 + - pos: 42.5,37.5 parent: 2 type: Transform - - uid: 7537 + - uid: 8801 components: - - rot: -1.5707963267948966 rad - pos: 24.5,9.5 + - pos: -16.5,66.5 parent: 2 type: Transform - - uid: 7538 + - uid: 8816 components: - - rot: 1.5707963267948966 rad - pos: 25.5,9.5 + - pos: 58.5,7.5 parent: 2 type: Transform - - uid: 7539 + - uid: 8821 components: - - pos: 17.5,4.5 + - pos: 58.5,12.5 parent: 2 type: Transform - proto: HandLabeler entities: - - uid: 7540 + - uid: 7532 components: - pos: -6.8970933,10.710638 parent: 2 type: Transform - - uid: 7541 + - uid: 7533 components: - pos: -6.7304263,10.512585 parent: 2 type: Transform - - uid: 7542 - components: - - pos: -15.500559,14.668425 - parent: 2 - type: Transform - - uid: 7543 - components: - - pos: -15.513271,14.687578 - parent: 2 - type: Transform - proto: HeatExchanger entities: - - uid: 7544 + - uid: 7536 components: - rot: -1.5707963267948966 rad pos: 4.5,39.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 7545 + - uid: 7537 components: - rot: 1.5707963267948966 rad pos: 4.5,38.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 7546 + - uid: 7538 components: - pos: 9.5,38.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#FF5400FF' type: AtmosPipeColor - - uid: 7547 + - uid: 7539 components: - rot: 1.5707963267948966 rad pos: 4.5,37.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - color: '#00B3B7FF' type: AtmosPipeColor - proto: HighSecCommandLocked entities: - - uid: 7548 + - uid: 7540 components: - pos: -13.5,-20.5 parent: 2 type: Transform -- proto: HighSecDoor - entities: - - uid: 7549 - components: - - pos: -36.5,-30.5 - parent: 2 - type: Transform - proto: HospitalCurtainsOpen entities: - - uid: 7550 + - uid: 7542 components: - pos: -14.5,3.5 parent: 2 type: Transform - - uid: 7551 + - uid: 7543 components: - pos: -14.5,5.5 parent: 2 type: Transform - - uid: 7552 + - uid: 7544 components: - pos: -17.5,3.5 parent: 2 type: Transform - - uid: 7553 + - uid: 7545 components: - pos: 14.5,-4.5 parent: 2 type: Transform - - uid: 7554 + - uid: 7546 components: - pos: 29.5,12.5 parent: 2 type: Transform - - uid: 7555 + - uid: 7547 components: - pos: -7.5,-32.5 parent: 2 type: Transform - - uid: 7556 + - uid: 7548 components: - pos: 25.5,-19.5 parent: 2 type: Transform - - uid: 7557 + - uid: 7549 components: - pos: 23.5,-23.5 parent: 2 type: Transform - - uid: 7558 + - uid: 7550 components: - pos: -7.5,-30.5 parent: 2 type: Transform - - uid: 7559 + - uid: 7551 components: - pos: 12.5,-4.5 parent: 2 type: Transform - proto: hydroponicsSoil entities: - - uid: 7560 + - uid: 7552 components: - pos: 18.5,-30.5 parent: 2 type: Transform - - uid: 7561 + - uid: 7553 components: - pos: 17.5,-30.5 parent: 2 type: Transform - - uid: 7562 + - uid: 7554 components: - pos: 15.5,-30.5 parent: 2 type: Transform - - uid: 7563 + - uid: 7555 components: - pos: 16.5,-30.5 parent: 2 type: Transform - proto: HydroponicsToolClippers entities: - - uid: 7564 + - uid: 7556 components: - pos: 13.976148,-29.507757 parent: 2 type: Transform - proto: HydroponicsToolMiniHoe entities: - - uid: 7565 + - uid: 7557 components: - pos: 14.069898,-29.455639 parent: 2 type: Transform - proto: hydroponicsTray entities: - - uid: 7566 + - uid: 7558 components: - pos: -3.5,8.5 parent: 2 type: Transform - - uid: 7567 + - uid: 7559 components: - pos: -4.5,8.5 parent: 2 type: Transform - - uid: 7568 + - uid: 7560 components: - pos: -3.5,9.5 parent: 2 type: Transform - - uid: 7569 + - uid: 7561 components: - pos: -4.5,9.5 parent: 2 type: Transform - - uid: 7570 + - uid: 7562 components: - pos: -6.5,8.5 parent: 2 type: Transform - - uid: 7571 + - uid: 7563 components: - pos: -6.5,9.5 parent: 2 type: Transform - - uid: 7572 + - uid: 7564 components: - pos: -1.5,9.5 parent: 2 type: Transform - - uid: 7573 + - uid: 7565 components: - pos: -1.5,8.5 parent: 2 type: Transform - proto: Igniter entities: - - uid: 7574 + - uid: 7566 components: - pos: 9.580687,39.419918 parent: 2 type: Transform - links: - - 8621 + - 8612 type: DeviceLinkSink - proto: IngotGold1 entities: - - uid: 7575 + - uid: 7567 components: - pos: 35.268032,24.82529 parent: 2 type: Transform - - uid: 7576 + - uid: 7568 components: - pos: 33.507614,24.658508 parent: 2 type: Transform - - uid: 7577 + - uid: 7569 components: - pos: 24.222847,4.780214 parent: 2 type: Transform - - uid: 7578 + - uid: 7570 components: - pos: 24.327013,4.436225 parent: 2 type: Transform - - uid: 7579 + - uid: 7571 components: - pos: 24.52493,4.7280946 parent: 2 type: Transform - proto: IngotSilver entities: - - uid: 7580 + - uid: 7572 components: - pos: -15.103758,-19.494799 parent: 2 type: Transform - proto: JanitorialTrolley entities: - - uid: 7581 + - uid: 7573 components: - rot: -1.5707963267948966 rad pos: 6.5,10.5 @@ -49584,109 +50181,109 @@ entities: type: Transform - proto: JetpackMiniFilled entities: - - uid: 7582 + - uid: 7574 components: - pos: 0.5,-9.5 parent: 2 type: Transform - - uid: 7583 + - uid: 7575 components: - pos: 0.5,-9.5 parent: 2 type: Transform - proto: KitchenDeepFryer entities: - - uid: 7584 + - uid: 7576 components: - pos: -1.5,5.5 parent: 2 type: Transform - proto: KitchenElectricGrill entities: - - uid: 7585 + - uid: 7577 components: - pos: -2.5,2.5 parent: 2 type: Transform - proto: KitchenMicrowave entities: - - uid: 7586 + - uid: 7578 components: - pos: 8.5,-20.5 parent: 2 type: Transform - - uid: 7587 + - uid: 7579 components: - pos: 20.5,16.5 parent: 2 type: Transform - - uid: 7588 + - uid: 7580 components: - pos: -3.5,5.5 parent: 2 type: Transform - proto: KitchenReagentGrinder entities: - - uid: 7589 + - uid: 7535 components: - - pos: -14.5,14.5 + - pos: -15.5,14.5 parent: 2 type: Transform - - uid: 7590 + - uid: 7582 components: - pos: -8.5,31.5 parent: 2 type: Transform - - uid: 7591 + - uid: 7583 components: - pos: -3.5,10.5 parent: 2 type: Transform - - uid: 7592 + - uid: 7584 components: - - pos: -0.5,3.5 + - pos: -0.5,4.5 parent: 2 type: Transform - proto: KitchenSpike entities: - - uid: 7593 + - uid: 7585 components: - pos: -7.5,0.5 parent: 2 type: Transform - proto: KnifePlastic entities: - - uid: 7594 + - uid: 7586 components: - pos: 18.5,-2.5 parent: 2 type: Transform - proto: Lamp entities: - - uid: 7595 + - uid: 7587 components: - pos: 19.51327,14.915197 parent: 2 type: Transform - - uid: 7596 + - uid: 7588 components: - rot: 1.5707963267948966 rad pos: -23.580538,21.13313 parent: 2 type: Transform - - uid: 7597 + - uid: 7589 components: - rot: 3.141592653589793 rad pos: 19.521437,-18.138279 parent: 2 type: Transform - - uid: 7598 + - uid: 7590 components: - rot: -1.5707963267948966 rad pos: 11.70978,-25.222563 parent: 2 type: Transform - - uid: 7599 + - uid: 7591 components: - rot: 1.5707963267948966 rad pos: 29.438976,29.771719 @@ -49694,18 +50291,18 @@ entities: type: Transform - proto: LampGold entities: - - uid: 7600 + - uid: 7592 components: - rot: -1.5707963267948966 rad pos: 18.5,-5.5 parent: 2 type: Transform - - uid: 7601 + - uid: 7593 components: - pos: -7.4099,-23.062817 parent: 2 type: Transform - - uid: 7602 + - uid: 7594 components: - rot: 3.141592653589793 rad pos: 31.591747,-3.1487255 @@ -49713,118 +50310,118 @@ entities: type: Transform - proto: LargeBeaker entities: - - uid: 7603 + - uid: 7595 components: - pos: -5.6907783,10.748014 parent: 2 type: Transform - - uid: 7604 + - uid: 7596 components: - pos: -5.3678617,10.602081 parent: 2 type: Transform - proto: LauncherCreamPie entities: - - uid: 7605 + - uid: 7597 components: - pos: 1.0657196,-11.409435 parent: 2 type: Transform - proto: Lighter entities: - - uid: 7606 + - uid: 7598 components: - pos: -28.695724,-18.350336 parent: 2 type: Transform - proto: LockerAtmosphericsFilledHardsuit entities: - - uid: 7607 + - uid: 7599 components: - pos: 32.5,28.5 parent: 2 type: Transform - proto: LockerBoozeFilled entities: - - uid: 7608 + - uid: 7600 components: - pos: -9.5,-12.5 parent: 2 type: Transform - proto: LockerBotanistFilled entities: - - uid: 7609 + - uid: 7601 components: - pos: -6.5,7.5 parent: 2 type: Transform - proto: LockerCaptainFilledHardsuit entities: - - uid: 7610 + - uid: 7602 components: - pos: -9.5,-28.5 parent: 2 type: Transform - proto: LockerChemistryFilled entities: - - uid: 7611 + - uid: 7603 components: - pos: -16.5,14.5 parent: 2 type: Transform - proto: LockerChiefEngineerFilled entities: - - uid: 7612 + - uid: 7604 components: - pos: 26.5,12.5 parent: 2 type: Transform - proto: LockerChiefMedicalOfficerFilledHardsuit entities: - - uid: 7613 + - uid: 7605 components: - pos: -18.5,22.5 parent: 2 type: Transform - proto: LockerDetectiveFilled entities: - - uid: 7614 + - uid: 7606 components: - pos: -17.5,-21.5 parent: 2 type: Transform - proto: LockerEngineerFilled entities: - - uid: 7615 + - uid: 7607 components: - pos: 6.5,15.5 parent: 2 type: Transform - - uid: 7616 + - uid: 7608 components: - pos: 5.5,15.5 parent: 2 type: Transform - - uid: 7617 + - uid: 7609 components: - pos: 7.5,15.5 parent: 2 type: Transform - proto: LockerEvidence entities: - - uid: 7618 + - uid: 7610 components: - pos: -19.5,-8.5 parent: 2 type: Transform - - uid: 7619 + - uid: 7611 components: - pos: -17.5,-8.5 parent: 2 type: Transform - proto: LockerForensicMantisFilled entities: - - uid: 7620 + - uid: 7612 components: - pos: -9.5,26.5 parent: 2 @@ -49849,7 +50446,7 @@ entities: type: EntityStorage - proto: LockerFreezer entities: - - uid: 7621 + - uid: 7613 components: - pos: -6.5,2.5 parent: 2 @@ -49872,395 +50469,386 @@ entities: - 0 - 0 type: EntityStorage +- proto: LockerFreezerVaultFilled + entities: + - uid: 9224 + components: + - pos: -14.5,-22.5 + parent: 2 + type: Transform - proto: LockerHeadOfPersonnelFilled entities: - - uid: 7622 + - uid: 7614 components: - pos: 11.5,-6.5 parent: 2 type: Transform - proto: LockerHeadOfSecurityFilled entities: - - uid: 7623 + - uid: 7615 components: - pos: 22.5,-19.5 parent: 2 type: Transform - proto: LockerMedicalFilled entities: - - uid: 7624 + - uid: 7616 components: - pos: -22.5,10.5 parent: 2 type: Transform - - uid: 7625 + - uid: 7617 components: - pos: -23.5,10.5 parent: 2 type: Transform - proto: LockerQuarterMasterFilled entities: - - uid: 7626 + - uid: 7618 components: - pos: 16.5,-7.5 parent: 2 type: Transform - proto: LockerResearchDirectorFilledHardsuit entities: - - uid: 7627 + - uid: 7619 components: - pos: 1.5,35.5 parent: 2 type: Transform - proto: LockerSalvageSpecialistFilledHardsuit entities: - - uid: 7628 + - uid: 7620 components: - pos: 25.5,-1.5 parent: 2 type: Transform - - uid: 7629 + - uid: 7621 components: - pos: 25.5,-3.5 parent: 2 type: Transform - proto: LockerScienceFilled entities: - - uid: 7630 + - uid: 7622 components: - pos: -10.5,35.5 parent: 2 type: Transform - - uid: 7631 + - uid: 7623 components: - pos: -10.5,34.5 parent: 2 type: Transform - - uid: 7632 + - uid: 7624 components: - pos: -10.5,33.5 parent: 2 type: Transform - - uid: 7633 + - uid: 7625 components: - pos: 2.5,23.5 parent: 2 type: Transform - - uid: 7634 + - uid: 7626 components: - pos: -10.5,36.5 parent: 2 type: Transform - proto: LockerSecurityFilled entities: - - uid: 7635 + - uid: 7627 components: - pos: 8.5,-18.5 parent: 2 type: Transform - - uid: 7636 + - uid: 7628 components: - pos: 8.5,-17.5 parent: 2 type: Transform - - uid: 7637 + - uid: 7629 components: - pos: -14.5,-6.5 parent: 2 type: Transform - proto: LockerWardenFilledHardsuit entities: - - uid: 7638 + - uid: 7630 components: - pos: 14.5,-14.5 parent: 2 type: Transform - proto: MachineAnomalyGenerator entities: - - uid: 7639 + - uid: 7631 components: - pos: 2.5,27.5 parent: 2 type: Transform - proto: MachineAnomalyVessel entities: - - uid: 7640 + - uid: 7632 components: - pos: 5.5,24.5 parent: 2 type: Transform - proto: MachineAPE entities: - - uid: 7641 + - uid: 7633 components: - pos: 1.5,26.5 parent: 2 type: Transform - - uid: 7642 + - uid: 7634 components: - pos: 3.5,26.5 parent: 2 type: Transform - proto: MachineArtifactAnalyzer entities: - - uid: 7643 + - uid: 7635 components: - pos: -13.5,35.5 parent: 2 type: Transform - proto: MachineFrameDestroyed entities: - - uid: 7644 + - uid: 7636 components: - pos: 19.5,1.5 parent: 2 type: Transform -- proto: MagazineBoxMagnum - entities: - - uid: 7645 - components: - - pos: 22.350033,-14.218571 - parent: 2 - type: Transform -- proto: MagazineBoxMagnumRubber +- proto: MagazineBoxPistol entities: - - uid: 7646 + - uid: 7637 components: - - pos: 22.360449,-14.593832 + - pos: 22.328491,-14.194815 parent: 2 type: Transform -- proto: MagazineBoxPistol - entities: - - uid: 7647 + - uid: 7638 components: - pos: 20.402533,-14.325335 parent: 2 type: Transform - proto: MagazineBoxPistolRubber entities: - - uid: 7648 - components: - - pos: 20.66295,-14.335758 - parent: 2 - type: Transform -- proto: MagazineMagnumSubMachineGun - entities: - - uid: 7649 + - uid: 7639 components: - - pos: 21.91829,-14.364506 + - pos: 22.594116,-14.30419 parent: 2 type: Transform -- proto: MagazineMagnumSubMachineGunRubber - entities: - - uid: 7650 + - uid: 7640 components: - - pos: 22.095373,-14.343658 + - pos: 20.66295,-14.335758 parent: 2 type: Transform - proto: MagazinePistol entities: - - uid: 7651 + - uid: 7641 components: - pos: 20.421423,-14.601112 parent: 2 type: Transform - proto: MagazinePistolRubber entities: - - uid: 7652 + - uid: 7642 components: - pos: 20.723507,-14.632383 parent: 2 type: Transform -- proto: MagazinePistolSubMachineGunTopMounted +- proto: MagazinePistolSubMachineGun entities: - - uid: 7653 + - uid: 7643 components: - - pos: 23.555655,-21.381088 + - pos: 21.953491,-14.507315 parent: 2 type: Transform - - uid: 7654 +- proto: MagazinePistolSubMachineGunRubber + entities: + - uid: 7644 components: - - pos: 23.56607,-21.235155 + - pos: 22.047241,-14.39794 parent: 2 type: Transform - proto: MagicDiceBag entities: - - uid: 7655 + - uid: 7647 components: - pos: 32.56783,-29.505108 parent: 2 type: Transform - proto: MailBag entities: - - uid: 7656 + - uid: 7648 components: - pos: 7.547151,4.455878 parent: 2 type: Transform - proto: MailingUnit entities: - - uid: 7657 + - uid: 7649 components: - pos: 17.5,-20.5 parent: 2 type: Transform - - uid: 7658 + - uid: 7650 components: - pos: -3.5,-24.5 parent: 2 type: Transform - - uid: 7659 + - uid: 7651 components: - pos: 21.5,14.5 parent: 2 type: Transform - - uid: 7660 + - uid: 7652 components: - pos: 10.5,4.5 parent: 2 type: Transform - tag: mail type: MailingUnit - - uid: 7661 + - uid: 7653 components: - pos: -17.5,16.5 parent: 2 type: Transform - - uid: 7662 + - uid: 7654 components: - pos: -16.5,-15.5 parent: 2 type: Transform - - uid: 7663 + - uid: 7655 components: - pos: -4.5,33.5 parent: 2 type: Transform - proto: MailTeleporter entities: - - uid: 7664 + - uid: 7656 components: - pos: 6.5,6.5 parent: 2 type: Transform - proto: MaintenanceFluffSpawner entities: - - uid: 7665 + - uid: 7657 components: - pos: -18.5,-0.5 parent: 2 type: Transform - - uid: 7666 + - uid: 7658 components: - pos: -7.5,4.5 parent: 2 type: Transform - - uid: 7667 + - uid: 7659 components: - rot: 1.5707963267948966 rad pos: 19.5,-11.5 parent: 2 type: Transform - - uid: 7668 + - uid: 7660 components: - pos: -9.5,3.5 parent: 2 type: Transform - - uid: 7669 + - uid: 7661 components: - pos: -27.5,-8.5 parent: 2 type: Transform - - uid: 7670 + - uid: 7662 components: - pos: -29.5,-1.5 parent: 2 type: Transform - - uid: 7671 + - uid: 7663 components: - pos: -6.5,-14.5 parent: 2 type: Transform - - uid: 7672 + - uid: 7664 components: - pos: 15.5,7.5 parent: 2 type: Transform - - uid: 7673 + - uid: 7665 components: - pos: -29.5,25.5 parent: 2 type: Transform - - uid: 7674 + - uid: 7666 components: - pos: -16.5,21.5 parent: 2 type: Transform - - uid: 7675 + - uid: 7667 components: - pos: 29.5,16.5 parent: 2 type: Transform - - uid: 7676 + - uid: 7668 components: - pos: 31.5,20.5 parent: 2 type: Transform - - uid: 7677 + - uid: 7669 components: - pos: 19.5,4.5 parent: 2 type: Transform - - uid: 7678 + - uid: 7670 components: - pos: 33.5,-24.5 parent: 2 type: Transform - - uid: 7679 + - uid: 7671 components: - pos: 32.5,-23.5 parent: 2 type: Transform - - uid: 7680 + - uid: 7672 components: - pos: 28.5,-34.5 parent: 2 type: Transform - proto: MaintenanceToolSpawner entities: - - uid: 7681 + - uid: 7673 components: - pos: -15.5,17.5 parent: 2 type: Transform - - uid: 7682 + - uid: 7674 components: - pos: 19.5,5.5 parent: 2 type: Transform - - uid: 7683 + - uid: 7675 components: - pos: 36.5,-25.5 parent: 2 type: Transform - - uid: 7684 + - uid: 7676 components: - pos: 36.5,-26.5 parent: 2 type: Transform - proto: MaintenanceWeaponSpawner entities: - - uid: 7685 + - uid: 4014 components: - - pos: -20.5,40.5 + - pos: -20.5,41.5 parent: 2 type: Transform - - uid: 7686 + - uid: 7678 components: - pos: 26.5,-11.5 parent: 2 type: Transform - - uid: 7687 + - uid: 7679 components: - pos: 20.5,7.5 parent: 2 @@ -50269,60 +50857,60 @@ entities: type: RandomSpawner - proto: Matchbox entities: - - uid: 7688 + - uid: 7680 components: - pos: 26.769876,-21.480942 parent: 2 type: Transform - - uid: 7689 + - uid: 7681 components: - pos: -13.212877,-30.360931 parent: 2 type: Transform - proto: MaterialBiomass entities: - - uid: 7690 + - uid: 7682 components: - pos: -21.693905,12.505009 parent: 2 type: Transform - - uid: 7691 + - uid: 7683 components: - pos: -21.693905,12.713488 parent: 2 type: Transform - - uid: 7692 + - uid: 7684 components: - pos: -21.277239,18.46597 parent: 2 type: Transform - proto: MaterialBluespace entities: - - uid: 7693 + - uid: 7685 components: - pos: 0.69490546,37.661827 parent: 2 type: Transform - proto: MaterialCloth entities: - - uid: 7694 + - uid: 7686 components: - pos: 7.5,-5.5 parent: 2 type: Transform - - uid: 7695 + - uid: 7687 components: - pos: -6.3351974,-17.618593 parent: 2 type: Transform - proto: MaterialDurathread entities: - - uid: 7696 + - uid: 7688 components: - pos: 7.5,-5.5 parent: 2 type: Transform - - uid: 7697 + - uid: 7689 components: - rot: -1.5707963267948966 rad pos: -6.7171144,-17.235079 @@ -50330,97 +50918,97 @@ entities: type: Transform - proto: MedicalBed entities: - - uid: 7698 + - uid: 7690 components: - pos: -14.5,3.5 parent: 2 type: Transform - - uid: 7699 + - uid: 7691 components: - pos: -14.5,5.5 parent: 2 type: Transform - - uid: 7700 + - uid: 7692 components: - pos: -17.5,3.5 parent: 2 type: Transform - proto: MedicalScanner entities: - - uid: 7701 + - uid: 7693 components: - pos: -23.5,12.5 parent: 2 type: Transform - proto: MedicalTechFab entities: - - uid: 7702 + - uid: 7694 components: - pos: -24.5,9.5 parent: 2 type: Transform - proto: MedkitBruteFilled entities: - - uid: 7703 + - uid: 7695 components: - pos: -23.323029,7.5579705 parent: 2 type: Transform - - uid: 7704 + - uid: 7696 components: - pos: -29.462383,33.663837 parent: 2 type: Transform - proto: MedkitBurnFilled entities: - - uid: 7705 + - uid: 7697 components: - pos: -23.854279,7.568394 parent: 2 type: Transform - proto: MedkitCombatFilled entities: - - uid: 7706 + - uid: 7698 components: - pos: -22.419218,20.58446 parent: 2 type: Transform - proto: MedkitFilled entities: - - uid: 7707 + - uid: 7699 components: - pos: -24.510529,7.6517854 parent: 2 type: Transform - proto: MedkitOxygenFilled entities: - - uid: 7708 + - uid: 7700 components: - pos: -24.510529,7.9228063 parent: 2 type: Transform - proto: MedkitRadiationFilled entities: - - uid: 7709 + - uid: 7701 components: - pos: -24.520947,8.256372 parent: 2 type: Transform - proto: MedkitToxinFilled entities: - - uid: 7710 + - uid: 7702 components: - pos: -24.520947,8.558664 parent: 2 type: Transform - - uid: 7711 + - uid: 7703 components: - pos: -22.579123,3.5572662 parent: 2 type: Transform - proto: MicrophoneInstrument entities: - - uid: 7712 + - uid: 7704 components: - rot: 1.5707963267948966 rad pos: -1.7753985,-11.530016 @@ -50428,47 +51016,47 @@ entities: type: Transform - proto: MinimoogInstrument entities: - - uid: 7713 + - uid: 7705 components: - pos: 38.5,21.5 parent: 2 type: Transform - - uid: 7714 + - uid: 7706 components: - pos: -35.5,29.5 parent: 2 type: Transform - proto: Mirror entities: - - uid: 7715 + - uid: 7707 components: - rot: 1.5707963267948966 rad pos: -30.5,-20.5 parent: 2 type: Transform - - uid: 7716 + - uid: 7708 components: - rot: 3.141592653589793 rad pos: -27.5,-25.5 parent: 2 type: Transform - - uid: 7717 + - uid: 7709 components: - pos: -28.5,-14.5 parent: 2 type: Transform - - uid: 7718 + - uid: 7710 components: - rot: -1.5707963267948966 rad pos: -5.5,-30.5 parent: 2 type: Transform - - uid: 7719 + - uid: 7711 components: - pos: -21.5,15.5 parent: 2 type: Transform - - uid: 7720 + - uid: 7712 components: - rot: 1.5707963267948966 rad pos: -3.5,-7.5 @@ -50476,50 +51064,50 @@ entities: type: Transform - proto: MMI entities: - - uid: 7721 + - uid: 7713 components: - pos: 0.34333998,22.854553 parent: 2 type: Transform - proto: ModularGrenade entities: - - uid: 7722 + - uid: 7714 components: - pos: -24.65968,28.208782 parent: 2 type: Transform - proto: MopBucket entities: - - uid: 7723 + - uid: 7715 components: - pos: 7.6673713,10.668196 parent: 2 type: Transform - proto: MopItem entities: - - uid: 7724 + - uid: 7716 components: - pos: 7.708736,10.775467 parent: 2 type: Transform - - uid: 7725 + - uid: 7717 components: - pos: -1.7152877,40.604946 parent: 2 type: Transform - - uid: 7726 + - uid: 7718 components: - pos: -1.5694542,40.552826 parent: 2 type: Transform - - uid: 7727 + - uid: 7719 components: - pos: -1.4027874,40.53198 parent: 2 type: Transform - proto: Morgue entities: - - uid: 7728 + - uid: 7720 components: - rot: 1.5707963267948966 rad pos: -23.5,16.5 @@ -50543,7 +51131,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 7729 + - uid: 7721 components: - rot: 1.5707963267948966 rad pos: -23.5,17.5 @@ -50569,377 +51157,400 @@ entities: type: EntityStorage - proto: MouseTimedSpawner entities: - - uid: 7730 + - uid: 7722 components: - pos: -5.5,-15.5 parent: 2 type: Transform - - uid: 7731 + - uid: 7723 components: - pos: -27.5,24.5 parent: 2 type: Transform - proto: Multitool entities: - - uid: 7732 + - uid: 7724 components: - pos: -21.5,12.5 parent: 2 type: Transform - - uid: 7733 + - uid: 7725 components: - pos: 1.955231,17.606508 parent: 2 type: Transform - - uid: 7734 + - uid: 7726 components: - pos: 20.571577,8.5436 parent: 2 type: Transform - proto: NitrogenCanister entities: - - uid: 7735 + - uid: 7727 components: - pos: 11.5,33.5 parent: 2 type: Transform - - uid: 7736 + - joinedGrid: 2 + type: AtmosDevice + - uid: 7728 components: - pos: 11.5,32.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: NuclearBomb entities: - - uid: 7737 + - uid: 7729 components: - pos: -15.5,-22.5 parent: 2 type: Transform - proto: NuclearBombKeg entities: - - uid: 7738 + - uid: 7730 components: - pos: 29.5,-23.5 parent: 2 type: Transform - proto: OilJarOlive entities: - - uid: 7739 + - uid: 7731 components: - - pos: -0.58820933,5.61614 + - pos: -0.8286338,5.690783 parent: 2 type: Transform - proto: OperatingTable entities: - - uid: 7740 + - uid: 7732 components: - pos: 0.5,21.5 parent: 2 type: Transform - proto: Oracle entities: - - uid: 7741 + - uid: 7733 components: - pos: -4.5,16.5 parent: 2 type: Transform - proto: OreBag entities: - - uid: 7742 + - uid: 10868 components: - - pos: 33.5,-14.5 + - pos: 36.549072,-16.48038 + parent: 2 + type: Transform + - uid: 10869 + components: + - pos: 36.510002,-16.48038 parent: 2 type: Transform - proto: OreBox entities: - - uid: 7743 + - uid: 10870 components: - - pos: 32.5,-14.5 + - pos: 34.5,-16.5 parent: 2 type: Transform - proto: OreProcessor entities: - - uid: 7744 + - uid: 7735 components: - pos: 24.5,-0.5 parent: 2 type: Transform - proto: OxygenCanister entities: - - uid: 7745 + - uid: 7736 components: - pos: 5.5,28.5 parent: 2 type: Transform - - uid: 7746 + - joinedGrid: 2 + type: AtmosDevice + - uid: 7737 components: - pos: 37.5,-14.5 parent: 2 type: Transform - - uid: 7747 + - joinedGrid: 2 + type: AtmosDevice + - uid: 7738 components: - pos: 21.5,39.5 parent: 2 type: Transform - - uid: 7748 + - joinedGrid: 2 + type: AtmosDevice + - uid: 7739 components: - pos: -20.5,-0.5 parent: 2 type: Transform - - uid: 7749 + - joinedGrid: 2 + type: AtmosDevice + - uid: 7740 components: - pos: -16.5,22.5 parent: 2 type: Transform - - uid: 7750 + - joinedGrid: 2 + type: AtmosDevice + - uid: 7741 components: - pos: -5.5,-14.5 parent: 2 type: Transform - - uid: 7751 + - joinedGrid: 2 + type: AtmosDevice + - uid: 7742 components: - pos: 33.5,17.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: Paper entities: - - uid: 7752 + - uid: 7743 components: - pos: 8.669469,-26.51377 parent: 2 type: Transform - - uid: 7753 + - uid: 7744 components: - pos: -29.41655,-27.37733 parent: 2 type: Transform - - uid: 7754 + - uid: 7745 components: - pos: -29.22905,-27.455456 parent: 2 type: Transform - - uid: 7755 + - uid: 7746 components: - pos: -25.43624,-27.5295 parent: 2 type: Transform - - uid: 7756 + - uid: 7747 components: - pos: -12.540777,28.454374 parent: 2 type: Transform - - uid: 7757 + - uid: 7748 components: - pos: -7.7048454,26.73688 parent: 2 type: Transform - - uid: 7758 + - uid: 7749 components: - pos: -25.68624,-27.31075 parent: 2 type: Transform - - uid: 7759 + - uid: 7750 components: - pos: 5.6382184,-28.88877 parent: 2 type: Transform - - uid: 7760 + - uid: 7751 components: - pos: 5.0444684,-26.51377 parent: 2 type: Transform - - uid: 7761 + - uid: 7752 components: - pos: 4.5913434,-26.310644 parent: 2 type: Transform - - uid: 7762 + - uid: 7753 components: - pos: -7.4756784,26.517977 parent: 2 type: Transform - - uid: 7763 + - uid: 7754 components: - pos: -12.717861,28.694124 parent: 2 type: Transform - - uid: 7764 + - uid: 7755 components: - pos: 8.373035,-13.439045 parent: 2 type: Transform - - uid: 7765 + - uid: 7756 components: - pos: 19.523685,13.851959 parent: 2 type: Transform - - uid: 7766 + - uid: 7757 components: - pos: 19.679935,13.997892 parent: 2 type: Transform - - uid: 7767 + - uid: 7758 components: - pos: 8.278844,-26.404394 parent: 2 type: Transform - - uid: 7768 + - uid: 7759 components: - pos: -29.738504,-23.337132 parent: 2 type: Transform - - uid: 7769 + - uid: 7760 components: - pos: -29.44163,-23.259007 parent: 2 type: Transform - - uid: 7770 + - uid: 7761 components: - rot: 1.5707963267948966 rad pos: 19.531853,-18.878376 parent: 2 type: Transform - - uid: 7771 + - uid: 7762 components: - rot: 1.5707963267948966 rad pos: 19.427687,-19.003462 parent: 2 type: Transform - - uid: 7772 + - uid: 7763 components: - rot: 1.5707963267948966 rad pos: 19.802687,-19.013885 parent: 2 type: Transform - - uid: 7773 + - uid: 7764 components: - pos: 7.91991,-13.439045 parent: 2 type: Transform - - uid: 7774 + - uid: 7765 components: - pos: -0.5758452,-21.424469 parent: 2 type: Transform - - uid: 7775 + - uid: 7766 components: - pos: -0.39876193,-21.570402 parent: 2 type: Transform - - uid: 7776 + - uid: 7767 components: - pos: -1.4091785,-22.279228 parent: 2 type: Transform - - uid: 7777 + - uid: 7768 components: - pos: -1.3779285,-22.883816 parent: 2 type: Transform - - uid: 7778 + - uid: 7769 components: - pos: 0.38248807,-23.11314 parent: 2 type: Transform - - uid: 7779 + - uid: 7770 components: - pos: 0.31998807,-22.185413 parent: 2 type: Transform - - uid: 7780 + - uid: 7771 components: - pos: -17.827131,18.663916 parent: 2 type: Transform - - uid: 7781 + - uid: 7772 components: - pos: -17.983381,18.51798 parent: 2 type: Transform - - uid: 7782 + - uid: 7773 components: - pos: -17.65005,18.392895 parent: 2 type: Transform - - uid: 7783 + - uid: 7774 components: - pos: -6.7783804,-23.510653 parent: 2 type: Transform - - uid: 7784 + - uid: 7775 components: - pos: -6.861714,-23.323023 parent: 2 type: Transform - - uid: 7785 + - uid: 7776 components: - pos: -6.9932337,-23.50062 parent: 2 type: Transform - - uid: 7786 + - uid: 7777 components: - pos: -19.308437,-13.227375 parent: 2 type: Transform - - uid: 7787 + - uid: 7778 components: - pos: -18.777187,-12.758625 parent: 2 type: Transform - - uid: 7788 + - uid: 7779 components: - pos: 6.40628,4.596503 parent: 2 type: Transform - - uid: 7789 + - uid: 7780 components: - pos: 6.71878,4.502753 parent: 2 type: Transform - - uid: 7790 + - uid: 7781 components: - pos: 6.90628,4.612128 parent: 2 type: Transform - - uid: 7791 + - uid: 7782 components: - pos: 5.358882,21.695858 parent: 2 type: Transform - - uid: 7792 + - uid: 7783 components: - pos: 5.566872,21.452343 parent: 2 type: Transform - - uid: 7793 + - uid: 7784 components: - pos: 5.352056,25.407856 parent: 2 type: Transform - - uid: 7794 + - uid: 7785 components: - pos: 5.674973,25.376585 parent: 2 type: Transform - proto: PaperBin10 entities: - - uid: 7795 + - uid: 7786 components: - pos: -19.5,-19.5 parent: 2 type: Transform - - uid: 7796 + - uid: 7787 components: - rot: 1.5707963267948966 rad pos: 18.5,-4.5 parent: 2 type: Transform - - uid: 7797 + - uid: 7788 components: - pos: 10.5,-0.5 parent: 2 type: Transform - - uid: 7798 + - uid: 7789 components: - rot: 3.141592653589793 rad pos: 32.5,-4.5 @@ -50947,7 +51558,7 @@ entities: type: Transform - proto: PaperCargoInvoice entities: - - uid: 7799 + - uid: 7790 components: - pos: -30.81048,-29.67205 parent: 2 @@ -50956,93 +51567,157 @@ entities: type: Paper - proto: PartRodMetal entities: - - uid: 7800 + - uid: 7791 components: - pos: -0.7048709,40.59452 parent: 2 type: Transform - - uid: 7801 + - uid: 7792 components: - pos: -0.5069542,40.552826 parent: 2 type: Transform - - uid: 7802 + - uid: 7793 components: - pos: -0.8507042,40.625793 parent: 2 type: Transform - - uid: 7803 + - uid: 7794 components: - pos: 3.602412,17.567593 parent: 2 type: Transform - - uid: 7804 + - uid: 7795 components: - pos: 18.644348,18.495897 parent: 2 type: Transform - - uid: 7805 + - uid: 7796 components: - pos: 18.377424,18.73226 parent: 2 type: Transform - - uid: 7806 + - uid: 7797 components: - pos: 23.5,28.5 parent: 2 type: Transform - proto: PartRodMetal1 entities: - - uid: 7807 + - uid: 3210 + components: + - pos: 54.371758,20.273975 + parent: 2 + type: Transform + - uid: 3212 + components: + - pos: 49.289513,25.369 + parent: 2 + type: Transform + - uid: 3252 + components: + - rot: 3.141592653589793 rad + pos: 55.289898,18.438038 + parent: 2 + type: Transform + - uid: 3254 + components: + - rot: -1.5707963267948966 rad + pos: 54.469433,24.356007 + parent: 2 + type: Transform + - uid: 3957 + components: + - rot: 1.5707963267948966 rad + pos: 53.459587,19.243288 + parent: 2 + type: Transform + - uid: 3958 + components: + - rot: 3.141592653589793 rad + pos: 53.186096,19.57532 + parent: 2 + type: Transform + - uid: 3974 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,23.5 + parent: 2 + type: Transform + - uid: 3978 + components: + - rot: -1.5707963267948966 rad + pos: 53.746643,19.277882 + parent: 2 + type: Transform + - uid: 3993 + components: + - rot: 1.5707963267948966 rad + pos: 53.453617,22.83257 + parent: 2 + type: Transform + - uid: 3999 + components: + - rot: 1.5707963267948966 rad + pos: 48.89882,26.443218 + parent: 2 + type: Transform + - uid: 7798 components: - pos: -20.463078,32.830124 parent: 2 type: Transform + - uid: 8817 + components: + - rot: 3.141592653589793 rad + pos: 53.41455,25.391163 + parent: 2 + type: Transform - proto: Pen entities: - - uid: 7808 + - uid: 7799 components: - pos: 5.487473,25.366161 parent: 2 type: Transform - proto: PersonalAI entities: - - uid: 7809 + - uid: 7800 components: - flags: SessionSpecific type: MetaData - pos: 0.35115546,37.6514 parent: 2 type: Transform - - uid: 7810 + - uid: 7801 components: - flags: SessionSpecific type: MetaData - pos: -4.497075,36.555016 parent: 2 type: Transform - - uid: 7811 + - uid: 7802 components: - flags: SessionSpecific type: MetaData - pos: -7.5098042,-24.221384 parent: 2 type: Transform - - uid: 7812 + - uid: 7803 components: - flags: SessionSpecific type: MetaData - pos: -0.30353338,-22.628323 parent: 2 type: Transform - - uid: 7813 + - uid: 7804 components: - flags: SessionSpecific type: MetaData - pos: 19.392117,-19.49079 parent: 2 type: Transform - - uid: 7814 + - uid: 7805 components: - flags: SessionSpecific type: MetaData @@ -51051,76 +51726,91 @@ entities: type: Transform - proto: Pickaxe entities: - - uid: 7815 + - uid: 7734 + components: + - pos: 36.510002,-17.43741 + parent: 2 + type: Transform + - uid: 7806 components: - pos: -37.416676,-29.510288 parent: 2 type: Transform - - uid: 7816 + - uid: 7807 components: - pos: 34.5,-14.5 parent: 2 type: Transform - - uid: 7817 + - uid: 7808 components: - rot: 1.5707963267948966 rad pos: 34.5,-14.5 parent: 2 type: Transform + - uid: 8148 + components: + - rot: 1.5707963267948966 rad + pos: 36.510002,-17.43741 + parent: 2 + type: Transform - proto: PlasmaCanister entities: - - uid: 7818 + - uid: 7809 components: - pos: 6.5,28.5 parent: 2 type: Transform - - uid: 7819 + - joinedGrid: 2 + type: AtmosDevice + - uid: 7810 components: - pos: 5.5,29.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: PlasticFlapsAirtightClear entities: - - uid: 7820 + - uid: 7811 components: - pos: 32.5,2.5 parent: 2 type: Transform - - uid: 7821 + - uid: 7812 components: - pos: 29.5,-1.5 parent: 2 type: Transform - - uid: 7822 + - uid: 7813 components: - pos: 29.5,2.5 parent: 2 type: Transform - - uid: 7823 + - uid: 7814 components: - pos: 32.5,-1.5 parent: 2 type: Transform - - uid: 7824 + - uid: 7815 components: - pos: 21.5,2.5 parent: 2 type: Transform - - uid: 7825 + - uid: 7816 components: - pos: 10.5,-2.5 parent: 2 type: Transform - proto: PlushieAtmosian entities: - - uid: 7826 + - uid: 7817 components: - pos: 30.370932,29.61524 parent: 2 type: Transform - proto: PlushieGhost entities: - - uid: 7827 + - uid: 7818 components: - rot: -1.5707963267948966 rad pos: -36.5,-28.5 @@ -51128,47 +51818,47 @@ entities: type: Transform - proto: PlushieLizard entities: - - uid: 7828 + - uid: 7819 components: - pos: 25.563232,12.691715 parent: 2 type: Transform - proto: PlushieMoth entities: - - uid: 7829 + - uid: 7820 components: - pos: -5.5936007,-1.3486671 parent: 2 type: Transform - proto: PlushieMothBartender entities: - - uid: 7830 + - uid: 7821 components: - pos: 35.498596,21.620724 parent: 2 type: Transform - - uid: 7831 + - uid: 7822 components: - pos: -9.547185,-10.295618 parent: 2 type: Transform - proto: PlushieMothMusician entities: - - uid: 7832 + - uid: 7823 components: - pos: -2.1012704,-11.585415 parent: 2 type: Transform - proto: PlushieMothRandom entities: - - uid: 7833 + - uid: 7824 components: - pos: 21.342411,8.554024 parent: 2 type: Transform - proto: PlushieNuke entities: - - uid: 7834 + - uid: 7825 components: - rot: -1.5707963267948966 rad pos: -17.347013,-9.6716 @@ -51176,7 +51866,7 @@ entities: type: Transform - proto: PlushieRatvar entities: - - uid: 7835 + - uid: 7826 components: - desc: A small stuffed doll of the elder god of Atmos; Ratvar. type: MetaData @@ -51185,14 +51875,14 @@ entities: type: Transform - proto: PlushieRGBee entities: - - uid: 7836 + - uid: 7827 components: - pos: 21.595783,-27.557093 parent: 2 type: Transform - proto: PlushieRouny entities: - - uid: 7837 + - uid: 7828 components: - rot: -1.5707963267948966 rad pos: 31.5,-6.5 @@ -51200,73 +51890,73 @@ entities: type: Transform - proto: PlushieSlime entities: - - uid: 7838 + - uid: 7829 components: - pos: 27.45078,-9.497541 parent: 2 type: Transform - proto: PlushieSpaceLizard entities: - - uid: 7839 + - uid: 7830 components: - pos: -24.399263,27.708435 parent: 2 type: Transform - proto: PortableGeneratorJrPacman entities: - - uid: 7840 + - uid: 7831 components: - pos: -29.5,26.5 parent: 2 type: Transform - - uid: 7841 + - uid: 7832 components: - pos: 22.5,-9.5 parent: 2 type: Transform - proto: PortableGeneratorPacman entities: - - uid: 7842 + - uid: 7833 components: - pos: -21.5,0.5 parent: 2 type: Transform - proto: PortableScrubber entities: - - uid: 7843 + - uid: 7834 components: - pos: 18.5,27.5 parent: 2 type: Transform - - uid: 7844 + - uid: 7835 components: - pos: 17.5,27.5 parent: 2 type: Transform - proto: PosterBroken entities: - - uid: 7845 + - uid: 7836 components: - pos: -3.5,-13.5 parent: 2 type: Transform - proto: PosterContrabandAtmosiaDeclarationIndependence entities: - - uid: 7846 + - uid: 7837 components: - pos: 29.5,30.5 parent: 2 type: Transform - proto: PosterContrabandBeachStarYamamoto entities: - - uid: 7847 + - uid: 7838 components: - pos: -5.5,6.5 parent: 2 type: Transform - proto: PosterContrabandBorgFancyv2 entities: - - uid: 7848 + - uid: 7839 components: - rot: -1.5707963267948966 rad pos: -1.5,23.5 @@ -51274,103 +51964,103 @@ entities: type: Transform - proto: PosterContrabandClown entities: - - uid: 7849 + - uid: 7840 components: - pos: 2.5,-13.5 parent: 2 type: Transform - proto: PosterContrabandCommunistState entities: - - uid: 7850 + - uid: 7841 components: - pos: -1.5,-14.5 parent: 2 type: Transform - - uid: 7851 + - uid: 7842 components: - pos: -28.5,31.5 parent: 2 type: Transform - proto: PosterContrabandFunPolice entities: - - uid: 7852 + - uid: 7843 components: - pos: 12.5,-14.5 parent: 2 type: Transform - proto: PosterContrabandHackingGuide entities: - - uid: 7853 + - uid: 7844 components: - pos: 17.5,19.5 parent: 2 type: Transform - proto: PosterContrabandLustyExomorph entities: - - uid: 7854 + - uid: 7845 components: - pos: -7.5,-10.5 parent: 2 type: Transform - proto: PosterContrabandNuclearDeviceInformational entities: - - uid: 7855 + - uid: 7846 components: - pos: -14.5,-18.5 parent: 2 type: Transform - proto: PosterContrabandPunchShit entities: - - uid: 7856 + - uid: 7847 components: - pos: -30.5,26.5 parent: 2 type: Transform - proto: PosterContrabandRevolt entities: - - uid: 7857 + - uid: 7848 components: - pos: -32.5,28.5 parent: 2 type: Transform - proto: PosterContrabandSyndicateRecruitment entities: - - uid: 7858 + - uid: 7849 components: - pos: -30.5,27.5 parent: 2 type: Transform - proto: PosterContrabandTools entities: - - uid: 7859 + - uid: 7850 components: - pos: 0.5,14.5 parent: 2 type: Transform - proto: PosterLegitDejaVu entities: - - uid: 7860 + - uid: 7851 components: - pos: 18.5,19.5 parent: 2 type: Transform - proto: PosterLegitLoveIan entities: - - uid: 7861 + - uid: 7852 components: - pos: 10.5,-6.5 parent: 2 type: Transform - proto: PosterLegitPDAAd entities: - - uid: 7862 + - uid: 7853 components: - pos: 5.5,-3.5 parent: 2 type: Transform - proto: PosterLegitSafetyMothPiping entities: - - uid: 7863 + - uid: 7854 components: - rot: -1.5707963267948966 rad pos: 4.5,30.5 @@ -51378,97 +52068,97 @@ entities: type: Transform - proto: PottedPlantBioluminscent entities: - - uid: 7864 + - uid: 7855 components: - pos: -22.5,-1.5 parent: 2 type: Transform - proto: PottedPlantRandom entities: - - uid: 7865 + - uid: 7856 components: - pos: -22.5,-9.5 parent: 2 type: Transform - - uid: 7866 + - uid: 7857 components: - pos: 1.5,-5.5 parent: 2 type: Transform - - uid: 7867 + - uid: 7858 components: - pos: -14.5,-10.5 parent: 2 type: Transform - - uid: 7868 + - uid: 7859 components: - pos: -8.5,-21.5 parent: 2 type: Transform - - uid: 7869 + - uid: 7860 components: - pos: 23.5,14.5 parent: 2 type: Transform - - uid: 7870 + - uid: 7861 components: - pos: -19.5,16.5 parent: 2 type: Transform - - uid: 7871 + - uid: 7862 components: - pos: -22.5,-26.5 parent: 2 type: Transform - - uid: 7872 + - uid: 7863 components: - pos: -20.5,-11.5 parent: 2 type: Transform - - uid: 7873 + - uid: 7864 components: - pos: 9.5,-29.5 parent: 2 type: Transform - - uid: 7874 + - uid: 7865 components: - pos: 31.5,23.5 parent: 2 type: Transform - - uid: 7875 + - uid: 7866 components: - pos: -9.5,30.5 parent: 2 type: Transform - - uid: 7876 + - uid: 7867 components: - pos: 1.5,32.5 parent: 2 type: Transform - proto: PowerCellRecharger entities: - - uid: 7877 + - uid: 7868 components: - pos: 1.5,17.5 parent: 2 type: Transform - - uid: 7878 + - uid: 7869 components: - pos: 13.5,10.5 parent: 2 type: Transform - - uid: 7879 + - uid: 7870 components: - pos: -4.5,26.5 parent: 2 type: Transform - - uid: 7880 + - uid: 7871 components: - rot: -1.5707963267948966 rad pos: 19.5,5.5 parent: 2 type: Transform - - uid: 7881 + - uid: 7872 components: - rot: 1.5707963267948966 rad pos: -17.5,4.5 @@ -51476,169 +52166,174 @@ entities: type: Transform - proto: Poweredlight entities: - - uid: 7882 + - uid: 7581 + components: + - pos: -16.5,14.5 + parent: 2 + type: Transform + - uid: 7873 components: - rot: 3.141592653589793 rad pos: 11.5,28.5 parent: 2 type: Transform - - uid: 7883 + - uid: 7874 components: - rot: 3.141592653589793 rad pos: 5.5,28.5 parent: 2 type: Transform - - uid: 7884 + - uid: 7875 components: - rot: -1.5707963267948966 rad pos: 12.5,38.5 parent: 2 type: Transform - - uid: 7885 + - uid: 7876 components: - rot: 3.141592653589793 rad pos: 15.5,-2.5 parent: 2 type: Transform - - uid: 7886 + - uid: 7877 components: - rot: 1.5707963267948966 rad pos: 22.5,-2.5 parent: 2 type: Transform - - uid: 7887 + - uid: 7878 components: - rot: 1.5707963267948966 rad pos: 27.5,-3.5 parent: 2 type: Transform - - uid: 7888 + - uid: 7879 components: - rot: 1.5707963267948966 rad pos: 27.5,-6.5 parent: 2 type: Transform - - uid: 7889 + - uid: 7880 components: - pos: 20.5,2.5 parent: 2 type: Transform - - uid: 7890 + - uid: 7881 components: - pos: 16.5,2.5 parent: 2 type: Transform - - uid: 7891 + - uid: 7882 components: - rot: 3.141592653589793 rad pos: 17.5,-7.5 parent: 2 type: Transform - - uid: 7892 + - uid: 7883 components: - rot: 3.141592653589793 rad pos: 19.5,-2.5 parent: 2 type: Transform - - uid: 7893 + - uid: 7884 components: - rot: -1.5707963267948966 rad pos: 31.5,0.5 parent: 2 type: Transform - - uid: 7894 + - uid: 7885 components: - pos: 24.5,2.5 parent: 2 type: Transform - - uid: 7895 + - uid: 7886 components: - rot: 1.5707963267948966 rad pos: 27.5,3.5 parent: 2 type: Transform - - uid: 7896 + - uid: 7887 components: - rot: 3.141592653589793 rad pos: 9.5,-2.5 parent: 2 type: Transform - - uid: 7897 + - uid: 7888 components: - rot: 1.5707963267948966 rad pos: 7.5,38.5 parent: 2 type: Transform - - uid: 7898 + - uid: 7889 components: - rot: 1.5707963267948966 rad pos: 3.5,34.5 parent: 2 type: Transform - - uid: 7899 + - uid: 7890 components: - rot: -1.5707963267948966 rad pos: 10.5,34.5 parent: 2 type: Transform - links: - - 8685 + - 8676 - 1548 type: DeviceLinkSink - - uid: 7900 + - uid: 7891 components: - rot: 1.5707963267948966 rad pos: 7.5,24.5 parent: 2 type: Transform - - uid: 7901 + - uid: 7892 components: - rot: 3.141592653589793 rad pos: -39.5,-6.5 parent: 2 type: Transform - - uid: 7902 + - uid: 7893 components: - pos: -39.5,-8.5 parent: 2 type: Transform - - uid: 7903 + - uid: 7894 components: - pos: -39.5,-0.5 parent: 2 type: Transform - - uid: 7904 + - uid: 7895 components: - rot: 3.141592653589793 rad pos: -39.5,1.5 parent: 2 type: Transform - - uid: 7905 + - uid: 7896 components: - rot: 1.5707963267948966 rad pos: 13.5,28.5 parent: 2 type: Transform - - uid: 7906 + - uid: 7897 components: - rot: 3.141592653589793 rad pos: 28.5,31.5 parent: 2 type: Transform - - uid: 7907 + - uid: 7898 components: - rot: 1.5707963267948966 rad pos: 13.5,33.5 parent: 2 type: Transform - - uid: 7908 + - uid: 7899 components: - pos: -1.5,10.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7909 + - uid: 7900 components: - rot: 3.141592653589793 rad pos: -0.5,19.5 @@ -51646,7 +52341,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7910 + - uid: 7901 components: - rot: 3.141592653589793 rad pos: -5.5,7.5 @@ -51654,7 +52349,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7911 + - uid: 7902 components: - rot: 3.141592653589793 rad pos: 4.5,19.5 @@ -51662,14 +52357,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7912 + - uid: 7903 components: - pos: -8.5,10.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7913 + - uid: 7904 components: - rot: -1.5707963267948966 rad pos: 0.5,0.5 @@ -51677,7 +52372,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7914 + - uid: 7905 components: - rot: 3.141592653589793 rad pos: 7.5,-6.5 @@ -51685,7 +52380,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7915 + - uid: 7906 components: - rot: -1.5707963267948966 rad pos: -0.5,5.5 @@ -51693,7 +52388,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7916 + - uid: 7907 components: - rot: 1.5707963267948966 rad pos: -7.5,1.5 @@ -51701,7 +52396,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7917 + - uid: 7908 components: - rot: -1.5707963267948966 rad pos: 8.5,5.5 @@ -51709,7 +52404,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7918 + - uid: 7909 components: - rot: 3.141592653589793 rad pos: 8.5,-29.5 @@ -51717,12 +52412,12 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7919 + - uid: 7910 components: - pos: 9.5,2.5 parent: 2 type: Transform - - uid: 7920 + - uid: 7911 components: - rot: -1.5707963267948966 rad pos: -11.5,6.5 @@ -51730,7 +52425,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7921 + - uid: 7912 components: - rot: 3.141592653589793 rad pos: -17.5,7.5 @@ -51738,7 +52433,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7922 + - uid: 7913 components: - rot: 1.5707963267948966 rad pos: -23.5,13.5 @@ -51746,14 +52441,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7923 + - uid: 7914 components: - pos: 4.5,13.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7924 + - uid: 7915 components: - rot: -1.5707963267948966 rad pos: 6.5,-19.5 @@ -51761,14 +52456,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7925 + - uid: 7916 components: - pos: -6.5,-17.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7926 + - uid: 7917 components: - rot: 1.5707963267948966 rad pos: 3.5,-13.5 @@ -51776,7 +52471,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7927 + - uid: 7918 components: - rot: 3.141592653589793 rad pos: 18.5,-20.5 @@ -51784,21 +52479,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7928 + - uid: 7919 components: - pos: 24.5,-19.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7929 + - uid: 7920 components: - pos: 19.5,-14.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7930 + - uid: 7921 components: - rot: 3.141592653589793 rad pos: -3.5,-5.5 @@ -51806,7 +52501,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7931 + - uid: 7922 components: - rot: -1.5707963267948966 rad pos: 3.5,16.5 @@ -51814,14 +52509,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7932 + - uid: 7923 components: - pos: 6.5,17.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7933 + - uid: 7924 components: - rot: -1.5707963267948966 rad pos: 8.5,15.5 @@ -51829,14 +52524,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7934 + - uid: 7925 components: - pos: -33.5,-0.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7935 + - uid: 7926 components: - rot: 3.141592653589793 rad pos: -33.5,-6.5 @@ -51844,14 +52539,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7936 + - uid: 7927 components: - pos: -33.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7937 + - uid: 7928 components: - rot: 1.5707963267948966 rad pos: -30.5,0.5 @@ -51859,14 +52554,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7938 + - uid: 7929 components: - pos: 13.5,-24.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7939 + - uid: 7930 components: - rot: 3.141592653589793 rad pos: -15.5,3.5 @@ -51874,14 +52569,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7940 + - uid: 7931 components: - pos: 17.5,33.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7941 + - uid: 7932 components: - rot: 1.5707963267948966 rad pos: -15.5,-19.5 @@ -51889,7 +52584,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7942 + - uid: 7933 components: - rot: 3.141592653589793 rad pos: 23.5,28.5 @@ -51897,7 +52592,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7943 + - uid: 7934 components: - rot: 3.141592653589793 rad pos: 27.5,28.5 @@ -51905,21 +52600,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7944 + - uid: 7935 components: - pos: -17.5,36.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7945 + - uid: 7936 components: - pos: -17.5,30.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7946 + - uid: 7937 components: - rot: 1.5707963267948966 rad pos: -12.5,-17.5 @@ -51927,14 +52622,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7947 + - uid: 7938 components: - pos: -19.5,-2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7948 + - uid: 7939 components: - rot: -1.5707963267948966 rad pos: -10.5,-20.5 @@ -51942,7 +52637,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7949 + - uid: 7940 components: - rot: 3.141592653589793 rad pos: 25.5,12.5 @@ -51950,7 +52645,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7950 + - uid: 7941 components: - rot: 1.5707963267948966 rad pos: -19.5,18.5 @@ -51958,7 +52653,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7951 + - uid: 7942 components: - rot: -1.5707963267948966 rad pos: -11.5,-11.5 @@ -51966,7 +52661,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7952 + - uid: 7943 components: - rot: 1.5707963267948966 rad pos: -12.5,-5.5 @@ -51974,7 +52669,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7953 + - uid: 7944 components: - rot: 1.5707963267948966 rad pos: -12.5,-1.5 @@ -51982,7 +52677,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7954 + - uid: 7945 components: - rot: -1.5707963267948966 rad pos: -11.5,11.5 @@ -51990,14 +52685,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7955 - components: - - pos: -15.5,14.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7956 + - uid: 7947 components: - rot: -1.5707963267948966 rad pos: -18.5,14.5 @@ -52005,14 +52693,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7957 + - uid: 7948 components: - pos: -21.5,22.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7958 + - uid: 7949 components: - rot: 1.5707963267948966 rad pos: 13.5,-28.5 @@ -52020,7 +52708,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7959 + - uid: 7950 components: - rot: -1.5707963267948966 rad pos: 19.5,-28.5 @@ -52028,7 +52716,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7960 + - uid: 7951 components: - rot: 3.141592653589793 rad pos: 19.5,12.5 @@ -52036,7 +52724,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7961 + - uid: 7952 components: - rot: 3.141592653589793 rad pos: 15.5,12.5 @@ -52044,7 +52732,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7962 + - uid: 7953 components: - rot: 3.141592653589793 rad pos: 12.5,16.5 @@ -52052,7 +52740,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7963 + - uid: 7954 components: - rot: 1.5707963267948966 rad pos: 10.5,15.5 @@ -52060,7 +52748,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7964 + - uid: 7955 components: - rot: 3.141592653589793 rad pos: 10.5,12.5 @@ -52068,14 +52756,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7965 + - uid: 7956 components: - pos: 5.5,10.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7966 + - uid: 7957 components: - rot: 3.141592653589793 rad pos: 5.5,8.5 @@ -52083,14 +52771,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7967 + - uid: 7958 components: - pos: 8.5,10.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7968 + - uid: 7959 components: - rot: 3.141592653589793 rad pos: 8.5,8.5 @@ -52098,7 +52786,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7969 + - uid: 7960 components: - rot: 1.5707963267948966 rad pos: 3.5,-0.5 @@ -52106,7 +52794,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7970 + - uid: 7961 components: - rot: 1.5707963267948966 rad pos: -15.5,-22.5 @@ -52114,7 +52802,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7971 + - uid: 7962 components: - rot: -1.5707963267948966 rad pos: -8.5,-29.5 @@ -52123,9 +52811,9 @@ entities: - powerLoad: 0 type: ApcPowerReceiver - links: - - 8678 + - 8669 type: DeviceLinkSink - - uid: 7972 + - uid: 7963 components: - rot: 3.141592653589793 rad pos: -8.5,-32.5 @@ -52133,7 +52821,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7973 + - uid: 7964 components: - rot: 3.141592653589793 rad pos: -12.5,-32.5 @@ -52142,9 +52830,9 @@ entities: - powerLoad: 0 type: ApcPowerReceiver - links: - - 8678 + - 8669 type: DeviceLinkSink - - uid: 7974 + - uid: 7965 components: - pos: -12.5,-28.5 parent: 2 @@ -52152,9 +52840,9 @@ entities: - powerLoad: 0 type: ApcPowerReceiver - links: - - 8678 + - 8669 type: DeviceLinkSink - - uid: 7975 + - uid: 7966 components: - rot: -1.5707963267948966 rad pos: 2.5,-26.5 @@ -52162,7 +52850,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7976 + - uid: 7967 components: - rot: 1.5707963267948966 rad pos: -3.5,-26.5 @@ -52170,7 +52858,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7977 + - uid: 7968 components: - rot: 1.5707963267948966 rad pos: -3.5,-24.5 @@ -52178,7 +52866,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7978 + - uid: 7969 components: - rot: -1.5707963267948966 rad pos: 2.5,-24.5 @@ -52186,21 +52874,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7979 + - uid: 7970 components: - pos: 1.5,-17.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7980 + - uid: 7971 components: - pos: -2.5,-17.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7981 + - uid: 7972 components: - rot: -1.5707963267948966 rad pos: -5.5,-22.5 @@ -52208,7 +52896,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7982 + - uid: 7973 components: - rot: -1.5707963267948966 rad pos: -5.5,-25.5 @@ -52216,7 +52904,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7983 + - uid: 7974 components: - rot: -1.5707963267948966 rad pos: 6.5,-22.5 @@ -52224,7 +52912,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7984 + - uid: 7975 components: - rot: 1.5707963267948966 rad pos: 22.5,24.5 @@ -52232,7 +52920,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7985 + - uid: 7976 components: - rot: 1.5707963267948966 rad pos: 3.5,-6.5 @@ -52240,14 +52928,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7986 + - uid: 7977 components: - pos: 16.5,18.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7987 + - uid: 7978 components: - rot: -1.5707963267948966 rad pos: 11.5,-12.5 @@ -52255,7 +52943,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7988 + - uid: 7979 components: - rot: 1.5707963267948966 rad pos: 10.5,-16.5 @@ -52263,7 +52951,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7989 + - uid: 7980 components: - rot: 1.5707963267948966 rad pos: 10.5,-22.5 @@ -52271,7 +52959,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7990 + - uid: 7981 components: - rot: -1.5707963267948966 rad pos: 26.5,24.5 @@ -52279,7 +52967,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7991 + - uid: 7982 components: - rot: -1.5707963267948966 rad pos: 15.5,-22.5 @@ -52287,7 +52975,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7992 + - uid: 7983 components: - rot: 3.141592653589793 rad pos: 24.5,-23.5 @@ -52295,14 +52983,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7993 + - uid: 7984 components: - pos: 14.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7994 + - uid: 7985 components: - rot: -1.5707963267948966 rad pos: 8.5,-13.5 @@ -52310,21 +52998,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7995 + - uid: 7986 components: - pos: 8.5,21.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7996 + - uid: 7987 components: - pos: 14.5,-13.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7997 + - uid: 7988 components: - rot: -1.5707963267948966 rad pos: -4.5,-7.5 @@ -52332,7 +53020,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7998 + - uid: 7989 components: - rot: 3.141592653589793 rad pos: -8.5,-8.5 @@ -52340,7 +53028,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7999 + - uid: 7990 components: - rot: 1.5707963267948966 rad pos: -9.5,-11.5 @@ -52348,7 +53036,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8000 + - uid: 7991 components: - rot: 1.5707963267948966 rad pos: -2.5,-12.5 @@ -52356,7 +53044,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8001 + - uid: 7992 components: - rot: -1.5707963267948966 rad pos: 1.5,-11.5 @@ -52364,7 +53052,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8002 + - uid: 7993 components: - rot: -1.5707963267948966 rad pos: -9.5,28.5 @@ -52372,7 +53060,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8003 + - uid: 7994 components: - rot: 1.5707963267948966 rad pos: 1.5,7.5 @@ -52380,21 +53068,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8004 + - uid: 7995 components: - pos: 0.5,-1.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8005 + - uid: 7996 components: - pos: -8.5,-1.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8006 + - uid: 7997 components: - rot: 3.141592653589793 rad pos: -8.5,12.5 @@ -52402,7 +53090,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8007 + - uid: 7998 components: - rot: 3.141592653589793 rad pos: -0.5,12.5 @@ -52410,7 +53098,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8008 + - uid: 7999 components: - rot: 1.5707963267948966 rad pos: 21.5,38.5 @@ -52418,7 +53106,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8009 + - uid: 8000 components: - rot: 1.5707963267948966 rad pos: 23.5,38.5 @@ -52426,7 +53114,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8010 + - uid: 8001 components: - rot: 1.5707963267948966 rad pos: -12.5,28.5 @@ -52434,7 +53122,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8011 + - uid: 8002 components: - rot: -1.5707963267948966 rad pos: 4.5,4.5 @@ -52442,7 +53130,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8012 + - uid: 8003 components: - rot: 1.5707963267948966 rad pos: -2.5,16.5 @@ -52450,7 +53138,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8013 + - uid: 8004 components: - rot: 3.141592653589793 rad pos: 16.5,20.5 @@ -52458,7 +53146,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8014 + - uid: 8005 components: - rot: -1.5707963267948966 rad pos: 17.5,23.5 @@ -52466,7 +53154,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8015 + - uid: 8006 components: - rot: -1.5707963267948966 rad pos: 19.5,27.5 @@ -52474,7 +53162,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8016 + - uid: 8007 components: - rot: 3.141592653589793 rad pos: 12.5,-6.5 @@ -52482,7 +53170,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8017 + - uid: 8008 components: - rot: 1.5707963267948966 rad pos: 4.5,-25.5 @@ -52490,21 +53178,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8018 + - uid: 8009 components: - pos: -20.5,5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8019 + - uid: 8010 components: - pos: -23.5,10.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8020 + - uid: 8011 components: - rot: -1.5707963267948966 rad pos: -22.5,-5.5 @@ -52512,7 +53200,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8021 + - uid: 8012 components: - rot: -1.5707963267948966 rad pos: -22.5,-1.5 @@ -52520,7 +53208,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8022 + - uid: 8013 components: - rot: 3.141592653589793 rad pos: -24.5,-9.5 @@ -52528,7 +53216,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8023 + - uid: 8014 components: - rot: 3.141592653589793 rad pos: -33.5,1.5 @@ -52536,21 +53224,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8024 + - uid: 8015 components: - pos: -14.5,-2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8025 + - uid: 8016 components: - pos: -17.5,-6.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8026 + - uid: 8017 components: - rot: 3.141592653589793 rad pos: -14.5,-4.5 @@ -52558,14 +53246,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8027 + - uid: 8018 components: - pos: 30.5,29.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8028 + - uid: 8019 components: - rot: -1.5707963267948966 rad pos: -27.5,-27.5 @@ -52573,7 +53261,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8029 + - uid: 8020 components: - rot: 1.5707963267948966 rad pos: -29.5,-27.5 @@ -52581,7 +53269,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8030 + - uid: 8021 components: - rot: 1.5707963267948966 rad pos: -25.5,-27.5 @@ -52589,7 +53277,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8031 + - uid: 8022 components: - rot: -1.5707963267948966 rad pos: -22.5,-26.5 @@ -52597,7 +53285,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8032 + - uid: 8023 components: - rot: 3.141592653589793 rad pos: -20.5,-16.5 @@ -52605,7 +53293,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8033 + - uid: 8024 components: - rot: -1.5707963267948966 rad pos: -14.5,-14.5 @@ -52613,14 +53301,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8034 + - uid: 8025 components: - pos: -17.5,-11.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8035 + - uid: 8026 components: - rot: 1.5707963267948966 rad pos: -25.5,-16.5 @@ -52628,7 +53316,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8036 + - uid: 8027 components: - rot: 1.5707963267948966 rad pos: -25.5,-20.5 @@ -52636,7 +53324,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8037 + - uid: 8028 components: - rot: 3.141592653589793 rad pos: -28.5,-20.5 @@ -52644,7 +53332,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8038 + - uid: 8029 components: - rot: 3.141592653589793 rad pos: -28.5,-16.5 @@ -52652,14 +53340,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8039 + - uid: 8030 components: - pos: -19.5,-23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8040 + - uid: 8031 components: - rot: 3.141592653589793 rad pos: -28.5,-24.5 @@ -52667,7 +53355,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8041 + - uid: 8032 components: - rot: 3.141592653589793 rad pos: -17.5,32.5 @@ -52675,7 +53363,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8042 + - uid: 8033 components: - rot: -1.5707963267948966 rad pos: -24.5,4.5 @@ -52683,14 +53371,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8043 + - uid: 8034 components: - pos: 12.5,10.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8044 + - uid: 8035 components: - rot: 3.141592653589793 rad pos: 12.5,4.5 @@ -52698,14 +53386,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8045 + - uid: 8036 components: - pos: 23.5,-15.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8046 + - uid: 8037 components: - rot: -1.5707963267948966 rad pos: -12.5,36.5 @@ -52713,7 +53401,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8047 + - uid: 8038 components: - rot: 1.5707963267948966 rad pos: -14.5,31.5 @@ -52721,14 +53409,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8048 + - uid: 8039 components: - pos: 0.5,37.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8049 + - uid: 8040 components: - rot: -1.5707963267948966 rad pos: 1.5,35.5 @@ -52736,7 +53424,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8050 + - uid: 8041 components: - rot: 1.5707963267948966 rad pos: -2.5,36.5 @@ -52744,7 +53432,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8051 + - uid: 8042 components: - rot: 1.5707963267948966 rad pos: -30.5,-7.5 @@ -52752,7 +53440,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8052 + - uid: 8043 components: - rot: -1.5707963267948966 rad pos: -25.5,13.5 @@ -52760,7 +53448,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8053 + - uid: 8044 components: - rot: 1.5707963267948966 rad pos: -28.5,8.5 @@ -52768,7 +53456,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8054 + - uid: 8045 components: - rot: 1.5707963267948966 rad pos: -28.5,13.5 @@ -52776,7 +53464,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8055 + - uid: 8046 components: - rot: -1.5707963267948966 rad pos: -30.5,12.5 @@ -52784,7 +53472,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8056 + - uid: 8047 components: - rot: -1.5707963267948966 rad pos: -30.5,9.5 @@ -52792,70 +53480,70 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8057 + - uid: 8048 components: - pos: -29.5,-30.5 parent: 2 type: Transform - - uid: 8058 + - uid: 8049 components: - pos: -26.5,-30.5 parent: 2 type: Transform - - uid: 8059 + - uid: 8050 components: - rot: 3.141592653589793 rad pos: -25.5,-42.5 parent: 2 type: Transform - - uid: 8060 + - uid: 8051 components: - rot: 3.141592653589793 rad pos: -22.5,-42.5 parent: 2 type: Transform - - uid: 8061 + - uid: 8052 components: - rot: 1.5707963267948966 rad pos: -18.5,-39.5 parent: 2 type: Transform - - uid: 8062 + - uid: 8053 components: - rot: 1.5707963267948966 rad pos: -18.5,-36.5 parent: 2 type: Transform - - uid: 8063 + - uid: 8054 components: - rot: 1.5707963267948966 rad pos: -18.5,-27.5 parent: 2 type: Transform - - uid: 8064 + - uid: 8055 components: - pos: -31.5,-41.5 parent: 2 type: Transform - - uid: 8065 + - uid: 8056 components: - rot: -1.5707963267948966 rad pos: 13.5,1.5 parent: 2 type: Transform - - uid: 8066 + - uid: 8057 components: - rot: -1.5707963267948966 rad pos: 5.5,38.5 parent: 2 type: Transform - - uid: 8067 + - uid: 8058 components: - rot: 1.5707963267948966 rad pos: 42.5,-10.5 parent: 2 type: Transform - - uid: 8068 + - uid: 8059 components: - rot: 1.5707963267948966 rad pos: 42.5,-15.5 @@ -52863,7 +53551,7 @@ entities: type: Transform - proto: PoweredLightBlueInterior entities: - - uid: 8069 + - uid: 8060 components: - rot: 3.141592653589793 rad pos: 11.5,23.5 @@ -52871,7 +53559,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8070 + - uid: 8061 components: - pos: 20.5,23.5 parent: 2 @@ -52880,7 +53568,7 @@ entities: type: ApcPowerReceiver - proto: PoweredLightColoredRed entities: - - uid: 8071 + - uid: 8062 components: - pos: 2.5,29.5 parent: 2 @@ -52889,7 +53577,7 @@ entities: type: ApcPowerReceiver - proto: PoweredlightExterior entities: - - uid: 8072 + - uid: 8063 components: - rot: -1.5707963267948966 rad pos: -4.5,43.5 @@ -52897,7 +53585,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8073 + - uid: 8064 components: - rot: 1.5707963267948966 rad pos: -10.5,43.5 @@ -52905,14 +53593,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8074 + - uid: 8065 components: - pos: -8.5,-34.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8075 + - uid: 8066 components: - pos: -7.5,47.5 parent: 2 @@ -52921,7 +53609,7 @@ entities: type: ApcPowerReceiver - proto: PoweredlightLED entities: - - uid: 8076 + - uid: 8067 components: - rot: 1.5707963267948966 rad pos: -9.5,17.5 @@ -52929,7 +53617,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8077 + - uid: 8068 components: - rot: -1.5707963267948966 rad pos: -4.5,17.5 @@ -52937,7 +53625,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8078 + - uid: 8069 components: - rot: 1.5707963267948966 rad pos: -10.5,33.5 @@ -52945,21 +53633,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8079 + - uid: 8070 components: - pos: -7.5,24.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8080 + - uid: 8071 components: - pos: -7.5,40.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8081 + - uid: 8072 components: - rot: 1.5707963267948966 rad pos: -2.5,25.5 @@ -52967,7 +53655,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8082 + - uid: 8073 components: - rot: 1.5707963267948966 rad pos: -7.5,28.5 @@ -52975,7 +53663,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8083 + - uid: 8074 components: - rot: 3.141592653589793 rad pos: -4.5,31.5 @@ -52983,7 +53671,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8084 + - uid: 8075 components: - rot: -1.5707963267948966 rad pos: 0.5,40.5 @@ -52991,7 +53679,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8085 + - uid: 8076 components: - rot: -1.5707963267948966 rad pos: 1.5,32.5 @@ -52999,7 +53687,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8086 + - uid: 8077 components: - rot: -1.5707963267948966 rad pos: 5.5,24.5 @@ -53009,36 +53697,36 @@ entities: type: ApcPowerReceiver - proto: PoweredLightPostSmall entities: - - uid: 8087 + - uid: 8078 components: - pos: 36.5,-14.5 parent: 2 type: Transform - - uid: 8088 + - uid: 8079 components: - pos: 32.5,-9.5 parent: 2 type: Transform - - uid: 8089 + - uid: 8080 components: - pos: 40.5,-11.5 parent: 2 type: Transform - proto: PoweredSmallLight entities: - - uid: 8090 + - uid: 8081 components: - rot: 3.141592653589793 rad pos: 8.5,-8.5 parent: 2 type: Transform - - uid: 8091 + - uid: 8082 components: - rot: 1.5707963267948966 rad pos: 30.5,-6.5 parent: 2 type: Transform - - uid: 8092 + - uid: 8083 components: - rot: -1.5707963267948966 rad pos: -9.5,5.5 @@ -53046,7 +53734,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8093 + - uid: 8084 components: - rot: -1.5707963267948966 rad pos: -9.5,1.5 @@ -53054,7 +53742,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8094 + - uid: 8085 components: - rot: -1.5707963267948966 rad pos: -7.5,4.5 @@ -53062,7 +53750,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8095 + - uid: 8086 components: - rot: 3.141592653589793 rad pos: 14.5,-6.5 @@ -53070,7 +53758,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8096 + - uid: 8087 components: - rot: 3.141592653589793 rad pos: -15.5,-0.5 @@ -53078,7 +53766,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8097 + - uid: 8088 components: - rot: 3.141592653589793 rad pos: -19.5,-0.5 @@ -53086,7 +53774,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8098 + - uid: 8089 components: - rot: 3.141592653589793 rad pos: 11.5,-25.5 @@ -53094,14 +53782,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8099 + - uid: 8090 components: - pos: 17.5,-22.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8100 + - uid: 8091 components: - rot: 3.141592653589793 rad pos: 11.5,8.5 @@ -53109,7 +53797,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8101 + - uid: 8092 components: - rot: 1.5707963267948966 rad pos: 24.5,-10.5 @@ -53117,14 +53805,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8102 + - uid: 8093 components: - pos: 19.5,-9.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8103 + - uid: 8094 components: - rot: -1.5707963267948966 rad pos: 33.5,14.5 @@ -53132,7 +53820,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8104 + - uid: 8095 components: - rot: 1.5707963267948966 rad pos: -23.5,17.5 @@ -53140,7 +53828,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8105 + - uid: 8096 components: - rot: -1.5707963267948966 rad pos: -21.5,17.5 @@ -53148,7 +53836,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8106 + - uid: 8097 components: - rot: -1.5707963267948966 rad pos: -13.5,21.5 @@ -53156,7 +53844,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8107 + - uid: 8098 components: - rot: 3.141592653589793 rad pos: -13.5,30.5 @@ -53164,14 +53852,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8108 + - uid: 8099 components: - pos: -6.5,-14.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8109 + - uid: 8100 components: - rot: 3.141592653589793 rad pos: -2.5,-15.5 @@ -53179,14 +53867,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8110 + - uid: 8101 components: - pos: -0.5,-7.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8111 + - uid: 8102 components: - rot: -1.5707963267948966 rad pos: -25.5,19.5 @@ -53194,7 +53882,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8112 + - uid: 8103 components: - rot: 3.141592653589793 rad pos: -17.5,24.5 @@ -53202,7 +53890,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8113 + - uid: 8104 components: - rot: 3.141592653589793 rad pos: -22.5,27.5 @@ -53210,28 +53898,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8114 + - uid: 8105 components: - pos: -20.5,30.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8115 + - uid: 8106 components: - pos: 29.5,10.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8116 + - uid: 8107 components: - pos: 18.5,10.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8117 + - uid: 8108 components: - rot: 1.5707963267948966 rad pos: 15.5,5.5 @@ -53239,28 +53927,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8118 + - uid: 8109 components: - pos: 29.5,14.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8119 + - uid: 8110 components: - pos: -6.5,-28.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8120 + - uid: 8111 components: - pos: 34.5,26.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8121 + - uid: 8112 components: - rot: -1.5707963267948966 rad pos: 37.5,20.5 @@ -53268,14 +53956,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8122 + - uid: 8113 components: - pos: 31.5,23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8123 + - uid: 8114 components: - rot: 3.141592653589793 rad pos: -9.5,16.5 @@ -53283,7 +53971,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8124 + - uid: 8115 components: - rot: 3.141592653589793 rad pos: -4.5,16.5 @@ -53291,7 +53979,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8125 + - uid: 8116 components: - rot: 1.5707963267948966 rad pos: -35.5,32.5 @@ -53299,14 +53987,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8126 + - uid: 8117 components: - pos: -32.5,35.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8127 + - uid: 8118 components: - rot: -1.5707963267948966 rad pos: -29.5,32.5 @@ -53314,7 +54002,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8128 + - uid: 8119 components: - rot: 3.141592653589793 rad pos: -32.5,29.5 @@ -53322,14 +54010,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8129 + - uid: 8120 components: - pos: -32.5,27.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8130 + - uid: 8121 components: - rot: 3.141592653589793 rad pos: -32.5,24.5 @@ -53337,14 +54025,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8131 + - uid: 8122 components: - pos: 25.5,18.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8132 + - uid: 8123 components: - rot: -1.5707963267948966 rad pos: 1.5,-9.5 @@ -53352,7 +54040,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8133 + - uid: 8124 components: - rot: 1.5707963267948966 rad pos: 27.5,5.5 @@ -53360,7 +54048,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8134 + - uid: 8125 components: - rot: -1.5707963267948966 rad pos: -17.5,-19.5 @@ -53368,13 +54056,13 @@ entities: type: Transform - proto: PoweredSmallLightEmpty entities: - - uid: 8135 + - uid: 8126 components: - rot: 1.5707963267948966 rad pos: -27.5,27.5 parent: 2 type: Transform - - uid: 8136 + - uid: 8127 components: - rot: 1.5707963267948966 rad pos: 20.5,7.5 @@ -53384,124 +54072,128 @@ entities: type: ApcPowerReceiver - proto: Protolathe entities: - - uid: 8137 + - uid: 8128 components: - pos: -7.5,28.5 parent: 2 type: Transform - proto: Rack entities: - - uid: 8138 + - uid: 981 + components: + - pos: 36.5,-16.5 + parent: 2 + type: Transform + - uid: 5194 + components: + - pos: 36.5,-17.5 + parent: 2 + type: Transform + - uid: 8129 components: - rot: -1.5707963267948966 rad pos: 11.5,-10.5 parent: 2 type: Transform - - uid: 8139 + - uid: 8130 components: - pos: 34.5,-14.5 parent: 2 type: Transform - - uid: 8140 + - uid: 8131 components: - rot: 1.5707963267948966 rad pos: 8.5,15.5 parent: 2 type: Transform - - uid: 8141 + - uid: 8132 components: - pos: -1.5,22.5 parent: 2 type: Transform - - uid: 8142 + - uid: 8133 components: - pos: 14.5,-2.5 parent: 2 type: Transform - - uid: 8143 + - uid: 8134 components: - pos: 23.5,-15.5 parent: 2 type: Transform - - uid: 8144 + - uid: 8135 components: - pos: 22.5,-17.5 parent: 2 type: Transform - - uid: 8145 + - uid: 8136 components: - pos: 23.5,-17.5 parent: 2 type: Transform - - uid: 8146 + - uid: 8137 components: - pos: 19.5,-11.5 parent: 2 type: Transform - - uid: 8147 + - uid: 8138 components: - pos: 24.5,-15.5 parent: 2 type: Transform - - uid: 8148 + - uid: 8139 components: - pos: -6.5,-14.5 parent: 2 type: Transform - - uid: 8149 + - uid: 8140 components: - pos: 15.5,7.5 parent: 2 type: Transform - - uid: 8150 + - uid: 8141 components: - pos: 17.5,5.5 parent: 2 type: Transform - - uid: 8151 + - uid: 8142 components: - pos: 29.5,16.5 parent: 2 type: Transform - - uid: 8152 + - uid: 8143 components: - pos: 17.5,-9.5 parent: 2 type: Transform - - uid: 8153 + - uid: 8144 components: - pos: 15.5,-9.5 parent: 2 type: Transform - - uid: 8154 + - uid: 8145 components: - pos: -16.5,21.5 parent: 2 type: Transform - - uid: 8155 + - uid: 8146 components: - rot: 1.5707963267948966 rad pos: -1.5,-9.5 parent: 2 type: Transform - - uid: 8156 + - uid: 8147 components: - rot: 1.5707963267948966 rad pos: 0.5,-9.5 parent: 2 type: Transform - - uid: 8157 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-14.5 - parent: 2 - type: Transform - - uid: 8158 + - uid: 8149 components: - pos: -0.5,22.5 parent: 2 type: Transform - - uid: 8159 + - uid: 8150 components: - rot: 3.141592653589793 rad pos: -6.5,-17.5 @@ -53509,390 +54201,390 @@ entities: type: Transform - proto: Railing entities: - - uid: 8160 + - uid: 8151 components: - rot: -1.5707963267948966 rad pos: 17.5,-2.5 parent: 2 type: Transform - - uid: 8161 + - uid: 8152 components: - rot: -1.5707963267948966 rad pos: 17.5,-1.5 parent: 2 type: Transform - - uid: 8162 + - uid: 8153 components: - rot: 1.5707963267948966 rad pos: -0.5,1.5 parent: 2 type: Transform - - uid: 8163 + - uid: 8154 components: - rot: 3.141592653589793 rad pos: 0.5,0.5 parent: 2 type: Transform - - uid: 8164 + - uid: 8155 components: - rot: 3.141592653589793 rad pos: -35.5,31.5 parent: 2 type: Transform - - uid: 8165 + - uid: 8156 components: - rot: -1.5707963267948966 rad pos: -31.5,33.5 parent: 2 type: Transform - - uid: 8166 + - uid: 8157 components: - rot: 3.141592653589793 rad pos: -32.5,31.5 parent: 2 type: Transform - - uid: 8167 + - uid: 8158 components: - rot: 3.141592653589793 rad pos: -34.5,31.5 parent: 2 type: Transform - - uid: 8168 + - uid: 8159 components: - rot: 3.141592653589793 rad pos: -33.5,31.5 parent: 2 type: Transform - - uid: 8169 + - uid: 8160 components: - rot: -1.5707963267948966 rad pos: -31.5,35.5 parent: 2 type: Transform - - uid: 8170 + - uid: 8161 components: - rot: -1.5707963267948966 rad pos: -31.5,32.5 parent: 2 type: Transform - - uid: 8171 + - uid: 8162 components: - rot: -1.5707963267948966 rad pos: -31.5,34.5 parent: 2 type: Transform - - uid: 8172 + - uid: 8163 components: - rot: 1.5707963267948966 rad pos: -8.5,44.5 parent: 2 type: Transform - - uid: 8173 + - uid: 8164 components: - pos: -7.5,45.5 parent: 2 type: Transform - - uid: 8174 + - uid: 8165 components: - rot: -1.5707963267948966 rad pos: -6.5,44.5 parent: 2 type: Transform - - uid: 8175 + - uid: 8166 components: - rot: 3.141592653589793 rad pos: -7.5,43.5 parent: 2 type: Transform - - uid: 8176 + - uid: 8167 components: - pos: -28.5,-40.5 parent: 2 type: Transform - - uid: 8177 + - uid: 8168 components: - pos: -27.5,-40.5 parent: 2 type: Transform - - uid: 8178 + - uid: 8169 components: - rot: 1.5707963267948966 rad pos: -26.5,-39.5 parent: 2 type: Transform - - uid: 8179 + - uid: 8170 components: - rot: 1.5707963267948966 rad pos: -26.5,-38.5 parent: 2 type: Transform - - uid: 8180 + - uid: 8171 components: - rot: 1.5707963267948966 rad pos: -26.5,-37.5 parent: 2 type: Transform - - uid: 8181 + - uid: 8172 components: - rot: 1.5707963267948966 rad pos: -26.5,-36.5 parent: 2 type: Transform - - uid: 8182 + - uid: 8173 components: - rot: 1.5707963267948966 rad pos: -26.5,-35.5 parent: 2 type: Transform - - uid: 8183 + - uid: 8174 components: - rot: 1.5707963267948966 rad pos: -26.5,-34.5 parent: 2 type: Transform - - uid: 8184 + - uid: 8175 components: - rot: 1.5707963267948966 rad pos: -26.5,-33.5 parent: 2 type: Transform - - uid: 8185 + - uid: 8176 components: - rot: 3.141592653589793 rad pos: -27.5,-32.5 parent: 2 type: Transform - - uid: 8186 + - uid: 8177 components: - rot: 3.141592653589793 rad pos: -28.5,-32.5 parent: 2 type: Transform - - uid: 8187 + - uid: 8178 components: - rot: 3.141592653589793 rad pos: -29.5,-32.5 parent: 2 type: Transform - - uid: 8188 + - uid: 8179 components: - rot: 3.141592653589793 rad pos: -30.5,-32.5 parent: 2 type: Transform - - uid: 8189 + - uid: 8180 components: - rot: 3.141592653589793 rad pos: -31.5,-32.5 parent: 2 type: Transform - - uid: 8190 + - uid: 8181 components: - rot: -1.5707963267948966 rad pos: -23.5,-33.5 parent: 2 type: Transform - - uid: 8191 + - uid: 8182 components: - rot: -1.5707963267948966 rad pos: -23.5,-34.5 parent: 2 type: Transform - - uid: 8192 + - uid: 8183 components: - rot: -1.5707963267948966 rad pos: -23.5,-35.5 parent: 2 type: Transform - - uid: 8193 + - uid: 8184 components: - rot: -1.5707963267948966 rad pos: -23.5,-36.5 parent: 2 type: Transform - - uid: 8194 + - uid: 8185 components: - rot: -1.5707963267948966 rad pos: -23.5,-37.5 parent: 2 type: Transform - - uid: 8195 + - uid: 8186 components: - rot: -1.5707963267948966 rad pos: -23.5,-38.5 parent: 2 type: Transform - - uid: 8196 + - uid: 8187 components: - rot: -1.5707963267948966 rad pos: -23.5,-39.5 parent: 2 type: Transform - - uid: 8197 + - uid: 8188 components: - pos: -14.5,-42.5 parent: 2 type: Transform - - uid: 8198 + - uid: 8189 components: - pos: -13.5,-42.5 parent: 2 type: Transform - - uid: 8199 + - uid: 8190 components: - pos: -12.5,-42.5 parent: 2 type: Transform - - uid: 8200 + - uid: 8191 components: - pos: -11.5,-42.5 parent: 2 type: Transform - - uid: 8201 + - uid: 8192 components: - rot: 3.141592653589793 rad pos: -11.5,-41.5 parent: 2 type: Transform - - uid: 8202 + - uid: 8193 components: - rot: 3.141592653589793 rad pos: -12.5,-41.5 parent: 2 type: Transform - - uid: 8203 + - uid: 8194 components: - rot: 3.141592653589793 rad pos: -13.5,-41.5 parent: 2 type: Transform - - uid: 8204 + - uid: 8195 components: - rot: 3.141592653589793 rad pos: -14.5,-41.5 parent: 2 type: Transform - - uid: 8205 + - uid: 8196 components: - rot: 3.141592653589793 rad pos: -15.5,-41.5 parent: 2 type: Transform - - uid: 8206 + - uid: 8197 components: - rot: 3.141592653589793 rad pos: -16.5,-41.5 parent: 2 type: Transform - - uid: 8207 + - uid: 8198 components: - rot: 1.5707963267948966 rad pos: -17.5,-40.5 parent: 2 type: Transform - - uid: 8208 + - uid: 8199 components: - rot: 1.5707963267948966 rad pos: -17.5,-39.5 parent: 2 type: Transform - - uid: 8209 + - uid: 8200 components: - rot: 1.5707963267948966 rad pos: -17.5,-38.5 parent: 2 type: Transform - - uid: 8210 + - uid: 8201 components: - rot: 1.5707963267948966 rad pos: -17.5,-37.5 parent: 2 type: Transform - - uid: 8211 + - uid: 8202 components: - rot: 1.5707963267948966 rad pos: -17.5,-36.5 parent: 2 type: Transform - - uid: 8212 + - uid: 8203 components: - rot: 1.5707963267948966 rad pos: -17.5,-35.5 parent: 2 type: Transform - - uid: 8213 + - uid: 8204 components: - rot: 1.5707963267948966 rad pos: -17.5,-34.5 parent: 2 type: Transform - - uid: 8214 + - uid: 8205 components: - rot: 1.5707963267948966 rad pos: -17.5,-33.5 parent: 2 type: Transform - - uid: 8215 + - uid: 8206 components: - rot: 1.5707963267948966 rad pos: -17.5,-32.5 parent: 2 type: Transform - - uid: 8216 + - uid: 8207 components: - rot: 1.5707963267948966 rad pos: -17.5,-31.5 parent: 2 type: Transform - - uid: 8217 + - uid: 8208 components: - rot: 1.5707963267948966 rad pos: -17.5,-30.5 parent: 2 type: Transform - - uid: 8218 + - uid: 8209 components: - rot: 1.5707963267948966 rad pos: -17.5,-29.5 parent: 2 type: Transform - - uid: 8219 + - uid: 8210 components: - rot: 1.5707963267948966 rad pos: -17.5,-28.5 parent: 2 type: Transform - - uid: 8220 + - uid: 8211 components: - rot: 1.5707963267948966 rad pos: -17.5,-27.5 parent: 2 type: Transform - - uid: 8221 + - uid: 8212 components: - rot: 1.5707963267948966 rad pos: -17.5,-26.5 parent: 2 type: Transform - - uid: 8222 + - uid: 8213 components: - rot: 1.5707963267948966 rad pos: 32.5,-3.5 parent: 2 type: Transform - - uid: 8223 + - uid: 8214 components: - rot: 1.5707963267948966 rad pos: 31.5,-5.5 parent: 2 type: Transform - - uid: 8224 + - uid: 8215 components: - rot: 1.5707963267948966 rad pos: 31.5,-6.5 parent: 2 type: Transform - - uid: 8225 + - uid: 8216 components: - rot: 1.5707963267948966 rad pos: 31.5,-7.5 @@ -53900,112 +54592,112 @@ entities: type: Transform - proto: RailingCorner entities: - - uid: 8226 + - uid: 8217 components: - rot: 3.141592653589793 rad pos: 17.5,-0.5 parent: 2 type: Transform - - uid: 8227 + - uid: 8218 components: - rot: 1.5707963267948966 rad pos: 18.5,-0.5 parent: 2 type: Transform - - uid: 8228 + - uid: 8219 components: - pos: -26.5,-40.5 parent: 2 type: Transform - - uid: 8229 + - uid: 8220 components: - rot: 1.5707963267948966 rad pos: -26.5,-32.5 parent: 2 type: Transform - - uid: 8230 + - uid: 8221 components: - rot: 1.5707963267948966 rad pos: -10.5,-41.5 parent: 2 type: Transform - - uid: 8231 + - uid: 8222 components: - pos: -10.5,-42.5 parent: 2 type: Transform - - uid: 8232 + - uid: 8223 components: - pos: 32.5,-4.5 parent: 2 type: Transform - proto: RailingCornerSmall entities: - - uid: 8233 + - uid: 8224 components: - rot: 1.5707963267948966 rad pos: 19.5,-29.5 parent: 2 type: Transform - - uid: 8234 + - uid: 8225 components: - rot: 3.141592653589793 rad pos: 14.5,-29.5 parent: 2 type: Transform - - uid: 8235 + - uid: 8226 components: - rot: 3.141592653589793 rad pos: -0.5,2.5 parent: 2 type: Transform - - uid: 8236 + - uid: 8227 components: - rot: -1.5707963267948966 rad pos: -0.5,0.5 parent: 2 type: Transform - - uid: 8237 + - uid: 8228 components: - pos: -31.5,31.5 parent: 2 type: Transform - - uid: 8238 + - uid: 8229 components: - rot: -1.5707963267948966 rad pos: -8.5,43.5 parent: 2 type: Transform - - uid: 8239 + - uid: 8230 components: - rot: 3.141592653589793 rad pos: -8.5,45.5 parent: 2 type: Transform - - uid: 8240 + - uid: 8231 components: - rot: 1.5707963267948966 rad pos: -6.5,45.5 parent: 2 type: Transform - - uid: 8241 + - uid: 8232 components: - pos: -6.5,43.5 parent: 2 type: Transform - - uid: 8242 + - uid: 8233 components: - rot: -1.5707963267948966 rad pos: -17.5,-41.5 parent: 2 type: Transform - - uid: 8243 + - uid: 8234 components: - rot: 3.141592653589793 rad pos: 31.5,-4.5 parent: 2 type: Transform - - uid: 8244 + - uid: 8235 components: - rot: -1.5707963267948966 rad pos: 31.5,-8.5 @@ -54013,163 +54705,163 @@ entities: type: Transform - proto: RandomArcade entities: - - uid: 8245 + - uid: 8236 components: - pos: 1.5,37.5 parent: 2 type: Transform - proto: RandomArtifactSpawner entities: - - uid: 8246 + - uid: 8237 components: - pos: -13.5,36.5 parent: 2 type: Transform - proto: RandomCrystalSpawner entities: - - uid: 8247 + - uid: 8238 components: - pos: 28.5,-17.5 parent: 2 type: Transform - - uid: 8248 + - uid: 8239 components: - pos: 33.5,-16.5 parent: 2 type: Transform - - uid: 8249 + - uid: 8240 components: - pos: 38.5,-9.5 parent: 2 type: Transform - - uid: 8250 + - uid: 8241 components: - pos: 38.5,-21.5 parent: 2 type: Transform - - uid: 8251 + - uid: 8242 components: - pos: 31.5,-27.5 parent: 2 type: Transform - - uid: 8252 + - uid: 8243 components: - pos: 25.5,-32.5 parent: 2 type: Transform - - uid: 8253 + - uid: 8244 components: - pos: -20.5,-33.5 parent: 2 type: Transform - - uid: 8254 + - uid: 8245 components: - pos: -35.5,-41.5 parent: 2 type: Transform - - uid: 8255 + - uid: 8246 components: - pos: -33.5,-31.5 parent: 2 type: Transform - - uid: 8256 + - uid: 8247 components: - pos: -38.5,30.5 parent: 2 type: Transform - - uid: 8257 + - uid: 8248 components: - pos: -34.5,38.5 parent: 2 type: Transform - - uid: 8258 + - uid: 8249 components: - pos: -36.5,43.5 parent: 2 type: Transform - - uid: 8259 + - uid: 8250 components: - pos: -25.5,39.5 parent: 2 type: Transform - - uid: 8260 + - uid: 8251 components: - pos: -14.5,41.5 parent: 2 type: Transform - - uid: 8261 + - uid: 8252 components: - pos: -9.5,52.5 parent: 2 type: Transform - - uid: 8262 + - uid: 8253 components: - pos: -1.5,47.5 parent: 2 type: Transform - - uid: 8263 + - uid: 8254 components: - pos: 16.5,39.5 parent: 2 type: Transform - - uid: 8264 + - uid: 8255 components: - pos: 20.5,42.5 parent: 2 type: Transform - - uid: 8265 + - uid: 8256 components: - pos: 24.5,41.5 parent: 2 type: Transform - - uid: 8266 + - uid: 8257 components: - pos: 31.5,35.5 parent: 2 type: Transform - proto: RandomDrinkBottle entities: - - uid: 8267 + - uid: 8258 components: - pos: 33.5,13.5 parent: 2 type: Transform - - uid: 8268 + - uid: 8259 components: - pos: -7.5,-6.5 parent: 2 type: Transform - proto: RandomFoodBakedWhole entities: - - uid: 8269 + - uid: 8260 components: - pos: -6.5,-1.5 parent: 2 type: Transform - proto: RandomFoodMeal entities: - - uid: 8270 + - uid: 8261 components: - pos: -2.5,-0.5 parent: 2 type: Transform - proto: RandomInstruments entities: - - uid: 8271 + - uid: 8262 components: - pos: 0.5,-11.5 parent: 2 type: Transform - rareChance: 0.2 type: RandomSpawner - - uid: 8272 + - uid: 8263 components: - pos: 1.5,-11.5 parent: 2 type: Transform - rareChance: 0.2 type: RandomSpawner - - uid: 8273 + - uid: 8264 components: - pos: -2.5,47.5 parent: 2 @@ -54177,1778 +54869,1778 @@ entities: - chance: 1 rareChance: 1 type: RandomSpawner - - uid: 8274 + - uid: 8265 components: - pos: 34.5,21.5 parent: 2 type: Transform - proto: RandomPainting entities: - - uid: 8275 + - uid: 8266 components: - pos: 33.5,18.5 parent: 2 type: Transform - proto: RandomPosterAny entities: - - uid: 8276 + - uid: 8267 components: - pos: -8.5,6.5 parent: 2 type: Transform - - uid: 8277 + - uid: 8268 components: - pos: 32.5,10.5 parent: 2 type: Transform - - uid: 8278 + - uid: 8269 components: - pos: 15.5,8.5 parent: 2 type: Transform - - uid: 8279 + - uid: 8270 components: - pos: 15.5,-8.5 parent: 2 type: Transform - proto: RandomPosterContraband entities: - - uid: 8280 + - uid: 8271 components: - pos: 9.5,-16.5 parent: 2 type: Transform - - uid: 8281 + - uid: 8272 components: - pos: -28.5,-21.5 parent: 2 type: Transform - - uid: 8282 + - uid: 8273 components: - pos: 25.5,-12.5 parent: 2 type: Transform - - uid: 8283 + - uid: 8274 components: - pos: 23.5,-10.5 parent: 2 type: Transform - - uid: 8284 + - uid: 8275 components: - pos: 18.5,-24.5 parent: 2 type: Transform - - uid: 8285 + - uid: 8276 components: - pos: 31.5,24.5 parent: 2 type: Transform - proto: RandomPosterLegit entities: - - uid: 8286 + - uid: 8277 components: - pos: -11.5,14.5 parent: 2 type: Transform - - uid: 8287 + - uid: 8278 components: - pos: -13.5,-9.5 parent: 2 type: Transform - - uid: 8288 + - uid: 8279 components: - pos: -19.5,-1.5 parent: 2 type: Transform - - uid: 8289 + - uid: 8280 components: - pos: -13.5,6.5 parent: 2 type: Transform - - uid: 8290 + - uid: 8281 components: - pos: 9.5,11.5 parent: 2 type: Transform - - uid: 8291 + - uid: 8282 components: - pos: -16.5,-10.5 parent: 2 type: Transform - - uid: 8292 + - uid: 8283 components: - pos: -21.5,-17.5 parent: 2 type: Transform - - uid: 8293 + - uid: 8284 components: - pos: -29.5,-17.5 parent: 2 type: Transform - - uid: 8294 + - uid: 8285 components: - pos: -8.5,-0.5 parent: 2 type: Transform - - uid: 8295 + - uid: 8286 components: - pos: 10.5,-3.5 parent: 2 type: Transform - proto: RandomSnacks entities: - - uid: 8296 + - uid: 8287 components: - pos: 17.5,5.5 parent: 2 type: Transform - - uid: 8297 + - uid: 8288 components: - pos: 17.5,5.5 parent: 2 type: Transform - proto: RandomSoap entities: - - uid: 8298 + - uid: 8289 components: - pos: -14.5,-17.5 parent: 2 type: Transform - - uid: 8299 + - uid: 8290 components: - pos: 14.5,-5.5 parent: 2 type: Transform - - uid: 8300 + - uid: 8291 components: - pos: -15.5,16.5 parent: 2 type: Transform - - uid: 8301 + - uid: 8292 components: - pos: -7.5,-32.5 parent: 2 type: Transform - - uid: 8302 + - uid: 8293 components: - pos: -15.5,-17.5 parent: 2 type: Transform - proto: RandomSpawner entities: - - uid: 8303 + - uid: 8294 components: - pos: -24.5,-22.5 parent: 2 type: Transform - - uid: 8304 + - uid: 8295 components: - pos: -21.5,-15.5 parent: 2 type: Transform - - uid: 8305 + - uid: 8296 components: - pos: -12.5,-16.5 parent: 2 type: Transform - - uid: 8306 + - uid: 8297 components: - pos: -11.5,-21.5 parent: 2 type: Transform - - uid: 8307 + - uid: 8298 components: - pos: -11.5,-4.5 parent: 2 type: Transform - - uid: 8308 + - uid: 8299 components: - pos: -23.5,-6.5 parent: 2 type: Transform - - uid: 8309 + - uid: 8300 components: - pos: -12.5,10.5 parent: 2 type: Transform - - uid: 8310 + - uid: 8301 components: - pos: 0.5,12.5 parent: 2 type: Transform - - uid: 8311 + - uid: 8302 components: - pos: 11.5,13.5 parent: 2 type: Transform - - uid: 8312 + - uid: 8303 components: - pos: -21.5,24.5 parent: 2 type: Transform - - uid: 8313 + - uid: 8304 components: - pos: -26.5,25.5 parent: 2 type: Transform - - uid: 8314 + - uid: 8305 components: - pos: -17.5,-0.5 parent: 2 type: Transform - - uid: 8315 + - uid: 8306 components: - pos: 4.5,-12.5 parent: 2 type: Transform - - uid: 8316 + - uid: 8307 components: - pos: 6.5,-22.5 parent: 2 type: Transform - - uid: 8317 + - uid: 8308 components: - pos: 16.5,-29.5 parent: 2 type: Transform - - uid: 8318 + - uid: 8309 components: - pos: 17.5,-26.5 parent: 2 type: Transform - - uid: 8319 + - uid: 8310 components: - pos: 25.5,-10.5 parent: 2 type: Transform - - uid: 8320 + - uid: 8311 components: - pos: 14.5,-11.5 parent: 2 type: Transform - - uid: 8321 + - uid: 8312 components: - pos: 17.5,7.5 parent: 2 type: Transform - proto: RandomVending entities: - - uid: 8322 + - uid: 8313 components: - pos: 21.5,18.5 parent: 2 type: Transform - proto: RandomVendingDrinks entities: - - uid: 8323 + - uid: 8314 components: - pos: 19.5,-2.5 parent: 2 type: Transform - proto: RCD entities: - - uid: 8324 + - uid: 8315 components: - pos: 21.60603,12.67695 parent: 2 type: Transform - proto: RCDAmmo entities: - - uid: 8325 + - uid: 8316 components: - pos: 21.32478,12.374657 parent: 2 type: Transform - - uid: 8326 + - uid: 8317 components: - pos: 21.226742,12.493711 parent: 2 type: Transform - proto: Recycler entities: - - uid: 8327 + - uid: 8318 components: - rot: 1.5707963267948966 rad pos: 12.5,8.5 parent: 2 type: Transform - links: - - 9386 + - 9377 type: DeviceLinkSink - proto: ReinforcedGirder entities: - - uid: 8328 + - uid: 8319 components: - pos: -33.5,-3.5 parent: 2 type: Transform - - uid: 8329 + - uid: 8320 components: - pos: -41.5,-3.5 parent: 2 type: Transform - - uid: 8330 + - uid: 8321 components: - pos: 41.5,-15.5 parent: 2 type: Transform - - uid: 8331 + - uid: 8322 components: - pos: 41.5,-17.5 parent: 2 type: Transform - - uid: 8332 + - uid: 8323 components: - pos: 44.5,-16.5 parent: 2 type: Transform - - uid: 8333 + - uid: 8324 components: - pos: 44.5,-12.5 parent: 2 type: Transform - - uid: 8334 + - uid: 8325 components: - pos: 41.5,-10.5 parent: 2 type: Transform - proto: ReinforcedPlasmaWindow entities: - - uid: 8335 + - uid: 8326 components: - pos: 16.5,35.5 parent: 2 type: Transform - - uid: 8336 + - uid: 8327 components: - pos: -22.5,6.5 parent: 2 type: Transform - - uid: 8337 + - uid: 8328 components: - pos: 27.5,34.5 parent: 2 type: Transform - - uid: 8338 + - uid: 8329 components: - pos: -18.5,4.5 parent: 2 type: Transform - - uid: 8339 + - uid: 8330 components: - pos: 26.5,-17.5 parent: 2 type: Transform - - uid: 8340 + - uid: 8331 components: - pos: 26.5,-16.5 parent: 2 type: Transform - - uid: 8341 + - uid: 8332 components: - pos: 26.5,-15.5 parent: 2 type: Transform - - uid: 8342 + - uid: 8333 components: - pos: -1.5,38.5 parent: 2 type: Transform - - uid: 8343 + - uid: 8334 components: - pos: -5.5,41.5 parent: 2 type: Transform - - uid: 8344 + - uid: 8335 components: - pos: 25.5,34.5 parent: 2 type: Transform - - uid: 8345 + - uid: 8336 components: - pos: 26.5,34.5 parent: 2 type: Transform - - uid: 8346 + - uid: 8337 components: - pos: 25.5,36.5 parent: 2 type: Transform - - uid: 8347 + - uid: 8338 components: - pos: 28.5,36.5 parent: 2 type: Transform - - uid: 8348 + - uid: 8339 components: - pos: 24.5,27.5 parent: 2 type: Transform - - uid: 8349 + - uid: 8340 components: - pos: 14.5,34.5 parent: 2 type: Transform - - uid: 8350 + - uid: 8341 components: - pos: 15.5,34.5 parent: 2 type: Transform - - uid: 8351 + - uid: 8342 components: - pos: 16.5,36.5 parent: 2 type: Transform - - uid: 8352 + - uid: 8343 components: - pos: 16.5,37.5 parent: 2 type: Transform - - uid: 8353 + - uid: 8344 components: - pos: 27.5,36.5 parent: 2 type: Transform - - uid: 8354 + - uid: 8345 components: - pos: 28.5,34.5 parent: 2 type: Transform - - uid: 8355 + - uid: 8346 components: - pos: 21.5,36.5 parent: 2 type: Transform - - uid: 8356 + - uid: 8347 components: - pos: 23.5,36.5 parent: 2 type: Transform - - uid: 8357 + - uid: 8348 components: - pos: 19.5,34.5 parent: 2 type: Transform - - uid: 8358 + - uid: 8349 components: - pos: 20.5,34.5 parent: 2 type: Transform - - uid: 8359 + - uid: 8350 components: - pos: 21.5,34.5 parent: 2 type: Transform - - uid: 8360 + - uid: 8351 components: - pos: 22.5,34.5 parent: 2 type: Transform - - uid: 8361 + - uid: 8352 components: - pos: 23.5,34.5 parent: 2 type: Transform - - uid: 8362 + - uid: 8353 components: - pos: 24.5,34.5 parent: 2 type: Transform - - uid: 8363 + - uid: 8354 components: - pos: 25.5,27.5 parent: 2 type: Transform - - uid: 8364 + - uid: 8355 components: - pos: 22.5,27.5 parent: 2 type: Transform - - uid: 8365 + - uid: 8356 components: - pos: -0.5,38.5 parent: 2 type: Transform - - uid: 8366 + - uid: 8357 components: - pos: -6.5,37.5 parent: 2 type: Transform - - uid: 8367 + - uid: 8358 components: - pos: -8.5,37.5 parent: 2 type: Transform - - uid: 8368 + - uid: 8359 components: - pos: -9.5,41.5 parent: 2 type: Transform - - uid: 8369 + - uid: 8360 components: - pos: 25.5,-17.5 parent: 2 type: Transform - - uid: 8370 + - uid: 8361 components: - pos: 25.5,-16.5 parent: 2 type: Transform - - uid: 8371 + - uid: 8362 components: - pos: 25.5,-15.5 parent: 2 type: Transform - - uid: 8372 + - uid: 8363 components: - pos: -14.5,34.5 parent: 2 type: Transform - - uid: 8373 + - uid: 8364 components: - pos: -13.5,34.5 parent: 2 type: Transform - - uid: 8374 + - uid: 8365 components: - pos: -12.5,34.5 parent: 2 type: Transform - - uid: 8375 + - uid: 8366 components: - pos: 30.5,32.5 parent: 2 type: Transform - - uid: 8376 + - uid: 8367 components: - pos: 30.5,31.5 parent: 2 type: Transform - - uid: 8377 + - uid: 8368 components: - pos: 30.5,33.5 parent: 2 type: Transform - - uid: 8378 + - uid: 8369 components: - pos: 8.5,36.5 parent: 2 type: Transform - - uid: 8379 + - uid: 8370 components: - pos: 7.5,36.5 parent: 2 type: Transform - - uid: 8380 + - uid: 8371 components: - pos: 10.5,36.5 parent: 2 type: Transform - - uid: 8381 + - uid: 8372 components: - pos: 9.5,36.5 parent: 2 type: Transform - proto: ReinforcedWindow entities: - - uid: 8382 + - uid: 8373 components: - pos: -28.5,18.5 parent: 2 type: Transform - - uid: 8383 + - uid: 8374 components: - pos: 31.5,3.5 parent: 2 type: Transform - - uid: 8384 + - uid: 8375 components: - pos: 6.5,14.5 parent: 2 type: Transform - - uid: 8385 + - uid: 8376 components: - pos: 26.5,-2.5 parent: 2 type: Transform - - uid: 8386 + - uid: 8377 components: - pos: 25.5,-0.5 parent: 2 type: Transform - - uid: 8387 + - uid: 8378 components: - pos: 29.5,6.5 parent: 2 type: Transform - - uid: 8388 + - uid: 8379 components: - pos: 32.5,0.5 parent: 2 type: Transform - - uid: 8389 + - uid: 8380 components: - pos: 30.5,3.5 parent: 2 type: Transform - - uid: 8390 + - uid: 8381 components: - pos: 9.5,17.5 parent: 2 type: Transform - - uid: 8391 + - uid: 8382 components: - pos: 30.5,-2.5 parent: 2 type: Transform - - uid: 8392 + - uid: 8383 components: - pos: 21.5,0.5 parent: 2 type: Transform - - uid: 8393 + - uid: 8384 components: - pos: 4.5,36.5 parent: 2 type: Transform - - uid: 8394 + - uid: 8385 components: - pos: 12.5,32.5 parent: 2 type: Transform - - uid: 8395 + - uid: 8386 components: - pos: 12.5,29.5 parent: 2 type: Transform - - uid: 8396 + - uid: 8387 components: - pos: 7.5,-3.5 parent: 2 type: Transform - - uid: 8397 + - uid: 8388 components: - pos: 8.5,-3.5 parent: 2 type: Transform - - uid: 8398 + - uid: 8389 components: - pos: 10.5,0.5 parent: 2 type: Transform - - uid: 8399 + - uid: 8390 components: - pos: 23.5,-0.5 parent: 2 type: Transform - - uid: 8400 + - uid: 8391 components: - pos: 5.5,36.5 parent: 2 type: Transform - - uid: 8401 + - uid: 8392 components: - pos: 31.5,-2.5 parent: 2 type: Transform - - uid: 8402 + - uid: 8393 components: - pos: 6.5,-23.5 parent: 2 type: Transform - - uid: 8403 + - uid: 8394 components: - pos: -3.5,-29.5 parent: 2 type: Transform - - uid: 8404 + - uid: 8395 components: - pos: -42.5,0.5 parent: 2 type: Transform - - uid: 8405 + - uid: 8396 components: - pos: -13.5,-6.5 parent: 2 type: Transform - - uid: 8406 + - uid: 8397 components: - pos: -38.5,-7.5 parent: 2 type: Transform - - uid: 8407 + - uid: 8398 components: - pos: -29.5,4.5 parent: 2 type: Transform - - uid: 8408 + - uid: 8399 components: - pos: -42.5,-7.5 parent: 2 type: Transform - - uid: 8409 + - uid: 8400 components: - pos: -25.5,9.5 parent: 2 type: Transform - - uid: 8410 + - uid: 8401 components: - pos: -40.5,-7.5 parent: 2 type: Transform - - uid: 8411 + - uid: 8402 components: - pos: -36.5,-7.5 parent: 2 type: Transform - - uid: 8412 + - uid: 8403 components: - pos: -19.5,15.5 parent: 2 type: Transform - - uid: 8413 + - uid: 8404 components: - pos: -20.5,14.5 parent: 2 type: Transform - - uid: 8414 + - uid: 8405 components: - pos: -29.5,11.5 parent: 2 type: Transform - - uid: 8415 + - uid: 8406 components: - pos: 15.5,-31.5 parent: 2 type: Transform - - uid: 8416 + - uid: 8407 components: - pos: -20.5,-5.5 parent: 2 type: Transform - - uid: 8417 + - uid: 8408 components: - pos: -42.5,-5.5 parent: 2 type: Transform - - uid: 8418 + - uid: 8409 components: - pos: 10.5,-30.5 parent: 2 type: Transform - - uid: 8419 + - uid: 8410 components: - pos: 6.5,-30.5 parent: 2 type: Transform - - uid: 8420 + - uid: 8411 components: - pos: 7.5,-30.5 parent: 2 type: Transform - - uid: 8421 + - uid: 8412 components: - pos: 5.5,-5.5 parent: 2 type: Transform - - uid: 8422 + - uid: 8413 components: - pos: -20.5,9.5 parent: 2 type: Transform - - uid: 8423 + - uid: 8414 components: - pos: 19.5,-24.5 parent: 2 type: Transform - - uid: 8424 + - uid: 8415 components: - pos: -16.5,-5.5 parent: 2 type: Transform - - uid: 8425 + - uid: 8416 components: - pos: -11.5,-22.5 parent: 2 type: Transform - - uid: 8426 + - uid: 8417 components: - pos: -10.5,-22.5 parent: 2 type: Transform - - uid: 8427 + - uid: 8418 components: - pos: -12.5,-22.5 parent: 2 type: Transform - - uid: 8428 + - uid: 8419 components: - pos: 39.5,14.5 parent: 2 type: Transform - - uid: 8429 + - uid: 8420 components: - pos: 41.5,17.5 parent: 2 type: Transform - - uid: 8430 + - uid: 8421 components: - pos: -24.5,-14.5 parent: 2 type: Transform - - uid: 8431 + - uid: 8422 components: - pos: -13.5,-13.5 parent: 2 type: Transform - - uid: 8432 + - uid: 8423 components: - pos: -13.5,-10.5 parent: 2 type: Transform - - uid: 8433 + - uid: 8424 components: - pos: -7.5,-20.5 parent: 2 type: Transform - - uid: 8434 + - uid: 8425 components: - pos: -9.5,-23.5 parent: 2 type: Transform - - uid: 8435 + - uid: 8426 components: - pos: -2.5,-30.5 parent: 2 type: Transform - - uid: 8436 + - uid: 8427 components: - pos: -1.5,-30.5 parent: 2 type: Transform - - uid: 8437 + - uid: 8428 components: - pos: -0.5,-30.5 parent: 2 type: Transform - - uid: 8438 + - uid: 8429 components: - pos: 0.5,-30.5 parent: 2 type: Transform - - uid: 8439 + - uid: 8430 components: - pos: 1.5,-30.5 parent: 2 type: Transform - - uid: 8440 + - uid: 8431 components: - pos: 2.5,-29.5 parent: 2 type: Transform - - uid: 8441 + - uid: 8432 components: - pos: 0.5,-25.5 parent: 2 type: Transform - - uid: 8442 + - uid: 8433 components: - pos: -0.5,-25.5 parent: 2 type: Transform - - uid: 8443 + - uid: 8434 components: - pos: -9.5,-24.5 parent: 2 type: Transform - - uid: 8444 + - uid: 8435 components: - pos: -13.5,-28.5 parent: 2 type: Transform - - uid: 8445 + - uid: 8436 components: - pos: -14.5,-29.5 parent: 2 type: Transform - - uid: 8446 + - uid: 8437 components: - pos: -14.5,-31.5 parent: 2 type: Transform - - uid: 8447 + - uid: 8438 components: - pos: -14.5,-30.5 parent: 2 type: Transform - - uid: 8448 + - uid: 8439 components: - pos: -13.5,-32.5 parent: 2 type: Transform - - uid: 8449 + - uid: 8440 components: - pos: 3.5,-22.5 parent: 2 type: Transform - - uid: 8450 + - uid: 8441 components: - pos: 3.5,-21.5 parent: 2 type: Transform - - uid: 8451 + - uid: 8442 components: - pos: 3.5,-19.5 parent: 2 type: Transform - - uid: 8452 + - uid: 8443 components: - pos: 3.5,-17.5 parent: 2 type: Transform - - uid: 8453 + - uid: 8444 components: - pos: -9.5,-17.5 parent: 2 type: Transform - - uid: 8454 + - uid: 8445 components: - pos: -9.5,-19.5 parent: 2 type: Transform - - uid: 8455 + - uid: 8446 components: - pos: -4.5,-19.5 parent: 2 type: Transform - - uid: 8456 + - uid: 8447 components: - pos: -4.5,-17.5 parent: 2 type: Transform - - uid: 8457 + - uid: 8448 components: - pos: 18.5,-31.5 parent: 2 type: Transform - - uid: 8458 + - uid: 8449 components: - pos: 7.5,-21.5 parent: 2 type: Transform - - uid: 8459 + - uid: 8450 components: - pos: 16.5,-31.5 parent: 2 type: Transform - - uid: 8460 + - uid: 8451 components: - pos: 7.5,-17.5 parent: 2 type: Transform - - uid: 8461 + - uid: 8452 components: - pos: 7.5,-20.5 parent: 2 type: Transform - - uid: 8462 + - uid: 8453 components: - pos: 7.5,-18.5 parent: 2 type: Transform - - uid: 8463 + - uid: 8454 components: - pos: 4.5,-23.5 parent: 2 type: Transform - - uid: 8464 + - uid: 8455 components: - pos: 6.5,-14.5 parent: 2 type: Transform - - uid: 8465 + - uid: 8456 components: - pos: 14.5,-30.5 parent: 2 type: Transform - - uid: 8466 + - uid: 8457 components: - pos: 11.5,-30.5 parent: 2 type: Transform - - uid: 8467 + - uid: 8458 components: - pos: 17.5,-31.5 parent: 2 type: Transform - - uid: 8468 + - uid: 8459 components: - pos: 16.5,-18.5 parent: 2 type: Transform - - uid: 8469 + - uid: 8460 components: - pos: 13.5,-22.5 parent: 2 type: Transform - - uid: 8470 + - uid: 8461 components: - pos: 13.5,-21.5 parent: 2 type: Transform - - uid: 8471 + - uid: 8462 components: - pos: 19.5,-17.5 parent: 2 type: Transform - - uid: 8472 + - uid: 8463 components: - pos: 18.5,-17.5 parent: 2 type: Transform - - uid: 8473 + - uid: 8464 components: - pos: 19.5,-21.5 parent: 2 type: Transform - - uid: 8474 + - uid: 8465 components: - pos: 20.5,-21.5 parent: 2 type: Transform - - uid: 8475 + - uid: 8466 components: - pos: 27.5,-20.5 parent: 2 type: Transform - - uid: 8476 + - uid: 8467 components: - pos: 8.5,25.5 parent: 2 type: Transform - - uid: 8477 + - uid: 8468 components: - pos: 8.5,26.5 parent: 2 type: Transform - - uid: 8478 + - uid: 8469 components: - pos: 8.5,23.5 parent: 2 type: Transform - - uid: 8479 + - uid: 8470 components: - pos: -1.5,-25.5 parent: 2 type: Transform - - uid: 8480 + - uid: 8471 components: - pos: 40.5,17.5 parent: 2 type: Transform - - uid: 8481 + - uid: 8472 components: - pos: 40.5,14.5 parent: 2 type: Transform - - uid: 8482 + - uid: 8473 components: - pos: 41.5,14.5 parent: 2 type: Transform - - uid: 8483 + - uid: 8474 components: - pos: 12.5,12.5 parent: 2 type: Transform - - uid: 8484 + - uid: 8475 components: - pos: -34.5,-1.5 parent: 2 type: Transform - - uid: 8485 + - uid: 8476 components: - pos: 12.5,14.5 parent: 2 type: Transform - - uid: 8486 + - uid: 8477 components: - pos: 17.5,14.5 parent: 2 type: Transform - - uid: 8487 + - uid: 8478 components: - pos: -34.5,-7.5 parent: 2 type: Transform - - uid: 8488 + - uid: 8479 components: - pos: -32.5,-7.5 parent: 2 type: Transform - - uid: 8489 + - uid: 8480 components: - pos: 28.5,-10.5 parent: 2 type: Transform - - uid: 8490 + - uid: 8481 components: - pos: 27.5,-12.5 parent: 2 type: Transform - - uid: 8491 + - uid: 8482 components: - pos: -38.5,-5.5 parent: 2 type: Transform - - uid: 8492 + - uid: 8483 components: - pos: -32.5,-1.5 parent: 2 type: Transform - - uid: 8493 + - uid: 8484 components: - pos: 28.5,-9.5 parent: 2 type: Transform - - uid: 8494 + - uid: 8485 components: - pos: -34.5,-9.5 parent: 2 type: Transform - - uid: 8495 + - uid: 8486 components: - pos: -34.5,-5.5 parent: 2 type: Transform - - uid: 8496 + - uid: 8487 components: - pos: 26.5,-12.5 parent: 2 type: Transform - - uid: 8497 + - uid: 8488 components: - pos: 28.5,-11.5 parent: 2 type: Transform - - uid: 8498 + - uid: 8489 components: - pos: 19.5,-30.5 parent: 2 type: Transform - - uid: 8499 + - uid: 8490 components: - pos: 27.5,-8.5 parent: 2 type: Transform - - uid: 8500 + - uid: 8491 components: - pos: -36.5,-9.5 parent: 2 type: Transform - - uid: 8501 + - uid: 8492 components: - pos: 28.5,29.5 parent: 2 type: Transform - - uid: 8502 + - uid: 8493 components: - pos: 13.5,23.5 parent: 2 type: Transform - - uid: 8503 + - uid: 8494 components: - pos: -21.5,-8.5 parent: 2 type: Transform - - uid: 8504 + - uid: 8495 components: - pos: 20.5,15.5 parent: 2 type: Transform - - uid: 8505 + - uid: 8496 components: - pos: -28.5,-9.5 parent: 2 type: Transform - - uid: 8506 + - uid: 8497 components: - pos: -27.5,-9.5 parent: 2 type: Transform - - uid: 8507 + - uid: 8498 components: - pos: -24.5,29.5 parent: 2 type: Transform - - uid: 8508 + - uid: 8499 components: - pos: -25.5,30.5 parent: 2 type: Transform - - uid: 8509 + - uid: 8500 components: - pos: 19.5,15.5 parent: 2 type: Transform - - uid: 8510 + - uid: 8501 components: - pos: 36.5,27.5 parent: 2 type: Transform - - uid: 8511 + - uid: 8502 components: - pos: 8.5,24.5 parent: 2 type: Transform - - uid: 8512 + - uid: 8503 components: - pos: -6.5,25.5 parent: 2 type: Transform - - uid: 8513 + - uid: 8504 components: - pos: -25.5,8.5 parent: 2 type: Transform - - uid: 8514 + - uid: 8505 components: - pos: 13.5,24.5 parent: 2 type: Transform - - uid: 8515 + - uid: 8506 components: - pos: 17.5,12.5 parent: 2 type: Transform - - uid: 8516 + - uid: 8507 components: - pos: 21.5,20.5 parent: 2 type: Transform - - uid: 8517 + - uid: 8508 components: - pos: 39.5,24.5 parent: 2 type: Transform - - uid: 8518 + - uid: 8509 components: - pos: 6.5,-3.5 parent: 2 type: Transform - - uid: 8519 + - uid: 8510 components: - pos: -23.5,29.5 parent: 2 type: Transform - - uid: 8520 + - uid: 8511 components: - pos: 22.5,12.5 parent: 2 type: Transform - - uid: 8521 + - uid: 8512 components: - pos: 9.5,-30.5 parent: 2 type: Transform - - uid: 8522 + - uid: 8513 components: - pos: 39.5,23.5 parent: 2 type: Transform - - uid: 8523 + - uid: 8514 components: - pos: 39.5,25.5 parent: 2 type: Transform - - uid: 8524 + - uid: 8515 components: - pos: 37.5,27.5 parent: 2 type: Transform - - uid: 8525 + - uid: 8516 components: - pos: -30.5,-9.5 parent: 2 type: Transform - - uid: 8526 + - uid: 8517 components: - pos: -38.5,2.5 parent: 2 type: Transform - - uid: 8527 + - uid: 8518 components: - pos: -38.5,0.5 parent: 2 type: Transform - - uid: 8528 + - uid: 8519 components: - pos: 39.5,17.5 parent: 2 type: Transform - - uid: 8529 + - uid: 8520 components: - pos: 5.5,-30.5 parent: 2 type: Transform - - uid: 8530 + - uid: 8521 components: - pos: -8.5,15.5 parent: 2 type: Transform - - uid: 8531 + - uid: 8522 components: - pos: -5.5,15.5 parent: 2 type: Transform - - uid: 8532 + - uid: 8523 components: - pos: -38.5,-1.5 parent: 2 type: Transform - - uid: 8533 + - uid: 8524 components: - pos: -34.5,26.5 parent: 2 type: Transform - - uid: 8534 + - uid: 8525 components: - pos: -34.5,25.5 parent: 2 type: Transform - - uid: 8535 + - uid: 8526 components: - pos: 14.5,22.5 parent: 2 type: Transform - - uid: 8536 + - uid: 8527 components: - pos: 15.5,22.5 parent: 2 type: Transform - - uid: 8537 + - uid: 8528 components: - pos: 18.5,21.5 parent: 2 type: Transform - - uid: 8538 + - uid: 8529 components: - pos: -40.5,-9.5 parent: 2 type: Transform - - uid: 8539 + - uid: 8530 components: - pos: -23.5,-10.5 parent: 2 type: Transform - - uid: 8540 + - uid: 8531 components: - pos: -24.5,-10.5 parent: 2 type: Transform - - uid: 8541 + - uid: 8532 components: - pos: -32.5,-9.5 parent: 2 type: Transform - - uid: 8542 + - uid: 8533 components: - pos: -42.5,2.5 parent: 2 type: Transform - - uid: 8543 + - uid: 8534 components: - pos: -34.5,2.5 parent: 2 type: Transform - - uid: 8544 + - uid: 8535 components: - pos: 18.5,20.5 parent: 2 type: Transform - - uid: 8545 + - uid: 8536 components: - pos: -36.5,-1.5 parent: 2 type: Transform - - uid: 8546 + - uid: 8537 components: - pos: -14.5,-16.5 parent: 2 type: Transform - - uid: 8547 + - uid: 8538 components: - pos: -30.5,-24.5 parent: 2 type: Transform - - uid: 8548 + - uid: 8539 components: - pos: -30.5,-23.5 parent: 2 type: Transform - - uid: 8549 + - uid: 8540 components: - pos: -30.5,-19.5 parent: 2 type: Transform - - uid: 8550 + - uid: 8541 components: - pos: -30.5,-18.5 parent: 2 type: Transform - - uid: 8551 + - uid: 8542 components: - pos: -30.5,-16.5 parent: 2 type: Transform - - uid: 8552 + - uid: 8543 components: - pos: -30.5,-15.5 parent: 2 type: Transform - - uid: 8553 + - uid: 8544 components: - pos: -23.5,-14.5 parent: 2 type: Transform - - uid: 8554 + - uid: 8545 components: - pos: -21.5,-11.5 parent: 2 type: Transform - - uid: 8555 + - uid: 8546 components: - pos: -21.5,-12.5 parent: 2 type: Transform - - uid: 8556 + - uid: 8547 components: - pos: -21.5,-13.5 parent: 2 type: Transform - - uid: 8557 + - uid: 8548 components: - pos: -15.5,-16.5 parent: 2 type: Transform - - uid: 8558 + - uid: 8549 components: - pos: -24.5,-25.5 parent: 2 type: Transform - - uid: 8559 + - uid: 8550 components: - pos: 31.5,30.5 parent: 2 type: Transform - - uid: 8560 + - uid: 8551 components: - pos: 32.5,30.5 parent: 2 type: Transform - - uid: 8561 + - uid: 8552 components: - pos: 33.5,29.5 parent: 2 type: Transform - - uid: 8562 + - uid: 8553 components: - pos: 33.5,28.5 parent: 2 type: Transform - - uid: 8563 + - uid: 8554 components: - pos: 0.5,34.5 parent: 2 type: Transform - - uid: 8564 + - uid: 8555 components: - pos: -24.5,2.5 parent: 2 type: Transform - - uid: 8565 + - uid: 8556 components: - pos: -40.5,-1.5 parent: 2 type: Transform - - uid: 8566 + - uid: 8557 components: - pos: 26.5,-31.5 parent: 2 type: Transform - - uid: 8567 + - uid: 8558 components: - pos: 24.5,-31.5 parent: 2 type: Transform - - uid: 8568 + - uid: 8559 components: - pos: 25.5,-31.5 parent: 2 type: Transform - - uid: 8569 + - uid: 8560 components: - pos: -40.5,-5.5 parent: 2 type: Transform - - uid: 8570 + - uid: 8561 components: - pos: -42.5,-1.5 parent: 2 type: Transform - - uid: 8571 + - uid: 8562 components: - pos: -36.5,-5.5 parent: 2 type: Transform - - uid: 8572 + - uid: 8563 components: - pos: 35.5,27.5 parent: 2 type: Transform - - uid: 8573 + - uid: 8564 components: - pos: -18.5,35.5 parent: 2 type: Transform - - uid: 8574 + - uid: 8565 components: - pos: -18.5,34.5 parent: 2 type: Transform - - uid: 8575 + - uid: 8566 components: - pos: -18.5,33.5 parent: 2 type: Transform - - uid: 8576 + - uid: 8567 components: - pos: -11.5,32.5 parent: 2 type: Transform - - uid: 8577 + - uid: 8568 components: - pos: -38.5,-9.5 parent: 2 type: Transform - - uid: 8578 + - uid: 8569 components: - pos: -30.5,21.5 parent: 2 type: Transform - - uid: 8579 + - uid: 8570 components: - pos: -29.5,21.5 parent: 2 type: Transform - - uid: 8580 + - uid: 8571 components: - pos: -42.5,-9.5 parent: 2 type: Transform - - uid: 8581 + - uid: 8572 components: - pos: -30.5,36.5 parent: 2 type: Transform - - uid: 8582 + - uid: 8573 components: - pos: -31.5,36.5 parent: 2 type: Transform - - uid: 8583 + - uid: 8574 components: - pos: -33.5,36.5 parent: 2 type: Transform - - uid: 8584 + - uid: 8575 components: - pos: -34.5,36.5 parent: 2 type: Transform - - uid: 8585 + - uid: 8576 components: - pos: -36.5,34.5 parent: 2 type: Transform - - uid: 8586 + - uid: 8577 components: - pos: -36.5,33.5 parent: 2 type: Transform - - uid: 8587 + - uid: 8578 components: - pos: -36.5,31.5 parent: 2 type: Transform - - uid: 8588 + - uid: 8579 components: - pos: -36.5,30.5 parent: 2 type: Transform - - uid: 8589 + - uid: 8580 components: - pos: -40.5,2.5 parent: 2 type: Transform - - uid: 8590 + - uid: 8581 components: - pos: -32.5,-5.5 parent: 2 type: Transform - - uid: 8591 + - uid: 8582 components: - pos: -32.5,2.5 parent: 2 type: Transform - - uid: 8592 + - uid: 8583 components: - pos: -36.5,0.5 parent: 2 type: Transform - - uid: 8593 + - uid: 8584 components: - pos: -40.5,0.5 parent: 2 type: Transform - - uid: 8594 + - uid: 8585 components: - pos: -32.5,0.5 parent: 2 type: Transform - - uid: 8595 + - uid: 8586 components: - pos: -36.5,2.5 parent: 2 type: Transform - - uid: 8596 + - uid: 8587 components: - pos: -34.5,0.5 parent: 2 type: Transform - - uid: 8597 + - uid: 8588 components: - pos: 29.5,7.5 parent: 2 type: Transform - - uid: 8598 + - uid: 8589 components: - pos: -29.5,5.5 parent: 2 type: Transform - - uid: 8599 + - uid: 8590 components: - pos: -30.5,13.5 parent: 2 type: Transform - - uid: 8600 + - uid: 8591 components: - pos: -30.5,8.5 parent: 2 type: Transform - - uid: 8601 + - uid: 8592 components: - pos: -29.5,10.5 parent: 2 type: Transform - - uid: 8602 + - uid: 8593 components: - pos: -31.5,13.5 parent: 2 type: Transform - - uid: 8603 + - uid: 8594 components: - pos: -31.5,8.5 parent: 2 type: Transform - - uid: 8604 + - uid: 8595 components: - pos: -30.5,15.5 parent: 2 type: Transform - - uid: 8605 + - uid: 8596 components: - pos: -31.5,15.5 parent: 2 type: Transform - - uid: 8606 + - uid: 8597 components: - pos: -31.5,6.5 parent: 2 type: Transform - - uid: 8607 + - uid: 8598 components: - pos: -30.5,6.5 parent: 2 type: Transform - - uid: 8608 + - uid: 8599 components: - pos: 29.5,0.5 parent: 2 type: Transform - - uid: 8609 + - uid: 8600 components: - pos: 3.5,36.5 parent: 2 type: Transform - - uid: 8610 + - uid: 8601 components: - pos: 7.5,14.5 parent: 2 type: Transform - - uid: 8611 + - uid: 8602 components: - pos: 17.5,-3.5 parent: 2 type: Transform - - uid: 8612 + - uid: 8603 components: - pos: 29.5,-6.5 parent: 2 type: Transform - - uid: 8613 + - uid: 8604 components: - pos: 18.5,-3.5 parent: 2 type: Transform - - uid: 8614 + - uid: 8605 components: - pos: -28.5,17.5 parent: 2 type: Transform - - uid: 8615 + - uid: 8606 components: - pos: -0.5,-6.5 parent: 2 type: Transform - - uid: 8616 + - uid: 8607 components: - pos: -1.5,-6.5 parent: 2 type: Transform - - uid: 8617 + - uid: 8608 components: - pos: -2.5,-6.5 parent: 2 type: Transform - - uid: 8618 + - uid: 8609 components: - pos: 1.5,-6.5 parent: 2 type: Transform - - uid: 8619 + - uid: 8610 components: - pos: 2.5,-7.5 parent: 2 type: Transform - - uid: 8620 + - uid: 8611 components: - pos: 2.5,-8.5 parent: 2 type: Transform - proto: RemoteSignaller entities: - - uid: 8621 + - uid: 8612 components: - name: burn chamber remote type: MetaData @@ -55956,54 +56648,54 @@ entities: parent: 2 type: Transform - linkedPorts: - 7574: + 7566: - Pressed: Trigger type: DeviceLinkSource - proto: ResearchAndDevelopmentServer entities: - - uid: 8622 + - uid: 8613 components: - pos: -5.5,38.5 parent: 2 type: Transform - proto: ReverseEngineeringMachine entities: - - uid: 8623 + - uid: 8614 components: - pos: -14.5,33.5 parent: 2 type: Transform - proto: RevolverCapGun entities: - - uid: 8624 + - uid: 8615 components: - pos: -0.9342804,-11.419859 parent: 2 type: Transform - proto: Rickenbacker4003Instrument entities: - - uid: 8625 + - uid: 8616 components: - pos: -31.52537,40.564377 parent: 2 type: Transform - proto: RipleyChassis entities: - - uid: 8626 + - uid: 8617 components: - pos: 16.5,2.5 parent: 2 type: Transform - proto: Roboisseur entities: - - uid: 8627 + - uid: 8618 components: - pos: -0.5,-1.5 parent: 2 type: Transform - proto: SalvageMagnet entities: - - uid: 8628 + - uid: 8619 components: - rot: 1.5707963267948966 rad pos: 42.5,-9.5 @@ -56011,327 +56703,322 @@ entities: type: Transform - proto: SecBreachingHammer entities: - - uid: 8629 + - uid: 8620 components: - pos: 22.879267,-14.333235 parent: 2 type: Transform - proto: SecurityTechFab entities: - - uid: 8630 + - uid: 8621 components: - pos: 18.5,-14.5 parent: 2 type: Transform - proto: SeedExtractor entities: - - uid: 8631 + - uid: 8622 components: - pos: -8.5,10.5 parent: 2 type: Transform - proto: ShardGlass entities: - - uid: 8632 + - uid: 8623 components: - pos: -28.034584,30.43123 parent: 2 type: Transform - - uid: 8633 + - uid: 8624 components: - pos: -29.331459,31.30623 parent: 2 type: Transform - proto: SheetGlass entities: - - uid: 8634 + - uid: 8625 components: - pos: -1.4510615,22.468235 parent: 2 type: Transform - - uid: 8635 + - uid: 8626 components: - pos: 0.5972125,39.97951 parent: 2 type: Transform - - uid: 8636 + - uid: 8627 components: - pos: 0.3472125,39.96909 parent: 2 type: Transform - - uid: 8637 + - uid: 8628 components: - pos: -4.5804086,35.804497 parent: 2 type: Transform - - uid: 8638 + - uid: 8629 components: - pos: -4.2574916,35.804497 parent: 2 type: Transform - - uid: 8639 + - uid: 8630 components: - pos: 3.2364807,17.564814 parent: 2 type: Transform - - uid: 8640 + - uid: 8631 components: - pos: -4.403325,35.79407 parent: 2 type: Transform - - uid: 8641 + - uid: 8632 components: - pos: 17.790182,18.66268 parent: 2 type: Transform - - uid: 8642 + - uid: 8633 components: - pos: 24.5,28.5 parent: 2 type: Transform - - uid: 8643 + - uid: 8634 components: - pos: -1.4423792,22.476915 parent: 2 type: Transform - proto: SheetPlasma entities: - - uid: 8644 + - uid: 8635 components: - pos: 5.468627,23.546305 parent: 2 type: Transform - proto: SheetPlasma1 entities: - - uid: 8645 - components: - - pos: -15.136902,14.763554 - parent: 2 - type: Transform - - uid: 8646 + - uid: 8636 components: - - pos: -14.949402,14.742706 + - pos: -15.1518955,14.474548 parent: 2 type: Transform - proto: SheetPlasteel entities: - - uid: 8647 + - uid: 8638 components: - pos: 16.84999,18.641832 parent: 2 type: Transform - proto: SheetPlastic entities: - - uid: 8648 + - uid: 8639 components: - pos: 18.5,-15.5 parent: 2 type: Transform - count: 15 type: Stack - - uid: 8649 + - uid: 8640 components: - pos: -4.653325,35.17906 parent: 2 type: Transform - - uid: 8650 + - uid: 8641 components: - pos: -4.434575,35.158215 parent: 2 type: Transform - - uid: 8651 + - uid: 8642 components: - pos: -4.5179086,35.168636 parent: 2 type: Transform - - uid: 8652 + - uid: 8643 components: - pos: 17.308323,18.66268 parent: 2 type: Transform - - uid: 8653 + - uid: 8644 components: - pos: 14.5,-2.5 parent: 2 type: Transform - proto: SheetRGlass entities: - - uid: 8654 + - uid: 8645 components: - pos: 14.5,-2.5 parent: 2 type: Transform - proto: SheetSteel entities: - - uid: 8655 + - uid: 8646 components: - pos: 25.5,28.5 parent: 2 type: Transform - - uid: 8656 + - uid: 8647 components: - pos: 0.5659625,39.593826 parent: 2 type: Transform - - uid: 8657 + - uid: 8648 components: - pos: 18.531702,-15.43318 parent: 2 type: Transform - count: 15 type: Stack - - uid: 8658 + - uid: 8649 components: - pos: 16.370823,18.631409 parent: 2 type: Transform - - uid: 8659 + - uid: 8650 components: - pos: -4.497075,34.553627 parent: 2 type: Transform - - uid: 8660 + - uid: 8651 components: - pos: 3.6739807,17.575237 parent: 2 type: Transform - - uid: 8661 + - uid: 8652 components: - pos: -4.340825,34.564053 parent: 2 type: Transform - - uid: 8662 + - uid: 8653 components: - pos: 0.38887912,39.593826 parent: 2 type: Transform - - uid: 8663 + - uid: 8654 components: - pos: -4.6741586,34.564053 parent: 2 type: Transform - - uid: 8664 + - uid: 8655 components: - pos: 22.5,31.5 parent: 2 type: Transform - - uid: 8665 + - uid: 8656 components: - pos: 24.5,31.5 parent: 2 type: Transform - - uid: 8666 + - uid: 8657 components: - pos: 14.565151,-2.5371656 parent: 2 type: Transform - - uid: 8667 + - uid: 8658 components: - pos: -1.4597437,22.485596 parent: 2 type: Transform - proto: ShuttersNormalOpen entities: - - uid: 8668 + - uid: 8659 components: - pos: -21.5,-2.5 parent: 2 type: Transform - links: - - 8684 + - 8675 type: DeviceLinkSink - - uid: 8669 + - uid: 8660 components: - pos: -21.5,-4.5 parent: 2 type: Transform - links: - - 8684 + - 8675 type: DeviceLinkSink - - uid: 8670 + - uid: 8661 components: - pos: -17.5,-2.5 parent: 2 type: Transform - links: - - 8684 + - 8675 type: DeviceLinkSink - - uid: 8671 + - uid: 8662 components: - pos: -17.5,-4.5 parent: 2 type: Transform - links: - - 8684 + - 8675 type: DeviceLinkSink - proto: ShuttersWindow entities: - - uid: 8672 + - uid: 8663 components: - pos: -3.5,20.5 parent: 2 type: Transform - links: - - 8677 + - 8668 type: DeviceLinkSink - - uid: 8673 + - uid: 8664 components: - pos: -3.5,19.5 parent: 2 type: Transform - links: - - 8677 + - 8668 type: DeviceLinkSink - proto: ShuttersWindowOpen entities: - - uid: 8674 + - uid: 8665 components: - pos: -21.5,-3.5 parent: 2 type: Transform - links: - - 8684 + - 8675 type: DeviceLinkSink - - uid: 8675 + - uid: 8666 components: - pos: -17.5,-3.5 parent: 2 type: Transform - links: - - 8684 + - 8675 type: DeviceLinkSink - proto: SignAi entities: - - uid: 8676 + - uid: 8667 components: - pos: -7.5,41.5 parent: 2 type: Transform - proto: SignalButton entities: - - uid: 8677 + - uid: 8668 components: - rot: -1.5707963267948966 rad pos: 1.5,21.5 parent: 2 type: Transform - linkedPorts: - 8672: + 8663: - Pressed: Toggle - 8673: + 8664: - Pressed: Toggle type: DeviceLinkSource - - uid: 8678 + - uid: 8669 components: - pos: -10.5,-31.5 parent: 2 type: Transform - linkedPorts: - 7971: + 7962: - Pressed: Toggle - 7974: + 7965: - Pressed: Toggle - 7973: + 7964: - Pressed: Toggle 1553: - Pressed: Toggle @@ -56344,7 +57031,7 @@ entities: 1549: - Pressed: Toggle type: DeviceLinkSource - - uid: 8679 + - uid: 8670 components: - rot: 1.5707963267948966 rad pos: -15.5,31.5 @@ -56358,7 +57045,7 @@ entities: 1543: - Pressed: Toggle type: DeviceLinkSource - - uid: 8680 + - uid: 8671 components: - pos: 16.5,34.5 parent: 2 @@ -56371,7 +57058,7 @@ entities: type: DeviceLinkSource - proto: SignalButtonDirectional entities: - - uid: 8681 + - uid: 8672 components: - pos: -27.5,-14.5 parent: 2 @@ -56380,7 +57067,7 @@ entities: 70: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 8682 + - uid: 8673 components: - rot: -1.5707963267948966 rad pos: -26.5,-19.5 @@ -56390,7 +57077,7 @@ entities: 69: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 8683 + - uid: 8674 components: - rot: -1.5707963267948966 rad pos: -25.5,-23.5 @@ -56400,33 +57087,33 @@ entities: 65: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 8684 + - uid: 8675 components: - pos: -20.5,-5.5 parent: 2 type: Transform - linkedPorts: - 8669: + 8660: - Pressed: Toggle - 8674: + 8665: - Pressed: Toggle - 8668: + 8659: - Pressed: Toggle - 8670: + 8661: - Pressed: Toggle - 8675: + 8666: - Pressed: Toggle - 8671: + 8662: - Pressed: Toggle type: DeviceLinkSource - - uid: 8685 + - uid: 8676 components: - rot: -1.5707963267948966 rad pos: 11.5,34.5 parent: 2 type: Transform - linkedPorts: - 7899: + 7890: - Pressed: Toggle 1545: - Pressed: Toggle @@ -56439,51 +57126,51 @@ entities: type: DeviceLinkSource - proto: SignAnomaly entities: - - uid: 8686 + - uid: 8677 components: - pos: -11.5,33.5 parent: 2 type: Transform - proto: SignArmory entities: - - uid: 8687 + - uid: 8678 components: - pos: 16.5,-17.5 parent: 2 type: Transform - proto: SignBiohazardMed entities: - - uid: 8688 + - uid: 8679 components: - pos: -22.5,6.5 parent: 2 type: Transform - - uid: 8689 + - uid: 8680 components: - pos: -18.5,4.5 parent: 2 type: Transform - proto: SignBridge entities: - - uid: 8690 + - uid: 8681 components: - pos: 3.5,-16.5 parent: 2 type: Transform - - uid: 8691 + - uid: 8682 components: - pos: -10.5,-16.5 parent: 2 type: Transform - proto: SignCargo entities: - - uid: 8692 + - uid: 8683 components: - rot: -1.5707963267948966 rad pos: 5.5,-2.5 parent: 2 type: Transform - - uid: 8693 + - uid: 8684 components: - rot: -1.5707963267948966 rad pos: 5.5,2.5 @@ -56491,25 +57178,25 @@ entities: type: Transform - proto: SignCargoDock entities: - - uid: 8694 + - uid: 8685 components: - rot: 3.141592653589793 rad pos: 29.5,-2.5 parent: 2 type: Transform - - uid: 8695 + - uid: 8686 components: - rot: 3.141592653589793 rad pos: 32.5,-2.5 parent: 2 type: Transform - - uid: 8696 + - uid: 8687 components: - rot: 3.141592653589793 rad pos: 32.5,3.5 parent: 2 type: Transform - - uid: 8697 + - uid: 8688 components: - rot: 3.141592653589793 rad pos: 29.5,3.5 @@ -56517,90 +57204,90 @@ entities: type: Transform - proto: SignChapel entities: - - uid: 8698 + - uid: 8689 components: - pos: -9.5,15.5 parent: 2 type: Transform - proto: SignChem entities: - - uid: 8699 + - uid: 8690 components: - pos: -17.5,14.5 parent: 2 type: Transform - proto: SignCloning entities: - - uid: 8700 + - uid: 8691 components: - pos: -20.5,14.5 parent: 2 type: Transform - proto: SignConspiracyBoard entities: - - uid: 8701 + - uid: 8692 components: - pos: -19.5,-17.5 parent: 2 type: Transform - proto: SignDirectionalBridge entities: - - uid: 8702 + - uid: 8693 components: - pos: -10.502095,-11.270584 parent: 2 type: Transform - - uid: 8703 + - uid: 8694 components: - pos: -13.5023775,-5.277466 parent: 2 type: Transform - - uid: 8704 + - uid: 8695 components: - pos: 2.4969792,-6.7222195 parent: 2 type: Transform - proto: SignDirectionalBrig entities: - - uid: 8705 + - uid: 8696 components: - pos: 12.5,-12.5 parent: 2 type: Transform - proto: SignDirectionalDorms entities: - - uid: 8706 + - uid: 8697 components: - rot: -1.5707963267948966 rad pos: -10.5,-11.5 parent: 2 type: Transform - - uid: 8707 + - uid: 8698 components: - pos: -13.502144,-5.738777 parent: 2 type: Transform - proto: SignDirectionalEng entities: - - uid: 8708 + - uid: 8699 components: - rot: 1.5707963267948966 rad pos: 0.5,11.5 parent: 2 type: Transform - - uid: 8709 + - uid: 8700 components: - rot: 3.141592653589793 rad pos: -10.5,-0.5 parent: 2 type: Transform - - uid: 8710 + - uid: 8701 components: - rot: 3.141592653589793 rad pos: 2.5,-6.5 parent: 2 type: Transform - - uid: 8711 + - uid: 8702 components: - rot: 1.5707963267948966 rad pos: -10.5,11.5 @@ -56608,7 +57295,7 @@ entities: type: Transform - proto: SignDirectionalEvac entities: - - uid: 8712 + - uid: 8703 components: - rot: -1.5707963267948966 rad pos: -14.5,-1.5 @@ -56616,7 +57303,7 @@ entities: type: Transform - proto: SignDirectionalFood entities: - - uid: 8713 + - uid: 8704 components: - rot: 1.5707963267948966 rad pos: -10.495825,-0.72594845 @@ -56624,7 +57311,7 @@ entities: type: Transform - proto: SignDirectionalGravity entities: - - uid: 8714 + - uid: 8705 components: - rot: 3.141592653589793 rad pos: 12.502012,19.72526 @@ -56632,7 +57319,7 @@ entities: type: Transform - proto: SignDirectionalHop entities: - - uid: 8715 + - uid: 8706 components: - rot: 1.5707963267948966 rad pos: -13.5,-5.5 @@ -56640,25 +57327,25 @@ entities: type: Transform - proto: SignDirectionalMed entities: - - uid: 8716 + - uid: 8707 components: - rot: 3.141592653589793 rad pos: -10.495608,-0.041553497 parent: 2 type: Transform - - uid: 8717 + - uid: 8708 components: - rot: -1.5707963267948966 rad pos: 2.487935,-6.948291 parent: 2 type: Transform - - uid: 8718 + - uid: 8709 components: - rot: -1.5707963267948966 rad pos: 0.49993616,11.731386 parent: 2 type: Transform - - uid: 8719 + - uid: 8710 components: - rot: -1.5707963267948966 rad pos: -10.50188,11.722548 @@ -56666,13 +57353,13 @@ entities: type: Transform - proto: SignDirectionalSci entities: - - uid: 8720 + - uid: 8711 components: - rot: 1.5707963267948966 rad pos: -10.504114,11.275202 parent: 2 type: Transform - - uid: 8721 + - uid: 8712 components: - rot: 3.141592653589793 rad pos: -10.493698,-0.27061605 @@ -56680,17 +57367,17 @@ entities: type: Transform - proto: SignDirectionalSec entities: - - uid: 8722 + - uid: 8713 components: - pos: 2.4907293,-6.271907 parent: 2 type: Transform - - uid: 8723 + - uid: 8714 components: - pos: 0.50798494,11.269236 parent: 2 type: Transform - - uid: 8724 + - uid: 8715 components: - rot: 1.5707963267948966 rad pos: -10.50176,-6.268303 @@ -56698,7 +57385,7 @@ entities: type: Transform - proto: SignDirectionalSolar entities: - - uid: 8725 + - uid: 8716 components: - rot: 3.141592653589793 rad pos: -22.5,26.5 @@ -56706,7 +57393,7 @@ entities: type: Transform - proto: SignDirectionalSupply entities: - - uid: 8726 + - uid: 8717 components: - rot: 1.5707963267948966 rad pos: -10.500423,-6.4916277 @@ -56714,35 +57401,35 @@ entities: type: Transform - proto: SignDrones entities: - - uid: 8727 + - uid: 8718 components: - pos: -3.5,39.5 parent: 2 type: Transform - proto: SignElectricalMed entities: - - uid: 8728 + - uid: 8719 components: - pos: 21.5,19.5 parent: 2 type: Transform - proto: SignEngineering entities: - - uid: 8729 + - uid: 8720 components: - pos: 4.5,14.5 parent: 2 type: Transform - proto: SignEscapePods entities: - - uid: 8730 + - uid: 8721 components: - pos: -28.5,33.5 parent: 2 type: Transform - proto: SignEVA entities: - - uid: 8731 + - uid: 8722 components: - desc: A sign indicating an EVA equipment room. type: MetaData @@ -56750,7 +57437,7 @@ entities: pos: 1.5,-6.5 parent: 2 type: Transform - - uid: 8732 + - uid: 8723 components: - desc: A sign indicating an EVA equipment room. type: MetaData @@ -56760,60 +57447,60 @@ entities: type: Transform - proto: SignExamroom entities: - - uid: 8733 + - uid: 8724 components: - pos: -14.5,6.5 parent: 2 type: Transform - proto: SignGravity entities: - - uid: 8734 + - uid: 8725 components: - pos: 11.5,22.5 parent: 2 type: Transform - proto: SignInterrogation entities: - - uid: 8735 + - uid: 8726 components: - pos: 11.5,-23.5 parent: 2 type: Transform - proto: SignMail entities: - - uid: 8736 + - uid: 8727 components: - pos: 5.5,3.5 parent: 2 type: Transform - - uid: 8737 + - uid: 8728 components: - pos: 9.5,5.5 parent: 2 type: Transform - proto: SignMedical entities: - - uid: 8738 + - uid: 8729 components: - pos: -13.5,11.5 parent: 2 type: Transform - proto: SignMorgue entities: - - uid: 8739 + - uid: 8730 components: - pos: -23.5,15.5 parent: 2 type: Transform - proto: SignNTMine entities: - - uid: 8740 + - uid: 8731 components: - rot: -1.5707963267948966 rad pos: 28.5,-4.5 parent: 2 type: Transform - - uid: 8741 + - uid: 8732 components: - rot: -1.5707963267948966 rad pos: -35.5,-30.5 @@ -56821,69 +57508,69 @@ entities: type: Transform - proto: SignPlaque entities: - - uid: 8742 + - uid: 8733 components: - pos: -6.5,-0.5 parent: 2 type: Transform - proto: SignShield entities: - - uid: 8743 + - uid: 8734 components: - pos: 6.5,-13.5 parent: 2 type: Transform - proto: SignShipDock entities: - - uid: 8744 + - uid: 8735 components: - pos: -31.5,-1.5 parent: 2 type: Transform - - uid: 8745 + - uid: 8736 components: - pos: -31.5,-5.5 parent: 2 type: Transform - proto: SignSurvival entities: - - uid: 8746 + - uid: 8737 components: - rot: -1.5707963267948966 rad pos: -35.5,-26.5 parent: 2 type: Transform - - uid: 8747 + - uid: 8738 components: - rot: -1.5707963267948966 rad pos: -37.5,-26.5 parent: 2 type: Transform - - uid: 8748 + - uid: 8739 components: - rot: -1.5707963267948966 rad pos: -34.5,-29.5 parent: 2 type: Transform - - uid: 8749 + - uid: 8740 components: - rot: -1.5707963267948966 rad pos: -37.5,-30.5 parent: 2 type: Transform - - uid: 8750 + - uid: 8741 components: - rot: -1.5707963267948966 rad pos: -34.5,-27.5 parent: 2 type: Transform - - uid: 8751 + - uid: 8742 components: - rot: -1.5707963267948966 rad pos: -38.5,-27.5 parent: 2 type: Transform - - uid: 8752 + - uid: 8743 components: - rot: -1.5707963267948966 rad pos: -38.5,-29.5 @@ -56891,40 +57578,52 @@ entities: type: Transform - proto: SignTelecomms entities: - - uid: 8753 + - uid: 8744 components: - pos: 19.5,19.5 parent: 2 type: Transform - proto: Sink entities: - - uid: 8754 + - uid: 8745 components: - rot: -1.5707963267948966 rad pos: 29.5,13.5 parent: 2 type: Transform - - uid: 8755 + - uid: 8746 components: - rot: 3.141592653589793 rad pos: -8.5,-32.5 parent: 2 type: Transform - - uid: 8756 + - uid: 8747 components: - rot: 3.141592653589793 rad pos: 24.5,-23.5 parent: 2 type: Transform + - uid: 8748 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,9.5 + parent: 2 + type: Transform + - uid: 8749 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 2 + type: Transform - proto: SinkEmpty entities: - - uid: 8757 + - uid: 8750 components: - rot: 3.141592653589793 rad pos: -7.5,-8.5 parent: 2 type: Transform - - uid: 8758 + - uid: 8751 components: - rot: -1.5707963267948966 rad pos: 14.5,-5.5 @@ -56932,7 +57631,7 @@ entities: type: Transform - proto: SinkStemless entities: - - uid: 8759 + - uid: 8752 components: - rot: -1.5707963267948966 rad pos: 17.5,-23.5 @@ -56940,37 +57639,44 @@ entities: type: Transform - proto: SmallLight entities: - - uid: 8760 + - uid: 8753 components: - rot: -1.5707963267948966 rad pos: -35.5,-28.5 parent: 2 type: Transform +- proto: SmartFridge + entities: + - uid: 9441 + components: + - pos: -36.5,-27.5 + parent: 2 + type: Transform - proto: SMESBasic entities: - - uid: 8761 + - uid: 8754 components: - pos: 15.5,19.5 parent: 2 type: Transform - - uid: 8762 + - uid: 8755 components: - pos: 13.5,19.5 parent: 2 type: Transform - - uid: 8763 + - uid: 8756 components: - pos: 14.5,19.5 parent: 2 type: Transform - - uid: 8764 + - uid: 8757 components: - name: North Solar SMES type: MetaData - pos: -20.5,27.5 parent: 2 type: Transform - - uid: 8765 + - uid: 8758 components: - name: East Solar SMES type: MetaData @@ -56979,420 +57685,555 @@ entities: type: Transform - proto: SmokingPipeFilledTobacco entities: - - uid: 8766 + - uid: 8759 components: - pos: -12.332444,28.704548 parent: 2 type: Transform - proto: SoapHomemade entities: - - uid: 8767 + - uid: 8760 components: - pos: 17.502792,-23.408857 parent: 2 type: Transform - proto: soda_dispenser entities: - - uid: 8768 + - uid: 8761 components: - rot: -1.5707963267948966 rad pos: -4.5,-8.5 parent: 2 type: Transform - - uid: 8769 + - uid: 8762 components: - rot: 3.141592653589793 rad pos: 36.5,19.5 parent: 2 type: Transform -- proto: SolarAssemblyPart +- proto: SolarAssembly entities: - - uid: 8770 + - uid: 3016 components: - - pos: 51.532413,29.530523 + - pos: -27.5,52.5 parent: 2 type: Transform - - uid: 8771 + - uid: 3017 components: - - pos: 45.563663,29.546148 + - pos: -17.5,52.5 parent: 2 type: Transform - - uid: 8772 + - uid: 3023 components: - - pos: 57.51679,27.530523 + - pos: -13.5,58.5 parent: 2 type: Transform - - uid: 8773 + - uid: 3027 components: - - pos: 44.45429,31.483648 + - pos: -14.5,54.5 parent: 2 type: Transform -- proto: SolarPanel - entities: - - uid: 8774 + - uid: 3033 components: - - pos: 49.5,29.5 + - pos: -18.5,62.5 parent: 2 type: Transform - - uid: 8775 + - uid: 3036 components: - - pos: 55.5,29.5 + - pos: -14.5,58.5 parent: 2 type: Transform - - uid: 8776 + - uid: 3038 components: - - pos: 57.5,29.5 + - pos: -15.5,58.5 parent: 2 type: Transform - - uid: 8777 + - uid: 3050 components: - - pos: -24.5,54.5 + - pos: -15.5,54.5 parent: 2 type: Transform - - uid: 8778 + - uid: 3056 components: - - pos: -16.5,56.5 + - pos: -16.5,52.5 parent: 2 type: Transform - - uid: 8779 + - uid: 3061 components: - - pos: -18.5,56.5 + - pos: -13.5,60.5 parent: 2 type: Transform - - uid: 8780 + - uid: 3079 components: - - pos: -14.5,61.5 + - pos: -12.5,54.5 parent: 2 type: Transform - - uid: 8781 + - uid: 3200 components: - - pos: -18.5,63.5 + - pos: 49.5,24.5 parent: 2 type: Transform - - uid: 8782 + - uid: 3229 components: - - pos: -22.5,63.5 + - pos: 51.5,9.5 parent: 2 type: Transform - - uid: 8783 + - uid: 3235 components: - - pos: -12.5,60.5 + - pos: 47.5,13.5 parent: 2 type: Transform - - uid: 8784 + - uid: 3240 components: - - pos: -14.5,63.5 + - pos: 47.5,24.5 parent: 2 type: Transform - - uid: 8785 + - uid: 3241 components: - - pos: -16.5,63.5 + - pos: 45.5,9.5 parent: 2 type: Transform - - uid: 8786 + - uid: 3251 components: - - pos: -28.5,53.5 + - pos: 45.5,11.5 parent: 2 type: Transform - - uid: 8787 + - uid: 3823 components: - - pos: 56.5,31.5 + - pos: -25.5,58.5 parent: 2 type: Transform - - uid: 8788 + - uid: 3824 components: - - pos: -16.5,54.5 + - pos: -27.5,56.5 parent: 2 type: Transform - - uid: 8789 + - uid: 3825 components: - - pos: 55.5,27.5 + - pos: -22.5,56.5 parent: 2 type: Transform - - uid: 8790 + - uid: 3826 components: - - pos: 57.5,25.5 + - pos: -24.5,54.5 parent: 2 type: Transform - - uid: 8791 + - uid: 3832 components: - - pos: 55.5,25.5 + - pos: -28.5,60.5 parent: 2 type: Transform - - uid: 8792 + - uid: 3967 components: - - pos: 53.5,27.5 + - pos: 49.5,19.5 parent: 2 type: Transform - - uid: 8793 + - uid: 3980 components: - - pos: 51.5,27.5 + - pos: 47.5,14.5 parent: 2 type: Transform - - uid: 8794 + - uid: 4016 components: - - pos: 53.5,29.5 + - pos: -24.5,62.5 parent: 2 type: Transform - - uid: 8795 + - uid: 4017 components: - - pos: 52.5,31.5 + - pos: -24.5,58.5 parent: 2 type: Transform - - uid: 8796 + - uid: 4060 components: - - pos: 47.5,29.5 + - pos: -27.5,60.5 parent: 2 type: Transform - - uid: 8797 + - uid: 7493 + components: + - pos: -16.5,60.5 + parent: 2 + type: Transform + - uid: 7504 + components: + - pos: 49.5,13.5 + parent: 2 + type: Transform + - uid: 7528 components: - - pos: 47.5,27.5 + - pos: -15.5,62.5 parent: 2 type: Transform - uid: 8798 components: - - pos: 43.5,29.5 + - pos: 47.5,12.5 parent: 2 type: Transform - - uid: 8799 + - uid: 8814 components: - - pos: 43.5,27.5 + - pos: 45.5,22.5 parent: 2 type: Transform - - uid: 8800 + - uid: 8815 components: - - pos: 45.5,27.5 + - pos: 45.5,10.5 parent: 2 type: Transform - - uid: 8801 +- proto: SolarPanel + entities: + - uid: 2908 components: - - pos: 43.5,25.5 + - pos: -26.5,56.5 parent: 2 type: Transform - - uid: 8802 + - uid: 3024 components: - - pos: 49.5,25.5 + - pos: -23.5,56.5 parent: 2 type: Transform - - uid: 8803 + - uid: 3029 components: - - pos: 45.5,25.5 + - pos: -25.5,52.5 parent: 2 type: Transform - - uid: 8804 + - uid: 3032 components: - - pos: 47.5,25.5 + - pos: -24.5,56.5 parent: 2 type: Transform - - uid: 8805 + - uid: 3057 components: - - pos: 51.5,25.5 + - pos: -12.5,60.5 parent: 2 type: Transform - - uid: 8806 + - uid: 3058 components: - - pos: -28.5,60.5 + - pos: -25.5,62.5 parent: 2 type: Transform - - uid: 8807 + - uid: 3059 components: - - pos: -26.5,63.5 + - pos: -26.5,58.5 parent: 2 type: Transform - - uid: 8808 + - uid: 3072 components: - - pos: -26.5,61.5 + - pos: -27.5,62.5 parent: 2 type: Transform - - uid: 8809 + - uid: 3074 components: - - pos: -24.5,61.5 + - pos: -26.5,62.5 parent: 2 type: Transform - - uid: 8810 + - uid: 3075 components: - - pos: -26.5,56.5 + - pos: -16.5,58.5 parent: 2 type: Transform - - uid: 8811 + - uid: 3076 components: - - pos: -18.5,54.5 + - pos: -17.5,62.5 parent: 2 type: Transform - - uid: 8812 + - uid: 3083 components: - - pos: -22.5,56.5 + - pos: -26.5,54.5 parent: 2 type: Transform - - uid: 8813 + - uid: 3095 components: - - pos: -14.5,54.5 + - pos: -12.5,58.5 parent: 2 type: Transform - - uid: 8814 + - uid: 3191 components: - - pos: -12.5,53.5 + - pos: 45.5,20.5 parent: 2 type: Transform - - uid: 8815 + - uid: 3192 components: - - pos: -26.5,54.5 + - pos: 49.5,12.5 + parent: 2 + type: Transform + - uid: 3230 + components: + - pos: 45.5,13.5 + parent: 2 + type: Transform + - uid: 3231 + components: + - pos: 55.5,14.5 + parent: 2 + type: Transform + - uid: 3236 + components: + - pos: 53.5,10.5 + parent: 2 + type: Transform + - uid: 3268 + components: + - pos: -17.5,58.5 + parent: 2 + type: Transform + - uid: 3968 + components: + - pos: 51.5,14.5 + parent: 2 + type: Transform + - uid: 3969 + components: + - pos: 47.5,22.5 + parent: 2 + type: Transform + - uid: 3971 + components: + - pos: 45.5,19.5 + parent: 2 + type: Transform + - uid: 3981 + components: + - pos: 51.5,10.5 + parent: 2 + type: Transform + - uid: 3983 + components: + - pos: 45.5,18.5 + parent: 2 + type: Transform + - uid: 3989 + components: + - pos: 47.5,9.5 + parent: 2 + type: Transform + - uid: 3990 + components: + - pos: 53.5,13.5 + parent: 2 + type: Transform + - uid: 7488 + components: + - pos: -16.5,54.5 + parent: 2 + type: Transform + - uid: 7490 + components: + - pos: -17.5,54.5 + parent: 2 + type: Transform + - uid: 7495 + components: + - pos: -12.5,52.5 + parent: 2 + type: Transform + - uid: 7496 + components: + - pos: -13.5,52.5 + parent: 2 + type: Transform + - uid: 7497 + components: + - pos: -24.5,52.5 + parent: 2 + type: Transform + - uid: 7508 + components: + - pos: 49.5,22.5 parent: 2 type: Transform - proto: SolarPanelBroken entities: - - uid: 8816 + - uid: 3025 components: - - pos: 57.5,18.5 + - pos: -16.5,62.5 parent: 2 type: Transform - - uid: 8817 + - uid: 3034 components: - - pos: -14.5,56.5 + - pos: -25.5,56.5 parent: 2 type: Transform - - uid: 8818 + - uid: 3044 components: - - pos: -22.5,61.5 + - pos: -23.5,58.5 parent: 2 type: Transform - - uid: 8819 + - uid: 3046 components: - - pos: -18.5,61.5 + - pos: -23.5,62.5 parent: 2 type: Transform - - uid: 8820 + - uid: 3053 components: - - pos: -22.5,54.5 + - pos: -26.5,60.5 parent: 2 type: Transform - - uid: 8821 + - uid: 3093 components: - - pos: 53.5,25.5 + - pos: -14.5,60.5 parent: 2 type: Transform - - uid: 8822 + - uid: 3201 components: - - pos: 49.5,27.5 + - pos: 45.5,14.5 parent: 2 type: Transform - - uid: 8823 + - uid: 3228 components: - - pos: 48.5,31.5 + - pos: 53.5,8.5 parent: 2 type: Transform - - uid: 8824 + - uid: 3234 components: - - pos: 49.5,16.5 + - pos: 49.5,18.5 parent: 2 type: Transform - - uid: 8825 + - uid: 3245 components: - - pos: -16.5,61.5 + - pos: 53.5,18.5 parent: 2 type: Transform - - uid: 8826 + - uid: 3270 components: - - pos: -24.5,63.5 + - pos: -12.5,62.5 parent: 2 type: Transform - - uid: 8827 + - uid: 3966 components: - - pos: -24.5,56.5 + - pos: 49.5,8.5 + parent: 2 + type: Transform + - uid: 3979 + components: + - pos: 47.5,23.5 + parent: 2 + type: Transform + - uid: 3987 + components: + - pos: 55.5,12.5 + parent: 2 + type: Transform + - uid: 3988 + components: + - pos: 49.5,21.5 + parent: 2 + type: Transform + - uid: 7473 + components: + - pos: -25.5,60.5 + parent: 2 + type: Transform + - uid: 8787 + components: + - pos: 53.5,24.5 parent: 2 type: Transform - proto: SolarTracker entities: - - uid: 8828 + - uid: 8773 components: - - pos: 59.5,23.5 + - pos: -20.5,65.5 parent: 2 type: Transform - - uid: 8829 + - uid: 8800 components: - - pos: -20.5,64.5 + - pos: 58.5,16.5 parent: 2 type: Transform - proto: SophicScribe entities: - - uid: 8830 + - uid: 8823 components: - pos: -9.5,16.5 parent: 2 type: Transform - proto: SpaceCash10 entities: - - uid: 8831 + - uid: 8824 components: - pos: -8.260092,-12.235714 parent: 2 type: Transform - - uid: 8832 + - uid: 8825 components: - pos: -8.822592,-12.579702 parent: 2 type: Transform - - uid: 8833 + - uid: 8826 components: - pos: 35.3361,24.679356 parent: 2 type: Transform - - uid: 8834 + - uid: 8827 components: - pos: -34.420715,29.786146 parent: 2 type: Transform - - uid: 8835 + - uid: 8828 components: - pos: -34.1603,29.640211 parent: 2 type: Transform - - uid: 8836 + - uid: 8829 components: - pos: -34.44155,29.494276 parent: 2 type: Transform - proto: SpaceCash100 entities: - - uid: 8837 + - uid: 8830 components: - pos: 34.2111,24.7419 parent: 2 type: Transform - - uid: 8838 + - uid: 8831 components: - pos: 34.49235,24.616812 parent: 2 type: Transform - - uid: 8839 + - uid: 8832 components: - pos: 35.67985,25.138008 parent: 2 type: Transform - proto: SpaceCash1000 entities: - - uid: 8840 + - uid: 8833 components: - pos: 24.160347,4.5508876 parent: 2 type: Transform +- proto: SpareIdCabinetFilled + entities: + - uid: 10874 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-23.5 + parent: 2 + type: Transform +- proto: SpawnMobArcticFoxSiobhan + entities: + - uid: 8834 + components: + - pos: -2.5,35.5 + parent: 2 + type: Transform - proto: SpawnMobBandito entities: - - uid: 8841 + - uid: 8835 components: - pos: 14.5,-25.5 parent: 2 type: Transform - proto: SpawnMobCat entities: - - uid: 8842 + - uid: 8836 components: - pos: -23.5,-18.5 parent: 2 type: Transform - proto: SpawnMobCatBingus entities: - - uid: 8843 + - uid: 8837 components: - rot: 1.5707963267948966 rad pos: -27.5,-23.5 @@ -57400,417 +58241,417 @@ entities: type: Transform - proto: SpawnMobCatRuntime entities: - - uid: 8844 + - uid: 8838 components: - pos: -21.5,21.5 parent: 2 type: Transform - proto: SpawnMobCleanBot entities: - - uid: 8845 + - uid: 8839 components: - pos: -16.5,8.5 parent: 2 type: Transform - - uid: 8846 + - uid: 8840 components: - pos: -1.5,21.5 parent: 2 type: Transform - proto: SpawnMobCorgi entities: - - uid: 8847 + - uid: 8841 components: - pos: 8.5,-5.5 parent: 2 type: Transform - proto: SpawnMobDrone entities: - - uid: 8848 + - uid: 8842 components: - pos: -1.5,39.5 parent: 2 type: Transform - - uid: 8849 + - uid: 8843 components: - pos: -0.5,39.5 parent: 2 type: Transform - proto: SpawnMobFoxRenault entities: - - uid: 8850 + - uid: 8844 components: - pos: -12.5,-30.5 parent: 2 type: Transform - proto: SpawnMobMedibot entities: - - uid: 8851 + - uid: 8845 components: - pos: -2.5,21.5 parent: 2 type: Transform - proto: SpawnMobMonkeyPunpun entities: - - uid: 8852 + - uid: 8846 components: - pos: -9.5,-11.5 parent: 2 type: Transform - proto: SpawnMobMouse entities: - - uid: 8853 + - uid: 8847 components: - pos: -4.5,-12.5 parent: 2 type: Transform - - uid: 8854 + - uid: 8848 components: - pos: 9.5,23.5 parent: 2 type: Transform - proto: SpawnMobPossumMorty entities: - - uid: 8855 + - uid: 8849 components: - pos: -22.5,17.5 parent: 2 type: Transform - proto: SpawnMobRaccoonMorticia entities: - - uid: 8856 + - uid: 8850 components: - pos: 17.5,-7.5 parent: 2 type: Transform - proto: SpawnMobShiva entities: - - uid: 8857 + - uid: 8851 components: - pos: 24.5,-19.5 parent: 2 type: Transform - proto: SpawnPointAssistant entities: - - uid: 8858 + - uid: 8852 components: - pos: -7.5,-1.5 parent: 2 type: Transform - - uid: 8859 + - uid: 8853 components: - pos: -5.5,-2.5 parent: 2 type: Transform - - uid: 8860 + - uid: 8854 components: - pos: -23.5,-4.5 parent: 2 type: Transform - - uid: 8861 + - uid: 8855 components: - pos: -23.5,-2.5 parent: 2 type: Transform - - uid: 8862 + - uid: 8856 components: - pos: -1.5,-2.5 parent: 2 type: Transform - - uid: 8863 + - uid: 8857 components: - pos: -29.5,-16.5 parent: 2 type: Transform - - uid: 8864 + - uid: 8858 components: - pos: -27.5,-22.5 parent: 2 type: Transform - - uid: 8865 + - uid: 8859 components: - pos: -7.5,-5.5 parent: 2 type: Transform - - uid: 8866 + - uid: 8860 components: - pos: -24.5,-18.5 parent: 2 type: Transform - - uid: 8867 + - uid: 8861 components: - pos: -18.5,-11.5 parent: 2 type: Transform - - uid: 8868 + - uid: 8862 components: - pos: -20.5,-12.5 parent: 2 type: Transform - - uid: 8869 + - uid: 8863 components: - pos: -15.5,-10.5 parent: 2 type: Transform - - uid: 8870 + - uid: 8864 components: - pos: -24.5,-9.5 parent: 2 type: Transform - - uid: 8871 + - uid: 8865 components: - pos: -0.5,16.5 parent: 2 type: Transform - - uid: 8872 + - uid: 8866 components: - pos: 1.5,16.5 parent: 2 type: Transform - - uid: 8873 + - uid: 8867 components: - pos: -27.5,-20.5 parent: 2 type: Transform - proto: SpawnPointAtmos entities: - - uid: 8874 + - uid: 8868 components: - pos: 30.5,28.5 parent: 2 type: Transform - - uid: 8875 + - uid: 8869 components: - pos: 23.5,31.5 parent: 2 type: Transform - - uid: 8876 + - uid: 8870 components: - pos: 7.5,32.5 parent: 2 type: Transform - proto: SpawnPointBartender entities: - - uid: 8877 + - uid: 8871 components: - pos: -8.5,-11.5 parent: 2 type: Transform - - uid: 8878 + - uid: 8872 components: - pos: -8.5,-10.5 parent: 2 type: Transform - - uid: 8879 + - uid: 8873 components: - pos: -7.5,-12.5 parent: 2 type: Transform - proto: SpawnPointBorg entities: - - uid: 8880 + - uid: 8874 components: - pos: -2.5,39.5 parent: 2 type: Transform - - uid: 8881 + - uid: 8875 components: - pos: -1.5,17.5 parent: 2 type: Transform - - uid: 8882 + - uid: 8876 components: - pos: 11.5,21.5 parent: 2 type: Transform - - uid: 8883 + - uid: 8877 components: - pos: -2.5,20.5 parent: 2 type: Transform - - uid: 8884 + - uid: 8878 components: - pos: -1.5,20.5 parent: 2 type: Transform - - uid: 8885 + - uid: 8879 components: - pos: -19.5,12.5 parent: 2 type: Transform - proto: SpawnPointBotanist entities: - - uid: 8886 + - uid: 8880 components: - pos: -2.5,9.5 parent: 2 type: Transform - - uid: 8887 + - uid: 8881 components: - pos: -5.5,8.5 parent: 2 type: Transform - proto: SpawnPointBoxer entities: - - uid: 8888 + - uid: 8882 components: - pos: -33.5,27.5 parent: 2 type: Transform - - uid: 8889 + - uid: 8883 components: - pos: -33.5,24.5 parent: 2 type: Transform - - uid: 8890 + - uid: 8884 components: - pos: -34.5,30.5 parent: 2 type: Transform - - uid: 8891 + - uid: 8885 components: - pos: -30.5,33.5 parent: 2 type: Transform - proto: SpawnPointCaptain entities: - - uid: 8892 + - uid: 8886 components: - pos: -0.5,-20.5 parent: 2 type: Transform - proto: SpawnPointCargoTechnician entities: - - uid: 8893 + - uid: 8887 components: - pos: 19.5,-1.5 parent: 2 type: Transform - - uid: 8894 + - uid: 8888 components: - pos: 11.5,-1.5 parent: 2 type: Transform - - uid: 8895 + - uid: 8889 components: - pos: 18.5,-1.5 parent: 2 type: Transform - - uid: 8896 + - uid: 8890 components: - pos: 11.5,-0.5 parent: 2 type: Transform - - uid: 8897 + - uid: 8891 components: - pos: 27.5,0.5 parent: 2 type: Transform - - uid: 8898 + - uid: 8892 components: - pos: 27.5,-2.5 parent: 2 type: Transform - proto: SpawnPointChaplain entities: - - uid: 8899 + - uid: 8893 components: - pos: 5.5,19.5 parent: 2 type: Transform - - uid: 8900 + - uid: 8894 components: - pos: -0.5,21.5 parent: 2 type: Transform - proto: SpawnPointChef entities: - - uid: 8901 + - uid: 8895 components: - pos: -3.5,4.5 parent: 2 type: Transform - - uid: 8902 + - uid: 8896 components: - pos: -1.5,3.5 parent: 2 type: Transform - - uid: 8903 + - uid: 8897 components: - pos: -3.5,0.5 parent: 2 type: Transform - proto: SpawnPointChemist entities: - - uid: 8904 + - uid: 8898 components: - pos: -15.5,12.5 parent: 2 type: Transform - - uid: 8905 + - uid: 8899 components: - pos: -16.5,11.5 parent: 2 type: Transform - - uid: 8906 + - uid: 8900 components: - pos: -16.5,13.5 parent: 2 type: Transform - proto: SpawnPointChiefEngineer entities: - - uid: 8907 + - uid: 8901 components: - pos: -2.5,-23.5 parent: 2 type: Transform - proto: SpawnPointChiefMedicalOfficer entities: - - uid: 8908 + - uid: 8902 components: - pos: -2.5,-22.5 parent: 2 type: Transform - proto: SpawnPointClown entities: - - uid: 8909 + - uid: 8903 components: - pos: -0.5,-13.5 parent: 2 type: Transform - - uid: 8910 + - uid: 8904 components: - pos: -1.5,-12.5 parent: 2 type: Transform - - uid: 8911 + - uid: 8905 components: - pos: -2.5,-12.5 parent: 2 type: Transform - - uid: 8912 + - uid: 8906 components: - pos: 1.5,-12.5 parent: 2 type: Transform - proto: SpawnPointDetective entities: - - uid: 8913 + - uid: 8907 components: - pos: -18.5,-20.5 parent: 2 type: Transform - - uid: 8914 + - uid: 8908 components: - pos: -20.5,-20.5 parent: 2 type: Transform - - uid: 8915 + - uid: 8909 components: - pos: -20.5,-19.5 parent: 2 type: Transform - - uid: 8916 + - uid: 8910 components: - rot: -1.5707963267948966 rad pos: -18.5,-21.5 @@ -57818,91 +58659,86 @@ entities: type: Transform - proto: SpawnPointForensicMantis entities: - - uid: 8917 + - uid: 8911 components: - pos: -10.5,28.5 parent: 2 type: Transform - - uid: 8918 + - uid: 8912 components: - pos: -12.5,27.5 parent: 2 type: Transform - proto: SpawnPointHeadOfPersonnel entities: - - uid: 8919 + - uid: 8913 components: - pos: -2.5,-21.5 parent: 2 type: Transform - proto: SpawnPointHeadOfSecurity entities: - - uid: 8920 + - uid: 8914 components: - pos: 1.5,-21.5 parent: 2 type: Transform - proto: SpawnPointJanitor entities: - - uid: 8921 + - uid: 8915 components: - pos: 5.5,9.5 parent: 2 type: Transform - - uid: 8922 + - uid: 8916 components: - pos: 6.5,9.5 parent: 2 type: Transform - - uid: 8923 - components: - - pos: 7.5,8.5 - parent: 2 - type: Transform - proto: SpawnPointLatejoin entities: - - uid: 8924 + - uid: 8917 components: - pos: -23.5,-3.5 parent: 2 type: Transform - - uid: 8925 + - uid: 8918 components: - rot: -1.5707963267948966 rad pos: -28.5,-2.5 parent: 2 type: Transform - - uid: 8926 + - uid: 8919 components: - rot: -1.5707963267948966 rad pos: -29.5,-2.5 parent: 2 type: Transform - - uid: 8927 + - uid: 8920 components: - rot: -1.5707963267948966 rad pos: -24.5,-3.5 parent: 2 type: Transform - - uid: 8928 + - uid: 8921 components: - rot: -1.5707963267948966 rad pos: -24.5,-2.5 parent: 2 type: Transform - - uid: 8929 + - uid: 8922 components: - rot: -1.5707963267948966 rad pos: -24.5,-4.5 parent: 2 type: Transform - - uid: 8930 + - uid: 8923 components: - rot: -1.5707963267948966 rad pos: -24.5,-7.5 parent: 2 type: Transform - - uid: 8931 + - uid: 8924 components: - rot: -1.5707963267948966 rad pos: -23.5,-7.5 @@ -57910,179 +58746,179 @@ entities: type: Transform - proto: SpawnPointLawyer entities: - - uid: 8932 + - uid: 8925 components: - pos: -28.5,-26.5 parent: 2 type: Transform - - uid: 8933 + - uid: 8926 components: - pos: -28.5,-27.5 parent: 2 type: Transform - - uid: 8934 + - uid: 8927 components: - pos: -24.5,-28.5 parent: 2 type: Transform - proto: SpawnPointMailCarrier entities: - - uid: 8935 + - uid: 8928 components: - pos: 11.5,5.5 parent: 2 type: Transform - - uid: 8936 + - uid: 8929 components: - pos: 12.5,5.5 parent: 2 type: Transform - - uid: 8937 + - uid: 8930 components: - pos: 7.5,5.5 parent: 2 type: Transform - proto: SpawnPointMedicalDoctor entities: - - uid: 8938 + - uid: 8931 components: - pos: -16.5,4.5 parent: 2 type: Transform - - uid: 8939 + - uid: 8932 components: - pos: -17.5,5.5 parent: 2 type: Transform - - uid: 8940 + - uid: 8933 components: - pos: -16.5,3.5 parent: 2 type: Transform - - uid: 8941 + - uid: 8934 components: - pos: -22.5,9.5 parent: 2 type: Transform - - uid: 8942 + - uid: 8935 components: - pos: -23.5,8.5 parent: 2 type: Transform - proto: SpawnPointMedicalIntern entities: - - uid: 8943 + - uid: 8936 components: - pos: -18.5,12.5 parent: 2 type: Transform - - uid: 8944 + - uid: 8937 components: - pos: -21.5,8.5 parent: 2 type: Transform - - uid: 8945 + - uid: 8938 components: - pos: -21.5,7.5 parent: 2 type: Transform - - uid: 8946 + - uid: 8939 components: - pos: -21.5,9.5 parent: 2 type: Transform - - uid: 8947 + - uid: 8940 components: - pos: -16.5,5.5 parent: 2 type: Transform - proto: SpawnPointMime entities: - - uid: 8948 + - uid: 8941 components: - pos: -0.5,-12.5 parent: 2 type: Transform - proto: SpawnPointMusician entities: - - uid: 8949 + - uid: 8942 components: - pos: 0.5,-12.5 parent: 2 type: Transform - proto: SpawnPointObserver entities: - - uid: 8950 + - uid: 8943 components: - pos: -3.5,-2.5 parent: 2 type: Transform - proto: SpawnPointParamedic entities: - - uid: 8951 + - uid: 8944 components: - pos: -23.5,9.5 parent: 2 type: Transform - proto: SpawnPointQuartermaster entities: - - uid: 8952 + - uid: 8945 components: - pos: 1.5,-22.5 parent: 2 type: Transform - proto: SpawnPointResearchAssistant entities: - - uid: 8953 + - uid: 8946 components: - pos: 2.5,25.5 parent: 2 type: Transform - - uid: 8954 + - uid: 8947 components: - pos: -6.5,27.5 parent: 2 type: Transform - - uid: 8955 + - uid: 8948 components: - pos: 4.5,24.5 parent: 2 type: Transform - - uid: 8956 + - uid: 8949 components: - pos: -8.5,36.5 parent: 2 type: Transform - - uid: 8957 + - uid: 8950 components: - pos: -14.5,32.5 parent: 2 type: Transform - - uid: 8958 + - uid: 8951 components: - pos: -9.5,32.5 parent: 2 type: Transform - proto: SpawnPointResearchDirector entities: - - uid: 8959 + - uid: 8952 components: - pos: 1.5,-23.5 parent: 2 type: Transform - proto: SpawnPointSalvageSpecialist entities: - - uid: 8960 + - uid: 8953 components: - pos: 24.5,-3.5 parent: 2 type: Transform - - uid: 8961 + - uid: 8954 components: - pos: 24.5,-1.5 parent: 2 type: Transform - - uid: 8962 + - uid: 8955 components: - rot: -1.5707963267948966 rad pos: 22.5,-3.5 @@ -58090,198 +58926,198 @@ entities: type: Transform - proto: SpawnPointScientist entities: - - uid: 8963 + - uid: 8956 components: - pos: 4.5,25.5 parent: 2 type: Transform - - uid: 8964 + - uid: 8957 components: - pos: -9.5,35.5 parent: 2 type: Transform - - uid: 8965 + - uid: 8958 components: - pos: -9.5,34.5 parent: 2 type: Transform - - uid: 8966 + - uid: 8959 components: - pos: -9.5,33.5 parent: 2 type: Transform - - uid: 8967 + - uid: 8960 components: - pos: -6.5,26.5 parent: 2 type: Transform - - uid: 8968 + - uid: 8961 components: - pos: 2.5,24.5 parent: 2 type: Transform - - uid: 8969 + - uid: 8962 components: - pos: -9.5,36.5 parent: 2 type: Transform - proto: SpawnPointSecurityCadet entities: - - uid: 8970 + - uid: 8963 components: - pos: 13.5,-16.5 parent: 2 type: Transform - - uid: 8971 + - uid: 8964 components: - pos: 10.5,-19.5 parent: 2 type: Transform - - uid: 8972 + - uid: 8965 components: - pos: 11.5,-18.5 parent: 2 type: Transform - proto: SpawnPointSecurityOfficer entities: - - uid: 8973 + - uid: 8966 components: - pos: 14.5,-16.5 parent: 2 type: Transform - - uid: 8974 + - uid: 8967 components: - pos: 9.5,-20.5 parent: 2 type: Transform - - uid: 8975 + - uid: 8968 components: - pos: 11.5,-19.5 parent: 2 type: Transform - - uid: 8976 + - uid: 8969 components: - pos: 9.5,-18.5 parent: 2 type: Transform - - uid: 8977 + - uid: 8970 components: - pos: -16.5,-8.5 parent: 2 type: Transform - proto: SpawnPointStationEngineer entities: - - uid: 8978 + - uid: 8971 components: - pos: 7.5,16.5 parent: 2 type: Transform - - uid: 8979 + - uid: 8972 components: - pos: 6.5,16.5 parent: 2 type: Transform - - uid: 8980 + - uid: 8973 components: - pos: 13.5,17.5 parent: 2 type: Transform - - uid: 8981 + - uid: 8974 components: - pos: 14.5,17.5 parent: 2 type: Transform - - uid: 8982 + - uid: 8975 components: - pos: 15.5,17.5 parent: 2 type: Transform - - uid: 8983 + - uid: 8976 components: - pos: 5.5,16.5 parent: 2 type: Transform - proto: SpawnPointTechnicalAssistant entities: - - uid: 8984 + - uid: 8977 components: - pos: 14.5,13.5 parent: 2 type: Transform - - uid: 8985 + - uid: 8978 components: - pos: 7.5,16.5 parent: 2 type: Transform - - uid: 8986 + - uid: 8979 components: - pos: 6.5,16.5 parent: 2 type: Transform - - uid: 8987 + - uid: 8980 components: - pos: 5.5,16.5 parent: 2 type: Transform - - uid: 8988 + - uid: 8981 components: - pos: 13.5,17.5 parent: 2 type: Transform - - uid: 8989 + - uid: 8982 components: - pos: 14.5,17.5 parent: 2 type: Transform - - uid: 8990 + - uid: 8983 components: - pos: 15.5,17.5 parent: 2 type: Transform - proto: SpawnPointWarden entities: - - uid: 8991 + - uid: 8984 components: - pos: 14.5,-13.5 parent: 2 type: Transform - - uid: 8992 + - uid: 8985 components: - pos: 15.5,-14.5 parent: 2 type: Transform - - uid: 8993 + - uid: 8986 components: - pos: 15.5,-13.5 parent: 2 type: Transform - proto: SpawnVehicleJanicart entities: - - uid: 8994 + - uid: 8987 components: - pos: 8.5,9.5 parent: 2 type: Transform - proto: Spoon entities: - - uid: 8995 + - uid: 8988 components: - pos: -2.2866445,-2.5153067 parent: 2 type: Transform - proto: Stairs entities: - - uid: 8996 + - uid: 8989 components: - pos: 20.5,-0.5 parent: 2 type: Transform - - uid: 8997 + - uid: 8990 components: - pos: 19.5,-0.5 parent: 2 type: Transform - - uid: 8998 + - uid: 8991 components: - rot: 3.141592653589793 rad pos: 20.5,-4.5 @@ -58289,35 +59125,35 @@ entities: type: Transform - proto: StairStage entities: - - uid: 8999 + - uid: 8992 components: - pos: 16.5,-29.5 parent: 2 type: Transform - - uid: 9000 + - uid: 8993 components: - pos: 17.5,-29.5 parent: 2 type: Transform - proto: StationMap entities: - - uid: 9001 + - uid: 8994 components: - pos: -3.5,14.5 parent: 2 type: Transform - - uid: 9002 + - uid: 8995 components: - pos: -20.5,-1.5 parent: 2 type: Transform - - uid: 9003 + - uid: 8996 components: - rot: -1.5707963267948966 rad pos: 6.5,-10.5 parent: 2 type: Transform - - uid: 9004 + - uid: 8997 components: - rot: -1.5707963267948966 rad pos: -10.5,-9.5 @@ -58325,101 +59161,101 @@ entities: type: Transform - proto: SteelBench entities: - - uid: 9005 + - uid: 8998 components: - rot: -1.5707963267948966 rad pos: -23.5,0.5 parent: 2 type: Transform - - uid: 9006 + - uid: 8999 components: - rot: 3.141592653589793 rad pos: -25.5,-5.5 parent: 2 type: Transform - - uid: 9007 + - uid: 9000 components: - rot: 3.141592653589793 rad pos: -24.5,-5.5 parent: 2 type: Transform - - uid: 9008 + - uid: 9001 components: - rot: 1.5707963267948966 rad pos: 4.5,-22.5 parent: 2 type: Transform - - uid: 9009 + - uid: 9002 components: - rot: 1.5707963267948966 rad pos: 4.5,-21.5 parent: 2 type: Transform - - uid: 9010 + - uid: 9003 components: - rot: -1.5707963267948966 rad pos: -11.5,-11.5 parent: 2 type: Transform - - uid: 9011 + - uid: 9004 components: - rot: -1.5707963267948966 rad pos: -11.5,-10.5 parent: 2 type: Transform - - uid: 9012 + - uid: 9005 components: - rot: 3.141592653589793 rad pos: -23.5,-9.5 parent: 2 type: Transform - - uid: 9013 + - uid: 9006 components: - rot: 3.141592653589793 rad pos: -24.5,-9.5 parent: 2 type: Transform - - uid: 9014 + - uid: 9007 components: - rot: -1.5707963267948966 rad pos: -23.5,-0.5 parent: 2 type: Transform - - uid: 9015 + - uid: 9008 components: - pos: -24.5,-6.5 parent: 2 type: Transform - - uid: 9016 + - uid: 9009 components: - rot: 1.5707963267948966 rad pos: 6.5,1.5 parent: 2 type: Transform - - uid: 9017 + - uid: 9010 components: - rot: 1.5707963267948966 rad pos: 6.5,-1.5 parent: 2 type: Transform - - uid: 9018 + - uid: 9011 components: - rot: 3.141592653589793 rad pos: -8.5,12.5 parent: 2 type: Transform - - uid: 9019 + - uid: 9012 components: - rot: 1.5707963267948966 rad pos: -12.5,0.5 parent: 2 type: Transform - - uid: 9020 + - uid: 9013 components: - pos: -25.5,-6.5 parent: 2 type: Transform - - uid: 9021 + - uid: 9014 components: - rot: 1.5707963267948966 rad pos: 6.5,2.5 @@ -58427,94 +59263,94 @@ entities: type: Transform - proto: Stool entities: - - uid: 9022 + - uid: 9015 components: - rot: 1.5707963267948966 rad pos: -11.5,22.5 parent: 2 type: Transform - - uid: 9023 + - uid: 9016 components: - rot: 1.5707963267948966 rad pos: -35.5,31.5 parent: 2 type: Transform - - uid: 9024 + - uid: 9017 components: - pos: -31.5,35.5 parent: 2 type: Transform - - uid: 9025 + - uid: 9018 components: - rot: -1.5707963267948966 rad pos: -0.5,-5.5 parent: 2 type: Transform - - uid: 9026 + - uid: 9019 components: - pos: 38.5,22.5 parent: 2 type: Transform - proto: StoolBar entities: - - uid: 9027 + - uid: 9020 components: - rot: 3.141592653589793 rad pos: -1.5,-1.5 parent: 2 type: Transform - - uid: 9028 + - uid: 9021 components: - rot: 3.141592653589793 rad pos: -2.5,-1.5 parent: 2 type: Transform - - uid: 9029 + - uid: 9022 components: - rot: 3.141592653589793 rad pos: -0.5,-1.5 parent: 2 type: Transform - - uid: 9030 + - uid: 9023 components: - pos: -7.5,-5.5 parent: 2 type: Transform - - uid: 9031 + - uid: 9024 components: - pos: -6.5,-5.5 parent: 2 type: Transform - - uid: 9032 + - uid: 9025 components: - pos: -5.5,-5.5 parent: 2 type: Transform - - uid: 9033 + - uid: 9026 components: - rot: 3.141592653589793 rad pos: 33.5,23.5 parent: 2 type: Transform - - uid: 9034 + - uid: 9027 components: - rot: 3.141592653589793 rad pos: 34.5,23.5 parent: 2 type: Transform - - uid: 9035 + - uid: 9028 components: - rot: 1.5707963267948966 rad pos: 32.5,24.5 parent: 2 type: Transform - - uid: 9036 + - uid: 9029 components: - rot: 3.141592653589793 rad pos: 35.5,23.5 parent: 2 type: Transform - - uid: 9037 + - uid: 9030 components: - rot: -1.5707963267948966 rad pos: 36.5,24.5 @@ -58522,163 +59358,177 @@ entities: type: Transform - proto: StorageCanister entities: - - uid: 9038 + - uid: 9031 components: - pos: 27.5,29.5 parent: 2 type: Transform - - uid: 9039 + - joinedGrid: 2 + type: AtmosDevice + - uid: 9032 components: - pos: 27.5,30.5 parent: 2 type: Transform - - uid: 9040 + - joinedGrid: 2 + type: AtmosDevice + - uid: 9033 components: - pos: 20.5,28.5 parent: 2 type: Transform - - uid: 9041 + - joinedGrid: 2 + type: AtmosDevice + - uid: 9034 components: - pos: 21.5,28.5 parent: 2 type: Transform - - uid: 9042 + - joinedGrid: 2 + type: AtmosDevice + - uid: 9035 components: - pos: 22.5,28.5 parent: 2 type: Transform - - uid: 9043 + - joinedGrid: 2 + type: AtmosDevice + - uid: 9036 components: - pos: 10.5,28.5 parent: 2 type: Transform - - uid: 9044 + - joinedGrid: 2 + type: AtmosDevice + - uid: 9037 components: - pos: 17.5,2.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: Stunbaton entities: - - uid: 9045 + - uid: 9038 components: - pos: 12.962947,-17.37264 parent: 2 type: Transform - - uid: 9046 + - uid: 9039 components: - pos: 12.990994,-17.505898 parent: 2 type: Transform - proto: SubstationBasic entities: - - uid: 9047 + - uid: 9040 components: - name: Common area Substation type: MetaData - pos: -7.5,5.5 parent: 2 type: Transform - - uid: 9048 + - uid: 9041 components: - name: Security Substation type: MetaData - pos: 22.5,-12.5 parent: 2 type: Transform - - uid: 9049 + - uid: 9042 components: - name: Epistemics Substation type: MetaData - pos: -14.5,28.5 parent: 2 type: Transform - - uid: 9050 + - uid: 9043 components: - name: Bridge Substation type: MetaData - pos: -4.5,-11.5 parent: 2 type: Transform - - uid: 9051 + - uid: 9044 components: - name: Medical + Evac Substation type: MetaData - pos: -14.5,1.5 parent: 2 type: Transform - - uid: 9052 + - uid: 9045 components: - name: Engieering Substation type: MetaData - pos: 16.5,15.5 parent: 2 type: Transform - - uid: 9053 + - uid: 9046 components: - pos: -29.5,27.5 parent: 2 type: Transform - proto: SuitStorageCE entities: - - uid: 9054 + - uid: 9047 components: - pos: 27.5,12.5 parent: 2 type: Transform - proto: SuitStorageEngi entities: - - uid: 9055 + - uid: 9048 components: - pos: 6.5,17.5 parent: 2 type: Transform - - uid: 9056 + - uid: 9049 components: - pos: 5.5,17.5 parent: 2 type: Transform - - uid: 9057 + - uid: 9050 components: - pos: 7.5,17.5 parent: 2 type: Transform - proto: SuitStorageEVA entities: - - uid: 9058 + - uid: 9051 components: - pos: 1.5,-8.5 parent: 2 type: Transform - - uid: 9059 + - uid: 9052 components: - pos: -2.5,-9.5 parent: 2 type: Transform - - uid: 9060 + - uid: 9053 components: - pos: -2.5,-8.5 parent: 2 type: Transform - - uid: 9061 + - uid: 9054 components: - pos: -0.5,-9.5 parent: 2 type: Transform - - uid: 9062 + - uid: 9055 components: - pos: 1.5,-9.5 parent: 2 type: Transform - proto: SuitStorageHOS entities: - - uid: 9063 + - uid: 9056 components: - pos: 23.5,-19.5 parent: 2 type: Transform - proto: SurveillanceCameraCommand entities: - - uid: 9064 + - uid: 9057 components: - rot: 3.141592653589793 rad pos: 0.5,-17.5 @@ -58689,7 +59539,7 @@ entities: nameSet: True id: Bridge Meeting Room type: SurveillanceCamera - - uid: 9065 + - uid: 9058 components: - rot: 1.5707963267948966 rad pos: 2.5,-27.5 @@ -58700,7 +59550,7 @@ entities: nameSet: True id: Command Room type: SurveillanceCamera - - uid: 9066 + - uid: 9059 components: - rot: -1.5707963267948966 rad pos: -8.5,-23.5 @@ -58711,7 +59561,7 @@ entities: nameSet: True id: Captains Office type: SurveillanceCamera - - uid: 9067 + - uid: 9060 components: - rot: -1.5707963267948966 rad pos: -15.5,-21.5 @@ -58722,7 +59572,7 @@ entities: nameSet: True id: Vault type: SurveillanceCamera - - uid: 9068 + - uid: 9061 components: - rot: 3.141592653589793 rad pos: -21.5,22.5 @@ -58733,7 +59583,7 @@ entities: nameSet: True id: CMO Bedroom type: SurveillanceCamera - - uid: 9069 + - uid: 9062 components: - rot: 1.5707963267948966 rad pos: -9.5,28.5 @@ -58744,7 +59594,7 @@ entities: nameSet: True id: RD bedroom type: SurveillanceCamera - - uid: 9070 + - uid: 9063 components: - pos: 12.5,4.5 parent: 2 @@ -58754,7 +59604,7 @@ entities: nameSet: True id: QM Bedroom type: SurveillanceCamera - - uid: 9071 + - uid: 9064 components: - rot: 3.141592653589793 rad pos: 24.5,-19.5 @@ -58765,7 +59615,7 @@ entities: nameSet: True id: HoS Bedroom type: SurveillanceCamera - - uid: 9072 + - uid: 9065 components: - rot: 3.141592653589793 rad pos: -11.5,-28.5 @@ -58776,7 +59626,7 @@ entities: nameSet: True id: Captain's Bedroom type: SurveillanceCamera - - uid: 9073 + - uid: 9066 components: - rot: 1.5707963267948966 rad pos: 20.5,22.5 @@ -58789,7 +59639,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraEngineering entities: - - uid: 9074 + - uid: 9067 components: - pos: 25.5,21.5 parent: 2 @@ -58799,7 +59649,7 @@ entities: nameSet: True id: AME Room type: SurveillanceCamera - - uid: 9075 + - uid: 9068 components: - pos: 11.5,23.5 parent: 2 @@ -58809,7 +59659,7 @@ entities: nameSet: True id: Gravity type: SurveillanceCamera - - uid: 9076 + - uid: 9069 components: - rot: 1.5707963267948966 rad pos: 17.5,24.5 @@ -58820,7 +59670,7 @@ entities: nameSet: True id: Atmos 1 type: SurveillanceCamera - - uid: 9077 + - uid: 9070 components: - pos: 26.5,28.5 parent: 2 @@ -58830,7 +59680,7 @@ entities: nameSet: True id: Atmos 2 type: SurveillanceCamera - - uid: 9078 + - uid: 9071 components: - pos: 18.5,12.5 parent: 2 @@ -58840,7 +59690,7 @@ entities: nameSet: True id: CE Office type: SurveillanceCamera - - uid: 9079 + - uid: 9072 components: - rot: -1.5707963267948966 rad pos: 3.5,33.5 @@ -58850,7 +59700,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraGeneral entities: - - uid: 9080 + - uid: 9073 components: - rot: -1.5707963267948966 rad pos: -12.5,-15.5 @@ -58861,7 +59711,7 @@ entities: nameSet: True id: Outside HoP type: SurveillanceCamera - - uid: 9081 + - uid: 9074 components: - rot: 1.5707963267948966 rad pos: -11.5,-0.5 @@ -58872,7 +59722,7 @@ entities: nameSet: True id: Outside Evac type: SurveillanceCamera - - uid: 9082 + - uid: 9075 components: - pos: -3.5,-5.5 parent: 2 @@ -58882,7 +59732,7 @@ entities: nameSet: True id: Food Court type: SurveillanceCamera - - uid: 9083 + - uid: 9076 components: - rot: -1.5707963267948966 rad pos: 3.5,-11.5 @@ -58893,7 +59743,7 @@ entities: nameSet: True id: Outside Security type: SurveillanceCamera - - uid: 9084 + - uid: 9077 components: - rot: -1.5707963267948966 rad pos: 1.5,6.5 @@ -58904,7 +59754,7 @@ entities: nameSet: True id: Outside Chaple type: SurveillanceCamera - - uid: 9085 + - uid: 9078 components: - pos: -5.5,12.5 parent: 2 @@ -58914,7 +59764,7 @@ entities: nameSet: True id: Outside Sci type: SurveillanceCamera - - uid: 9086 + - uid: 9079 components: - rot: 1.5707963267948966 rad pos: -22.5,-5.5 @@ -58922,7 +59772,7 @@ entities: type: Transform - proto: SurveillanceCameraMedical entities: - - uid: 9087 + - uid: 9080 components: - pos: -18.5,7.5 parent: 2 @@ -58932,7 +59782,7 @@ entities: nameSet: True id: Medbay Looby type: SurveillanceCamera - - uid: 9088 + - uid: 9081 components: - pos: -22.5,12.5 parent: 2 @@ -58942,7 +59792,7 @@ entities: nameSet: True id: Cloning type: SurveillanceCamera - - uid: 9089 + - uid: 9082 components: - rot: 3.141592653589793 rad pos: -22.5,18.5 @@ -58953,7 +59803,7 @@ entities: nameSet: True id: Morgue type: SurveillanceCamera - - uid: 9090 + - uid: 9083 components: - rot: 1.5707963267948966 rad pos: -17.5,17.5 @@ -58964,7 +59814,7 @@ entities: nameSet: True id: CMO Office type: SurveillanceCamera - - uid: 9091 + - uid: 9084 components: - pos: -15.5,3.5 parent: 2 @@ -58974,7 +59824,7 @@ entities: nameSet: True id: Examination Room type: SurveillanceCamera - - uid: 9092 + - uid: 9085 components: - rot: 3.141592653589793 rad pos: -15.5,14.5 @@ -58987,69 +59837,69 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraRouterCommand entities: - - uid: 9093 + - uid: 9086 components: - pos: -4.5,42.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterEngineering entities: - - uid: 9094 + - uid: 9087 components: - pos: -4.5,46.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterGeneral entities: - - uid: 9095 + - uid: 9088 components: - pos: -9.5,47.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterMedical entities: - - uid: 9096 + - uid: 9089 components: - pos: -10.5,44.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterScience entities: - - uid: 9097 + - uid: 9090 components: - pos: -10.5,46.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterSecurity entities: - - uid: 9098 + - uid: 9091 components: - pos: -5.5,47.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterService entities: - - uid: 9099 + - uid: 9092 components: - pos: -10.5,42.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterSupply entities: - - uid: 9100 + - uid: 9093 components: - pos: -4.5,44.5 parent: 2 type: Transform - proto: SurveillanceCameraScience entities: - - uid: 9101 + - uid: 9094 components: - rot: -1.5707963267948966 rad pos: -2.5,21.5 parent: 2 type: Transform - - uid: 9102 + - uid: 9095 components: - rot: 1.5707963267948966 rad pos: 5.5,23.5 @@ -59057,17 +59907,17 @@ entities: type: Transform - proto: SurveillanceCameraSecurity entities: - - uid: 9103 + - uid: 9096 components: - pos: 21.5,-16.5 parent: 2 type: Transform - - uid: 9104 + - uid: 9097 components: - pos: -15.5,-8.5 parent: 2 type: Transform - - uid: 9105 + - uid: 9098 components: - rot: 3.141592653589793 rad pos: 13.5,-16.5 @@ -59078,7 +59928,7 @@ entities: nameSet: True id: NonLethal type: SurveillanceCamera - - uid: 9106 + - uid: 9099 components: - rot: 3.141592653589793 rad pos: 13.5,-24.5 @@ -59089,7 +59939,7 @@ entities: nameSet: True id: Perma Brig type: SurveillanceCamera - - uid: 9107 + - uid: 9100 components: - pos: 18.5,-20.5 parent: 2 @@ -59099,7 +59949,7 @@ entities: nameSet: True id: HoS Office type: SurveillanceCamera - - uid: 9108 + - uid: 9101 components: - rot: 3.141592653589793 rad pos: 15.5,-13.5 @@ -59112,7 +59962,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraService entities: - - uid: 9109 + - uid: 9102 components: - rot: 1.5707963267948966 rad pos: -0.5,3.5 @@ -59123,7 +59973,7 @@ entities: nameSet: True id: Kitchen type: SurveillanceCamera - - uid: 9110 + - uid: 9103 components: - rot: 3.141592653589793 rad pos: -4.5,10.5 @@ -59134,13 +59984,13 @@ entities: nameSet: True id: Botany type: SurveillanceCamera - - uid: 9111 + - uid: 9104 components: - rot: 3.141592653589793 rad pos: -6.5,2.5 parent: 2 type: Transform - - uid: 9112 + - uid: 9105 components: - pos: -7.5,-8.5 parent: 2 @@ -59152,7 +60002,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraSupply entities: - - uid: 9113 + - uid: 9106 components: - rot: 3.141592653589793 rad pos: 26.5,2.5 @@ -59160,7 +60010,7 @@ entities: type: Transform - id: Cargo shuttle bay type: SurveillanceCamera - - uid: 9114 + - uid: 9107 components: - rot: 1.5707963267948966 rad pos: 9.5,1.5 @@ -59168,7 +60018,7 @@ entities: type: Transform - id: Cargo lobby type: SurveillanceCamera - - uid: 9115 + - uid: 9108 components: - pos: 15.5,-2.5 parent: 2 @@ -59177,7 +60027,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceWirelessCameraAnchoredEntertainment entities: - - uid: 9116 + - uid: 9109 components: - rot: -1.5707963267948966 rad pos: -31.5,31.5 @@ -59185,353 +60035,348 @@ entities: type: Transform - proto: Table entities: - - uid: 9117 + - uid: 9110 components: - pos: -4.5,26.5 parent: 2 type: Transform - - uid: 9118 + - uid: 9111 components: - pos: 18.5,-2.5 parent: 2 type: Transform - - uid: 9119 + - uid: 9112 components: - pos: 20.5,16.5 parent: 2 type: Transform - - uid: 9120 + - uid: 9113 components: - pos: 2.5,17.5 parent: 2 type: Transform - - uid: 9121 + - uid: 9114 components: - pos: -14.5,4.5 parent: 2 type: Transform - - uid: 9122 + - uid: 9115 components: - pos: -10.5,8.5 parent: 2 type: Transform - - uid: 9123 + - uid: 9116 components: - pos: -10.5,9.5 parent: 2 type: Transform - - uid: 9124 + - uid: 9117 components: - pos: -2.5,6.5 parent: 2 type: Transform - - uid: 9125 + - uid: 9118 components: - pos: -15.5,-8.5 parent: 2 type: Transform - - uid: 9126 + - uid: 9119 components: - pos: 13.5,4.5 parent: 2 type: Transform - - uid: 9127 + - uid: 9120 components: - pos: -21.5,3.5 parent: 2 type: Transform - - uid: 9128 + - uid: 9121 components: - pos: -22.5,3.5 parent: 2 type: Transform - - uid: 9129 + - uid: 9122 components: - pos: -17.5,4.5 parent: 2 type: Transform - - uid: 9130 + - uid: 9123 components: - pos: -18.5,-0.5 parent: 2 type: Transform - - uid: 9131 + - uid: 9124 components: - pos: -24.5,7.5 parent: 2 type: Transform - - uid: 9132 + - uid: 9125 components: - pos: -23.5,7.5 parent: 2 type: Transform - - uid: 9133 + - uid: 9126 components: - pos: -24.5,8.5 parent: 2 type: Transform - - uid: 9134 + - uid: 9127 components: - rot: 1.5707963267948966 rad pos: 18.5,18.5 parent: 2 type: Transform - - uid: 9135 + - uid: 9128 components: - pos: 4.5,8.5 parent: 2 type: Transform - - uid: 9136 - components: - - pos: 4.5,9.5 - parent: 2 - type: Transform - - uid: 9137 + - uid: 9129 components: - pos: 7.5,4.5 parent: 2 type: Transform - - uid: 9138 + - uid: 9130 components: - pos: 18.5,-15.5 parent: 2 type: Transform - - uid: 9139 + - uid: 9131 components: - pos: 6.5,4.5 parent: 2 type: Transform - - uid: 9140 + - uid: 9132 components: - pos: 13.5,5.5 parent: 2 type: Transform - - uid: 9141 + - uid: 9133 components: - pos: -4.5,-7.5 parent: 2 type: Transform - - uid: 9142 + - uid: 9134 components: - pos: -4.5,-8.5 parent: 2 type: Transform - - uid: 9143 + - uid: 9135 components: - pos: -4.5,-9.5 parent: 2 type: Transform - - uid: 9144 + - uid: 9136 components: - pos: 7.5,-24.5 parent: 2 type: Transform - - uid: 9145 + - uid: 9137 components: - pos: 6.5,8.5 parent: 2 type: Transform - - uid: 9146 + - uid: 9138 components: - pos: -24.5,27.5 parent: 2 type: Transform - - uid: 9147 + - uid: 9139 components: - pos: 0.5,15.5 parent: 2 type: Transform - - uid: 9148 + - uid: 9140 components: - pos: -2.5,15.5 parent: 2 type: Transform - - uid: 9149 + - uid: 9141 components: - pos: -7.5,31.5 parent: 2 type: Transform - - uid: 9150 + - uid: 9142 components: - pos: -8.5,31.5 parent: 2 type: Transform - - uid: 9151 + - uid: 9143 components: - pos: 13.5,-27.5 parent: 2 type: Transform - - uid: 9152 + - uid: 9144 components: - pos: 0.5,-13.5 parent: 2 type: Transform - - uid: 9153 + - uid: 9145 components: - pos: 11.5,-25.5 parent: 2 type: Transform - - uid: 9154 + - uid: 9146 components: - pos: -21.5,18.5 parent: 2 type: Transform - - uid: 9155 + - uid: 9147 components: - pos: 14.5,-29.5 parent: 2 type: Transform - - uid: 9156 + - uid: 9148 components: - pos: -3.5,10.5 parent: 2 type: Transform - - uid: 9157 + - uid: 9149 components: - pos: -5.5,10.5 parent: 2 type: Transform - - uid: 9158 + - uid: 9150 components: - pos: -6.5,10.5 parent: 2 type: Transform - - uid: 9159 + - uid: 9151 components: - pos: -7.5,10.5 parent: 2 type: Transform - - uid: 9160 + - uid: 9152 components: - pos: 3.5,17.5 parent: 2 type: Transform - - uid: 9161 + - uid: 9153 components: - pos: 7.5,-5.5 parent: 2 type: Transform - - uid: 9162 + - uid: 9154 components: - pos: 19.5,16.5 parent: 2 type: Transform - - uid: 9163 + - uid: 9155 components: - pos: 13.5,-29.5 parent: 2 type: Transform - - uid: 9164 + - uid: 9156 components: - pos: -4.5,34.5 parent: 2 type: Transform - - uid: 9165 + - uid: 9157 components: - pos: -4.5,35.5 parent: 2 type: Transform - - uid: 9166 + - uid: 9158 components: - rot: 1.5707963267948966 rad pos: 17.5,18.5 parent: 2 type: Transform - - uid: 9167 + - uid: 9159 components: - pos: 35.5,14.5 parent: 2 type: Transform - - uid: 9168 + - uid: 9160 components: - rot: 1.5707963267948966 rad pos: 16.5,18.5 parent: 2 type: Transform - - uid: 9169 + - uid: 9161 components: - pos: 14.5,10.5 parent: 2 type: Transform - - uid: 9170 + - uid: 9162 components: - pos: 13.5,10.5 parent: 2 type: Transform - - uid: 9171 + - uid: 9163 components: - pos: 33.5,13.5 parent: 2 type: Transform - - uid: 9172 + - uid: 9164 components: - pos: 26.5,-29.5 parent: 2 type: Transform - - uid: 9173 + - uid: 9165 components: - pos: 26.5,-30.5 parent: 2 type: Transform - - uid: 9174 + - uid: 9166 components: - pos: -25.5,-9.5 parent: 2 type: Transform - - uid: 9175 + - uid: 9167 components: - pos: -24.5,28.5 parent: 2 type: Transform - - uid: 9176 + - uid: 9168 components: - pos: -4.5,36.5 parent: 2 type: Transform - - uid: 9177 + - uid: 9169 components: - pos: 13.5,16.5 parent: 2 type: Transform - - uid: 9178 + - uid: 9170 components: - pos: 15.5,-18.5 parent: 2 type: Transform - - uid: 9179 + - uid: 9171 components: - pos: -7.5,26.5 parent: 2 type: Transform - - uid: 9180 + - uid: 9172 components: - pos: -6.5,34.5 parent: 2 type: Transform - - uid: 9181 + - uid: 9173 components: - pos: -8.5,34.5 parent: 2 type: Transform - - uid: 9182 + - uid: 9174 components: - rot: -1.5707963267948966 rad pos: 20.5,8.5 parent: 2 type: Transform - - uid: 9183 + - uid: 9175 components: - rot: -1.5707963267948966 rad pos: 21.5,8.5 parent: 2 type: Transform - - uid: 9184 + - uid: 9176 components: - rot: -1.5707963267948966 rad pos: 19.5,5.5 parent: 2 type: Transform - - uid: 9185 + - uid: 9177 components: - rot: -1.5707963267948966 rad pos: 19.5,4.5 @@ -59539,37 +60384,37 @@ entities: type: Transform - proto: TableCarpet entities: - - uid: 9186 + - uid: 9178 components: - rot: 1.5707963267948966 rad pos: 33.5,25.5 parent: 2 type: Transform - - uid: 9187 + - uid: 9179 components: - rot: 1.5707963267948966 rad pos: 33.5,24.5 parent: 2 type: Transform - - uid: 9188 + - uid: 9180 components: - rot: 1.5707963267948966 rad pos: 35.5,25.5 parent: 2 type: Transform - - uid: 9189 + - uid: 9181 components: - rot: 1.5707963267948966 rad pos: 34.5,24.5 parent: 2 type: Transform - - uid: 9190 + - uid: 9182 components: - rot: 1.5707963267948966 rad pos: 35.5,24.5 parent: 2 type: Transform - - uid: 9191 + - uid: 9183 components: - rot: -1.5707963267948966 rad pos: -13.5,-30.5 @@ -59577,614 +60422,605 @@ entities: type: Transform - proto: TableCounterMetal entities: - - uid: 9192 + - uid: 9184 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 2 + type: Transform + - uid: 9185 components: - pos: -3.5,5.5 parent: 2 type: Transform - - uid: 9193 + - uid: 9186 components: - pos: -0.5,5.5 parent: 2 type: Transform - - uid: 9194 + - uid: 9187 components: - rot: 3.141592653589793 rad pos: -1.5,2.5 parent: 2 type: Transform - - uid: 9195 + - uid: 9188 components: - rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 2 type: Transform - - uid: 9196 + - uid: 9189 components: - rot: -1.5707963267948966 rad pos: 31.5,-3.5 parent: 2 type: Transform - - uid: 9197 + - uid: 9190 components: - rot: 1.5707963267948966 rad pos: 16.5,-6.5 parent: 2 type: Transform - - uid: 9198 + - uid: 9191 components: - rot: 1.5707963267948966 rad pos: 18.5,-5.5 parent: 2 type: Transform - - uid: 9199 + - uid: 9192 components: - rot: 1.5707963267948966 rad pos: 18.5,-4.5 parent: 2 type: Transform - - uid: 9200 + - uid: 9193 components: - rot: -1.5707963267948966 rad pos: 12.5,0.5 parent: 2 type: Transform - - uid: 9201 + - uid: 9194 components: - rot: 1.5707963267948966 rad pos: 10.5,-0.5 parent: 2 type: Transform - - uid: 9202 + - uid: 9195 components: - rot: 1.5707963267948966 rad pos: 10.5,-1.5 parent: 2 type: Transform - - uid: 9203 + - uid: 9196 components: - rot: 1.5707963267948966 rad pos: -15.5,10.5 parent: 2 type: Transform - - uid: 9204 + - uid: 9197 components: - rot: 1.5707963267948966 rad pos: -16.5,10.5 parent: 2 type: Transform - - uid: 9205 + - uid: 9198 components: - pos: -19.5,-5.5 parent: 2 type: Transform - - uid: 9206 + - uid: 9199 components: - pos: 5.5,-4.5 parent: 2 type: Transform - - uid: 9207 + - uid: 9200 components: - rot: -1.5707963267948966 rad pos: 15.5,-23.5 parent: 2 type: Transform - - uid: 9208 + - uid: 9201 components: - pos: 36.5,19.5 parent: 2 type: Transform - - uid: 9209 + - uid: 9202 components: - pos: 37.5,19.5 parent: 2 type: Transform - - uid: 9210 + - uid: 9203 components: - rot: 3.141592653589793 rad pos: 35.5,19.5 parent: 2 type: Transform - - uid: 9211 + - uid: 9204 components: - pos: -37.5,-29.5 parent: 2 type: Transform - - uid: 9212 + - uid: 9205 components: - pos: 32.5,-4.5 parent: 2 type: Transform - - uid: 9213 + - uid: 9206 components: - rot: -1.5707963267948966 rad pos: 32.5,-3.5 parent: 2 type: Transform - - uid: 9214 - components: - - pos: -0.5,3.5 - parent: 2 - type: Transform - - uid: 9215 - components: - - pos: -0.5,4.5 - parent: 2 - type: Transform - proto: TableCounterWood entities: - - uid: 9216 + - uid: 9207 components: - pos: -14.5,-15.5 parent: 2 type: Transform - - uid: 9217 + - uid: 9208 components: - pos: -19.5,-20.5 parent: 2 type: Transform - - uid: 9218 + - uid: 9209 components: - pos: -19.5,-19.5 parent: 2 type: Transform - - uid: 9219 + - uid: 9210 components: - pos: 7.5,-28.5 parent: 2 type: Transform - - uid: 9220 + - uid: 9211 components: - pos: -5.5,-23.5 parent: 2 type: Transform - - uid: 9221 + - uid: 9212 components: - pos: -6.5,-23.5 parent: 2 type: Transform - - uid: 9222 + - uid: 9213 components: - pos: -7.5,-23.5 parent: 2 type: Transform - - uid: 9223 + - uid: 9214 components: - pos: -7.5,-24.5 parent: 2 type: Transform - - uid: 9224 + - uid: 9215 components: - pos: 6.5,-28.5 parent: 2 type: Transform - - uid: 9225 + - uid: 9216 components: - pos: 5.5,-28.5 parent: 2 type: Transform - - uid: 9226 + - uid: 9217 components: - pos: 5.5,-29.5 parent: 2 type: Transform - - uid: 9227 + - uid: 9218 components: - pos: 34.5,21.5 parent: 2 type: Transform - - uid: 9228 + - uid: 9219 components: - pos: 37.5,21.5 parent: 2 type: Transform - - uid: 9229 + - uid: 9220 components: - pos: 36.5,21.5 parent: 2 type: Transform - - uid: 9230 + - uid: 9221 components: - pos: 35.5,21.5 parent: 2 type: Transform - proto: TableGlass entities: - - uid: 9231 + - uid: 9222 components: - pos: 0.5,22.5 parent: 2 type: Transform - - uid: 9232 + - uid: 9223 components: - pos: -15.5,14.5 parent: 2 type: Transform - - uid: 9233 - components: - - pos: -14.5,14.5 - parent: 2 - type: Transform - - uid: 9234 + - uid: 9225 components: - pos: -29.5,1.5 parent: 2 type: Transform - - uid: 9235 + - uid: 9226 components: - pos: -27.5,-8.5 parent: 2 type: Transform - - uid: 9236 + - uid: 9227 components: - pos: -16.5,12.5 parent: 2 type: Transform - - uid: 9237 + - uid: 9228 components: - pos: -29.5,-1.5 parent: 2 type: Transform - - uid: 9238 + - uid: 9229 components: - pos: -27.5,1.5 parent: 2 type: Transform - - uid: 9239 + - uid: 9230 components: - pos: -22.5,20.5 parent: 2 type: Transform - - uid: 9240 + - uid: 9231 components: - pos: -23.5,20.5 parent: 2 type: Transform - - uid: 9241 + - uid: 9232 components: - pos: -27.5,-2.5 parent: 2 type: Transform - - uid: 9242 + - uid: 9233 components: - pos: -29.5,-5.5 parent: 2 type: Transform - - uid: 9243 + - uid: 9234 components: - rot: -1.5707963267948966 rad pos: -25.5,13.5 parent: 2 type: Transform - - uid: 9244 + - uid: 9235 components: - pos: -24.5,4.5 parent: 2 type: Transform - - uid: 9245 + - uid: 9236 components: - pos: -19.5,14.5 parent: 2 type: Transform - proto: TablePlasmaGlass entities: - - uid: 9246 + - uid: 9237 components: - rot: -1.5707963267948966 rad pos: -0.5,-22.5 parent: 2 type: Transform - - uid: 9247 + - uid: 9238 components: - pos: 0.5,37.5 parent: 2 type: Transform - proto: TableReinforced entities: - - uid: 9248 + - uid: 9239 components: - pos: 25.5,28.5 parent: 2 type: Transform - - uid: 9249 + - uid: 9240 components: - rot: 3.141592653589793 rad pos: -0.5,-26.5 parent: 2 type: Transform - - uid: 9250 + - uid: 9241 components: - rot: 3.141592653589793 rad pos: -3.5,-28.5 parent: 2 type: Transform - - uid: 9251 + - uid: 9242 components: - pos: -21.5,12.5 parent: 2 type: Transform - - uid: 9252 + - uid: 9243 components: - pos: -1.5,-0.5 parent: 2 type: Transform - - uid: 9253 + - uid: 9244 components: - pos: 5.5,5.5 parent: 2 type: Transform - - uid: 9254 + - uid: 9245 components: - pos: -1.5,40.5 parent: 2 type: Transform - - uid: 9255 + - uid: 9246 components: - pos: -0.5,-0.5 parent: 2 type: Transform - - uid: 9256 + - uid: 9247 components: - pos: -2.5,-0.5 parent: 2 type: Transform - - uid: 9257 + - uid: 9248 components: - pos: -14.5,-19.5 parent: 2 type: Transform - - uid: 9258 + - uid: 9249 components: - pos: -15.5,-19.5 parent: 2 type: Transform - - uid: 9259 + - uid: 9250 components: - pos: -15.5,-20.5 parent: 2 type: Transform - - uid: 9260 + - uid: 9251 components: - rot: -1.5707963267948966 rad pos: -1.5,-23.5 parent: 2 type: Transform - - uid: 9261 + - uid: 9252 components: - rot: -1.5707963267948966 rad pos: -1.5,-22.5 parent: 2 type: Transform - - uid: 9262 + - uid: 9253 components: - rot: -1.5707963267948966 rad pos: -1.5,-21.5 parent: 2 type: Transform - - uid: 9263 + - uid: 9254 components: - rot: -1.5707963267948966 rad pos: -0.5,-21.5 parent: 2 type: Transform - - uid: 9264 + - uid: 9255 components: - rot: -1.5707963267948966 rad pos: 0.5,-21.5 parent: 2 type: Transform - - uid: 9265 + - uid: 9256 components: - rot: -1.5707963267948966 rad pos: 0.5,-22.5 parent: 2 type: Transform - - uid: 9266 + - uid: 9257 components: - rot: -1.5707963267948966 rad pos: 0.5,-23.5 parent: 2 type: Transform - - uid: 9267 + - uid: 9258 components: - rot: -1.5707963267948966 rad pos: -0.5,-23.5 parent: 2 type: Transform - - uid: 9268 + - uid: 9259 components: - rot: 1.5707963267948966 rad pos: 6.5,-15.5 parent: 2 type: Transform - - uid: 9269 + - uid: 9260 components: - pos: 8.5,-13.5 parent: 2 type: Transform - - uid: 9270 + - uid: 9261 components: - pos: 7.5,-13.5 parent: 2 type: Transform - - uid: 9271 + - uid: 9262 components: - rot: -1.5707963267948966 rad pos: 21.5,-14.5 parent: 2 type: Transform - - uid: 9272 + - uid: 9263 components: - pos: 16.5,-16.5 parent: 2 type: Transform - - uid: 9273 + - uid: 9264 components: - rot: -1.5707963267948966 rad pos: 22.5,-14.5 parent: 2 type: Transform - - uid: 9274 + - uid: 9265 components: - rot: 3.141592653589793 rad pos: 12.5,-17.5 parent: 2 type: Transform - - uid: 9275 + - uid: 9266 components: - rot: 3.141592653589793 rad pos: 13.5,-17.5 parent: 2 type: Transform - - uid: 9276 + - uid: 9267 components: - rot: 3.141592653589793 rad pos: 14.5,-17.5 parent: 2 type: Transform - - uid: 9277 + - uid: 9268 components: - pos: 0.5,40.5 parent: 2 type: Transform - - uid: 9278 + - uid: 9269 components: - pos: 20.5,-14.5 parent: 2 type: Transform - - uid: 9279 + - uid: 9270 components: - pos: 20.5,-15.5 parent: 2 type: Transform - - uid: 9280 + - uid: 9271 components: - pos: -0.5,40.5 parent: 2 type: Transform - - uid: 9281 + - uid: 9272 components: - pos: -7.5,46.5 parent: 2 type: Transform - - uid: 9282 + - uid: 9273 components: - rot: 3.141592653589793 rad pos: -0.5,26.5 parent: 2 type: Transform - - uid: 9283 + - uid: 9274 components: - pos: -7.5,47.5 parent: 2 type: Transform - - uid: 9284 + - uid: 9275 components: - pos: 19.5,14.5 parent: 2 type: Transform - - uid: 9285 + - uid: 9276 components: - pos: 19.5,13.5 parent: 2 type: Transform - - uid: 9286 + - uid: 9277 components: - pos: 8.5,-20.5 parent: 2 type: Transform - - uid: 9287 + - uid: 9278 components: - pos: 8.5,-21.5 parent: 2 type: Transform - - uid: 9288 + - uid: 9279 components: - rot: 1.5707963267948966 rad pos: 2.5,-28.5 parent: 2 type: Transform - - uid: 9289 + - uid: 9280 components: - rot: 3.141592653589793 rad pos: -5.5,25.5 parent: 2 type: Transform - - uid: 9290 + - uid: 9281 components: - pos: 9.5,-21.5 parent: 2 type: Transform - - uid: 9291 + - uid: 9282 components: - pos: 12.5,13.5 parent: 2 type: Transform - - uid: 9292 + - uid: 9283 components: - rot: -1.5707963267948966 rad pos: 29.5,29.5 parent: 2 type: Transform - - uid: 9293 + - uid: 9284 components: - pos: -14.5,30.5 parent: 2 type: Transform - - uid: 9294 + - uid: 9285 components: - pos: 0.5,39.5 parent: 2 type: Transform - - uid: 9295 + - uid: 9286 components: - pos: 21.5,12.5 parent: 2 type: Transform - - uid: 9296 + - uid: 9287 components: - pos: 24.5,28.5 parent: 2 type: Transform - - uid: 9297 + - uid: 9288 components: - pos: 23.5,28.5 parent: 2 type: Transform - - uid: 9298 + - uid: 9289 components: - pos: 16.5,14.5 parent: 2 type: Transform - - uid: 9299 + - uid: 9290 components: - pos: -0.5,25.5 parent: 2 type: Transform - - uid: 9300 + - uid: 9291 components: - pos: 5.5,25.5 parent: 2 type: Transform - - uid: 9301 + - uid: 9292 components: - pos: 5.5,26.5 parent: 2 type: Transform - - uid: 9302 + - uid: 9293 components: - pos: 5.5,23.5 parent: 2 type: Transform - proto: TableReinforcedGlass entities: - - uid: 9303 + - uid: 9294 components: - rot: -1.5707963267948966 rad pos: -17.5,18.5 parent: 2 type: Transform - - uid: 9304 + - uid: 9295 components: - rot: -1.5707963267948966 rad pos: -18.5,18.5 @@ -60192,279 +61028,281 @@ entities: type: Transform - proto: TableStone entities: - - uid: 9305 + - uid: 9296 components: - pos: -4.5,18.5 parent: 2 type: Transform - proto: TableWood entities: - - uid: 9306 + - uid: 9297 components: - pos: 0.5,-11.5 parent: 2 type: Transform - - uid: 9307 + - uid: 9298 components: - pos: -1.5,-11.5 parent: 2 type: Transform - - uid: 9308 + - uid: 9299 components: - pos: -0.5,-11.5 parent: 2 type: Transform - - uid: 9309 + - uid: 9300 components: - pos: 24.5,12.5 parent: 2 type: Transform - - uid: 9310 + - uid: 9301 components: - rot: 3.141592653589793 rad pos: 1.5,4.5 parent: 2 type: Transform - - uid: 9311 + - uid: 9302 components: - pos: -6.5,-1.5 parent: 2 type: Transform - - uid: 9312 + - uid: 9303 components: - rot: 1.5707963267948966 rad pos: -6.5,-2.5 parent: 2 type: Transform - - uid: 9313 + - uid: 9304 components: - rot: 1.5707963267948966 rad pos: -2.5,-2.5 parent: 2 type: Transform - - uid: 9314 + - uid: 9305 components: - pos: 25.5,12.5 parent: 2 type: Transform - - uid: 9315 + - uid: 9306 components: - pos: 4.5,-26.5 parent: 2 type: Transform - - uid: 9316 + - uid: 9307 components: - pos: 5.5,-26.5 parent: 2 type: Transform - - uid: 9317 + - uid: 9308 components: - pos: 7.5,-26.5 parent: 2 type: Transform - - uid: 9318 + - uid: 9309 components: - pos: 8.5,-26.5 parent: 2 type: Transform - - uid: 9319 + - uid: 9310 components: - pos: 1.5,-11.5 parent: 2 type: Transform - - uid: 9320 + - uid: 9311 components: - pos: 19.5,-18.5 parent: 2 type: Transform - - uid: 9321 + - uid: 9312 components: - pos: 19.5,-19.5 parent: 2 type: Transform - - uid: 9322 + - uid: 9313 components: - pos: 27.5,-10.5 parent: 2 type: Transform - - uid: 9323 + - uid: 9314 components: - pos: -19.5,-13.5 parent: 2 type: Transform - - uid: 9324 + - uid: 9315 components: - pos: -33.5,29.5 parent: 2 type: Transform - - uid: 9325 + - uid: 9316 components: - pos: -12.5,28.5 parent: 2 type: Transform - - uid: 9326 + - uid: 9317 components: - pos: -8.5,-12.5 parent: 2 type: Transform - - uid: 9327 + - uid: 9318 components: - pos: 23.5,-21.5 parent: 2 type: Transform - - uid: 9328 + - uid: 9319 components: - pos: 26.5,-21.5 parent: 2 type: Transform - - uid: 9329 + - uid: 9320 components: - pos: -5.5,-29.5 parent: 2 type: Transform - - uid: 9330 + - uid: 9321 components: - pos: -12.5,-28.5 parent: 2 type: Transform - - uid: 9331 + - uid: 9322 components: - pos: -34.5,29.5 parent: 2 type: Transform - - uid: 9332 + - uid: 9323 components: - pos: -29.5,33.5 parent: 2 type: Transform - - uid: 9333 + - uid: 9324 components: - pos: -24.5,-27.5 parent: 2 type: Transform - - uid: 9334 + - uid: 9325 components: - pos: -25.5,-27.5 parent: 2 type: Transform - - uid: 9335 + - uid: 9326 components: - pos: -29.5,-24.5 parent: 2 type: Transform - - uid: 9336 + - uid: 9327 components: - pos: -29.5,-23.5 parent: 2 type: Transform - - uid: 9337 + - uid: 9328 components: - pos: -29.5,-18.5 parent: 2 type: Transform - - uid: 9338 + - uid: 9329 components: - pos: -28.5,-18.5 parent: 2 type: Transform - - uid: 9339 + - uid: 9330 components: - pos: -27.5,-16.5 parent: 2 type: Transform - - uid: 9340 + - uid: 9331 components: - pos: -29.5,-26.5 parent: 2 type: Transform - - uid: 9341 + - uid: 9332 components: - pos: -29.5,-27.5 parent: 2 type: Transform - - uid: 9342 + - uid: 9333 components: - pos: -19.5,-12.5 parent: 2 type: Transform - - uid: 9343 + - uid: 9334 components: - pos: -18.5,-12.5 parent: 2 type: Transform - - uid: 9344 + - uid: 9335 components: - pos: -18.5,-13.5 parent: 2 type: Transform - - uid: 9345 + - uid: 9336 components: - pos: -25.5,-20.5 parent: 2 type: Transform - - uid: 9346 + - uid: 9337 components: - pos: -2.5,-11.5 parent: 2 type: Transform - - uid: 9347 + - uid: 9338 components: - pos: 38.5,25.5 parent: 2 type: Transform - - uid: 9348 + - uid: 9339 components: - pos: 31.5,20.5 parent: 2 type: Transform - - uid: 9349 + - uid: 9340 components: - pos: -9.5,28.5 parent: 2 type: Transform - - uid: 9350 + - uid: 9341 components: - pos: 5.5,21.5 parent: 2 type: Transform - - uid: 9351 + - uid: 9342 components: - pos: -33.5,25.5 parent: 2 type: Transform - - uid: 9352 + - uid: 9343 components: - pos: -7.5,-26.5 parent: 2 type: Transform - proto: TableWoodReinforced entities: - - uid: 9353 + - uid: 9344 components: - pos: -7.5,-6.5 parent: 2 type: Transform - - uid: 9354 + - uid: 9345 components: - pos: -5.5,-6.5 parent: 2 type: Transform - - uid: 9355 + - uid: 9346 components: - pos: -6.5,-6.5 parent: 2 type: Transform - proto: TegCenter entities: - - uid: 9356 + - uid: 9347 components: - rot: -1.5707963267948966 rad pos: 7.5,33.5 parent: 2 type: Transform + - joinedGrid: 2 + type: AtmosDevice - proto: TegCirculator entities: - - uid: 9357 + - uid: 9348 components: - rot: 3.141592653589793 rad pos: 6.5,33.5 @@ -60472,7 +61310,7 @@ entities: type: Transform - color: '#FF3300FF' type: PointLight - - uid: 9358 + - uid: 9349 components: - pos: 8.5,33.5 parent: 2 @@ -60481,57 +61319,57 @@ entities: type: PointLight - proto: TelecomServerFilled entities: - - uid: 9359 + - uid: 9350 components: - pos: 19.5,23.5 parent: 2 type: Transform - proto: TimerTrigger entities: - - uid: 9360 + - uid: 9351 components: - pos: 25.02766,-11.786396 parent: 2 type: Transform - proto: TintedWindow entities: - - uid: 9361 + - uid: 9352 components: - pos: -10.5,25.5 parent: 2 type: Transform - - uid: 9362 + - uid: 9353 components: - pos: -9.5,25.5 parent: 2 type: Transform - proto: ToiletDirtyWater entities: - - uid: 9363 + - uid: 9354 components: - pos: 29.5,14.5 parent: 2 type: Transform - - uid: 9364 + - uid: 9355 components: - pos: 17.5,-22.5 parent: 2 type: Transform - proto: ToiletEmpty entities: - - uid: 9365 + - uid: 9356 components: - rot: 1.5707963267948966 rad pos: -9.5,-32.5 parent: 2 type: Transform - - uid: 9366 + - uid: 9357 components: - rot: -1.5707963267948966 rad pos: 14.5,-6.5 parent: 2 type: Transform - - uid: 9367 + - uid: 9358 components: - rot: -1.5707963267948966 rad pos: 25.5,-23.5 @@ -60539,245 +61377,245 @@ entities: type: Transform - proto: ToolboxElectrical entities: - - uid: 9368 + - uid: 9359 components: - pos: 13.40971,10.927448 parent: 2 type: Transform - - uid: 9369 + - uid: 9360 components: - pos: -18.364475,-0.5205636 parent: 2 type: Transform - proto: ToolboxElectricalFilled entities: - - uid: 9370 + - uid: 9361 components: - pos: 2.7763815,29.61881 parent: 2 type: Transform - - uid: 9371 + - uid: 9362 components: - pos: 8.474596,15.546829 parent: 2 type: Transform - proto: ToolboxEmergency entities: - - uid: 9372 + - uid: 9363 components: - pos: 0.5443669,15.452892 parent: 2 type: Transform - proto: ToolboxEmergencyFilled entities: - - uid: 9373 + - uid: 9364 components: - pos: 27.569073,15.264965 parent: 2 type: Transform - - uid: 9374 + - uid: 9365 components: - pos: -1.5152638,-23.570126 parent: 2 type: Transform - - uid: 9375 + - uid: 9366 components: - pos: -27.796535,-2.9570358 parent: 2 type: Transform - proto: ToolboxGoldFilled entities: - - uid: 9376 + - uid: 9367 components: - pos: -15.504417,-20.389067 parent: 2 type: Transform - proto: ToolboxMechanical entities: - - uid: 9377 + - uid: 9368 components: - pos: 35.843464,15.331713 parent: 2 type: Transform - - uid: 9378 + - uid: 9369 components: - pos: 20.312061,-11.828377 parent: 2 type: Transform - proto: ToolboxMechanicalFilled entities: - - uid: 9379 + - uid: 9370 components: - pos: 11.553634,-10.469292 parent: 2 type: Transform - - uid: 9380 + - uid: 9371 components: - pos: 0.43948442,15.746906 parent: 2 type: Transform - - uid: 9381 + - uid: 9372 components: - pos: 8.485883,15.742142 parent: 2 type: Transform - proto: ToyAi entities: - - uid: 9382 + - uid: 9373 components: - pos: -7.5,46.5 parent: 2 type: Transform - proto: ToyRubberDuck entities: - - uid: 9383 + - uid: 9374 components: - pos: -8.92183,-32.372 parent: 2 type: Transform - proto: ToySpawner entities: - - uid: 9384 + - uid: 9375 components: - pos: 26.5,-9.5 parent: 2 type: Transform - - uid: 9385 + - uid: 9376 components: - pos: 13.5,-27.5 parent: 2 type: Transform - proto: TwoWayLever entities: - - uid: 9386 + - uid: 9377 components: - pos: 12.5,9.5 parent: 2 type: Transform - linkedPorts: - 4618: + 4610: - Left: Forward - Right: Reverse - Middle: Off - 8327: + 8318: - Left: Forward - Right: Reverse - Middle: Off - 4617: + 4609: - Left: Forward - Right: Reverse - Middle: Off - 4619: + 4611: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 9387 + - uid: 9378 components: - pos: 12.5,-2.5 parent: 2 type: Transform - linkedPorts: - 4615: + 4607: - Left: Forward - Right: Reverse - Middle: Off - 4635: + 4627: - Left: Forward - Right: Reverse - Middle: Off - 4636: + 4628: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 9388 + - uid: 9379 components: - pos: 30.5,0.5 parent: 2 type: Transform - linkedPorts: - 4631: + 4623: - Left: Forward - Right: Reverse - Middle: Off - 4621: + 4613: - Left: Forward - Right: Reverse - Middle: Off - 4630: + 4622: - Left: Forward - Right: Reverse - Middle: Off - 4625: + 4617: - Left: Forward - Right: Reverse - Middle: Off - 4626: + 4618: - Left: Forward - Right: Reverse - Middle: Off - 4624: + 4616: - Left: Forward - Right: Reverse - Middle: Off - 4627: + 4619: - Left: Forward - Right: Reverse - Middle: Off - 4628: + 4620: - Left: Forward - Right: Reverse - Middle: Off - 4629: + 4621: - Left: Forward - Right: Reverse - Middle: Off - 4634: + 4626: - Left: Forward - Right: Reverse - Middle: Off - 4614: + 4606: - Left: Forward - Right: Reverse - Middle: Off - 4632: + 4624: - Left: Forward - Right: Reverse - Middle: Off - 4638: + 4630: - Left: Forward - Right: Reverse - Middle: Off - 4623: + 4615: - Left: Forward - Right: Reverse - Middle: Off - 4622: + 4614: - Left: Forward - Right: Reverse - Middle: Off - 4637: + 4629: - Left: Forward - Right: Reverse - Middle: Off - 4620: + 4612: - Left: Forward - Right: Reverse - Middle: Off - 4633: + 4625: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - proto: UniformPrinter entities: - - uid: 9389 + - uid: 9380 components: - pos: 9.5,-6.5 parent: 2 type: Transform - - uid: 9390 + - uid: 9381 components: - rot: 3.141592653589793 rad pos: -5.5,-17.5 @@ -60785,21 +61623,21 @@ entities: type: Transform - proto: Vaccinator entities: - - uid: 9391 + - uid: 9382 components: - pos: -19.5,3.5 parent: 2 type: Transform - proto: VehicleKeyJanicart entities: - - uid: 9392 + - uid: 9383 components: - pos: 6.5,8.5 parent: 2 type: Transform - proto: VendingBarDrobe entities: - - uid: 9393 + - uid: 9384 components: - flags: SessionSpecific type: MetaData @@ -60808,7 +61646,7 @@ entities: type: Transform - proto: VendingMachineAtmosDrobe entities: - - uid: 9394 + - uid: 9385 components: - flags: SessionSpecific type: MetaData @@ -60817,21 +61655,21 @@ entities: type: Transform - proto: VendingMachineBooze entities: - - uid: 9395 + - uid: 9386 components: - flags: SessionSpecific type: MetaData - pos: -10.5,-28.5 parent: 2 type: Transform - - uid: 9396 + - uid: 9387 components: - flags: SessionSpecific type: MetaData - pos: -8.5,-8.5 parent: 2 type: Transform - - uid: 9397 + - uid: 9388 components: - flags: SessionSpecific type: MetaData @@ -60840,7 +61678,7 @@ entities: type: Transform - proto: VendingMachineBoxingDrobe entities: - - uid: 9398 + - uid: 9389 components: - flags: SessionSpecific type: MetaData @@ -60849,14 +61687,14 @@ entities: type: Transform - proto: VendingMachineCargoDrobe entities: - - uid: 9399 + - uid: 9390 components: - pos: 13.5,2.5 parent: 2 type: Transform - proto: VendingMachineCart entities: - - uid: 9400 + - uid: 9391 components: - flags: SessionSpecific type: MetaData @@ -60865,14 +61703,14 @@ entities: type: Transform - proto: VendingMachineChang entities: - - uid: 9401 + - uid: 9392 components: - flags: SessionSpecific type: MetaData - pos: -30.5,-4.5 parent: 2 type: Transform - - uid: 9402 + - uid: 9393 components: - flags: SessionSpecific type: MetaData @@ -60881,7 +61719,7 @@ entities: type: Transform - proto: VendingMachineChapel entities: - - uid: 9403 + - uid: 9394 components: - flags: SessionSpecific type: MetaData @@ -60890,7 +61728,7 @@ entities: type: Transform - proto: VendingMachineChefDrobe entities: - - uid: 9404 + - uid: 9395 components: - flags: SessionSpecific type: MetaData @@ -60899,30 +61737,37 @@ entities: type: Transform - proto: VendingMachineChefvend entities: - - uid: 9405 + - uid: 9396 components: - pos: -0.5,2.5 parent: 2 type: Transform - proto: VendingMachineChemDrobe entities: - - uid: 9406 + - uid: 9397 components: - flags: SessionSpecific type: MetaData - pos: -24.5,10.5 parent: 2 type: Transform +- proto: VendingMachineChemicals + entities: + - uid: 7534 + components: + - pos: -14.5,14.5 + parent: 2 + type: Transform - proto: VendingMachineCigs entities: - - uid: 9407 + - uid: 9398 components: - flags: SessionSpecific type: MetaData - pos: 4.5,4.5 parent: 2 type: Transform - - uid: 9408 + - uid: 9399 components: - flags: SessionSpecific type: MetaData @@ -60931,7 +61776,7 @@ entities: type: Transform - proto: VendingMachineClothing entities: - - uid: 9409 + - uid: 9400 components: - flags: SessionSpecific type: MetaData @@ -60940,28 +61785,28 @@ entities: type: Transform - proto: VendingMachineCoffee entities: - - uid: 9410 + - uid: 9401 components: - flags: SessionSpecific type: MetaData - pos: 8.5,-19.5 parent: 2 type: Transform - - uid: 9411 + - uid: 9402 components: - flags: SessionSpecific type: MetaData - pos: -0.5,-17.5 parent: 2 type: Transform - - uid: 9412 + - uid: 9403 components: - flags: SessionSpecific type: MetaData - pos: -7.5,12.5 parent: 2 type: Transform - - uid: 9413 + - uid: 9404 components: - flags: SessionSpecific type: MetaData @@ -60970,7 +61815,7 @@ entities: type: Transform - proto: VendingMachineCola entities: - - uid: 9414 + - uid: 9405 components: - flags: SessionSpecific type: MetaData @@ -60979,16 +61824,25 @@ entities: type: Transform - proto: VendingMachineCondiments entities: - - uid: 9415 + - uid: 9406 components: - flags: SessionSpecific type: MetaData - pos: -0.5,-0.5 parent: 2 type: Transform +- proto: VendingMachineCourierDrobe + entities: + - uid: 9407 + components: + - flags: SessionSpecific + type: MetaData + - pos: 11.5,6.5 + parent: 2 + type: Transform - proto: VendingMachineDinnerware entities: - - uid: 9416 + - uid: 9408 components: - flags: SessionSpecific type: MetaData @@ -60997,14 +61851,14 @@ entities: type: Transform - proto: VendingMachineDonut entities: - - uid: 9417 + - uid: 9409 components: - flags: SessionSpecific type: MetaData - pos: 12.5,-22.5 parent: 2 type: Transform - - uid: 9418 + - uid: 9410 components: - flags: SessionSpecific type: MetaData @@ -61013,7 +61867,7 @@ entities: type: Transform - proto: VendingMachineEngiDrobe entities: - - uid: 9419 + - uid: 9411 components: - flags: SessionSpecific type: MetaData @@ -61022,7 +61876,7 @@ entities: type: Transform - proto: VendingMachineEngivend entities: - - uid: 9420 + - uid: 9412 components: - flags: SessionSpecific type: MetaData @@ -61031,28 +61885,28 @@ entities: type: Transform - proto: VendingMachineGames entities: - - uid: 9421 + - uid: 9413 components: - flags: SessionSpecific type: MetaData - pos: 16.5,-26.5 parent: 2 type: Transform - - uid: 9422 + - uid: 9414 components: - flags: SessionSpecific type: MetaData - pos: -2.5,-17.5 parent: 2 type: Transform - - uid: 9423 + - uid: 9415 components: - flags: SessionSpecific type: MetaData - pos: -19.5,-16.5 parent: 2 type: Transform - - uid: 9424 + - uid: 9416 components: - flags: SessionSpecific type: MetaData @@ -61061,7 +61915,7 @@ entities: type: Transform - proto: VendingMachineHappyHonk entities: - - uid: 9425 + - uid: 9417 components: - flags: SessionSpecific type: MetaData @@ -61070,7 +61924,7 @@ entities: type: Transform - proto: VendingMachineHydrobe entities: - - uid: 9426 + - uid: 9418 components: - flags: SessionSpecific type: MetaData @@ -61079,7 +61933,7 @@ entities: type: Transform - proto: VendingMachineJaniDrobe entities: - - uid: 9427 + - uid: 9419 components: - flags: SessionSpecific type: MetaData @@ -61088,25 +61942,16 @@ entities: type: Transform - proto: VendingMachineLawDrobe entities: - - uid: 9428 + - uid: 9420 components: - flags: SessionSpecific type: MetaData - pos: -27.5,-26.5 parent: 2 type: Transform -- proto: VendingMachineMailDrobe - entities: - - uid: 9429 - components: - - flags: SessionSpecific - type: MetaData - - pos: 11.5,6.5 - parent: 2 - type: Transform - proto: VendingMachineMedical entities: - - uid: 9430 + - uid: 9421 components: - flags: SessionSpecific type: MetaData @@ -61115,7 +61960,7 @@ entities: type: Transform - proto: VendingMachineMediDrobe entities: - - uid: 9431 + - uid: 9422 components: - flags: SessionSpecific type: MetaData @@ -61124,7 +61969,7 @@ entities: type: Transform - proto: VendingMachineMNKDrobe entities: - - uid: 9432 + - uid: 9423 components: - flags: SessionSpecific type: MetaData @@ -61133,7 +61978,7 @@ entities: type: Transform - proto: VendingMachineNutri entities: - - uid: 9433 + - uid: 9424 components: - flags: SessionSpecific type: MetaData @@ -61142,91 +61987,91 @@ entities: type: Transform - proto: VendingMachineRestockChang entities: - - uid: 9434 + - uid: 9425 components: - - pos: 4.485469,8.926115 + - pos: 4.566439,8.352194 parent: 2 type: Transform - proto: VendingMachineRestockDonut entities: - - uid: 9435 + - uid: 9426 components: - - pos: 4.4958854,9.134594 + - pos: 4.566439,8.430319 parent: 2 type: Transform - proto: VendingMachineRestockGames entities: - - uid: 9436 + - uid: 9427 components: - - pos: 4.485469,8.707214 + - pos: 4.457064,8.430319 parent: 2 type: Transform - proto: VendingMachineRestockGetmoreChocolateCorp entities: - - uid: 9437 + - uid: 9428 components: - pos: 4.4958854,8.561279 parent: 2 type: Transform - proto: VendingMachineRestockHappyHonk entities: - - uid: 9438 + - uid: 9429 components: - pos: 4.473782,8.236059 parent: 2 type: Transform - proto: VendingMachineRestockHotDrinks entities: - - uid: 9439 + - uid: 9430 components: - - pos: 4.5063024,9.728756 + - pos: 4.582064,8.445944 parent: 2 type: Transform - proto: VendingMachineRestockRobustSoftdrinks entities: - - uid: 9440 + - uid: 9431 components: - - pos: 4.5063024,9.332647 + - pos: 4.535189,8.258444 parent: 2 type: Transform - proto: VendingMachineRestockSmokes entities: - - uid: 9441 + - uid: 9432 components: - - pos: 4.5063024,9.582821 + - pos: 4.535189,8.399069 parent: 2 type: Transform - proto: VendingMachineRoboDrobe entities: - - uid: 9442 + - uid: 9433 components: - pos: 1.5,33.5 parent: 2 type: Transform - proto: VendingMachineRobotics entities: - - uid: 9443 + - uid: 9434 components: - pos: 0.5,19.5 parent: 2 type: Transform - proto: VendingMachineSalvage entities: - - uid: 9444 + - uid: 9435 components: - pos: 25.5,-2.5 parent: 2 type: Transform - proto: VendingMachineSciDrobe entities: - - uid: 9445 + - uid: 9436 components: - pos: 1.5,31.5 parent: 2 type: Transform - proto: VendingMachineSec entities: - - uid: 9446 + - uid: 9437 components: - flags: SessionSpecific type: MetaData @@ -61235,7 +62080,7 @@ entities: type: Transform - proto: VendingMachineSecDrobe entities: - - uid: 9447 + - uid: 9438 components: - flags: SessionSpecific type: MetaData @@ -61244,7 +62089,7 @@ entities: type: Transform - proto: VendingMachineSeeds entities: - - uid: 9448 + - uid: 9439 components: - flags: SessionSpecific type: MetaData @@ -61253,42 +62098,35 @@ entities: type: Transform - proto: VendingMachineSeedsUnlocked entities: - - uid: 9449 + - uid: 9440 components: - flags: SessionSpecific type: MetaData - pos: 19.5,-29.5 parent: 2 type: Transform -- proto: VendingMachineSmartFridge - entities: - - uid: 9450 - components: - - pos: -36.5,-27.5 - parent: 2 - type: Transform - proto: VendingMachineSnack entities: - - uid: 9451 + - uid: 9442 components: - pos: -10.5,30.5 parent: 2 type: Transform - - uid: 9452 + - uid: 9443 components: - flags: SessionSpecific type: MetaData - pos: -8.5,-1.5 parent: 2 type: Transform - - uid: 9453 + - uid: 9444 components: - flags: SessionSpecific type: MetaData - pos: 1.5,-17.5 parent: 2 type: Transform - - uid: 9454 + - uid: 9445 components: - flags: SessionSpecific type: MetaData @@ -61297,7 +62135,7 @@ entities: type: Transform - proto: VendingMachineSnackBlue entities: - - uid: 9455 + - uid: 9446 components: - flags: SessionSpecific type: MetaData @@ -61306,7 +62144,7 @@ entities: type: Transform - proto: VendingMachineSovietSoda entities: - - uid: 9456 + - uid: 9447 components: - flags: SessionSpecific type: MetaData @@ -61315,12 +62153,12 @@ entities: type: Transform - proto: VendingMachineTankDispenserEngineering entities: - - uid: 9457 + - uid: 9448 components: - pos: 29.5,31.5 parent: 2 type: Transform - - uid: 9458 + - uid: 9449 components: - flags: SessionSpecific type: MetaData @@ -61329,24 +62167,24 @@ entities: type: Transform - proto: VendingMachineTankDispenserEVA entities: - - uid: 9459 + - uid: 9450 components: - pos: 8.5,17.5 parent: 2 type: Transform - - uid: 9460 + - uid: 9451 components: - pos: -2.5,-7.5 parent: 2 type: Transform - - uid: 9461 + - uid: 9452 components: - flags: SessionSpecific type: MetaData - pos: 16.5,12.5 parent: 2 type: Transform - - uid: 9462 + - uid: 9453 components: - flags: SessionSpecific type: MetaData @@ -61355,7 +62193,7 @@ entities: type: Transform - proto: VendingMachineTheater entities: - - uid: 9463 + - uid: 9454 components: - flags: SessionSpecific type: MetaData @@ -61364,14 +62202,14 @@ entities: type: Transform - proto: VendingMachineVendomat entities: - - uid: 9464 + - uid: 9455 components: - pos: -2.5,16.5 parent: 2 type: Transform - proto: VendingMachineViroDrobe entities: - - uid: 9465 + - uid: 9456 components: - flags: SessionSpecific type: MetaData @@ -61380,19 +62218,19 @@ entities: type: Transform - proto: VendingMachineWinter entities: - - uid: 9466 + - uid: 9457 components: - pos: -22.5,-20.5 parent: 2 type: Transform - proto: VendingMachineYouTool entities: - - uid: 9467 + - uid: 9458 components: - pos: -2.5,17.5 parent: 2 type: Transform - - uid: 9468 + - uid: 9459 components: - flags: SessionSpecific type: MetaData @@ -61401,81 +62239,81 @@ entities: type: Transform - proto: WallMining entities: - - uid: 9469 + - uid: 9460 components: - pos: -36.5,-26.5 parent: 2 type: Transform - - uid: 9470 + - uid: 9461 components: - pos: -34.5,-27.5 parent: 2 type: Transform - - uid: 9471 + - uid: 9462 components: - pos: -38.5,-28.5 parent: 2 type: Transform - - uid: 9472 + - uid: 9463 components: - pos: -35.5,-26.5 parent: 2 type: Transform - - uid: 9473 + - uid: 9464 components: - pos: -38.5,-29.5 parent: 2 type: Transform - - uid: 9474 + - uid: 9465 components: - pos: -37.5,-26.5 parent: 2 type: Transform - - uid: 9475 + - uid: 9466 components: - pos: -34.5,-29.5 parent: 2 type: Transform - - uid: 9476 + - uid: 9467 components: - pos: -38.5,-27.5 parent: 2 type: Transform - - uid: 9477 + - uid: 9468 components: - pos: -35.5,-30.5 parent: 2 type: Transform - - uid: 9478 + - uid: 9469 components: - pos: -34.5,-28.5 parent: 2 type: Transform - - uid: 9479 + - uid: 9470 components: - pos: -37.5,-30.5 parent: 2 type: Transform - proto: WallMiningDiagonal entities: - - uid: 9480 + - uid: 9471 components: - pos: -38.5,-26.5 parent: 2 type: Transform - - uid: 9481 + - uid: 9472 components: - rot: -1.5707963267948966 rad pos: -34.5,-26.5 parent: 2 type: Transform - - uid: 9482 + - uid: 9473 components: - rot: 3.141592653589793 rad pos: -34.5,-30.5 parent: 2 type: Transform - - uid: 9483 + - uid: 9474 components: - rot: 1.5707963267948966 rad pos: -38.5,-30.5 @@ -61483,5944 +62321,5944 @@ entities: type: Transform - proto: WallmountTelescreen entities: - - uid: 9484 + - uid: 9475 components: - rot: 1.5707963267948966 rad pos: 9.5,-14.5 parent: 2 type: Transform - - uid: 9485 + - uid: 9476 components: - pos: -18.5,20.5 parent: 2 type: Transform - - uid: 9486 + - uid: 9477 components: - pos: 20.5,-17.5 parent: 2 type: Transform - proto: WallReinforced entities: - - uid: 9487 + - uid: 9478 components: - rot: 3.141592653589793 rad pos: 8.5,-9.5 parent: 2 type: Transform - - uid: 9488 + - uid: 9479 components: - pos: 13.5,34.5 parent: 2 type: Transform - - uid: 9489 + - uid: 9480 components: - pos: 12.5,34.5 parent: 2 type: Transform - - uid: 9490 + - uid: 9481 components: - pos: 29.5,4.5 parent: 2 type: Transform - - uid: 9491 + - uid: 9482 components: - pos: 11.5,34.5 parent: 2 type: Transform - - uid: 9492 + - uid: 9483 components: - pos: 13.5,39.5 parent: 2 type: Transform - - uid: 9493 + - uid: 9484 components: - pos: 13.5,38.5 parent: 2 type: Transform - - uid: 9494 + - uid: 9485 components: - pos: 29.5,-8.5 parent: 2 type: Transform - - uid: 9495 + - uid: 9486 components: - pos: 8.5,14.5 parent: 2 type: Transform - - uid: 9496 + - uid: 9487 components: - pos: 5.5,14.5 parent: 2 type: Transform - - uid: 9497 + - uid: 9488 components: - pos: 29.5,-2.5 parent: 2 type: Transform - - uid: 9498 + - uid: 9489 components: - pos: 21.5,-0.5 parent: 2 type: Transform - - uid: 9499 + - uid: 9490 components: - pos: 32.5,-2.5 parent: 2 type: Transform - - uid: 9500 + - uid: 9491 components: - pos: 26.5,-3.5 parent: 2 type: Transform - - uid: 9501 + - uid: 9492 components: - pos: 26.5,-1.5 parent: 2 type: Transform - - uid: 9502 + - uid: 9493 components: - pos: 26.5,-0.5 parent: 2 type: Transform - - uid: 9503 + - uid: 9494 components: - pos: 21.5,-1.5 parent: 2 type: Transform - - uid: 9504 + - uid: 9495 components: - pos: 21.5,-2.5 parent: 2 type: Transform - - uid: 9505 + - uid: 9496 components: - pos: 32.5,3.5 parent: 2 type: Transform - - uid: 9506 + - uid: 9497 components: - pos: 6.5,39.5 parent: 2 type: Transform - - uid: 9507 + - uid: 9498 components: - pos: 6.5,38.5 parent: 2 type: Transform - - uid: 9508 + - uid: 9499 components: - pos: 6.5,37.5 parent: 2 type: Transform - - uid: 9509 + - uid: 9500 components: - pos: 25.5,-4.5 parent: 2 type: Transform - - uid: 9510 + - uid: 9501 components: - pos: 21.5,3.5 parent: 2 type: Transform - - uid: 9511 + - uid: 9502 components: - pos: 29.5,-4.5 parent: 2 type: Transform - - uid: 9512 + - uid: 9503 components: - pos: 26.5,-5.5 parent: 2 type: Transform - - uid: 9513 + - uid: 9504 components: - pos: 10.5,1.5 parent: 2 type: Transform - - uid: 9514 + - uid: 9505 components: - pos: 11.5,36.5 parent: 2 type: Transform - - uid: 9515 + - uid: 9506 components: - pos: 12.5,33.5 parent: 2 type: Transform - - uid: 9516 + - uid: 9507 components: - pos: 12.5,28.5 parent: 2 type: Transform - - uid: 9517 + - uid: 9508 components: - pos: 27.5,4.5 parent: 2 type: Transform - - uid: 9518 + - uid: 9509 components: - pos: 22.5,3.5 parent: 2 type: Transform - - uid: 9519 + - uid: 9510 components: - pos: 14.5,2.5 parent: 2 type: Transform - - uid: 9520 + - uid: 9511 components: - pos: 7.5,18.5 parent: 2 type: Transform - - uid: 9521 + - uid: 9512 components: - pos: 14.5,1.5 parent: 2 type: Transform - - uid: 9522 + - uid: 9513 components: - pos: -20.5,-17.5 parent: 2 type: Transform - - uid: 9523 + - uid: 9514 components: - pos: 19.5,-7.5 parent: 2 type: Transform - - uid: 9524 + - uid: 9515 components: - pos: 6.5,40.5 parent: 2 type: Transform - - uid: 9525 + - uid: 9516 components: - pos: 7.5,40.5 parent: 2 type: Transform - - uid: 9526 + - uid: 9517 components: - pos: 19.5,-6.5 parent: 2 type: Transform - - uid: 9527 + - uid: 9518 components: - pos: 13.5,40.5 parent: 2 type: Transform - - uid: 9528 + - uid: 9519 components: - pos: 6.5,36.5 parent: 2 type: Transform - - uid: 9529 + - uid: 9520 components: - pos: 29.5,3.5 parent: 2 type: Transform - - uid: 9530 + - uid: 9521 components: - pos: 12.5,40.5 parent: 2 type: Transform - - uid: 9531 + - uid: 9522 components: - pos: 28.5,-4.5 parent: 2 type: Transform - - uid: 9532 + - uid: 9523 components: - pos: -2.5,-16.5 parent: 2 type: Transform - - uid: 9533 + - uid: 9524 components: - pos: -10.5,-16.5 parent: 2 type: Transform - - uid: 9534 + - uid: 9525 components: - pos: 3.5,-24.5 parent: 2 type: Transform - - uid: 9535 + - uid: 9526 components: - pos: 2.5,-16.5 parent: 2 type: Transform - - uid: 9536 + - uid: 9527 components: - pos: -9.5,-16.5 parent: 2 type: Transform - - uid: 9537 + - uid: 9528 components: - pos: -8.5,-16.5 parent: 2 type: Transform - - uid: 9538 + - uid: 9529 components: - pos: -6.5,-16.5 parent: 2 type: Transform - - uid: 9539 + - uid: 9530 components: - pos: -5.5,-16.5 parent: 2 type: Transform - - uid: 9540 + - uid: 9531 components: - pos: -4.5,-16.5 parent: 2 type: Transform - - uid: 9541 + - uid: 9532 components: - pos: -3.5,-16.5 parent: 2 type: Transform - - uid: 9542 + - uid: 9533 components: - pos: -0.5,-16.5 parent: 2 type: Transform - - uid: 9543 + - uid: 9534 components: - pos: 0.5,-16.5 parent: 2 type: Transform - - uid: 9544 + - uid: 9535 components: - pos: 25.5,40.5 parent: 2 type: Transform - - uid: 9545 + - uid: 9536 components: - pos: 42.5,14.5 parent: 2 type: Transform - - uid: 9546 + - uid: 9537 components: - pos: -5.5,-31.5 parent: 2 type: Transform - - uid: 9547 + - uid: 9538 components: - pos: -4.5,-28.5 parent: 2 type: Transform - - uid: 9548 + - uid: 9539 components: - pos: -4.5,-27.5 parent: 2 type: Transform - - uid: 9549 + - uid: 9540 components: - pos: 1.5,-16.5 parent: 2 type: Transform - - uid: 9550 + - uid: 9541 components: - pos: -16.5,-24.5 parent: 2 type: Transform - - uid: 9551 + - uid: 9542 components: - pos: -22.5,-29.5 parent: 2 type: Transform - - uid: 9552 + - uid: 9543 components: - pos: -20.5,23.5 parent: 2 type: Transform - - uid: 9553 + - uid: 9544 components: - pos: -24.5,20.5 parent: 2 type: Transform - - uid: 9554 + - uid: 9545 components: - pos: -15.5,0.5 parent: 2 type: Transform - - uid: 9555 + - uid: 9546 components: - pos: -28.5,26.5 parent: 2 type: Transform - - uid: 9556 + - uid: 9547 components: - pos: -39.5,2.5 parent: 2 type: Transform - - uid: 9557 + - uid: 9548 components: - pos: -43.5,2.5 parent: 2 type: Transform - - uid: 9558 + - uid: 9549 components: - pos: -37.5,-5.5 parent: 2 type: Transform - - uid: 9559 + - uid: 9550 components: - pos: -25.5,31.5 parent: 2 type: Transform - - uid: 9560 + - uid: 9551 components: - pos: -24.5,21.5 parent: 2 type: Transform - - uid: 9561 + - uid: 9552 components: - pos: -23.5,23.5 parent: 2 type: Transform - - uid: 9562 + - uid: 9553 components: - pos: -22.5,23.5 parent: 2 type: Transform - - uid: 9563 + - uid: 9554 components: - pos: -21.5,23.5 parent: 2 type: Transform - - uid: 9564 + - uid: 9555 components: - pos: -17.5,23.5 parent: 2 type: Transform - - uid: 9565 + - uid: 9556 components: - pos: -17.5,22.5 parent: 2 type: Transform - - uid: 9566 + - uid: 9557 components: - pos: -17.5,21.5 parent: 2 type: Transform - - uid: 9567 + - uid: 9558 components: - pos: -18.5,23.5 parent: 2 type: Transform - - uid: 9568 + - uid: 9559 components: - pos: -27.5,31.5 parent: 2 type: Transform - - uid: 9569 + - uid: 9560 components: - pos: -19.5,23.5 parent: 2 type: Transform - - uid: 9570 + - uid: 9561 components: - pos: -18.5,20.5 parent: 2 type: Transform - - uid: 9571 + - uid: 9562 components: - pos: -17.5,20.5 parent: 2 type: Transform - - uid: 9572 + - uid: 9563 components: - pos: -20.5,20.5 parent: 2 type: Transform - - uid: 9573 + - uid: 9564 components: - pos: -16.5,20.5 parent: 2 type: Transform - - uid: 9574 + - uid: 9565 components: - pos: -16.5,19.5 parent: 2 type: Transform - - uid: 9575 + - uid: 9566 components: - pos: -16.5,18.5 parent: 2 type: Transform - - uid: 9576 + - uid: 9567 components: - pos: -16.5,17.5 parent: 2 type: Transform - - uid: 9577 + - uid: 9568 components: - pos: -16.5,16.5 parent: 2 type: Transform - - uid: 9578 + - uid: 9569 components: - pos: -20.5,16.5 parent: 2 type: Transform - - uid: 9579 + - uid: 9570 components: - pos: -20.5,17.5 parent: 2 type: Transform - - uid: 9580 + - uid: 9571 components: - pos: -20.5,18.5 parent: 2 type: Transform - - uid: 9581 + - uid: 9572 components: - pos: -20.5,19.5 parent: 2 type: Transform - - uid: 9582 + - uid: 9573 components: - pos: -21.5,19.5 parent: 2 type: Transform - - uid: 9583 + - uid: 9574 components: - pos: -22.5,19.5 parent: 2 type: Transform - - uid: 9584 + - uid: 9575 components: - pos: -23.5,19.5 parent: 2 type: Transform - - uid: 9585 + - uid: 9576 components: - pos: -24.5,19.5 parent: 2 type: Transform - - uid: 9586 + - uid: 9577 components: - pos: -24.5,17.5 parent: 2 type: Transform - - uid: 9587 + - uid: 9578 components: - pos: -24.5,16.5 parent: 2 type: Transform - - uid: 9588 + - uid: 9579 components: - pos: -23.5,26.5 parent: 2 type: Transform - - uid: 9589 + - uid: 9580 components: - pos: -20.5,15.5 parent: 2 type: Transform - - uid: 9590 + - uid: 9581 components: - pos: -21.5,15.5 parent: 2 type: Transform - - uid: 9591 + - uid: 9582 components: - pos: -23.5,15.5 parent: 2 type: Transform - - uid: 9592 + - uid: 9583 components: - pos: -24.5,15.5 parent: 2 type: Transform - - uid: 9593 + - uid: 9584 components: - pos: -24.5,14.5 parent: 2 type: Transform - - uid: 9594 + - uid: 9585 components: - pos: -24.5,13.5 parent: 2 type: Transform - - uid: 9595 + - uid: 9586 components: - pos: -24.5,12.5 parent: 2 type: Transform - - uid: 9596 + - uid: 9587 components: - pos: -24.5,11.5 parent: 2 type: Transform - - uid: 9597 + - uid: 9588 components: - pos: -23.5,11.5 parent: 2 type: Transform - - uid: 9598 + - uid: 9589 components: - pos: -22.5,11.5 parent: 2 type: Transform - - uid: 9599 + - uid: 9590 components: - pos: -21.5,11.5 parent: 2 type: Transform - - uid: 9600 + - uid: 9591 components: - pos: -17.5,15.5 parent: 2 type: Transform - - uid: 9601 + - uid: 9592 components: - pos: -13.5,0.5 parent: 2 type: Transform - - uid: 9602 + - uid: 9593 components: - pos: -28.5,15.5 parent: 2 type: Transform - - uid: 9603 + - uid: 9594 components: - pos: -6.5,5.5 parent: 2 type: Transform - - uid: 9604 + - uid: 9595 components: - pos: -6.5,4.5 parent: 2 type: Transform - - uid: 9605 + - uid: 9596 components: - pos: -6.5,6.5 parent: 2 type: Transform - - uid: 9606 + - uid: 9597 components: - pos: -8.5,3.5 parent: 2 type: Transform - - uid: 9607 + - uid: 9598 components: - pos: -7.5,3.5 parent: 2 type: Transform - - uid: 9608 + - uid: 9599 components: - pos: -25.5,7.5 parent: 2 type: Transform - - uid: 9609 + - uid: 9600 components: - pos: -15.5,-5.5 parent: 2 type: Transform - - uid: 9610 + - uid: 9601 components: - pos: -16.5,-10.5 parent: 2 type: Transform - - uid: 9611 + - uid: 9602 components: - pos: -17.5,-5.5 parent: 2 type: Transform - - uid: 9612 + - uid: 9603 components: - pos: -19.5,-10.5 parent: 2 type: Transform - - uid: 9613 + - uid: 9604 components: - pos: -6.5,3.5 parent: 2 type: Transform - - uid: 9614 + - uid: 9605 components: - pos: -28.5,27.5 parent: 2 type: Transform - - uid: 9615 + - uid: 9606 components: - pos: -21.5,-5.5 parent: 2 type: Transform - - uid: 9616 + - uid: 9607 components: - pos: -20.5,-10.5 parent: 2 type: Transform - - uid: 9617 + - uid: 9608 components: - pos: -28.5,28.5 parent: 2 type: Transform - - uid: 9618 + - uid: 9609 components: - pos: -24.5,26.5 parent: 2 type: Transform - - uid: 9619 + - uid: 9610 components: - pos: -18.5,-10.5 parent: 2 type: Transform - - uid: 9620 + - uid: 9611 components: - pos: -28.5,20.5 parent: 2 type: Transform - - uid: 9621 + - uid: 9612 components: - pos: -26.5,31.5 parent: 2 type: Transform - - uid: 9622 + - uid: 9613 components: - pos: -29.5,28.5 parent: 2 type: Transform - - uid: 9623 + - uid: 9614 components: - pos: -25.5,6.5 parent: 2 type: Transform - - uid: 9624 + - uid: 9615 components: - pos: -21.5,-10.5 parent: 2 type: Transform - - uid: 9625 + - uid: 9616 components: - pos: -14.5,0.5 parent: 2 type: Transform - - uid: 9626 + - uid: 9617 components: - pos: -26.5,-10.5 parent: 2 type: Transform - - uid: 9627 + - uid: 9618 components: - pos: -25.5,10.5 parent: 2 type: Transform - - uid: 9628 + - uid: 9619 components: - pos: -13.5,1.5 parent: 2 type: Transform - - uid: 9629 + - uid: 9620 components: - pos: -13.5,2.5 parent: 2 type: Transform - - uid: 9630 + - uid: 9621 components: - pos: -13.5,-1.5 parent: 2 type: Transform - - uid: 9631 + - uid: 9622 components: - pos: -13.5,-5.5 parent: 2 type: Transform - - uid: 9632 + - uid: 9623 components: - pos: -13.5,-8.5 parent: 2 type: Transform - - uid: 9633 + - uid: 9624 components: - pos: -13.5,-9.5 parent: 2 type: Transform - - uid: 9634 + - uid: 9625 components: - pos: -14.5,-9.5 parent: 2 type: Transform - - uid: 9635 + - uid: 9626 components: - pos: -15.5,-9.5 parent: 2 type: Transform - - uid: 9636 + - uid: 9627 components: - pos: -16.5,-9.5 parent: 2 type: Transform - - uid: 9637 + - uid: 9628 components: - pos: -14.5,2.5 parent: 2 type: Transform - - uid: 9638 + - uid: 9629 components: - pos: -15.5,2.5 parent: 2 type: Transform - - uid: 9639 + - uid: 9630 components: - pos: 21.5,-3.5 parent: 2 type: Transform - - uid: 9640 + - uid: 9631 components: - pos: 13.5,-3.5 parent: 2 type: Transform - - uid: 9641 + - uid: 9632 components: - pos: 15.5,-3.5 parent: 2 type: Transform - - uid: 9642 + - uid: 9633 components: - pos: -25.5,11.5 parent: 2 type: Transform - - uid: 9643 + - uid: 9634 components: - pos: 19.5,3.5 parent: 2 type: Transform - - uid: 9644 + - uid: 9635 components: - pos: 12.5,-29.5 parent: 2 type: Transform - - uid: 9645 + - uid: 9636 components: - pos: 30.5,13.5 parent: 2 type: Transform - - uid: 9646 + - uid: 9637 components: - pos: 30.5,12.5 parent: 2 type: Transform - - uid: 9647 + - uid: 9638 components: - pos: 13.5,11.5 parent: 2 type: Transform - - uid: 9648 + - uid: 9639 components: - pos: 12.5,11.5 parent: 2 type: Transform - - uid: 9649 + - uid: 9640 components: - pos: 9.5,-3.5 parent: 2 type: Transform - - uid: 9650 + - uid: 9641 components: - pos: 29.5,27.5 parent: 2 type: Transform - - uid: 9651 + - uid: 9642 components: - pos: 10.5,-3.5 parent: 2 type: Transform - - uid: 9652 + - uid: 9643 components: - pos: 9.5,-3.5 parent: 2 type: Transform - - uid: 9653 + - uid: 9644 components: - pos: 10.5,-4.5 parent: 2 type: Transform - - uid: 9654 + - uid: 9645 components: - pos: 18.5,3.5 parent: 2 type: Transform - - uid: 9655 + - uid: 9646 components: - pos: 11.5,-3.5 parent: 2 type: Transform - - uid: 9656 + - uid: 9647 components: - pos: 6.5,24.5 parent: 2 type: Transform - - uid: 9657 + - uid: 9648 components: - pos: 20.5,-25.5 parent: 2 type: Transform - - uid: 9658 + - uid: 9649 components: - pos: 20.5,-27.5 parent: 2 type: Transform - - uid: 9659 + - uid: 9650 components: - pos: 9.5,27.5 parent: 2 type: Transform - - uid: 9660 + - uid: 9651 components: - pos: 12.5,-3.5 parent: 2 type: Transform - - uid: 9661 + - uid: 9652 components: - pos: 11.5,-7.5 parent: 2 type: Transform - - uid: 9662 + - uid: 9653 components: - pos: 18.5,-23.5 parent: 2 type: Transform - - uid: 9663 + - uid: 9654 components: - pos: 24.5,11.5 parent: 2 type: Transform - - uid: 9664 + - uid: 9655 components: - pos: 10.5,-6.5 parent: 2 type: Transform - - uid: 9665 + - uid: 9656 components: - pos: 12.5,-7.5 parent: 2 type: Transform - - uid: 9666 + - uid: 9657 components: - pos: 29.5,9.5 parent: 2 type: Transform - - uid: 9667 + - uid: 9658 components: - pos: 5.5,-3.5 parent: 2 type: Transform - - uid: 9668 + - uid: 9659 components: - pos: 28.5,-12.5 parent: 2 type: Transform - - uid: 9669 + - uid: 9660 components: - pos: -7.5,6.5 parent: 2 type: Transform - - uid: 9670 + - uid: 9661 components: - pos: 2.5,36.5 parent: 2 type: Transform - - uid: 9671 + - uid: 9662 components: - pos: 9.5,-7.5 parent: 2 type: Transform - - uid: 9672 + - uid: 9663 components: - pos: -15.5,37.5 parent: 2 type: Transform - - uid: 9673 + - uid: 9664 components: - pos: 10.5,-7.5 parent: 2 type: Transform - - uid: 9674 + - uid: 9665 components: - pos: -26.5,-14.5 parent: 2 type: Transform - - uid: 9675 + - uid: 9666 components: - pos: -27.5,-14.5 parent: 2 type: Transform - - uid: 9676 + - uid: 9667 components: - pos: -8.5,5.5 parent: 2 type: Transform - - uid: 9677 + - uid: 9668 components: - pos: -15.5,31.5 parent: 2 type: Transform - - uid: 9678 + - uid: 9669 components: - pos: 6.5,-7.5 parent: 2 type: Transform - - uid: 9679 + - uid: 9670 components: - pos: 7.5,-7.5 parent: 2 type: Transform - - uid: 9680 + - uid: 9671 components: - pos: 5.5,-7.5 parent: 2 type: Transform - - uid: 9681 + - uid: 9672 components: - pos: -13.5,-19.5 parent: 2 type: Transform - - uid: 9682 + - uid: 9673 components: - pos: -15.5,-23.5 parent: 2 type: Transform - - uid: 9683 + - uid: 9674 components: - pos: -9.5,-22.5 parent: 2 type: Transform - - uid: 9684 + - uid: 9675 components: - pos: -16.5,-20.5 parent: 2 type: Transform - - uid: 9685 + - uid: 9676 components: - pos: -16.5,-23.5 parent: 2 type: Transform - - uid: 9686 + - uid: 9677 components: - pos: -14.5,-23.5 parent: 2 type: Transform - - uid: 9687 + - uid: 9678 components: - pos: -13.5,-22.5 parent: 2 type: Transform - - uid: 9688 + - uid: 9679 components: - pos: -27.5,-25.5 parent: 2 type: Transform - - uid: 9689 + - uid: 9680 components: - pos: 22.5,-4.5 parent: 2 type: Transform - - uid: 9690 + - uid: 9681 components: - pos: -28.5,-25.5 parent: 2 type: Transform - - uid: 9691 + - uid: 9682 components: - pos: -25.5,-25.5 parent: 2 type: Transform - - uid: 9692 + - uid: 9683 components: - pos: -17.5,-10.5 parent: 2 type: Transform - - uid: 9693 + - uid: 9684 components: - pos: -29.5,-25.5 parent: 2 type: Transform - - uid: 9694 + - uid: 9685 components: - pos: 4.5,-30.5 parent: 2 type: Transform - - uid: 9695 + - uid: 9686 components: - pos: -16.5,-18.5 parent: 2 type: Transform - - uid: 9696 + - uid: 9687 components: - pos: -15.5,-18.5 parent: 2 type: Transform - - uid: 9697 + - uid: 9688 components: - pos: -14.5,-18.5 parent: 2 type: Transform - - uid: 9698 + - uid: 9689 components: - pos: 26.5,16.5 parent: 2 type: Transform - - uid: 9699 + - uid: 9690 components: - pos: 26.5,15.5 parent: 2 type: Transform - - uid: 9700 + - uid: 9691 components: - pos: 26.5,14.5 parent: 2 type: Transform - - uid: 9701 + - uid: 9692 components: - pos: -13.5,-18.5 parent: 2 type: Transform - - uid: 9702 + - uid: 9693 components: - pos: -13.5,-17.5 parent: 2 type: Transform - - uid: 9703 + - uid: 9694 components: - pos: -13.5,-16.5 parent: 2 type: Transform - - uid: 9704 + - uid: 9695 components: - pos: -13.5,-15.5 parent: 2 type: Transform - - uid: 9705 + - uid: 9696 components: - pos: -13.5,-14.5 parent: 2 type: Transform - - uid: 9706 + - uid: 9697 components: - pos: 3.5,-23.5 parent: 2 type: Transform - - uid: 9707 + - uid: 9698 components: - pos: -5.5,-30.5 parent: 2 type: Transform - - uid: 9708 + - uid: 9699 components: - pos: 8.5,-30.5 parent: 2 type: Transform - - uid: 9709 + - uid: 9700 components: - pos: 23.5,15.5 parent: 2 type: Transform - - uid: 9710 + - uid: 9701 components: - pos: -16.5,-21.5 parent: 2 type: Transform - - uid: 9711 + - uid: 9702 components: - pos: -13.5,-21.5 parent: 2 type: Transform - - uid: 9712 + - uid: 9703 components: - pos: -13.5,-23.5 parent: 2 type: Transform - - uid: 9713 + - uid: 9704 components: - pos: -16.5,-22.5 parent: 2 type: Transform - - uid: 9714 + - uid: 9705 components: - pos: -16.5,-19.5 parent: 2 type: Transform - - uid: 9715 + - uid: 9706 components: - pos: -8.5,-20.5 parent: 2 type: Transform - - uid: 9716 + - uid: 9707 components: - pos: -9.5,-21.5 parent: 2 type: Transform - - uid: 9717 + - uid: 9708 components: - pos: -9.5,-20.5 parent: 2 type: Transform - - uid: 9718 + - uid: 9709 components: - pos: -5.5,-20.5 parent: 2 type: Transform - - uid: 9719 + - uid: 9710 components: - pos: -4.5,-20.5 parent: 2 type: Transform - - uid: 9720 + - uid: 9711 components: - pos: -4.5,-21.5 parent: 2 type: Transform - - uid: 9721 + - uid: 9712 components: - pos: -4.5,-22.5 parent: 2 type: Transform - - uid: 9722 + - uid: 9713 components: - pos: -4.5,-23.5 parent: 2 type: Transform - - uid: 9723 + - uid: 9714 components: - pos: -4.5,-24.5 parent: 2 type: Transform - - uid: 9724 + - uid: 9715 components: - pos: -4.5,-25.5 parent: 2 type: Transform - - uid: 9725 + - uid: 9716 components: - pos: -4.5,-26.5 parent: 2 type: Transform - - uid: 9726 + - uid: 9717 components: - pos: -2.5,-29.5 parent: 2 type: Transform - - uid: 9727 + - uid: 9718 components: - pos: 1.5,-29.5 parent: 2 type: Transform - - uid: 9728 + - uid: 9719 components: - pos: 2.5,-25.5 parent: 2 type: Transform - - uid: 9729 + - uid: 9720 components: - pos: 3.5,-28.5 parent: 2 type: Transform - - uid: 9730 + - uid: 9721 components: - pos: 3.5,-27.5 parent: 2 type: Transform - - uid: 9731 + - uid: 9722 components: - pos: 3.5,-26.5 parent: 2 type: Transform - - uid: 9732 + - uid: 9723 components: - pos: 3.5,-25.5 parent: 2 type: Transform - - uid: 9733 + - uid: 9724 components: - pos: -3.5,-25.5 parent: 2 type: Transform - - uid: 9734 + - uid: 9725 components: - pos: -9.5,-25.5 parent: 2 type: Transform - - uid: 9735 + - uid: 9726 components: - pos: -9.5,-26.5 parent: 2 type: Transform - - uid: 9736 + - uid: 9727 components: - pos: -9.5,-27.5 parent: 2 type: Transform - - uid: 9737 + - uid: 9728 components: - pos: -10.5,-27.5 parent: 2 type: Transform - - uid: 9738 + - uid: 9729 components: - pos: -7.5,-27.5 parent: 2 type: Transform - - uid: 9739 + - uid: 9730 components: - pos: -6.5,-27.5 parent: 2 type: Transform - - uid: 9740 + - uid: 9731 components: - pos: -5.5,-27.5 parent: 2 type: Transform - - uid: 9741 + - uid: 9732 components: - pos: -7.5,-28.5 parent: 2 type: Transform - - uid: 9742 + - uid: 9733 components: - pos: -7.5,-29.5 parent: 2 type: Transform - - uid: 9743 + - uid: 9734 components: - pos: -7.5,-31.5 parent: 2 type: Transform - - uid: 9744 + - uid: 9735 components: - pos: -6.5,-31.5 parent: 2 type: Transform - - uid: 9745 + - uid: 9736 components: - pos: -6.5,-32.5 parent: 2 type: Transform - - uid: 9746 + - uid: 9737 components: - pos: -6.5,-33.5 parent: 2 type: Transform - - uid: 9747 + - uid: 9738 components: - pos: -7.5,-33.5 parent: 2 type: Transform - - uid: 9748 + - uid: 9739 components: - pos: -8.5,-33.5 parent: 2 type: Transform - - uid: 9749 + - uid: 9740 components: - pos: -9.5,-33.5 parent: 2 type: Transform - - uid: 9750 + - uid: 9741 components: - pos: -10.5,-33.5 parent: 2 type: Transform - - uid: 9751 + - uid: 9742 components: - pos: -10.5,-32.5 parent: 2 type: Transform - - uid: 9752 + - uid: 9743 components: - pos: -10.5,-31.5 parent: 2 type: Transform - - uid: 9753 + - uid: 9744 components: - pos: -9.5,-31.5 parent: 2 type: Transform - - uid: 9754 + - uid: 9745 components: - pos: -11.5,-33.5 parent: 2 type: Transform - - uid: 9755 + - uid: 9746 components: - pos: -11.5,-27.5 parent: 2 type: Transform - - uid: 9756 + - uid: 9747 components: - pos: -12.5,-33.5 parent: 2 type: Transform - - uid: 9757 + - uid: 9748 components: - pos: -12.5,-27.5 parent: 2 type: Transform - - uid: 9758 + - uid: 9749 components: - pos: 3.5,-20.5 parent: 2 type: Transform - - uid: 9759 + - uid: 9750 components: - pos: 3.5,-16.5 parent: 2 type: Transform - - uid: 9760 + - uid: 9751 components: - pos: 4.5,17.5 parent: 2 type: Transform - - uid: 9761 + - uid: 9752 components: - pos: 4.5,15.5 parent: 2 type: Transform - - uid: 9762 + - uid: 9753 components: - pos: 4.5,16.5 parent: 2 type: Transform - - uid: 9763 + - uid: 9754 components: - pos: 4.5,14.5 parent: 2 type: Transform - - uid: 9764 + - uid: 9755 components: - pos: 42.5,17.5 parent: 2 type: Transform - - uid: 9765 + - uid: 9756 components: - pos: 4.5,18.5 parent: 2 type: Transform - - uid: 9766 + - uid: 9757 components: - pos: 7.5,-22.5 parent: 2 type: Transform - - uid: 9767 + - uid: 9758 components: - pos: 8.5,-16.5 parent: 2 type: Transform - - uid: 9768 + - uid: 9759 components: - pos: 7.5,-19.5 parent: 2 type: Transform - - uid: 9769 + - uid: 9760 components: - pos: 9.5,-16.5 parent: 2 type: Transform - - uid: 9770 + - uid: 9761 components: - pos: 6.5,-10.5 parent: 2 type: Transform - - uid: 9771 + - uid: 9762 components: - pos: 9.5,-10.5 parent: 2 type: Transform - - uid: 9772 + - uid: 9763 components: - pos: 12.5,-10.5 parent: 2 type: Transform - - uid: 9773 + - uid: 9764 components: - pos: 12.5,-12.5 parent: 2 type: Transform - - uid: 9774 + - uid: 9765 components: - pos: 13.5,-12.5 parent: 2 type: Transform - - uid: 9775 + - uid: 9766 components: - pos: 14.5,-12.5 parent: 2 type: Transform - - uid: 9776 + - uid: 9767 components: - pos: 15.5,-12.5 parent: 2 type: Transform - - uid: 9777 + - uid: 9768 components: - pos: 16.5,-12.5 parent: 2 type: Transform - - uid: 9778 + - uid: 9769 components: - pos: 6.5,-13.5 parent: 2 type: Transform - - uid: 9779 + - uid: 9770 components: - pos: 9.5,-13.5 parent: 2 type: Transform - - uid: 9780 + - uid: 9771 components: - pos: 7.5,-16.5 parent: 2 type: Transform - - uid: 9781 + - uid: 9772 components: - pos: 6.5,-16.5 parent: 2 type: Transform - - uid: 9782 + - uid: 9773 components: - pos: 9.5,-24.5 parent: 2 type: Transform - - uid: 9783 + - uid: 9774 components: - pos: 8.5,-22.5 parent: 2 type: Transform - - uid: 9784 + - uid: 9775 components: - pos: 9.5,-22.5 parent: 2 type: Transform - - uid: 9785 + - uid: 9776 components: - pos: 11.5,-26.5 parent: 2 type: Transform - - uid: 9786 + - uid: 9777 components: - pos: 12.5,-26.5 parent: 2 type: Transform - - uid: 9787 + - uid: 9778 components: - pos: 20.5,-24.5 parent: 2 type: Transform - - uid: 9788 + - uid: 9779 components: - pos: 22.5,-10.5 parent: 2 type: Transform - - uid: 9789 + - uid: 9780 components: - pos: 23.5,-11.5 parent: 2 type: Transform - - uid: 9790 + - uid: 9781 components: - pos: 23.5,-13.5 parent: 2 type: Transform - - uid: 9791 + - uid: 9782 components: - pos: 25.5,-14.5 parent: 2 type: Transform - - uid: 9792 + - uid: 9783 components: - pos: 7.5,-23.5 parent: 2 type: Transform - - uid: 9793 + - uid: 9784 components: - pos: 21.5,-10.5 parent: 2 type: Transform - - uid: 9794 + - uid: 9785 components: - pos: 23.5,-12.5 parent: 2 type: Transform - - uid: 9795 + - uid: 9786 components: - pos: 21.5,-12.5 parent: 2 type: Transform - - uid: 9796 + - uid: 9787 components: - pos: 28.5,-8.5 parent: 2 type: Transform - - uid: 9797 + - uid: 9788 components: - pos: 20.5,-12.5 parent: 2 type: Transform - - uid: 9798 + - uid: 9789 components: - pos: 12.5,-27.5 parent: 2 type: Transform - - uid: 9799 + - uid: 9790 components: - pos: 16.5,-25.5 parent: 2 type: Transform - - uid: 9800 + - uid: 9791 components: - pos: 16.5,-24.5 parent: 2 type: Transform - - uid: 9801 + - uid: 9792 components: - pos: 16.5,-23.5 parent: 2 type: Transform - - uid: 9802 + - uid: 9793 components: - pos: 16.5,-22.5 parent: 2 type: Transform - - uid: 9803 + - uid: 9794 components: - pos: 16.5,-21.5 parent: 2 type: Transform - - uid: 9804 + - uid: 9795 components: - pos: 16.5,-20.5 parent: 2 type: Transform - - uid: 9805 + - uid: 9796 components: - pos: 16.5,-15.5 parent: 2 type: Transform - - uid: 9806 + - uid: 9797 components: - pos: 16.5,-14.5 parent: 2 type: Transform - - uid: 9807 + - uid: 9798 components: - pos: 9.5,-23.5 parent: 2 type: Transform - - uid: 9808 + - uid: 9799 components: - pos: 23.5,-10.5 parent: 2 type: Transform - - uid: 9809 + - uid: 9800 components: - pos: 25.5,-12.5 parent: 2 type: Transform - - uid: 9810 + - uid: 9801 components: - pos: 13.5,-23.5 parent: 2 type: Transform - - uid: 9811 + - uid: 9802 components: - pos: 9.5,-26.5 parent: 2 type: Transform - - uid: 9812 + - uid: 9803 components: - pos: 13.5,-20.5 parent: 2 type: Transform - - uid: 9813 + - uid: 9804 components: - pos: 25.5,-13.5 parent: 2 type: Transform - - uid: 9814 + - uid: 9805 components: - pos: 15.5,-20.5 parent: 2 type: Transform - - uid: 9815 + - uid: 9806 components: - pos: 24.5,-12.5 parent: 2 type: Transform - - uid: 9816 + - uid: 9807 components: - pos: 12.5,-14.5 parent: 2 type: Transform - - uid: 9817 + - uid: 9808 components: - pos: 12.5,-15.5 parent: 2 type: Transform - - uid: 9818 + - uid: 9809 components: - pos: 13.5,-15.5 parent: 2 type: Transform - - uid: 9819 + - uid: 9810 components: - pos: 14.5,-15.5 parent: 2 type: Transform - - uid: 9820 + - uid: 9811 components: - pos: 15.5,-15.5 parent: 2 type: Transform - - uid: 9821 + - uid: 9812 components: - pos: 9.5,-14.5 parent: 2 type: Transform - - uid: 9822 + - uid: 9813 components: - pos: 22.5,-22.5 parent: 2 type: Transform - - uid: 9823 + - uid: 9814 components: - pos: 21.5,-21.5 parent: 2 type: Transform - - uid: 9824 + - uid: 9815 components: - pos: 18.5,-8.5 parent: 2 type: Transform - - uid: 9825 + - uid: 9816 components: - pos: 15.5,-8.5 parent: 2 type: Transform - - uid: 9826 + - uid: 9817 components: - pos: 20.5,-13.5 parent: 2 type: Transform - - uid: 9827 + - uid: 9818 components: - pos: 17.5,-11.5 parent: 2 type: Transform - - uid: 9828 + - uid: 9819 components: - pos: 18.5,-11.5 parent: 2 type: Transform - - uid: 9829 + - uid: 9820 components: - pos: 21.5,-17.5 parent: 2 type: Transform - - uid: 9830 + - uid: 9821 components: - pos: 20.5,-17.5 parent: 2 type: Transform - - uid: 9831 + - uid: 9822 components: - pos: 21.5,-13.5 parent: 2 type: Transform - - uid: 9832 + - uid: 9823 components: - pos: 24.5,-18.5 parent: 2 type: Transform - - uid: 9833 + - uid: 9824 components: - pos: 26.5,-18.5 parent: 2 type: Transform - - uid: 9834 + - uid: 9825 components: - pos: 27.5,-19.5 parent: 2 type: Transform - - uid: 9835 + - uid: 9826 components: - pos: 18.5,-22.5 parent: 2 type: Transform - - uid: 9836 + - uid: 9827 components: - pos: 18.5,-21.5 parent: 2 type: Transform - - uid: 9837 + - uid: 9828 components: - pos: 17.5,-17.5 parent: 2 type: Transform - - uid: 9838 + - uid: 9829 components: - pos: 12.5,-28.5 parent: 2 type: Transform - - uid: 9839 + - uid: 9830 components: - pos: 22.5,-18.5 parent: 2 type: Transform - - uid: 9840 + - uid: 9831 components: - pos: 19.5,-12.5 parent: 2 type: Transform - - uid: 9841 + - uid: 9832 components: - pos: 18.5,-12.5 parent: 2 type: Transform - - uid: 9842 + - uid: 9833 components: - pos: 17.5,-12.5 parent: 2 type: Transform - - uid: 9843 + - uid: 9834 components: - pos: -15.5,35.5 parent: 2 type: Transform - - uid: 9844 + - uid: 9835 components: - pos: 21.5,-18.5 parent: 2 type: Transform - - uid: 9845 + - uid: 9836 components: - pos: -18.5,26.5 parent: 2 type: Transform - - uid: 9846 + - uid: 9837 components: - pos: -20.5,31.5 parent: 2 type: Transform - - uid: 9847 + - uid: 9838 components: - pos: 26.5,-23.5 parent: 2 type: Transform - - uid: 9848 + - uid: 9839 components: - pos: 23.5,-18.5 parent: 2 type: Transform - - uid: 9849 + - uid: 9840 components: - pos: 25.5,-18.5 parent: 2 type: Transform - - uid: 9850 + - uid: 9841 components: - pos: 27.5,-18.5 parent: 2 type: Transform - - uid: 9851 + - uid: 9842 components: - pos: 17.5,-21.5 parent: 2 type: Transform - - uid: 9852 + - uid: 9843 components: - pos: 22.5,-21.5 parent: 2 type: Transform - - uid: 9853 + - uid: 9844 components: - pos: 22.5,-23.5 parent: 2 type: Transform - - uid: 9854 + - uid: 9845 components: - pos: 6.5,20.5 parent: 2 type: Transform - - uid: 9855 + - uid: 9846 components: - pos: -11.5,47.5 parent: 2 type: Transform - - uid: 9856 + - uid: 9847 components: - pos: -3.5,37.5 parent: 2 type: Transform - - uid: 9857 + - uid: 9848 components: - pos: -3.5,46.5 parent: 2 type: Transform - - uid: 9858 + - uid: 9849 components: - pos: 1.5,39.5 parent: 2 type: Transform - - uid: 9859 + - uid: 9850 components: - pos: 27.5,-22.5 parent: 2 type: Transform - - uid: 9860 + - uid: 9851 components: - pos: 22.5,-24.5 parent: 2 type: Transform - - uid: 9861 + - uid: 9852 components: - pos: 23.5,-24.5 parent: 2 type: Transform - - uid: 9862 + - uid: 9853 components: - pos: 24.5,-24.5 parent: 2 type: Transform - - uid: 9863 + - uid: 9854 components: - pos: 25.5,-24.5 parent: 2 type: Transform - - uid: 9864 + - uid: 9855 components: - pos: 26.5,-24.5 parent: 2 type: Transform - - uid: 9865 + - uid: 9856 components: - pos: -11.5,37.5 parent: 2 type: Transform - - uid: 9866 + - uid: 9857 components: - pos: 23.5,-22.5 parent: 2 type: Transform - - uid: 9867 + - uid: 9858 components: - pos: 25.5,-22.5 parent: 2 type: Transform - - uid: 9868 + - uid: 9859 components: - pos: 26.5,-22.5 parent: 2 type: Transform - - uid: 9869 + - uid: 9860 components: - pos: 27.5,-21.5 parent: 2 type: Transform - - uid: 9870 + - uid: 9861 components: - pos: 21.5,-19.5 parent: 2 type: Transform - - uid: 9871 + - uid: 9862 components: - pos: -12.5,22.5 parent: 2 type: Transform - - uid: 9872 + - uid: 9863 components: - pos: -12.5,23.5 parent: 2 type: Transform - - uid: 9873 + - uid: 9864 components: - pos: -12.5,24.5 parent: 2 type: Transform - - uid: 9874 + - uid: 9865 components: - pos: -12.5,25.5 parent: 2 type: Transform - - uid: 9875 + - uid: 9866 components: - pos: -13.5,25.5 parent: 2 type: Transform - - uid: 9876 + - uid: 9867 components: - pos: 8.5,27.5 parent: 2 type: Transform - - uid: 9877 + - uid: 9868 components: - pos: -13.5,27.5 parent: 2 type: Transform - - uid: 9878 + - uid: 9869 components: - pos: -13.5,28.5 parent: 2 type: Transform - - uid: 9879 + - uid: 9870 components: - pos: -13.5,29.5 parent: 2 type: Transform - - uid: 9880 + - uid: 9871 components: - pos: -11.5,21.5 parent: 2 type: Transform - - uid: 9881 + - uid: 9872 components: - pos: -14.5,29.5 parent: 2 type: Transform - - uid: 9882 + - uid: 9873 components: - pos: -12.5,21.5 parent: 2 type: Transform - - uid: 9883 + - uid: 9874 components: - pos: -11.5,36.5 parent: 2 type: Transform - - uid: 9884 + - uid: 9875 components: - pos: 19.5,19.5 parent: 2 type: Transform - - uid: 9885 + - uid: 9876 components: - pos: -11.5,42.5 parent: 2 type: Transform - - uid: 9886 + - uid: 9877 components: - pos: -20.5,26.5 parent: 2 type: Transform - - uid: 9887 + - uid: 9878 components: - pos: -11.5,35.5 parent: 2 type: Transform - - uid: 9888 + - uid: 9879 components: - pos: -4.5,47.5 parent: 2 type: Transform - - uid: 9889 + - uid: 9880 components: - pos: 6.5,26.5 parent: 2 type: Transform - - uid: 9890 + - uid: 9881 components: - pos: 6.5,27.5 parent: 2 type: Transform - - uid: 9891 + - uid: 9882 components: - pos: -11.5,38.5 parent: 2 type: Transform - - uid: 9892 + - uid: 9883 components: - pos: -11.5,33.5 parent: 2 type: Transform - - uid: 9893 + - uid: 9884 components: - pos: -10.5,48.5 parent: 2 type: Transform - - uid: 9894 + - uid: 9885 components: - pos: 29.5,40.5 parent: 2 type: Transform - - uid: 9895 + - uid: 9886 components: - pos: -11.5,43.5 parent: 2 type: Transform - - uid: 9896 + - uid: 9887 components: - pos: 32.5,9.5 parent: 2 type: Transform - - uid: 9897 + - uid: 9888 components: - pos: 30.5,9.5 parent: 2 type: Transform - - uid: 9898 + - uid: 9889 components: - pos: 31.5,9.5 parent: 2 type: Transform - - uid: 9899 + - uid: 9890 components: - pos: -15.5,26.5 parent: 2 type: Transform - - uid: 9900 + - uid: 9891 components: - pos: 9.5,15.5 parent: 2 type: Transform - - uid: 9901 + - uid: 9892 components: - pos: 9.5,14.5 parent: 2 type: Transform - - uid: 9902 + - uid: 9893 components: - pos: 8.5,18.5 parent: 2 type: Transform - - uid: 9903 + - uid: 9894 components: - pos: 17.5,11.5 parent: 2 type: Transform - - uid: 9904 + - uid: 9895 components: - pos: 16.5,11.5 parent: 2 type: Transform - - uid: 9905 + - uid: 9896 components: - pos: 9.5,18.5 parent: 2 type: Transform - - uid: 9906 + - uid: 9897 components: - pos: 27.5,21.5 parent: 2 type: Transform - - uid: 9907 + - uid: 9898 components: - pos: 17.5,15.5 parent: 2 type: Transform - - uid: 9908 + - uid: 9899 components: - pos: -3.5,-11.5 parent: 2 type: Transform - - uid: 9909 + - uid: 9900 components: - pos: -3.5,-10.5 parent: 2 type: Transform - - uid: 9910 + - uid: 9901 components: - pos: -4.5,-10.5 parent: 2 type: Transform - - uid: 9911 + - uid: 9902 components: - pos: -5.5,-10.5 parent: 2 type: Transform - - uid: 9912 + - uid: 9903 components: - pos: -5.5,-11.5 parent: 2 type: Transform - - uid: 9913 + - uid: 9904 components: - pos: -5.5,-12.5 parent: 2 type: Transform - - uid: 9914 + - uid: 9905 components: - pos: -5.5,-13.5 parent: 2 type: Transform - - uid: 9915 + - uid: 9906 components: - pos: -3.5,-13.5 parent: 2 type: Transform - - uid: 9916 + - uid: 9907 components: - pos: -3.5,-12.5 parent: 2 type: Transform - - uid: 9917 + - uid: 9908 components: - pos: 8.5,22.5 parent: 2 type: Transform - - uid: 9918 + - uid: 9909 components: - pos: -33.5,-1.5 parent: 2 type: Transform - - uid: 9919 + - uid: 9910 components: - pos: 13.5,-30.5 parent: 2 type: Transform - - uid: 9920 + - uid: 9911 components: - pos: 20.5,-29.5 parent: 2 type: Transform - - uid: 9921 + - uid: 9912 components: - pos: 5.5,18.5 parent: 2 type: Transform - - uid: 9922 + - uid: 9913 components: - pos: 15.5,11.5 parent: 2 type: Transform - - uid: 9923 + - uid: 9914 components: - pos: 14.5,11.5 parent: 2 type: Transform - - uid: 9924 + - uid: 9915 components: - pos: -28.5,2.5 parent: 2 type: Transform - - uid: 9925 + - uid: 9916 components: - pos: -15.5,30.5 parent: 2 type: Transform - - uid: 9926 + - uid: 9917 components: - pos: 28.5,27.5 parent: 2 type: Transform - - uid: 9927 + - uid: 9918 components: - pos: 27.5,40.5 parent: 2 type: Transform - - uid: 9928 + - uid: 9919 components: - pos: 6.5,19.5 parent: 2 type: Transform - - uid: 9929 + - uid: 9920 components: - pos: 6.5,25.5 parent: 2 type: Transform - - uid: 9930 + - uid: 9921 components: - pos: 6.5,23.5 parent: 2 type: Transform - - uid: 9931 + - uid: 9922 components: - pos: 6.5,22.5 parent: 2 type: Transform - - uid: 9932 + - uid: 9923 components: - pos: 13.5,26.5 parent: 2 type: Transform - - uid: 9933 + - uid: 9924 components: - pos: 11.5,22.5 parent: 2 type: Transform - - uid: 9934 + - uid: 9925 components: - pos: 29.5,38.5 parent: 2 type: Transform - - uid: 9935 + - uid: 9926 components: - pos: -15.5,27.5 parent: 2 type: Transform - - uid: 9936 + - uid: 9927 components: - pos: 26.5,37.5 parent: 2 type: Transform - - uid: 9937 + - uid: 9928 components: - pos: 12.5,26.5 parent: 2 type: Transform - - uid: 9938 + - uid: 9929 components: - pos: -30.5,2.5 parent: 2 type: Transform - - uid: 9939 + - uid: 9930 components: - pos: 18.5,-24.5 parent: 2 type: Transform - - uid: 9940 + - uid: 9931 components: - pos: -31.5,0.5 parent: 2 type: Transform - - uid: 9941 + - uid: 9932 components: - pos: -31.5,-7.5 parent: 2 type: Transform - - uid: 9942 + - uid: 9933 components: - pos: 26.5,-8.5 parent: 2 type: Transform - - uid: 9943 + - uid: 9934 components: - pos: 6.5,21.5 parent: 2 type: Transform - - uid: 9944 + - uid: 9935 components: - pos: 26.5,40.5 parent: 2 type: Transform - - uid: 9945 + - uid: 9936 components: - pos: 26.5,38.5 parent: 2 type: Transform - - uid: 9946 + - uid: 9937 components: - pos: 12.5,22.5 parent: 2 type: Transform - - uid: 9947 + - uid: 9938 components: - pos: 26.5,39.5 parent: 2 type: Transform - - uid: 9948 + - uid: 9939 components: - pos: 20.5,-30.5 parent: 2 type: Transform - - uid: 9949 + - uid: 9940 components: - pos: -31.5,-5.5 parent: 2 type: Transform - - uid: 9950 + - uid: 9941 components: - pos: -41.5,-5.5 parent: 2 type: Transform - - uid: 9951 + - uid: 9942 components: - pos: 20.5,-28.5 parent: 2 type: Transform - - uid: 9952 + - uid: 9943 components: - pos: 25.5,19.5 parent: 2 type: Transform - - uid: 9953 + - uid: 9944 components: - pos: 26.5,4.5 parent: 2 type: Transform - - uid: 9954 + - uid: 9945 components: - pos: 2.5,31.5 parent: 2 type: Transform - - uid: 9955 + - uid: 9946 components: - pos: 6.5,-9.5 parent: 2 type: Transform - - uid: 9956 + - uid: 9947 components: - pos: -3.5,41.5 parent: 2 type: Transform - - uid: 9957 + - uid: 9948 components: - pos: -11.5,45.5 parent: 2 type: Transform - - uid: 9958 + - uid: 9949 components: - pos: -3.5,43.5 parent: 2 type: Transform - - uid: 9959 + - uid: 9950 components: - pos: -3.5,44.5 parent: 2 type: Transform - - uid: 9960 + - uid: 9951 components: - pos: -10.5,47.5 parent: 2 type: Transform - - uid: 9961 + - uid: 9952 components: - pos: -11.5,46.5 parent: 2 type: Transform - - uid: 9962 + - uid: 9953 components: - pos: -32.5,23.5 parent: 2 type: Transform - - uid: 9963 + - uid: 9954 components: - pos: 18.5,15.5 parent: 2 type: Transform - - uid: 9964 + - uid: 9955 components: - pos: -29.5,3.5 parent: 2 type: Transform - - uid: 9965 + - uid: 9956 components: - pos: 16.5,34.5 parent: 2 type: Transform - - uid: 9966 + - uid: 9957 components: - pos: -28.5,31.5 parent: 2 type: Transform - - uid: 9967 + - uid: 9958 components: - pos: 26.5,36.5 parent: 2 type: Transform - - uid: 9968 + - uid: 9959 components: - pos: 20.5,40.5 parent: 2 type: Transform - - uid: 9969 + - uid: 9960 components: - pos: 21.5,40.5 parent: 2 type: Transform - - uid: 9970 + - uid: 9961 components: - pos: 22.5,40.5 parent: 2 type: Transform - - uid: 9971 + - uid: 9962 components: - pos: 23.5,40.5 parent: 2 type: Transform - - uid: 9972 + - uid: 9963 components: - pos: 24.5,40.5 parent: 2 type: Transform - - uid: 9973 + - uid: 9964 components: - pos: 29.5,39.5 parent: 2 type: Transform - - uid: 9974 + - uid: 9965 components: - pos: -15.5,38.5 parent: 2 type: Transform - - uid: 9975 + - uid: 9966 components: - pos: 29.5,37.5 parent: 2 type: Transform - - uid: 9976 + - uid: 9967 components: - pos: 29.5,36.5 parent: 2 type: Transform - - uid: 9977 + - uid: 9968 components: - pos: 28.5,40.5 parent: 2 type: Transform - - uid: 9978 + - uid: 9969 components: - pos: 24.5,38.5 parent: 2 type: Transform - - uid: 9979 + - uid: 9970 components: - pos: 24.5,37.5 parent: 2 type: Transform - - uid: 9980 + - uid: 9971 components: - pos: 24.5,36.5 parent: 2 type: Transform - - uid: 9981 + - uid: 9972 components: - pos: 22.5,38.5 parent: 2 type: Transform - - uid: 9982 + - uid: 9973 components: - pos: 22.5,37.5 parent: 2 type: Transform - - uid: 9983 + - uid: 9974 components: - pos: 22.5,36.5 parent: 2 type: Transform - - uid: 9984 + - uid: 9975 components: - pos: 24.5,39.5 parent: 2 type: Transform - - uid: 9985 + - uid: 9976 components: - pos: 22.5,39.5 parent: 2 type: Transform - - uid: 9986 + - uid: 9977 components: - pos: 20.5,36.5 parent: 2 type: Transform - - uid: 9987 + - uid: 9978 components: - pos: 20.5,37.5 parent: 2 type: Transform - - uid: 9988 + - uid: 9979 components: - pos: 20.5,38.5 parent: 2 type: Transform - - uid: 9989 + - uid: 9980 components: - pos: 20.5,39.5 parent: 2 type: Transform - - uid: 9990 + - uid: 9981 components: - pos: -31.5,-1.5 parent: 2 type: Transform - - uid: 9991 + - uid: 9982 components: - pos: 30.5,11.5 parent: 2 type: Transform - - uid: 9992 + - uid: 9983 components: - pos: 27.5,11.5 parent: 2 type: Transform - - uid: 9993 + - uid: 9984 components: - pos: 25.5,11.5 parent: 2 type: Transform - - uid: 9994 + - uid: 9985 components: - pos: -31.5,2.5 parent: 2 type: Transform - - uid: 9995 + - uid: 9986 components: - pos: 27.5,27.5 parent: 2 type: Transform - - uid: 9996 + - uid: 9987 components: - pos: 26.5,27.5 parent: 2 type: Transform - - uid: 9997 + - uid: 9988 components: - pos: 20.5,24.5 parent: 2 type: Transform - - uid: 9998 + - uid: 9989 components: - pos: 19.5,24.5 parent: 2 type: Transform - - uid: 9999 + - uid: 9990 components: - pos: 18.5,24.5 parent: 2 type: Transform - - uid: 10000 + - uid: 9991 components: - pos: 18.5,23.5 parent: 2 type: Transform - - uid: 10001 + - uid: 9992 components: - pos: 18.5,22.5 parent: 2 type: Transform - - uid: 10002 + - uid: 9993 components: - pos: 18.5,34.5 parent: 2 type: Transform - - uid: 10003 + - uid: 9994 components: - pos: -26.5,-26.5 parent: 2 type: Transform - - uid: 10004 + - uid: 9995 components: - pos: -15.5,28.5 parent: 2 type: Transform - - uid: 10005 + - uid: 9996 components: - pos: -32.5,22.5 parent: 2 type: Transform - - uid: 10006 + - uid: 9997 components: - pos: 10.5,-9.5 parent: 2 type: Transform - - uid: 10007 + - uid: 9998 components: - pos: 12.5,27.5 parent: 2 type: Transform - - uid: 10008 + - uid: 9999 components: - pos: 11.5,27.5 parent: 2 type: Transform - - uid: 10009 + - uid: 10000 components: - pos: 10.5,27.5 parent: 2 type: Transform - - uid: 10010 + - uid: 10001 components: - pos: 9.5,22.5 parent: 2 type: Transform - - uid: 10011 + - uid: 10002 components: - pos: 9.5,-9.5 parent: 2 type: Transform - - uid: 10012 + - uid: 10003 components: - pos: -21.5,-9.5 parent: 2 type: Transform - - uid: 10013 + - uid: 10004 components: - pos: -14.5,-1.5 parent: 2 type: Transform - - uid: 10014 + - uid: 10005 components: - pos: -14.5,-5.5 parent: 2 type: Transform - - uid: 10015 + - uid: 10006 components: - pos: -29.5,-9.5 parent: 2 type: Transform - - uid: 10016 + - uid: 10007 components: - pos: -29.5,2.5 parent: 2 type: Transform - - uid: 10017 + - uid: 10008 components: - pos: -26.5,-27.5 parent: 2 type: Transform - - uid: 10018 + - uid: 10009 components: - pos: 12.5,-9.5 parent: 2 type: Transform - - uid: 10019 + - uid: 10010 components: - pos: -30.5,-22.5 parent: 2 type: Transform - - uid: 10020 + - uid: 10011 components: - pos: 2.5,38.5 parent: 2 type: Transform - - uid: 10021 + - uid: 10012 components: - pos: -4.5,37.5 parent: 2 type: Transform - - uid: 10022 + - uid: 10013 components: - pos: -16.5,26.5 parent: 2 type: Transform - - uid: 10023 + - uid: 10014 components: - pos: -22.5,26.5 parent: 2 type: Transform - - uid: 10024 + - uid: 10015 components: - pos: -21.5,29.5 parent: 2 type: Transform - - uid: 10025 + - uid: 10016 components: - pos: 21.5,23.5 parent: 2 type: Transform - - uid: 10026 + - uid: 10017 components: - pos: -25.5,29.5 parent: 2 type: Transform - - uid: 10027 + - uid: 10018 components: - pos: -25.5,26.5 parent: 2 type: Transform - - uid: 10028 + - uid: 10019 components: - pos: -25.5,27.5 parent: 2 type: Transform - - uid: 10029 + - uid: 10020 components: - pos: 24.5,3.5 parent: 2 type: Transform - - uid: 10030 + - uid: 10021 components: - pos: 33.5,19.5 parent: 2 type: Transform - - uid: 10031 + - uid: 10022 components: - pos: 2.5,32.5 parent: 2 type: Transform - - uid: 10032 + - uid: 10023 components: - pos: 10.5,-26.5 parent: 2 type: Transform - - uid: 10033 + - uid: 10024 components: - pos: 2.5,33.5 parent: 2 type: Transform - - uid: 10034 + - uid: 10025 components: - pos: -19.5,27.5 parent: 2 type: Transform - - uid: 10035 + - uid: 10026 components: - pos: -19.5,30.5 parent: 2 type: Transform - - uid: 10036 + - uid: 10027 components: - pos: -22.5,31.5 parent: 2 type: Transform - - uid: 10037 + - uid: 10028 components: - pos: -16.5,37.5 parent: 2 type: Transform - - uid: 10038 + - uid: 10029 components: - pos: -22.5,30.5 parent: 2 type: Transform - - uid: 10039 + - uid: 10030 components: - pos: -11.5,34.5 parent: 2 type: Transform - - uid: 10040 + - uid: 10031 components: - pos: -13.5,26.5 parent: 2 type: Transform - - uid: 10041 + - uid: 10032 components: - pos: -2.5,41.5 parent: 2 type: Transform - - uid: 10042 + - uid: 10033 components: - pos: -4.5,41.5 parent: 2 type: Transform - - uid: 10043 + - uid: 10034 components: - pos: 36.5,18.5 parent: 2 type: Transform - - uid: 10044 + - uid: 10035 components: - pos: 35.5,18.5 parent: 2 type: Transform - - uid: 10045 + - uid: 10036 components: - pos: -15.5,29.5 parent: 2 type: Transform - - uid: 10046 + - uid: 10037 components: - pos: 24.5,-14.5 parent: 2 type: Transform - - uid: 10047 + - uid: 10038 components: - pos: 23.5,-14.5 parent: 2 type: Transform - - uid: 10048 + - uid: 10039 components: - pos: 22.5,-13.5 parent: 2 type: Transform - - uid: 10049 + - uid: 10040 components: - pos: -27.5,2.5 parent: 2 type: Transform - - uid: 10050 + - uid: 10041 components: - pos: 26.5,11.5 parent: 2 type: Transform - - uid: 10051 + - uid: 10042 components: - pos: 20.5,-26.5 parent: 2 type: Transform - - uid: 10052 + - uid: 10043 components: - pos: 17.5,34.5 parent: 2 type: Transform - - uid: 10053 + - uid: 10044 components: - pos: 13.5,36.5 parent: 2 type: Transform - - uid: 10054 + - uid: 10045 components: - pos: 13.5,37.5 parent: 2 type: Transform - - uid: 10055 + - uid: 10046 components: - pos: -26.5,-25.5 parent: 2 type: Transform - - uid: 10056 + - uid: 10047 components: - pos: 13.5,22.5 parent: 2 type: Transform - - uid: 10057 + - uid: 10048 components: - pos: -22.5,29.5 parent: 2 type: Transform - - uid: 10058 + - uid: 10049 components: - pos: -19.5,28.5 parent: 2 type: Transform - - uid: 10059 + - uid: 10050 components: - pos: -24.5,23.5 parent: 2 type: Transform - - uid: 10060 + - uid: 10051 components: - pos: -19.5,26.5 parent: 2 type: Transform - - uid: 10061 + - uid: 10052 components: - pos: 6.5,18.5 parent: 2 type: Transform - - uid: 10062 + - uid: 10053 components: - pos: 15.5,-4.5 parent: 2 type: Transform - - uid: 10063 + - uid: 10054 components: - pos: 15.5,-5.5 parent: 2 type: Transform - - uid: 10064 + - uid: 10055 components: - pos: 13.5,25.5 parent: 2 type: Transform - - uid: 10065 + - uid: 10056 components: - pos: 2.5,37.5 parent: 2 type: Transform - - uid: 10066 + - uid: 10057 components: - pos: 25.5,20.5 parent: 2 type: Transform - - uid: 10067 + - uid: 10058 components: - pos: 17.5,3.5 parent: 2 type: Transform - - uid: 10068 + - uid: 10059 components: - pos: 33.5,11.5 parent: 2 type: Transform - - uid: 10069 + - uid: 10060 components: - pos: 25.5,3.5 parent: 2 type: Transform - - uid: 10070 + - uid: 10061 components: - pos: 20.5,25.5 parent: 2 type: Transform - - uid: 10071 + - uid: 10062 components: - pos: 23.5,3.5 parent: 2 type: Transform - - uid: 10072 + - uid: 10063 components: - pos: 32.5,10.5 parent: 2 type: Transform - - uid: 10073 + - uid: 10064 components: - pos: 27.5,25.5 parent: 2 type: Transform - - uid: 10074 + - uid: 10065 components: - pos: 34.5,15.5 parent: 2 type: Transform - - uid: 10075 + - uid: 10066 components: - pos: 34.5,13.5 parent: 2 type: Transform - - uid: 10076 + - uid: 10067 components: - pos: 16.5,3.5 parent: 2 type: Transform - - uid: 10077 + - uid: 10068 components: - pos: 34.5,11.5 parent: 2 type: Transform - - uid: 10078 + - uid: 10069 components: - pos: 33.5,10.5 parent: 2 type: Transform - - uid: 10079 + - uid: 10070 components: - pos: 34.5,18.5 parent: 2 type: Transform - - uid: 10080 + - uid: 10071 components: - pos: 29.5,-3.5 parent: 2 type: Transform - - uid: 10081 + - uid: 10072 components: - pos: 27.5,26.5 parent: 2 type: Transform - - uid: 10082 + - uid: 10073 components: - pos: 26.5,20.5 parent: 2 type: Transform - - uid: 10083 + - uid: 10074 components: - pos: 27.5,20.5 parent: 2 type: Transform - - uid: 10084 + - uid: 10075 components: - pos: 19.5,-13.5 parent: 2 type: Transform - - uid: 10085 + - uid: 10076 components: - pos: 23.5,27.5 parent: 2 type: Transform - - uid: 10086 + - uid: 10077 components: - pos: -4.5,-30.5 parent: 2 type: Transform - - uid: 10087 + - uid: 10078 components: - pos: 3.5,-30.5 parent: 2 type: Transform - - uid: 10088 + - uid: 10079 components: - pos: 3.5,-29.5 parent: 2 type: Transform - - uid: 10089 + - uid: 10080 components: - pos: -4.5,-29.5 parent: 2 type: Transform - - uid: 10090 + - uid: 10081 components: - pos: 34.5,12.5 parent: 2 type: Transform - - uid: 10091 + - uid: 10082 components: - pos: 34.5,14.5 parent: 2 type: Transform - - uid: 10092 + - uid: 10083 components: - pos: 33.5,18.5 parent: 2 type: Transform - - uid: 10093 + - uid: 10084 components: - pos: -17.5,37.5 parent: 2 type: Transform - - uid: 10094 + - uid: 10085 components: - pos: 20.5,26.5 parent: 2 type: Transform - - uid: 10095 + - uid: 10086 components: - pos: -29.5,15.5 parent: 2 type: Transform - - uid: 10096 + - uid: 10087 components: - pos: 11.5,-9.5 parent: 2 type: Transform - - uid: 10097 + - uid: 10088 components: - pos: 21.5,15.5 parent: 2 type: Transform - - uid: 10098 + - uid: 10089 components: - pos: 22.5,15.5 parent: 2 type: Transform - - uid: 10099 + - uid: 10090 components: - pos: 22.5,14.5 parent: 2 type: Transform - - uid: 10100 + - uid: 10091 components: - pos: 22.5,11.5 parent: 2 type: Transform - - uid: 10101 + - uid: 10092 components: - pos: 21.5,11.5 parent: 2 type: Transform - - uid: 10102 + - uid: 10093 components: - pos: 18.5,11.5 parent: 2 type: Transform - - uid: 10103 + - uid: 10094 components: - pos: 19.5,11.5 parent: 2 type: Transform - - uid: 10104 + - uid: 10095 components: - pos: 26.5,-7.5 parent: 2 type: Transform - - uid: 10105 + - uid: 10096 components: - pos: 21.5,-4.5 parent: 2 type: Transform - - uid: 10106 + - uid: 10097 components: - pos: 29.5,15.5 parent: 2 type: Transform - - uid: 10107 + - uid: 10098 components: - pos: 30.5,14.5 parent: 2 type: Transform - - uid: 10108 + - uid: 10099 components: - pos: 23.5,11.5 parent: 2 type: Transform - - uid: 10109 + - uid: 10100 components: - pos: 14.5,-3.5 parent: 2 type: Transform - - uid: 10110 + - uid: 10101 components: - pos: 30.5,15.5 parent: 2 type: Transform - - uid: 10111 + - uid: 10102 components: - pos: 28.5,12.5 parent: 2 type: Transform - - uid: 10112 + - uid: 10103 components: - pos: 28.5,11.5 parent: 2 type: Transform - - uid: 10113 + - uid: 10104 components: - pos: 29.5,11.5 parent: 2 type: Transform - - uid: 10114 + - uid: 10105 components: - pos: 1.5,38.5 parent: 2 type: Transform - - uid: 10115 + - uid: 10106 components: - pos: -3.5,42.5 parent: 2 type: Transform - - uid: 10116 + - uid: 10107 components: - pos: 18.5,-13.5 parent: 2 type: Transform - - uid: 10117 + - uid: 10108 components: - pos: 2.5,34.5 parent: 2 type: Transform - - uid: 10118 + - uid: 10109 components: - pos: 1.5,41.5 parent: 2 type: Transform - - uid: 10119 + - uid: 10110 components: - pos: -3.5,38.5 parent: 2 type: Transform - - uid: 10120 + - uid: 10111 components: - pos: 2.5,35.5 parent: 2 type: Transform - - uid: 10121 + - uid: 10112 components: - pos: -29.5,-14.5 parent: 2 type: Transform - - uid: 10122 + - uid: 10113 components: - pos: 20.5,3.5 parent: 2 type: Transform - - uid: 10123 + - uid: 10114 components: - pos: 18.5,19.5 parent: 2 type: Transform - - uid: 10124 + - uid: 10115 components: - pos: 12.5,-30.5 parent: 2 type: Transform - - uid: 10125 + - uid: 10116 components: - pos: 16.5,-11.5 parent: 2 type: Transform - - uid: 10126 + - uid: 10117 components: - pos: 17.5,-8.5 parent: 2 type: Transform - - uid: 10127 + - uid: 10118 components: - pos: 16.5,-8.5 parent: 2 type: Transform - - uid: 10128 + - uid: 10119 components: - pos: -26.5,-9.5 parent: 2 type: Transform - - uid: 10129 + - uid: 10120 components: - pos: 11.5,-23.5 parent: 2 type: Transform - - uid: 10130 + - uid: 10121 components: - pos: 27.5,24.5 parent: 2 type: Transform - - uid: 10131 + - uid: 10122 components: - pos: -25.5,28.5 parent: 2 type: Transform - - uid: 10132 + - uid: 10123 components: - pos: -28.5,-14.5 parent: 2 type: Transform - - uid: 10133 + - uid: 10124 components: - pos: 27.5,22.5 parent: 2 type: Transform - - uid: 10134 + - uid: 10125 components: - pos: 37.5,18.5 parent: 2 type: Transform - - uid: 10135 + - uid: 10126 components: - pos: 16.5,-17.5 parent: 2 type: Transform - - uid: 10136 + - uid: 10127 components: - pos: 39.5,20.5 parent: 2 type: Transform - - uid: 10137 + - uid: 10128 components: - pos: 38.5,20.5 parent: 2 type: Transform - - uid: 10138 + - uid: 10129 components: - pos: 38.5,19.5 parent: 2 type: Transform - - uid: 10139 + - uid: 10130 components: - pos: -11.5,41.5 parent: 2 type: Transform - - uid: 10140 + - uid: 10131 components: - pos: 34.5,17.5 parent: 2 type: Transform - - uid: 10141 + - uid: 10132 components: - pos: 19.5,-8.5 parent: 2 type: Transform - - uid: 10142 + - uid: 10133 components: - pos: -22.5,-24.5 parent: 2 type: Transform - - uid: 10143 + - uid: 10134 components: - pos: 42.5,15.5 parent: 2 type: Transform - - uid: 10144 + - uid: 10135 components: - pos: -30.5,-21.5 parent: 2 type: Transform - - uid: 10145 + - uid: 10136 components: - pos: 25.5,16.5 parent: 2 type: Transform - - uid: 10146 + - uid: 10137 components: - pos: 24.5,16.5 parent: 2 type: Transform - - uid: 10147 + - uid: 10138 components: - pos: 28.5,15.5 parent: 2 type: Transform - - uid: 10148 + - uid: 10139 components: - pos: 13.5,-7.5 parent: 2 type: Transform - - uid: 10149 + - uid: 10140 components: - pos: 27.5,14.5 parent: 2 type: Transform - - uid: 10150 + - uid: 10141 components: - pos: 15.5,-7.5 parent: 2 type: Transform - - uid: 10151 + - uid: 10142 components: - pos: 14.5,-7.5 parent: 2 type: Transform - - uid: 10152 + - uid: 10143 components: - rot: 3.141592653589793 rad pos: 7.5,-9.5 parent: 2 type: Transform - - uid: 10153 + - uid: 10144 components: - pos: 28.5,14.5 parent: 2 type: Transform - - uid: 10154 + - uid: 10145 components: - pos: -19.5,29.5 parent: 2 type: Transform - - uid: 10155 + - uid: 10146 components: - pos: -19.5,31.5 parent: 2 type: Transform - - uid: 10156 + - uid: 10147 components: - pos: 23.5,16.5 parent: 2 type: Transform - - uid: 10157 + - uid: 10148 components: - pos: 15.5,-6.5 parent: 2 type: Transform - - uid: 10158 + - uid: 10149 components: - pos: -24.5,22.5 parent: 2 type: Transform - - uid: 10159 + - uid: 10150 components: - pos: 0.5,38.5 parent: 2 type: Transform - - uid: 10160 + - uid: 10151 components: - pos: -18.5,-17.5 parent: 2 type: Transform - - uid: 10161 + - uid: 10152 components: - pos: -0.5,41.5 parent: 2 type: Transform - - uid: 10162 + - uid: 10153 components: - pos: -28.5,19.5 parent: 2 type: Transform - - uid: 10163 + - uid: 10154 components: - pos: -28.5,23.5 parent: 2 type: Transform - - uid: 10164 + - uid: 10155 components: - pos: -27.5,19.5 parent: 2 type: Transform - - uid: 10165 + - uid: 10156 components: - pos: -28.5,25.5 parent: 2 type: Transform - - uid: 10166 + - uid: 10157 components: - pos: -27.5,15.5 parent: 2 type: Transform - - uid: 10167 + - uid: 10158 components: - pos: -28.5,21.5 parent: 2 type: Transform - - uid: 10168 + - uid: 10159 components: - pos: -21.5,-6.5 parent: 2 type: Transform - - uid: 10169 + - uid: 10160 components: - pos: -37.5,0.5 parent: 2 type: Transform - - uid: 10170 + - uid: 10161 components: - pos: -28.5,33.5 parent: 2 type: Transform - - uid: 10171 + - uid: 10162 components: - pos: -32.5,28.5 parent: 2 type: Transform - - uid: 10172 + - uid: 10163 components: - pos: -30.5,28.5 parent: 2 type: Transform - - uid: 10173 + - uid: 10164 components: - pos: -33.5,28.5 parent: 2 type: Transform - - uid: 10174 + - uid: 10165 components: - pos: -28.5,32.5 parent: 2 type: Transform - - uid: 10175 + - uid: 10166 components: - pos: -34.5,28.5 parent: 2 type: Transform - - uid: 10176 + - uid: 10167 components: - pos: -34.5,24.5 parent: 2 type: Transform - - uid: 10177 + - uid: 10168 components: - pos: -33.5,23.5 parent: 2 type: Transform - - uid: 10178 + - uid: 10169 components: - pos: -34.5,27.5 parent: 2 type: Transform - - uid: 10179 + - uid: 10170 components: - pos: 20.5,27.5 parent: 2 type: Transform - - uid: 10180 + - uid: 10171 components: - pos: 21.5,27.5 parent: 2 type: Transform - - uid: 10181 + - uid: 10172 components: - pos: -5.5,48.5 parent: 2 type: Transform - - uid: 10182 + - uid: 10173 components: - pos: -6.5,48.5 parent: 2 type: Transform - - uid: 10183 + - uid: 10174 components: - pos: -34.5,23.5 parent: 2 type: Transform - - uid: 10184 + - uid: 10175 components: - pos: -10.5,41.5 parent: 2 type: Transform - - uid: 10185 + - uid: 10176 components: - pos: -11.5,44.5 parent: 2 type: Transform - - uid: 10186 + - uid: 10177 components: - pos: -5.5,37.5 parent: 2 type: Transform - - uid: 10187 + - uid: 10178 components: - pos: -25.5,15.5 parent: 2 type: Transform - - uid: 10188 + - uid: 10179 components: - pos: 27.5,23.5 parent: 2 type: Transform - - uid: 10189 + - uid: 10180 components: - pos: 21.5,21.5 parent: 2 type: Transform - - uid: 10190 + - uid: 10181 components: - pos: 21.5,24.5 parent: 2 type: Transform - - uid: 10191 + - uid: 10182 components: - pos: 21.5,22.5 parent: 2 type: Transform - - uid: 10192 + - uid: 10183 components: - pos: -43.5,-1.5 parent: 2 type: Transform - - uid: 10193 + - uid: 10184 components: - pos: -37.5,2.5 parent: 2 type: Transform - - uid: 10194 + - uid: 10185 components: - pos: -41.5,2.5 parent: 2 type: Transform - - uid: 10195 + - uid: 10186 components: - pos: -43.5,0.5 parent: 2 type: Transform - - uid: 10196 + - uid: 10187 components: - pos: -39.5,-1.5 parent: 2 type: Transform - - uid: 10197 + - uid: 10188 components: - pos: -25.5,-10.5 parent: 2 type: Transform - - uid: 10198 + - uid: 10189 components: - pos: -22.5,-10.5 parent: 2 type: Transform - - uid: 10199 + - uid: 10190 components: - pos: -22.5,-25.5 parent: 2 type: Transform - - uid: 10200 + - uid: 10191 components: - pos: -41.5,-1.5 parent: 2 type: Transform - - uid: 10201 + - uid: 10192 components: - pos: -41.5,-7.5 parent: 2 type: Transform - - uid: 10202 + - uid: 10193 components: - pos: -31.5,-9.5 parent: 2 type: Transform - - uid: 10203 + - uid: 10194 components: - pos: -35.5,-5.5 parent: 2 type: Transform - - uid: 10204 + - uid: 10195 components: - pos: -35.5,2.5 parent: 2 type: Transform - - uid: 10205 + - uid: 10196 components: - pos: -16.5,-16.5 parent: 2 type: Transform - - uid: 10206 + - uid: 10197 components: - pos: -30.5,-20.5 parent: 2 type: Transform - - uid: 10207 + - uid: 10198 components: - pos: -30.5,-17.5 parent: 2 type: Transform - - uid: 10208 + - uid: 10199 components: - pos: -30.5,-14.5 parent: 2 type: Transform - - uid: 10209 + - uid: 10200 components: - pos: -30.5,-25.5 parent: 2 type: Transform - - uid: 10210 + - uid: 10201 components: - pos: -21.5,-14.5 parent: 2 type: Transform - - uid: 10211 + - uid: 10202 components: - pos: -25.5,-14.5 parent: 2 type: Transform - - uid: 10212 + - uid: 10203 components: - pos: -22.5,-14.5 parent: 2 type: Transform - - uid: 10213 + - uid: 10204 components: - pos: 4.5,27.5 parent: 2 type: Transform - - uid: 10214 + - uid: 10205 components: - pos: 4.5,29.5 parent: 2 type: Transform - - uid: 10215 + - uid: 10206 components: - pos: 3.5,30.5 parent: 2 type: Transform - - uid: 10216 + - uid: 10207 components: - pos: 4.5,28.5 parent: 2 type: Transform - - uid: 10217 + - uid: 10208 components: - pos: 5.5,27.5 parent: 2 type: Transform - - uid: 10218 + - uid: 10209 components: - pos: -16.5,-17.5 parent: 2 type: Transform - - uid: 10219 + - uid: 10210 components: - pos: -17.5,-17.5 parent: 2 type: Transform - - uid: 10220 + - uid: 10211 components: - pos: -17.5,-22.5 parent: 2 type: Transform - - uid: 10221 + - uid: 10212 components: - pos: -26.5,-29.5 parent: 2 type: Transform - - uid: 10222 + - uid: 10213 components: - pos: -23.5,-29.5 parent: 2 type: Transform - - uid: 10223 + - uid: 10214 components: - pos: -22.5,-28.5 parent: 2 type: Transform - - uid: 10224 + - uid: 10215 components: - pos: -21.5,-27.5 parent: 2 type: Transform - - uid: 10225 + - uid: 10216 components: - pos: -21.5,-28.5 parent: 2 type: Transform - - uid: 10226 + - uid: 10217 components: - pos: -29.5,-29.5 parent: 2 type: Transform - - uid: 10227 + - uid: 10218 components: - pos: -19.5,-25.5 parent: 2 type: Transform - - uid: 10228 + - uid: 10219 components: - pos: -30.5,-28.5 parent: 2 type: Transform - - uid: 10229 + - uid: 10220 components: - pos: -30.5,-27.5 parent: 2 type: Transform - - uid: 10230 + - uid: 10221 components: - pos: -30.5,-26.5 parent: 2 type: Transform - - uid: 10231 + - uid: 10222 components: - pos: 20.5,11.5 parent: 2 type: Transform - - uid: 10232 + - uid: 10223 components: - pos: 35.5,13.5 parent: 2 type: Transform - - uid: 10233 + - uid: 10224 components: - pos: 36.5,13.5 parent: 2 type: Transform - - uid: 10234 + - uid: 10225 components: - pos: 37.5,13.5 parent: 2 type: Transform - - uid: 10235 + - uid: 10226 components: - pos: 38.5,13.5 parent: 2 type: Transform - - uid: 10236 + - uid: 10227 components: - pos: 38.5,14.5 parent: 2 type: Transform - - uid: 10237 + - uid: 10228 components: - pos: 38.5,16.5 parent: 2 type: Transform - - uid: 10238 + - uid: 10229 components: - pos: 38.5,17.5 parent: 2 type: Transform - - uid: 10239 + - uid: 10230 components: - pos: 38.5,18.5 parent: 2 type: Transform - - uid: 10240 + - uid: 10231 components: - pos: 23.5,19.5 parent: 2 type: Transform - - uid: 10241 + - uid: 10232 components: - pos: 24.5,19.5 parent: 2 type: Transform - - uid: 10242 + - uid: 10233 components: - pos: 23.5,18.5 parent: 2 type: Transform - - uid: 10243 + - uid: 10234 components: - pos: 33.5,30.5 parent: 2 type: Transform - - uid: 10244 + - uid: 10235 components: - pos: 21.5,19.5 parent: 2 type: Transform - - uid: 10245 + - uid: 10236 components: - pos: 33.5,27.5 parent: 2 type: Transform - - uid: 10246 + - uid: 10237 components: - pos: 32.5,27.5 parent: 2 type: Transform - - uid: 10247 + - uid: 10238 components: - pos: 31.5,27.5 parent: 2 type: Transform - - uid: 10248 + - uid: 10239 components: - pos: -11.5,40.5 parent: 2 type: Transform - - uid: 10249 + - uid: 10240 components: - pos: -11.5,39.5 parent: 2 type: Transform - - uid: 10250 + - uid: 10241 components: - pos: -9.5,37.5 parent: 2 type: Transform - - uid: 10251 + - uid: 10242 components: - pos: -10.5,37.5 parent: 2 type: Transform - - uid: 10252 + - uid: 10243 components: - pos: -4.5,38.5 parent: 2 type: Transform - - uid: 10253 + - uid: 10244 components: - pos: -1.5,34.5 parent: 2 type: Transform - - uid: 10254 + - uid: 10245 components: - pos: -8.5,48.5 parent: 2 type: Transform - - uid: 10255 + - uid: 10246 components: - pos: -7.5,48.5 parent: 2 type: Transform - - uid: 10256 + - uid: 10247 components: - pos: -9.5,48.5 parent: 2 type: Transform - - uid: 10257 + - uid: 10248 components: - pos: -29.5,23.5 parent: 2 type: Transform - - uid: 10258 + - uid: 10249 components: - pos: -30.5,23.5 parent: 2 type: Transform - - uid: 10259 + - uid: 10250 components: - pos: -30.5,24.5 parent: 2 type: Transform - - uid: 10260 + - uid: 10251 components: - pos: -30.5,25.5 parent: 2 type: Transform - - uid: 10261 + - uid: 10252 components: - pos: -30.5,26.5 parent: 2 type: Transform - - uid: 10262 + - uid: 10253 components: - pos: -30.5,27.5 parent: 2 type: Transform - - uid: 10263 + - uid: 10254 components: - pos: -4.5,48.5 parent: 2 type: Transform - - uid: 10264 + - uid: 10255 components: - pos: 1.5,40.5 parent: 2 type: Transform - - uid: 10265 + - uid: 10256 components: - pos: -10.5,38.5 parent: 2 type: Transform - - uid: 10266 + - uid: 10257 components: - pos: -2.5,38.5 parent: 2 type: Transform - - uid: 10267 + - uid: 10258 components: - pos: -35.5,-1.5 parent: 2 type: Transform - - uid: 10268 + - uid: 10259 components: - pos: 23.5,-27.5 parent: 2 type: Transform - - uid: 10269 + - uid: 10260 components: - pos: 27.5,-27.5 parent: 2 type: Transform - - uid: 10270 + - uid: 10261 components: - pos: 27.5,-28.5 parent: 2 type: Transform - - uid: 10271 + - uid: 10262 components: - pos: 27.5,-29.5 parent: 2 type: Transform - - uid: 10272 + - uid: 10263 components: - pos: 23.5,-31.5 parent: 2 type: Transform - - uid: 10273 + - uid: 10264 components: - pos: 23.5,-30.5 parent: 2 type: Transform - - uid: 10274 + - uid: 10265 components: - pos: 23.5,-29.5 parent: 2 type: Transform - - uid: 10275 + - uid: 10266 components: - pos: 23.5,-28.5 parent: 2 type: Transform - - uid: 10276 + - uid: 10267 components: - pos: 27.5,-30.5 parent: 2 type: Transform - - uid: 10277 + - uid: 10268 components: - pos: 27.5,-31.5 parent: 2 type: Transform - - uid: 10278 + - uid: 10269 components: - pos: 25.5,-27.5 parent: 2 type: Transform - - uid: 10279 + - uid: 10270 components: - pos: 24.5,-27.5 parent: 2 type: Transform - - uid: 10280 + - uid: 10271 components: - pos: -17.5,26.5 parent: 2 type: Transform - - uid: 10281 + - uid: 10272 components: - pos: 2.5,30.5 parent: 2 type: Transform - - uid: 10282 + - uid: 10273 components: - pos: 4.5,30.5 parent: 2 type: Transform - - uid: 10283 + - uid: 10274 components: - pos: -32.5,6.5 parent: 2 type: Transform - - uid: 10284 + - uid: 10275 components: - pos: 34.5,27.5 parent: 2 type: Transform - - uid: 10285 + - uid: 10276 components: - pos: 38.5,27.5 parent: 2 type: Transform - - uid: 10286 + - uid: 10277 components: - pos: 39.5,27.5 parent: 2 type: Transform - - uid: 10287 + - uid: 10278 components: - pos: 39.5,26.5 parent: 2 type: Transform - - uid: 10288 + - uid: 10279 components: - pos: 39.5,22.5 parent: 2 type: Transform - - uid: 10289 + - uid: 10280 components: - pos: 39.5,21.5 parent: 2 type: Transform - - uid: 10290 + - uid: 10281 components: - pos: -35.5,-7.5 parent: 2 type: Transform - - uid: 10291 + - uid: 10282 components: - pos: -3.5,47.5 parent: 2 type: Transform - - uid: 10292 + - uid: 10283 components: - pos: -7.5,41.5 parent: 2 type: Transform - - uid: 10293 + - uid: 10284 components: - pos: -15.5,33.5 parent: 2 type: Transform - - uid: 10294 + - uid: 10285 components: - pos: -15.5,34.5 parent: 2 type: Transform - - uid: 10295 + - uid: 10286 components: - pos: -18.5,37.5 parent: 2 type: Transform - - uid: 10296 + - uid: 10287 components: - pos: -18.5,36.5 parent: 2 type: Transform - - uid: 10297 + - uid: 10288 components: - pos: -18.5,31.5 parent: 2 type: Transform - - uid: 10298 + - uid: 10289 components: - pos: -17.5,31.5 parent: 2 type: Transform - - uid: 10299 + - uid: 10290 components: - pos: -1.5,41.5 parent: 2 type: Transform - - uid: 10300 + - uid: 10291 components: - pos: -3.5,45.5 parent: 2 type: Transform - - uid: 10301 + - uid: 10292 components: - pos: -39.5,0.5 parent: 2 type: Transform - - uid: 10302 + - uid: 10293 components: - pos: 12.5,-23.5 parent: 2 type: Transform - - uid: 10303 + - uid: 10294 components: - pos: 12.5,-24.5 parent: 2 type: Transform - - uid: 10304 + - uid: 10295 components: - pos: 12.5,-25.5 parent: 2 type: Transform - - uid: 10305 + - uid: 10296 components: - pos: -18.5,32.5 parent: 2 type: Transform - - uid: 10306 + - uid: 10297 components: - pos: -3.5,39.5 parent: 2 type: Transform - - uid: 10307 + - uid: 10298 components: - pos: 0.5,41.5 parent: 2 type: Transform - - uid: 10308 + - uid: 10299 components: - pos: -41.5,0.5 parent: 2 type: Transform - - uid: 10309 + - uid: 10300 components: - pos: -37.5,-9.5 parent: 2 type: Transform - - uid: 10310 + - uid: 10301 components: - pos: -28.5,16.5 parent: 2 type: Transform - - uid: 10311 + - uid: 10302 components: - pos: -31.5,21.5 parent: 2 type: Transform - - uid: 10312 + - uid: 10303 components: - pos: -32.5,21.5 parent: 2 type: Transform - - uid: 10313 + - uid: 10304 components: - pos: -37.5,-7.5 parent: 2 type: Transform - - uid: 10314 + - uid: 10305 components: - pos: 30.5,30.5 parent: 2 type: Transform - - uid: 10315 + - uid: 10306 components: - pos: 29.5,34.5 parent: 2 type: Transform - - uid: 10316 + - uid: 10307 components: - pos: 30.5,34.5 parent: 2 type: Transform - - uid: 10317 + - uid: 10308 components: - pos: -35.5,28.5 parent: 2 type: Transform - - uid: 10318 + - uid: 10309 components: - pos: -36.5,28.5 parent: 2 type: Transform - - uid: 10319 + - uid: 10310 components: - pos: -36.5,29.5 parent: 2 type: Transform - - uid: 10320 + - uid: 10311 components: - pos: -36.5,32.5 parent: 2 type: Transform - - uid: 10321 + - uid: 10312 components: - pos: -36.5,35.5 parent: 2 type: Transform - - uid: 10322 + - uid: 10313 components: - pos: -36.5,36.5 parent: 2 type: Transform - - uid: 10323 + - uid: 10314 components: - pos: -35.5,36.5 parent: 2 type: Transform - - uid: 10324 + - uid: 10315 components: - pos: -32.5,36.5 parent: 2 type: Transform - - uid: 10325 + - uid: 10316 components: - pos: -29.5,36.5 parent: 2 type: Transform - - uid: 10326 + - uid: 10317 components: - pos: -28.5,36.5 parent: 2 type: Transform - - uid: 10327 + - uid: 10318 components: - pos: -28.5,35.5 parent: 2 type: Transform - - uid: 10328 + - uid: 10319 components: - pos: -2.5,34.5 parent: 2 type: Transform - - uid: 10329 + - uid: 10320 components: - pos: -3.5,34.5 parent: 2 type: Transform - - uid: 10330 + - uid: 10321 components: - pos: -3.5,35.5 parent: 2 type: Transform - - uid: 10331 + - uid: 10322 components: - pos: -3.5,36.5 parent: 2 type: Transform - - uid: 10332 + - uid: 10323 components: - pos: 1.5,34.5 parent: 2 type: Transform - - uid: 10333 + - uid: 10324 components: - pos: -33.5,2.5 parent: 2 type: Transform - - uid: 10334 + - uid: 10325 components: - pos: -35.5,0.5 parent: 2 type: Transform - - uid: 10335 + - uid: 10326 components: - pos: -43.5,-9.5 parent: 2 type: Transform - - uid: 10336 + - uid: 10327 components: - pos: -33.5,-9.5 parent: 2 type: Transform - - uid: 10337 + - uid: 10328 components: - pos: -29.5,13.5 parent: 2 type: Transform - - uid: 10338 + - uid: 10329 components: - pos: -33.5,-7.5 parent: 2 type: Transform - - uid: 10339 + - uid: 10330 components: - pos: -35.5,-9.5 parent: 2 type: Transform - - uid: 10340 + - uid: 10331 components: - pos: -41.5,-9.5 parent: 2 type: Transform - - uid: 10341 + - uid: 10332 components: - pos: -33.5,-5.5 parent: 2 type: Transform - - uid: 10342 + - uid: 10333 components: - pos: -33.5,0.5 parent: 2 type: Transform - - uid: 10343 + - uid: 10334 components: - pos: 29.5,5.5 parent: 2 type: Transform - - uid: 10344 + - uid: 10335 components: - pos: 29.5,8.5 parent: 2 type: Transform - - uid: 10345 + - uid: 10336 components: - pos: 26.5,-6.5 parent: 2 type: Transform - - uid: 10346 + - uid: 10337 components: - pos: 19.5,-3.5 parent: 2 type: Transform - - uid: 10347 + - uid: 10338 components: - pos: 19.5,-4.5 parent: 2 type: Transform - - uid: 10348 + - uid: 10339 components: - pos: 19.5,-5.5 parent: 2 type: Transform - - uid: 10349 + - uid: 10340 components: - pos: 26.5,3.5 parent: 2 type: Transform - - uid: 10350 + - uid: 10341 components: - pos: 26.5,-4.5 parent: 2 type: Transform - - uid: 10351 + - uid: 10342 components: - pos: 24.5,-4.5 parent: 2 type: Transform - - uid: 10352 + - uid: 10343 components: - pos: 26.5,-14.5 parent: 2 type: Transform - - uid: 10353 + - uid: 10344 components: - pos: -39.5,-9.5 parent: 2 type: Transform - - uid: 10354 + - uid: 10345 components: - pos: -25.5,-29.5 parent: 2 type: Transform - - uid: 10355 + - uid: 10346 components: - pos: -28.5,-29.5 parent: 2 type: Transform - - uid: 10356 + - uid: 10347 components: - pos: -16.5,-25.5 parent: 2 type: Transform - - uid: 10357 + - uid: 10348 components: - pos: -20.5,-25.5 parent: 2 type: Transform - - uid: 10358 + - uid: 10349 components: - pos: -21.5,-25.5 parent: 2 type: Transform - - uid: 10359 + - uid: 10350 components: - pos: -27.5,-29.5 parent: 2 type: Transform - - uid: 10360 + - uid: 10351 components: - pos: -24.5,-29.5 parent: 2 type: Transform - - uid: 10361 + - uid: 10352 components: - pos: -17.5,-25.5 parent: 2 type: Transform - - uid: 10362 + - uid: 10353 components: - pos: -21.5,-26.5 parent: 2 type: Transform - - uid: 10363 + - uid: 10354 components: - pos: -43.5,-7.5 parent: 2 type: Transform - - uid: 10364 + - uid: 10355 components: - pos: -37.5,-1.5 parent: 2 type: Transform - - uid: 10365 + - uid: 10356 components: - pos: -39.5,-5.5 parent: 2 type: Transform - - uid: 10366 + - uid: 10357 components: - pos: -39.5,-7.5 parent: 2 type: Transform - - uid: 10367 + - uid: 10358 components: - pos: -43.5,-5.5 parent: 2 type: Transform - - uid: 10368 + - uid: 10359 components: - pos: -29.5,12.5 parent: 2 type: Transform - - uid: 10369 + - uid: 10360 components: - pos: -32.5,15.5 parent: 2 type: Transform - - uid: 10370 + - uid: 10361 components: - pos: -32.5,13.5 parent: 2 type: Transform - - uid: 10371 + - uid: 10362 components: - pos: -29.5,6.5 parent: 2 type: Transform - - uid: 10372 + - uid: 10363 components: - pos: -29.5,9.5 parent: 2 type: Transform - - uid: 10373 + - uid: 10364 components: - pos: -32.5,8.5 parent: 2 type: Transform - - uid: 10374 + - uid: 10365 components: - pos: -29.5,8.5 parent: 2 type: Transform - - uid: 10375 + - uid: 10366 components: - pos: -29.5,-28.5 parent: 2 type: Transform - - uid: 10376 + - uid: 10367 components: - pos: 13.5,3.5 parent: 2 type: Transform - - uid: 10377 + - uid: 10368 components: - pos: -21.5,-17.5 parent: 2 type: Transform - - uid: 10378 + - uid: 10369 components: - pos: 10.5,3.5 parent: 2 type: Transform - - uid: 10379 + - uid: 10370 components: - pos: 14.5,3.5 parent: 2 type: Transform - - uid: 10380 + - uid: 10371 components: - pos: 12.5,3.5 parent: 2 type: Transform - - uid: 10381 + - uid: 10372 components: - pos: 9.5,3.5 parent: 2 type: Transform - - uid: 10382 + - uid: 10373 components: - pos: -21.5,-19.5 parent: 2 type: Transform - - uid: 10383 + - uid: 10374 components: - pos: -21.5,-20.5 parent: 2 type: Transform - - uid: 10384 + - uid: 10375 components: - pos: -19.5,-17.5 parent: 2 type: Transform - - uid: 10385 + - uid: 10376 components: - pos: -18.5,-22.5 parent: 2 type: Transform - - uid: 10386 + - uid: 10377 components: - pos: -19.5,-22.5 parent: 2 type: Transform - - uid: 10387 + - uid: 10378 components: - pos: -20.5,-22.5 parent: 2 type: Transform - - uid: 10388 + - uid: 10379 components: - pos: -21.5,-22.5 parent: 2 type: Transform - - uid: 10389 + - uid: 10380 components: - pos: -21.5,-21.5 parent: 2 type: Transform - - uid: 10390 + - uid: 10381 components: - pos: 2.5,39.5 parent: 2 type: Transform - - uid: 10391 + - uid: 10382 components: - pos: 2.5,40.5 parent: 2 type: Transform - proto: WallSolid entities: - - uid: 10392 + - uid: 10383 components: - rot: -1.5707963267948966 rad pos: 18.5,7.5 parent: 2 type: Transform - - uid: 10393 + - uid: 10384 components: - rot: -1.5707963267948966 rad pos: 20.5,9.5 parent: 2 type: Transform - - uid: 10394 + - uid: 10385 components: - rot: -1.5707963267948966 rad pos: 19.5,8.5 parent: 2 type: Transform - - uid: 10395 + - uid: 10386 components: - rot: -1.5707963267948966 rad pos: 19.5,9.5 parent: 2 type: Transform - - uid: 10396 + - uid: 10387 components: - rot: -1.5707963267948966 rad pos: 21.5,9.5 parent: 2 type: Transform - - uid: 10397 + - uid: 10388 components: - rot: -1.5707963267948966 rad pos: 22.5,4.5 parent: 2 type: Transform - - uid: 10398 + - uid: 10389 components: - rot: -1.5707963267948966 rad pos: 26.5,5.5 parent: 2 type: Transform - - uid: 10399 + - uid: 10390 components: - rot: -1.5707963267948966 rad pos: 18.5,5.5 parent: 2 type: Transform - - uid: 10400 + - uid: 10391 components: - rot: -1.5707963267948966 rad pos: 19.5,7.5 parent: 2 type: Transform - - uid: 10401 + - uid: 10392 components: - rot: -1.5707963267948966 rad pos: 18.5,4.5 parent: 2 type: Transform - - uid: 10402 + - uid: 10393 components: - rot: -1.5707963267948966 rad pos: 22.5,5.5 parent: 2 type: Transform - - uid: 10403 + - uid: 10394 components: - rot: -1.5707963267948966 rad pos: 22.5,9.5 parent: 2 type: Transform - - uid: 10404 + - uid: 10395 components: - rot: -1.5707963267948966 rad pos: 23.5,9.5 parent: 2 type: Transform - - uid: 10405 + - uid: 10396 components: - pos: 5.5,2.5 parent: 2 type: Transform - - uid: 10406 + - uid: 10397 components: - pos: 1.5,19.5 parent: 2 type: Transform - - uid: 10407 + - uid: 10398 components: - pos: -0.5,23.5 parent: 2 type: Transform - - uid: 10408 + - uid: 10399 components: - pos: -1.5,23.5 parent: 2 type: Transform - - uid: 10409 + - uid: 10400 components: - pos: 5.5,-2.5 parent: 2 type: Transform - - uid: 10410 + - uid: 10401 components: - pos: -8.5,-13.5 parent: 2 type: Transform - - uid: 10411 + - uid: 10402 components: - pos: -0.5,-10.5 parent: 2 type: Transform - - uid: 10412 + - uid: 10403 components: - pos: -2.5,-10.5 parent: 2 type: Transform - - uid: 10413 + - uid: 10404 components: - pos: -1.5,-13.5 parent: 2 type: Transform - - uid: 10414 + - uid: 10405 components: - pos: -2.5,-13.5 parent: 2 type: Transform - - uid: 10415 + - uid: 10406 components: - pos: 2.5,-13.5 parent: 2 type: Transform - - uid: 10416 + - uid: 10407 components: - pos: 2.5,-14.5 parent: 2 type: Transform - - uid: 10417 + - uid: 10408 components: - pos: 1.5,-14.5 parent: 2 type: Transform - - uid: 10418 + - uid: 10409 components: - pos: 0.5,-14.5 parent: 2 type: Transform - - uid: 10419 + - uid: 10410 components: - pos: -1.5,-14.5 parent: 2 type: Transform - - uid: 10420 + - uid: 10411 components: - pos: -6.5,-13.5 parent: 2 type: Transform - - uid: 10421 + - uid: 10412 components: - pos: -10.5,-14.5 parent: 2 type: Transform - - uid: 10422 + - uid: 10413 components: - pos: -10.5,-13.5 parent: 2 type: Transform - - uid: 10423 + - uid: 10414 components: - pos: -10.5,-12.5 parent: 2 type: Transform - - uid: 10424 + - uid: 10415 components: - pos: -10.5,-11.5 parent: 2 type: Transform - - uid: 10425 + - uid: 10416 components: - pos: -10.5,-10.5 parent: 2 type: Transform - - uid: 10426 + - uid: 10417 components: - pos: -3.5,-9.5 parent: 2 type: Transform - - uid: 10427 + - uid: 10418 components: - pos: -3.5,-8.5 parent: 2 type: Transform - - uid: 10428 + - uid: 10419 components: - pos: -3.5,-7.5 parent: 2 type: Transform - - uid: 10429 + - uid: 10420 components: - pos: -3.5,-6.5 parent: 2 type: Transform - - uid: 10430 + - uid: 10421 components: - pos: -4.5,-6.5 parent: 2 type: Transform - - uid: 10431 + - uid: 10422 components: - pos: 2.5,-11.5 parent: 2 type: Transform - - uid: 10432 + - uid: 10423 components: - pos: 2.5,-10.5 parent: 2 type: Transform - - uid: 10433 + - uid: 10424 components: - pos: 2.5,-9.5 parent: 2 type: Transform - - uid: 10434 + - uid: 10425 components: - pos: 2.5,-6.5 parent: 2 type: Transform - - uid: 10435 + - uid: 10426 components: - pos: -10.5,-6.5 parent: 2 type: Transform - - uid: 10436 + - uid: 10427 components: - pos: -10.5,20.5 parent: 2 type: Transform - - uid: 10437 + - uid: 10428 components: - pos: -10.5,21.5 parent: 2 type: Transform - - uid: 10438 + - uid: 10429 components: - pos: -9.5,-9.5 parent: 2 type: Transform - - uid: 10439 + - uid: 10430 components: - pos: -11.5,14.5 parent: 2 type: Transform - - uid: 10440 + - uid: 10431 components: - pos: 9.5,11.5 parent: 2 type: Transform - - uid: 10441 + - uid: 10432 components: - pos: -10.5,-9.5 parent: 2 type: Transform - - uid: 10442 + - uid: 10433 components: - pos: -9.5,-13.5 parent: 2 type: Transform - - uid: 10443 + - uid: 10434 components: - pos: -14.5,18.5 parent: 2 type: Transform - - uid: 10444 + - uid: 10435 components: - pos: -14.5,17.5 parent: 2 type: Transform - - uid: 10445 + - uid: 10436 components: - pos: -10.5,-8.5 parent: 2 type: Transform - - uid: 10446 + - uid: 10437 components: - pos: -8.5,-9.5 parent: 2 type: Transform - - uid: 10447 + - uid: 10438 components: - pos: -5.5,11.5 parent: 2 type: Transform - - uid: 10448 + - uid: 10439 components: - pos: -20.5,10.5 parent: 2 type: Transform - - uid: 10449 + - uid: 10440 components: - pos: -22.5,2.5 parent: 2 type: Transform - - uid: 10450 + - uid: 10441 components: - pos: -14.5,6.5 parent: 2 type: Transform - - uid: 10451 + - uid: 10442 components: - pos: -13.5,6.5 parent: 2 type: Transform - - uid: 10452 + - uid: 10443 components: - pos: 1.5,2.5 parent: 2 type: Transform - - uid: 10453 + - uid: 10444 components: - pos: 1.5,-0.5 parent: 2 type: Transform - - uid: 10454 + - uid: 10445 components: - pos: 0.5,10.5 parent: 2 type: Transform - - uid: 10455 + - uid: 10446 components: - pos: 0.5,11.5 parent: 2 type: Transform - - uid: 10456 + - uid: 10447 components: - pos: -0.5,11.5 parent: 2 type: Transform - - uid: 10457 + - uid: 10448 components: - pos: -1.5,11.5 parent: 2 type: Transform - - uid: 10458 + - uid: 10449 components: - pos: -4.5,11.5 parent: 2 type: Transform - - uid: 10459 + - uid: 10450 components: - pos: -8.5,11.5 parent: 2 type: Transform - - uid: 10460 + - uid: 10451 components: - pos: -9.5,11.5 parent: 2 type: Transform - - uid: 10461 + - uid: 10452 components: - pos: -10.5,11.5 parent: 2 type: Transform - - uid: 10462 + - uid: 10453 components: - pos: -8.5,7.5 parent: 2 type: Transform - - uid: 10463 + - uid: 10454 components: - pos: -10.5,6.5 parent: 2 type: Transform - - uid: 10464 + - uid: 10455 components: - pos: -10.5,7.5 parent: 2 type: Transform - - uid: 10465 + - uid: 10456 components: - pos: -8.5,6.5 parent: 2 type: Transform - - uid: 10466 + - uid: 10457 components: - pos: 0.5,7.5 parent: 2 type: Transform - - uid: 10467 + - uid: 10458 components: - pos: 0.5,6.5 parent: 2 type: Transform - - uid: 10468 + - uid: 10459 components: - pos: 0.5,5.5 parent: 2 type: Transform - - uid: 10469 + - uid: 10460 components: - pos: 0.5,4.5 parent: 2 type: Transform - - uid: 10470 + - uid: 10461 components: - pos: 0.5,3.5 parent: 2 type: Transform - - uid: 10471 + - uid: 10462 components: - pos: 0.5,2.5 parent: 2 type: Transform - - uid: 10472 + - uid: 10463 components: - pos: 1.5,0.5 parent: 2 type: Transform - - uid: 10473 + - uid: 10464 components: - pos: 1.5,1.5 parent: 2 type: Transform - - uid: 10474 + - uid: 10465 components: - pos: -5.5,6.5 parent: 2 type: Transform - - uid: 10475 + - uid: 10466 components: - pos: -24.5,6.5 parent: 2 type: Transform - - uid: 10476 + - uid: 10467 components: - pos: -21.5,2.5 parent: 2 type: Transform - - uid: 10477 + - uid: 10468 components: - pos: -22.5,0.5 parent: 2 type: Transform - - uid: 10478 + - uid: 10469 components: - pos: -19.5,2.5 parent: 2 type: Transform - - uid: 10479 + - uid: 10470 components: - pos: -17.5,2.5 parent: 2 type: Transform - - uid: 10480 + - uid: 10471 components: - pos: -17.5,6.5 parent: 2 type: Transform - - uid: 10481 + - uid: 10472 components: - pos: -18.5,6.5 parent: 2 type: Transform - - uid: 10482 + - uid: 10473 components: - pos: -20.5,11.5 parent: 2 type: Transform - - uid: 10483 + - uid: 10474 components: - pos: 2.5,-0.5 parent: 2 type: Transform - - uid: 10484 + - uid: 10475 components: - pos: -22.5,-0.5 parent: 2 type: Transform - - uid: 10485 + - uid: 10476 components: - pos: -18.5,3.5 parent: 2 type: Transform - - uid: 10486 + - uid: 10477 components: - pos: -10.5,-0.5 parent: 2 type: Transform - - uid: 10487 + - uid: 10478 components: - pos: -18.5,2.5 parent: 2 type: Transform - - uid: 10488 + - uid: 10479 components: - pos: -23.5,6.5 parent: 2 type: Transform - - uid: 10489 + - uid: 10480 components: - pos: 0.5,-0.5 parent: 2 type: Transform - - uid: 10490 + - uid: 10481 components: - pos: -19.5,6.5 parent: 2 type: Transform - - uid: 10491 + - uid: 10482 components: - pos: 9.5,8.5 parent: 2 type: Transform - - uid: 10492 + - uid: 10483 components: - pos: 3.5,18.5 parent: 2 type: Transform - - uid: 10493 + - uid: 10484 components: - pos: 13.5,7.5 parent: 2 type: Transform - - uid: 10494 + - uid: 10485 components: - pos: -5.5,-0.5 parent: 2 type: Transform - - uid: 10495 + - uid: 10486 components: - pos: -20.5,7.5 parent: 2 type: Transform - - uid: 10496 + - uid: 10487 components: - pos: -20.5,6.5 parent: 2 type: Transform - - uid: 10497 + - uid: 10488 components: - pos: 14.5,6.5 parent: 2 type: Transform - - uid: 10498 + - uid: 10489 components: - pos: 1.5,-10.5 parent: 2 type: Transform - - uid: 10499 + - uid: 10490 components: - pos: -10.5,4.5 parent: 2 type: Transform - - uid: 10500 + - uid: 10491 components: - pos: -10.5,3.5 parent: 2 type: Transform - - uid: 10501 + - uid: 10492 components: - pos: -8.5,0.5 parent: 2 type: Transform - - uid: 10502 + - uid: 10493 components: - pos: -8.5,-0.5 parent: 2 type: Transform - - uid: 10503 + - uid: 10494 components: - pos: -8.5,1.5 parent: 2 type: Transform - - uid: 10504 + - uid: 10495 components: - pos: -5.5,2.5 parent: 2 type: Transform - - uid: 10505 + - uid: 10496 components: - pos: -5.5,0.5 parent: 2 type: Transform - - uid: 10506 + - uid: 10497 components: - pos: -7.5,-0.5 parent: 2 type: Transform - - uid: 10507 + - uid: 10498 components: - pos: -10.5,2.5 parent: 2 type: Transform - - uid: 10508 + - uid: 10499 components: - pos: -5.5,3.5 parent: 2 type: Transform - - uid: 10509 + - uid: 10500 components: - pos: -10.5,0.5 parent: 2 type: Transform - - uid: 10510 + - uid: 10501 components: - pos: -6.5,-0.5 parent: 2 type: Transform - - uid: 10511 + - uid: 10502 components: - pos: 13.5,-4.5 parent: 2 type: Transform - - uid: 10512 + - uid: 10503 components: - pos: -10.5,1.5 parent: 2 type: Transform - - uid: 10513 + - uid: 10504 components: - pos: -7.5,-10.5 parent: 2 type: Transform - - uid: 10514 + - uid: 10505 components: - pos: -7.5,-9.5 parent: 2 type: Transform - - uid: 10515 + - uid: 10506 components: - pos: -25.5,-23.5 parent: 2 type: Transform - - uid: 10516 + - uid: 10507 components: - pos: -26.5,-22.5 parent: 2 type: Transform - - uid: 10517 + - uid: 10508 components: - pos: -26.5,-20.5 parent: 2 type: Transform - - uid: 10518 + - uid: 10509 components: - pos: -25.5,-22.5 parent: 2 type: Transform - - uid: 10519 + - uid: 10510 components: - pos: 12.5,15.5 parent: 2 type: Transform - - uid: 10520 + - uid: 10511 components: - pos: -1.5,-10.5 parent: 2 type: Transform - - uid: 10521 + - uid: 10512 components: - pos: -0.5,18.5 parent: 2 type: Transform - - uid: 10522 + - uid: 10513 components: - pos: 17.5,19.5 parent: 2 type: Transform - - uid: 10523 + - uid: 10514 components: - pos: 0.5,18.5 parent: 2 type: Transform - - uid: 10524 + - uid: 10515 components: - pos: -10.5,29.5 parent: 2 type: Transform - - uid: 10525 + - uid: 10516 components: - pos: -8.5,25.5 parent: 2 type: Transform - - uid: 10526 + - uid: 10517 components: - pos: -8.5,28.5 parent: 2 type: Transform - - uid: 10527 + - uid: 10518 components: - pos: -8.5,29.5 parent: 2 type: Transform - - uid: 10528 + - uid: 10519 components: - pos: 3.5,9.5 parent: 2 type: Transform - - uid: 10529 + - uid: 10520 components: - pos: 14.5,4.5 parent: 2 type: Transform - - uid: 10530 + - uid: 10521 components: - pos: 4.5,11.5 parent: 2 type: Transform - - uid: 10531 + - uid: 10522 components: - pos: 15.5,10.5 parent: 2 type: Transform - - uid: 10532 + - uid: 10523 components: - pos: -14.5,16.5 parent: 2 type: Transform - - uid: 10533 + - uid: 10524 components: - pos: 2.5,18.5 parent: 2 type: Transform - - uid: 10534 + - uid: 10525 components: - pos: 1.5,18.5 parent: 2 type: Transform - - uid: 10535 + - uid: 10526 components: - pos: 30.5,20.5 parent: 2 type: Transform - - uid: 10536 + - uid: 10527 components: - pos: 6.5,11.5 parent: 2 type: Transform - - uid: 10537 + - uid: 10528 components: - pos: -8.5,27.5 parent: 2 type: Transform - - uid: 10538 + - uid: 10529 components: - pos: -8.5,26.5 parent: 2 type: Transform - - uid: 10539 + - uid: 10530 components: - pos: 16.5,19.5 parent: 2 type: Transform - - uid: 10540 + - uid: 10531 components: - pos: 21.5,-8.5 parent: 2 type: Transform - - uid: 10541 + - uid: 10532 components: - pos: 21.5,-9.5 parent: 2 type: Transform - - uid: 10542 + - uid: 10533 components: - pos: 30.5,19.5 parent: 2 type: Transform - - uid: 10543 + - uid: 10534 components: - pos: 5.5,22.5 parent: 2 type: Transform - - uid: 10544 + - uid: 10535 components: - pos: 14.5,5.5 parent: 2 type: Transform - - uid: 10545 + - uid: 10536 components: - pos: 6.5,7.5 parent: 2 type: Transform - - uid: 10546 + - uid: 10537 components: - pos: 1.5,22.5 parent: 2 type: Transform - - uid: 10547 + - uid: 10538 components: - pos: 29.5,30.5 parent: 2 type: Transform - - uid: 10548 + - uid: 10539 components: - pos: 23.5,-9.5 parent: 2 type: Transform - - uid: 10549 + - uid: 10540 components: - pos: 3.5,11.5 parent: 2 type: Transform - - uid: 10550 + - uid: 10541 components: - pos: 7.5,7.5 parent: 2 type: Transform - - uid: 10551 + - uid: 10542 components: - pos: 7.5,11.5 parent: 2 type: Transform - - uid: 10552 + - uid: 10543 components: - pos: 5.5,11.5 parent: 2 type: Transform - - uid: 10553 + - uid: 10544 components: - pos: 3.5,7.5 parent: 2 type: Transform - - uid: 10554 + - uid: 10545 components: - pos: 8.5,7.5 parent: 2 type: Transform - - uid: 10555 + - uid: 10546 components: - pos: 9.5,7.5 parent: 2 type: Transform - - uid: 10556 + - uid: 10547 components: - pos: 3.5,22.5 parent: 2 type: Transform - - uid: 10557 + - uid: 10548 components: - pos: 5.5,7.5 parent: 2 type: Transform - - uid: 10558 + - uid: 10549 components: - pos: -3.5,14.5 parent: 2 type: Transform - - uid: 10559 + - uid: 10550 components: - pos: -3.5,15.5 parent: 2 type: Transform - - uid: 10560 + - uid: 10551 components: - pos: -17.5,14.5 parent: 2 type: Transform - - uid: 10561 + - uid: 10552 components: - pos: 11.5,7.5 parent: 2 type: Transform - - uid: 10562 + - uid: 10553 components: - pos: -3.5,16.5 parent: 2 type: Transform - - uid: 10563 + - uid: 10554 components: - pos: 10.5,7.5 parent: 2 type: Transform - - uid: 10564 + - uid: 10555 components: - pos: 12.5,7.5 parent: 2 type: Transform - - uid: 10565 + - uid: 10556 components: - pos: 5.5,3.5 parent: 2 type: Transform - - uid: 10566 + - uid: 10557 components: - pos: 3.5,8.5 parent: 2 type: Transform - - uid: 10567 + - uid: 10558 components: - pos: -3.5,17.5 parent: 2 type: Transform - - uid: 10568 + - uid: 10559 components: - pos: 9.5,4.5 parent: 2 type: Transform - - uid: 10569 + - uid: 10560 components: - pos: 9.5,5.5 parent: 2 type: Transform - - uid: 10570 + - uid: 10561 components: - pos: 5.5,6.5 parent: 2 type: Transform - - uid: 10571 + - uid: 10562 components: - pos: 5.5,4.5 parent: 2 type: Transform - - uid: 10572 + - uid: 10563 components: - pos: -10.5,17.5 parent: 2 type: Transform - - uid: 10573 + - uid: 10564 components: - pos: -10.5,16.5 parent: 2 type: Transform - - uid: 10574 + - uid: 10565 components: - pos: -10.5,19.5 parent: 2 type: Transform - - uid: 10575 + - uid: 10566 components: - pos: -3.5,23.5 parent: 2 type: Transform - - uid: 10576 + - uid: 10567 components: - pos: -10.5,15.5 parent: 2 type: Transform - - uid: 10577 + - uid: 10568 components: - pos: -10.5,14.5 parent: 2 type: Transform - - uid: 10578 + - uid: 10569 components: - pos: -2.5,18.5 parent: 2 type: Transform - - uid: 10579 + - uid: 10570 components: - pos: -3.5,18.5 parent: 2 type: Transform - - uid: 10580 + - uid: 10571 components: - pos: -1.5,18.5 parent: 2 type: Transform - - uid: 10581 + - uid: 10572 components: - pos: -28.5,-21.5 parent: 2 type: Transform - - uid: 10582 + - uid: 10573 components: - pos: -14.5,11.5 parent: 2 type: Transform - - uid: 10583 + - uid: 10574 components: - pos: -16.5,15.5 parent: 2 type: Transform - - uid: 10584 + - uid: 10575 components: - pos: -13.5,14.5 parent: 2 type: Transform - - uid: 10585 + - uid: 10576 components: - pos: -17.5,11.5 parent: 2 type: Transform - - uid: 10586 + - uid: 10577 components: - pos: -14.5,15.5 parent: 2 type: Transform - - uid: 10587 + - uid: 10578 components: - pos: -15.5,15.5 parent: 2 type: Transform - - uid: 10588 + - uid: 10579 components: - pos: -13.5,11.5 parent: 2 type: Transform - - uid: 10589 + - uid: 10580 components: - pos: -27.5,-17.5 parent: 2 type: Transform - - uid: 10590 + - uid: 10581 components: - pos: -26.5,-17.5 parent: 2 type: Transform - - uid: 10591 + - uid: 10582 components: - pos: -26.5,-19.5 parent: 2 type: Transform - - uid: 10592 + - uid: 10583 components: - pos: 0.5,-10.5 parent: 2 type: Transform - - uid: 10593 + - uid: 10584 components: - pos: -26.5,-21.5 parent: 2 type: Transform - - uid: 10594 + - uid: 10585 components: - pos: 30.5,24.5 parent: 2 type: Transform - - uid: 10595 + - uid: 10586 components: - pos: -27.5,-21.5 parent: 2 type: Transform - - uid: 10596 + - uid: 10587 components: - pos: 0.5,27.5 parent: 2 type: Transform - - uid: 10597 + - uid: 10588 components: - pos: 23.5,-8.5 parent: 2 type: Transform - - uid: 10598 + - uid: 10589 components: - pos: 0.5,28.5 parent: 2 type: Transform - - uid: 10599 + - uid: 10590 components: - pos: 0.5,23.5 parent: 2 type: Transform - - uid: 10600 + - uid: 10591 components: - pos: 2.5,22.5 parent: 2 type: Transform - - uid: 10601 + - uid: 10592 components: - pos: -13.5,15.5 parent: 2 type: Transform - - uid: 10602 + - uid: 10593 components: - pos: 13.5,-6.5 parent: 2 type: Transform - - uid: 10603 + - uid: 10594 components: - pos: -29.5,-21.5 parent: 2 type: Transform - - uid: 10604 + - uid: 10595 components: - pos: -26.5,-16.5 parent: 2 type: Transform - - uid: 10605 + - uid: 10596 components: - pos: -29.5,-17.5 parent: 2 type: Transform - - uid: 10606 + - uid: 10597 components: - pos: 1.5,21.5 parent: 2 type: Transform - - uid: 10607 + - uid: 10598 components: - pos: -8.5,30.5 parent: 2 type: Transform - - uid: 10608 + - uid: 10599 components: - pos: -3.5,30.5 parent: 2 type: Transform - - uid: 10609 + - uid: 10600 components: - pos: -4.5,15.5 parent: 2 type: Transform - - uid: 10610 + - uid: 10601 components: - pos: 12.5,19.5 parent: 2 type: Transform - - uid: 10611 + - uid: 10602 components: - pos: -12.5,29.5 parent: 2 type: Transform - - uid: 10612 + - uid: 10603 components: - pos: 14.5,7.5 parent: 2 type: Transform - - uid: 10613 + - uid: 10604 components: - pos: 31.5,26.5 parent: 2 type: Transform - - uid: 10614 + - uid: 10605 components: - pos: 31.5,24.5 parent: 2 type: Transform - - uid: 10615 + - uid: 10606 components: - pos: 25.5,-8.5 parent: 2 type: Transform - - uid: 10616 + - uid: 10607 components: - pos: 15.5,8.5 parent: 2 type: Transform - - uid: 10617 + - uid: 10608 components: - pos: 9.5,9.5 parent: 2 type: Transform - - uid: 10618 + - uid: 10609 components: - pos: -4.5,30.5 parent: 2 type: Transform - - uid: 10619 + - uid: 10610 components: - pos: -11.5,29.5 parent: 2 type: Transform - - uid: 10620 + - uid: 10611 components: - pos: -7.5,30.5 parent: 2 type: Transform - - uid: 10621 + - uid: 10612 components: - pos: 10.5,11.5 parent: 2 type: Transform - - uid: 10622 + - uid: 10613 components: - pos: 8.5,11.5 parent: 2 type: Transform - - uid: 10623 + - uid: 10614 components: - pos: -3.5,25.5 parent: 2 type: Transform - - uid: 10624 + - uid: 10615 components: - pos: -9.5,15.5 parent: 2 type: Transform - - uid: 10625 + - uid: 10616 components: - pos: -3.5,22.5 parent: 2 type: Transform - - uid: 10626 + - uid: 10617 components: - pos: -11.5,30.5 parent: 2 type: Transform - - uid: 10627 + - uid: 10618 components: - pos: -23.5,3.5 parent: 2 type: Transform - - uid: 10628 + - uid: 10619 components: - pos: -23.5,2.5 parent: 2 type: Transform - - uid: 10629 + - uid: 10620 components: - pos: -23.5,5.5 parent: 2 type: Transform - - uid: 10630 + - uid: 10621 components: - pos: -23.5,4.5 parent: 2 type: Transform - - uid: 10631 + - uid: 10622 components: - pos: -20.5,12.5 parent: 2 type: Transform - - uid: 10632 + - uid: 10623 components: - pos: -15.5,-1.5 parent: 2 type: Transform - - uid: 10633 + - uid: 10624 components: - pos: -17.5,-1.5 parent: 2 type: Transform - - uid: 10634 + - uid: 10625 components: - pos: -18.5,-1.5 parent: 2 type: Transform - - uid: 10635 + - uid: 10626 components: - pos: -19.5,-1.5 parent: 2 type: Transform - - uid: 10636 + - uid: 10627 components: - pos: -20.5,-1.5 parent: 2 type: Transform - - uid: 10637 + - uid: 10628 components: - pos: -21.5,-1.5 parent: 2 type: Transform - - uid: 10638 + - uid: 10629 components: - pos: -21.5,-0.5 parent: 2 type: Transform - - uid: 10639 + - uid: 10630 components: - pos: -28.5,-17.5 parent: 2 type: Transform - - uid: 10640 + - uid: 10631 components: - pos: 0.5,14.5 parent: 2 type: Transform - - uid: 10641 + - uid: 10632 components: - pos: 28.5,30.5 parent: 2 type: Transform - - uid: 10642 + - uid: 10633 components: - pos: -22.5,-22.5 parent: 2 type: Transform - - uid: 10643 + - uid: 10634 components: - pos: -7.5,25.5 parent: 2 type: Transform - - uid: 10644 + - uid: 10635 components: - pos: -9.5,29.5 parent: 2 type: Transform - - uid: 10645 + - uid: 10636 components: - pos: -4.5,25.5 parent: 2 type: Transform - - uid: 10646 + - uid: 10637 components: - pos: 1.5,30.5 parent: 2 type: Transform - - uid: 10647 + - uid: 10638 components: - pos: 0.5,30.5 parent: 2 type: Transform - - uid: 10648 + - uid: 10639 components: - pos: 0.5,26.5 parent: 2 type: Transform - - uid: 10649 + - uid: 10640 components: - pos: 1.5,23.5 parent: 2 type: Transform - - uid: 10650 + - uid: 10641 components: - pos: 27.5,9.5 parent: 2 type: Transform - - uid: 10651 + - uid: 10642 components: - pos: 28.5,9.5 parent: 2 type: Transform - proto: WallSolidRust entities: - - uid: 10652 + - uid: 10643 components: - pos: 14.5,8.5 parent: 2 type: Transform - proto: WallWeaponCapacitorRecharger entities: - - uid: 10653 + - uid: 10644 components: - pos: 15.5,-15.5 parent: 2 type: Transform - proto: WardrobeCargoFilled entities: - - uid: 10654 + - uid: 10645 components: - pos: 12.5,2.5 parent: 2 type: Transform - proto: WardrobeGreenFilled entities: - - uid: 10655 + - uid: 10646 components: - pos: -29.5,-20.5 parent: 2 type: Transform - proto: WardrobePrisonFilled entities: - - uid: 10656 + - uid: 10647 components: - pos: 13.5,-24.5 parent: 2 type: Transform - - uid: 10657 + - uid: 10648 components: - pos: 13.5,-25.5 parent: 2 type: Transform - proto: WardrobeSalvageFilled entities: - - uid: 10658 + - uid: 10649 components: - pos: 22.5,-2.5 parent: 2 type: Transform - proto: WarningN2 entities: - - uid: 10659 + - uid: 10650 components: - pos: 22.5,36.5 parent: 2 type: Transform - proto: WarningO2 entities: - - uid: 10660 + - uid: 10651 components: - pos: 20.5,36.5 parent: 2 type: Transform - proto: WarningPlasma entities: - - uid: 10661 + - uid: 10652 components: - pos: 24.5,36.5 parent: 2 type: Transform - proto: WarningWaste entities: - - uid: 10662 + - uid: 10653 components: - pos: 26.5,36.5 parent: 2 type: Transform - proto: WarpPoint entities: - - uid: 10663 + - uid: 10654 components: - rot: 3.141592653589793 rad pos: -24.5,-20.5 @@ -67431,7 +68269,7 @@ entities: - type: BombingTarget - text: Dorms type: NavMapBeacon - - uid: 10664 + - uid: 10655 components: - rot: 3.141592653589793 rad pos: -3.5,-21.5 @@ -67439,7 +68277,7 @@ entities: type: Transform - location: Bridge type: WarpPoint - - uid: 10665 + - uid: 10656 components: - rot: 3.141592653589793 rad pos: 12.5,18.5 @@ -67448,7 +68286,7 @@ entities: - location: Engineering type: WarpPoint - type: BombingTarget - - uid: 10666 + - uid: 10657 components: - rot: 3.141592653589793 rad pos: 13.5,-18.5 @@ -67457,7 +68295,7 @@ entities: - location: Security type: WarpPoint - type: BombingTarget - - uid: 10667 + - uid: 10658 components: - pos: -25.5,-3.5 parent: 2 @@ -67466,7 +68304,7 @@ entities: type: WarpPoint - proto: WarpPointBeaconBar entities: - - uid: 10668 + - uid: 10659 components: - pos: -3.5,-3.5 parent: 2 @@ -67478,7 +68316,7 @@ entities: - type: BombingTarget - proto: WarpPointBeaconCargo entities: - - uid: 10669 + - uid: 10660 components: - pos: 15.5,-0.5 parent: 2 @@ -67486,7 +68324,7 @@ entities: - type: BombingTarget - proto: WarpPointBeaconCommand entities: - - uid: 10670 + - uid: 10661 components: - pos: -0.5,-18.5 parent: 2 @@ -67494,7 +68332,7 @@ entities: - type: BombingTarget - proto: WarpPointBombing entities: - - uid: 10671 + - uid: 10662 components: - pos: -18.5,11.5 parent: 2 @@ -67504,7 +68342,7 @@ entities: - color: '#52B4E9FF' text: medical type: NavMapBeacon - - uid: 10672 + - uid: 10663 components: - pos: -7.5,21.5 parent: 2 @@ -67514,189 +68352,182 @@ entities: - type: NavMapBeacon - proto: WaterCooler entities: - - uid: 10673 + - uid: 10664 components: - pos: 8.5,-23.5 parent: 2 type: Transform - proto: WaterTankFull entities: - - uid: 10674 + - uid: 10665 components: - pos: -18.5,30.5 parent: 2 type: Transform - - uid: 10675 + - uid: 10666 components: - pos: -9.5,-14.5 parent: 2 type: Transform - - uid: 10676 + - uid: 10667 components: - pos: -0.5,15.5 parent: 2 type: Transform - - uid: 10677 + - uid: 10668 components: - pos: 19.5,-28.5 parent: 2 type: Transform - - uid: 10678 + - uid: 10669 components: - pos: -27.5,21.5 parent: 2 type: Transform - proto: WaterTankHighCapacity entities: - - uid: 10679 + - uid: 10670 components: - pos: -1.5,10.5 parent: 2 type: Transform - proto: WeaponCapacitorRecharger entities: - - uid: 10680 + - uid: 10671 components: - pos: 12.5,-17.5 parent: 2 type: Transform - - uid: 10681 + - uid: 10672 components: - pos: 13.5,-17.5 parent: 2 type: Transform - - uid: 10682 + - uid: 10673 components: - pos: -12.5,-28.5 parent: 2 type: Transform - - uid: 10683 + - uid: 10674 components: - pos: -0.5,25.5 parent: 2 type: Transform - proto: WeaponDisabler entities: - - uid: 10684 + - uid: 10675 components: - pos: 13.886827,-17.286995 parent: 2 type: Transform - - uid: 10685 + - uid: 10676 components: - pos: 13.876411,-17.443354 parent: 2 type: Transform - - uid: 10686 + - uid: 10677 components: - pos: 13.865994,-17.62056 parent: 2 type: Transform - proto: WeaponFlareGun entities: - - uid: 10687 + - uid: 10678 components: - pos: 27.429993,15.471506 parent: 2 type: Transform - proto: WeaponLaserCarbine entities: - - uid: 10688 + - uid: 10679 components: - pos: 23.476604,-15.352692 parent: 2 type: Transform - - uid: 10689 + - uid: 10680 components: - pos: 23.476604,-15.550745 parent: 2 type: Transform - proto: WeaponPistolFlintlock entities: - - uid: 10690 + - uid: 10681 components: - pos: -42.516632,28.328865 parent: 2 type: Transform - proto: WeaponPistolMk58 entities: - - uid: 10691 + - uid: 10682 components: - pos: 20.440172,-15.326029 parent: 2 type: Transform - - uid: 10692 + - uid: 10683 components: - pos: 20.666649,-15.436083 parent: 2 type: Transform - proto: WeaponShotgunKammerer entities: - - uid: 10693 + - uid: 10684 components: - pos: 24.546257,-15.619881 parent: 2 type: Transform - - uid: 10694 + - uid: 10685 components: - pos: 24.525423,-15.380131 parent: 2 type: Transform -- proto: WeaponSubMachineGunVector +- proto: WeaponSubMachineGunDrozd entities: - - uid: 10695 + - uid: 10686 components: - pos: 21.501623,-14.4895935 parent: 2 type: Transform - - uid: 10696 + - uid: 10687 components: - pos: 21.376623,-14.333235 parent: 2 type: Transform -- proto: WeaponSubMachineGunWt550 - entities: - - uid: 10697 - components: - - pos: 23.5,-21.5 - parent: 2 - type: Transform - proto: WeldingFuelTankFull entities: - - uid: 10698 + - uid: 10689 components: - pos: -2.5,-14.5 parent: 2 type: Transform - - uid: 10699 + - uid: 10690 components: - pos: 1.5,15.5 parent: 2 type: Transform - - uid: 10700 + - uid: 10691 components: - pos: -27.5,20.5 parent: 2 type: Transform - - uid: 10701 + - uid: 10692 components: - pos: 28.5,24.5 parent: 2 type: Transform - - uid: 10702 + - uid: 10693 components: - pos: -18.5,27.5 parent: 2 type: Transform - proto: WindoorHydroponicsLocked entities: - - uid: 10703 + - uid: 10694 components: - rot: 1.5707963267948966 rad pos: -10.5,8.5 parent: 2 type: Transform - - uid: 10704 + - uid: 10695 components: - rot: 1.5707963267948966 rad pos: -10.5,9.5 @@ -67704,7 +68535,7 @@ entities: type: Transform - proto: WindoorKitchenHydroponicsLocked entities: - - uid: 10705 + - uid: 10696 components: - rot: 3.141592653589793 rad pos: -2.5,6.5 @@ -67712,100 +68543,82 @@ entities: type: Transform - proto: WindoorSecure entities: - - uid: 10706 + - uid: 10697 components: - pos: 11.5,9.5 parent: 2 type: Transform - - uid: 10707 + - uid: 10698 components: - pos: 13.5,9.5 parent: 2 type: Transform - - uid: 10708 + - uid: 10699 components: - pos: 15.5,-23.5 parent: 2 type: Transform - proto: WindoorSecureArmoryLocked entities: - - uid: 10709 + - uid: 10700 components: - pos: 23.5,-15.5 parent: 2 type: Transform - - uid: 10710 + - uid: 10701 components: - pos: 21.5,-14.5 parent: 2 type: Transform - - uid: 10711 + - uid: 10702 components: - rot: 1.5707963267948966 rad pos: 16.5,-16.5 parent: 2 type: Transform - - uid: 10712 + - uid: 10703 components: - rot: -1.5707963267948966 rad pos: 20.5,-14.5 parent: 2 type: Transform - - uid: 10713 + - uid: 10704 components: - rot: -1.5707963267948966 rad pos: 20.5,-15.5 parent: 2 type: Transform - - uid: 10714 + - uid: 10705 components: - pos: 22.5,-14.5 parent: 2 type: Transform - - uid: 10715 + - uid: 10706 components: - pos: 24.5,-15.5 parent: 2 type: Transform -- proto: WindoorSecureBrigLocked - entities: - - uid: 10716 - components: - - pos: 7.5,-13.5 - parent: 2 - type: Transform - - uid: 10717 - components: - - pos: 8.5,-13.5 - parent: 2 - type: Transform - - uid: 10718 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-15.5 - parent: 2 - type: Transform - proto: WindoorSecureCargoLocked entities: - - uid: 10719 + - uid: 10707 components: - rot: 3.141592653589793 rad pos: 24.5,-0.5 parent: 2 type: Transform - - uid: 10720 + - uid: 10708 components: - rot: 1.5707963267948966 rad pos: 10.5,-1.5 parent: 2 type: Transform - - uid: 10721 + - uid: 10709 components: - rot: 1.5707963267948966 rad pos: 10.5,-0.5 parent: 2 type: Transform - - uid: 10722 + - uid: 10710 components: - rot: 1.5707963267948966 rad pos: 5.5,5.5 @@ -67813,13 +68626,13 @@ entities: type: Transform - proto: WindoorSecureChemistryLocked entities: - - uid: 10723 + - uid: 10711 components: - rot: 3.141592653589793 rad pos: -15.5,10.5 parent: 2 type: Transform - - uid: 10724 + - uid: 10712 components: - rot: 3.141592653589793 rad pos: -16.5,10.5 @@ -67827,7 +68640,7 @@ entities: type: Transform - proto: WindoorSecureCommandLocked entities: - - uid: 10725 + - uid: 10713 components: - rot: 1.5707963267948966 rad pos: 5.5,-4.5 @@ -67835,7 +68648,7 @@ entities: type: Transform - proto: WindoorSecureEngineeringLocked entities: - - uid: 10726 + - uid: 10714 components: - rot: 1.5707963267948966 rad pos: 12.5,13.5 @@ -67843,784 +68656,868 @@ entities: type: Transform - proto: WindoorSecureSalvageLocked entities: - - uid: 10727 + - uid: 10715 components: - pos: 24.5,-0.5 parent: 2 type: Transform - proto: WindoorSecureScienceLocked entities: - - uid: 10728 + - uid: 10716 components: - rot: 3.141592653589793 rad pos: -5.5,25.5 parent: 2 type: Transform +- proto: WindoorSecureSecurityLawyerLocked + entities: + - uid: 10717 + components: + - pos: 7.5,-13.5 + parent: 2 + type: Transform + - uid: 10718 + components: + - pos: 8.5,-13.5 + parent: 2 + type: Transform + - uid: 10719 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-15.5 + parent: 2 + type: Transform - proto: WindoorSecureSecurityLocked entities: - - uid: 10729 + - uid: 10720 components: - pos: -20.5,-8.5 parent: 2 type: Transform - - uid: 10730 + - uid: 10721 components: - pos: -18.5,-8.5 parent: 2 type: Transform - - uid: 10731 + - uid: 10722 components: - rot: 3.141592653589793 rad pos: 4.5,-28.5 parent: 2 type: Transform - - uid: 10732 + - uid: 10723 components: - rot: 3.141592653589793 rad pos: 15.5,-23.5 parent: 2 type: Transform - - uid: 10733 + - uid: 10724 components: - rot: -1.5707963267948966 rad pos: 12.5,-16.5 parent: 2 type: Transform - - uid: 10734 + - uid: 10725 components: - pos: -19.5,-5.5 parent: 2 type: Transform - proto: Window entities: - - uid: 10735 + - uid: 10726 components: - pos: 5.5,-1.5 parent: 2 type: Transform - - uid: 10736 + - uid: 10727 components: - pos: 5.5,1.5 parent: 2 type: Transform - - uid: 10737 + - uid: 10728 components: - pos: 1.5,14.5 parent: 2 type: Transform - - uid: 10738 + - uid: 10729 components: - pos: -10.5,-7.5 parent: 2 type: Transform - - uid: 10739 + - uid: 10730 components: - pos: -8.5,-6.5 parent: 2 type: Transform - - uid: 10740 + - uid: 10731 components: - pos: -17.5,10.5 parent: 2 type: Transform - - uid: 10741 + - uid: 10732 components: - pos: -1.5,6.5 parent: 2 type: Transform - - uid: 10742 + - uid: 10733 components: - pos: -13.5,4.5 parent: 2 type: Transform - - uid: 10743 + - uid: 10734 components: - pos: -13.5,5.5 parent: 2 type: Transform - - uid: 10744 + - uid: 10735 components: - pos: -14.5,7.5 parent: 2 type: Transform - - uid: 10745 + - uid: 10736 components: - pos: -14.5,10.5 parent: 2 type: Transform - - uid: 10746 + - uid: 10737 components: - pos: -13.5,3.5 parent: 2 type: Transform - - uid: 10747 + - uid: 10738 components: - pos: -6.5,11.5 parent: 2 type: Transform - - uid: 10748 + - uid: 10739 components: - pos: -3.5,11.5 parent: 2 type: Transform - - uid: 10749 + - uid: 10740 components: - pos: -7.5,11.5 parent: 2 type: Transform - - uid: 10750 + - uid: 10741 components: - pos: 0.5,8.5 parent: 2 type: Transform - - uid: 10751 + - uid: 10742 components: - pos: 0.5,9.5 parent: 2 type: Transform - - uid: 10752 + - uid: 10743 components: - pos: -2.5,11.5 parent: 2 type: Transform - - uid: 10753 + - uid: 10744 components: - pos: -0.5,6.5 parent: 2 type: Transform - - uid: 10754 + - uid: 10745 components: - pos: -3.5,6.5 parent: 2 type: Transform - - uid: 10755 + - uid: 10746 components: - pos: -10.5,-5.5 parent: 2 type: Transform - - uid: 10756 + - uid: 10747 components: - pos: 2.5,-1.5 parent: 2 type: Transform - - uid: 10757 + - uid: 10748 components: - pos: -10.5,-1.5 parent: 2 type: Transform - - uid: 10758 + - uid: 10749 components: - pos: 2.5,-5.5 parent: 2 type: Transform - - uid: 10759 + - uid: 10750 components: - pos: -3.5,-0.5 parent: 2 type: Transform - - uid: 10760 + - uid: 10751 components: - pos: -2.5,14.5 parent: 2 type: Transform - - uid: 10761 + - uid: 10752 components: - pos: 3.5,14.5 parent: 2 type: Transform - - uid: 10762 + - uid: 10753 components: - pos: 0.5,25.5 parent: 2 type: Transform - - uid: 10763 + - uid: 10754 components: - pos: 31.5,19.5 parent: 2 type: Transform - - uid: 10764 + - uid: 10755 components: - pos: 4.5,7.5 parent: 2 type: Transform - - uid: 10765 + - uid: 10756 components: - pos: 6.5,3.5 parent: 2 type: Transform - - uid: 10766 + - uid: 10757 components: - pos: 7.5,3.5 parent: 2 type: Transform - - uid: 10767 + - uid: 10758 components: - pos: -17.5,12.5 parent: 2 type: Transform - - uid: 10768 + - uid: 10759 components: - pos: -13.5,13.5 parent: 2 type: Transform - - uid: 10769 + - uid: 10760 components: - pos: -13.5,12.5 parent: 2 type: Transform - - uid: 10770 + - uid: 10761 components: - pos: -3.5,33.5 parent: 2 type: Transform - - uid: 10771 + - uid: 10762 components: - pos: -3.5,29.5 parent: 2 type: Transform - - uid: 10772 + - uid: 10763 components: - pos: -3.5,26.5 parent: 2 type: Transform - - uid: 10773 + - uid: 10764 components: - pos: 32.5,19.5 parent: 2 type: Transform - - uid: 10774 + - uid: 10765 components: - pos: -0.5,14.5 parent: 2 type: Transform - - uid: 10775 + - uid: 10766 components: - pos: 30.5,22.5 parent: 2 type: Transform - proto: WindowDirectional entities: - - uid: 10776 + - uid: 10767 components: - rot: 3.141592653589793 rad pos: -27.5,-5.5 parent: 2 type: Transform - - uid: 10777 + - uid: 10768 components: - rot: 3.141592653589793 rad pos: -30.5,-5.5 parent: 2 type: Transform - - uid: 10778 + - uid: 10769 components: - rot: 3.141592653589793 rad pos: -29.5,-5.5 parent: 2 type: Transform - - uid: 10779 + - uid: 10770 components: - rot: 3.141592653589793 rad pos: -28.5,-5.5 parent: 2 type: Transform - - uid: 10780 + - uid: 10771 components: - pos: -30.5,-1.5 parent: 2 type: Transform - - uid: 10781 + - uid: 10772 components: - pos: -29.5,-1.5 parent: 2 type: Transform - - uid: 10782 + - uid: 10773 components: - pos: -28.5,-1.5 parent: 2 type: Transform - - uid: 10783 + - uid: 10774 components: - pos: -27.5,-1.5 parent: 2 type: Transform - proto: WindowReinforcedDirectional entities: - - uid: 10784 + - uid: 10775 components: - rot: 3.141592653589793 rad pos: -27.5,-10.5 parent: 2 type: Transform - - uid: 10785 + - uid: 10776 components: - rot: 3.141592653589793 rad pos: -28.5,-10.5 parent: 2 type: Transform - - uid: 10786 + - uid: 10777 components: - rot: 1.5707963267948966 rad pos: -32.5,-4.5 parent: 2 type: Transform - - uid: 10787 + - uid: 10778 components: - pos: -17.5,-8.5 parent: 2 type: Transform - - uid: 10788 + - uid: 10779 components: - rot: 3.141592653589793 rad pos: 17.5,-32.5 parent: 2 type: Transform - - uid: 10789 + - uid: 10780 components: - rot: -1.5707963267948966 rad pos: 19.5,-31.5 parent: 2 type: Transform - - uid: 10790 + - uid: 10781 components: - rot: 3.141592653589793 rad pos: 20.5,-22.5 parent: 2 type: Transform - - uid: 10791 + - uid: 10782 components: - pos: 19.5,-23.5 parent: 2 type: Transform - - uid: 10792 + - uid: 10783 components: - rot: 1.5707963267948966 rad pos: -19.5,-9.5 parent: 2 type: Transform - - uid: 10793 + - uid: 10784 components: - rot: 3.141592653589793 rad pos: 19.5,-22.5 parent: 2 type: Transform - - uid: 10794 + - uid: 10785 components: - rot: 3.141592653589793 rad pos: -10.5,-23.5 parent: 2 type: Transform - - uid: 10795 + - uid: 10786 components: - rot: 3.141592653589793 rad pos: -11.5,-23.5 parent: 2 type: Transform - - uid: 10796 + - uid: 10787 components: - rot: 3.141592653589793 rad pos: -12.5,-23.5 parent: 2 type: Transform - - uid: 10797 + - uid: 10788 components: - rot: 1.5707963267948966 rad pos: -3.5,-30.5 parent: 2 type: Transform - - uid: 10798 + - uid: 10789 components: - pos: -13.5,-27.5 parent: 2 type: Transform - - uid: 10799 + - uid: 10790 components: - pos: -14.5,-28.5 parent: 2 type: Transform - - uid: 10800 + - uid: 10791 components: - rot: 1.5707963267948966 rad pos: -14.5,-28.5 parent: 2 type: Transform - - uid: 10801 + - uid: 10792 components: - rot: 1.5707963267948966 rad pos: -15.5,-29.5 parent: 2 type: Transform - - uid: 10802 + - uid: 10793 components: - rot: 1.5707963267948966 rad pos: -15.5,-30.5 parent: 2 type: Transform - - uid: 10803 + - uid: 10794 components: - rot: 1.5707963267948966 rad pos: -15.5,-31.5 parent: 2 type: Transform - - uid: 10804 + - uid: 10795 components: - rot: 1.5707963267948966 rad pos: -14.5,-32.5 parent: 2 type: Transform - - uid: 10805 + - uid: 10796 components: - rot: 3.141592653589793 rad pos: -14.5,-32.5 parent: 2 type: Transform - - uid: 10806 + - uid: 10797 components: - rot: 3.141592653589793 rad pos: -13.5,-33.5 parent: 2 type: Transform - - uid: 10807 + - uid: 10798 components: - rot: -1.5707963267948966 rad pos: 12.5,-17.5 parent: 2 type: Transform - - uid: 10808 + - uid: 10799 components: - rot: 3.141592653589793 rad pos: 15.5,-18.5 parent: 2 type: Transform - - uid: 10809 + - uid: 10800 components: - rot: 3.141592653589793 rad pos: 13.5,-18.5 parent: 2 type: Transform - - uid: 10810 + - uid: 10801 components: - rot: 3.141592653589793 rad pos: 12.5,-18.5 parent: 2 type: Transform - - uid: 10811 + - uid: 10802 components: - rot: 3.141592653589793 rad pos: 14.5,-18.5 parent: 2 type: Transform - - uid: 10812 + - uid: 10803 components: - pos: 20.5,-15.5 parent: 2 type: Transform - - uid: 10813 + - uid: 10804 components: - rot: 1.5707963267948966 rad pos: -10.5,-23.5 parent: 2 type: Transform - - uid: 10814 + - uid: 10805 components: - rot: 1.5707963267948966 rad pos: -10.5,-24.5 parent: 2 type: Transform - - uid: 10815 + - uid: 10806 components: - rot: -1.5707963267948966 rad pos: -30.5,-2.5 parent: 2 type: Transform - - uid: 10816 + - uid: 10807 components: - rot: 3.141592653589793 rad pos: 19.5,-31.5 parent: 2 type: Transform - - uid: 10817 + - uid: 10808 components: - rot: -1.5707963267948966 rad pos: -30.5,-4.5 parent: 2 type: Transform - - uid: 10818 + - uid: 10809 components: - rot: 3.141592653589793 rad pos: 14.5,-31.5 parent: 2 type: Transform - - uid: 10819 + - uid: 10810 components: - rot: 1.5707963267948966 rad pos: -32.5,-2.5 parent: 2 type: Transform - - uid: 10820 + - uid: 10811 components: - rot: 1.5707963267948966 rad pos: 20.5,-14.5 parent: 2 type: Transform - - uid: 10821 + - uid: 10812 components: - rot: 1.5707963267948966 rad pos: -32.5,-3.5 parent: 2 type: Transform - - uid: 10822 + - uid: 10813 components: - rot: -1.5707963267948966 rad pos: -30.5,-3.5 parent: 2 type: Transform - - uid: 10823 + - uid: 10814 components: - pos: -19.5,-8.5 parent: 2 type: Transform - - uid: 10824 + - uid: 10815 components: - rot: -1.5707963267948966 rad pos: 23.5,-15.5 parent: 2 type: Transform - - uid: 10825 + - uid: 10816 components: - pos: 10.5,9.5 parent: 2 type: Transform - - uid: 10826 + - uid: 10817 components: - rot: 1.5707963267948966 rad pos: 14.5,-31.5 parent: 2 type: Transform - - uid: 10827 + - uid: 10818 components: - rot: 3.141592653589793 rad pos: 1.5,-31.5 parent: 2 type: Transform - - uid: 10828 + - uid: 10819 components: - rot: 3.141592653589793 rad pos: 0.5,-31.5 parent: 2 type: Transform - - uid: 10829 + - uid: 10820 components: - rot: 3.141592653589793 rad pos: -0.5,-31.5 parent: 2 type: Transform - - uid: 10830 + - uid: 10821 components: - rot: 3.141592653589793 rad pos: -1.5,-31.5 parent: 2 type: Transform - - uid: 10831 + - uid: 10822 components: - rot: 3.141592653589793 rad pos: -2.5,-31.5 parent: 2 type: Transform - - uid: 10832 + - uid: 10823 components: - rot: 3.141592653589793 rad pos: -3.5,-30.5 parent: 2 type: Transform - - uid: 10833 + - uid: 10824 components: - rot: 3.141592653589793 rad pos: 2.5,-30.5 parent: 2 type: Transform - - uid: 10834 + - uid: 10825 components: - rot: -1.5707963267948966 rad pos: 2.5,-30.5 parent: 2 type: Transform - - uid: 10835 + - uid: 10826 components: - rot: -1.5707963267948966 rad pos: 28.5,-20.5 parent: 2 type: Transform - - uid: 10836 + - uid: 10827 components: - rot: 3.141592653589793 rad pos: 18.5,-32.5 parent: 2 type: Transform - - uid: 10837 + - uid: 10828 components: - rot: 3.141592653589793 rad pos: 15.5,-32.5 parent: 2 type: Transform - - uid: 10838 + - uid: 10829 components: - rot: 3.141592653589793 rad pos: 16.5,-32.5 parent: 2 type: Transform - - uid: 10839 + - uid: 10830 components: - rot: 1.5707963267948966 rad pos: 20.5,-15.5 parent: 2 type: Transform - - uid: 10840 + - uid: 10831 components: - rot: 3.141592653589793 rad pos: -29.5,20.5 parent: 2 type: Transform - - uid: 10841 + - uid: 10832 components: - rot: 3.141592653589793 rad pos: -30.5,20.5 parent: 2 type: Transform - - uid: 10842 + - uid: 10833 components: - rot: 1.5707963267948966 rad pos: -35.5,25.5 parent: 2 type: Transform - - uid: 10843 + - uid: 10834 components: - rot: 1.5707963267948966 rad pos: -35.5,26.5 parent: 2 type: Transform - - uid: 10844 + - uid: 10835 components: - rot: 3.141592653589793 rad pos: -24.5,-11.5 parent: 2 type: Transform - - uid: 10845 + - uid: 10836 components: - rot: 3.141592653589793 rad pos: -23.5,-11.5 parent: 2 type: Transform - - uid: 10846 + - uid: 10837 components: - rot: 1.5707963267948966 rad pos: -22.5,-11.5 parent: 2 type: Transform - - uid: 10847 + - uid: 10838 components: - rot: 1.5707963267948966 rad pos: -22.5,-12.5 parent: 2 type: Transform - - uid: 10848 + - uid: 10839 components: - rot: 1.5707963267948966 rad pos: -22.5,-13.5 parent: 2 type: Transform - - uid: 10849 + - uid: 10840 components: - pos: -23.5,-13.5 parent: 2 type: Transform - - uid: 10850 + - uid: 10841 components: - pos: -24.5,-13.5 parent: 2 type: Transform - - uid: 10851 + - uid: 10842 components: - pos: 12.5,9.5 parent: 2 type: Transform - - uid: 10852 + - uid: 10843 components: - rot: 3.141592653589793 rad pos: -30.5,-10.5 parent: 2 type: Transform - - uid: 10853 + - uid: 10844 components: - rot: 1.5707963267948966 rad pos: -37.5,34.5 parent: 2 type: Transform - - uid: 10854 + - uid: 10845 components: - rot: 1.5707963267948966 rad pos: -37.5,33.5 parent: 2 type: Transform - - uid: 10855 + - uid: 10846 components: - rot: 1.5707963267948966 rad pos: -37.5,31.5 parent: 2 type: Transform - - uid: 10856 + - uid: 10847 components: - rot: 1.5707963267948966 rad pos: -37.5,30.5 parent: 2 type: Transform - - uid: 10857 + - uid: 10848 components: - pos: -34.5,37.5 parent: 2 type: Transform - - uid: 10858 + - uid: 10849 components: - pos: -33.5,37.5 parent: 2 type: Transform - - uid: 10859 + - uid: 10850 components: - pos: -30.5,37.5 parent: 2 type: Transform - - uid: 10860 + - uid: 10851 components: - pos: -31.5,37.5 parent: 2 type: Transform - - uid: 10861 +- proto: WoodDoor + entities: + - uid: 10855 components: - - rot: 3.141592653589793 rad - pos: -34.5,-2.5 + - pos: 26.5,-27.5 parent: 2 type: Transform - - uid: 10862 +- proto: WoodenSupport + entities: + - uid: 841 components: - - rot: 3.141592653589793 rad - pos: -34.5,-10.5 + - pos: 34.5,-19.5 parent: 2 type: Transform - - uid: 10863 + - uid: 881 components: - - pos: -34.5,-4.5 + - pos: 37.5,-17.5 parent: 2 type: Transform -- proto: WoodDoor + - uid: 10860 + components: + - pos: 36.5,-15.5 + parent: 2 + type: Transform + - uid: 10867 + components: + - pos: 31.5,-30.5 + parent: 2 + type: Transform +- proto: WoodenSupportBeam entities: - - uid: 10864 + - uid: 783 components: - - pos: 26.5,-27.5 + - pos: 34.5,-33.5 + parent: 2 + type: Transform + - uid: 840 + components: + - pos: 34.5,-22.5 + parent: 2 + type: Transform + - uid: 4640 + components: + - pos: 31.5,-10.5 + parent: 2 + type: Transform +- proto: WoodenSupportWall + entities: + - uid: 869 + components: + - pos: 34.5,-15.5 + parent: 2 + type: Transform + - uid: 876 + components: + - pos: 33.5,-15.5 + parent: 2 + type: Transform + - uid: 5185 + components: + - pos: 32.5,-10.5 + parent: 2 + type: Transform + - uid: 10857 + components: + - pos: 33.5,-21.5 + parent: 2 + type: Transform +- proto: WoodenSupportWallBroken + entities: + - uid: 782 + components: + - pos: 33.5,-32.5 + parent: 2 + type: Transform + - uid: 807 + components: + - pos: 32.5,-26.5 + parent: 2 + type: Transform + - uid: 856 + components: + - pos: 30.5,-12.5 + parent: 2 + type: Transform + - uid: 4228 + components: + - pos: 37.5,-12.5 parent: 2 type: Transform - proto: Wrench entities: - - uid: 10865 + - uid: 10856 components: - pos: 3.4638815,29.61881 parent: 2 diff --git a/Resources/Maps/shoukou.yml b/Resources/Maps/shoukou.yml new file mode 100644 index 0000000000..9b256a0006 --- /dev/null +++ b/Resources/Maps/shoukou.yml @@ -0,0 +1,81688 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 1: FloorArcadeBlue + 2: FloorArcadeBlue2 + 14: FloorBar + 18: FloorBlueCircuit + 20: FloorBrokenWood + 21: FloorCarpetClown + 22: FloorCarpetOffice + 30: FloorDark + 31: FloorDarkDiagonal + 35: FloorDarkMono + 36: FloorDarkOffset + 39: FloorDarkPlastic + 42: FloorEighties + 45: FloorFreezer + 46: FloorGlass + 48: FloorGrass + 52: FloorGrayConcrete + 55: FloorGreenCircuit + 56: FloorGym + 57: FloorHull + 58: FloorHullReinforced + 59: FloorHydro + 61: FloorKitchen + 62: FloorLaundry + 63: FloorLino + 65: FloorMetalDiamond + 66: FloorMime + 74: FloorPlanetDirt + 75: FloorPlanetGrass + 76: FloorPlastic + 77: FloorRGlass + 78: FloorReinforced + 80: FloorRockVault + 82: FloorShuttleBlue + 90: FloorSteel + 95: FloorSteelDiagonal + 97: FloorSteelDirty + 98: FloorSteelHerringbone + 101: FloorSteelMono + 102: FloorSteelOffset + 103: FloorSteelPavement + 104: FloorSteelPavementVertical + 105: FloorTechMaint + 106: FloorTechMaint2 + 107: FloorTechMaint3 + 109: FloorWhite + 110: FloorWhiteDiagonal + 118: FloorWhitePlastic + 119: FloorWood + 120: FloorWoodTile + 121: Lattice + 122: Plating + 124: PlatingBurnt + 125: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 34 + components: + - type: MetaData + - pos: 0.1483028,2.0762267 + parent: 35 + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: egAAAAAAWgAAAAACaAAAAAABXwAAAAABWgAAAAABdwAAAAAAdwAAAAADdwAAAAACdwAAAAACdwAAAAAAWgAAAAABXwAAAAAAaAAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAWgAAAAAAaAAAAAAALgAAAAABWgAAAAAAdwAAAAAAdwAAAAADdwAAAAABdwAAAAADdwAAAAAAWgAAAAAALgAAAAAAaAAAAAACaQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAaAAAAAAAXwAAAAADWgAAAAACWgAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAAAWgAAAAACXwAAAAABaAAAAAABegAAAAAAegAAAAAAegAAAAAAZQAAAAABWgAAAAACaAAAAAABLgAAAAAAXwAAAAAALgAAAAABXwAAAAAALgAAAAAAXwAAAAABLgAAAAAAXwAAAAAALgAAAAAAaAAAAAABegAAAAAADgAAAAACDgAAAAACWgAAAAAAWgAAAAACYgAAAAADZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAACZwAAAAACZwAAAAAAYgAAAAACXwAAAAACaAAAAAABegAAAAAADgAAAAADDgAAAAACWgAAAAACWgAAAAACegAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAegAAAAAAaAAAAAABLgAAAAABaAAAAAADaQAAAAAAdwAAAAAAdwAAAAACaQAAAAAAegAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAaAAAAAAAXwAAAAADaAAAAAAATgAAAAAAeAAAAAABLgAAAAAAOwAAAAAAOwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAaAAAAAACLgAAAAACaAAAAAABaQAAAAAAdwAAAAAAdwAAAAADOwAAAAAAOwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAaQAAAAAAaAAAAAABXwAAAAAAaAAAAAABegAAAAAADgAAAAAADgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAATgAAAAAAaAAAAAADLgAAAAACaAAAAAAATgAAAAAADgAAAAACDgAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAATgAAAAAAaAAAAAADXwAAAAADaAAAAAADTgAAAAAADgAAAAADDgAAAAABTgAAAAAALQAAAAAALQAAAAAALQAAAAAATgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAATgAAAAAAWgAAAAADWgAAAAADWgAAAAACTgAAAAAADgAAAAAADgAAAAAATgAAAAAALQAAAAAALQAAAAAALQAAAAAATgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAATgAAAAAAaQAAAAAATgAAAAAAegAAAAAAdwAAAAADdwAAAAACegAAAAAAegAAAAAALQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAADZQAAAAACWgAAAAABegAAAAAAegAAAAAATgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAABWgAAAAADWgAAAAADWgAAAAAAZQAAAAACWgAAAAADWgAAAAABMAAAAAAAMAAAAAAAZQAAAAADZQAAAAABLgAAAAADZQAAAAADZQAAAAADLgAAAAACZQAAAAABZQAAAAABLgAAAAAAZQAAAAACZQAAAAADLgAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAAC + version: 6 + -1,0: + ind: -1,0 + tiles: WgAAAAABWgAAAAACWgAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAAAWgAAAAACWgAAAAABWgAAAAACWgAAAAACWgAAAAACWgAAAAACWgAAAAADLgAAAAAAWgAAAAABTgAAAAAAaQAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAAAWgAAAAACTAAAAAABTAAAAAABTAAAAAAAegAAAAAAHwAAAAACHwAAAAAAHwAAAAADZgAAAAAAZgAAAAAAIwAAAAAAIwAAAAADegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAATAAAAAAATAAAAAADTAAAAAAAegAAAAAAHwAAAAABHwAAAAADHwAAAAAAZgAAAAAAZgAAAAAAIwAAAAABIwAAAAADegAAAAAAdwAAAAACdwAAAAACdwAAAAAAdwAAAAACTAAAAAABTAAAAAABTAAAAAADegAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAIwAAAAADIwAAAAACegAAAAAAdwAAAAADdwAAAAADeAAAAAAAeAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAAAIwAAAAACIwAAAAADZgAAAAAAZgAAAAAAIwAAAAADIwAAAAAAegAAAAAAdwAAAAACdwAAAAADeAAAAAABeAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAdwAAAAABdwAAAAADeAAAAAACeAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAdwAAAAADFAAAAAAEFAAAAAAEFAAAAAABdwAAAAADegAAAAAAdwAAAAABdwAAAAACdwAAAAAAdwAAAAADegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAFAAAAAADdwAAAAAAdwAAAAADdwAAAAAAFAAAAAAFegAAAAAAdwAAAAACdwAAAAADdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAFAAAAAABdwAAAAAAegAAAAAAFAAAAAADdwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAATQAAAAAAegAAAAAATQAAAAABAAAAAAAAegAAAAAAFAAAAAABdwAAAAACdwAAAAADFAAAAAAAdwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAATQAAAAADegAAAAAATQAAAAACAAAAAAAAegAAAAAAdwAAAAADFAAAAAAEdwAAAAADdwAAAAACFAAAAAAFaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAeQAAAAAATQAAAAABegAAAAAATQAAAAACAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAeQAAAAAATQAAAAAAegAAAAAATQAAAAABAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAADTQAAAAACTAAAAAADTQAAAAAAWgAAAAABAAAAAAAATQAAAAABegAAAAAATQAAAAACAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAATQAAAAACTQAAAAADTQAAAAAATQAAAAAATQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAATgAAAAAAaQAAAAAAegAAAAAATgAAAAAATgAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: WgAAAAAALgAAAAACWgAAAAADWgAAAAAALgAAAAACWgAAAAAAaQAAAAAAXwAAAAABXwAAAAABXwAAAAADXwAAAAABXwAAAAABXwAAAAADXwAAAAAAaAAAAAAATgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAAATgAAAAAAZwAAAAAAZwAAAAACZwAAAAABZwAAAAADZwAAAAACYgAAAAAAXwAAAAABaAAAAAACTgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAACaAAAAAADXwAAAAADaAAAAAABegAAAAAAdwAAAAACdwAAAAADdwAAAAABdwAAAAACdwAAAAADdwAAAAADegAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAAAWgAAAAABaAAAAAADXwAAAAAAaAAAAAADTgAAAAAAdwAAAAACdwAAAAAAdwAAAAADdwAAAAADdwAAAAACdwAAAAACegAAAAAATgAAAAAATgAAAAAAaQAAAAAATgAAAAAAegAAAAAAaAAAAAABXwAAAAADaAAAAAADaQAAAAAAdwAAAAACdwAAAAABdwAAAAAAdwAAAAABdwAAAAABdwAAAAADegAAAAAAdwAAAAABdwAAAAAAdwAAAAAAdwAAAAADegAAAAAAaAAAAAACXwAAAAACaAAAAAADTgAAAAAAdwAAAAADdwAAAAAAdwAAAAABdwAAAAAAdwAAAAADdwAAAAADegAAAAAAdwAAAAADdwAAAAABdwAAAAABdwAAAAADTgAAAAAAaAAAAAADXwAAAAAAaAAAAAABegAAAAAAdwAAAAADdwAAAAABdwAAAAADdwAAAAABdwAAAAAAdwAAAAAAegAAAAAAdwAAAAADdwAAAAADdwAAAAADdwAAAAACTgAAAAAAaAAAAAACXwAAAAADaAAAAAABegAAAAAAdwAAAAAAdwAAAAACdwAAAAACdwAAAAABdwAAAAACdwAAAAADegAAAAAAdwAAAAACdwAAAAAAdwAAAAADdwAAAAADTgAAAAAAaAAAAAADXwAAAAAAaAAAAAADaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaAAAAAAAXwAAAAAAaAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaAAAAAAAXwAAAAACaAAAAAADegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaAAAAAABXwAAAAADaAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAaQAAAAAATgAAAAAAegAAAAAATQAAAAAAWgAAAAADTQAAAAACegAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAADTAAAAAACWgAAAAACWgAAAAABWgAAAAACWgAAAAADWgAAAAABWgAAAAABegAAAAAATQAAAAABTQAAAAAATQAAAAAAaQAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAACWgAAAAABWgAAAAACWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADTgAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADHwAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAWgAAAAADTgAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: egAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAMAAAAAAAaAAAAAADXwAAAAAAaAAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMAAAAAAAaAAAAAADXwAAAAADaAAAAAADWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAMAAAAAAAaAAAAAAAXwAAAAADaAAAAAABWgAAAAADDgAAAAACDgAAAAABDgAAAAACDgAAAAACDgAAAAAADgAAAAABegAAAAAAagAAAAAAegAAAAAAegAAAAAAZQAAAAADWgAAAAABaAAAAAACXwAAAAACaAAAAAAAWgAAAAABDgAAAAACDgAAAAACDgAAAAACDgAAAAAADgAAAAABDgAAAAADegAAAAAAagAAAAAAegAAAAAAaQAAAAAAWgAAAAACWgAAAAABaAAAAAACXwAAAAACaAAAAAADegAAAAAAdwAAAAAAdwAAAAACdwAAAAAAdwAAAAACdwAAAAADdwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAADWgAAAAABaAAAAAADXwAAAAABaAAAAAAAegAAAAAAeAAAAAAALgAAAAABLgAAAAAAeAAAAAADLgAAAAADeAAAAAAAegAAAAAAKgAAAAAAKgAAAAAAegAAAAAAegAAAAAAMAAAAAAAaAAAAAADXwAAAAADaAAAAAABegAAAAAAdwAAAAAAdwAAAAAAdwAAAAABdwAAAAACdwAAAAAAdwAAAAACaQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATgAAAAAAMAAAAAAAaAAAAAADXwAAAAACaAAAAAADegAAAAAADgAAAAADDgAAAAACDgAAAAADDgAAAAABDgAAAAAADgAAAAADegAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATgAAAAAAMAAAAAAAaAAAAAAAXwAAAAAAaAAAAAADegAAAAAADgAAAAADDgAAAAAADgAAAAAADgAAAAADDgAAAAADDgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMAAAAAAAaAAAAAACXwAAAAAAaAAAAAABTgAAAAAADgAAAAABDgAAAAAADgAAAAABDgAAAAACDgAAAAAADgAAAAADDgAAAAABegAAAAAAdwAAAAAAdwAAAAAATgAAAAAAMAAAAAAAaAAAAAABXwAAAAADaAAAAAACTgAAAAAADgAAAAADDgAAAAABDgAAAAAADgAAAAABDgAAAAAADgAAAAACDgAAAAADaQAAAAAAdwAAAAABdwAAAAAATgAAAAAAMAAAAAAAaAAAAAAAXwAAAAADaAAAAAADTgAAAAAAdwAAAAACdwAAAAADdwAAAAACdwAAAAACdwAAAAABdwAAAAAAdwAAAAABegAAAAAAdwAAAAADdwAAAAACegAAAAAAMAAAAAAAaAAAAAAAXwAAAAAAaAAAAAABegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAaQAAAAAATgAAAAAAegAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAegAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAaAAAAAAAXwAAAAABaAAAAAAATgAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAACWgAAAAADTgAAAAAAZwAAAAABZwAAAAAAZwAAAAABZwAAAAACZwAAAAABYgAAAAABXwAAAAAAaAAAAAABaQAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: TgAAAAAAaQAAAAAATgAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAACWgAAAAACWgAAAAABWgAAAAABWgAAAAACFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAegAAAAAATgAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAAAHgAAAAACegAAAAAATAAAAAACTAAAAAABTAAAAAADFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAATAAAAAAATAAAAAABTAAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAHgAAAAACHgAAAAACegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAAegAAAAAATAAAAAAATAAAAAABTAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAADegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAAaQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAATQAAAAADegAAAAAATQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAegAAAAAATQAAAAADAAAAAAAATQAAAAADegAAAAAATQAAAAABTQAAAAABegAAAAAATQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAATQAAAAABegAAAAAATQAAAAABAAAAAAAATQAAAAACegAAAAAATQAAAAADTQAAAAACegAAAAAATQAAAAABAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAATQAAAAACegAAAAAATQAAAAACeQAAAAAATQAAAAAAegAAAAAATQAAAAABTQAAAAACegAAAAAATQAAAAACAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAATQAAAAABegAAAAAATQAAAAACeQAAAAAATQAAAAACegAAAAAATQAAAAAATQAAAAAAegAAAAAATQAAAAADAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAATQAAAAACegAAAAAATQAAAAABAAAAAAAATQAAAAACegAAAAAATQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: dwAAAAABegAAAAAAdwAAAAADLgAAAAADdwAAAAAAdwAAAAADLgAAAAABdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAaQAAAAAAdwAAAAABdwAAAAABdwAAAAABdwAAAAADdwAAAAADdwAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAHgAAAAADegAAAAAAdwAAAAADdwAAAAADdwAAAAADdwAAAAAAdwAAAAACdwAAAAADegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAawAAAAABawAAAAABegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAABZgAAAAAAXwAAAAADXwAAAAABZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAZQAAAAADZQAAAAABZQAAAAADWgAAAAADZgAAAAAAXwAAAAAAXwAAAAABZgAAAAAAegAAAAAAaQAAAAAATgAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAZgAAAAAAXwAAAAADXwAAAAADZgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAAaQAAAAAAaQAAAAAATgAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAaQAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAATgAAAAAAOwAAAAAAOwAAAAAATgAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAABdwAAAAACdwAAAAABdwAAAAADdwAAAAADWgAAAAABWgAAAAADWgAAAAADWgAAAAADWgAAAAADWgAAAAACWgAAAAACLgAAAAACZQAAAAABZQAAAAABLgAAAAAAZQAAAAACZQAAAAACLgAAAAADZQAAAAADZQAAAAADLgAAAAAD + version: 6 + 0,-2: + ind: 0,-2 + tiles: dgAAAAABegAAAAAAdgAAAAAAdgAAAAADbgAAAAACdgAAAAACdgAAAAAAdgAAAAACegAAAAAAdgAAAAADdgAAAAAAegAAAAAAdwAAAAADdwAAAAABdwAAAAABdwAAAAADegAAAAAAegAAAAAAegAAAAAATgAAAAAAaQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAdwAAAAACdgAAAAABdgAAAAAAegAAAAAAdgAAAAACbgAAAAACdgAAAAACegAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAACegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAdwAAAAABdgAAAAAALgAAAAAAaQAAAAAAbgAAAAAAbgAAAAACbgAAAAABaQAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAACegAAAAAAdwAAAAADdwAAAAABdwAAAAADdwAAAAACdgAAAAADLgAAAAADTgAAAAAAdgAAAAADbgAAAAADdgAAAAACegAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAABegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAdwAAAAABdgAAAAABdgAAAAACTgAAAAAAdgAAAAACbgAAAAABdgAAAAACegAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAaQAAAAAAZwAAAAADZwAAAAAAZwAAAAADZwAAAAABZwAAAAAAZwAAAAADZwAAAAACZwAAAAABZwAAAAABWgAAAAABTgAAAAAAZwAAAAAAZwAAAAABZwAAAAABWgAAAAADXwAAAAACXwAAAAADXwAAAAACXwAAAAABXwAAAAAAXwAAAAAAXwAAAAADXwAAAAAAXwAAAAAAXwAAAAACWgAAAAACaQAAAAAAXwAAAAACXwAAAAAAXwAAAAAAXwAAAAADXwAAAAADZwAAAAAAZwAAAAAAZwAAAAABZwAAAAABZwAAAAAAZwAAAAABZwAAAAABZwAAAAACZwAAAAABWgAAAAABTgAAAAAAZwAAAAABYgAAAAAAXwAAAAAAYgAAAAAAZwAAAAACaQAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABaAAAAAABXwAAAAAAaAAAAAABWgAAAAABTQAAAAADQgAAAAAAQgAAAAAAegAAAAAAawAAAAADWgAAAAABWgAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAaQAAAAAATgAAAAAAegAAAAAATQAAAAAAQgAAAAAAQgAAAAAAegAAAAAAawAAAAAAWgAAAAABWgAAAAADegAAAAAAagAAAAAAegAAAAAAawAAAAADegAAAAAAaAAAAAAAXwAAAAAAaAAAAAADegAAAAAATQAAAAACQgAAAAAAQgAAAAAAegAAAAAAawAAAAACWgAAAAAAWgAAAAADegAAAAAAagAAAAAAegAAAAAAawAAAAACegAAAAAAaAAAAAACXwAAAAABaAAAAAAAegAAAAAATQAAAAABQgAAAAAAQgAAAAAAegAAAAAAawAAAAABWgAAAAAAWgAAAAACegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaAAAAAACXwAAAAACaAAAAAABegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAMAAAAAAAaAAAAAAAXwAAAAACaAAAAAADegAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: egAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAAAHgAAAAABHgAAAAADegAAAAAAaAAAAAACXwAAAAAAaAAAAAABegAAAAAAdgAAAAADLgAAAAAAegAAAAAAegAAAAAAaQAAAAAAQQAAAAAAQQAAAAAAHgAAAAADHgAAAAADQQAAAAAAQQAAAAAAegAAAAAATgAAAAAAaQAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAHgAAAAACHgAAAAAAQQAAAAAAQQAAAAAAegAAAAAAaAAAAAAAXwAAAAAAaAAAAAAAegAAAAAAdgAAAAAAdgAAAAADegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaAAAAAACLgAAAAAAaAAAAAAAegAAAAAAdgAAAAABLgAAAAACTgAAAAAAdwAAAAACdwAAAAACdwAAAAAAJAAAAAAAJAAAAAAAdwAAAAABdwAAAAACdwAAAAABTgAAAAAAaAAAAAABXwAAAAADaAAAAAADegAAAAAAdgAAAAABLgAAAAAAdwAAAAADdwAAAAACeAAAAAADdwAAAAABJAAAAAAAJAAAAAAAdwAAAAADeAAAAAACdwAAAAABTgAAAAAAaAAAAAAALgAAAAACaAAAAAAAegAAAAAAdgAAAAAAdgAAAAACTgAAAAAAdwAAAAACeAAAAAACdwAAAAABJAAAAAAAJAAAAAAAdwAAAAAAeAAAAAACdwAAAAABegAAAAAAaAAAAAADXwAAAAABaAAAAAABegAAAAAAegAAAAAAegAAAAAATgAAAAAAdwAAAAABdwAAAAABdwAAAAACJAAAAAAAJAAAAAAAdwAAAAAAdwAAAAACdwAAAAACTgAAAAAAaAAAAAADLgAAAAADaAAAAAACTgAAAAAAWgAAAAADZwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaAAAAAADXwAAAAADaAAAAAACaQAAAAAAWgAAAAABXwAAAAAAaQAAAAAAWgAAAAADWgAAAAACWgAAAAABWgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAAAWgAAAAADYgAAAAAALgAAAAABaAAAAAACTgAAAAAAWgAAAAABZwAAAAACTgAAAAAAWgAAAAACYgAAAAADZwAAAAADZwAAAAABZwAAAAABZwAAAAABZwAAAAADZwAAAAADZwAAAAABYgAAAAADXwAAAAACaAAAAAACegAAAAAATgAAAAAAegAAAAAAegAAAAAAWgAAAAABaAAAAAACLgAAAAAAXwAAAAABLgAAAAABXwAAAAAALgAAAAACXwAAAAABLgAAAAABXwAAAAADLgAAAAACaAAAAAABegAAAAAAFQAAAAAAFQAAAAAAegAAAAAAWgAAAAADaAAAAAADXwAAAAACWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAABWgAAAAADWgAAAAADXwAAAAADaAAAAAADTgAAAAAAFQAAAAAAFQAAAAAAegAAAAAAWgAAAAABaAAAAAABLgAAAAABWgAAAAAAdwAAAAABdwAAAAADdwAAAAAAdwAAAAADdwAAAAACWgAAAAADLgAAAAABaAAAAAADTgAAAAAAFQAAAAAAFQAAAAAAaQAAAAAAWgAAAAADaAAAAAACXwAAAAABWgAAAAAAdwAAAAACdwAAAAABdwAAAAABdwAAAAABdwAAAAABWgAAAAAAXwAAAAACaAAAAAABegAAAAAAFQAAAAAAFQAAAAAAegAAAAAAWgAAAAADaAAAAAAALgAAAAABWgAAAAABdwAAAAACdwAAAAACdwAAAAAAdwAAAAABdwAAAAABWgAAAAABLgAAAAAAaAAAAAAAegAAAAAAegAAAAAAegAAAAAA + version: 6 + -2,-2: + ind: -2,-2 + tiles: QQAAAAAAegAAAAAAHgAAAAABHgAAAAABTgAAAAAAdwAAAAAAdwAAAAAAdwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAABTgAAAAAAdwAAAAAAdwAAAAADdwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACegAAAAAAHgAAAAACHgAAAAAAegAAAAAAdwAAAAADdwAAAAACdwAAAAABegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAQQAAAAAAHgAAAAAAQQAAAAAAQQAAAAAAegAAAAAAHgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAHgAAAAAAHgAAAAADTgAAAAAAXwAAAAACWgAAAAAAWgAAAAABXwAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAAAaQAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAAAaQAAAAAAXwAAAAACWgAAAAAAWgAAAAADXwAAAAABQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAQQAAAAAAHgAAAAACQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAATgAAAAAAXwAAAAACWgAAAAABWgAAAAABXwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAXwAAAAACWgAAAAAAWgAAAAADXwAAAAACdwAAAAAAdwAAAAABdwAAAAABdwAAAAADdwAAAAADZwAAAAADZwAAAAABZwAAAAABZwAAAAABZwAAAAADZwAAAAAAZwAAAAAAZwAAAAADZwAAAAADZwAAAAADZwAAAAACXwAAAAAAXwAAAAABXwAAAAABXwAAAAACXwAAAAAAXwAAAAAAXwAAAAABXwAAAAABXwAAAAADXwAAAAADXwAAAAADXwAAAAABXwAAAAADXwAAAAACXwAAAAABZwAAAAAAZwAAAAADZwAAAAACZwAAAAAAZwAAAAABZwAAAAADZwAAAAADZwAAAAADZwAAAAABZwAAAAAAZwAAAAACZwAAAAABZwAAAAAAZwAAAAADZwAAAAACZwAAAAADZwAAAAACegAAAAAAegAAAAAATgAAAAAATgAAAAAAaQAAAAAAaQAAAAAATgAAAAAATgAAAAAAegAAAAAAZwAAAAAAZwAAAAADegAAAAAATgAAAAAAaQAAAAAATgAAAAAATgAAAAAAZQAAAAACegAAAAAAMAAAAAAAMAAAAAAAdwAAAAAAdwAAAAADMAAAAAAAMAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAdwAAAAACdwAAAAABdwAAAAABdwAAAAACZQAAAAADaQAAAAAAdwAAAAABLgAAAAABdwAAAAAAdwAAAAADLgAAAAABdwAAAAACegAAAAAAaQAAAAAAegAAAAAAegAAAAAAdwAAAAABdwAAAAABdwAAAAACdwAAAAACZQAAAAACegAAAAAAdwAAAAACLgAAAAADdwAAAAABdwAAAAAALgAAAAABdwAAAAABegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAdwAAAAAAdwAAAAABdwAAAAABdwAAAAADegAAAAAAegAAAAAAdwAAAAAALgAAAAADdwAAAAACdwAAAAAALgAAAAADdwAAAAACegAAAAAAaQAAAAAAegAAAAAAegAAAAAAdwAAAAADdwAAAAADdwAAAAABdwAAAAAA + version: 6 + -3,0: + ind: -3,0 + tiles: egAAAAAAegAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAdwAAAAAAdwAAAAACdwAAAAADeAAAAAADegAAAAAAegAAAAAAaQAAAAAAegAAAAAAIwAAAAACHgAAAAABHgAAAAADHwAAAAABHwAAAAABegAAAAAAdwAAAAACegAAAAAAdwAAAAAAdwAAAAAAdwAAAAABeAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAIwAAAAABHgAAAAACHgAAAAACHwAAAAABHwAAAAADegAAAAAAdwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAADQQAAAAAAegAAAAAAdwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAHgAAAAACHgAAAAADQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAATgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAQQAAAAAAIwAAAAABQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAYQAAAAAAagAAAAAAagAAAAAAawAAAAAAawAAAAADegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABagAAAAAAagAAAAAAawAAAAACawAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAYQAAAAAAagAAAAAAagAAAAAAawAAAAABawAAAAABegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACagAAAAAAagAAAAAAawAAAAADawAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-1: + ind: -3,-1 + tiles: aQAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAADJwAAAAABegAAAAAAdwAAAAACdwAAAAADaAAAAAADaAAAAAAAegAAAAAAZQAAAAAAZQAAAAAAegAAAAAAdwAAAAADegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAaQAAAAAAaQAAAAAAegAAAAAAZQAAAAABZQAAAAADegAAAAAAdwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaAAAAAAAaAAAAAADaAAAAAADegAAAAAAZQAAAAACZQAAAAADegAAAAAAdwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaAAAAAACXwAAAAABaAAAAAACegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaAAAAAADXwAAAAACaAAAAAADegAAAAAAWgAAAAAAWgAAAAACWgAAAAADTgAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAAAWgAAAAACWgAAAAADWgAAAAADYgAAAAAAaAAAAAAAXwAAAAADaAAAAAACegAAAAAAWgAAAAADWgAAAAABWgAAAAAAaQAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAACWgAAAAABWgAAAAABWgAAAAAAYgAAAAABaAAAAAAAXwAAAAACaAAAAAABegAAAAAAWgAAAAABWgAAAAADWgAAAAABTgAAAAAAegAAAAAAdwAAAAADegAAAAAAegAAAAAATgAAAAAAdwAAAAACegAAAAAAegAAAAAAaAAAAAADXwAAAAADaAAAAAABegAAAAAAWgAAAAACWgAAAAABWgAAAAADegAAAAAAdwAAAAADdwAAAAABdwAAAAADegAAAAAAdwAAAAACdwAAAAADdwAAAAABTgAAAAAAaAAAAAACXwAAAAACaAAAAAABegAAAAAAWgAAAAAAWgAAAAACWgAAAAACegAAAAAAdwAAAAADdwAAAAAAdwAAAAABegAAAAAAdwAAAAAAdwAAAAACdwAAAAABTgAAAAAAaAAAAAACXwAAAAACZQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAADdwAAAAABegAAAAAAaAAAAAABXwAAAAABZQAAAAABegAAAAAAHgAAAAACHgAAAAADHgAAAAADaQAAAAAATAAAAAAATAAAAAAATAAAAAADegAAAAAAdwAAAAACdwAAAAACdwAAAAABTgAAAAAAaAAAAAACXwAAAAADZQAAAAAAegAAAAAAHgAAAAACHgAAAAABHgAAAAAATgAAAAAATAAAAAABTAAAAAADTAAAAAADegAAAAAAdwAAAAAAdwAAAAADdwAAAAADTgAAAAAAaAAAAAACXwAAAAADaAAAAAADegAAAAAAHgAAAAABHgAAAAABHgAAAAACTgAAAAAAaQAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAdwAAAAABTgAAAAAAegAAAAAAaAAAAAAAXwAAAAABaAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAABWgAAAAADWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAADWgAAAAAAWgAAAAACaQAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAADaQAAAAAAWgAAAAAD + version: 6 + -3,-2: + ind: -3,-2 + tiles: TAAAAAAATAAAAAADegAAAAAATAAAAAAATAAAAAABTAAAAAADegAAAAAAawAAAAADegAAAAAAegAAAAAAawAAAAAATgAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAATAAAAAABTAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATAAAAAACTAAAAAABTAAAAAAATAAAAAACTAAAAAADTAAAAAABegAAAAAAawAAAAADegAAAAAAawAAAAAAawAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAADTgAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAABHgAAAAABHgAAAAABHgAAAAABHgAAAAAAHgAAAAADegAAAAAAQQAAAAAATQAAAAACTQAAAAABTQAAAAADHgAAAAAAaQAAAAAAHgAAAAACTAAAAAACWgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAADaQAAAAAAHgAAAAABTQAAAAACTQAAAAABTQAAAAABHgAAAAABaQAAAAAAJwAAAAACWgAAAAACWgAAAAABWgAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADegAAAAAAQQAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAACegAAAAAAHgAAAAABWgAAAAABegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYgAAAAACZwAAAAABZwAAAAACZwAAAAACZwAAAAADZwAAAAACZwAAAAACdwAAAAABHgAAAAAAHgAAAAADJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAABHgAAAAAAHgAAAAABaAAAAAABaAAAAAACXwAAAAABXwAAAAABXwAAAAAAXwAAAAABXwAAAAACXwAAAAADTQAAAAADHgAAAAACJwAAAAABJwAAAAABJwAAAAAAJwAAAAAAJwAAAAADTgAAAAAAaAAAAAADaAAAAAADYgAAAAADZwAAAAACZwAAAAAAZwAAAAAAZwAAAAABZwAAAAAAHgAAAAACHgAAAAACJwAAAAABJwAAAAAAJwAAAAABJwAAAAADegAAAAAAegAAAAAAaAAAAAABaAAAAAACaAAAAAABegAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAJwAAAAADJwAAAAADJwAAAAADJwAAAAADJwAAAAABJwAAAAACTgAAAAAAdwAAAAACdwAAAAACaAAAAAAAaAAAAAABegAAAAAAZQAAAAAAZQAAAAADZQAAAAADZQAAAAADJwAAAAABJwAAAAADHgAAAAADJwAAAAABJwAAAAACJwAAAAAATgAAAAAAdwAAAAABdwAAAAACaAAAAAACaAAAAAAATgAAAAAAZQAAAAAAZQAAAAACZQAAAAADZQAAAAAATQAAAAACHgAAAAADHgAAAAAAJwAAAAABJwAAAAAAJwAAAAAAegAAAAAAdwAAAAADdwAAAAABaAAAAAAAaAAAAAAATgAAAAAAZQAAAAABZQAAAAACZQAAAAABZQAAAAADHgAAAAAAHgAAAAACHgAAAAACJwAAAAABJwAAAAAAJwAAAAAAegAAAAAAdwAAAAAAdwAAAAACaAAAAAAAaAAAAAACTgAAAAAAZQAAAAAAZQAAAAACegAAAAAAegAAAAAA + version: 6 + -1,-3: + ind: -1,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATQAAAAAAdwAAAAAATQAAAAABdwAAAAACTQAAAAADdwAAAAABTQAAAAAAWgAAAAAAXwAAAAACXwAAAAAAXwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAdwAAAAADTQAAAAACdwAAAAAATQAAAAAAdwAAAAAATQAAAAABdwAAAAABWgAAAAAAXwAAAAABXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAdwAAAAADdwAAAAADdwAAAAABdwAAAAADdwAAAAADdwAAAAAATAAAAAACWgAAAAACXwAAAAACXwAAAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAADegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAADgAAAAADDgAAAAACTAAAAAABWgAAAAAAWgAAAAABegAAAAAAbQAAAAAAbQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAPQAAAAAAPQAAAAAADgAAAAABDgAAAAAATgAAAAAATAAAAAAAWgAAAAACWgAAAAAAegAAAAAAdgAAAAACdgAAAAACQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAPQAAAAAADgAAAAADDgAAAAABDgAAAAACDgAAAAACTAAAAAAAWgAAAAABWgAAAAAAegAAAAAAdgAAAAACdgAAAAABQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAADgAAAAABDgAAAAACDgAAAAADDgAAAAACegAAAAAATAAAAAAAWgAAAAACWgAAAAACegAAAAAAdgAAAAACdgAAAAADTgAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAaQAAAAAATgAAAAAAegAAAAAAdgAAAAABdgAAAAADPwAAAAAATgAAAAAAHgAAAAABJwAAAAABHgAAAAACHgAAAAACHgAAAAACHgAAAAADHgAAAAABegAAAAAAaAAAAAAAXwAAAAADaAAAAAADegAAAAAAegAAAAAAegAAAAAAPwAAAAAAaQAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAADHgAAAAADHgAAAAADHgAAAAACaQAAAAAAaAAAAAABXwAAAAAAaAAAAAADegAAAAAAdgAAAAACdgAAAAABegAAAAAAegAAAAAAegAAAAAAJwAAAAAAHgAAAAADJwAAAAADJwAAAAAAJwAAAAADJwAAAAADTgAAAAAAaAAAAAACXwAAAAAAaAAAAAABegAAAAAAdgAAAAADdgAAAAAAeAAAAAABeAAAAAAAegAAAAAAJwAAAAACHgAAAAAAJwAAAAACJwAAAAAAJwAAAAAAJwAAAAACTgAAAAAAaAAAAAADXwAAAAADaAAAAAACegAAAAAAdgAAAAAAdgAAAAABdwAAAAABeAAAAAABaQAAAAAAJwAAAAACHgAAAAADJwAAAAAAJwAAAAAAJwAAAAACJwAAAAABTgAAAAAAaAAAAAACXwAAAAABaAAAAAADegAAAAAATgAAAAAATgAAAAAAdwAAAAAAeAAAAAACaQAAAAAAJwAAAAABJwAAAAABHgAAAAADJwAAAAABJwAAAAACJwAAAAABTgAAAAAAaAAAAAADXwAAAAACaAAAAAAAaQAAAAAAdgAAAAABLgAAAAABeAAAAAAAeAAAAAAAegAAAAAAaQAAAAAAJwAAAAAAJwAAAAAAJwAAAAACJwAAAAACJwAAAAABTgAAAAAAaAAAAAADXwAAAAAAaAAAAAADaQAAAAAALgAAAAACdgAAAAAD + version: 6 + -2,-3: + ind: -2,-3 + tiles: TgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAHgAAAAACegAAAAAAHgAAAAAAegAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAADegAAAAAAHgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAHgAAAAAAegAAAAAAHgAAAAADaQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAHgAAAAACegAAAAAAHgAAAAABegAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAHgAAAAADegAAAAAAHgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAADeAAAAAABeAAAAAADegAAAAAAegAAAAAAHgAAAAADLgAAAAACHgAAAAADTQAAAAABHgAAAAAATQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAeAAAAAABdwAAAAABdwAAAAABQQAAAAAAegAAAAAATQAAAAABJwAAAAABTQAAAAACHgAAAAAATQAAAAACHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAAAdwAAAAADdwAAAAABegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAATgAAAAAAaQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAABeAAAAAAC + version: 6 + -3,-3: + ind: -3,-3 + tiles: eQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAHgAAAAADegAAAAAAHgAAAAAAeQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAegAAAAAAHgAAAAADeQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAegAAAAAAHgAAAAADTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAegAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAegAAAAAAHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAaQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAawAAAAAAegAAAAAAegAAAAAAawAAAAABTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA + version: 6 + 0,-3: + ind: 0,-3 + tiles: WgAAAAACWgAAAAACWgAAAAACWgAAAAAAWgAAAAACWgAAAAABWgAAAAAAegAAAAAATAAAAAADTAAAAAAATAAAAAACTAAAAAADTAAAAAADegAAAAAAegAAAAAAeQAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAAAbQAAAAABegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAdgAAAAABdgAAAAADegAAAAAAdgAAAAABbQAAAAADegAAAAAAdgAAAAABdgAAAAABbQAAAAAATAAAAAADWgAAAAADWgAAAAADegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAdgAAAAADdgAAAAABTgAAAAAAdgAAAAADbQAAAAABTgAAAAAAbQAAAAADdgAAAAACbQAAAAABWgAAAAADYQAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAdgAAAAADdgAAAAADdgAAAAABbQAAAAACbQAAAAAAbQAAAAADbQAAAAACdgAAAAAAbQAAAAACWgAAAAACWgAAAAABWgAAAAACegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAdgAAAAAAdgAAAAAATgAAAAAAbQAAAAABbQAAAAAATgAAAAAAdgAAAAAAdgAAAAABbQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdgAAAAACbQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdgAAAAADdgAAAAABbQAAAAABbQAAAAABegAAAAAAPwAAAAAAdgAAAAAAdgAAAAAAbQAAAAABbQAAAAADbQAAAAADdgAAAAABdgAAAAABdgAAAAACaQAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAABbgAAAAADegAAAAAAPwAAAAAAdgAAAAAAdgAAAAAAdgAAAAADbgAAAAACbgAAAAACbgAAAAABbgAAAAABdgAAAAACTgAAAAAAdgAAAAADdgAAAAADdgAAAAACbQAAAAACbQAAAAACegAAAAAAdwAAAAACdgAAAAAAegAAAAAAdgAAAAAAbgAAAAACdgAAAAADdgAAAAABbgAAAAADdgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAdgAAAAADbgAAAAADdgAAAAADdgAAAAABbgAAAAACdgAAAAABegAAAAAAdgAAAAABdgAAAAABegAAAAAAdwAAAAADdwAAAAACdwAAAAABdwAAAAACdgAAAAADaQAAAAAAbgAAAAADbgAAAAACbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACaQAAAAAAdgAAAAACLgAAAAAAegAAAAAAdwAAAAACdwAAAAACdwAAAAACdwAAAAADLgAAAAABTgAAAAAAdgAAAAACbgAAAAABbgAAAAADbgAAAAABbgAAAAACdgAAAAABegAAAAAAdgAAAAADLgAAAAAAegAAAAAAdwAAAAAAdwAAAAABdwAAAAACdwAAAAAA + version: 6 + -3,-4: + ind: -3,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAACTgAAAAAAHgAAAAADHgAAAAADHgAAAAADeQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADTQAAAAADHgAAAAAAaQAAAAAAHgAAAAACegAAAAAAHgAAAAAAeQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAADTgAAAAAAHgAAAAABegAAAAAAHgAAAAAB + version: 6 + -4,-4: + ind: -4,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAA + version: 6 + -4,-3: + ind: -4,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA + version: 6 + -4,-1: + ind: -4,-1 + tiles: AAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAAAdwAAAAABdwAAAAACdwAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATgAAAAAAdwAAAAAAdwAAAAADdwAAAAABdwAAAAACdwAAAAAAaQAAAAAAegAAAAAAegAAAAAAZQAAAAADWgAAAAAAWgAAAAADWgAAAAADeQAAAAAAAAAAAAAAeQAAAAAATgAAAAAAdwAAAAABdwAAAAADdwAAAAAAdwAAAAACegAAAAAAaQAAAAAAegAAAAAAegAAAAAAZQAAAAADWgAAAAADWgAAAAABWgAAAAADeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAdwAAAAADdwAAAAACdwAAAAACdwAAAAABegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAagAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAagAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAAD + version: 6 + -4,0: + ind: -4,0 + tiles: eQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAABdwAAAAABdwAAAAACdwAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAdwAAAAADeAAAAAADeAAAAAADdwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAACOAAAAAAAOAAAAAABOAAAAAAAOAAAAAABOAAAAAACdwAAAAADegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAAAOAAAAAACOAAAAAADOAAAAAADOAAAAAACOAAAAAACdwAAAAABdwAAAAADdwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAdwAAAAAAOAAAAAAAOAAAAAADOAAAAAACOAAAAAABOAAAAAADegAAAAAAdwAAAAABdwAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAACdwAAAAABdwAAAAACdwAAAAADdwAAAAACegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAdwAAAAABKgAAAAAAKgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAdwAAAAADKgAAAAAAKgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAdwAAAAADKgAAAAAAKgAAAAAAdwAAAAACdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAdwAAAAADdwAAAAAAdwAAAAADdwAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,-2: + ind: -4,-2 + tiles: eQAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATAAAAAACeQAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATAAAAAADeQAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAHgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAJwAAAAADeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAHgAAAAADAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAHgAAAAACAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAADAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAHgAAAAACTQAAAAABHgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAHgAAAAACHgAAAAACHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAACJwAAAAAAJwAAAAABJwAAAAAAHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAJwAAAAACJwAAAAADJwAAAAABJwAAAAABHgAAAAACAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAJwAAAAABJwAAAAAAJwAAAAABJwAAAAABHgAAAAAC + version: 6 + 1,-3: + ind: 1,-3 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAJwAAAAABJwAAAAADJwAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAJwAAAAAAJwAAAAAAJwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPwAAAAAAPwAAAAAAegAAAAAAaAAAAAACaAAAAAABaAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAATgAAAAAAaAAAAAAAXwAAAAAAaAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAATgAAAAAAaAAAAAACXwAAAAAAaAAAAAABTgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAJwAAAAAAJwAAAAADdwAAAAADdwAAAAAAdwAAAAAAaQAAAAAAaAAAAAADXwAAAAADegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAJwAAAAADWgAAAAABTgAAAAAAegAAAAAAegAAAAAAegAAAAAAaAAAAAADXwAAAAAAaAAAAAAAegAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAegAAAAAAeQAAAAAATgAAAAAAJwAAAAACWgAAAAADdwAAAAAAdwAAAAADdwAAAAACegAAAAAAaAAAAAAAXwAAAAABaAAAAAAAegAAAAAAUAAAAAAAUAAAAAAAUAAAAAAATgAAAAAAeQAAAAAATgAAAAAAJwAAAAADWgAAAAACdwAAAAADdwAAAAABdwAAAAAAaQAAAAAAaAAAAAACXwAAAAABaAAAAAABegAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAegAAAAAAeQAAAAAATgAAAAAAJwAAAAABWgAAAAADdwAAAAACdwAAAAABdwAAAAABegAAAAAAaAAAAAACXwAAAAADaAAAAAACegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAJwAAAAABWgAAAAAB + version: 6 + 1,-2: + ind: 1,-2 + tiles: dwAAAAAAdwAAAAAAdwAAAAAATgAAAAAAaAAAAAACXwAAAAABaAAAAAABTgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAJwAAAAADJwAAAAACPwAAAAAAPwAAAAAAPwAAAAAATgAAAAAAaAAAAAADXwAAAAAAaAAAAAACegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAATgAAAAAAaAAAAAABXwAAAAABaAAAAAACegAAAAAAdwAAAAACLgAAAAABLgAAAAAAdwAAAAABegAAAAAAJwAAAAACJwAAAAAAHwAAAAADdwAAAAAAdwAAAAACdwAAAAAATgAAAAAAaAAAAAADXwAAAAABaAAAAAABegAAAAAALgAAAAABdwAAAAABdwAAAAADLgAAAAAAaQAAAAAAHwAAAAAAHwAAAAACHwAAAAABPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAaAAAAAACXwAAAAADaAAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAADdwAAAAAAegAAAAAAJwAAAAABHwAAAAABJwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAaAAAAAAAXwAAAAABaAAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAaQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAaAAAAAACXwAAAAACaAAAAAADegAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAegAAAAAAMAAAAAAAZwAAAAABZwAAAAAAWgAAAAACZwAAAAAAZwAAAAACZwAAAAABYgAAAAABXwAAAAADaAAAAAABTgAAAAAAZwAAAAADZwAAAAAAZwAAAAADZwAAAAACZwAAAAABZwAAAAABZwAAAAABZwAAAAACXwAAAAADXwAAAAAAXwAAAAACXwAAAAAAXwAAAAADXwAAAAAAaAAAAAADaQAAAAAAZwAAAAADXwAAAAACXwAAAAADXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAADZwAAAAACZwAAAAACZwAAAAACZwAAAAABZwAAAAADZwAAAAABYgAAAAABTgAAAAAAZwAAAAAAZwAAAAABZwAAAAAAZwAAAAAAZwAAAAABZwAAAAADZwAAAAAAZwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAegAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAACegAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADTQAAAAABWgAAAAABWgAAAAACTQAAAAABegAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAACHgAAAAABegAAAAAAHgAAAAABFgAAAAAAFgAAAAAAegAAAAAAHgAAAAADWgAAAAACTQAAAAABWgAAAAACWgAAAAABTgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAAAWgAAAAACegAAAAAAHgAAAAADFgAAAAAAFgAAAAAAegAAAAAAHgAAAAABWgAAAAADWgAAAAADTQAAAAACWgAAAAAAaQAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAAAWgAAAAADaQAAAAAAHgAAAAADFgAAAAAAFgAAAAAAegAAAAAAHgAAAAAATQAAAAABWgAAAAACWgAAAAAATQAAAAADTgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACegAAAAAAHgAAAAABFgAAAAAAFgAAAAAAegAAAAAA + version: 6 + -2,-4: + ind: -2,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: egAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAABWgAAAAABWgAAAAABWgAAAAADegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAaQAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAADTgAAAAAAHgAAAAADHgAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAABWgAAAAAAWgAAAAABWgAAAAADaQAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAACaQAAAAAAHgAAAAAAHgAAAAADWgAAAAADWgAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAACWgAAAAABWgAAAAADTgAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAABTgAAAAAAHgAAAAADHgAAAAACWgAAAAACWgAAAAACegAAAAAATgAAAAAAaQAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAHgAAAAACHgAAAAAAWgAAAAAAWgAAAAABegAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAAAaQAAAAAAHgAAAAACHgAAAAADTgAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAACTgAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAADegAAAAAAHgAAAAABHgAAAAABaQAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAABTgAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAABegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAACWgAAAAAATgAAAAAAWgAAAAACWgAAAAAAWgAAAAAATgAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAACegAAAAAAOgAAAAAATQAAAAAATQAAAAABWgAAAAACTQAAAAABTQAAAAACTgAAAAAAWgAAAAACWgAAAAABWgAAAAAATgAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAABegAAAAAAOgAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAADTgAAAAAAWgAAAAAAWgAAAAABWgAAAAABTgAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAACegAAAAAAOgAAAAAATQAAAAAATQAAAAADWgAAAAAATQAAAAAATQAAAAACTgAAAAAAWgAAAAACWgAAAAADWgAAAAACegAAAAAATgAAAAAATgAAAAAAaQAAAAAATgAAAAAAegAAAAAATgAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAAAWgAAAAACegAAAAAAWgAAAAADWgAAAAACWgAAAAADWgAAAAACWgAAAAACWgAAAAADWgAAAAACWgAAAAABWgAAAAABTAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAADTAAAAAACdgAAAAABdgAAAAAAdgAAAAABdgAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAACegAAAAAATgAAAAAATgAAAAAAaQAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAACHgAAAAADHgAAAAACHgAAAAAAegAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: dgAAAAAAdgAAAAACdgAAAAADdgAAAAABaQAAAAAAWgAAAAACWgAAAAABWgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAABegAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAADegAAAAAAWgAAAAAAWgAAAAACWgAAAAACTgAAAAAAHgAAAAADHgAAAAACHgAAAAADHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdwAAAAADegAAAAAAegAAAAAAagAAAAAAawAAAAAAegAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAACegAAAAAAegAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdwAAAAADegAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAAAegAAAAAAegAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdwAAAAADegAAAAAAegAAAAAAagAAAAAAawAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAADdwAAAAADdwAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAACegAAAAAAaQAAAAAAegAAAAAAdwAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAADegAAAAAAaQAAAAAAegAAAAAAdwAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAA + version: 6 + 2,-2: + ind: 2,-2 + tiles: JwAAAAADJwAAAAAAJwAAAAADegAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAJwAAAAACJwAAAAADegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHwAAAAADHwAAAAACaQAAAAAAegAAAAAAegAAAAAAawAAAAADegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACJwAAAAADegAAAAAAagAAAAAAegAAAAAAawAAAAACegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAATgAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAZwAAAAAAMAAAAAAAegAAAAAAZwAAAAABZwAAAAAAZwAAAAABTgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAIwAAAAADZwAAAAAAZwAAAAAAZwAAAAABZwAAAAABZwAAAAADZwAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAADaQAAAAAAawAAAAACaQAAAAAAawAAAAADegAAAAAANwAAAAAAXwAAAAADXwAAAAACXwAAAAAAXwAAAAABXwAAAAADZwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAANwAAAAAAZwAAAAADZwAAAAACZwAAAAABZwAAAAACZwAAAAADZwAAAAADegAAAAAAegAAAAAAegAAAAAAawAAAAABaQAAAAAAawAAAAAAaQAAAAAAawAAAAACegAAAAAANwAAAAAAZwAAAAADZwAAAAADMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAIwAAAAADegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAANAAAAAADegAAAAAANAAAAAABegAAAAAASwAAAAAASwAAAAAAeAAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAegAAAAAANAAAAAACegAAAAAANAAAAAAAegAAAAAASwAAAAADSgAAAAAAdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAASgAAAAAAdwAAAAABFAAAAAAGegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfQAAAAACFAAAAAAGdwAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: egAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfAAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAABegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAHgAAAAAAHgAAAAAAaQAAAAAAWgAAAAADWgAAAAACWgAAAAADWgAAAAABTgAAAAAAHgAAAAABegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAABTgAAAAAATQAAAAAAWgAAAAADWgAAAAAATQAAAAAAaQAAAAAAHgAAAAABHgAAAAACJwAAAAADegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAACWgAAAAABWgAAAAADTQAAAAABegAAAAAAegAAAAAAHgAAAAABHgAAAAABegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAACaQAAAAAAWgAAAAAATQAAAAADTQAAAAACWgAAAAABTgAAAAAAHgAAAAADHgAAAAACHgAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAHgAAAAADHgAAAAADTgAAAAAAWgAAAAADTQAAAAADTQAAAAABWgAAAAACaQAAAAAAHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAAWgAAAAABWgAAAAACTQAAAAADegAAAAAAegAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAHgAAAAAAHgAAAAABaQAAAAAATQAAAAACWgAAAAACWgAAAAAATQAAAAABTgAAAAAAHgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAACTgAAAAAAWgAAAAACWgAAAAABWgAAAAABWgAAAAAAaQAAAAAAHgAAAAAAOgAAAAAAOgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAaQAAAAAAaQAAAAAATgAAAAAAegAAAAAAegAAAAAAWgAAAAABTgAAAAAAegAAAAAAWgAAAAADWgAAAAACTgAAAAAAHgAAAAABHgAAAAAATgAAAAAAWgAAAAAATQAAAAADWgAAAAADTQAAAAADWgAAAAABegAAAAAAdwAAAAADWgAAAAABWgAAAAABWgAAAAAAWgAAAAABWgAAAAADaQAAAAAAHgAAAAABHgAAAAACaQAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAACaQAAAAAAdwAAAAABWgAAAAABWgAAAAABWgAAAAADWgAAAAADWgAAAAADTgAAAAAAHgAAAAACHgAAAAABTgAAAAAAWgAAAAAATQAAAAACWgAAAAACTQAAAAAAWgAAAAACTgAAAAAAdwAAAAAAWgAAAAACWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAACWgAAAAABTgAAAAAAdwAAAAABegAAAAAAaQAAAAAAegAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAWgAAAAADTQAAAAABWgAAAAAATQAAAAAAWgAAAAABTgAAAAAAdwAAAAAC + version: 6 + 2,0: + ind: 2,0 + tiles: aQAAAAAAegAAAAAAaQAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAADaQAAAAAAdwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAWgAAAAACTQAAAAACWgAAAAACTQAAAAAAWgAAAAAAegAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAATgAAAAAAaQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAOwAAAAAAOwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAAAegAAAAAAeQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAOwAAAAAAOwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAATQAAAAABTQAAAAAAWgAAAAACWgAAAAAATgAAAAAAeQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAOwAAAAAAOwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAWgAAAAACWgAAAAAATQAAAAACTQAAAAADTgAAAAAAeQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAOwAAAAAAOwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAABegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-3: + ind: 2,-3 + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAABdwAAAAACdwAAAAAAdwAAAAAAJwAAAAAAJwAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAdwAAAAADdwAAAAACdwAAAAABdwAAAAAAJwAAAAADJwAAAAACTgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAdwAAAAAAdwAAAAACdwAAAAACdwAAAAADJwAAAAABJwAAAAACTgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAADdwAAAAABdwAAAAAAJwAAAAABJwAAAAADTgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAADJwAAAAACegAAAAAAaQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWgAAAAADWgAAAAABJwAAAAACegAAAAAAJAAAAAAAJAAAAAAAeAAAAAACeAAAAAABeAAAAAADJAAAAAAAJAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAWgAAAAACJwAAAAAATgAAAAAAJAAAAAAAeAAAAAACeAAAAAADeAAAAAABeAAAAAACeAAAAAACJAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACWgAAAAAAJwAAAAACTgAAAAAAJAAAAAAAeAAAAAADeAAAAAAAeAAAAAACeAAAAAACeAAAAAACJAAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALgAAAAAAWgAAAAABJwAAAAABTgAAAAAAJAAAAAAAeAAAAAABeAAAAAABeAAAAAACeAAAAAACeAAAAAABJAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAACJwAAAAAAaQAAAAAAJAAAAAAAJAAAAAAAeAAAAAACeAAAAAADeAAAAAADJAAAAAAAJAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-4: + ind: -1,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAaQAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACXwAAAAAAXwAAAAADXwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAdwAAAAAAdwAAAAADdwAAAAAAdwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAWgAAAAACXwAAAAACXwAAAAACXwAAAAAA + version: 6 + 0,-4: + ind: 0,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAaQAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAADXwAAAAACXwAAAAACXwAAAAACXwAAAAACXwAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAXwAAAAADXwAAAAACXwAAAAABXwAAAAACXwAAAAAAXwAAAAAAWgAAAAABTAAAAAACLgAAAAADLgAAAAACLgAAAAABLgAAAAAALgAAAAACaQAAAAAAegAAAAAAegAAAAAA + version: 6 + 3,-1: + ind: 3,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACegAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAADdwAAAAADegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAABdwAAAAAATQAAAAADTgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAABdwAAAAAATQAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAAAdwAAAAADTgAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAABdwAAAAAATQAAAAABTgAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,0: + ind: 3,0 + tiles: dwAAAAADdwAAAAADTQAAAAAATgAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADWgAAAAABWgAAAAABegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAAAHwAAAAADWgAAAAABTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAADWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAADTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATAAAAAADWgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAACWgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAaQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-4: + ind: 1,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAACegAAAAAATQAAAAABAAAAAAAATQAAAAAAegAAAAAATQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAACegAAAAAATQAAAAACeQAAAAAATQAAAAAAegAAAAAATQAAAAADeQAAAAAATQAAAAABegAAAAAATQAAAAABeQAAAAAATQAAAAACegAAAAAATQAAAAAAeQAAAAAATQAAAAADegAAAAAATQAAAAACeQAAAAAATQAAAAAAegAAAAAATQAAAAAAeQAAAAAATQAAAAABegAAAAAATQAAAAACAAAAAAAATQAAAAAAegAAAAAATQAAAAAAAAAAAAAATQAAAAAAegAAAAAATQAAAAACAAAAAAAATQAAAAAAegAAAAAATQAAAAACAAAAAAAATQAAAAADegAAAAAATQAAAAAAAAAAAAAATQAAAAACegAAAAAATQAAAAAAAAAAAAAATQAAAAAAegAAAAAATQAAAAACAAAAAAAATQAAAAACegAAAAAATQAAAAABAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA + version: 6 + 2,-4: + ind: 2,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAADegAAAAAATQAAAAACAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAegAAAAAATQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAACegAAAAAATQAAAAACAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAACegAAAAAATQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAADegAAAAAATQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAA + version: 6 + 3,-2: + ind: 3,-2 + tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAAAAANwAAAAAAUgAAAAAAEgAAAAAAEgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAANwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAAAAANwAAAAAAUgAAAAAAEgAAAAAAEgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,1: + ind: -2,1 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,1: + ind: -3,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-3: + ind: 3,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: AAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: eQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 10000 + linearDamping: 10000 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: BotRight + decals: + 499: -39,1 + 500: -39,2 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 6: -34,-37 + 7: -33,-37 + 8: -32,-37 + 9: -32,-38 + 10: -33,-38 + 11: -34,-38 + 12: -34,-39 + 13: -33,-39 + 14: -32,-39 + 15: -32,-40 + 16: -33,-40 + 17: -34,-40 + 18: -33,-36 + 728: -53,-31 + 729: -53,-32 + 730: -53,-33 + 731: -53,-34 + 736: -46,-19 + - node: + color: '#FFFFFFFF' + id: BoxGreyscale + decals: + 720: 34.024876,-6.9936233 + 721: 34.0405,-7.9779983 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 207: -8,5 + 444: 33,-33 + 460: 26,-34 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 206: -9,5 + 443: 31,-33 + 459: 24,-34 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 208: -8,2 + 441: 33,-37 + 458: 26,-36 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 209: -9,2 + 442: 31,-37 + 457: 24,-36 + 475: -42,-27 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndW + decals: + 205: -12,4 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNw + decals: + 139: 24,-17 + 218: -9,4 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSe + decals: + 148: 21,-11 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + decals: + 145: 24,-11 + 217: -9,4 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 177: 38,-42 + 178: 38,-41 + 179: 38,-40 + 180: 38,-39 + 215: -8,3 + 216: -8,4 + 445: 33,-36 + 446: 33,-35 + 447: 33,-34 + 456: 26,-35 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 137: 22,-17 + 138: 23,-17 + 213: -11,4 + 214: -10,4 + 452: 32,-33 + 455: 25,-34 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 146: 23,-11 + 147: 22,-11 + 211: -10,4 + 212: -11,4 + 451: 32,-37 + 454: 25,-36 + 478: -41,-27 + 479: -40,-27 + 480: -39,-27 + 481: -38,-27 + 482: -37,-27 + 483: -36,-27 + 484: -35,-27 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 140: 24,-16 + 141: 24,-15 + 142: 24,-14 + 143: 24,-13 + 144: 24,-12 + 210: -9,3 + 448: 31,-36 + 449: 31,-35 + 450: 31,-34 + 453: 24,-35 + 476: -42,-26 + 477: -42,-25 + 579: 29,-20 + 580: 29,-19 + 581: 29,-18 + 582: 29,-17 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 110: -17,-25 + 665: 13,17 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 111: -20,-25 + 664: 5,17 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 676: 13,15 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 675: 5,15 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndN + decals: + 120: -20,-25 + 121: -17,-25 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndS + decals: + 118: -20,-28 + 119: -17,-28 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerNe + decals: + 474: -49,-28 + 578: -39,-51 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerNw + decals: + 473: -45,-28 + 577: -37,-51 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerSe + decals: + 471: -49,-25 + 576: -39,-49 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerSw + decals: + 472: -45,-25 + 575: -37,-49 + - node: + color: '#FF0000FF' + id: BrickTileSteelLineE + decals: + 722: -49,-17 + 723: -49,-18 + 724: -49,-19 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 112: -17,-26 + 113: -17,-27 + 114: -17,-28 + 124: -20,-26 + 125: -20,-27 + 133: 41,3 + 134: 41,4 + 135: 41,5 + 136: 41,6 + 461: -49,-27 + 462: -49,-26 + 571: -39,-50 + 666: 13,16 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 463: -48,-28 + 464: -47,-28 + 465: -46,-28 + 495: -40,-3 + 496: -39,-3 + 497: -38,-3 + 572: -38,-51 + 668: 6,17 + 669: 7,17 + 670: 8,17 + 671: 9,17 + 672: 10,17 + 673: 11,17 + 674: 12,17 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 468: -48,-25 + 469: -47,-25 + 470: -46,-25 + 574: -38,-49 + 677: 6,15 + 678: 7,15 + 679: 8,15 + 680: 9,15 + 681: 10,15 + 682: 11,15 + 683: 12,15 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 115: -20,-26 + 116: -20,-27 + 117: -20,-28 + 122: -17,-26 + 123: -17,-27 + 466: -45,-27 + 467: -45,-26 + 573: -37,-50 + 667: 5,16 + - node: + color: '#34BFFF84' + id: BrickTileWhiteCornerNe + decals: + 706: 19,1 + - node: + color: '#34FFFFFF' + id: BrickTileWhiteCornerNe + decals: + 742: 1,-40 + - node: + color: '#7FDFFFFF' + id: BrickTileWhiteCornerNe + decals: + 752: 8,-40 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNe + decals: + 512: 6,-33 + - node: + color: '#34BFFF84' + id: BrickTileWhiteCornerNw + decals: + 705: 16,1 + - node: + color: '#34FFFFFF' + id: BrickTileWhiteCornerNw + decals: + 739: -2,-40 + - node: + color: '#7FDFFFFF' + id: BrickTileWhiteCornerNw + decals: + 751: 6,-40 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNw + decals: + 508: 3,-33 + - node: + color: '#34BFFF84' + id: BrickTileWhiteCornerSe + decals: + 707: 19,-2 + - node: + color: '#34FFFFFF' + id: BrickTileWhiteCornerSe + decals: + 745: 1,-44 + - node: + color: '#7FDFFFFF' + id: BrickTileWhiteCornerSe + decals: + 754: 8,-43 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSe + decals: + 624: 6,-37 + - node: + color: '#34BFFF84' + id: BrickTileWhiteCornerSw + decals: + 708: 16,-2 + - node: + color: '#34FFFFFF' + id: BrickTileWhiteCornerSw + decals: + 746: -2,-44 + - node: + color: '#7FDFFFFF' + id: BrickTileWhiteCornerSw + decals: + 753: 6,-43 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndE + decals: + 511: 7,-34 + 519: 5,-29 + - node: + angle: 6.283185307179586 rad + color: '#FFFFFFFF' + id: BrickTileWhiteEndE + decals: + 699: 13,-38 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndN + decals: + 509: 4,-32 + 518: 4,-27 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndS + decals: + 516: 4,-30 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndW + decals: + 510: 2,-34 + 517: 3,-29 + 526: 9,-38 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNe + decals: + 514: 4,-33 + 525: 4,-29 + 641: 3,-37 + 642: 6,-34 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNw + decals: + 515: 4,-33 + 522: 4,-29 + 639: 3,-34 + 640: 6,-37 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerSe + decals: + 523: 4,-29 + 636: 6,-34 + 637: 3,-37 + 638: 3,-34 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerSw + decals: + 524: 4,-29 + 634: 6,-34 + 635: 3,-34 + - node: + color: '#34FFFFFF' + id: BrickTileWhiteLineE + decals: + 743: 1,-42 + 744: 1,-43 + - node: + color: '#FF000066' + id: BrickTileWhiteLineE + decals: + 715: 19,0 + 716: 19,-1 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + decals: + 520: 4,-28 + 618: 3,-36 + 619: 3,-35 + 625: 6,-36 + 626: 6,-35 + - node: + color: '#34FFFFFF' + id: BrickTileWhiteLineN + decals: + 740: -1,-40 + 741: 0,-40 + - node: + color: '#FF000066' + id: BrickTileWhiteLineN + decals: + 709: 17,1 + 710: 18,1 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 513: 5,-33 + 527: 10,-38 + 620: 4,-37 + 621: 5,-37 + - node: + angle: 6.283185307179586 rad + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 695: 11,-38 + 696: 12,-38 + - node: + color: '#34FFFFFF' + id: BrickTileWhiteLineS + decals: + 748: -1,-44 + 749: 0,-44 + - node: + color: '#7FDFFFFF' + id: BrickTileWhiteLineS + decals: + 755: 7,-43 + - node: + color: '#FF000066' + id: BrickTileWhiteLineS + decals: + 711: 17,-2 + 712: 18,-2 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 528: 10,-38 + 622: 4,-37 + 623: 5,-37 + 627: 5,-34 + 628: 4,-34 + 756: 3,-37 + - node: + angle: 6.283185307179586 rad + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 697: 11,-38 + 698: 12,-38 + - node: + color: '#34FFFFFF' + id: BrickTileWhiteLineW + decals: + 737: -2,-42 + 738: -2,-41 + 747: -2,-43 + - node: + color: '#FF000066' + id: BrickTileWhiteLineW + decals: + 713: 16,-1 + 714: 16,0 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + decals: + 521: 4,-28 + 629: 6,-36 + 630: 6,-35 + 631: 3,-36 + 632: 3,-35 + 633: 3,-37 + - node: + color: '#FFFFFFFF' + id: Bushe1 + decals: + 545: 7.269473,-2.0562599 + - node: + color: '#FFFFFFFF' + id: Bushe2 + decals: + 544: 10.660098,-2.024987 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bushe2 + decals: + 233: 10.829859,-5.895931 + 234: 11.152776,-6.114833 + - node: + color: '#FFFFFFFF' + id: Bushe3 + decals: + 543: 11.050723,-2.1500747 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bushe3 + decals: + 231: 10.736109,-8.064104 + 232: 11.069442,-7.959864 + - node: + color: '#FFFFFFFF' + id: Bushe4 + decals: + 542: 6.816348,-2.1188037 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bushk1 + decals: + 243: 25,-26 + 248: 35,-22 + - node: + color: '#FFFFFFFF' + id: Bushk2 + decals: + 559: 2.7216585,-2.0846055 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bushk2 + decals: + 244: 26,-26 + 247: 30,-22 + - node: + color: '#FFFFFFFF' + id: Bushk3 + decals: + 558: 0.5549917,-2.0533326 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bushk3 + decals: + 245: 29,-22 + 246: 36,-22 + - node: + color: '#FFFFFFFF' + id: Bushn1 + decals: + 63: -29.570997,-20.070805 + 67: -25.456413,-20.206316 + 560: 1.6279085,-2.063757 + - node: + color: '#52B4E996' + id: CheckerNESW + decals: + 595: 2,-32 + 596: 3,-32 + 597: 7,-32 + 598: 7,-33 + 599: 7,-35 + 600: 7,-36 + 601: 2,-36 + 602: 2,-35 + 603: 5,-38 + 643: 2,-37 + 644: 2,-38 + 645: 6,-38 + 646: 7,-38 + 647: 7,-37 + 648: 6,-32 + 649: 5,-32 + 650: 2,-33 + - node: + color: '#9FED5896' + id: CheckerNESW + decals: + 181: -19,4 + 182: -18,4 + 183: -17,4 + 184: -16,4 + 185: -15,4 + 186: -14,4 + 187: -19,3 + 188: -19,2 + 189: -14,3 + 190: -14,2 + - node: + color: '#DE3A3A96' + id: CheckerNESW + decals: + 305: 22,-19 + 306: 23,-19 + 307: 24,-19 + 308: 25,-19 + 309: 26,-19 + 310: 26,-17 + 311: 26,-16 + 312: 24,-8 + 313: 24,-6 + 314: 24,-5 + 315: 22,-8 + 316: 22,-7 + 317: 22,-6 + 318: 22,-5 + 319: 22,-4 + 320: 22,-3 + 321: 21,-2 + 322: 21,-1 + - node: + color: '#DE3A3A96' + id: CheckerNWSE + decals: + 341: 31,-5 + 342: 32,-5 + 343: 33,-5 + 344: 19,-10 + 345: 19,-11 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 690: -13.001509,-32.022694 + 717: -43,-22 + 718: -42,-22 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Delivery + decals: + 684: -13,-33 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: DeliveryGreyscale + decals: + 686: -7.990714,-34.033375 + 687: -8.006339,-35.048996 + 688: -7.990714,-36.03337 + 689: -8.006339,-37.017746 + - node: + color: '#D381C996' + id: DiagonalCheckerAOverlay + decals: + 393: -31,-11 + 394: -30,-11 + 395: -31,-9 + 396: -30,-9 + 401: -30,-10 + 402: -31,-10 + - node: + color: '#DE3A3A96' + id: DiagonalCheckerAOverlay + decals: + 191: -12,2 + 192: -11,2 + 193: -10,2 + 219: -12,3 + 220: -11,3 + 221: -10,3 + - node: + cleanable: True + color: '#A4610696' + id: DiagonalCheckerBOverlay + decals: + 106: -17,-28 + 107: -17,-27 + 108: -17,-26 + 109: -17,-25 + - node: + cleanable: True + color: '#EFB34196' + id: DiagonalCheckerBOverlay + decals: + 102: -20,-28 + 103: -20,-27 + 104: -20,-26 + 105: -20,-25 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 152: 19,-5 + 381: 4,-16 + 414: -52,-4 + 423: 18.962013,12.027142 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 380: 11,-11 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 151: 16,-8 + 362: 8,3 + 363: 14,17 + 378: -5,0 + 413: -20,-12 + 425: 21,11 + 426: 20,-11 + 429: 15,-15 + 489: -43,8 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 149: 17,-6 + 358: -38.097836,-16.711924 + 359: -36.792118,-22.963575 + 364: 10,13 + 365: 18,-5 + 366: 15,-14 + 367: 24.508926,-23.4825 + 368: 36.185944,-24.985134 + 375: -23,0 + 376: -30,-1 + 377: -43,-2 + 405: -2,-45 + 406: -4,-42 + 424: 20,11 + 427: 29,-15 + 428: 19,-19 + 430: 11,-12 + 433: -2,-23 + 490: -43,10 + 491: -42,8 + - node: + cleanable: True + angle: 0.7853981633974483 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 407: 13,-24 + 408: 9,-1 + 409: -10,-13 + 410: -5,-24 + 411: -19,-23 + 412: -35,-23 + 431: 21,-30 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 150: 19,-8 + 360: -18,-26 + 361: -6,-5 + 374: -15,-2 + 415: -50,-5 + 432: 9,-25 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 379: 11,1 + - node: + color: '#FFFFFFFF' + id: Flowersbr1 + decals: + 501: 0.46875298,-52.976757 + 502: 1.250003,-52.945484 + 557: 3.5133247,-2.0533326 + - node: + color: '#FFFFFFFF' + id: Flowersbr2 + decals: + 556: 4.2945747,-2.0950284 + - node: + color: '#FFFFFFFF' + id: Flowersbr3 + decals: + 505: 1.9687531,-53.0393 + 506: -0.03124702,-53.01845 + 555: 5.0758247,-2.0950284 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 554: -0.26523253,-2.1367245 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 235: 29,-26 + 236: 33,-26 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Flowerspv2 + decals: + 237: 28,-22 + 238: 31,-22 + 239: 37,-22 + 240: 34,-22 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 552: -1.8485659,-1.9803662 + 553: -1.0985659,-2.0950284 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 241: 27,-26 + 242: 24,-26 + - node: + color: '#FFFFFFFF' + id: Flowersy1 + decals: + 65: -25.831413,-20.112501 + 541: 8.925723,-2.1344383 + - node: + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 62: -29.998081,-20.195892 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 229: 11,-9 + 230: 11,-7 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 61: -29.102247,-20.133348 + 540: 9.847598,-2.1188037 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 226: 11,-10 + 227: 11,-4 + 228: 11,-5 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 66: -25.081413,-20.091654 + 539: 7.972598,-2.0875309 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 222: 11,-14 + 223: 11,-17 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 614: 4,-36 + 615: 5,-36 + 616: 4,-35 + 617: 5,-35 + 651: 1,-38 + 652: 1,-37 + - node: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + decals: + 303: 22,-14 + 304: 23,-14 + - node: + color: '#FFFFFFFF' + id: Grassd2 + decals: + 507: 1.0208364,-52.95591 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grasse1 + decals: + 224: 11,-15 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grasse2 + decals: + 225: 11,-16 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 503: 2.0104196,-52.976757 + 504: -0.020830393,-52.96633 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale + decals: + 346: 27,-14 + 347: 29,-14 + 351: 28,-14 + 352: 26,-14 + 355: 30,-14 + 692: 31,-14 + 693: 32,-14 + 694: 33,-14 + 725: 34,-14 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + decals: + 587: 8,-27 + 588: 9,-27 + 606: -1,-36 + 607: 0,-36 + 609: 9,-37 + 610: 10,-37 + 611: 11,-37 + 700: 12,-37 + 701: 13,-37 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + decals: + 329: 24,-3 + 330: 25,-3 + 331: 26,-3 + 332: 27,-3 + 333: 28,-3 + 334: 29,-3 + 335: 30,-3 + 336: 31,-3 + 337: 22,1 + - node: + color: '#F9801DBC' + id: HalfTileOverlayGreyscale + decals: + 533: -1,-27 + 534: 0,-27 + 535: 1,-27 + - node: + angle: 6.283185307179586 rad + color: '#34B8FF88' + id: HalfTileOverlayGreyscale180 + decals: + 702: 12,-39 + 703: 11,-39 + 704: 13,-39 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 589: 8,-30 + 590: 9,-30 + 612: 10,-39 + 613: 9,-39 + - node: + color: '#F9801DBC' + id: HalfTileOverlayGreyscale180 + decals: + 536: -1,-30 + 537: 0,-30 + 538: 1,-30 + - node: + color: '#0000009A' + id: HalfTileOverlayGreyscale270 + decals: + 0: -26,-4 + 1: -26,-5 + 2: -26,-6 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + decals: + 585: 7,-29 + 586: 7,-28 + 604: -2,-38 + 605: -2,-37 + 653: 9,-35 + 654: 9,-34 + 655: 9,-33 + 656: 9,-32 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + decals: + 388: -36,-9 + 389: -36,-12 + 390: -36,-11 + 391: -36,-10 + 436: -36,-8 + - node: + color: '#F9801DBC' + id: HalfTileOverlayGreyscale270 + decals: + 531: -2,-29 + 532: -2,-28 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale90 + decals: + 348: 25,-12 + 349: 25,-10 + 350: 25,-11 + 353: 25,-13 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + decals: + 583: 10,-29 + 584: 10,-28 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + decals: + 325: 23,-1 + 326: 23,0 + 327: 23,-2 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 727: -21.999445,-42.990807 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 726: -17.999445,-43.022057 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineE + decals: + 31: -11,-28 + 32: -11,-27 + 33: -11,-26 + 34: -11,-25 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineW + decals: + 27: -12,-28 + 28: -12,-27 + 29: -12,-26 + 30: -12,-25 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelCornerNe + decals: + 400: -30,-9 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelCornerNw + decals: + 399: -31,-9 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelCornerSe + decals: + 398: -30,-11 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelCornerSw + decals: + 397: -31,-11 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelLineE + decals: + 403: -30,-10 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelLineW + decals: + 404: -31,-10 + - node: + color: '#D381C996' + id: MonoOverlay + decals: + 382: -36,-20 + 383: -34,-20 + 384: -32,-20 + 385: -36,-18 + 386: -36,-16 + 387: -36,-14 + - node: + color: '#DE3A3A96' + id: OffsetCheckerAOverlay + decals: + 194: -9,2 + 195: -8,2 + 196: -8,3 + 197: -9,3 + 198: -9,4 + 199: -8,4 + 200: -8,5 + 201: -9,5 + 202: -10,4 + 203: -11,4 + 204: -12,4 + - node: + color: '#FFFFFFFF' + id: OffsetCheckerBOverlay + decals: + 719: -52,-18 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + decals: + 340: 32,-3 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale90 + decals: + 354: 25,-14 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + decals: + 328: 23,-3 + - node: + color: '#FFFFFFFF' + id: Remains + decals: + 440: 35,-20 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign1 + decals: + 657: 6,16 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign2 + decals: + 658: 7,16 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign3 + decals: + 659: 8,16 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign4 + decals: + 660: 9,16 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign5 + decals: + 661: 10,16 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign6 + decals: + 662: 11,16 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign7 + decals: + 663: 12,16 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 685: -8.9951935,-32.015106 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 594: 7,-27 + 608: -2,-36 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale + decals: + 323: 21,1 + 338: 32,-2 + - node: + color: '#F9801DBC' + id: ThreeQuarterTileOverlayGreyscale + decals: + 529: -2,-27 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 593: 10,-30 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 592: 7,-30 + - node: + color: '#F9801DBC' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 530: -2,-30 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 591: 10,-27 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 324: 23,1 + 339: 33,-2 + - node: + color: '#FFFFFFFF' + id: WarnBox + decals: + 498: -39,5 + - node: + color: '#7FFFFFFF' + id: WarnBoxGreyscale + decals: + 750: 7,-40 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 76: -27,-12 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 75: -48,-34 + 485: -37,4 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleSW + decals: + 494: -35,4 + - node: + color: '#FFFFFFFF' + id: WarnEndS + decals: + 492: -35,3 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 488: -35,5 + 493: -35,4 + 735: -47,-19 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarnLineE + decals: + 691: -23.011345,-38.778404 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 70: -43,-34 + 71: -44,-34 + 72: -45,-34 + 73: -46,-34 + 74: -47,-34 + 486: -36,4 + 565: -37,-48 + 566: -38,-48 + 567: -39,-48 + 734: -46,-18 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnLineN + decals: + 284: -29.995993,-5.4813967 + 285: -30.011618,-5.684663 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 3: -26,-4 + 4: -26,-5 + 5: -26,-6 + 487: -37,5 + 561: -32,-51 + 562: -32,-50 + 563: -32,-49 + 564: -32,-48 + 732: -45,-19 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 68: -31,-7 + 69: -30,-7 + 392: -32,-7 + 568: -37,-52 + 569: -38,-52 + 570: -39,-52 + 733: -46,-20 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnLineW + decals: + 77: -26,-12 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 59: -29,-20 + 171: 19,5 + 279: -28,-24 + 369: -18,-2 + 416: -53,12 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 58: -26,-20 + 278: -33,-24 + 370: -21,-2 + 420: -54,12 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 53: -15,-28 + 54: -10,-28 + 89: 15,-32 + 101: 15,-29 + 170: 36,-37 + 417: -53,11 + 418: -55,12 + 439: -33,-15 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 49: -8,-28 + 50: -13,-28 + 88: 15,-32 + 100: 15,-29 + 169: 41,-37 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSe + decals: + 51: -15,-25 + 52: -10,-25 + 168: 36,-33 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSw + decals: + 37: -13,-25 + 48: -8,-25 + 167: 41,-33 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 23: -13,-28 + 24: -13,-27 + 25: -13,-26 + 26: -13,-25 + 40: -15,-26 + 41: -15,-27 + 44: -10,-26 + 45: -10,-27 + 78: 15,-30 + 79: 15,-31 + 90: 15,-28 + 91: 15,-27 + 153: 36,-36 + 154: 36,-35 + 155: 36,-34 + 172: 19,4 + 173: 19,3 + 273: -40,-20 + 274: -40,-19 + 275: -40,-18 + 276: -40,-17 + 277: -40,-16 + 438: -33,-14 + 546: -1,3 + 547: -1,4 + 548: -1,5 + 549: -1,6 + 550: -1,7 + 551: -1,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 42: -14,-28 + 43: -9,-28 + 60: -30,-20 + 64: -25,-20 + 82: 12,-32 + 83: 13,-32 + 84: 14,-32 + 85: 16,-32 + 86: 17,-32 + 87: 18,-32 + 94: 12,-29 + 95: 13,-29 + 96: 14,-29 + 97: 16,-29 + 98: 17,-29 + 99: 18,-29 + 126: 18,-38 + 127: 17,-38 + 128: 16,-38 + 129: 15,-38 + 130: 14,-38 + 163: 40,-37 + 164: 39,-37 + 165: 38,-37 + 166: 37,-37 + 174: 18,5 + 175: 17,5 + 176: 16,5 + 265: -2,-11 + 266: -1,-11 + 267: 0,-11 + 268: 1,-11 + 269: 2,-11 + 270: 3,-11 + 271: 4,-11 + 272: 5,-11 + 280: -29,-24 + 281: -30,-24 + 282: -31,-24 + 283: -32,-24 + 286: 2,-12 + 287: 1,-12 + 288: 0,-12 + 289: -1,-12 + 290: -2,-12 + 291: -2,-5 + 292: -1,-5 + 293: 0,-5 + 294: 1,-5 + 295: 2,-5 + 296: 3,-5 + 297: 4,-5 + 298: 5,-5 + 299: 6,-5 + 300: 3,-12 + 301: 4,-12 + 302: 5,-12 + 371: -20,-2 + 372: -19,-2 + 437: -32,-15 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 38: -14,-25 + 39: -9,-25 + 131: 45,1 + 132: 46,1 + 156: 37,-33 + 157: 38,-33 + 158: 39,-33 + 159: 40,-33 + 249: -2,-8 + 250: -1,-8 + 251: 0,-8 + 252: 1,-8 + 253: 2,-8 + 254: 3,-8 + 255: 4,-8 + 256: 5,-8 + 257: -2,-9 + 258: -1,-9 + 259: 0,-9 + 260: 1,-9 + 261: 2,-9 + 262: 3,-9 + 263: 4,-9 + 264: 5,-9 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 19: -10,-28 + 20: -10,-27 + 21: -10,-26 + 22: -10,-25 + 35: -13,-27 + 36: -13,-26 + 46: -8,-27 + 47: -8,-26 + 55: -32,3 + 56: -32,2 + 57: -32,1 + 80: 15,-31 + 81: 15,-30 + 92: 15,-28 + 93: 15,-27 + 160: 41,-34 + 161: 41,-35 + 162: 41,-36 + 421: -54,11 + 422: -54,10 + - node: + color: '#FFFFFFFF' + id: b + decals: + 373: 3.065634,-14.026064 + - node: + cleanable: True + color: '#8932B8FF' + id: bottle + decals: + 357: -55.860275,-1.0248116 + - node: + cleanable: True + color: '#8932B8FF' + id: face + decals: + 356: -56.28215,-1.1186265 + - node: + cleanable: True + color: '#EC0300FF' + id: rune1 + decals: + 434: 27.040031,11.035053 + - node: + cleanable: True + color: '#EC0300FF' + id: rune2 + decals: + 435: 24.998365,11.045477 + - node: + cleanable: True + color: '#18A2D5FF' + id: shop + decals: + 419: -51.038948,13.269489 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 65535 + -1,0: + 0: 65535 + 0,0: + 0: 65535 + 0,-1: + 0: 65535 + -4,-4: + 0: 65535 + -4,-3: + 0: 65535 + -4,-2: + 0: 4607 + 1: 60928 + -4,-1: + 0: 65521 + 1: 14 + -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 + -4,0: + 0: 65535 + -4,1: + 0: 65535 + -4,2: + 0: 61183 + -3,0: + 0: 65535 + -3,1: + 0: 65535 + -3,2: + 0: 61183 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 65535 + 2,0: + 0: 65535 + 3,0: + 0: 65535 + 0,-4: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 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 + -8,0: + 0: 65535 + -7,0: + 0: 65535 + -6,0: + 0: 65535 + -5,0: + 0: 65535 + -5,2: + 0: 61007 + -5,1: + 0: 65535 + -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 + 0,-8: + 0: 65535 + 0,-7: + 0: 65535 + 0,-6: + 0: 65535 + 0,-5: + 0: 65535 + 1,-8: + 0: 65535 + 1,-7: + 0: 65535 + 1,-6: + 0: 65535 + 1,-5: + 0: 65535 + 2,-8: + 0: 65535 + 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 + -10,0: + 0: 65535 + -9,0: + 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 + -11,-8: + 0: 65535 + -11,-7: + 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 + -4,-10: + 0: 65535 + -4,-9: + 0: 65535 + -3,-10: + 0: 65535 + -3,-9: + 0: 65535 + -2,-10: + 0: 65535 + -2,-9: + 0: 65535 + -8,-12: + 0: 65535 + -8,-11: + 0: 65535 + -8,-10: + 0: 65535 + -8,-9: + 0: 65535 + -7,-12: + 0: 65521 + -7,-11: + 0: 65535 + -7,-10: + 0: 65535 + -7,-9: + 0: 65535 + -6,-11: + 0: 65535 + -6,-10: + 0: 65535 + -6,-9: + 0: 65535 + -12,-11: + 0: 65535 + -12,-12: + 0: 65535 + -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: 61951 + 2: 3584 + -10,-11: + 0: 61945 + 3: 6 + 4: 3584 + -10,-10: + 0: 65521 + 5: 14 + -10,-9: + 0: 65535 + -9,-12: + 0: 65535 + -9,-11: + 0: 65535 + -9,-10: + 0: 65535 + -9,-9: + 0: 65535 + -1,-10: + 0: 65535 + -1,-9: + 0: 65535 + 0,-10: + 0: 65535 + 0,-9: + 0: 65535 + 1,-10: + 0: 65535 + 1,-9: + 0: 65535 + 2,-10: + 0: 65535 + 2,-9: + 0: 65535 + 3,-10: + 0: 65535 + 3,-9: + 0: 65535 + -2,-11: + 0: 65535 + -1,-11: + 0: 65535 + 0,-11: + 0: 65535 + 1,-11: + 0: 65535 + 2,-11: + 0: 65535 + 3,-11: + 0: 65535 + -12,-8: + 0: 65535 + -12,-7: + 0: 65535 + -12,-6: + 0: 65535 + -11,-6: + 0: 65535 + -12,-13: + 0: 65535 + -11,-13: + 0: 65535 + -10,-13: + 0: 65535 + -9,-13: + 0: 65535 + -14,-13: + 0: 52468 + -13,-13: + 0: 65534 + -14,-12: + 0: 57292 + -14,-11: + 0: 65535 + -13,-12: + 0: 65529 + 2: 6 + -13,-11: + 0: 65535 + -13,-10: + 0: 65487 + 2: 48 + -12,-5: + 0: 65535 + -11,-5: + 0: 65535 + -8,1: + 0: 63743 + -9,1: + 0: 63487 + -12,0: + 0: 65535 + -11,0: + 0: 65535 + -12,-3: + 0: 65535 + -12,-2: + 0: 65535 + -12,-1: + 0: 65535 + -11,-3: + 0: 65535 + -11,-2: + 0: 65535 + -11,-1: + 0: 65535 + -14,-3: + 0: 65535 + -14,-2: + 0: 65535 + -14,-1: + 0: 65535 + -13,-3: + 0: 65535 + -13,-2: + 0: 65535 + -13,-1: + 0: 65535 + -14,0: + 0: 65535 + -13,0: + 0: 65535 + -11,1: + 0: 65535 + -10,1: + 0: 65535 + -12,-4: + 0: 65535 + -11,-4: + 0: 65535 + -3,-12: + 0: 65535 + -3,-11: + 0: 65535 + -2,-12: + 0: 65535 + -1,-12: + 0: 65535 + -6,-12: + 0: 4369 + 0,-12: + 0: 65535 + 1,-12: + 0: 65535 + 2,-12: + 0: 65535 + 3,-12: + 0: 65535 + -15,-3: + 0: 65535 + -14,-4: + 0: 65535 + -13,-4: + 0: 65535 + -13,-6: + 0: 65535 + -13,-5: + 0: 65535 + -13,-7: + 0: 65535 + 4,-12: + 0: 65535 + 4,-11: + 0: 65535 + 4,-10: + 0: 65535 + 4,-9: + 0: 65535 + 5,-11: + 0: 65535 + 5,-10: + 0: 65535 + 5,-9: + 0: 65535 + 4,-8: + 0: 65535 + 4,-7: + 0: 65535 + 4,-6: + 0: 65535 + 5,-8: + 0: 65535 + 5,-7: + 0: 65535 + 5,-6: + 0: 65535 + -8,-13: + 0: 65535 + -12,1: + 0: 32767 + -13,1: + 0: 65535 + -13,-9: + 0: 65535 + 4,-5: + 0: 65535 + 5,-5: + 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 + 4,0: + 0: 65535 + 5,0: + 0: 65535 + 6,-6: + 0: 65535 + 6,-5: + 0: 65535 + 6,-4: + 0: 65535 + 6,-3: + 0: 65535 + 6,-9: + 0: 65535 + 7,-9: + 0: 65535 + 6,-8: + 0: 65535 + 6,-7: + 0: 65535 + 7,-8: + 0: 65535 + 7,-7: + 0: 65535 + 7,-6: + 0: 65535 + 7,-5: + 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 + 3,1: + 0: 65535 + 2,1: + 0: 65535 + 4,1: + 0: 65535 + 5,1: + 0: 65535 + 6,0: + 0: 65535 + 6,1: + 0: 65535 + 7,0: + 0: 65535 + 7,1: + 0: 65535 + 8,-5: + 0: 65535 + 8,-4: + 0: 65535 + 8,-3: + 0: 65535 + 8,-2: + 0: 65535 + 8,-1: + 0: 65535 + 8,0: + 0: 65535 + 8,1: + 0: 65535 + 2,2: + 0: 65535 + 2,3: + 0: 65535 + 3,2: + 0: 65535 + 3,3: + 0: 65535 + -14,-10: + 0: 65535 + 6,-10: + 0: 65535 + 7,-10: + 0: 65535 + 8,-8: + 0: 65535 + 8,-7: + 0: 65535 + 8,-6: + 0: 65535 + 9,-8: + 0: 65535 + 9,-7: + 0: 65535 + 9,-6: + 0: 65535 + 8,-10: + 0: 65535 + 8,-9: + 0: 65535 + 9,-10: + 0: 65535 + 9,-9: + 0: 65535 + 1,3: + 0: 65535 + 5,-12: + 0: 61455 + 6,-12: + 0: 65535 + 6,-11: + 0: 65535 + 7,-12: + 0: 65535 + 7,-11: + 0: 65535 + 4,2: + 0: 53247 + 5,2: + 0: 65535 + 6,2: + 0: 65535 + 7,2: + 0: 30719 + 9,-5: + 0: 65535 + 10,-8: + 0: 10239 + 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: 65527 + 11,-3: + 0: 65535 + 11,-2: + 0: 65535 + 11,-1: + 0: 65535 + 8,2: + 0: 127 + 9,0: + 0: 65535 + 9,1: + 0: 65535 + 10,0: + 0: 65535 + 10,1: + 0: 65535 + 11,0: + 0: 65535 + 11,1: + 0: 65535 + 8,-12: + 0: 65535 + 8,-11: + 0: 65535 + 9,-11: + 0: 65535 + 10,-11: + 0: 63359 + 10,-10: + 0: 65399 + 10,-9: + 0: 65535 + -3,-13: + 0: 65523 + -2,-13: + 0: 65535 + -2,-14: + 0: 65535 + -1,-14: + 0: 65535 + -1,-13: + 0: 65535 + 0,-14: + 0: 65528 + 0,-13: + 0: 65535 + 1,-14: + 0: 65535 + 1,-13: + 0: 65535 + 2,-13: + 0: 65535 + 3,-13: + 0: 63232 + 12,-2: + 0: 65523 + 12,-1: + 0: 65535 + 12,0: + 0: 36863 + 1,4: + 0: 65535 + 2,4: + 0: 65535 + 3,4: + 0: 65535 + 4,-14: + 0: 65520 + 4,-13: + 0: 62071 + 5,-14: + 0: 65398 + 5,-13: + 0: 62071 + 6,-14: + 0: 65394 + 6,-13: + 0: 62071 + 7,-14: + 0: 65394 + 7,-13: + 0: 62071 + 8,-14: + 0: 30578 + 8,-13: + 0: 62071 + -4,3: + 0: 3839 + -8,2: + 0: 32751 + -8,3: + 0: 1911 + -7,1: + 0: 65535 + -7,2: + 0: 40959 + -6,1: + 0: 65535 + -6,2: + 0: 61311 + -6,3: + 0: 3822 + -5,3: + 0: 20223 + -10,2: + 0: 30591 + -10,3: + 0: 2047 + -9,2: + 0: 30511 + -9,3: + 0: 10239 + 10,-7: + 0: 7171 + 2: 57344 + 9,2: + 0: 12846 + 10,2: + 0: 21855 + 9,-12: + 0: 13119 + 7,-15: + 0: 61440 + 8,-15: + 0: 61440 + 9,-15: + 0: 4096 + 9,-14: + 0: 4369 + 9,-13: + 0: 12305 + -14,1: + 0: 65535 + -3,3: + 0: 28398 + -2,3: + 0: 65503 + 0,3: + 0: 65535 + -7,3: + 0: 39417 + -12,2: + 0: 119 + -12,3: + 0: 34816 + -11,3: + 0: 17780 + -11,2: + 0: 65535 + -12,-15: + 0: 61727 + -12,-14: + 0: 12561 + -11,-15: + 0: 61455 + -10,-15: + 0: 65535 + -10,-14: + 0: 64861 + -9,-15: + 0: 65535 + -15,-14: + 0: 34816 + -15,-13: + 0: 34952 + -14,-14: + 0: 20224 + -13,-14: + 0: 3848 + -15,-12: + 0: 3976 + -15,-11: + 0: 65535 + -15,-10: + 0: 65535 + -15,-9: + 0: 65535 + -14,-9: + 0: 65535 + -16,-2: + 0: 12989 + -16,-1: + 0: 4597 + -16,-3: + 0: 56729 + -15,-2: + 0: 61167 + -15,-1: + 0: 61182 + -15,-4: + 0: 65375 + -16,0: + 0: 61713 + -16,1: + 0: 61493 + -16,2: + 0: 50737 + -16,3: + 0: 8 + -15,0: + 0: 65262 + -15,1: + 0: 65262 + -15,3: + 0: 3769 + -15,2: + 0: 35022 + -14,2: + 0: 65535 + -13,2: + 0: 29183 + -14,-6: + 0: 65535 + -14,-5: + 0: 65535 + -14,-8: + 0: 65535 + -14,-7: + 0: 65535 + -13,-8: + 0: 65535 + -8,-15: + 0: 65535 + -8,-14: + 0: 65535 + -7,-14: + 0: 12851 + -7,-13: + 0: 6615 + -6,-13: + 0: 4352 + 4,3: + 0: 50380 + 5,3: + 0: 62463 + 6,3: + 0: 61695 + 7,3: + 0: 63095 + 10,-6: + 0: 31761 + 2: 238 + 11,-8: + 0: 3151 + 11,-7: + 0: 18368 + 2: 47104 + 11,-6: + 2: 2235 + 0: 51012 + 8,3: + 0: 4352 + 9,3: + 0: 14 + 10,3: + 0: 15 + 11,2: + 0: 48059 + 11,3: + 0: 15 + 10,-12: + 0: 17487 + 11,-12: + 0: 19471 + 11,-11: + 0: 61455 + -3,-14: + 0: 32255 + 3,-14: + 0: 50368 + 12,-3: + 0: 13119 + 12,-4: + 0: 65392 + 13,-4: + 0: 8448 + 13,-3: + 0: 17479 + 13,-1: + 0: 21879 + 13,-2: + 0: 21844 + 12,1: + 0: 52464 + 12,2: + 0: 4102 + 13,1: + 0: 4724 + 13,0: + 0: 17749 + 0,4: + 0: 39935 + 5,-15: + 0: 49152 + 6,-15: + 0: 61440 + 10,-14: + 0: 16384 + 10,-13: + 0: 17612 + 11,-13: + 0: 25360 + 12,-8: + 0: 19 + 12,-7: + 0: 3312 + 2: 62208 + 12,-6: + 2: 1023 + 0: 64512 + 13,-8: + 0: 55040 + 13,-7: + 0: 32569 + 13,-6: + 0: 16247 + 13,-5: + 0: 2009 + 14,-7: + 0: 9009 + 14,-6: + 0: 13090 + 14,-5: + 0: 1 + -4,4: + 0: 15 + -3,4: + 0: 15 + -2,4: + 0: 2187 + -8,4: + 0: 15 + -7,4: + 0: 15 + -6,4: + 0: 15 + -5,4: + 0: 15 + -12,4: + 0: 8 + -11,4: + 0: 15 + -10,4: + 0: 15 + -9,4: + 0: 15 + 12,-12: + 0: 4096 + 12,-11: + 0: 12835 + 12,-10: + 0: 8994 + 12,-9: + 0: 8754 + 11,-10: + 0: 3840 + 11,-9: + 0: 240 + -4,-11: + 0: 65535 + -14,3: + 0: 3839 + -13,3: + 0: 1911 + -16,-4: + 0: 39390 + -15,-7: + 0: 65535 + -15,-6: + 0: 61166 + -15,-5: + 0: 65279 + -15,-8: + 0: 65535 + -1,3: + 0: 65535 + 0,5: + 0: 2201 + 1,5: + 0: 4095 + 2,5: + 0: 2303 + 3,5: + 0: 4095 + -1,4: + 0: 65535 + -1,5: + 0: 255 + -9,-14: + 0: 65535 + -13,-15: + 0: 128 + -7,-15: + 0: 13107 + -5,-9: + 0: 65535 + -16,-5: + 0: 51208 + 4,4: + 0: 196 + 5,4: + 0: 241 + 6,4: + 0: 240 + 7,4: + 0: 244 + 8,4: + 0: 17 + -5,-10: + 0: 65535 + -5,-11: + 0: 65535 + -4,-12: + 0: 61166 + -4,-13: + 0: 61166 + -16,-11: + 0: 39323 + -16,-10: + 0: 39321 + -16,-9: + 0: 39321 + -16,-8: + 0: 39321 + -16,-7: + 0: 43929 + -16,-12: + 0: 11776 + -16,-6: + 0: 50722 + -4,-15: + 0: 57344 + -4,-14: + 0: 61166 + -3,-15: + 0: 4096 + 10,-5: + 0: 30583 + 2,-14: + 0: 13107 + 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: + - 0 + - 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 + - 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 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: OccluderTree + - angularDamping: 10000 + linearDamping: 10000 + type: Shuttle + - type: GridPathfinding + - type: RadiationGridResistance + - type: GasTileOverlay + - id: Shoukou + type: BecomesStation + - type: SpreaderGrid + - shakeTimes: 10 + type: GravityShake + - uid: 35 + components: + - type: MetaData + - type: Transform + - type: Map + - type: PhysicsMap + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - type: GridTree + - type: MovedGrids +- proto: AirAlarm + entities: + - uid: 644 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-30.5 + parent: 34 + type: Transform + - devices: + - 9470 + - 12899 + - 2397 + - 2355 + - 8503 + - 12885 + - 12886 + - 10576 + - 12889 + - 12358 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 738 + components: + - pos: -14.5,-6.5 + parent: 34 + type: Transform + - devices: + - 9522 + - 8610 + - 803 + - 10321 + - 1274 + - 838 + - 839 + - 840 + - 841 + - 10322 + - 1914 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 1929 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-37.5 + parent: 34 + type: Transform + - devices: + - 10712 + - 9595 + - 9599 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 2349 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-20.5 + parent: 34 + type: Transform + - devices: + - 11519 + - 10672 + - 1828 + - 719 + - 180 + - 1121 + - 11251 + - 10311 + - 10312 + - 9901 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 2350 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-8.5 + parent: 34 + type: Transform + - devices: + - 6087 + - 10248 + - 10311 + - 10312 + - 9297 + - 9799 + - 11252 + - 11253 + - 10301 + - 10302 + - 5925 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 5426 + components: + - pos: -0.5,-38.5 + parent: 34 + type: Transform + - devices: + - 6873 + - 7843 + - 12487 + - 9598 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 7099 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,4.5 + parent: 34 + type: Transform + - devices: + - 7094 + - 9777 + - 5925 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 7410 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-44.5 + parent: 34 + type: Transform + - devices: + - 10549 + - 11112 + - 2601 + - 12072 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 9601 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,-8.5 + parent: 34 + type: Transform + - devices: + - 12844 + - 12843 + - 12855 + - 12360 + - 10612 + - 8922 + - 12372 + - 1101 + - 4677 + - 2964 + - 6226 + - 2986 + - 2965 + - 12368 + - 12381 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10291 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-18.5 + parent: 34 + type: Transform + - devices: + - 10339 + - 10590 + - 3340 + - 9925 + - 8805 + - 10598 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10323 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 34 + type: Transform + - devices: + - 8634 + - 9545 + - 737 + - 10324 + - 736 + - 735 + - 817 + - 816 + - 815 + - 793 + - 792 + - 813 + - 818 + - 819 + - 9546 + - 8661 + - 8643 + - 5915 + - 6113 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10334 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-34.5 + parent: 34 + type: Transform + - devices: + - 9609 + - 9610 + - 9637 + - 9621 + - 9594 + - 9598 + - 10578 + - 10692 + - 10715 + - 10712 + - 6873 + - 7843 + - 12487 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10336 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-30.5 + parent: 34 + type: Transform + - devices: + - 8991 + - 8990 + - 10690 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10395 + components: + - pos: -0.5,-25.5 + parent: 34 + type: Transform + - devices: + - 9010 + - 9013 + - 10579 + - 10580 + - 10619 + - 10620 + - 10689 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10461 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-26.5 + parent: 34 + type: Transform + - devices: + - 9633 + - 9615 + - 10689 + - 10690 + - 10692 + - 10691 + - 10619 + - 10620 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10464 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-31.5 + parent: 34 + type: Transform + - devices: + - 8993 + - 8994 + - 10578 + - 10579 + - 10580 + - 10466 + - 10467 + - 10582 + - 10542 + - 10576 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10544 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-24.5 + parent: 34 + type: Transform + - devices: + - 180 + - 1121 + - 11251 + - 10315 + - 10316 + - 10317 + - 2309 + - 1952 + - 2714 + - 1953 + - 8440 + - 617 + - 9469 + - 11905 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10547 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-28.5 + parent: 34 + type: Transform + - devices: + - 8363 + - 9456 + - 2309 + - 10317 + - 2450 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10548 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-38.5 + parent: 34 + type: Transform + - devices: + - 10549 + - 8360 + - 10551 + - 10552 + - 10553 + - 10554 + - 10555 + - 10546 + - 12220 + - 12219 + - 2451 + - 4700 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10559 + components: + - pos: -40.5,-34.5 + parent: 34 + type: Transform + - devices: + - 9373 + - 8409 + - 9372 + - 10556 + - 10557 + - 10551 + - 8404 + - 9374 + - 8364 + - 10552 + - 10553 + - 11517 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10567 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-6.5 + parent: 34 + type: Transform + - devices: + - 9766 + - 9234 + - 9307 + - 9764 + - 10564 + - 10565 + - 10566 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10568 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-16.5 + parent: 34 + type: Transform + - devices: + - 9201 + - 617 + - 10563 + - 9308 + - 9765 + - 11274 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10569 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-18.5 + parent: 34 + type: Transform + - devices: + - 9445 + - 10315 + - 10316 + - 9182 + - 10564 + - 10563 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10570 + components: + - pos: -19.5,1.5 + parent: 34 + type: Transform + - devices: + - 10652 + - 892 + - 115 + - 10309 + - 10308 + - 8729 + - 8728 + - 10307 + - 10306 + - 10305 + - 10304 + - 10302 + - 10301 + - 10566 + - 8700 + - 7981 + - 7973 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10571 + components: + - pos: -6.5,1.5 + parent: 34 + type: Transform + - devices: + - 12015 + - 10652 + - 892 + - 115 + - 280 + - 12016 + - 11983 + - 11984 + - 8724 + - 9704 + - 8722 + - 998 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10574 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-16.5 + parent: 34 + type: Transform + - devices: + - 10320 + - 10321 + - 838 + - 839 + - 840 + - 841 + - 9571 + - 8626 + - 9534 + - 8663 + - 771 + - 9510 + - 10318 + - 10319 + - 1954 + - 10325 + - 10542 + - 10324 + - 737 + - 10322 + - 2714 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10581 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-46.5 + parent: 34 + type: Transform + - devices: + - 9686 + - 9660 + - 8977 + - 4033 + - 4034 + - 3414 + - 4029 + - 10582 + - 8968 + - 9659 + - 6402 + - 5137 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10583 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-27.5 + parent: 34 + type: Transform + - devices: + - 9067 + - 10053 + - 9066 + - 10054 + - 10338 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10584 + components: + - pos: 3.5,-21.5 + parent: 34 + type: Transform + - devices: + - 9044 + - 9590 + - 9061 + - 9562 + - 9057 + - 10325 + - 10326 + - 10860 + - 10859 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10585 + components: + - pos: 26.5,-12.5 + parent: 34 + type: Transform + - devices: + - 10592 + - 3638 + - 9958 + - 8831 + - 8830 + - 9957 + - 8843 + - 9968 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10588 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-15.5 + parent: 34 + type: Transform + - devices: + - 10590 + - 10340 + - 10587 + - 8827 + - 9936 + - 8824 + - 9943 + - 10586 + - 3340 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10594 + components: + - pos: 30.5,-1.5 + parent: 34 + type: Transform + - devices: + - 10592 + - 3638 + - 8872 + - 9980 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10597 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,2.5 + parent: 34 + type: Transform + - devices: + - 9904 + - 8776 + - 8779 + - 9892 + - 9875 + - 8741 + - 9886 + - 10598 + - 10599 + - 8751 + - 10600 + - 8724 + - 6140 + - 10426 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10602 + components: + - pos: 27.5,-21.5 + parent: 34 + type: Transform + - devices: + - 10341 + - 10218 + - 9116 + - 10342 + - 10343 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10603 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-27.5 + parent: 34 + type: Transform + - devices: + - 9121 + - 10184 + - 10185 + - 9120 + - 10346 + - 10342 + - 10343 + - 10605 + - 10604 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10606 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-37.5 + parent: 34 + type: Transform + - devices: + - 10167 + - 9132 + - 10344 + - 10346 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10607 + components: + - pos: 36.5,-30.5 + parent: 34 + type: Transform + - devices: + - 10159 + - 9147 + - 10160 + - 10344 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10611 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-0.5 + parent: 34 + type: Transform + - devices: + - 8922 + - 12360 + - 12855 + - 12372 + - 12843 + - 12844 + - 10612 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10614 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,3.5 + parent: 34 + type: Transform + - devices: + - 10612 + - 10615 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10832 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-26.5 + parent: 34 + type: Transform + - devices: + - 11095 + - 10774 + - 4252 + - 10338 + - 10326 + - 10055 + - 10339 + - 10027 + - 9175 + - 10076 + - 10337 + - 11249 + - 10341 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 11512 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-28.5 + parent: 34 + type: Transform + - devices: + - 10560 + - 10390 + - 8424 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 11513 + components: + - pos: -40.5,-24.5 + parent: 34 + type: Transform + - devices: + - 8362 + - 9414 + - 10546 + - 10555 + - 10554 + - 719 + - 1828 + - 11517 + - 11250 + - 11005 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 11619 + components: + - pos: -46.5,-15.5 + parent: 34 + type: Transform + - devices: + - 10849 + - 8195 + - 1818 + - 11813 + - 9901 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 11816 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,13.5 + parent: 34 + type: Transform + - devices: + - 11902 + - 11894 + - 11830 + - 181 + - 10600 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 11994 + components: + - pos: 1.5,9.5 + parent: 34 + type: Transform + - devices: + - 11986 + - 11985 + - 11983 + - 11984 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 12258 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,-4.5 + parent: 34 + type: Transform + - devices: + - 6020 + - 4957 + - 12360 + - 12855 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 12426 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-43.5 + parent: 34 + type: Transform + - devices: + - 9023 + - 12421 + - 2936 + - 12427 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 12717 + components: + - pos: -14.5,-39.5 + parent: 34 + type: Transform + - devices: + - 12358 + - 2355 + - 1928 + - 12885 + - 12889 + - 10576 + - 8503 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice +- proto: AirCanister + entities: + - uid: 1799 + components: + - pos: -40.5,-29.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 2356 + components: + - pos: -51.5,-14.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 3269 + components: + - pos: -34.5,-50.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 4513 + components: + - pos: 32.5,-16.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 6874 + components: + - pos: -1.5,-42.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice +- proto: Airlock + entities: + - uid: 2219 + components: + - pos: -49.5,-2.5 + parent: 34 + type: Transform + - uid: 2224 + components: + - pos: -47.5,-2.5 + parent: 34 + type: Transform + - uid: 2239 + components: + - pos: -49.5,-8.5 + parent: 34 + type: Transform +- proto: AirlockArmoryGlassLocked + entities: + - uid: 3748 + components: + - pos: 28.5,-4.5 + parent: 34 + type: Transform +- proto: AirlockArmoryLocked + entities: + - uid: 3699 + components: + - name: armory - level I + type: MetaData + - pos: 27.5,-1.5 + parent: 34 + type: Transform +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 1748 + components: + - pos: -41.5,-33.5 + parent: 34 + type: Transform + - uid: 1777 + components: + - pos: -45.5,-32.5 + parent: 34 + type: Transform + - uid: 3782 + components: + - pos: -36.5,-36.5 + parent: 34 + type: Transform + - uid: 12639 + components: + - pos: -49.5,-33.5 + parent: 34 + type: Transform + - uid: 12640 + components: + - pos: -49.5,-34.5 + parent: 34 + type: Transform +- proto: AirlockAtmosphericsLocked + entities: + - uid: 222 + components: + - pos: -49.5,-26.5 + parent: 34 + type: Transform + - uid: 234 + components: + - pos: -49.5,-25.5 + parent: 34 + type: Transform + - uid: 1778 + components: + - pos: -41.5,-30.5 + parent: 34 + type: Transform +- proto: AirlockBarLocked + entities: + - uid: 313 + components: + - name: bartender's room + type: MetaData + - pos: 7.5,-4.5 + parent: 34 + type: Transform +- proto: AirlockCaptainLocked + entities: + - uid: 3554 + components: + - name: captain's room + type: MetaData + - pos: 28.5,-28.5 + parent: 34 + type: Transform +- proto: AirlockCargoGlassLocked + entities: + - uid: 625 + components: + - name: cargo + type: MetaData + - pos: -11.5,-23.5 + parent: 34 + type: Transform + - uid: 9406 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-39.5 + parent: 34 + type: Transform + - uid: 11246 + components: + - pos: -10.5,-28.5 + parent: 34 + type: Transform + - uid: 11260 + components: + - pos: -10.5,-23.5 + parent: 34 + type: Transform + - uid: 12890 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-39.5 + parent: 34 + type: Transform +- proto: AirlockCargoLocked + entities: + - uid: 634 + components: + - name: cargo dock + type: MetaData + - pos: -6.5,-37.5 + parent: 34 + type: Transform +- proto: AirlockChapelLocked + entities: + - uid: 551 + components: + - name: golemancer's room + type: MetaData + - pos: -30.5,-14.5 + parent: 34 + type: Transform +- proto: AirlockChemistryLocked + entities: + - uid: 2704 + components: + - pos: 2.5,-28.5 + parent: 34 + type: Transform +- proto: AirlockChiefEngineerGlassLocked + entities: + - uid: 10722 + components: + - pos: -25.5,-32.5 + parent: 34 + type: Transform + - uid: 12100 + components: + - pos: -35.5,-49.5 + parent: 34 + type: Transform +- proto: AirlockChiefMedicalOfficerLocked + entities: + - uid: 2984 + components: + - pos: 8.5,-33.5 + parent: 34 + type: Transform +- proto: AirlockCommandGlassLocked + entities: + - uid: 4441 + components: + - name: conference room + type: MetaData + - pos: 35.5,-32.5 + parent: 34 + type: Transform + - uid: 5027 + components: + - pos: 30.5,-26.5 + parent: 34 + type: Transform + - uid: 5028 + components: + - pos: 32.5,-26.5 + parent: 34 + type: Transform + - uid: 5029 + components: + - name: bridge + type: MetaData + - pos: 31.5,-30.5 + parent: 34 + type: Transform + - uid: 5538 + components: + - name: command bar + type: MetaData + - pos: 36.5,-37.5 + parent: 34 + type: Transform +- proto: AirlockCommandLocked + entities: + - uid: 4299 + components: + - name: command substation + type: MetaData + - pos: 34.5,-28.5 + parent: 34 + type: Transform + - uid: 6002 + components: + - name: AI chamber + type: MetaData + - pos: 46.5,-23.5 + parent: 34 + type: Transform +- proto: AirlockDetectiveLocked + entities: + - uid: 72 + components: + - pos: -8.5,1.5 + parent: 34 + type: Transform +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 1109 + components: + - pos: -30.5,-28.5 + parent: 34 + type: Transform + - uid: 1597 + components: + - pos: -36.5,-30.5 + parent: 34 + type: Transform + - uid: 1749 + components: + - pos: -36.5,-33.5 + parent: 34 + type: Transform + - uid: 1800 + components: + - pos: -37.5,-24.5 + parent: 34 + type: Transform + - uid: 1811 + components: + - pos: -38.5,-24.5 + parent: 34 + type: Transform + - uid: 1831 + components: + - pos: -35.5,-28.5 + parent: 34 + type: Transform + - uid: 1832 + components: + - pos: -34.5,-28.5 + parent: 34 + type: Transform + - uid: 2304 + components: + - name: engineering front + type: MetaData + - pos: -25.5,-24.5 + parent: 34 + type: Transform + - uid: 2332 + components: + - pos: -33.5,-26.5 + parent: 34 + type: Transform + - uid: 3197 + components: + - pos: -33.5,-41.5 + parent: 34 + type: Transform + - uid: 5816 + components: + - name: south solars + type: MetaData + - pos: 29.5,-42.5 + parent: 34 + type: Transform + - uid: 7039 + components: + - name: engineering north + type: MetaData + - pos: -25.5,1.5 + parent: 34 + type: Transform + - uid: 7069 + components: + - name: engineering north + type: MetaData + - pos: -24.5,1.5 + parent: 34 + type: Transform + - uid: 10840 + components: + - pos: -39.5,-28.5 + parent: 34 + type: Transform + - uid: 11521 + components: + - pos: -43.5,-25.5 + parent: 34 + type: Transform + - uid: 11522 + components: + - pos: -43.5,-26.5 + parent: 34 + type: Transform +- proto: AirlockEngineeringLocked + entities: + - uid: 740 + components: + - pos: -20.5,-13.5 + parent: 34 + type: Transform + - uid: 1919 + components: + - pos: -21.5,-29.5 + parent: 34 + type: Transform + - uid: 3785 + components: + - pos: -27.5,-26.5 + parent: 34 + type: Transform + - uid: 3800 + components: + - pos: 9.5,-17.5 + parent: 34 + type: Transform + - uid: 4310 + components: + - pos: 36.5,-26.5 + parent: 34 + type: Transform + - uid: 4864 + components: + - pos: 36.5,-17.5 + parent: 34 + type: Transform + - uid: 8119 + components: + - pos: 22.5,6.5 + parent: 34 + type: Transform + - uid: 10251 + components: + - pos: -55.5,-4.5 + parent: 34 + type: Transform + - uid: 11233 + components: + - pos: 16.5,-43.5 + parent: 34 + type: Transform +- proto: AirlockExternalGlass + entities: + - uid: 3371 + components: + - pos: -2.5,-51.5 + parent: 34 + type: Transform + - uid: 4106 + components: + - pos: 5.5,-51.5 + parent: 34 + type: Transform +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 1802 + components: + - pos: -23.5,-41.5 + parent: 34 + type: Transform + - links: + - 11768 + - 11682 + type: DeviceLinkSink + - linkedPorts: + 11682: + - DoorStatus: DoorBolt + 11768: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 11682 + components: + - pos: -26.5,-42.5 + parent: 34 + type: Transform + - links: + - 11911 + - 1802 + type: DeviceLinkSink + - linkedPorts: + 1802: + - DoorStatus: DoorBolt + 11911: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 11768 + components: + - pos: -26.5,-41.5 + parent: 34 + type: Transform + - links: + - 11911 + - 1802 + type: DeviceLinkSink + - linkedPorts: + 11911: + - DoorStatus: DoorBolt + 1802: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 11911 + components: + - pos: -23.5,-42.5 + parent: 34 + type: Transform + - links: + - 11768 + - 11682 + type: DeviceLinkSink + - linkedPorts: + 11682: + - DoorStatus: DoorBolt + 11768: + - DoorStatus: DoorBolt + type: DeviceLinkSource +- proto: AirlockExternalGlassLocked + entities: + - uid: 1120 + components: + - pos: -54.5,-40.5 + parent: 34 + type: Transform + - links: + - 2439 + type: DeviceLinkSink + - linkedPorts: + 2439: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 1497 + components: + - pos: -52.5,-44.5 + parent: 34 + type: Transform + - links: + - 1498 + type: DeviceLinkSink + - linkedPorts: + 1498: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 1498 + components: + - pos: -51.5,-42.5 + parent: 34 + type: Transform + - links: + - 1497 + type: DeviceLinkSink + - linkedPorts: + 1497: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 2439 + components: + - pos: -53.5,-37.5 + parent: 34 + type: Transform + - links: + - 1120 + type: DeviceLinkSink + - linkedPorts: + 1120: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 5964 + components: + - pos: 38.5,-23.5 + parent: 34 + type: Transform + - uid: 5965 + components: + - pos: 40.5,-23.5 + parent: 34 + type: Transform + - uid: 7070 + components: + - pos: -25.5,6.5 + parent: 34 + type: Transform + - links: + - 7072 + - 7071 + type: DeviceLinkSink + - linkedPorts: + 7071: + - DoorStatus: DoorBolt + 7072: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 7071 + components: + - pos: -24.5,8.5 + parent: 34 + type: Transform + - links: + - 7070 + type: DeviceLinkSink + - linkedPorts: + 7070: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 7072 + components: + - pos: -27.5,8.5 + parent: 34 + type: Transform + - links: + - 7070 + type: DeviceLinkSink + - linkedPorts: + 7070: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 7092 + components: + - pos: 13.5,-48.5 + parent: 34 + type: Transform + - uid: 9347 + components: + - pos: 34.5,-43.5 + parent: 34 + type: Transform + - links: + - 9348 + type: DeviceLinkSink + - linkedPorts: + 9348: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 9348 + components: + - pos: 36.5,-46.5 + parent: 34 + type: Transform + - links: + - 9347 + type: DeviceLinkSink + - linkedPorts: + 9347: + - DoorStatus: DoorBolt + type: DeviceLinkSource +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 3360 + components: + - rot: 3.141592653589793 rad + pos: 12.5,20.5 + parent: 34 + type: Transform + - uid: 5258 + components: + - pos: -3.5,-55.5 + parent: 34 + type: Transform + - uid: 5259 + components: + - pos: -1.5,-55.5 + parent: 34 + type: Transform + - uid: 5260 + components: + - pos: 4.5,-55.5 + parent: 34 + type: Transform + - uid: 5261 + components: + - pos: 6.5,-55.5 + parent: 34 + type: Transform +- proto: AirlockExternalGlassShuttleEscape + entities: + - uid: 7424 + components: + - pos: 12.5,-49.5 + parent: 34 + type: Transform + - uid: 11793 + components: + - rot: 3.141592653589793 rad + pos: -3.5,15.5 + parent: 34 + type: Transform + - uid: 11794 + components: + - rot: 3.141592653589793 rad + pos: 0.5,15.5 + parent: 34 + type: Transform +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 1076 + components: + - pos: -18.5,-43.5 + parent: 34 + type: Transform + - uid: 4516 + components: + - pos: -20.5,-43.5 + parent: 34 + type: Transform + - uid: 10885 + components: + - rot: 3.141592653589793 rad + pos: 6.5,20.5 + parent: 34 + type: Transform +- proto: AirlockFreezerKitchenHydroLocked + entities: + - uid: 41 + components: + - name: walk-in freezer + type: MetaData + - pos: -13.5,-2.5 + parent: 34 + type: Transform +- proto: AirlockGlass + entities: + - uid: 260 + components: + - pos: 6.5,0.5 + parent: 34 + type: Transform + - uid: 302 + components: + - pos: -2.5,-8.5 + parent: 34 + type: Transform + - uid: 303 + components: + - pos: -2.5,-10.5 + parent: 34 + type: Transform + - uid: 1004 + components: + - name: station square + type: MetaData + - pos: -4.5,-3.5 + parent: 34 + type: Transform + - uid: 2000 + components: + - name: station square + type: MetaData + - pos: -2.5,-23.5 + parent: 34 + type: Transform + - uid: 2173 + components: + - name: living area + type: MetaData + - pos: -33.5,-0.5 + parent: 34 + type: Transform + - uid: 2661 + components: + - name: station square + type: MetaData + - pos: -4.5,-30.5 + parent: 34 + type: Transform + - uid: 2715 + components: + - name: station square + type: MetaData + - pos: -15.5,-22.5 + parent: 34 + type: Transform + - uid: 2985 + components: + - name: south dock + type: MetaData + - pos: -4.5,-39.5 + parent: 34 + type: Transform + - uid: 3821 + components: + - pos: 13.5,-20.5 + parent: 34 + type: Transform + - uid: 3823 + components: + - pos: 13.5,-2.5 + parent: 34 + type: Transform + - uid: 4184 + components: + - pos: 10.5,-23.5 + parent: 34 + type: Transform + - uid: 4506 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-48.5 + parent: 34 + type: Transform + - uid: 5002 + components: + - name: arcade + type: MetaData + - pos: 15.5,4.5 + parent: 34 + type: Transform + - uid: 7161 + components: + - name: courtroom + type: MetaData + - pos: 15.5,-25.5 + parent: 34 + type: Transform + - uid: 7175 + components: + - pos: 23.5,-23.5 + parent: 34 + type: Transform + - uid: 7177 + components: + - name: living area + type: MetaData + - pos: -33.5,-1.5 + parent: 34 + type: Transform + - uid: 7178 + components: + - name: living area + type: MetaData + - pos: -38.5,-14.5 + parent: 34 + type: Transform + - uid: 7179 + components: + - name: living area + type: MetaData + - pos: -37.5,-14.5 + parent: 34 + type: Transform + - uid: 7580 + components: + - name: north dock + type: MetaData + - pos: 13.5,12.5 + parent: 34 + type: Transform + - uid: 11782 + components: + - pos: 3.5,14.5 + parent: 34 + type: Transform +- proto: AirlockGlassShuttleEasyPry + entities: + - uid: 686 + components: + - pos: -38.5,-59.5 + parent: 34 + type: Transform + - uid: 687 + components: + - pos: -37.5,-59.5 + parent: 34 + type: Transform +- proto: AirlockHeadOfPersonnelGlassLocked + entities: + - uid: 1956 + components: + - name: head of personnel's office + type: MetaData + - pos: -15.5,-17.5 + parent: 34 + type: Transform +- proto: AirlockHeadOfSecurityLocked + entities: + - uid: 692 + components: + - pos: 31.5,-11.5 + parent: 34 + type: Transform + - uid: 3606 + components: + - name: head of security's office + type: MetaData + - pos: 28.5,-12.5 + parent: 34 + type: Transform +- proto: AirlockHydroGlassLocked + entities: + - uid: 392 + components: + - name: walk-in freezer + type: MetaData + - pos: -15.5,-5.5 + parent: 34 + type: Transform + - uid: 881 + components: + - name: botany + type: MetaData + - pos: -15.5,-9.5 + parent: 34 + type: Transform +- proto: AirlockJanitorLocked + entities: + - uid: 464 + components: + - name: janitor's closet + type: MetaData + - pos: 5.5,-21.5 + parent: 34 + type: Transform +- proto: AirlockKitchenGlassLocked + entities: + - uid: 350 + components: + - name: kitchen + type: MetaData + - pos: -6.5,-7.5 + parent: 34 + type: Transform + - uid: 891 + components: + - name: walk-in freezer + type: MetaData + - pos: -11.5,-5.5 + parent: 34 + type: Transform + - uid: 3962 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-43.5 + parent: 34 + type: Transform +- proto: AirlockLawyerLocked + entities: + - uid: 5542 + components: + - pos: 9.5,4.5 + parent: 34 + type: Transform +- proto: AirlockMaint + entities: + - uid: 3381 + components: + - pos: 38.5,-16.5 + parent: 34 + type: Transform +- proto: AirlockMaintCargoLocked + entities: + - uid: 693 + components: + - pos: -13.5,-30.5 + parent: 34 + type: Transform + - uid: 727 + components: + - pos: -21.5,-38.5 + parent: 34 + type: Transform +- proto: AirlockMaintCommandLocked + entities: + - uid: 4005 + components: + - pos: 31.5,-38.5 + parent: 34 + type: Transform + - uid: 7158 + components: + - pos: 34.5,-40.5 + parent: 34 + type: Transform +- proto: AirlockMaintDetectiveLocked + entities: + - uid: 6116 + components: + - pos: -6.5,6.5 + parent: 34 + type: Transform +- proto: AirlockMaintEngiLocked + entities: + - uid: 4141 + components: + - pos: -23.5,-34.5 + parent: 34 + type: Transform +- proto: AirlockMaintHOPLocked + entities: + - uid: 6220 + components: + - pos: -20.5,-17.5 + parent: 34 + type: Transform +- proto: AirlockMaintHydroLocked + entities: + - uid: 383 + components: + - pos: -21.5,-5.5 + parent: 34 + type: Transform +- proto: AirlockMaintJanitorLocked + entities: + - uid: 429 + components: + - pos: 5.5,-16.5 + parent: 34 + type: Transform +- proto: AirlockMaintLawyerLocked + entities: + - uid: 498 + components: + - pos: 8.5,9.5 + parent: 34 + type: Transform +- proto: AirlockMaintLocked + entities: + - uid: 243 + components: + - pos: 11.5,10.5 + parent: 34 + type: Transform + - uid: 307 + components: + - pos: -2.5,-14.5 + parent: 34 + type: Transform + - uid: 318 + components: + - pos: 4.5,-13.5 + parent: 34 + type: Transform + - uid: 406 + components: + - pos: -23.5,-14.5 + parent: 34 + type: Transform + - uid: 2740 + components: + - pos: -21.5,-19.5 + parent: 34 + type: Transform + - uid: 2741 + components: + - pos: -20.5,-11.5 + parent: 34 + type: Transform + - uid: 2742 + components: + - pos: -22.5,-2.5 + parent: 34 + type: Transform + - uid: 4984 + components: + - pos: 19.5,10.5 + parent: 34 + type: Transform + - uid: 5675 + components: + - pos: -41.5,0.5 + parent: 34 + type: Transform + - uid: 6221 + components: + - pos: -17.5,-28.5 + parent: 34 + type: Transform + - uid: 6238 + components: + - pos: 0.5,9.5 + parent: 34 + type: Transform + - uid: 7147 + components: + - pos: -49.5,-11.5 + parent: 34 + type: Transform + - uid: 7148 + components: + - pos: -54.5,2.5 + parent: 34 + type: Transform + - uid: 7149 + components: + - pos: -52.5,-0.5 + parent: 34 + type: Transform + - uid: 7152 + components: + - pos: 9.5,-11.5 + parent: 34 + type: Transform + - uid: 7153 + components: + - pos: -2.5,12.5 + parent: 34 + type: Transform + - uid: 7154 + components: + - pos: 33.5,-20.5 + parent: 34 + type: Transform + - uid: 7155 + components: + - pos: 21.5,-40.5 + parent: 34 + type: Transform + - uid: 7156 + components: + - pos: 1.5,-45.5 + parent: 34 + type: Transform + - uid: 7740 + components: + - pos: 17.5,-41.5 + parent: 34 + type: Transform + - uid: 7760 + components: + - pos: -40.5,-12.5 + parent: 34 + type: Transform + - uid: 11286 + components: + - pos: 26.5,9.5 + parent: 34 + type: Transform + - uid: 11305 + components: + - name: disposals + type: MetaData + - pos: -41.5,6.5 + parent: 34 + type: Transform + - uid: 12370 + components: + - pos: 15.5,8.5 + parent: 34 + type: Transform + - uid: 12880 + components: + - pos: 8.5,12.5 + parent: 34 + type: Transform +- proto: AirlockMaintMedLocked + entities: + - uid: 8517 + components: + - pos: 3.5,-43.5 + parent: 34 + type: Transform + - uid: 11237 + components: + - pos: 12.5,-41.5 + parent: 34 + type: Transform +- proto: AirlockMaintReporterLocked + entities: + - uid: 6235 + components: + - pos: 15.5,-39.5 + parent: 34 + type: Transform +- proto: AirlockMaintRnDLocked + entities: + - uid: 258 + components: + - pos: -47.5,-15.5 + parent: 34 + type: Transform + - uid: 457 + components: + - pos: -24.5,-10.5 + parent: 34 + type: Transform + - uid: 2385 + components: + - pos: -43.5,-14.5 + parent: 34 + type: Transform + - uid: 5673 + components: + - pos: -39.5,3.5 + parent: 34 + type: Transform +- proto: AirlockMaintSalvageLocked + entities: + - uid: 921 + components: + - pos: -19.5,-34.5 + parent: 34 + type: Transform +- proto: AirlockMaintSecLocked + entities: + - uid: 4757 + components: + - pos: 36.5,-5.5 + parent: 34 + type: Transform + - uid: 8115 + components: + - pos: 22.5,2.5 + parent: 34 + type: Transform +- proto: AirlockMaintSecurityLawyerLocked + entities: + - uid: 78 + components: + - pos: 33.5,-15.5 + parent: 34 + type: Transform + - uid: 160 + components: + - pos: 33.5,-0.5 + parent: 34 + type: Transform +- proto: AirlockMaintTheatreLocked + entities: + - uid: 3088 + components: + - pos: 0.5,-16.5 + parent: 34 + type: Transform +- proto: AirlockMantisLocked + entities: + - uid: 136 + components: + - pos: -30.5,0.5 + parent: 34 + type: Transform +- proto: AirlockMedicalGlass + entities: + - uid: 2976 + components: + - pos: -2.5,-33.5 + parent: 34 + type: Transform + - uid: 2977 + components: + - pos: -2.5,-32.5 + parent: 34 + type: Transform +- proto: AirlockMedicalGlassLocked + entities: + - uid: 2978 + components: + - pos: 1.5,-33.5 + parent: 34 + type: Transform + - uid: 2979 + components: + - pos: 4.5,-30.5 + parent: 34 + type: Transform + - uid: 2980 + components: + - pos: 4.5,-25.5 + parent: 34 + type: Transform + - uid: 2982 + components: + - pos: 8.5,-37.5 + parent: 34 + type: Transform +- proto: AirlockMedicalLocked + entities: + - uid: 2975 + components: + - pos: 6.5,-28.5 + parent: 34 + type: Transform + - uid: 7752 + components: + - pos: 2.5,-40.5 + parent: 34 + type: Transform + - uid: 10662 + components: + - pos: 5.5,-40.5 + parent: 34 + type: Transform +- proto: AirlockMusicianLocked + entities: + - uid: 175 + components: + - pos: 6.5,-8.5 + parent: 34 + type: Transform +- proto: AirlockQuartermasterLocked + entities: + - uid: 4792 + components: + - pos: -14.5,-37.5 + parent: 34 + type: Transform +- proto: AirlockReporterLocked + entities: + - uid: 4003 + components: + - pos: 19.5,-36.5 + parent: 34 + type: Transform +- proto: AirlockResearchDirectorLocked + entities: + - uid: 555 + components: + - pos: -32.5,-5.5 + parent: 34 + type: Transform +- proto: AirlockSalvageGlassLocked + entities: + - uid: 922 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-33.5 + parent: 34 + type: Transform + - uid: 4875 + components: + - pos: -13.5,-34.5 + parent: 34 + type: Transform +- proto: AirlockScienceGlass + entities: + - uid: 545 + components: + - pos: -27.5,-20.5 + parent: 34 + type: Transform + - uid: 546 + components: + - pos: -26.5,-20.5 + parent: 34 + type: Transform +- proto: AirlockScienceGlassLocked + entities: + - uid: 586 + components: + - name: locker room + type: MetaData + - pos: -32.5,-10.5 + parent: 34 + type: Transform + - uid: 12738 + components: + - pos: -40.5,-22.5 + parent: 34 + type: Transform +- proto: AirlockScienceLocked + entities: + - uid: 541 + components: + - name: epistemics front + type: MetaData + - pos: -34.5,-12.5 + parent: 34 + type: Transform + - uid: 549 + components: + - name: epistemics front + type: MetaData + - pos: -30.5,-18.5 + parent: 34 + type: Transform + - uid: 589 + components: + - name: epistemics + type: MetaData + - pos: -28.5,-12.5 + parent: 34 + type: Transform + - uid: 5063 + components: + - name: epistemics + type: MetaData + - pos: -31.5,-2.5 + parent: 34 + type: Transform + - uid: 5920 + components: + - name: anomaly lab + type: MetaData + - pos: -37.5,0.5 + parent: 34 + type: Transform +- proto: AirlockSecurity + entities: + - uid: 4798 + components: + - pos: 38.5,2.5 + parent: 34 + type: Transform +- proto: AirlockSecurityGlass + entities: + - uid: 92 + components: + - pos: 41.5,-10.5 + parent: 34 + type: Transform + - uid: 3306 + components: + - pos: 16.5,-13.5 + parent: 34 + type: Transform + - uid: 3389 + components: + - pos: 16.5,-14.5 + parent: 34 + type: Transform + - uid: 4129 + components: + - pos: 46.5,-9.5 + parent: 34 + type: Transform + - uid: 4153 + components: + - pos: 44.5,-5.5 + parent: 34 + type: Transform + - uid: 4156 + components: + - pos: 43.5,-5.5 + parent: 34 + type: Transform + - uid: 4159 + components: + - pos: 41.5,-13.5 + parent: 34 + type: Transform + - uid: 4160 + components: + - pos: 46.5,-12.5 + parent: 34 + type: Transform + - uid: 4438 + components: + - pos: 41.5,-7.5 + parent: 34 + type: Transform + - uid: 4448 + components: + - pos: 46.5,-6.5 + parent: 34 + type: Transform + - uid: 4453 + components: + - pos: 46.5,-3.5 + parent: 34 + type: Transform + - uid: 4796 + components: + - pos: 42.5,2.5 + parent: 34 + type: Transform + - uid: 6699 + components: + - rot: 3.141592653589793 rad + pos: 46.5,0.5 + parent: 34 + type: Transform +- proto: AirlockSecurityGlassLocked + entities: + - uid: 3391 + components: + - name: communal cell + type: MetaData + - pos: 18.5,-9.5 + parent: 34 + type: Transform + - links: + - 3514 + type: DeviceLinkSink + - uid: 3561 + components: + - name: locker room + type: MetaData + - pos: 21.5,-17.5 + parent: 34 + type: Transform + - uid: 4799 + components: + - name: extended confinement + type: MetaData + - pos: 37.5,-3.5 + parent: 34 + type: Transform + - uid: 12845 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-3.5 + parent: 34 + type: Transform +- proto: AirlockSecurityLawyerGlassLocked + entities: + - uid: 4633 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-8.5 + parent: 34 + type: Transform + - uid: 12195 + components: + - pos: 22.5,-8.5 + parent: 34 + type: Transform +- proto: AirlockSecurityLawyerLocked + entities: + - uid: 3475 + components: + - name: security + type: MetaData + - pos: 20.5,-11.5 + parent: 34 + type: Transform + - uid: 3865 + components: + - name: courtroom + type: MetaData + - pos: 19.5,-33.5 + parent: 34 + type: Transform + - uid: 4889 + components: + - pos: 27.5,-17.5 + parent: 34 + type: Transform +- proto: AirlockSecurityLocked + entities: + - uid: 220 + components: + - pos: 20.5,0.5 + parent: 34 + type: Transform + - uid: 470 + components: + - pos: 15.5,-0.5 + parent: 34 + type: Transform + - uid: 999 + components: + - name: communal cell + type: MetaData + - pos: 16.5,-8.5 + parent: 34 + type: Transform + - links: + - 3514 + type: DeviceLinkSink + - uid: 3388 + components: + - name: locker room + type: MetaData + - pos: 18.5,-15.5 + parent: 34 + type: Transform +- proto: AirlockServiceGlassLocked + entities: + - uid: 5 + components: + - name: service storage + type: MetaData + - pos: -14.5,1.5 + parent: 34 + type: Transform + - uid: 5547 + components: + - name: service storage + type: MetaData + - pos: -17.5,1.5 + parent: 34 + type: Transform +- proto: AirlockTheatreLocked + entities: + - uid: 1021 + components: + - name: clown/mime room + type: MetaData + - pos: 0.5,-21.5 + parent: 34 + type: Transform +- proto: AirSensor + entities: + - uid: 2397 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-35.5 + parent: 34 + type: Transform + - uid: 10604 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-27.5 + parent: 34 + type: Transform + - uid: 10605 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-25.5 + parent: 34 + type: Transform + - uid: 11813 + components: + - pos: -44.5,-19.5 + parent: 34 + type: Transform +- proto: AltarSpawner + entities: + - uid: 38 + components: + - pos: -26.5,-13.5 + parent: 34 + type: Transform +- proto: AlwaysPoweredWallLight + entities: + - uid: 11193 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,11.5 + parent: 34 + type: Transform + - uid: 11194 + components: + - pos: -52.5,13.5 + parent: 34 + type: Transform +- proto: AmeController + entities: + - uid: 1150 + components: + - pos: -29.5,-35.5 + parent: 34 + type: Transform +- proto: AnomalyScanner + entities: + - uid: 5908 + components: + - pos: -35.573765,1.4932911 + parent: 34 + type: Transform + - uid: 11667 + components: + - pos: -35.42793,1.7643127 + parent: 34 + type: Transform +- proto: APCBasic + entities: + - uid: 371 + components: + - pos: 6.5,-13.5 + parent: 34 + type: Transform + - uid: 1890 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-1.5 + parent: 34 + type: Transform + - uid: 2140 + components: + - pos: 4.5,-21.5 + parent: 34 + type: Transform + - uid: 2508 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-5.5 + parent: 34 + type: Transform + - uid: 2644 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-40.5 + parent: 34 + type: Transform + - uid: 2724 + components: + - pos: 19.5,-21.5 + parent: 34 + type: Transform + - uid: 2725 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-30.5 + parent: 34 + type: Transform + - uid: 2808 + components: + - pos: -12.5,-23.5 + parent: 34 + type: Transform + - uid: 2809 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-16.5 + parent: 34 + type: Transform + - uid: 2810 + components: + - pos: -15.5,-6.5 + parent: 34 + type: Transform + - uid: 2811 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 34 + type: Transform + - uid: 2850 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-7.5 + parent: 34 + type: Transform + - uid: 2959 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-42.5 + parent: 34 + type: Transform + - uid: 3031 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,5.5 + parent: 34 + type: Transform + - uid: 3400 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-31.5 + parent: 34 + type: Transform + - uid: 3417 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-29.5 + parent: 34 + type: Transform + - uid: 3731 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-44.5 + parent: 34 + type: Transform + - uid: 3989 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-30.5 + parent: 34 + type: Transform + - uid: 4579 + components: + - rot: 3.141592653589793 rad + pos: 41.5,-5.5 + parent: 34 + type: Transform + - uid: 5144 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-33.5 + parent: 34 + type: Transform + - uid: 5145 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-36.5 + parent: 34 + type: Transform + - uid: 5158 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-30.5 + parent: 34 + type: Transform + - uid: 5627 + components: + - rot: 3.141592653589793 rad + pos: -35.5,-2.5 + parent: 34 + type: Transform + - uid: 5746 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,3.5 + parent: 34 + type: Transform + - uid: 5825 + components: + - pos: 31.5,-42.5 + parent: 34 + type: Transform + - uid: 6792 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-18.5 + parent: 34 + type: Transform + - uid: 6869 + components: + - pos: 18.5,-11.5 + parent: 34 + type: Transform + - uid: 6870 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-3.5 + parent: 34 + type: Transform + - uid: 7003 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-17.5 + parent: 34 + type: Transform + - uid: 7206 + components: + - pos: 32.5,-20.5 + parent: 34 + type: Transform + - uid: 7314 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-2.5 + parent: 34 + type: Transform + - uid: 7348 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 34 + type: Transform + - uid: 7427 + components: + - pos: -19.5,-39.5 + parent: 34 + type: Transform + - uid: 7429 + components: + - pos: -31.5,-20.5 + parent: 34 + type: Transform + - uid: 7488 + components: + - pos: -52.5,-11.5 + parent: 34 + type: Transform + - uid: 7557 + components: + - rot: 3.141592653589793 rad + pos: 11.5,12.5 + parent: 34 + type: Transform + - uid: 7738 + components: + - pos: -14.5,-31.5 + parent: 34 + type: Transform + - uid: 11238 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-38.5 + parent: 34 + type: Transform + - uid: 11392 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-20.5 + parent: 34 + type: Transform + - uid: 11434 + components: + - pos: -44.5,-23.5 + parent: 34 + type: Transform + - uid: 11498 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-28.5 + parent: 34 + type: Transform + - uid: 11950 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,7.5 + parent: 34 + type: Transform +- proto: APCHighCapacity + entities: + - uid: 1222 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-32.5 + parent: 34 + type: Transform + - uid: 2988 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-13.5 + parent: 34 + type: Transform + - uid: 3206 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-49.5 + parent: 34 + type: Transform + - uid: 6871 + components: + - pos: 26.5,5.5 + parent: 34 + type: Transform + - uid: 7413 + components: + - pos: -27.5,-32.5 + parent: 34 + type: Transform + - uid: 7624 + components: + - rot: 3.141592653589793 rad + pos: 25.5,6.5 + parent: 34 + type: Transform + - uid: 7708 + components: + - pos: -21.5,-9.5 + parent: 34 + type: Transform +- proto: APCHyperCapacity + entities: + - uid: 6022 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,-24.5 + parent: 34 + type: Transform +- proto: AppraisalTool + entities: + - uid: 895 + components: + - flags: InContainer + type: MetaData + - parent: 431 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: AtmosDeviceFanTiny + entities: + - uid: 84 + components: + - pos: -11.5,-5.5 + parent: 34 + type: Transform + - uid: 232 + components: + - pos: -13.5,-2.5 + parent: 34 + type: Transform + - uid: 676 + components: + - pos: 12.5,-49.5 + parent: 34 + type: Transform + - uid: 888 + components: + - pos: -15.5,-5.5 + parent: 34 + type: Transform + - uid: 2545 + components: + - pos: -20.5,-43.5 + parent: 34 + type: Transform + - uid: 3291 + components: + - pos: 12.5,20.5 + parent: 34 + type: Transform + - uid: 4071 + components: + - pos: -1.5,-55.5 + parent: 34 + type: Transform + - uid: 4072 + components: + - pos: -3.5,-55.5 + parent: 34 + type: Transform + - uid: 4452 + components: + - pos: 13.5,-48.5 + parent: 34 + type: Transform + - uid: 5262 + components: + - pos: 4.5,-55.5 + parent: 34 + type: Transform + - uid: 5263 + components: + - pos: 6.5,-55.5 + parent: 34 + type: Transform + - uid: 6225 + components: + - pos: 6.5,20.5 + parent: 34 + type: Transform + - uid: 7552 + components: + - pos: -18.5,-43.5 + parent: 34 + type: Transform + - uid: 11917 + components: + - pos: -3.5,15.5 + parent: 34 + type: Transform + - uid: 11918 + components: + - pos: 0.5,15.5 + parent: 34 + type: Transform +- proto: AtmosFixBlockerMarker + entities: + - uid: 162 + components: + - pos: 45.5,-24.5 + parent: 34 + type: Transform + - uid: 163 + components: + - pos: 45.5,-22.5 + parent: 34 + type: Transform + - uid: 172 + components: + - pos: 43.5,-24.5 + parent: 34 + type: Transform + - uid: 178 + components: + - pos: 45.5,-23.5 + parent: 34 + type: Transform + - uid: 196 + components: + - pos: 44.5,-24.5 + parent: 34 + type: Transform + - uid: 197 + components: + - pos: 44.5,-23.5 + parent: 34 + type: Transform + - uid: 207 + components: + - pos: 44.5,-22.5 + parent: 34 + type: Transform + - uid: 1551 + components: + - pos: -50.5,-47.5 + parent: 34 + type: Transform + - uid: 1553 + components: + - pos: -37.5,-45.5 + parent: 34 + type: Transform + - uid: 1555 + components: + - pos: -49.5,-47.5 + parent: 34 + type: Transform + - uid: 1556 + components: + - pos: -36.5,-45.5 + parent: 34 + type: Transform + - uid: 1557 + components: + - pos: -38.5,-45.5 + parent: 34 + type: Transform + - uid: 1574 + components: + - pos: -51.5,-38.5 + parent: 34 + type: Transform + - uid: 1575 + components: + - pos: -50.5,-38.5 + parent: 34 + type: Transform + - uid: 6541 + components: + - pos: 47.5,-25.5 + parent: 34 + type: Transform + - uid: 6542 + components: + - pos: 47.5,-24.5 + parent: 34 + type: Transform + - uid: 6543 + components: + - pos: 47.5,-23.5 + parent: 34 + type: Transform + - uid: 6544 + components: + - pos: 47.5,-22.5 + parent: 34 + type: Transform + - uid: 6545 + components: + - pos: 47.5,-21.5 + parent: 34 + type: Transform + - uid: 6546 + components: + - pos: 48.5,-25.5 + parent: 34 + type: Transform + - uid: 6547 + components: + - pos: 48.5,-24.5 + parent: 34 + type: Transform + - uid: 6548 + components: + - pos: 48.5,-23.5 + parent: 34 + type: Transform + - uid: 6549 + components: + - pos: 48.5,-22.5 + parent: 34 + type: Transform + - uid: 6550 + components: + - pos: 48.5,-21.5 + parent: 34 + type: Transform + - uid: 6551 + components: + - pos: 49.5,-25.5 + parent: 34 + type: Transform + - uid: 6552 + components: + - pos: 49.5,-24.5 + parent: 34 + type: Transform + - uid: 6553 + components: + - pos: 49.5,-23.5 + parent: 34 + type: Transform + - uid: 6554 + components: + - pos: 49.5,-22.5 + parent: 34 + type: Transform + - uid: 6555 + components: + - pos: 49.5,-21.5 + parent: 34 + type: Transform + - uid: 6556 + components: + - pos: 50.5,-22.5 + parent: 34 + type: Transform + - uid: 6557 + components: + - pos: 50.5,-23.5 + parent: 34 + type: Transform + - uid: 6558 + components: + - pos: 50.5,-24.5 + parent: 34 + type: Transform + - uid: 6559 + components: + - pos: 51.5,-22.5 + parent: 34 + type: Transform + - uid: 6560 + components: + - pos: 51.5,-23.5 + parent: 34 + type: Transform + - uid: 6561 + components: + - pos: 51.5,-24.5 + parent: 34 + type: Transform + - uid: 7664 + components: + - pos: 43.5,-23.5 + parent: 34 + type: Transform + - uid: 7665 + components: + - pos: 43.5,-22.5 + parent: 34 + type: Transform + - uid: 7666 + components: + - pos: 42.5,-24.5 + parent: 34 + type: Transform + - uid: 7667 + components: + - pos: 42.5,-23.5 + parent: 34 + type: Transform + - uid: 7668 + components: + - pos: 42.5,-22.5 + parent: 34 + type: Transform + - uid: 7669 + components: + - pos: 41.5,-24.5 + parent: 34 + type: Transform + - uid: 7670 + components: + - pos: 41.5,-23.5 + parent: 34 + type: Transform + - uid: 7671 + components: + - pos: 41.5,-22.5 + parent: 34 + type: Transform +- proto: AtmosFixFreezerMarker + entities: + - uid: 10639 + components: + - pos: -14.5,-3.5 + parent: 34 + type: Transform + - uid: 11384 + components: + - pos: -14.5,-4.5 + parent: 34 + type: Transform + - uid: 11385 + components: + - pos: -14.5,-5.5 + parent: 34 + type: Transform + - uid: 11386 + components: + - pos: -13.5,-3.5 + parent: 34 + type: Transform + - uid: 11387 + components: + - pos: -13.5,-4.5 + parent: 34 + type: Transform + - uid: 11388 + components: + - pos: -13.5,-5.5 + parent: 34 + type: Transform + - uid: 11389 + components: + - pos: -12.5,-3.5 + parent: 34 + type: Transform + - uid: 11390 + components: + - pos: -12.5,-4.5 + parent: 34 + type: Transform + - uid: 11391 + components: + - pos: -12.5,-5.5 + parent: 34 + type: Transform +- proto: AtmosFixNitrogenMarker + entities: + - uid: 1879 + components: + - pos: -38.5,-39.5 + parent: 34 + type: Transform + - uid: 1880 + components: + - pos: -37.5,-39.5 + parent: 34 + type: Transform + - uid: 1881 + components: + - pos: -36.5,-39.5 + parent: 34 + type: Transform +- proto: AtmosFixOxygenMarker + entities: + - uid: 1876 + components: + - pos: -38.5,-41.5 + parent: 34 + type: Transform + - uid: 1877 + components: + - pos: -37.5,-41.5 + parent: 34 + type: Transform + - uid: 1878 + components: + - pos: -36.5,-41.5 + parent: 34 + type: Transform +- proto: AtmosFixPlasmaMarker + entities: + - uid: 1873 + components: + - pos: -38.5,-43.5 + parent: 34 + type: Transform + - uid: 1874 + components: + - pos: -37.5,-43.5 + parent: 34 + type: Transform +- proto: Autolathe + entities: + - uid: 2518 + components: + - pos: -31.5,-27.5 + parent: 34 + type: Transform + - uid: 5552 + components: + - pos: -13.5,4.5 + parent: 34 + type: Transform + - uid: 12499 + components: + - pos: -17.5,-40.5 + parent: 34 + type: Transform +- proto: BackgammonBoard + entities: + - uid: 5899 + components: + - pos: -55.519135,0.52200794 + parent: 34 + type: Transform +- proto: BannerMedical + entities: + - uid: 1372 + components: + - pos: 5.5,-27.5 + parent: 34 + type: Transform +- proto: BannerSecurity + entities: + - uid: 11342 + components: + - pos: 22.5,-16.5 + parent: 34 + type: Transform +- proto: Barricade + entities: + - uid: 4510 + components: + - pos: 35.5,-15.5 + parent: 34 + type: Transform + - uid: 4529 + components: + - pos: 37.5,-14.5 + parent: 34 + type: Transform + - uid: 4542 + components: + - pos: 35.5,-14.5 + parent: 34 + type: Transform + - uid: 5881 + components: + - pos: -49.5,4.5 + parent: 34 + type: Transform + - uid: 5882 + components: + - pos: -48.5,5.5 + parent: 34 + type: Transform + - uid: 5883 + components: + - pos: -48.5,4.5 + parent: 34 + type: Transform + - uid: 7807 + components: + - pos: -53.5,3.5 + parent: 34 + type: Transform + - uid: 12795 + components: + - rot: 3.141592653589793 rad + pos: -6.5,9.5 + parent: 34 + type: Transform +- proto: BarricadeBlock + entities: + - uid: 4509 + components: + - pos: 36.5,-14.5 + parent: 34 + type: Transform + - uid: 11348 + components: + - pos: 38.5,-16.5 + parent: 34 + type: Transform +- proto: BarricadeDirectional + entities: + - uid: 4658 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-16.5 + parent: 34 + type: Transform + - uid: 12798 + components: + - rot: 3.141592653589793 rad + pos: -7.5,9.5 + parent: 34 + type: Transform + - uid: 12799 + components: + - rot: 3.141592653589793 rad + pos: -8.5,9.5 + parent: 34 + type: Transform + - uid: 12800 + components: + - rot: 3.141592653589793 rad + pos: -9.5,9.5 + parent: 34 + type: Transform + - uid: 12801 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 34 + type: Transform + - uid: 12802 + components: + - rot: 3.141592653589793 rad + pos: -5.5,9.5 + parent: 34 + type: Transform + - uid: 12803 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,9.5 + parent: 34 + type: Transform +- proto: BarSignEmergencyRumParty + entities: + - uid: 5495 + components: + - pos: 39.5,-37.5 + parent: 34 + type: Transform +- proto: BarSignTheLooseGoose + entities: + - uid: 298 + components: + - pos: 4.5,-2.5 + parent: 34 + type: Transform +- proto: BarSignTheNet + entities: + - uid: 11772 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,8.5 + parent: 34 + type: Transform +- proto: BarSignWiggleRoom + entities: + - uid: 8494 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-49.5 + parent: 34 + type: Transform +- proto: Beaker + entities: + - uid: 897 + components: + - pos: -7.3135357,-4.6884913 + parent: 34 + type: Transform + - solutions: + beaker: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 50 + reagents: + - data: null + ReagentId: TableSalt + Quantity: 25 + type: SolutionContainerManager + - uid: 2026 + components: + - pos: -32.81829,-17.205612 + parent: 34 + type: Transform + - uid: 11106 + components: + - pos: -20.759005,-3.1052136 + parent: 34 + type: Transform + - uid: 11701 + components: + - pos: -32.703705,-17.351547 + parent: 34 + type: Transform + - uid: 12444 + components: + - pos: 0.8789468,-43.4626 + parent: 34 + type: Transform +- proto: Bed + entities: + - uid: 673 + components: + - pos: 9.5,-5.5 + parent: 34 + type: Transform + - uid: 967 + components: + - pos: -5.5,2.5 + parent: 34 + type: Transform + - uid: 1016 + components: + - pos: 2.5,-20.5 + parent: 34 + type: Transform + - uid: 1157 + components: + - pos: -15.5,-38.5 + parent: 34 + type: Transform + - uid: 1354 + components: + - pos: 32.5,-9.5 + parent: 34 + type: Transform + - uid: 2174 + components: + - pos: -45.5,-6.5 + parent: 34 + type: Transform + - uid: 2203 + components: + - pos: -47.5,-6.5 + parent: 34 + type: Transform + - uid: 2220 + components: + - pos: -45.5,-3.5 + parent: 34 + type: Transform + - uid: 2244 + components: + - pos: -46.5,2.5 + parent: 34 + type: Transform + - uid: 2245 + components: + - pos: -51.5,2.5 + parent: 34 + type: Transform + - uid: 2249 + components: + - pos: -49.5,-6.5 + parent: 34 + type: Transform + - uid: 3357 + components: + - pos: -31.5,-15.5 + parent: 34 + type: Transform + - uid: 3494 + components: + - pos: 20.5,-3.5 + parent: 34 + type: Transform + - uid: 3615 + components: + - pos: 18.5,-3.5 + parent: 34 + type: Transform + - uid: 3616 + components: + - pos: 16.5,-3.5 + parent: 34 + type: Transform + - uid: 3772 + components: + - pos: 9.5,-8.5 + parent: 34 + type: Transform + - uid: 4276 + components: + - pos: 25.5,-27.5 + parent: 34 + type: Transform + - uid: 4350 + components: + - pos: -50.5,-22.5 + parent: 34 + type: Transform + - uid: 4540 + components: + - pos: 39.5,-9.5 + parent: 34 + type: Transform + - uid: 4549 + components: + - pos: 39.5,-6.5 + parent: 34 + type: Transform + - uid: 4555 + components: + - pos: 39.5,-12.5 + parent: 34 + type: Transform + - uid: 4556 + components: + - pos: 48.5,-13.5 + parent: 34 + type: Transform + - uid: 4557 + components: + - pos: 48.5,-10.5 + parent: 34 + type: Transform + - uid: 4558 + components: + - pos: 48.5,-7.5 + parent: 34 + type: Transform + - uid: 4574 + components: + - pos: 41.5,-15.5 + parent: 34 + type: Transform + - uid: 4790 + components: + - pos: -17.5,-32.5 + parent: 34 + type: Transform + - uid: 5949 + components: + - pos: -1.5,-20.5 + parent: 34 + type: Transform + - uid: 8924 + components: + - pos: -24.5,-31.5 + parent: 34 + type: Transform + - uid: 9037 + components: + - pos: 18.5,-45.5 + parent: 34 + type: Transform +- proto: BedsheetBlack + entities: + - uid: 2227 + components: + - pos: -45.5,-3.5 + parent: 34 + type: Transform + - uid: 3186 + components: + - pos: 9.5,-5.5 + parent: 34 + type: Transform + - uid: 3358 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-15.5 + parent: 34 + type: Transform +- proto: BedsheetBrigmedic + entities: + - uid: 1080 + components: + - pos: 17.5,1.5 + parent: 34 + type: Transform + - uid: 12276 + components: + - pos: 16.5,1.5 + parent: 34 + type: Transform +- proto: BedsheetBrown + entities: + - uid: 6155 + components: + - pos: -5.5,2.5 + parent: 34 + type: Transform +- proto: BedsheetCaptain + entities: + - uid: 4277 + components: + - pos: 25.5,-27.5 + parent: 34 + type: Transform +- proto: BedsheetCE + entities: + - uid: 4753 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-31.5 + parent: 34 + type: Transform +- proto: BedsheetClown + entities: + - uid: 5950 + components: + - pos: -1.5,-20.5 + parent: 34 + type: Transform +- proto: BedsheetHOS + entities: + - uid: 8074 + components: + - pos: 32.5,-9.5 + parent: 34 + type: Transform +- proto: BedsheetIan + entities: + - uid: 2205 + components: + - pos: -47.5,-6.5 + parent: 34 + type: Transform +- proto: BedsheetMedical + entities: + - uid: 1291 + components: + - pos: 2.5,-35.5 + parent: 34 + type: Transform + - uid: 1403 + components: + - pos: 2.5,-31.5 + parent: 34 + type: Transform + - uid: 1805 + components: + - pos: 7.5,-34.5 + parent: 34 + type: Transform + - uid: 2664 + components: + - pos: -1.5,-37.5 + parent: 34 + type: Transform +- proto: BedsheetMime + entities: + - uid: 5951 + components: + - pos: 2.5,-20.5 + parent: 34 + type: Transform +- proto: BedsheetPurple + entities: + - uid: 2492 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-22.5 + parent: 34 + type: Transform +- proto: BedsheetQM + entities: + - uid: 10595 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-38.5 + parent: 34 + type: Transform +- proto: BedsheetSpawner + entities: + - uid: 1059 + components: + - pos: 48.5,-7.5 + parent: 34 + type: Transform + - uid: 2256 + components: + - pos: -49.5,-6.5 + parent: 34 + type: Transform + - uid: 4531 + components: + - pos: 41.5,-15.5 + parent: 34 + type: Transform + - uid: 4744 + components: + - pos: -17.5,-32.5 + parent: 34 + type: Transform + - uid: 4755 + components: + - pos: 48.5,-10.5 + parent: 34 + type: Transform + - uid: 4849 + components: + - pos: 39.5,-6.5 + parent: 34 + type: Transform + - uid: 5856 + components: + - pos: -51.5,2.5 + parent: 34 + type: Transform + - uid: 5857 + components: + - pos: -46.5,2.5 + parent: 34 + type: Transform + - uid: 10137 + components: + - pos: 18.5,-45.5 + parent: 34 + type: Transform + - uid: 11089 + components: + - pos: 9.5,-8.5 + parent: 34 + type: Transform + - uid: 12478 + components: + - pos: 39.5,-12.5 + parent: 34 + type: Transform + - uid: 12479 + components: + - pos: 48.5,-13.5 + parent: 34 + type: Transform + - uid: 12480 + components: + - pos: 39.5,-9.5 + parent: 34 + type: Transform +- proto: BedsheetWiz + entities: + - uid: 2204 + components: + - pos: -45.5,-6.5 + parent: 34 + type: Transform +- proto: BedsheetYellow + entities: + - uid: 3617 + components: + - pos: 20.5,-3.5 + parent: 34 + type: Transform + - uid: 3618 + components: + - pos: 18.5,-3.5 + parent: 34 + type: Transform + - uid: 3619 + components: + - pos: 16.5,-3.5 + parent: 34 + type: Transform +- proto: BenchSofaCorpLeft + entities: + - uid: 5945 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-35.5 + parent: 34 + type: Transform +- proto: BenchSofaCorpMiddle + entities: + - uid: 6101 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-34.5 + parent: 34 + type: Transform +- proto: BenchSofaCorpRight + entities: + - uid: 6100 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-33.5 + parent: 34 + type: Transform +- proto: BenchSofaLeft + entities: + - uid: 4432 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-33.5 + parent: 34 + type: Transform + - uid: 12281 + components: + - pos: 30.5,-13.5 + parent: 34 + type: Transform +- proto: BenchSofaMiddle + entities: + - uid: 4436 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-34.5 + parent: 34 + type: Transform +- proto: BenchSofaRight + entities: + - uid: 11016 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-35.5 + parent: 34 + type: Transform + - uid: 12282 + components: + - pos: 29.5,-13.5 + parent: 34 + type: Transform +- proto: BenchSteelLeft + entities: + - uid: 2736 + components: + - pos: 8.5,18.5 + parent: 34 + type: Transform +- proto: BenchSteelMiddle + entities: + - uid: 3876 + components: + - pos: 9.5,18.5 + parent: 34 + type: Transform +- proto: BenchSteelRight + entities: + - uid: 261 + components: + - pos: 10.5,18.5 + parent: 34 + type: Transform +- proto: BiomassReclaimer + entities: + - uid: 8965 + components: + - pos: 10.5,-40.5 + parent: 34 + type: Transform +- proto: BlastDoor + entities: + - uid: 836 + components: + - pos: -26.5,-6.5 + parent: 34 + type: Transform + - links: + - 1163 + type: DeviceLinkSink + - uid: 1484 + components: + - pos: -51.5,-47.5 + parent: 34 + type: Transform + - links: + - 678 + - 679 + type: DeviceLinkSink + - uid: 7707 + components: + - pos: -17.5,-43.5 + parent: 34 + type: Transform + - links: + - 1054 + type: DeviceLinkSink + - uid: 11806 + components: + - pos: -21.5,-43.5 + parent: 34 + type: Transform + - links: + - 1054 + type: DeviceLinkSink + - uid: 12295 + components: + - pos: -60.5,-40.5 + parent: 34 + type: Transform + - links: + - 12307 + type: DeviceLinkSink + - uid: 12300 + components: + - pos: -60.5,-39.5 + parent: 34 + type: Transform + - links: + - 12307 + type: DeviceLinkSink + - uid: 12306 + components: + - pos: -60.5,-38.5 + parent: 34 + type: Transform + - links: + - 12307 + type: DeviceLinkSink +- proto: BlastDoorOpen + entities: + - uid: 3639 + components: + - pos: 15.5,-6.5 + parent: 34 + type: Transform + - links: + - 3750 + type: DeviceLinkSink + - uid: 3640 + components: + - pos: 15.5,-5.5 + parent: 34 + type: Transform + - links: + - 3750 + type: DeviceLinkSink + - uid: 3641 + components: + - pos: 15.5,-4.5 + parent: 34 + type: Transform + - links: + - 3750 + type: DeviceLinkSink + - uid: 8683 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-4.5 + parent: 34 + type: Transform + - links: + - 7996 + type: DeviceLinkSink +- proto: BlueLightTube + entities: + - uid: 5065 + components: + - pos: -19.90102,7.4961514 + parent: 34 + type: Transform + - uid: 5625 + components: + - pos: -19.61977,7.4961514 + parent: 34 + type: Transform +- proto: BoardGameSpawner + entities: + - uid: 4696 + components: + - pos: 41.5,-18.5 + parent: 34 + type: Transform +- proto: BookBartendersManual + entities: + - uid: 11012 + components: + - pos: 3.582711,-3.4520693 + parent: 34 + type: Transform +- proto: BookChefGaming + entities: + - uid: 1107 + components: + - pos: -7.497657,-4.2298393 + parent: 34 + type: Transform + - uid: 4686 + components: + - pos: 40.427826,3.5490375 + parent: 34 + type: Transform +- proto: BookEngineersHandbook + entities: + - uid: 11040 + components: + - pos: -56.022884,-1.4441328 + parent: 34 + type: Transform + - uid: 11113 + components: + - pos: -28.716812,-29.284609 + parent: 34 + type: Transform +- proto: BookLeafLoversSecret + entities: + - uid: 11380 + components: + - rot: 1.5707963267948966 rad + pos: -20.560392,-3.8160172 + parent: 34 + type: Transform +- proto: BookRandom + entities: + - uid: 11041 + components: + - pos: 39.567196,-31.448809 + parent: 34 + type: Transform + - uid: 11042 + components: + - pos: 39.098446,-31.323723 + parent: 34 + type: Transform +- proto: BookScientistsGuidebook + entities: + - uid: 11050 + components: + - pos: -35.70542,-5.4355335 + parent: 34 + type: Transform +- proto: BookSecurity + entities: + - uid: 11332 + components: + - pos: 22.669678,-12.33404 + parent: 34 + type: Transform +- proto: Bookshelf + entities: + - uid: 2172 + components: + - pos: -41.5,-7.5 + parent: 34 + type: Transform + - uid: 2243 + components: + - pos: -45.5,2.5 + parent: 34 + type: Transform + - uid: 3626 + components: + - pos: 17.5,-3.5 + parent: 34 + type: Transform + - uid: 4079 + components: + - pos: 40.5,-9.5 + parent: 34 + type: Transform +- proto: BookshelfFilled + entities: + - uid: 8841 + components: + - pos: 50.5,1.5 + parent: 34 + type: Transform +- proto: BoozeDispenser + entities: + - uid: 341 + components: + - pos: 6.5,-3.5 + parent: 34 + type: Transform + - uid: 1161 + components: + - rot: 3.141592653589793 rad + pos: -9.5,7.5 + parent: 34 + type: Transform + - uid: 5515 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-40.5 + parent: 34 + type: Transform + - uid: 8493 + components: + - pos: -9.5,-40.5 + parent: 34 + type: Transform +- proto: BorgCharger + entities: + - uid: 2469 + components: + - pos: -24.5,5.5 + parent: 34 + type: Transform + - uid: 3255 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-27.5 + parent: 34 + type: Transform + - uid: 6227 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-22.5 + parent: 34 + type: Transform + - uid: 6339 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-16.5 + parent: 34 + type: Transform + - uid: 6872 + components: + - pos: 1.5,-50.5 + parent: 34 + type: Transform +- proto: BoxBeaker + entities: + - uid: 12443 + components: + - pos: 0.31644678,-43.509476 + parent: 34 + type: Transform +- proto: BoxBeanbag + entities: + - uid: 3580 + components: + - pos: 25.475487,1.7896924 + parent: 34 + type: Transform +- proto: BoxBodyBag + entities: + - uid: 8496 + components: + - pos: 11.331081,-40.243954 + parent: 34 + type: Transform +- proto: BoxCardboard + entities: + - uid: 1909 + components: + - pos: -7.574397,-24.33654 + parent: 34 + type: Transform + - uid: 1910 + components: + - pos: -7.2759867,-24.45904 + parent: 34 + type: Transform +- proto: BoxColoredLighttube + entities: + - uid: 245 + components: + - pos: 6.7010136,-18.662865 + parent: 34 + type: Transform +- proto: BoxFolderBlue + entities: + - uid: 3767 + components: + - pos: 29.333155,-10.290697 + parent: 34 + type: Transform + - uid: 3944 + components: + - pos: 13.377207,-30.538752 + parent: 34 + type: Transform + - uid: 6096 + components: + - pos: 18.749836,-0.9969661 + parent: 34 + type: Transform +- proto: BoxFolderGrey + entities: + - uid: 2259 + components: + - pos: -51.26105,-6.396988 + parent: 34 + type: Transform + - uid: 4468 + components: + - pos: 32.724888,-35.156693 + parent: 34 + type: Transform +- proto: BoxFolderRed + entities: + - uid: 2430 + components: + - rot: 3.141592653589793 rad + pos: 10.032458,7.7103887 + parent: 34 + type: Transform + - uid: 3766 + components: + - pos: 27.260237,-6.2879176 + parent: 34 + type: Transform + - uid: 3943 + components: + - pos: 17.658457,-30.497057 + parent: 34 + type: Transform + - uid: 10814 + components: + - pos: -5.3270607,4.6644883 + parent: 34 + type: Transform +- proto: BoxFolderWhite + entities: + - uid: 1342 + components: + - pos: 9.730114,-32.48046 + parent: 34 + type: Transform +- proto: BoxFolderYellow + entities: + - uid: 4469 + components: + - pos: 32.794876,-35.472805 + parent: 34 + type: Transform +- proto: BoxInflatable + entities: + - uid: 1100 + components: + - pos: -32.651108,-27.576199 + parent: 34 + type: Transform + - uid: 5416 + components: + - pos: 33.639065,-42.25058 + parent: 34 + type: Transform +- proto: BoxingBell + entities: + - uid: 12246 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,7.5 + parent: 34 + type: Transform +- proto: BoxLethalshot + entities: + - uid: 4497 + components: + - pos: 28.47903,4.62251 + parent: 34 + type: Transform +- proto: BoxLightbulb + entities: + - uid: 5933 + components: + - pos: -55.682247,3.4220805 + parent: 34 + type: Transform +- proto: BoxLightMixed + entities: + - uid: 11091 + components: + - pos: 6.7546015,-18.306509 + parent: 34 + type: Transform +- proto: BoxMouthSwab + entities: + - uid: 2670 + components: + - pos: -1.7050788,-36.142494 + parent: 34 + type: Transform +- proto: BriefcaseBrown + entities: + - uid: 10527 + components: + - pos: 2.9504182,-47.99717 + parent: 34 + type: Transform +- proto: BriefcaseBrownFilled + entities: + - uid: 10526 + components: + - pos: 5.1839876,13.791559 + parent: 34 + type: Transform +- proto: BrigTimer + entities: + - uid: 3514 + components: + - pos: 19.5,-8.5 + parent: 34 + type: Transform + - label: COMM + type: SignalTimer + - linkedPorts: + 3391: + - Start: Close + - Timer: Open + - Timer: AutoClose + 999: + - Start: Close + - Timer: Open + - Timer: AutoClose + type: DeviceLinkSource +- proto: Brutepack + entities: + - uid: 1366 + components: + - pos: 3.3347142,-31.52173 + parent: 34 + type: Transform + - uid: 5879 + components: + - pos: -49.6156,6.6717114 + parent: 34 + type: Transform + - uid: 8328 + components: + - pos: 19.563652,-20.443884 + parent: 34 + type: Transform +- proto: Bucket + entities: + - uid: 3076 + components: + - pos: -17.8019,2.7929726 + parent: 34 + type: Transform + - uid: 3307 + components: + - pos: -17.6769,2.4594078 + parent: 34 + type: Transform + - uid: 4715 + components: + - pos: 37.16463,5.0502324 + parent: 34 + type: Transform + - uid: 8230 + components: + - pos: 4.461566,-19.972683 + parent: 34 + type: Transform + - uid: 10753 + components: + - pos: -49.28929,-18.668879 + parent: 34 + type: Transform +- proto: CableApcExtension + entities: + - uid: 21 + components: + - pos: -4.5,-25.5 + parent: 34 + type: Transform + - uid: 53 + components: + - pos: 42.5,-9.5 + parent: 34 + type: Transform + - uid: 58 + components: + - pos: -47.5,-37.5 + parent: 34 + type: Transform + - uid: 65 + components: + - pos: -47.5,-39.5 + parent: 34 + type: Transform + - uid: 79 + components: + - pos: -14.5,-31.5 + parent: 34 + type: Transform + - uid: 97 + components: + - pos: -4.5,-24.5 + parent: 34 + type: Transform + - uid: 98 + components: + - pos: -4.5,-26.5 + parent: 34 + type: Transform + - uid: 110 + components: + - pos: -4.5,-27.5 + parent: 34 + type: Transform + - uid: 113 + components: + - pos: -18.5,-41.5 + parent: 34 + type: Transform + - uid: 118 + components: + - pos: -4.5,-28.5 + parent: 34 + type: Transform + - uid: 119 + components: + - pos: -46.5,-37.5 + parent: 34 + type: Transform + - uid: 122 + components: + - pos: -48.5,-37.5 + parent: 34 + type: Transform + - uid: 263 + components: + - pos: -20.5,-31.5 + parent: 34 + type: Transform + - uid: 272 + components: + - pos: 42.5,-0.5 + parent: 34 + type: Transform + - uid: 337 + components: + - pos: -31.5,-26.5 + parent: 34 + type: Transform + - uid: 424 + components: + - pos: 9.5,-17.5 + parent: 34 + type: Transform + - uid: 453 + components: + - pos: -2.5,-45.5 + parent: 34 + type: Transform + - uid: 465 + components: + - pos: 8.5,-16.5 + parent: 34 + type: Transform + - uid: 556 + components: + - pos: 9.5,-16.5 + parent: 34 + type: Transform + - uid: 582 + components: + - pos: -57.5,-10.5 + parent: 34 + type: Transform + - uid: 695 + components: + - pos: 42.5,-1.5 + parent: 34 + type: Transform + - uid: 708 + components: + - pos: -21.5,-41.5 + parent: 34 + type: Transform + - uid: 724 + components: + - pos: -50.5,-17.5 + parent: 34 + type: Transform + - uid: 773 + components: + - pos: -30.5,-26.5 + parent: 34 + type: Transform + - uid: 801 + components: + - pos: -12.5,-36.5 + parent: 34 + type: Transform + - uid: 869 + components: + - pos: 6.5,-14.5 + parent: 34 + type: Transform + - uid: 896 + components: + - pos: -37.5,-16.5 + parent: 34 + type: Transform + - uid: 934 + components: + - pos: -26.5,-9.5 + parent: 34 + type: Transform + - uid: 935 + components: + - pos: -26.5,-6.5 + parent: 34 + type: Transform + - uid: 936 + components: + - pos: -26.5,-4.5 + parent: 34 + type: Transform + - uid: 946 + components: + - pos: -21.5,-42.5 + parent: 34 + type: Transform + - uid: 959 + components: + - pos: -26.5,-5.5 + parent: 34 + type: Transform + - uid: 960 + components: + - pos: -26.5,-7.5 + parent: 34 + type: Transform + - uid: 962 + components: + - pos: -26.5,-8.5 + parent: 34 + type: Transform + - uid: 986 + components: + - pos: -3.5,-45.5 + parent: 34 + type: Transform + - uid: 1011 + components: + - pos: 0.5,-22.5 + parent: 34 + type: Transform + - uid: 1029 + components: + - pos: -30.5,-27.5 + parent: 34 + type: Transform + - uid: 1030 + components: + - pos: -0.5,-14.5 + parent: 34 + type: Transform + - uid: 1033 + components: + - pos: 45.5,-9.5 + parent: 34 + type: Transform + - uid: 1034 + components: + - pos: -30.5,-40.5 + parent: 34 + type: Transform + - uid: 1036 + components: + - pos: -10.5,-33.5 + parent: 34 + type: Transform + - uid: 1056 + components: + - pos: -13.5,-40.5 + parent: 34 + type: Transform + - uid: 1065 + components: + - pos: -25.5,-32.5 + parent: 34 + type: Transform + - uid: 1103 + components: + - pos: 40.5,-12.5 + parent: 34 + type: Transform + - uid: 1111 + components: + - pos: -24.5,-41.5 + parent: 34 + type: Transform + - uid: 1141 + components: + - pos: -25.5,-30.5 + parent: 34 + type: Transform + - uid: 1148 + components: + - pos: -54.5,-10.5 + parent: 34 + type: Transform + - uid: 1156 + components: + - pos: 49.5,-3.5 + parent: 34 + type: Transform + - uid: 1221 + components: + - pos: -22.5,-26.5 + parent: 34 + type: Transform + - uid: 1225 + components: + - pos: -20.5,-32.5 + parent: 34 + type: Transform + - uid: 1231 + components: + - pos: 48.5,0.5 + parent: 34 + type: Transform + - uid: 1235 + components: + - pos: -21.5,-9.5 + parent: 34 + type: Transform + - uid: 1236 + components: + - pos: -23.5,-26.5 + parent: 34 + type: Transform + - uid: 1237 + components: + - pos: -28.5,-26.5 + parent: 34 + type: Transform + - uid: 1238 + components: + - pos: -25.5,-25.5 + parent: 34 + type: Transform + - uid: 1239 + components: + - pos: -21.5,-26.5 + parent: 34 + type: Transform + - uid: 1240 + components: + - pos: -25.5,-24.5 + parent: 34 + type: Transform + - uid: 1241 + components: + - pos: -41.5,-32.5 + parent: 34 + type: Transform + - uid: 1243 + components: + - pos: -45.5,-33.5 + parent: 34 + type: Transform + - uid: 1244 + components: + - pos: -19.5,-26.5 + parent: 34 + type: Transform + - uid: 1245 + components: + - pos: -43.5,-33.5 + parent: 34 + type: Transform + - uid: 1246 + components: + - pos: -44.5,-33.5 + parent: 34 + type: Transform + - uid: 1247 + components: + - pos: -41.5,-36.5 + parent: 34 + type: Transform + - uid: 1248 + components: + - pos: -42.5,-36.5 + parent: 34 + type: Transform + - uid: 1249 + components: + - pos: -43.5,-36.5 + parent: 34 + type: Transform + - uid: 1250 + components: + - pos: -43.5,-34.5 + parent: 34 + type: Transform + - uid: 1251 + components: + - pos: -43.5,-35.5 + parent: 34 + type: Transform + - uid: 1253 + components: + - pos: -46.5,-39.5 + parent: 34 + type: Transform + - uid: 1294 + components: + - pos: 6.5,-40.5 + parent: 34 + type: Transform + - uid: 1324 + components: + - pos: -54.5,-20.5 + parent: 34 + type: Transform + - uid: 1370 + components: + - pos: 6.5,-39.5 + parent: 34 + type: Transform + - uid: 1373 + components: + - pos: 30.5,-10.5 + parent: 34 + type: Transform + - uid: 1376 + components: + - pos: -45.5,-20.5 + parent: 34 + type: Transform + - uid: 1379 + components: + - pos: 6.5,-41.5 + parent: 34 + type: Transform + - uid: 1381 + components: + - pos: 0.5,-40.5 + parent: 34 + type: Transform + - uid: 1383 + components: + - pos: -0.5,-41.5 + parent: 34 + type: Transform + - uid: 1386 + components: + - pos: -0.5,-40.5 + parent: 34 + type: Transform + - uid: 1389 + components: + - pos: 1.5,-40.5 + parent: 34 + type: Transform + - uid: 1392 + components: + - pos: -21.5,-33.5 + parent: 34 + type: Transform + - uid: 1395 + components: + - pos: 48.5,-3.5 + parent: 34 + type: Transform + - uid: 1494 + components: + - pos: 32.5,-10.5 + parent: 34 + type: Transform + - uid: 1524 + components: + - pos: -45.5,-18.5 + parent: 34 + type: Transform + - uid: 1550 + components: + - pos: -22.5,-41.5 + parent: 34 + type: Transform + - uid: 1554 + components: + - pos: -15.5,-37.5 + parent: 34 + type: Transform + - uid: 1559 + components: + - pos: -13.5,-38.5 + parent: 34 + type: Transform + - uid: 1581 + components: + - pos: -29.5,-52.5 + parent: 34 + type: Transform + - uid: 1582 + components: + - pos: -29.5,-53.5 + parent: 34 + type: Transform + - uid: 1584 + components: + - pos: -29.5,-54.5 + parent: 34 + type: Transform + - uid: 1585 + components: + - pos: -29.5,-55.5 + parent: 34 + type: Transform + - uid: 1586 + components: + - pos: -29.5,-53.5 + parent: 34 + type: Transform + - uid: 1595 + components: + - pos: -14.5,-37.5 + parent: 34 + type: Transform + - uid: 1617 + components: + - pos: 49.5,0.5 + parent: 34 + type: Transform + - uid: 1659 + components: + - pos: -43.5,-37.5 + parent: 34 + type: Transform + - uid: 1660 + components: + - pos: -43.5,-38.5 + parent: 34 + type: Transform + - uid: 1661 + components: + - pos: -43.5,-39.5 + parent: 34 + type: Transform + - uid: 1662 + components: + - pos: -43.5,-40.5 + parent: 34 + type: Transform + - uid: 1663 + components: + - pos: -43.5,-41.5 + parent: 34 + type: Transform + - uid: 1664 + components: + - pos: -43.5,-42.5 + parent: 34 + type: Transform + - uid: 1665 + components: + - pos: -44.5,-42.5 + parent: 34 + type: Transform + - uid: 1666 + components: + - pos: -45.5,-42.5 + parent: 34 + type: Transform + - uid: 1667 + components: + - pos: -46.5,-42.5 + parent: 34 + type: Transform + - uid: 1668 + components: + - pos: -47.5,-42.5 + parent: 34 + type: Transform + - uid: 1669 + components: + - pos: -48.5,-42.5 + parent: 34 + type: Transform + - uid: 1670 + components: + - pos: -49.5,-42.5 + parent: 34 + type: Transform + - uid: 1671 + components: + - pos: -50.5,-42.5 + parent: 34 + type: Transform + - uid: 1672 + components: + - pos: -51.5,-42.5 + parent: 34 + type: Transform + - uid: 1673 + components: + - pos: -52.5,-42.5 + parent: 34 + type: Transform + - uid: 1674 + components: + - pos: -52.5,-43.5 + parent: 34 + type: Transform + - uid: 1675 + components: + - pos: -52.5,-44.5 + parent: 34 + type: Transform + - uid: 1676 + components: + - pos: -52.5,-45.5 + parent: 34 + type: Transform + - uid: 1677 + components: + - pos: -52.5,-46.5 + parent: 34 + type: Transform + - uid: 1678 + components: + - pos: -52.5,-47.5 + parent: 34 + type: Transform + - uid: 1679 + components: + - pos: -52.5,-48.5 + parent: 34 + type: Transform + - uid: 1680 + components: + - pos: -52.5,-49.5 + parent: 34 + type: Transform + - uid: 1681 + components: + - pos: -51.5,-49.5 + parent: 34 + type: Transform + - uid: 1682 + components: + - pos: -50.5,-49.5 + parent: 34 + type: Transform + - uid: 1683 + components: + - pos: -49.5,-49.5 + parent: 34 + type: Transform + - uid: 1684 + components: + - pos: -51.5,-45.5 + parent: 34 + type: Transform + - uid: 1685 + components: + - pos: -50.5,-45.5 + parent: 34 + type: Transform + - uid: 1686 + components: + - pos: -49.5,-45.5 + parent: 34 + type: Transform + - uid: 1687 + components: + - pos: -49.5,-41.5 + parent: 34 + type: Transform + - uid: 1688 + components: + - pos: -44.5,-43.5 + parent: 34 + type: Transform + - uid: 1689 + components: + - pos: -44.5,-44.5 + parent: 34 + type: Transform + - uid: 1690 + components: + - pos: -44.5,-45.5 + parent: 34 + type: Transform + - uid: 1691 + components: + - pos: -44.5,-46.5 + parent: 34 + type: Transform + - uid: 1692 + components: + - pos: -44.5,-47.5 + parent: 34 + type: Transform + - uid: 1693 + components: + - pos: -44.5,-48.5 + parent: 34 + type: Transform + - uid: 1694 + components: + - pos: -43.5,-48.5 + parent: 34 + type: Transform + - uid: 1695 + components: + - pos: -42.5,-48.5 + parent: 34 + type: Transform + - uid: 1696 + components: + - pos: -41.5,-48.5 + parent: 34 + type: Transform + - uid: 1697 + components: + - pos: -40.5,-48.5 + parent: 34 + type: Transform + - uid: 1698 + components: + - pos: -40.5,-47.5 + parent: 34 + type: Transform + - uid: 1699 + components: + - pos: -40.5,-46.5 + parent: 34 + type: Transform + - uid: 1700 + components: + - pos: -40.5,-45.5 + parent: 34 + type: Transform + - uid: 1701 + components: + - pos: -40.5,-44.5 + parent: 34 + type: Transform + - uid: 1702 + components: + - pos: -40.5,-43.5 + parent: 34 + type: Transform + - uid: 1703 + components: + - pos: -40.5,-42.5 + parent: 34 + type: Transform + - uid: 1704 + components: + - pos: -40.5,-41.5 + parent: 34 + type: Transform + - uid: 1705 + components: + - pos: -40.5,-40.5 + parent: 34 + type: Transform + - uid: 1706 + components: + - pos: -41.5,-42.5 + parent: 34 + type: Transform + - uid: 1707 + components: + - pos: -42.5,-42.5 + parent: 34 + type: Transform + - uid: 1708 + components: + - pos: -39.5,-46.5 + parent: 34 + type: Transform + - uid: 1709 + components: + - pos: -38.5,-46.5 + parent: 34 + type: Transform + - uid: 1710 + components: + - pos: -37.5,-46.5 + parent: 34 + type: Transform + - uid: 1711 + components: + - pos: -39.5,-44.5 + parent: 34 + type: Transform + - uid: 1712 + components: + - pos: -38.5,-44.5 + parent: 34 + type: Transform + - uid: 1713 + components: + - pos: -37.5,-44.5 + parent: 34 + type: Transform + - uid: 1714 + components: + - pos: -37.5,-42.5 + parent: 34 + type: Transform + - uid: 1715 + components: + - pos: -38.5,-42.5 + parent: 34 + type: Transform + - uid: 1716 + components: + - pos: -39.5,-42.5 + parent: 34 + type: Transform + - uid: 1717 + components: + - pos: -39.5,-40.5 + parent: 34 + type: Transform + - uid: 1718 + components: + - pos: -38.5,-40.5 + parent: 34 + type: Transform + - uid: 1719 + components: + - pos: -37.5,-40.5 + parent: 34 + type: Transform + - uid: 1727 + components: + - pos: -46.5,-33.5 + parent: 34 + type: Transform + - uid: 1728 + components: + - pos: -44.5,-37.5 + parent: 34 + type: Transform + - uid: 1729 + components: + - pos: -45.5,-37.5 + parent: 34 + type: Transform + - uid: 1730 + components: + - pos: -42.5,-33.5 + parent: 34 + type: Transform + - uid: 1731 + components: + - pos: -41.5,-33.5 + parent: 34 + type: Transform + - uid: 1732 + components: + - pos: -40.5,-33.5 + parent: 34 + type: Transform + - uid: 1733 + components: + - pos: -39.5,-33.5 + parent: 34 + type: Transform + - uid: 1734 + components: + - pos: -38.5,-33.5 + parent: 34 + type: Transform + - uid: 1735 + components: + - pos: -44.5,-39.5 + parent: 34 + type: Transform + - uid: 1736 + components: + - pos: -45.5,-39.5 + parent: 34 + type: Transform + - uid: 1737 + components: + - pos: -40.5,-39.5 + parent: 34 + type: Transform + - uid: 1738 + components: + - pos: -24.5,-26.5 + parent: 34 + type: Transform + - uid: 1746 + components: + - pos: -29.5,-51.5 + parent: 34 + type: Transform + - uid: 1781 + components: + - pos: -39.5,-32.5 + parent: 34 + type: Transform + - uid: 1782 + components: + - pos: -39.5,-31.5 + parent: 34 + type: Transform + - uid: 1783 + components: + - pos: -39.5,-30.5 + parent: 34 + type: Transform + - uid: 1784 + components: + - pos: -38.5,-30.5 + parent: 34 + type: Transform + - uid: 1785 + components: + - pos: -40.5,-30.5 + parent: 34 + type: Transform + - uid: 1786 + components: + - pos: -41.5,-30.5 + parent: 34 + type: Transform + - uid: 1787 + components: + - pos: -42.5,-30.5 + parent: 34 + type: Transform + - uid: 1788 + components: + - pos: -43.5,-30.5 + parent: 34 + type: Transform + - uid: 1789 + components: + - pos: -44.5,-30.5 + parent: 34 + type: Transform + - uid: 1790 + components: + - pos: -45.5,-30.5 + parent: 34 + type: Transform + - uid: 1791 + components: + - pos: -45.5,-31.5 + parent: 34 + type: Transform + - uid: 1792 + components: + - pos: -45.5,-32.5 + parent: 34 + type: Transform + - uid: 1803 + components: + - pos: -29.5,-40.5 + parent: 34 + type: Transform + - uid: 1817 + components: + - pos: -15.5,-40.5 + parent: 34 + type: Transform + - uid: 1823 + components: + - pos: 41.5,-5.5 + parent: 34 + type: Transform + - uid: 1843 + components: + - pos: -25.5,-26.5 + parent: 34 + type: Transform + - uid: 1845 + components: + - pos: -20.5,-26.5 + parent: 34 + type: Transform + - uid: 1868 + components: + - pos: -29.5,-48.5 + parent: 34 + type: Transform + - uid: 1872 + components: + - pos: -29.5,-49.5 + parent: 34 + type: Transform + - uid: 1883 + components: + - pos: 50.5,-3.5 + parent: 34 + type: Transform + - uid: 1911 + components: + - pos: 17.5,-42.5 + parent: 34 + type: Transform + - uid: 1920 + components: + - pos: -51.5,-17.5 + parent: 34 + type: Transform + - uid: 1932 + components: + - pos: -11.5,-33.5 + parent: 34 + type: Transform + - uid: 2086 + components: + - pos: -29.5,-33.5 + parent: 34 + type: Transform + - uid: 2091 + components: + - pos: -28.5,-33.5 + parent: 34 + type: Transform + - uid: 2151 + components: + - pos: -29.5,-50.5 + parent: 34 + type: Transform + - uid: 2217 + components: + - pos: 41.5,-2.5 + parent: 34 + type: Transform + - uid: 2396 + components: + - pos: -44.5,-18.5 + parent: 34 + type: Transform + - uid: 2421 + components: + - pos: -46.5,-17.5 + parent: 34 + type: Transform + - uid: 2422 + components: + - pos: -46.5,-18.5 + parent: 34 + type: Transform + - uid: 2432 + components: + - pos: -29.5,-47.5 + parent: 34 + type: Transform + - uid: 2515 + components: + - pos: 9.5,4.5 + parent: 34 + type: Transform + - uid: 2524 + components: + - pos: -56.5,-10.5 + parent: 34 + type: Transform + - uid: 2554 + components: + - pos: -34.5,-31.5 + parent: 34 + type: Transform + - uid: 2556 + components: + - pos: -34.5,-32.5 + parent: 34 + type: Transform + - uid: 2557 + components: + - pos: -34.5,-33.5 + parent: 34 + type: Transform + - uid: 2558 + components: + - pos: -34.5,-34.5 + parent: 34 + type: Transform + - uid: 2559 + components: + - pos: -34.5,-35.5 + parent: 34 + type: Transform + - uid: 2560 + components: + - pos: -34.5,-36.5 + parent: 34 + type: Transform + - uid: 2564 + components: + - pos: -29.5,-45.5 + parent: 34 + type: Transform + - uid: 2570 + components: + - pos: -54.5,-24.5 + parent: 34 + type: Transform + - uid: 2592 + components: + - pos: -49.5,-28.5 + parent: 34 + type: Transform + - uid: 2594 + components: + - pos: -51.5,-28.5 + parent: 34 + type: Transform + - uid: 2603 + components: + - pos: -54.5,-28.5 + parent: 34 + type: Transform + - uid: 2604 + components: + - pos: -54.5,-27.5 + parent: 34 + type: Transform + - uid: 2605 + components: + - pos: -54.5,-26.5 + parent: 34 + type: Transform + - uid: 2688 + components: + - pos: -53.5,-39.5 + parent: 34 + type: Transform + - uid: 2702 + components: + - pos: 13.5,-43.5 + parent: 34 + type: Transform + - uid: 2726 + components: + - pos: 11.5,-30.5 + parent: 34 + type: Transform + - uid: 2802 + components: + - pos: 8.5,-13.5 + parent: 34 + type: Transform + - uid: 2803 + components: + - pos: 0.5,-15.5 + parent: 34 + type: Transform + - uid: 2804 + components: + - pos: 8.5,-19.5 + parent: 34 + type: Transform + - uid: 2805 + components: + - pos: 8.5,-11.5 + parent: 34 + type: Transform + - uid: 2862 + components: + - pos: -15.5,-6.5 + parent: 34 + type: Transform + - uid: 2863 + components: + - pos: -15.5,-7.5 + parent: 34 + type: Transform + - uid: 2864 + components: + - pos: -16.5,-7.5 + parent: 34 + type: Transform + - uid: 2865 + components: + - pos: -17.5,-7.5 + parent: 34 + type: Transform + - uid: 2866 + components: + - pos: -18.5,-7.5 + parent: 34 + type: Transform + - uid: 2867 + components: + - pos: -19.5,-7.5 + parent: 34 + type: Transform + - uid: 2868 + components: + - pos: -19.5,-6.5 + parent: 34 + type: Transform + - uid: 2869 + components: + - pos: -19.5,-5.5 + parent: 34 + type: Transform + - uid: 2870 + components: + - pos: -19.5,-4.5 + parent: 34 + type: Transform + - uid: 2871 + components: + - pos: -18.5,-4.5 + parent: 34 + type: Transform + - uid: 2872 + components: + - pos: -17.5,-4.5 + parent: 34 + type: Transform + - uid: 2873 + components: + - pos: -16.5,-4.5 + parent: 34 + type: Transform + - uid: 2874 + components: + - pos: -15.5,-4.5 + parent: 34 + type: Transform + - uid: 2875 + components: + - pos: -14.5,-4.5 + parent: 34 + type: Transform + - uid: 2876 + components: + - pos: -13.5,-4.5 + parent: 34 + type: Transform + - uid: 2877 + components: + - pos: -12.5,-4.5 + parent: 34 + type: Transform + - uid: 2878 + components: + - pos: -11.5,-4.5 + parent: 34 + type: Transform + - uid: 2879 + components: + - pos: -10.5,-4.5 + parent: 34 + type: Transform + - uid: 2880 + components: + - pos: -9.5,-4.5 + parent: 34 + type: Transform + - uid: 2881 + components: + - pos: -9.5,-5.5 + parent: 34 + type: Transform + - uid: 2882 + components: + - pos: -9.5,-6.5 + parent: 34 + type: Transform + - uid: 2883 + components: + - pos: -9.5,-7.5 + parent: 34 + type: Transform + - uid: 2884 + components: + - pos: -9.5,-8.5 + parent: 34 + type: Transform + - uid: 2885 + components: + - pos: -10.5,-8.5 + parent: 34 + type: Transform + - uid: 2886 + components: + - pos: -11.5,-8.5 + parent: 34 + type: Transform + - uid: 2887 + components: + - pos: -12.5,-8.5 + parent: 34 + type: Transform + - uid: 2888 + components: + - pos: -13.5,-8.5 + parent: 34 + type: Transform + - uid: 2889 + components: + - pos: -14.5,-8.5 + parent: 34 + type: Transform + - uid: 2890 + components: + - pos: -15.5,-8.5 + parent: 34 + type: Transform + - uid: 2891 + components: + - pos: -8.5,-8.5 + parent: 34 + type: Transform + - uid: 2892 + components: + - pos: -8.5,-4.5 + parent: 34 + type: Transform + - uid: 2893 + components: + - pos: 8.5,-12.5 + parent: 34 + type: Transform + - uid: 2894 + components: + - pos: 9.5,-19.5 + parent: 34 + type: Transform + - uid: 2895 + components: + - pos: -0.5,-15.5 + parent: 34 + type: Transform + - uid: 2896 + components: + - pos: 8.5,-14.5 + parent: 34 + type: Transform + - uid: 2913 + components: + - pos: -7.5,-31.5 + parent: 34 + type: Transform + - uid: 2914 + components: + - pos: -7.5,-37.5 + parent: 34 + type: Transform + - uid: 2915 + components: + - pos: -5.5,-47.5 + parent: 34 + type: Transform + - uid: 2916 + components: + - pos: -4.5,-47.5 + parent: 34 + type: Transform + - uid: 2918 + components: + - pos: -4.5,-46.5 + parent: 34 + type: Transform + - uid: 2919 + components: + - pos: -7.5,-47.5 + parent: 34 + type: Transform + - uid: 2920 + components: + - pos: 0.5,-21.5 + parent: 34 + type: Transform + - uid: 2987 + components: + - pos: -8.5,-13.5 + parent: 34 + type: Transform + - uid: 2991 + components: + - pos: -15.5,-13.5 + parent: 34 + type: Transform + - uid: 2992 + components: + - pos: -14.5,-13.5 + parent: 34 + type: Transform + - uid: 2993 + components: + - pos: -13.5,-13.5 + parent: 34 + type: Transform + - uid: 2994 + components: + - pos: -12.5,-13.5 + parent: 34 + type: Transform + - uid: 2995 + components: + - pos: -11.5,-13.5 + parent: 34 + type: Transform + - uid: 2996 + components: + - pos: -10.5,-13.5 + parent: 34 + type: Transform + - uid: 2997 + components: + - pos: -9.5,-13.5 + parent: 34 + type: Transform + - uid: 2998 + components: + - pos: -7.5,-13.5 + parent: 34 + type: Transform + - uid: 2999 + components: + - pos: -6.5,-13.5 + parent: 34 + type: Transform + - uid: 3000 + components: + - pos: -5.5,-13.5 + parent: 34 + type: Transform + - uid: 3001 + components: + - pos: -5.5,-14.5 + parent: 34 + type: Transform + - uid: 3002 + components: + - pos: -5.5,-15.5 + parent: 34 + type: Transform + - uid: 3003 + components: + - pos: -5.5,-16.5 + parent: 34 + type: Transform + - uid: 3004 + components: + - pos: -5.5,-17.5 + parent: 34 + type: Transform + - uid: 3005 + components: + - pos: -5.5,-18.5 + parent: 34 + type: Transform + - uid: 3006 + components: + - pos: -5.5,-19.5 + parent: 34 + type: Transform + - uid: 3007 + components: + - pos: -6.5,-19.5 + parent: 34 + type: Transform + - uid: 3008 + components: + - pos: -7.5,-19.5 + parent: 34 + type: Transform + - uid: 3009 + components: + - pos: -8.5,-19.5 + parent: 34 + type: Transform + - uid: 3010 + components: + - pos: -9.5,-19.5 + parent: 34 + type: Transform + - uid: 3011 + components: + - pos: -10.5,-19.5 + parent: 34 + type: Transform + - uid: 3012 + components: + - pos: -11.5,-19.5 + parent: 34 + type: Transform + - uid: 3013 + components: + - pos: -11.5,-18.5 + parent: 34 + type: Transform + - uid: 3014 + components: + - pos: -11.5,-17.5 + parent: 34 + type: Transform + - uid: 3015 + components: + - pos: -11.5,-16.5 + parent: 34 + type: Transform + - uid: 3016 + components: + - pos: -11.5,-15.5 + parent: 34 + type: Transform + - uid: 3017 + components: + - pos: -11.5,-14.5 + parent: 34 + type: Transform + - uid: 3018 + components: + - pos: -11.5,-20.5 + parent: 34 + type: Transform + - uid: 3019 + components: + - pos: -11.5,-21.5 + parent: 34 + type: Transform + - uid: 3020 + components: + - pos: -5.5,-20.5 + parent: 34 + type: Transform + - uid: 3021 + components: + - pos: -5.5,-21.5 + parent: 34 + type: Transform + - uid: 3022 + components: + - pos: -4.5,-13.5 + parent: 34 + type: Transform + - uid: 3023 + components: + - pos: -4.5,-12.5 + parent: 34 + type: Transform + - uid: 3024 + components: + - pos: -4.5,-11.5 + parent: 34 + type: Transform + - uid: 3025 + components: + - pos: -4.5,-10.5 + parent: 34 + type: Transform + - uid: 3026 + components: + - pos: -4.5,-9.5 + parent: 34 + type: Transform + - uid: 3027 + components: + - pos: -4.5,-8.5 + parent: 34 + type: Transform + - uid: 3028 + components: + - pos: -4.5,-7.5 + parent: 34 + type: Transform + - uid: 3029 + components: + - pos: -4.5,-6.5 + parent: 34 + type: Transform + - uid: 3030 + components: + - pos: -4.5,-5.5 + parent: 34 + type: Transform + - uid: 3032 + components: + - pos: -14.5,-12.5 + parent: 34 + type: Transform + - uid: 3033 + components: + - pos: -14.5,-11.5 + parent: 34 + type: Transform + - uid: 3034 + components: + - pos: -15.5,-11.5 + parent: 34 + type: Transform + - uid: 3035 + components: + - pos: -16.5,-11.5 + parent: 34 + type: Transform + - uid: 3036 + components: + - pos: -17.5,-11.5 + parent: 34 + type: Transform + - uid: 3037 + components: + - pos: -18.5,-11.5 + parent: 34 + type: Transform + - uid: 3039 + components: + - pos: -20.5,-17.5 + parent: 34 + type: Transform + - uid: 3040 + components: + - pos: -17.5,-18.5 + parent: 34 + type: Transform + - uid: 3041 + components: + - pos: -18.5,-18.5 + parent: 34 + type: Transform + - uid: 3042 + components: + - pos: -18.5,-17.5 + parent: 34 + type: Transform + - uid: 3043 + components: + - pos: -17.5,-17.5 + parent: 34 + type: Transform + - uid: 3044 + components: + - pos: -12.5,-21.5 + parent: 34 + type: Transform + - uid: 3045 + components: + - pos: -13.5,-21.5 + parent: 34 + type: Transform + - uid: 3046 + components: + - pos: -14.5,-21.5 + parent: 34 + type: Transform + - uid: 3047 + components: + - pos: -6.5,-21.5 + parent: 34 + type: Transform + - uid: 3048 + components: + - pos: -7.5,-21.5 + parent: 34 + type: Transform + - uid: 3049 + components: + - pos: -10.5,-21.5 + parent: 34 + type: Transform + - uid: 3050 + components: + - pos: -4.5,-21.5 + parent: 34 + type: Transform + - uid: 3051 + components: + - pos: -4.5,-22.5 + parent: 34 + type: Transform + - uid: 3052 + components: + - pos: -4.5,-23.5 + parent: 34 + type: Transform + - uid: 3054 + components: + - pos: -6.5,-47.5 + parent: 34 + type: Transform + - uid: 3055 + components: + - pos: -8.5,-47.5 + parent: 34 + type: Transform + - uid: 3056 + components: + - pos: -9.5,-47.5 + parent: 34 + type: Transform + - uid: 3063 + components: + - pos: 5.5,-18.5 + parent: 34 + type: Transform + - uid: 3064 + components: + - pos: 5.5,-20.5 + parent: 34 + type: Transform + - uid: 3065 + components: + - pos: 5.5,-21.5 + parent: 34 + type: Transform + - uid: 3067 + components: + - pos: 1.5,-18.5 + parent: 34 + type: Transform + - uid: 3068 + components: + - pos: 0.5,-18.5 + parent: 34 + type: Transform + - uid: 3069 + components: + - pos: -0.5,-18.5 + parent: 34 + type: Transform + - uid: 3070 + components: + - pos: -0.5,-19.5 + parent: 34 + type: Transform + - uid: 3071 + components: + - pos: 0.5,-19.5 + parent: 34 + type: Transform + - uid: 3072 + components: + - pos: 6.5,-18.5 + parent: 34 + type: Transform + - uid: 3079 + components: + - pos: 5.5,-19.5 + parent: 34 + type: Transform + - uid: 3081 + components: + - pos: 6.5,-15.5 + parent: 34 + type: Transform + - uid: 3082 + components: + - pos: 5.5,-15.5 + parent: 34 + type: Transform + - uid: 3083 + components: + - pos: 4.5,-15.5 + parent: 34 + type: Transform + - uid: 3084 + components: + - pos: 3.5,-15.5 + parent: 34 + type: Transform + - uid: 3085 + components: + - pos: 2.5,-15.5 + parent: 34 + type: Transform + - uid: 3086 + components: + - pos: 1.5,-15.5 + parent: 34 + type: Transform + - uid: 3087 + components: + - pos: 1.5,-19.5 + parent: 34 + type: Transform + - uid: 3089 + components: + - pos: 9.5,-18.5 + parent: 34 + type: Transform + - uid: 3090 + components: + - pos: 8.5,-15.5 + parent: 34 + type: Transform + - uid: 3091 + components: + - pos: -30.5,-16.5 + parent: 34 + type: Transform + - uid: 3092 + components: + - pos: -29.5,-16.5 + parent: 34 + type: Transform + - uid: 3093 + components: + - pos: -28.5,-16.5 + parent: 34 + type: Transform + - uid: 3094 + components: + - pos: -27.5,-16.5 + parent: 34 + type: Transform + - uid: 3095 + components: + - pos: -26.5,-16.5 + parent: 34 + type: Transform + - uid: 3096 + components: + - pos: -25.5,-16.5 + parent: 34 + type: Transform + - uid: 3097 + components: + - pos: -29.5,-17.5 + parent: 34 + type: Transform + - uid: 3098 + components: + - pos: -29.5,-18.5 + parent: 34 + type: Transform + - uid: 3099 + components: + - pos: -30.5,-18.5 + parent: 34 + type: Transform + - uid: 3100 + components: + - pos: -31.5,-18.5 + parent: 34 + type: Transform + - uid: 3101 + components: + - pos: -32.5,-18.5 + parent: 34 + type: Transform + - uid: 3102 + components: + - pos: -33.5,-18.5 + parent: 34 + type: Transform + - uid: 3103 + components: + - pos: -34.5,-18.5 + parent: 34 + type: Transform + - uid: 3104 + components: + - pos: -34.5,-17.5 + parent: 34 + type: Transform + - uid: 3105 + components: + - pos: -34.5,-16.5 + parent: 34 + type: Transform + - uid: 3106 + components: + - pos: -34.5,-15.5 + parent: 34 + type: Transform + - uid: 3107 + components: + - pos: -34.5,-14.5 + parent: 34 + type: Transform + - uid: 3108 + components: + - pos: -29.5,-15.5 + parent: 34 + type: Transform + - uid: 3109 + components: + - pos: -30.5,-14.5 + parent: 34 + type: Transform + - uid: 3110 + components: + - pos: -29.5,-14.5 + parent: 34 + type: Transform + - uid: 3111 + components: + - pos: -34.5,-10.5 + parent: 34 + type: Transform + - uid: 3112 + components: + - pos: -34.5,-9.5 + parent: 34 + type: Transform + - uid: 3113 + components: + - pos: -33.5,-10.5 + parent: 34 + type: Transform + - uid: 3114 + components: + - pos: -32.5,-10.5 + parent: 34 + type: Transform + - uid: 3115 + components: + - pos: -31.5,-10.5 + parent: 34 + type: Transform + - uid: 3116 + components: + - pos: -30.5,-10.5 + parent: 34 + type: Transform + - uid: 3117 + components: + - pos: -30.5,-9.5 + parent: 34 + type: Transform + - uid: 3118 + components: + - pos: -30.5,-8.5 + parent: 34 + type: Transform + - uid: 3119 + components: + - pos: -30.5,-7.5 + parent: 34 + type: Transform + - uid: 3120 + components: + - pos: -30.5,-6.5 + parent: 34 + type: Transform + - uid: 3121 + components: + - pos: -30.5,-5.5 + parent: 34 + type: Transform + - uid: 3122 + components: + - pos: -31.5,-5.5 + parent: 34 + type: Transform + - uid: 3123 + components: + - pos: -32.5,-5.5 + parent: 34 + type: Transform + - uid: 3124 + components: + - pos: -33.5,-5.5 + parent: 34 + type: Transform + - uid: 3125 + components: + - pos: -34.5,-5.5 + parent: 34 + type: Transform + - uid: 3126 + components: + - pos: -34.5,-4.5 + parent: 34 + type: Transform + - uid: 3127 + components: + - pos: -30.5,-4.5 + parent: 34 + type: Transform + - uid: 3128 + components: + - pos: -29.5,-10.5 + parent: 34 + type: Transform + - uid: 3129 + components: + - pos: -28.5,-10.5 + parent: 34 + type: Transform + - uid: 3130 + components: + - pos: -27.5,-10.5 + parent: 34 + type: Transform + - uid: 3131 + components: + - pos: -26.5,-10.5 + parent: 34 + type: Transform + - uid: 3132 + components: + - pos: -31.5,-7.5 + parent: 34 + type: Transform + - uid: 3133 + components: + - pos: -32.5,-7.5 + parent: 34 + type: Transform + - uid: 3134 + components: + - pos: -31.5,-14.5 + parent: 34 + type: Transform + - uid: 3135 + components: + - pos: -28.5,-18.5 + parent: 34 + type: Transform + - uid: 3136 + components: + - pos: -27.5,-18.5 + parent: 34 + type: Transform + - uid: 3137 + components: + - pos: -26.5,-18.5 + parent: 34 + type: Transform + - uid: 3138 + components: + - pos: -25.5,-18.5 + parent: 34 + type: Transform + - uid: 3139 + components: + - pos: -28.5,-14.5 + parent: 34 + type: Transform + - uid: 3140 + components: + - pos: -27.5,-14.5 + parent: 34 + type: Transform + - uid: 3141 + components: + - pos: -26.5,-14.5 + parent: 34 + type: Transform + - uid: 3142 + components: + - pos: -25.5,-14.5 + parent: 34 + type: Transform + - uid: 3144 + components: + - pos: -21.5,-10.5 + parent: 34 + type: Transform + - uid: 3145 + components: + - pos: -18.5,-14.5 + parent: 34 + type: Transform + - uid: 3146 + components: + - pos: -22.5,-10.5 + parent: 34 + type: Transform + - uid: 3147 + components: + - pos: -22.5,-9.5 + parent: 34 + type: Transform + - uid: 3148 + components: + - pos: -22.5,-8.5 + parent: 34 + type: Transform + - uid: 3149 + components: + - pos: -22.5,-7.5 + parent: 34 + type: Transform + - uid: 3150 + components: + - pos: -22.5,-6.5 + parent: 34 + type: Transform + - uid: 3151 + components: + - pos: -22.5,-5.5 + parent: 34 + type: Transform + - uid: 3152 + components: + - pos: -22.5,-11.5 + parent: 34 + type: Transform + - uid: 3153 + components: + - pos: -21.5,-11.5 + parent: 34 + type: Transform + - uid: 3154 + components: + - pos: -21.5,-12.5 + parent: 34 + type: Transform + - uid: 3155 + components: + - pos: -21.5,-13.5 + parent: 34 + type: Transform + - uid: 3156 + components: + - pos: -21.5,-14.5 + parent: 34 + type: Transform + - uid: 3157 + components: + - pos: -21.5,-15.5 + parent: 34 + type: Transform + - uid: 3158 + components: + - pos: -21.5,-16.5 + parent: 34 + type: Transform + - uid: 3159 + components: + - pos: -21.5,-17.5 + parent: 34 + type: Transform + - uid: 3160 + components: + - pos: -19.5,-17.5 + parent: 34 + type: Transform + - uid: 3161 + components: + - pos: -18.5,-13.5 + parent: 34 + type: Transform + - uid: 3162 + components: + - pos: -19.5,-13.5 + parent: 34 + type: Transform + - uid: 3163 + components: + - pos: -20.5,-13.5 + parent: 34 + type: Transform + - uid: 3164 + components: + - pos: -34.5,-30.5 + parent: 34 + type: Transform + - uid: 3165 + components: + - pos: -33.5,-30.5 + parent: 34 + type: Transform + - uid: 3166 + components: + - pos: -32.5,-30.5 + parent: 34 + type: Transform + - uid: 3167 + components: + - pos: -31.5,-30.5 + parent: 34 + type: Transform + - uid: 3168 + components: + - pos: -30.5,-30.5 + parent: 34 + type: Transform + - uid: 3169 + components: + - pos: -30.5,-31.5 + parent: 34 + type: Transform + - uid: 3170 + components: + - pos: -30.5,-32.5 + parent: 34 + type: Transform + - uid: 3171 + components: + - pos: -30.5,-33.5 + parent: 34 + type: Transform + - uid: 3172 + components: + - pos: -30.5,-34.5 + parent: 34 + type: Transform + - uid: 3173 + components: + - pos: -30.5,-35.5 + parent: 34 + type: Transform + - uid: 3174 + components: + - pos: -30.5,-36.5 + parent: 34 + type: Transform + - uid: 3175 + components: + - pos: -30.5,-37.5 + parent: 34 + type: Transform + - uid: 3176 + components: + - pos: -30.5,-38.5 + parent: 34 + type: Transform + - uid: 3177 + components: + - pos: -30.5,-39.5 + parent: 34 + type: Transform + - uid: 3178 + components: + - pos: -30.5,-40.5 + parent: 34 + type: Transform + - uid: 3179 + components: + - pos: -31.5,-40.5 + parent: 34 + type: Transform + - uid: 3180 + components: + - pos: -32.5,-40.5 + parent: 34 + type: Transform + - uid: 3181 + components: + - pos: -33.5,-40.5 + parent: 34 + type: Transform + - uid: 3182 + components: + - pos: -34.5,-40.5 + parent: 34 + type: Transform + - uid: 3183 + components: + - pos: -34.5,-39.5 + parent: 34 + type: Transform + - uid: 3184 + components: + - pos: -34.5,-38.5 + parent: 34 + type: Transform + - uid: 3185 + components: + - pos: -34.5,-37.5 + parent: 34 + type: Transform + - uid: 3191 + components: + - pos: -29.5,-37.5 + parent: 34 + type: Transform + - uid: 3192 + components: + - pos: -28.5,-37.5 + parent: 34 + type: Transform + - uid: 3193 + components: + - pos: -27.5,-37.5 + parent: 34 + type: Transform + - uid: 3194 + components: + - pos: -26.5,-37.5 + parent: 34 + type: Transform + - uid: 3195 + components: + - pos: -25.5,-37.5 + parent: 34 + type: Transform + - uid: 3217 + components: + - pos: -39.5,-49.5 + parent: 34 + type: Transform + - uid: 3221 + components: + - pos: -33.5,-49.5 + parent: 34 + type: Transform + - uid: 3241 + components: + - pos: -18.5,-34.5 + parent: 34 + type: Transform + - uid: 3242 + components: + - pos: -17.5,-42.5 + parent: 34 + type: Transform + - uid: 3256 + components: + - pos: -32.5,-43.5 + parent: 34 + type: Transform + - uid: 3257 + components: + - pos: -33.5,-43.5 + parent: 34 + type: Transform + - uid: 3258 + components: + - pos: -33.5,-44.5 + parent: 34 + type: Transform + - uid: 3259 + components: + - pos: -33.5,-45.5 + parent: 34 + type: Transform + - uid: 3260 + components: + - name: external access + type: MetaData + - pos: -33.5,-46.5 + parent: 34 + type: Transform + - uid: 3261 + components: + - pos: -33.5,-47.5 + parent: 34 + type: Transform + - uid: 3262 + components: + - pos: -33.5,-48.5 + parent: 34 + type: Transform + - uid: 3267 + components: + - pos: -19.5,-42.5 + parent: 34 + type: Transform + - uid: 3314 + components: + - pos: -33.5,-41.5 + parent: 34 + type: Transform + - uid: 3344 + components: + - pos: -12.5,-23.5 + parent: 34 + type: Transform + - uid: 3345 + components: + - pos: -12.5,-24.5 + parent: 34 + type: Transform + - uid: 3346 + components: + - pos: -7.5,-26.5 + parent: 34 + type: Transform + - uid: 3397 + components: + - pos: -9.5,-25.5 + parent: 34 + type: Transform + - uid: 3398 + components: + - pos: -10.5,-27.5 + parent: 34 + type: Transform + - uid: 3399 + components: + - pos: -6.5,-31.5 + parent: 34 + type: Transform + - uid: 3401 + components: + - pos: -12.5,-25.5 + parent: 34 + type: Transform + - uid: 3402 + components: + - pos: -12.5,-26.5 + parent: 34 + type: Transform + - uid: 3403 + components: + - pos: -13.5,-26.5 + parent: 34 + type: Transform + - uid: 3404 + components: + - pos: -14.5,-26.5 + parent: 34 + type: Transform + - uid: 3405 + components: + - pos: -11.5,-26.5 + parent: 34 + type: Transform + - uid: 3406 + components: + - pos: -10.5,-26.5 + parent: 34 + type: Transform + - uid: 3407 + components: + - pos: -9.5,-26.5 + parent: 34 + type: Transform + - uid: 3408 + components: + - pos: -8.5,-26.5 + parent: 34 + type: Transform + - uid: 3683 + components: + - pos: -29.5,-44.5 + parent: 34 + type: Transform + - uid: 3684 + components: + - pos: -29.5,-26.5 + parent: 34 + type: Transform + - uid: 3753 + components: + - pos: -29.5,-43.5 + parent: 34 + type: Transform + - uid: 3759 + components: + - pos: 31.5,-10.5 + parent: 34 + type: Transform + - uid: 3773 + components: + - pos: -30.5,-28.5 + parent: 34 + type: Transform + - uid: 3774 + components: + - pos: -30.5,-29.5 + parent: 34 + type: Transform + - uid: 3793 + components: + - pos: -29.5,-46.5 + parent: 34 + type: Transform + - uid: 3836 + components: + - pos: -10.5,-30.5 + parent: 34 + type: Transform + - uid: 3837 + components: + - pos: -10.5,-31.5 + parent: 34 + type: Transform + - uid: 3838 + components: + - pos: -9.5,-31.5 + parent: 34 + type: Transform + - uid: 3839 + components: + - pos: -9.5,-32.5 + parent: 34 + type: Transform + - uid: 3840 + components: + - pos: -9.5,-33.5 + parent: 34 + type: Transform + - uid: 3841 + components: + - pos: -9.5,-34.5 + parent: 34 + type: Transform + - uid: 3842 + components: + - pos: -9.5,-35.5 + parent: 34 + type: Transform + - uid: 3843 + components: + - pos: -9.5,-36.5 + parent: 34 + type: Transform + - uid: 3844 + components: + - pos: -9.5,-37.5 + parent: 34 + type: Transform + - uid: 3845 + components: + - pos: -8.5,-37.5 + parent: 34 + type: Transform + - uid: 3849 + components: + - pos: -8.5,-31.5 + parent: 34 + type: Transform + - uid: 3850 + components: + - pos: -10.5,-16.5 + parent: 34 + type: Transform + - uid: 3851 + components: + - pos: -9.5,-16.5 + parent: 34 + type: Transform + - uid: 3852 + components: + - pos: -8.5,-16.5 + parent: 34 + type: Transform + - uid: 3858 + components: + - pos: 7.5,-14.5 + parent: 34 + type: Transform + - uid: 3859 + components: + - pos: 6.5,-13.5 + parent: 34 + type: Transform + - uid: 3860 + components: + - pos: -22.5,-4.5 + parent: 34 + type: Transform + - uid: 3972 + components: + - pos: -6.5,-44.5 + parent: 34 + type: Transform + - uid: 4052 + components: + - pos: -29.5,-58.5 + parent: 34 + type: Transform + - uid: 4093 + components: + - pos: 4.5,-54.5 + parent: 34 + type: Transform + - uid: 4096 + components: + - pos: 6.5,-54.5 + parent: 34 + type: Transform + - uid: 4115 + components: + - pos: -3.5,-54.5 + parent: 34 + type: Transform + - uid: 4118 + components: + - pos: -1.5,-54.5 + parent: 34 + type: Transform + - uid: 4127 + components: + - pos: 13.5,-42.5 + parent: 34 + type: Transform + - uid: 4137 + components: + - pos: 33.5,-10.5 + parent: 34 + type: Transform + - uid: 4186 + components: + - pos: -16.5,-30.5 + parent: 34 + type: Transform + - uid: 4212 + components: + - pos: 6.5,-7.5 + parent: 34 + type: Transform + - uid: 4213 + components: + - pos: 6.5,-8.5 + parent: 34 + type: Transform + - uid: 4214 + components: + - pos: 7.5,-8.5 + parent: 34 + type: Transform + - uid: 4215 + components: + - pos: 8.5,-8.5 + parent: 34 + type: Transform + - uid: 4216 + components: + - pos: 5.5,-8.5 + parent: 34 + type: Transform + - uid: 4217 + components: + - pos: 4.5,-8.5 + parent: 34 + type: Transform + - uid: 4218 + components: + - pos: 4.5,-7.5 + parent: 34 + type: Transform + - uid: 4219 + components: + - pos: 4.5,-6.5 + parent: 34 + type: Transform + - uid: 4220 + components: + - pos: 4.5,-5.5 + parent: 34 + type: Transform + - uid: 4221 + components: + - pos: 4.5,-4.5 + parent: 34 + type: Transform + - uid: 4222 + components: + - pos: 5.5,-4.5 + parent: 34 + type: Transform + - uid: 4223 + components: + - pos: 6.5,-4.5 + parent: 34 + type: Transform + - uid: 4224 + components: + - pos: 7.5,-4.5 + parent: 34 + type: Transform + - uid: 4225 + components: + - pos: 8.5,-4.5 + parent: 34 + type: Transform + - uid: 4226 + components: + - pos: 3.5,-4.5 + parent: 34 + type: Transform + - uid: 4227 + components: + - pos: 2.5,-4.5 + parent: 34 + type: Transform + - uid: 4228 + components: + - pos: 1.5,-4.5 + parent: 34 + type: Transform + - uid: 4229 + components: + - pos: 0.5,-4.5 + parent: 34 + type: Transform + - uid: 4230 + components: + - pos: -0.5,-4.5 + parent: 34 + type: Transform + - uid: 4231 + components: + - pos: 3.5,-8.5 + parent: 34 + type: Transform + - uid: 4232 + components: + - pos: 2.5,-8.5 + parent: 34 + type: Transform + - uid: 4233 + components: + - pos: 1.5,-8.5 + parent: 34 + type: Transform + - uid: 4234 + components: + - pos: 0.5,-8.5 + parent: 34 + type: Transform + - uid: 4235 + components: + - pos: -0.5,-8.5 + parent: 34 + type: Transform + - uid: 4236 + components: + - pos: 4.5,-9.5 + parent: 34 + type: Transform + - uid: 4237 + components: + - pos: 4.5,-10.5 + parent: 34 + type: Transform + - uid: 4238 + components: + - pos: 4.5,-11.5 + parent: 34 + type: Transform + - uid: 4239 + components: + - pos: 3.5,-11.5 + parent: 34 + type: Transform + - uid: 4240 + components: + - pos: 2.5,-11.5 + parent: 34 + type: Transform + - uid: 4241 + components: + - pos: 1.5,-11.5 + parent: 34 + type: Transform + - uid: 4242 + components: + - pos: 0.5,-11.5 + parent: 34 + type: Transform + - uid: 4243 + components: + - pos: -0.5,-11.5 + parent: 34 + type: Transform + - uid: 4343 + components: + - pos: -21.5,-30.5 + parent: 34 + type: Transform + - uid: 4349 + components: + - pos: -17.5,-30.5 + parent: 34 + type: Transform + - uid: 4359 + components: + - pos: 13.5,-44.5 + parent: 34 + type: Transform + - uid: 4408 + components: + - pos: 2.5,-29.5 + parent: 34 + type: Transform + - uid: 4409 + components: + - pos: 2.5,-28.5 + parent: 34 + type: Transform + - uid: 4410 + components: + - pos: 1.5,-28.5 + parent: 34 + type: Transform + - uid: 4411 + components: + - pos: 0.5,-28.5 + parent: 34 + type: Transform + - uid: 4414 + components: + - pos: -17.5,-28.5 + parent: 34 + type: Transform + - uid: 4416 + components: + - pos: -53.5,-37.5 + parent: 34 + type: Transform + - uid: 4418 + components: + - pos: 9.5,-47.5 + parent: 34 + type: Transform + - uid: 4430 + components: + - pos: -19.5,-29.5 + parent: 34 + type: Transform + - uid: 4431 + components: + - pos: -17.5,-29.5 + parent: 34 + type: Transform + - uid: 4434 + components: + - pos: 10.5,-47.5 + parent: 34 + type: Transform + - uid: 4456 + components: + - pos: -23.5,-41.5 + parent: 34 + type: Transform + - uid: 4518 + components: + - pos: 37.5,4.5 + parent: 34 + type: Transform + - uid: 4543 + components: + - pos: -20.5,-34.5 + parent: 34 + type: Transform + - uid: 4544 + components: + - pos: -21.5,-33.5 + parent: 34 + type: Transform + - uid: 4550 + components: + - pos: 47.5,-6.5 + parent: 34 + type: Transform + - uid: 4552 + components: + - pos: 42.5,-12.5 + parent: 34 + type: Transform + - uid: 4553 + components: + - pos: 41.5,-12.5 + parent: 34 + type: Transform + - uid: 4578 + components: + - pos: 41.5,-1.5 + parent: 34 + type: Transform + - uid: 4580 + components: + - pos: -21.5,-36.5 + parent: 34 + type: Transform + - uid: 4581 + components: + - pos: -21.5,-34.5 + parent: 34 + type: Transform + - uid: 4662 + components: + - pos: -20.5,-30.5 + parent: 34 + type: Transform + - uid: 4666 + components: + - pos: 43.5,-5.5 + parent: 34 + type: Transform + - uid: 4672 + components: + - pos: 36.5,-16.5 + parent: 34 + type: Transform + - uid: 4674 + components: + - pos: -22.5,-34.5 + parent: 34 + type: Transform + - uid: 4697 + components: + - pos: 40.5,-9.5 + parent: 34 + type: Transform + - uid: 4742 + components: + - pos: 40.5,-7.5 + parent: 34 + type: Transform + - uid: 4767 + components: + - pos: 44.5,-5.5 + parent: 34 + type: Transform + - uid: 4786 + components: + - pos: -0.5,-28.5 + parent: 34 + type: Transform + - uid: 4787 + components: + - pos: -0.5,-27.5 + parent: 34 + type: Transform + - uid: 4788 + components: + - pos: -0.5,-29.5 + parent: 34 + type: Transform + - uid: 4797 + components: + - pos: 42.5,-5.5 + parent: 34 + type: Transform + - uid: 4804 + components: + - pos: 40.5,-1.5 + parent: 34 + type: Transform + - uid: 4806 + components: + - pos: 40.5,-3.5 + parent: 34 + type: Transform + - uid: 4807 + components: + - pos: 39.5,-3.5 + parent: 34 + type: Transform + - uid: 4808 + components: + - pos: 38.5,-3.5 + parent: 34 + type: Transform + - uid: 4811 + components: + - pos: 38.5,-0.5 + parent: 34 + type: Transform + - uid: 4812 + components: + - pos: 38.5,0.5 + parent: 34 + type: Transform + - uid: 4813 + components: + - pos: 38.5,1.5 + parent: 34 + type: Transform + - uid: 4814 + components: + - pos: 38.5,2.5 + parent: 34 + type: Transform + - uid: 4815 + components: + - pos: 38.5,3.5 + parent: 34 + type: Transform + - uid: 4816 + components: + - pos: 38.5,4.5 + parent: 34 + type: Transform + - uid: 4817 + components: + - pos: 38.5,5.5 + parent: 34 + type: Transform + - uid: 4818 + components: + - pos: 39.5,4.5 + parent: 34 + type: Transform + - uid: 4819 + components: + - pos: 40.5,4.5 + parent: 34 + type: Transform + - uid: 4820 + components: + - pos: 41.5,4.5 + parent: 34 + type: Transform + - uid: 4821 + components: + - pos: 42.5,4.5 + parent: 34 + type: Transform + - uid: 4822 + components: + - pos: 43.5,4.5 + parent: 34 + type: Transform + - uid: 4823 + components: + - pos: 44.5,4.5 + parent: 34 + type: Transform + - uid: 4824 + components: + - pos: 44.5,5.5 + parent: 34 + type: Transform + - uid: 4825 + components: + - pos: 42.5,3.5 + parent: 34 + type: Transform + - uid: 4826 + components: + - pos: 42.5,2.5 + parent: 34 + type: Transform + - uid: 4827 + components: + - pos: 42.5,1.5 + parent: 34 + type: Transform + - uid: 4828 + components: + - pos: 42.5,0.5 + parent: 34 + type: Transform + - uid: 4829 + components: + - pos: 43.5,0.5 + parent: 34 + type: Transform + - uid: 4830 + components: + - pos: 44.5,0.5 + parent: 34 + type: Transform + - uid: 4831 + components: + - pos: 45.5,0.5 + parent: 34 + type: Transform + - uid: 4832 + components: + - pos: 46.5,0.5 + parent: 34 + type: Transform + - uid: 4833 + components: + - pos: 47.5,0.5 + parent: 34 + type: Transform + - uid: 4834 + components: + - pos: 47.5,-0.5 + parent: 34 + type: Transform + - uid: 4835 + components: + - pos: 47.5,-1.5 + parent: 34 + type: Transform + - uid: 4836 + components: + - pos: 47.5,-2.5 + parent: 34 + type: Transform + - uid: 4837 + components: + - pos: 47.5,-3.5 + parent: 34 + type: Transform + - uid: 4838 + components: + - pos: 46.5,-3.5 + parent: 34 + type: Transform + - uid: 4839 + components: + - pos: 45.5,-3.5 + parent: 34 + type: Transform + - uid: 4840 + components: + - pos: 44.5,-3.5 + parent: 34 + type: Transform + - uid: 4841 + components: + - pos: 43.5,-3.5 + parent: 34 + type: Transform + - uid: 4842 + components: + - pos: 42.5,-3.5 + parent: 34 + type: Transform + - uid: 4843 + components: + - pos: 41.5,-3.5 + parent: 34 + type: Transform + - uid: 4858 + components: + - pos: 41.5,-7.5 + parent: 34 + type: Transform + - uid: 4865 + components: + - pos: 36.5,-17.5 + parent: 34 + type: Transform + - uid: 4876 + components: + - pos: -19.5,-40.5 + parent: 34 + type: Transform + - uid: 4928 + components: + - pos: -53.5,-38.5 + parent: 34 + type: Transform + - uid: 5045 + components: + - pos: -0.5,-30.5 + parent: 34 + type: Transform + - uid: 5080 + components: + - pos: -4.5,-45.5 + parent: 34 + type: Transform + - uid: 5081 + components: + - pos: -1.5,-45.5 + parent: 34 + type: Transform + - uid: 5082 + components: + - pos: -1.5,-46.5 + parent: 34 + type: Transform + - uid: 5083 + components: + - pos: -1.5,-47.5 + parent: 34 + type: Transform + - uid: 5084 + components: + - pos: -1.5,-48.5 + parent: 34 + type: Transform + - uid: 5085 + components: + - pos: -2.5,-48.5 + parent: 34 + type: Transform + - uid: 5086 + components: + - pos: -2.5,-49.5 + parent: 34 + type: Transform + - uid: 5087 + components: + - pos: -2.5,-50.5 + parent: 34 + type: Transform + - uid: 5088 + components: + - pos: -2.5,-51.5 + parent: 34 + type: Transform + - uid: 5089 + components: + - pos: -2.5,-52.5 + parent: 34 + type: Transform + - uid: 5090 + components: + - pos: -2.5,-53.5 + parent: 34 + type: Transform + - uid: 5091 + components: + - pos: -1.5,-53.5 + parent: 34 + type: Transform + - uid: 5092 + components: + - pos: -3.5,-53.5 + parent: 34 + type: Transform + - uid: 5093 + components: + - pos: -0.5,-48.5 + parent: 34 + type: Transform + - uid: 5094 + components: + - pos: 0.5,-48.5 + parent: 34 + type: Transform + - uid: 5095 + components: + - pos: 1.5,-48.5 + parent: 34 + type: Transform + - uid: 5096 + components: + - pos: 2.5,-48.5 + parent: 34 + type: Transform + - uid: 5097 + components: + - pos: 3.5,-48.5 + parent: 34 + type: Transform + - uid: 5098 + components: + - pos: 4.5,-48.5 + parent: 34 + type: Transform + - uid: 5099 + components: + - pos: 5.5,-48.5 + parent: 34 + type: Transform + - uid: 5100 + components: + - pos: 5.5,-49.5 + parent: 34 + type: Transform + - uid: 5101 + components: + - pos: 5.5,-50.5 + parent: 34 + type: Transform + - uid: 5102 + components: + - pos: 5.5,-51.5 + parent: 34 + type: Transform + - uid: 5103 + components: + - pos: 5.5,-52.5 + parent: 34 + type: Transform + - uid: 5104 + components: + - pos: 5.5,-53.5 + parent: 34 + type: Transform + - uid: 5105 + components: + - pos: 4.5,-53.5 + parent: 34 + type: Transform + - uid: 5106 + components: + - pos: 6.5,-53.5 + parent: 34 + type: Transform + - uid: 5107 + components: + - pos: 1.5,-49.5 + parent: 34 + type: Transform + - uid: 5108 + components: + - pos: 1.5,-50.5 + parent: 34 + type: Transform + - uid: 5109 + components: + - pos: -4.5,-44.5 + parent: 34 + type: Transform + - uid: 5110 + components: + - pos: -4.5,-43.5 + parent: 34 + type: Transform + - uid: 5111 + components: + - pos: -4.5,-42.5 + parent: 34 + type: Transform + - uid: 5112 + components: + - pos: -4.5,-41.5 + parent: 34 + type: Transform + - uid: 5113 + components: + - pos: -4.5,-40.5 + parent: 34 + type: Transform + - uid: 5114 + components: + - pos: -4.5,-39.5 + parent: 34 + type: Transform + - uid: 5115 + components: + - pos: -4.5,-38.5 + parent: 34 + type: Transform + - uid: 5116 + components: + - pos: -4.5,-37.5 + parent: 34 + type: Transform + - uid: 5117 + components: + - pos: -4.5,-36.5 + parent: 34 + type: Transform + - uid: 5118 + components: + - pos: -4.5,-35.5 + parent: 34 + type: Transform + - uid: 5119 + components: + - pos: -4.5,-34.5 + parent: 34 + type: Transform + - uid: 5120 + components: + - pos: -4.5,-33.5 + parent: 34 + type: Transform + - uid: 5121 + components: + - pos: -4.5,-32.5 + parent: 34 + type: Transform + - uid: 5122 + components: + - pos: -5.5,-42.5 + parent: 34 + type: Transform + - uid: 5123 + components: + - pos: -6.5,-42.5 + parent: 34 + type: Transform + - uid: 5124 + components: + - pos: -7.5,-42.5 + parent: 34 + type: Transform + - uid: 5125 + components: + - pos: -8.5,-42.5 + parent: 34 + type: Transform + - uid: 5126 + components: + - pos: -9.5,-42.5 + parent: 34 + type: Transform + - uid: 5127 + components: + - pos: -9.5,-43.5 + parent: 34 + type: Transform + - uid: 5128 + components: + - pos: -9.5,-41.5 + parent: 34 + type: Transform + - uid: 5129 + components: + - pos: -9.5,-44.5 + parent: 34 + type: Transform + - uid: 5130 + components: + - pos: -9.5,-45.5 + parent: 34 + type: Transform + - uid: 5131 + components: + - pos: -9.5,-46.5 + parent: 34 + type: Transform + - uid: 5132 + components: + - pos: -5.5,-45.5 + parent: 34 + type: Transform + - uid: 5133 + components: + - pos: -6.5,-45.5 + parent: 34 + type: Transform + - uid: 5134 + components: + - pos: -0.5,-45.5 + parent: 34 + type: Transform + - uid: 5140 + components: + - pos: 6.5,-48.5 + parent: 34 + type: Transform + - uid: 5141 + components: + - pos: 7.5,-48.5 + parent: 34 + type: Transform + - uid: 5142 + components: + - pos: 8.5,-48.5 + parent: 34 + type: Transform + - uid: 5148 + components: + - pos: 28.5,-28.5 + parent: 34 + type: Transform + - uid: 5149 + components: + - pos: 29.5,-28.5 + parent: 34 + type: Transform + - uid: 5150 + components: + - pos: 30.5,-28.5 + parent: 34 + type: Transform + - uid: 5151 + components: + - pos: 31.5,-28.5 + parent: 34 + type: Transform + - uid: 5152 + components: + - pos: 32.5,-28.5 + parent: 34 + type: Transform + - uid: 5153 + components: + - pos: 33.5,-28.5 + parent: 34 + type: Transform + - uid: 5154 + components: + - pos: 34.5,-28.5 + parent: 34 + type: Transform + - uid: 5155 + components: + - pos: 35.5,-28.5 + parent: 34 + type: Transform + - uid: 5156 + components: + - pos: 36.5,-28.5 + parent: 34 + type: Transform + - uid: 5157 + components: + - pos: 36.5,-29.5 + parent: 34 + type: Transform + - uid: 5159 + components: + - pos: 30.5,-29.5 + parent: 34 + type: Transform + - uid: 5160 + components: + - pos: 30.5,-30.5 + parent: 34 + type: Transform + - uid: 5161 + components: + - pos: 27.5,-28.5 + parent: 34 + type: Transform + - uid: 5162 + components: + - pos: 26.5,-28.5 + parent: 34 + type: Transform + - uid: 5163 + components: + - pos: 25.5,-28.5 + parent: 34 + type: Transform + - uid: 5164 + components: + - pos: 25.5,-29.5 + parent: 34 + type: Transform + - uid: 5165 + components: + - pos: 35.5,-36.5 + parent: 34 + type: Transform + - uid: 5166 + components: + - pos: 36.5,-36.5 + parent: 34 + type: Transform + - uid: 5167 + components: + - pos: 37.5,-36.5 + parent: 34 + type: Transform + - uid: 5168 + components: + - pos: 38.5,-36.5 + parent: 34 + type: Transform + - uid: 5169 + components: + - pos: 39.5,-36.5 + parent: 34 + type: Transform + - uid: 5170 + components: + - pos: 40.5,-36.5 + parent: 34 + type: Transform + - uid: 5171 + components: + - pos: 34.5,-36.5 + parent: 34 + type: Transform + - uid: 5172 + components: + - pos: 33.5,-36.5 + parent: 34 + type: Transform + - uid: 5173 + components: + - pos: 37.5,-35.5 + parent: 34 + type: Transform + - uid: 5174 + components: + - pos: 37.5,-34.5 + parent: 34 + type: Transform + - uid: 5175 + components: + - pos: 37.5,-33.5 + parent: 34 + type: Transform + - uid: 5176 + components: + - pos: 37.5,-32.5 + parent: 34 + type: Transform + - uid: 5177 + components: + - pos: 40.5,-35.5 + parent: 34 + type: Transform + - uid: 5178 + components: + - pos: 40.5,-34.5 + parent: 34 + type: Transform + - uid: 5179 + components: + - pos: 40.5,-33.5 + parent: 34 + type: Transform + - uid: 5180 + components: + - pos: 40.5,-32.5 + parent: 34 + type: Transform + - uid: 5181 + components: + - pos: 32.5,-36.5 + parent: 34 + type: Transform + - uid: 5182 + components: + - pos: 32.5,-35.5 + parent: 34 + type: Transform + - uid: 5183 + components: + - pos: 32.5,-34.5 + parent: 34 + type: Transform + - uid: 5184 + components: + - pos: 32.5,-33.5 + parent: 34 + type: Transform + - uid: 5185 + components: + - pos: 32.5,-32.5 + parent: 34 + type: Transform + - uid: 5186 + components: + - pos: 31.5,-33.5 + parent: 34 + type: Transform + - uid: 5187 + components: + - pos: 33.5,-33.5 + parent: 34 + type: Transform + - uid: 5188 + components: + - pos: 31.5,-36.5 + parent: 34 + type: Transform + - uid: 5189 + components: + - pos: 32.5,-37.5 + parent: 34 + type: Transform + - uid: 5190 + components: + - pos: 31.5,-30.5 + parent: 34 + type: Transform + - uid: 5191 + components: + - pos: 32.5,-30.5 + parent: 34 + type: Transform + - uid: 5281 + components: + - pos: 8.5,-47.5 + parent: 34 + type: Transform + - uid: 5409 + components: + - pos: 36.5,-43.5 + parent: 34 + type: Transform + - uid: 5477 + components: + - pos: 25.5,-47.5 + parent: 34 + type: Transform + - uid: 5486 + components: + - pos: 35.5,-43.5 + parent: 34 + type: Transform + - uid: 5578 + components: + - pos: -33.5,-42.5 + parent: 34 + type: Transform + - uid: 5665 + components: + - pos: -37.5,1.5 + parent: 34 + type: Transform + - uid: 5667 + components: + - pos: -37.5,2.5 + parent: 34 + type: Transform + - uid: 5670 + components: + - pos: -37.5,0.5 + parent: 34 + type: Transform + - uid: 5752 + components: + - pos: -19.5,3.5 + parent: 34 + type: Transform + - uid: 5753 + components: + - pos: -20.5,3.5 + parent: 34 + type: Transform + - uid: 5754 + components: + - pos: -21.5,3.5 + parent: 34 + type: Transform + - uid: 5755 + components: + - pos: -21.5,2.5 + parent: 34 + type: Transform + - uid: 5756 + components: + - pos: -22.5,2.5 + parent: 34 + type: Transform + - uid: 5757 + components: + - pos: -23.5,2.5 + parent: 34 + type: Transform + - uid: 5758 + components: + - pos: -24.5,2.5 + parent: 34 + type: Transform + - uid: 5759 + components: + - pos: -25.5,2.5 + parent: 34 + type: Transform + - uid: 5760 + components: + - pos: -25.5,3.5 + parent: 34 + type: Transform + - uid: 5761 + components: + - pos: -25.5,4.5 + parent: 34 + type: Transform + - uid: 5762 + components: + - pos: -24.5,4.5 + parent: 34 + type: Transform + - uid: 5763 + components: + - pos: -23.5,4.5 + parent: 34 + type: Transform + - uid: 5764 + components: + - pos: -22.5,4.5 + parent: 34 + type: Transform + - uid: 5765 + components: + - pos: -21.5,4.5 + parent: 34 + type: Transform + - uid: 5766 + components: + - pos: -25.5,5.5 + parent: 34 + type: Transform + - uid: 5767 + components: + - pos: -25.5,6.5 + parent: 34 + type: Transform + - uid: 5768 + components: + - pos: -25.5,7.5 + parent: 34 + type: Transform + - uid: 5769 + components: + - pos: -25.5,8.5 + parent: 34 + type: Transform + - uid: 5770 + components: + - pos: -24.5,8.5 + parent: 34 + type: Transform + - uid: 5771 + components: + - pos: -23.5,8.5 + parent: 34 + type: Transform + - uid: 5772 + components: + - pos: -22.5,8.5 + parent: 34 + type: Transform + - uid: 5773 + components: + - pos: -21.5,8.5 + parent: 34 + type: Transform + - uid: 5774 + components: + - pos: -20.5,8.5 + parent: 34 + type: Transform + - uid: 5775 + components: + - pos: -19.5,8.5 + parent: 34 + type: Transform + - uid: 5776 + components: + - pos: -18.5,8.5 + parent: 34 + type: Transform + - uid: 5777 + components: + - pos: -17.5,8.5 + parent: 34 + type: Transform + - uid: 5778 + components: + - pos: -16.5,8.5 + parent: 34 + type: Transform + - uid: 5779 + components: + - pos: -15.5,8.5 + parent: 34 + type: Transform + - uid: 5780 + components: + - pos: -14.5,8.5 + parent: 34 + type: Transform + - uid: 5781 + components: + - pos: -13.5,8.5 + parent: 34 + type: Transform + - uid: 5782 + components: + - pos: -26.5,8.5 + parent: 34 + type: Transform + - uid: 5783 + components: + - pos: -27.5,8.5 + parent: 34 + type: Transform + - uid: 5785 + components: + - pos: -35.5,-2.5 + parent: 34 + type: Transform + - uid: 5786 + components: + - pos: -35.5,-1.5 + parent: 34 + type: Transform + - uid: 5826 + components: + - pos: 36.5,-37.5 + parent: 34 + type: Transform + - uid: 5827 + components: + - pos: 36.5,-38.5 + parent: 34 + type: Transform + - uid: 5828 + components: + - pos: 36.5,-39.5 + parent: 34 + type: Transform + - uid: 5829 + components: + - pos: 36.5,-40.5 + parent: 34 + type: Transform + - uid: 5830 + components: + - pos: 37.5,-40.5 + parent: 34 + type: Transform + - uid: 5831 + components: + - pos: 38.5,-40.5 + parent: 34 + type: Transform + - uid: 5832 + components: + - pos: 39.5,-40.5 + parent: 34 + type: Transform + - uid: 5833 + components: + - pos: 39.5,-39.5 + parent: 34 + type: Transform + - uid: 6021 + components: + - pos: 42.5,-8.5 + parent: 34 + type: Transform + - uid: 6024 + components: + - pos: 41.5,-9.5 + parent: 34 + type: Transform + - uid: 6034 + components: + - pos: 46.5,-24.5 + parent: 34 + type: Transform + - uid: 6035 + components: + - pos: 47.5,-24.5 + parent: 34 + type: Transform + - uid: 6036 + components: + - pos: 47.5,-23.5 + parent: 34 + type: Transform + - uid: 6037 + components: + - pos: 47.5,-22.5 + parent: 34 + type: Transform + - uid: 6038 + components: + - pos: 48.5,-22.5 + parent: 34 + type: Transform + - uid: 6039 + components: + - pos: 49.5,-22.5 + parent: 34 + type: Transform + - uid: 6040 + components: + - pos: 50.5,-22.5 + parent: 34 + type: Transform + - uid: 6041 + components: + - pos: 51.5,-22.5 + parent: 34 + type: Transform + - uid: 6042 + components: + - pos: 51.5,-24.5 + parent: 34 + type: Transform + - uid: 6043 + components: + - pos: 50.5,-24.5 + parent: 34 + type: Transform + - uid: 6044 + components: + - pos: 49.5,-24.5 + parent: 34 + type: Transform + - uid: 6045 + components: + - pos: 48.5,-24.5 + parent: 34 + type: Transform + - uid: 6063 + components: + - pos: -0.5,-31.5 + parent: 34 + type: Transform + - uid: 6064 + components: + - pos: -0.5,-32.5 + parent: 34 + type: Transform + - uid: 6065 + components: + - pos: -0.5,-33.5 + parent: 34 + type: Transform + - uid: 6066 + components: + - pos: 3.5,-28.5 + parent: 34 + type: Transform + - uid: 6067 + components: + - pos: 4.5,-28.5 + parent: 34 + type: Transform + - uid: 6068 + components: + - pos: 5.5,-28.5 + parent: 34 + type: Transform + - uid: 6069 + components: + - pos: 6.5,-28.5 + parent: 34 + type: Transform + - uid: 6070 + components: + - pos: 7.5,-28.5 + parent: 34 + type: Transform + - uid: 6071 + components: + - pos: 8.5,-28.5 + parent: 34 + type: Transform + - uid: 6072 + components: + - pos: 9.5,-28.5 + parent: 34 + type: Transform + - uid: 6073 + components: + - pos: 9.5,-27.5 + parent: 34 + type: Transform + - uid: 6074 + components: + - pos: 4.5,-27.5 + parent: 34 + type: Transform + - uid: 6075 + components: + - pos: 4.5,-26.5 + parent: 34 + type: Transform + - uid: 6076 + components: + - pos: 4.5,-29.5 + parent: 34 + type: Transform + - uid: 6077 + components: + - pos: 4.5,-30.5 + parent: 34 + type: Transform + - uid: 6138 + components: + - pos: -54.5,-23.5 + parent: 34 + type: Transform + - uid: 6164 + components: + - pos: -1.5,14.5 + parent: 34 + type: Transform + - uid: 6172 + components: + - pos: 6.5,18.5 + parent: 34 + type: Transform + - uid: 6175 + components: + - pos: 9.5,16.5 + parent: 34 + type: Transform + - uid: 6179 + components: + - pos: -20.5,-42.5 + parent: 34 + type: Transform + - uid: 6180 + components: + - pos: 3.5,14.5 + parent: 34 + type: Transform + - uid: 6181 + components: + - pos: 6.5,19.5 + parent: 34 + type: Transform + - uid: 6185 + components: + - pos: 0.5,14.5 + parent: 34 + type: Transform + - uid: 6186 + components: + - pos: 1.5,14.5 + parent: 34 + type: Transform + - uid: 6190 + components: + - pos: -0.5,14.5 + parent: 34 + type: Transform + - uid: 6191 + components: + - pos: 2.5,14.5 + parent: 34 + type: Transform + - uid: 6203 + components: + - pos: 9.5,17.5 + parent: 34 + type: Transform + - uid: 6204 + components: + - pos: 6.5,16.5 + parent: 34 + type: Transform + - uid: 6210 + components: + - pos: 6.5,17.5 + parent: 34 + type: Transform + - uid: 6217 + components: + - pos: -51.5,-41.5 + parent: 34 + type: Transform + - uid: 6218 + components: + - pos: -51.5,-40.5 + parent: 34 + type: Transform + - uid: 6219 + components: + - pos: -51.5,-39.5 + parent: 34 + type: Transform + - uid: 6223 + components: + - pos: -58.5,-18.5 + parent: 34 + type: Transform + - uid: 6233 + components: + - pos: -18.5,-29.5 + parent: 34 + type: Transform + - uid: 6234 + components: + - pos: 36.5,4.5 + parent: 34 + type: Transform + - uid: 6332 + components: + - pos: -57.5,-18.5 + parent: 34 + type: Transform + - uid: 6333 + components: + - pos: -56.5,-18.5 + parent: 34 + type: Transform + - uid: 6334 + components: + - pos: -55.5,-18.5 + parent: 34 + type: Transform + - uid: 6336 + components: + - pos: -53.5,-28.5 + parent: 34 + type: Transform + - uid: 6337 + components: + - pos: -52.5,-28.5 + parent: 34 + type: Transform + - uid: 6338 + components: + - pos: -50.5,-28.5 + parent: 34 + type: Transform + - uid: 6373 + components: + - pos: -33.5,-50.5 + parent: 34 + type: Transform + - uid: 6498 + components: + - pos: -11.5,-0.5 + parent: 34 + type: Transform + - uid: 6537 + components: + - pos: 4.5,14.5 + parent: 34 + type: Transform + - uid: 6539 + components: + - pos: 4.5,-31.5 + parent: 34 + type: Transform + - uid: 6540 + components: + - pos: 4.5,-32.5 + parent: 34 + type: Transform + - uid: 6562 + components: + - pos: 4.5,-33.5 + parent: 34 + type: Transform + - uid: 6685 + components: + - pos: -19.5,-39.5 + parent: 34 + type: Transform + - uid: 6793 + components: + - pos: 21.5,-3.5 + parent: 34 + type: Transform + - uid: 6794 + components: + - pos: 21.5,-4.5 + parent: 34 + type: Transform + - uid: 6795 + components: + - pos: 21.5,-5.5 + parent: 34 + type: Transform + - uid: 6796 + components: + - pos: 21.5,-6.5 + parent: 34 + type: Transform + - uid: 6797 + components: + - pos: 21.5,-7.5 + parent: 34 + type: Transform + - uid: 6798 + components: + - pos: 20.5,-5.5 + parent: 34 + type: Transform + - uid: 6879 + components: + - pos: 19.5,-5.5 + parent: 34 + type: Transform + - uid: 6880 + components: + - pos: 18.5,-5.5 + parent: 34 + type: Transform + - uid: 6881 + components: + - pos: 17.5,-5.5 + parent: 34 + type: Transform + - uid: 6882 + components: + - pos: 16.5,-5.5 + parent: 34 + type: Transform + - uid: 6883 + components: + - pos: 16.5,-4.5 + parent: 34 + type: Transform + - uid: 6884 + components: + - pos: 18.5,-6.5 + parent: 34 + type: Transform + - uid: 6885 + components: + - pos: 16.5,-6.5 + parent: 34 + type: Transform + - uid: 6886 + components: + - pos: 18.5,-4.5 + parent: 34 + type: Transform + - uid: 6887 + components: + - pos: 16.5,-7.5 + parent: 34 + type: Transform + - uid: 6888 + components: + - pos: 16.5,-8.5 + parent: 34 + type: Transform + - uid: 6889 + components: + - pos: 17.5,-13.5 + parent: 34 + type: Transform + - uid: 6890 + components: + - pos: 18.5,-11.5 + parent: 34 + type: Transform + - uid: 6891 + components: + - pos: 18.5,-12.5 + parent: 34 + type: Transform + - uid: 6892 + components: + - pos: 18.5,-13.5 + parent: 34 + type: Transform + - uid: 6893 + components: + - pos: 16.5,-13.5 + parent: 34 + type: Transform + - uid: 6894 + components: + - pos: 18.5,-14.5 + parent: 34 + type: Transform + - uid: 6895 + components: + - pos: 18.5,-15.5 + parent: 34 + type: Transform + - uid: 6896 + components: + - pos: 18.5,-16.5 + parent: 34 + type: Transform + - uid: 6897 + components: + - pos: 18.5,-17.5 + parent: 34 + type: Transform + - uid: 6898 + components: + - pos: 18.5,-18.5 + parent: 34 + type: Transform + - uid: 6899 + components: + - pos: 17.5,-18.5 + parent: 34 + type: Transform + - uid: 6900 + components: + - pos: 18.5,-19.5 + parent: 34 + type: Transform + - uid: 6901 + components: + - pos: 19.5,-18.5 + parent: 34 + type: Transform + - uid: 6902 + components: + - pos: 20.5,-18.5 + parent: 34 + type: Transform + - uid: 6903 + components: + - pos: 19.5,-13.5 + parent: 34 + type: Transform + - uid: 6904 + components: + - pos: 20.5,-13.5 + parent: 34 + type: Transform + - uid: 6905 + components: + - pos: 27.5,-18.5 + parent: 34 + type: Transform + - uid: 6906 + components: + - pos: 28.5,-18.5 + parent: 34 + type: Transform + - uid: 6907 + components: + - pos: 29.5,-18.5 + parent: 34 + type: Transform + - uid: 6908 + components: + - pos: 29.5,-17.5 + parent: 34 + type: Transform + - uid: 6909 + components: + - pos: 26.5,-18.5 + parent: 34 + type: Transform + - uid: 6910 + components: + - pos: 25.5,-18.5 + parent: 34 + type: Transform + - uid: 6911 + components: + - pos: 24.5,-18.5 + parent: 34 + type: Transform + - uid: 6912 + components: + - pos: 24.5,-19.5 + parent: 34 + type: Transform + - uid: 6913 + components: + - pos: 24.5,-17.5 + parent: 34 + type: Transform + - uid: 6914 + components: + - pos: 24.5,-16.5 + parent: 34 + type: Transform + - uid: 6915 + components: + - pos: 24.5,-15.5 + parent: 34 + type: Transform + - uid: 6916 + components: + - pos: 24.5,-14.5 + parent: 34 + type: Transform + - uid: 6917 + components: + - pos: 24.5,-13.5 + parent: 34 + type: Transform + - uid: 6918 + components: + - pos: 25.5,-13.5 + parent: 34 + type: Transform + - uid: 6919 + components: + - pos: 26.5,-13.5 + parent: 34 + type: Transform + - uid: 6920 + components: + - pos: 27.5,-13.5 + parent: 34 + type: Transform + - uid: 6921 + components: + - pos: 28.5,-13.5 + parent: 34 + type: Transform + - uid: 6922 + components: + - pos: 28.5,-12.5 + parent: 34 + type: Transform + - uid: 6923 + components: + - pos: 28.5,-11.5 + parent: 34 + type: Transform + - uid: 6924 + components: + - pos: 28.5,-10.5 + parent: 34 + type: Transform + - uid: 6925 + components: + - pos: 22.5,-3.5 + parent: 34 + type: Transform + - uid: 6926 + components: + - pos: 23.5,-3.5 + parent: 34 + type: Transform + - uid: 6927 + components: + - pos: 24.5,-3.5 + parent: 34 + type: Transform + - uid: 6928 + components: + - pos: 25.5,-3.5 + parent: 34 + type: Transform + - uid: 6929 + components: + - pos: 26.5,-3.5 + parent: 34 + type: Transform + - uid: 6930 + components: + - pos: 27.5,-3.5 + parent: 34 + type: Transform + - uid: 6931 + components: + - pos: 26.5,5.5 + parent: 34 + type: Transform + - uid: 6932 + components: + - pos: 26.5,4.5 + parent: 34 + type: Transform + - uid: 6933 + components: + - pos: 27.5,4.5 + parent: 34 + type: Transform + - uid: 6934 + components: + - pos: 27.5,3.5 + parent: 34 + type: Transform + - uid: 6935 + components: + - pos: 27.5,2.5 + parent: 34 + type: Transform + - uid: 6936 + components: + - pos: 27.5,1.5 + parent: 34 + type: Transform + - uid: 6937 + components: + - pos: 27.5,0.5 + parent: 34 + type: Transform + - uid: 6938 + components: + - pos: 26.5,0.5 + parent: 34 + type: Transform + - uid: 6939 + components: + - pos: 28.5,0.5 + parent: 34 + type: Transform + - uid: 6940 + components: + - pos: 28.5,-3.5 + parent: 34 + type: Transform + - uid: 6941 + components: + - pos: 29.5,-3.5 + parent: 34 + type: Transform + - uid: 6942 + components: + - pos: 30.5,-3.5 + parent: 34 + type: Transform + - uid: 6943 + components: + - pos: 31.5,-3.5 + parent: 34 + type: Transform + - uid: 6944 + components: + - pos: 32.5,-3.5 + parent: 34 + type: Transform + - uid: 6945 + components: + - pos: 33.5,-3.5 + parent: 34 + type: Transform + - uid: 6946 + components: + - pos: 34.5,-3.5 + parent: 34 + type: Transform + - uid: 6948 + components: + - pos: 28.5,-14.5 + parent: 34 + type: Transform + - uid: 6949 + components: + - pos: 29.5,-14.5 + parent: 34 + type: Transform + - uid: 6950 + components: + - pos: 32.5,-18.5 + parent: 34 + type: Transform + - uid: 6951 + components: + - pos: 32.5,-19.5 + parent: 34 + type: Transform + - uid: 6954 + components: + - pos: 32.5,-16.5 + parent: 34 + type: Transform + - uid: 6955 + components: + - pos: 32.5,-17.5 + parent: 34 + type: Transform + - uid: 6959 + components: + - pos: 32.5,-10.5 + parent: 34 + type: Transform + - uid: 6960 + components: + - pos: 32.5,-9.5 + parent: 34 + type: Transform + - uid: 6962 + components: + - pos: 33.5,-16.5 + parent: 34 + type: Transform + - uid: 6963 + components: + - pos: 34.5,-16.5 + parent: 34 + type: Transform + - uid: 6964 + components: + - pos: 35.5,-16.5 + parent: 34 + type: Transform + - uid: 6966 + components: + - pos: 23.5,-4.5 + parent: 34 + type: Transform + - uid: 6967 + components: + - pos: 23.5,-5.5 + parent: 34 + type: Transform + - uid: 6968 + components: + - pos: 23.5,-6.5 + parent: 34 + type: Transform + - uid: 6969 + components: + - pos: 28.5,-4.5 + parent: 34 + type: Transform + - uid: 6970 + components: + - pos: 24.5,-12.5 + parent: 34 + type: Transform + - uid: 6971 + components: + - pos: 24.5,-11.5 + parent: 34 + type: Transform + - uid: 6972 + components: + - pos: 24.5,-10.5 + parent: 34 + type: Transform + - uid: 6973 + components: + - pos: 24.5,-9.5 + parent: 34 + type: Transform + - uid: 6974 + components: + - pos: 16.5,-9.5 + parent: 34 + type: Transform + - uid: 6975 + components: + - pos: 17.5,-9.5 + parent: 34 + type: Transform + - uid: 6976 + components: + - pos: 23.5,-9.5 + parent: 34 + type: Transform + - uid: 6977 + components: + - pos: 28.5,-5.5 + parent: 34 + type: Transform + - uid: 6978 + components: + - pos: 28.5,-6.5 + parent: 34 + type: Transform + - uid: 6979 + components: + - pos: 27.5,-6.5 + parent: 34 + type: Transform + - uid: 6980 + components: + - pos: 29.5,-10.5 + parent: 34 + type: Transform + - uid: 6981 + components: + - pos: 15.5,-13.5 + parent: 34 + type: Transform + - uid: 7004 + components: + - pos: 11.5,-17.5 + parent: 34 + type: Transform + - uid: 7005 + components: + - pos: 12.5,-17.5 + parent: 34 + type: Transform + - uid: 7006 + components: + - pos: 13.5,-17.5 + parent: 34 + type: Transform + - uid: 7007 + components: + - pos: 13.5,-18.5 + parent: 34 + type: Transform + - uid: 7008 + components: + - pos: 13.5,-19.5 + parent: 34 + type: Transform + - uid: 7009 + components: + - pos: 13.5,-16.5 + parent: 34 + type: Transform + - uid: 7010 + components: + - pos: 13.5,-15.5 + parent: 34 + type: Transform + - uid: 7011 + components: + - pos: 13.5,-14.5 + parent: 34 + type: Transform + - uid: 7012 + components: + - pos: 13.5,-13.5 + parent: 34 + type: Transform + - uid: 7013 + components: + - pos: 13.5,-12.5 + parent: 34 + type: Transform + - uid: 7014 + components: + - pos: 13.5,-11.5 + parent: 34 + type: Transform + - uid: 7015 + components: + - pos: 13.5,-10.5 + parent: 34 + type: Transform + - uid: 7016 + components: + - pos: 13.5,-9.5 + parent: 34 + type: Transform + - uid: 7017 + components: + - pos: 13.5,-8.5 + parent: 34 + type: Transform + - uid: 7018 + components: + - pos: 13.5,-7.5 + parent: 34 + type: Transform + - uid: 7019 + components: + - pos: 13.5,-6.5 + parent: 34 + type: Transform + - uid: 7020 + components: + - pos: 13.5,-5.5 + parent: 34 + type: Transform + - uid: 7021 + components: + - pos: 13.5,-4.5 + parent: 34 + type: Transform + - uid: 7022 + components: + - pos: 12.5,-11.5 + parent: 34 + type: Transform + - uid: 7024 + components: + - pos: 45.5,-8.5 + parent: 34 + type: Transform + - uid: 7065 + components: + - pos: 46.5,-6.5 + parent: 34 + type: Transform + - uid: 7067 + components: + - pos: 44.5,-6.5 + parent: 34 + type: Transform + - uid: 7103 + components: + - pos: -44.5,-5.5 + parent: 34 + type: Transform + - uid: 7104 + components: + - pos: -43.5,-5.5 + parent: 34 + type: Transform + - uid: 7105 + components: + - pos: -42.5,-5.5 + parent: 34 + type: Transform + - uid: 7106 + components: + - pos: -42.5,-6.5 + parent: 34 + type: Transform + - uid: 7107 + components: + - pos: -42.5,-7.5 + parent: 34 + type: Transform + - uid: 7108 + components: + - pos: -42.5,-8.5 + parent: 34 + type: Transform + - uid: 7109 + components: + - pos: -42.5,-9.5 + parent: 34 + type: Transform + - uid: 7110 + components: + - pos: -43.5,-9.5 + parent: 34 + type: Transform + - uid: 7111 + components: + - pos: -44.5,-9.5 + parent: 34 + type: Transform + - uid: 7112 + components: + - pos: -45.5,-9.5 + parent: 34 + type: Transform + - uid: 7113 + components: + - pos: -46.5,-9.5 + parent: 34 + type: Transform + - uid: 7114 + components: + - pos: -47.5,-9.5 + parent: 34 + type: Transform + - uid: 7115 + components: + - pos: -48.5,-9.5 + parent: 34 + type: Transform + - uid: 7116 + components: + - pos: -49.5,-9.5 + parent: 34 + type: Transform + - uid: 7117 + components: + - pos: -50.5,-9.5 + parent: 34 + type: Transform + - uid: 7118 + components: + - pos: -42.5,-4.5 + parent: 34 + type: Transform + - uid: 7119 + components: + - pos: -42.5,-3.5 + parent: 34 + type: Transform + - uid: 7120 + components: + - pos: -42.5,-2.5 + parent: 34 + type: Transform + - uid: 7121 + components: + - pos: -42.5,-1.5 + parent: 34 + type: Transform + - uid: 7122 + components: + - pos: -43.5,-1.5 + parent: 34 + type: Transform + - uid: 7123 + components: + - pos: -44.5,-1.5 + parent: 34 + type: Transform + - uid: 7124 + components: + - pos: -45.5,-1.5 + parent: 34 + type: Transform + - uid: 7125 + components: + - pos: -46.5,-1.5 + parent: 34 + type: Transform + - uid: 7126 + components: + - pos: -47.5,-1.5 + parent: 34 + type: Transform + - uid: 7127 + components: + - pos: -48.5,-1.5 + parent: 34 + type: Transform + - uid: 7128 + components: + - pos: -49.5,-1.5 + parent: 34 + type: Transform + - uid: 7129 + components: + - pos: -50.5,-1.5 + parent: 34 + type: Transform + - uid: 7130 + components: + - pos: -47.5,-2.5 + parent: 34 + type: Transform + - uid: 7131 + components: + - pos: -47.5,-3.5 + parent: 34 + type: Transform + - uid: 7132 + components: + - pos: -49.5,-2.5 + parent: 34 + type: Transform + - uid: 7133 + components: + - pos: -49.5,-3.5 + parent: 34 + type: Transform + - uid: 7134 + components: + - pos: -49.5,-8.5 + parent: 34 + type: Transform + - uid: 7135 + components: + - pos: -49.5,-7.5 + parent: 34 + type: Transform + - uid: 7136 + components: + - pos: -46.5,-8.5 + parent: 34 + type: Transform + - uid: 7137 + components: + - pos: -46.5,-7.5 + parent: 34 + type: Transform + - uid: 7138 + components: + - pos: -45.5,-0.5 + parent: 34 + type: Transform + - uid: 7139 + components: + - pos: -45.5,0.5 + parent: 34 + type: Transform + - uid: 7140 + components: + - pos: -49.5,-0.5 + parent: 34 + type: Transform + - uid: 7141 + components: + - pos: -49.5,0.5 + parent: 34 + type: Transform + - uid: 7142 + components: + - pos: -49.5,1.5 + parent: 34 + type: Transform + - uid: 7143 + components: + - pos: -45.5,1.5 + parent: 34 + type: Transform + - uid: 7157 + components: + - pos: 3.5,-33.5 + parent: 34 + type: Transform + - uid: 7159 + components: + - pos: 5.5,-33.5 + parent: 34 + type: Transform + - uid: 7180 + components: + - pos: 12.5,-30.5 + parent: 34 + type: Transform + - uid: 7181 + components: + - pos: 13.5,-30.5 + parent: 34 + type: Transform + - uid: 7182 + components: + - pos: 14.5,-30.5 + parent: 34 + type: Transform + - uid: 7183 + components: + - pos: 15.5,-30.5 + parent: 34 + type: Transform + - uid: 7184 + components: + - pos: 15.5,-29.5 + parent: 34 + type: Transform + - uid: 7185 + components: + - pos: 15.5,-28.5 + parent: 34 + type: Transform + - uid: 7186 + components: + - pos: 15.5,-27.5 + parent: 34 + type: Transform + - uid: 7187 + components: + - pos: 13.5,-27.5 + parent: 34 + type: Transform + - uid: 7188 + components: + - pos: 14.5,-27.5 + parent: 34 + type: Transform + - uid: 7189 + components: + - pos: 16.5,-27.5 + parent: 34 + type: Transform + - uid: 7190 + components: + - pos: 17.5,-27.5 + parent: 34 + type: Transform + - uid: 7191 + components: + - pos: 16.5,-30.5 + parent: 34 + type: Transform + - uid: 7192 + components: + - pos: 17.5,-30.5 + parent: 34 + type: Transform + - uid: 7193 + components: + - pos: 15.5,-31.5 + parent: 34 + type: Transform + - uid: 7194 + components: + - pos: 15.5,-32.5 + parent: 34 + type: Transform + - uid: 7195 + components: + - pos: 15.5,-33.5 + parent: 34 + type: Transform + - uid: 7196 + components: + - pos: 14.5,-33.5 + parent: 34 + type: Transform + - uid: 7197 + components: + - pos: 16.5,-33.5 + parent: 34 + type: Transform + - uid: 7198 + components: + - pos: 17.5,-33.5 + parent: 34 + type: Transform + - uid: 7199 + components: + - pos: 13.5,-33.5 + parent: 34 + type: Transform + - uid: 7200 + components: + - pos: 15.5,-36.5 + parent: 34 + type: Transform + - uid: 7201 + components: + - pos: 15.5,-35.5 + parent: 34 + type: Transform + - uid: 7202 + components: + - pos: 15.5,-34.5 + parent: 34 + type: Transform + - uid: 7203 + components: + - pos: 15.5,-37.5 + parent: 34 + type: Transform + - uid: 7204 + components: + - pos: 16.5,-37.5 + parent: 34 + type: Transform + - uid: 7205 + components: + - pos: 17.5,-37.5 + parent: 34 + type: Transform + - uid: 7207 + components: + - pos: 32.5,-20.5 + parent: 34 + type: Transform + - uid: 7208 + components: + - pos: 32.5,-21.5 + parent: 34 + type: Transform + - uid: 7209 + components: + - pos: 32.5,-22.5 + parent: 34 + type: Transform + - uid: 7210 + components: + - pos: 32.5,-23.5 + parent: 34 + type: Transform + - uid: 7211 + components: + - pos: 31.5,-23.5 + parent: 34 + type: Transform + - uid: 7212 + components: + - pos: 30.5,-23.5 + parent: 34 + type: Transform + - uid: 7213 + components: + - pos: 29.5,-23.5 + parent: 34 + type: Transform + - uid: 7214 + components: + - pos: 28.5,-23.5 + parent: 34 + type: Transform + - uid: 7215 + components: + - pos: 27.5,-23.5 + parent: 34 + type: Transform + - uid: 7216 + components: + - pos: 26.5,-23.5 + parent: 34 + type: Transform + - uid: 7217 + components: + - pos: 25.5,-23.5 + parent: 34 + type: Transform + - uid: 7218 + components: + - pos: 26.5,-24.5 + parent: 34 + type: Transform + - uid: 7219 + components: + - pos: 30.5,-24.5 + parent: 34 + type: Transform + - uid: 7220 + components: + - pos: 33.5,-23.5 + parent: 34 + type: Transform + - uid: 7221 + components: + - pos: 34.5,-23.5 + parent: 34 + type: Transform + - uid: 7222 + components: + - pos: 35.5,-23.5 + parent: 34 + type: Transform + - uid: 7223 + components: + - pos: 36.5,-23.5 + parent: 34 + type: Transform + - uid: 7224 + components: + - pos: 37.5,-23.5 + parent: 34 + type: Transform + - uid: 7225 + components: + - pos: 35.5,-24.5 + parent: 34 + type: Transform + - uid: 7226 + components: + - pos: 45.5,-24.5 + parent: 34 + type: Transform + - uid: 7227 + components: + - pos: 44.5,-24.5 + parent: 34 + type: Transform + - uid: 7228 + components: + - pos: 43.5,-24.5 + parent: 34 + type: Transform + - uid: 7229 + components: + - pos: 45.5,-23.5 + parent: 34 + type: Transform + - uid: 7230 + components: + - pos: 42.5,-24.5 + parent: 34 + type: Transform + - uid: 7231 + components: + - pos: 41.5,-24.5 + parent: 34 + type: Transform + - uid: 7236 + components: + - pos: 19.5,-21.5 + parent: 34 + type: Transform + - uid: 7237 + components: + - pos: 19.5,-22.5 + parent: 34 + type: Transform + - uid: 7238 + components: + - pos: 19.5,-23.5 + parent: 34 + type: Transform + - uid: 7239 + components: + - pos: 18.5,-23.5 + parent: 34 + type: Transform + - uid: 7240 + components: + - pos: 17.5,-23.5 + parent: 34 + type: Transform + - uid: 7241 + components: + - pos: 16.5,-23.5 + parent: 34 + type: Transform + - uid: 7242 + components: + - pos: 15.5,-23.5 + parent: 34 + type: Transform + - uid: 7243 + components: + - pos: 14.5,-23.5 + parent: 34 + type: Transform + - uid: 7244 + components: + - pos: 13.5,-23.5 + parent: 34 + type: Transform + - uid: 7245 + components: + - pos: 12.5,-23.5 + parent: 34 + type: Transform + - uid: 7246 + components: + - pos: 12.5,-22.5 + parent: 34 + type: Transform + - uid: 7247 + components: + - pos: 13.5,-22.5 + parent: 34 + type: Transform + - uid: 7248 + components: + - pos: 20.5,-23.5 + parent: 34 + type: Transform + - uid: 7249 + components: + - pos: 21.5,-23.5 + parent: 34 + type: Transform + - uid: 7250 + components: + - pos: 21.5,-24.5 + parent: 34 + type: Transform + - uid: 7251 + components: + - pos: 21.5,-25.5 + parent: 34 + type: Transform + - uid: 7252 + components: + - pos: 21.5,-26.5 + parent: 34 + type: Transform + - uid: 7253 + components: + - pos: 21.5,-27.5 + parent: 34 + type: Transform + - uid: 7254 + components: + - pos: 21.5,-28.5 + parent: 34 + type: Transform + - uid: 7255 + components: + - pos: 21.5,-29.5 + parent: 34 + type: Transform + - uid: 7256 + components: + - pos: 21.5,-30.5 + parent: 34 + type: Transform + - uid: 7257 + components: + - pos: 21.5,-31.5 + parent: 34 + type: Transform + - uid: 7258 + components: + - pos: 21.5,-32.5 + parent: 34 + type: Transform + - uid: 7259 + components: + - pos: 21.5,-33.5 + parent: 34 + type: Transform + - uid: 7260 + components: + - pos: 21.5,-34.5 + parent: 34 + type: Transform + - uid: 7261 + components: + - pos: 21.5,-35.5 + parent: 34 + type: Transform + - uid: 7262 + components: + - pos: 21.5,-36.5 + parent: 34 + type: Transform + - uid: 7263 + components: + - pos: 21.5,-37.5 + parent: 34 + type: Transform + - uid: 7264 + components: + - pos: 21.5,-38.5 + parent: 34 + type: Transform + - uid: 7265 + components: + - pos: 27.5,-33.5 + parent: 34 + type: Transform + - uid: 7266 + components: + - pos: 26.5,-33.5 + parent: 34 + type: Transform + - uid: 7267 + components: + - pos: 26.5,-34.5 + parent: 34 + type: Transform + - uid: 7268 + components: + - pos: 25.5,-34.5 + parent: 34 + type: Transform + - uid: 7269 + components: + - pos: 4.5,-23.5 + parent: 34 + type: Transform + - uid: 7270 + components: + - pos: 3.5,-23.5 + parent: 34 + type: Transform + - uid: 7271 + components: + - pos: 2.5,-23.5 + parent: 34 + type: Transform + - uid: 7272 + components: + - pos: 1.5,-23.5 + parent: 34 + type: Transform + - uid: 7273 + components: + - pos: 0.5,-23.5 + parent: 34 + type: Transform + - uid: 7274 + components: + - pos: -0.5,-23.5 + parent: 34 + type: Transform + - uid: 7275 + components: + - pos: 5.5,-23.5 + parent: 34 + type: Transform + - uid: 7276 + components: + - pos: 6.5,-23.5 + parent: 34 + type: Transform + - uid: 7277 + components: + - pos: 7.5,-23.5 + parent: 34 + type: Transform + - uid: 7278 + components: + - pos: 8.5,-23.5 + parent: 34 + type: Transform + - uid: 7279 + components: + - pos: 4.5,-22.5 + parent: 34 + type: Transform + - uid: 7280 + components: + - pos: 4.5,-21.5 + parent: 34 + type: Transform + - uid: 7281 + components: + - pos: 11.5,5.5 + parent: 34 + type: Transform + - uid: 7282 + components: + - pos: 12.5,5.5 + parent: 34 + type: Transform + - uid: 7283 + components: + - pos: 13.5,5.5 + parent: 34 + type: Transform + - uid: 7284 + components: + - pos: 13.5,4.5 + parent: 34 + type: Transform + - uid: 7285 + components: + - pos: 13.5,3.5 + parent: 34 + type: Transform + - uid: 7286 + components: + - pos: 13.5,2.5 + parent: 34 + type: Transform + - uid: 7287 + components: + - pos: 13.5,1.5 + parent: 34 + type: Transform + - uid: 7288 + components: + - pos: 13.5,0.5 + parent: 34 + type: Transform + - uid: 7289 + components: + - pos: 13.5,-0.5 + parent: 34 + type: Transform + - uid: 7290 + components: + - pos: 12.5,-0.5 + parent: 34 + type: Transform + - uid: 7291 + components: + - pos: 11.5,-0.5 + parent: 34 + type: Transform + - uid: 7292 + components: + - pos: 10.5,-0.5 + parent: 34 + type: Transform + - uid: 7293 + components: + - pos: 9.5,-0.5 + parent: 34 + type: Transform + - uid: 7294 + components: + - pos: 8.5,-0.5 + parent: 34 + type: Transform + - uid: 7295 + components: + - pos: 8.5,0.5 + parent: 34 + type: Transform + - uid: 7296 + components: + - pos: 8.5,1.5 + parent: 34 + type: Transform + - uid: 7297 + components: + - pos: 8.5,2.5 + parent: 34 + type: Transform + - uid: 7298 + components: + - pos: 9.5,2.5 + parent: 34 + type: Transform + - uid: 7299 + components: + - pos: 10.5,2.5 + parent: 34 + type: Transform + - uid: 7300 + components: + - pos: 11.5,2.5 + parent: 34 + type: Transform + - uid: 7301 + components: + - pos: 12.5,2.5 + parent: 34 + type: Transform + - uid: 7302 + components: + - pos: 10.5,5.5 + parent: 34 + type: Transform + - uid: 7303 + components: + - pos: 9.5,5.5 + parent: 34 + type: Transform + - uid: 7304 + components: + - pos: 9.5,6.5 + parent: 34 + type: Transform + - uid: 7305 + components: + - pos: 9.5,7.5 + parent: 34 + type: Transform + - uid: 7306 + components: + - pos: 9.5,8.5 + parent: 34 + type: Transform + - uid: 7307 + components: + - pos: 9.5,9.5 + parent: 34 + type: Transform + - uid: 7308 + components: + - pos: 9.5,10.5 + parent: 34 + type: Transform + - uid: 7309 + components: + - pos: 13.5,6.5 + parent: 34 + type: Transform + - uid: 7310 + components: + - pos: 13.5,7.5 + parent: 34 + type: Transform + - uid: 7311 + components: + - pos: 13.5,8.5 + parent: 34 + type: Transform + - uid: 7312 + components: + - pos: 13.5,9.5 + parent: 34 + type: Transform + - uid: 7313 + components: + - pos: 13.5,10.5 + parent: 34 + type: Transform + - uid: 7315 + components: + - pos: -24.5,-2.5 + parent: 34 + type: Transform + - uid: 7316 + components: + - pos: -24.5,-1.5 + parent: 34 + type: Transform + - uid: 7317 + components: + - pos: -24.5,-0.5 + parent: 34 + type: Transform + - uid: 7318 + components: + - pos: -25.5,-0.5 + parent: 34 + type: Transform + - uid: 7319 + components: + - pos: -26.5,-0.5 + parent: 34 + type: Transform + - uid: 7320 + components: + - pos: -27.5,-0.5 + parent: 34 + type: Transform + - uid: 7321 + components: + - pos: -28.5,-0.5 + parent: 34 + type: Transform + - uid: 7322 + components: + - pos: -29.5,-0.5 + parent: 34 + type: Transform + - uid: 7323 + components: + - pos: -30.5,-0.5 + parent: 34 + type: Transform + - uid: 7324 + components: + - pos: -30.5,0.5 + parent: 34 + type: Transform + - uid: 7325 + components: + - pos: -30.5,1.5 + parent: 34 + type: Transform + - uid: 7326 + components: + - pos: -30.5,2.5 + parent: 34 + type: Transform + - uid: 7327 + components: + - pos: -31.5,-0.5 + parent: 34 + type: Transform + - uid: 7328 + components: + - pos: -23.5,-0.5 + parent: 34 + type: Transform + - uid: 7329 + components: + - pos: -22.5,-0.5 + parent: 34 + type: Transform + - uid: 7330 + components: + - pos: -21.5,-0.5 + parent: 34 + type: Transform + - uid: 7331 + components: + - pos: -20.5,-0.5 + parent: 34 + type: Transform + - uid: 7332 + components: + - pos: -19.5,-0.5 + parent: 34 + type: Transform + - uid: 7333 + components: + - pos: -18.5,-0.5 + parent: 34 + type: Transform + - uid: 7334 + components: + - pos: -17.5,-0.5 + parent: 34 + type: Transform + - uid: 7335 + components: + - pos: -16.5,-0.5 + parent: 34 + type: Transform + - uid: 7336 + components: + - pos: -15.5,-0.5 + parent: 34 + type: Transform + - uid: 7337 + components: + - pos: -14.5,-0.5 + parent: 34 + type: Transform + - uid: 7338 + components: + - pos: -17.5,0.5 + parent: 34 + type: Transform + - uid: 7339 + components: + - pos: -17.5,1.5 + parent: 34 + type: Transform + - uid: 7340 + components: + - pos: -17.5,2.5 + parent: 34 + type: Transform + - uid: 7341 + components: + - pos: -17.5,3.5 + parent: 34 + type: Transform + - uid: 7342 + components: + - pos: -16.5,3.5 + parent: 34 + type: Transform + - uid: 7343 + components: + - pos: -15.5,3.5 + parent: 34 + type: Transform + - uid: 7344 + components: + - pos: -14.5,3.5 + parent: 34 + type: Transform + - uid: 7345 + components: + - pos: -14.5,2.5 + parent: 34 + type: Transform + - uid: 7346 + components: + - pos: -14.5,1.5 + parent: 34 + type: Transform + - uid: 7347 + components: + - pos: -14.5,0.5 + parent: 34 + type: Transform + - uid: 7349 + components: + - pos: -2.5,-2.5 + parent: 34 + type: Transform + - uid: 7350 + components: + - pos: -2.5,-1.5 + parent: 34 + type: Transform + - uid: 7351 + components: + - pos: -2.5,-0.5 + parent: 34 + type: Transform + - uid: 7352 + components: + - pos: -3.5,-0.5 + parent: 34 + type: Transform + - uid: 7353 + components: + - pos: -4.5,-0.5 + parent: 34 + type: Transform + - uid: 7354 + components: + - pos: -5.5,-0.5 + parent: 34 + type: Transform + - uid: 7355 + components: + - pos: -6.5,-0.5 + parent: 34 + type: Transform + - uid: 7356 + components: + - pos: -7.5,-0.5 + parent: 34 + type: Transform + - uid: 7357 + components: + - pos: -8.5,-0.5 + parent: 34 + type: Transform + - uid: 7358 + components: + - pos: -9.5,-0.5 + parent: 34 + type: Transform + - uid: 7359 + components: + - pos: -10.5,-0.5 + parent: 34 + type: Transform + - uid: 7360 + components: + - pos: -8.5,0.5 + parent: 34 + type: Transform + - uid: 7361 + components: + - pos: -8.5,1.5 + parent: 34 + type: Transform + - uid: 7362 + components: + - pos: -8.5,2.5 + parent: 34 + type: Transform + - uid: 7363 + components: + - pos: -8.5,3.5 + parent: 34 + type: Transform + - uid: 7364 + components: + - pos: -8.5,4.5 + parent: 34 + type: Transform + - uid: 7365 + components: + - pos: -9.5,4.5 + parent: 34 + type: Transform + - uid: 7366 + components: + - pos: -10.5,4.5 + parent: 34 + type: Transform + - uid: 7367 + components: + - pos: -10.5,3.5 + parent: 34 + type: Transform + - uid: 7368 + components: + - pos: -7.5,4.5 + parent: 34 + type: Transform + - uid: 7369 + components: + - pos: -6.5,4.5 + parent: 34 + type: Transform + - uid: 7370 + components: + - pos: -6.5,3.5 + parent: 34 + type: Transform + - uid: 7371 + components: + - pos: -1.5,-0.5 + parent: 34 + type: Transform + - uid: 7372 + components: + - pos: -0.5,-0.5 + parent: 34 + type: Transform + - uid: 7373 + components: + - pos: 0.5,-0.5 + parent: 34 + type: Transform + - uid: 7374 + components: + - pos: 1.5,-0.5 + parent: 34 + type: Transform + - uid: 7375 + components: + - pos: 2.5,-0.5 + parent: 34 + type: Transform + - uid: 7376 + components: + - pos: 3.5,-0.5 + parent: 34 + type: Transform + - uid: 7377 + components: + - pos: 4.5,-0.5 + parent: 34 + type: Transform + - uid: 7378 + components: + - pos: 5.5,-0.5 + parent: 34 + type: Transform + - uid: 7384 + components: + - pos: 6.5,-33.5 + parent: 34 + type: Transform + - uid: 7385 + components: + - pos: 7.5,-33.5 + parent: 34 + type: Transform + - uid: 7386 + components: + - pos: 8.5,-33.5 + parent: 34 + type: Transform + - uid: 7387 + components: + - pos: 9.5,-33.5 + parent: 34 + type: Transform + - uid: 7388 + components: + - pos: 9.5,-32.5 + parent: 34 + type: Transform + - uid: 7392 + components: + - pos: 5.5,-36.5 + parent: 34 + type: Transform + - uid: 7393 + components: + - pos: 4.5,-36.5 + parent: 34 + type: Transform + - uid: 7394 + components: + - pos: 3.5,-36.5 + parent: 34 + type: Transform + - uid: 7414 + components: + - pos: -26.5,-33.5 + parent: 34 + type: Transform + - uid: 7416 + components: + - pos: -27.5,-32.5 + parent: 34 + type: Transform + - uid: 7430 + components: + - pos: -31.5,-20.5 + parent: 34 + type: Transform + - uid: 7431 + components: + - pos: -31.5,-21.5 + parent: 34 + type: Transform + - uid: 7432 + components: + - pos: -31.5,-22.5 + parent: 34 + type: Transform + - uid: 7433 + components: + - pos: -32.5,-22.5 + parent: 34 + type: Transform + - uid: 7434 + components: + - pos: -33.5,-22.5 + parent: 34 + type: Transform + - uid: 7435 + components: + - pos: -34.5,-22.5 + parent: 34 + type: Transform + - uid: 7436 + components: + - pos: -35.5,-22.5 + parent: 34 + type: Transform + - uid: 7437 + components: + - pos: -36.5,-22.5 + parent: 34 + type: Transform + - uid: 7438 + components: + - pos: -37.5,-22.5 + parent: 34 + type: Transform + - uid: 7439 + components: + - pos: -37.5,-21.5 + parent: 34 + type: Transform + - uid: 7440 + components: + - pos: -37.5,-20.5 + parent: 34 + type: Transform + - uid: 7441 + components: + - pos: -37.5,-19.5 + parent: 34 + type: Transform + - uid: 7442 + components: + - pos: -37.5,-18.5 + parent: 34 + type: Transform + - uid: 7443 + components: + - pos: -37.5,-17.5 + parent: 34 + type: Transform + - uid: 7444 + components: + - pos: -38.5,-17.5 + parent: 34 + type: Transform + - uid: 7445 + components: + - pos: -30.5,-22.5 + parent: 34 + type: Transform + - uid: 7446 + components: + - pos: -29.5,-22.5 + parent: 34 + type: Transform + - uid: 7447 + components: + - pos: -28.5,-22.5 + parent: 34 + type: Transform + - uid: 7448 + components: + - pos: -27.5,-22.5 + parent: 34 + type: Transform + - uid: 7449 + components: + - pos: -26.5,-22.5 + parent: 34 + type: Transform + - uid: 7450 + components: + - pos: -25.5,-22.5 + parent: 34 + type: Transform + - uid: 7451 + components: + - pos: -24.5,-22.5 + parent: 34 + type: Transform + - uid: 7452 + components: + - pos: -23.5,-22.5 + parent: 34 + type: Transform + - uid: 7453 + components: + - pos: -22.5,-22.5 + parent: 34 + type: Transform + - uid: 7454 + components: + - pos: -21.5,-22.5 + parent: 34 + type: Transform + - uid: 7455 + components: + - pos: -20.5,-22.5 + parent: 34 + type: Transform + - uid: 7456 + components: + - pos: -19.5,-22.5 + parent: 34 + type: Transform + - uid: 7457 + components: + - pos: -18.5,-22.5 + parent: 34 + type: Transform + - uid: 7458 + components: + - pos: -18.5,-23.5 + parent: 34 + type: Transform + - uid: 7460 + components: + - pos: -17.5,-22.5 + parent: 34 + type: Transform + - uid: 7461 + components: + - pos: -21.5,-21.5 + parent: 34 + type: Transform + - uid: 7462 + components: + - pos: -18.5,-25.5 + parent: 34 + type: Transform + - uid: 7463 + components: + - pos: -18.5,-26.5 + parent: 34 + type: Transform + - uid: 7467 + components: + - pos: -36.5,-0.5 + parent: 34 + type: Transform + - uid: 7468 + components: + - pos: -36.5,2.5 + parent: 34 + type: Transform + - uid: 7469 + components: + - pos: -36.5,3.5 + parent: 34 + type: Transform + - uid: 7470 + components: + - pos: -36.5,4.5 + parent: 34 + type: Transform + - uid: 7471 + components: + - pos: -35.5,-0.5 + parent: 34 + type: Transform + - uid: 7472 + components: + - pos: -37.5,-0.5 + parent: 34 + type: Transform + - uid: 7473 + components: + - pos: -38.5,-0.5 + parent: 34 + type: Transform + - uid: 7474 + components: + - pos: -39.5,-0.5 + parent: 34 + type: Transform + - uid: 7475 + components: + - pos: -40.5,-0.5 + parent: 34 + type: Transform + - uid: 7476 + components: + - pos: -38.5,-1.5 + parent: 34 + type: Transform + - uid: 7477 + components: + - pos: -38.5,-2.5 + parent: 34 + type: Transform + - uid: 7478 + components: + - pos: -38.5,-3.5 + parent: 34 + type: Transform + - uid: 7479 + components: + - pos: -38.5,-4.5 + parent: 34 + type: Transform + - uid: 7480 + components: + - pos: -38.5,-5.5 + parent: 34 + type: Transform + - uid: 7481 + components: + - pos: -38.5,-6.5 + parent: 34 + type: Transform + - uid: 7482 + components: + - pos: -38.5,-7.5 + parent: 34 + type: Transform + - uid: 7483 + components: + - pos: -38.5,-8.5 + parent: 34 + type: Transform + - uid: 7484 + components: + - pos: -38.5,-9.5 + parent: 34 + type: Transform + - uid: 7485 + components: + - pos: -38.5,-10.5 + parent: 34 + type: Transform + - uid: 7486 + components: + - pos: -38.5,-11.5 + parent: 34 + type: Transform + - uid: 7487 + components: + - pos: -38.5,-12.5 + parent: 34 + type: Transform + - uid: 7489 + components: + - pos: -52.5,-11.5 + parent: 34 + type: Transform + - uid: 7490 + components: + - pos: -53.5,-11.5 + parent: 34 + type: Transform + - uid: 7491 + components: + - pos: -52.5,-12.5 + parent: 34 + type: Transform + - uid: 7492 + components: + - pos: -51.5,-12.5 + parent: 34 + type: Transform + - uid: 7493 + components: + - pos: -50.5,-12.5 + parent: 34 + type: Transform + - uid: 7494 + components: + - pos: -49.5,-12.5 + parent: 34 + type: Transform + - uid: 7495 + components: + - pos: -48.5,-12.5 + parent: 34 + type: Transform + - uid: 7496 + components: + - pos: -47.5,-12.5 + parent: 34 + type: Transform + - uid: 7497 + components: + - pos: -46.5,-12.5 + parent: 34 + type: Transform + - uid: 7498 + components: + - pos: -45.5,-12.5 + parent: 34 + type: Transform + - uid: 7499 + components: + - pos: -44.5,-12.5 + parent: 34 + type: Transform + - uid: 7500 + components: + - pos: -43.5,-12.5 + parent: 34 + type: Transform + - uid: 7501 + components: + - pos: -42.5,-12.5 + parent: 34 + type: Transform + - uid: 7502 + components: + - pos: -53.5,-10.5 + parent: 34 + type: Transform + - uid: 7503 + components: + - pos: -30.5,-40.5 + parent: 34 + type: Transform + - uid: 7504 + components: + - pos: -54.5,-9.5 + parent: 34 + type: Transform + - uid: 7505 + components: + - pos: -54.5,-8.5 + parent: 34 + type: Transform + - uid: 7506 + components: + - pos: -54.5,-7.5 + parent: 34 + type: Transform + - uid: 7507 + components: + - pos: -54.5,-6.5 + parent: 34 + type: Transform + - uid: 7508 + components: + - pos: -54.5,-5.5 + parent: 34 + type: Transform + - uid: 7509 + components: + - pos: -54.5,-4.5 + parent: 34 + type: Transform + - uid: 7510 + components: + - pos: -54.5,-3.5 + parent: 34 + type: Transform + - uid: 7511 + components: + - pos: -54.5,-2.5 + parent: 34 + type: Transform + - uid: 7512 + components: + - pos: -54.5,-1.5 + parent: 34 + type: Transform + - uid: 7513 + components: + - pos: -54.5,-0.5 + parent: 34 + type: Transform + - uid: 7514 + components: + - pos: -54.5,0.5 + parent: 34 + type: Transform + - uid: 7515 + components: + - pos: -55.5,0.5 + parent: 34 + type: Transform + - uid: 7516 + components: + - pos: -53.5,0.5 + parent: 34 + type: Transform + - uid: 7517 + components: + - pos: -37.5,3.5 + parent: 34 + type: Transform + - uid: 7518 + components: + - pos: -38.5,3.5 + parent: 34 + type: Transform + - uid: 7519 + components: + - pos: -39.5,3.5 + parent: 34 + type: Transform + - uid: 7520 + components: + - pos: -40.5,3.5 + parent: 34 + type: Transform + - uid: 7521 + components: + - pos: -40.5,4.5 + parent: 34 + type: Transform + - uid: 7522 + components: + - pos: -40.5,5.5 + parent: 34 + type: Transform + - uid: 7523 + components: + - pos: -41.5,5.5 + parent: 34 + type: Transform + - uid: 7524 + components: + - pos: -42.5,5.5 + parent: 34 + type: Transform + - uid: 7525 + components: + - pos: -43.5,5.5 + parent: 34 + type: Transform + - uid: 7526 + components: + - pos: -44.5,5.5 + parent: 34 + type: Transform + - uid: 7527 + components: + - pos: -45.5,5.5 + parent: 34 + type: Transform + - uid: 7528 + components: + - pos: -46.5,5.5 + parent: 34 + type: Transform + - uid: 7529 + components: + - pos: -47.5,5.5 + parent: 34 + type: Transform + - uid: 7530 + components: + - pos: -48.5,5.5 + parent: 34 + type: Transform + - uid: 7531 + components: + - pos: -49.5,5.5 + parent: 34 + type: Transform + - uid: 7532 + components: + - pos: -50.5,5.5 + parent: 34 + type: Transform + - uid: 7533 + components: + - pos: -51.5,5.5 + parent: 34 + type: Transform + - uid: 7534 + components: + - pos: -52.5,5.5 + parent: 34 + type: Transform + - uid: 7535 + components: + - pos: -53.5,5.5 + parent: 34 + type: Transform + - uid: 7536 + components: + - pos: -54.5,5.5 + parent: 34 + type: Transform + - uid: 7537 + components: + - pos: -54.5,6.5 + parent: 34 + type: Transform + - uid: 7538 + components: + - pos: -54.5,7.5 + parent: 34 + type: Transform + - uid: 7539 + components: + - pos: -55.5,5.5 + parent: 34 + type: Transform + - uid: 7540 + components: + - pos: -56.5,5.5 + parent: 34 + type: Transform + - uid: 7541 + components: + - pos: -54.5,4.5 + parent: 34 + type: Transform + - uid: 7542 + components: + - pos: -51.5,6.5 + parent: 34 + type: Transform + - uid: 7543 + components: + - pos: -51.5,7.5 + parent: 34 + type: Transform + - uid: 7558 + components: + - pos: 11.5,12.5 + parent: 34 + type: Transform + - uid: 7559 + components: + - pos: 11.5,13.5 + parent: 34 + type: Transform + - uid: 7560 + components: + - pos: 11.5,14.5 + parent: 34 + type: Transform + - uid: 7561 + components: + - pos: 11.5,15.5 + parent: 34 + type: Transform + - uid: 7562 + components: + - pos: 10.5,15.5 + parent: 34 + type: Transform + - uid: 7563 + components: + - pos: 9.5,15.5 + parent: 34 + type: Transform + - uid: 7564 + components: + - pos: 8.5,15.5 + parent: 34 + type: Transform + - uid: 7565 + components: + - pos: 7.5,15.5 + parent: 34 + type: Transform + - uid: 7566 + components: + - pos: 6.5,15.5 + parent: 34 + type: Transform + - uid: 7567 + components: + - pos: 5.5,15.5 + parent: 34 + type: Transform + - uid: 7568 + components: + - pos: 12.5,15.5 + parent: 34 + type: Transform + - uid: 7569 + components: + - pos: 13.5,15.5 + parent: 34 + type: Transform + - uid: 7570 + components: + - pos: 13.5,16.5 + parent: 34 + type: Transform + - uid: 7573 + components: + - pos: 13.5,19.5 + parent: 34 + type: Transform + - uid: 7576 + components: + - pos: 5.5,14.5 + parent: 34 + type: Transform + - uid: 7577 + components: + - pos: 13.5,14.5 + parent: 34 + type: Transform + - uid: 7610 + components: + - pos: 22.5,-2.5 + parent: 34 + type: Transform + - uid: 7611 + components: + - pos: 22.5,-1.5 + parent: 34 + type: Transform + - uid: 7612 + components: + - pos: 22.5,-0.5 + parent: 34 + type: Transform + - uid: 7613 + components: + - pos: 22.5,0.5 + parent: 34 + type: Transform + - uid: 7614 + components: + - pos: 21.5,0.5 + parent: 34 + type: Transform + - uid: 7615 + components: + - pos: 20.5,0.5 + parent: 34 + type: Transform + - uid: 7616 + components: + - pos: 19.5,0.5 + parent: 34 + type: Transform + - uid: 7617 + components: + - pos: 18.5,0.5 + parent: 34 + type: Transform + - uid: 7618 + components: + - pos: 17.5,0.5 + parent: 34 + type: Transform + - uid: 7619 + components: + - pos: 17.5,-0.5 + parent: 34 + type: Transform + - uid: 7620 + components: + - pos: 18.5,-0.5 + parent: 34 + type: Transform + - uid: 7625 + components: + - pos: 25.5,6.5 + parent: 34 + type: Transform + - uid: 7626 + components: + - pos: 25.5,7.5 + parent: 34 + type: Transform + - uid: 7627 + components: + - pos: 25.5,8.5 + parent: 34 + type: Transform + - uid: 7628 + components: + - pos: 24.5,8.5 + parent: 34 + type: Transform + - uid: 7629 + components: + - pos: 23.5,8.5 + parent: 34 + type: Transform + - uid: 7630 + components: + - pos: 22.5,8.5 + parent: 34 + type: Transform + - uid: 7631 + components: + - pos: 21.5,8.5 + parent: 34 + type: Transform + - uid: 7632 + components: + - pos: 20.5,8.5 + parent: 34 + type: Transform + - uid: 7633 + components: + - pos: 19.5,8.5 + parent: 34 + type: Transform + - uid: 7634 + components: + - pos: 18.5,8.5 + parent: 34 + type: Transform + - uid: 7635 + components: + - pos: 17.5,8.5 + parent: 34 + type: Transform + - uid: 7636 + components: + - pos: 26.5,7.5 + parent: 34 + type: Transform + - uid: 7637 + components: + - pos: 27.5,7.5 + parent: 34 + type: Transform + - uid: 7638 + components: + - pos: 28.5,7.5 + parent: 34 + type: Transform + - uid: 7639 + components: + - pos: 29.5,7.5 + parent: 34 + type: Transform + - uid: 7640 + components: + - pos: 30.5,7.5 + parent: 34 + type: Transform + - uid: 7641 + components: + - pos: 31.5,7.5 + parent: 34 + type: Transform + - uid: 7642 + components: + - pos: 32.5,7.5 + parent: 34 + type: Transform + - uid: 7643 + components: + - pos: 32.5,6.5 + parent: 34 + type: Transform + - uid: 7644 + components: + - pos: 32.5,5.5 + parent: 34 + type: Transform + - uid: 7645 + components: + - pos: 32.5,4.5 + parent: 34 + type: Transform + - uid: 7646 + components: + - pos: 32.5,3.5 + parent: 34 + type: Transform + - uid: 7647 + components: + - pos: 32.5,2.5 + parent: 34 + type: Transform + - uid: 7648 + components: + - pos: 32.5,1.5 + parent: 34 + type: Transform + - uid: 7649 + components: + - pos: 32.5,0.5 + parent: 34 + type: Transform + - uid: 7706 + components: + - pos: -25.5,-41.5 + parent: 34 + type: Transform + - uid: 7813 + components: + - pos: 0.5,-20.5 + parent: 34 + type: Transform + - uid: 7817 + components: + - pos: -54.5,-19.5 + parent: 34 + type: Transform + - uid: 7858 + components: + - pos: 2.5,-36.5 + parent: 34 + type: Transform + - uid: 7859 + components: + - pos: 1.5,-36.5 + parent: 34 + type: Transform + - uid: 7860 + components: + - pos: 0.5,-36.5 + parent: 34 + type: Transform + - uid: 7861 + components: + - pos: -0.5,-36.5 + parent: 34 + type: Transform + - uid: 7862 + components: + - pos: 6.5,-36.5 + parent: 34 + type: Transform + - uid: 7864 + components: + - pos: 7.5,-37.5 + parent: 34 + type: Transform + - uid: 7865 + components: + - pos: 8.5,-37.5 + parent: 34 + type: Transform + - uid: 7866 + components: + - pos: 9.5,-37.5 + parent: 34 + type: Transform + - uid: 7867 + components: + - pos: 10.5,-37.5 + parent: 34 + type: Transform + - uid: 7871 + components: + - pos: 7.5,-41.5 + parent: 34 + type: Transform + - uid: 7872 + components: + - pos: 8.5,-41.5 + parent: 34 + type: Transform + - uid: 7873 + components: + - pos: 9.5,-41.5 + parent: 34 + type: Transform + - uid: 8009 + components: + - pos: 3.5,-40.5 + parent: 34 + type: Transform + - uid: 8010 + components: + - pos: 3.5,-39.5 + parent: 34 + type: Transform + - uid: 8011 + components: + - pos: 3.5,-38.5 + parent: 34 + type: Transform + - uid: 8012 + components: + - pos: 3.5,-37.5 + parent: 34 + type: Transform + - uid: 8013 + components: + - pos: 9.5,-29.5 + parent: 34 + type: Transform + - uid: 8014 + components: + - pos: 2.5,-33.5 + parent: 34 + type: Transform + - uid: 8015 + components: + - pos: 1.5,-33.5 + parent: 34 + type: Transform + - uid: 8016 + components: + - pos: 0.5,-33.5 + parent: 34 + type: Transform + - uid: 8017 + components: + - pos: 6.5,-32.5 + parent: 34 + type: Transform + - uid: 8021 + components: + - pos: -25.5,-23.5 + parent: 34 + type: Transform + - uid: 8036 + components: + - pos: 31.5,-42.5 + parent: 34 + type: Transform + - uid: 8037 + components: + - pos: 31.5,-43.5 + parent: 34 + type: Transform + - uid: 8038 + components: + - pos: 31.5,-44.5 + parent: 34 + type: Transform + - uid: 8039 + components: + - pos: 30.5,-44.5 + parent: 34 + type: Transform + - uid: 8040 + components: + - pos: 31.5,-45.5 + parent: 34 + type: Transform + - uid: 8041 + components: + - pos: 32.5,-45.5 + parent: 34 + type: Transform + - uid: 8042 + components: + - pos: 32.5,-43.5 + parent: 34 + type: Transform + - uid: 8043 + components: + - pos: 28.5,-44.5 + parent: 34 + type: Transform + - uid: 8044 + components: + - pos: 29.5,-44.5 + parent: 34 + type: Transform + - uid: 8045 + components: + - pos: 32.5,-48.5 + parent: 34 + type: Transform + - uid: 8046 + components: + - pos: 33.5,-48.5 + parent: 34 + type: Transform + - uid: 8047 + components: + - pos: 34.5,-48.5 + parent: 34 + type: Transform + - uid: 8048 + components: + - pos: 35.5,-48.5 + parent: 34 + type: Transform + - uid: 8049 + components: + - pos: 36.5,-48.5 + parent: 34 + type: Transform + - uid: 8050 + components: + - pos: 36.5,-47.5 + parent: 34 + type: Transform + - uid: 8051 + components: + - pos: 36.5,-46.5 + parent: 34 + type: Transform + - uid: 8052 + components: + - pos: 36.5,-45.5 + parent: 34 + type: Transform + - uid: 8053 + components: + - pos: 36.5,-44.5 + parent: 34 + type: Transform + - uid: 8054 + components: + - pos: 31.5,-48.5 + parent: 34 + type: Transform + - uid: 8055 + components: + - pos: 30.5,-48.5 + parent: 34 + type: Transform + - uid: 8056 + components: + - pos: 29.5,-48.5 + parent: 34 + type: Transform + - uid: 8057 + components: + - pos: 28.5,-48.5 + parent: 34 + type: Transform + - uid: 8058 + components: + - pos: 27.5,-48.5 + parent: 34 + type: Transform + - uid: 8059 + components: + - pos: 26.5,-48.5 + parent: 34 + type: Transform + - uid: 8060 + components: + - pos: 25.5,-48.5 + parent: 34 + type: Transform + - uid: 8061 + components: + - pos: 24.5,-48.5 + parent: 34 + type: Transform + - uid: 8062 + components: + - pos: 23.5,-48.5 + parent: 34 + type: Transform + - uid: 8063 + components: + - pos: 22.5,-48.5 + parent: 34 + type: Transform + - uid: 8064 + components: + - pos: 21.5,-48.5 + parent: 34 + type: Transform + - uid: 8065 + components: + - pos: 20.5,-48.5 + parent: 34 + type: Transform + - uid: 8066 + components: + - pos: 19.5,-48.5 + parent: 34 + type: Transform + - uid: 8067 + components: + - pos: 18.5,-48.5 + parent: 34 + type: Transform + - uid: 8068 + components: + - pos: 17.5,-48.5 + parent: 34 + type: Transform + - uid: 8069 + components: + - pos: 16.5,-48.5 + parent: 34 + type: Transform + - uid: 8070 + components: + - pos: 15.5,-48.5 + parent: 34 + type: Transform + - uid: 8071 + components: + - pos: 14.5,-48.5 + parent: 34 + type: Transform + - uid: 8075 + components: + - pos: -21.5,-32.5 + parent: 34 + type: Transform + - uid: 8129 + components: + - pos: -43.5,-17.5 + parent: 34 + type: Transform + - uid: 8265 + components: + - pos: -41.5,6.5 + parent: 34 + type: Transform + - uid: 8266 + components: + - pos: -41.5,7.5 + parent: 34 + type: Transform + - uid: 8267 + components: + - pos: -41.5,8.5 + parent: 34 + type: Transform + - uid: 8268 + components: + - pos: -40.5,8.5 + parent: 34 + type: Transform + - uid: 8269 + components: + - pos: -39.5,8.5 + parent: 34 + type: Transform + - uid: 8270 + components: + - pos: -40.5,9.5 + parent: 34 + type: Transform + - uid: 8412 + components: + - pos: -12.5,-37.5 + parent: 34 + type: Transform + - uid: 8444 + components: + - pos: -21.5,-37.5 + parent: 34 + type: Transform + - uid: 8919 + components: + - pos: 42.5,-10.5 + parent: 34 + type: Transform + - uid: 8921 + components: + - pos: 45.5,-10.5 + parent: 34 + type: Transform + - uid: 8940 + components: + - pos: 46.5,-12.5 + parent: 34 + type: Transform + - uid: 8978 + components: + - pos: 10.5,-41.5 + parent: 34 + type: Transform + - uid: 9036 + components: + - pos: 2.5,-40.5 + parent: 34 + type: Transform + - uid: 9314 + components: + - pos: 46.5,-9.5 + parent: 34 + type: Transform + - uid: 9339 + components: + - pos: 25.5,-46.5 + parent: 34 + type: Transform + - uid: 9340 + components: + - pos: 25.5,-45.5 + parent: 34 + type: Transform + - uid: 9341 + components: + - pos: 34.5,-43.5 + parent: 34 + type: Transform + - uid: 9342 + components: + - pos: 33.5,-43.5 + parent: 34 + type: Transform + - uid: 9343 + components: + - pos: 27.5,-44.5 + parent: 34 + type: Transform + - uid: 9344 + components: + - pos: 26.5,-44.5 + parent: 34 + type: Transform + - uid: 9345 + components: + - pos: 25.5,-44.5 + parent: 34 + type: Transform + - uid: 9388 + components: + - pos: 43.5,-11.5 + parent: 34 + type: Transform + - uid: 9404 + components: + - pos: -22.5,-41.5 + parent: 34 + type: Transform + - uid: 9468 + components: + - pos: -13.5,-39.5 + parent: 34 + type: Transform + - uid: 9708 + components: + - pos: -49.5,-17.5 + parent: 34 + type: Transform + - uid: 9984 + components: + - pos: -20.5,-29.5 + parent: 34 + type: Transform + - uid: 10019 + components: + - pos: 42.5,-6.5 + parent: 34 + type: Transform + - uid: 10115 + components: + - pos: 16.5,-41.5 + parent: 34 + type: Transform + - uid: 10116 + components: + - pos: 15.5,-41.5 + parent: 34 + type: Transform + - uid: 10117 + components: + - pos: 14.5,-41.5 + parent: 34 + type: Transform + - uid: 10118 + components: + - pos: 13.5,-41.5 + parent: 34 + type: Transform + - uid: 10120 + components: + - pos: 17.5,-41.5 + parent: 34 + type: Transform + - uid: 10121 + components: + - pos: 18.5,-41.5 + parent: 34 + type: Transform + - uid: 10122 + components: + - pos: 19.5,-41.5 + parent: 34 + type: Transform + - uid: 10123 + components: + - pos: 20.5,-41.5 + parent: 34 + type: Transform + - uid: 10124 + components: + - pos: 21.5,-41.5 + parent: 34 + type: Transform + - uid: 10125 + components: + - pos: 22.5,-41.5 + parent: 34 + type: Transform + - uid: 10126 + components: + - pos: 23.5,-41.5 + parent: 34 + type: Transform + - uid: 10127 + components: + - pos: 24.5,-41.5 + parent: 34 + type: Transform + - uid: 10128 + components: + - pos: 25.5,-41.5 + parent: 34 + type: Transform + - uid: 10129 + components: + - pos: 26.5,-41.5 + parent: 34 + type: Transform + - uid: 10130 + components: + - pos: 27.5,-41.5 + parent: 34 + type: Transform + - uid: 10131 + components: + - pos: 28.5,-41.5 + parent: 34 + type: Transform + - uid: 10132 + components: + - pos: 28.5,-40.5 + parent: 34 + type: Transform + - uid: 10133 + components: + - pos: 29.5,-40.5 + parent: 34 + type: Transform + - uid: 10134 + components: + - pos: 30.5,-40.5 + parent: 34 + type: Transform + - uid: 10135 + components: + - pos: 31.5,-40.5 + parent: 34 + type: Transform + - uid: 10136 + components: + - pos: 32.5,-40.5 + parent: 34 + type: Transform + - uid: 10139 + components: + - pos: 12.5,-44.5 + parent: 34 + type: Transform + - uid: 10140 + components: + - pos: 11.5,-44.5 + parent: 34 + type: Transform + - uid: 10141 + components: + - pos: 10.5,-44.5 + parent: 34 + type: Transform + - uid: 10142 + components: + - pos: 9.5,-44.5 + parent: 34 + type: Transform + - uid: 10143 + components: + - pos: 8.5,-44.5 + parent: 34 + type: Transform + - uid: 10144 + components: + - pos: 7.5,-44.5 + parent: 34 + type: Transform + - uid: 10145 + components: + - pos: 6.5,-44.5 + parent: 34 + type: Transform + - uid: 10146 + components: + - pos: 5.5,-44.5 + parent: 34 + type: Transform + - uid: 10147 + components: + - pos: 4.5,-44.5 + parent: 34 + type: Transform + - uid: 10357 + components: + - pos: 45.5,-7.5 + parent: 34 + type: Transform + - uid: 10433 + components: + - pos: 45.5,-6.5 + parent: 34 + type: Transform + - uid: 10460 + components: + - pos: -2.5,14.5 + parent: 34 + type: Transform + - uid: 10479 + components: + - pos: -44.5,-24.5 + parent: 34 + type: Transform + - uid: 10495 + components: + - pos: -0.5,-42.5 + parent: 34 + type: Transform + - uid: 10631 + components: + - pos: -55.5,-10.5 + parent: 34 + type: Transform + - uid: 10713 + components: + - pos: 6.5,-37.5 + parent: 34 + type: Transform + - uid: 10748 + components: + - pos: -9.5,-38.5 + parent: 34 + type: Transform + - uid: 10749 + components: + - pos: -10.5,-38.5 + parent: 34 + type: Transform + - uid: 10755 + components: + - pos: 13.5,18.5 + parent: 34 + type: Transform + - uid: 10778 + components: + - pos: -10.5,-36.5 + parent: 34 + type: Transform + - uid: 10783 + components: + - pos: -56.5,-4.5 + parent: 34 + type: Transform + - uid: 10784 + components: + - pos: -56.5,-5.5 + parent: 34 + type: Transform + - uid: 10785 + components: + - pos: -55.5,-4.5 + parent: 34 + type: Transform + - uid: 10825 + components: + - pos: 32.5,-4.5 + parent: 34 + type: Transform + - uid: 10850 + components: + - pos: -18.5,-24.5 + parent: 34 + type: Transform + - uid: 10927 + components: + - pos: 14.5,4.5 + parent: 34 + type: Transform + - uid: 10928 + components: + - pos: 15.5,4.5 + parent: 34 + type: Transform + - uid: 10929 + components: + - pos: 16.5,4.5 + parent: 34 + type: Transform + - uid: 10930 + components: + - pos: 17.5,4.5 + parent: 34 + type: Transform + - uid: 10931 + components: + - pos: 18.5,4.5 + parent: 34 + type: Transform + - uid: 10932 + components: + - pos: 19.5,4.5 + parent: 34 + type: Transform + - uid: 10933 + components: + - pos: 18.5,5.5 + parent: 34 + type: Transform + - uid: 10934 + components: + - pos: 22.5,1.5 + parent: 34 + type: Transform + - uid: 10935 + components: + - pos: 22.5,2.5 + parent: 34 + type: Transform + - uid: 10936 + components: + - pos: 22.5,3.5 + parent: 34 + type: Transform + - uid: 10969 + components: + - pos: -18.5,-42.5 + parent: 34 + type: Transform + - uid: 10986 + components: + - pos: 6.5,-38.5 + parent: 34 + type: Transform + - uid: 11023 + components: + - pos: -25.5,-33.5 + parent: 34 + type: Transform + - uid: 11027 + components: + - pos: -54.5,-21.5 + parent: 34 + type: Transform + - uid: 11060 + components: + - pos: 42.5,-7.5 + parent: 34 + type: Transform + - uid: 11069 + components: + - pos: 42.5,5.5 + parent: 34 + type: Transform + - uid: 11070 + components: + - pos: 42.5,6.5 + parent: 34 + type: Transform + - uid: 11092 + components: + - pos: 47.5,0.5 + parent: 34 + type: Transform + - uid: 11114 + components: + - pos: -27.5,-33.5 + parent: 34 + type: Transform + - uid: 11118 + components: + - pos: 30.5,-36.5 + parent: 34 + type: Transform + - uid: 11178 + components: + - pos: -43.5,-25.5 + parent: 34 + type: Transform + - uid: 11204 + components: + - pos: 19.5,9.5 + parent: 34 + type: Transform + - uid: 11205 + components: + - pos: 19.5,10.5 + parent: 34 + type: Transform + - uid: 11229 + components: + - pos: 16.5,-42.5 + parent: 34 + type: Transform + - uid: 11231 + components: + - pos: 16.5,-43.5 + parent: 34 + type: Transform + - uid: 11234 + components: + - pos: 16.5,-44.5 + parent: 34 + type: Transform + - uid: 11245 + components: + - pos: 47.5,-0.5 + parent: 34 + type: Transform + - uid: 11276 + components: + - pos: 26.5,8.5 + parent: 34 + type: Transform + - uid: 11277 + components: + - pos: 26.5,9.5 + parent: 34 + type: Transform + - uid: 11278 + components: + - pos: 26.5,10.5 + parent: 34 + type: Transform + - uid: 11279 + components: + - pos: 26.5,11.5 + parent: 34 + type: Transform + - uid: 11299 + components: + - pos: -57.5,-9.5 + parent: 34 + type: Transform + - uid: 11300 + components: + - pos: -58.5,-9.5 + parent: 34 + type: Transform + - uid: 11375 + components: + - pos: -54.5,-18.5 + parent: 34 + type: Transform + - uid: 11393 + components: + - pos: -41.5,-20.5 + parent: 34 + type: Transform + - uid: 11394 + components: + - pos: -42.5,-20.5 + parent: 34 + type: Transform + - uid: 11395 + components: + - pos: -42.5,-19.5 + parent: 34 + type: Transform + - uid: 11401 + components: + - pos: -42.5,-18.5 + parent: 34 + type: Transform + - uid: 11402 + components: + - pos: -42.5,-17.5 + parent: 34 + type: Transform + - uid: 11403 + components: + - pos: -42.5,-16.5 + parent: 34 + type: Transform + - uid: 11404 + components: + - pos: -42.5,-21.5 + parent: 34 + type: Transform + - uid: 11405 + components: + - pos: -42.5,-22.5 + parent: 34 + type: Transform + - uid: 11408 + components: + - pos: -42.5,-25.5 + parent: 34 + type: Transform + - uid: 11409 + components: + - pos: -42.5,-26.5 + parent: 34 + type: Transform + - uid: 11410 + components: + - pos: -41.5,-26.5 + parent: 34 + type: Transform + - uid: 11411 + components: + - pos: -40.5,-26.5 + parent: 34 + type: Transform + - uid: 11412 + components: + - pos: -39.5,-26.5 + parent: 34 + type: Transform + - uid: 11413 + components: + - pos: -38.5,-26.5 + parent: 34 + type: Transform + - uid: 11414 + components: + - pos: -37.5,-26.5 + parent: 34 + type: Transform + - uid: 11415 + components: + - pos: -36.5,-26.5 + parent: 34 + type: Transform + - uid: 11416 + components: + - pos: -35.5,-26.5 + parent: 34 + type: Transform + - uid: 11435 + components: + - pos: -44.5,-23.5 + parent: 34 + type: Transform + - uid: 11451 + components: + - pos: -46.5,-25.5 + parent: 34 + type: Transform + - uid: 11452 + components: + - pos: -46.5,-26.5 + parent: 34 + type: Transform + - uid: 11455 + components: + - pos: -49.5,-26.5 + parent: 34 + type: Transform + - uid: 11456 + components: + - pos: -50.5,-26.5 + parent: 34 + type: Transform + - uid: 11457 + components: + - pos: -51.5,-26.5 + parent: 34 + type: Transform + - uid: 11458 + components: + - pos: -51.5,-25.5 + parent: 34 + type: Transform + - uid: 11459 + components: + - pos: -52.5,-25.5 + parent: 34 + type: Transform + - uid: 11460 + components: + - pos: -53.5,-25.5 + parent: 34 + type: Transform + - uid: 11465 + components: + - pos: -54.5,-25.5 + parent: 34 + type: Transform + - uid: 11466 + components: + - pos: -55.5,-25.5 + parent: 34 + type: Transform + - uid: 11467 + components: + - pos: -56.5,-25.5 + parent: 34 + type: Transform + - uid: 11468 + components: + - pos: -57.5,-25.5 + parent: 34 + type: Transform + - uid: 11470 + components: + - pos: -46.5,-21.5 + parent: 34 + type: Transform + - uid: 11471 + components: + - pos: -47.5,-21.5 + parent: 34 + type: Transform + - uid: 11472 + components: + - pos: -48.5,-21.5 + parent: 34 + type: Transform + - uid: 11473 + components: + - pos: -46.5,-20.5 + parent: 34 + type: Transform + - uid: 11475 + components: + - pos: -49.5,-21.5 + parent: 34 + type: Transform + - uid: 11479 + components: + - pos: -47.5,-17.5 + parent: 34 + type: Transform + - uid: 11480 + components: + - pos: -48.5,-17.5 + parent: 34 + type: Transform + - uid: 11552 + components: + - pos: -48.5,-36.5 + parent: 34 + type: Transform + - uid: 11601 + components: + - pos: -44.5,-19.5 + parent: 34 + type: Transform + - uid: 11602 + components: + - pos: -13.5,-37.5 + parent: 34 + type: Transform + - uid: 11673 + components: + - pos: -39.5,9.5 + parent: 34 + type: Transform + - uid: 11694 + components: + - pos: -25.5,-31.5 + parent: 34 + type: Transform + - uid: 11696 + components: + - pos: -24.5,-30.5 + parent: 34 + type: Transform + - uid: 11697 + components: + - pos: -35.5,2.5 + parent: 34 + type: Transform + - uid: 11720 + components: + - pos: 52.5,-24.5 + parent: 34 + type: Transform + - uid: 11743 + components: + - pos: 52.5,-22.5 + parent: 34 + type: Transform + - uid: 11750 + components: + - pos: 52.5,-23.5 + parent: 34 + type: Transform + - uid: 11751 + components: + - pos: -17.5,-40.5 + parent: 34 + type: Transform + - uid: 11798 + components: + - pos: -3.5,14.5 + parent: 34 + type: Transform + - uid: 11799 + components: + - pos: -4.5,14.5 + parent: 34 + type: Transform + - uid: 11811 + components: + - pos: -44.5,-25.5 + parent: 34 + type: Transform + - uid: 11823 + components: + - pos: -17.5,-34.5 + parent: 34 + type: Transform + - uid: 11835 + components: + - pos: -16.5,-34.5 + parent: 34 + type: Transform + - uid: 11838 + components: + - pos: -21.5,-35.5 + parent: 34 + type: Transform + - uid: 11839 + components: + - pos: -15.5,-34.5 + parent: 34 + type: Transform + - uid: 11849 + components: + - pos: -25.5,-41.5 + parent: 34 + type: Transform + - uid: 11853 + components: + - pos: -26.5,-41.5 + parent: 34 + type: Transform + - uid: 11857 + components: + - pos: -27.5,-41.5 + parent: 34 + type: Transform + - uid: 11880 + components: + - pos: 13.5,17.5 + parent: 34 + type: Transform + - uid: 11891 + components: + - pos: -27.5,-42.5 + parent: 34 + type: Transform + - uid: 11893 + components: + - pos: -28.5,-42.5 + parent: 34 + type: Transform + - uid: 11899 + components: + - pos: -14.5,-32.5 + parent: 34 + type: Transform + - uid: 11922 + components: + - pos: -54.5,-22.5 + parent: 34 + type: Transform + - uid: 11935 + components: + - pos: -28.5,-43.5 + parent: 34 + type: Transform + - uid: 11960 + components: + - pos: -4.5,7.5 + parent: 34 + type: Transform + - uid: 11961 + components: + - pos: -3.5,7.5 + parent: 34 + type: Transform + - uid: 11962 + components: + - pos: -2.5,7.5 + parent: 34 + type: Transform + - uid: 11963 + components: + - pos: -1.5,7.5 + parent: 34 + type: Transform + - uid: 11964 + components: + - pos: -1.5,6.5 + parent: 34 + type: Transform + - uid: 11965 + components: + - pos: -1.5,5.5 + parent: 34 + type: Transform + - uid: 11966 + components: + - pos: -1.5,4.5 + parent: 34 + type: Transform + - uid: 11967 + components: + - pos: -1.5,3.5 + parent: 34 + type: Transform + - uid: 11968 + components: + - pos: -0.5,7.5 + parent: 34 + type: Transform + - uid: 11969 + components: + - pos: 0.5,7.5 + parent: 34 + type: Transform + - uid: 11970 + components: + - pos: 1.5,7.5 + parent: 34 + type: Transform + - uid: 11971 + components: + - pos: 2.5,7.5 + parent: 34 + type: Transform + - uid: 11972 + components: + - pos: 3.5,7.5 + parent: 34 + type: Transform + - uid: 11973 + components: + - pos: 4.5,7.5 + parent: 34 + type: Transform + - uid: 11974 + components: + - pos: 4.5,6.5 + parent: 34 + type: Transform + - uid: 11975 + components: + - pos: 4.5,5.5 + parent: 34 + type: Transform + - uid: 11976 + components: + - pos: 4.5,4.5 + parent: 34 + type: Transform + - uid: 11977 + components: + - pos: 3.5,4.5 + parent: 34 + type: Transform + - uid: 11978 + components: + - pos: 2.5,4.5 + parent: 34 + type: Transform + - uid: 11979 + components: + - pos: 1.5,4.5 + parent: 34 + type: Transform + - uid: 11980 + components: + - pos: 0.5,4.5 + parent: 34 + type: Transform + - uid: 11981 + components: + - pos: -0.5,4.5 + parent: 34 + type: Transform + - uid: 11982 + components: + - pos: -2.5,4.5 + parent: 34 + type: Transform + - uid: 11999 + components: + - pos: -44.5,-20.5 + parent: 34 + type: Transform + - uid: 12023 + components: + - pos: -33.5,-51.5 + parent: 34 + type: Transform + - uid: 12024 + components: + - pos: -38.5,-49.5 + parent: 34 + type: Transform + - uid: 12025 + components: + - pos: -37.5,-49.5 + parent: 34 + type: Transform + - uid: 12026 + components: + - pos: -37.5,-50.5 + parent: 34 + type: Transform + - uid: 12027 + components: + - pos: -37.5,-48.5 + parent: 34 + type: Transform + - uid: 12075 + components: + - pos: -16.5,-40.5 + parent: 34 + type: Transform + - uid: 12135 + components: + - pos: -18.5,-40.5 + parent: 34 + type: Transform + - uid: 12168 + components: + - pos: 22.5,-9.5 + parent: 34 + type: Transform + - uid: 12169 + components: + - pos: 21.5,-9.5 + parent: 34 + type: Transform + - uid: 12172 + components: + - pos: -45.5,-25.5 + parent: 34 + type: Transform + - uid: 12216 + components: + - pos: -15.5,-30.5 + parent: 34 + type: Transform + - uid: 12217 + components: + - pos: -43.5,-19.5 + parent: 34 + type: Transform + - uid: 12361 + components: + - pos: -16.5,-34.5 + parent: 34 + type: Transform + - uid: 12362 + components: + - pos: -16.5,-35.5 + parent: 34 + type: Transform + - uid: 12364 + components: + - pos: -16.5,-37.5 + parent: 34 + type: Transform + - uid: 12365 + components: + - pos: -16.5,-38.5 + parent: 34 + type: Transform + - uid: 12392 + components: + - pos: 45.5,-12.5 + parent: 34 + type: Transform + - uid: 12393 + components: + - pos: -17.5,-38.5 + parent: 34 + type: Transform + - uid: 12394 + components: + - pos: 47.5,-12.5 + parent: 34 + type: Transform + - uid: 12395 + components: + - pos: 47.5,-9.5 + parent: 34 + type: Transform + - uid: 12414 + components: + - pos: -53.5,-40.5 + parent: 34 + type: Transform + - uid: 12416 + components: + - pos: -54.5,-40.5 + parent: 34 + type: Transform + - uid: 12448 + components: + - pos: -21.5,-40.5 + parent: 34 + type: Transform + - uid: 12451 + components: + - pos: -14.5,-35.5 + parent: 34 + type: Transform + - uid: 12452 + components: + - pos: -14.5,-34.5 + parent: 34 + type: Transform + - uid: 12453 + components: + - pos: -14.5,-33.5 + parent: 34 + type: Transform + - uid: 12458 + components: + - pos: 45.5,-11.5 + parent: 34 + type: Transform + - uid: 12459 + components: + - pos: 44.5,-11.5 + parent: 34 + type: Transform + - uid: 12466 + components: + - pos: -14.5,-37.5 + parent: 34 + type: Transform + - uid: 12469 + components: + - pos: -14.5,-40.5 + parent: 34 + type: Transform + - uid: 12471 + components: + - pos: -13.5,-41.5 + parent: 34 + type: Transform + - uid: 12472 + components: + - pos: -13.5,-42.5 + parent: 34 + type: Transform + - uid: 12485 + components: + - pos: 35.5,-3.5 + parent: 34 + type: Transform + - uid: 12489 + components: + - pos: -54.5,-31.5 + parent: 34 + type: Transform + - uid: 12490 + components: + - pos: 36.5,-4.5 + parent: 34 + type: Transform + - uid: 12492 + components: + - pos: 36.5,-3.5 + parent: 34 + type: Transform + - uid: 12495 + components: + - pos: -29.5,-56.5 + parent: 34 + type: Transform + - uid: 12496 + components: + - pos: -29.5,-57.5 + parent: 34 + type: Transform + - uid: 12504 + components: + - pos: -54.5,-34.5 + parent: 34 + type: Transform + - uid: 12506 + components: + - pos: -54.5,-29.5 + parent: 34 + type: Transform + - uid: 12507 + components: + - pos: -54.5,-30.5 + parent: 34 + type: Transform + - uid: 12509 + components: + - pos: -54.5,-32.5 + parent: 34 + type: Transform + - uid: 12510 + components: + - pos: -54.5,-33.5 + parent: 34 + type: Transform + - uid: 12511 + components: + - pos: -54.5,-35.5 + parent: 34 + type: Transform + - uid: 12512 + components: + - pos: -54.5,-36.5 + parent: 34 + type: Transform + - uid: 12513 + components: + - pos: -53.5,-36.5 + parent: 34 + type: Transform + - uid: 12514 + components: + - pos: -52.5,-36.5 + parent: 34 + type: Transform + - uid: 12520 + components: + - pos: -29.5,-59.5 + parent: 34 + type: Transform + - uid: 12533 + components: + - pos: 42.5,-11.5 + parent: 34 + type: Transform + - uid: 12535 + components: + - pos: -30.5,-59.5 + parent: 34 + type: Transform + - uid: 12551 + components: + - pos: -31.5,-59.5 + parent: 34 + type: Transform + - uid: 12555 + components: + - pos: -32.5,-59.5 + parent: 34 + type: Transform + - uid: 12557 + components: + - pos: -32.5,-58.5 + parent: 34 + type: Transform + - uid: 12558 + components: + - pos: -33.5,-58.5 + parent: 34 + type: Transform + - uid: 12561 + components: + - pos: -34.5,-58.5 + parent: 34 + type: Transform + - uid: 12566 + components: + - pos: -34.5,-58.5 + parent: 34 + type: Transform + - uid: 12567 + components: + - pos: -36.5,-58.5 + parent: 34 + type: Transform + - uid: 12571 + components: + - pos: -35.5,-58.5 + parent: 34 + type: Transform + - uid: 12646 + components: + - pos: -48.5,-35.5 + parent: 34 + type: Transform + - uid: 12647 + components: + - pos: -48.5,-34.5 + parent: 34 + type: Transform + - uid: 12648 + components: + - pos: -48.5,-33.5 + parent: 34 + type: Transform + - uid: 12649 + components: + - pos: -45.5,-34.5 + parent: 34 + type: Transform + - uid: 12650 + components: + - pos: -45.5,-35.5 + parent: 34 + type: Transform + - uid: 12656 + components: + - pos: -37.5,-58.5 + parent: 34 + type: Transform + - uid: 12684 + components: + - pos: -38.5,-58.5 + parent: 34 + type: Transform + - uid: 12685 + components: + - pos: -30.5,-54.5 + parent: 34 + type: Transform + - uid: 12686 + components: + - pos: -30.5,-56.5 + parent: 34 + type: Transform + - uid: 12718 + components: + - pos: 11.5,-37.5 + parent: 34 + type: Transform + - uid: 12719 + components: + - pos: 12.5,-37.5 + parent: 34 + type: Transform + - uid: 12720 + components: + - pos: 13.5,-37.5 + parent: 34 + type: Transform + - uid: 12721 + components: + - pos: 14.5,-37.5 + parent: 34 + type: Transform + - uid: 12741 + components: + - pos: -55.5,-28.5 + parent: 34 + type: Transform + - uid: 12742 + components: + - pos: -56.5,-28.5 + parent: 34 + type: Transform + - uid: 12743 + components: + - pos: -57.5,-28.5 + parent: 34 + type: Transform + - uid: 12744 + components: + - pos: -58.5,-28.5 + parent: 34 + type: Transform + - uid: 12745 + components: + - pos: -59.5,-28.5 + parent: 34 + type: Transform + - uid: 12746 + components: + - pos: -59.5,-27.5 + parent: 34 + type: Transform + - uid: 12747 + components: + - pos: -59.5,-26.5 + parent: 34 + type: Transform + - uid: 12748 + components: + - pos: -59.5,-29.5 + parent: 34 + type: Transform + - uid: 12749 + components: + - pos: -59.5,-30.5 + parent: 34 + type: Transform + - uid: 12750 + components: + - pos: -59.5,-31.5 + parent: 34 + type: Transform + - uid: 12751 + components: + - pos: -59.5,-32.5 + parent: 34 + type: Transform + - uid: 12752 + components: + - pos: -59.5,-33.5 + parent: 34 + type: Transform + - uid: 12753 + components: + - pos: -59.5,-34.5 + parent: 34 + type: Transform + - uid: 12754 + components: + - pos: -59.5,-35.5 + parent: 34 + type: Transform + - uid: 12755 + components: + - pos: -58.5,-35.5 + parent: 34 + type: Transform + - uid: 12756 + components: + - pos: -57.5,-35.5 + parent: 34 + type: Transform + - uid: 12757 + components: + - pos: -56.5,-24.5 + parent: 34 + type: Transform + - uid: 12758 + components: + - pos: -56.5,-23.5 + parent: 34 + type: Transform + - uid: 12759 + components: + - pos: -56.5,-29.5 + parent: 34 + type: Transform + - uid: 12760 + components: + - pos: -58.5,-37.5 + parent: 34 + type: Transform + - uid: 12761 + components: + - pos: -58.5,-36.5 + parent: 34 + type: Transform + - uid: 12762 + components: + - pos: -58.5,-38.5 + parent: 34 + type: Transform + - uid: 12763 + components: + - pos: -58.5,-39.5 + parent: 34 + type: Transform + - uid: 12764 + components: + - pos: -57.5,-39.5 + parent: 34 + type: Transform + - uid: 12765 + components: + - pos: -56.5,-39.5 + parent: 34 + type: Transform + - uid: 12806 + components: + - pos: 12.5,10.5 + parent: 34 + type: Transform + - uid: 12807 + components: + - pos: 11.5,10.5 + parent: 34 + type: Transform + - uid: 12808 + components: + - pos: 10.5,10.5 + parent: 34 + type: Transform + - uid: 12809 + components: + - pos: 9.5,10.5 + parent: 34 + type: Transform + - uid: 12810 + components: + - pos: 7.5,10.5 + parent: 34 + type: Transform + - uid: 12811 + components: + - pos: 8.5,10.5 + parent: 34 + type: Transform + - uid: 12812 + components: + - pos: 6.5,10.5 + parent: 34 + type: Transform + - uid: 12813 + components: + - pos: 6.5,12.5 + parent: 34 + type: Transform + - uid: 12814 + components: + - pos: 6.5,11.5 + parent: 34 + type: Transform + - uid: 12815 + components: + - pos: 5.5,11.5 + parent: 34 + type: Transform + - uid: 12816 + components: + - pos: 4.5,11.5 + parent: 34 + type: Transform + - uid: 12817 + components: + - pos: 3.5,11.5 + parent: 34 + type: Transform + - uid: 12818 + components: + - pos: 3.5,10.5 + parent: 34 + type: Transform + - uid: 12819 + components: + - pos: 2.5,10.5 + parent: 34 + type: Transform + - uid: 12820 + components: + - pos: 1.5,10.5 + parent: 34 + type: Transform + - uid: 12821 + components: + - pos: -0.5,10.5 + parent: 34 + type: Transform + - uid: 12822 + components: + - pos: 0.5,10.5 + parent: 34 + type: Transform + - uid: 12823 + components: + - pos: -1.5,10.5 + parent: 34 + type: Transform + - uid: 12824 + components: + - pos: -2.5,10.5 + parent: 34 + type: Transform + - uid: 12825 + components: + - pos: -3.5,10.5 + parent: 34 + type: Transform + - uid: 12826 + components: + - pos: -4.5,10.5 + parent: 34 + type: Transform + - uid: 12827 + components: + - pos: -5.5,10.5 + parent: 34 + type: Transform + - uid: 12828 + components: + - pos: -7.5,10.5 + parent: 34 + type: Transform + - uid: 12829 + components: + - pos: -6.5,10.5 + parent: 34 + type: Transform + - uid: 12830 + components: + - pos: -9.5,10.5 + parent: 34 + type: Transform + - uid: 12831 + components: + - pos: -8.5,10.5 + parent: 34 + type: Transform + - uid: 12832 + components: + - pos: -6.5,9.5 + parent: 34 + type: Transform + - uid: 12833 + components: + - pos: -6.5,8.5 + parent: 34 + type: Transform + - uid: 12834 + components: + - pos: -6.5,7.5 + parent: 34 + type: Transform + - uid: 12835 + components: + - pos: -7.5,7.5 + parent: 34 + type: Transform + - uid: 12837 + components: + - pos: -8.5,7.5 + parent: 34 + type: Transform + - uid: 12838 + components: + - pos: -9.5,7.5 + parent: 34 + type: Transform + - uid: 12850 + components: + - pos: 30.5,-13.5 + parent: 34 + type: Transform + - uid: 12851 + components: + - pos: 30.5,-14.5 + parent: 34 + type: Transform + - uid: 12852 + components: + - pos: 31.5,-13.5 + parent: 34 + type: Transform + - uid: 12853 + components: + - pos: 32.5,-13.5 + parent: 34 + type: Transform + - uid: 12854 + components: + - pos: 33.5,-13.5 + parent: 34 + type: Transform + - uid: 12856 + components: + - pos: -12.5,-34.5 + parent: 34 + type: Transform + - uid: 12857 + components: + - pos: -13.5,-34.5 + parent: 34 + type: Transform + - uid: 12907 + components: + - pos: 9.5,3.5 + parent: 34 + type: Transform + - uid: 12908 + components: + - pos: 10.5,7.5 + parent: 34 + type: Transform + - uid: 12909 + components: + - pos: 10.5,8.5 + parent: 34 + type: Transform + - uid: 12910 + components: + - pos: 10.5,6.5 + parent: 34 + type: Transform + - uid: 12911 + components: + - pos: 10.5,5.5 + parent: 34 + type: Transform +- proto: CableApcStack1 + entities: + - uid: 5561 + components: + - rot: 3.141592653589793 rad + pos: -18.312016,3.6166978 + parent: 34 + type: Transform + - uid: 5562 + components: + - rot: 1.5707963267948966 rad + pos: -18.60889,3.6323342 + parent: 34 + type: Transform +- proto: CableHV + entities: + - uid: 9 + components: + - pos: 36.5,-8.5 + parent: 34 + type: Transform + - uid: 669 + components: + - pos: 16.5,-42.5 + parent: 34 + type: Transform + - uid: 674 + components: + - pos: 16.5,-43.5 + parent: 34 + type: Transform + - uid: 1049 + components: + - pos: -17.5,-24.5 + parent: 34 + type: Transform + - uid: 1050 + components: + - pos: -21.5,-29.5 + parent: 34 + type: Transform + - uid: 1060 + components: + - pos: 36.5,-4.5 + parent: 34 + type: Transform + - uid: 1085 + components: + - pos: 36.5,-14.5 + parent: 34 + type: Transform + - uid: 1102 + components: + - pos: -19.5,-29.5 + parent: 34 + type: Transform + - uid: 1122 + components: + - pos: -17.5,-23.5 + parent: 34 + type: Transform + - uid: 1130 + components: + - pos: -33.5,-32.5 + parent: 34 + type: Transform + - uid: 1131 + components: + - pos: -32.5,-32.5 + parent: 34 + type: Transform + - uid: 1132 + components: + - pos: -31.5,-32.5 + parent: 34 + type: Transform + - uid: 1133 + components: + - pos: -32.5,-33.5 + parent: 34 + type: Transform + - uid: 1134 + components: + - pos: -33.5,-31.5 + parent: 34 + type: Transform + - uid: 1135 + components: + - pos: -33.5,-30.5 + parent: 34 + type: Transform + - uid: 1136 + components: + - pos: -32.5,-31.5 + parent: 34 + type: Transform + - uid: 1137 + components: + - pos: -32.5,-30.5 + parent: 34 + type: Transform + - uid: 1138 + components: + - pos: -31.5,-31.5 + parent: 34 + type: Transform + - uid: 1139 + components: + - pos: -31.5,-30.5 + parent: 34 + type: Transform + - uid: 1140 + components: + - pos: -32.5,-34.5 + parent: 34 + type: Transform + - uid: 1143 + components: + - pos: -32.5,-35.5 + parent: 34 + type: Transform + - uid: 1144 + components: + - pos: -32.5,-36.5 + parent: 34 + type: Transform + - uid: 1145 + components: + - pos: -32.5,-37.5 + parent: 34 + type: Transform + - uid: 1146 + components: + - pos: -32.5,-38.5 + parent: 34 + type: Transform + - uid: 1147 + components: + - pos: -32.5,-39.5 + parent: 34 + type: Transform + - uid: 1159 + components: + - pos: -31.5,-33.5 + parent: 34 + type: Transform + - uid: 1160 + components: + - pos: -33.5,-33.5 + parent: 34 + type: Transform + - uid: 1226 + components: + - pos: -34.5,-30.5 + parent: 34 + type: Transform + - uid: 1227 + components: + - pos: -35.5,-30.5 + parent: 34 + type: Transform + - uid: 1279 + components: + - pos: -20.5,-29.5 + parent: 34 + type: Transform + - uid: 1285 + components: + - pos: 35.5,-16.5 + parent: 34 + type: Transform + - uid: 1374 + components: + - pos: -18.5,-29.5 + parent: 34 + type: Transform + - uid: 1549 + components: + - pos: -37.5,-15.5 + parent: 34 + type: Transform + - uid: 1602 + components: + - pos: -37.5,-24.5 + parent: 34 + type: Transform + - uid: 1609 + components: + - pos: -17.5,-25.5 + parent: 34 + type: Transform + - uid: 1613 + components: + - pos: -37.5,-22.5 + parent: 34 + type: Transform + - uid: 1614 + components: + - pos: -37.5,-23.5 + parent: 34 + type: Transform + - uid: 1645 + components: + - pos: -35.5,-31.5 + parent: 34 + type: Transform + - uid: 1815 + components: + - pos: -37.5,-21.5 + parent: 34 + type: Transform + - uid: 1842 + components: + - pos: -37.5,-19.5 + parent: 34 + type: Transform + - uid: 1844 + components: + - pos: 36.5,-16.5 + parent: 34 + type: Transform + - uid: 1941 + components: + - pos: -37.5,-18.5 + parent: 34 + type: Transform + - uid: 1942 + components: + - pos: -37.5,-17.5 + parent: 34 + type: Transform + - uid: 2061 + components: + - pos: -37.5,-13.5 + parent: 34 + type: Transform + - uid: 2221 + components: + - pos: -17.5,-28.5 + parent: 34 + type: Transform + - uid: 2282 + components: + - pos: -36.5,-27.5 + parent: 34 + type: Transform + - uid: 2283 + components: + - pos: -37.5,-27.5 + parent: 34 + type: Transform + - uid: 2389 + components: + - pos: -42.5,-22.5 + parent: 34 + type: Transform + - uid: 2391 + components: + - pos: -37.5,-16.5 + parent: 34 + type: Transform + - uid: 2392 + components: + - pos: -37.5,-14.5 + parent: 34 + type: Transform + - uid: 2393 + components: + - pos: -37.5,-25.5 + parent: 34 + type: Transform + - uid: 2394 + components: + - pos: -37.5,-26.5 + parent: 34 + type: Transform + - uid: 2400 + components: + - pos: -43.5,-12.5 + parent: 34 + type: Transform + - uid: 2401 + components: + - pos: -44.5,-12.5 + parent: 34 + type: Transform + - uid: 2402 + components: + - pos: -45.5,-12.5 + parent: 34 + type: Transform + - uid: 2478 + components: + - pos: 52.5,-23.5 + parent: 34 + type: Transform + - uid: 2498 + components: + - pos: -17.5,-29.5 + parent: 34 + type: Transform + - uid: 2543 + components: + - pos: -38.5,-12.5 + parent: 34 + type: Transform + - uid: 2569 + components: + - pos: -17.5,-26.5 + parent: 34 + type: Transform + - uid: 2598 + components: + - pos: -17.5,-27.5 + parent: 34 + type: Transform + - uid: 2606 + components: + - pos: -35.5,-29.5 + parent: 34 + type: Transform + - uid: 2607 + components: + - pos: -35.5,-28.5 + parent: 34 + type: Transform + - uid: 2608 + components: + - pos: -35.5,-27.5 + parent: 34 + type: Transform + - uid: 2632 + components: + - pos: -30.5,-30.5 + parent: 34 + type: Transform + - uid: 2649 + components: + - pos: -21.5,-22.5 + parent: 34 + type: Transform + - uid: 2650 + components: + - pos: -21.5,-21.5 + parent: 34 + type: Transform + - uid: 2651 + components: + - pos: -21.5,-20.5 + parent: 34 + type: Transform + - uid: 2652 + components: + - pos: -21.5,-19.5 + parent: 34 + type: Transform + - uid: 2653 + components: + - pos: -21.5,-18.5 + parent: 34 + type: Transform + - uid: 2654 + components: + - pos: -21.5,-17.5 + parent: 34 + type: Transform + - uid: 2655 + components: + - pos: -21.5,-16.5 + parent: 34 + type: Transform + - uid: 2656 + components: + - pos: -21.5,-15.5 + parent: 34 + type: Transform + - uid: 2657 + components: + - pos: -21.5,-14.5 + parent: 34 + type: Transform + - uid: 2658 + components: + - pos: -21.5,-13.5 + parent: 34 + type: Transform + - uid: 2659 + components: + - pos: -20.5,-13.5 + parent: 34 + type: Transform + - uid: 2660 + components: + - pos: -19.5,-13.5 + parent: 34 + type: Transform + - uid: 2763 + components: + - pos: -18.5,-13.5 + parent: 34 + type: Transform + - uid: 2764 + components: + - pos: -17.5,-13.5 + parent: 34 + type: Transform + - uid: 2765 + components: + - pos: -17.5,-14.5 + parent: 34 + type: Transform + - uid: 2766 + components: + - pos: -16.5,-14.5 + parent: 34 + type: Transform + - uid: 2767 + components: + - pos: -21.5,-12.5 + parent: 34 + type: Transform + - uid: 2768 + components: + - pos: -21.5,-11.5 + parent: 34 + type: Transform + - uid: 2769 + components: + - pos: -9.5,-0.5 + parent: 34 + type: Transform + - uid: 2770 + components: + - pos: -8.5,-0.5 + parent: 34 + type: Transform + - uid: 2771 + components: + - pos: -7.5,-0.5 + parent: 34 + type: Transform + - uid: 2772 + components: + - pos: -6.5,-0.5 + parent: 34 + type: Transform + - uid: 2773 + components: + - pos: -5.5,-0.5 + parent: 34 + type: Transform + - uid: 2774 + components: + - pos: -4.5,-0.5 + parent: 34 + type: Transform + - uid: 2775 + components: + - pos: -4.5,-1.5 + parent: 34 + type: Transform + - uid: 2776 + components: + - pos: -4.5,-2.5 + parent: 34 + type: Transform + - uid: 2777 + components: + - pos: -4.5,-3.5 + parent: 34 + type: Transform + - uid: 2778 + components: + - pos: -4.5,-4.5 + parent: 34 + type: Transform + - uid: 2779 + components: + - pos: -4.5,-5.5 + parent: 34 + type: Transform + - uid: 2780 + components: + - pos: -4.5,-6.5 + parent: 34 + type: Transform + - uid: 2781 + components: + - pos: -4.5,-7.5 + parent: 34 + type: Transform + - uid: 2782 + components: + - pos: -4.5,-8.5 + parent: 34 + type: Transform + - uid: 2783 + components: + - pos: -4.5,-9.5 + parent: 34 + type: Transform + - uid: 2784 + components: + - pos: -4.5,-10.5 + parent: 34 + type: Transform + - uid: 2785 + components: + - pos: -4.5,-11.5 + parent: 34 + type: Transform + - uid: 2786 + components: + - pos: -4.5,-12.5 + parent: 34 + type: Transform + - uid: 2787 + components: + - pos: -4.5,-13.5 + parent: 34 + type: Transform + - uid: 2788 + components: + - pos: -4.5,-14.5 + parent: 34 + type: Transform + - uid: 2789 + components: + - pos: -3.5,-14.5 + parent: 34 + type: Transform + - uid: 2790 + components: + - pos: -2.5,-14.5 + parent: 34 + type: Transform + - uid: 2791 + components: + - pos: -1.5,-14.5 + parent: 34 + type: Transform + - uid: 2792 + components: + - pos: -0.5,-14.5 + parent: 34 + type: Transform + - uid: 2793 + components: + - pos: 0.5,-14.5 + parent: 34 + type: Transform + - uid: 2794 + components: + - pos: 1.5,-14.5 + parent: 34 + type: Transform + - uid: 2795 + components: + - pos: 2.5,-14.5 + parent: 34 + type: Transform + - uid: 2796 + components: + - pos: 3.5,-14.5 + parent: 34 + type: Transform + - uid: 2797 + components: + - pos: 4.5,-14.5 + parent: 34 + type: Transform + - uid: 2798 + components: + - pos: 5.5,-14.5 + parent: 34 + type: Transform + - uid: 2799 + components: + - pos: 6.5,-14.5 + parent: 34 + type: Transform + - uid: 2800 + components: + - pos: 7.5,-14.5 + parent: 34 + type: Transform + - uid: 2801 + components: + - pos: 8.5,-14.5 + parent: 34 + type: Transform + - uid: 3279 + components: + - pos: -40.5,-12.5 + parent: 34 + type: Transform + - uid: 3315 + components: + - pos: -41.5,-12.5 + parent: 34 + type: Transform + - uid: 3439 + components: + - pos: 9.5,-18.5 + parent: 34 + type: Transform + - uid: 3440 + components: + - pos: 9.5,-14.5 + parent: 34 + type: Transform + - uid: 3441 + components: + - pos: 9.5,-15.5 + parent: 34 + type: Transform + - uid: 3442 + components: + - pos: 9.5,-16.5 + parent: 34 + type: Transform + - uid: 3443 + components: + - pos: 9.5,-17.5 + parent: 34 + type: Transform + - uid: 3445 + components: + - pos: 10.5,-19.5 + parent: 34 + type: Transform + - uid: 3446 + components: + - pos: 9.5,-19.5 + parent: 34 + type: Transform + - uid: 4134 + components: + - pos: -51.5,-29.5 + parent: 34 + type: Transform + - uid: 4136 + components: + - pos: -50.5,-29.5 + parent: 34 + type: Transform + - uid: 4164 + components: + - pos: -43.5,-12.5 + parent: 34 + type: Transform + - uid: 4435 + components: + - pos: -42.5,-12.5 + parent: 34 + type: Transform + - uid: 4608 + components: + - pos: -22.5,-29.5 + parent: 34 + type: Transform + - uid: 4634 + components: + - pos: 36.5,-16.5 + parent: 34 + type: Transform + - uid: 4650 + components: + - pos: 36.5,-17.5 + parent: 34 + type: Transform + - uid: 4671 + components: + - pos: 36.5,-5.5 + parent: 34 + type: Transform + - uid: 4750 + components: + - pos: 35.5,-3.5 + parent: 34 + type: Transform + - uid: 4752 + components: + - pos: 33.5,-3.5 + parent: 34 + type: Transform + - uid: 4846 + components: + - pos: 36.5,-7.5 + parent: 34 + type: Transform + - uid: 4854 + components: + - pos: 37.5,-19.5 + parent: 34 + type: Transform + - uid: 4972 + components: + - pos: 28.5,-40.5 + parent: 34 + type: Transform + - uid: 5309 + components: + - pos: 21.5,-50.5 + parent: 34 + type: Transform + - uid: 5334 + components: + - pos: 16.5,-50.5 + parent: 34 + type: Transform + - uid: 5335 + components: + - pos: 16.5,-51.5 + parent: 34 + type: Transform + - uid: 5336 + components: + - pos: 16.5,-52.5 + parent: 34 + type: Transform + - uid: 5339 + components: + - pos: 18.5,-50.5 + parent: 34 + type: Transform + - uid: 5340 + components: + - pos: 18.5,-51.5 + parent: 34 + type: Transform + - uid: 5341 + components: + - pos: 18.5,-52.5 + parent: 34 + type: Transform + - uid: 5344 + components: + - pos: 20.5,-50.5 + parent: 34 + type: Transform + - uid: 5345 + components: + - pos: 20.5,-51.5 + parent: 34 + type: Transform + - uid: 5346 + components: + - pos: 20.5,-52.5 + parent: 34 + type: Transform + - uid: 5349 + components: + - pos: 22.5,-50.5 + parent: 34 + type: Transform + - uid: 5350 + components: + - pos: 22.5,-51.5 + parent: 34 + type: Transform + - uid: 5351 + components: + - pos: 22.5,-52.5 + parent: 34 + type: Transform + - uid: 5354 + components: + - pos: 24.5,-50.5 + parent: 34 + type: Transform + - uid: 5355 + components: + - pos: 24.5,-51.5 + parent: 34 + type: Transform + - uid: 5356 + components: + - pos: 24.5,-52.5 + parent: 34 + type: Transform + - uid: 5357 + components: + - pos: 24.5,-53.5 + parent: 34 + type: Transform + - uid: 5358 + components: + - pos: 24.5,-54.5 + parent: 34 + type: Transform + - uid: 5359 + components: + - pos: 26.5,-50.5 + parent: 34 + type: Transform + - uid: 5360 + components: + - pos: 26.5,-51.5 + parent: 34 + type: Transform + - uid: 5361 + components: + - pos: 26.5,-52.5 + parent: 34 + type: Transform + - uid: 5362 + components: + - pos: 26.5,-53.5 + parent: 34 + type: Transform + - uid: 5363 + components: + - pos: 26.5,-54.5 + parent: 34 + type: Transform + - uid: 5364 + components: + - pos: 28.5,-50.5 + parent: 34 + type: Transform + - uid: 5365 + components: + - pos: 28.5,-51.5 + parent: 34 + type: Transform + - uid: 5366 + components: + - pos: 28.5,-52.5 + parent: 34 + type: Transform + - uid: 5367 + components: + - pos: 28.5,-53.5 + parent: 34 + type: Transform + - uid: 5368 + components: + - pos: 28.5,-54.5 + parent: 34 + type: Transform + - uid: 5369 + components: + - pos: 30.5,-50.5 + parent: 34 + type: Transform + - uid: 5370 + components: + - pos: 30.5,-51.5 + parent: 34 + type: Transform + - uid: 5371 + components: + - pos: 30.5,-52.5 + parent: 34 + type: Transform + - uid: 5372 + components: + - pos: 30.5,-53.5 + parent: 34 + type: Transform + - uid: 5373 + components: + - pos: 30.5,-54.5 + parent: 34 + type: Transform + - uid: 5374 + components: + - pos: 32.5,-50.5 + parent: 34 + type: Transform + - uid: 5375 + components: + - pos: 32.5,-51.5 + parent: 34 + type: Transform + - uid: 5376 + components: + - pos: 32.5,-52.5 + parent: 34 + type: Transform + - uid: 5377 + components: + - pos: 32.5,-53.5 + parent: 34 + type: Transform + - uid: 5378 + components: + - pos: 32.5,-54.5 + parent: 34 + type: Transform + - uid: 5379 + components: + - pos: 34.5,-50.5 + parent: 34 + type: Transform + - uid: 5380 + components: + - pos: 34.5,-51.5 + parent: 34 + type: Transform + - uid: 5381 + components: + - pos: 34.5,-52.5 + parent: 34 + type: Transform + - uid: 5382 + components: + - pos: 34.5,-53.5 + parent: 34 + type: Transform + - uid: 5383 + components: + - pos: 34.5,-54.5 + parent: 34 + type: Transform + - uid: 5384 + components: + - pos: 32.5,-45.5 + parent: 34 + type: Transform + - uid: 5385 + components: + - pos: 31.5,-45.5 + parent: 34 + type: Transform + - uid: 5386 + components: + - pos: 32.5,-42.5 + parent: 34 + type: Transform + - uid: 5387 + components: + - pos: 30.5,-45.5 + parent: 34 + type: Transform + - uid: 5389 + components: + - pos: 32.5,-43.5 + parent: 34 + type: Transform + - uid: 5391 + components: + - pos: 33.5,-44.5 + parent: 34 + type: Transform + - uid: 5392 + components: + - pos: 33.5,-43.5 + parent: 34 + type: Transform + - uid: 5393 + components: + - pos: 33.5,-45.5 + parent: 34 + type: Transform + - uid: 5394 + components: + - pos: 32.5,-46.5 + parent: 34 + type: Transform + - uid: 5395 + components: + - pos: 32.5,-47.5 + parent: 34 + type: Transform + - uid: 5414 + components: + - pos: 31.5,-43.5 + parent: 34 + type: Transform + - uid: 5415 + components: + - pos: 30.5,-43.5 + parent: 34 + type: Transform + - uid: 5427 + components: + - pos: 33.5,-50.5 + parent: 34 + type: Transform + - uid: 5428 + components: + - pos: 33.5,-49.5 + parent: 34 + type: Transform + - uid: 5429 + components: + - pos: 33.5,-48.5 + parent: 34 + type: Transform + - uid: 5430 + components: + - pos: 32.5,-48.5 + parent: 34 + type: Transform + - uid: 5431 + components: + - pos: 31.5,-48.5 + parent: 34 + type: Transform + - uid: 5432 + components: + - pos: 30.5,-48.5 + parent: 34 + type: Transform + - uid: 5433 + components: + - pos: 29.5,-48.5 + parent: 34 + type: Transform + - uid: 5434 + components: + - pos: 28.5,-48.5 + parent: 34 + type: Transform + - uid: 5435 + components: + - pos: 27.5,-48.5 + parent: 34 + type: Transform + - uid: 5436 + components: + - pos: 26.5,-48.5 + parent: 34 + type: Transform + - uid: 5437 + components: + - pos: 25.5,-48.5 + parent: 34 + type: Transform + - uid: 5438 + components: + - pos: 29.5,-49.5 + parent: 34 + type: Transform + - uid: 5439 + components: + - pos: 29.5,-50.5 + parent: 34 + type: Transform + - uid: 5440 + components: + - pos: 25.5,-49.5 + parent: 34 + type: Transform + - uid: 5441 + components: + - pos: 25.5,-50.5 + parent: 34 + type: Transform + - uid: 5442 + components: + - pos: 25.5,-52.5 + parent: 34 + type: Transform + - uid: 5443 + components: + - pos: 29.5,-52.5 + parent: 34 + type: Transform + - uid: 5444 + components: + - pos: 33.5,-52.5 + parent: 34 + type: Transform + - uid: 5445 + components: + - pos: 17.5,-50.5 + parent: 34 + type: Transform + - uid: 5582 + components: + - pos: -26.5,5.5 + parent: 34 + type: Transform + - uid: 5583 + components: + - pos: -25.5,5.5 + parent: 34 + type: Transform + - uid: 5584 + components: + - pos: -25.5,6.5 + parent: 34 + type: Transform + - uid: 5586 + components: + - pos: -27.5,4.5 + parent: 34 + type: Transform + - uid: 5587 + components: + - pos: -26.5,3.5 + parent: 34 + type: Transform + - uid: 5589 + components: + - pos: -27.5,2.5 + parent: 34 + type: Transform + - uid: 5590 + components: + - pos: -25.5,3.5 + parent: 34 + type: Transform + - uid: 5591 + components: + - pos: -24.5,3.5 + parent: 34 + type: Transform + - uid: 5592 + components: + - pos: -23.5,3.5 + parent: 34 + type: Transform + - uid: 5679 + components: + - pos: -25.5,7.5 + parent: 34 + type: Transform + - uid: 5680 + components: + - pos: -25.5,8.5 + parent: 34 + type: Transform + - uid: 5681 + components: + - pos: -24.5,8.5 + parent: 34 + type: Transform + - uid: 5682 + components: + - pos: -23.5,8.5 + parent: 34 + type: Transform + - uid: 5683 + components: + - pos: -22.5,8.5 + parent: 34 + type: Transform + - uid: 5684 + components: + - pos: -21.5,8.5 + parent: 34 + type: Transform + - uid: 5685 + components: + - pos: -20.5,8.5 + parent: 34 + type: Transform + - uid: 5686 + components: + - pos: -19.5,8.5 + parent: 34 + type: Transform + - uid: 5687 + components: + - pos: -18.5,8.5 + parent: 34 + type: Transform + - uid: 5688 + components: + - pos: -17.5,8.5 + parent: 34 + type: Transform + - uid: 5689 + components: + - pos: -16.5,8.5 + parent: 34 + type: Transform + - uid: 5690 + components: + - pos: -15.5,8.5 + parent: 34 + type: Transform + - uid: 5691 + components: + - pos: -14.5,8.5 + parent: 34 + type: Transform + - uid: 5692 + components: + - pos: -13.5,8.5 + parent: 34 + type: Transform + - uid: 5693 + components: + - pos: -21.5,9.5 + parent: 34 + type: Transform + - uid: 5694 + components: + - pos: -21.5,10.5 + parent: 34 + type: Transform + - uid: 5695 + components: + - pos: -17.5,10.5 + parent: 34 + type: Transform + - uid: 5696 + components: + - pos: -17.5,9.5 + parent: 34 + type: Transform + - uid: 5697 + components: + - pos: -13.5,10.5 + parent: 34 + type: Transform + - uid: 5698 + components: + - pos: -13.5,9.5 + parent: 34 + type: Transform + - uid: 5699 + components: + - pos: -26.5,8.5 + parent: 34 + type: Transform + - uid: 5700 + components: + - pos: -22.5,10.5 + parent: 34 + type: Transform + - uid: 5701 + components: + - pos: -22.5,11.5 + parent: 34 + type: Transform + - uid: 5702 + components: + - pos: -22.5,12.5 + parent: 34 + type: Transform + - uid: 5703 + components: + - pos: -22.5,13.5 + parent: 34 + type: Transform + - uid: 5704 + components: + - pos: -22.5,14.5 + parent: 34 + type: Transform + - uid: 5705 + components: + - pos: -20.5,14.5 + parent: 34 + type: Transform + - uid: 5706 + components: + - pos: -20.5,13.5 + parent: 34 + type: Transform + - uid: 5707 + components: + - pos: -20.5,12.5 + parent: 34 + type: Transform + - uid: 5708 + components: + - pos: -20.5,11.5 + parent: 34 + type: Transform + - uid: 5709 + components: + - pos: -20.5,10.5 + parent: 34 + type: Transform + - uid: 5710 + components: + - pos: -18.5,14.5 + parent: 34 + type: Transform + - uid: 5711 + components: + - pos: -18.5,13.5 + parent: 34 + type: Transform + - uid: 5712 + components: + - pos: -18.5,12.5 + parent: 34 + type: Transform + - uid: 5713 + components: + - pos: -18.5,11.5 + parent: 34 + type: Transform + - uid: 5714 + components: + - pos: -18.5,10.5 + parent: 34 + type: Transform + - uid: 5715 + components: + - pos: -16.5,14.5 + parent: 34 + type: Transform + - uid: 5716 + components: + - pos: -16.5,13.5 + parent: 34 + type: Transform + - uid: 5717 + components: + - pos: -16.5,12.5 + parent: 34 + type: Transform + - uid: 5718 + components: + - pos: -16.5,11.5 + parent: 34 + type: Transform + - uid: 5719 + components: + - pos: -16.5,10.5 + parent: 34 + type: Transform + - uid: 5720 + components: + - pos: -14.5,14.5 + parent: 34 + type: Transform + - uid: 5721 + components: + - pos: -14.5,13.5 + parent: 34 + type: Transform + - uid: 5722 + components: + - pos: -14.5,12.5 + parent: 34 + type: Transform + - uid: 5723 + components: + - pos: -14.5,11.5 + parent: 34 + type: Transform + - uid: 5724 + components: + - pos: -14.5,10.5 + parent: 34 + type: Transform + - uid: 5725 + components: + - pos: -12.5,14.5 + parent: 34 + type: Transform + - uid: 5726 + components: + - pos: -12.5,13.5 + parent: 34 + type: Transform + - uid: 5727 + components: + - pos: -12.5,12.5 + parent: 34 + type: Transform + - uid: 5728 + components: + - pos: -12.5,11.5 + parent: 34 + type: Transform + - uid: 5729 + components: + - pos: -12.5,10.5 + parent: 34 + type: Transform + - uid: 5740 + components: + - pos: -27.5,5.5 + parent: 34 + type: Transform + - uid: 5744 + components: + - pos: -27.5,3.5 + parent: 34 + type: Transform + - uid: 5938 + components: + - pos: -39.5,-12.5 + parent: 34 + type: Transform + - uid: 6025 + components: + - pos: 36.5,-6.5 + parent: 34 + type: Transform + - uid: 6150 + components: + - pos: 36.5,-19.5 + parent: 34 + type: Transform + - uid: 6376 + components: + - pos: -51.5,-30.5 + parent: 34 + type: Transform + - uid: 6571 + components: + - pos: 8.5,-13.5 + parent: 34 + type: Transform + - uid: 6572 + components: + - pos: 8.5,-12.5 + parent: 34 + type: Transform + - uid: 6573 + components: + - pos: 8.5,-11.5 + parent: 34 + type: Transform + - uid: 6574 + components: + - pos: 9.5,-11.5 + parent: 34 + type: Transform + - uid: 6575 + components: + - pos: 10.5,-11.5 + parent: 34 + type: Transform + - uid: 6576 + components: + - pos: 11.5,-11.5 + parent: 34 + type: Transform + - uid: 6577 + components: + - pos: 12.5,-11.5 + parent: 34 + type: Transform + - uid: 6578 + components: + - pos: 13.5,-11.5 + parent: 34 + type: Transform + - uid: 6579 + components: + - pos: 13.5,-10.5 + parent: 34 + type: Transform + - uid: 6580 + components: + - pos: 13.5,-9.5 + parent: 34 + type: Transform + - uid: 6581 + components: + - pos: 13.5,-8.5 + parent: 34 + type: Transform + - uid: 6582 + components: + - pos: 13.5,-7.5 + parent: 34 + type: Transform + - uid: 6583 + components: + - pos: 13.5,-6.5 + parent: 34 + type: Transform + - uid: 6584 + components: + - pos: 13.5,-5.5 + parent: 34 + type: Transform + - uid: 6585 + components: + - pos: 13.5,-4.5 + parent: 34 + type: Transform + - uid: 6586 + components: + - pos: 13.5,-3.5 + parent: 34 + type: Transform + - uid: 6587 + components: + - pos: 13.5,-2.5 + parent: 34 + type: Transform + - uid: 6588 + components: + - pos: 13.5,-1.5 + parent: 34 + type: Transform + - uid: 6589 + components: + - pos: 13.5,-0.5 + parent: 34 + type: Transform + - uid: 6590 + components: + - pos: 13.5,0.5 + parent: 34 + type: Transform + - uid: 6591 + components: + - pos: 13.5,1.5 + parent: 34 + type: Transform + - uid: 6592 + components: + - pos: 13.5,2.5 + parent: 34 + type: Transform + - uid: 6593 + components: + - pos: 13.5,3.5 + parent: 34 + type: Transform + - uid: 6594 + components: + - pos: 13.5,4.5 + parent: 34 + type: Transform + - uid: 6595 + components: + - pos: 13.5,5.5 + parent: 34 + type: Transform + - uid: 6596 + components: + - pos: 13.5,6.5 + parent: 34 + type: Transform + - uid: 6597 + components: + - pos: 13.5,7.5 + parent: 34 + type: Transform + - uid: 6598 + components: + - pos: 13.5,8.5 + parent: 34 + type: Transform + - uid: 6599 + components: + - pos: -22.5,-11.5 + parent: 34 + type: Transform + - uid: 6600 + components: + - pos: -22.5,-10.5 + parent: 34 + type: Transform + - uid: 6601 + components: + - pos: -22.5,-9.5 + parent: 34 + type: Transform + - uid: 6602 + components: + - pos: -22.5,-8.5 + parent: 34 + type: Transform + - uid: 6603 + components: + - pos: -22.5,-7.5 + parent: 34 + type: Transform + - uid: 6604 + components: + - pos: -22.5,-6.5 + parent: 34 + type: Transform + - uid: 6605 + components: + - pos: -22.5,-5.5 + parent: 34 + type: Transform + - uid: 6606 + components: + - pos: -22.5,-4.5 + parent: 34 + type: Transform + - uid: 6607 + components: + - pos: -22.5,-3.5 + parent: 34 + type: Transform + - uid: 6608 + components: + - pos: -22.5,-2.5 + parent: 34 + type: Transform + - uid: 6609 + components: + - pos: -22.5,-1.5 + parent: 34 + type: Transform + - uid: 6610 + components: + - pos: -22.5,-0.5 + parent: 34 + type: Transform + - uid: 6611 + components: + - pos: -23.5,-0.5 + parent: 34 + type: Transform + - uid: 6612 + components: + - pos: -24.5,-0.5 + parent: 34 + type: Transform + - uid: 6613 + components: + - pos: -25.5,-0.5 + parent: 34 + type: Transform + - uid: 6614 + components: + - pos: -25.5,0.5 + parent: 34 + type: Transform + - uid: 6615 + components: + - pos: -25.5,1.5 + parent: 34 + type: Transform + - uid: 6616 + components: + - pos: -25.5,2.5 + parent: 34 + type: Transform + - uid: 6617 + components: + - pos: -46.5,-12.5 + parent: 34 + type: Transform + - uid: 6618 + components: + - pos: -47.5,-12.5 + parent: 34 + type: Transform + - uid: 6619 + components: + - pos: -48.5,-12.5 + parent: 34 + type: Transform + - uid: 6620 + components: + - pos: -49.5,-12.5 + parent: 34 + type: Transform + - uid: 6621 + components: + - pos: -50.5,-12.5 + parent: 34 + type: Transform + - uid: 6622 + components: + - pos: -51.5,-12.5 + parent: 34 + type: Transform + - uid: 6623 + components: + - pos: -52.5,-12.5 + parent: 34 + type: Transform + - uid: 6624 + components: + - pos: -53.5,-12.5 + parent: 34 + type: Transform + - uid: 6625 + components: + - pos: -53.5,-11.5 + parent: 34 + type: Transform + - uid: 6626 + components: + - pos: -53.5,-10.5 + parent: 34 + type: Transform + - uid: 6627 + components: + - pos: -53.5,-9.5 + parent: 34 + type: Transform + - uid: 6628 + components: + - pos: -53.5,-8.5 + parent: 34 + type: Transform + - uid: 6629 + components: + - pos: -53.5,-7.5 + parent: 34 + type: Transform + - uid: 6630 + components: + - pos: -53.5,-6.5 + parent: 34 + type: Transform + - uid: 6631 + components: + - pos: -53.5,-5.5 + parent: 34 + type: Transform + - uid: 6632 + components: + - pos: -53.5,-4.5 + parent: 34 + type: Transform + - uid: 6633 + components: + - pos: -54.5,-4.5 + parent: 34 + type: Transform + - uid: 6634 + components: + - pos: -55.5,-4.5 + parent: 34 + type: Transform + - uid: 6635 + components: + - pos: -56.5,-4.5 + parent: 34 + type: Transform + - uid: 6636 + components: + - pos: -56.5,-3.5 + parent: 34 + type: Transform + - uid: 6637 + components: + - pos: 14.5,8.5 + parent: 34 + type: Transform + - uid: 6638 + components: + - pos: 15.5,8.5 + parent: 34 + type: Transform + - uid: 6639 + components: + - pos: 16.5,8.5 + parent: 34 + type: Transform + - uid: 6640 + components: + - pos: 17.5,8.5 + parent: 34 + type: Transform + - uid: 6641 + components: + - pos: 18.5,8.5 + parent: 34 + type: Transform + - uid: 6642 + components: + - pos: 19.5,8.5 + parent: 34 + type: Transform + - uid: 6643 + components: + - pos: 20.5,8.5 + parent: 34 + type: Transform + - uid: 6644 + components: + - pos: 21.5,8.5 + parent: 34 + type: Transform + - uid: 6645 + components: + - pos: 29.5,-43.5 + parent: 34 + type: Transform + - uid: 6646 + components: + - pos: 29.5,-42.5 + parent: 34 + type: Transform + - uid: 6647 + components: + - pos: 29.5,-41.5 + parent: 34 + type: Transform + - uid: 6648 + components: + - pos: 29.5,-40.5 + parent: 34 + type: Transform + - uid: 6649 + components: + - pos: 30.5,-40.5 + parent: 34 + type: Transform + - uid: 6650 + components: + - pos: 31.5,-40.5 + parent: 34 + type: Transform + - uid: 6651 + components: + - pos: 31.5,-39.5 + parent: 34 + type: Transform + - uid: 6652 + components: + - pos: 31.5,-38.5 + parent: 34 + type: Transform + - uid: 6653 + components: + - pos: 31.5,-37.5 + parent: 34 + type: Transform + - uid: 6654 + components: + - pos: 31.5,-36.5 + parent: 34 + type: Transform + - uid: 6655 + components: + - pos: 31.5,-35.5 + parent: 34 + type: Transform + - uid: 6656 + components: + - pos: 31.5,-34.5 + parent: 34 + type: Transform + - uid: 6657 + components: + - pos: 31.5,-33.5 + parent: 34 + type: Transform + - uid: 6658 + components: + - pos: 31.5,-32.5 + parent: 34 + type: Transform + - uid: 6659 + components: + - pos: 31.5,-31.5 + parent: 34 + type: Transform + - uid: 6660 + components: + - pos: 31.5,-30.5 + parent: 34 + type: Transform + - uid: 6661 + components: + - pos: 31.5,-29.5 + parent: 34 + type: Transform + - uid: 6662 + components: + - pos: 31.5,-28.5 + parent: 34 + type: Transform + - uid: 6663 + components: + - pos: 32.5,-28.5 + parent: 34 + type: Transform + - uid: 6664 + components: + - pos: 33.5,-28.5 + parent: 34 + type: Transform + - uid: 6665 + components: + - pos: 34.5,-28.5 + parent: 34 + type: Transform + - uid: 6666 + components: + - pos: 35.5,-28.5 + parent: 34 + type: Transform + - uid: 6667 + components: + - pos: 36.5,-28.5 + parent: 34 + type: Transform + - uid: 6668 + components: + - pos: 36.5,-29.5 + parent: 34 + type: Transform + - uid: 6669 + components: + - pos: 32.5,-27.5 + parent: 34 + type: Transform + - uid: 6670 + components: + - pos: 32.5,-26.5 + parent: 34 + type: Transform + - uid: 6671 + components: + - pos: 32.5,-25.5 + parent: 34 + type: Transform + - uid: 6672 + components: + - pos: 32.5,-24.5 + parent: 34 + type: Transform + - uid: 6673 + components: + - pos: 32.5,-23.5 + parent: 34 + type: Transform + - uid: 6674 + components: + - pos: 33.5,-23.5 + parent: 34 + type: Transform + - uid: 6675 + components: + - pos: 33.5,-22.5 + parent: 34 + type: Transform + - uid: 6676 + components: + - pos: 33.5,-21.5 + parent: 34 + type: Transform + - uid: 6677 + components: + - pos: 33.5,-20.5 + parent: 34 + type: Transform + - uid: 6678 + components: + - pos: 33.5,-19.5 + parent: 34 + type: Transform + - uid: 6679 + components: + - pos: 33.5,-18.5 + parent: 34 + type: Transform + - uid: 6680 + components: + - pos: 33.5,-17.5 + parent: 34 + type: Transform + - uid: 6681 + components: + - pos: 33.5,-16.5 + parent: 34 + type: Transform + - uid: 6682 + components: + - pos: 34.5,-16.5 + parent: 34 + type: Transform + - uid: 6683 + components: + - pos: 35.5,-16.5 + parent: 34 + type: Transform + - uid: 6684 + components: + - pos: 36.5,-16.5 + parent: 34 + type: Transform + - uid: 6693 + components: + - pos: 32.5,-10.5 + parent: 34 + type: Transform + - uid: 6694 + components: + - pos: 32.5,-9.5 + parent: 34 + type: Transform + - uid: 6696 + components: + - pos: 52.5,-24.5 + parent: 34 + type: Transform + - uid: 6702 + components: + - pos: 33.5,-2.5 + parent: 34 + type: Transform + - uid: 6703 + components: + - pos: 33.5,-1.5 + parent: 34 + type: Transform + - uid: 6704 + components: + - pos: 33.5,-0.5 + parent: 34 + type: Transform + - uid: 6705 + components: + - pos: 33.5,0.5 + parent: 34 + type: Transform + - uid: 6706 + components: + - pos: 33.5,1.5 + parent: 34 + type: Transform + - uid: 6707 + components: + - pos: 33.5,2.5 + parent: 34 + type: Transform + - uid: 6708 + components: + - pos: 33.5,3.5 + parent: 34 + type: Transform + - uid: 6709 + components: + - pos: 33.5,4.5 + parent: 34 + type: Transform + - uid: 6710 + components: + - pos: 33.5,5.5 + parent: 34 + type: Transform + - uid: 6711 + components: + - pos: 33.5,6.5 + parent: 34 + type: Transform + - uid: 6712 + components: + - pos: 33.5,7.5 + parent: 34 + type: Transform + - uid: 6713 + components: + - pos: 32.5,7.5 + parent: 34 + type: Transform + - uid: 6714 + components: + - pos: 31.5,7.5 + parent: 34 + type: Transform + - uid: 6715 + components: + - pos: 30.5,7.5 + parent: 34 + type: Transform + - uid: 6716 + components: + - pos: 29.5,7.5 + parent: 34 + type: Transform + - uid: 6717 + components: + - pos: 28.5,7.5 + parent: 34 + type: Transform + - uid: 6718 + components: + - pos: 27.5,7.5 + parent: 34 + type: Transform + - uid: 6719 + components: + - pos: 26.5,7.5 + parent: 34 + type: Transform + - uid: 6720 + components: + - pos: 25.5,7.5 + parent: 34 + type: Transform + - uid: 6721 + components: + - pos: 24.5,7.5 + parent: 34 + type: Transform + - uid: 6722 + components: + - pos: 23.5,7.5 + parent: 34 + type: Transform + - uid: 6723 + components: + - pos: 22.5,7.5 + parent: 34 + type: Transform + - uid: 6724 + components: + - pos: 21.5,7.5 + parent: 34 + type: Transform + - uid: 6725 + components: + - pos: 22.5,6.5 + parent: 34 + type: Transform + - uid: 6726 + components: + - pos: 22.5,5.5 + parent: 34 + type: Transform + - uid: 6727 + components: + - pos: 22.5,4.5 + parent: 34 + type: Transform + - uid: 6728 + components: + - pos: 23.5,4.5 + parent: 34 + type: Transform + - uid: 6729 + components: + - pos: 24.5,4.5 + parent: 34 + type: Transform + - uid: 6731 + components: + - pos: 27.5,-40.5 + parent: 34 + type: Transform + - uid: 6732 + components: + - pos: 26.5,-40.5 + parent: 34 + type: Transform + - uid: 6733 + components: + - pos: 25.5,-40.5 + parent: 34 + type: Transform + - uid: 6734 + components: + - pos: 25.5,-41.5 + parent: 34 + type: Transform + - uid: 6735 + components: + - pos: 24.5,-41.5 + parent: 34 + type: Transform + - uid: 6736 + components: + - pos: 23.5,-41.5 + parent: 34 + type: Transform + - uid: 6737 + components: + - pos: 22.5,-41.5 + parent: 34 + type: Transform + - uid: 6738 + components: + - pos: 21.5,-41.5 + parent: 34 + type: Transform + - uid: 6739 + components: + - pos: 20.5,-41.5 + parent: 34 + type: Transform + - uid: 6740 + components: + - pos: 19.5,-41.5 + parent: 34 + type: Transform + - uid: 6741 + components: + - pos: 18.5,-41.5 + parent: 34 + type: Transform + - uid: 6742 + components: + - pos: 17.5,-41.5 + parent: 34 + type: Transform + - uid: 6743 + components: + - pos: 16.5,-41.5 + parent: 34 + type: Transform + - uid: 6744 + components: + - pos: 15.5,-41.5 + parent: 34 + type: Transform + - uid: 6745 + components: + - pos: 14.5,-41.5 + parent: 34 + type: Transform + - uid: 6746 + components: + - pos: 13.5,-41.5 + parent: 34 + type: Transform + - uid: 6750 + components: + - pos: 12.5,-44.5 + parent: 34 + type: Transform + - uid: 6751 + components: + - pos: 11.5,-44.5 + parent: 34 + type: Transform + - uid: 6752 + components: + - pos: 11.5,-45.5 + parent: 34 + type: Transform + - uid: 6753 + components: + - pos: 10.5,-45.5 + parent: 34 + type: Transform + - uid: 6754 + components: + - pos: 9.5,-45.5 + parent: 34 + type: Transform + - uid: 6755 + components: + - pos: 8.5,-45.5 + parent: 34 + type: Transform + - uid: 6756 + components: + - pos: 7.5,-45.5 + parent: 34 + type: Transform + - uid: 6757 + components: + - pos: 6.5,-45.5 + parent: 34 + type: Transform + - uid: 6758 + components: + - pos: 5.5,-45.5 + parent: 34 + type: Transform + - uid: 6759 + components: + - pos: 4.5,-45.5 + parent: 34 + type: Transform + - uid: 6760 + components: + - pos: 3.5,-45.5 + parent: 34 + type: Transform + - uid: 6761 + components: + - pos: 2.5,-45.5 + parent: 34 + type: Transform + - uid: 6762 + components: + - pos: 1.5,-45.5 + parent: 34 + type: Transform + - uid: 6763 + components: + - pos: 0.5,-45.5 + parent: 34 + type: Transform + - uid: 6764 + components: + - pos: -0.5,-45.5 + parent: 34 + type: Transform + - uid: 6765 + components: + - pos: -1.5,-45.5 + parent: 34 + type: Transform + - uid: 6766 + components: + - pos: -2.5,-45.5 + parent: 34 + type: Transform + - uid: 6767 + components: + - pos: -3.5,-45.5 + parent: 34 + type: Transform + - uid: 6768 + components: + - pos: -3.5,-44.5 + parent: 34 + type: Transform + - uid: 6769 + components: + - pos: -4.5,-44.5 + parent: 34 + type: Transform + - uid: 6770 + components: + - pos: -4.5,-43.5 + parent: 34 + type: Transform + - uid: 6771 + components: + - pos: -4.5,-42.5 + parent: 34 + type: Transform + - uid: 6772 + components: + - pos: -4.5,-41.5 + parent: 34 + type: Transform + - uid: 6773 + components: + - pos: -4.5,-40.5 + parent: 34 + type: Transform + - uid: 6774 + components: + - pos: -4.5,-39.5 + parent: 34 + type: Transform + - uid: 6775 + components: + - pos: -4.5,-38.5 + parent: 34 + type: Transform + - uid: 6776 + components: + - pos: -4.5,-37.5 + parent: 34 + type: Transform + - uid: 6777 + components: + - pos: -4.5,-36.5 + parent: 34 + type: Transform + - uid: 6778 + components: + - pos: -4.5,-35.5 + parent: 34 + type: Transform + - uid: 6779 + components: + - pos: -4.5,-34.5 + parent: 34 + type: Transform + - uid: 6780 + components: + - pos: -4.5,-33.5 + parent: 34 + type: Transform + - uid: 6781 + components: + - pos: -4.5,-32.5 + parent: 34 + type: Transform + - uid: 6782 + components: + - pos: -4.5,-31.5 + parent: 34 + type: Transform + - uid: 6783 + components: + - pos: -4.5,-30.5 + parent: 34 + type: Transform + - uid: 6784 + components: + - pos: -4.5,-29.5 + parent: 34 + type: Transform + - uid: 6785 + components: + - pos: -4.5,-28.5 + parent: 34 + type: Transform + - uid: 6786 + components: + - pos: -4.5,-27.5 + parent: 34 + type: Transform + - uid: 6787 + components: + - pos: -4.5,-26.5 + parent: 34 + type: Transform + - uid: 6788 + components: + - pos: -4.5,-25.5 + parent: 34 + type: Transform + - uid: 6789 + components: + - pos: -4.5,-24.5 + parent: 34 + type: Transform + - uid: 6790 + components: + - pos: -4.5,-23.5 + parent: 34 + type: Transform + - uid: 6791 + components: + - pos: -4.5,-22.5 + parent: 34 + type: Transform + - uid: 6799 + components: + - pos: -20.5,-22.5 + parent: 34 + type: Transform + - uid: 6800 + components: + - pos: -19.5,-22.5 + parent: 34 + type: Transform + - uid: 6801 + components: + - pos: -18.5,-22.5 + parent: 34 + type: Transform + - uid: 6802 + components: + - pos: -17.5,-22.5 + parent: 34 + type: Transform + - uid: 6803 + components: + - pos: -16.5,-22.5 + parent: 34 + type: Transform + - uid: 6804 + components: + - pos: -15.5,-22.5 + parent: 34 + type: Transform + - uid: 6805 + components: + - pos: -14.5,-22.5 + parent: 34 + type: Transform + - uid: 6806 + components: + - pos: -13.5,-22.5 + parent: 34 + type: Transform + - uid: 6807 + components: + - pos: -12.5,-22.5 + parent: 34 + type: Transform + - uid: 6808 + components: + - pos: -11.5,-22.5 + parent: 34 + type: Transform + - uid: 6809 + components: + - pos: -10.5,-22.5 + parent: 34 + type: Transform + - uid: 6810 + components: + - pos: -9.5,-22.5 + parent: 34 + type: Transform + - uid: 6811 + components: + - pos: -8.5,-22.5 + parent: 34 + type: Transform + - uid: 6812 + components: + - pos: -7.5,-22.5 + parent: 34 + type: Transform + - uid: 6813 + components: + - pos: -6.5,-22.5 + parent: 34 + type: Transform + - uid: 6814 + components: + - pos: -5.5,-22.5 + parent: 34 + type: Transform + - uid: 6815 + components: + - pos: -54.5,-3.5 + parent: 34 + type: Transform + - uid: 6816 + components: + - pos: -54.5,-2.5 + parent: 34 + type: Transform + - uid: 6817 + components: + - pos: -54.5,-1.5 + parent: 34 + type: Transform + - uid: 6818 + components: + - pos: -54.5,-0.5 + parent: 34 + type: Transform + - uid: 6819 + components: + - pos: -54.5,0.5 + parent: 34 + type: Transform + - uid: 6820 + components: + - pos: -54.5,1.5 + parent: 34 + type: Transform + - uid: 6821 + components: + - pos: -54.5,2.5 + parent: 34 + type: Transform + - uid: 6822 + components: + - pos: -54.5,3.5 + parent: 34 + type: Transform + - uid: 6823 + components: + - pos: -54.5,4.5 + parent: 34 + type: Transform + - uid: 6824 + components: + - pos: -53.5,4.5 + parent: 34 + type: Transform + - uid: 6825 + components: + - pos: -52.5,4.5 + parent: 34 + type: Transform + - uid: 6826 + components: + - pos: -51.5,4.5 + parent: 34 + type: Transform + - uid: 6827 + components: + - pos: -50.5,4.5 + parent: 34 + type: Transform + - uid: 6828 + components: + - pos: -49.5,4.5 + parent: 34 + type: Transform + - uid: 6829 + components: + - pos: -48.5,4.5 + parent: 34 + type: Transform + - uid: 6830 + components: + - pos: -47.5,4.5 + parent: 34 + type: Transform + - uid: 6831 + components: + - pos: -46.5,4.5 + parent: 34 + type: Transform + - uid: 6832 + components: + - pos: -45.5,4.5 + parent: 34 + type: Transform + - uid: 6833 + components: + - pos: -44.5,4.5 + parent: 34 + type: Transform + - uid: 6834 + components: + - pos: -43.5,4.5 + parent: 34 + type: Transform + - uid: 6835 + components: + - pos: -42.5,4.5 + parent: 34 + type: Transform + - uid: 6836 + components: + - pos: -41.5,4.5 + parent: 34 + type: Transform + - uid: 6837 + components: + - pos: -41.5,3.5 + parent: 34 + type: Transform + - uid: 6838 + components: + - pos: -41.5,2.5 + parent: 34 + type: Transform + - uid: 6839 + components: + - pos: -41.5,1.5 + parent: 34 + type: Transform + - uid: 6840 + components: + - pos: -41.5,0.5 + parent: 34 + type: Transform + - uid: 6841 + components: + - pos: -41.5,-0.5 + parent: 34 + type: Transform + - uid: 6842 + components: + - pos: -40.5,-0.5 + parent: 34 + type: Transform + - uid: 6843 + components: + - pos: -39.5,-0.5 + parent: 34 + type: Transform + - uid: 6844 + components: + - pos: -38.5,-0.5 + parent: 34 + type: Transform + - uid: 6845 + components: + - pos: -37.5,-0.5 + parent: 34 + type: Transform + - uid: 6846 + components: + - pos: -36.5,-0.5 + parent: 34 + type: Transform + - uid: 6847 + components: + - pos: -35.5,-0.5 + parent: 34 + type: Transform + - uid: 6848 + components: + - pos: -34.5,-0.5 + parent: 34 + type: Transform + - uid: 6849 + components: + - pos: -33.5,-0.5 + parent: 34 + type: Transform + - uid: 6850 + components: + - pos: -32.5,-0.5 + parent: 34 + type: Transform + - uid: 6851 + components: + - pos: -31.5,-0.5 + parent: 34 + type: Transform + - uid: 6852 + components: + - pos: -30.5,-0.5 + parent: 34 + type: Transform + - uid: 6853 + components: + - pos: -29.5,-0.5 + parent: 34 + type: Transform + - uid: 6854 + components: + - pos: -28.5,-0.5 + parent: 34 + type: Transform + - uid: 6855 + components: + - pos: -27.5,-0.5 + parent: 34 + type: Transform + - uid: 6856 + components: + - pos: -26.5,-0.5 + parent: 34 + type: Transform + - uid: 6857 + components: + - pos: -10.5,-0.5 + parent: 34 + type: Transform + - uid: 6858 + components: + - pos: -11.5,-0.5 + parent: 34 + type: Transform + - uid: 6859 + components: + - pos: -12.5,-0.5 + parent: 34 + type: Transform + - uid: 6860 + components: + - pos: -13.5,-0.5 + parent: 34 + type: Transform + - uid: 6861 + components: + - pos: -14.5,-0.5 + parent: 34 + type: Transform + - uid: 6862 + components: + - pos: -15.5,-0.5 + parent: 34 + type: Transform + - uid: 6863 + components: + - pos: -16.5,-0.5 + parent: 34 + type: Transform + - uid: 6864 + components: + - pos: -17.5,-0.5 + parent: 34 + type: Transform + - uid: 6865 + components: + - pos: -18.5,-0.5 + parent: 34 + type: Transform + - uid: 6866 + components: + - pos: -19.5,-0.5 + parent: 34 + type: Transform + - uid: 6867 + components: + - pos: -20.5,-0.5 + parent: 34 + type: Transform + - uid: 6868 + components: + - pos: -21.5,-0.5 + parent: 34 + type: Transform + - uid: 6953 + components: + - pos: 34.5,-3.5 + parent: 34 + type: Transform + - uid: 7023 + components: + - pos: 36.5,-13.5 + parent: 34 + type: Transform + - uid: 7704 + components: + - pos: 17.5,-44.5 + parent: 34 + type: Transform + - uid: 7721 + components: + - pos: 18.5,-44.5 + parent: 34 + type: Transform + - uid: 7870 + components: + - pos: 16.5,-44.5 + parent: 34 + type: Transform + - uid: 8361 + components: + - pos: -28.5,-31.5 + parent: 34 + type: Transform + - uid: 8906 + components: + - pos: 36.5,-18.5 + parent: 34 + type: Transform + - uid: 9109 + components: + - pos: 36.5,-3.5 + parent: 34 + type: Transform + - uid: 9110 + components: + - pos: 36.5,-15.5 + parent: 34 + type: Transform + - uid: 10022 + components: + - pos: 36.5,-10.5 + parent: 34 + type: Transform + - uid: 10361 + components: + - pos: -27.5,8.5 + parent: 34 + type: Transform + - uid: 10439 + components: + - pos: -37.5,-20.5 + parent: 34 + type: Transform + - uid: 10787 + components: + - pos: -30.5,10.5 + parent: 34 + type: Transform + - uid: 10823 + components: + - pos: -29.5,8.5 + parent: 34 + type: Transform + - uid: 10833 + components: + - pos: -30.5,8.5 + parent: 34 + type: Transform + - uid: 10864 + components: + - pos: -28.5,8.5 + parent: 34 + type: Transform + - uid: 10896 + components: + - pos: -30.5,9.5 + parent: 34 + type: Transform + - uid: 11025 + components: + - pos: -29.5,-30.5 + parent: 34 + type: Transform + - uid: 11026 + components: + - pos: -29.5,-31.5 + parent: 34 + type: Transform + - uid: 11029 + components: + - pos: -50.5,-30.5 + parent: 34 + type: Transform + - uid: 11030 + components: + - pos: -50.5,-31.5 + parent: 34 + type: Transform + - uid: 11058 + components: + - pos: 36.5,-3.5 + parent: 34 + type: Transform + - uid: 11059 + components: + - pos: 36.5,-12.5 + parent: 34 + type: Transform + - uid: 11226 + components: + - pos: 13.5,-44.5 + parent: 34 + type: Transform + - uid: 11227 + components: + - pos: 13.5,-43.5 + parent: 34 + type: Transform + - uid: 11228 + components: + - pos: 13.5,-42.5 + parent: 34 + type: Transform + - uid: 11515 + components: + - pos: -50.5,-32.5 + parent: 34 + type: Transform + - uid: 11516 + components: + - pos: -50.5,-33.5 + parent: 34 + type: Transform + - uid: 11614 + components: + - pos: 52.5,-22.5 + parent: 34 + type: Transform + - uid: 11685 + components: + - pos: -49.5,-33.5 + parent: 34 + type: Transform + - uid: 11846 + components: + - pos: -28.5,-32.5 + parent: 34 + type: Transform + - uid: 11850 + components: + - pos: -37.5,-12.5 + parent: 34 + type: Transform + - uid: 12456 + components: + - pos: 36.5,-9.5 + parent: 34 + type: Transform + - uid: 12457 + components: + - pos: 36.5,-11.5 + parent: 34 + type: Transform + - uid: 12710 + components: + - pos: -55.5,-28.5 + parent: 34 + type: Transform + - uid: 12711 + components: + - pos: -55.5,-29.5 + parent: 34 + type: Transform + - uid: 12712 + components: + - pos: -55.5,-30.5 + parent: 34 + type: Transform + - uid: 12713 + components: + - pos: -54.5,-29.5 + parent: 34 + type: Transform + - uid: 12714 + components: + - pos: -53.5,-29.5 + parent: 34 + type: Transform + - uid: 12715 + components: + - pos: -52.5,-29.5 + parent: 34 + type: Transform + - uid: 12722 + components: + - pos: -48.5,-33.5 + parent: 34 + type: Transform + - uid: 12723 + components: + - pos: -47.5,-33.5 + parent: 34 + type: Transform + - uid: 12724 + components: + - pos: -46.5,-33.5 + parent: 34 + type: Transform + - uid: 12725 + components: + - pos: -45.5,-33.5 + parent: 34 + type: Transform + - uid: 12726 + components: + - pos: -44.5,-33.5 + parent: 34 + type: Transform + - uid: 12727 + components: + - pos: -43.5,-33.5 + parent: 34 + type: Transform + - uid: 12728 + components: + - pos: -42.5,-33.5 + parent: 34 + type: Transform + - uid: 12729 + components: + - pos: -41.5,-33.5 + parent: 34 + type: Transform + - uid: 12730 + components: + - pos: -40.5,-33.5 + parent: 34 + type: Transform + - uid: 12731 + components: + - pos: -39.5,-33.5 + parent: 34 + type: Transform + - uid: 12732 + components: + - pos: -38.5,-33.5 + parent: 34 + type: Transform + - uid: 12733 + components: + - pos: -36.5,-33.5 + parent: 34 + type: Transform + - uid: 12734 + components: + - pos: -37.5,-33.5 + parent: 34 + type: Transform + - uid: 12735 + components: + - pos: -35.5,-33.5 + parent: 34 + type: Transform + - uid: 12736 + components: + - pos: -35.5,-32.5 + parent: 34 + type: Transform + - uid: 12737 + components: + - pos: -35.5,-30.5 + parent: 34 + type: Transform +- proto: CableHVStack + entities: + - uid: 5064 + components: + - pos: -22.20807,5.741437 + parent: 34 + type: Transform + - uid: 5425 + components: + - pos: 28.408974,-43.600185 + parent: 34 + type: Transform +- proto: CableMV + entities: + - uid: 432 + components: + - pos: 5.5,-17.5 + parent: 34 + type: Transform + - uid: 433 + components: + - pos: 9.5,-19.5 + parent: 34 + type: Transform + - uid: 616 + components: + - pos: -6.5,-31.5 + parent: 34 + type: Transform + - uid: 709 + components: + - pos: -9.5,-31.5 + parent: 34 + type: Transform + - uid: 893 + components: + - pos: 6.5,-13.5 + parent: 34 + type: Transform + - uid: 900 + components: + - pos: -14.5,-31.5 + parent: 34 + type: Transform + - uid: 903 + components: + - pos: -5.5,-44.5 + parent: 34 + type: Transform + - uid: 917 + components: + - pos: -42.5,-20.5 + parent: 34 + type: Transform + - uid: 1007 + components: + - pos: 9.5,-17.5 + parent: 34 + type: Transform + - uid: 1008 + components: + - pos: 9.5,-16.5 + parent: 34 + type: Transform + - uid: 1009 + components: + - pos: 9.5,-15.5 + parent: 34 + type: Transform + - uid: 1019 + components: + - pos: -8.5,-31.5 + parent: 34 + type: Transform + - uid: 1024 + components: + - pos: -7.5,-31.5 + parent: 34 + type: Transform + - uid: 1149 + components: + - pos: 41.5,-3.5 + parent: 34 + type: Transform + - uid: 1152 + components: + - pos: 41.5,-2.5 + parent: 34 + type: Transform + - uid: 1286 + components: + - pos: -20.5,-29.5 + parent: 34 + type: Transform + - uid: 1289 + components: + - pos: 6.5,-36.5 + parent: 34 + type: Transform + - uid: 1332 + components: + - pos: -10.5,-30.5 + parent: 34 + type: Transform + - uid: 1391 + components: + - pos: -20.5,-31.5 + parent: 34 + type: Transform + - uid: 1604 + components: + - pos: -21.5,-32.5 + parent: 34 + type: Transform + - uid: 1848 + components: + - pos: -35.5,-33.5 + parent: 34 + type: Transform + - uid: 1849 + components: + - pos: -36.5,-33.5 + parent: 34 + type: Transform + - uid: 1850 + components: + - pos: -37.5,-33.5 + parent: 34 + type: Transform + - uid: 1851 + components: + - pos: -38.5,-33.5 + parent: 34 + type: Transform + - uid: 1852 + components: + - pos: -39.5,-33.5 + parent: 34 + type: Transform + - uid: 1853 + components: + - pos: -39.5,-32.5 + parent: 34 + type: Transform + - uid: 1854 + components: + - pos: -40.5,-32.5 + parent: 34 + type: Transform + - uid: 1855 + components: + - pos: -41.5,-32.5 + parent: 34 + type: Transform + - uid: 2081 + components: + - pos: -43.5,-15.5 + parent: 34 + type: Transform + - uid: 2292 + components: + - pos: -43.5,-17.5 + parent: 34 + type: Transform + - uid: 2327 + components: + - pos: -43.5,-18.5 + parent: 34 + type: Transform + - uid: 2361 + components: + - pos: -43.5,-19.5 + parent: 34 + type: Transform + - uid: 2362 + components: + - pos: -35.5,-32.5 + parent: 34 + type: Transform + - uid: 2363 + components: + - pos: -35.5,-31.5 + parent: 34 + type: Transform + - uid: 2364 + components: + - pos: -35.5,-30.5 + parent: 34 + type: Transform + - uid: 2365 + components: + - pos: -35.5,-29.5 + parent: 34 + type: Transform + - uid: 2366 + components: + - pos: -35.5,-28.5 + parent: 34 + type: Transform + - uid: 2367 + components: + - pos: -35.5,-27.5 + parent: 34 + type: Transform + - uid: 2368 + components: + - pos: -35.5,-26.5 + parent: 34 + type: Transform + - uid: 2369 + components: + - pos: -36.5,-26.5 + parent: 34 + type: Transform + - uid: 2383 + components: + - pos: -43.5,-20.5 + parent: 34 + type: Transform + - uid: 2384 + components: + - pos: -41.5,-20.5 + parent: 34 + type: Transform + - uid: 2571 + components: + - pos: -17.5,-27.5 + parent: 34 + type: Transform + - uid: 2618 + components: + - pos: -17.5,-26.5 + parent: 34 + type: Transform + - uid: 2621 + components: + - pos: -49.5,-26.5 + parent: 34 + type: Transform + - uid: 2622 + components: + - pos: -48.5,-25.5 + parent: 34 + type: Transform + - uid: 2812 + components: + - pos: -16.5,-14.5 + parent: 34 + type: Transform + - uid: 2813 + components: + - pos: -17.5,-14.5 + parent: 34 + type: Transform + - uid: 2820 + components: + - pos: -17.5,-13.5 + parent: 34 + type: Transform + - uid: 2821 + components: + - pos: -18.5,-13.5 + parent: 34 + type: Transform + - uid: 2822 + components: + - pos: -19.5,-13.5 + parent: 34 + type: Transform + - uid: 2823 + components: + - pos: -20.5,-13.5 + parent: 34 + type: Transform + - uid: 2824 + components: + - pos: -21.5,-13.5 + parent: 34 + type: Transform + - uid: 2825 + components: + - pos: -21.5,-12.5 + parent: 34 + type: Transform + - uid: 2826 + components: + - pos: -21.5,-11.5 + parent: 34 + type: Transform + - uid: 2827 + components: + - pos: -22.5,-11.5 + parent: 34 + type: Transform + - uid: 2828 + components: + - pos: -22.5,-10.5 + parent: 34 + type: Transform + - uid: 2829 + components: + - pos: -23.5,-10.5 + parent: 34 + type: Transform + - uid: 2830 + components: + - pos: -24.5,-10.5 + parent: 34 + type: Transform + - uid: 2831 + components: + - pos: -25.5,-10.5 + parent: 34 + type: Transform + - uid: 2832 + components: + - pos: -26.5,-10.5 + parent: 34 + type: Transform + - uid: 2833 + components: + - pos: -27.5,-10.5 + parent: 34 + type: Transform + - uid: 2834 + components: + - pos: -28.5,-10.5 + parent: 34 + type: Transform + - uid: 2835 + components: + - pos: -28.5,-11.5 + parent: 34 + type: Transform + - uid: 2836 + components: + - pos: -28.5,-12.5 + parent: 34 + type: Transform + - uid: 2837 + components: + - pos: -28.5,-13.5 + parent: 34 + type: Transform + - uid: 2838 + components: + - pos: -28.5,-14.5 + parent: 34 + type: Transform + - uid: 2839 + components: + - pos: -28.5,-15.5 + parent: 34 + type: Transform + - uid: 2840 + components: + - pos: -28.5,-16.5 + parent: 34 + type: Transform + - uid: 2841 + components: + - pos: -29.5,-16.5 + parent: 34 + type: Transform + - uid: 2842 + components: + - pos: -30.5,-16.5 + parent: 34 + type: Transform + - uid: 2843 + components: + - pos: -28.5,-9.5 + parent: 34 + type: Transform + - uid: 2844 + components: + - pos: -28.5,-8.5 + parent: 34 + type: Transform + - uid: 2845 + components: + - pos: -28.5,-7.5 + parent: 34 + type: Transform + - uid: 2846 + components: + - pos: -29.5,-7.5 + parent: 34 + type: Transform + - uid: 2847 + components: + - pos: -30.5,-7.5 + parent: 34 + type: Transform + - uid: 2848 + components: + - pos: -31.5,-7.5 + parent: 34 + type: Transform + - uid: 2849 + components: + - pos: -32.5,-7.5 + parent: 34 + type: Transform + - uid: 2851 + components: + - pos: -20.5,-11.5 + parent: 34 + type: Transform + - uid: 2852 + components: + - pos: -19.5,-11.5 + parent: 34 + type: Transform + - uid: 2853 + components: + - pos: -18.5,-11.5 + parent: 34 + type: Transform + - uid: 2854 + components: + - pos: -17.5,-11.5 + parent: 34 + type: Transform + - uid: 2855 + components: + - pos: -16.5,-11.5 + parent: 34 + type: Transform + - uid: 2856 + components: + - pos: -15.5,-11.5 + parent: 34 + type: Transform + - uid: 2857 + components: + - pos: -15.5,-10.5 + parent: 34 + type: Transform + - uid: 2858 + components: + - pos: -15.5,-9.5 + parent: 34 + type: Transform + - uid: 2859 + components: + - pos: -15.5,-8.5 + parent: 34 + type: Transform + - uid: 2860 + components: + - pos: -15.5,-7.5 + parent: 34 + type: Transform + - uid: 2861 + components: + - pos: -15.5,-6.5 + parent: 34 + type: Transform + - uid: 2897 + components: + - pos: 8.5,-14.5 + parent: 34 + type: Transform + - uid: 2898 + components: + - pos: 7.5,-14.5 + parent: 34 + type: Transform + - uid: 2899 + components: + - pos: 6.5,-14.5 + parent: 34 + type: Transform + - uid: 2900 + components: + - pos: 5.5,-14.5 + parent: 34 + type: Transform + - uid: 2901 + components: + - pos: 4.5,-14.5 + parent: 34 + type: Transform + - uid: 2902 + components: + - pos: 4.5,-13.5 + parent: 34 + type: Transform + - uid: 2903 + components: + - pos: 4.5,-12.5 + parent: 34 + type: Transform + - uid: 2904 + components: + - pos: 4.5,-11.5 + parent: 34 + type: Transform + - uid: 2905 + components: + - pos: 4.5,-10.5 + parent: 34 + type: Transform + - uid: 2906 + components: + - pos: 4.5,-9.5 + parent: 34 + type: Transform + - uid: 2907 + components: + - pos: 4.5,-8.5 + parent: 34 + type: Transform + - uid: 2908 + components: + - pos: 4.5,-7.5 + parent: 34 + type: Transform + - uid: 2909 + components: + - pos: 5.5,-7.5 + parent: 34 + type: Transform + - uid: 2910 + components: + - pos: 6.5,-7.5 + parent: 34 + type: Transform + - uid: 2911 + components: + - pos: 5.5,-16.5 + parent: 34 + type: Transform + - uid: 2912 + components: + - pos: 5.5,-15.5 + parent: 34 + type: Transform + - uid: 2989 + components: + - pos: -15.5,-12.5 + parent: 34 + type: Transform + - uid: 2990 + components: + - pos: -15.5,-13.5 + parent: 34 + type: Transform + - uid: 3057 + components: + - pos: 5.5,-18.5 + parent: 34 + type: Transform + - uid: 3058 + components: + - pos: 4.5,-18.5 + parent: 34 + type: Transform + - uid: 3059 + components: + - pos: 4.5,-19.5 + parent: 34 + type: Transform + - uid: 3060 + components: + - pos: 4.5,-20.5 + parent: 34 + type: Transform + - uid: 3061 + components: + - pos: 4.5,-21.5 + parent: 34 + type: Transform + - uid: 3062 + components: + - pos: 9.5,-18.5 + parent: 34 + type: Transform + - uid: 3230 + components: + - pos: -30.5,-31.5 + parent: 34 + type: Transform + - uid: 3231 + components: + - pos: -30.5,-32.5 + parent: 34 + type: Transform + - uid: 3232 + components: + - pos: -30.5,-34.5 + parent: 34 + type: Transform + - uid: 3233 + components: + - pos: -30.5,-33.5 + parent: 34 + type: Transform + - uid: 3234 + components: + - pos: -30.5,-35.5 + parent: 34 + type: Transform + - uid: 3235 + components: + - pos: -30.5,-36.5 + parent: 34 + type: Transform + - uid: 3236 + components: + - pos: -30.5,-37.5 + parent: 34 + type: Transform + - uid: 3237 + components: + - pos: -30.5,-38.5 + parent: 34 + type: Transform + - uid: 3238 + components: + - pos: -30.5,-39.5 + parent: 34 + type: Transform + - uid: 3239 + components: + - pos: -30.5,-40.5 + parent: 34 + type: Transform + - uid: 3246 + components: + - pos: 37.5,-4.5 + parent: 34 + type: Transform + - uid: 3380 + components: + - pos: 33.5,-14.5 + parent: 34 + type: Transform + - uid: 3418 + components: + - pos: -3.5,-33.5 + parent: 34 + type: Transform + - uid: 3419 + components: + - pos: -2.5,-33.5 + parent: 34 + type: Transform + - uid: 3420 + components: + - pos: -1.5,-33.5 + parent: 34 + type: Transform + - uid: 3421 + components: + - pos: -0.5,-33.5 + parent: 34 + type: Transform + - uid: 3422 + components: + - pos: 0.5,-33.5 + parent: 34 + type: Transform + - uid: 3423 + components: + - pos: 1.5,-33.5 + parent: 34 + type: Transform + - uid: 3424 + components: + - pos: 2.5,-33.5 + parent: 34 + type: Transform + - uid: 3425 + components: + - pos: 3.5,-33.5 + parent: 34 + type: Transform + - uid: 3426 + components: + - pos: 4.5,-33.5 + parent: 34 + type: Transform + - uid: 3427 + components: + - pos: 4.5,-32.5 + parent: 34 + type: Transform + - uid: 3428 + components: + - pos: 4.5,-31.5 + parent: 34 + type: Transform + - uid: 3429 + components: + - pos: 4.5,-30.5 + parent: 34 + type: Transform + - uid: 3430 + components: + - pos: 4.5,-29.5 + parent: 34 + type: Transform + - uid: 3431 + components: + - pos: 3.5,-29.5 + parent: 34 + type: Transform + - uid: 3444 + components: + - pos: 10.5,-19.5 + parent: 34 + type: Transform + - uid: 3448 + components: + - pos: 2.5,-29.5 + parent: 34 + type: Transform + - uid: 3674 + components: + - pos: -31.5,-30.5 + parent: 34 + type: Transform + - uid: 3680 + components: + - pos: -34.5,-30.5 + parent: 34 + type: Transform + - uid: 3681 + components: + - pos: -32.5,-30.5 + parent: 34 + type: Transform + - uid: 3685 + components: + - pos: -33.5,-30.5 + parent: 34 + type: Transform + - uid: 3687 + components: + - pos: -30.5,-30.5 + parent: 34 + type: Transform + - uid: 3761 + components: + - pos: -29.5,-40.5 + parent: 34 + type: Transform + - uid: 3799 + components: + - pos: 9.5,-14.5 + parent: 34 + type: Transform + - uid: 3980 + components: + - pos: -20.5,-39.5 + parent: 34 + type: Transform + - uid: 3995 + components: + - pos: 3.5,-34.5 + parent: 34 + type: Transform + - uid: 4125 + components: + - pos: -6.5,-44.5 + parent: 34 + type: Transform + - uid: 4166 + components: + - pos: 52.5,-23.5 + parent: 34 + type: Transform + - uid: 4355 + components: + - pos: 3.5,-35.5 + parent: 34 + type: Transform + - uid: 4356 + components: + - pos: 3.5,-36.5 + parent: 34 + type: Transform + - uid: 4357 + components: + - pos: 4.5,-36.5 + parent: 34 + type: Transform + - uid: 4358 + components: + - pos: 5.5,-36.5 + parent: 34 + type: Transform + - uid: 4363 + components: + - pos: 6.5,-37.5 + parent: 34 + type: Transform + - uid: 4407 + components: + - pos: 6.5,-38.5 + parent: 34 + type: Transform + - uid: 4413 + components: + - pos: -17.5,-24.5 + parent: 34 + type: Transform + - uid: 4447 + components: + - pos: -10.5,-31.5 + parent: 34 + type: Transform + - uid: 4532 + components: + - pos: 36.5,-18.5 + parent: 34 + type: Transform + - uid: 4551 + components: + - pos: 41.5,-4.5 + parent: 34 + type: Transform + - uid: 4554 + components: + - pos: 41.5,-5.5 + parent: 34 + type: Transform + - uid: 4572 + components: + - pos: -14.5,-30.5 + parent: 34 + type: Transform + - uid: 4576 + components: + - pos: 36.5,-17.5 + parent: 34 + type: Transform + - uid: 4605 + components: + - pos: -21.5,-30.5 + parent: 34 + type: Transform + - uid: 4606 + components: + - pos: -22.5,-29.5 + parent: 34 + type: Transform + - uid: 4607 + components: + - pos: -21.5,-29.5 + parent: 34 + type: Transform + - uid: 4669 + components: + - pos: -21.5,-34.5 + parent: 34 + type: Transform + - uid: 4683 + components: + - pos: -21.5,-36.5 + parent: 34 + type: Transform + - uid: 4694 + components: + - pos: -19.5,-39.5 + parent: 34 + type: Transform + - uid: 4702 + components: + - pos: -21.5,-33.5 + parent: 34 + type: Transform + - uid: 4768 + components: + - pos: -21.5,-37.5 + parent: 34 + type: Transform + - uid: 4866 + components: + - pos: 37.5,-19.5 + parent: 34 + type: Transform + - uid: 4873 + components: + - pos: 33.5,-15.5 + parent: 34 + type: Transform + - uid: 4892 + components: + - pos: -21.5,-39.5 + parent: 34 + type: Transform + - uid: 5135 + components: + - pos: 13.5,-41.5 + parent: 34 + type: Transform + - uid: 5146 + components: + - pos: 36.5,-28.5 + parent: 34 + type: Transform + - uid: 5147 + components: + - pos: 36.5,-29.5 + parent: 34 + type: Transform + - uid: 5192 + components: + - pos: 35.5,-28.5 + parent: 34 + type: Transform + - uid: 5193 + components: + - pos: 34.5,-28.5 + parent: 34 + type: Transform + - uid: 5194 + components: + - pos: 32.5,-28.5 + parent: 34 + type: Transform + - uid: 5195 + components: + - pos: 33.5,-28.5 + parent: 34 + type: Transform + - uid: 5196 + components: + - pos: 32.5,-32.5 + parent: 34 + type: Transform + - uid: 5197 + components: + - pos: 32.5,-29.5 + parent: 34 + type: Transform + - uid: 5198 + components: + - pos: 32.5,-30.5 + parent: 34 + type: Transform + - uid: 5199 + components: + - pos: 32.5,-31.5 + parent: 34 + type: Transform + - uid: 5200 + components: + - pos: 31.5,-30.5 + parent: 34 + type: Transform + - uid: 5201 + components: + - pos: 30.5,-30.5 + parent: 34 + type: Transform + - uid: 5202 + components: + - pos: 32.5,-33.5 + parent: 34 + type: Transform + - uid: 5203 + components: + - pos: 31.5,-33.5 + parent: 34 + type: Transform + - uid: 5204 + components: + - pos: 30.5,-33.5 + parent: 34 + type: Transform + - uid: 5205 + components: + - pos: 29.5,-33.5 + parent: 34 + type: Transform + - uid: 5207 + components: + - pos: 29.5,-34.5 + parent: 34 + type: Transform + - uid: 5208 + components: + - pos: 29.5,-35.5 + parent: 34 + type: Transform + - uid: 5209 + components: + - pos: 28.5,-33.5 + parent: 34 + type: Transform + - uid: 5210 + components: + - pos: 27.5,-33.5 + parent: 34 + type: Transform + - uid: 5211 + components: + - pos: 32.5,-34.5 + parent: 34 + type: Transform + - uid: 5212 + components: + - pos: 32.5,-35.5 + parent: 34 + type: Transform + - uid: 5213 + components: + - pos: 32.5,-36.5 + parent: 34 + type: Transform + - uid: 5214 + components: + - pos: 33.5,-36.5 + parent: 34 + type: Transform + - uid: 5215 + components: + - pos: 34.5,-36.5 + parent: 34 + type: Transform + - uid: 5216 + components: + - pos: 35.5,-36.5 + parent: 34 + type: Transform + - uid: 5217 + components: + - pos: 35.5,-35.5 + parent: 34 + type: Transform + - uid: 5218 + components: + - pos: 35.5,-34.5 + parent: 34 + type: Transform + - uid: 5219 + components: + - pos: 35.5,-33.5 + parent: 34 + type: Transform + - uid: 5220 + components: + - pos: 31.5,-28.5 + parent: 34 + type: Transform + - uid: 5221 + components: + - pos: 30.5,-28.5 + parent: 34 + type: Transform + - uid: 5222 + components: + - pos: 29.5,-28.5 + parent: 34 + type: Transform + - uid: 5223 + components: + - pos: 28.5,-28.5 + parent: 34 + type: Transform + - uid: 5224 + components: + - pos: 27.5,-28.5 + parent: 34 + type: Transform + - uid: 5225 + components: + - pos: 26.5,-28.5 + parent: 34 + type: Transform + - uid: 5226 + components: + - pos: 26.5,-29.5 + parent: 34 + type: Transform + - uid: 5227 + components: + - pos: 26.5,-30.5 + parent: 34 + type: Transform + - uid: 5228 + components: + - pos: 25.5,-30.5 + parent: 34 + type: Transform + - uid: 5229 + components: + - pos: 36.5,-36.5 + parent: 34 + type: Transform + - uid: 5230 + components: + - pos: 37.5,-36.5 + parent: 34 + type: Transform + - uid: 5231 + components: + - pos: 38.5,-36.5 + parent: 34 + type: Transform + - uid: 5232 + components: + - pos: 39.5,-36.5 + parent: 34 + type: Transform + - uid: 5233 + components: + - pos: 40.5,-36.5 + parent: 34 + type: Transform + - uid: 5234 + components: + - pos: 41.5,-36.5 + parent: 34 + type: Transform + - uid: 5235 + components: + - pos: 41.5,-35.5 + parent: 34 + type: Transform + - uid: 5236 + components: + - pos: 42.5,-35.5 + parent: 34 + type: Transform + - uid: 5237 + components: + - pos: 42.5,-34.5 + parent: 34 + type: Transform + - uid: 5238 + components: + - pos: 42.5,-33.5 + parent: 34 + type: Transform + - uid: 5239 + components: + - pos: 42.5,-32.5 + parent: 34 + type: Transform + - uid: 5269 + components: + - pos: 25.5,-32.5 + parent: 34 + type: Transform + - uid: 5270 + components: + - pos: 26.5,-33.5 + parent: 34 + type: Transform + - uid: 5271 + components: + - pos: 25.5,-33.5 + parent: 34 + type: Transform + - uid: 5272 + components: + - pos: 27.5,-34.5 + parent: 34 + type: Transform + - uid: 5273 + components: + - pos: 25.5,-34.5 + parent: 34 + type: Transform + - uid: 5274 + components: + - pos: 25.5,-35.5 + parent: 34 + type: Transform + - uid: 5275 + components: + - pos: 25.5,-36.5 + parent: 34 + type: Transform + - uid: 5666 + components: + - pos: -35.5,-2.5 + parent: 34 + type: Transform + - uid: 5676 + components: + - pos: -35.5,-1.5 + parent: 34 + type: Transform + - uid: 5747 + components: + - pos: -23.5,3.5 + parent: 34 + type: Transform + - uid: 5748 + components: + - pos: -22.5,3.5 + parent: 34 + type: Transform + - uid: 5749 + components: + - pos: -21.5,3.5 + parent: 34 + type: Transform + - uid: 5750 + components: + - pos: -20.5,3.5 + parent: 34 + type: Transform + - uid: 5751 + components: + - pos: -19.5,3.5 + parent: 34 + type: Transform + - uid: 5992 + components: + - pos: -49.5,-28.5 + parent: 34 + type: Transform + - uid: 6027 + components: + - pos: 51.5,-23.5 + parent: 34 + type: Transform + - uid: 6028 + components: + - pos: 50.5,-23.5 + parent: 34 + type: Transform + - uid: 6029 + components: + - pos: 49.5,-23.5 + parent: 34 + type: Transform + - uid: 6030 + components: + - pos: 48.5,-23.5 + parent: 34 + type: Transform + - uid: 6031 + components: + - pos: 47.5,-23.5 + parent: 34 + type: Transform + - uid: 6032 + components: + - pos: 47.5,-24.5 + parent: 34 + type: Transform + - uid: 6033 + components: + - pos: 46.5,-24.5 + parent: 34 + type: Transform + - uid: 6104 + components: + - pos: -16.5,-22.5 + parent: 34 + type: Transform + - uid: 6112 + components: + - pos: -15.5,-22.5 + parent: 34 + type: Transform + - uid: 6148 + components: + - pos: -13.5,-22.5 + parent: 34 + type: Transform + - uid: 6158 + components: + - pos: -14.5,-22.5 + parent: 34 + type: Transform + - uid: 6335 + components: + - pos: -14.5,-31.5 + parent: 34 + type: Transform + - uid: 6534 + components: + - pos: -17.5,-23.5 + parent: 34 + type: Transform + - uid: 6747 + components: + - pos: -17.5,-22.5 + parent: 34 + type: Transform + - uid: 6748 + components: + - pos: -17.5,-25.5 + parent: 34 + type: Transform + - uid: 6947 + components: + - pos: 37.5,-2.5 + parent: 34 + type: Transform + - uid: 6982 + components: + - pos: 8.5,-13.5 + parent: 34 + type: Transform + - uid: 6983 + components: + - pos: 8.5,-12.5 + parent: 34 + type: Transform + - uid: 6984 + components: + - pos: 8.5,-11.5 + parent: 34 + type: Transform + - uid: 6985 + components: + - pos: 9.5,-11.5 + parent: 34 + type: Transform + - uid: 6986 + components: + - pos: 10.5,-11.5 + parent: 34 + type: Transform + - uid: 6987 + components: + - pos: 11.5,-11.5 + parent: 34 + type: Transform + - uid: 6988 + components: + - pos: 12.5,-11.5 + parent: 34 + type: Transform + - uid: 6989 + components: + - pos: 12.5,-12.5 + parent: 34 + type: Transform + - uid: 6990 + components: + - pos: 13.5,-12.5 + parent: 34 + type: Transform + - uid: 6991 + components: + - pos: 14.5,-12.5 + parent: 34 + type: Transform + - uid: 6992 + components: + - pos: 15.5,-12.5 + parent: 34 + type: Transform + - uid: 6993 + components: + - pos: 16.5,-12.5 + parent: 34 + type: Transform + - uid: 6994 + components: + - pos: 17.5,-12.5 + parent: 34 + type: Transform + - uid: 6995 + components: + - pos: 18.5,-12.5 + parent: 34 + type: Transform + - uid: 6996 + components: + - pos: 18.5,-11.5 + parent: 34 + type: Transform + - uid: 6997 + components: + - pos: 12.5,-13.5 + parent: 34 + type: Transform + - uid: 6998 + components: + - pos: 12.5,-14.5 + parent: 34 + type: Transform + - uid: 6999 + components: + - pos: 12.5,-15.5 + parent: 34 + type: Transform + - uid: 7000 + components: + - pos: 12.5,-16.5 + parent: 34 + type: Transform + - uid: 7001 + components: + - pos: 12.5,-17.5 + parent: 34 + type: Transform + - uid: 7002 + components: + - pos: 11.5,-17.5 + parent: 34 + type: Transform + - uid: 7025 + components: + - pos: 36.5,-16.5 + parent: 34 + type: Transform + - uid: 7026 + components: + - pos: 35.5,-16.5 + parent: 34 + type: Transform + - uid: 7027 + components: + - pos: 34.5,-16.5 + parent: 34 + type: Transform + - uid: 7028 + components: + - pos: 33.5,-16.5 + parent: 34 + type: Transform + - uid: 7031 + components: + - pos: 32.5,-14.5 + parent: 34 + type: Transform + - uid: 7032 + components: + - pos: 31.5,-14.5 + parent: 34 + type: Transform + - uid: 7033 + components: + - pos: 30.5,-14.5 + parent: 34 + type: Transform + - uid: 7034 + components: + - pos: 29.5,-14.5 + parent: 34 + type: Transform + - uid: 7035 + components: + - pos: 28.5,-14.5 + parent: 34 + type: Transform + - uid: 7036 + components: + - pos: 27.5,-14.5 + parent: 34 + type: Transform + - uid: 7037 + components: + - pos: 26.5,-14.5 + parent: 34 + type: Transform + - uid: 7038 + components: + - pos: 25.5,-14.5 + parent: 34 + type: Transform + - uid: 7040 + components: + - pos: 25.5,-15.5 + parent: 34 + type: Transform + - uid: 7041 + components: + - pos: 25.5,-16.5 + parent: 34 + type: Transform + - uid: 7042 + components: + - pos: 25.5,-17.5 + parent: 34 + type: Transform + - uid: 7043 + components: + - pos: 25.5,-18.5 + parent: 34 + type: Transform + - uid: 7044 + components: + - pos: 26.5,-18.5 + parent: 34 + type: Transform + - uid: 7045 + components: + - pos: 27.5,-18.5 + parent: 34 + type: Transform + - uid: 7049 + components: + - pos: 32.5,-10.5 + parent: 34 + type: Transform + - uid: 7050 + components: + - pos: 32.5,-9.5 + parent: 34 + type: Transform + - uid: 7056 + components: + - pos: 32.5,-3.5 + parent: 34 + type: Transform + - uid: 7057 + components: + - pos: 33.5,-3.5 + parent: 34 + type: Transform + - uid: 7058 + components: + - pos: 34.5,-3.5 + parent: 34 + type: Transform + - uid: 7059 + components: + - pos: 35.5,-3.5 + parent: 34 + type: Transform + - uid: 7060 + components: + - pos: 36.5,-3.5 + parent: 34 + type: Transform + - uid: 7061 + components: + - pos: 37.5,-3.5 + parent: 34 + type: Transform + - uid: 7062 + components: + - pos: 38.5,-3.5 + parent: 34 + type: Transform + - uid: 7063 + components: + - pos: 39.5,-3.5 + parent: 34 + type: Transform + - uid: 7064 + components: + - pos: 40.5,-3.5 + parent: 34 + type: Transform + - uid: 7066 + components: + - pos: 40.5,-1.5 + parent: 34 + type: Transform + - uid: 7415 + components: + - pos: -27.5,-32.5 + parent: 34 + type: Transform + - uid: 7581 + components: + - pos: 24.5,4.5 + parent: 34 + type: Transform + - uid: 7582 + components: + - pos: 23.5,4.5 + parent: 34 + type: Transform + - uid: 7583 + components: + - pos: 22.5,4.5 + parent: 34 + type: Transform + - uid: 7584 + components: + - pos: 22.5,5.5 + parent: 34 + type: Transform + - uid: 7585 + components: + - pos: 22.5,6.5 + parent: 34 + type: Transform + - uid: 7586 + components: + - pos: 22.5,7.5 + parent: 34 + type: Transform + - uid: 7587 + components: + - pos: 22.5,8.5 + parent: 34 + type: Transform + - uid: 7588 + components: + - pos: 21.5,8.5 + parent: 34 + type: Transform + - uid: 7589 + components: + - pos: 20.5,8.5 + parent: 34 + type: Transform + - uid: 7590 + components: + - pos: 19.5,8.5 + parent: 34 + type: Transform + - uid: 7591 + components: + - pos: 18.5,8.5 + parent: 34 + type: Transform + - uid: 7592 + components: + - pos: 17.5,8.5 + parent: 34 + type: Transform + - uid: 7593 + components: + - pos: 16.5,8.5 + parent: 34 + type: Transform + - uid: 7594 + components: + - pos: 15.5,8.5 + parent: 34 + type: Transform + - uid: 7595 + components: + - pos: 14.5,8.5 + parent: 34 + type: Transform + - uid: 7596 + components: + - pos: 13.5,8.5 + parent: 34 + type: Transform + - uid: 7597 + components: + - pos: 12.5,8.5 + parent: 34 + type: Transform + - uid: 7598 + components: + - pos: 12.5,7.5 + parent: 34 + type: Transform + - uid: 7599 + components: + - pos: 12.5,6.5 + parent: 34 + type: Transform + - uid: 7600 + components: + - pos: 12.5,5.5 + parent: 34 + type: Transform + - uid: 7601 + components: + - pos: 11.5,5.5 + parent: 34 + type: Transform + - uid: 7602 + components: + - pos: 13.5,9.5 + parent: 34 + type: Transform + - uid: 7603 + components: + - pos: 13.5,10.5 + parent: 34 + type: Transform + - uid: 7604 + components: + - pos: 13.5,11.5 + parent: 34 + type: Transform + - uid: 7605 + components: + - pos: 13.5,12.5 + parent: 34 + type: Transform + - uid: 7606 + components: + - pos: 13.5,13.5 + parent: 34 + type: Transform + - uid: 7607 + components: + - pos: 12.5,13.5 + parent: 34 + type: Transform + - uid: 7608 + components: + - pos: 11.5,13.5 + parent: 34 + type: Transform + - uid: 7609 + components: + - pos: 11.5,12.5 + parent: 34 + type: Transform + - uid: 7621 + components: + - pos: 25.5,4.5 + parent: 34 + type: Transform + - uid: 7622 + components: + - pos: 26.5,4.5 + parent: 34 + type: Transform + - uid: 7623 + components: + - pos: 26.5,5.5 + parent: 34 + type: Transform + - uid: 7650 + components: + - pos: 23.5,7.5 + parent: 34 + type: Transform + - uid: 7651 + components: + - pos: 24.5,7.5 + parent: 34 + type: Transform + - uid: 7652 + components: + - pos: 25.5,7.5 + parent: 34 + type: Transform + - uid: 7653 + components: + - pos: 25.5,6.5 + parent: 34 + type: Transform + - uid: 7709 + components: + - pos: 10.5,-44.5 + parent: 34 + type: Transform + - uid: 7719 + components: + - pos: 7.5,-44.5 + parent: 34 + type: Transform + - uid: 7816 + components: + - pos: -17.5,-28.5 + parent: 34 + type: Transform + - uid: 7824 + components: + - pos: -12.5,-22.5 + parent: 34 + type: Transform + - uid: 7825 + components: + - pos: -12.5,-23.5 + parent: 34 + type: Transform + - uid: 7826 + components: + - pos: -6.5,-31.5 + parent: 34 + type: Transform + - uid: 7830 + components: + - pos: -4.5,-33.5 + parent: 34 + type: Transform + - uid: 7831 + components: + - pos: -4.5,-34.5 + parent: 34 + type: Transform + - uid: 7832 + components: + - pos: -4.5,-35.5 + parent: 34 + type: Transform + - uid: 7833 + components: + - pos: -4.5,-36.5 + parent: 34 + type: Transform + - uid: 7834 + components: + - pos: -4.5,-37.5 + parent: 34 + type: Transform + - uid: 7835 + components: + - pos: -4.5,-38.5 + parent: 34 + type: Transform + - uid: 7836 + components: + - pos: -4.5,-39.5 + parent: 34 + type: Transform + - uid: 7837 + components: + - pos: -4.5,-40.5 + parent: 34 + type: Transform + - uid: 7838 + components: + - pos: -4.5,-41.5 + parent: 34 + type: Transform + - uid: 7839 + components: + - pos: -4.5,-42.5 + parent: 34 + type: Transform + - uid: 7840 + components: + - pos: -4.5,-43.5 + parent: 34 + type: Transform + - uid: 7850 + components: + - pos: -1.5,-45.5 + parent: 34 + type: Transform + - uid: 7851 + components: + - pos: -0.5,-45.5 + parent: 34 + type: Transform + - uid: 7852 + components: + - pos: 0.5,-45.5 + parent: 34 + type: Transform + - uid: 7853 + components: + - pos: 1.5,-45.5 + parent: 34 + type: Transform + - uid: 7854 + components: + - pos: 2.5,-45.5 + parent: 34 + type: Transform + - uid: 7855 + components: + - pos: 3.5,-45.5 + parent: 34 + type: Transform + - uid: 7856 + components: + - pos: 16.5,-43.5 + parent: 34 + type: Transform + - uid: 7857 + components: + - pos: 4.5,-44.5 + parent: 34 + type: Transform + - uid: 7875 + components: + - pos: 13.5,-17.5 + parent: 34 + type: Transform + - uid: 7876 + components: + - pos: 13.5,-18.5 + parent: 34 + type: Transform + - uid: 7877 + components: + - pos: 13.5,-19.5 + parent: 34 + type: Transform + - uid: 7878 + components: + - pos: 13.5,-20.5 + parent: 34 + type: Transform + - uid: 7879 + components: + - pos: 13.5,-21.5 + parent: 34 + type: Transform + - uid: 7880 + components: + - pos: 13.5,-22.5 + parent: 34 + type: Transform + - uid: 7881 + components: + - pos: 13.5,-23.5 + parent: 34 + type: Transform + - uid: 7882 + components: + - pos: 14.5,-23.5 + parent: 34 + type: Transform + - uid: 7883 + components: + - pos: 15.5,-23.5 + parent: 34 + type: Transform + - uid: 7884 + components: + - pos: 16.5,-23.5 + parent: 34 + type: Transform + - uid: 7885 + components: + - pos: 17.5,-23.5 + parent: 34 + type: Transform + - uid: 7886 + components: + - pos: 18.5,-23.5 + parent: 34 + type: Transform + - uid: 7887 + components: + - pos: 19.5,-23.5 + parent: 34 + type: Transform + - uid: 7888 + components: + - pos: 19.5,-22.5 + parent: 34 + type: Transform + - uid: 7889 + components: + - pos: 19.5,-21.5 + parent: 34 + type: Transform + - uid: 7890 + components: + - pos: 11.5,-30.5 + parent: 34 + type: Transform + - uid: 7891 + components: + - pos: 12.5,-30.5 + parent: 34 + type: Transform + - uid: 7892 + components: + - pos: 13.5,-30.5 + parent: 34 + type: Transform + - uid: 7893 + components: + - pos: 14.5,-30.5 + parent: 34 + type: Transform + - uid: 7894 + components: + - pos: 15.5,-30.5 + parent: 34 + type: Transform + - uid: 7895 + components: + - pos: 15.5,-29.5 + parent: 34 + type: Transform + - uid: 7896 + components: + - pos: 15.5,-28.5 + parent: 34 + type: Transform + - uid: 7897 + components: + - pos: 15.5,-27.5 + parent: 34 + type: Transform + - uid: 7898 + components: + - pos: 15.5,-26.5 + parent: 34 + type: Transform + - uid: 7899 + components: + - pos: 15.5,-25.5 + parent: 34 + type: Transform + - uid: 7900 + components: + - pos: 15.5,-24.5 + parent: 34 + type: Transform + - uid: 7901 + components: + - pos: 33.5,-20.5 + parent: 34 + type: Transform + - uid: 7902 + components: + - pos: 32.5,-20.5 + parent: 34 + type: Transform + - uid: 7903 + components: + - pos: 33.5,-19.5 + parent: 34 + type: Transform + - uid: 7904 + components: + - pos: 33.5,-18.5 + parent: 34 + type: Transform + - uid: 7905 + components: + - pos: 33.5,-17.5 + parent: 34 + type: Transform + - uid: 7906 + components: + - pos: -4.5,-44.5 + parent: 34 + type: Transform + - uid: 7908 + components: + - pos: -28.5,-17.5 + parent: 34 + type: Transform + - uid: 7909 + components: + - pos: -28.5,-18.5 + parent: 34 + type: Transform + - uid: 7910 + components: + - pos: -29.5,-18.5 + parent: 34 + type: Transform + - uid: 7911 + components: + - pos: -30.5,-18.5 + parent: 34 + type: Transform + - uid: 7912 + components: + - pos: -31.5,-18.5 + parent: 34 + type: Transform + - uid: 7913 + components: + - pos: -31.5,-19.5 + parent: 34 + type: Transform + - uid: 7914 + components: + - pos: -31.5,-20.5 + parent: 34 + type: Transform + - uid: 7915 + components: + - pos: -56.5,-3.5 + parent: 34 + type: Transform + - uid: 7916 + components: + - pos: -56.5,-4.5 + parent: 34 + type: Transform + - uid: 7917 + components: + - pos: -55.5,-4.5 + parent: 34 + type: Transform + - uid: 7918 + components: + - pos: -54.5,-4.5 + parent: 34 + type: Transform + - uid: 7919 + components: + - pos: -53.5,-4.5 + parent: 34 + type: Transform + - uid: 7920 + components: + - pos: -53.5,-5.5 + parent: 34 + type: Transform + - uid: 7921 + components: + - pos: -53.5,-6.5 + parent: 34 + type: Transform + - uid: 7922 + components: + - pos: -53.5,-7.5 + parent: 34 + type: Transform + - uid: 7923 + components: + - pos: -53.5,-8.5 + parent: 34 + type: Transform + - uid: 7924 + components: + - pos: -53.5,-9.5 + parent: 34 + type: Transform + - uid: 7925 + components: + - pos: -53.5,-10.5 + parent: 34 + type: Transform + - uid: 7927 + components: + - pos: -52.5,-11.5 + parent: 34 + type: Transform + - uid: 7928 + components: + - pos: -53.5,-3.5 + parent: 34 + type: Transform + - uid: 7929 + components: + - pos: -53.5,-2.5 + parent: 34 + type: Transform + - uid: 7930 + components: + - pos: -53.5,-1.5 + parent: 34 + type: Transform + - uid: 7931 + components: + - pos: -53.5,-0.5 + parent: 34 + type: Transform + - uid: 7932 + components: + - pos: -52.5,-0.5 + parent: 34 + type: Transform + - uid: 7933 + components: + - pos: -51.5,-0.5 + parent: 34 + type: Transform + - uid: 7934 + components: + - pos: -50.5,-0.5 + parent: 34 + type: Transform + - uid: 7935 + components: + - pos: -49.5,-0.5 + parent: 34 + type: Transform + - uid: 7936 + components: + - pos: -48.5,-0.5 + parent: 34 + type: Transform + - uid: 7937 + components: + - pos: -47.5,-0.5 + parent: 34 + type: Transform + - uid: 7938 + components: + - pos: -46.5,-0.5 + parent: 34 + type: Transform + - uid: 7939 + components: + - pos: -45.5,-0.5 + parent: 34 + type: Transform + - uid: 7940 + components: + - pos: -44.5,-0.5 + parent: 34 + type: Transform + - uid: 7941 + components: + - pos: -43.5,-0.5 + parent: 34 + type: Transform + - uid: 7942 + components: + - pos: -42.5,-0.5 + parent: 34 + type: Transform + - uid: 7943 + components: + - pos: -42.5,-1.5 + parent: 34 + type: Transform + - uid: 7944 + components: + - pos: -42.5,-2.5 + parent: 34 + type: Transform + - uid: 7945 + components: + - pos: -42.5,-3.5 + parent: 34 + type: Transform + - uid: 7946 + components: + - pos: -42.5,-4.5 + parent: 34 + type: Transform + - uid: 7947 + components: + - pos: -42.5,-5.5 + parent: 34 + type: Transform + - uid: 7948 + components: + - pos: -43.5,-5.5 + parent: 34 + type: Transform + - uid: 7949 + components: + - pos: -44.5,-5.5 + parent: 34 + type: Transform + - uid: 7950 + components: + - pos: -24.5,3.5 + parent: 34 + type: Transform + - uid: 7951 + components: + - pos: -24.5,2.5 + parent: 34 + type: Transform + - uid: 7952 + components: + - pos: -24.5,1.5 + parent: 34 + type: Transform + - uid: 7953 + components: + - pos: -24.5,0.5 + parent: 34 + type: Transform + - uid: 7954 + components: + - pos: -24.5,-0.5 + parent: 34 + type: Transform + - uid: 7955 + components: + - pos: -24.5,-1.5 + parent: 34 + type: Transform + - uid: 7956 + components: + - pos: -24.5,-2.5 + parent: 34 + type: Transform + - uid: 7957 + components: + - pos: -25.5,-0.5 + parent: 34 + type: Transform + - uid: 7958 + components: + - pos: -26.5,-0.5 + parent: 34 + type: Transform + - uid: 7959 + components: + - pos: -27.5,-0.5 + parent: 34 + type: Transform + - uid: 7960 + components: + - pos: -28.5,-0.5 + parent: 34 + type: Transform + - uid: 7961 + components: + - pos: -29.5,-0.5 + parent: 34 + type: Transform + - uid: 7962 + components: + - pos: -30.5,-0.5 + parent: 34 + type: Transform + - uid: 7963 + components: + - pos: -31.5,-0.5 + parent: 34 + type: Transform + - uid: 7964 + components: + - pos: -32.5,-0.5 + parent: 34 + type: Transform + - uid: 7965 + components: + - pos: -33.5,-0.5 + parent: 34 + type: Transform + - uid: 7966 + components: + - pos: -34.5,-0.5 + parent: 34 + type: Transform + - uid: 7967 + components: + - pos: -35.5,-0.5 + parent: 34 + type: Transform + - uid: 7992 + components: + - pos: -2.5,-0.5 + parent: 34 + type: Transform + - uid: 7993 + components: + - pos: -2.5,-1.5 + parent: 34 + type: Transform + - uid: 7994 + components: + - pos: -2.5,-2.5 + parent: 34 + type: Transform + - uid: 8104 + components: + - pos: -20.5,-32.5 + parent: 34 + type: Transform + - uid: 8782 + components: + - pos: -11.5,-30.5 + parent: 34 + type: Transform + - uid: 8846 + components: + - pos: -21.5,-38.5 + parent: 34 + type: Transform + - uid: 8915 + components: + - pos: 41.5,-1.5 + parent: 34 + type: Transform + - uid: 9464 + components: + - pos: -17.5,-30.5 + parent: 34 + type: Transform + - uid: 9495 + components: + - pos: -13.5,-30.5 + parent: 34 + type: Transform + - uid: 9719 + components: + - pos: -23.5,0.5 + parent: 34 + type: Transform + - uid: 9720 + components: + - pos: -22.5,0.5 + parent: 34 + type: Transform + - uid: 9721 + components: + - pos: -21.5,0.5 + parent: 34 + type: Transform + - uid: 9722 + components: + - pos: -20.5,0.5 + parent: 34 + type: Transform + - uid: 9723 + components: + - pos: -19.5,0.5 + parent: 34 + type: Transform + - uid: 9724 + components: + - pos: -18.5,0.5 + parent: 34 + type: Transform + - uid: 9725 + components: + - pos: -17.5,0.5 + parent: 34 + type: Transform + - uid: 9726 + components: + - pos: -16.5,0.5 + parent: 34 + type: Transform + - uid: 9727 + components: + - pos: -15.5,0.5 + parent: 34 + type: Transform + - uid: 9728 + components: + - pos: -14.5,0.5 + parent: 34 + type: Transform + - uid: 9729 + components: + - pos: -13.5,0.5 + parent: 34 + type: Transform + - uid: 9730 + components: + - pos: -12.5,0.5 + parent: 34 + type: Transform + - uid: 9731 + components: + - pos: -11.5,0.5 + parent: 34 + type: Transform + - uid: 9732 + components: + - pos: -10.5,0.5 + parent: 34 + type: Transform + - uid: 9733 + components: + - pos: -9.5,0.5 + parent: 34 + type: Transform + - uid: 9734 + components: + - pos: -8.5,0.5 + parent: 34 + type: Transform + - uid: 9735 + components: + - pos: -7.5,0.5 + parent: 34 + type: Transform + - uid: 9736 + components: + - pos: -6.5,0.5 + parent: 34 + type: Transform + - uid: 9737 + components: + - pos: -5.5,0.5 + parent: 34 + type: Transform + - uid: 9738 + components: + - pos: -4.5,0.5 + parent: 34 + type: Transform + - uid: 9739 + components: + - pos: -3.5,0.5 + parent: 34 + type: Transform + - uid: 9740 + components: + - pos: -2.5,0.5 + parent: 34 + type: Transform + - uid: 10013 + components: + - pos: -20.5,-30.5 + parent: 34 + type: Transform + - uid: 10099 + components: + - pos: 11.5,-44.5 + parent: 34 + type: Transform + - uid: 10100 + components: + - pos: 9.5,-44.5 + parent: 34 + type: Transform + - uid: 10104 + components: + - pos: 8.5,-44.5 + parent: 34 + type: Transform + - uid: 10105 + components: + - pos: 6.5,-44.5 + parent: 34 + type: Transform + - uid: 10106 + components: + - pos: 13.5,-44.5 + parent: 34 + type: Transform + - uid: 10107 + components: + - pos: 12.5,-44.5 + parent: 34 + type: Transform + - uid: 10108 + components: + - pos: 5.5,-44.5 + parent: 34 + type: Transform + - uid: 10109 + components: + - pos: 13.5,-43.5 + parent: 34 + type: Transform + - uid: 10110 + components: + - pos: 13.5,-42.5 + parent: 34 + type: Transform + - uid: 10111 + components: + - pos: 14.5,-42.5 + parent: 34 + type: Transform + - uid: 10112 + components: + - pos: 15.5,-42.5 + parent: 34 + type: Transform + - uid: 10113 + components: + - pos: 16.5,-42.5 + parent: 34 + type: Transform + - uid: 10477 + components: + - pos: -44.5,-12.5 + parent: 34 + type: Transform + - uid: 10550 + components: + - pos: -44.5,-24.5 + parent: 34 + type: Transform + - uid: 10795 + components: + - pos: 17.5,-42.5 + parent: 34 + type: Transform + - uid: 10796 + components: + - pos: 18.5,-42.5 + parent: 34 + type: Transform + - uid: 10797 + components: + - pos: 19.5,-42.5 + parent: 34 + type: Transform + - uid: 10798 + components: + - pos: 20.5,-42.5 + parent: 34 + type: Transform + - uid: 10799 + components: + - pos: 21.5,-42.5 + parent: 34 + type: Transform + - uid: 10800 + components: + - pos: 22.5,-42.5 + parent: 34 + type: Transform + - uid: 10801 + components: + - pos: 23.5,-42.5 + parent: 34 + type: Transform + - uid: 10802 + components: + - pos: 24.5,-42.5 + parent: 34 + type: Transform + - uid: 10803 + components: + - pos: 25.5,-42.5 + parent: 34 + type: Transform + - uid: 10804 + components: + - pos: 26.5,-42.5 + parent: 34 + type: Transform + - uid: 10805 + components: + - pos: 26.5,-41.5 + parent: 34 + type: Transform + - uid: 10806 + components: + - pos: 27.5,-41.5 + parent: 34 + type: Transform + - uid: 10807 + components: + - pos: 28.5,-41.5 + parent: 34 + type: Transform + - uid: 10808 + components: + - pos: 29.5,-41.5 + parent: 34 + type: Transform + - uid: 10809 + components: + - pos: 29.5,-42.5 + parent: 34 + type: Transform + - uid: 10810 + components: + - pos: 29.5,-43.5 + parent: 34 + type: Transform + - uid: 10811 + components: + - pos: 30.5,-43.5 + parent: 34 + type: Transform + - uid: 10812 + components: + - pos: 31.5,-43.5 + parent: 34 + type: Transform + - uid: 10813 + components: + - pos: 31.5,-42.5 + parent: 34 + type: Transform + - uid: 10918 + components: + - pos: 21.5,-3.5 + parent: 34 + type: Transform + - uid: 10919 + components: + - pos: 22.5,-3.5 + parent: 34 + type: Transform + - uid: 10920 + components: + - pos: 22.5,-2.5 + parent: 34 + type: Transform + - uid: 10921 + components: + - pos: 22.5,-1.5 + parent: 34 + type: Transform + - uid: 10922 + components: + - pos: 22.5,-0.5 + parent: 34 + type: Transform + - uid: 10923 + components: + - pos: 22.5,0.5 + parent: 34 + type: Transform + - uid: 10924 + components: + - pos: 22.5,1.5 + parent: 34 + type: Transform + - uid: 10925 + components: + - pos: 22.5,2.5 + parent: 34 + type: Transform + - uid: 10926 + components: + - pos: 22.5,3.5 + parent: 34 + type: Transform + - uid: 10989 + components: + - pos: -21.5,-34.5 + parent: 34 + type: Transform + - uid: 10998 + components: + - pos: 16.5,-44.5 + parent: 34 + type: Transform + - uid: 11052 + components: + - pos: -53.5,-11.5 + parent: 34 + type: Transform + - uid: 11073 + components: + - pos: -21.5,-10.5 + parent: 34 + type: Transform + - uid: 11074 + components: + - pos: -21.5,-9.5 + parent: 34 + type: Transform + - uid: 11247 + components: + - pos: -16.5,-30.5 + parent: 34 + type: Transform + - uid: 11335 + components: + - pos: 17.5,-44.5 + parent: 34 + type: Transform + - uid: 11362 + components: + - pos: 18.5,-44.5 + parent: 34 + type: Transform + - uid: 11417 + components: + - pos: -37.5,-26.5 + parent: 34 + type: Transform + - uid: 11418 + components: + - pos: -38.5,-26.5 + parent: 34 + type: Transform + - uid: 11419 + components: + - pos: -39.5,-26.5 + parent: 34 + type: Transform + - uid: 11420 + components: + - pos: -40.5,-26.5 + parent: 34 + type: Transform + - uid: 11421 + components: + - pos: -41.5,-26.5 + parent: 34 + type: Transform + - uid: 11422 + components: + - pos: -42.5,-26.5 + parent: 34 + type: Transform + - uid: 11423 + components: + - pos: -42.5,-25.5 + parent: 34 + type: Transform + - uid: 11425 + components: + - pos: -43.5,-12.5 + parent: 34 + type: Transform + - uid: 11427 + components: + - pos: -43.5,-13.5 + parent: 34 + type: Transform + - uid: 11428 + components: + - pos: -42.5,-20.5 + parent: 34 + type: Transform + - uid: 11429 + components: + - pos: -41.5,-20.5 + parent: 34 + type: Transform + - uid: 11430 + components: + - pos: -43.5,-25.5 + parent: 34 + type: Transform + - uid: 11431 + components: + - pos: -44.5,-25.5 + parent: 34 + type: Transform + - uid: 11432 + components: + - pos: -45.5,-25.5 + parent: 34 + type: Transform + - uid: 11433 + components: + - pos: -46.5,-25.5 + parent: 34 + type: Transform + - uid: 11436 + components: + - pos: -43.5,-14.5 + parent: 34 + type: Transform + - uid: 11485 + components: + - pos: -49.5,-25.5 + parent: 34 + type: Transform + - uid: 11486 + components: + - pos: -49.5,-27.5 + parent: 34 + type: Transform + - uid: 11499 + components: + - pos: -47.5,-25.5 + parent: 34 + type: Transform + - uid: 11593 + components: + - pos: -21.5,-35.5 + parent: 34 + type: Transform + - uid: 11595 + components: + - pos: 52.5,-24.5 + parent: 34 + type: Transform + - uid: 11729 + components: + - pos: -2.5,-45.5 + parent: 34 + type: Transform + - uid: 11731 + components: + - pos: -3.5,-45.5 + parent: 34 + type: Transform + - uid: 11733 + components: + - pos: -4.5,-45.5 + parent: 34 + type: Transform + - uid: 11734 + components: + - pos: 12.5,-41.5 + parent: 34 + type: Transform + - uid: 11736 + components: + - pos: 11.5,-41.5 + parent: 34 + type: Transform + - uid: 11740 + components: + - pos: 10.5,-41.5 + parent: 34 + type: Transform + - uid: 11741 + components: + - pos: 9.5,-41.5 + parent: 34 + type: Transform + - uid: 11742 + components: + - pos: 8.5,-41.5 + parent: 34 + type: Transform + - uid: 11761 + components: + - pos: 7.5,-41.5 + parent: 34 + type: Transform + - uid: 11845 + components: + - pos: -29.5,-32.5 + parent: 34 + type: Transform + - uid: 11851 + components: + - pos: -28.5,-32.5 + parent: 34 + type: Transform + - uid: 11904 + components: + - pos: -12.5,-30.5 + parent: 34 + type: Transform + - uid: 11914 + components: + - pos: -15.5,-30.5 + parent: 34 + type: Transform + - uid: 11951 + components: + - pos: -2.5,1.5 + parent: 34 + type: Transform + - uid: 11952 + components: + - pos: -2.5,2.5 + parent: 34 + type: Transform + - uid: 11953 + components: + - pos: -2.5,3.5 + parent: 34 + type: Transform + - uid: 11954 + components: + - pos: -2.5,4.5 + parent: 34 + type: Transform + - uid: 11955 + components: + - pos: -2.5,5.5 + parent: 34 + type: Transform + - uid: 11956 + components: + - pos: -2.5,6.5 + parent: 34 + type: Transform + - uid: 11957 + components: + - pos: -2.5,7.5 + parent: 34 + type: Transform + - uid: 11958 + components: + - pos: -3.5,7.5 + parent: 34 + type: Transform + - uid: 11959 + components: + - pos: -4.5,7.5 + parent: 34 + type: Transform + - uid: 11997 + components: + - pos: 6.5,-41.5 + parent: 34 + type: Transform + - uid: 12028 + components: + - pos: -31.5,-40.5 + parent: 34 + type: Transform + - uid: 12029 + components: + - pos: -32.5,-40.5 + parent: 34 + type: Transform + - uid: 12030 + components: + - pos: -33.5,-40.5 + parent: 34 + type: Transform + - uid: 12031 + components: + - pos: -33.5,-41.5 + parent: 34 + type: Transform + - uid: 12032 + components: + - pos: -33.5,-42.5 + parent: 34 + type: Transform + - uid: 12033 + components: + - pos: -33.5,-43.5 + parent: 34 + type: Transform + - uid: 12034 + components: + - pos: -33.5,-44.5 + parent: 34 + type: Transform + - uid: 12035 + components: + - pos: -33.5,-45.5 + parent: 34 + type: Transform + - uid: 12036 + components: + - pos: -33.5,-46.5 + parent: 34 + type: Transform + - uid: 12037 + components: + - pos: -33.5,-47.5 + parent: 34 + type: Transform + - uid: 12038 + components: + - pos: -33.5,-48.5 + parent: 34 + type: Transform + - uid: 12039 + components: + - pos: -33.5,-49.5 + parent: 34 + type: Transform + - uid: 12040 + components: + - pos: -34.5,-49.5 + parent: 34 + type: Transform + - uid: 12041 + components: + - pos: -35.5,-49.5 + parent: 34 + type: Transform + - uid: 12042 + components: + - pos: -36.5,-49.5 + parent: 34 + type: Transform + - uid: 12043 + components: + - pos: -37.5,-49.5 + parent: 34 + type: Transform + - uid: 12044 + components: + - pos: -38.5,-49.5 + parent: 34 + type: Transform + - uid: 12045 + components: + - pos: -39.5,-49.5 + parent: 34 + type: Transform + - uid: 12082 + components: + - pos: 6.5,-40.5 + parent: 34 + type: Transform + - uid: 12083 + components: + - pos: 5.5,-40.5 + parent: 34 + type: Transform + - uid: 12084 + components: + - pos: 4.5,-40.5 + parent: 34 + type: Transform + - uid: 12125 + components: + - pos: 3.5,-40.5 + parent: 34 + type: Transform + - uid: 12126 + components: + - pos: 3.5,-39.5 + parent: 34 + type: Transform + - uid: 12230 + components: + - pos: -19.5,-29.5 + parent: 34 + type: Transform + - uid: 12242 + components: + - pos: -18.5,-29.5 + parent: 34 + type: Transform + - uid: 12254 + components: + - pos: 3.5,-38.5 + parent: 34 + type: Transform + - uid: 12259 + components: + - pos: 3.5,-37.5 + parent: 34 + type: Transform + - uid: 12260 + components: + - pos: 3.5,-44.5 + parent: 34 + type: Transform + - uid: 12271 + components: + - pos: -17.5,-29.5 + parent: 34 + type: Transform + - uid: 12272 + components: + - pos: 3.5,-43.5 + parent: 34 + type: Transform + - uid: 12273 + components: + - pos: 3.5,-42.5 + parent: 34 + type: Transform + - uid: 12352 + components: + - pos: 3.5,-41.5 + parent: 34 + type: Transform + - uid: 12369 + components: + - pos: -43.5,-16.5 + parent: 34 + type: Transform + - uid: 12407 + components: + - pos: -44.5,-23.5 + parent: 34 + type: Transform + - uid: 12417 + components: + - pos: 31.5,-3.5 + parent: 34 + type: Transform + - uid: 12465 + components: + - pos: -45.5,-12.5 + parent: 34 + type: Transform + - uid: 12467 + components: + - pos: -46.5,-12.5 + parent: 34 + type: Transform + - uid: 12493 + components: + - pos: -48.5,-12.5 + parent: 34 + type: Transform + - uid: 12516 + components: + - pos: -47.5,-12.5 + parent: 34 + type: Transform + - uid: 12534 + components: + - pos: 36.5,-19.5 + parent: 34 + type: Transform + - uid: 12598 + components: + - pos: -49.5,-12.5 + parent: 34 + type: Transform + - uid: 12637 + components: + - pos: -50.5,-12.5 + parent: 34 + type: Transform + - uid: 12643 + components: + - pos: -51.5,-12.5 + parent: 34 + type: Transform + - uid: 12644 + components: + - pos: -52.5,-12.5 + parent: 34 + type: Transform + - uid: 12716 + components: + - pos: -53.5,-12.5 + parent: 34 + type: Transform + - uid: 12955 + components: + - pos: 30.5,-3.5 + parent: 34 + type: Transform + - uid: 12956 + components: + - pos: 29.5,-3.5 + parent: 34 + type: Transform + - uid: 12957 + components: + - pos: 27.5,-3.5 + parent: 34 + type: Transform + - uid: 12958 + components: + - pos: 28.5,-3.5 + parent: 34 + type: Transform + - uid: 12959 + components: + - pos: 26.5,-3.5 + parent: 34 + type: Transform + - uid: 12960 + components: + - pos: 25.5,-3.5 + parent: 34 + type: Transform + - uid: 12961 + components: + - pos: 24.5,-3.5 + parent: 34 + type: Transform + - uid: 12962 + components: + - pos: 23.5,-3.5 + parent: 34 + type: Transform +- proto: CableTerminal + entities: + - uid: 1127 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-32.5 + parent: 34 + type: Transform + - uid: 1128 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-32.5 + parent: 34 + type: Transform + - uid: 1129 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-32.5 + parent: 34 + type: Transform + - uid: 5390 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-45.5 + parent: 34 + type: Transform + - uid: 5581 + components: + - pos: -27.5,5.5 + parent: 34 + type: Transform + - uid: 7379 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-30.5 + parent: 34 + type: Transform + - uid: 11440 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-29.5 + parent: 34 + type: Transform +- proto: Carpet + entities: + - uid: 2192 + components: + - pos: -42.5,-6.5 + parent: 34 + type: Transform + - uid: 2193 + components: + - pos: -42.5,-5.5 + parent: 34 + type: Transform + - uid: 2194 + components: + - pos: -42.5,-4.5 + parent: 34 + type: Transform + - uid: 5811 + components: + - rot: 3.141592653589793 rad + pos: 9.5,8.5 + parent: 34 + type: Transform + - uid: 5935 + components: + - rot: 3.141592653589793 rad + pos: 10.5,8.5 + parent: 34 + type: Transform + - uid: 7710 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-9.5 + parent: 34 + type: Transform + - uid: 10830 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-10.5 + parent: 34 + type: Transform + - uid: 10831 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-10.5 + parent: 34 + type: Transform + - uid: 10893 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-9.5 + parent: 34 + type: Transform +- proto: CarpetBlack + entities: + - uid: 781 + components: + - pos: 8.5,-3.5 + parent: 34 + type: Transform + - uid: 782 + components: + - pos: 8.5,-4.5 + parent: 34 + type: Transform + - uid: 783 + components: + - pos: 9.5,-4.5 + parent: 34 + type: Transform + - uid: 784 + components: + - pos: 9.5,-3.5 + parent: 34 + type: Transform + - uid: 2225 + components: + - pos: -45.5,-3.5 + parent: 34 + type: Transform + - uid: 2226 + components: + - pos: -45.5,-4.5 + parent: 34 + type: Transform + - uid: 2257 + components: + - pos: -50.5,-7.5 + parent: 34 + type: Transform + - uid: 2258 + components: + - pos: -49.5,-7.5 + parent: 34 + type: Transform + - uid: 2629 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,6.5 + parent: 34 + type: Transform + - uid: 2630 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,6.5 + parent: 34 + type: Transform + - uid: 3936 + components: + - pos: 14.5,-33.5 + parent: 34 + type: Transform + - uid: 3937 + components: + - pos: 14.5,-34.5 + parent: 34 + type: Transform + - uid: 3938 + components: + - pos: 16.5,-33.5 + parent: 34 + type: Transform + - uid: 3939 + components: + - pos: 16.5,-34.5 + parent: 34 + type: Transform + - uid: 4845 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,-0.5 + parent: 34 + type: Transform + - uid: 4852 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,0.5 + parent: 34 + type: Transform + - uid: 4855 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,0.5 + parent: 34 + type: Transform + - uid: 4856 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,0.5 + parent: 34 + type: Transform + - uid: 4954 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,-0.5 + parent: 34 + type: Transform + - uid: 4956 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,-0.5 + parent: 34 + type: Transform + - uid: 5539 + components: + - rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 34 + type: Transform + - uid: 6125 + components: + - rot: 3.141592653589793 rad + pos: 10.5,5.5 + parent: 34 + type: Transform + - uid: 11213 + components: + - pos: 21.5,12.5 + parent: 34 + type: Transform + - uid: 11214 + components: + - pos: 20.5,12.5 + parent: 34 + type: Transform +- proto: CarpetBlue + entities: + - uid: 4274 + components: + - pos: 25.5,-27.5 + parent: 34 + type: Transform + - uid: 4275 + components: + - pos: 24.5,-27.5 + parent: 34 + type: Transform +- proto: CarpetChapel + entities: + - uid: 2261 + components: + - pos: -27.5,-17.5 + parent: 34 + type: Transform + - uid: 2262 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-16.5 + parent: 34 + type: Transform + - uid: 2263 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-16.5 + parent: 34 + type: Transform + - uid: 2264 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-17.5 + parent: 34 + type: Transform + - uid: 3349 + components: + - pos: -27.5,-19.5 + parent: 34 + type: Transform + - uid: 3350 + components: + - pos: -27.5,-15.5 + parent: 34 + type: Transform + - uid: 3351 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-19.5 + parent: 34 + type: Transform + - uid: 3352 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-15.5 + parent: 34 + type: Transform + - uid: 3353 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-18.5 + parent: 34 + type: Transform + - uid: 3354 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-14.5 + parent: 34 + type: Transform + - uid: 3355 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-14.5 + parent: 34 + type: Transform + - uid: 3356 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-18.5 + parent: 34 + type: Transform +- proto: CarpetGreen + entities: + - uid: 1957 + components: + - pos: -18.5,-19.5 + parent: 34 + type: Transform + - uid: 1972 + components: + - pos: -17.5,-18.5 + parent: 34 + type: Transform + - uid: 1973 + components: + - pos: -18.5,-18.5 + parent: 34 + type: Transform + - uid: 1975 + components: + - pos: -17.5,-19.5 + parent: 34 + type: Transform + - uid: 2540 + components: + - pos: 17.5,-37.5 + parent: 34 + type: Transform + - uid: 4399 + components: + - pos: 16.5,-37.5 + parent: 34 + type: Transform + - uid: 4400 + components: + - pos: 15.5,-37.5 + parent: 34 + type: Transform + - uid: 4401 + components: + - pos: 14.5,-37.5 + parent: 34 + type: Transform +- proto: CarpetOrange + entities: + - uid: 2341 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-30.5 + parent: 34 + type: Transform + - uid: 2475 + components: + - pos: -26.5,-30.5 + parent: 34 + type: Transform + - uid: 3187 + components: + - pos: -26.5,-31.5 + parent: 34 + type: Transform + - uid: 4454 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-31.5 + parent: 34 + type: Transform + - uid: 4601 + components: + - pos: 48.5,-6.5 + parent: 34 + type: Transform + - uid: 4657 + components: + - pos: 48.5,-7.5 + parent: 34 + type: Transform +- proto: CarpetPink + entities: + - uid: 4743 + components: + - pos: 39.5,-6.5 + parent: 34 + type: Transform + - uid: 5847 + components: + - pos: -51.5,1.5 + parent: 34 + type: Transform + - uid: 5853 + components: + - pos: -51.5,2.5 + parent: 34 + type: Transform +- proto: CarpetPurple + entities: + - uid: 5854 + components: + - pos: -46.5,1.5 + parent: 34 + type: Transform + - uid: 5855 + components: + - pos: -45.5,1.5 + parent: 34 + type: Transform + - uid: 6080 + components: + - pos: -29.5,-16.5 + parent: 34 + type: Transform + - uid: 6081 + components: + - pos: -29.5,-15.5 + parent: 34 + type: Transform + - uid: 6083 + components: + - pos: -29.5,-17.5 + parent: 34 + type: Transform + - uid: 6084 + components: + - pos: -24.5,-15.5 + parent: 34 + type: Transform + - uid: 6085 + components: + - pos: -24.5,-16.5 + parent: 34 + type: Transform + - uid: 6086 + components: + - pos: -24.5,-17.5 + parent: 34 + type: Transform + - uid: 10946 + components: + - pos: -34.5,-5.5 + parent: 34 + type: Transform + - uid: 10948 + components: + - pos: -35.5,-5.5 + parent: 34 + type: Transform +- proto: CarpetSBlue + entities: + - uid: 4315 + components: + - pos: 38.5,-31.5 + parent: 34 + type: Transform + - uid: 4449 + components: + - pos: 41.5,-31.5 + parent: 34 + type: Transform + - uid: 5022 + components: + - pos: 39.5,-31.5 + parent: 34 + type: Transform + - uid: 5023 + components: + - pos: 37.5,-31.5 + parent: 34 + type: Transform + - uid: 5025 + components: + - pos: 40.5,-31.5 + parent: 34 + type: Transform + - uid: 5517 + components: + - pos: 36.5,-41.5 + parent: 34 + type: Transform + - uid: 5518 + components: + - pos: 36.5,-40.5 + parent: 34 + type: Transform + - uid: 5519 + components: + - pos: 36.5,-39.5 + parent: 34 + type: Transform + - uid: 5520 + components: + - pos: 35.5,-40.5 + parent: 34 + type: Transform + - uid: 5521 + components: + - pos: 37.5,-40.5 + parent: 34 + type: Transform + - uid: 5522 + components: + - pos: 37.5,-41.5 + parent: 34 + type: Transform + - uid: 5523 + components: + - pos: 35.5,-39.5 + parent: 34 + type: Transform +- proto: Catwalk + entities: + - uid: 18 + components: + - pos: -2.5,-53.5 + parent: 34 + type: Transform + - uid: 20 + components: + - pos: 5.5,-53.5 + parent: 34 + type: Transform + - uid: 22 + components: + - pos: -1.5,-53.5 + parent: 34 + type: Transform + - uid: 26 + components: + - pos: 4.5,-53.5 + parent: 34 + type: Transform + - uid: 50 + components: + - pos: 6.5,-53.5 + parent: 34 + type: Transform + - uid: 57 + components: + - pos: -41.5,-37.5 + parent: 34 + type: Transform + - uid: 66 + components: + - pos: -40.5,-36.5 + parent: 34 + type: Transform + - uid: 76 + components: + - pos: -2.5,-52.5 + parent: 34 + type: Transform + - uid: 90 + components: + - pos: -3.5,-53.5 + parent: 34 + type: Transform + - uid: 93 + components: + - pos: -43.5,-38.5 + parent: 34 + type: Transform + - uid: 104 + components: + - pos: -42.5,-39.5 + parent: 34 + type: Transform + - uid: 105 + components: + - pos: -42.5,-38.5 + parent: 34 + type: Transform + - uid: 114 + components: + - pos: 5.5,-52.5 + parent: 34 + type: Transform + - uid: 120 + components: + - pos: -29.5,-57.5 + parent: 34 + type: Transform + - uid: 121 + components: + - pos: -42.5,-37.5 + parent: 34 + type: Transform + - uid: 123 + components: + - pos: -40.5,-37.5 + parent: 34 + type: Transform + - uid: 176 + components: + - pos: 39.5,-23.5 + parent: 34 + type: Transform + - uid: 396 + components: + - pos: 5.5,-14.5 + parent: 34 + type: Transform + - uid: 723 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-43.5 + parent: 34 + type: Transform + - uid: 914 + components: + - pos: -30.5,-3.5 + parent: 34 + type: Transform + - uid: 937 + components: + - pos: -31.5,-4.5 + parent: 34 + type: Transform + - uid: 940 + components: + - pos: -31.5,-3.5 + parent: 34 + type: Transform + - uid: 943 + components: + - pos: -31.5,-5.5 + parent: 34 + type: Transform + - uid: 947 + components: + - pos: -26.5,-3.5 + parent: 34 + type: Transform + - uid: 948 + components: + - pos: -26.5,-4.5 + parent: 34 + type: Transform + - uid: 949 + components: + - pos: -26.5,-5.5 + parent: 34 + type: Transform + - uid: 950 + components: + - pos: -26.5,-7.5 + parent: 34 + type: Transform + - uid: 951 + components: + - pos: -26.5,-8.5 + parent: 34 + type: Transform + - uid: 952 + components: + - pos: -25.5,-7.5 + parent: 34 + type: Transform + - uid: 953 + components: + - pos: -25.5,-8.5 + parent: 34 + type: Transform + - uid: 961 + components: + - pos: -30.5,-5.5 + parent: 34 + type: Transform + - uid: 1031 + components: + - pos: 5.5,-15.5 + parent: 34 + type: Transform + - uid: 1086 + components: + - rot: 3.141592653589793 rad + pos: 6.5,10.5 + parent: 34 + type: Transform + - uid: 1142 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-32.5 + parent: 34 + type: Transform + - uid: 1189 + components: + - pos: -37.5,-36.5 + parent: 34 + type: Transform + - uid: 1228 + components: + - pos: -31.5,-32.5 + parent: 34 + type: Transform + - uid: 1229 + components: + - pos: -32.5,-32.5 + parent: 34 + type: Transform + - uid: 1230 + components: + - pos: -33.5,-32.5 + parent: 34 + type: Transform + - uid: 1242 + components: + - pos: -38.5,-36.5 + parent: 34 + type: Transform + - uid: 1278 + components: + - pos: -39.5,-29.5 + parent: 34 + type: Transform + - uid: 1300 + components: + - pos: 36.5,-13.5 + parent: 34 + type: Transform + - uid: 1321 + components: + - pos: -34.5,-29.5 + parent: 34 + type: Transform + - uid: 1327 + components: + - pos: -34.5,-30.5 + parent: 34 + type: Transform + - uid: 1459 + components: + - pos: -41.5,-40.5 + parent: 34 + type: Transform + - uid: 1607 + components: + - pos: -43.5,-34.5 + parent: 34 + type: Transform + - uid: 1610 + components: + - pos: -48.5,-42.5 + parent: 34 + type: Transform + - uid: 1611 + components: + - pos: -49.5,-42.5 + parent: 34 + type: Transform + - uid: 1612 + components: + - pos: -50.5,-42.5 + parent: 34 + type: Transform + - uid: 1615 + components: + - pos: -45.5,-42.5 + parent: 34 + type: Transform + - uid: 1616 + components: + - pos: -44.5,-42.5 + parent: 34 + type: Transform + - uid: 1620 + components: + - pos: -44.5,-43.5 + parent: 34 + type: Transform + - uid: 1621 + components: + - pos: -44.5,-44.5 + parent: 34 + type: Transform + - uid: 1622 + components: + - pos: -44.5,-45.5 + parent: 34 + type: Transform + - uid: 1623 + components: + - pos: -44.5,-46.5 + parent: 34 + type: Transform + - uid: 1624 + components: + - pos: -44.5,-47.5 + parent: 34 + type: Transform + - uid: 1625 + components: + - pos: -44.5,-48.5 + parent: 34 + type: Transform + - uid: 1626 + components: + - pos: -44.5,-49.5 + parent: 34 + type: Transform + - uid: 1635 + components: + - pos: -43.5,-42.5 + parent: 34 + type: Transform + - uid: 1636 + components: + - pos: -42.5,-43.5 + parent: 34 + type: Transform + - uid: 1637 + components: + - pos: -42.5,-44.5 + parent: 34 + type: Transform + - uid: 1638 + components: + - pos: -42.5,-45.5 + parent: 34 + type: Transform + - uid: 1639 + components: + - pos: -42.5,-46.5 + parent: 34 + type: Transform + - uid: 1640 + components: + - pos: -52.5,-42.5 + parent: 34 + type: Transform + - uid: 1650 + components: + - pos: -43.5,-48.5 + parent: 34 + type: Transform + - uid: 1651 + components: + - pos: -42.5,-48.5 + parent: 34 + type: Transform + - uid: 1652 + components: + - pos: -43.5,-46.5 + parent: 34 + type: Transform + - uid: 1658 + components: + - pos: -52.5,-43.5 + parent: 34 + type: Transform + - uid: 1724 + components: + - pos: -41.5,-44.5 + parent: 34 + type: Transform + - uid: 1725 + components: + - pos: -41.5,-46.5 + parent: 34 + type: Transform + - uid: 1726 + components: + - pos: -41.5,-42.5 + parent: 34 + type: Transform + - uid: 1750 + components: + - pos: -40.5,-33.5 + parent: 34 + type: Transform + - uid: 1752 + components: + - pos: -39.5,-33.5 + parent: 34 + type: Transform + - uid: 1754 + components: + - pos: -38.5,-33.5 + parent: 34 + type: Transform + - uid: 1756 + components: + - pos: -37.5,-33.5 + parent: 34 + type: Transform + - uid: 1757 + components: + - pos: -38.5,-32.5 + parent: 34 + type: Transform + - uid: 1758 + components: + - pos: -39.5,-32.5 + parent: 34 + type: Transform + - uid: 1759 + components: + - pos: -39.5,-31.5 + parent: 34 + type: Transform + - uid: 1760 + components: + - pos: -38.5,-31.5 + parent: 34 + type: Transform + - uid: 1761 + components: + - pos: -38.5,-30.5 + parent: 34 + type: Transform + - uid: 1762 + components: + - pos: -39.5,-30.5 + parent: 34 + type: Transform + - uid: 1763 + components: + - pos: -40.5,-30.5 + parent: 34 + type: Transform + - uid: 1764 + components: + - pos: -37.5,-30.5 + parent: 34 + type: Transform + - uid: 1776 + components: + - pos: -42.5,-41.5 + parent: 34 + type: Transform + - uid: 1824 + components: + - pos: 36.5,-14.5 + parent: 34 + type: Transform + - uid: 1834 + components: + - pos: -42.5,-30.5 + parent: 34 + type: Transform + - uid: 1835 + components: + - pos: -43.5,-30.5 + parent: 34 + type: Transform + - uid: 1836 + components: + - pos: -44.5,-30.5 + parent: 34 + type: Transform + - uid: 1837 + components: + - pos: -45.5,-30.5 + parent: 34 + type: Transform + - uid: 1838 + components: + - pos: -45.5,-31.5 + parent: 34 + type: Transform + - uid: 1860 + components: + - pos: -42.5,-40.5 + parent: 34 + type: Transform + - uid: 1861 + components: + - pos: -43.5,-40.5 + parent: 34 + type: Transform + - uid: 1894 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-34.5 + parent: 34 + type: Transform + - uid: 1905 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-30.5 + parent: 34 + type: Transform + - uid: 2214 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-35.5 + parent: 34 + type: Transform + - uid: 2358 + components: + - rot: 3.141592653589793 rad + pos: 0.5,10.5 + parent: 34 + type: Transform + - uid: 2388 + components: + - rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 34 + type: Transform + - uid: 2399 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-33.5 + parent: 34 + type: Transform + - uid: 2412 + components: + - pos: -29.5,-56.5 + parent: 34 + type: Transform + - uid: 2423 + components: + - pos: -47.5,-14.5 + parent: 34 + type: Transform + - uid: 2437 + components: + - pos: -34.5,-31.5 + parent: 34 + type: Transform + - uid: 2438 + components: + - pos: -34.5,-32.5 + parent: 34 + type: Transform + - uid: 2440 + components: + - pos: -35.5,-29.5 + parent: 34 + type: Transform + - uid: 2441 + components: + - pos: -35.5,-30.5 + parent: 34 + type: Transform + - uid: 2442 + components: + - pos: -35.5,-31.5 + parent: 34 + type: Transform + - uid: 2443 + components: + - pos: -35.5,-32.5 + parent: 34 + type: Transform + - uid: 2444 + components: + - pos: -35.5,-33.5 + parent: 34 + type: Transform + - uid: 2445 + components: + - pos: -34.5,-34.5 + parent: 34 + type: Transform + - uid: 2446 + components: + - pos: -33.5,-34.5 + parent: 34 + type: Transform + - uid: 2447 + components: + - pos: -32.5,-34.5 + parent: 34 + type: Transform + - uid: 2448 + components: + - pos: -31.5,-34.5 + parent: 34 + type: Transform + - uid: 2449 + components: + - pos: -30.5,-34.5 + parent: 34 + type: Transform + - uid: 2452 + components: + - pos: -34.5,-37.5 + parent: 34 + type: Transform + - uid: 2453 + components: + - pos: -34.5,-38.5 + parent: 34 + type: Transform + - uid: 2454 + components: + - pos: -34.5,-39.5 + parent: 34 + type: Transform + - uid: 2455 + components: + - pos: -34.5,-40.5 + parent: 34 + type: Transform + - uid: 2457 + components: + - pos: -33.5,-40.5 + parent: 34 + type: Transform + - uid: 2458 + components: + - pos: -32.5,-40.5 + parent: 34 + type: Transform + - uid: 2459 + components: + - pos: -31.5,-40.5 + parent: 34 + type: Transform + - uid: 2460 + components: + - pos: -30.5,-40.5 + parent: 34 + type: Transform + - uid: 2461 + components: + - pos: -30.5,-39.5 + parent: 34 + type: Transform + - uid: 2462 + components: + - pos: -30.5,-38.5 + parent: 34 + type: Transform + - uid: 2463 + components: + - pos: -30.5,-37.5 + parent: 34 + type: Transform + - uid: 2464 + components: + - pos: -30.5,-36.5 + parent: 34 + type: Transform + - uid: 2465 + components: + - pos: -30.5,-35.5 + parent: 34 + type: Transform + - uid: 2466 + components: + - pos: -30.5,-33.5 + parent: 34 + type: Transform + - uid: 2467 + components: + - pos: -30.5,-32.5 + parent: 34 + type: Transform + - uid: 2468 + components: + - pos: -30.5,-31.5 + parent: 34 + type: Transform + - uid: 2470 + components: + - pos: -30.5,-29.5 + parent: 34 + type: Transform + - uid: 2471 + components: + - pos: -31.5,-30.5 + parent: 34 + type: Transform + - uid: 2472 + components: + - pos: -32.5,-30.5 + parent: 34 + type: Transform + - uid: 2473 + components: + - pos: -33.5,-30.5 + parent: 34 + type: Transform + - uid: 2481 + components: + - pos: -35.5,-35.5 + parent: 34 + type: Transform + - uid: 2482 + components: + - pos: -34.5,-35.5 + parent: 34 + type: Transform + - uid: 2490 + components: + - pos: -33.5,-46.5 + parent: 34 + type: Transform + - uid: 2495 + components: + - rot: 3.141592653589793 rad + pos: 8.5,11.5 + parent: 34 + type: Transform + - uid: 2520 + components: + - rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 34 + type: Transform + - uid: 2528 + components: + - rot: 3.141592653589793 rad + pos: 8.5,10.5 + parent: 34 + type: Transform + - uid: 2555 + components: + - pos: -39.5,-36.5 + parent: 34 + type: Transform + - uid: 2563 + components: + - rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 34 + type: Transform + - uid: 2584 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-42.5 + parent: 34 + type: Transform + - uid: 2634 + components: + - rot: 3.141592653589793 rad + pos: -4.5,10.5 + parent: 34 + type: Transform + - uid: 2635 + components: + - pos: 36.5,-9.5 + parent: 34 + type: Transform + - uid: 2645 + components: + - pos: 36.5,-8.5 + parent: 34 + type: Transform + - uid: 2646 + components: + - pos: 36.5,-7.5 + parent: 34 + type: Transform + - uid: 2647 + components: + - pos: 36.5,-6.5 + parent: 34 + type: Transform + - uid: 2671 + components: + - pos: -37.5,-58.5 + parent: 34 + type: Transform + - uid: 2674 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-44.5 + parent: 34 + type: Transform + - uid: 2707 + components: + - pos: 36.5,-10.5 + parent: 34 + type: Transform + - uid: 2744 + components: + - pos: -21.5,-18.5 + parent: 34 + type: Transform + - uid: 2745 + components: + - pos: -21.5,-17.5 + parent: 34 + type: Transform + - uid: 2746 + components: + - pos: -21.5,-16.5 + parent: 34 + type: Transform + - uid: 2747 + components: + - pos: -21.5,-15.5 + parent: 34 + type: Transform + - uid: 2748 + components: + - pos: -21.5,-14.5 + parent: 34 + type: Transform + - uid: 2749 + components: + - pos: -21.5,-13.5 + parent: 34 + type: Transform + - uid: 2751 + components: + - pos: -21.5,-11.5 + parent: 34 + type: Transform + - uid: 2752 + components: + - pos: -22.5,-11.5 + parent: 34 + type: Transform + - uid: 2753 + components: + - pos: -22.5,-10.5 + parent: 34 + type: Transform + - uid: 2754 + components: + - pos: -23.5,-10.5 + parent: 34 + type: Transform + - uid: 2755 + components: + - pos: -22.5,-9.5 + parent: 34 + type: Transform + - uid: 2756 + components: + - pos: -22.5,-8.5 + parent: 34 + type: Transform + - uid: 2757 + components: + - pos: -22.5,-7.5 + parent: 34 + type: Transform + - uid: 2758 + components: + - pos: -22.5,-6.5 + parent: 34 + type: Transform + - uid: 2759 + components: + - pos: -22.5,-5.5 + parent: 34 + type: Transform + - uid: 2760 + components: + - pos: -22.5,-4.5 + parent: 34 + type: Transform + - uid: 2761 + components: + - pos: -22.5,-3.5 + parent: 34 + type: Transform + - uid: 2806 + components: + - pos: 0.5,-15.5 + parent: 34 + type: Transform + - uid: 3198 + components: + - pos: -33.5,-42.5 + parent: 34 + type: Transform + - uid: 3199 + components: + - pos: -33.5,-43.5 + parent: 34 + type: Transform + - uid: 3202 + components: + - pos: -32.5,-43.5 + parent: 34 + type: Transform + - uid: 3203 + components: + - pos: -33.5,-44.5 + parent: 34 + type: Transform + - uid: 3220 + components: + - pos: -33.5,-47.5 + parent: 34 + type: Transform + - uid: 3228 + components: + - rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 34 + type: Transform + - uid: 3252 + components: + - rot: 3.141592653589793 rad + pos: -2.5,11.5 + parent: 34 + type: Transform + - uid: 3263 + components: + - rot: 3.141592653589793 rad + pos: -0.5,10.5 + parent: 34 + type: Transform + - uid: 3265 + components: + - pos: -33.5,-48.5 + parent: 34 + type: Transform + - uid: 3432 + components: + - pos: -1.5,-14.5 + parent: 34 + type: Transform + - uid: 3433 + components: + - pos: -0.5,-14.5 + parent: 34 + type: Transform + - uid: 3434 + components: + - pos: 0.5,-14.5 + parent: 34 + type: Transform + - uid: 3435 + components: + - pos: 1.5,-14.5 + parent: 34 + type: Transform + - uid: 3436 + components: + - pos: 2.5,-14.5 + parent: 34 + type: Transform + - uid: 3438 + components: + - pos: 4.5,-14.5 + parent: 34 + type: Transform + - uid: 3461 + components: + - rot: 3.141592653589793 rad + pos: 2.5,10.5 + parent: 34 + type: Transform + - uid: 3603 + components: + - rot: 3.141592653589793 rad + pos: 3.5,10.5 + parent: 34 + type: Transform + - uid: 3775 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-44.5 + parent: 34 + type: Transform + - uid: 3776 + components: + - rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 34 + type: Transform + - uid: 3784 + components: + - pos: -35.5,-37.5 + parent: 34 + type: Transform + - uid: 3786 + components: + - pos: -40.5,-35.5 + parent: 34 + type: Transform + - uid: 3787 + components: + - pos: -41.5,-35.5 + parent: 34 + type: Transform + - uid: 3788 + components: + - pos: -42.5,-35.5 + parent: 34 + type: Transform + - uid: 3789 + components: + - pos: -42.5,-36.5 + parent: 34 + type: Transform + - uid: 3790 + components: + - pos: -42.5,-34.5 + parent: 34 + type: Transform + - uid: 3791 + components: + - pos: -46.5,-38.5 + parent: 34 + type: Transform + - uid: 3801 + components: + - pos: 6.5,-14.5 + parent: 34 + type: Transform + - uid: 3802 + components: + - pos: 7.5,-14.5 + parent: 34 + type: Transform + - uid: 3803 + components: + - pos: 8.5,-14.5 + parent: 34 + type: Transform + - uid: 3804 + components: + - pos: 8.5,-13.5 + parent: 34 + type: Transform + - uid: 3805 + components: + - pos: 8.5,-12.5 + parent: 34 + type: Transform + - uid: 3806 + components: + - pos: 9.5,-14.5 + parent: 34 + type: Transform + - uid: 3807 + components: + - pos: 9.5,-15.5 + parent: 34 + type: Transform + - uid: 3808 + components: + - pos: 9.5,-16.5 + parent: 34 + type: Transform + - uid: 3809 + components: + - pos: 9.5,-18.5 + parent: 34 + type: Transform + - uid: 3810 + components: + - pos: 9.5,-19.5 + parent: 34 + type: Transform + - uid: 3812 + components: + - pos: 9.5,-20.5 + parent: 34 + type: Transform + - uid: 3819 + components: + - pos: 8.5,-11.5 + parent: 34 + type: Transform + - uid: 3984 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-34.5 + parent: 34 + type: Transform + - uid: 4017 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-43.5 + parent: 34 + type: Transform + - uid: 4094 + components: + - pos: 6.5,-54.5 + parent: 34 + type: Transform + - uid: 4095 + components: + - pos: -1.5,-54.5 + parent: 34 + type: Transform + - uid: 4119 + components: + - pos: -3.5,-54.5 + parent: 34 + type: Transform + - uid: 4120 + components: + - pos: 4.5,-54.5 + parent: 34 + type: Transform + - uid: 4196 + components: + - pos: 9.5,10.5 + parent: 34 + type: Transform + - uid: 4311 + components: + - pos: 35.5,-28.5 + parent: 34 + type: Transform + - uid: 4312 + components: + - pos: 36.5,-28.5 + parent: 34 + type: Transform + - uid: 4313 + components: + - pos: 36.5,-27.5 + parent: 34 + type: Transform + - uid: 4320 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-32.5 + parent: 34 + type: Transform + - uid: 4395 + components: + - pos: 15.5,-40.5 + parent: 34 + type: Transform + - uid: 4498 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-19.5 + parent: 34 + type: Transform + - uid: 4565 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-29.5 + parent: 34 + type: Transform + - uid: 4610 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-29.5 + parent: 34 + type: Transform + - uid: 4631 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-36.5 + parent: 34 + type: Transform + - uid: 4632 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-33.5 + parent: 34 + type: Transform + - uid: 4648 + components: + - pos: -14.5,-30.5 + parent: 34 + type: Transform + - uid: 4749 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-31.5 + parent: 34 + type: Transform + - uid: 4756 + components: + - pos: -16.5,-30.5 + parent: 34 + type: Transform + - uid: 4791 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-34.5 + parent: 34 + type: Transform + - uid: 5066 + components: + - pos: -30.5,14.5 + parent: 34 + type: Transform + - uid: 5068 + components: + - pos: -30.5,11.5 + parent: 34 + type: Transform + - uid: 5069 + components: + - pos: -30.5,12.5 + parent: 34 + type: Transform + - uid: 5070 + components: + - pos: -30.5,13.5 + parent: 34 + type: Transform + - uid: 5071 + components: + - pos: -28.5,8.5 + parent: 34 + type: Transform + - uid: 5240 + components: + - pos: 10.5,10.5 + parent: 34 + type: Transform + - uid: 5247 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-43.5 + parent: 34 + type: Transform + - uid: 5284 + components: + - pos: 15.5,-48.5 + parent: 34 + type: Transform + - uid: 5285 + components: + - pos: 16.5,-48.5 + parent: 34 + type: Transform + - uid: 5286 + components: + - pos: 17.5,-48.5 + parent: 34 + type: Transform + - uid: 5287 + components: + - pos: 18.5,-48.5 + parent: 34 + type: Transform + - uid: 5288 + components: + - pos: 19.5,-48.5 + parent: 34 + type: Transform + - uid: 5289 + components: + - pos: 20.5,-48.5 + parent: 34 + type: Transform + - uid: 5290 + components: + - pos: 21.5,-48.5 + parent: 34 + type: Transform + - uid: 5291 + components: + - pos: 22.5,-48.5 + parent: 34 + type: Transform + - uid: 5292 + components: + - pos: 23.5,-48.5 + parent: 34 + type: Transform + - uid: 5293 + components: + - pos: 24.5,-48.5 + parent: 34 + type: Transform + - uid: 5294 + components: + - pos: 25.5,-48.5 + parent: 34 + type: Transform + - uid: 5295 + components: + - pos: 26.5,-48.5 + parent: 34 + type: Transform + - uid: 5296 + components: + - pos: 27.5,-48.5 + parent: 34 + type: Transform + - uid: 5297 + components: + - pos: 28.5,-48.5 + parent: 34 + type: Transform + - uid: 5298 + components: + - pos: 29.5,-48.5 + parent: 34 + type: Transform + - uid: 5299 + components: + - pos: 30.5,-48.5 + parent: 34 + type: Transform + - uid: 5300 + components: + - pos: 31.5,-48.5 + parent: 34 + type: Transform + - uid: 5301 + components: + - pos: 32.5,-48.5 + parent: 34 + type: Transform + - uid: 5302 + components: + - pos: 33.5,-48.5 + parent: 34 + type: Transform + - uid: 5304 + components: + - pos: 17.5,-49.5 + parent: 34 + type: Transform + - uid: 5305 + components: + - pos: 21.5,-49.5 + parent: 34 + type: Transform + - uid: 5306 + components: + - pos: 25.5,-49.5 + parent: 34 + type: Transform + - uid: 5307 + components: + - pos: 29.5,-49.5 + parent: 34 + type: Transform + - uid: 5308 + components: + - pos: 33.5,-49.5 + parent: 34 + type: Transform + - uid: 5310 + components: + - pos: 21.5,-51.5 + parent: 34 + type: Transform + - uid: 5311 + components: + - pos: 21.5,-52.5 + parent: 34 + type: Transform + - uid: 5314 + components: + - pos: 17.5,-50.5 + parent: 34 + type: Transform + - uid: 5315 + components: + - pos: 17.5,-51.5 + parent: 34 + type: Transform + - uid: 5316 + components: + - pos: 17.5,-52.5 + parent: 34 + type: Transform + - uid: 5319 + components: + - pos: 25.5,-50.5 + parent: 34 + type: Transform + - uid: 5320 + components: + - pos: 25.5,-51.5 + parent: 34 + type: Transform + - uid: 5321 + components: + - pos: 25.5,-52.5 + parent: 34 + type: Transform + - uid: 5322 + components: + - pos: 25.5,-53.5 + parent: 34 + type: Transform + - uid: 5323 + components: + - pos: 25.5,-54.5 + parent: 34 + type: Transform + - uid: 5324 + components: + - pos: 29.5,-50.5 + parent: 34 + type: Transform + - uid: 5325 + components: + - pos: 29.5,-51.5 + parent: 34 + type: Transform + - uid: 5326 + components: + - pos: 29.5,-52.5 + parent: 34 + type: Transform + - uid: 5327 + components: + - pos: 29.5,-53.5 + parent: 34 + type: Transform + - uid: 5328 + components: + - pos: 29.5,-54.5 + parent: 34 + type: Transform + - uid: 5329 + components: + - pos: 33.5,-50.5 + parent: 34 + type: Transform + - uid: 5330 + components: + - pos: 33.5,-51.5 + parent: 34 + type: Transform + - uid: 5331 + components: + - pos: 33.5,-52.5 + parent: 34 + type: Transform + - uid: 5332 + components: + - pos: 33.5,-53.5 + parent: 34 + type: Transform + - uid: 5333 + components: + - pos: 33.5,-54.5 + parent: 34 + type: Transform + - uid: 5446 + components: + - pos: 21.5,-50.5 + parent: 34 + type: Transform + - uid: 5478 + components: + - pos: 34.5,-48.5 + parent: 34 + type: Transform + - uid: 5479 + components: + - pos: 35.5,-48.5 + parent: 34 + type: Transform + - uid: 5480 + components: + - pos: 36.5,-48.5 + parent: 34 + type: Transform + - uid: 5481 + components: + - pos: 36.5,-47.5 + parent: 34 + type: Transform + - uid: 5482 + components: + - pos: 35.5,-45.5 + parent: 34 + type: Transform + - uid: 5571 + components: + - pos: -27.5,3.5 + parent: 34 + type: Transform + - uid: 5588 + components: + - pos: -26.5,5.5 + parent: 34 + type: Transform + - uid: 5617 + components: + - pos: -29.5,8.5 + parent: 34 + type: Transform + - uid: 5618 + components: + - pos: -30.5,8.5 + parent: 34 + type: Transform + - uid: 5619 + components: + - pos: -32.5,8.5 + parent: 34 + type: Transform + - uid: 5620 + components: + - pos: -33.5,8.5 + parent: 34 + type: Transform + - uid: 5621 + components: + - pos: -34.5,8.5 + parent: 34 + type: Transform + - uid: 5622 + components: + - pos: -30.5,9.5 + parent: 34 + type: Transform + - uid: 5623 + components: + - pos: -30.5,10.5 + parent: 34 + type: Transform + - uid: 5624 + components: + - pos: -31.5,8.5 + parent: 34 + type: Transform + - uid: 5632 + components: + - pos: -21.5,14.5 + parent: 34 + type: Transform + - uid: 5633 + components: + - pos: -21.5,13.5 + parent: 34 + type: Transform + - uid: 5634 + components: + - pos: -21.5,12.5 + parent: 34 + type: Transform + - uid: 5635 + components: + - pos: -21.5,11.5 + parent: 34 + type: Transform + - uid: 5636 + components: + - pos: -21.5,10.5 + parent: 34 + type: Transform + - uid: 5637 + components: + - pos: -17.5,14.5 + parent: 34 + type: Transform + - uid: 5638 + components: + - pos: -17.5,13.5 + parent: 34 + type: Transform + - uid: 5639 + components: + - pos: -17.5,12.5 + parent: 34 + type: Transform + - uid: 5640 + components: + - pos: -17.5,11.5 + parent: 34 + type: Transform + - uid: 5641 + components: + - pos: -17.5,10.5 + parent: 34 + type: Transform + - uid: 5642 + components: + - pos: -13.5,14.5 + parent: 34 + type: Transform + - uid: 5643 + components: + - pos: -13.5,13.5 + parent: 34 + type: Transform + - uid: 5644 + components: + - pos: -13.5,12.5 + parent: 34 + type: Transform + - uid: 5645 + components: + - pos: -13.5,11.5 + parent: 34 + type: Transform + - uid: 5646 + components: + - pos: -13.5,10.5 + parent: 34 + type: Transform + - uid: 5647 + components: + - pos: -13.5,9.5 + parent: 34 + type: Transform + - uid: 5648 + components: + - pos: -17.5,9.5 + parent: 34 + type: Transform + - uid: 5649 + components: + - pos: -13.5,8.5 + parent: 34 + type: Transform + - uid: 5650 + components: + - pos: -14.5,8.5 + parent: 34 + type: Transform + - uid: 5651 + components: + - pos: -15.5,8.5 + parent: 34 + type: Transform + - uid: 5652 + components: + - pos: -16.5,8.5 + parent: 34 + type: Transform + - uid: 5653 + components: + - pos: -17.5,8.5 + parent: 34 + type: Transform + - uid: 5654 + components: + - pos: -18.5,8.5 + parent: 34 + type: Transform + - uid: 5655 + components: + - pos: -19.5,8.5 + parent: 34 + type: Transform + - uid: 5656 + components: + - pos: -20.5,8.5 + parent: 34 + type: Transform + - uid: 5657 + components: + - pos: -21.5,8.5 + parent: 34 + type: Transform + - uid: 5658 + components: + - pos: -22.5,8.5 + parent: 34 + type: Transform + - uid: 5659 + components: + - pos: -23.5,8.5 + parent: 34 + type: Transform + - uid: 5660 + components: + - pos: -25.5,8.5 + parent: 34 + type: Transform + - uid: 5661 + components: + - pos: -25.5,7.5 + parent: 34 + type: Transform + - uid: 5662 + components: + - pos: -26.5,8.5 + parent: 34 + type: Transform + - uid: 5663 + components: + - pos: -26.5,7.5 + parent: 34 + type: Transform + - uid: 5678 + components: + - pos: -21.5,9.5 + parent: 34 + type: Transform + - uid: 5739 + components: + - pos: -27.5,5.5 + parent: 34 + type: Transform + - uid: 5741 + components: + - pos: -25.5,3.5 + parent: 34 + type: Transform + - uid: 5742 + components: + - pos: -24.5,3.5 + parent: 34 + type: Transform + - uid: 5743 + components: + - pos: -25.5,5.5 + parent: 34 + type: Transform + - uid: 5745 + components: + - pos: -25.5,4.5 + parent: 34 + type: Transform + - uid: 5784 + components: + - pos: -41.5,1.5 + parent: 34 + type: Transform + - uid: 5787 + components: + - pos: -40.5,3.5 + parent: 34 + type: Transform + - uid: 5790 + components: + - pos: -22.5,3.5 + parent: 34 + type: Transform + - uid: 5791 + components: + - pos: -21.5,3.5 + parent: 34 + type: Transform + - uid: 5792 + components: + - pos: -20.5,3.5 + parent: 34 + type: Transform + - uid: 5794 + components: + - pos: -26.5,3.5 + parent: 34 + type: Transform + - uid: 5813 + components: + - pos: 32.5,-45.5 + parent: 34 + type: Transform + - uid: 5814 + components: + - pos: 31.5,-45.5 + parent: 34 + type: Transform + - uid: 5815 + components: + - pos: 31.5,-44.5 + parent: 34 + type: Transform + - uid: 5817 + components: + - pos: 30.5,-43.5 + parent: 34 + type: Transform + - uid: 5818 + components: + - pos: 29.5,-43.5 + parent: 34 + type: Transform + - uid: 5819 + components: + - pos: 32.5,-43.5 + parent: 34 + type: Transform + - uid: 5820 + components: + - pos: 31.5,-43.5 + parent: 34 + type: Transform + - uid: 5821 + components: + - pos: 32.5,-44.5 + parent: 34 + type: Transform + - uid: 5822 + components: + - pos: 33.5,-43.5 + parent: 34 + type: Transform + - uid: 5823 + components: + - pos: 25.5,-47.5 + parent: 34 + type: Transform + - uid: 5940 + components: + - pos: 3.5,11.5 + parent: 34 + type: Transform + - uid: 5958 + components: + - pos: 14.5,-48.5 + parent: 34 + type: Transform + - uid: 6007 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-51.5 + parent: 34 + type: Transform + - uid: 6008 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-50.5 + parent: 34 + type: Transform + - uid: 6094 + components: + - pos: 6.5,11.5 + parent: 34 + type: Transform + - uid: 6115 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-44.5 + parent: 34 + type: Transform + - uid: 6139 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-29.5 + parent: 34 + type: Transform + - uid: 6142 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-29.5 + parent: 34 + type: Transform + - uid: 6143 + components: + - pos: 5.5,11.5 + parent: 34 + type: Transform + - uid: 6146 + components: + - pos: 4.5,11.5 + parent: 34 + type: Transform + - uid: 6374 + components: + - pos: -33.5,-49.5 + parent: 34 + type: Transform + - uid: 6570 + components: + - pos: 30.5,-40.5 + parent: 34 + type: Transform + - uid: 7160 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-59.5 + parent: 34 + type: Transform + - uid: 7233 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-59.5 + parent: 34 + type: Transform + - uid: 7390 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-59.5 + parent: 34 + type: Transform + - uid: 7419 + components: + - pos: -30.5,-30.5 + parent: 34 + type: Transform + - uid: 7672 + components: + - pos: 33.5,0.5 + parent: 34 + type: Transform + - uid: 7673 + components: + - pos: 33.5,1.5 + parent: 34 + type: Transform + - uid: 7674 + components: + - pos: 33.5,2.5 + parent: 34 + type: Transform + - uid: 7675 + components: + - pos: 33.5,3.5 + parent: 34 + type: Transform + - uid: 7676 + components: + - pos: 33.5,4.5 + parent: 34 + type: Transform + - uid: 7677 + components: + - pos: 33.5,5.5 + parent: 34 + type: Transform + - uid: 7678 + components: + - pos: 33.5,6.5 + parent: 34 + type: Transform + - uid: 7679 + components: + - pos: 33.5,7.5 + parent: 34 + type: Transform + - uid: 7680 + components: + - pos: 32.5,7.5 + parent: 34 + type: Transform + - uid: 7681 + components: + - pos: 31.5,7.5 + parent: 34 + type: Transform + - uid: 7683 + components: + - pos: 29.5,7.5 + parent: 34 + type: Transform + - uid: 7684 + components: + - pos: 28.5,7.5 + parent: 34 + type: Transform + - uid: 7685 + components: + - pos: 27.5,7.5 + parent: 34 + type: Transform + - uid: 7686 + components: + - pos: 26.5,7.5 + parent: 34 + type: Transform + - uid: 7687 + components: + - pos: 25.5,7.5 + parent: 34 + type: Transform + - uid: 7688 + components: + - pos: 24.5,7.5 + parent: 34 + type: Transform + - uid: 7689 + components: + - pos: 23.5,7.5 + parent: 34 + type: Transform + - uid: 7690 + components: + - pos: 22.5,7.5 + parent: 34 + type: Transform + - uid: 7691 + components: + - pos: 22.5,8.5 + parent: 34 + type: Transform + - uid: 7692 + components: + - pos: 21.5,8.5 + parent: 34 + type: Transform + - uid: 7693 + components: + - pos: 20.5,8.5 + parent: 34 + type: Transform + - uid: 7694 + components: + - pos: 19.5,8.5 + parent: 34 + type: Transform + - uid: 7695 + components: + - pos: 18.5,8.5 + parent: 34 + type: Transform + - uid: 7696 + components: + - pos: 17.5,8.5 + parent: 34 + type: Transform + - uid: 7697 + components: + - pos: 16.5,8.5 + parent: 34 + type: Transform + - uid: 7698 + components: + - pos: 22.5,5.5 + parent: 34 + type: Transform + - uid: 7699 + components: + - pos: 22.5,4.5 + parent: 34 + type: Transform + - uid: 7700 + components: + - pos: 22.5,3.5 + parent: 34 + type: Transform + - uid: 7712 + components: + - pos: 33.5,-16.5 + parent: 34 + type: Transform + - uid: 7713 + components: + - pos: 33.5,-17.5 + parent: 34 + type: Transform + - uid: 7714 + components: + - pos: 33.5,-18.5 + parent: 34 + type: Transform + - uid: 7715 + components: + - pos: 33.5,-19.5 + parent: 34 + type: Transform + - uid: 7716 + components: + - pos: 33.5,-40.5 + parent: 34 + type: Transform + - uid: 7717 + components: + - pos: 32.5,-40.5 + parent: 34 + type: Transform + - uid: 7718 + components: + - pos: 31.5,-39.5 + parent: 34 + type: Transform + - uid: 7722 + components: + - pos: 29.5,-41.5 + parent: 34 + type: Transform + - uid: 7723 + components: + - pos: 28.5,-41.5 + parent: 34 + type: Transform + - uid: 7724 + components: + - pos: 27.5,-41.5 + parent: 34 + type: Transform + - uid: 7725 + components: + - pos: 26.5,-41.5 + parent: 34 + type: Transform + - uid: 7726 + components: + - pos: 25.5,-41.5 + parent: 34 + type: Transform + - uid: 7727 + components: + - pos: 24.5,-41.5 + parent: 34 + type: Transform + - uid: 7728 + components: + - pos: 23.5,-41.5 + parent: 34 + type: Transform + - uid: 7729 + components: + - pos: 22.5,-41.5 + parent: 34 + type: Transform + - uid: 7730 + components: + - pos: 21.5,-41.5 + parent: 34 + type: Transform + - uid: 7731 + components: + - pos: 20.5,-41.5 + parent: 34 + type: Transform + - uid: 7732 + components: + - pos: 19.5,-41.5 + parent: 34 + type: Transform + - uid: 7733 + components: + - pos: 18.5,-41.5 + parent: 34 + type: Transform + - uid: 7736 + components: + - pos: 15.5,-41.5 + parent: 34 + type: Transform + - uid: 7737 + components: + - pos: 14.5,-41.5 + parent: 34 + type: Transform + - uid: 7739 + components: + - pos: 13.5,-41.5 + parent: 34 + type: Transform + - uid: 7743 + components: + - pos: 12.5,-44.5 + parent: 34 + type: Transform + - uid: 7744 + components: + - pos: 11.5,-44.5 + parent: 34 + type: Transform + - uid: 7745 + components: + - pos: 10.5,-44.5 + parent: 34 + type: Transform + - uid: 7746 + components: + - pos: 9.5,-44.5 + parent: 34 + type: Transform + - uid: 7747 + components: + - pos: 8.5,-44.5 + parent: 34 + type: Transform + - uid: 7749 + components: + - pos: 6.5,-44.5 + parent: 34 + type: Transform + - uid: 7750 + components: + - pos: 5.5,-44.5 + parent: 34 + type: Transform + - uid: 7753 + components: + - pos: 3.5,-45.5 + parent: 34 + type: Transform + - uid: 7757 + components: + - pos: -19.5,-13.5 + parent: 34 + type: Transform + - uid: 7758 + components: + - pos: -18.5,-13.5 + parent: 34 + type: Transform + - uid: 7759 + components: + - pos: -17.5,-13.5 + parent: 34 + type: Transform + - uid: 7761 + components: + - pos: -41.5,-12.5 + parent: 34 + type: Transform + - uid: 7762 + components: + - pos: -42.5,-12.5 + parent: 34 + type: Transform + - uid: 7763 + components: + - pos: -43.5,-12.5 + parent: 34 + type: Transform + - uid: 7764 + components: + - pos: -44.5,-12.5 + parent: 34 + type: Transform + - uid: 7765 + components: + - pos: -45.5,-12.5 + parent: 34 + type: Transform + - uid: 7766 + components: + - pos: -46.5,-12.5 + parent: 34 + type: Transform + - uid: 7768 + components: + - pos: -47.5,-12.5 + parent: 34 + type: Transform + - uid: 7769 + components: + - pos: -48.5,-12.5 + parent: 34 + type: Transform + - uid: 7770 + components: + - pos: -49.5,-12.5 + parent: 34 + type: Transform + - uid: 7771 + components: + - pos: -50.5,-12.5 + parent: 34 + type: Transform + - uid: 7772 + components: + - pos: -51.5,-12.5 + parent: 34 + type: Transform + - uid: 7773 + components: + - pos: -52.5,-12.5 + parent: 34 + type: Transform + - uid: 7774 + components: + - pos: -53.5,-12.5 + parent: 34 + type: Transform + - uid: 7775 + components: + - pos: -53.5,-11.5 + parent: 34 + type: Transform + - uid: 7776 + components: + - pos: -53.5,-10.5 + parent: 34 + type: Transform + - uid: 7777 + components: + - pos: -53.5,-9.5 + parent: 34 + type: Transform + - uid: 7778 + components: + - pos: -53.5,-8.5 + parent: 34 + type: Transform + - uid: 7779 + components: + - pos: -53.5,-7.5 + parent: 34 + type: Transform + - uid: 7781 + components: + - pos: -53.5,-5.5 + parent: 34 + type: Transform + - uid: 7782 + components: + - pos: -53.5,-4.5 + parent: 34 + type: Transform + - uid: 7783 + components: + - pos: -53.5,-3.5 + parent: 34 + type: Transform + - uid: 7784 + components: + - pos: -53.5,-2.5 + parent: 34 + type: Transform + - uid: 7785 + components: + - pos: -53.5,-1.5 + parent: 34 + type: Transform + - uid: 7786 + components: + - pos: -53.5,-0.5 + parent: 34 + type: Transform + - uid: 7787 + components: + - pos: -53.5,0.5 + parent: 34 + type: Transform + - uid: 7788 + components: + - pos: -53.5,1.5 + parent: 34 + type: Transform + - uid: 7789 + components: + - pos: -54.5,1.5 + parent: 34 + type: Transform + - uid: 7790 + components: + - pos: -54.5,-4.5 + parent: 34 + type: Transform + - uid: 7791 + components: + - pos: -56.5,-4.5 + parent: 34 + type: Transform + - uid: 7792 + components: + - pos: -56.5,-5.5 + parent: 34 + type: Transform + - uid: 7793 + components: + - pos: -54.5,3.5 + parent: 34 + type: Transform + - uid: 7794 + components: + - pos: -41.5,2.5 + parent: 34 + type: Transform + - uid: 7795 + components: + - pos: -41.5,3.5 + parent: 34 + type: Transform + - uid: 7796 + components: + - pos: -41.5,4.5 + parent: 34 + type: Transform + - uid: 7797 + components: + - pos: -42.5,4.5 + parent: 34 + type: Transform + - uid: 7799 + components: + - pos: -46.5,4.5 + parent: 34 + type: Transform + - uid: 7800 + components: + - pos: -45.5,4.5 + parent: 34 + type: Transform + - uid: 7801 + components: + - pos: -44.5,4.5 + parent: 34 + type: Transform + - uid: 7802 + components: + - pos: -47.5,4.5 + parent: 34 + type: Transform + - uid: 8007 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-45.5 + parent: 34 + type: Transform + - uid: 8193 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-43.5 + parent: 34 + type: Transform + - uid: 8250 + components: + - pos: -41.5,5.5 + parent: 34 + type: Transform + - uid: 8929 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-37.5 + parent: 34 + type: Transform + - uid: 8939 + components: + - pos: 36.5,-16.5 + parent: 34 + type: Transform + - uid: 9111 + components: + - pos: 34.5,-16.5 + parent: 34 + type: Transform + - uid: 9330 + components: + - pos: 25.5,-46.5 + parent: 34 + type: Transform + - uid: 9331 + components: + - pos: 26.5,-46.5 + parent: 34 + type: Transform + - uid: 9332 + components: + - pos: 26.5,-45.5 + parent: 34 + type: Transform + - uid: 9333 + components: + - pos: 26.5,-44.5 + parent: 34 + type: Transform + - uid: 9334 + components: + - pos: 25.5,-44.5 + parent: 34 + type: Transform + - uid: 9335 + components: + - pos: 24.5,-44.5 + parent: 34 + type: Transform + - uid: 9336 + components: + - pos: 24.5,-45.5 + parent: 34 + type: Transform + - uid: 9337 + components: + - pos: 24.5,-46.5 + parent: 34 + type: Transform + - uid: 9349 + components: + - pos: 35.5,-44.5 + parent: 34 + type: Transform + - uid: 9350 + components: + - pos: 35.5,-43.5 + parent: 34 + type: Transform + - uid: 9351 + components: + - pos: 36.5,-45.5 + parent: 34 + type: Transform + - uid: 9352 + components: + - pos: 36.5,-44.5 + parent: 34 + type: Transform + - uid: 9353 + components: + - pos: 36.5,-43.5 + parent: 34 + type: Transform + - uid: 9354 + components: + - pos: 33.5,-45.5 + parent: 34 + type: Transform + - uid: 9384 + components: + - pos: -33.5,-45.5 + parent: 34 + type: Transform + - uid: 10101 + components: + - pos: 31.5,-40.5 + parent: 34 + type: Transform + - uid: 10102 + components: + - pos: 29.5,-40.5 + parent: 34 + type: Transform + - uid: 10119 + components: + - pos: -36.5,-58.5 + parent: 34 + type: Transform + - uid: 10262 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-45.5 + parent: 34 + type: Transform + - uid: 10520 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-34.5 + parent: 34 + type: Transform + - uid: 10521 + components: + - rot: 3.141592653589793 rad + pos: -46.5,-34.5 + parent: 34 + type: Transform + - uid: 10721 + components: + - pos: -17.5,-30.5 + parent: 34 + type: Transform + - uid: 10994 + components: + - pos: -15.5,-30.5 + parent: 34 + type: Transform + - uid: 11031 + components: + - rot: 3.141592653589793 rad + pos: -48.5,-34.5 + parent: 34 + type: Transform + - uid: 11033 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-34.5 + parent: 34 + type: Transform + - uid: 11035 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-34.5 + parent: 34 + type: Transform + - uid: 11235 + components: + - pos: 16.5,-44.5 + parent: 34 + type: Transform + - uid: 11236 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-41.5 + parent: 34 + type: Transform + - uid: 11257 + components: + - pos: -47.5,-38.5 + parent: 34 + type: Transform + - uid: 11554 + components: + - pos: -28.5,-41.5 + parent: 34 + type: Transform + - uid: 11605 + components: + - pos: -47.5,-13.5 + parent: 34 + type: Transform + - uid: 11620 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-38.5 + parent: 34 + type: Transform + - uid: 11638 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-38.5 + parent: 34 + type: Transform + - uid: 11686 + components: + - pos: 36.5,-15.5 + parent: 34 + type: Transform + - uid: 11769 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-35.5 + parent: 34 + type: Transform + - uid: 11842 + components: + - pos: -29.5,-53.5 + parent: 34 + type: Transform + - uid: 12077 + components: + - pos: -29.5,-58.5 + parent: 34 + type: Transform + - uid: 12078 + components: + - pos: -29.5,-59.5 + parent: 34 + type: Transform + - uid: 12085 + components: + - pos: -38.5,-58.5 + parent: 34 + type: Transform + - uid: 12186 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-18.5 + parent: 34 + type: Transform + - uid: 12234 + components: + - pos: -35.5,-36.5 + parent: 34 + type: Transform + - uid: 12235 + components: + - pos: -34.5,-36.5 + parent: 34 + type: Transform + - uid: 12248 + components: + - pos: -27.5,-41.5 + parent: 34 + type: Transform + - uid: 12249 + components: + - pos: -27.5,-42.5 + parent: 34 + type: Transform + - uid: 12293 + components: + - pos: -29.5,-55.5 + parent: 34 + type: Transform + - uid: 12294 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-42.5 + parent: 34 + type: Transform + - uid: 12296 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-45.5 + parent: 34 + type: Transform + - uid: 12297 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-46.5 + parent: 34 + type: Transform + - uid: 12298 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-47.5 + parent: 34 + type: Transform + - uid: 12299 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-48.5 + parent: 34 + type: Transform + - uid: 12339 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-49.5 + parent: 34 + type: Transform + - uid: 12340 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-52.5 + parent: 34 + type: Transform + - uid: 12377 + components: + - pos: -53.5,-38.5 + parent: 34 + type: Transform + - uid: 12384 + components: + - pos: -53.5,-39.5 + parent: 34 + type: Transform + - uid: 12390 + components: + - pos: 36.5,-12.5 + parent: 34 + type: Transform + - uid: 12391 + components: + - pos: 36.5,-11.5 + parent: 34 + type: Transform + - uid: 12404 + components: + - pos: -53.5,-40.5 + parent: 34 + type: Transform + - uid: 12431 + components: + - pos: 35.5,-16.5 + parent: 34 + type: Transform + - uid: 12446 + components: + - pos: -29.5,-54.5 + parent: 34 + type: Transform + - uid: 12455 + components: + - pos: -32.5,-58.5 + parent: 34 + type: Transform + - uid: 12470 + components: + - pos: -35.5,-58.5 + parent: 34 + type: Transform + - uid: 12473 + components: + - pos: -34.5,-58.5 + parent: 34 + type: Transform + - uid: 12474 + components: + - pos: -33.5,-58.5 + parent: 34 + type: Transform + - uid: 12521 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-32.5 + parent: 34 + type: Transform + - uid: 12581 + components: + - pos: -50.5,-26.5 + parent: 34 + type: Transform + - uid: 12582 + components: + - pos: -51.5,-26.5 + parent: 34 + type: Transform + - uid: 12583 + components: + - pos: -53.5,-26.5 + parent: 34 + type: Transform + - uid: 12584 + components: + - pos: -52.5,-26.5 + parent: 34 + type: Transform + - uid: 12585 + components: + - pos: -50.5,-25.5 + parent: 34 + type: Transform + - uid: 12586 + components: + - pos: -51.5,-25.5 + parent: 34 + type: Transform + - uid: 12587 + components: + - pos: -52.5,-25.5 + parent: 34 + type: Transform + - uid: 12588 + components: + - pos: -53.5,-25.5 + parent: 34 + type: Transform + - uid: 12589 + components: + - pos: -51.5,-27.5 + parent: 34 + type: Transform + - uid: 12590 + components: + - pos: -51.5,-28.5 + parent: 34 + type: Transform + - uid: 12591 + components: + - pos: -51.5,-29.5 + parent: 34 + type: Transform + - uid: 12592 + components: + - pos: -51.5,-30.5 + parent: 34 + type: Transform + - uid: 12593 + components: + - pos: -51.5,-31.5 + parent: 34 + type: Transform + - uid: 12594 + components: + - pos: -51.5,-32.5 + parent: 34 + type: Transform + - uid: 12595 + components: + - pos: -51.5,-33.5 + parent: 34 + type: Transform + - uid: 12596 + components: + - pos: -51.5,-34.5 + parent: 34 + type: Transform + - uid: 12597 + components: + - pos: -51.5,-35.5 + parent: 34 + type: Transform + - uid: 12599 + components: + - pos: -53.5,-35.5 + parent: 34 + type: Transform + - uid: 12600 + components: + - pos: -53.5,-36.5 + parent: 34 + type: Transform + - uid: 12605 + components: + - pos: -50.5,-33.5 + parent: 34 + type: Transform + - uid: 12645 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,-33.5 + parent: 34 + type: Transform + - uid: 12688 + components: + - pos: -39.5,-58.5 + parent: 34 + type: Transform + - uid: 12740 + components: + - pos: -47.5,-42.5 + parent: 34 + type: Transform + - uid: 12791 + components: + - pos: -46.5,-42.5 + parent: 34 + type: Transform +- proto: Chair + entities: + - uid: 1960 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-18.5 + parent: 34 + type: Transform + - uid: 2019 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,1.5 + parent: 34 + type: Transform + - uid: 2500 + components: + - pos: -28.5,-7.5 + parent: 34 + type: Transform + - uid: 2716 + components: + - pos: -14.5,-14.5 + parent: 34 + type: Transform + - uid: 2717 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-16.5 + parent: 34 + type: Transform + - uid: 2721 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-20.5 + parent: 34 + type: Transform + - uid: 2722 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-22.5 + parent: 34 + type: Transform + - uid: 2723 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-22.5 + parent: 34 + type: Transform + - uid: 2937 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-31.5 + parent: 34 + type: Transform + - uid: 2938 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-32.5 + parent: 34 + type: Transform + - uid: 3637 + components: + - pos: 27.5,-5.5 + parent: 34 + type: Transform + - uid: 3755 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-11.5 + parent: 34 + type: Transform + - uid: 3760 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-11.5 + parent: 34 + type: Transform + - uid: 3874 + components: + - pos: 13.5,-26.5 + parent: 34 + type: Transform + - uid: 3877 + components: + - pos: 12.5,-27.5 + parent: 34 + type: Transform + - uid: 3878 + components: + - pos: 14.5,-26.5 + parent: 34 + type: Transform + - uid: 3879 + components: + - pos: 13.5,-27.5 + parent: 34 + type: Transform + - uid: 3880 + components: + - pos: 14.5,-27.5 + parent: 34 + type: Transform + - uid: 3904 + components: + - pos: 14.5,-29.5 + parent: 34 + type: Transform + - uid: 3905 + components: + - pos: 13.5,-29.5 + parent: 34 + type: Transform + - uid: 3906 + components: + - pos: 16.5,-29.5 + parent: 34 + type: Transform + - uid: 3907 + components: + - pos: 17.5,-29.5 + parent: 34 + type: Transform + - uid: 3912 + components: + - pos: 12.5,-26.5 + parent: 34 + type: Transform + - uid: 3913 + components: + - pos: 16.5,-27.5 + parent: 34 + type: Transform + - uid: 3914 + components: + - pos: 17.5,-27.5 + parent: 34 + type: Transform + - uid: 3915 + components: + - pos: 18.5,-27.5 + parent: 34 + type: Transform + - uid: 3916 + components: + - pos: 18.5,-26.5 + parent: 34 + type: Transform + - uid: 3917 + components: + - pos: 17.5,-26.5 + parent: 34 + type: Transform + - uid: 3918 + components: + - pos: 16.5,-26.5 + parent: 34 + type: Transform + - uid: 3965 + components: + - pos: -10.5,-45.5 + parent: 34 + type: Transform + - uid: 3966 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-47.5 + parent: 34 + type: Transform + - uid: 4051 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-48.5 + parent: 34 + type: Transform + - uid: 4061 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-48.5 + parent: 34 + type: Transform + - uid: 4107 + components: + - pos: 4.5,-47.5 + parent: 34 + type: Transform + - uid: 4108 + components: + - pos: 1.5,-47.5 + parent: 34 + type: Transform + - uid: 4109 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-50.5 + parent: 34 + type: Transform + - uid: 4110 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-50.5 + parent: 34 + type: Transform + - uid: 4111 + components: + - pos: 5.5,-47.5 + parent: 34 + type: Transform + - uid: 4112 + components: + - pos: 2.5,-47.5 + parent: 34 + type: Transform + - uid: 4113 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-49.5 + parent: 34 + type: Transform + - uid: 4114 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-50.5 + parent: 34 + type: Transform + - uid: 4116 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-50.5 + parent: 34 + type: Transform + - uid: 4117 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-50.5 + parent: 34 + type: Transform + - uid: 4121 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-50.5 + parent: 34 + type: Transform + - uid: 4122 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-49.5 + parent: 34 + type: Transform + - uid: 4162 + components: + - pos: 11.5,-47.5 + parent: 34 + type: Transform + - uid: 4729 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,3.5 + parent: 34 + type: Transform + - uid: 4730 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,3.5 + parent: 34 + type: Transform + - uid: 4731 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,6.5 + parent: 34 + type: Transform + - uid: 4732 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,6.5 + parent: 34 + type: Transform + - uid: 4887 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-18.5 + parent: 34 + type: Transform + - uid: 4888 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-19.5 + parent: 34 + type: Transform + - uid: 4906 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-19.5 + parent: 34 + type: Transform + - uid: 6187 + components: + - rot: 3.141592653589793 rad + pos: 5.5,13.5 + parent: 34 + type: Transform + - uid: 6188 + components: + - rot: 3.141592653589793 rad + pos: 6.5,13.5 + parent: 34 + type: Transform + - uid: 6189 + components: + - rot: 3.141592653589793 rad + pos: 7.5,13.5 + parent: 34 + type: Transform + - uid: 6194 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,14.5 + parent: 34 + type: Transform + - uid: 6195 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,15.5 + parent: 34 + type: Transform + - uid: 6208 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,1.5 + parent: 34 + type: Transform + - uid: 6209 + components: + - pos: 10.5,3.5 + parent: 34 + type: Transform + - uid: 6211 + components: + - pos: 11.5,3.5 + parent: 34 + type: Transform + - uid: 7051 + components: + - pos: 9.5,-47.5 + parent: 34 + type: Transform + - uid: 10256 + components: + - pos: -57.5,-5.5 + parent: 34 + type: Transform + - uid: 10352 + components: + - pos: 25.5,-22.5 + parent: 34 + type: Transform + - uid: 10353 + components: + - pos: 27.5,-22.5 + parent: 34 + type: Transform + - uid: 10543 + components: + - pos: -14.5,-18.5 + parent: 34 + type: Transform + - uid: 11076 + components: + - pos: 17.5,-12.5 + parent: 34 + type: Transform + - uid: 11077 + components: + - pos: 18.5,-12.5 + parent: 34 + type: Transform + - uid: 11078 + components: + - pos: 19.5,-12.5 + parent: 34 + type: Transform + - uid: 11351 + components: + - rot: 3.141592653589793 rad + pos: -28.5,-9.5 + parent: 34 + type: Transform +- proto: ChairCursed + entities: + - uid: 11273 + components: + - pos: 26.5,12.5 + parent: 34 + type: Transform +- proto: ChairFolding + entities: + - uid: 127 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-32.5 + parent: 34 + type: Transform + - uid: 981 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-19.5 + parent: 34 + type: Transform + - uid: 995 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-19.5 + parent: 34 + type: Transform + - uid: 1272 + components: + - rot: 3.141592653589793 rad + pos: 48.5,-4.5 + parent: 34 + type: Transform + - uid: 1822 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,-3.5 + parent: 34 + type: Transform + - uid: 2351 + components: + - pos: -46.333908,-26.566626 + parent: 34 + type: Transform + - uid: 2727 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-17.5 + parent: 34 + type: Transform + - uid: 2729 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-15.5 + parent: 34 + type: Transform + - uid: 2730 + components: + - pos: -9.5,-13.5 + parent: 34 + type: Transform + - uid: 2731 + components: + - pos: -8.5,-13.5 + parent: 34 + type: Transform + - uid: 2732 + components: + - pos: -7.5,-13.5 + parent: 34 + type: Transform + - uid: 2733 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-15.5 + parent: 34 + type: Transform + - uid: 2734 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-16.5 + parent: 34 + type: Transform + - uid: 2735 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-17.5 + parent: 34 + type: Transform + - uid: 3620 + components: + - pos: 18.563585,-6.5362997 + parent: 34 + type: Transform + - uid: 3621 + components: + - rot: -1.5707963267948966 rad + pos: 19.324001,-7.370212 + parent: 34 + type: Transform + - uid: 3623 + components: + - rot: 1.5707963267948966 rad + pos: 17.740667,-7.140886 + parent: 34 + type: Transform + - uid: 3814 + components: + - pos: 8.374117,-19.598059 + parent: 34 + type: Transform + - uid: 4690 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-19.5 + parent: 34 + type: Transform + - uid: 5560 + components: + - rot: -1.5707963267948966 rad + pos: -17.742748,4.1959763 + parent: 34 + type: Transform + - uid: 5884 + components: + - rot: -1.5707963267948966 rad + pos: -54.790936,0.4281931 + parent: 34 + type: Transform + - uid: 5885 + components: + - pos: -55.259686,1.3976164 + parent: 34 + type: Transform + - uid: 5887 + components: + - rot: 1.5707963267948966 rad + pos: -56.259686,0.80345345 + parent: 34 + type: Transform + - uid: 5888 + components: + - rot: -1.5707963267948966 rad + pos: -51.040936,5.9476514 + parent: 34 + type: Transform + - uid: 5889 + components: + - pos: -52.43156,8.7151985 + parent: 34 + type: Transform + - uid: 5890 + components: + - rot: 1.5707963267948966 rad + pos: -57.447186,7.3705144 + parent: 34 + type: Transform + - uid: 5891 + components: + - rot: 1.5707963267948966 rad + pos: -57.353436,6.2134614 + parent: 34 + type: Transform + - uid: 10267 + components: + - pos: 18.5,-19.5 + parent: 34 + type: Transform + - uid: 10268 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-17.5 + parent: 34 + type: Transform + - uid: 10362 + components: + - rot: -1.5707963267948966 rad + pos: 20.565855,-30.782606 + parent: 34 + type: Transform + - uid: 10363 + components: + - rot: -1.5707963267948966 rad + pos: 20.33148,-30.032084 + parent: 34 + type: Transform + - uid: 10364 + components: + - rot: -1.5707963267948966 rad + pos: 20.58148,-28.828123 + parent: 34 + type: Transform + - uid: 10827 + components: + - rot: 3.141592653589793 rad + pos: -0.67162466,-18.190395 + parent: 34 + type: Transform + - uid: 10839 + components: + - rot: 1.5707963267948966 rad + pos: -38.410248,-27.462744 + parent: 34 + type: Transform + - uid: 10991 + components: + - rot: 1.5707963267948966 rad + pos: -0.5260153,6.661799 + parent: 34 + type: Transform + - uid: 11087 + components: + - rot: -1.5707963267948966 rad + pos: 2.6408753,-18.398872 + parent: 34 + type: Transform + - uid: 11209 + components: + - rot: 3.141592653589793 rad + pos: 21.024513,12.558414 + parent: 34 + type: Transform + - uid: 11304 + components: + - rot: -1.5707963267948966 rad + pos: -41.74558,10.41687 + parent: 34 + type: Transform + - uid: 11481 + components: + - rot: -1.5707963267948966 rad + pos: -36.712334,-27.431473 + parent: 34 + type: Transform + - uid: 11524 + components: + - rot: -1.5707963267948966 rad + pos: -45.79224,-27.410961 + parent: 34 + type: Transform + - uid: 11525 + components: + - rot: 1.5707963267948966 rad + pos: -47.281826,-27.129517 + parent: 34 + type: Transform + - uid: 11705 + components: + - rot: 1.5707963267948966 rad + pos: -46.264496,-14.438301 + parent: 34 + type: Transform + - uid: 11706 + components: + - pos: -45.295746,-13.520996 + parent: 34 + type: Transform + - uid: 11812 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-19.5 + parent: 34 + type: Transform + - uid: 11927 + components: + - rot: 1.5707963267948966 rad + pos: -1.6718488,4.7750707 + parent: 34 + type: Transform + - uid: 11928 + components: + - rot: 1.5707963267948966 rad + pos: -1.5155988,5.6715274 + parent: 34 + type: Transform + - uid: 11929 + components: + - rot: 1.5707963267948966 rad + pos: -1.505182,6.661799 + parent: 34 + type: Transform + - uid: 11930 + components: + - rot: 1.5707963267948966 rad + pos: -0.5260153,4.7542233 + parent: 34 + type: Transform + - uid: 11931 + components: + - rot: 1.5707963267948966 rad + pos: -0.598932,5.6819506 + parent: 34 + type: Transform + - uid: 12171 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-17.5 + parent: 34 + type: Transform + - uid: 12270 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-32.5 + parent: 34 + type: Transform + - uid: 12357 + components: + - rot: -1.5707963267948966 rad + pos: 50.5,-3.5 + parent: 34 + type: Transform + - uid: 12359 + components: + - pos: 49.5,-2.5 + parent: 34 + type: Transform +- proto: ChairFoldingSpawnFolded + entities: + - uid: 8120 + components: + - pos: 23.479801,5.683676 + parent: 34 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 221 + components: + - pos: -10.5,2.5 + parent: 34 + type: Transform + - uid: 1887 + components: + - pos: -14.154241,-26.476912 + parent: 34 + type: Transform + - uid: 1908 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-25.5 + parent: 34 + type: Transform + - uid: 1959 + components: + - pos: -18.434877,-19.284468 + parent: 34 + type: Transform + - uid: 2022 + components: + - rot: 3.141592653589793 rad + pos: -32.12718,2.892284 + parent: 34 + type: Transform + - uid: 2251 + components: + - rot: 3.141592653589793 rad + pos: -51.63605,-7.0745425 + parent: 34 + type: Transform + - uid: 2312 + components: + - pos: -21.721905,-26.55226 + parent: 34 + type: Transform + - uid: 2633 + components: + - rot: -1.5707963267948966 rad + pos: -25.627985,-30.857965 + parent: 34 + type: Transform + - uid: 3543 + components: + - rot: 3.141592653589793 rad + pos: 26.946102,-7.2489953 + parent: 34 + type: Transform + - uid: 3747 + components: + - rot: -1.5707963267948966 rad + pos: 25.621107,0.18286085 + parent: 34 + type: Transform + - uid: 3756 + components: + - pos: 29.624441,-9.429204 + parent: 34 + type: Transform + - uid: 4917 + components: + - pos: 22.811316,-14.405392 + parent: 34 + type: Transform + - uid: 5424 + components: + - rot: -1.5707963267948966 rad + pos: 29.440224,-44.51749 + parent: 34 + type: Transform + - uid: 5793 + components: + - pos: -21.684896,2.682335 + parent: 34 + type: Transform + - uid: 6123 + components: + - pos: 10.5,8.5 + parent: 34 + type: Transform + - uid: 7407 + components: + - pos: 18.5,-38.5 + parent: 34 + type: Transform + - uid: 11258 + components: + - rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 34 + type: Transform + - uid: 11312 + components: + - rot: 3.141592653589793 rad + pos: 10.5,6.5 + parent: 34 + type: Transform + - uid: 12250 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,-31.5 + parent: 34 + type: Transform + - uid: 12263 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-32.5 + parent: 34 + type: Transform + - uid: 12383 + components: + - pos: 41.5,-17.5 + parent: 34 + type: Transform +- proto: ChairOfficeLight + entities: + - uid: 2698 + components: + - rot: -1.5707963267948966 rad + pos: -0.7001817,-27.57642 + parent: 34 + type: Transform + - uid: 2703 + components: + - pos: 0.8623183,-28.4833 + parent: 34 + type: Transform + - uid: 7100 + components: + - pos: -35.240707,2.4782186 + parent: 34 + type: Transform + - uid: 9032 + components: + - pos: 1.5,-42.5 + parent: 34 + type: Transform + - uid: 10533 + components: + - rot: -1.5707963267948966 rad + pos: -34.66204,-18.706656 + parent: 34 + type: Transform + - uid: 11116 + components: + - rot: -1.5707963267948966 rad + pos: 31.41989,-35.72274 + parent: 34 + type: Transform + - uid: 11117 + components: + - rot: 1.5707963267948966 rad + pos: 33.711555,-34.054916 + parent: 34 + type: Transform +- proto: ChairRitual + entities: + - uid: 2290 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-16.5 + parent: 34 + type: Transform + - uid: 2293 + components: + - rot: 3.141592653589793 rad + pos: -28.5,-16.5 + parent: 34 + type: Transform + - uid: 2294 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-16.5 + parent: 34 + type: Transform + - uid: 2295 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-16.5 + parent: 34 + type: Transform + - uid: 2296 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-17.5 + parent: 34 + type: Transform + - uid: 2297 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-17.5 + parent: 34 + type: Transform + - uid: 2298 + components: + - rot: 3.141592653589793 rad + pos: -28.5,-17.5 + parent: 34 + type: Transform + - uid: 2299 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-17.5 + parent: 34 + type: Transform + - uid: 2535 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-15.5 + parent: 34 + type: Transform + - uid: 2536 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-15.5 + parent: 34 + type: Transform + - uid: 2537 + components: + - rot: 3.141592653589793 rad + pos: -28.5,-15.5 + parent: 34 + type: Transform + - uid: 2538 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-15.5 + parent: 34 + type: Transform + - uid: 4969 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,10.5 + parent: 34 + type: Transform + - uid: 11270 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,11.5 + parent: 34 + type: Transform + - uid: 11271 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,10.5 + parent: 34 + type: Transform + - uid: 11272 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,11.5 + parent: 34 + type: Transform +- proto: ChairWood + entities: + - uid: 759 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 34 + type: Transform + - uid: 763 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 34 + type: Transform + - uid: 764 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 34 + type: Transform + - uid: 765 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 34 + type: Transform + - uid: 766 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 34 + type: Transform + - uid: 767 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 34 + type: Transform + - uid: 768 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 34 + type: Transform + - uid: 769 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 34 + type: Transform + - uid: 2180 + components: + - rot: 3.141592653589793 rad + pos: -43.600483,-7.2082725 + parent: 34 + type: Transform + - uid: 2182 + components: + - pos: -43.329647,-5.8531647 + parent: 34 + type: Transform + - uid: 2932 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-40.5 + parent: 34 + type: Transform + - uid: 3293 + components: + - rot: 3.141592653589793 rad + pos: -39.71118,-17.97071 + parent: 34 + type: Transform + - uid: 3294 + components: + - pos: -39.388264,-16.844929 + parent: 34 + type: Transform + - uid: 3363 + components: + - pos: -32.70509,-14.717291 + parent: 34 + type: Transform + - uid: 4342 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-11.5 + parent: 34 + type: Transform + - uid: 5038 + components: + - pos: 20.362005,5.318599 + parent: 34 + type: Transform + - uid: 5039 + components: + - rot: 3.141592653589793 rad + pos: 20.580755,3.7393775 + parent: 34 + type: Transform + - uid: 5040 + components: + - rot: -1.5707963267948966 rad + pos: 18.40888,3.4110246 + parent: 34 + type: Transform + - uid: 5041 + components: + - pos: 17.50263,4.349176 + parent: 34 + type: Transform + - uid: 5042 + components: + - rot: 1.5707963267948966 rad + pos: 16.705755,3.5048404 + parent: 34 + type: Transform + - uid: 5844 + components: + - rot: 1.5707963267948966 rad + pos: -44.298447,2.4496703 + parent: 34 + type: Transform + - uid: 5846 + components: + - rot: -1.5707963267948966 rad + pos: -49.38629,2.56675 + parent: 34 + type: Transform + - uid: 8080 + components: + - rot: -1.5707963267948966 rad + pos: -27.69369,-23.619707 + parent: 34 + type: Transform + - uid: 8081 + components: + - rot: 1.5707963267948966 rad + pos: -29.240564,-23.275719 + parent: 34 + type: Transform + - uid: 11500 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,-9.5 + parent: 34 + type: Transform + - uid: 11506 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-7.5 + parent: 34 + type: Transform + - uid: 11594 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-33.5 + parent: 34 + type: Transform + - uid: 11598 + components: + - pos: -40.49422,-16.813354 + parent: 34 + type: Transform + - uid: 11599 + components: + - rot: 3.141592653589793 rad + pos: -40.327553,-17.94956 + parent: 34 + type: Transform + - uid: 12796 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,11.5 + parent: 34 + type: Transform + - uid: 12797 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,11.5 + parent: 34 + type: Transform +- proto: CheapLighter + entities: + - uid: 5907 + components: + - rot: 1.5707963267948966 rad + pos: -55.25351,0.80345345 + parent: 34 + type: Transform +- proto: CheapRollerBed + entities: + - uid: 11926 + components: + - pos: -3.5,7.5 + parent: 34 + type: Transform +- proto: CheckerBoard + entities: + - uid: 2195 + components: + - pos: -43.50117,-6.4077773 + parent: 34 + type: Transform + - uid: 10889 + components: + - pos: 25.529667,-39.480995 + parent: 34 + type: Transform +- proto: chem_master + entities: + - uid: 983 + components: + - pos: 1.5,-29.5 + parent: 34 + type: Transform + - uid: 2686 + components: + - pos: -1.5,-28.5 + parent: 34 + type: Transform + - uid: 12338 + components: + - pos: -16.5,-3.5 + parent: 34 + type: Transform +- proto: ChemDispenser + entities: + - uid: 6875 + components: + - pos: -1.5,-27.5 + parent: 34 + type: Transform +- proto: ChemistryHotplate + entities: + - uid: 6538 + components: + - pos: -31.5,-17.5 + parent: 34 + type: Transform + - uid: 11017 + components: + - pos: -0.5,-26.5 + parent: 34 + type: Transform +- proto: ChessBoard + entities: + - uid: 5043 + components: + - pos: 20.496408,4.611505 + parent: 34 + type: Transform +- proto: Cigar + entities: + - uid: 11126 + components: + - pos: 8.780132,-5.6407824 + parent: 34 + type: Transform + - uid: 11127 + components: + - pos: -0.67154604,-12.055826 + parent: 34 + type: Transform +- proto: CigaretteSpent + entities: + - uid: 10835 + components: + - pos: 21.615124,12.340506 + parent: 34 + type: Transform + - uid: 11119 + components: + - pos: -9.852268,2.2797413 + parent: 34 + type: Transform + - uid: 11120 + components: + - pos: -7.9449186,-6.79512 + parent: 34 + type: Transform + - uid: 11121 + components: + - rot: 1.5707963267948966 rad + pos: -7.9136686,-7.0765653 + parent: 34 + type: Transform + - uid: 11122 + components: + - pos: 2.8535097,-7.019148 + parent: 34 + type: Transform + - uid: 11123 + components: + - pos: -0.31632757,-6.0184526 + parent: 34 + type: Transform + - uid: 11124 + components: + - pos: 1.802864,-11.892607 + parent: 34 + type: Transform + - uid: 11139 + components: + - pos: -7.935048,-27.011522 + parent: 34 + type: Transform + - uid: 11140 + components: + - pos: -7.726714,-26.917707 + parent: 34 + type: Transform + - uid: 11141 + components: + - pos: -3.234502,-17.468575 + parent: 34 + type: Transform + - uid: 11142 + components: + - pos: -11.029956,2.251801 + parent: 34 + type: Transform + - uid: 11143 + components: + - pos: -55.229465,3.3780398 + parent: 34 + type: Transform + - uid: 11144 + components: + - pos: -55.177383,-0.041000128 + parent: 34 + type: Transform + - uid: 11145 + components: + - pos: -55.948215,0.0632391 + parent: 34 + type: Transform + - uid: 11146 + components: + - pos: -54.854465,0.9492698 + parent: 34 + type: Transform + - uid: 11242 + components: + - pos: 21.380749,12.059061 + parent: 34 + type: Transform + - uid: 11243 + components: + - rot: -1.5707963267948966 rad + pos: 20.615124,12.090332 + parent: 34 + type: Transform + - uid: 11244 + components: + - pos: 19.422993,-6.7809806 + parent: 34 + type: Transform +- proto: CigarGoldCase + entities: + - uid: 12290 + components: + - pos: -9.76872,2.5444465 + parent: 34 + type: Transform +- proto: CigarGoldSpent + entities: + - uid: 12288 + components: + - pos: -9.29997,2.8881965 + parent: 34 + type: Transform +- proto: CigarSpent + entities: + - uid: 11125 + components: + - pos: 5.7801323,-6.4874673 + parent: 34 + type: Transform + - uid: 11147 + components: + - pos: -56.03155,1.0639327 + parent: 34 + type: Transform + - uid: 11179 + components: + - pos: -51.367073,12.549892 + parent: 34 + type: Transform +- proto: CigPackBlue + entities: + - uid: 5904 + components: + - pos: -56.644135,-1.2761153 + parent: 34 + type: Transform +- proto: CigPackGreen + entities: + - uid: 5905 + components: + - rot: 1.5707963267948966 rad + pos: -56.47226,-1.463746 + parent: 34 + type: Transform +- proto: CircuitImprinter + entities: + - uid: 12277 + components: + - pos: -33.5,-19.5 + parent: 34 + type: Transform +- proto: CleanerDispenser + entities: + - uid: 3387 + components: + - pos: 7.5,-18.5 + parent: 34 + type: Transform +- proto: CloningPod + entities: + - uid: 11225 + components: + - pos: 7.5,-39.5 + parent: 34 + type: Transform +- proto: ClosetBase + entities: + - uid: 2273 + components: + - pos: -30.5,3.5 + parent: 34 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2272 + - 2270 + - 2271 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 10266 + components: + - pos: -1.5,-15.5 + parent: 34 + type: Transform +- proto: ClosetBombFilled + entities: + - uid: 12912 + components: + - pos: 32.5,-1.5 + parent: 34 + type: Transform +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 1303 + components: + - pos: 5.5,-45.5 + parent: 34 + type: Transform + - uid: 1304 + components: + - pos: 24.5,-42.5 + parent: 34 + type: Transform + - uid: 1369 + components: + - pos: 7.5,18.5 + parent: 34 + type: Transform + - uid: 3818 + components: + - pos: 7.5,-11.5 + parent: 34 + type: Transform + - uid: 4161 + components: + - pos: 12.5,-47.5 + parent: 34 + type: Transform + - uid: 8894 + components: + - pos: -20.5,-35.5 + parent: 34 + type: Transform + - uid: 10232 + components: + - pos: 37.5,-25.5 + parent: 34 + type: Transform + - uid: 10246 + components: + - pos: -42.5,-13.5 + parent: 34 + type: Transform + - uid: 10892 + components: + - pos: 33.5,-39.5 + parent: 34 + type: Transform + - uid: 10894 + components: + - pos: 22.5,9.5 + parent: 34 + type: Transform + - uid: 11292 + components: + - pos: 32.5,1.5 + parent: 34 + type: Transform + - uid: 11661 + components: + - pos: -42.5,7.5 + parent: 34 + type: Transform + - uid: 11901 + components: + - pos: 17.5,-22.5 + parent: 34 + type: Transform + - uid: 12111 + components: + - pos: 14.5,-9.5 + parent: 34 + type: Transform + - uid: 12176 + components: + - pos: 4.5,15.5 + parent: 34 + type: Transform +- proto: ClosetFireFilled + entities: + - uid: 3825 + components: + - pos: 7.5,-12.5 + parent: 34 + type: Transform + - uid: 4198 + components: + - pos: 9.5,13.5 + parent: 34 + type: Transform + - uid: 4868 + components: + - pos: 32.5,-19.5 + parent: 34 + type: Transform + - uid: 5282 + components: + - pos: 8.5,-47.5 + parent: 34 + type: Transform + - uid: 6110 + components: + - pos: 2.5,11.5 + parent: 34 + type: Transform + - uid: 6168 + components: + - pos: 11.5,18.5 + parent: 34 + type: Transform + - uid: 7101 + components: + - pos: -37.5,5.5 + parent: 34 + type: Transform + - uid: 10265 + components: + - pos: -41.5,-13.5 + parent: 34 + type: Transform + - uid: 10355 + components: + - pos: 35.5,-25.5 + parent: 34 + type: Transform + - uid: 10895 + components: + - pos: 21.5,9.5 + parent: 34 + type: Transform +- proto: ClosetJanitorFilled + entities: + - uid: 1923 + components: + - pos: 6.5,-17.5 + parent: 34 + type: Transform + - uid: 3727 + components: + - pos: -15.5,2.5 + parent: 34 + type: Transform +- proto: ClosetL3JanitorFilled + entities: + - uid: 230 + components: + - pos: 4.5,-18.5 + parent: 34 + type: Transform +- proto: ClosetL3ScienceFilled + entities: + - uid: 918 + components: + - pos: -26.5,-11.5 + parent: 34 + type: Transform +- proto: ClosetL3SecurityFilled + entities: + - uid: 3721 + components: + - pos: 26.5,-20.5 + parent: 34 + type: Transform +- proto: ClosetL3VirologyFilled + entities: + - uid: 1944 + components: + - pos: 0.5,-35.5 + parent: 34 + type: Transform +- proto: ClosetLegalFilled + entities: + - uid: 11373 + components: + - pos: 16.5,-45.5 + parent: 34 + type: Transform +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 1608 + components: + - pos: -15.5,-29.5 + parent: 34 + type: Transform + - uid: 2329 + components: + - pos: -50.5,-14.5 + parent: 34 + type: Transform + - uid: 4195 + components: + - pos: 5.5,10.5 + parent: 34 + type: Transform + - uid: 4511 + components: + - pos: 37.5,-7.5 + parent: 34 + type: Transform + - uid: 4547 + components: + - pos: 37.5,-10.5 + parent: 34 + type: Transform + - uid: 4759 + components: + - pos: -22.5,-31.5 + parent: 34 + type: Transform + - uid: 9607 + components: + - pos: 14.5,-45.5 + parent: 34 + type: Transform + - uid: 10259 + components: + - pos: -22.5,-17.5 + parent: 34 + type: Transform + - uid: 11353 + components: + - pos: 32.5,0.5 + parent: 34 + type: Transform + - uid: 11660 + components: + - pos: -42.5,8.5 + parent: 34 + type: Transform +- proto: ClosetRadiationSuitFilled + entities: + - uid: 1097 + components: + - pos: -28.5,-27.5 + parent: 34 + type: Transform + - uid: 2522 + components: + - pos: -29.5,-27.5 + parent: 34 + type: Transform + - uid: 3854 + components: + - pos: -25.5,-11.5 + parent: 34 + type: Transform +- proto: ClosetToolFilled + entities: + - uid: 3720 + components: + - pos: 22.5,-20.5 + parent: 34 + type: Transform + - uid: 8113 + components: + - pos: 24.5,5.5 + parent: 34 + type: Transform + - uid: 10257 + components: + - pos: -57.5,-3.5 + parent: 34 + type: Transform +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 2252 + components: + - pos: -44.5,-8.5 + parent: 34 + type: Transform + - uid: 2265 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-2.5 + parent: 34 + type: Transform + - uid: 3275 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-45.5 + parent: 34 + type: Transform + - uid: 8027 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-46.5 + parent: 34 + type: Transform + - uid: 11662 + components: + - pos: -38.5,0.5 + parent: 34 + type: Transform +- proto: ClosetWallFireFilledRandom + entities: + - uid: 2253 + components: + - pos: -48.5,-8.5 + parent: 34 + type: Transform + - uid: 2266 + components: + - rot: 3.141592653589793 rad + pos: -48.5,-2.5 + parent: 34 + type: Transform + - uid: 11998 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-39.5 + parent: 34 + type: Transform +- proto: ClosetWallMaintenanceFilledRandom + entities: + - uid: 1081 + components: + - pos: 3.5,12.5 + parent: 34 + type: Transform + - uid: 4548 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-8.5 + parent: 34 + type: Transform + - uid: 11637 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-33.5 + parent: 34 + type: Transform +- proto: ClothingBackpackDuffel + entities: + - uid: 10525 + components: + - pos: 14.246488,14.886068 + parent: 34 + type: Transform +- proto: ClothingBackpackDuffelChemistry + entities: + - uid: 2681 + components: + - pos: 1.2396619,-26.634832 + parent: 34 + type: Transform +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 8018 + components: + - pos: 8.360569,-26.488272 + parent: 34 + type: Transform +- proto: ClothingBeltChampion + entities: + - uid: 5249 + components: + - pos: 24.365414,-33.605984 + parent: 34 + type: Transform +- proto: ClothingBeltKatanaSheathFilled + entities: + - uid: 1411 + components: + - desc: Two swords! One sheath! Highly cool! + name: daishō + type: MetaData + - pos: 26.41932,-33.46167 + parent: 34 + type: Transform +- proto: ClothingBeltMartialBlack + entities: + - uid: 143 + components: + - pos: -3.7715287,4.4398217 + parent: 34 + type: Transform + - uid: 7656 + components: + - pos: -3.6152787,4.7212677 + parent: 34 + type: Transform + - uid: 7661 + components: + - pos: -3.3652787,4.4398217 + parent: 34 + type: Transform +- proto: ClothingEyesGlasses + entities: + - uid: 3143 + components: + - pos: 5.5123873,-34.314106 + parent: 34 + type: Transform + - uid: 4747 + components: + - pos: 48.340393,-3.2309566 + parent: 34 + type: Transform + - uid: 7986 + components: + - pos: -8.591147,-22.271915 + parent: 34 + type: Transform + - uid: 11097 + components: + - pos: 6.503826,-47.396908 + parent: 34 + type: Transform +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 11082 + components: + - pos: 40.44687,-38.287453 + parent: 34 + type: Transform +- proto: ClothingHandsGlovesBoxingBlue + entities: + - uid: 5877 + components: + - pos: -56.298008,3.567985 + parent: 34 + type: Transform +- proto: ClothingHandsGlovesBoxingRed + entities: + - uid: 5876 + components: + - pos: -56.719883,3.364719 + parent: 34 + type: Transform +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 2696 + components: + - pos: -1.4550788,-36.48648 + parent: 34 + type: Transform + - uid: 8986 + components: + - pos: 9.080664,-26.590204 + parent: 34 + type: Transform +- proto: ClothingHeadHatAnimalHeadslime + entities: + - uid: 11129 + components: + - pos: 4.3164816,-50.59076 + parent: 34 + type: Transform +- proto: ClothingHeadHatBeretCap + entities: + - uid: 12898 + components: + - pos: 25.45382,-29.348913 + parent: 34 + type: Transform +- proto: ClothingHeadHatBowlerHat + entities: + - uid: 2277 + components: + - pos: -47.420444,-4.453449 + parent: 34 + type: Transform +- proto: ClothingHeadHatCone + entities: + - uid: 3742 + components: + - pos: -22.758726,3.360742 + parent: 34 + type: Transform + - uid: 3743 + components: + - pos: -22.31081,3.360742 + parent: 34 + type: Transform + - uid: 3744 + components: + - pos: -22.52956,3.704731 + parent: 34 + type: Transform + - uid: 3745 + components: + - pos: -23.268188,-27.556864 + parent: 34 + type: Transform + - uid: 3746 + components: + - pos: -23.768188,-27.567286 + parent: 34 + type: Transform + - uid: 4284 + components: + - pos: -23.539022,-27.306688 + parent: 34 + type: Transform + - uid: 10230 + components: + - pos: 21.847918,-35.67099 + parent: 34 + type: Transform + - uid: 10231 + components: + - pos: 21.613543,-37.31275 + parent: 34 + type: Transform +- proto: ClothingHeadHatGreensoftFlipped + entities: + - uid: 3862 + components: + - pos: -17.141165,-8.082127 + parent: 34 + type: Transform +- proto: ClothingHeadHatGreysoftFlipped + entities: + - uid: 11081 + components: + - pos: -41.92531,-6.956344 + parent: 34 + type: Transform +- proto: ClothingHeadHatPaper + entities: + - uid: 12129 + components: + - pos: -9.693979,-27.423695 + parent: 34 + type: Transform +- proto: ClothingHeadHatParamedicsoftFlipped + entities: + - uid: 11492 + components: + - pos: 5.4320927,-35.365402 + parent: 34 + type: Transform +- proto: ClothingHeadHatPurplesoftFlipped + entities: + - uid: 5568 + components: + - pos: 4.7426805,-18.214638 + parent: 34 + type: Transform +- proto: ClothingHeadHatPwig + entities: + - uid: 3942 + components: + - pos: 17.36679,-33.301086 + parent: 34 + type: Transform +- proto: ClothingHeadHatSecsoftFlipped + entities: + - uid: 11105 + components: + - pos: 19.88635,-20.1419 + parent: 34 + type: Transform +- proto: ClothingHeadHatSurgcapBlue + entities: + - uid: 8987 + components: + - pos: 8.893164,-26.329607 + parent: 34 + type: Transform +- proto: ClothingHeadHatUshanka + entities: + - uid: 11586 + components: + - pos: -9.611714,-26.883451 + parent: 34 + type: Transform + - uid: 11587 + components: + - pos: -43.477463,2.4802814 + parent: 34 + type: Transform +- proto: ClothingHeadHatYellowsoftFlipped + entities: + - uid: 12156 + components: + - pos: -32.044968,-25.916649 + parent: 34 + type: Transform +- proto: ClothingHeadHelmetEVA + entities: + - uid: 1067 + components: + - pos: 38.516422,-2.6021488 + parent: 34 + type: Transform + - uid: 6965 + components: + - pos: 38.313297,-2.2427738 + parent: 34 + type: Transform + - uid: 10024 + components: + - pos: 38.657047,-2.2740238 + parent: 34 + type: Transform +- proto: ClothingHeadHelmetKendoMen + entities: + - uid: 201 + components: + - pos: -1.458238,8.644569 + parent: 34 + type: Transform + - uid: 266 + components: + - pos: -1.6040713,8.884319 + parent: 34 + type: Transform +- proto: ClothingHeadHelmetRiot + entities: + - uid: 12475 + components: + - pos: 26.226002,-19.658371 + parent: 34 + type: Transform + - uid: 12476 + components: + - pos: 26.538502,-19.783371 + parent: 34 + type: Transform + - uid: 12477 + components: + - pos: 26.835377,-19.642746 + parent: 34 + type: Transform +- proto: ClothingKimonoBlue + entities: + - uid: 2233 + components: + - pos: -46.29961,-6.3338046 + parent: 34 + type: Transform + - uid: 11543 + components: + - pos: 16.928967,-45.71533 + parent: 34 + type: Transform + - uid: 12160 + components: + - pos: -56.65657,-8.265217 + parent: 34 + type: Transform +- proto: ClothingKimonoPink + entities: + - uid: 2232 + components: + - pos: -46.664196,-6.5214357 + parent: 34 + type: Transform + - uid: 11294 + components: + - pos: -56.21907,-8.286066 + parent: 34 + type: Transform + - uid: 11938 + components: + - pos: 35.418346,-41.04132 + parent: 34 + type: Transform +- proto: ClothingKimonoPurple + entities: + - uid: 12018 + components: + - rot: -1.5707963267948966 rad + pos: -50.421227,6.98867 + parent: 34 + type: Transform + - uid: 12159 + components: + - pos: -56.735504,-8.57724 + parent: 34 + type: Transform +- proto: ClothingKimonoSky + entities: + - uid: 12019 + components: + - rot: 1.5707963267948966 rad + pos: -57.337894,5.195757 + parent: 34 + type: Transform + - uid: 12161 + components: + - pos: -56.298004,-8.57724 + parent: 34 + type: Transform +- proto: ClothingMaskBreath + entities: + - uid: 2963 + components: + - pos: 38.391422,-4.570899 + parent: 34 + type: Transform + - uid: 4850 + components: + - pos: 38.625797,-4.305274 + parent: 34 + type: Transform + - uid: 9108 + components: + - pos: 38.313297,-4.305274 + parent: 34 + type: Transform +- proto: ClothingMaskBreathMedical + entities: + - uid: 8983 + components: + - pos: 10.657473,-26.61325 + parent: 34 + type: Transform +- proto: ClothingMaskGas + entities: + - uid: 3816 + components: + - pos: 8.33245,-18.597364 + parent: 34 + type: Transform + - uid: 10907 + components: + - pos: 37.36135,-27.587206 + parent: 34 + type: Transform +- proto: ClothingMaskGasExplorer + entities: + - uid: 11088 + components: + - pos: -23.165615,-6.7525067 + parent: 34 + type: Transform +- proto: ClothingMaskSterile + entities: + - uid: 8988 + components: + - pos: 8.497331,-26.25664 + parent: 34 + type: Transform +- proto: ClothingNeckBling + entities: + - uid: 5253 + components: + - pos: 26.728117,-35.429417 + parent: 34 + type: Transform +- proto: ClothingNeckMantleCap + entities: + - uid: 11021 + components: + - pos: 25.62694,-27.737291 + parent: 34 + type: Transform +- proto: ClothingNeckMantleCE + entities: + - uid: 2484 + components: + - pos: -24.217266,-29.723326 + parent: 34 + type: Transform +- proto: ClothingNeckMantleCMO + entities: + - uid: 11762 + components: + - pos: 9.707951,-32.065105 + parent: 34 + type: Transform +- proto: ClothingNeckMantleHOP + entities: + - uid: 11019 + components: + - pos: -18.673035,-16.724771 + parent: 34 + type: Transform +- proto: ClothingNeckMantleHOS + entities: + - uid: 11020 + components: + - pos: 30.0086,-10.640028 + parent: 34 + type: Transform +- proto: ClothingNeckMantleMystagogue + entities: + - uid: 11049 + components: + - pos: -35.36167,-5.56062 + parent: 34 + type: Transform +- proto: ClothingOuterArmorKendoBogu + entities: + - uid: 161 + components: + - rot: -1.5707963267948966 rad + pos: -2.1353214,8.488211 + parent: 34 + type: Transform + - uid: 204 + components: + - rot: -1.5707963267948966 rad + pos: -2.4165714,8.717537 + parent: 34 + type: Transform +- proto: ClothingOuterArmorRiot + entities: + - uid: 3589 + components: + - pos: 26.505474,-19.430716 + parent: 34 + type: Transform + - uid: 3590 + components: + - pos: 26.7086,-19.22745 + parent: 34 + type: Transform + - uid: 3591 + components: + - pos: 26.317974,-19.22745 + parent: 34 + type: Transform +- proto: ClothingOuterCoatDetective + entities: + - uid: 2270 + components: + - flags: InContainer + type: MetaData + - parent: 2273 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterCoatJensen + entities: + - uid: 11130 + components: + - pos: 7.0981836,13.422745 + parent: 34 + type: Transform +- proto: ClothingOuterHoodieBlack + entities: + - uid: 11172 + components: + - pos: -53.648323,13.706945 + parent: 34 + type: Transform +- proto: ClothingOuterHoodieGrey + entities: + - uid: 3366 + components: + - pos: -50.284447,-6.6377063 + parent: 34 + type: Transform + - uid: 11173 + components: + - pos: -53.335823,13.441137 + parent: 34 + type: Transform +- proto: ClothingOuterRobesJudge + entities: + - uid: 3941 + components: + - pos: 17.450125,-33.60338 + parent: 34 + type: Transform +- proto: ClothingOuterVestHazard + entities: + - uid: 11398 + components: + - pos: 8.771124,-18.63701 + parent: 34 + type: Transform +- proto: ClothingOuterWinterMed + entities: + - uid: 9029 + components: + - pos: -1.6763294,-43.283558 + parent: 34 + type: Transform + - uid: 9031 + components: + - pos: -1.2700794,-43.549183 + parent: 34 + type: Transform +- proto: ClothingShoesBling + entities: + - uid: 5252 + components: + - pos: 26.415617,-35.476326 + parent: 34 + type: Transform +- proto: ClothingShoesBootsLaceup + entities: + - uid: 2275 + components: + - pos: -47.71953,-3.922996 + parent: 34 + type: Transform +- proto: ClothingShoesLeather + entities: + - uid: 3368 + components: + - pos: -50.26882,-7.091146 + parent: 34 + type: Transform +- proto: ClothingShoesSlippers + entities: + - uid: 3367 + components: + - pos: -45.26882,-7.1380534 + parent: 34 + type: Transform +- proto: ClothingShoesTourist + entities: + - uid: 10939 + components: + - pos: -48.775764,1.1938145 + parent: 34 + type: Transform +- proto: ClothingShoesWizard + entities: + - uid: 7654 + components: + - desc: How about you "geta" real shoe?? + name: geta + type: MetaData + - pos: -0.7402786,3.1785288 + parent: 34 + type: Transform + - uid: 7658 + components: + - desc: How about you "geta" real shoe?? + name: geta + type: MetaData + - pos: -0.854862,3.5016704 + parent: 34 + type: Transform + - uid: 7659 + components: + - desc: How about you "geta" real shoe?? + name: geta + type: MetaData + - pos: -0.40694523,3.6580286 + parent: 34 + type: Transform + - uid: 7662 + components: + - desc: How about you "geta" real shoe?? + name: geta + type: MetaData + - pos: -0.3965286,3.36616 + parent: 34 + type: Transform + - uid: 12020 + components: + - desc: How about you "geta" real shoe?? + name: geta + type: MetaData + - pos: -47.218323,-9.130675 + parent: 34 + type: Transform + - uid: 12021 + components: + - desc: How about you "geta" real shoe?? + name: geta + type: MetaData + - pos: -47.072487,-9.339152 + parent: 34 + type: Transform +- proto: ClothingUnderSocksBee + entities: + - uid: 3369 + components: + - pos: -47.789196,-7.7931514 + parent: 34 + type: Transform +- proto: ClothingUnderSocksCoder + entities: + - uid: 3464 + components: + - pos: -27.712547,-36.253307 + parent: 34 + type: Transform +- proto: ClothingUniformJumpskirtDetective + entities: + - uid: 2272 + components: + - flags: InContainer + type: MetaData + - parent: 2273 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitDetective + entities: + - uid: 2271 + components: + - flags: InContainer + type: MetaData + - parent: 2273 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitDetectiveGrey + entities: + - uid: 2274 + components: + - pos: -47.672653,-4.517158 + parent: 34 + type: Transform +- proto: ClothingUniformJumpsuitEngineeringHazard + entities: + - uid: 11400 + components: + - rot: 1.5707963267948966 rad + pos: -57.718834,-4.253128 + parent: 34 + type: Transform +- proto: ClothingUniformJumpsuitPrisoner + entities: + - uid: 3536 + components: + - pos: 17.322996,-10.366264 + parent: 34 + type: Transform + - uid: 3537 + components: + - pos: 17.71883,-10.366264 + parent: 34 + type: Transform + - uid: 3549 + components: + - pos: 17.520914,-10.574743 + parent: 34 + type: Transform +- proto: ClothingUniformJumpsuitTshirtJeans + entities: + - uid: 10938 + components: + - pos: -48.369514,1.6107705 + parent: 34 + type: Transform + - uid: 11174 + components: + - pos: -52.663948,13.675674 + parent: 34 + type: Transform +- proto: ClothingUniformJumpsuitTshirtJeansGray + entities: + - uid: 11175 + components: + - pos: -52.492073,13.456772 + parent: 34 + type: Transform +- proto: ClothingUniformJumpsuitTshirtJeansPeach + entities: + - uid: 11176 + components: + - pos: -52.257698,13.691311 + parent: 34 + type: Transform +- proto: ClothingUniformKendoHakama + entities: + - uid: 149 + components: + - rot: -1.5707963267948966 rad + pos: -3.208238,8.790504 + parent: 34 + type: Transform + - uid: 157 + components: + - rot: -1.5707963267948966 rad + pos: -3.1040714,8.488211 + parent: 34 + type: Transform + - uid: 210 + components: + - rot: -1.5707963267948966 rad + pos: -3.6353214,8.769655 + parent: 34 + type: Transform + - uid: 227 + components: + - rot: -1.5707963267948966 rad + pos: -3.5415714,8.488211 + parent: 34 + type: Transform +- proto: ClothingUniformMartialGi + entities: + - uid: 199 + components: + - rot: -1.5707963267948966 rad + pos: -3.6569455,5.5239077 + parent: 34 + type: Transform + - uid: 7657 + components: + - rot: -1.5707963267948966 rad + pos: -3.2715287,5.5343323 + parent: 34 + type: Transform + - uid: 7660 + components: + - rot: -1.5707963267948966 rad + pos: -3.511112,5.242462 + parent: 34 + type: Transform +- proto: ComfyChair + entities: + - uid: 909 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-5.5 + parent: 34 + type: Transform + - uid: 1001 + components: + - rot: 3.141592653589793 rad + pos: 49.5,-0.5 + parent: 34 + type: Transform + - uid: 1078 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-1.5 + parent: 34 + type: Transform + - uid: 1359 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-38.5 + parent: 34 + type: Transform + - uid: 2187 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-4.5 + parent: 34 + type: Transform + - uid: 2188 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-4.5 + parent: 34 + type: Transform + - uid: 2189 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-6.5 + parent: 34 + type: Transform + - uid: 3624 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-7.5 + parent: 34 + type: Transform + - uid: 3903 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-33.5 + parent: 34 + type: Transform + - uid: 4282 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-29.5 + parent: 34 + type: Transform + - uid: 4857 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-0.5 + parent: 34 + type: Transform + - uid: 4955 + components: + - pos: 40.5,-12.5 + parent: 34 + type: Transform + - uid: 6232 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-27.5 + parent: 34 + type: Transform + - uid: 11514 + components: + - pos: 39.5,-32.5 + parent: 34 + type: Transform +- proto: ComputerAnalysisConsole + entities: + - uid: 404 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-6.5 + parent: 34 + type: Transform + - linkedPorts: + 49: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver + type: DeviceLinkSource +- proto: ComputerBroken + entities: + - uid: 11374 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-37.5 + parent: 34 + type: Transform +- proto: ComputerCargoBounty + entities: + - uid: 7863 + components: + - pos: -7.5,-29.5 + parent: 34 + type: Transform +- proto: ComputerCargoOrders + entities: + - uid: 1886 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-27.5 + parent: 34 + type: Transform +- proto: ComputerCargoShuttle + entities: + - uid: 12610 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-38.5 + parent: 34 + type: Transform +- proto: ComputerCloningConsole + entities: + - uid: 12440 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-41.5 + parent: 34 + type: Transform +- proto: ComputerComms + entities: + - uid: 4371 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-35.5 + parent: 34 + type: Transform +- proto: ComputerCrewMonitoring + entities: + - uid: 2514 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-35.5 + parent: 34 + type: Transform + - uid: 4370 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-33.5 + parent: 34 + type: Transform +- proto: ComputerCriminalRecords + entities: + - uid: 4367 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-34.5 + parent: 34 + type: Transform +- proto: ComputerId + entities: + - uid: 71 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-30.5 + parent: 34 + type: Transform + - uid: 955 + components: + - pos: -33.5,-3.5 + parent: 34 + type: Transform + - uid: 1962 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-19.5 + parent: 34 + type: Transform + - uid: 2489 + components: + - pos: 10.5,-31.5 + parent: 34 + type: Transform + - uid: 2493 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-9.5 + parent: 34 + type: Transform + - uid: 7702 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-38.5 + parent: 34 + type: Transform + - uid: 12112 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 34 + type: Transform +- proto: ComputerMassMedia + entities: + - uid: 1083 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-39.5 + parent: 34 + type: Transform +- proto: ComputerMedicalRecords + entities: + - uid: 4369 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-34.5 + parent: 34 + type: Transform +- proto: ComputerPowerMonitoring + entities: + - uid: 2155 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-45.5 + parent: 34 + type: Transform + - uid: 5413 + components: + - pos: 32.5,-42.5 + parent: 34 + type: Transform + - uid: 5575 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,2.5 + parent: 34 + type: Transform + - uid: 12274 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-31.5 + parent: 34 + type: Transform +- proto: ComputerRadar + entities: + - uid: 2370 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-37.5 + parent: 34 + type: Transform + - uid: 5579 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-56.5 + parent: 34 + type: Transform +- proto: ComputerResearchAndDevelopment + entities: + - uid: 2029 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-18.5 + parent: 34 + type: Transform +- proto: ComputerShuttleCargo + entities: + - uid: 2673 + components: + - pos: -15.5,-40.5 + parent: 34 + type: Transform +- proto: ComputerShuttleSalvage + entities: + - uid: 1052 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-55.5 + parent: 34 + type: Transform +- proto: ComputerSolarControl + entities: + - uid: 5421 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-44.5 + parent: 34 + type: Transform + - uid: 11698 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,2.5 + parent: 34 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 2201 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,2.5 + parent: 34 + type: Transform + - uid: 4368 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-35.5 + parent: 34 + type: Transform + - uid: 10791 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,2.5 + parent: 34 + type: Transform +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 3634 + components: + - pos: 26.5,-6.5 + parent: 34 + type: Transform + - uid: 4366 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-33.5 + parent: 34 + type: Transform + - uid: 4915 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-15.5 + parent: 34 + type: Transform + - uid: 6956 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-9.5 + parent: 34 + type: Transform +- proto: ComputerSurveillanceWirelessCameraMonitor + entities: + - uid: 8750 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,3.5 + parent: 34 + type: Transform +- proto: ComputerTechnologyDiskTerminal + entities: + - uid: 2549 + components: + - pos: -35.5,-15.5 + parent: 34 + type: Transform +- proto: ComputerTelevision + entities: + - uid: 2416 + components: + - pos: -39.5,-25.5 + parent: 34 + type: Transform + - uid: 3625 + components: + - pos: 20.5,-6.5 + parent: 34 + type: Transform + - uid: 4953 + components: + - pos: 48.5,1.5 + parent: 34 + type: Transform +- proto: ConveyorBelt + entities: + - uid: 902 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-43.5 + parent: 34 + type: Transform + - links: + - 1054 + type: DeviceLinkSink + - uid: 1307 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-42.5 + parent: 34 + type: Transform + - links: + - 1054 + type: DeviceLinkSink + - uid: 8449 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-43.5 + parent: 34 + type: Transform + - links: + - 1054 + type: DeviceLinkSink + - uid: 10282 + components: + - pos: -38.5,7.5 + parent: 34 + type: Transform + - links: + - 11254 + type: DeviceLinkSink + - uid: 10283 + components: + - pos: -38.5,8.5 + parent: 34 + type: Transform + - links: + - 11254 + type: DeviceLinkSink + - uid: 10284 + components: + - pos: -38.5,9.5 + parent: 34 + type: Transform + - links: + - 11254 + type: DeviceLinkSink + - uid: 10285 + components: + - pos: -38.5,10.5 + parent: 34 + type: Transform + - links: + - 11254 + type: DeviceLinkSink + - uid: 12657 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-57.5 + parent: 34 + type: Transform + - links: + - 12687 + type: DeviceLinkSink + - uid: 12658 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-57.5 + parent: 34 + type: Transform + - links: + - 12687 + type: DeviceLinkSink + - uid: 12659 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-57.5 + parent: 34 + type: Transform + - links: + - 12687 + type: DeviceLinkSink + - uid: 12661 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-57.5 + parent: 34 + type: Transform + - links: + - 12687 + type: DeviceLinkSink + - uid: 12664 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-57.5 + parent: 34 + type: Transform + - links: + - 12687 + type: DeviceLinkSink + - uid: 12666 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-57.5 + parent: 34 + type: Transform + - links: + - 12687 + type: DeviceLinkSink + - uid: 12672 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-57.5 + parent: 34 + type: Transform + - links: + - 12687 + type: DeviceLinkSink + - uid: 12673 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-57.5 + parent: 34 + type: Transform + - links: + - 12687 + type: DeviceLinkSink + - uid: 12677 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-56.5 + parent: 34 + type: Transform + - links: + - 12687 + type: DeviceLinkSink + - uid: 12678 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-55.5 + parent: 34 + type: Transform + - links: + - 12687 + type: DeviceLinkSink + - uid: 12679 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-54.5 + parent: 34 + type: Transform + - links: + - 12687 + type: DeviceLinkSink + - uid: 12680 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-53.5 + parent: 34 + type: Transform + - links: + - 12687 + type: DeviceLinkSink + - uid: 12691 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-42.5 + parent: 34 + type: Transform + - links: + - 1054 + type: DeviceLinkSink + - uid: 12692 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-42.5 + parent: 34 + type: Transform + - links: + - 1054 + type: DeviceLinkSink + - uid: 12693 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-42.5 + parent: 34 + type: Transform + - links: + - 1054 + type: DeviceLinkSink + - uid: 12697 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-42.5 + parent: 34 + type: Transform + - links: + - 1054 + type: DeviceLinkSink + - uid: 12698 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-42.5 + parent: 34 + type: Transform + - links: + - 1054 + type: DeviceLinkSink + - uid: 12699 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-41.5 + parent: 34 + type: Transform + - links: + - 1054 + type: DeviceLinkSink +- proto: CowToolboxFilled + entities: + - uid: 11086 + components: + - pos: 3.5872319,-47.363503 + parent: 34 + type: Transform +- proto: CrateAirlockKit + entities: + - uid: 10255 + components: + - pos: -56.5,-6.5 + parent: 34 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateArtifactContainer + entities: + - uid: 958 + components: + - pos: -25.5,-3.5 + parent: 34 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateEmergencyInternals + entities: + - uid: 5563 + components: + - pos: -16.5,4.5 + parent: 34 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateEmptySpawner + entities: + - uid: 649 + components: + - pos: -7.5,-35.5 + parent: 34 + type: Transform + - uid: 664 + components: + - pos: -7.5,-36.5 + parent: 34 + type: Transform +- proto: CrateEngineeringAMEJar + entities: + - uid: 1151 + components: + - pos: -29.5,-36.5 + parent: 34 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateEngineeringAMEShielding + entities: + - uid: 1153 + components: + - pos: -29.5,-39.5 + parent: 34 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 1311 + components: + - pos: -29.5,-38.5 + parent: 34 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateEngineeringCableBulk + entities: + - uid: 4533 + components: + - pos: 37.5,-18.5 + parent: 34 + type: Transform +- proto: CrateEngineeringSolar + entities: + - uid: 5629 + components: + - pos: -22.5,7.5 + parent: 34 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5672 + components: + - pos: -21.5,7.5 + parent: 34 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateEngineeringToolbox + entities: + - uid: 2487 + components: + - pos: -21.5,-25.5 + parent: 34 + type: Transform +- proto: CrateFilledSpawner + entities: + - uid: 1930 + components: + - pos: -7.5,-34.5 + parent: 34 + type: Transform +- proto: CrateFunArtSupplies + entities: + - uid: 626 + components: + - pos: 39.5,-15.5 + parent: 34 + type: Transform +- proto: CrateFunBoardGames + entities: + - uid: 3629 + components: + - pos: 20.5,-5.5 + parent: 34 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateHydroponics + entities: + - uid: 431 + components: + - pos: -16.5,-4.5 + parent: 34 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 895 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: CrateHydroSecure + entities: + - uid: 254 + components: + - pos: -14.5,-7.5 + parent: 34 + type: Transform +- proto: CrateMedicalSecure + entities: + - uid: 2693 + components: + - pos: -1.5,-29.5 + parent: 34 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateMedicalSurgery + entities: + - uid: 2504 + components: + - pos: -49.5,-16.5 + parent: 34 + type: Transform + - uid: 2930 + components: + - pos: 7.5,-26.5 + parent: 34 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateNPCHamster + entities: + - uid: 5248 + components: + - pos: -1.5,-18.5 + parent: 34 + type: Transform +- proto: CratePrivateSecure + entities: + - uid: 5062 + components: + - pos: -48.5,2.5 + parent: 34 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateScienceSecure + entities: + - uid: 2529 + components: + - pos: -32.5,-19.5 + parent: 34 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateServiceBureaucracy + entities: + - uid: 1917 + components: + - pos: -12.5,-24.5 + parent: 34 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrayonBlack + entities: + - uid: 5947 + components: + - pos: 1.8039385,-17.44404 + parent: 34 + type: Transform +- proto: CrayonBox + entities: + - uid: 3630 + components: + - pos: 19.63428,-3.22361 + parent: 34 + type: Transform +- proto: CrayonWhite + entities: + - uid: 5944 + components: + - pos: 2.0226886,-17.459675 + parent: 34 + type: Transform +- proto: Crematorium + entities: + - uid: 3361 + components: + - pos: -31.5,-13.5 + parent: 34 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrewMonitoringServer + entities: + - uid: 11690 + components: + - pos: 31.5,-27.5 + parent: 34 + type: Transform +- proto: Crowbar + entities: + - uid: 85 + components: + - pos: -52.397526,-17.118998 + parent: 34 + type: Transform + - uid: 10225 + components: + - rot: 3.141592653589793 rad + pos: 22.760273,-35.584446 + parent: 34 + type: Transform +- proto: CrowbarRed + entities: + - uid: 11104 + components: + - rot: -1.5707963267948966 rad + pos: 8.135655,-15.792711 + parent: 34 + type: Transform + - uid: 11345 + components: + - pos: -35.52583,-11.586708 + parent: 34 + type: Transform + - uid: 11692 + components: + - pos: 17.491467,-44.574703 + parent: 34 + type: Transform + - uid: 12191 + components: + - rot: 1.5707963267948966 rad + pos: 14.613799,13.602171 + parent: 34 + type: Transform +- proto: CryoPod + entities: + - uid: 2679 + components: + - pos: 0.5,-39.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice +- proto: CryoxadoneBeakerSmall + entities: + - uid: 12604 + components: + - pos: 1.0656376,-43.150978 + parent: 34 + type: Transform +- proto: CultAltarSpawner + entities: + - uid: 4967 + components: + - pos: 26.5,11.5 + parent: 34 + type: Transform +- proto: CyborgEndoskeleton + entities: + - uid: 8001 + components: + - pos: -45.505913,-18.333607 + parent: 34 + type: Transform +- proto: d20Dice + entities: + - uid: 4675 + components: + - pos: 48.918518,-3.4653316 + parent: 34 + type: Transform + - uid: 5044 + components: + - pos: 17.480783,3.5951743 + parent: 34 + type: Transform +- proto: DefibrillatorCabinetFilled + entities: + - uid: 3284 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-2.5 + parent: 34 + type: Transform + - uid: 7144 + components: + - pos: 6.5,-30.5 + parent: 34 + type: Transform +- proto: DeployableBarrier + entities: + - uid: 4923 + components: + - pos: 21.5,-1.5 + parent: 34 + type: Transform + - uid: 4924 + components: + - pos: 21.5,-0.5 + parent: 34 + type: Transform + - uid: 4925 + components: + - pos: 26.5,-16.5 + parent: 34 + type: Transform + - uid: 4926 + components: + - pos: 26.5,-15.5 + parent: 34 + type: Transform +- proto: DeskBell + entities: + - uid: 1412 + components: + - pos: -20.592945,-26.566446 + parent: 34 + type: Transform + - uid: 1421 + components: + - pos: -1.7226835,-30.526058 + parent: 34 + type: Transform + - uid: 4139 + components: + - pos: 21.280338,-13.184029 + parent: 34 + type: Transform +- proto: DiceBag + entities: + - uid: 3628 + components: + - pos: 18.355251,-7.464027 + parent: 34 + type: Transform +- proto: DiseaseDiagnoser + entities: + - uid: 8681 + components: + - pos: -0.5,-35.5 + parent: 34 + type: Transform +- proto: DisposalBend + entities: + - uid: 1305 + components: + - pos: -3.5,-44.5 + parent: 34 + type: Transform + - uid: 2701 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-46.5 + parent: 34 + type: Transform + - uid: 4046 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-44.5 + parent: 34 + type: Transform + - uid: 8142 + components: + - pos: 8.5,13.5 + parent: 34 + type: Transform + - uid: 8185 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-13.5 + parent: 34 + type: Transform + - uid: 8354 + components: + - pos: 32.5,-22.5 + parent: 34 + type: Transform + - uid: 8513 + components: + - pos: -5.5,-34.5 + parent: 34 + type: Transform + - uid: 8529 + components: + - pos: -5.5,-21.5 + parent: 34 + type: Transform + - uid: 8530 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-23.5 + parent: 34 + type: Transform + - uid: 8535 + components: + - pos: 5.5,-23.5 + parent: 34 + type: Transform + - uid: 8541 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-22.5 + parent: 34 + type: Transform + - uid: 8583 + components: + - pos: 12.5,-0.5 + parent: 34 + type: Transform + - uid: 10856 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-29.5 + parent: 34 + type: Transform + - uid: 11569 + components: + - pos: -34.5,-25.5 + parent: 34 + type: Transform + - uid: 11570 + components: + - rot: 3.141592653589793 rad + pos: -48.5,-25.5 + parent: 34 + type: Transform + - uid: 11639 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-0.5 + parent: 34 + type: Transform + - uid: 11649 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,9.5 + parent: 34 + type: Transform +- proto: DisposalJunction + entities: + - uid: 2335 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-21.5 + parent: 34 + type: Transform + - uid: 6958 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 34 + type: Transform + - uid: 8140 + components: + - pos: 8.5,8.5 + parent: 34 + type: Transform + - uid: 8141 + components: + - pos: 8.5,2.5 + parent: 34 + type: Transform + - uid: 8190 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-22.5 + parent: 34 + type: Transform + - uid: 8191 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-22.5 + parent: 34 + type: Transform + - uid: 8262 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-13.5 + parent: 34 + type: Transform + - uid: 8263 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-5.5 + parent: 34 + type: Transform + - uid: 8474 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-34.5 + parent: 34 + type: Transform + - uid: 8539 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-13.5 + parent: 34 + type: Transform + - uid: 8581 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-0.5 + parent: 34 + type: Transform + - uid: 8582 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 34 + type: Transform +- proto: DisposalJunctionFlipped + entities: + - uid: 5789 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-0.5 + parent: 34 + type: Transform + - uid: 8220 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-21.5 + parent: 34 + type: Transform + - uid: 8222 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-21.5 + parent: 34 + type: Transform + - uid: 8316 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-12.5 + parent: 34 + type: Transform + - uid: 8536 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-21.5 + parent: 34 + type: Transform + - uid: 8540 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-12.5 + parent: 34 + type: Transform + - uid: 8580 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 34 + type: Transform +- proto: DisposalPipe + entities: + - uid: 2334 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-21.5 + parent: 34 + type: Transform + - uid: 2371 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-21.5 + parent: 34 + type: Transform + - uid: 2676 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-45.5 + parent: 34 + type: Transform + - uid: 4494 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-46.5 + parent: 34 + type: Transform + - uid: 4528 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 34 + type: Transform + - uid: 4784 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 34 + type: Transform + - uid: 4809 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 34 + type: Transform + - uid: 4810 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 34 + type: Transform + - uid: 4844 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 34 + type: Transform + - uid: 5024 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 34 + type: Transform + - uid: 5788 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-0.5 + parent: 34 + type: Transform + - uid: 7068 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 34 + type: Transform + - uid: 7828 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-46.5 + parent: 34 + type: Transform + - uid: 7829 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-46.5 + parent: 34 + type: Transform + - uid: 8125 + components: + - pos: 42.5,7.5 + parent: 34 + type: Transform + - uid: 8126 + components: + - pos: 42.5,8.5 + parent: 34 + type: Transform + - uid: 8127 + components: + - pos: 42.5,9.5 + parent: 34 + type: Transform + - uid: 8143 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,13.5 + parent: 34 + type: Transform + - uid: 8144 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,13.5 + parent: 34 + type: Transform + - uid: 8145 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,13.5 + parent: 34 + type: Transform + - uid: 8146 + components: + - pos: 8.5,12.5 + parent: 34 + type: Transform + - uid: 8147 + components: + - pos: 8.5,11.5 + parent: 34 + type: Transform + - uid: 8148 + components: + - pos: 8.5,10.5 + parent: 34 + type: Transform + - uid: 8149 + components: + - pos: 8.5,9.5 + parent: 34 + type: Transform + - uid: 8150 + components: + - pos: 8.5,7.5 + parent: 34 + type: Transform + - uid: 8151 + components: + - pos: 8.5,6.5 + parent: 34 + type: Transform + - uid: 8152 + components: + - pos: 8.5,5.5 + parent: 34 + type: Transform + - uid: 8153 + components: + - pos: 8.5,4.5 + parent: 34 + type: Transform + - uid: 8154 + components: + - pos: 8.5,3.5 + parent: 34 + type: Transform + - uid: 8155 + components: + - pos: 8.5,1.5 + parent: 34 + type: Transform + - uid: 8156 + components: + - pos: 8.5,0.5 + parent: 34 + type: Transform + - uid: 8162 + components: + - pos: 12.5,-11.5 + parent: 34 + type: Transform + - uid: 8163 + components: + - pos: 12.5,-10.5 + parent: 34 + type: Transform + - uid: 8164 + components: + - pos: 12.5,-9.5 + parent: 34 + type: Transform + - uid: 8165 + components: + - pos: 12.5,-8.5 + parent: 34 + type: Transform + - uid: 8166 + components: + - pos: 12.5,-7.5 + parent: 34 + type: Transform + - uid: 8167 + components: + - pos: 12.5,-6.5 + parent: 34 + type: Transform + - uid: 8168 + components: + - pos: 12.5,-5.5 + parent: 34 + type: Transform + - uid: 8169 + components: + - pos: 12.5,-4.5 + parent: 34 + type: Transform + - uid: 8170 + components: + - pos: 12.5,-3.5 + parent: 34 + type: Transform + - uid: 8171 + components: + - pos: 12.5,-2.5 + parent: 34 + type: Transform + - uid: 8172 + components: + - pos: 12.5,-1.5 + parent: 34 + type: Transform + - uid: 8173 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-13.5 + parent: 34 + type: Transform + - uid: 8174 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-13.5 + parent: 34 + type: Transform + - uid: 8175 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-13.5 + parent: 34 + type: Transform + - uid: 8176 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-13.5 + parent: 34 + type: Transform + - uid: 8177 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-13.5 + parent: 34 + type: Transform + - uid: 8178 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-13.5 + parent: 34 + type: Transform + - uid: 8179 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-13.5 + parent: 34 + type: Transform + - uid: 8180 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-13.5 + parent: 34 + type: Transform + - uid: 8181 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-13.5 + parent: 34 + type: Transform + - uid: 8182 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-13.5 + parent: 34 + type: Transform + - uid: 8183 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-13.5 + parent: 34 + type: Transform + - uid: 8184 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-13.5 + parent: 34 + type: Transform + - uid: 8187 + components: + - pos: 25.5,-12.5 + parent: 34 + type: Transform + - uid: 8192 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-22.5 + parent: 34 + type: Transform + - uid: 8200 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-21.5 + parent: 34 + type: Transform + - uid: 8201 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-21.5 + parent: 34 + type: Transform + - uid: 8202 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-21.5 + parent: 34 + type: Transform + - uid: 8203 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-21.5 + parent: 34 + type: Transform + - uid: 8204 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-21.5 + parent: 34 + type: Transform + - uid: 8205 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-21.5 + parent: 34 + type: Transform + - uid: 8206 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-21.5 + parent: 34 + type: Transform + - uid: 8207 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-21.5 + parent: 34 + type: Transform + - uid: 8208 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-21.5 + parent: 34 + type: Transform + - uid: 8209 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-21.5 + parent: 34 + type: Transform + - uid: 8210 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-21.5 + parent: 34 + type: Transform + - uid: 8211 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-21.5 + parent: 34 + type: Transform + - uid: 8212 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-21.5 + parent: 34 + type: Transform + - uid: 8213 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-21.5 + parent: 34 + type: Transform + - uid: 8215 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-21.5 + parent: 34 + type: Transform + - uid: 8216 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-21.5 + parent: 34 + type: Transform + - uid: 8217 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-21.5 + parent: 34 + type: Transform + - uid: 8218 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-21.5 + parent: 34 + type: Transform + - uid: 8219 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-21.5 + parent: 34 + type: Transform + - uid: 8221 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-21.5 + parent: 34 + type: Transform + - uid: 8224 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-21.5 + parent: 34 + type: Transform + - uid: 8226 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-21.5 + parent: 34 + type: Transform + - uid: 8228 + components: + - pos: -38.5,-18.5 + parent: 34 + type: Transform + - uid: 8229 + components: + - pos: -38.5,-17.5 + parent: 34 + type: Transform + - uid: 8231 + components: + - pos: -38.5,-20.5 + parent: 34 + type: Transform + - uid: 8232 + components: + - pos: -38.5,-19.5 + parent: 34 + type: Transform + - uid: 8233 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-22.5 + parent: 34 + type: Transform + - uid: 8234 + components: + - pos: -38.5,-16.5 + parent: 34 + type: Transform + - uid: 8235 + components: + - pos: -38.5,-15.5 + parent: 34 + type: Transform + - uid: 8236 + components: + - pos: -38.5,-14.5 + parent: 34 + type: Transform + - uid: 8238 + components: + - pos: -38.5,-12.5 + parent: 34 + type: Transform + - uid: 8239 + components: + - pos: -38.5,-11.5 + parent: 34 + type: Transform + - uid: 8240 + components: + - pos: -38.5,-10.5 + parent: 34 + type: Transform + - uid: 8241 + components: + - pos: -38.5,-9.5 + parent: 34 + type: Transform + - uid: 8242 + components: + - pos: -38.5,-8.5 + parent: 34 + type: Transform + - uid: 8243 + components: + - pos: -38.5,-7.5 + parent: 34 + type: Transform + - uid: 8244 + components: + - pos: -38.5,-6.5 + parent: 34 + type: Transform + - uid: 8245 + components: + - pos: -38.5,-4.5 + parent: 34 + type: Transform + - uid: 8246 + components: + - pos: -38.5,-3.5 + parent: 34 + type: Transform + - uid: 8247 + components: + - pos: -38.5,-2.5 + parent: 34 + type: Transform + - uid: 8248 + components: + - pos: -38.5,-1.5 + parent: 34 + type: Transform + - uid: 8251 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-0.5 + parent: 34 + type: Transform + - uid: 8252 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-0.5 + parent: 34 + type: Transform + - uid: 8253 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-0.5 + parent: 34 + type: Transform + - uid: 8254 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-0.5 + parent: 34 + type: Transform + - uid: 8255 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-0.5 + parent: 34 + type: Transform + - uid: 8256 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-0.5 + parent: 34 + type: Transform + - uid: 8257 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-0.5 + parent: 34 + type: Transform + - uid: 8258 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-0.5 + parent: 34 + type: Transform + - uid: 8259 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-0.5 + parent: 34 + type: Transform + - uid: 8260 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-13.5 + parent: 34 + type: Transform + - uid: 8261 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-13.5 + parent: 34 + type: Transform + - uid: 8280 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-12.5 + parent: 34 + type: Transform + - uid: 8281 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-12.5 + parent: 34 + type: Transform + - uid: 8282 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-11.5 + parent: 34 + type: Transform + - uid: 8283 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-10.5 + parent: 34 + type: Transform + - uid: 8284 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-9.5 + parent: 34 + type: Transform + - uid: 8285 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-8.5 + parent: 34 + type: Transform + - uid: 8286 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-7.5 + parent: 34 + type: Transform + - uid: 8287 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 34 + type: Transform + - uid: 8289 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 34 + type: Transform + - uid: 8290 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-3.5 + parent: 34 + type: Transform + - uid: 8291 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-2.5 + parent: 34 + type: Transform + - uid: 8292 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 34 + type: Transform + - uid: 8294 + components: + - pos: -12.5,-8.5 + parent: 34 + type: Transform + - uid: 8295 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-12.5 + parent: 34 + type: Transform + - uid: 8296 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 34 + type: Transform + - uid: 8297 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-12.5 + parent: 34 + type: Transform + - uid: 8298 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 34 + type: Transform + - uid: 8299 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 34 + type: Transform + - uid: 8300 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 34 + type: Transform + - uid: 8301 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-12.5 + parent: 34 + type: Transform + - uid: 8302 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-12.5 + parent: 34 + type: Transform + - uid: 8303 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-12.5 + parent: 34 + type: Transform + - uid: 8304 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 34 + type: Transform + - uid: 8305 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-12.5 + parent: 34 + type: Transform + - uid: 8306 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 34 + type: Transform + - uid: 8307 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 34 + type: Transform + - uid: 8308 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 34 + type: Transform + - uid: 8309 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 34 + type: Transform + - uid: 8310 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 34 + type: Transform + - uid: 8313 + components: + - pos: -12.5,-9.5 + parent: 34 + type: Transform + - uid: 8314 + components: + - pos: -12.5,-10.5 + parent: 34 + type: Transform + - uid: 8315 + components: + - pos: -12.5,-11.5 + parent: 34 + type: Transform + - uid: 8318 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-12.5 + parent: 34 + type: Transform + - uid: 8319 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-14.5 + parent: 34 + type: Transform + - uid: 8320 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-15.5 + parent: 34 + type: Transform + - uid: 8321 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-16.5 + parent: 34 + type: Transform + - uid: 8322 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 34 + type: Transform + - uid: 8323 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-18.5 + parent: 34 + type: Transform + - uid: 8324 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-19.5 + parent: 34 + type: Transform + - uid: 8325 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-20.5 + parent: 34 + type: Transform + - uid: 8326 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-21.5 + parent: 34 + type: Transform + - uid: 8330 + components: + - pos: 17.5,-21.5 + parent: 34 + type: Transform + - uid: 8331 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-22.5 + parent: 34 + type: Transform + - uid: 8332 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-22.5 + parent: 34 + type: Transform + - uid: 8333 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-22.5 + parent: 34 + type: Transform + - uid: 8334 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-22.5 + parent: 34 + type: Transform + - uid: 8335 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-22.5 + parent: 34 + type: Transform + - uid: 8336 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-22.5 + parent: 34 + type: Transform + - uid: 8337 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-22.5 + parent: 34 + type: Transform + - uid: 8338 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-22.5 + parent: 34 + type: Transform + - uid: 8339 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-22.5 + parent: 34 + type: Transform + - uid: 8340 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-22.5 + parent: 34 + type: Transform + - uid: 8341 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-22.5 + parent: 34 + type: Transform + - uid: 8342 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-22.5 + parent: 34 + type: Transform + - uid: 8343 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-22.5 + parent: 34 + type: Transform + - uid: 8344 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-22.5 + parent: 34 + type: Transform + - uid: 8345 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-30.5 + parent: 34 + type: Transform + - uid: 8346 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-29.5 + parent: 34 + type: Transform + - uid: 8347 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-28.5 + parent: 34 + type: Transform + - uid: 8348 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-27.5 + parent: 34 + type: Transform + - uid: 8349 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-26.5 + parent: 34 + type: Transform + - uid: 8350 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-25.5 + parent: 34 + type: Transform + - uid: 8351 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-24.5 + parent: 34 + type: Transform + - uid: 8352 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-23.5 + parent: 34 + type: Transform + - uid: 8473 + components: + - pos: -9.5,-35.5 + parent: 34 + type: Transform + - uid: 8475 + components: + - pos: -9.5,-33.5 + parent: 34 + type: Transform + - uid: 8476 + components: + - pos: -9.5,-32.5 + parent: 34 + type: Transform + - uid: 8477 + components: + - pos: -9.5,-31.5 + parent: 34 + type: Transform + - uid: 8478 + components: + - pos: -9.5,-30.5 + parent: 34 + type: Transform + - uid: 8479 + components: + - pos: -9.5,-29.5 + parent: 34 + type: Transform + - uid: 8480 + components: + - pos: -9.5,-28.5 + parent: 34 + type: Transform + - uid: 8481 + components: + - pos: -9.5,-27.5 + parent: 34 + type: Transform + - uid: 8482 + components: + - pos: -9.5,-26.5 + parent: 34 + type: Transform + - uid: 8483 + components: + - pos: -9.5,-25.5 + parent: 34 + type: Transform + - uid: 8484 + components: + - pos: -9.5,-24.5 + parent: 34 + type: Transform + - uid: 8485 + components: + - pos: -9.5,-23.5 + parent: 34 + type: Transform + - uid: 8486 + components: + - pos: -9.5,-22.5 + parent: 34 + type: Transform + - uid: 8487 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-21.5 + parent: 34 + type: Transform + - uid: 8488 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-21.5 + parent: 34 + type: Transform + - uid: 8500 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-44.5 + parent: 34 + type: Transform + - uid: 8504 + components: + - pos: -5.5,-43.5 + parent: 34 + type: Transform + - uid: 8505 + components: + - pos: -5.5,-42.5 + parent: 34 + type: Transform + - uid: 8506 + components: + - pos: -5.5,-41.5 + parent: 34 + type: Transform + - uid: 8507 + components: + - pos: -5.5,-40.5 + parent: 34 + type: Transform + - uid: 8508 + components: + - pos: -5.5,-39.5 + parent: 34 + type: Transform + - uid: 8509 + components: + - pos: -5.5,-38.5 + parent: 34 + type: Transform + - uid: 8510 + components: + - pos: -5.5,-37.5 + parent: 34 + type: Transform + - uid: 8511 + components: + - pos: -5.5,-36.5 + parent: 34 + type: Transform + - uid: 8512 + components: + - pos: -5.5,-35.5 + parent: 34 + type: Transform + - uid: 8514 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-34.5 + parent: 34 + type: Transform + - uid: 8515 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-34.5 + parent: 34 + type: Transform + - uid: 8516 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-34.5 + parent: 34 + type: Transform + - uid: 8518 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-24.5 + parent: 34 + type: Transform + - uid: 8519 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-23.5 + parent: 34 + type: Transform + - uid: 8520 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-23.5 + parent: 34 + type: Transform + - uid: 8521 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-23.5 + parent: 34 + type: Transform + - uid: 8522 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-23.5 + parent: 34 + type: Transform + - uid: 8523 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-23.5 + parent: 34 + type: Transform + - uid: 8524 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-23.5 + parent: 34 + type: Transform + - uid: 8525 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-23.5 + parent: 34 + type: Transform + - uid: 8526 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-23.5 + parent: 34 + type: Transform + - uid: 8527 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-23.5 + parent: 34 + type: Transform + - uid: 8528 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-23.5 + parent: 34 + type: Transform + - uid: 8531 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-21.5 + parent: 34 + type: Transform + - uid: 8532 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-21.5 + parent: 34 + type: Transform + - uid: 8533 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-21.5 + parent: 34 + type: Transform + - uid: 8534 + components: + - pos: -5.5,-22.5 + parent: 34 + type: Transform + - uid: 8537 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-22.5 + parent: 34 + type: Transform + - uid: 8538 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-22.5 + parent: 34 + type: Transform + - uid: 8542 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 34 + type: Transform + - uid: 8543 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 34 + type: Transform + - uid: 8544 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 34 + type: Transform + - uid: 8545 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 34 + type: Transform + - uid: 8546 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 34 + type: Transform + - uid: 8547 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 34 + type: Transform + - uid: 8548 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 34 + type: Transform + - uid: 8549 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 34 + type: Transform + - uid: 8550 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 34 + type: Transform + - uid: 8551 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 34 + type: Transform + - uid: 8552 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 34 + type: Transform + - uid: 8553 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 34 + type: Transform + - uid: 8554 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 34 + type: Transform + - uid: 8555 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 34 + type: Transform + - uid: 8556 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 34 + type: Transform + - uid: 8557 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 34 + type: Transform + - uid: 8558 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 34 + type: Transform + - uid: 8559 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 34 + type: Transform + - uid: 8560 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 34 + type: Transform + - uid: 8561 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 34 + type: Transform + - uid: 8562 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 34 + type: Transform + - uid: 8563 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 34 + type: Transform + - uid: 8564 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 34 + type: Transform + - uid: 8565 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-0.5 + parent: 34 + type: Transform + - uid: 8566 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 34 + type: Transform + - uid: 8567 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-0.5 + parent: 34 + type: Transform + - uid: 8568 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 34 + type: Transform + - uid: 8569 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 34 + type: Transform + - uid: 8570 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 34 + type: Transform + - uid: 8571 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-0.5 + parent: 34 + type: Transform + - uid: 8572 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-0.5 + parent: 34 + type: Transform + - uid: 8573 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 34 + type: Transform + - uid: 8574 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-0.5 + parent: 34 + type: Transform + - uid: 8575 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-0.5 + parent: 34 + type: Transform + - uid: 8576 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-0.5 + parent: 34 + type: Transform + - uid: 8577 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-0.5 + parent: 34 + type: Transform + - uid: 10468 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-30.5 + parent: 34 + type: Transform + - uid: 10524 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 34 + type: Transform + - uid: 10776 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-29.5 + parent: 34 + type: Transform + - uid: 10777 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-28.5 + parent: 34 + type: Transform + - uid: 10826 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-27.5 + parent: 34 + type: Transform + - uid: 10851 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-24.5 + parent: 34 + type: Transform + - uid: 10852 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-23.5 + parent: 34 + type: Transform + - uid: 10853 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-22.5 + parent: 34 + type: Transform + - uid: 10855 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-28.5 + parent: 34 + type: Transform + - uid: 10857 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-26.5 + parent: 34 + type: Transform + - uid: 10962 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-25.5 + parent: 34 + type: Transform + - uid: 11248 + components: + - pos: -9.5,-36.5 + parent: 34 + type: Transform + - uid: 11255 + components: + - pos: -9.5,-37.5 + parent: 34 + type: Transform + - uid: 11555 + components: + - pos: -34.5,-27.5 + parent: 34 + type: Transform + - uid: 11556 + components: + - pos: -34.5,-26.5 + parent: 34 + type: Transform + - uid: 11557 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-25.5 + parent: 34 + type: Transform + - uid: 11558 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-25.5 + parent: 34 + type: Transform + - uid: 11559 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-25.5 + parent: 34 + type: Transform + - uid: 11560 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-25.5 + parent: 34 + type: Transform + - uid: 11561 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-25.5 + parent: 34 + type: Transform + - uid: 11562 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-25.5 + parent: 34 + type: Transform + - uid: 11563 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-25.5 + parent: 34 + type: Transform + - uid: 11564 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-25.5 + parent: 34 + type: Transform + - uid: 11565 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-25.5 + parent: 34 + type: Transform + - uid: 11566 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-25.5 + parent: 34 + type: Transform + - uid: 11567 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-25.5 + parent: 34 + type: Transform + - uid: 11568 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,-25.5 + parent: 34 + type: Transform + - uid: 11572 + components: + - pos: -38.5,-24.5 + parent: 34 + type: Transform + - uid: 11573 + components: + - pos: -38.5,-23.5 + parent: 34 + type: Transform + - uid: 11574 + components: + - pos: -38.5,-22.5 + parent: 34 + type: Transform + - uid: 11615 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-0.5 + parent: 34 + type: Transform + - uid: 11636 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-0.5 + parent: 34 + type: Transform + - uid: 11640 + components: + - rot: 3.141592653589793 rad + pos: -41.5,0.5 + parent: 34 + type: Transform + - uid: 11641 + components: + - rot: 3.141592653589793 rad + pos: -41.5,1.5 + parent: 34 + type: Transform + - uid: 11642 + components: + - rot: 3.141592653589793 rad + pos: -41.5,2.5 + parent: 34 + type: Transform + - uid: 11643 + components: + - rot: 3.141592653589793 rad + pos: -41.5,3.5 + parent: 34 + type: Transform + - uid: 11644 + components: + - rot: 3.141592653589793 rad + pos: -41.5,4.5 + parent: 34 + type: Transform + - uid: 11645 + components: + - rot: 3.141592653589793 rad + pos: -41.5,5.5 + parent: 34 + type: Transform + - uid: 11646 + components: + - rot: 3.141592653589793 rad + pos: -41.5,6.5 + parent: 34 + type: Transform + - uid: 11647 + components: + - rot: 3.141592653589793 rad + pos: -41.5,7.5 + parent: 34 + type: Transform + - uid: 11648 + components: + - rot: 3.141592653589793 rad + pos: -41.5,8.5 + parent: 34 + type: Transform + - uid: 11650 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,9.5 + parent: 34 + type: Transform + - uid: 11651 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,9.5 + parent: 34 + type: Transform + - uid: 12929 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 34 + type: Transform + - uid: 12933 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 34 + type: Transform + - uid: 12934 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 34 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 1596 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 34 + type: Transform + - uid: 4067 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-45.5 + parent: 34 + type: Transform + - uid: 5138 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-46.5 + parent: 34 + type: Transform + - uid: 8123 + components: + - rot: 3.141592653589793 rad + pos: 42.5,6.5 + parent: 34 + type: Transform + - uid: 8124 + components: + - pos: 42.5,10.5 + parent: 34 + type: Transform + - uid: 8136 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,13.5 + parent: 34 + type: Transform + - uid: 8138 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,8.5 + parent: 34 + type: Transform + - uid: 8139 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,2.5 + parent: 34 + type: Transform + - uid: 8186 + components: + - pos: 25.5,-11.5 + parent: 34 + type: Transform + - uid: 8188 + components: + - pos: 17.5,-20.5 + parent: 34 + type: Transform + - uid: 8189 + components: + - pos: 15.5,-21.5 + parent: 34 + type: Transform + - uid: 8225 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-23.5 + parent: 34 + type: Transform + - uid: 8237 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-13.5 + parent: 34 + type: Transform + - uid: 8264 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-5.5 + parent: 34 + type: Transform + - uid: 8311 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 34 + type: Transform + - uid: 8312 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-12.5 + parent: 34 + type: Transform + - uid: 8317 + components: + - pos: -12.5,-7.5 + parent: 34 + type: Transform + - uid: 8353 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-31.5 + parent: 34 + type: Transform + - uid: 8578 + components: + - pos: -27.5,0.5 + parent: 34 + type: Transform + - uid: 8795 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-12.5 + parent: 34 + type: Transform + - uid: 10577 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-31.5 + parent: 34 + type: Transform + - uid: 10844 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-29.5 + parent: 34 + type: Transform + - uid: 10845 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-25.5 + parent: 34 + type: Transform + - uid: 11256 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-38.5 + parent: 34 + type: Transform + - uid: 11571 + components: + - pos: -48.5,-24.5 + parent: 34 + type: Transform + - uid: 11652 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,9.5 + parent: 34 + type: Transform +- proto: DisposalUnit + entities: + - uid: 789 + components: + - pos: 5.5,-12.5 + parent: 34 + type: Transform + - uid: 885 + components: + - pos: -12.5,-7.5 + parent: 34 + type: Transform + - uid: 907 + components: + - pos: 6.5,-5.5 + parent: 34 + type: Transform + - uid: 974 + components: + - pos: 10.5,-12.5 + parent: 34 + type: Transform + - uid: 2141 + components: + - pos: 0.5,-46.5 + parent: 34 + type: Transform + - uid: 2209 + components: + - pos: -37.5,-5.5 + parent: 34 + type: Transform + - uid: 2323 + components: + - pos: -26.5,-25.5 + parent: 34 + type: Transform + - uid: 2352 + components: + - pos: -48.5,-24.5 + parent: 34 + type: Transform + - uid: 2531 + components: + - pos: -35.5,-13.5 + parent: 34 + type: Transform + - uid: 4043 + components: + - pos: -6.5,-45.5 + parent: 34 + type: Transform + - uid: 4760 + components: + - desc: We all know where this is going. + type: MetaData + - pos: 42.5,6.5 + parent: 34 + type: Transform + - uid: 6157 + components: + - pos: 7.5,8.5 + parent: 34 + type: Transform + - uid: 6213 + components: + - pos: 7.5,2.5 + parent: 34 + type: Transform + - uid: 8083 + components: + - pos: -32.5,-23.5 + parent: 34 + type: Transform + - uid: 8130 + components: + - pos: 25.5,-11.5 + parent: 34 + type: Transform + - uid: 8131 + components: + - pos: 17.5,-20.5 + parent: 34 + type: Transform + - uid: 8132 + components: + - pos: 32.5,-31.5 + parent: 34 + type: Transform + - uid: 8133 + components: + - pos: 15.5,-21.5 + parent: 34 + type: Transform + - uid: 8134 + components: + - pos: -15.5,-12.5 + parent: 34 + type: Transform + - uid: 8135 + components: + - pos: -27.5,0.5 + parent: 34 + type: Transform + - uid: 8137 + components: + - pos: 4.5,13.5 + parent: 34 + type: Transform + - uid: 10843 + components: + - pos: -33.5,-29.5 + parent: 34 + type: Transform + - uid: 10988 + components: + - pos: 5.5,-31.5 + parent: 34 + type: Transform + - uid: 11535 + components: + - pos: -9.5,-38.5 + parent: 34 + type: Transform +- proto: DisposalYJunction + entities: + - uid: 2403 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-25.5 + parent: 34 + type: Transform + - uid: 8293 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-12.5 + parent: 34 + type: Transform + - uid: 8492 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-44.5 + parent: 34 + type: Transform +- proto: DogBed + entities: + - uid: 1041 + components: + - pos: -31.5,-6.5 + parent: 34 + type: Transform + - uid: 1847 + components: + - pos: -28.5,-34.5 + parent: 34 + type: Transform + - uid: 1977 + components: + - pos: -16.5,-16.5 + parent: 34 + type: Transform + - uid: 2547 + components: + - pos: -35.5,-16.5 + parent: 34 + type: Transform + - uid: 4278 + components: + - pos: 27.5,-29.5 + parent: 34 + type: Transform + - uid: 10820 + components: + - pos: -39.5,-6.5 + parent: 34 + type: Transform + - uid: 10821 + components: + - pos: -39.5,-4.5 + parent: 34 + type: Transform + - uid: 10987 + components: + - pos: 27.5,-13.5 + parent: 34 + type: Transform +- proto: DonkpocketBoxSpawner + entities: + - uid: 4932 + components: + - pos: 20.5,-16.5 + parent: 34 + type: Transform + - uid: 10538 + components: + - pos: 39.5,3.5 + parent: 34 + type: Transform +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 3817 + components: + - pos: 8.592867,-18.409733 + parent: 34 + type: Transform +- proto: Dresser + entities: + - uid: 2110 + components: + - pos: -48.5,1.5 + parent: 34 + type: Transform + - uid: 2206 + components: + - pos: -46.5,-6.5 + parent: 34 + type: Transform + - uid: 2230 + components: + - pos: -47.5,-4.5 + parent: 34 + type: Transform +- proto: DresserFilled + entities: + - uid: 4654 + components: + - pos: 48.5,-12.5 + parent: 34 + type: Transform +- proto: DrinkAleBottleFull + entities: + - uid: 3273 + components: + - pos: -32.131615,-50.500923 + parent: 34 + type: Transform + - uid: 3274 + components: + - pos: -32.235783,-50.344563 + parent: 34 + type: Transform + - uid: 11530 + components: + - pos: -46.67791,-26.995934 + parent: 34 + type: Transform +- proto: DrinkBeerBottleFull + entities: + - uid: 5900 + components: + - pos: -55.75351,1.6634254 + parent: 34 + type: Transform + - uid: 11529 + components: + - pos: -46.219578,-27.193987 + parent: 34 + type: Transform +- proto: DrinkBottleBeer + entities: + - uid: 5898 + components: + - pos: -56.78476,2.1012297 + parent: 34 + type: Transform + - uid: 5901 + components: + - pos: -56.69101,1.913599 + parent: 34 + type: Transform + - uid: 5902 + components: + - pos: -56.50351,2.0386868 + parent: 34 + type: Transform + - uid: 5903 + components: + - rot: -1.5707963267948966 rad + pos: -56.487885,1.5696106 + parent: 34 + type: Transform + - uid: 11108 + components: + - pos: -26.051832,-25.571123 + parent: 34 + type: Transform +- proto: DrinkBottleWhiskey + entities: + - uid: 11668 + components: + - rot: -1.5707963267948966 rad + pos: -5.5405045,4.049676 + parent: 34 + type: Transform + - uid: 11669 + components: + - pos: -5.2280045,4.393426 + parent: 34 + type: Transform +- proto: DrinkBottleWine + entities: + - uid: 3365 + components: + - pos: -32.31502,-15.337397 + parent: 34 + type: Transform +- proto: DrinkCoffee + entities: + - uid: 2062 + components: + - pos: -14.270972,-24.442413 + parent: 34 + type: Transform + - uid: 2125 + components: + - pos: -14.531389,-24.452837 + parent: 34 + type: Transform +- proto: DrinkColaCan + entities: + - uid: 10890 + components: + - pos: 25.045292,-40.075157 + parent: 34 + type: Transform +- proto: DrinkDrGibbCan + entities: + - uid: 9717 + components: + - pos: -28.792316,-8.542484 + parent: 34 + type: Transform +- proto: DrinkEnergyDrinkCan + entities: + - uid: 11933 + components: + - pos: -1.4162182,6.109795 + parent: 34 + type: Transform + - uid: 12130 + components: + - pos: -9.450497,-26.264732 + parent: 34 + type: Transform + - uid: 12131 + components: + - pos: -9.31508,-26.42109 + parent: 34 + type: Transform +- proto: DrinkGinBottleFull + entities: + - uid: 8023 + components: + - pos: -32.75218,3.924251 + parent: 34 + type: Transform +- proto: DrinkGlass + entities: + - uid: 2544 + components: + - pos: 38.47935,-33.795593 + parent: 34 + type: Transform + - uid: 2566 + components: + - pos: 38.526226,-35.139343 + parent: 34 + type: Transform + - uid: 2583 + components: + - pos: 40.5106,-33.12372 + parent: 34 + type: Transform + - uid: 3945 + components: + - pos: -7.714716,-40.29142 + parent: 34 + type: Transform + - uid: 4040 + components: + - pos: -7.339716,-40.32267 + parent: 34 + type: Transform + - uid: 4124 + components: + - pos: -7.886591,-40.307045 + parent: 34 + type: Transform + - uid: 4146 + components: + - pos: -7.527216,-40.29142 + parent: 34 + type: Transform + - uid: 6026 + components: + - pos: 39.088726,-33.420593 + parent: 34 + type: Transform + - uid: 6192 + components: + - pos: 40.494976,-34.99872 + parent: 34 + type: Transform + - uid: 6224 + components: + - pos: 40.5106,-34.06122 + parent: 34 + type: Transform + - uid: 7383 + components: + - pos: 38.5106,-34.795593 + parent: 34 + type: Transform + - uid: 11084 + components: + - pos: 38.66562,-41.206146 + parent: 34 + type: Transform + - uid: 11085 + components: + - pos: 38.41562,-40.080368 + parent: 34 + type: Transform +- proto: DrinkGoldenCup + entities: + - uid: 5250 + components: + - pos: 24.771664,-33.41835 + parent: 34 + type: Transform +- proto: DrinkGrapeCan + entities: + - uid: 10366 + components: + - pos: 20.222105,-30.938963 + parent: 34 + type: Transform + - uid: 11611 + components: + - pos: -37.329296,-27.171295 + parent: 34 + type: Transform +- proto: DrinkHoochGlass + entities: + - uid: 5959 + components: + - pos: 8.726354,-5.1830006 + parent: 34 + type: Transform +- proto: DrinkIcedTeaCan + entities: + - uid: 5896 + components: + - pos: -55.56601,-1.2604798 + parent: 34 + type: Transform + - uid: 5897 + components: + - pos: -55.40976,-1.432474 + parent: 34 + type: Transform +- proto: DrinkMugMetal + entities: + - uid: 4724 + components: + - pos: 41.65903,5.41313 + parent: 34 + type: Transform + - uid: 4725 + components: + - pos: 41.768406,5.710211 + parent: 34 + type: Transform + - uid: 4726 + components: + - pos: 41.612156,6.0072923 + parent: 34 + type: Transform +- proto: DrinkMugOne + entities: + - uid: 3940 + components: + - pos: 17.364058,-32.902626 + parent: 34 + type: Transform + - uid: 10911 + components: + - pos: 37.376976,-29.338423 + parent: 34 + type: Transform +- proto: DrinkMugRainbow + entities: + - uid: 11215 + components: + - pos: 22.321388,11.995523 + parent: 34 + type: Transform +- proto: DrinkRootBeerCan + entities: + - uid: 8954 + components: + - pos: 13.863688,-40.13169 + parent: 34 + type: Transform + - uid: 11711 + components: + - pos: -45.753075,-14.524826 + parent: 34 + type: Transform +- proto: DrinkSakeBottleFull + entities: + - uid: 10534 + components: + - pos: 2.7853847,-3.2562366 + parent: 34 + type: Transform +- proto: DrinkSakeCup + entities: + - uid: 12164 + components: + - pos: -56.416985,-11.465357 + parent: 34 + type: Transform + - uid: 12165 + components: + - pos: -56.583652,-11.236031 + parent: 34 + type: Transform + - uid: 12166 + components: + - pos: -56.68782,-11.4757805 + parent: 34 + type: Transform +- proto: DrinkSakeGlass + entities: + - uid: 832 + components: + - pos: 0.4312179,-5.622464 + parent: 34 + type: Transform + - uid: 4286 + components: + - pos: 24.769295,-29.12897 + parent: 34 + type: Transform + - uid: 9521 + components: + - pos: 0.3062179,-5.3410187 + parent: 34 + type: Transform +- proto: DrinkShaker + entities: + - uid: 3955 + components: + - pos: -10.339716,-42.691956 + parent: 34 + type: Transform + - uid: 4722 + components: + - pos: 41.310482,5.6547894 + parent: 34 + type: Transform +- proto: DrinkShotGlass + entities: + - uid: 9846 + components: + - pos: 2.502306,-3.3255205 + parent: 34 + type: Transform + - uid: 11011 + components: + - pos: 2.346056,-3.492303 + parent: 34 + type: Transform +- proto: DrinkSojuBottleFull + entities: + - uid: 10937 + components: + - pos: 3.0978847,-3.2770853 + parent: 34 + type: Transform +- proto: DrinkSoyLatte + entities: + - uid: 1984 + components: + - pos: -17.281527,-18.907257 + parent: 34 + type: Transform +- proto: DrinkSpaceMountainWindCan + entities: + - uid: 11710 + components: + - pos: -45.180157,-14.232956 + parent: 34 + type: Transform +- proto: DrinkTeacup + entities: + - uid: 604 + components: + - pos: 4.259925,-6.364277 + parent: 34 + type: Transform + - uid: 1912 + components: + - pos: 4.082842,-6.520635 + parent: 34 + type: Transform + - uid: 12149 + components: + - pos: -58.303734,-10.438734 + parent: 34 + type: Transform + - uid: 12150 + components: + - pos: -58.741234,-10.438734 + parent: 34 + type: Transform + - uid: 12151 + components: + - pos: -58.2829,-9.302528 + parent: 34 + type: Transform + - uid: 12152 + components: + - pos: -58.75165,-9.302528 + parent: 34 + type: Transform +- proto: DrinkTeapot + entities: + - uid: 1915 + components: + - pos: 3.7286751,-6.1870704 + parent: 34 + type: Transform + - uid: 12148 + components: + - pos: -58.522484,-9.854996 + parent: 34 + type: Transform +- proto: DrinkTokkuri + entities: + - uid: 9543 + components: + - pos: 0.72288465,-5.330594 + parent: 34 + type: Transform + - uid: 12163 + components: + - pos: -56.271152,-11.152639 + parent: 34 + type: Transform +- proto: DrinkVacuumFlask + entities: + - uid: 8024 + components: + - pos: -32.50218,3.7678924 + parent: 34 + type: Transform +- proto: DrinkWaterBottleFull + entities: + - uid: 681 + components: + - pos: -15.294816,-32.0834 + parent: 34 + type: Transform + - uid: 2706 + components: + - pos: 10.330606,-38.57587 + parent: 34 + type: Transform + - uid: 2947 + components: + - pos: 10.752976,-38.638725 + parent: 34 + type: Transform + - uid: 7549 + components: + - pos: -31.421936,-29.090164 + parent: 34 + type: Transform + - uid: 7550 + components: + - pos: -31.22402,-29.090164 + parent: 34 + type: Transform + - uid: 7551 + components: + - pos: -31.31777,-29.225676 + parent: 34 + type: Transform + - uid: 11341 + components: + - pos: 20.285599,-16.020523 + parent: 34 + type: Transform + - uid: 11343 + components: + - pos: 20.358517,-15.947556 + parent: 34 + type: Transform + - uid: 11344 + components: + - pos: 20.181433,-15.947556 + parent: 34 + type: Transform + - uid: 11932 + components: + - pos: -0.8433014,4.316883 + parent: 34 + type: Transform + - uid: 12625 + components: + - pos: -8.453513,-29.251322 + parent: 34 + type: Transform + - uid: 12655 + components: + - pos: -8.266013,-29.266947 + parent: 34 + type: Transform +- proto: DrinkWaterCup + entities: + - uid: 212 + components: + - rot: 1.5707963267948966 rad + pos: 32.255108,-13.224632 + parent: 34 + type: Transform + - uid: 872 + components: + - pos: -10.285259,5.6222386 + parent: 34 + type: Transform + - uid: 964 + components: + - pos: -10.472759,5.497151 + parent: 34 + type: Transform + - uid: 6392 + components: + - pos: 40.553383,-31.46188 + parent: 34 + type: Transform + - uid: 10990 + components: + - pos: 7.386877,7.710605 + parent: 34 + type: Transform + - uid: 11109 + components: + - pos: 7.652502,7.679355 + parent: 34 + type: Transform + - uid: 11505 + components: + - pos: 40.178383,-31.415005 + parent: 34 + type: Transform + - uid: 12173 + components: + - pos: 32.380108,-13.427757 + parent: 34 + type: Transform + - uid: 12228 + components: + - pos: 32.255108,-13.412132 + parent: 34 + type: Transform + - uid: 12525 + components: + - pos: -46.29773,-24.245388 + parent: 34 + type: Transform + - uid: 12527 + components: + - pos: -46.532104,-24.276638 + parent: 34 + type: Transform + - uid: 12528 + components: + - pos: -46.73523,-24.307888 + parent: 34 + type: Transform +- proto: DrinkWhiskeyGlass + entities: + - uid: 12285 + components: + - pos: -5.6498795,4.393426 + parent: 34 + type: Transform +- proto: Dropper + entities: + - uid: 11396 + components: + - rot: 3.141592653589793 rad + pos: -20.435867,-4.130167 + parent: 34 + type: Transform + - uid: 11702 + components: + - pos: -32.276623,-17.299429 + parent: 34 + type: Transform +- proto: EmergencyLight + entities: + - uid: 685 + components: + - pos: -1.5,-45.5 + parent: 34 + type: Transform + - uid: 874 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-6.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1058 + components: + - pos: -15.5,-32.5 + parent: 34 + type: Transform + - uid: 2417 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-1.5 + parent: 34 + type: Transform + - uid: 6132 + components: + - rot: 3.141592653589793 rad + pos: 2.5,10.5 + parent: 34 + type: Transform + - uid: 6133 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 34 + type: Transform + - uid: 6134 + components: + - pos: 9.5,8.5 + parent: 34 + type: Transform + - uid: 6136 + components: + - pos: 4.5,11.5 + parent: 34 + type: Transform + - uid: 7465 + components: + - pos: -37.5,5.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 7701 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-31.5 + parent: 34 + type: Transform + - uid: 7711 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-48.5 + parent: 34 + type: Transform + - uid: 7874 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-44.5 + parent: 34 + type: Transform + - uid: 8429 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-38.5 + parent: 34 + type: Transform + - uid: 8927 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-35.5 + parent: 34 + type: Transform + - uid: 10415 + components: + - rot: 3.141592653589793 rad + pos: -40.5,7.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10636 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-22.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10637 + components: + - pos: -7.5,-11.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10638 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-11.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10640 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10641 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-12.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10642 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10643 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-5.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10644 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-10.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10645 + components: + - pos: -47.5,-0.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10649 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,2.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10650 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,2.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10651 + components: + - pos: -14.5,4.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10653 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,3.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10654 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-1.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10656 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-18.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10657 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-24.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10658 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-25.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10659 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-37.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10660 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-36.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10664 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-41.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10665 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-27.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10666 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-27.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10667 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-38.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10668 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-38.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10669 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,-37.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10670 + components: + - pos: -44.5,-29.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10671 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-31.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10674 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-16.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10675 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-11.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10676 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-16.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10677 + components: + - rot: 3.141592653589793 rad + pos: -28.5,-1.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10679 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-49.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10680 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10681 + components: + - pos: 24.5,-2.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10682 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-16.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10683 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-7.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10685 + components: + - pos: 41.5,6.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10688 + components: + - pos: 50.5,-22.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10694 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-34.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10773 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,3.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10779 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-23.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10780 + components: + - pos: -30.5,-25.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10781 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-46.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 10782 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-49.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11093 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-33.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11307 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-1.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11322 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-34.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11327 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-9.5 + parent: 34 + type: Transform + - uid: 11551 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-21.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11579 + components: + - rot: 3.141592653589793 rad + pos: -46.5,-27.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11612 + components: + - pos: -50.5,-24.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11613 + components: + - pos: -39.5,-25.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11735 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-27.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11737 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-24.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12192 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-9.5 + parent: 34 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12244 + components: + - pos: -15.5,-29.5 + parent: 34 + type: Transform + - uid: 12292 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-13.5 + parent: 34 + type: Transform + - uid: 12505 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-39.5 + parent: 34 + type: Transform + - uid: 12508 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-42.5 + parent: 34 + type: Transform + - uid: 12517 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-37.5 + parent: 34 + type: Transform + - uid: 12925 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-8.5 + parent: 34 + type: Transform +- proto: EmergencyRollerBed + entities: + - uid: 12267 + components: + - pos: 4.4804573,-34.454243 + parent: 34 + type: Transform +- proto: EncryptionKeyCargo + entities: + - uid: 12061 + components: + - flags: InContainer + type: MetaData + - parent: 12060 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyCommand + entities: + - uid: 12099 + components: + - flags: InContainer + type: MetaData + - parent: 12098 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyCommon + entities: + - uid: 12051 + components: + - flags: InContainer + type: MetaData + - parent: 12050 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyEngineering + entities: + - uid: 12054 + components: + - flags: InContainer + type: MetaData + - parent: 12052 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyMedical + entities: + - uid: 12056 + components: + - flags: InContainer + type: MetaData + - parent: 12055 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyMedicalScience + entities: + - uid: 12057 + components: + - flags: InContainer + type: MetaData + - parent: 12055 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyRobo + entities: + - uid: 12053 + components: + - flags: InContainer + type: MetaData + - parent: 12052 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeySecurity + entities: + - uid: 3763 + components: + - flags: InContainer + type: MetaData + - parent: 3762 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyService + entities: + - uid: 12059 + components: + - flags: InContainer + type: MetaData + - parent: 12058 + type: Transform + - canCollide: False + type: Physics +- proto: ExosuitFabricator + entities: + - uid: 3382 + components: + - pos: -47.5,-19.5 + parent: 34 + type: Transform +- proto: ExtinguisherCabinetFilled + entities: + - uid: 345 + components: + - pos: 7.5,-20.5 + parent: 34 + type: Transform + - uid: 1166 + components: + - pos: -41.5,-34.5 + parent: 34 + type: Transform + - uid: 3299 + components: + - pos: -27.5,-9.5 + parent: 34 + type: Transform + - uid: 3300 + components: + - pos: -13.5,-9.5 + parent: 34 + type: Transform + - uid: 3301 + components: + - pos: -2.5,-21.5 + parent: 34 + type: Transform + - uid: 5628 + components: + - pos: -39.5,0.5 + parent: 34 + type: Transform + - uid: 5671 + components: + - pos: -33.5,3.5 + parent: 34 + type: Transform + - uid: 8085 + components: + - pos: -30.5,-17.5 + parent: 34 + type: Transform + - uid: 8087 + components: + - pos: -41.5,-28.5 + parent: 34 + type: Transform + - uid: 8088 + components: + - pos: -31.5,-42.5 + parent: 34 + type: Transform + - uid: 8089 + components: + - pos: -26.5,-28.5 + parent: 34 + type: Transform + - uid: 8090 + components: + - pos: 6.5,-6.5 + parent: 34 + type: Transform + - uid: 8093 + components: + - pos: -0.5,-16.5 + parent: 34 + type: Transform + - uid: 8095 + components: + - pos: 11.5,-33.5 + parent: 34 + type: Transform + - uid: 8096 + components: + - pos: 19.5,-25.5 + parent: 34 + type: Transform + - uid: 8097 + components: + - pos: 28.5,-25.5 + parent: 34 + type: Transform + - uid: 8098 + components: + - pos: 16.5,-20.5 + parent: 34 + type: Transform + - uid: 8099 + components: + - pos: 20.5,-2.5 + parent: 34 + type: Transform + - uid: 8100 + components: + - pos: 35.5,-37.5 + parent: 34 + type: Transform + - uid: 8101 + components: + - pos: 37.5,-30.5 + parent: 34 + type: Transform + - uid: 8102 + components: + - pos: 27.5,-16.5 + parent: 34 + type: Transform + - uid: 8103 + components: + - pos: 31.5,-1.5 + parent: 34 + type: Transform + - uid: 8106 + components: + - pos: 6.5,12.5 + parent: 34 + type: Transform + - uid: 8107 + components: + - pos: 10.5,-9.5 + parent: 34 + type: Transform + - uid: 8109 + components: + - pos: -52.5,-9.5 + parent: 34 + type: Transform + - uid: 8112 + components: + - pos: -23.5,-12.5 + parent: 34 + type: Transform + - uid: 9467 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,-11.5 + parent: 34 + type: Transform + - uid: 10417 + components: + - pos: 11.5,4.5 + parent: 34 + type: Transform + - uid: 10954 + components: + - pos: -11.5,-2.5 + parent: 34 + type: Transform + - uid: 11502 + components: + - pos: -49.5,-19.5 + parent: 34 + type: Transform +- proto: FaxMachineBase + entities: + - uid: 1232 + components: + - pos: -26.5,-31.5 + parent: 34 + type: Transform + - name: Engie, Chief + type: FaxMachine + - uid: 1343 + components: + - pos: 9.5,-31.5 + parent: 34 + type: Transform + - name: Medical, CMO + type: FaxMachine + - uid: 1983 + components: + - pos: -17.5,-18.5 + parent: 34 + type: Transform + - name: Service, HoP + type: FaxMachine + - uid: 2027 + components: + - pos: -31.5,3.5 + parent: 34 + type: Transform + - name: Epi, Forensic + type: FaxMachine + - uid: 2418 + components: + - pos: 9.5,7.5 + parent: 34 + type: Transform + - name: Service, Lawyer + type: FaxMachine + - uid: 4202 + components: + - pos: 30.5,-10.5 + parent: 34 + type: Transform + - name: Security, HoS + type: FaxMachine + - uid: 4203 + components: + - pos: 29.5,-45.5 + parent: 34 + type: Transform + - name: Engie, South Solar + type: FaxMachine + - uid: 4397 + components: + - pos: 16.5,-38.5 + parent: 34 + type: Transform + - name: Service, Reporter + type: FaxMachine + - uid: 4463 + components: + - pos: 32.5,-34.5 + parent: 34 + type: Transform + - name: Command, Bridge + type: FaxMachine + - uid: 4918 + components: + - pos: 22.5,-11.5 + parent: 34 + type: Transform + - name: Security, Main + type: FaxMachine + - uid: 5798 + components: + - pos: -21.5,5.5 + parent: 34 + type: Transform + - name: Engie, North Solar + type: FaxMachine + - uid: 5812 + components: + - pos: -8.5,-27.5 + parent: 34 + type: Transform + - name: Service, Cargo + type: FaxMachine + - uid: 7403 + components: + - pos: -35.5,-4.5 + parent: 34 + type: Transform + - name: Epi, Mystagogue + type: FaxMachine + - uid: 7544 + components: + - pos: -32.5,-29.5 + parent: 34 + type: Transform + - name: Engie, Main + type: FaxMachine + - uid: 8686 + components: + - pos: 18.5,-0.5 + parent: 34 + type: Transform + - name: Security, Corpsman + type: FaxMachine + - uid: 11013 + components: + - pos: 2.5,-17.5 + parent: 34 + type: Transform + - name: Service, Clown/Mime + type: FaxMachine + - uid: 11774 + components: + - pos: -48.5,-31.5 + parent: 34 + type: Transform + - name: Atmos department + type: FaxMachine +- proto: FaxMachineCaptain + entities: + - uid: 4462 + components: + - pos: 24.5,-27.5 + parent: 34 + type: Transform + - name: Command, Captain + type: FaxMachine +- proto: filingCabinetDrawer + entities: + - uid: 4445 + components: + - pos: 32.5,-33.5 + parent: 34 + type: Transform +- proto: filingCabinetDrawerRandom + entities: + - uid: 2501 + components: + - pos: 41.5,-31.5 + parent: 34 + type: Transform + - uid: 10754 + components: + - pos: 7.5,7.5 + parent: 34 + type: Transform +- proto: filingCabinetRandom + entities: + - uid: 12938 + components: + - pos: -9.5,3.5 + parent: 34 + type: Transform +- proto: FireAlarm + entities: + - uid: 8199 + components: + - pos: -7.5,-10.5 + parent: 34 + type: Transform + - devices: + - 841 + - 840 + - 839 + - 838 + - 10321 + - 10320 + - 10318 + - 10319 + - 1954 + - 10542 + - 10325 + - 737 + - 10324 + - 10322 + - 998 + - 2714 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 8271 + components: + - pos: -13.5,-23.5 + parent: 34 + type: Transform + - devices: + - 1952 + - 10318 + - 10319 + - 1954 + - 10576 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 8272 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-38.5 + parent: 34 + type: Transform + - devices: + - 10551 + - 10557 + - 10556 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 8273 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-35.5 + parent: 34 + type: Transform + - devices: + - 10546 + - 10555 + - 10554 + - 10553 + - 10552 + - 10551 + - 10549 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 8274 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-15.5 + parent: 34 + type: Transform + - devices: + - 617 + - 10563 + - 10565 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 8275 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-12.5 + parent: 34 + type: Transform + - devices: + - 10564 + - 10565 + - 10566 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 8276 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-2.5 + parent: 34 + type: Transform + - devices: + - 10302 + - 10301 + - 10311 + - 10312 + - 6087 + - 10248 + - 11252 + - 11253 + - 5925 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 8278 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 34 + type: Transform + - devices: + - 998 + - 10652 + - 892 + - 115 + - 280 + - 12016 + - 11983 + - 11984 + - 8724 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 8279 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-2.5 + parent: 34 + type: Transform + - devices: + - 10307 + - 10306 + - 10305 + - 10304 + - 2158 + - 10566 + - 10301 + - 10302 + - 10308 + - 10309 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10858 + components: + - pos: 8.5,-21.5 + parent: 34 + type: Transform + - devices: + - 10326 + - 10325 + - 10860 + - 10859 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10861 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-8.5 + parent: 34 + type: Transform + - devices: + - 10339 + - 10590 + - 10598 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10862 + components: + - pos: 21.5,-8.5 + parent: 34 + type: Transform + - devices: + - 3638 + - 10340 + - 10592 + - 10586 + - 10587 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10863 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-4.5 + parent: 34 + type: Transform + - devices: + - 10592 + - 3638 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10865 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,5.5 + parent: 34 + type: Transform + - devices: + - 10615 + - 10612 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 10866 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,7.5 + parent: 34 + type: Transform + - devices: + - 10598 + - 10599 + - 10600 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 11679 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-28.5 + parent: 34 + type: Transform + - devices: + - 10338 + - 11249 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 11680 + components: + - pos: 18.5,-21.5 + parent: 34 + type: Transform + - devices: + - 10339 + - 10326 + - 10338 + - 10341 + - 11095 + - 10774 + - 4252 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 11681 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-32.5 + parent: 34 + type: Transform + - devices: + - 10346 + - 10344 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 11683 + components: + - rot: 3.141592653589793 rad + pos: 5.5,12.5 + parent: 34 + type: Transform + - devices: + - 10600 + - 11903 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 11738 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-34.5 + parent: 34 + type: Transform + - devices: + - 10715 + - 10692 + - 10578 + - 10712 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 11739 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-29.5 + parent: 34 + type: Transform + - devices: + - 10689 + - 10619 + - 10620 + - 10691 + - 10690 + - 10692 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 12706 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-11.5 + parent: 34 + type: Transform + - devices: + - 8922 + - 12372 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice + - uid: 12975 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-30.5 + parent: 34 + type: Transform + - devices: + - 10344 + type: DeviceList + - joinedGrid: 34 + type: AtmosDevice +- proto: FireAxeCabinetFilled + entities: + - uid: 1840 + components: + - pos: -47.5,-32.5 + parent: 34 + type: Transform + - uid: 4470 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-31.5 + parent: 34 + type: Transform +- proto: Firelock + entities: + - uid: 262 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-48.5 + parent: 34 + type: Transform + - uid: 1252 + components: + - pos: -49.5,-26.5 + parent: 34 + type: Transform + - uid: 1573 + components: + - pos: -49.5,-25.5 + parent: 34 + type: Transform + - uid: 1928 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-33.5 + parent: 34 + type: Transform + - uid: 2355 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-34.5 + parent: 34 + type: Transform + - uid: 2450 + components: + - pos: -27.5,-26.5 + parent: 34 + type: Transform + - uid: 2750 + components: + - pos: -21.5,-12.5 + parent: 34 + type: Transform + - uid: 3437 + components: + - pos: 3.5,-14.5 + parent: 34 + type: Transform + - uid: 5925 + components: + - pos: -37.5,0.5 + parent: 34 + type: Transform + - uid: 5948 + components: + - pos: -22.5,-12.5 + parent: 34 + type: Transform + - uid: 6140 + components: + - pos: 9.5,4.5 + parent: 34 + type: Transform + - uid: 7409 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-43.5 + parent: 34 + type: Transform + - uid: 7682 + components: + - pos: 30.5,8.5 + parent: 34 + type: Transform + - uid: 7748 + components: + - pos: 7.5,-44.5 + parent: 34 + type: Transform + - uid: 7798 + components: + - pos: -43.5,5.5 + parent: 34 + type: Transform + - uid: 8003 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-41.5 + parent: 34 + type: Transform + - uid: 8503 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-39.5 + parent: 34 + type: Transform + - uid: 9901 + components: + - pos: -40.5,-22.5 + parent: 34 + type: Transform + - uid: 10281 + components: + - pos: -43.5,4.5 + parent: 34 + type: Transform + - uid: 10340 + components: + - pos: 20.5,-11.5 + parent: 34 + type: Transform + - uid: 10563 + components: + - pos: -30.5,-18.5 + parent: 34 + type: Transform + - uid: 10564 + components: + - pos: -28.5,-12.5 + parent: 34 + type: Transform + - uid: 10566 + components: + - pos: -31.5,-2.5 + parent: 34 + type: Transform + - uid: 10599 + components: + - pos: 15.5,-0.5 + parent: 34 + type: Transform + - uid: 10615 + components: + - pos: 38.5,2.5 + parent: 34 + type: Transform + - uid: 10689 + components: + - pos: 2.5,-28.5 + parent: 34 + type: Transform + - uid: 10690 + components: + - pos: 6.5,-28.5 + parent: 34 + type: Transform + - uid: 10715 + components: + - pos: 8.5,-33.5 + parent: 34 + type: Transform + - uid: 10859 + components: + - pos: 0.5,-21.5 + parent: 34 + type: Transform + - uid: 10860 + components: + - pos: 5.5,-21.5 + parent: 34 + type: Transform + - uid: 11051 + components: + - pos: -53.5,-6.5 + parent: 34 + type: Transform + - uid: 11056 + components: + - pos: -54.5,-6.5 + parent: 34 + type: Transform + - uid: 11071 + components: + - pos: 30.5,7.5 + parent: 34 + type: Transform + - uid: 11090 + components: + - pos: 3.5,-15.5 + parent: 34 + type: Transform + - uid: 11101 + components: + - pos: 7.5,-45.5 + parent: 34 + type: Transform + - uid: 11285 + components: + - pos: 26.5,9.5 + parent: 34 + type: Transform + - uid: 12227 + components: + - pos: -28.5,-37.5 + parent: 34 + type: Transform + - uid: 12427 + components: + - pos: 5.5,-40.5 + parent: 34 + type: Transform + - uid: 12487 + components: + - pos: 2.5,-40.5 + parent: 34 + type: Transform + - uid: 12641 + components: + - pos: -49.5,-33.5 + parent: 34 + type: Transform + - uid: 12642 + components: + - pos: -49.5,-34.5 + parent: 34 + type: Transform + - uid: 12885 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-39.5 + parent: 34 + type: Transform + - uid: 12886 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-37.5 + parent: 34 + type: Transform + - uid: 12899 + components: + - pos: -10.5,-28.5 + parent: 34 + type: Transform +- proto: FirelockEdge + entities: + - uid: 735 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 34 + type: Transform + - uid: 736 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 34 + type: Transform + - uid: 792 + components: + - pos: 2.5,-6.5 + parent: 34 + type: Transform + - uid: 793 + components: + - pos: 1.5,-6.5 + parent: 34 + type: Transform + - uid: 813 + components: + - pos: 3.5,-6.5 + parent: 34 + type: Transform + - uid: 815 + components: + - pos: 0.5,-6.5 + parent: 34 + type: Transform + - uid: 816 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 34 + type: Transform + - uid: 817 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 34 + type: Transform + - uid: 818 + components: + - pos: 4.5,-6.5 + parent: 34 + type: Transform + - uid: 819 + components: + - pos: 5.5,-6.5 + parent: 34 + type: Transform + - uid: 3414 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-45.5 + parent: 34 + type: Transform + - uid: 4029 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-41.5 + parent: 34 + type: Transform + - uid: 4033 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-45.5 + parent: 34 + type: Transform + - uid: 4034 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-45.5 + parent: 34 + type: Transform + - uid: 10558 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-42.5 + parent: 34 + type: Transform +- proto: FirelockGlass + entities: + - uid: 115 + components: + - pos: -12.5,0.5 + parent: 34 + type: Transform + - uid: 180 + components: + - pos: -36.5,-23.5 + parent: 34 + type: Transform + - uid: 280 + components: + - pos: -10.5,1.5 + parent: 34 + type: Transform + - uid: 617 + components: + - pos: -34.5,-20.5 + parent: 34 + type: Transform + - uid: 719 + components: + - pos: -37.5,-24.5 + parent: 34 + type: Transform + - uid: 737 + components: + - pos: -2.5,-10.5 + parent: 34 + type: Transform + - uid: 838 + components: + - pos: -11.5,-10.5 + parent: 34 + type: Transform + - uid: 839 + components: + - pos: -10.5,-10.5 + parent: 34 + type: Transform + - uid: 840 + components: + - pos: -9.5,-10.5 + parent: 34 + type: Transform + - uid: 841 + components: + - pos: -8.5,-10.5 + parent: 34 + type: Transform + - uid: 892 + components: + - pos: -12.5,-0.5 + parent: 34 + type: Transform + - uid: 998 + components: + - pos: -4.5,-3.5 + parent: 34 + type: Transform + - uid: 1121 + components: + - pos: -36.5,-22.5 + parent: 34 + type: Transform + - uid: 1274 + components: + - pos: -13.5,-8.5 + parent: 34 + type: Transform + - uid: 1275 + components: + - pos: -13.5,-7.5 + parent: 34 + type: Transform + - uid: 1828 + components: + - pos: -38.5,-24.5 + parent: 34 + type: Transform + - uid: 1952 + components: + - pos: -15.5,-26.5 + parent: 34 + type: Transform + - uid: 1953 + components: + - pos: -18.5,-20.5 + parent: 34 + type: Transform + - uid: 1954 + components: + - pos: -6.5,-25.5 + parent: 34 + type: Transform + - uid: 2158 + components: + - pos: -30.5,0.5 + parent: 34 + type: Transform + - uid: 2309 + components: + - pos: -20.5,-26.5 + parent: 34 + type: Transform + - uid: 2714 + components: + - pos: -15.5,-22.5 + parent: 34 + type: Transform + - uid: 3340 + components: + - pos: 16.5,-13.5 + parent: 34 + type: Transform + - uid: 3638 + components: + - pos: 22.5,-8.5 + parent: 34 + type: Transform + - uid: 4252 + components: + - pos: 20.5,-32.5 + parent: 34 + type: Transform + - uid: 4700 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-32.5 + parent: 34 + type: Transform + - deviceLists: + - 10548 + type: DeviceNetwork + - uid: 6087 + components: + - pos: -40.5,-10.5 + parent: 34 + type: Transform + - uid: 6402 + components: + - pos: -6.5,-43.5 + parent: 34 + type: Transform + - uid: 8724 + components: + - pos: 6.5,0.5 + parent: 34 + type: Transform + - uid: 8728 + components: + - pos: -19.5,-2.5 + parent: 34 + type: Transform + - uid: 8729 + components: + - pos: -18.5,-2.5 + parent: 34 + type: Transform + - uid: 8922 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-5.5 + parent: 34 + type: Transform + - deviceLists: + - 10611 + - 9601 + - 12706 + type: DeviceNetwork + - uid: 10248 + components: + - pos: -40.5,-9.5 + parent: 34 + type: Transform + - uid: 10301 + components: + - pos: -33.5,-1.5 + parent: 34 + type: Transform + - uid: 10302 + components: + - pos: -33.5,-0.5 + parent: 34 + type: Transform + - uid: 10304 + components: + - pos: -25.5,1.5 + parent: 34 + type: Transform + - uid: 10305 + components: + - pos: -24.5,1.5 + parent: 34 + type: Transform + - uid: 10306 + components: + - pos: -22.5,1.5 + parent: 34 + type: Transform + - uid: 10307 + components: + - pos: -21.5,1.5 + parent: 34 + type: Transform + - uid: 10308 + components: + - pos: -17.5,1.5 + parent: 34 + type: Transform + - uid: 10309 + components: + - pos: -14.5,1.5 + parent: 34 + type: Transform + - uid: 10311 + components: + - pos: -38.5,-14.5 + parent: 34 + type: Transform + - uid: 10312 + components: + - pos: -37.5,-14.5 + parent: 34 + type: Transform + - uid: 10315 + components: + - pos: -27.5,-20.5 + parent: 34 + type: Transform + - uid: 10316 + components: + - pos: -26.5,-20.5 + parent: 34 + type: Transform + - uid: 10317 + components: + - pos: -25.5,-24.5 + parent: 34 + type: Transform + - uid: 10318 + components: + - pos: -11.5,-23.5 + parent: 34 + type: Transform + - uid: 10319 + components: + - pos: -10.5,-23.5 + parent: 34 + type: Transform + - uid: 10320 + components: + - pos: -15.5,-17.5 + parent: 34 + type: Transform + - uid: 10321 + components: + - pos: -15.5,-9.5 + parent: 34 + type: Transform + - uid: 10322 + components: + - pos: -6.5,-7.5 + parent: 34 + type: Transform + - uid: 10324 + components: + - pos: -2.5,-8.5 + parent: 34 + type: Transform + - uid: 10325 + components: + - pos: -2.5,-23.5 + parent: 34 + type: Transform + - uid: 10326 + components: + - pos: 10.5,-23.5 + parent: 34 + type: Transform + - uid: 10337 + components: + - pos: 19.5,-36.5 + parent: 34 + type: Transform + - uid: 10338 + components: + - pos: 15.5,-25.5 + parent: 34 + type: Transform + - uid: 10339 + components: + - pos: 13.5,-20.5 + parent: 34 + type: Transform + - uid: 10341 + components: + - pos: 23.5,-23.5 + parent: 34 + type: Transform + - uid: 10342 + components: + - pos: 30.5,-26.5 + parent: 34 + type: Transform + - uid: 10343 + components: + - pos: 32.5,-26.5 + parent: 34 + type: Transform + - uid: 10344 + components: + - pos: 35.5,-32.5 + parent: 34 + type: Transform + - uid: 10346 + components: + - pos: 31.5,-30.5 + parent: 34 + type: Transform + - uid: 10542 + components: + - pos: -4.5,-30.5 + parent: 34 + type: Transform + - uid: 10546 + components: + - pos: -30.5,-28.5 + parent: 34 + type: Transform + - uid: 10549 + components: + - pos: -33.5,-41.5 + parent: 34 + type: Transform + - uid: 10551 + components: + - pos: -36.5,-36.5 + parent: 34 + type: Transform + - uid: 10552 + components: + - pos: -36.5,-33.5 + parent: 34 + type: Transform + - uid: 10553 + components: + - pos: -36.5,-30.5 + parent: 34 + type: Transform + - uid: 10554 + components: + - pos: -35.5,-28.5 + parent: 34 + type: Transform + - uid: 10555 + components: + - pos: -34.5,-28.5 + parent: 34 + type: Transform + - uid: 10556 + components: + - pos: -45.5,-32.5 + parent: 34 + type: Transform + - uid: 10557 + components: + - pos: -41.5,-33.5 + parent: 34 + type: Transform + - uid: 10565 + components: + - pos: -32.5,-10.5 + parent: 34 + type: Transform + - uid: 10576 + components: + - pos: -6.5,-37.5 + parent: 34 + type: Transform + - uid: 10578 + components: + - pos: 1.5,-33.5 + parent: 34 + type: Transform + - uid: 10579 + components: + - pos: -0.5,-30.5 + parent: 34 + type: Transform + - uid: 10580 + components: + - pos: -1.5,-30.5 + parent: 34 + type: Transform + - uid: 10582 + components: + - pos: -4.5,-39.5 + parent: 34 + type: Transform + - uid: 10586 + components: + - pos: 21.5,-17.5 + parent: 34 + type: Transform + - uid: 10587 + components: + - pos: 21.5,-13.5 + parent: 34 + type: Transform + - uid: 10590 + components: + - pos: 16.5,-14.5 + parent: 34 + type: Transform + - uid: 10592 + components: + - pos: 23.5,-8.5 + parent: 34 + type: Transform + - uid: 10598 + components: + - pos: 13.5,-2.5 + parent: 34 + type: Transform + - uid: 10600 + components: + - pos: 13.5,12.5 + parent: 34 + type: Transform + - uid: 10612 + components: + - pos: 42.5,2.5 + parent: 34 + type: Transform + - deviceLists: + - 9601 + type: DeviceNetwork + - uid: 10619 + components: + - pos: 2.5,-27.5 + parent: 34 + type: Transform + - uid: 10620 + components: + - pos: 2.5,-26.5 + parent: 34 + type: Transform + - uid: 10652 + components: + - pos: -12.5,-1.5 + parent: 34 + type: Transform + - uid: 10691 + components: + - pos: 4.5,-25.5 + parent: 34 + type: Transform + - uid: 10692 + components: + - pos: 4.5,-30.5 + parent: 34 + type: Transform + - uid: 10712 + components: + - pos: 8.5,-37.5 + parent: 34 + type: Transform + - uid: 10774 + components: + - pos: 21.5,-32.5 + parent: 34 + type: Transform + - uid: 11095 + components: + - pos: 22.5,-32.5 + parent: 34 + type: Transform + - uid: 11249 + components: + - pos: 19.5,-33.5 + parent: 34 + type: Transform + - uid: 11251 + components: + - pos: -36.5,-21.5 + parent: 34 + type: Transform + - uid: 11252 + components: + - pos: -40.5,-1.5 + parent: 34 + type: Transform + - uid: 11253 + components: + - pos: -40.5,-0.5 + parent: 34 + type: Transform + - uid: 11517 + components: + - pos: -39.5,-28.5 + parent: 34 + type: Transform + - uid: 11903 + components: + - pos: 3.5,14.5 + parent: 34 + type: Transform + - uid: 11983 + components: + - pos: -2.5,2.5 + parent: 34 + type: Transform + - uid: 11984 + components: + - pos: -1.5,2.5 + parent: 34 + type: Transform + - uid: 12016 + components: + - pos: -8.5,1.5 + parent: 34 + type: Transform + - uid: 12360 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,-3.5 + parent: 34 + type: Transform + - deviceLists: + - 12258 + - 10611 + - 9601 + type: DeviceNetwork + - uid: 12372 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-5.5 + parent: 34 + type: Transform + - deviceLists: + - 10611 + - 9601 + - 12706 + type: DeviceNetwork + - uid: 12855 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,0.5 + parent: 34 + type: Transform + - deviceLists: + - 12258 + - 10611 + - 9601 + type: DeviceNetwork +- proto: Fireplace + entities: + - uid: 2186 + components: + - pos: -43.5,-3.5 + parent: 34 + type: Transform + - uid: 4273 + components: + - pos: 26.5,-27.5 + parent: 34 + type: Transform +- proto: Floodlight + entities: + - uid: 4927 + components: + - pos: 25.210653,-9.219074 + parent: 34 + type: Transform + - uid: 4929 + components: + - pos: 25.476278,-9.437975 + parent: 34 + type: Transform + - uid: 10693 + components: + - pos: -54.96202,-0.68965304 + parent: 34 + type: Transform +- proto: FloodlightBroken + entities: + - uid: 10494 + components: + - pos: 39.290485,-19.296558 + parent: 34 + type: Transform +- proto: FloorDrain + entities: + - uid: 99 + components: + - pos: -18.5,-6.5 + parent: 34 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 100 + components: + - pos: -9.5,-5.5 + parent: 34 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 2497 + components: + - pos: -27.5,-11.5 + parent: 34 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 2682 + components: + - pos: 0.5,-27.5 + parent: 34 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 3074 + components: + - pos: 5.5,-19.5 + parent: 34 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 3970 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-42.5 + parent: 34 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 4211 + components: + - pos: 3.5,-4.5 + parent: 34 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 4600 + components: + - pos: 38.5,0.5 + parent: 34 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 4716 + components: + - pos: 39.5,4.5 + parent: 34 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 5510 + components: + - pos: 39.5,-40.5 + parent: 34 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 5574 + components: + - pos: -16.5,2.5 + parent: 34 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 8971 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-41.5 + parent: 34 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 9705 + components: + - pos: -13.5,-3.5 + parent: 34 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 11541 + components: + - pos: -51.5,-17.5 + parent: 34 + type: Transform + - fixtures: {} + type: Fixtures +- proto: FloorTileItemSteel + entities: + - uid: 10229 + components: + - pos: 22.066668,-36.34333 + parent: 34 + type: Transform +- proto: FoodApple + entities: + - uid: 10536 + components: + - pos: -18.488152,-2.3030024 + parent: 34 + type: Transform +- proto: FoodBoxDonkpocketPizza + entities: + - uid: 1994 + components: + - rot: 3.141592653589793 rad + pos: -42.521614,-17.474852 + parent: 34 + type: Transform +- proto: FoodBoxDonut + entities: + - uid: 1922 + components: + - pos: -14.60823,-24.216122 + parent: 34 + type: Transform + - uid: 4461 + components: + - pos: 38.512604,-31.40184 + parent: 34 + type: Transform +- proto: FoodBoxPizzaFilled + entities: + - uid: 2017 + components: + - pos: -42.521614,-16.271727 + parent: 34 + type: Transform + - uid: 11491 + components: + - pos: 10.603919,-38.149315 + parent: 34 + type: Transform +- proto: FoodBreadBanana + entities: + - uid: 10703 + components: + - pos: 38.625507,-33.303604 + parent: 34 + type: Transform +- proto: FoodBreadBananaSlice + entities: + - uid: 10751 + components: + - pos: 38.297382,-33.491104 + parent: 34 + type: Transform +- proto: FoodBurgerBacon + entities: + - uid: 7571 + components: + - pos: 38.500507,-35.553604 + parent: 34 + type: Transform +- proto: FoodBurgerBig + entities: + - uid: 7391 + components: + - pos: 39.516132,-33.38173 + parent: 34 + type: Transform +- proto: FoodBurgerMcguffin + entities: + - uid: 10883 + components: + - pos: 40.531757,-35.459854 + parent: 34 + type: Transform +- proto: FoodBurgerMcrib + entities: + - uid: 9403 + components: + - pos: 40.531757,-34.522354 + parent: 34 + type: Transform +- proto: FoodChili + entities: + - uid: 1 + components: + - pos: -14.388376,-3.5088358 + parent: 34 + type: Transform + - uid: 835 + components: + - pos: -14.232126,-3.5818033 + parent: 34 + type: Transform +- proto: FoodFrozenCornuto + entities: + - uid: 10299 + components: + - pos: -14.232126,-4.6137686 + parent: 34 + type: Transform +- proto: FoodFrozenSandwich + entities: + - uid: 83 + components: + - pos: -14.711293,-4.6033454 + parent: 34 + type: Transform +- proto: FoodFrozenSandwichStrawberry + entities: + - uid: 10298 + components: + - pos: -14.555043,-4.342748 + parent: 34 + type: Transform +- proto: FoodMealNachos + entities: + - uid: 12198 + components: + - desc: Made up of whatever came out of the vents since the last kitchen disaster. + name: the disposal nachos + type: MetaData + - pos: -42.47748,10.023155 + parent: 34 + type: Transform +- proto: FoodMealSashimi + entities: + - uid: 890 + components: + - pos: 0.5249679,-6.3729854 + parent: 34 + type: Transform + - uid: 4285 + components: + - pos: 24.47242,-29.488592 + parent: 34 + type: Transform + - uid: 10882 + components: + - pos: 40.547382,-33.584854 + parent: 34 + type: Transform +- proto: FoodOnion + entities: + - uid: 11376 + components: + - pos: -12.218711,-4.6579046 + parent: 34 + type: Transform +- proto: FoodPieApple + entities: + - uid: 10663 + components: + - pos: 38.484882,-34.38173 + parent: 34 + type: Transform +- proto: FoodPieBananaCream + entities: + - uid: 5077 + components: + - pos: -1.5631683,-17.486998 + parent: 34 + type: Transform + - uid: 5078 + components: + - pos: -1.3912933,-17.299368 + parent: 34 + type: Transform + - uid: 5079 + components: + - pos: -1.0944183,-17.486998 + parent: 34 + type: Transform +- proto: FoodPizzaVegetableSlice + entities: + - uid: 12266 + components: + - pos: -15.762994,-32.17715 + parent: 34 + type: Transform +- proto: FoodPlateSmallTrash + entities: + - uid: 11061 + components: + - pos: 40.281178,-17.254995 + parent: 34 + type: Transform +- proto: FoodPotato + entities: + - uid: 11377 + components: + - pos: -12.499961,-4.345187 + parent: 34 + type: Transform + - uid: 11378 + components: + - pos: -12.760378,-4.4494267 + parent: 34 + type: Transform + - uid: 11379 + components: + - pos: -12.593711,-4.5953608 + parent: 34 + type: Transform +- proto: FoodSnackChowMein + entities: + - uid: 11629 + components: + - pos: -37.67993,-27.39584 + parent: 34 + type: Transform +- proto: FoodSnackPopcorn + entities: + - uid: 466 + components: + - pos: -7.0152483,-13.743542 + parent: 34 + type: Transform + - uid: 11630 + components: + - pos: -41.016098,-27.677042 + parent: 34 + type: Transform +- proto: FoodSnackSus + entities: + - uid: 10365 + components: + - pos: 20.315855,-29.578644 + parent: 34 + type: Transform + - uid: 12257 + components: + - pos: -48.674168,-30.394135 + parent: 34 + type: Transform +- proto: FoodSpaceshroomCooked + entities: + - uid: 9107 + components: + - pos: 41.046803,-17.192495 + parent: 34 + type: Transform +- proto: FoodTartGapple + entities: + - uid: 11177 + components: + - pos: -51.492073,13.550587 + parent: 34 + type: Transform +- proto: FoodTinPeachesMaint + entities: + - uid: 4341 + components: + - pos: 35.22465,-10.347923 + parent: 34 + type: Transform + - uid: 4507 + components: + - pos: 35.646526,-10.644798 + parent: 34 + type: Transform +- proto: FoodTinPeachesMaintTrash + entities: + - uid: 8941 + components: + - rot: -1.5707963267948966 rad + pos: 40.312428,-16.52062 + parent: 34 + type: Transform +- proto: FoodTomato + entities: + - uid: 33 + components: + - pos: -14.461293,-3.2273908 + parent: 34 + type: Transform + - uid: 42 + components: + - pos: -14.721709,-3.2586622 + parent: 34 + type: Transform + - uid: 88 + components: + - pos: -14.575876,-3.3837485 + parent: 34 + type: Transform +- proto: FuelDispenser + entities: + - uid: 5540 + components: + - pos: -27.5,6.5 + parent: 34 + type: Transform +- proto: GasAnalyzer + entities: + - uid: 239 + components: + - pos: -15.333032,-7.4604254 + parent: 34 + type: Transform + - uid: 10908 + components: + - pos: 37.73635,-27.41521 + parent: 34 + type: Transform + - uid: 12000 + components: + - pos: -28.32841,-30.367157 + parent: 34 + type: Transform + - uid: 12134 + components: + - pos: -48.174168,-30.56601 + parent: 34 + type: Transform +- proto: GasFilter + entities: + - uid: 1653 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-35.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#3AB334FF' + type: AtmosPipeColor + - uid: 2456 + components: + - desc: This filters gases into the recycler loop. Generally speaking, you should set this to carbon dioxide. + name: recycler input filter + type: MetaData + - pos: -41.5,-36.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#00FF00FF' + type: AtmosPipeColor +- proto: GasFilterFlipped + entities: + - uid: 1154 + components: + - name: nitrogen filter + type: MetaData + - rot: 3.141592653589793 rad + pos: -41.5,-39.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1219 + components: + - name: oxygen filter + type: MetaData + - rot: 3.141592653589793 rad + pos: -41.5,-41.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 1265 + components: + - name: storage filter + type: MetaData + - rot: 3.141592653589793 rad + pos: -41.5,-45.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 1546 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,-41.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 1547 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,-41.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 2983 + components: + - name: Carbon Dioxide filter + type: MetaData + - rot: 3.141592653589793 rad + pos: 0.5,-42.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3244 + components: + - name: Nitro oxide filter + type: MetaData + - rot: 3.141592653589793 rad + pos: 0.5,-41.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasMinerCarbonDioxide + entities: + - uid: 1619 + components: + - pos: -51.5,-38.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice +- proto: GasMinerNitrogen + entities: + - uid: 1458 + components: + - pos: -37.5,-39.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice +- proto: GasMinerPlasma + entities: + - uid: 1460 + components: + - pos: -37.5,-43.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice +- proto: GasMixer + entities: + - uid: 970 + components: + - name: breathable air mixer + type: MetaData + - rot: 3.141592653589793 rad + pos: -44.5,-40.5 + parent: 34 + type: Transform + - inletTwoConcentration: 0.79 + inletOneConcentration: 0.21 + targetPressure: 4500 + type: GasMixer + - joinedGrid: 34 + type: AtmosDevice + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 8111 + components: + - pos: -56.5,-35.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice +- proto: GasMixerFlipped + entities: + - uid: 971 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-43.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF00FFFF' + type: AtmosPipeColor + - uid: 1434 + components: + - name: plasma mixer + type: MetaData + - rot: 3.141592653589793 rad + pos: -43.5,-44.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 1440 + components: + - name: storage mixer + type: MetaData + - rot: 3.141592653589793 rad + pos: -43.5,-45.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice +- proto: GasOutletInjector + entities: + - uid: 925 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-3.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0088F8FF' + type: AtmosPipeColor + - uid: 1216 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-41.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 1254 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-39.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 1268 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-45.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 1536 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-47.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 12603 + components: + - rot: 3.141592653589793 rad + pos: -59.5,-38.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 12660 + components: + - rot: 3.141592653589793 rad + pos: -56.5,-37.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#947507FF' + type: AtmosPipeColor +- proto: GasPassiveGate + entities: + - uid: 1566 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-49.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 8366 + components: + - pos: -38.5,-33.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8595 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-5.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasPassiveVent + entities: + - uid: 926 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-4.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 927 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-5.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FFFF00FF' + type: AtmosPipeColor + - uid: 1217 + components: + - pos: -38.5,-43.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 1255 + components: + - pos: -36.5,-39.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 1256 + components: + - pos: -36.5,-41.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 1406 + components: + - pos: -36.5,-45.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 1453 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-51.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 1531 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-47.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 1649 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-38.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 3331 + components: + - pos: -31.5,5.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FFFF00FF' + type: AtmosPipeColor + - uid: 12653 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,-39.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12654 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,-38.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 63 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-37.5 + parent: 34 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 95 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-36.5 + parent: 34 + type: Transform + - color: '#00FF00FF' + type: AtmosPipeColor + - uid: 107 + components: + - pos: -42.5,-34.5 + parent: 34 + type: Transform + - color: '#00FF00FF' + type: AtmosPipeColor + - uid: 939 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 942 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-5.5 + parent: 34 + type: Transform + - color: '#FFFF00FF' + type: AtmosPipeColor + - uid: 972 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-38.5 + parent: 34 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1257 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-44.5 + parent: 34 + type: Transform + - uid: 1420 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-46.5 + parent: 34 + type: Transform + - uid: 1422 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-42.5 + parent: 34 + type: Transform + - uid: 1423 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-40.5 + parent: 34 + type: Transform + - uid: 1435 + components: + - pos: -42.5,-45.5 + parent: 34 + type: Transform + - uid: 1436 + components: + - pos: -42.5,-41.5 + parent: 34 + type: Transform + - color: '#00FFFFFF' + type: AtmosPipeColor + - uid: 1438 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-41.5 + parent: 34 + type: Transform + - color: '#00FFFFFF' + type: AtmosPipeColor + - uid: 1442 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-46.5 + parent: 34 + type: Transform + - uid: 1448 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-47.5 + parent: 34 + type: Transform + - uid: 1451 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-49.5 + parent: 34 + type: Transform + - uid: 1514 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-46.5 + parent: 34 + type: Transform + - uid: 1519 + components: + - pos: -44.5,-42.5 + parent: 34 + type: Transform + - uid: 1541 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,-42.5 + parent: 34 + type: Transform + - uid: 1565 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-49.5 + parent: 34 + type: Transform + - uid: 1572 + components: + - pos: -43.5,-35.5 + parent: 34 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1578 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-35.5 + parent: 34 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1634 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-43.5 + parent: 34 + type: Transform + - color: '#00FFFFFF' + type: AtmosPipeColor + - uid: 2020 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-4.5 + parent: 34 + type: Transform + - uid: 2023 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-7.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2346 + components: + - pos: -35.5,-27.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2354 + components: + - rot: 3.141592653589793 rad + pos: -51.5,-9.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2377 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-27.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2378 + components: + - pos: -34.5,-26.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2398 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-34.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2415 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-36.5 + parent: 34 + type: Transform + - color: '#3AB334FF' + type: AtmosPipeColor + - uid: 2427 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-38.5 + parent: 34 + type: Transform + - uid: 2530 + components: + - pos: -15.5,-7.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2675 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-43.5 + parent: 34 + type: Transform + - uid: 2680 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-42.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2928 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-47.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3204 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-46.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3249 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3253 + components: + - pos: -8.5,4.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3376 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-34.5 + parent: 34 + type: Transform + - color: '#3AB334FF' + type: AtmosPipeColor + - uid: 3794 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-36.5 + parent: 34 + type: Transform + - color: '#3AB334FF' + type: AtmosPipeColor + - uid: 4022 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,-25.5 + parent: 34 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 4570 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-37.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4685 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-13.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4895 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-38.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4896 + components: + - pos: 28.5,-14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5011 + components: + - pos: 32.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5664 + components: + - pos: -37.5,3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6505 + components: + - pos: 47.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6564 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-37.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6952 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-6.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7751 + components: + - pos: 6.5,-40.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7842 + components: + - pos: -0.5,-46.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7998 + components: + - pos: -42.5,-25.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8358 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-33.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8367 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-31.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 8384 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-40.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8385 + components: + - pos: -29.5,-40.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8392 + components: + - pos: -30.5,-30.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8406 + components: + - pos: -44.5,-29.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8416 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-33.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8430 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,-27.5 + parent: 34 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 8434 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8490 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-47.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8598 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8629 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8630 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8649 + components: + - pos: 8.5,-4.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8659 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8781 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,8.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8786 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,0.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8802 + components: + - pos: 17.5,-4.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8803 + components: + - pos: -0.5,-14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8878 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8972 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-42.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9012 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-28.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9027 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-43.5 + parent: 34 + type: Transform + - uid: 9028 + components: + - pos: 5.5,-44.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9152 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-39.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9186 + components: + - pos: -26.5,-14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9202 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,4.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9232 + components: + - pos: -27.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9323 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-39.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9378 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9391 + components: + - pos: -33.5,-40.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9392 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-40.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9393 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-35.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9398 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-36.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9399 + components: + - rot: 3.141592653589793 rad + pos: -35.5,-36.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9402 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-35.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9424 + components: + - pos: -53.5,-11.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 9429 + components: + - rot: 3.141592653589793 rad + pos: -53.5,-13.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 9444 + components: + - pos: -27.5,-18.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9497 + components: + - pos: 13.5,13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9507 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-12.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9539 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9627 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-33.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9630 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-26.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9631 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-26.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9632 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9645 + components: + - pos: 4.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9655 + components: + - pos: -3.5,-43.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9656 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-45.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9781 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,8.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9827 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9891 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,5.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9942 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-20.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10006 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,1.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10073 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-37.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10081 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-42.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10086 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-42.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10150 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-40.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10165 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-36.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10206 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10333 + components: + - pos: 11.5,-36.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10562 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-33.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10903 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,3.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11291 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-49.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11445 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,-39.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11484 + components: + - pos: -54.5,-19.5 + parent: 34 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 11493 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,-25.5 + parent: 34 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 11542 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,-19.5 + parent: 34 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 11576 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,-32.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11633 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-33.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11834 + components: + - pos: -45.5,-41.5 + parent: 34 + type: Transform + - uid: 11840 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-23.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11882 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11885 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,-28.5 + parent: 34 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 11921 + components: + - rot: 3.141592653589793 rad + pos: -58.5,-39.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12180 + components: + - pos: -28.5,-9.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 12200 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,-8.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12221 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12224 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-30.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12611 + components: + - pos: -53.5,-31.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12652 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,-39.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12663 + components: + - pos: -54.5,-30.5 + parent: 34 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 12669 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-34.5 + parent: 34 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 12670 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,-34.5 + parent: 34 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 12863 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,10.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12877 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12932 + components: + - pos: 41.5,4.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12945 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 2969 + components: + - pos: 5.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2970 + components: + - pos: 4.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2981 + components: + - pos: 3.5,-40.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4803 + components: + - pos: 43.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4872 + components: + - pos: 44.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5906 + components: + - pos: -41.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6344 + components: + - pos: -57.5,-27.5 + parent: 34 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 8370 + components: + - pos: -30.5,-37.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8432 + components: + - pos: -38.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8436 + components: + - pos: -37.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9085 + components: + - pos: 22.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9102 + components: + - pos: 44.5,-12.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9119 + components: + - pos: 32.5,-27.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9235 + components: + - pos: -37.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9366 + components: + - pos: -35.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9608 + components: + - pos: 7.5,-37.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9718 + components: + - pos: -8.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9873 + components: + - pos: 13.5,1.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9949 + components: + - pos: 22.5,-13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10179 + components: + - pos: 31.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11884 + components: + - pos: -57.5,-32.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 43 + components: + - pos: -13.5,-1.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 94 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-37.5 + parent: 34 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 96 + components: + - pos: -42.5,-35.5 + parent: 34 + type: Transform + - color: '#00FF00FF' + type: AtmosPipeColor + - uid: 102 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-37.5 + parent: 34 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 103 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-37.5 + parent: 34 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 124 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-38.5 + parent: 34 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 132 + components: + - pos: -43.5,-36.5 + parent: 34 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 135 + components: + - pos: -43.5,-37.5 + parent: 34 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 198 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 731 + components: + - pos: 41.5,3.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 794 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-8.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 797 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-8.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 807 + components: + - pos: -5.5,-12.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 809 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-8.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 810 + components: + - pos: -10.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 811 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-8.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 812 + components: + - pos: -10.5,-9.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 814 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-8.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 830 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-4.5 + parent: 34 + type: Transform + - uid: 849 + components: + - pos: -13.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 889 + components: + - pos: -13.5,-3.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 924 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-3.5 + parent: 34 + type: Transform + - color: '#0088F8FF' + type: AtmosPipeColor + - uid: 928 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-4.5 + parent: 34 + type: Transform + - uid: 929 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-5.5 + parent: 34 + type: Transform + - color: '#FFFF00FF' + type: AtmosPipeColor + - uid: 941 + components: + - pos: -31.5,-3.5 + parent: 34 + type: Transform + - color: '#FFFF00FF' + type: AtmosPipeColor + - uid: 944 + components: + - pos: -31.5,-4.5 + parent: 34 + type: Transform + - color: '#FFFF00FF' + type: AtmosPipeColor + - uid: 945 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-5.5 + parent: 34 + type: Transform + - color: '#FFFF00FF' + type: AtmosPipeColor + - uid: 977 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-39.5 + parent: 34 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1079 + components: + - pos: 10.5,10.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1173 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-41.5 + parent: 34 + type: Transform + - uid: 1175 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-39.5 + parent: 34 + type: Transform + - uid: 1176 + components: + - pos: -41.5,-42.5 + parent: 34 + type: Transform + - uid: 1185 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-35.5 + parent: 34 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1193 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-39.5 + parent: 34 + type: Transform + - uid: 1197 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-41.5 + parent: 34 + type: Transform + - color: '#FF00FFFF' + type: AtmosPipeColor + - uid: 1209 + components: + - pos: -41.5,-40.5 + parent: 34 + type: Transform + - uid: 1211 + components: + - pos: -41.5,-43.5 + parent: 34 + type: Transform + - uid: 1218 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-41.5 + parent: 34 + type: Transform + - uid: 1223 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-37.5 + parent: 34 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 1267 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-45.5 + parent: 34 + type: Transform + - uid: 1407 + components: + - pos: -41.5,-44.5 + parent: 34 + type: Transform + - uid: 1408 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-46.5 + parent: 34 + type: Transform + - uid: 1409 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-46.5 + parent: 34 + type: Transform + - uid: 1410 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-46.5 + parent: 34 + type: Transform + - uid: 1413 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-44.5 + parent: 34 + type: Transform + - uid: 1414 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-42.5 + parent: 34 + type: Transform + - uid: 1415 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-42.5 + parent: 34 + type: Transform + - uid: 1416 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-42.5 + parent: 34 + type: Transform + - uid: 1417 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-40.5 + parent: 34 + type: Transform + - uid: 1418 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-40.5 + parent: 34 + type: Transform + - uid: 1419 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-40.5 + parent: 34 + type: Transform + - uid: 1428 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-40.5 + parent: 34 + type: Transform + - color: '#FF00FFFF' + type: AtmosPipeColor + - uid: 1429 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-40.5 + parent: 34 + type: Transform + - color: '#FF00FFFF' + type: AtmosPipeColor + - uid: 1430 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-42.5 + parent: 34 + type: Transform + - color: '#00FFFFFF' + type: AtmosPipeColor + - uid: 1433 + components: + - pos: -43.5,-42.5 + parent: 34 + type: Transform + - color: '#FF00FFFF' + type: AtmosPipeColor + - uid: 1437 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-41.5 + parent: 34 + type: Transform + - color: '#00FFFFFF' + type: AtmosPipeColor + - uid: 1441 + components: + - pos: -41.5,-46.5 + parent: 34 + type: Transform + - uid: 1443 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-46.5 + parent: 34 + type: Transform + - uid: 1444 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-44.5 + parent: 34 + type: Transform + - uid: 1445 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-44.5 + parent: 34 + type: Transform + - uid: 1452 + components: + - pos: -42.5,-50.5 + parent: 34 + type: Transform + - uid: 1516 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-45.5 + parent: 34 + type: Transform + - uid: 1517 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-44.5 + parent: 34 + type: Transform + - uid: 1518 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-43.5 + parent: 34 + type: Transform + - uid: 1522 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-42.5 + parent: 34 + type: Transform + - uid: 1523 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-42.5 + parent: 34 + type: Transform + - uid: 1525 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,-42.5 + parent: 34 + type: Transform + - uid: 1527 + components: + - pos: -50.5,-42.5 + parent: 34 + type: Transform + - uid: 1528 + components: + - pos: -50.5,-44.5 + parent: 34 + type: Transform + - uid: 1529 + components: + - pos: -50.5,-45.5 + parent: 34 + type: Transform + - uid: 1530 + components: + - pos: -50.5,-46.5 + parent: 34 + type: Transform + - uid: 1538 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-44.5 + parent: 34 + type: Transform + - uid: 1539 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-45.5 + parent: 34 + type: Transform + - uid: 1540 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-46.5 + parent: 34 + type: Transform + - uid: 1548 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-41.5 + parent: 34 + type: Transform + - uid: 1558 + components: + - pos: -45.5,-42.5 + parent: 34 + type: Transform + - uid: 1560 + components: + - pos: -45.5,-44.5 + parent: 34 + type: Transform + - uid: 1561 + components: + - pos: -45.5,-45.5 + parent: 34 + type: Transform + - uid: 1562 + components: + - pos: -45.5,-46.5 + parent: 34 + type: Transform + - uid: 1563 + components: + - pos: -45.5,-47.5 + parent: 34 + type: Transform + - uid: 1564 + components: + - pos: -45.5,-48.5 + parent: 34 + type: Transform + - uid: 1567 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-49.5 + parent: 34 + type: Transform + - uid: 1580 + components: + - pos: -41.5,-37.5 + parent: 34 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 1587 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-34.5 + parent: 34 + type: Transform + - color: '#00FF00FF' + type: AtmosPipeColor + - uid: 1627 + components: + - rot: 3.141592653589793 rad + pos: -46.5,-36.5 + parent: 34 + type: Transform + - color: '#3AB334FF' + type: AtmosPipeColor + - uid: 1913 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-7.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1971 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-20.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2079 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-27.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2089 + components: + - rot: 3.141592653589793 rad + pos: -53.5,-4.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2149 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-6.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2333 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-27.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2336 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2338 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2339 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-24.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2340 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-25.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2343 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2345 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-27.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2347 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-26.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2348 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-25.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2353 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2357 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-26.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2373 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-26.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2374 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-26.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2376 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-27.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2390 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-33.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2429 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,-38.5 + parent: 34 + type: Transform + - uid: 2496 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,-42.5 + parent: 34 + type: Transform + - uid: 2550 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2591 + components: + - pos: -56.5,-23.5 + parent: 34 + type: Transform + - uid: 2593 + components: + - pos: -54.5,-23.5 + parent: 34 + type: Transform + - uid: 2641 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-34.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2710 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-46.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2713 + components: + - pos: -33.5,-43.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2718 + components: + - pos: -56.5,-22.5 + parent: 34 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 2924 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-46.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2929 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-41.5 + parent: 34 + type: Transform + - uid: 2931 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-46.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2935 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-40.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2968 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-47.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3188 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-34.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3190 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-34.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3248 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3323 + components: + - pos: -31.5,-2.5 + parent: 34 + type: Transform + - color: '#FFFF00FF' + type: AtmosPipeColor + - uid: 3324 + components: + - pos: -31.5,-1.5 + parent: 34 + type: Transform + - color: '#FFFF00FF' + type: AtmosPipeColor + - uid: 3325 + components: + - pos: -31.5,-0.5 + parent: 34 + type: Transform + - color: '#FFFF00FF' + type: AtmosPipeColor + - uid: 3326 + components: + - pos: -31.5,0.5 + parent: 34 + type: Transform + - color: '#FFFF00FF' + type: AtmosPipeColor + - uid: 3327 + components: + - pos: -31.5,1.5 + parent: 34 + type: Transform + - color: '#FFFF00FF' + type: AtmosPipeColor + - uid: 3328 + components: + - pos: -31.5,2.5 + parent: 34 + type: Transform + - color: '#FFFF00FF' + type: AtmosPipeColor + - uid: 3329 + components: + - pos: -31.5,3.5 + parent: 34 + type: Transform + - color: '#FFFF00FF' + type: AtmosPipeColor + - uid: 3330 + components: + - pos: -31.5,4.5 + parent: 34 + type: Transform + - color: '#FFFF00FF' + type: AtmosPipeColor + - uid: 3377 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-38.5 + parent: 34 + type: Transform + - uid: 3416 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-46.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3754 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-17.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3973 + components: + - pos: -5.5,-44.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4455 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4459 + components: + - pos: 43.5,-4.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4512 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4535 + components: + - pos: 44.5,-8.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4537 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-7.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4539 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-7.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4568 + components: + - pos: -11.5,-35.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4569 + components: + - pos: -11.5,-36.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4571 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-38.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4668 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4676 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-12.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4678 + components: + - rot: 3.141592653589793 rad + pos: 44.5,-11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4679 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4680 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4681 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-9.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4684 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-13.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4687 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-13.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4763 + components: + - pos: 43.5,-5.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4782 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4789 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4860 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4891 + components: + - pos: -10.5,-33.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4948 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4951 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5674 + components: + - pos: -37.5,1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5848 + components: + - pos: -40.5,4.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5867 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5910 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5911 + components: + - pos: -41.5,0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5912 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-37.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5936 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5937 + components: + - pos: 10.5,9.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6114 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6117 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6118 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6171 + components: + - rot: 3.141592653589793 rad + pos: 14.5,13.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6318 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-33.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6368 + components: + - pos: -59.5,-28.5 + parent: 34 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 6397 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-6.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6686 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-37.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6700 + components: + - pos: 44.5,-4.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6876 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-40.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7088 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7146 + components: + - rot: 3.141592653589793 rad + pos: -53.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7232 + components: + - pos: -28.5,-11.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 7553 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7734 + components: + - pos: 4.5,-45.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7815 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,-27.5 + parent: 34 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 7823 + components: + - pos: -58.5,-37.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7971 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7972 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7974 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7975 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7976 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7977 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7978 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7979 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7980 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7982 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7983 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7984 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7985 + components: + - pos: -30.5,0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7990 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,3.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8006 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-38.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8196 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-25.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8214 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-25.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8223 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,-25.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8227 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-25.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8277 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-25.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8355 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-41.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8357 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-41.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8369 + components: + - pos: -38.5,-34.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8372 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-37.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8373 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-37.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8374 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-37.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8375 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-37.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8376 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-37.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8377 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-37.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8378 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-37.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8379 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-38.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8380 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-39.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8381 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-40.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8382 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-38.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8383 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-39.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8386 + components: + - pos: -30.5,-36.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8387 + components: + - pos: -30.5,-35.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8389 + components: + - pos: -30.5,-33.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8390 + components: + - pos: -30.5,-32.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8391 + components: + - pos: -30.5,-31.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8393 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-30.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8394 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-30.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8395 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-30.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8397 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-30.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8398 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-30.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8399 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-30.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8400 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-30.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8401 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-30.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8402 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-30.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8407 + components: + - pos: -44.5,-31.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8408 + components: + - pos: -44.5,-32.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8410 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-30.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8411 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-30.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8414 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8419 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-26.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8420 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-26.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8423 + components: + - pos: -44.5,-26.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8425 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-27.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8426 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-28.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8427 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-29.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8428 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8433 + components: + - pos: -2.5,13.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8437 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-25.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8438 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8442 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8443 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8445 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8446 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8447 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8448 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8451 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8452 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8453 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8456 + components: + - pos: -16.5,-21.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8457 + components: + - pos: -16.5,-20.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8459 + components: + - pos: -11.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8460 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-25.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8462 + components: + - pos: -11.5,-23.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8464 + components: + - pos: -11.5,-26.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8465 + components: + - pos: -11.5,-27.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8466 + components: + - pos: -11.5,-28.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8467 + components: + - pos: -11.5,-29.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8468 + components: + - pos: -11.5,-30.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8469 + components: + - pos: -11.5,-31.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8497 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-39.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8585 + components: + - pos: -12.5,-21.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8586 + components: + - pos: -12.5,-20.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8587 + components: + - pos: -12.5,-19.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8588 + components: + - pos: -12.5,-18.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8589 + components: + - pos: -12.5,-17.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8590 + components: + - pos: -12.5,-16.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8591 + components: + - pos: -12.5,-15.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8592 + components: + - pos: -12.5,-14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8593 + components: + - pos: -12.5,-13.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8594 + components: + - pos: -12.5,-12.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8599 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8600 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8601 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8602 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8603 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8604 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8606 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8611 + components: + - pos: -5.5,-13.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8613 + components: + - pos: -5.5,-15.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8614 + components: + - pos: -5.5,-16.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8615 + components: + - pos: -5.5,-17.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8616 + components: + - pos: -5.5,-18.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8618 + components: + - pos: -5.5,-20.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8619 + components: + - pos: -5.5,-21.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8620 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8621 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8622 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8623 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8624 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8625 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-19.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8627 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8631 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8632 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8633 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8635 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8639 + components: + - pos: 2.5,-7.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8640 + components: + - pos: 2.5,-6.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8641 + components: + - pos: 2.5,-5.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8644 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8645 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8646 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8647 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8648 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8654 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8655 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8656 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8657 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8658 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8660 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8665 + components: + - pos: -3.5,-9.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8666 + components: + - pos: -3.5,-8.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8667 + components: + - pos: -3.5,-7.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8668 + components: + - pos: -3.5,-6.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8669 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8670 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-4.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8671 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8672 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8675 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8676 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8677 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8678 + components: + - pos: -7.5,-0.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8679 + components: + - pos: -7.5,0.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8680 + components: + - pos: -7.5,1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8691 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8692 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8693 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8694 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8695 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-0.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8696 + components: + - rot: 3.141592653589793 rad + pos: -29.5,0.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8702 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-2.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8703 + components: + - rot: 3.141592653589793 rad + pos: -14.5,2.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8704 + components: + - rot: 3.141592653589793 rad + pos: -14.5,1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8705 + components: + - rot: 3.141592653589793 rad + pos: -14.5,0.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8706 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-0.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8707 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-0.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8708 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8709 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8710 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8711 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8712 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8713 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8714 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8715 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8716 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8717 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8718 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8719 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8720 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8725 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8730 + components: + - pos: -0.5,-0.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8731 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-0.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8732 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8733 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8734 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8735 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8736 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8737 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8738 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8739 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8740 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8742 + components: + - rot: 3.141592653589793 rad + pos: 9.5,0.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8743 + components: + - rot: 3.141592653589793 rad + pos: 9.5,2.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8744 + components: + - rot: 3.141592653589793 rad + pos: 9.5,3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8745 + components: + - rot: 3.141592653589793 rad + pos: 9.5,4.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8746 + components: + - rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8747 + components: + - rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8748 + components: + - rot: 3.141592653589793 rad + pos: 9.5,8.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8749 + components: + - rot: 3.141592653589793 rad + pos: 9.5,9.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8755 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8756 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8757 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8758 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8762 + components: + - pos: 14.5,9.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8763 + components: + - pos: 14.5,10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8765 + components: + - pos: 14.5,12.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8766 + components: + - pos: 14.5,7.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8767 + components: + - pos: 14.5,6.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8768 + components: + - pos: 14.5,5.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8769 + components: + - pos: 14.5,4.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8770 + components: + - pos: 14.5,2.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8771 + components: + - pos: 14.5,1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8772 + components: + - pos: 14.5,-0.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8773 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,0.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8774 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,0.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8775 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8777 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8778 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8783 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8784 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8785 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8788 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8790 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-2.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8791 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-6.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8792 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-7.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8793 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-8.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8794 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-9.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8797 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8798 + components: + - pos: 14.5,-5.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8799 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-4.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8800 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-4.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8807 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8808 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8809 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8811 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-12.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8812 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-12.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8813 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-12.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8814 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-12.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8816 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-12.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8817 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-12.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8818 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-12.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8820 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-15.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8821 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-17.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8822 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-18.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8823 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-19.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8826 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-13.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8828 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-16.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8829 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-16.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8834 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-17.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8838 + components: + - pos: 23.5,-15.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8839 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8840 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8842 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-15.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8844 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-13.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8845 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-12.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8847 + components: + - pos: 23.5,-13.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8851 + components: + - pos: 23.5,-11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8852 + components: + - pos: 23.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8853 + components: + - pos: 23.5,-9.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8854 + components: + - pos: 23.5,-8.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8855 + components: + - pos: 23.5,-7.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8856 + components: + - pos: 23.5,-5.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8857 + components: + - pos: 23.5,-4.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8859 + components: + - pos: 23.5,-2.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8861 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8862 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8863 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8865 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8866 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-4.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8867 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-5.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8869 + components: + - pos: 23.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8870 + components: + - pos: 23.5,-0.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8871 + components: + - pos: 23.5,0.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8873 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-2.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8874 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8875 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-0.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8876 + components: + - rot: 3.141592653589793 rad + pos: 27.5,1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8877 + components: + - rot: 3.141592653589793 rad + pos: 27.5,2.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8882 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8883 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8884 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8885 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8886 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8887 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8888 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8896 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8897 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-2.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8898 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8899 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-0.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8900 + components: + - rot: 3.141592653589793 rad + pos: 42.5,0.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8901 + components: + - rot: 3.141592653589793 rad + pos: 42.5,1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8902 + components: + - rot: 3.141592653589793 rad + pos: 42.5,2.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8904 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8934 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,4.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8935 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,4.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8945 + components: + - pos: -5.5,-23.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8946 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-25.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8947 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-26.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8948 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-27.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8949 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-28.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8950 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-29.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8951 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-30.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8952 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-31.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8953 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-32.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8955 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-34.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8956 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-35.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8958 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-37.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8959 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-38.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8960 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-39.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8961 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-40.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8963 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-42.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8964 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-43.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8966 + components: + - pos: -5.5,-45.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8973 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-42.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8974 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-42.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8975 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-41.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8976 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-41.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8979 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-40.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8982 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-47.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8984 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-37.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8985 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-39.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8997 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-33.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8998 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-33.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8999 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-33.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9000 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-33.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9001 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-32.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9002 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-31.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9003 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-30.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9004 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-29.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9005 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-28.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9006 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-27.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9007 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-31.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9008 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-30.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9009 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9011 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-28.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9014 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-32.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9015 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-32.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9017 + components: + - pos: 3.5,-44.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9018 + components: + - pos: 3.5,-43.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9022 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-42.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9024 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9025 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9026 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9030 + components: + - pos: 4.5,-46.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9034 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-43.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9038 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-42.5 + parent: 34 + type: Transform + - uid: 9039 + components: + - pos: 3.5,-39.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9040 + components: + - pos: 3.5,-38.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9045 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9046 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9047 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9048 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9049 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9050 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9051 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9052 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-23.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9053 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-23.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9054 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9055 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-21.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9056 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-20.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9058 + components: + - pos: 5.5,-23.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9059 + components: + - pos: 5.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9060 + components: + - pos: 5.5,-21.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9062 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9063 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9065 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-25.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9068 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9069 + components: + - pos: 13.5,-29.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9070 + components: + - pos: 13.5,-27.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9071 + components: + - pos: 13.5,-26.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9074 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-23.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9075 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9076 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-21.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9077 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-20.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9078 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-19.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9079 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-18.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9080 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-17.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9081 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-16.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9082 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-15.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9083 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9084 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-13.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9086 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9087 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9088 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9089 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9090 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9091 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9092 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9093 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9094 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9095 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9096 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9097 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9098 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9099 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9100 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9101 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,-12.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9112 + components: + - pos: 32.5,-23.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9114 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9115 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9117 + components: + - pos: 32.5,-25.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9118 + components: + - pos: 32.5,-26.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9122 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-27.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9123 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-27.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9124 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-27.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9125 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-27.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9126 + components: + - pos: 32.5,-28.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9127 + components: + - pos: 32.5,-29.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9128 + components: + - pos: 32.5,-30.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9129 + components: + - pos: 32.5,-31.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9131 + components: + - pos: 32.5,-33.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9133 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-32.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9134 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-32.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9135 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-32.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9137 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-32.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9140 + components: + - pos: 36.5,-33.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9141 + components: + - pos: 36.5,-34.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9142 + components: + - pos: 36.5,-35.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9143 + components: + - pos: 36.5,-36.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9144 + components: + - pos: 36.5,-37.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9145 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-38.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9146 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-38.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9149 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-39.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9150 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-39.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9151 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-39.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9154 + components: + - pos: 22.5,-25.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9155 + components: + - pos: 22.5,-26.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9156 + components: + - pos: 22.5,-27.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9157 + components: + - pos: 22.5,-28.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9158 + components: + - pos: 22.5,-29.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9159 + components: + - pos: 22.5,-30.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9160 + components: + - pos: 22.5,-31.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9161 + components: + - pos: 22.5,-32.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9162 + components: + - pos: 22.5,-33.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9164 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-35.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9165 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-37.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9166 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-38.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9167 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-36.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9169 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-36.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9170 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-36.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9171 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-34.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9172 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-34.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9177 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-18.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9178 + components: + - pos: -26.5,-21.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9179 + components: + - pos: -26.5,-20.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9180 + components: + - pos: -26.5,-19.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9183 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-17.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9184 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-16.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9185 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-15.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9188 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9189 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9190 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9193 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9194 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9195 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9196 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9197 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9198 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9199 + components: + - pos: -33.5,-21.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9200 + components: + - pos: -33.5,-20.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9203 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9204 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9206 + components: + - pos: -37.5,-21.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9207 + components: + - pos: -37.5,-20.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9208 + components: + - pos: -37.5,-19.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9209 + components: + - pos: -37.5,-18.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9210 + components: + - pos: -37.5,-17.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9211 + components: + - pos: -37.5,-16.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9212 + components: + - pos: -37.5,-15.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9213 + components: + - pos: -37.5,-14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9214 + components: + - pos: -37.5,-13.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9215 + components: + - pos: -37.5,-12.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9216 + components: + - pos: -37.5,-11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9218 + components: + - pos: -37.5,-9.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9219 + components: + - pos: -37.5,-8.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9221 + components: + - pos: -37.5,-6.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9222 + components: + - pos: -37.5,-5.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9223 + components: + - pos: -37.5,-4.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9224 + components: + - pos: -37.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9225 + components: + - pos: -37.5,-2.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9226 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9227 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9229 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9230 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9231 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9233 + components: + - pos: -34.5,-2.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9236 + components: + - pos: -37.5,-0.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9237 + components: + - pos: -37.5,0.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9239 + components: + - pos: -37.5,2.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9240 + components: + - pos: -41.5,2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9241 + components: + - pos: -41.5,3.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9242 + components: + - pos: -41.5,4.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9243 + components: + - pos: -41.5,5.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9244 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9245 + components: + - pos: -41.5,6.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9246 + components: + - pos: -41.5,7.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9247 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9248 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9249 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9250 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9259 + components: + - rot: 3.141592653589793 rad + pos: -48.5,-2.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9260 + components: + - rot: 3.141592653589793 rad + pos: -48.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9262 + components: + - pos: -43.5,-2.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9263 + components: + - pos: -43.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9264 + components: + - pos: -43.5,-4.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9267 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9268 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9269 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9270 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9271 + components: + - pos: -47.5,-0.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9272 + components: + - pos: -47.5,0.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9273 + components: + - pos: -47.5,1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9274 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9275 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9276 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9277 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9279 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9280 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9281 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9282 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9283 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9284 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9285 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9286 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9287 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9288 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9291 + components: + - pos: -48.5,-7.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9292 + components: + - pos: -48.5,-8.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9293 + components: + - pos: -48.5,-9.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9296 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-7.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9299 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9300 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-13.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9301 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-12.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9303 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9306 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-2.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9309 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9310 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9311 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9312 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-25.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9313 + components: + - pos: -47.5,-16.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 9315 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-39.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9316 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-39.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9317 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-39.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9318 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-39.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9319 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-39.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9320 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-39.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9321 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-39.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9324 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-39.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9325 + components: + - pos: 30.5,-43.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9326 + components: + - pos: 30.5,-42.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9327 + components: + - pos: 30.5,-41.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9328 + components: + - pos: 30.5,-40.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9356 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,8.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9357 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,8.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9358 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-35.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9359 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-35.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9361 + components: + - rot: 3.141592653589793 rad + pos: -35.5,-34.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9362 + components: + - rot: 3.141592653589793 rad + pos: -35.5,-33.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9363 + components: + - rot: 3.141592653589793 rad + pos: -35.5,-32.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9364 + components: + - rot: 3.141592653589793 rad + pos: -35.5,-31.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9365 + components: + - rot: 3.141592653589793 rad + pos: -35.5,-30.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9367 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9368 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9369 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9370 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9375 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-30.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9376 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9377 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9380 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-32.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9381 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-30.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9385 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-44.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9386 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-45.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9387 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-45.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9389 + components: + - pos: -33.5,-42.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9390 + components: + - pos: -33.5,-41.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9394 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-39.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9395 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-38.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9396 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-37.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9400 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-35.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9401 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-35.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9405 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-34.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9408 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9409 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9410 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9411 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9412 + components: + - pos: -30.5,-27.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9413 + components: + - pos: -30.5,-28.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9416 + components: + - pos: -47.5,-15.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 9417 + components: + - pos: -47.5,-14.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 9418 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,-13.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 9419 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-13.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 9420 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-13.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 9421 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,-13.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 9422 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,-13.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 9423 + components: + - rot: 3.141592653589793 rad + pos: -53.5,-12.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 9426 + components: + - rot: 3.141592653589793 rad + pos: -53.5,-7.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9427 + components: + - rot: 3.141592653589793 rad + pos: -35.5,-28.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9428 + components: + - rot: 3.141592653589793 rad + pos: -53.5,-5.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9431 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-26.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9432 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-26.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9434 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-26.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9435 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9436 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9437 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9438 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9439 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9441 + components: + - pos: -27.5,-20.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9442 + components: + - pos: -27.5,-19.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9443 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-18.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9446 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9447 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9448 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9449 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9450 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9452 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-22.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9453 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9454 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-24.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9455 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-25.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9458 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-20.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9459 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-19.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9465 + components: + - pos: -18.5,-22.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9466 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9472 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9473 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9474 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9475 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9476 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9477 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9479 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9480 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9482 + components: + - pos: -10.5,-22.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9483 + components: + - pos: -10.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9484 + components: + - pos: -10.5,-24.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9486 + components: + - pos: -10.5,-26.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9487 + components: + - pos: -10.5,-27.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9488 + components: + - pos: -10.5,-28.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9489 + components: + - pos: -10.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9490 + components: + - pos: -10.5,-30.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9491 + components: + - pos: -10.5,-31.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9492 + components: + - pos: -10.5,-32.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9494 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-25.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9498 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-20.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9499 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-19.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9500 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-18.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9501 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-17.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9502 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-16.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9503 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-15.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9504 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-14.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9505 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9508 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-11.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9511 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-12.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9512 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-12.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9513 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-12.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9514 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9516 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-11.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9517 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-10.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9518 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-9.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9519 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-9.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9520 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-8.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9525 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9526 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9527 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9528 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-12.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9529 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-11.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9530 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-10.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9531 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-9.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9533 + components: + - pos: -4.5,-7.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9535 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9536 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9537 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9538 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9540 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9541 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9542 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9549 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9550 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9551 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9552 + components: + - pos: -4.5,-13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9553 + components: + - pos: -4.5,-14.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9554 + components: + - pos: -4.5,-15.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9555 + components: + - pos: -4.5,-16.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9556 + components: + - pos: -4.5,-17.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9558 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-18.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9559 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-18.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9560 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9561 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9564 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9565 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9566 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9567 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9568 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9569 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-19.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9572 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-22.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9574 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9575 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9576 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9578 + components: + - pos: 3.5,-37.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9579 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-36.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9580 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-36.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9581 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9582 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9583 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9584 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9585 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-36.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9587 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9588 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9589 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9591 + components: + - pos: 6.5,-22.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9592 + components: + - pos: 6.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9597 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-37.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9600 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-37.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9602 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-37.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9603 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-37.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9604 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-37.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9605 + components: + - pos: 7.5,-39.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9606 + components: + - pos: 7.5,-38.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9611 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-36.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9613 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-25.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9614 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-27.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9617 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-28.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9618 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-29.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9619 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-30.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9622 + components: + - pos: 5.5,-32.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9623 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-33.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9624 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-33.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9625 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-33.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9628 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-24.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9629 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-25.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9639 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-32.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9640 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-32.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9641 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-32.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9642 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-32.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9643 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-31.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9644 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-30.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9646 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-28.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9647 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-28.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9648 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-28.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9649 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9650 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9651 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-45.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9652 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-45.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9653 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-45.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9654 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-44.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9661 + components: + - pos: -7.5,-46.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9662 + components: + - pos: -7.5,-45.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9663 + components: + - pos: -7.5,-44.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9664 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-43.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9665 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-43.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9666 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-42.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9667 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-41.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9668 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-40.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9669 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-39.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9670 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-38.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9671 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-37.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9672 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-36.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9673 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-28.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9674 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-34.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9675 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-33.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9676 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9677 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-31.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9678 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-30.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9679 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9680 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-28.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9681 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-27.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9682 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-26.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9683 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-25.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9684 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-24.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9688 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-45.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9689 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-45.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9690 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-3.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9691 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-45.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 9692 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9693 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9694 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9697 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9698 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9699 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9700 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9702 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9703 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9712 + components: + - pos: -8.5,2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9713 + components: + - pos: -8.5,1.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9714 + components: + - pos: -8.5,0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9715 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,4.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9716 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,4.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9741 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9742 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9743 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9744 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9745 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9746 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9747 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9750 + components: + - rot: 3.141592653589793 rad + pos: -17.5,0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9751 + components: + - rot: 3.141592653589793 rad + pos: -17.5,1.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9752 + components: + - rot: 3.141592653589793 rad + pos: -17.5,2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9753 + components: + - rot: 3.141592653589793 rad + pos: -23.5,0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9754 + components: + - rot: 3.141592653589793 rad + pos: -23.5,1.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9755 + components: + - pos: -28.5,-12.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 9756 + components: + - pos: -28.5,-13.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 9757 + components: + - pos: -28.5,-14.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 9758 + components: + - pos: -28.5,-15.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 9759 + components: + - pos: -28.5,-16.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 9760 + components: + - pos: -28.5,-17.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 9762 + components: + - pos: -28.5,-10.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 9763 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-10.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 9767 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-9.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 9768 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-9.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 9770 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-4.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9771 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-4.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9772 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9773 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9774 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9775 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9776 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9779 + components: + - rot: 3.141592653589793 rad + pos: -36.5,1.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9780 + components: + - rot: 3.141592653589793 rad + pos: -36.5,0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9784 + components: + - pos: -41.5,-1.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9785 + components: + - pos: -41.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9787 + components: + - pos: -40.5,5.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9788 + components: + - pos: -40.5,6.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9789 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9790 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9791 + components: + - pos: -38.5,-1.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9792 + components: + - pos: -38.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9793 + components: + - pos: -38.5,-5.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9794 + components: + - pos: -38.5,-6.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9795 + components: + - pos: -38.5,-7.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9796 + components: + - pos: -38.5,-8.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9806 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9807 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9808 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9809 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9810 + components: + - pos: -48.5,0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9811 + components: + - pos: -44.5,0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9812 + components: + - pos: -44.5,1.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9813 + components: + - pos: -46.5,-1.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9814 + components: + - pos: -46.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9815 + components: + - pos: -46.5,-3.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9816 + components: + - pos: -49.5,-1.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9817 + components: + - pos: -49.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9818 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9819 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9820 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9821 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9828 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-26.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9829 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-9.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9830 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,-9.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9831 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,-9.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9832 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-9.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9833 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-9.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9834 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-9.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9835 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-9.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9836 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-9.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9837 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-9.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9838 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-9.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9839 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-9.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9840 + components: + - pos: -46.5,-8.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9841 + components: + - pos: -46.5,-7.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9842 + components: + - pos: -51.5,-8.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9843 + components: + - pos: -51.5,-7.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9847 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-17.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9848 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-17.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9849 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-18.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9850 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-19.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9851 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9852 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-16.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9853 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-15.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9854 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-14.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9855 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9856 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-12.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9857 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-11.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9858 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-10.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9860 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9861 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9862 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-26.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9863 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9864 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9865 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9866 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9867 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9868 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9869 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9870 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9871 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9872 + components: + - pos: 13.5,0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9874 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,1.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9877 + components: + - rot: 3.141592653589793 rad + pos: 13.5,2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9878 + components: + - rot: 3.141592653589793 rad + pos: 13.5,3.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9879 + components: + - rot: 3.141592653589793 rad + pos: 13.5,4.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9881 + components: + - rot: 3.141592653589793 rad + pos: 13.5,6.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9882 + components: + - rot: 3.141592653589793 rad + pos: 13.5,7.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9884 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,8.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9885 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,8.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9888 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,5.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9889 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,5.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9890 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,5.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9895 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,9.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9896 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,9.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9898 + components: + - rot: 3.141592653589793 rad + pos: 13.5,11.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9899 + components: + - rot: 3.141592653589793 rad + pos: 13.5,12.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9900 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9903 + components: + - pos: 13.5,-1.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9905 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,1.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9906 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,1.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9907 + components: + - pos: 13.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9908 + components: + - pos: 13.5,-3.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9909 + components: + - pos: 13.5,-4.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9911 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-5.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9912 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-5.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9913 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-5.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9914 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-5.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9915 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-5.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9917 + components: + - pos: 13.5,-6.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9918 + components: + - pos: 13.5,-7.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9919 + components: + - pos: 13.5,-8.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9920 + components: + - pos: 13.5,-9.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9921 + components: + - pos: 13.5,-10.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9922 + components: + - pos: 13.5,-11.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9924 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-12.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9927 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9928 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9929 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9930 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9931 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9932 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9933 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9937 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-15.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9938 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-16.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9940 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-18.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9941 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-19.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9944 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-17.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9945 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-17.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9946 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-17.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9947 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-17.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9950 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-14.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9951 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-15.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9952 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-16.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9953 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-17.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9954 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-17.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9955 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-17.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9956 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-17.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9961 + components: + - pos: 22.5,-10.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9962 + components: + - pos: 22.5,-12.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9963 + components: + - pos: 22.5,-11.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9964 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-9.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9965 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-9.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9966 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-9.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9967 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-9.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9969 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-8.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9970 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-7.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9971 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-6.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9972 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-5.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9973 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-4.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9974 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-3.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9975 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-1.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9976 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9977 + components: + - rot: 3.141592653589793 rad + pos: 22.5,0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9988 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9989 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9990 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9991 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9992 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9993 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9994 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9995 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9996 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9997 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9998 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9999 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10000 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10002 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10003 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-1.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10007 + components: + - pos: 38.5,3.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10008 + components: + - pos: 38.5,2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10012 + components: + - pos: 44.5,-5.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10014 + components: + - pos: 43.5,-3.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10017 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10018 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10020 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10021 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-7.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10026 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-23.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10028 + components: + - pos: 13.5,-14.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10029 + components: + - pos: 13.5,-15.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10030 + components: + - pos: 13.5,-16.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10031 + components: + - pos: 13.5,-17.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10033 + components: + - pos: 13.5,-19.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10034 + components: + - pos: 13.5,-20.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10035 + components: + - pos: 13.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10036 + components: + - pos: 13.5,-22.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10037 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10038 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10039 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10040 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10041 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10042 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10043 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10047 + components: + - pos: 17.5,-24.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10048 + components: + - pos: 17.5,-25.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10049 + components: + - pos: 17.5,-26.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10050 + components: + - pos: 17.5,-27.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10051 + components: + - pos: 17.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10056 + components: + - pos: 11.5,-22.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10058 + components: + - pos: 21.5,-24.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10059 + components: + - pos: 21.5,-25.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10060 + components: + - pos: 21.5,-26.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10061 + components: + - pos: 21.5,-27.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10062 + components: + - pos: 21.5,-28.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10063 + components: + - pos: 21.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10064 + components: + - pos: 21.5,-30.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10065 + components: + - pos: 21.5,-31.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10066 + components: + - pos: 21.5,-32.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10067 + components: + - pos: 21.5,-33.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10068 + components: + - pos: 21.5,-34.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10069 + components: + - pos: 21.5,-35.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10070 + components: + - pos: 21.5,-36.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10072 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-37.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10077 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-38.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10078 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-39.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10079 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-40.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10080 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-41.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10082 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-42.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10083 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-42.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10084 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-42.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10085 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-42.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10088 + components: + - pos: 26.5,-41.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10089 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-40.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10090 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-40.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10092 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-40.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10093 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-40.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10095 + components: + - pos: 29.5,-41.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10096 + components: + - pos: 29.5,-42.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10097 + components: + - pos: 29.5,-43.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10151 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-40.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10152 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-40.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10153 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-40.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10154 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-40.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10155 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-39.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10156 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-38.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10157 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-37.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10161 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-36.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10162 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-36.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10163 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-36.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10164 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-36.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10168 + components: + - pos: 31.5,-35.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10169 + components: + - pos: 31.5,-34.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10170 + components: + - pos: 31.5,-33.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10171 + components: + - pos: 31.5,-32.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10172 + components: + - pos: 31.5,-31.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10173 + components: + - pos: 31.5,-30.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10174 + components: + - pos: 31.5,-28.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10175 + components: + - pos: 31.5,-27.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10176 + components: + - pos: 31.5,-26.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10177 + components: + - pos: 31.5,-25.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10178 + components: + - pos: 31.5,-24.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10180 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10181 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10182 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10183 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10186 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10187 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10188 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10189 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10190 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10191 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10192 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10193 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10194 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10195 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10197 + components: + - pos: 33.5,-14.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10198 + components: + - pos: 33.5,-15.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10199 + components: + - pos: 33.5,-16.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10200 + components: + - pos: 33.5,-17.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10201 + components: + - pos: 33.5,-18.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10202 + components: + - pos: 33.5,-19.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10203 + components: + - pos: 33.5,-20.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10204 + components: + - pos: 33.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10205 + components: + - pos: 33.5,-22.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10208 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10209 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10210 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10211 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10212 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10213 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10214 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10215 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10216 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10258 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-26.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10260 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-40.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10263 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10313 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,-26.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10314 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-26.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10327 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10328 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-36.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10329 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-36.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10330 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-36.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10331 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-36.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10332 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-36.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10389 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-26.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10465 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-36.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10575 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-47.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10596 + components: + - pos: -38.5,-22.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10626 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-12.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10841 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,-25.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10842 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,-26.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10846 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-26.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10848 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10854 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-26.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10901 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-18.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10902 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-18.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10904 + components: + - pos: 22.5,2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10905 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,3.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11100 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-41.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11224 + components: + - pos: 3.5,-42.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11310 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11406 + components: + - pos: -57.5,-37.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11407 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-41.5 + parent: 34 + type: Transform + - uid: 11439 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-33.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11448 + components: + - pos: -58.5,-36.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11461 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-38.5 + parent: 34 + type: Transform + - uid: 11464 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-33.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11489 + components: + - pos: -54.5,-22.5 + parent: 34 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 11490 + components: + - pos: -54.5,-20.5 + parent: 34 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 11520 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-23.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11531 + components: + - pos: -58.5,-34.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11540 + components: + - pos: -58.5,-33.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11547 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11577 + components: + - pos: -56.5,-20.5 + parent: 34 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 11603 + components: + - pos: -59.5,-30.5 + parent: 34 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 11608 + components: + - pos: -59.5,-31.5 + parent: 34 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 11610 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-33.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11716 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11766 + components: + - rot: 3.141592653589793 rad + pos: 14.5,15.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11767 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11783 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11784 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11819 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11828 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11829 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-38.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11841 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,-9.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11843 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11848 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11858 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11859 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11860 + components: + - pos: -2.5,12.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11861 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11862 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11863 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11864 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11865 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11866 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11867 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11868 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11870 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11871 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11872 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-33.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11873 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11874 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11875 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11881 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11888 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11897 + components: + - pos: -59.5,-29.5 + parent: 34 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 11898 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-13.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11913 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11987 + components: + - pos: -2.5,2.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11988 + components: + - pos: -2.5,1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11989 + components: + - pos: -2.5,0.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11990 + components: + - pos: -2.5,-0.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11991 + components: + - pos: -1.5,0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11992 + components: + - pos: -1.5,1.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11993 + components: + - pos: -1.5,2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12062 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-49.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12063 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-49.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12064 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-49.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12065 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-43.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12066 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-44.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12067 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-45.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12068 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-46.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12069 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-47.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12070 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-48.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12071 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-42.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12137 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12139 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12181 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-9.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 12199 + components: + - rot: 3.141592653589793 rad + pos: -53.5,-6.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12201 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,-8.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12202 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,-11.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 12203 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,-11.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 12206 + components: + - rot: 3.141592653589793 rad + pos: -53.5,-2.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12207 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,-8.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12210 + components: + - pos: -49.5,-11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12211 + components: + - pos: -49.5,-12.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12222 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-32.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12223 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-31.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12225 + components: + - pos: -29.5,-30.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12283 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12315 + components: + - pos: -57.5,-35.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12341 + components: + - pos: -18.5,-34.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12342 + components: + - pos: -18.5,-35.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12343 + components: + - pos: -18.5,-36.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12344 + components: + - pos: -18.5,-37.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12347 + components: + - pos: -57.5,-36.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12348 + components: + - pos: -57.5,-34.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12349 + components: + - pos: -57.5,-33.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12386 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,-6.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12405 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12438 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-41.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12519 + components: + - rot: 3.141592653589793 rad + pos: -59.5,-37.5 + parent: 34 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 12522 + components: + - pos: -55.5,-37.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12563 + components: + - rot: 3.141592653589793 rad + pos: -59.5,-36.5 + parent: 34 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 12565 + components: + - pos: -55.5,-36.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12662 + components: + - pos: -56.5,-36.5 + parent: 34 + type: Transform + - uid: 12667 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-32.5 + parent: 34 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 12668 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,-32.5 + parent: 34 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 12671 + components: + - rot: 3.141592653589793 rad + pos: -54.5,-33.5 + parent: 34 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 12682 + components: + - rot: 3.141592653589793 rad + pos: -54.5,-26.5 + parent: 34 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 12683 + components: + - rot: 3.141592653589793 rad + pos: -54.5,-25.5 + parent: 34 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 12694 + components: + - pos: -59.5,-32.5 + parent: 34 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 12695 + components: + - pos: -59.5,-33.5 + parent: 34 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 12696 + components: + - pos: -59.5,-34.5 + parent: 34 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 12708 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12858 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12859 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12861 + components: + - pos: 8.5,12.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12862 + components: + - pos: 8.5,11.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12864 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,10.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12865 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,10.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12866 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,10.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12867 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,10.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12868 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,10.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12869 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12870 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,10.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12871 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12872 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12873 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,10.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12874 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,10.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12875 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,10.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12876 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,10.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12878 + components: + - pos: -5.5,9.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12881 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12882 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12884 + components: + - pos: -13.5,-39.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12930 + components: + - pos: 41.5,2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12936 + components: + - pos: 41.5,1.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12939 + components: + - pos: 41.5,0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12940 + components: + - pos: 41.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12941 + components: + - pos: 41.5,-1.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12943 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12944 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12949 + components: + - pos: 39.5,2.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12950 + components: + - pos: -12.5,-34.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12953 + components: + - pos: -12.5,-35.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12954 + components: + - pos: -12.5,-36.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12963 + components: + - pos: -12.5,-37.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12964 + components: + - pos: -12.5,-38.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12965 + components: + - pos: -12.5,-39.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 106 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-38.5 + parent: 34 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 806 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-7.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 808 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-8.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 823 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 34 + type: Transform + - uid: 956 + components: + - pos: 5.5,-5.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 979 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-6.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1192 + components: + - pos: -43.5,-40.5 + parent: 34 + type: Transform + - color: '#FF00FFFF' + type: AtmosPipeColor + - uid: 1431 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-42.5 + parent: 34 + type: Transform + - color: '#00FFFFFF' + type: AtmosPipeColor + - uid: 1446 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-47.5 + parent: 34 + type: Transform + - uid: 1450 + components: + - pos: -42.5,-49.5 + parent: 34 + type: Transform + - uid: 1515 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-46.5 + parent: 34 + type: Transform + - uid: 1526 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-41.5 + parent: 34 + type: Transform + - uid: 1646 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-35.5 + parent: 34 + type: Transform + - color: '#3AB334FF' + type: AtmosPipeColor + - uid: 2330 + components: + - pos: -45.5,-26.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2337 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-23.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2344 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-27.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2372 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-26.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2375 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-27.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2413 + components: + - pos: -45.5,-34.5 + parent: 34 + type: Transform + - color: '#3AB334FF' + type: AtmosPipeColor + - uid: 2567 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,-21.5 + parent: 34 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 2700 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-40.5 + parent: 34 + type: Transform + - uid: 2708 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-46.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2966 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-33.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2967 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-35.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2971 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-45.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2972 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-36.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2973 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-32.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3251 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3378 + components: + - pos: -44.5,-34.5 + parent: 34 + type: Transform + - color: '#3AB334FF' + type: AtmosPipeColor + - uid: 3460 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,8.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3783 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-36.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4015 + components: + - pos: 0.5,-47.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4567 + components: + - pos: -11.5,-34.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4785 + components: + - pos: -13.5,-37.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4793 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-33.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5803 + components: + - rot: 3.141592653589793 rad + pos: -38.5,3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5845 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5849 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,1.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5994 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,-21.5 + parent: 34 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 6398 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-40.5 + parent: 34 + type: Transform + - uid: 6399 + components: + - pos: -0.5,-40.5 + parent: 34 + type: Transform + - uid: 6690 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6701 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-7.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6878 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-41.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7579 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-32.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7663 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7735 + components: + - pos: -13.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7767 + components: + - pos: 1.5,14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7926 + components: + - rot: 3.141592653589793 rad + pos: -48.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8005 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-44.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8008 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-39.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8158 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-34.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8159 + components: + - pos: 38.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8160 + components: + - pos: 39.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8161 + components: + - pos: -12.5,-33.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8198 + components: + - pos: -44.5,-25.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8327 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8365 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-35.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8368 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-32.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 8371 + components: + - pos: -32.5,-37.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8388 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-34.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8396 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-30.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8403 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-30.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8405 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-30.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8421 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-26.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8439 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-23.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8441 + components: + - pos: -25.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8450 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8454 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8455 + components: + - pos: -11.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8461 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-25.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8470 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,-28.5 + parent: 34 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 8472 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8498 + components: + - pos: 1.5,-41.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8499 + components: + - pos: 4.5,-37.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8584 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8596 + components: + - pos: -12.5,-11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8597 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8605 + components: + - pos: -5.5,-11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8612 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8617 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-19.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8636 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8637 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8638 + components: + - pos: 2.5,-4.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8662 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8664 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8673 + components: + - pos: -3.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8674 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8687 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8688 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8689 + components: + - pos: -23.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8690 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8721 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8723 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8727 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8752 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8753 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8754 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,-30.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8759 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,0.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8760 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8761 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,8.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8764 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8787 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8789 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-4.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8806 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8810 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-12.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8815 + components: + - pos: 20.5,-12.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8819 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8825 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-16.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8832 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-16.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8833 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-18.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8835 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8836 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-14.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8848 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-12.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8849 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-6.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8858 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8860 + components: + - pos: 29.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8864 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8881 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,0.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8908 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8911 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-11.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8937 + components: + - rot: 3.141592653589793 rad + pos: 41.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8944 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8962 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-41.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8992 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-27.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8995 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-32.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8996 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-33.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9041 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9042 + components: + - pos: 3.5,-36.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9043 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9064 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9072 + components: + - pos: 13.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9073 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-28.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9113 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-24.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9130 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-32.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9136 + components: + - pos: 36.5,-32.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9148 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-38.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9153 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-34.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9163 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-36.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9168 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-36.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9176 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9181 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-18.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9187 + components: + - pos: -30.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9192 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9217 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9220 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-7.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9228 + components: + - pos: -34.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9251 + components: + - pos: -48.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9252 + components: + - pos: -43.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9253 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9254 + components: + - pos: -47.5,2.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9261 + components: + - rot: 3.141592653589793 rad + pos: -48.5,-4.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9278 + components: + - pos: -53.5,-1.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9290 + components: + - pos: -48.5,-6.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9304 + components: + - pos: -29.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9305 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9322 + components: + - pos: 24.5,-39.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9329 + components: + - pos: 30.5,-39.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9360 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-35.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9371 + components: + - pos: -40.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9379 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-31.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9382 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-42.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9397 + components: + - pos: -34.5,-36.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9415 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9430 + components: + - pos: -47.5,-13.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 9433 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-26.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9440 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9451 + components: + - pos: -23.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9457 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9461 + components: + - pos: -18.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9462 + components: + - pos: -17.5,-22.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9471 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9478 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9481 + components: + - pos: -10.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9485 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-25.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9506 + components: + - pos: -13.5,-12.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9509 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-10.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9515 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-12.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9523 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9524 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9532 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9544 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9548 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-7.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9557 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-18.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9563 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-21.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9570 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-20.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9573 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9586 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9612 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-36.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9616 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-26.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9626 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-31.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9634 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-27.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9635 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-28.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9636 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-32.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9657 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-43.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9658 + components: + - pos: -7.5,-43.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9685 + components: + - pos: 0.5,-45.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9695 + components: + - pos: -4.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9696 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9709 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,3.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9711 + components: + - pos: 42.5,3.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9748 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9749 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9761 + components: + - pos: -30.5,-9.5 + parent: 34 + type: Transform + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 9778 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9786 + components: + - pos: -38.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9797 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-4.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9798 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-3.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9801 + components: + - pos: -46.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9802 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9803 + components: + - rot: 3.141592653589793 rad + pos: -48.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9804 + components: + - pos: -49.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9826 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-9.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9859 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-17.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9876 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9880 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,5.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9883 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,8.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9893 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,9.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9897 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,10.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9910 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9923 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-12.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9926 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9934 + components: + - pos: 17.5,-13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9935 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-14.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9939 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-17.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9948 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-17.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9959 + components: + - pos: 26.5,-17.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9960 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9978 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9979 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,1.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9986 + components: + - pos: 33.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10001 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-2.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10016 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-9.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10032 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-18.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10044 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10045 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10046 + components: + - pos: 17.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10052 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-28.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10057 + components: + - pos: 21.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10071 + components: + - pos: 20.5,-37.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10074 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-37.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10087 + components: + - pos: 26.5,-40.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10091 + components: + - pos: 29.5,-40.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10148 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-40.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10149 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-39.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10158 + components: + - pos: 37.5,-36.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10166 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-36.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10207 + components: + - pos: 31.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10217 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-23.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10249 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-45.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10382 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,6.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10435 + components: + - pos: 8.5,13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10941 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-20.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11895 + components: + - rot: 3.141592653589793 rad + pos: 9.5,13.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12013 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12014 + components: + - pos: -26.5,-0.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12017 + components: + - pos: -29.5,-29.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12209 + components: + - rot: 3.141592653589793 rad + pos: -46.5,-9.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12261 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-10.5 + parent: 34 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12420 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-41.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12491 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,-31.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12498 + components: + - rot: 3.141592653589793 rad + pos: -55.5,-27.5 + parent: 34 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 12651 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,-38.5 + parent: 34 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12665 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,-32.5 + parent: 34 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 12681 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,-27.5 + parent: 34 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 938 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-4.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 1542 + components: + - pos: -47.5,-40.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 1545 + components: + - pos: -48.5,-40.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 1779 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-32.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 1780 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-31.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 2161 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,3.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3415 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-42.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 3811 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-18.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11487 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,-35.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 11890 + components: + - pos: -56.5,-34.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 12501 + components: + - pos: -55.5,-25.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 12609 + components: + - rot: 3.141592653589793 rad + pos: -53.5,-33.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPressurePump + entities: + - uid: 64 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-35.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 125 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-37.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 931 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-3.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 932 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-4.5 + parent: 34 + type: Transform + - targetPressure: 4500 + type: GasPressurePump + - joinedGrid: 34 + type: AtmosDevice + - uid: 1266 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-45.5 + parent: 34 + type: Transform + - targetPressure: 4500 + type: GasPressurePump + - joinedGrid: 34 + type: AtmosDevice + - uid: 1424 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-46.5 + parent: 34 + type: Transform + - targetPressure: 4500 + type: GasPressurePump + - joinedGrid: 34 + type: AtmosDevice + - uid: 1425 + components: + - name: plasma pump + type: MetaData + - rot: -1.5707963267948966 rad + pos: -40.5,-44.5 + parent: 34 + type: Transform + - targetPressure: 4500 + type: GasPressurePump + - joinedGrid: 34 + type: AtmosDevice + - uid: 1426 + components: + - name: oxygen pump + type: MetaData + - rot: -1.5707963267948966 rad + pos: -40.5,-42.5 + parent: 34 + type: Transform + - targetPressure: 4500 + type: GasPressurePump + - joinedGrid: 34 + type: AtmosDevice + - color: '#00FFFFFF' + type: AtmosPipeColor + - uid: 1427 + components: + - name: nitrogen pump + type: MetaData + - rot: -1.5707963267948966 rad + pos: -40.5,-40.5 + parent: 34 + type: Transform + - targetPressure: 4500 + type: GasPressurePump + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF00FFFF' + type: AtmosPipeColor + - uid: 1535 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-43.5 + parent: 34 + type: Transform + - targetPressure: 4500 + type: GasPressurePump + - joinedGrid: 34 + type: AtmosDevice + - uid: 1537 + components: + - pos: -49.5,-43.5 + parent: 34 + type: Transform + - targetPressure: 4500 + type: GasPressurePump + - joinedGrid: 34 + type: AtmosDevice + - uid: 7847 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-41.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 11916 + components: + - rot: 3.141592653589793 rad + pos: -46.5,-37.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 12497 + components: + - pos: -55.5,-26.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 12606 + components: + - rot: 3.141592653589793 rad + pos: -53.5,-32.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasRecycler + entities: + - uid: 3795 + components: + - pos: -45.5,-35.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#3AB334FF' + type: AtmosPipeColor +- proto: GasThermoMachineFreezer + entities: + - uid: 824 + components: + - pos: -10.5,-3.5 + parent: 34 + type: Transform + - targetTemperature: 0 + type: GasThermoMachine + - joinedGrid: 34 + type: AtmosDevice + - uid: 1544 + components: + - pos: -50.5,-40.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 4105 + components: + - pos: -1.5,-39.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 6377 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-42.5 + parent: 34 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - joinedGrid: 34 + type: AtmosDevice +- proto: GasThermoMachineHeater + entities: + - uid: 11463 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-35.5 + parent: 34 + type: Transform + - color: '#3AB334FF' + type: AtmosPipeColor + - joinedGrid: 34 + type: AtmosDevice +- proto: GasValve + entities: + - uid: 930 + components: + - desc: This valve separates the chamber from space. Opening it will cause gas in the chamber to flow into space quickly. + name: depressurization valve + type: MetaData + - rot: -1.5707963267948966 rad + pos: -29.5,-5.5 + parent: 34 + type: Transform + - open: False + type: GasValve + - joinedGrid: 34 + type: AtmosDevice + - color: '#FFFF00FF' + type: AtmosPipeColor + - uid: 1447 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-47.5 + parent: 34 + type: Transform + - open: False + type: GasValve + - joinedGrid: 34 + type: AtmosDevice + - uid: 7997 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-43.5 + parent: 34 + type: Transform + - open: False + type: GasValve + - joinedGrid: 34 + type: AtmosDevice + - uid: 12518 + components: + - rot: 3.141592653589793 rad + pos: -55.5,-35.5 + parent: 34 + type: Transform + - open: False + type: GasValve + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 12562 + components: + - rot: 3.141592653589793 rad + pos: -59.5,-35.5 + parent: 34 + type: Transform + - open: False + type: GasValve + - joinedGrid: 34 + type: AtmosDevice + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 12572 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,-27.5 + parent: 34 + type: Transform + - open: False + type: GasValve + - joinedGrid: 34 + type: AtmosDevice + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 12674 + components: + - pos: -57.5,-31.5 + parent: 34 + type: Transform + - open: False + type: GasValve + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 12675 + components: + - pos: -57.5,-29.5 + parent: 34 + type: Transform + - open: False + type: GasValve + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 12676 + components: + - pos: -57.5,-26.5 + parent: 34 + type: Transform + - open: False + type: GasValve + - joinedGrid: 34 + type: AtmosDevice + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 181 + components: + - pos: 14.5,16.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 352 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-5.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 771 + components: + - pos: -14.5,-10.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 803 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-8.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2964 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-10.5 + parent: 34 + type: Transform + - deviceLists: + - 9601 + type: DeviceNetwork + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2965 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,-9.5 + parent: 34 + type: Transform + - deviceLists: + - 9601 + type: DeviceNetwork + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2986 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,-12.5 + parent: 34 + type: Transform + - deviceLists: + - 9601 + type: DeviceNetwork + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3227 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-32.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3285 + components: + - pos: 31.5,-2.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4677 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,-12.5 + parent: 34 + type: Transform + - deviceLists: + - 9601 + type: DeviceNetwork + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4769 + components: + - pos: -17.5,-32.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4783 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-38.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5137 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-48.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6009 + components: + - pos: 27.5,-10.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6020 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-4.5 + parent: 34 + type: Transform + - deviceLists: + - 12258 + type: DeviceNetwork + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6226 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-13.5 + parent: 34 + type: Transform + - deviceLists: + - 9601 + type: DeviceNetwork + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7087 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-4.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7094 + components: + - pos: -38.5,4.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7843 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-39.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8360 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-37.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8362 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-26.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8363 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-26.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8364 + components: + - pos: -38.5,-29.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8404 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-29.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8409 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-33.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8440 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-23.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8458 + components: + - pos: -16.5,-19.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8463 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-25.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8579 + components: + - rot: 3.141592653589793 rad + pos: 39.5,1.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8610 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-7.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8626 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-19.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8634 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8642 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8643 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-5.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8661 + components: + - pos: 9.5,-7.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8663 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8684 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,2.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8697 + components: + - pos: -14.5,3.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8698 + components: + - pos: -24.5,2.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 8699 + components: + - pos: -29.5,1.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8700 + components: + - pos: -18.5,0.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8701 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-3.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8722 + components: + - pos: -0.5,0.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8741 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,1.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8751 + components: + - pos: 9.5,10.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8776 + components: + - pos: 17.5,1.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8779 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,3.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8780 + components: + - pos: 17.5,9.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8796 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,11.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8801 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-5.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8804 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-15.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8805 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-10.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8824 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-20.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8827 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-14.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8830 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-19.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8831 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-18.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8843 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-16.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8850 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-6.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8868 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-6.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8872 + components: + - pos: 23.5,1.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8879 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,3.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8880 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,0.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8968 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-47.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8977 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-41.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8980 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-45.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8991 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-27.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8994 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-33.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9013 + components: + - pos: -0.5,-26.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9023 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-40.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9044 + components: + - pos: 3.5,-22.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9057 + components: + - pos: 0.5,-19.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9061 + components: + - pos: 5.5,-20.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9066 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-30.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9067 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-28.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9116 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-22.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9120 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-27.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9121 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-27.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9132 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-34.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9147 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-38.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9173 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-34.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9174 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-36.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9175 + components: + - pos: 20.5,-35.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9182 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-18.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9191 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-14.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9201 + components: + - pos: -33.5,-19.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9234 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-3.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9255 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,2.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9256 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,2.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9257 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,-4.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9258 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,-4.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9265 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-5.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9266 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,-1.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9294 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,-6.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9295 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,-6.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9297 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-7.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9307 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-11.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9308 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-10.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9346 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-44.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9355 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-40.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9469 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-23.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9470 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-32.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9594 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-37.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9595 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-37.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9609 + components: + - pos: 7.5,-36.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9615 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-26.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9620 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-33.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9621 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-31.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9782 + components: + - rot: 3.141592653589793 rad + pos: -40.5,2.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9783 + components: + - pos: -40.5,7.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10027 + components: + - pos: 22.5,-22.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10390 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-26.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10426 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,6.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10467 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-36.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10560 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-27.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10849 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-22.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11005 + components: + - pos: -40.5,-25.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11112 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-42.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11519 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-23.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11894 + components: + - rot: 3.141592653589793 rad + pos: 1.5,13.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11985 + components: + - pos: -2.5,3.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12072 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-49.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12190 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-11.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12205 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,-8.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12212 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-13.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12220 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-30.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12368 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,-6.5 + parent: 34 + type: Transform + - deviceLists: + - 9601 + type: DeviceNetwork + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12381 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-7.5 + parent: 34 + type: Transform + - deviceLists: + - 9601 + type: DeviceNetwork + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12843 + components: + - pos: 44.5,-2.5 + parent: 34 + type: Transform + - deviceLists: + - 10611 + - 9601 + type: DeviceNetwork + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12860 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,11.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12942 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,3.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12966 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-40.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 831 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-4.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1101 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-6.5 + parent: 34 + type: Transform + - deviceLists: + - 9601 + type: DeviceNetwork + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1818 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-17.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 1914 + components: + - pos: -17.5,-6.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1974 + components: + - pos: -19.5,-19.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2451 + components: + - pos: -33.5,-35.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2601 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-46.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2936 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-42.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3247 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-3.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4957 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,-2.5 + parent: 34 + type: Transform + - deviceLists: + - 12258 + type: DeviceNetwork + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5850 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,1.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5851 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,8.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5915 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6113 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6873 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-40.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7085 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-3.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7973 + components: + - pos: -16.5,0.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7981 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-1.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7987 + components: + - pos: -30.5,1.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7988 + components: + - pos: -23.5,2.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7989 + components: + - pos: -17.5,3.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8195 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-21.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8424 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-25.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8936 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,1.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8990 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-28.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8993 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-32.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9010 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-28.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9372 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-33.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9373 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-31.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9374 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-31.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9414 + components: + - pos: -30.5,-26.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9445 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-18.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9456 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-26.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9460 + components: + - pos: -22.5,-18.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9496 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-25.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9510 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-10.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9522 + components: + - pos: -9.5,-8.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9534 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9545 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9546 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9562 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9571 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-20.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9590 + components: + - pos: 4.5,-22.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9593 + components: + - pos: 6.5,-20.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9598 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-36.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9599 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-37.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9610 + components: + - pos: 5.5,-35.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9633 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-27.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9637 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-32.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9638 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-32.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9659 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-47.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9660 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-43.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9686 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-46.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9687 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-45.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 9704 + components: + - pos: 3.5,0.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9706 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,4.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9707 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,3.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9764 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-11.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 9765 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-9.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 9766 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-4.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9777 + components: + - pos: -36.5,2.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9799 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-3.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9800 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-3.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9805 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,-0.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9822 + components: + - pos: -44.5,2.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9823 + components: + - pos: -48.5,1.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9824 + components: + - rot: 3.141592653589793 rad + pos: -46.5,-4.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9825 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-3.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9844 + components: + - pos: -46.5,-6.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9845 + components: + - pos: -51.5,-6.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9875 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,1.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9886 + components: + - rot: 3.141592653589793 rad + pos: 10.5,7.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9887 + components: + - pos: 10.5,11.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9892 + components: + - pos: 17.5,6.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9894 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,9.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9902 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,10.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9904 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,1.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9916 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-5.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9925 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-12.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9936 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-14.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9943 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-20.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9957 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-17.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9958 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-18.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9968 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-9.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9980 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,1.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10004 + components: + - pos: 29.5,0.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10053 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-28.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10054 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-30.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10055 + components: + - pos: 11.5,-21.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10075 + components: + - pos: 18.5,-36.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10076 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-38.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10094 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-40.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10098 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-44.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10159 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-39.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10160 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-36.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10167 + components: + - pos: 32.5,-35.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10184 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-29.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10185 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-29.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10218 + components: + - pos: 28.5,-22.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10466 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-35.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10672 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-20.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11250 + components: + - pos: -39.5,-25.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11274 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-17.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11527 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-27.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11575 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-34.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11830 + components: + - pos: 9.5,14.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11902 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,13.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11905 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-23.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11986 + components: + - pos: -1.5,3.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12015 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-1.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12204 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,-11.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 12208 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-13.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#F84000FF' + type: AtmosPipeColor + - uid: 12219 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-29.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12226 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-31.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12358 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-38.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12421 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-41.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12546 + components: + - pos: 33.5,-11.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12844 + components: + - pos: 43.5,-1.5 + parent: 34 + type: Transform + - deviceLists: + - 10611 + - 9601 + type: DeviceNetwork + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12879 + components: + - rot: 3.141592653589793 rad + pos: -5.5,8.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12889 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-40.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12931 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-34.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasVolumePump + entities: + - uid: 1449 + components: + - pos: -41.5,-48.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 2627 + components: + - rot: 3.141592653589793 rad + pos: -54.5,-24.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 4075 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,-28.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 4076 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,-30.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 7821 + components: + - pos: -58.5,-35.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11688 + components: + - pos: -56.5,-24.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: Gauze + entities: + - uid: 1371 + components: + - pos: 7.3725023,-35.544624 + parent: 34 + type: Transform + - uid: 5880 + components: + - pos: -49.318726,6.9375215 + parent: 34 + type: Transform +- proto: GeneratorRTG + entities: + - uid: 2637 + components: + - pos: 52.5,-22.5 + parent: 34 + type: Transform +- proto: GlimmerProber + entities: + - uid: 37 + components: + - pos: -33.5,-8.5 + parent: 34 + type: Transform +- proto: GravityGenerator + entities: + - uid: 2414 + components: + - pos: -25.5,-37.5 + parent: 34 + type: Transform +- proto: Grille + entities: + - uid: 19 + components: + - pos: 23.5,-24.5 + parent: 34 + type: Transform + - uid: 27 + components: + - pos: -16.5,5.5 + parent: 34 + type: Transform + - uid: 36 + components: + - pos: -32.5,-4.5 + parent: 34 + type: Transform + - uid: 39 + components: + - pos: -32.5,-3.5 + parent: 34 + type: Transform + - uid: 52 + components: + - pos: -15.5,5.5 + parent: 34 + type: Transform + - uid: 67 + components: + - pos: -15.5,-21.5 + parent: 34 + type: Transform + - uid: 75 + components: + - pos: 23.5,-22.5 + parent: 34 + type: Transform + - uid: 183 + components: + - pos: 2.5,2.5 + parent: 34 + type: Transform + - uid: 187 + components: + - pos: 1.5,2.5 + parent: 34 + type: Transform + - uid: 202 + components: + - pos: 3.5,2.5 + parent: 34 + type: Transform + - uid: 233 + components: + - pos: -17.5,-9.5 + parent: 34 + type: Transform + - uid: 244 + components: + - pos: -11.5,1.5 + parent: 34 + type: Transform + - uid: 247 + components: + - pos: -18.5,-9.5 + parent: 34 + type: Transform + - uid: 250 + components: + - pos: -3.5,-3.5 + parent: 34 + type: Transform + - uid: 267 + components: + - pos: 6.5,1.5 + parent: 34 + type: Transform + - uid: 275 + components: + - pos: -17.5,-2.5 + parent: 34 + type: Transform + - uid: 284 + components: + - pos: -10.5,-2.5 + parent: 34 + type: Transform + - uid: 285 + components: + - pos: -9.5,-2.5 + parent: 34 + type: Transform + - uid: 286 + components: + - pos: -8.5,-2.5 + parent: 34 + type: Transform + - uid: 287 + components: + - pos: -7.5,-2.5 + parent: 34 + type: Transform + - uid: 289 + components: + - pos: -2.5,-6.5 + parent: 34 + type: Transform + - uid: 294 + components: + - pos: -0.5,-2.5 + parent: 34 + type: Transform + - uid: 295 + components: + - pos: 0.5,-2.5 + parent: 34 + type: Transform + - uid: 299 + components: + - pos: -2.5,-5.5 + parent: 34 + type: Transform + - uid: 300 + components: + - pos: -2.5,-4.5 + parent: 34 + type: Transform + - uid: 320 + components: + - pos: 10.5,-7.5 + parent: 34 + type: Transform + - uid: 332 + components: + - pos: 10.5,-5.5 + parent: 34 + type: Transform + - uid: 333 + components: + - pos: 10.5,-4.5 + parent: 34 + type: Transform + - uid: 336 + components: + - pos: 10.5,-8.5 + parent: 34 + type: Transform + - uid: 346 + components: + - pos: -6.5,-4.5 + parent: 34 + type: Transform + - uid: 347 + components: + - pos: -6.5,-5.5 + parent: 34 + type: Transform + - uid: 348 + components: + - pos: -6.5,-6.5 + parent: 34 + type: Transform + - uid: 351 + components: + - pos: -11.5,-3.5 + parent: 34 + type: Transform + - uid: 353 + components: + - pos: -15.5,-4.5 + parent: 34 + type: Transform + - uid: 373 + components: + - pos: -9.5,1.5 + parent: 34 + type: Transform + - uid: 378 + components: + - pos: 5.5,-25.5 + parent: 34 + type: Transform + - uid: 411 + components: + - pos: -17.5,-20.5 + parent: 34 + type: Transform + - uid: 412 + components: + - pos: -19.5,-20.5 + parent: 34 + type: Transform + - uid: 425 + components: + - pos: -16.5,-20.5 + parent: 34 + type: Transform + - uid: 435 + components: + - pos: -2.5,-18.5 + parent: 34 + type: Transform + - uid: 437 + components: + - pos: -2.5,-19.5 + parent: 34 + type: Transform + - uid: 458 + components: + - pos: -29.5,-2.5 + parent: 34 + type: Transform + - uid: 459 + components: + - pos: -30.5,-2.5 + parent: 34 + type: Transform + - uid: 463 + components: + - pos: -27.5,-8.5 + parent: 34 + type: Transform + - uid: 491 + components: + - pos: -27.5,-7.5 + parent: 34 + type: Transform + - uid: 502 + components: + - pos: -28.5,-3.5 + parent: 34 + type: Transform + - uid: 503 + components: + - pos: -28.5,-4.5 + parent: 34 + type: Transform + - uid: 504 + components: + - pos: -28.5,-5.5 + parent: 34 + type: Transform + - uid: 506 + components: + - pos: -25.5,-9.5 + parent: 34 + type: Transform + - uid: 534 + components: + - pos: -36.5,-16.5 + parent: 34 + type: Transform + - uid: 539 + components: + - pos: -28.5,-20.5 + parent: 34 + type: Transform + - uid: 543 + components: + - pos: -25.5,-20.5 + parent: 34 + type: Transform + - uid: 547 + components: + - pos: -24.5,-20.5 + parent: 34 + type: Transform + - uid: 548 + components: + - pos: -29.5,-20.5 + parent: 34 + type: Transform + - uid: 569 + components: + - pos: -32.5,-20.5 + parent: 34 + type: Transform + - uid: 570 + components: + - pos: -35.5,-20.5 + parent: 34 + type: Transform + - uid: 571 + components: + - pos: -33.5,-20.5 + parent: 34 + type: Transform + - uid: 575 + components: + - pos: -36.5,-18.5 + parent: 34 + type: Transform + - uid: 576 + components: + - pos: -36.5,-17.5 + parent: 34 + type: Transform + - uid: 597 + components: + - pos: -32.5,-9.5 + parent: 34 + type: Transform + - uid: 598 + components: + - pos: -32.5,-11.5 + parent: 34 + type: Transform + - uid: 631 + components: + - pos: -6.5,-27.5 + parent: 34 + type: Transform + - uid: 632 + components: + - pos: -6.5,-24.5 + parent: 34 + type: Transform + - uid: 633 + components: + - pos: -6.5,-26.5 + parent: 34 + type: Transform + - uid: 638 + components: + - pos: -15.5,-24.5 + parent: 34 + type: Transform + - uid: 639 + components: + - pos: -15.5,-27.5 + parent: 34 + type: Transform + - uid: 640 + components: + - pos: -15.5,-25.5 + parent: 34 + type: Transform + - uid: 647 + components: + - pos: -11.5,-28.5 + parent: 34 + type: Transform + - uid: 650 + components: + - pos: -6.5,-36.5 + parent: 34 + type: Transform + - uid: 652 + components: + - pos: -6.5,-35.5 + parent: 34 + type: Transform + - uid: 653 + components: + - pos: -6.5,-34.5 + parent: 34 + type: Transform + - uid: 654 + components: + - pos: -6.5,-33.5 + parent: 34 + type: Transform + - uid: 655 + components: + - pos: -6.5,-32.5 + parent: 34 + type: Transform + - uid: 672 + components: + - pos: 27.5,13.5 + parent: 34 + type: Transform + - uid: 700 + components: + - pos: -20.5,-25.5 + parent: 34 + type: Transform + - uid: 779 + components: + - pos: -2.5,-9.5 + parent: 34 + type: Transform + - uid: 786 + components: + - pos: 30.5,-15.5 + parent: 34 + type: Transform + - uid: 861 + components: + - pos: -20.5,-2.5 + parent: 34 + type: Transform + - uid: 887 + components: + - pos: -11.5,-4.5 + parent: 34 + type: Transform + - uid: 923 + components: + - pos: 33.5,-4.5 + parent: 34 + type: Transform + - uid: 982 + components: + - pos: -15.5,-3.5 + parent: 34 + type: Transform + - uid: 1000 + components: + - pos: -5.5,-3.5 + parent: 34 + type: Transform + - uid: 1017 + components: + - pos: -1.5,-21.5 + parent: 34 + type: Transform + - uid: 1020 + components: + - pos: -43.5,-27.5 + parent: 34 + type: Transform + - uid: 1069 + components: + - pos: -25.5,-35.5 + parent: 34 + type: Transform + - uid: 1070 + components: + - pos: -26.5,-35.5 + parent: 34 + type: Transform + - uid: 1114 + components: + - pos: -22.5,-24.5 + parent: 34 + type: Transform + - uid: 1115 + components: + - pos: -23.5,-24.5 + parent: 34 + type: Transform + - uid: 1116 + components: + - pos: -24.5,-24.5 + parent: 34 + type: Transform + - uid: 1158 + components: + - pos: -34.5,-41.5 + parent: 34 + type: Transform + - uid: 1164 + components: + - pos: -33.5,-51.5 + parent: 34 + type: Transform + - uid: 1169 + components: + - pos: -39.5,-39.5 + parent: 34 + type: Transform + - uid: 1170 + components: + - pos: -39.5,-41.5 + parent: 34 + type: Transform + - uid: 1177 + components: + - pos: -39.5,-43.5 + parent: 34 + type: Transform + - uid: 1202 + components: + - pos: -48.5,-44.5 + parent: 34 + type: Transform + - uid: 1206 + components: + - pos: -50.5,-44.5 + parent: 34 + type: Transform + - uid: 1208 + components: + - pos: -51.5,-43.5 + parent: 34 + type: Transform + - uid: 1234 + components: + - pos: -6.5,-54.5 + parent: 34 + type: Transform + - uid: 1264 + components: + - pos: -39.5,-45.5 + parent: 34 + type: Transform + - uid: 1330 + components: + - pos: 41.5,-6.5 + parent: 34 + type: Transform + - uid: 1340 + components: + - pos: -0.5,-34.5 + parent: 34 + type: Transform + - uid: 1349 + components: + - pos: 9.5,-30.5 + parent: 34 + type: Transform + - uid: 1350 + components: + - pos: 10.5,-30.5 + parent: 34 + type: Transform + - uid: 1404 + components: + - pos: 1.5,-32.5 + parent: 34 + type: Transform + - uid: 1461 + components: + - pos: -49.5,-44.5 + parent: 34 + type: Transform + - uid: 1463 + components: + - pos: -48.5,-47.5 + parent: 34 + type: Transform + - uid: 1465 + components: + - pos: -49.5,-48.5 + parent: 34 + type: Transform + - uid: 1466 + components: + - pos: -50.5,-48.5 + parent: 34 + type: Transform + - uid: 1471 + components: + - pos: -49.5,-46.5 + parent: 34 + type: Transform + - uid: 1474 + components: + - pos: -46.5,-46.5 + parent: 34 + type: Transform + - uid: 1475 + components: + - pos: -48.5,-46.5 + parent: 34 + type: Transform + - uid: 1476 + components: + - pos: -46.5,-48.5 + parent: 34 + type: Transform + - uid: 1478 + components: + - pos: -47.5,-44.5 + parent: 34 + type: Transform + - uid: 1479 + components: + - pos: -46.5,-49.5 + parent: 34 + type: Transform + - uid: 1481 + components: + - pos: -46.5,-45.5 + parent: 34 + type: Transform + - uid: 1482 + components: + - pos: -48.5,-48.5 + parent: 34 + type: Transform + - uid: 1483 + components: + - pos: -46.5,-47.5 + parent: 34 + type: Transform + - uid: 1488 + components: + - pos: -50.5,-46.5 + parent: 34 + type: Transform + - uid: 1598 + components: + - pos: -36.5,-32.5 + parent: 34 + type: Transform + - uid: 1600 + components: + - pos: -36.5,-31.5 + parent: 34 + type: Transform + - uid: 1603 + components: + - pos: -38.5,-28.5 + parent: 34 + type: Transform + - uid: 1629 + components: + - pos: -44.5,-50.5 + parent: 34 + type: Transform + - uid: 1630 + components: + - pos: -43.5,-50.5 + parent: 34 + type: Transform + - uid: 1631 + components: + - pos: -42.5,-50.5 + parent: 34 + type: Transform + - uid: 1632 + components: + - pos: -41.5,-50.5 + parent: 34 + type: Transform + - uid: 1770 + components: + - pos: -44.5,-32.5 + parent: 34 + type: Transform + - uid: 1771 + components: + - pos: -43.5,-32.5 + parent: 34 + type: Transform + - uid: 1772 + components: + - pos: -42.5,-32.5 + parent: 34 + type: Transform + - uid: 1821 + components: + - pos: 11.5,8.5 + parent: 34 + type: Transform + - uid: 1827 + components: + - pos: -29.5,4.5 + parent: 34 + type: Transform + - uid: 1871 + components: + - pos: -39.5,-14.5 + parent: 34 + type: Transform + - uid: 1931 + components: + - pos: -27.5,-31.5 + parent: 34 + type: Transform + - uid: 1948 + components: + - pos: 8.5,-36.5 + parent: 34 + type: Transform + - uid: 1968 + components: + - pos: 27.5,-34.5 + parent: 34 + type: Transform + - uid: 1999 + components: + - pos: -2.5,-22.5 + parent: 34 + type: Transform + - uid: 2001 + components: + - pos: -30.5,4.5 + parent: 34 + type: Transform + - uid: 2002 + components: + - pos: -31.5,4.5 + parent: 34 + type: Transform + - uid: 2003 + components: + - pos: -32.5,4.5 + parent: 34 + type: Transform + - uid: 2013 + components: + - pos: -32.5,0.5 + parent: 34 + type: Transform + - uid: 2014 + components: + - pos: -31.5,0.5 + parent: 34 + type: Transform + - uid: 2018 + components: + - pos: -29.5,0.5 + parent: 34 + type: Transform + - uid: 2034 + components: + - pos: -40.5,-4.5 + parent: 34 + type: Transform + - uid: 2035 + components: + - pos: -40.5,-3.5 + parent: 34 + type: Transform + - uid: 2037 + components: + - pos: -40.5,-7.5 + parent: 34 + type: Transform + - uid: 2038 + components: + - pos: -40.5,-6.5 + parent: 34 + type: Transform + - uid: 2095 + components: + - pos: -61.5,-16.5 + parent: 34 + type: Transform + - uid: 2100 + components: + - pos: -46.5,-2.5 + parent: 34 + type: Transform + - uid: 2101 + components: + - pos: -45.5,-2.5 + parent: 34 + type: Transform + - uid: 2124 + components: + - pos: -60.5,-19.5 + parent: 34 + type: Transform + - uid: 2137 + components: + - pos: -12.5,-28.5 + parent: 34 + type: Transform + - uid: 2146 + components: + - pos: 5.5,-30.5 + parent: 34 + type: Transform + - uid: 2150 + components: + - pos: -60.5,-17.5 + parent: 34 + type: Transform + - uid: 2175 + components: + - pos: -43.5,-8.5 + parent: 34 + type: Transform + - uid: 2177 + components: + - pos: -41.5,-2.5 + parent: 34 + type: Transform + - uid: 2289 + components: + - pos: -34.5,-24.5 + parent: 34 + type: Transform + - uid: 2291 + components: + - pos: -35.5,-24.5 + parent: 34 + type: Transform + - uid: 2305 + components: + - pos: -20.5,-27.5 + parent: 34 + type: Transform + - uid: 2405 + components: + - pos: 11.5,7.5 + parent: 34 + type: Transform + - uid: 2426 + components: + - pos: -59.5,-18.5 + parent: 34 + type: Transform + - uid: 2435 + components: + - pos: -56.5,-23.5 + parent: 34 + type: Transform + - uid: 2476 + components: + - pos: -9.5,-53.5 + parent: 34 + type: Transform + - uid: 2499 + components: + - pos: 46.5,-10.5 + parent: 34 + type: Transform + - uid: 2513 + components: + - pos: -51.5,-21.5 + parent: 34 + type: Transform + - uid: 2539 + components: + - pos: -51.5,-20.5 + parent: 34 + type: Transform + - uid: 2616 + components: + - pos: 45.5,-14.5 + parent: 34 + type: Transform + - uid: 2617 + components: + - pos: -55.5,-18.5 + parent: 34 + type: Transform + - uid: 2624 + components: + - pos: -55.5,-23.5 + parent: 34 + type: Transform + - uid: 2625 + components: + - pos: -54.5,-23.5 + parent: 34 + type: Transform + - uid: 2626 + components: + - pos: -57.5,-23.5 + parent: 34 + type: Transform + - uid: 2628 + components: + - pos: 43.5,-14.5 + parent: 34 + type: Transform + - uid: 2636 + components: + - pos: 13.5,20.5 + parent: 34 + type: Transform + - uid: 2639 + components: + - pos: -27.5,-30.5 + parent: 34 + type: Transform + - uid: 2662 + components: + - pos: -5.5,-30.5 + parent: 34 + type: Transform + - uid: 2663 + components: + - pos: -3.5,-30.5 + parent: 34 + type: Transform + - uid: 2665 + components: + - pos: -52.5,-23.5 + parent: 34 + type: Transform + - uid: 2666 + components: + - pos: 3.5,-30.5 + parent: 34 + type: Transform + - uid: 2683 + components: + - pos: 44.5,-14.5 + parent: 34 + type: Transform + - uid: 2814 + components: + - pos: 25.5,-36.5 + parent: 34 + type: Transform + - uid: 2818 + components: + - pos: 25.5,-32.5 + parent: 34 + type: Transform + - uid: 2917 + components: + - pos: 2.5,-21.5 + parent: 34 + type: Transform + - uid: 2944 + components: + - pos: -1.5,-34.5 + parent: 34 + type: Transform + - uid: 3196 + components: + - pos: -32.5,-41.5 + parent: 34 + type: Transform + - uid: 3205 + components: + - pos: -35.5,-48.5 + parent: 34 + type: Transform + - uid: 3207 + components: + - pos: -62.5,-44.5 + parent: 34 + type: Transform + - uid: 3208 + components: + - pos: -35.5,-50.5 + parent: 34 + type: Transform + - uid: 3212 + components: + - pos: -30.5,-49.5 + parent: 34 + type: Transform + - uid: 3219 + components: + - pos: -30.5,-48.5 + parent: 34 + type: Transform + - uid: 3245 + components: + - pos: -25.5,-43.5 + parent: 34 + type: Transform + - uid: 3341 + components: + - pos: 21.5,-16.5 + parent: 34 + type: Transform + - uid: 3342 + components: + - pos: 21.5,-14.5 + parent: 34 + type: Transform + - uid: 3386 + components: + - pos: -49.5,-38.5 + parent: 34 + type: Transform + - uid: 3451 + components: + - pos: -57.5,0.5 + parent: 34 + type: Transform + - uid: 3453 + components: + - pos: -57.5,-0.5 + parent: 34 + type: Transform + - uid: 3459 + components: + - pos: 10.5,4.5 + parent: 34 + type: Transform + - uid: 3477 + components: + - pos: 21.5,-12.5 + parent: 34 + type: Transform + - uid: 3497 + components: + - pos: 15.5,-6.5 + parent: 34 + type: Transform + - uid: 3500 + components: + - pos: 15.5,-5.5 + parent: 34 + type: Transform + - uid: 3501 + components: + - pos: 21.5,-7.5 + parent: 34 + type: Transform + - uid: 3502 + components: + - pos: 15.5,-4.5 + parent: 34 + type: Transform + - uid: 3503 + components: + - pos: 18.5,-10.5 + parent: 34 + type: Transform + - uid: 3515 + components: + - pos: 21.5,-4.5 + parent: 34 + type: Transform + - uid: 3516 + components: + - pos: 21.5,-5.5 + parent: 34 + type: Transform + - uid: 3517 + components: + - pos: 21.5,-6.5 + parent: 34 + type: Transform + - uid: 3532 + components: + - pos: 28.5,-15.5 + parent: 34 + type: Transform + - uid: 3533 + components: + - pos: 29.5,-15.5 + parent: 34 + type: Transform + - uid: 3539 + components: + - pos: 26.5,-9.5 + parent: 34 + type: Transform + - uid: 3540 + components: + - pos: 26.5,-10.5 + parent: 34 + type: Transform + - uid: 3546 + components: + - pos: 14.5,-35.5 + parent: 34 + type: Transform + - uid: 3553 + components: + - pos: 27.5,-12.5 + parent: 34 + type: Transform + - uid: 3556 + components: + - pos: 29.5,-12.5 + parent: 34 + type: Transform + - uid: 3559 + components: + - pos: 21.5,-18.5 + parent: 34 + type: Transform + - uid: 3563 + components: + - pos: 25.5,-7.5 + parent: 34 + type: Transform + - uid: 3565 + components: + - pos: 29.5,-4.5 + parent: 34 + type: Transform + - uid: 3567 + components: + - pos: 27.5,-4.5 + parent: 34 + type: Transform + - uid: 3569 + components: + - pos: 25.5,-6.5 + parent: 34 + type: Transform + - uid: 3571 + components: + - pos: 26.5,-4.5 + parent: 34 + type: Transform + - uid: 3574 + components: + - pos: 25.5,-5.5 + parent: 34 + type: Transform + - uid: 3576 + components: + - pos: 25.5,-1.5 + parent: 34 + type: Transform + - uid: 3613 + components: + - pos: 30.5,-12.5 + parent: 34 + type: Transform + - uid: 3642 + components: + - pos: 26.5,-1.5 + parent: 34 + type: Transform + - uid: 3643 + components: + - pos: 29.5,-1.5 + parent: 34 + type: Transform + - uid: 3644 + components: + - pos: 28.5,-1.5 + parent: 34 + type: Transform + - uid: 3682 + components: + - pos: 10.5,-49.5 + parent: 34 + type: Transform + - uid: 3688 + components: + - pos: 26.5,2.5 + parent: 34 + type: Transform + - uid: 3689 + components: + - pos: 29.5,2.5 + parent: 34 + type: Transform + - uid: 3690 + components: + - pos: 28.5,2.5 + parent: 34 + type: Transform + - uid: 3694 + components: + - pos: 24.5,1.5 + parent: 34 + type: Transform + - uid: 3765 + components: + - pos: -63.5,-11.5 + parent: 34 + type: Transform + - uid: 3778 + components: + - pos: -36.5,-37.5 + parent: 34 + type: Transform + - uid: 3780 + components: + - pos: -36.5,-35.5 + parent: 34 + type: Transform + - uid: 3796 + components: + - pos: 14.5,-2.5 + parent: 34 + type: Transform + - uid: 3822 + components: + - pos: 12.5,-2.5 + parent: 34 + type: Transform + - uid: 3857 + components: + - pos: 15.5,-35.5 + parent: 34 + type: Transform + - uid: 3868 + components: + - pos: 19.5,-31.5 + parent: 34 + type: Transform + - uid: 3869 + components: + - pos: 19.5,-30.5 + parent: 34 + type: Transform + - uid: 3870 + components: + - pos: 19.5,-28.5 + parent: 34 + type: Transform + - uid: 3919 + components: + - pos: 17.5,-25.5 + parent: 34 + type: Transform + - uid: 3920 + components: + - pos: 18.5,-25.5 + parent: 34 + type: Transform + - uid: 3921 + components: + - pos: 13.5,-25.5 + parent: 34 + type: Transform + - uid: 3922 + components: + - pos: 12.5,-25.5 + parent: 34 + type: Transform + - uid: 3949 + components: + - pos: -9.5,-49.5 + parent: 34 + type: Transform + - uid: 3950 + components: + - pos: -8.5,-49.5 + parent: 34 + type: Transform + - uid: 3951 + components: + - pos: -7.5,-49.5 + parent: 34 + type: Transform + - uid: 3968 + components: + - pos: -3.5,-39.5 + parent: 34 + type: Transform + - uid: 3982 + components: + - pos: 45.5,10.5 + parent: 34 + type: Transform + - uid: 3987 + components: + - pos: 22.5,-44.5 + parent: 34 + type: Transform + - uid: 3993 + components: + - pos: 43.5,-32.5 + parent: 34 + type: Transform + - uid: 3998 + components: + - pos: 43.5,-34.5 + parent: 34 + type: Transform + - uid: 4001 + components: + - pos: 19.5,-38.5 + parent: 34 + type: Transform + - uid: 4002 + components: + - pos: 43.5,-36.5 + parent: 34 + type: Transform + - uid: 4011 + components: + - pos: 23.5,-31.5 + parent: 34 + type: Transform + - uid: 4013 + components: + - pos: 29.5,-26.5 + parent: 34 + type: Transform + - uid: 4041 + components: + - pos: -5.5,-39.5 + parent: 34 + type: Transform + - uid: 4069 + components: + - pos: 5.5,-55.5 + parent: 34 + type: Transform + - uid: 4070 + components: + - pos: -2.5,-55.5 + parent: 34 + type: Transform + - uid: 4081 + components: + - pos: 0.5,-51.5 + parent: 34 + type: Transform + - uid: 4082 + components: + - pos: 1.5,-51.5 + parent: 34 + type: Transform + - uid: 4083 + components: + - pos: 2.5,-51.5 + parent: 34 + type: Transform + - uid: 4087 + components: + - pos: 0.5,-53.5 + parent: 34 + type: Transform + - uid: 4088 + components: + - pos: 1.5,-53.5 + parent: 34 + type: Transform + - uid: 4089 + components: + - pos: 2.5,-53.5 + parent: 34 + type: Transform + - uid: 4097 + components: + - pos: -3.5,-51.5 + parent: 34 + type: Transform + - uid: 4098 + components: + - pos: -1.5,-51.5 + parent: 34 + type: Transform + - uid: 4099 + components: + - pos: 4.5,-51.5 + parent: 34 + type: Transform + - uid: 4100 + components: + - pos: 6.5,-51.5 + parent: 34 + type: Transform + - uid: 4145 + components: + - pos: -6.5,-42.5 + parent: 34 + type: Transform + - uid: 4148 + components: + - pos: -11.5,-45.5 + parent: 34 + type: Transform + - uid: 4163 + components: + - pos: -24.5,-43.5 + parent: 34 + type: Transform + - uid: 4174 + components: + - pos: 12.5,-20.5 + parent: 34 + type: Transform + - uid: 4175 + components: + - pos: 14.5,-20.5 + parent: 34 + type: Transform + - uid: 4178 + components: + - pos: -2.5,-24.5 + parent: 34 + type: Transform + - uid: 4180 + components: + - pos: 10.5,-22.5 + parent: 34 + type: Transform + - uid: 4181 + components: + - pos: 10.5,-24.5 + parent: 34 + type: Transform + - uid: 4185 + components: + - pos: 8.5,4.5 + parent: 34 + type: Transform + - uid: 4187 + components: + - pos: 40.5,10.5 + parent: 34 + type: Transform + - uid: 4188 + components: + - pos: 7.5,4.5 + parent: 34 + type: Transform + - uid: 4189 + components: + - pos: 15.5,-1.5 + parent: 34 + type: Transform + - uid: 4190 + components: + - pos: 15.5,0.5 + parent: 34 + type: Transform + - uid: 4191 + components: + - pos: 15.5,1.5 + parent: 34 + type: Transform + - uid: 4251 + components: + - pos: 19.5,-29.5 + parent: 34 + type: Transform + - uid: 4263 + components: + - pos: 26.5,-30.5 + parent: 34 + type: Transform + - uid: 4264 + components: + - pos: 25.5,-30.5 + parent: 34 + type: Transform + - uid: 4272 + components: + - pos: 33.5,-26.5 + parent: 34 + type: Transform + - uid: 4287 + components: + - pos: 29.5,-35.5 + parent: 34 + type: Transform + - uid: 4289 + components: + - pos: 29.5,-33.5 + parent: 34 + type: Transform + - uid: 4290 + components: + - pos: 29.5,-34.5 + parent: 34 + type: Transform + - uid: 4293 + components: + - pos: 32.5,-30.5 + parent: 34 + type: Transform + - uid: 4321 + components: + - pos: 35.5,-33.5 + parent: 34 + type: Transform + - uid: 4322 + components: + - pos: 35.5,-34.5 + parent: 34 + type: Transform + - uid: 4323 + components: + - pos: 35.5,-35.5 + parent: 34 + type: Transform + - uid: 4332 + components: + - pos: 37.5,-37.5 + parent: 34 + type: Transform + - uid: 4333 + components: + - pos: 21.5,-44.5 + parent: 34 + type: Transform + - uid: 4388 + components: + - pos: 23.5,-37.5 + parent: 34 + type: Transform + - uid: 4404 + components: + - pos: 19.5,-37.5 + parent: 34 + type: Transform + - uid: 4473 + components: + - pos: 41.5,-41.5 + parent: 34 + type: Transform + - uid: 4474 + components: + - pos: 41.5,-40.5 + parent: 34 + type: Transform + - uid: 4475 + components: + - pos: 41.5,-39.5 + parent: 34 + type: Transform + - uid: 4476 + components: + - pos: 41.5,-38.5 + parent: 34 + type: Transform + - uid: 4482 + components: + - pos: 30.5,-42.5 + parent: 34 + type: Transform + - uid: 4491 + components: + - pos: 44.5,12.5 + parent: 34 + type: Transform + - uid: 4493 + components: + - pos: 20.5,-44.5 + parent: 34 + type: Transform + - uid: 4504 + components: + - pos: 37.5,-4.5 + parent: 34 + type: Transform + - uid: 4505 + components: + - pos: 37.5,-2.5 + parent: 34 + type: Transform + - uid: 4519 + components: + - pos: 45.5,12.5 + parent: 34 + type: Transform + - uid: 4536 + components: + - pos: 46.5,-2.5 + parent: 34 + type: Transform + - uid: 4615 + components: + - pos: 43.5,7.5 + parent: 34 + type: Transform + - uid: 4616 + components: + - pos: 44.5,7.5 + parent: 34 + type: Transform + - uid: 4620 + components: + - pos: 46.5,4.5 + parent: 34 + type: Transform + - uid: 4621 + components: + - pos: 46.5,5.5 + parent: 34 + type: Transform + - uid: 4625 + components: + - pos: 39.5,7.5 + parent: 34 + type: Transform + - uid: 4626 + components: + - pos: 38.5,7.5 + parent: 34 + type: Transform + - uid: 4627 + components: + - pos: 37.5,7.5 + parent: 34 + type: Transform + - uid: 4637 + components: + - pos: 41.5,2.5 + parent: 34 + type: Transform + - uid: 4642 + components: + - pos: 43.5,2.5 + parent: 34 + type: Transform + - uid: 4652 + components: + - pos: -5.5,-51.5 + parent: 34 + type: Transform + - uid: 4781 + components: + - pos: 51.5,0.5 + parent: 34 + type: Transform + - uid: 4893 + components: + - pos: -14.5,-38.5 + parent: 34 + type: Transform + - uid: 4962 + components: + - pos: 31.5,9.5 + parent: 34 + type: Transform + - uid: 4963 + components: + - pos: 32.5,9.5 + parent: 34 + type: Transform + - uid: 5000 + components: + - pos: 15.5,5.5 + parent: 34 + type: Transform + - uid: 5001 + components: + - pos: 15.5,3.5 + parent: 34 + type: Transform + - uid: 5014 + components: + - pos: 38.5,-21.5 + parent: 34 + type: Transform + - uid: 5015 + components: + - pos: 38.5,-25.5 + parent: 34 + type: Transform + - uid: 5061 + components: + - pos: -44.5,6.5 + parent: 34 + type: Transform + - uid: 5313 + components: + - pos: 19.5,-54.5 + parent: 34 + type: Transform + - uid: 5317 + components: + - pos: 16.5,-54.5 + parent: 34 + type: Transform + - uid: 5337 + components: + - pos: 17.5,-54.5 + parent: 34 + type: Transform + - uid: 5338 + components: + - pos: 22.5,-55.5 + parent: 34 + type: Transform + - uid: 5342 + components: + - pos: 15.5,-54.5 + parent: 34 + type: Transform + - uid: 5343 + components: + - pos: 21.5,-54.5 + parent: 34 + type: Transform + - uid: 5348 + components: + - pos: 20.5,-54.5 + parent: 34 + type: Transform + - uid: 5353 + components: + - pos: 18.5,-54.5 + parent: 34 + type: Transform + - uid: 5397 + components: + - pos: 28.5,-46.5 + parent: 34 + type: Transform + - uid: 5398 + components: + - pos: 29.5,-46.5 + parent: 34 + type: Transform + - uid: 5399 + components: + - pos: 30.5,-46.5 + parent: 34 + type: Transform + - uid: 5400 + components: + - pos: 27.5,-44.5 + parent: 34 + type: Transform + - uid: 5401 + components: + - pos: 27.5,-45.5 + parent: 34 + type: Transform + - uid: 5403 + components: + - pos: 34.5,-44.5 + parent: 34 + type: Transform + - uid: 5419 + components: + - pos: 31.5,-46.5 + parent: 34 + type: Transform + - uid: 5484 + components: + - pos: 35.5,-46.5 + parent: 34 + type: Transform + - uid: 5544 + components: + - pos: 51.5,-2.5 + parent: 34 + type: Transform + - uid: 5548 + components: + - pos: -16.5,1.5 + parent: 34 + type: Transform + - uid: 5549 + components: + - pos: -15.5,1.5 + parent: 34 + type: Transform + - uid: 5594 + components: + - pos: -20.5,1.5 + parent: 34 + type: Transform + - uid: 5599 + components: + - pos: -26.5,1.5 + parent: 34 + type: Transform + - uid: 5606 + components: + - pos: -26.5,6.5 + parent: 34 + type: Transform + - uid: 5610 + components: + - pos: -27.5,7.5 + parent: 34 + type: Transform + - uid: 5611 + components: + - pos: -24.5,7.5 + parent: 34 + type: Transform + - uid: 5630 + components: + - pos: -30.5,16.5 + parent: 34 + type: Transform + - uid: 5730 + components: + - pos: -23.5,6.5 + parent: 34 + type: Transform + - uid: 5731 + components: + - pos: -22.5,6.5 + parent: 34 + type: Transform + - uid: 5732 + components: + - pos: -21.5,6.5 + parent: 34 + type: Transform + - uid: 5733 + components: + - pos: -20.5,6.5 + parent: 34 + type: Transform + - uid: 5843 + components: + - pos: -7.5,16.5 + parent: 34 + type: Transform + - uid: 5863 + components: + - pos: -45.5,6.5 + parent: 34 + type: Transform + - uid: 5864 + components: + - pos: -46.5,6.5 + parent: 34 + type: Transform + - uid: 5916 + components: + - pos: -35.5,0.5 + parent: 34 + type: Transform + - uid: 5917 + components: + - pos: -34.5,0.5 + parent: 34 + type: Transform + - uid: 5991 + components: + - pos: -53.5,-23.5 + parent: 34 + type: Transform + - uid: 6023 + components: + - pos: 51.5,-0.5 + parent: 34 + type: Transform + - uid: 6046 + components: + - pos: -18.5,-36.5 + parent: 34 + type: Transform + - uid: 6098 + components: + - pos: 11.5,6.5 + parent: 34 + type: Transform + - uid: 6111 + components: + - pos: -60.5,-27.5 + parent: 34 + type: Transform + - uid: 6178 + components: + - pos: 10.5,19.5 + parent: 34 + type: Transform + - uid: 6183 + components: + - pos: 9.5,19.5 + parent: 34 + type: Transform + - uid: 6196 + components: + - pos: 12.5,12.5 + parent: 34 + type: Transform + - uid: 6197 + components: + - pos: 14.5,12.5 + parent: 34 + type: Transform + - uid: 6200 + components: + - pos: 15.5,15.5 + parent: 34 + type: Transform + - uid: 6201 + components: + - pos: 15.5,14.5 + parent: 34 + type: Transform + - uid: 6215 + components: + - pos: -58.5,-4.5 + parent: 34 + type: Transform + - uid: 6216 + components: + - pos: -58.5,-5.5 + parent: 34 + type: Transform + - uid: 6228 + components: + - pos: -49.5,-27.5 + parent: 34 + type: Transform + - uid: 6229 + components: + - pos: -49.5,-24.5 + parent: 34 + type: Transform + - uid: 6249 + components: + - pos: -8.5,16.5 + parent: 34 + type: Transform + - uid: 6251 + components: + - pos: -9.5,16.5 + parent: 34 + type: Transform + - uid: 6252 + components: + - pos: -11.5,16.5 + parent: 34 + type: Transform + - uid: 6253 + components: + - pos: -12.5,16.5 + parent: 34 + type: Transform + - uid: 6254 + components: + - pos: -13.5,16.5 + parent: 34 + type: Transform + - uid: 6255 + components: + - pos: -14.5,16.5 + parent: 34 + type: Transform + - uid: 6256 + components: + - pos: -15.5,16.5 + parent: 34 + type: Transform + - uid: 6257 + components: + - pos: -16.5,16.5 + parent: 34 + type: Transform + - uid: 6259 + components: + - pos: -18.5,16.5 + parent: 34 + type: Transform + - uid: 6260 + components: + - pos: -19.5,16.5 + parent: 34 + type: Transform + - uid: 6261 + components: + - pos: -20.5,16.5 + parent: 34 + type: Transform + - uid: 6262 + components: + - pos: -21.5,16.5 + parent: 34 + type: Transform + - uid: 6263 + components: + - pos: -22.5,16.5 + parent: 34 + type: Transform + - uid: 6264 + components: + - pos: -23.5,16.5 + parent: 34 + type: Transform + - uid: 6266 + components: + - pos: -24.5,15.5 + parent: 34 + type: Transform + - uid: 6267 + components: + - pos: -27.5,15.5 + parent: 34 + type: Transform + - uid: 6269 + components: + - pos: -28.5,16.5 + parent: 34 + type: Transform + - uid: 6270 + components: + - pos: -29.5,16.5 + parent: 34 + type: Transform + - uid: 6272 + components: + - pos: -31.5,16.5 + parent: 34 + type: Transform + - uid: 6273 + components: + - pos: -32.5,16.5 + parent: 34 + type: Transform + - uid: 6274 + components: + - pos: -33.5,16.5 + parent: 34 + type: Transform + - uid: 6275 + components: + - pos: -7.5,15.5 + parent: 34 + type: Transform + - uid: 6276 + components: + - pos: -35.5,16.5 + parent: 34 + type: Transform + - uid: 6277 + components: + - pos: -36.5,16.5 + parent: 34 + type: Transform + - uid: 6278 + components: + - pos: -37.5,16.5 + parent: 34 + type: Transform + - uid: 6279 + components: + - pos: -38.5,16.5 + parent: 34 + type: Transform + - uid: 6280 + components: + - pos: -39.5,16.5 + parent: 34 + type: Transform + - uid: 6281 + components: + - pos: -40.5,16.5 + parent: 34 + type: Transform + - uid: 6283 + components: + - pos: -63.5,9.5 + parent: 34 + type: Transform + - uid: 6284 + components: + - pos: -62.5,9.5 + parent: 34 + type: Transform + - uid: 6285 + components: + - pos: -62.5,10.5 + parent: 34 + type: Transform + - uid: 6286 + components: + - pos: -61.5,10.5 + parent: 34 + type: Transform + - uid: 6287 + components: + - pos: -61.5,11.5 + parent: 34 + type: Transform + - uid: 6288 + components: + - pos: -60.5,11.5 + parent: 34 + type: Transform + - uid: 6289 + components: + - pos: -60.5,12.5 + parent: 34 + type: Transform + - uid: 6290 + components: + - pos: -59.5,12.5 + parent: 34 + type: Transform + - uid: 6291 + components: + - pos: -59.5,13.5 + parent: 34 + type: Transform + - uid: 6292 + components: + - pos: -58.5,13.5 + parent: 34 + type: Transform + - uid: 6293 + components: + - pos: -58.5,14.5 + parent: 34 + type: Transform + - uid: 6294 + components: + - pos: -57.5,14.5 + parent: 34 + type: Transform + - uid: 6295 + components: + - pos: -63.5,8.5 + parent: 34 + type: Transform + - uid: 6296 + components: + - pos: -7.5,14.5 + parent: 34 + type: Transform + - uid: 6300 + components: + - pos: -63.5,1.5 + parent: 34 + type: Transform + - uid: 6301 + components: + - pos: -63.5,5.5 + parent: 34 + type: Transform + - uid: 6302 + components: + - pos: -62.5,5.5 + parent: 34 + type: Transform + - uid: 6303 + components: + - pos: -42.5,16.5 + parent: 34 + type: Transform + - uid: 6304 + components: + - pos: -43.5,16.5 + parent: 34 + type: Transform + - uid: 6305 + components: + - pos: -44.5,16.5 + parent: 34 + type: Transform + - uid: 6306 + components: + - pos: -44.5,15.5 + parent: 34 + type: Transform + - uid: 6307 + components: + - pos: -44.5,14.5 + parent: 34 + type: Transform + - uid: 6308 + components: + - pos: -63.5,3.5 + parent: 34 + type: Transform + - uid: 6309 + components: + - pos: -63.5,2.5 + parent: 34 + type: Transform + - uid: 6310 + components: + - pos: -63.5,4.5 + parent: 34 + type: Transform + - uid: 6311 + components: + - pos: -63.5,0.5 + parent: 34 + type: Transform + - uid: 6312 + components: + - pos: -63.5,-0.5 + parent: 34 + type: Transform + - uid: 6313 + components: + - pos: -63.5,-1.5 + parent: 34 + type: Transform + - uid: 6314 + components: + - pos: -63.5,-2.5 + parent: 34 + type: Transform + - uid: 6315 + components: + - pos: -63.5,-3.5 + parent: 34 + type: Transform + - uid: 6316 + components: + - pos: -63.5,-4.5 + parent: 34 + type: Transform + - uid: 6317 + components: + - pos: -62.5,-4.5 + parent: 34 + type: Transform + - uid: 6321 + components: + - pos: -60.5,-10.5 + parent: 34 + type: Transform + - uid: 6330 + components: + - pos: -60.5,-9.5 + parent: 34 + type: Transform + - uid: 6345 + components: + - pos: -55.5,-45.5 + parent: 34 + type: Transform + - uid: 6346 + components: + - pos: -56.5,-45.5 + parent: 34 + type: Transform + - uid: 6347 + components: + - pos: -56.5,-46.5 + parent: 34 + type: Transform + - uid: 6348 + components: + - pos: -56.5,-47.5 + parent: 34 + type: Transform + - uid: 6349 + components: + - pos: -56.5,-48.5 + parent: 34 + type: Transform + - uid: 6350 + components: + - pos: -56.5,-49.5 + parent: 34 + type: Transform + - uid: 6351 + components: + - pos: -56.5,-50.5 + parent: 34 + type: Transform + - uid: 6352 + components: + - pos: -56.5,-51.5 + parent: 34 + type: Transform + - uid: 6353 + components: + - pos: -56.5,-52.5 + parent: 34 + type: Transform + - uid: 6354 + components: + - pos: -56.5,-53.5 + parent: 34 + type: Transform + - uid: 6355 + components: + - pos: -55.5,-53.5 + parent: 34 + type: Transform + - uid: 6356 + components: + - pos: -54.5,-53.5 + parent: 34 + type: Transform + - uid: 6357 + components: + - pos: -53.5,-53.5 + parent: 34 + type: Transform + - uid: 6358 + components: + - pos: -52.5,-53.5 + parent: 34 + type: Transform + - uid: 6359 + components: + - pos: -51.5,-53.5 + parent: 34 + type: Transform + - uid: 6360 + components: + - pos: -50.5,-53.5 + parent: 34 + type: Transform + - uid: 6361 + components: + - pos: -49.5,-53.5 + parent: 34 + type: Transform + - uid: 6362 + components: + - pos: -48.5,-53.5 + parent: 34 + type: Transform + - uid: 6363 + components: + - pos: -47.5,-53.5 + parent: 34 + type: Transform + - uid: 6364 + components: + - pos: -47.5,-52.5 + parent: 34 + type: Transform + - uid: 6365 + components: + - pos: -46.5,-52.5 + parent: 34 + type: Transform + - uid: 6367 + components: + - pos: -63.5,-13.5 + parent: 34 + type: Transform + - uid: 6369 + components: + - pos: -63.5,-10.5 + parent: 34 + type: Transform + - uid: 6370 + components: + - pos: -63.5,-12.5 + parent: 34 + type: Transform + - uid: 6371 + components: + - pos: -59.5,-45.5 + parent: 34 + type: Transform + - uid: 6372 + components: + - pos: -63.5,-8.5 + parent: 34 + type: Transform + - uid: 6378 + components: + - pos: -63.5,-35.5 + parent: 34 + type: Transform + - uid: 6379 + components: + - pos: -63.5,-33.5 + parent: 34 + type: Transform + - uid: 6380 + components: + - pos: -63.5,-14.5 + parent: 34 + type: Transform + - uid: 6381 + components: + - pos: -32.5,-51.5 + parent: 34 + type: Transform + - uid: 6382 + components: + - pos: -34.5,-51.5 + parent: 34 + type: Transform + - uid: 6385 + components: + - pos: -60.5,-45.5 + parent: 34 + type: Transform + - uid: 6386 + components: + - pos: -61.5,-45.5 + parent: 34 + type: Transform + - uid: 6394 + components: + - pos: 16.5,-35.5 + parent: 34 + type: Transform + - uid: 6396 + components: + - pos: -63.5,-26.5 + parent: 34 + type: Transform + - uid: 6404 + components: + - pos: 22.5,-56.5 + parent: 34 + type: Transform + - uid: 6407 + components: + - pos: 25.5,-56.5 + parent: 34 + type: Transform + - uid: 6408 + components: + - pos: 26.5,-56.5 + parent: 34 + type: Transform + - uid: 6409 + components: + - pos: 27.5,-56.5 + parent: 34 + type: Transform + - uid: 6410 + components: + - pos: 28.5,-56.5 + parent: 34 + type: Transform + - uid: 6411 + components: + - pos: 29.5,-56.5 + parent: 34 + type: Transform + - uid: 6412 + components: + - pos: 30.5,-56.5 + parent: 34 + type: Transform + - uid: 6413 + components: + - pos: 31.5,-56.5 + parent: 34 + type: Transform + - uid: 6414 + components: + - pos: 32.5,-56.5 + parent: 34 + type: Transform + - uid: 6415 + components: + - pos: 33.5,-56.5 + parent: 34 + type: Transform + - uid: 6416 + components: + - pos: 34.5,-56.5 + parent: 34 + type: Transform + - uid: 6417 + components: + - pos: 35.5,-56.5 + parent: 34 + type: Transform + - uid: 6419 + components: + - pos: 36.5,-55.5 + parent: 34 + type: Transform + - uid: 6420 + components: + - pos: 36.5,-54.5 + parent: 34 + type: Transform + - uid: 6421 + components: + - pos: 36.5,-53.5 + parent: 34 + type: Transform + - uid: 6422 + components: + - pos: 36.5,-52.5 + parent: 34 + type: Transform + - uid: 6423 + components: + - pos: 36.5,-51.5 + parent: 34 + type: Transform + - uid: 6424 + components: + - pos: 36.5,-50.5 + parent: 34 + type: Transform + - uid: 6425 + components: + - pos: 42.5,-52.5 + parent: 34 + type: Transform + - uid: 6427 + components: + - pos: 43.5,-51.5 + parent: 34 + type: Transform + - uid: 6428 + components: + - pos: 43.5,-50.5 + parent: 34 + type: Transform + - uid: 6429 + components: + - pos: 44.5,-50.5 + parent: 34 + type: Transform + - uid: 6430 + components: + - pos: 44.5,-49.5 + parent: 34 + type: Transform + - uid: 6431 + components: + - pos: 45.5,-49.5 + parent: 34 + type: Transform + - uid: 6432 + components: + - pos: 45.5,-48.5 + parent: 34 + type: Transform + - uid: 6433 + components: + - pos: 46.5,-48.5 + parent: 34 + type: Transform + - uid: 6435 + components: + - pos: 47.5,-47.5 + parent: 34 + type: Transform + - uid: 6436 + components: + - pos: 46.5,-29.5 + parent: 34 + type: Transform + - uid: 6437 + components: + - pos: 47.5,-29.5 + parent: 34 + type: Transform + - uid: 6439 + components: + - pos: 49.5,-31.5 + parent: 34 + type: Transform + - uid: 6440 + components: + - pos: 49.5,-32.5 + parent: 34 + type: Transform + - uid: 6441 + components: + - pos: 49.5,-33.5 + parent: 34 + type: Transform + - uid: 6443 + components: + - pos: 49.5,-35.5 + parent: 34 + type: Transform + - uid: 6444 + components: + - pos: 49.5,-36.5 + parent: 34 + type: Transform + - uid: 6446 + components: + - pos: 49.5,-38.5 + parent: 34 + type: Transform + - uid: 6447 + components: + - pos: 49.5,-39.5 + parent: 34 + type: Transform + - uid: 6449 + components: + - pos: 49.5,-41.5 + parent: 34 + type: Transform + - uid: 6450 + components: + - pos: 49.5,-42.5 + parent: 34 + type: Transform + - uid: 6451 + components: + - pos: 49.5,-43.5 + parent: 34 + type: Transform + - uid: 6453 + components: + - pos: 47.5,-45.5 + parent: 34 + type: Transform + - uid: 6454 + components: + - pos: 46.5,-45.5 + parent: 34 + type: Transform + - uid: 6455 + components: + - pos: 52.5,-17.5 + parent: 34 + type: Transform + - uid: 6456 + components: + - pos: 53.5,-17.5 + parent: 34 + type: Transform + - uid: 6457 + components: + - pos: 54.5,-17.5 + parent: 34 + type: Transform + - uid: 6458 + components: + - pos: 54.5,-18.5 + parent: 34 + type: Transform + - uid: 6459 + components: + - pos: 55.5,-18.5 + parent: 34 + type: Transform + - uid: 6461 + components: + - pos: 56.5,-19.5 + parent: 34 + type: Transform + - uid: 6462 + components: + - pos: 56.5,-20.5 + parent: 34 + type: Transform + - uid: 6463 + components: + - pos: 57.5,-20.5 + parent: 34 + type: Transform + - uid: 6464 + components: + - pos: 57.5,-21.5 + parent: 34 + type: Transform + - uid: 6465 + components: + - pos: 57.5,-22.5 + parent: 34 + type: Transform + - uid: 6467 + components: + - pos: 57.5,-24.5 + parent: 34 + type: Transform + - uid: 6468 + components: + - pos: 57.5,-25.5 + parent: 34 + type: Transform + - uid: 6469 + components: + - pos: 57.5,-26.5 + parent: 34 + type: Transform + - uid: 6470 + components: + - pos: 56.5,-26.5 + parent: 34 + type: Transform + - uid: 6471 + components: + - pos: 56.5,-27.5 + parent: 34 + type: Transform + - uid: 6473 + components: + - pos: 55.5,-28.5 + parent: 34 + type: Transform + - uid: 6474 + components: + - pos: 54.5,-28.5 + parent: 34 + type: Transform + - uid: 6475 + components: + - pos: 54.5,-29.5 + parent: 34 + type: Transform + - uid: 6476 + components: + - pos: 53.5,-29.5 + parent: 34 + type: Transform + - uid: 6477 + components: + - pos: 52.5,-29.5 + parent: 34 + type: Transform + - uid: 6478 + components: + - pos: 49.5,8.5 + parent: 34 + type: Transform + - uid: 6479 + components: + - pos: 50.5,8.5 + parent: 34 + type: Transform + - uid: 6481 + components: + - pos: 52.5,7.5 + parent: 34 + type: Transform + - uid: 6482 + components: + - pos: 53.5,6.5 + parent: 34 + type: Transform + - uid: 6483 + components: + - pos: 54.5,5.5 + parent: 34 + type: Transform + - uid: 6484 + components: + - pos: 54.5,4.5 + parent: 34 + type: Transform + - uid: 6486 + components: + - pos: 54.5,2.5 + parent: 34 + type: Transform + - uid: 6487 + components: + - pos: 54.5,1.5 + parent: 34 + type: Transform + - uid: 6488 + components: + - pos: 54.5,0.5 + parent: 34 + type: Transform + - uid: 6491 + components: + - pos: 54.5,-2.5 + parent: 34 + type: Transform + - uid: 6492 + components: + - pos: 54.5,-3.5 + parent: 34 + type: Transform + - uid: 6493 + components: + - pos: 54.5,-4.5 + parent: 34 + type: Transform + - uid: 6495 + components: + - pos: 54.5,-6.5 + parent: 34 + type: Transform + - uid: 6496 + components: + - pos: 54.5,-7.5 + parent: 34 + type: Transform + - uid: 6497 + components: + - pos: 54.5,-8.5 + parent: 34 + type: Transform + - uid: 6499 + components: + - pos: 54.5,-10.5 + parent: 34 + type: Transform + - uid: 6500 + components: + - pos: 54.5,-11.5 + parent: 34 + type: Transform + - uid: 6501 + components: + - pos: 53.5,-12.5 + parent: 34 + type: Transform + - uid: 6502 + components: + - pos: 52.5,-13.5 + parent: 34 + type: Transform + - uid: 6504 + components: + - pos: 50.5,-14.5 + parent: 34 + type: Transform + - uid: 6506 + components: + - pos: 36.5,11.5 + parent: 34 + type: Transform + - uid: 6508 + components: + - pos: 37.5,12.5 + parent: 34 + type: Transform + - uid: 6509 + components: + - pos: 38.5,12.5 + parent: 34 + type: Transform + - uid: 6510 + components: + - pos: 39.5,12.5 + parent: 34 + type: Transform + - uid: 6511 + components: + - pos: 40.5,12.5 + parent: 34 + type: Transform + - uid: 6512 + components: + - pos: 41.5,12.5 + parent: 34 + type: Transform + - uid: 6514 + components: + - pos: 43.5,12.5 + parent: 34 + type: Transform + - uid: 6515 + components: + - pos: 40.5,9.5 + parent: 34 + type: Transform + - uid: 6516 + components: + - pos: 31.5,17.5 + parent: 34 + type: Transform + - uid: 6517 + components: + - pos: 47.5,12.5 + parent: 34 + type: Transform + - uid: 6518 + components: + - pos: 46.5,12.5 + parent: 34 + type: Transform + - uid: 6519 + components: + - pos: 32.5,17.5 + parent: 34 + type: Transform + - uid: 6520 + components: + - pos: 48.5,11.5 + parent: 34 + type: Transform + - uid: 6521 + components: + - pos: 32.5,16.5 + parent: 34 + type: Transform + - uid: 6522 + components: + - pos: 21.5,17.5 + parent: 34 + type: Transform + - uid: 6523 + components: + - pos: 22.5,17.5 + parent: 34 + type: Transform + - uid: 6524 + components: + - pos: 18.5,17.5 + parent: 34 + type: Transform + - uid: 6526 + components: + - pos: 25.5,17.5 + parent: 34 + type: Transform + - uid: 6527 + components: + - pos: 26.5,17.5 + parent: 34 + type: Transform + - uid: 6528 + components: + - pos: 23.5,17.5 + parent: 34 + type: Transform + - uid: 6529 + components: + - pos: 24.5,17.5 + parent: 34 + type: Transform + - uid: 6530 + components: + - pos: 28.5,17.5 + parent: 34 + type: Transform + - uid: 6531 + components: + - pos: 29.5,17.5 + parent: 34 + type: Transform + - uid: 6532 + components: + - pos: 27.5,17.5 + parent: 34 + type: Transform + - uid: 6533 + components: + - pos: 18.5,16.5 + parent: 34 + type: Transform + - uid: 6566 + components: + - pos: 32.5,-46.5 + parent: 34 + type: Transform + - uid: 6688 + components: + - pos: 51.5,-1.5 + parent: 34 + type: Transform + - uid: 6689 + components: + - pos: 45.5,11.5 + parent: 34 + type: Transform + - uid: 6691 + components: + - pos: 51.5,-3.5 + parent: 34 + type: Transform + - uid: 7052 + components: + - pos: 43.5,-31.5 + parent: 34 + type: Transform + - uid: 7053 + components: + - pos: 43.5,-33.5 + parent: 34 + type: Transform + - uid: 7054 + components: + - pos: 43.5,-35.5 + parent: 34 + type: Transform + - uid: 7235 + components: + - pos: 9.5,-52.5 + parent: 34 + type: Transform + - uid: 7408 + components: + - pos: -11.5,-48.5 + parent: 34 + type: Transform + - uid: 7555 + components: + - pos: -40.5,-21.5 + parent: 34 + type: Transform + - uid: 7806 + components: + - pos: -40.5,11.5 + parent: 34 + type: Transform + - uid: 7811 + components: + - pos: -41.5,11.5 + parent: 34 + type: Transform + - uid: 7844 + components: + - pos: 5.5,-41.5 + parent: 34 + type: Transform + - uid: 7845 + components: + - pos: 2.5,-41.5 + parent: 34 + type: Transform + - uid: 7907 + components: + - pos: -11.5,-47.5 + parent: 34 + type: Transform + - uid: 8072 + components: + - pos: -6.5,-52.5 + parent: 34 + type: Transform + - uid: 8091 + components: + - pos: 40.5,11.5 + parent: 34 + type: Transform + - uid: 8288 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 34 + type: Transform + - uid: 8418 + components: + - pos: -7.5,12.5 + parent: 34 + type: Transform + - uid: 8491 + components: + - pos: -11.5,-46.5 + parent: 34 + type: Transform + - uid: 8502 + components: + - pos: -8.5,-53.5 + parent: 34 + type: Transform + - uid: 8913 + components: + - pos: 41.5,-12.5 + parent: 34 + type: Transform + - uid: 8914 + components: + - pos: 8.5,-55.5 + parent: 34 + type: Transform + - uid: 8923 + components: + - pos: 42.5,-5.5 + parent: 34 + type: Transform + - uid: 8943 + components: + - pos: -26.5,-32.5 + parent: 34 + type: Transform + - uid: 9106 + components: + - pos: -5.5,-55.5 + parent: 34 + type: Transform + - uid: 9985 + components: + - pos: 31.5,-4.5 + parent: 34 + type: Transform + - uid: 10458 + components: + - pos: -41.5,-19.5 + parent: 34 + type: Transform + - uid: 10489 + components: + - pos: 46.5,-13.5 + parent: 34 + type: Transform + - uid: 10493 + components: + - pos: 40.5,-2.5 + parent: 34 + type: Transform + - uid: 10589 + components: + - pos: 16.5,-12.5 + parent: 34 + type: Transform + - uid: 10608 + components: + - pos: -6.5,-53.5 + parent: 34 + type: Transform + - uid: 10610 + components: + - pos: 9.5,-54.5 + parent: 34 + type: Transform + - uid: 10613 + components: + - pos: 9.5,-53.5 + parent: 34 + type: Transform + - uid: 10616 + components: + - pos: 8.5,-51.5 + parent: 34 + type: Transform + - uid: 10617 + components: + - pos: 11.5,-49.5 + parent: 34 + type: Transform + - uid: 10621 + components: + - pos: 26.5,13.5 + parent: 34 + type: Transform + - uid: 10624 + components: + - pos: 25.5,13.5 + parent: 34 + type: Transform + - uid: 10891 + components: + - pos: 5.5,-39.5 + parent: 34 + type: Transform + - uid: 10913 + components: + - pos: 40.5,8.5 + parent: 34 + type: Transform + - uid: 11002 + components: + - pos: -61.5,-20.5 + parent: 34 + type: Transform + - uid: 11024 + components: + - pos: -41.5,-18.5 + parent: 34 + type: Transform + - uid: 11038 + components: + - pos: -10.5,-52.5 + parent: 34 + type: Transform + - uid: 11199 + components: + - pos: 21.5,13.5 + parent: 34 + type: Transform + - uid: 11200 + components: + - pos: 20.5,13.5 + parent: 34 + type: Transform + - uid: 11441 + components: + - pos: -6.5,12.5 + parent: 34 + type: Transform + - uid: 11453 + components: + - pos: -56.5,-18.5 + parent: 34 + type: Transform + - uid: 11454 + components: + - pos: -54.5,-18.5 + parent: 34 + type: Transform + - uid: 11488 + components: + - pos: -58.5,-18.5 + parent: 34 + type: Transform + - uid: 11549 + components: + - pos: 41.5,-9.5 + parent: 34 + type: Transform + - uid: 11550 + components: + - pos: 45.5,-5.5 + parent: 34 + type: Transform + - uid: 11687 + components: + - pos: -57.5,-18.5 + parent: 34 + type: Transform + - uid: 11717 + components: + - pos: -60.5,-33.5 + parent: 34 + type: Transform + - uid: 11776 + components: + - pos: 8.5,19.5 + parent: 34 + type: Transform + - uid: 11777 + components: + - pos: 3.5,16.5 + parent: 34 + type: Transform + - uid: 11778 + components: + - pos: 3.5,17.5 + parent: 34 + type: Transform + - uid: 11781 + components: + - pos: 3.5,18.5 + parent: 34 + type: Transform + - uid: 11795 + components: + - pos: -0.5,15.5 + parent: 34 + type: Transform + - uid: 11796 + components: + - pos: -4.5,15.5 + parent: 34 + type: Transform + - uid: 11802 + components: + - pos: 15.5,18.5 + parent: 34 + type: Transform + - uid: 11804 + components: + - pos: 15.5,17.5 + parent: 34 + type: Transform + - uid: 11815 + components: + - pos: -58.5,-36.5 + parent: 34 + type: Transform + - uid: 11879 + components: + - pos: -1.5,15.5 + parent: 34 + type: Transform + - uid: 11896 + components: + - pos: -57.5,-36.5 + parent: 34 + type: Transform + - uid: 11909 + components: + - pos: 5.5,20.5 + parent: 34 + type: Transform + - uid: 12046 + components: + - pos: -63.5,-25.5 + parent: 34 + type: Transform + - uid: 12047 + components: + - pos: -63.5,-29.5 + parent: 34 + type: Transform + - uid: 12048 + components: + - pos: -63.5,-28.5 + parent: 34 + type: Transform + - uid: 12049 + components: + - pos: -63.5,-32.5 + parent: 34 + type: Transform + - uid: 12073 + components: + - pos: -63.5,-31.5 + parent: 34 + type: Transform + - uid: 12080 + components: + - pos: -63.5,-6.5 + parent: 34 + type: Transform + - uid: 12081 + components: + - pos: -63.5,-7.5 + parent: 34 + type: Transform + - uid: 12086 + components: + - pos: -39.5,-59.5 + parent: 34 + type: Transform + - uid: 12087 + components: + - pos: -40.5,-59.5 + parent: 34 + type: Transform + - uid: 12088 + components: + - pos: -41.5,-59.5 + parent: 34 + type: Transform + - uid: 12090 + components: + - pos: -43.5,-59.5 + parent: 34 + type: Transform + - uid: 12091 + components: + - pos: -44.5,-59.5 + parent: 34 + type: Transform + - uid: 12092 + components: + - pos: -45.5,-59.5 + parent: 34 + type: Transform + - uid: 12093 + components: + - pos: -46.5,-59.5 + parent: 34 + type: Transform + - uid: 12094 + components: + - pos: -47.5,-59.5 + parent: 34 + type: Transform + - uid: 12095 + components: + - pos: -47.5,-58.5 + parent: 34 + type: Transform + - uid: 12096 + components: + - pos: -48.5,-58.5 + parent: 34 + type: Transform + - uid: 12170 + components: + - pos: -16.5,-43.5 + parent: 34 + type: Transform + - uid: 12241 + components: + - pos: -8.5,12.5 + parent: 34 + type: Transform + - uid: 12309 + components: + - pos: -17.5,-36.5 + parent: 34 + type: Transform + - uid: 12314 + components: + - pos: -7.5,12.5 + parent: 34 + type: Transform + - uid: 12373 + components: + - pos: -18.5,-39.5 + parent: 34 + type: Transform + - uid: 12374 + components: + - pos: -17.5,-39.5 + parent: 34 + type: Transform + - uid: 12375 + components: + - pos: -16.5,-39.5 + parent: 34 + type: Transform + - uid: 12376 + components: + - pos: -15.5,-39.5 + parent: 34 + type: Transform + - uid: 12378 + components: + - pos: -9.5,12.5 + parent: 34 + type: Transform + - uid: 12418 + components: + - pos: -15.5,-43.5 + parent: 34 + type: Transform + - uid: 12429 + components: + - pos: 2.5,-39.5 + parent: 34 + type: Transform + - uid: 12430 + components: + - pos: 46.5,-7.5 + parent: 34 + type: Transform + - uid: 12461 + components: + - pos: 40.5,-4.5 + parent: 34 + type: Transform + - uid: 12481 + components: + - pos: -62.5,-22.5 + parent: 34 + type: Transform + - uid: 12482 + components: + - pos: -62.5,-24.5 + parent: 34 + type: Transform + - uid: 12488 + components: + - pos: -24.5,-32.5 + parent: 34 + type: Transform + - uid: 12568 + components: + - pos: -56.5,-36.5 + parent: 34 + type: Transform + - uid: 12569 + components: + - pos: -55.5,-36.5 + parent: 34 + type: Transform + - uid: 12613 + components: + - pos: -59.5,-36.5 + parent: 34 + type: Transform + - uid: 12615 + components: + - pos: -63.5,-43.5 + parent: 34 + type: Transform + - uid: 12616 + components: + - pos: -63.5,-41.5 + parent: 34 + type: Transform + - uid: 12617 + components: + - pos: -63.5,-40.5 + parent: 34 + type: Transform + - uid: 12618 + components: + - pos: -63.5,-39.5 + parent: 34 + type: Transform + - uid: 12619 + components: + - pos: -63.5,-38.5 + parent: 34 + type: Transform + - uid: 12620 + components: + - pos: -63.5,-37.5 + parent: 34 + type: Transform + - uid: 12704 + components: + - pos: 46.5,-0.5 + parent: 34 + type: Transform + - uid: 12707 + components: + - pos: 46.5,-1.5 + parent: 34 + type: Transform + - uid: 12766 + components: + - pos: -60.5,-28.5 + parent: 34 + type: Transform + - uid: 12767 + components: + - pos: -60.5,-29.5 + parent: 34 + type: Transform + - uid: 12768 + components: + - pos: -60.5,-31.5 + parent: 34 + type: Transform + - uid: 12769 + components: + - pos: -60.5,-32.5 + parent: 34 + type: Transform + - uid: 12913 + components: + - pos: 45.5,9.5 + parent: 34 + type: Transform + - uid: 12914 + components: + - pos: 45.5,8.5 + parent: 34 + type: Transform +- proto: GrilleBroken + entities: + - uid: 6299 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-56.5 + parent: 34 + type: Transform + - uid: 6405 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-56.5 + parent: 34 + type: Transform + - uid: 6406 + components: + - pos: 54.5,-1.5 + parent: 34 + type: Transform + - uid: 6525 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,17.5 + parent: 34 + type: Transform + - uid: 11876 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,17.5 + parent: 34 + type: Transform + - uid: 12089 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-59.5 + parent: 34 + type: Transform + - uid: 12097 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-59.5 + parent: 34 + type: Transform + - uid: 12624 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,-45.5 + parent: 34 + type: Transform + - uid: 12626 + components: + - pos: -63.5,-36.5 + parent: 34 + type: Transform + - uid: 12627 + components: + - rot: 3.141592653589793 rad + pos: -63.5,-34.5 + parent: 34 + type: Transform + - uid: 12628 + components: + - pos: -63.5,-30.5 + parent: 34 + type: Transform + - uid: 12629 + components: + - rot: 3.141592653589793 rad + pos: -63.5,-27.5 + parent: 34 + type: Transform + - uid: 12630 + components: + - rot: 3.141592653589793 rad + pos: -62.5,-23.5 + parent: 34 + type: Transform + - uid: 12631 + components: + - rot: 1.5707963267948966 rad + pos: -62.5,-21.5 + parent: 34 + type: Transform + - uid: 12633 + components: + - rot: 3.141592653589793 rad + pos: -63.5,-9.5 + parent: 34 + type: Transform +- proto: GunSafePistolMk58 + entities: + - uid: 3710 + components: + - pos: 29.5,1.5 + parent: 34 + type: Transform +- proto: HandheldGPSBasic + entities: + - uid: 12251 + components: + - pos: -30.257595,-57.612514 + parent: 34 + type: Transform + - uid: 12291 + components: + - pos: -30.64822,-57.300014 + parent: 34 + type: Transform +- proto: HatSpawner + entities: + - uid: 9016 + components: + - pos: 49.5,-3.5 + parent: 34 + type: Transform + - uid: 11099 + components: + - pos: -14.5,-15.5 + parent: 34 + type: Transform +- proto: HeadSkeleton + entities: + - uid: 4660 + components: + - pos: 40.995945,-16.198792 + parent: 34 + type: Transform +- proto: HeatExchanger + entities: + - uid: 11446 + components: + - pos: -58.5,-38.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11482 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,-21.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 11483 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,-19.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 11995 + components: + - pos: -57.5,-38.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: HighSecArmoryLocked + entities: + - uid: 3702 + components: + - name: armory - level II + type: MetaData + - pos: 27.5,2.5 + parent: 34 + type: Transform +- proto: HighSecCommandLocked + entities: + - uid: 10 + components: + - pos: 23.5,-34.5 + parent: 34 + type: Transform + - uid: 1073 + components: + - pos: -28.5,-37.5 + parent: 34 + type: Transform +- proto: HolofanProjector + entities: + - uid: 4405 + components: + - pos: -24.64519,-29.318565 + parent: 34 + type: Transform +- proto: HoloprojectorEngineering + entities: + - uid: 5266 + components: + - pos: -28.794937,-30.222109 + parent: 34 + type: Transform + - uid: 5267 + components: + - pos: -28.701187,-29.847109 + parent: 34 + type: Transform +- proto: HoloprojectorSecurity + entities: + - uid: 3584 + components: + - pos: 24.346996,-19.636211 + parent: 34 + type: Transform + - uid: 3585 + components: + - pos: 24.388662,-19.354765 + parent: 34 + type: Transform +- proto: HospitalCurtains + entities: + - uid: 12408 + components: + - pos: -48.5,-16.5 + parent: 34 + type: Transform + - uid: 12409 + components: + - pos: -48.5,-17.5 + parent: 34 + type: Transform + - uid: 12410 + components: + - pos: -48.5,-18.5 + parent: 34 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 1355 + components: + - pos: 1.5,-36.5 + parent: 34 + type: Transform + - uid: 1405 + components: + - pos: 1.5,-37.5 + parent: 34 + type: Transform + - uid: 2638 + components: + - pos: -5.5,2.5 + parent: 34 + type: Transform + - uid: 3999 + components: + - pos: 15.5,-36.5 + parent: 34 + type: Transform + - uid: 9982 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-9.5 + parent: 34 + type: Transform +- proto: HydroponicsToolClippers + entities: + - uid: 4711 + components: + - pos: 37.63338,6.2854657 + parent: 34 + type: Transform +- proto: HydroponicsToolMiniHoe + entities: + - uid: 4712 + components: + - rot: 1.5707963267948966 rad + pos: 37.336506,6.488732 + parent: 34 + type: Transform +- proto: HydroponicsToolSpade + entities: + - uid: 4713 + components: + - pos: 37.742756,6.5356393 + parent: 34 + type: Transform +- proto: hydroponicsTray + entities: + - uid: 865 + components: + - pos: -18.5,-3.5 + parent: 34 + type: Transform + - uid: 866 + components: + - pos: -17.5,-3.5 + parent: 34 + type: Transform + - uid: 867 + components: + - pos: -17.5,-4.5 + parent: 34 + type: Transform + - uid: 868 + components: + - pos: -18.5,-4.5 + parent: 34 + type: Transform + - uid: 4706 + components: + - pos: 36.5,4.5 + parent: 34 + type: Transform + - uid: 4708 + components: + - pos: 37.5,3.5 + parent: 34 + type: Transform + - uid: 4709 + components: + - pos: 36.5,3.5 + parent: 34 + type: Transform + - uid: 12332 + components: + - pos: -19.5,-3.5 + parent: 34 + type: Transform + - uid: 12333 + components: + - pos: -19.5,-4.5 + parent: 34 + type: Transform + - uid: 12334 + components: + - pos: -19.5,-5.5 + parent: 34 + type: Transform + - uid: 12335 + components: + - pos: -18.5,-5.5 + parent: 34 + type: Transform + - uid: 12336 + components: + - pos: -17.5,-5.5 + parent: 34 + type: Transform +- proto: Igniter + entities: + - uid: 12320 + components: + - pos: -55.819836,-37.60099 + parent: 34 + type: Transform + - links: + - 12319 + type: DeviceLinkSink +- proto: IngotGold + entities: + - uid: 5251 + components: + - pos: 24.600164,-35.196 + parent: 34 + type: Transform + - uid: 11693 + components: + - pos: -35.610165,-4.992127 + parent: 34 + type: Transform + - count: 15 + type: Stack +- proto: IngotSilver + entities: + - uid: 11133 + components: + - pos: 24.433498,-35.592106 + parent: 34 + type: Transform +- proto: IntercomAll + entities: + - uid: 5596 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-36.5 + parent: 34 + type: Transform +- proto: IntercomCommand + entities: + - uid: 3482 + components: + - rot: 3.141592653589793 rad + pos: 41.5,-37.5 + parent: 34 + type: Transform + - uid: 12022 + components: + - pos: 35.5,-38.5 + parent: 34 + type: Transform + - uid: 12114 + components: + - pos: 29.5,-8.5 + parent: 34 + type: Transform + - uid: 12124 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-32.5 + parent: 34 + type: Transform +- proto: IntercomCommon + entities: + - uid: 8356 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 34 + type: Transform + - uid: 11825 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,14.5 + parent: 34 + type: Transform + - uid: 12122 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-6.5 + parent: 34 + type: Transform + - uid: 12138 + components: + - pos: 2.5,-46.5 + parent: 34 + type: Transform +- proto: IntercomEngineering + entities: + - uid: 1489 + components: + - rot: 3.141592653589793 rad + pos: -46.5,-44.5 + parent: 34 + type: Transform + - uid: 2322 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-27.5 + parent: 34 + type: Transform + - uid: 5934 + components: + - rot: 3.141592653589793 rad + pos: -23.5,1.5 + parent: 34 + type: Transform + - uid: 11022 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-45.5 + parent: 34 + type: Transform + - uid: 12132 + components: + - pos: -29.5,-28.5 + parent: 34 + type: Transform + - uid: 12133 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-24.5 + parent: 34 + type: Transform + - uid: 12136 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-38.5 + parent: 34 + type: Transform + - uid: 12144 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-20.5 + parent: 34 + type: Transform +- proto: IntercomMedical + entities: + - uid: 12123 + components: + - pos: 1.5,-25.5 + parent: 34 + type: Transform + - uid: 12450 + components: + - pos: 8.5,-38.5 + parent: 34 + type: Transform +- proto: IntercomScience + entities: + - uid: 600 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-8.5 + parent: 34 + type: Transform + - uid: 12120 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-13.5 + parent: 34 + type: Transform + - uid: 12121 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,2.5 + parent: 34 + type: Transform + - uid: 12143 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,2.5 + parent: 34 + type: Transform +- proto: IntercomSecurity + entities: + - uid: 12113 + components: + - pos: 20.5,-8.5 + parent: 34 + type: Transform + - uid: 12115 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-8.5 + parent: 34 + type: Transform + - uid: 12116 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-1.5 + parent: 34 + type: Transform + - uid: 12141 + components: + - pos: 17.5,-15.5 + parent: 34 + type: Transform + - uid: 12178 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,4.5 + parent: 34 + type: Transform + - uid: 12915 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,1.5 + parent: 34 + type: Transform +- proto: IntercomService + entities: + - uid: 8030 + components: + - pos: 17.5,-35.5 + parent: 34 + type: Transform + - uid: 10971 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-19.5 + parent: 34 + type: Transform + - uid: 12118 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-9.5 + parent: 34 + type: Transform + - uid: 12119 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-6.5 + parent: 34 + type: Transform + - uid: 12140 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 34 + type: Transform + - uid: 12142 + components: + - pos: -17.5,5.5 + parent: 34 + type: Transform +- proto: IntercomSupply + entities: + - uid: 8415 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-23.5 + parent: 34 + type: Transform +- proto: JanitorialTrolley + entities: + - uid: 1026 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-20.5 + parent: 34 + type: Transform +- proto: JanitorServiceLight + entities: + - uid: 10010 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-24.5 + parent: 34 + type: Transform + - links: + - 12928 + type: DeviceLinkSink + - uid: 10492 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-31.5 + parent: 34 + type: Transform + - links: + - 12928 + type: DeviceLinkSink + - uid: 10684 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-23.5 + parent: 34 + type: Transform + - links: + - 10572 + type: DeviceLinkSink + - uid: 12371 + components: + - pos: -30.5,-21.5 + parent: 34 + type: Transform + - links: + - 10413 + type: DeviceLinkSink + - uid: 12927 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-15.5 + parent: 34 + type: Transform + - links: + - 10011 + type: DeviceLinkSink +- proto: JetpackMini + entities: + - uid: 2485 + components: + - pos: -28.284822,-41.71001 + parent: 34 + type: Transform + - uid: 11805 + components: + - pos: -28.659822,-41.319386 + parent: 34 + type: Transform +- proto: JetpackSecurityFilled + entities: + - uid: 904 + components: + - pos: 26.298405,1.8209641 + parent: 34 + type: Transform + - uid: 3593 + components: + - pos: 26.68382,1.6541817 + parent: 34 + type: Transform + - uid: 3714 + components: + - pos: 26.34007,1.4978237 + parent: 34 + type: Transform +- proto: Katana + entities: + - uid: 12177 + components: + - desc: 'You can almost hear the shout in the distance: "SHOUBU ARI!"' + type: MetaData + - rot: 3.141592653589793 rad + pos: 26.516588,-0.45976734 + parent: 34 + type: Transform +- proto: KitchenDeepFryer + entities: + - uid: 829 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 34 + type: Transform +- proto: KitchenElectricGrill + entities: + - uid: 9139 + components: + - pos: -7.5,-5.5 + parent: 34 + type: Transform +- proto: KitchenKnife + entities: + - uid: 4048 + components: + - pos: -10.605341,-42.33258 + parent: 34 + type: Transform + - uid: 12782 + components: + - pos: -52.41315,-17.509623 + parent: 34 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 884 + components: + - pos: -7.5,-3.5 + parent: 34 + type: Transform + - uid: 3952 + components: + - pos: -10.5,-43.5 + parent: 34 + type: Transform + - uid: 4719 + components: + - pos: 41.5,6.5 + parent: 34 + type: Transform + - uid: 10537 + components: + - pos: 19.5,-16.5 + parent: 34 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 877 + components: + - pos: -20.5,-3.5 + parent: 34 + type: Transform + - uid: 2927 + components: + - pos: -1.5,-26.5 + parent: 34 + type: Transform + - uid: 4717 + components: + - pos: 38.5,6.5 + parent: 34 + type: Transform + - uid: 9302 + components: + - pos: -9.5,-3.5 + parent: 34 + type: Transform + - uid: 11700 + components: + - pos: -33.5,-17.5 + parent: 34 + type: Transform +- proto: KitchenSpike + entities: + - uid: 821 + components: + - pos: -12.5,-3.5 + parent: 34 + type: Transform +- proto: Lamp + entities: + - uid: 2229 + components: + - pos: -45.557014,-4.0842085 + parent: 34 + type: Transform + - uid: 4886 + components: + - pos: 29.473913,-17.902529 + parent: 34 + type: Transform +- proto: LampBanana + entities: + - uid: 11135 + components: + - pos: -0.45901644,-17.103552 + parent: 34 + type: Transform +- proto: LargeBeaker + entities: + - uid: 1280 + components: + - pos: -20.379763,-4.4422 + parent: 34 + type: Transform +- proto: Lighter + entities: + - uid: 12289 + components: + - pos: -9.306129,2.377801 + parent: 34 + type: Transform +- proto: LightPostSmall + entities: + - uid: 8931 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-52.5 + parent: 34 + type: Transform +- proto: LockerAtmosphericsFilled + entities: + - uid: 1857 + components: + - pos: -43.5,-29.5 + parent: 34 + type: Transform + - uid: 1858 + components: + - pos: -44.5,-29.5 + parent: 34 + type: Transform +- proto: LockerBoozeFilled + entities: + - uid: 776 + components: + - pos: 8.5,-3.5 + parent: 34 + type: Transform +- proto: LockerBotanistFilled + entities: + - uid: 871 + components: + - pos: -18.5,-8.5 + parent: 34 + type: Transform +- proto: LockerBrigmedicFilledHardsuit + entities: + - uid: 4044 + components: + - pos: 19.5,1.5 + parent: 34 + type: Transform +- proto: LockerCaptainFilled + entities: + - uid: 4014 + components: + - pos: 27.5,-27.5 + parent: 34 + type: Transform +- proto: LockerChemistryFilled + entities: + - uid: 11757 + components: + - pos: 0.5,-26.5 + parent: 34 + type: Transform +- proto: LockerChiefEngineerFilled + entities: + - uid: 1233 + components: + - pos: -26.5,-29.5 + parent: 34 + type: Transform +- proto: LockerChiefMedicalOfficerFilled + entities: + - uid: 1382 + components: + - pos: 9.5,-34.5 + parent: 34 + type: Transform +- proto: LockerClown + entities: + - uid: 312 + components: + - pos: -0.5,-20.5 + parent: 34 + type: Transform +- proto: LockerDetectiveFilled + entities: + - uid: 10872 + components: + - pos: -5.5,5.5 + parent: 34 + type: Transform +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 2321 + components: + - pos: -24.5,-27.5 + parent: 34 + type: Transform +- proto: LockerEngineerFilled + entities: + - uid: 1047 + components: + - pos: -29.5,-25.5 + parent: 34 + type: Transform + - uid: 1093 + components: + - pos: -28.5,-25.5 + parent: 34 + type: Transform + - uid: 1094 + components: + - pos: -30.5,-25.5 + parent: 34 + type: Transform + - uid: 1096 + components: + - pos: -31.5,-25.5 + parent: 34 + type: Transform +- proto: LockerEngineerFilledHardsuit + entities: + - uid: 4780 + components: + - pos: -23.5,5.5 + parent: 34 + type: Transform +- proto: LockerEvidence + entities: + - uid: 3749 + components: + - pos: 24.5,-5.5 + parent: 34 + type: Transform + - uid: 3751 + components: + - pos: 24.5,-7.5 + parent: 34 + type: Transform + - uid: 3752 + components: + - pos: 24.5,-4.5 + parent: 34 + type: Transform + - uid: 10591 + components: + - pos: 24.5,-6.5 + parent: 34 + type: Transform +- proto: LockerForensicMantisFilled + entities: + - uid: 2024 + components: + - pos: -29.5,1.5 + parent: 34 + type: Transform +- proto: LockerFreezer + entities: + - uid: 883 + components: + - name: standing freezer + type: MetaData + - pos: -10.5,-4.5 + parent: 34 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.4356327 + - 16.686428 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 4035 + components: + - pos: -10.5,-41.5 + parent: 34 + type: Transform +- proto: LockerFreezerVaultFilled + entities: + - uid: 12970 + components: + - pos: 25.5,-35.5 + parent: 34 + type: Transform +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 129 + components: + - pos: -17.5,-16.5 + parent: 34 + type: Transform +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 8892 + components: + - pos: 33.5,-9.5 + parent: 34 + type: Transform +- proto: LockerMedicalFilled + entities: + - uid: 1347 + components: + - pos: 11.5,-36.5 + parent: 34 + type: Transform + - uid: 6877 + components: + - pos: 10.5,-36.5 + parent: 34 + type: Transform +- proto: LockerMedicineFilled + entities: + - uid: 8019 + components: + - pos: 7.5,-29.5 + parent: 34 + type: Transform +- proto: LockerMime + entities: + - uid: 12329 + components: + - pos: 1.5,-20.5 + parent: 34 + type: Transform +- proto: LockerParamedicFilled + entities: + - uid: 10750 + components: + - pos: 12.5,-38.5 + parent: 34 + type: Transform + - uid: 10775 + components: + - pos: 13.5,-38.5 + parent: 34 + type: Transform +- proto: LockerQuarterMasterFilled + entities: + - uid: 10503 + components: + - pos: -18.5,-37.5 + parent: 34 + type: Transform +- proto: LockerResearchDirectorFilled + entities: + - uid: 606 + components: + - pos: -35.5,-3.5 + parent: 34 + type: Transform +- proto: LockerSalvageSpecialistFilledHardsuit + entities: + - uid: 12433 + components: + - pos: -18.5,-35.5 + parent: 34 + type: Transform + - uid: 12434 + components: + - pos: -17.5,-35.5 + parent: 34 + type: Transform + - uid: 12435 + components: + - pos: -16.5,-35.5 + parent: 34 + type: Transform + - uid: 12436 + components: + - pos: -15.5,-35.5 + parent: 34 + type: Transform +- proto: LockerScienceFilled + entities: + - uid: 583 + components: + - pos: -35.5,-8.5 + parent: 34 + type: Transform + - uid: 594 + components: + - pos: -35.5,-7.5 + parent: 34 + type: Transform +- proto: LockerSecurityFilled + entities: + - uid: 3507 + components: + - pos: 16.5,-16.5 + parent: 34 + type: Transform + - uid: 3508 + components: + - pos: 16.5,-17.5 + parent: 34 + type: Transform + - uid: 3509 + components: + - pos: 16.5,-18.5 + parent: 34 + type: Transform + - uid: 3510 + components: + - pos: 16.5,-19.5 + parent: 34 + type: Transform +- proto: LockerWallMedicalFilled + entities: + - uid: 6957 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-0.5 + parent: 34 + type: Transform +- proto: LockerWardenFilled + entities: + - uid: 3636 + components: + - pos: 29.5,-7.5 + parent: 34 + type: Transform +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 8078 + components: + - pos: -18.5,-14.5 + parent: 34 + type: Transform + - uid: 10909 + components: + - pos: 35.5,-29.5 + parent: 34 + type: Transform +- proto: MachineAnomalyGenerator + entities: + - uid: 5913 + components: + - pos: -35.5,4.5 + parent: 34 + type: Transform +- proto: MachineAnomalyVessel + entities: + - uid: 5909 + components: + - pos: -38.5,5.5 + parent: 34 + type: Transform + - uid: 5921 + components: + - pos: -34.5,3.5 + parent: 34 + type: Transform +- proto: MachineAPE + entities: + - uid: 6271 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,2.5 + parent: 34 + type: Transform + - uid: 7093 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,1.5 + parent: 34 + type: Transform +- proto: MachineArtifactAnalyzer + entities: + - uid: 49 + components: + - pos: -25.5,-5.5 + parent: 34 + type: Transform + - links: + - 404 + type: DeviceLinkSink +- proto: MachineFrame + entities: + - uid: 1162 + components: + - pos: -26.5,4.5 + parent: 34 + type: Transform +- proto: MagazineBoxPistol + entities: + - uid: 3719 + components: + - pos: 30.423405,1.6646061 + parent: 34 + type: Transform +- proto: MagazineBoxPistolPractice + entities: + - uid: 3726 + components: + - pos: 25.694237,1.4144318 + parent: 34 + type: Transform +- proto: MagazineBoxPistolRubber + entities: + - uid: 3725 + components: + - pos: 30.662987,1.476975 + parent: 34 + type: Transform +- proto: MagazineBoxRifleBig + entities: + - uid: 11330 + components: + - pos: 27.333197,4.0074997 + parent: 34 + type: Transform +- proto: MagazineBoxRifleBigRubber + entities: + - uid: 3716 + components: + - pos: 27.531113,3.6947823 + parent: 34 + type: Transform +- proto: MagazineBoxRiflePractice + entities: + - uid: 3594 + components: + - pos: 25.298405,1.466552 + parent: 34 + type: Transform +- proto: MailTeleporter + entities: + - uid: 1901 + components: + - pos: -7.5,-27.5 + parent: 34 + type: Transform +- proto: MaintenanceFluffSpawner + entities: + - uid: 4197 + components: + - pos: -18.5,-30.5 + parent: 34 + type: Transform + - uid: 4869 + components: + - pos: 37.5,-11.5 + parent: 34 + type: Transform + - uid: 6126 + components: + - pos: 4.5,10.5 + parent: 34 + type: Transform + - uid: 8895 + components: + - pos: -20.5,-33.5 + parent: 34 + type: Transform + - uid: 8909 + components: + - pos: -22.5,-32.5 + parent: 34 + type: Transform + - uid: 10269 + components: + - pos: -23.5,-8.5 + parent: 34 + type: Transform + - uid: 10270 + components: + - pos: -23.5,-9.5 + parent: 34 + type: Transform + - uid: 10272 + components: + - pos: -22.5,-16.5 + parent: 34 + type: Transform + - uid: 10273 + components: + - pos: -54.5,-13.5 + parent: 34 + type: Transform + - uid: 10274 + components: + - pos: -54.5,-12.5 + parent: 34 + type: Transform + - uid: 10276 + components: + - pos: -56.5,-0.5 + parent: 34 + type: Transform + - uid: 10277 + components: + - pos: -53.5,1.5 + parent: 34 + type: Transform + - uid: 10278 + components: + - pos: -57.5,4.5 + parent: 34 + type: Transform + - uid: 10279 + components: + - pos: -56.5,4.5 + parent: 34 + type: Transform + - uid: 10280 + components: + - pos: -42.5,5.5 + parent: 34 + type: Transform + - uid: 10540 + components: + - pos: 8.5,-16.5 + parent: 34 + type: Transform + - uid: 10541 + components: + - pos: 7.5,-15.5 + parent: 34 + type: Transform + - uid: 10897 + components: + - pos: 21.5,-43.5 + parent: 34 + type: Transform + - uid: 10898 + components: + - pos: 20.5,-43.5 + parent: 34 + type: Transform + - uid: 11287 + components: + - pos: 27.5,10.5 + parent: 34 + type: Transform + - uid: 11664 + components: + - pos: -40.5,5.5 + parent: 34 + type: Transform + - uid: 11704 + components: + - pos: -49.5,-14.5 + parent: 34 + type: Transform +- proto: MaintenancePlantSpawner + entities: + - uid: 4564 + components: + - pos: -20.5,-37.5 + parent: 34 + type: Transform + - uid: 5352 + components: + - pos: 35.5,-9.5 + parent: 34 + type: Transform + - uid: 8930 + components: + - pos: -19.5,-31.5 + parent: 34 + type: Transform +- proto: MaintenanceToolSpawner + entities: + - uid: 4339 + components: + - pos: -14.5,-29.5 + parent: 34 + type: Transform + - uid: 4514 + components: + - pos: 37.5,-15.5 + parent: 34 + type: Transform + - uid: 4651 + components: + - pos: -21.5,-31.5 + parent: 34 + type: Transform + - uid: 6129 + components: + - pos: 8.5,11.5 + parent: 34 + type: Transform + - uid: 10275 + components: + - pos: -53.5,-13.5 + parent: 34 + type: Transform + - uid: 11659 + components: + - pos: -42.5,10.5 + parent: 34 + type: Transform + - rareChance: 0.1 + type: RandomSpawner +- proto: MaintenanceWeaponSpawner + entities: + - uid: 2615 + components: + - pos: -16.5,-29.5 + parent: 34 + type: Transform + - uid: 2974 + components: + - pos: 14.5,-43.5 + parent: 34 + type: Transform + - uid: 3975 + components: + - pos: 14.5,-44.5 + parent: 34 + type: Transform + - uid: 4173 + components: + - pos: 35.5,-12.5 + parent: 34 + type: Transform + - uid: 4762 + components: + - pos: -20.5,-36.5 + parent: 34 + type: Transform + - uid: 6135 + components: + - pos: 1.5,11.5 + parent: 34 + type: Transform + - uid: 10271 + components: + - pos: -22.5,-18.5 + parent: 34 + type: Transform + - uid: 10899 + components: + - pos: 26.5,-42.5 + parent: 34 + type: Transform + - uid: 11288 + components: + - pos: 26.5,10.5 + parent: 34 + type: Transform + - uid: 11289 + components: + - pos: 25.5,12.5 + parent: 34 + type: Transform +- proto: MaterialBiomass + entities: + - uid: 12284 + components: + - pos: 11.235675,-40.627632 + parent: 34 + type: Transform +- proto: MaterialCloth + entities: + - uid: 1966 + components: + - pos: -18.67057,-16.331293 + parent: 34 + type: Transform +- proto: MaterialDiamond + entities: + - uid: 11134 + components: + - pos: 24.277248,-33.257153 + parent: 34 + type: Transform +- proto: MaterialDiamond1 + entities: + - uid: 11184 + components: + - pos: -50.257698,12.299719 + parent: 34 + type: Transform +- proto: MaterialDurathread + entities: + - uid: 1967 + components: + - pos: -18.35807,-16.56062 + parent: 34 + type: Transform +- proto: MaterialReclaimer + entities: + - uid: 4433 + components: + - pos: -39.5,10.5 + parent: 34 + type: Transform + - uid: 8092 + components: + - pos: 6.5,-19.5 + parent: 34 + type: Transform +- proto: MaterialWoodPlank1 + entities: + - uid: 7808 + components: + - pos: -55.129627,3.9950948 + parent: 34 + type: Transform + - uid: 7809 + components: + - rot: -1.5707963267948966 rad + pos: -51.989002,7.0284524 + parent: 34 + type: Transform + - uid: 7810 + components: + - pos: -50.489002,5.089605 + parent: 34 + type: Transform +- proto: MedicalBed + entities: + - uid: 1348 + components: + - pos: 2.5,-31.5 + parent: 34 + type: Transform + - uid: 1363 + components: + - pos: -1.5,-37.5 + parent: 34 + type: Transform + - uid: 1808 + components: + - pos: 2.5,-35.5 + parent: 34 + type: Transform + - uid: 2691 + components: + - pos: 7.5,-34.5 + parent: 34 + type: Transform + - uid: 3295 + components: + - pos: 17.5,1.5 + parent: 34 + type: Transform + - uid: 6092 + components: + - pos: 16.5,1.5 + parent: 34 + type: Transform +- proto: MedicalScanner + entities: + - uid: 1320 + components: + - pos: 10.5,-28.5 + parent: 34 + type: Transform + - uid: 12439 + components: + - pos: 7.5,-42.5 + parent: 34 + type: Transform +- proto: MedicalTechFab + entities: + - uid: 8094 + components: + - pos: 11.5,-38.5 + parent: 34 + type: Transform +- proto: MedkitAdvancedFilled + entities: + - uid: 2962 + components: + - pos: 7.3725023,-32.292366 + parent: 34 + type: Transform + - uid: 3599 + components: + - pos: 19.332401,-20.266586 + parent: 34 + type: Transform +- proto: MedkitBruteFilled + entities: + - uid: 1322 + components: + - pos: 2.6381276,-34.34066 + parent: 34 + type: Transform + - uid: 5008 + components: + - pos: 18.284376,1.6808949 + parent: 34 + type: Transform +- proto: MedkitCombatFilled + entities: + - uid: 5543 + components: + - pos: 18.737501,1.3371449 + parent: 34 + type: Transform + - uid: 10763 + components: + - pos: 34.663086,-37.573326 + parent: 34 + type: Transform +- proto: MedkitFilled + entities: + - uid: 203 + components: + - pos: -3.3196468,6.387051 + parent: 34 + type: Transform + - uid: 206 + components: + - pos: -3.6738133,6.658072 + parent: 34 + type: Transform + - uid: 231 + components: + - pos: -49.631226,7.4378686 + parent: 34 + type: Transform + - uid: 2144 + components: + - pos: 2.3568776,-34.63774 + parent: 34 + type: Transform + - uid: 4142 + components: + - pos: 0.33109748,-32.21473 + parent: 34 + type: Transform + - uid: 10535 + components: + - pos: -35.349274,-10.358557 + parent: 34 + type: Transform + - uid: 10764 + components: + - pos: 34.444336,-37.33879 + parent: 34 + type: Transform + - uid: 11545 + components: + - pos: -49.613564,-22.515951 + parent: 34 + type: Transform +- proto: MedkitOxygenFilled + entities: + - uid: 1945 + components: + - pos: 3.6850026,-31.276035 + parent: 34 + type: Transform +- proto: MedkitRadiationFilled + entities: + - uid: 1364 + components: + - pos: 7.6850023,-32.558174 + parent: 34 + type: Transform + - uid: 11080 + components: + - pos: -35.633457,-10.615738 + parent: 34 + type: Transform + - uid: 11546 + components: + - pos: -49.332314,-22.17196 + parent: 34 + type: Transform +- proto: MedkitToxinFilled + entities: + - uid: 2957 + components: + - pos: 7.7162523,-35.278812 + parent: 34 + type: Transform +- proto: MicrowaveMachineCircuitboard + entities: + - uid: 6184 + components: + - pos: -31.364555,-29.564827 + parent: 34 + type: Transform +- proto: Mirror + entities: + - uid: 2215 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,-4.5 + parent: 34 + type: Transform + - uid: 4597 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,0.5 + parent: 34 + type: Transform +- proto: MonkeyCubeWrapped + entities: + - uid: 1807 + components: + - pos: 11.538644,-40.647446 + parent: 34 + type: Transform + - uid: 2958 + components: + - pos: 11.679269,-40.272446 + parent: 34 + type: Transform +- proto: MopBucket + entities: + - uid: 5567 + components: + - pos: -16.48062,2.4929824 + parent: 34 + type: Transform + - uid: 10539 + components: + - pos: 4.6722717,-20.514727 + parent: 34 + type: Transform +- proto: MopItem + entities: + - uid: 7411 + components: + - pos: -49.63304,-18.481379 + parent: 34 + type: Transform +- proto: Morgue + entities: + - uid: 5136 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-42.5 + parent: 34 + type: Transform + - uid: 8967 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-42.5 + parent: 34 + type: Transform + - uid: 8969 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-42.5 + parent: 34 + type: Transform +- proto: MouseTimedSpawner + entities: + - uid: 3777 + components: + - pos: 0.5,11.5 + parent: 34 + type: Transform + - uid: 10686 + components: + - pos: -19.5,-30.5 + parent: 34 + type: Transform + - uid: 10815 + components: + - pos: 18.5,9.5 + parent: 34 + type: Transform + - intervalSeconds: 600 + chance: 0.4 + type: TimedSpawner + - uid: 10816 + components: + - pos: 1.5,-15.5 + parent: 34 + type: Transform + - intervalSeconds: 520 + chance: 0.4 + type: TimedSpawner + - uid: 12196 + components: + - pos: 32.5,-17.5 + parent: 34 + type: Transform +- proto: Mousetrap + entities: + - uid: 3729 + components: + - pos: 5.77034,-17.400778 + parent: 34 + type: Transform + - uid: 3730 + components: + - rot: -1.5707963267948966 rad + pos: 5.187007,-17.734343 + parent: 34 + type: Transform + - uid: 3732 + components: + - pos: -14.619152,-5.5521803 + parent: 34 + type: Transform +- proto: MousetrapArmed + entities: + - uid: 10723 + components: + - pos: 39.559204,-16.464417 + parent: 34 + type: Transform +- proto: Multitool + entities: + - uid: 7423 + components: + - pos: -28.788094,-8.180353 + parent: 34 + type: Transform + - uid: 12442 + components: + - rot: 1.5707963267948966 rad + pos: 6.7165976,-41.643085 + parent: 34 + type: Transform +- proto: NitrogenCanister + entities: + - uid: 1797 + components: + - pos: -38.5,-29.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 7818 + components: + - pos: -52.5,-33.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice +- proto: NitrousOxideTankFilled + entities: + - uid: 8957 + components: + - pos: 10.32414,-26.42562 + parent: 34 + type: Transform +- proto: NuclearBomb + entities: + - uid: 5242 + components: + - pos: 25.5,-33.5 + parent: 34 + type: Transform +- proto: OilJarOlive + entities: + - uid: 1949 + components: + - pos: -8.041328,-6.172539 + parent: 34 + type: Transform +- proto: OperatingTable + entities: + - uid: 2948 + components: + - pos: 9.5,-28.5 + parent: 34 + type: Transform + - uid: 12380 + components: + - pos: -51.5,-17.5 + parent: 34 + type: Transform +- proto: Oracle + entities: + - uid: 592 + components: + - pos: -25.5,-13.5 + parent: 34 + type: Transform +- proto: OreBox + entities: + - uid: 11347 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-58.5 + parent: 34 + type: Transform +- proto: OreProcessor + entities: + - uid: 11508 + components: + - pos: -18.5,-40.5 + parent: 34 + type: Transform +- proto: OrganArachnidStomach + entities: + - uid: 12379 + components: + - pos: -52.617416,-16.778254 + parent: 34 + type: Transform +- proto: OrganHumanKidneys + entities: + - uid: 4517 + components: + - pos: -52.599697,-18.21204 + parent: 34 + type: Transform +- proto: OxygenCanister + entities: + - uid: 1798 + components: + - pos: -37.5,-29.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 10358 + components: + - pos: 29.5,8.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 10359 + components: + - pos: -23.5,-4.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 10618 + components: + - pos: -30.5,-42.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 12324 + components: + - pos: -52.5,-31.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice +- proto: PaintingBlunt + entities: + - uid: 2407 + components: + - pos: 10.5,12.5 + parent: 34 + type: Transform +- proto: PaintingSkeletonCigarette + entities: + - uid: 7096 + components: + - pos: -33.5,1.5 + parent: 34 + type: Transform +- proto: PaintingTheGreatWave + entities: + - uid: 8029 + components: + - pos: 33.5,-46.5 + parent: 34 + type: Transform + - uid: 11936 + components: + - pos: -4.5,6.5 + parent: 34 + type: Transform +- proto: Paper + entities: + - uid: 1328 + components: + - pos: 9.308239,-32.511734 + parent: 34 + type: Transform + - uid: 1333 + components: + - pos: 9.308239,-32.277195 + parent: 34 + type: Transform + - uid: 1338 + components: + - pos: 9.308239,-32.386646 + parent: 34 + type: Transform + - uid: 1362 + components: + - pos: 9.308239,-32.152107 + parent: 34 + type: Transform + - uid: 1906 + components: + - pos: -9.339812,-27.507086 + parent: 34 + type: Transform + - uid: 1982 + components: + - pos: -17.327166,-19.47925 + parent: 34 + type: Transform + - uid: 1985 + components: + - pos: -17.31675,-19.47925 + parent: 34 + type: Transform + - uid: 1986 + components: + - pos: -17.31675,-19.47925 + parent: 34 + type: Transform + - uid: 1987 + components: + - pos: -17.31675,-19.47925 + parent: 34 + type: Transform + - uid: 1988 + components: + - pos: -17.31675,-19.47925 + parent: 34 + type: Transform + - uid: 2028 + components: + - pos: -32.142803,3.720985 + parent: 34 + type: Transform + - uid: 2254 + components: + - pos: -51.69855,-6.4908032 + parent: 34 + type: Transform + - uid: 2255 + components: + - pos: -51.688133,-6.3657165 + parent: 34 + type: Transform + - uid: 2643 + components: + - pos: -28.336557,-8.620605 + parent: 34 + type: Transform + - uid: 2684 + components: + - pos: 1.8838005,-18.2281 + parent: 34 + type: Transform + - uid: 2689 + components: + - rot: -1.5707963267948966 rad + pos: 2.3629673,-18.321917 + parent: 34 + type: Transform + - uid: 3379 + components: + - pos: -5.6864357,4.6488633 + parent: 34 + type: Transform + - uid: 3631 + components: + - pos: 19.32178,-3.4320881 + parent: 34 + type: Transform + - uid: 3632 + components: + - pos: 19.44678,-3.5050554 + parent: 34 + type: Transform + - uid: 3633 + components: + - pos: 19.60303,-3.4529357 + parent: 34 + type: Transform + - uid: 3768 + components: + - pos: 29.520655,-10.540871 + parent: 34 + type: Transform + - uid: 3769 + components: + - pos: 29.62482,-10.488752 + parent: 34 + type: Transform + - uid: 3770 + components: + - pos: 27.53107,-6.433852 + parent: 34 + type: Transform + - uid: 3771 + components: + - pos: 27.62482,-6.5276675 + parent: 34 + type: Transform + - uid: 4464 + components: + - pos: 32.318638,-35.18796 + parent: 34 + type: Transform + - uid: 4465 + components: + - pos: 32.318638,-35.281776 + parent: 34 + type: Transform + - uid: 4466 + components: + - pos: 32.318638,-35.37559 + parent: 34 + type: Transform + - uid: 4467 + components: + - pos: 32.334263,-35.469406 + parent: 34 + type: Transform + - uid: 4598 + components: + - pos: 41.321945,-0.09843111 + parent: 34 + type: Transform + - uid: 4775 + components: + - pos: 41.71257,-0.0046162605 + parent: 34 + type: Transform + - uid: 4776 + components: + - pos: 41.58757,-0.2078824 + parent: 34 + type: Transform + - uid: 4777 + components: + - pos: 41.759445,-0.3955121 + parent: 34 + type: Transform + - uid: 4778 + components: + - pos: 41.40007,-0.3955121 + parent: 34 + type: Transform + - uid: 4779 + components: + - pos: 41.321945,-0.2078824 + parent: 34 + type: Transform + - uid: 4919 + components: + - pos: 22.311316,-12.096777 + parent: 34 + type: Transform + - uid: 4920 + components: + - pos: 22.311316,-12.206228 + parent: 34 + type: Transform + - uid: 4921 + components: + - pos: 22.311316,-12.315678 + parent: 34 + type: Transform + - uid: 4922 + components: + - pos: 22.311316,-12.425129 + parent: 34 + type: Transform + - uid: 5800 + components: + - pos: -22.62567,5.6665845 + parent: 34 + type: Transform + - uid: 5801 + components: + - pos: -22.578794,5.5414977 + parent: 34 + type: Transform + - uid: 7395 + components: + - rot: 1.5707963267948966 rad + pos: 1.4358838,-18.415731 + parent: 34 + type: Transform + - uid: 7546 + components: + - pos: -31.765686,-29.31949 + parent: 34 + type: Transform + - uid: 7547 + components: + - pos: -31.776102,-29.402882 + parent: 34 + type: Transform + - uid: 7548 + components: + - pos: -31.765686,-29.507122 + parent: 34 + type: Transform + - uid: 8025 + components: + - pos: -32.12718,3.658441 + parent: 34 + type: Transform + - uid: 8026 + components: + - pos: -32.12718,3.5646262 + parent: 34 + type: Transform + - uid: 9981 + components: + - pos: -28.445932,-8.44873 + parent: 34 + type: Transform + - uid: 10824 + components: + - pos: -5.5458107,4.6644883 + parent: 34 + type: Transform + - uid: 11338 + components: + - pos: 30.01355,-44.74732 + parent: 34 + type: Transform + - uid: 11339 + components: + - rot: -1.5707963267948966 rad + pos: 30.2323,-44.872406 + parent: 34 + type: Transform + - uid: 11533 + components: + - pos: -28.305307,-8.276855 + parent: 34 + type: Transform + - uid: 11675 + components: + - pos: -35.2688,-5.0857 + parent: 34 + type: Transform + - uid: 11676 + components: + - pos: -35.310463,-5.169091 + parent: 34 + type: Transform + - uid: 11677 + components: + - pos: -35.30005,-5.3150253 + parent: 34 + type: Transform + - uid: 12127 + components: + - pos: -9.339812,-27.434118 + parent: 34 + type: Transform + - uid: 12128 + components: + - pos: -9.339812,-27.309032 + parent: 34 + type: Transform + - uid: 12321 + components: + - pos: -54.258076,-35.258347 + parent: 34 + type: Transform + - uid: 12322 + components: + - pos: -54.226826,-35.52397 + parent: 34 + type: Transform +- proto: PaperDoor + entities: + - uid: 131 + components: + - pos: -1.5,2.5 + parent: 34 + type: Transform + - uid: 2213 + components: + - pos: -46.5,-8.5 + parent: 34 + type: Transform + - uid: 5858 + components: + - pos: -45.5,0.5 + parent: 34 + type: Transform + - uid: 5859 + components: + - pos: -49.5,0.5 + parent: 34 + type: Transform + - uid: 10455 + components: + - pos: -2.5,2.5 + parent: 34 + type: Transform + - uid: 12158 + components: + - desc: A funny way of saying "tea room." + name: chashitsu + type: MetaData + - pos: -55.5,-10.5 + parent: 34 + type: Transform +- proto: PartRodMetal + entities: + - uid: 11034 + components: + - pos: -58.602688,-22.4019 + parent: 34 + type: Transform + - count: 4 + type: Stack + - size: 4 + type: Item +- proto: Pen + entities: + - uid: 2619 + components: + - rot: 3.141592653589793 rad + pos: 9.829333,7.8510137 + parent: 34 + type: Transform +- proto: PianoInstrument + entities: + - uid: 7556 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-17.5 + parent: 34 + type: Transform +- proto: PillTricordrazine + entities: + - uid: 6568 + components: + - pos: 19.251152,-20.558546 + parent: 34 + type: Transform +- proto: PlasmaCanister + entities: + - uid: 12323 + components: + - pos: -52.5,-32.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 8889 + components: + - rot: -1.5707963267948966 rad + pos: 51.5,-22.5 + parent: 34 + type: Transform + - uid: 12403 + components: + - rot: -1.5707963267948966 rad + pos: 51.5,-24.5 + parent: 34 + type: Transform +- proto: PlasticFlapsAirtightClear + entities: + - uid: 11096 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-43.5 + parent: 34 + type: Transform + - uid: 11814 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-43.5 + parent: 34 + type: Transform +- proto: PlushieAtmosian + entities: + - uid: 7822 + components: + - pos: -55.47413,-37.50877 + parent: 34 + type: Transform + - uid: 12252 + components: + - pos: -47.59705,-31.373934 + parent: 34 + type: Transform +- proto: PlushieBee + entities: + - uid: 12117 + components: + - pos: 48.453728,-6.551665 + parent: 34 + type: Transform + - uid: 12155 + components: + - pos: -57.521152,-9.3701515 + parent: 34 + type: Transform +- proto: PlushieLizard + entities: + - uid: 11626 + components: + - pos: -40.514656,-16.672596 + parent: 34 + type: Transform +- proto: PlushieMothRandom + entities: + - uid: 12153 + components: + - pos: -58.489902,-8.671749 + parent: 34 + type: Transform + - uid: 12154 + components: + - pos: -58.541985,-11.340271 + parent: 34 + type: Transform +- proto: PlushieRGBee + entities: + - uid: 11168 + components: + - desc: Don't knock his hustle! + name: Fred + type: MetaData + - pos: -50.507698,12.956425 + parent: 34 + type: Transform +- proto: PlushieRouny + entities: + - uid: 11189 + components: + - pos: -54.695198,11.486654 + parent: 34 + type: Transform +- proto: PlushieSharkBlue + entities: + - uid: 2234 + components: + - pos: -45.917328,-7.050636 + parent: 34 + type: Transform + - uid: 11187 + components: + - pos: -54.507698,12.612436 + parent: 34 + type: Transform +- proto: PlushieSharkPink + entities: + - uid: 2235 + components: + - pos: -47.459995,-7.309145 + parent: 34 + type: Transform + - uid: 11188 + components: + - pos: -54.320198,12.362263 + parent: 34 + type: Transform +- proto: PlushieSlime + entities: + - uid: 2199 + components: + - pos: -41.952106,-5.241523 + parent: 34 + type: Transform + - uid: 11191 + components: + - pos: -54.367073,11.533562 + parent: 34 + type: Transform + - uid: 11625 + components: + - pos: -39.431324,-16.776836 + parent: 34 + type: Transform +- proto: PlushieSnake + entities: + - uid: 2200 + components: + - pos: -42.830803,-6.005159 + parent: 34 + type: Transform + - uid: 11190 + components: + - pos: -54.679573,11.68992 + parent: 34 + type: Transform +- proto: PlushieSpaceLizard + entities: + - uid: 11192 + components: + - desc: He's perusing the stock... + name: Hubert + type: MetaData + - pos: -53.398323,11.502291 + parent: 34 + type: Transform + - uid: 11635 + components: + - pos: -59.334618,-10.539148 + parent: 34 + type: Transform +- proto: PortableFlasher + entities: + - uid: 5545 + components: + - pos: 27.5,4.5 + parent: 34 + type: Transform +- proto: PortableGeneratorJrPacman + entities: + - uid: 4577 + components: + - pos: 35.5,-18.5 + parent: 34 + type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 4396 + components: + - pos: -33.5,-33.5 + parent: 34 + type: Transform + - uid: 4398 + components: + - pos: -31.5,-33.5 + parent: 34 + type: Transform + - uid: 6128 + components: + - pos: -57.5,-4.5 + parent: 34 + type: Transform +- proto: PortableGeneratorSuperPacman + entities: + - uid: 6099 + components: + - pos: -27.5,3.5 + parent: 34 + type: Transform +- proto: PortableScrubber + entities: + - uid: 1165 + components: + - pos: -37.5,-32.5 + parent: 34 + type: Transform + - uid: 2553 + components: + - pos: -37.5,-31.5 + parent: 34 + type: Transform + - uid: 5546 + components: + - pos: 10.5,-18.5 + parent: 34 + type: Transform + - uid: 8114 + components: + - pos: 24.5,3.5 + parent: 34 + type: Transform +- proto: PosterBroken + entities: + - uid: 11001 + components: + - pos: 29.5,-38.5 + parent: 34 + type: Transform +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 1520 + components: + - pos: -46.5,-32.5 + parent: 34 + type: Transform +- proto: PosterContrabandBeachStarYamamoto + entities: + - uid: 3370 + components: + - pos: -48.5,-6.5 + parent: 34 + type: Transform +- proto: PosterContrabandDonutCorp + entities: + - uid: 11592 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-12.5 + parent: 34 + type: Transform +- proto: PosterContrabandEAT + entities: + - uid: 905 + components: + - desc: This poster promotes eating tasty burgers! + type: MetaData + - pos: -13.5,-10.5 + parent: 34 + type: Transform +- proto: PosterContrabandHaveaPuff + entities: + - uid: 4772 + components: + - pos: 35.5,4.5 + parent: 34 + type: Transform +- proto: PosterContrabandPunchShit + entities: + - uid: 11937 + components: + - pos: -4.5,4.5 + parent: 34 + type: Transform +- proto: PosterContrabandRedRum + entities: + - uid: 10956 + components: + - pos: 6.5,-11.5 + parent: 34 + type: Transform +- proto: PosterContrabandRobustSoftdrinks + entities: + - uid: 2164 + components: + - pos: -36.5,-7.5 + parent: 34 + type: Transform +- proto: PosterLegit12Gauge + entities: + - uid: 12213 + components: + - pos: 30.5,2.5 + parent: 34 + type: Transform +- proto: PosterLegitBarDrinks + entities: + - uid: 340 + components: + - pos: -2.5,-7.5 + parent: 34 + type: Transform + - uid: 4030 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-44.5 + parent: 34 + type: Transform +- proto: PosterLegitCarbonDioxide + entities: + - uid: 3298 + components: + - pos: -39.5,-34.5 + parent: 34 + type: Transform +- proto: PosterLegitHereForYourSafety + entities: + - uid: 2279 + components: + - pos: -28.5,0.5 + parent: 34 + type: Transform + - uid: 11079 + components: + - pos: 17.5,-11.5 + parent: 34 + type: Transform +- proto: PosterLegitMedicate + entities: + - uid: 1946 + components: + - pos: 3.5,-25.5 + parent: 34 + type: Transform +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 1991 + components: + - pos: -20.5,-20.5 + parent: 34 + type: Transform + - uid: 12846 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-36.5 + parent: 34 + type: Transform +- proto: PosterLegitNoERP + entities: + - uid: 2231 + components: + - pos: -46.5,-5.5 + parent: 34 + type: Transform +- proto: PosterLegitSafetyEyeProtection + entities: + - uid: 11584 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-32.5 + parent: 34 + type: Transform +- proto: PosterLegitSafetyInternals + entities: + - uid: 1082 + components: + - pos: -24.5,-40.5 + parent: 34 + type: Transform +- proto: PosterLegitSafetyMothBoH + entities: + - uid: 11585 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-6.5 + parent: 34 + type: Transform +- proto: PosterLegitSafetyMothFires + entities: + - uid: 12847 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-35.5 + parent: 34 + type: Transform +- proto: PosterLegitShoukou + entities: + - uid: 11357 + components: + - pos: 38.5,-30.5 + parent: 34 + type: Transform + - uid: 11943 + components: + - pos: 4.5,-46.5 + parent: 34 + type: Transform + - uid: 12004 + components: + - pos: 6.5,2.5 + parent: 34 + type: Transform + - uid: 12184 + components: + - pos: 7.5,19.5 + parent: 34 + type: Transform +- proto: PosterLegitSpaceCops + entities: + - uid: 12215 + components: + - pos: 21.5,-19.5 + parent: 34 + type: Transform +- proto: PosterLegitUeNo + entities: + - uid: 5861 + components: + - pos: -47.5,0.5 + parent: 34 + type: Transform +- proto: PosterMapShoukou + entities: + - uid: 5862 + components: + - pos: 3.5,-46.5 + parent: 34 + type: Transform + - uid: 11718 + components: + - pos: 39.5,-30.5 + parent: 34 + type: Transform + - uid: 11780 + components: + - pos: 11.5,19.5 + parent: 34 + type: Transform +- proto: PottedPlant10 + entities: + - uid: 2597 + components: + - pos: 13.5,19.5 + parent: 34 + type: Transform + - uid: 3372 + components: + - pos: -5.5,-13.5 + parent: 34 + type: Transform + - uid: 3374 + components: + - pos: -11.5,-19.5 + parent: 34 + type: Transform + - uid: 3602 + components: + - pos: 42.5,-31.5 + parent: 34 + type: Transform + - uid: 4458 + components: + - pos: 36.5,-31.5 + parent: 34 + type: Transform + - uid: 4503 + components: + - pos: 10.471451,-47.802937 + parent: 34 + type: Transform + - uid: 5527 + components: + - pos: 35.5,-41.5 + parent: 34 + type: Transform + - uid: 10227 + components: + - pos: -3.5,-2.5 + parent: 34 + type: Transform + - uid: 10228 + components: + - pos: -5.5,-2.5 + parent: 34 + type: Transform + - uid: 10297 + components: + - pos: -51.5,-9.5 + parent: 34 + type: Transform + - uid: 11046 + components: + - pos: 18.5,-29.5 + parent: 34 + type: Transform + - uid: 11047 + components: + - pos: 12.5,-29.5 + parent: 34 + type: Transform + - uid: 11621 + components: + - pos: -11.5,5.5 + parent: 34 + type: Transform + - uid: 11831 + components: + - pos: 5.5,19.5 + parent: 34 + type: Transform + - uid: 11883 + components: + - pos: -4.5,13.5 + parent: 34 + type: Transform + - uid: 12002 + components: + - pos: -3.5,1.5 + parent: 34 + type: Transform + - uid: 12003 + components: + - pos: 5.5,1.5 + parent: 34 + type: Transform + - uid: 12892 + components: + - pos: 42.5,-36.5 + parent: 34 + type: Transform +- proto: PottedPlant21 + entities: + - uid: 10347 + components: + - pos: 29.5,-29.5 + parent: 34 + type: Transform + - uid: 10348 + components: + - pos: 33.5,-29.5 + parent: 34 + type: Transform +- proto: PottedPlant22 + entities: + - uid: 4245 + components: + - pos: 14.5,-24.5 + parent: 34 + type: Transform + - uid: 4246 + components: + - pos: 16.5,-24.5 + parent: 34 + type: Transform +- proto: PottedPlantBioluminscent + entities: + - uid: 10349 + components: + - pos: 29.5,-27.5 + parent: 34 + type: Transform + - uid: 10350 + components: + - pos: 33.5,-27.5 + parent: 34 + type: Transform + - uid: 11334 + components: + - pos: 4.5,-42.5 + parent: 34 + type: Transform +- proto: PottedPlantRandom + entities: + - uid: 790 + components: + - pos: 5.5,-11.5 + parent: 34 + type: Transform + - uid: 791 + components: + - pos: -5.5,-19.5 + parent: 34 + type: Transform + - uid: 1907 + components: + - pos: -13.5,-24.5 + parent: 34 + type: Transform + - uid: 2191 + components: + - pos: -41.5,-3.5 + parent: 34 + type: Transform + - uid: 2276 + components: + - pos: -1.5,-9.5 + parent: 34 + type: Transform + - uid: 2532 + components: + - pos: -35.5,-14.5 + parent: 34 + type: Transform + - uid: 2533 + components: + - pos: -29.5,-13.5 + parent: 34 + type: Transform + - uid: 2534 + components: + - pos: -24.5,-13.5 + parent: 34 + type: Transform + - uid: 2552 + components: + - pos: -31.5,-19.5 + parent: 34 + type: Transform + - uid: 3375 + components: + - pos: -11.5,-13.5 + parent: 34 + type: Transform + - uid: 3566 + components: + - pos: 26.5,-5.5 + parent: 34 + type: Transform + - uid: 3961 + components: + - pos: -5.5,-48.5 + parent: 34 + type: Transform + - uid: 4365 + components: + - pos: 30.5,-32.5 + parent: 34 + type: Transform + - uid: 5241 + components: + - pos: 30.5,-37.5 + parent: 34 + type: Transform + - uid: 8020 + components: + - pos: 3.5,-29.5 + parent: 34 + type: Transform + - uid: 8082 + components: + - pos: -30.5,-23.5 + parent: 34 + type: Transform + - uid: 8912 + components: + - pos: 27.5,-11.5 + parent: 34 + type: Transform + - uid: 10223 + components: + - pos: 22.5,-29.5 + parent: 34 + type: Transform + - uid: 10224 + components: + - pos: 22.5,-27.5 + parent: 34 + type: Transform + - uid: 10293 + components: + - pos: -1.5,-22.5 + parent: 34 + type: Transform + - uid: 10294 + components: + - pos: 9.5,-22.5 + parent: 34 + type: Transform + - uid: 10416 + components: + - pos: -19.5,0.5 + parent: 34 + type: Transform + - uid: 10491 + components: + - pos: 45.5,1.5 + parent: 34 + type: Transform + - uid: 10522 + components: + - pos: 11.5,13.5 + parent: 34 + type: Transform + - uid: 10634 + components: + - pos: 14.5,6.5 + parent: 34 + type: Transform + - uid: 10635 + components: + - pos: 14.5,2.5 + parent: 34 + type: Transform + - uid: 10837 + components: + - pos: -3.5,-38.5 + parent: 34 + type: Transform + - uid: 10838 + components: + - pos: -3.5,-31.5 + parent: 34 + type: Transform + - uid: 11526 + components: + - pos: -48.5,-27.5 + parent: 34 + type: Transform + - uid: 11596 + components: + - pos: -40.5,-19.5 + parent: 34 + type: Transform + - uid: 11600 + components: + - pos: -39.5,-15.5 + parent: 34 + type: Transform + - uid: 11663 + components: + - pos: -36.5,1.5 + parent: 34 + type: Transform + - uid: 11773 + components: + - pos: 4.5,17.5 + parent: 34 + type: Transform + - uid: 11944 + components: + - pos: -3.5,-29.5 + parent: 34 + type: Transform + - uid: 11949 + components: + - pos: -3.5,-40.5 + parent: 34 + type: Transform + - uid: 12454 + components: + - pos: -1.5,-45.5 + parent: 34 + type: Transform +- proto: PottedPlantRandomPlastic + entities: + - uid: 1767 + components: + - pos: -42.5,-27.5 + parent: 34 + type: Transform + - uid: 1961 + components: + - pos: -16.5,-19.5 + parent: 34 + type: Transform + - uid: 2060 + components: + - pos: -41.5,-24.5 + parent: 34 + type: Transform + - uid: 4748 + components: + - pos: 29.5,-5.5 + parent: 34 + type: Transform + - uid: 4853 + components: + - pos: 47.5,1.5 + parent: 34 + type: Transform + - uid: 4952 + components: + - pos: 49.5,1.5 + parent: 34 + type: Transform + - uid: 10296 + components: + - pos: -51.5,-1.5 + parent: 34 + type: Transform + - uid: 10414 + components: + - pos: -37.5,-2.5 + parent: 34 + type: Transform + - uid: 11553 + components: + - pos: 10.5,5.5 + parent: 34 + type: Transform + - uid: 11892 + components: + - pos: -37.5,-8.5 + parent: 34 + type: Transform + - uid: 12193 + components: + - pos: 20.5,-14.5 + parent: 34 + type: Transform + - uid: 12194 + components: + - pos: 19.5,-10.5 + parent: 34 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 1367 + components: + - pos: -31.5,-11.5 + parent: 34 + type: Transform + - uid: 1375 + components: + - pos: -42.5,10.5 + parent: 34 + type: Transform + - uid: 7402 + components: + - pos: 5.5,-29.5 + parent: 34 + type: Transform + - uid: 7426 + components: + - pos: -22.5,1.5 + parent: 34 + type: Transform + - uid: 9103 + components: + - pos: -42.5,-18.5 + parent: 34 + type: Transform + - uid: 10427 + components: + - pos: -22.5,-27.5 + parent: 34 + type: Transform + - uid: 11331 + components: + - pos: 23.5,-15.5 + parent: 34 + type: Transform + - uid: 11337 + components: + - pos: 28.5,-45.5 + parent: 34 + type: Transform +- proto: Poweredlight + entities: + - uid: 2 + components: + - pos: 3.5,-47.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-42.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 12 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-52.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-49.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 40 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-52.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 44 + components: + - pos: -12.5,-3.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 48 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-35.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 56 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-50.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 86 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,3.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 89 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-31.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 117 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-38.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 182 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,16.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 225 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-1.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 229 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 252 + components: + - pos: -4.5,0.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 364 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-6.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 460 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-1.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 591 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-9.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 641 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-27.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 666 + components: + - pos: -0.5,-39.5 + parent: 34 + type: Transform + - uid: 721 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-37.5 + parent: 34 + type: Transform + - uid: 772 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-36.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 847 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,4.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 920 + components: + - pos: -9.5,-40.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1010 + components: + - pos: -0.5,-17.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1018 + components: + - pos: 1.5,-17.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1027 + components: + - pos: 7.5,-22.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1091 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-27.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1215 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-43.5 + parent: 34 + type: Transform + - uid: 1335 + components: + - pos: -2.5,-45.5 + parent: 34 + type: Transform + - uid: 1388 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-37.5 + parent: 34 + type: Transform + - uid: 1720 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-45.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1722 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-41.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1723 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-39.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1841 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-33.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1866 + components: + - pos: -45.5,-29.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1867 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-34.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1870 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-31.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1969 + components: + - pos: -17.5,-16.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1970 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-19.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2031 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-48.5 + parent: 34 + type: Transform + - uid: 2064 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-25.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2080 + components: + - pos: -48.5,-20.5 + parent: 34 + type: Transform + - uid: 2132 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-10.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2133 + components: + - pos: -14.5,-10.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2134 + components: + - pos: -13.5,-24.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2135 + components: + - pos: -8.5,-24.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2138 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-27.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2139 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-38.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2142 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-31.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2143 + components: + - pos: -9.5,-29.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2153 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2154 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2157 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-1.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2159 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-1.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2160 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-1.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2162 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-1.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2163 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-2.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2165 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-10.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2166 + components: + - pos: -44.5,-9.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2167 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,1.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2202 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-6.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2210 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-5.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2211 + components: + - pos: -50.5,-9.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2212 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,1.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2237 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-15.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2238 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-19.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2248 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-1.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2287 + components: + - pos: -34.5,-3.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2317 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-16.5 + parent: 34 + type: Transform + - uid: 2380 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-33.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2381 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-29.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2480 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-34.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2486 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-40.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2551 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,-24.5 + parent: 34 + type: Transform + - uid: 2640 + components: + - pos: -48.5,-16.5 + parent: 34 + type: Transform + - uid: 2668 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-24.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3288 + components: + - pos: -26.5,-25.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3289 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-24.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3290 + components: + - pos: -21.5,-25.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3292 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-23.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3302 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-8.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3303 + components: + - pos: -11.5,-7.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3304 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3308 + components: + - pos: -14.5,-7.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3310 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-4.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3311 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-7.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3319 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-9.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3320 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-11.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3322 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-6.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3335 + components: + - pos: -32.5,-17.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3336 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-14.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3337 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-19.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4199 + components: + - pos: 17.5,1.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4200 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-1.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4247 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-24.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4248 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-24.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4249 + components: + - pos: 20.5,-22.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4250 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-26.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4253 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-21.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4254 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-10.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4255 + components: + - pos: 18.5,-12.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4256 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-12.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4257 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-17.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4258 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-3.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4259 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-7.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4288 + components: + - pos: 37.5,-31.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4426 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,-40.5 + parent: 34 + type: Transform + - uid: 4460 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-22.5 + parent: 34 + type: Transform + - uid: 4758 + components: + - rot: 3.141592653589793 rad + pos: 44.5,3.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4761 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,5.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4794 + components: + - pos: 48.5,1.5 + parent: 34 + type: Transform + - uid: 4907 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-19.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4909 + components: + - pos: 17.5,-16.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4910 + components: + - pos: 24.5,-19.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4911 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-12.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4912 + components: + - pos: 26.5,-13.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4933 + components: + - pos: 19.5,-9.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4934 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-3.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4935 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-7.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4936 + components: + - pos: 18.5,-3.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4937 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-4.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4938 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-3.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4939 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-7.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4940 + components: + - pos: 28.5,-9.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4941 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-4.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4942 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,0.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4943 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,4.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4944 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,4.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4945 + components: + - pos: 25.5,1.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4946 + components: + - pos: 21.5,1.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5524 + components: + - pos: 39.5,-38.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5525 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-41.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5526 + components: + - rot: 3.141592653589793 rad + pos: 36.5,-41.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5533 + components: + - pos: 30.5,-31.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5534 + components: + - pos: 40.5,-31.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5535 + components: + - pos: 34.5,-31.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5536 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-37.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5537 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-37.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5572 + components: + - pos: -17.5,4.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5573 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,3.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5585 + components: + - pos: -7.5,5.5 + parent: 34 + type: Transform + - uid: 5804 + components: + - pos: -24.5,5.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5806 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,3.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5807 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,4.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5930 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-44.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5990 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-42.5 + parent: 34 + type: Transform + - uid: 6051 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-24.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6055 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-24.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6056 + components: + - pos: 31.5,-27.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6057 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-29.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6058 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-29.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6061 + components: + - pos: 14.5,-26.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6062 + components: + - pos: 16.5,-26.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6078 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-17.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6079 + components: + - pos: -27.5,-13.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6082 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-17.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6088 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-23.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6089 + components: + - rot: 3.141592653589793 rad + pos: -28.5,-23.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6090 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-23.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6091 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-38.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6165 + components: + - rot: 3.141592653589793 rad + pos: 5.5,13.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6239 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,6.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6240 + components: + - pos: 7.5,11.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6242 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,2.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6243 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,2.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6244 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,7.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6245 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,10.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6246 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,4.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6247 + components: + - pos: 17.5,6.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6961 + components: + - pos: 10.5,-47.5 + parent: 34 + type: Transform + - uid: 7082 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-4.5 + parent: 34 + type: Transform + - uid: 7102 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,2.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7150 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,4.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7165 + components: + - pos: 17.5,-36.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7167 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-38.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7176 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-1.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7406 + components: + - pos: -38.5,-35.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7464 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,3.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7814 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-53.5 + parent: 34 + type: Transform + - uid: 7848 + components: + - pos: 6.5,-39.5 + parent: 34 + type: Transform + - uid: 8002 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-25.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8121 + components: + - rot: 3.141592653589793 rad + pos: 47.5,3.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8122 + components: + - rot: 3.141592653589793 rad + pos: 41.5,8.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8609 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8893 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-14.5 + parent: 34 + type: Transform + - uid: 8905 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-34.5 + parent: 34 + type: Transform + - uid: 8920 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,1.5 + parent: 34 + type: Transform + - uid: 9596 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-43.5 + parent: 34 + type: Transform + - uid: 10303 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10419 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10420 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10601 + components: + - pos: 4.5,8.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11094 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-34.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11259 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,19.5 + parent: 34 + type: Transform + - uid: 11371 + components: + - rot: -1.5707963267948966 rad + pos: 50.5,-4.5 + parent: 34 + type: Transform + - uid: 11444 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-17.5 + parent: 34 + type: Transform + - uid: 11501 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-22.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11503 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-27.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11504 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-27.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11507 + components: + - pos: -51.5,-24.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11509 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-27.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11510 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-27.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11582 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-37.5 + parent: 34 + type: Transform + - uid: 11622 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11624 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-17.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11632 + components: + - pos: 29.5,-9.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11634 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-9.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11678 + components: + - pos: 7.5,-31.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11691 + components: + - pos: 2.5,-31.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11721 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-34.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11722 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-27.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11723 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-31.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11724 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-27.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11725 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-29.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11726 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-27.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11727 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-26.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11728 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-29.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11730 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-31.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11732 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-35.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11826 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,19.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11877 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,15.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11923 + components: + - pos: -2.5,14.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11924 + components: + - pos: 1.5,14.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11939 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11946 + components: + - pos: 1.5,8.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11947 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,4.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11948 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,7.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 12102 + components: + - anchored: False + rot: 1.5707963267948966 rad + pos: -34.351696,-50.423775 + parent: 35 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 12104 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-47.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 12106 + components: + - pos: -37.5,-47.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 12107 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-51.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 12232 + components: + - pos: -25.5,-29.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 12233 + components: + - pos: -32.5,-29.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 12245 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-42.5 + parent: 34 + type: Transform + - uid: 12346 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-53.5 + parent: 34 + type: Transform + - uid: 12400 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-35.5 + parent: 34 + type: Transform + - uid: 12406 + components: + - pos: -15.5,-32.5 + parent: 34 + type: Transform + - uid: 12445 + components: + - pos: -16.5,-37.5 + parent: 34 + type: Transform + - uid: 12449 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-38.5 + parent: 34 + type: Transform + - uid: 12494 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-36.5 + parent: 34 + type: Transform + - uid: 12502 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-42.5 + parent: 34 + type: Transform + - uid: 12503 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-37.5 + parent: 34 + type: Transform + - uid: 12608 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-35.5 + parent: 34 + type: Transform + - uid: 12805 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 34 + type: Transform + - uid: 12888 + components: + - rot: 3.141592653589793 rad + pos: 41.5,-4.5 + parent: 34 + type: Transform + - uid: 12891 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-8.5 + parent: 34 + type: Transform + - uid: 12906 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-11.5 + parent: 34 + type: Transform + - uid: 12926 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-10.5 + parent: 34 + type: Transform +- proto: PoweredLightColoredBlack + entities: + - uid: 2328 + components: + - pos: 8.5,-7.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredLightColoredFrostyBlue + entities: + - uid: 2063 + components: + - pos: 4.5,-3.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6145 + components: + - pos: 2.5,-3.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredLightColoredRed + entities: + - uid: 6047 + components: + - rot: 3.141592653589793 rad + pos: 48.5,-25.5 + parent: 34 + type: Transform + - uid: 6048 + components: + - pos: 48.5,-21.5 + parent: 34 + type: Transform +- proto: PoweredlightExterior + entities: + - uid: 1040 + components: + - anchored: False + pos: -53.351696,-18.423773 + parent: 35 + type: Transform + - uid: 1512 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-49.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1864 + components: + - rot: 3.141592653589793 rad + pos: -48.5,-49.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2612 + components: + - anchored: False + pos: -55.351696,-13.423773 + parent: 35 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5072 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,9.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5530 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-31.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5531 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-37.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5802 + components: + - rot: 3.141592653589793 rad + pos: -12.5,7.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6049 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-25.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6050 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-21.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8032 + components: + - pos: 27.5,-47.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8033 + components: + - pos: 34.5,-47.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10632 + components: + - anchored: False + rot: -1.5707963267948966 rad + pos: -12.351697,-38.423775 + parent: 35 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11230 + components: + - pos: 18.5,-47.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11674 + components: + - rot: 3.141592653589793 rad + pos: -39.5,12.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredlightLED + entities: + - uid: 1513 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-47.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1576 + components: + - pos: -47.5,-33.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1856 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,-39.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1863 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-41.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1865 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-42.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2126 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-19.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2127 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-14.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2128 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-21.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2129 + components: + - pos: -6.5,-11.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2130 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-15.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2131 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-22.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6052 + components: + - pos: 26.5,-22.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6053 + components: + - pos: 35.5,-21.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6054 + components: + - pos: 30.5,-21.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6059 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-32.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6060 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-32.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredLightPostSmall + entities: + - uid: 12689 + components: + - pos: -39.5,-57.5 + parent: 34 + type: Transform + - uid: 12690 + components: + - pos: -33.5,-59.5 + parent: 34 + type: Transform + - uid: 12784 + components: + - pos: 14.5,-49.5 + parent: 34 + type: Transform +- proto: PoweredSmallLight + entities: + - uid: 6 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-40.5 + parent: 34 + type: Transform + - uid: 2168 + components: + - pos: -46.5,-6.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2169 + components: + - pos: -50.5,-6.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2170 + components: + - rot: 3.141592653589793 rad + pos: -46.5,-4.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2171 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-4.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3309 + components: + - pos: -18.5,-13.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3313 + components: + - pos: -26.5,-3.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3321 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-7.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3362 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-15.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4126 + components: + - pos: 13.5,-40.5 + parent: 34 + type: Transform + - uid: 4740 + components: + - pos: 37.5,1.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4741 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-0.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4890 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-4.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4908 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-18.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5411 + components: + - pos: 36.5,-43.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5487 + components: + - pos: 32.5,-42.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5528 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-28.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5529 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-29.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5532 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-35.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5805 + components: + - pos: -26.5,8.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5922 + components: + - pos: -50.5,2.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5923 + components: + - rot: 3.141592653589793 rad + pos: -44.5,1.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5924 + components: + - pos: -36.5,5.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5953 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-19.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5954 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-19.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6095 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-6.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6323 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-11.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6569 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-43.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7382 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,4.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8607 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-12.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8608 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-12.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8650 + components: + - pos: 8.5,-3.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9547 + components: + - pos: -29.5,-42.5 + parent: 34 + type: Transform + - uid: 10114 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-45.5 + parent: 34 + type: Transform + - uid: 10648 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,9.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10655 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-10.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10789 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,9.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11036 + components: + - pos: -30.5,-52.5 + parent: 34 + type: Transform + - uid: 11219 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,12.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11275 + components: + - rot: 3.141592653589793 rad + pos: 27.5,10.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11296 + components: + - pos: -58.5,-8.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11311 + components: + - pos: -25.5,-41.5 + parent: 34 + type: Transform + - uid: 11719 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-45.5 + parent: 34 + type: Transform + - uid: 12174 + components: + - pos: 39.5,-23.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 12317 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,-34.5 + parent: 34 + type: Transform + - uid: 12601 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,-26.5 + parent: 34 + type: Transform + - uid: 12607 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,-30.5 + parent: 34 + type: Transform + - uid: 12917 + components: + - rot: -1.5707963267948966 rad + pos: 48.5,-6.5 + parent: 34 + type: Transform + - uid: 12920 + components: + - rot: -1.5707963267948966 rad + pos: 48.5,-9.5 + parent: 34 + type: Transform + - uid: 12921 + components: + - rot: -1.5707963267948966 rad + pos: 48.5,-12.5 + parent: 34 + type: Transform + - uid: 12922 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-12.5 + parent: 34 + type: Transform + - uid: 12923 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-9.5 + parent: 34 + type: Transform + - uid: 12924 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-6.5 + parent: 34 + type: Transform +- proto: PoweredSmallLightEmpty + entities: + - uid: 3312 + components: + - pos: -54.5,8.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5929 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,6.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5932 + components: + - rot: 3.141592653589793 rad + pos: -55.5,3.5 + parent: 34 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLightMaintenance + entities: + - uid: 2087 + components: + - pos: 16.5,-44.5 + parent: 34 + type: Transform +- proto: PoweredSmallLightMaintenanceRed + entities: + - uid: 179 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-14.5 + parent: 34 + type: Transform + - uid: 2088 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-6.5 + parent: 34 + type: Transform + - uid: 4904 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-15.5 + parent: 34 + type: Transform + - uid: 4979 + components: + - pos: 17.5,9.5 + parent: 34 + type: Transform + - uid: 5067 + components: + - pos: 32.5,-39.5 + parent: 34 + type: Transform + - uid: 5931 + components: + - pos: 18.5,-41.5 + parent: 34 + type: Transform + - uid: 5942 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 34 + type: Transform + - uid: 6152 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,-1.5 + parent: 34 + type: Transform + - uid: 6236 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,2.5 + parent: 34 + type: Transform + - uid: 7145 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-45.5 + parent: 34 + type: Transform + - uid: 8329 + components: + - pos: -42.5,-12.5 + parent: 34 + type: Transform + - uid: 8489 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-14.5 + parent: 34 + type: Transform + - uid: 8981 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,-10.5 + parent: 34 + type: Transform + - uid: 10627 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,3.5 + parent: 34 + type: Transform + - uid: 10646 + components: + - rot: 3.141592653589793 rad + pos: -45.5,4.5 + parent: 34 + type: Transform + - uid: 10647 + components: + - pos: 25.5,-39.5 + parent: 34 + type: Transform + - uid: 10661 + components: + - pos: 25.5,8.5 + parent: 34 + type: Transform + - uid: 10673 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-15.5 + parent: 34 + type: Transform + - uid: 10687 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-16.5 + parent: 34 + type: Transform + - uid: 10772 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-17.5 + parent: 34 + type: Transform + - uid: 11137 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-4.5 + parent: 34 + type: Transform + - uid: 11138 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-11.5 + parent: 34 + type: Transform + - uid: 11449 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-18.5 + parent: 34 + type: Transform + - uid: 11450 + components: + - pos: -16.5,-29.5 + parent: 34 + type: Transform + - uid: 12967 + components: + - pos: 37.5,-6.5 + parent: 34 + type: Transform + - uid: 12968 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-36.5 + parent: 34 + type: Transform +- proto: Protolathe + entities: + - uid: 139 + components: + - pos: -48.5,-20.5 + parent: 34 + type: Transform + - uid: 11301 + components: + - pos: -35.5,-17.5 + parent: 34 + type: Transform +- proto: Rack + entities: + - uid: 140 + components: + - pos: -3.5,6.5 + parent: 34 + type: Transform + - uid: 171 + components: + - pos: -0.5,8.5 + parent: 34 + type: Transform + - uid: 281 + components: + - pos: -14.5,-4.5 + parent: 34 + type: Transform + - uid: 618 + components: + - pos: -35.5,-11.5 + parent: 34 + type: Transform + - uid: 675 + components: + - pos: -8.5,-38.5 + parent: 34 + type: Transform + - uid: 822 + components: + - pos: -12.5,-4.5 + parent: 34 + type: Transform + - uid: 915 + components: + - pos: -35.5,-10.5 + parent: 34 + type: Transform + - uid: 1028 + components: + - pos: 7.5,-9.5 + parent: 34 + type: Transform + - uid: 1098 + components: + - pos: -24.5,-29.5 + parent: 34 + type: Transform + - uid: 1099 + components: + - pos: -32.5,-27.5 + parent: 34 + type: Transform + - uid: 1352 + components: + - pos: 7.5,-32.5 + parent: 34 + type: Transform + - uid: 1361 + components: + - pos: 3.5,-31.5 + parent: 34 + type: Transform + - uid: 1964 + components: + - pos: -18.5,-16.5 + parent: 34 + type: Transform + - uid: 2313 + components: + - pos: -22.5,-25.5 + parent: 34 + type: Transform + - uid: 2314 + components: + - pos: -23.5,-25.5 + parent: 34 + type: Transform + - uid: 2315 + components: + - pos: -24.5,-25.5 + parent: 34 + type: Transform + - uid: 2395 + components: + - pos: -46.5,-22.5 + parent: 34 + type: Transform + - uid: 2410 + components: + - pos: 18.5,1.5 + parent: 34 + type: Transform + - uid: 2669 + components: + - pos: 7.5,-35.5 + parent: 34 + type: Transform + - uid: 2697 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-43.5 + parent: 34 + type: Transform + - uid: 2956 + components: + - pos: 2.5,-34.5 + parent: 34 + type: Transform + - uid: 3581 + components: + - pos: 24.5,-19.5 + parent: 34 + type: Transform + - uid: 3583 + components: + - pos: 22.5,-19.5 + parent: 34 + type: Transform + - uid: 3592 + components: + - pos: 26.5,1.5 + parent: 34 + type: Transform + - uid: 3715 + components: + - pos: 29.5,3.5 + parent: 34 + type: Transform + - uid: 3717 + components: + - pos: 26.5,4.5 + parent: 34 + type: Transform + - uid: 3718 + components: + - pos: 26.5,3.5 + parent: 34 + type: Transform + - uid: 3764 + components: + - pos: -31.5,-50.5 + parent: 34 + type: Transform + - uid: 3815 + components: + - pos: 8.5,-18.5 + parent: 34 + type: Transform + - uid: 4170 + components: + - pos: 26.5,-19.5 + parent: 34 + type: Transform + - uid: 4451 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-38.5 + parent: 34 + type: Transform + - uid: 4457 + components: + - pos: -47.5,-22.5 + parent: 34 + type: Transform + - uid: 4710 + components: + - pos: 37.5,6.5 + parent: 34 + type: Transform + - uid: 4805 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-2.5 + parent: 34 + type: Transform + - uid: 4859 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-4.5 + parent: 34 + type: Transform + - uid: 4947 + components: + - pos: 17.5,-10.5 + parent: 34 + type: Transform + - uid: 5143 + components: + - pos: -19.5,-14.5 + parent: 34 + type: Transform + - uid: 5245 + components: + - pos: 24.5,-33.5 + parent: 34 + type: Transform + - uid: 5246 + components: + - pos: 26.5,-33.5 + parent: 34 + type: Transform + - uid: 5417 + components: + - pos: 28.5,-43.5 + parent: 34 + type: Transform + - uid: 5555 + components: + - pos: -14.5,4.5 + parent: 34 + type: Transform + - uid: 5556 + components: + - pos: -15.5,4.5 + parent: 34 + type: Transform + - uid: 5875 + components: + - pos: -56.5,3.5 + parent: 34 + type: Transform + - uid: 5961 + components: + - pos: 8.5,-9.5 + parent: 34 + type: Transform + - uid: 6237 + components: + - pos: -45.5,-22.5 + parent: 34 + type: Transform + - uid: 7420 + components: + - pos: -43.5,-31.5 + parent: 34 + type: Transform + - uid: 8000 + components: + - pos: -37.5,-51.5 + parent: 34 + type: Transform + - uid: 8108 + components: + - pos: -14.5,-3.5 + parent: 34 + type: Transform + - uid: 10906 + components: + - pos: 37.5,-27.5 + parent: 34 + type: Transform + - uid: 11152 + components: + - pos: -54.5,11.5 + parent: 34 + type: Transform + - uid: 11170 + components: + - pos: -53.5,13.5 + parent: 34 + type: Transform + - uid: 11171 + components: + - pos: -52.5,13.5 + parent: 34 + type: Transform + - uid: 11186 + components: + - pos: -54.5,12.5 + parent: 34 + type: Transform + - uid: 11329 + components: + - pos: 29.5,4.5 + parent: 34 + type: Transform + - uid: 11462 + components: + - pos: -30.5,-57.5 + parent: 34 + type: Transform + - uid: 11511 + components: + - pos: -28.5,-41.5 + parent: 34 + type: Transform + - uid: 11709 + components: + - pos: -29.5,3.5 + parent: 34 + type: Transform + - uid: 11900 + components: + - pos: -7.5,-38.5 + parent: 34 + type: Transform + - uid: 12145 + components: + - pos: -56.5,-8.5 + parent: 34 + type: Transform + - uid: 12175 + components: + - pos: 26.5,-0.5 + parent: 34 + type: Transform +- proto: RadioHandheld + entities: + - uid: 4599 + components: + - rot: -1.5707963267948966 rad + pos: 41.50296,0.532346 + parent: 34 + type: Transform + - uid: 12105 + components: + - rot: 1.5707963267948966 rad + pos: -37.60172,-51.62474 + parent: 34 + type: Transform + - uid: 12108 + components: + - rot: -1.5707963267948966 rad + pos: -37.268387,-51.405838 + parent: 34 + type: Transform +- proto: RagItem + entities: + - uid: 12793 + components: + - pos: -9.447277,9.671606 + parent: 34 + type: Transform +- proto: Railing + entities: + - uid: 471 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-17.5 + parent: 34 + type: Transform + - uid: 472 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-16.5 + parent: 34 + type: Transform + - uid: 473 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-15.5 + parent: 34 + type: Transform + - uid: 474 + components: + - pos: -7.5,-18.5 + parent: 34 + type: Transform + - uid: 475 + components: + - pos: -8.5,-18.5 + parent: 34 + type: Transform + - uid: 476 + components: + - pos: -9.5,-18.5 + parent: 34 + type: Transform + - uid: 477 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-17.5 + parent: 34 + type: Transform + - uid: 479 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-15.5 + parent: 34 + type: Transform + - uid: 480 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-14.5 + parent: 34 + type: Transform + - uid: 481 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-14.5 + parent: 34 + type: Transform + - uid: 482 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-14.5 + parent: 34 + type: Transform + - uid: 2302 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-19.5 + parent: 34 + type: Transform + - uid: 2303 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-19.5 + parent: 34 + type: Transform + - uid: 3534 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-25.5 + parent: 34 + type: Transform + - uid: 3827 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 34 + type: Transform + - uid: 3828 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 34 + type: Transform + - uid: 3829 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 34 + type: Transform + - uid: 3830 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-5.5 + parent: 34 + type: Transform + - uid: 3831 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 34 + type: Transform + - uid: 3832 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 34 + type: Transform + - uid: 3833 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-14.5 + parent: 34 + type: Transform + - uid: 3834 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-15.5 + parent: 34 + type: Transform + - uid: 3835 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-16.5 + parent: 34 + type: Transform + - uid: 3887 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-25.5 + parent: 34 + type: Transform + - uid: 4150 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-25.5 + parent: 34 + type: Transform + - uid: 4244 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-25.5 + parent: 34 + type: Transform + - uid: 4901 + components: + - pos: 30.5,-21.5 + parent: 34 + type: Transform + - uid: 4902 + components: + - pos: 29.5,-21.5 + parent: 34 + type: Transform + - uid: 4903 + components: + - pos: 28.5,-21.5 + parent: 34 + type: Transform + - uid: 6010 + components: + - pos: 41.5,-24.5 + parent: 34 + type: Transform + - uid: 6011 + components: + - pos: 42.5,-24.5 + parent: 34 + type: Transform + - uid: 6012 + components: + - pos: 45.5,-24.5 + parent: 34 + type: Transform + - uid: 6013 + components: + - pos: 44.5,-24.5 + parent: 34 + type: Transform + - uid: 6014 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-22.5 + parent: 34 + type: Transform + - uid: 6015 + components: + - rot: 3.141592653589793 rad + pos: 44.5,-22.5 + parent: 34 + type: Transform + - uid: 6016 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-22.5 + parent: 34 + type: Transform + - uid: 6017 + components: + - rot: 3.141592653589793 rad + pos: 41.5,-22.5 + parent: 34 + type: Transform + - uid: 6102 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-1.5 + parent: 34 + type: Transform + - uid: 6103 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-1.5 + parent: 34 + type: Transform + - uid: 6107 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 34 + type: Transform + - uid: 6122 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-1.5 + parent: 34 + type: Transform + - uid: 7172 + components: + - pos: 35.5,-21.5 + parent: 34 + type: Transform + - uid: 7173 + components: + - pos: 36.5,-21.5 + parent: 34 + type: Transform + - uid: 7174 + components: + - pos: 37.5,-21.5 + parent: 34 + type: Transform + - uid: 12006 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 34 + type: Transform + - uid: 12007 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 34 + type: Transform + - uid: 12008 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 34 + type: Transform + - uid: 12009 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 34 + type: Transform + - uid: 12010 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 34 + type: Transform + - uid: 12011 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 34 + type: Transform + - uid: 12012 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 34 + type: Transform +- proto: RailingCorner + entities: + - uid: 448 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-14.5 + parent: 34 + type: Transform + - uid: 449 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-14.5 + parent: 34 + type: Transform + - uid: 450 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-18.5 + parent: 34 + type: Transform + - uid: 451 + components: + - pos: -6.5,-18.5 + parent: 34 + type: Transform + - uid: 837 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-9.5 + parent: 34 + type: Transform + - uid: 2300 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-19.5 + parent: 34 + type: Transform + - uid: 2301 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-19.5 + parent: 34 + type: Transform + - uid: 3473 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-25.5 + parent: 34 + type: Transform + - uid: 3474 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-25.5 + parent: 34 + type: Transform + - uid: 3824 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-13.5 + parent: 34 + type: Transform + - uid: 3826 + components: + - pos: 11.5,-9.5 + parent: 34 + type: Transform + - uid: 4900 + components: + - pos: 31.5,-21.5 + parent: 34 + type: Transform + - uid: 6205 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 34 + type: Transform + - uid: 7171 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-21.5 + parent: 34 + type: Transform + - uid: 12005 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 34 + type: Transform +- proto: RandomArcade + entities: + - uid: 5026 + components: + - pos: 16.5,6.5 + parent: 34 + type: Transform + - uid: 5030 + components: + - pos: 17.5,6.5 + parent: 34 + type: Transform + - uid: 5031 + components: + - pos: 18.5,6.5 + parent: 34 + type: Transform + - uid: 5569 + components: + - pos: -1.5,-3.5 + parent: 34 + type: Transform +- proto: RandomArtifactSpawner + entities: + - uid: 957 + components: + - pos: -25.5,-4.5 + parent: 34 + type: Transform +- proto: RandomBoards + entities: + - uid: 5559 + components: + - pos: -18.5,4.5 + parent: 34 + type: Transform + - uid: 10786 + components: + - pos: -57.5,-6.5 + parent: 34 + type: Transform + - uid: 11336 + components: + - pos: 8.5,-20.5 + parent: 34 + type: Transform +- proto: RandomDrinkBottle + entities: + - uid: 2541 + components: + - pos: 39.5,-35.5 + parent: 34 + type: Transform +- proto: RandomDrinkGlass + entities: + - uid: 4143 + components: + - pos: -6.5,-41.5 + parent: 34 + type: Transform + - uid: 10530 + components: + - pos: -0.5,-11.5 + parent: 34 + type: Transform + - uid: 10531 + components: + - pos: 2.5,-12.5 + parent: 34 + type: Transform + - uid: 11136 + components: + - pos: -8.5,-22.5 + parent: 34 + type: Transform + - uid: 11590 + components: + - pos: -42.5,-19.5 + parent: 34 + type: Transform +- proto: RandomFoodBakedSingle + entities: + - uid: 45 + components: + - pos: -8.5,-10.5 + parent: 34 + type: Transform +- proto: RandomFoodBakedWhole + entities: + - uid: 12526 + components: + - pos: -45.5,-24.5 + parent: 34 + type: Transform + - uid: 12536 + components: + - pos: -46.5,-24.5 + parent: 34 + type: Transform +- proto: RandomFoodMeal + entities: + - uid: 722 + components: + - pos: -5.5,3.5 + parent: 34 + type: Transform + - uid: 899 + components: + - pos: -9.5,-10.5 + parent: 34 + type: Transform + - uid: 4039 + components: + - pos: -9.5,-44.5 + parent: 34 + type: Transform + - uid: 4059 + components: + - pos: -7.5,-44.5 + parent: 34 + type: Transform +- proto: RandomFoodSingle + entities: + - uid: 898 + components: + - pos: -10.5,-10.5 + parent: 34 + type: Transform + - uid: 901 + components: + - pos: 8.5,-5.5 + parent: 34 + type: Transform + - uid: 2933 + components: + - pos: 13.5,-40.5 + parent: 34 + type: Transform + - uid: 4057 + components: + - pos: -10.5,-46.5 + parent: 34 + type: Transform + - uid: 4412 + components: + - pos: 10.5,7.5 + parent: 34 + type: Transform + - uid: 10412 + components: + - pos: -28.5,-23.5 + parent: 34 + type: Transform + - uid: 10528 + components: + - pos: -0.5,-12.5 + parent: 34 + type: Transform + - uid: 10529 + components: + - pos: 2.5,-11.5 + parent: 34 + type: Transform +- proto: RandomInstruments + entities: + - uid: 4847 + components: + - rot: 1.5707963267948966 rad + pos: 50.5,-0.5 + parent: 34 + type: Transform + - uid: 4848 + components: + - rot: 1.5707963267948966 rad + pos: 50.5,-1.5 + parent: 34 + type: Transform + - uid: 5962 + components: + - pos: 7.5,-9.5 + parent: 34 + type: Transform + - uid: 5963 + components: + - pos: 8.5,-9.5 + parent: 34 + type: Transform +- proto: RandomItem + entities: + - uid: 226 + components: + - pos: 39.5,-13.5 + parent: 34 + type: Transform + - uid: 4023 + components: + - pos: 47.5,-12.5 + parent: 34 + type: Transform + - uid: 4077 + components: + - pos: 40.5,-10.5 + parent: 34 + type: Transform + - uid: 4078 + components: + - pos: 39.5,-7.5 + parent: 34 + type: Transform + - uid: 4420 + components: + - pos: 47.5,-10.5 + parent: 34 + type: Transform + - uid: 4656 + components: + - pos: 47.5,-6.5 + parent: 34 + type: Transform +- proto: RandomPainting + entities: + - uid: 1290 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-43.5 + parent: 34 + type: Transform + - uid: 1990 + components: + - pos: -17.5,-15.5 + parent: 34 + type: Transform + - uid: 2196 + components: + - pos: -44.5,-4.5 + parent: 34 + type: Transform + - uid: 3364 + components: + - pos: -33.5,-14.5 + parent: 34 + type: Transform + - uid: 3596 + components: + - pos: -12.5,-6.5 + parent: 34 + type: Transform + - uid: 4283 + components: + - pos: 27.5,-30.5 + parent: 34 + type: Transform + - uid: 5860 + components: + - pos: -47.5,2.5 + parent: 34 + type: Transform + - uid: 7400 + components: + - pos: 8.5,-6.5 + parent: 34 + type: Transform + - uid: 7401 + components: + - pos: 6.5,-9.5 + parent: 34 + type: Transform + - uid: 10397 + components: + - pos: -47.5,-11.5 + parent: 34 + type: Transform + - uid: 10957 + components: + - pos: 2.5,-13.5 + parent: 34 + type: Transform + - uid: 10968 + components: + - pos: -24.5,-35.5 + parent: 34 + type: Transform + - uid: 10997 + components: + - pos: -6.5,-39.5 + parent: 34 + type: Transform + - uid: 11008 + components: + - pos: -30.5,-24.5 + parent: 34 + type: Transform + - uid: 11352 + components: + - pos: 6.5,-2.5 + parent: 34 + type: Transform + - uid: 11354 + components: + - pos: 29.5,-30.5 + parent: 34 + type: Transform + - uid: 11355 + components: + - pos: 33.5,-30.5 + parent: 34 + type: Transform + - uid: 11617 + components: + - pos: -41.5,-17.5 + parent: 34 + type: Transform + - uid: 11618 + components: + - pos: -49.5,-23.5 + parent: 34 + type: Transform + - uid: 11699 + components: + - pos: 3.5,-51.5 + parent: 34 + type: Transform +- proto: RandomPosterAny + entities: + - uid: 2198 + components: + - pos: -44.5,-7.5 + parent: 34 + type: Transform + - uid: 2267 + components: + - pos: -52.5,-6.5 + parent: 34 + type: Transform + - uid: 2268 + components: + - pos: -48.5,-3.5 + parent: 34 + type: Transform + - uid: 3410 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-41.5 + parent: 34 + type: Transform + - uid: 4764 + components: + - pos: 35.5,-6.5 + parent: 34 + type: Transform + - uid: 4770 + components: + - pos: 40.5,2.5 + parent: 34 + type: Transform + - uid: 10958 + components: + - pos: -0.5,-13.5 + parent: 34 + type: Transform + - uid: 10963 + components: + - pos: -9.5,-28.5 + parent: 34 + type: Transform + - uid: 10965 + components: + - pos: -51.5,-41.5 + parent: 34 + type: Transform + - uid: 10972 + components: + - pos: -1.5,-16.5 + parent: 34 + type: Transform + - uid: 10983 + components: + - pos: 18.5,-8.5 + parent: 34 + type: Transform + - uid: 10984 + components: + - pos: 24.5,6.5 + parent: 34 + type: Transform + - uid: 10985 + components: + - pos: 31.5,4.5 + parent: 34 + type: Transform + - uid: 11000 + components: + - pos: 23.5,-40.5 + parent: 34 + type: Transform + - uid: 11006 + components: + - pos: -45.5,-28.5 + parent: 34 + type: Transform + - uid: 11360 + components: + - pos: 27.5,-43.5 + parent: 34 + type: Transform + - uid: 11361 + components: + - pos: 6.5,-43.5 + parent: 34 + type: Transform + - uid: 11368 + components: + - pos: -55.5,-2.5 + parent: 34 + type: Transform + - uid: 11369 + components: + - pos: -55.5,2.5 + parent: 34 + type: Transform + - uid: 12214 + components: + - rot: 3.141592653589793 rad + pos: -51.5,-11.5 + parent: 34 + type: Transform +- proto: RandomPosterContraband + entities: + - uid: 10847 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-31.5 + parent: 34 + type: Transform + - uid: 11364 + components: + - pos: -24.5,-6.5 + parent: 34 + type: Transform + - uid: 11365 + components: + - pos: -52.5,3.5 + parent: 34 + type: Transform + - uid: 11366 + components: + - pos: -57.5,3.5 + parent: 34 + type: Transform + - uid: 11367 + components: + - pos: -57.5,8.5 + parent: 34 + type: Transform +- proto: RandomPosterLegit + entities: + - uid: 775 + components: + - pos: -17.5,-12.5 + parent: 34 + type: Transform + - uid: 2072 + components: + - pos: -40.5,-14.5 + parent: 34 + type: Transform + - uid: 2115 + components: + - pos: -42.5,0.5 + parent: 34 + type: Transform + - uid: 2197 + components: + - pos: -40.5,-5.5 + parent: 34 + type: Transform + - uid: 2269 + components: + - pos: -50.5,-8.5 + parent: 34 + type: Transform + - uid: 2677 + components: + - pos: 8.5,-35.5 + parent: 34 + type: Transform + - uid: 3075 + components: + - pos: -2.5,9.5 + parent: 34 + type: Transform + - uid: 7151 + components: + - pos: -36.5,-12.5 + parent: 34 + type: Transform + - uid: 8628 + components: + - pos: -2.5,-13.5 + parent: 34 + type: Transform + - uid: 9238 + components: + - pos: -45.5,-23.5 + parent: 34 + type: Transform + - uid: 10300 + components: + - pos: -12.5,-2.5 + parent: 34 + type: Transform + - uid: 10953 + components: + - pos: -28.5,-2.5 + parent: 34 + type: Transform + - uid: 10955 + components: + - pos: -1.5,-2.5 + parent: 34 + type: Transform + - uid: 10959 + components: + - pos: -6.5,-8.5 + parent: 34 + type: Transform + - uid: 10960 + components: + - pos: -2.5,-16.5 + parent: 34 + type: Transform + - uid: 10961 + components: + - pos: 7.5,-21.5 + parent: 34 + type: Transform + - uid: 10964 + components: + - pos: -33.5,-28.5 + parent: 34 + type: Transform + - uid: 10973 + components: + - pos: 31.5,-20.5 + parent: 34 + type: Transform + - uid: 10974 + components: + - pos: 34.5,-25.5 + parent: 34 + type: Transform + - uid: 10975 + components: + - pos: 36.5,-20.5 + parent: 34 + type: Transform + - uid: 10978 + components: + - pos: 21.5,-21.5 + parent: 34 + type: Transform + - uid: 10979 + components: + - pos: 16.5,-21.5 + parent: 34 + type: Transform + - uid: 10980 + components: + - pos: 10.5,-13.5 + parent: 34 + type: Transform + - uid: 10981 + components: + - pos: 10.5,-6.5 + parent: 34 + type: Transform + - uid: 10993 + components: + - pos: 15.5,16.5 + parent: 34 + type: Transform + - uid: 10995 + components: + - pos: -0.5,-51.5 + parent: 34 + type: Transform + - uid: 11007 + components: + - pos: -33.5,-25.5 + parent: 34 + type: Transform + - uid: 11018 + components: + - pos: 1.5,-30.5 + parent: 34 + type: Transform + - uid: 11043 + components: + - pos: 6.5,-25.5 + parent: 34 + type: Transform + - uid: 11044 + components: + - pos: 11.5,-39.5 + parent: 34 + type: Transform + - uid: 11356 + components: + - pos: 38.5,-28.5 + parent: 34 + type: Transform + - uid: 11359 + components: + - pos: 37.5,-42.5 + parent: 34 + type: Transform + - uid: 11363 + components: + - pos: -15.5,-15.5 + parent: 34 + type: Transform + - uid: 11578 + components: + - pos: -51.5,-23.5 + parent: 34 + type: Transform + - uid: 12197 + components: + - pos: 24.5,-8.5 + parent: 34 + type: Transform + - uid: 12330 + components: + - pos: 3.5,9.5 + parent: 34 + type: Transform + - uid: 12331 + components: + - pos: 6.5,7.5 + parent: 34 + type: Transform +- proto: RandomSnacks + entities: + - uid: 4037 + components: + - pos: -8.5,-48.5 + parent: 34 + type: Transform + - uid: 11216 + components: + - pos: 22.5,11.5 + parent: 34 + type: Transform + - uid: 11708 + components: + - pos: -45.5,-14.5 + parent: 34 + type: Transform +- proto: RandomSoap + entities: + - uid: 4746 + components: + - pos: 37.5,-0.5 + parent: 34 + type: Transform +- proto: RandomSpawner + entities: + - uid: 3861 + components: + - pos: 28.5,8.5 + parent: 34 + type: Transform + - uid: 4036 + components: + - pos: -5.5,-45.5 + parent: 34 + type: Transform + - uid: 10237 + components: + - pos: 2.5,-15.5 + parent: 34 + type: Transform + - uid: 10238 + components: + - pos: 8.5,-15.5 + parent: 34 + type: Transform + - uid: 10239 + components: + - pos: 6.5,-15.5 + parent: 34 + type: Transform + - uid: 10240 + components: + - pos: -20.5,-0.5 + parent: 34 + type: Transform + - uid: 10241 + components: + - pos: -26.5,-1.5 + parent: 34 + type: Transform + - uid: 10242 + components: + - pos: -9.5,-1.5 + parent: 34 + type: Transform + - uid: 10243 + components: + - pos: -23.5,-7.5 + parent: 34 + type: Transform + - uid: 10244 + components: + - pos: -21.5,-15.5 + parent: 34 + type: Transform + - uid: 10245 + components: + - pos: -22.5,-13.5 + parent: 34 + type: Transform + - uid: 10247 + components: + - pos: -44.5,-12.5 + parent: 34 + type: Transform + - uid: 10250 + components: + - pos: -53.5,-6.5 + parent: 34 + type: Transform + - uid: 10289 + components: + - pos: -46.5,5.5 + parent: 34 + type: Transform + - uid: 10290 + components: + - pos: -47.5,4.5 + parent: 34 + type: Transform + - uid: 10292 + components: + - pos: -44.5,-10.5 + parent: 34 + type: Transform + - uid: 10867 + components: + - pos: 23.5,7.5 + parent: 34 + type: Transform + - uid: 10868 + components: + - pos: 20.5,9.5 + parent: 34 + type: Transform + - uid: 10869 + components: + - pos: 32.5,7.5 + parent: 34 + type: Transform + - uid: 10870 + components: + - pos: 32.5,8.5 + parent: 34 + type: Transform + - uid: 10871 + components: + - pos: 33.5,3.5 + parent: 34 + type: Transform + - uid: 10874 + components: + - pos: 28.5,-39.5 + parent: 34 + type: Transform + - uid: 10875 + components: + - pos: 27.5,-40.5 + parent: 34 + type: Transform + - uid: 10876 + components: + - pos: 22.5,-43.5 + parent: 34 + type: Transform + - uid: 10877 + components: + - pos: 19.5,-41.5 + parent: 34 + type: Transform + - uid: 10878 + components: + - pos: 8.5,-45.5 + parent: 34 + type: Transform + - uid: 10879 + components: + - pos: 9.5,-44.5 + parent: 34 + type: Transform + - uid: 10880 + components: + - pos: -0.5,-49.5 + parent: 34 + type: Transform + - uid: 10881 + components: + - pos: 4.5,-48.5 + parent: 34 + type: Transform + - uid: 11048 + components: + - pos: -50.5,-13.5 + parent: 34 + type: Transform + - uid: 11102 + components: + - pos: -54.5,-10.5 + parent: 34 + type: Transform + - uid: 11217 + components: + - pos: 19.5,12.5 + parent: 34 + type: Transform + - uid: 11218 + components: + - pos: 20.5,11.5 + parent: 34 + type: Transform + - uid: 11280 + components: + - pos: 25.5,10.5 + parent: 34 + type: Transform + - uid: 11281 + components: + - pos: 28.5,12.5 + parent: 34 + type: Transform + - uid: 11282 + components: + - pos: 27.5,12.5 + parent: 34 + type: Transform + - uid: 11283 + components: + - pos: 28.5,10.5 + parent: 34 + type: Transform + - uid: 11284 + components: + - pos: 24.5,12.5 + parent: 34 + type: Transform + - uid: 11653 + components: + - pos: -38.5,8.5 + parent: 34 + type: Transform + - uid: 11654 + components: + - pos: -38.5,9.5 + parent: 34 + type: Transform + - uid: 11655 + components: + - pos: -38.5,10.5 + parent: 34 + type: Transform + - uid: 11656 + components: + - pos: -39.5,7.5 + parent: 34 + type: Transform + - uid: 11657 + components: + - pos: -40.5,10.5 + parent: 34 + type: Transform + - uid: 11665 + components: + - pos: -40.5,4.5 + parent: 34 + type: Transform + - uid: 11666 + components: + - pos: -41.5,5.5 + parent: 34 + type: Transform + - uid: 11695 + components: + - pos: -43.5,-13.5 + parent: 34 + type: Transform + - uid: 11707 + components: + - pos: -48.5,-12.5 + parent: 34 + type: Transform +- proto: RandomSpawner100 + entities: + - uid: 12243 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-33.5 + parent: 34 + type: Transform +- proto: RandomVending + entities: + - uid: 3956 + components: + - pos: -4.5,-48.5 + parent: 34 + type: Transform + - uid: 4050 + components: + - pos: -6.5,-48.5 + parent: 34 + type: Transform + - uid: 6212 + components: + - pos: 7.5,3.5 + parent: 34 + type: Transform + - uid: 8084 + components: + - pos: -31.5,-23.5 + parent: 34 + type: Transform + - uid: 10222 + components: + - pos: 22.5,-28.5 + parent: 34 + type: Transform + - uid: 10354 + components: + - pos: 24.5,-22.5 + parent: 34 + type: Transform + - uid: 10794 + components: + - pos: -36.5,-25.5 + parent: 34 + type: Transform +- proto: RandomVendingDrinks + entities: + - uid: 10952 + components: + - pos: 4.5,16.5 + parent: 34 + type: Transform +- proto: RandomVendingSnacks + entities: + - uid: 6202 + components: + - pos: 4.5,18.5 + parent: 34 + type: Transform + - uid: 11528 + components: + - pos: 10.5,-10.5 + parent: 34 + type: Transform +- proto: RCD + entities: + - uid: 1061 + components: + - pos: -24.3519,-29.269886 + parent: 34 + type: Transform +- proto: RCDAmmo + entities: + - uid: 1110 + components: + - pos: -24.742525,-29.55133 + parent: 34 + type: Transform + - uid: 2360 + components: + - pos: -24.5394,-29.598238 + parent: 34 + type: Transform +- proto: ReagentGrinderMachineCircuitboard + entities: + - uid: 7397 + components: + - pos: 8.320472,-5.1379967 + parent: 34 + type: Transform +- proto: Recycler + entities: + - uid: 10817 + components: + - pos: -38.5,7.5 + parent: 34 + type: Transform + - links: + - 11254 + type: DeviceLinkSink +- proto: ReinforcedGirder + entities: + - uid: 165 + components: + - pos: -62.5,-15.5 + parent: 34 + type: Transform + - uid: 5318 + components: + - pos: 21.5,-55.5 + parent: 34 + type: Transform + - uid: 5347 + components: + - pos: 36.5,-56.5 + parent: 34 + type: Transform + - uid: 6250 + components: + - pos: -17.5,16.5 + parent: 34 + type: Transform + - uid: 6258 + components: + - pos: -41.5,16.5 + parent: 34 + type: Transform + - uid: 6265 + components: + - pos: -24.5,16.5 + parent: 34 + type: Transform + - uid: 6268 + components: + - pos: -34.5,16.5 + parent: 34 + type: Transform + - uid: 6375 + components: + - pos: -59.5,-19.5 + parent: 34 + type: Transform + - uid: 6391 + components: + - pos: -62.5,-25.5 + parent: 34 + type: Transform + - uid: 6418 + components: + - pos: 46.5,-47.5 + parent: 34 + type: Transform + - uid: 6426 + components: + - pos: 42.5,-51.5 + parent: 34 + type: Transform + - uid: 6434 + components: + - pos: 48.5,-30.5 + parent: 34 + type: Transform + - uid: 6438 + components: + - pos: 49.5,-34.5 + parent: 34 + type: Transform + - uid: 6442 + components: + - pos: 49.5,-37.5 + parent: 34 + type: Transform + - uid: 6445 + components: + - pos: 49.5,-40.5 + parent: 34 + type: Transform + - uid: 6448 + components: + - pos: 48.5,-44.5 + parent: 34 + type: Transform + - uid: 6452 + components: + - pos: 57.5,-23.5 + parent: 34 + type: Transform + - uid: 6460 + components: + - pos: 55.5,-27.5 + parent: 34 + type: Transform + - uid: 6466 + components: + - pos: 55.5,-19.5 + parent: 34 + type: Transform + - uid: 6472 + components: + - pos: 54.5,-9.5 + parent: 34 + type: Transform + - uid: 6480 + components: + - pos: 54.5,3.5 + parent: 34 + type: Transform + - uid: 6485 + components: + - pos: -27.5,16.5 + parent: 34 + type: Transform + - uid: 6489 + components: + - pos: 51.5,7.5 + parent: 34 + type: Transform + - uid: 6494 + components: + - pos: 54.5,-5.5 + parent: 34 + type: Transform + - uid: 6503 + components: + - pos: 47.5,11.5 + parent: 34 + type: Transform + - uid: 6507 + components: + - pos: 42.5,12.5 + parent: 34 + type: Transform + - uid: 6513 + components: + - pos: 37.5,11.5 + parent: 34 + type: Transform + - uid: 6535 + components: + - pos: 30.5,17.5 + parent: 34 + type: Transform + - uid: 6536 + components: + - pos: 20.5,17.5 + parent: 34 + type: Transform + - uid: 7234 + components: + - pos: -61.5,-21.5 + parent: 34 + type: Transform + - uid: 7991 + components: + - pos: 54.5,-0.5 + parent: 34 + type: Transform + - uid: 11837 + components: + - pos: 51.5,-13.5 + parent: 34 + type: Transform + - uid: 11915 + components: + - pos: -10.5,16.5 + parent: 34 + type: Transform + - uid: 12103 + components: + - pos: -47.5,-55.5 + parent: 34 + type: Transform + - uid: 12167 + components: + - pos: -60.5,-20.5 + parent: 34 + type: Transform + - uid: 12621 + components: + - pos: -62.5,-45.5 + parent: 34 + type: Transform + - uid: 12622 + components: + - pos: -63.5,-42.5 + parent: 34 + type: Transform + - uid: 12623 + components: + - pos: -62.5,-43.5 + parent: 34 + type: Transform + - uid: 12634 + components: + - pos: -62.5,-5.5 + parent: 34 + type: Transform +- proto: ReinforcedPlasmaWindow + entities: + - uid: 74 + components: + - pos: 27.5,-34.5 + parent: 34 + type: Transform + - uid: 1464 + components: + - pos: -48.5,-47.5 + parent: 34 + type: Transform + - uid: 1467 + components: + - pos: -49.5,-48.5 + parent: 34 + type: Transform + - uid: 1468 + components: + - pos: -50.5,-48.5 + parent: 34 + type: Transform + - uid: 1469 + components: + - pos: -49.5,-46.5 + parent: 34 + type: Transform + - uid: 1470 + components: + - pos: -50.5,-46.5 + parent: 34 + type: Transform + - uid: 1486 + components: + - pos: -48.5,-48.5 + parent: 34 + type: Transform + - uid: 1487 + components: + - pos: -48.5,-46.5 + parent: 34 + type: Transform + - uid: 1588 + components: + - pos: -39.5,-39.5 + parent: 34 + type: Transform + - uid: 1589 + components: + - pos: -39.5,-41.5 + parent: 34 + type: Transform + - uid: 1590 + components: + - pos: -39.5,-43.5 + parent: 34 + type: Transform + - uid: 1591 + components: + - pos: -39.5,-45.5 + parent: 34 + type: Transform + - uid: 1593 + components: + - pos: -49.5,-38.5 + parent: 34 + type: Transform + - uid: 2568 + components: + - pos: -57.5,-23.5 + parent: 34 + type: Transform + - uid: 2595 + components: + - pos: -56.5,-23.5 + parent: 34 + type: Transform + - uid: 2596 + components: + - pos: -55.5,-23.5 + parent: 34 + type: Transform + - uid: 2610 + components: + - pos: -53.5,-23.5 + parent: 34 + type: Transform + - uid: 2623 + components: + - pos: -54.5,-23.5 + parent: 34 + type: Transform + - uid: 3691 + components: + - pos: 29.5,2.5 + parent: 34 + type: Transform + - uid: 3692 + components: + - pos: 28.5,2.5 + parent: 34 + type: Transform + - uid: 3693 + components: + - pos: 26.5,2.5 + parent: 34 + type: Transform + - uid: 4004 + components: + - pos: 25.5,-32.5 + parent: 34 + type: Transform + - uid: 4380 + components: + - pos: 25.5,-36.5 + parent: 34 + type: Transform + - uid: 7819 + components: + - pos: -58.5,-36.5 + parent: 34 + type: Transform + - uid: 11443 + components: + - pos: -57.5,-36.5 + parent: 34 + type: Transform + - uid: 11447 + components: + - pos: -52.5,-23.5 + parent: 34 + type: Transform + - uid: 12573 + components: + - pos: -55.5,-36.5 + parent: 34 + type: Transform + - uid: 12574 + components: + - pos: -56.5,-36.5 + parent: 34 + type: Transform + - uid: 12612 + components: + - pos: -59.5,-36.5 + parent: 34 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 51 + components: + - pos: -16.5,5.5 + parent: 34 + type: Transform + - uid: 87 + components: + - pos: -15.5,5.5 + parent: 34 + type: Transform + - uid: 264 + components: + - pos: -9.5,1.5 + parent: 34 + type: Transform + - uid: 339 + components: + - pos: -0.5,-2.5 + parent: 34 + type: Transform + - uid: 496 + components: + - pos: -27.5,-8.5 + parent: 34 + type: Transform + - uid: 497 + components: + - pos: -27.5,-7.5 + parent: 34 + type: Transform + - uid: 514 + components: + - pos: -28.5,-5.5 + parent: 34 + type: Transform + - uid: 515 + components: + - pos: -28.5,-4.5 + parent: 34 + type: Transform + - uid: 516 + components: + - pos: -28.5,-3.5 + parent: 34 + type: Transform + - uid: 572 + components: + - pos: -32.5,-20.5 + parent: 34 + type: Transform + - uid: 614 + components: + - pos: -33.5,-20.5 + parent: 34 + type: Transform + - uid: 615 + components: + - pos: -35.5,-20.5 + parent: 34 + type: Transform + - uid: 657 + components: + - pos: -19.5,-20.5 + parent: 34 + type: Transform + - uid: 659 + components: + - pos: -15.5,-25.5 + parent: 34 + type: Transform + - uid: 668 + components: + - pos: -15.5,-24.5 + parent: 34 + type: Transform + - uid: 670 + components: + - pos: -15.5,-27.5 + parent: 34 + type: Transform + - uid: 747 + components: + - pos: 0.5,-2.5 + parent: 34 + type: Transform + - uid: 805 + components: + - pos: -11.5,1.5 + parent: 34 + type: Transform + - uid: 820 + components: + - pos: -6.5,-4.5 + parent: 34 + type: Transform + - uid: 851 + components: + - pos: -6.5,-5.5 + parent: 34 + type: Transform + - uid: 852 + components: + - pos: -6.5,-6.5 + parent: 34 + type: Transform + - uid: 853 + components: + - pos: -8.5,-2.5 + parent: 34 + type: Transform + - uid: 854 + components: + - pos: -9.5,-2.5 + parent: 34 + type: Transform + - uid: 855 + components: + - pos: -10.5,-2.5 + parent: 34 + type: Transform + - uid: 856 + components: + - pos: -7.5,-2.5 + parent: 34 + type: Transform + - uid: 860 + components: + - pos: -17.5,-2.5 + parent: 34 + type: Transform + - uid: 862 + components: + - pos: -20.5,-2.5 + parent: 34 + type: Transform + - uid: 916 + components: + - pos: -25.5,-9.5 + parent: 34 + type: Transform + - uid: 1042 + components: + - pos: -20.5,-25.5 + parent: 34 + type: Transform + - uid: 1084 + components: + - pos: -23.5,-24.5 + parent: 34 + type: Transform + - uid: 1104 + components: + - pos: -22.5,-24.5 + parent: 34 + type: Transform + - uid: 1112 + components: + - pos: -25.5,-35.5 + parent: 34 + type: Transform + - uid: 1113 + components: + - pos: -26.5,-35.5 + parent: 34 + type: Transform + - uid: 1334 + components: + - pos: 9.5,-30.5 + parent: 34 + type: Transform + - uid: 1336 + components: + - pos: 10.5,-30.5 + parent: 34 + type: Transform + - uid: 1380 + components: + - pos: 5.5,-25.5 + parent: 34 + type: Transform + - uid: 1455 + components: + - pos: -43.5,-32.5 + parent: 34 + type: Transform + - uid: 1462 + components: + - pos: -49.5,-44.5 + parent: 34 + type: Transform + - uid: 1480 + components: + - pos: -46.5,-49.5 + parent: 34 + type: Transform + - uid: 1485 + components: + - pos: -51.5,-43.5 + parent: 34 + type: Transform + - uid: 1490 + components: + - pos: -46.5,-45.5 + parent: 34 + type: Transform + - uid: 1491 + components: + - pos: -46.5,-46.5 + parent: 34 + type: Transform + - uid: 1492 + components: + - pos: -46.5,-47.5 + parent: 34 + type: Transform + - uid: 1493 + components: + - pos: -46.5,-48.5 + parent: 34 + type: Transform + - uid: 1532 + components: + - pos: -50.5,-44.5 + parent: 34 + type: Transform + - uid: 1533 + components: + - pos: -48.5,-44.5 + parent: 34 + type: Transform + - uid: 1534 + components: + - pos: -47.5,-44.5 + parent: 34 + type: Transform + - uid: 1641 + components: + - pos: -41.5,-50.5 + parent: 34 + type: Transform + - uid: 1642 + components: + - pos: -42.5,-50.5 + parent: 34 + type: Transform + - uid: 1643 + components: + - pos: -43.5,-50.5 + parent: 34 + type: Transform + - uid: 1644 + components: + - pos: -44.5,-50.5 + parent: 34 + type: Transform + - uid: 1773 + components: + - pos: -42.5,-32.5 + parent: 34 + type: Transform + - uid: 1775 + components: + - pos: -44.5,-32.5 + parent: 34 + type: Transform + - uid: 1793 + components: + - pos: 16.5,-12.5 + parent: 34 + type: Transform + - uid: 1882 + components: + - pos: -27.5,-31.5 + parent: 34 + type: Transform + - uid: 1896 + components: + - pos: -6.5,-24.5 + parent: 34 + type: Transform + - uid: 1897 + components: + - pos: -6.5,-26.5 + parent: 34 + type: Transform + - uid: 1898 + components: + - pos: -6.5,-27.5 + parent: 34 + type: Transform + - uid: 1934 + components: + - pos: -6.5,-34.5 + parent: 34 + type: Transform + - uid: 1936 + components: + - pos: -6.5,-32.5 + parent: 34 + type: Transform + - uid: 1937 + components: + - pos: -6.5,-33.5 + parent: 34 + type: Transform + - uid: 1938 + components: + - pos: -6.5,-35.5 + parent: 34 + type: Transform + - uid: 1939 + components: + - pos: -6.5,-36.5 + parent: 34 + type: Transform + - uid: 1940 + components: + - pos: -24.5,-32.5 + parent: 34 + type: Transform + - uid: 1950 + components: + - pos: -17.5,-20.5 + parent: 34 + type: Transform + - uid: 1951 + components: + - pos: -16.5,-20.5 + parent: 34 + type: Transform + - uid: 2004 + components: + - pos: -29.5,4.5 + parent: 34 + type: Transform + - uid: 2005 + components: + - pos: -30.5,4.5 + parent: 34 + type: Transform + - uid: 2006 + components: + - pos: -31.5,4.5 + parent: 34 + type: Transform + - uid: 2007 + components: + - pos: -32.5,4.5 + parent: 34 + type: Transform + - uid: 2078 + components: + - pos: -35.5,-24.5 + parent: 34 + type: Transform + - uid: 2288 + components: + - pos: -34.5,-24.5 + parent: 34 + type: Transform + - uid: 2306 + components: + - pos: -20.5,-27.5 + parent: 34 + type: Transform + - uid: 2316 + components: + - pos: -24.5,-24.5 + parent: 34 + type: Transform + - uid: 2479 + components: + - pos: -27.5,-30.5 + parent: 34 + type: Transform + - uid: 2491 + components: + - pos: 33.5,-4.5 + parent: 34 + type: Transform + - uid: 2502 + components: + - pos: 46.5,-10.5 + parent: 34 + type: Transform + - uid: 2546 + components: + - pos: -51.5,-20.5 + parent: 34 + type: Transform + - uid: 2562 + components: + - pos: -51.5,-21.5 + parent: 34 + type: Transform + - uid: 3189 + components: + - pos: 46.5,-13.5 + parent: 34 + type: Transform + - uid: 3209 + components: + - pos: -30.5,-49.5 + parent: 34 + type: Transform + - uid: 3215 + components: + - pos: -30.5,-48.5 + parent: 34 + type: Transform + - uid: 3223 + components: + - pos: 15.5,-35.5 + parent: 34 + type: Transform + - uid: 3264 + components: + - pos: -35.5,-50.5 + parent: 34 + type: Transform + - uid: 3268 + components: + - pos: -35.5,-48.5 + parent: 34 + type: Transform + - uid: 3286 + components: + - pos: 43.5,-31.5 + parent: 34 + type: Transform + - uid: 3287 + components: + - pos: -26.5,-32.5 + parent: 34 + type: Transform + - uid: 3332 + components: + - pos: -36.5,-16.5 + parent: 34 + type: Transform + - uid: 3333 + components: + - pos: -36.5,-17.5 + parent: 34 + type: Transform + - uid: 3334 + components: + - pos: -36.5,-18.5 + parent: 34 + type: Transform + - uid: 3343 + components: + - pos: 21.5,-14.5 + parent: 34 + type: Transform + - uid: 3347 + components: + - pos: -29.5,-2.5 + parent: 34 + type: Transform + - uid: 3348 + components: + - pos: -30.5,-2.5 + parent: 34 + type: Transform + - uid: 3478 + components: + - pos: 21.5,-12.5 + parent: 34 + type: Transform + - uid: 3504 + components: + - pos: 21.5,-7.5 + parent: 34 + type: Transform + - uid: 3506 + components: + - pos: 18.5,-10.5 + parent: 34 + type: Transform + - uid: 3513 + components: + - pos: 21.5,-6.5 + parent: 34 + type: Transform + - uid: 3518 + components: + - pos: 15.5,-4.5 + parent: 34 + type: Transform + - uid: 3519 + components: + - pos: 21.5,-4.5 + parent: 34 + type: Transform + - uid: 3521 + components: + - pos: 21.5,-5.5 + parent: 34 + type: Transform + - uid: 3525 + components: + - pos: 15.5,-6.5 + parent: 34 + type: Transform + - uid: 3526 + components: + - pos: 15.5,-5.5 + parent: 34 + type: Transform + - uid: 3604 + components: + - pos: 29.5,-12.5 + parent: 34 + type: Transform + - uid: 3605 + components: + - pos: 27.5,-12.5 + parent: 34 + type: Transform + - uid: 3607 + components: + - pos: 26.5,-10.5 + parent: 34 + type: Transform + - uid: 3608 + components: + - pos: 26.5,-9.5 + parent: 34 + type: Transform + - uid: 3645 + components: + - pos: 26.5,-1.5 + parent: 34 + type: Transform + - uid: 3646 + components: + - pos: 28.5,-1.5 + parent: 34 + type: Transform + - uid: 3652 + components: + - pos: 25.5,-1.5 + parent: 34 + type: Transform + - uid: 3673 + components: + - pos: 29.5,-1.5 + parent: 34 + type: Transform + - uid: 3675 + components: + - pos: 10.5,-49.5 + parent: 34 + type: Transform + - uid: 3686 + components: + - pos: 11.5,-49.5 + parent: 34 + type: Transform + - uid: 3695 + components: + - pos: 24.5,1.5 + parent: 34 + type: Transform + - uid: 3779 + components: + - pos: -36.5,-37.5 + parent: 34 + type: Transform + - uid: 3781 + components: + - pos: -36.5,-35.5 + parent: 34 + type: Transform + - uid: 3867 + components: + - pos: 19.5,-28.5 + parent: 34 + type: Transform + - uid: 3946 + components: + - pos: -11.5,-46.5 + parent: 34 + type: Transform + - uid: 3953 + components: + - pos: -11.5,-45.5 + parent: 34 + type: Transform + - uid: 3954 + components: + - pos: -11.5,-48.5 + parent: 34 + type: Transform + - uid: 3992 + components: + - pos: 43.5,-32.5 + parent: 34 + type: Transform + - uid: 4058 + components: + - pos: -9.5,-49.5 + parent: 34 + type: Transform + - uid: 4060 + components: + - pos: -7.5,-49.5 + parent: 34 + type: Transform + - uid: 4062 + components: + - pos: -8.5,-49.5 + parent: 34 + type: Transform + - uid: 4090 + components: + - pos: 2.5,-53.5 + parent: 34 + type: Transform + - uid: 4091 + components: + - pos: 1.5,-53.5 + parent: 34 + type: Transform + - uid: 4092 + components: + - pos: 0.5,-53.5 + parent: 34 + type: Transform + - uid: 4101 + components: + - pos: 6.5,-51.5 + parent: 34 + type: Transform + - uid: 4102 + components: + - pos: 4.5,-51.5 + parent: 34 + type: Transform + - uid: 4103 + components: + - pos: -1.5,-51.5 + parent: 34 + type: Transform + - uid: 4104 + components: + - pos: -3.5,-51.5 + parent: 34 + type: Transform + - uid: 4123 + components: + - pos: -11.5,-47.5 + parent: 34 + type: Transform + - uid: 4168 + components: + - pos: 30.5,-12.5 + parent: 34 + type: Transform + - uid: 4267 + components: + - pos: 25.5,-30.5 + parent: 34 + type: Transform + - uid: 4268 + components: + - pos: 26.5,-30.5 + parent: 34 + type: Transform + - uid: 4316 + components: + - pos: 29.5,-33.5 + parent: 34 + type: Transform + - uid: 4317 + components: + - pos: 29.5,-34.5 + parent: 34 + type: Transform + - uid: 4318 + components: + - pos: 29.5,-35.5 + parent: 34 + type: Transform + - uid: 4352 + components: + - pos: 35.5,-33.5 + parent: 34 + type: Transform + - uid: 4353 + components: + - pos: 35.5,-34.5 + parent: 34 + type: Transform + - uid: 4354 + components: + - pos: 35.5,-35.5 + parent: 34 + type: Transform + - uid: 4376 + components: + - pos: 32.5,-30.5 + parent: 34 + type: Transform + - uid: 4402 + components: + - pos: 19.5,-38.5 + parent: 34 + type: Transform + - uid: 4403 + components: + - pos: 19.5,-37.5 + parent: 34 + type: Transform + - uid: 4502 + components: + - pos: 37.5,-2.5 + parent: 34 + type: Transform + - uid: 4530 + components: + - pos: -6.5,-54.5 + parent: 34 + type: Transform + - uid: 4541 + components: + - pos: 46.5,-2.5 + parent: 34 + type: Transform + - uid: 4575 + components: + - pos: 8.5,-51.5 + parent: 34 + type: Transform + - uid: 4644 + components: + - pos: 51.5,-0.5 + parent: 34 + type: Transform + - uid: 4646 + components: + - pos: 51.5,0.5 + parent: 34 + type: Transform + - uid: 4664 + components: + - pos: 45.5,-5.5 + parent: 34 + type: Transform + - uid: 4665 + components: + - pos: 42.5,-5.5 + parent: 34 + type: Transform + - uid: 4670 + components: + - pos: -6.5,-53.5 + parent: 34 + type: Transform + - uid: 4688 + components: + - pos: 51.5,-3.5 + parent: 34 + type: Transform + - uid: 4689 + components: + - pos: 51.5,-1.5 + parent: 34 + type: Transform + - uid: 4691 + components: + - pos: 43.5,2.5 + parent: 34 + type: Transform + - uid: 4692 + components: + - pos: 41.5,2.5 + parent: 34 + type: Transform + - uid: 4733 + components: + - pos: 44.5,7.5 + parent: 34 + type: Transform + - uid: 4734 + components: + - pos: 43.5,7.5 + parent: 34 + type: Transform + - uid: 4735 + components: + - pos: 46.5,5.5 + parent: 34 + type: Transform + - uid: 4736 + components: + - pos: 46.5,4.5 + parent: 34 + type: Transform + - uid: 4737 + components: + - pos: 39.5,7.5 + parent: 34 + type: Transform + - uid: 4738 + components: + - pos: 38.5,7.5 + parent: 34 + type: Transform + - uid: 4739 + components: + - pos: 37.5,7.5 + parent: 34 + type: Transform + - uid: 4766 + components: + - pos: 41.5,-12.5 + parent: 34 + type: Transform + - uid: 4870 + components: + - pos: 41.5,-9.5 + parent: 34 + type: Transform + - uid: 4874 + components: + - pos: -14.5,-38.5 + parent: 34 + type: Transform + - uid: 5264 + components: + - pos: -2.5,-55.5 + parent: 34 + type: Transform + - uid: 5265 + components: + - pos: 5.5,-55.5 + parent: 34 + type: Transform + - uid: 5276 + components: + - pos: 21.5,-44.5 + parent: 34 + type: Transform + - uid: 5277 + components: + - pos: 20.5,-44.5 + parent: 34 + type: Transform + - uid: 5279 + components: + - pos: 22.5,-44.5 + parent: 34 + type: Transform + - uid: 5404 + components: + - pos: 27.5,-44.5 + parent: 34 + type: Transform + - uid: 5405 + components: + - pos: 27.5,-45.5 + parent: 34 + type: Transform + - uid: 5406 + components: + - pos: 28.5,-46.5 + parent: 34 + type: Transform + - uid: 5407 + components: + - pos: 29.5,-46.5 + parent: 34 + type: Transform + - uid: 5408 + components: + - pos: 30.5,-46.5 + parent: 34 + type: Transform + - uid: 5410 + components: + - pos: 34.5,-44.5 + parent: 34 + type: Transform + - uid: 5485 + components: + - pos: 35.5,-46.5 + parent: 34 + type: Transform + - uid: 5488 + components: + - pos: 32.5,-46.5 + parent: 34 + type: Transform + - uid: 5496 + components: + - pos: 30.5,-42.5 + parent: 34 + type: Transform + - uid: 5498 + components: + - pos: 37.5,-37.5 + parent: 34 + type: Transform + - uid: 5503 + components: + - pos: 41.5,-39.5 + parent: 34 + type: Transform + - uid: 5504 + components: + - pos: 41.5,-40.5 + parent: 34 + type: Transform + - uid: 5505 + components: + - pos: 41.5,-38.5 + parent: 34 + type: Transform + - uid: 5506 + components: + - pos: 41.5,-41.5 + parent: 34 + type: Transform + - uid: 5595 + components: + - pos: -20.5,1.5 + parent: 34 + type: Transform + - uid: 5600 + components: + - pos: -26.5,1.5 + parent: 34 + type: Transform + - uid: 5612 + components: + - pos: -24.5,7.5 + parent: 34 + type: Transform + - uid: 5613 + components: + - pos: -27.5,7.5 + parent: 34 + type: Transform + - uid: 5614 + components: + - pos: -26.5,6.5 + parent: 34 + type: Transform + - uid: 5734 + components: + - pos: -20.5,6.5 + parent: 34 + type: Transform + - uid: 5735 + components: + - pos: -21.5,6.5 + parent: 34 + type: Transform + - uid: 5736 + components: + - pos: -22.5,6.5 + parent: 34 + type: Transform + - uid: 5737 + components: + - pos: -23.5,6.5 + parent: 34 + type: Transform + - uid: 5824 + components: + - pos: 31.5,-46.5 + parent: 34 + type: Transform + - uid: 5918 + components: + - pos: -34.5,0.5 + parent: 34 + type: Transform + - uid: 5919 + components: + - pos: -35.5,0.5 + parent: 34 + type: Transform + - uid: 5927 + components: + - pos: -44.5,6.5 + parent: 34 + type: Transform + - uid: 5928 + components: + - pos: -57.5,0.5 + parent: 34 + type: Transform + - uid: 5946 + components: + - pos: -57.5,-0.5 + parent: 34 + type: Transform + - uid: 6206 + components: + - pos: 15.5,15.5 + parent: 34 + type: Transform + - uid: 6207 + components: + - pos: 15.5,14.5 + parent: 34 + type: Transform + - uid: 6230 + components: + - pos: -49.5,-24.5 + parent: 34 + type: Transform + - uid: 6231 + components: + - pos: -49.5,-27.5 + parent: 34 + type: Transform + - uid: 6341 + components: + - pos: 15.5,0.5 + parent: 34 + type: Transform + - uid: 6342 + components: + - pos: 15.5,-1.5 + parent: 34 + type: Transform + - uid: 6343 + components: + - pos: 15.5,1.5 + parent: 34 + type: Transform + - uid: 6383 + components: + - pos: -32.5,-51.5 + parent: 34 + type: Transform + - uid: 6384 + components: + - pos: -34.5,-51.5 + parent: 34 + type: Transform + - uid: 6395 + components: + - pos: 14.5,-35.5 + parent: 34 + type: Transform + - uid: 6403 + components: + - pos: 5.5,20.5 + parent: 34 + type: Transform + - uid: 6698 + components: + - pos: 43.5,-33.5 + parent: 34 + type: Transform + - uid: 7162 + components: + - pos: 19.5,-29.5 + parent: 34 + type: Transform + - uid: 7163 + components: + - pos: 19.5,-30.5 + parent: 34 + type: Transform + - uid: 7164 + components: + - pos: 19.5,-31.5 + parent: 34 + type: Transform + - uid: 7166 + components: + - pos: 23.5,-31.5 + parent: 34 + type: Transform + - uid: 7168 + components: + - pos: 23.5,-37.5 + parent: 34 + type: Transform + - uid: 7169 + components: + - pos: 29.5,-26.5 + parent: 34 + type: Transform + - uid: 7170 + components: + - pos: 33.5,-26.5 + parent: 34 + type: Transform + - uid: 7380 + components: + - pos: 32.5,9.5 + parent: 34 + type: Transform + - uid: 7381 + components: + - pos: 31.5,9.5 + parent: 34 + type: Transform + - uid: 8471 + components: + - pos: 31.5,-4.5 + parent: 34 + type: Transform + - uid: 8837 + components: + - pos: 43.5,-14.5 + parent: 34 + type: Transform + - uid: 8907 + components: + - pos: -5.5,-55.5 + parent: 34 + type: Transform + - uid: 8932 + components: + - pos: 9.5,-54.5 + parent: 34 + type: Transform + - uid: 9105 + components: + - pos: 9.5,-52.5 + parent: 34 + type: Transform + - uid: 9138 + components: + - pos: 9.5,-53.5 + parent: 34 + type: Transform + - uid: 9463 + components: + - pos: 46.5,-0.5 + parent: 34 + type: Transform + - uid: 10015 + components: + - pos: 37.5,-4.5 + parent: 34 + type: Transform + - uid: 10252 + components: + - pos: -58.5,-4.5 + parent: 34 + type: Transform + - uid: 10253 + components: + - pos: -58.5,-5.5 + parent: 34 + type: Transform + - uid: 10457 + components: + - pos: -4.5,15.5 + parent: 34 + type: Transform + - uid: 10490 + components: + - pos: 46.5,-1.5 + parent: 34 + type: Transform + - uid: 10628 + components: + - pos: -45.5,6.5 + parent: 34 + type: Transform + - uid: 10629 + components: + - pos: -46.5,6.5 + parent: 34 + type: Transform + - uid: 10746 + components: + - pos: 16.5,-35.5 + parent: 34 + type: Transform + - uid: 10884 + components: + - pos: 13.5,20.5 + parent: 34 + type: Transform + - uid: 10967 + components: + - pos: -60.5,-10.5 + parent: 34 + type: Transform + - uid: 10976 + components: + - pos: 38.5,-21.5 + parent: 34 + type: Transform + - uid: 10977 + components: + - pos: 38.5,-25.5 + parent: 34 + type: Transform + - uid: 11037 + components: + - pos: 43.5,-36.5 + parent: 34 + type: Transform + - uid: 11039 + components: + - pos: -6.5,-52.5 + parent: 34 + type: Transform + - uid: 11072 + components: + - pos: 43.5,-35.5 + parent: 34 + type: Transform + - uid: 11207 + components: + - pos: 21.5,13.5 + parent: 34 + type: Transform + - uid: 11208 + components: + - pos: 20.5,13.5 + parent: 34 + type: Transform + - uid: 11264 + components: + - pos: 27.5,13.5 + parent: 34 + type: Transform + - uid: 11265 + components: + - pos: 26.5,13.5 + parent: 34 + type: Transform + - uid: 11266 + components: + - pos: 25.5,13.5 + parent: 34 + type: Transform + - uid: 11295 + components: + - pos: -60.5,-9.5 + parent: 34 + type: Transform + - uid: 11308 + components: + - pos: 1.5,-32.5 + parent: 34 + type: Transform + - uid: 11314 + components: + - pos: 43.5,-34.5 + parent: 34 + type: Transform + - uid: 11671 + components: + - pos: -40.5,11.5 + parent: 34 + type: Transform + - uid: 11672 + components: + - pos: -41.5,11.5 + parent: 34 + type: Transform + - uid: 11684 + components: + - pos: 51.5,-2.5 + parent: 34 + type: Transform + - uid: 11765 + components: + - pos: 9.5,19.5 + parent: 34 + type: Transform + - uid: 11775 + components: + - pos: 3.5,16.5 + parent: 34 + type: Transform + - uid: 11790 + components: + - pos: -0.5,15.5 + parent: 34 + type: Transform + - uid: 11797 + components: + - pos: 3.5,18.5 + parent: 34 + type: Transform + - uid: 11800 + components: + - pos: 3.5,17.5 + parent: 34 + type: Transform + - uid: 11801 + components: + - pos: 10.5,19.5 + parent: 34 + type: Transform + - uid: 11803 + components: + - pos: 15.5,18.5 + parent: 34 + type: Transform + - uid: 11832 + components: + - pos: -1.5,15.5 + parent: 34 + type: Transform + - uid: 11847 + components: + - pos: 8.5,19.5 + parent: 34 + type: Transform + - uid: 11886 + components: + - pos: -24.5,-43.5 + parent: 34 + type: Transform + - uid: 11906 + components: + - pos: 15.5,17.5 + parent: 34 + type: Transform + - uid: 12076 + components: + - pos: -25.5,-43.5 + parent: 34 + type: Transform + - uid: 12188 + components: + - pos: 45.5,-14.5 + parent: 34 + type: Transform + - uid: 12256 + components: + - pos: -60.5,-33.5 + parent: 34 + type: Transform + - uid: 12325 + components: + - pos: -15.5,-43.5 + parent: 34 + type: Transform + - uid: 12337 + components: + - pos: -16.5,-43.5 + parent: 34 + type: Transform + - uid: 12353 + components: + - pos: 8.5,-55.5 + parent: 34 + type: Transform + - uid: 12356 + components: + - pos: -5.5,-51.5 + parent: 34 + type: Transform + - uid: 12411 + components: + - pos: -18.5,-36.5 + parent: 34 + type: Transform + - uid: 12412 + components: + - pos: -18.5,-39.5 + parent: 34 + type: Transform + - uid: 12413 + components: + - pos: -15.5,-39.5 + parent: 34 + type: Transform + - uid: 12423 + components: + - pos: 46.5,-7.5 + parent: 34 + type: Transform + - uid: 12460 + components: + - pos: 41.5,-6.5 + parent: 34 + type: Transform + - uid: 12462 + components: + - pos: 40.5,-2.5 + parent: 34 + type: Transform + - uid: 12500 + components: + - pos: -17.5,-39.5 + parent: 34 + type: Transform + - uid: 12549 + components: + - pos: -60.5,-29.5 + parent: 34 + type: Transform + - uid: 12550 + components: + - pos: -60.5,-32.5 + parent: 34 + type: Transform + - uid: 12560 + components: + - pos: -60.5,-31.5 + parent: 34 + type: Transform + - uid: 12564 + components: + - pos: -60.5,-27.5 + parent: 34 + type: Transform + - uid: 12570 + components: + - pos: -60.5,-28.5 + parent: 34 + type: Transform + - uid: 12602 + components: + - pos: -16.5,-39.5 + parent: 34 + type: Transform + - uid: 12614 + components: + - pos: -17.5,-36.5 + parent: 34 + type: Transform + - uid: 12632 + components: + - pos: -33.5,-51.5 + parent: 34 + type: Transform + - uid: 12705 + components: + - pos: 40.5,-4.5 + parent: 34 + type: Transform + - uid: 12709 + components: + - pos: 44.5,-14.5 + parent: 34 + type: Transform +- proto: RemoteSignaller + entities: + - uid: 12319 + components: + - pos: -54.716194,-35.31927 + parent: 34 + type: Transform + - linkedPorts: + 12320: + - Pressed: Trigger + type: DeviceLinkSource +- proto: ResearchAndDevelopmentServer + entities: + - uid: 581 + components: + - pos: -33.5,-7.5 + parent: 34 + type: Transform +- proto: ReverseEngineeringMachine + entities: + - uid: 4520 + components: + - pos: -35.5,-19.5 + parent: 34 + type: Transform +- proto: Roboisseur + entities: + - uid: 218 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-11.5 + parent: 34 + type: Transform +- proto: RollerBed + entities: + - uid: 1365 + components: + - pos: 5.5,-26.5 + parent: 34 + type: Transform +- proto: RubberStampApproved + entities: + - uid: 1979 + components: + - pos: -17.69175,-19.103989 + parent: 34 + type: Transform +- proto: RubberStampDenied + entities: + - uid: 1980 + components: + - pos: -17.681334,-19.270771 + parent: 34 + type: Transform +- proto: SalvageCanisterSpawner + entities: + - uid: 133 + components: + - pos: -7.5,-33.5 + parent: 34 + type: Transform +- proto: SalvageMagnet + entities: + - uid: 1063 + components: + - pos: -30.5,-58.5 + parent: 34 + type: Transform +- proto: ScalpelShiv + entities: + - uid: 4745 + components: + - rot: 3.141592653589793 rad + pos: 40.427826,3.6428523 + parent: 34 + type: Transform + - uid: 11290 + components: + - rot: -1.5707963267948966 rad + pos: 33.900448,3.428866 + parent: 34 + type: Transform +- proto: SchoolgirlUniformSpawner + entities: + - uid: 11028 + components: + - pos: -42.5,-31.5 + parent: 34 + type: Transform +- proto: Screen + entities: + - uid: 4693 + components: + - rot: 3.141592653589793 rad + pos: 14.5,19.5 + parent: 34 + type: Transform + - uid: 8105 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-50.5 + parent: 34 + type: Transform + - uid: 12185 + components: + - rot: 3.141592653589793 rad + pos: 4.5,19.5 + parent: 34 + type: Transform + - uid: 12937 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-50.5 + parent: 34 + type: Transform +- proto: Screwdriver + entities: + - uid: 5558 + components: + - rot: 3.141592653589793 rad + pos: -18.468266,3.9137797 + parent: 34 + type: Transform +- proto: SecBreachingHammer + entities: + - uid: 6565 + components: + - rot: 1.5707963267948966 rad + pos: 26.47547,-0.5123596 + parent: 34 + type: Transform +- proto: SecurityTechFab + entities: + - uid: 3709 + components: + - pos: 28.5,1.5 + parent: 34 + type: Transform +- proto: SeedExtractor + entities: + - uid: 390 + components: + - pos: -20.5,-8.5 + parent: 34 + type: Transform +- proto: ShardGlass + entities: + - uid: 12772 + components: + - pos: -21.936665,12.978247 + parent: 34 + type: Transform + - uid: 12773 + components: + - pos: -21.23354,11.650122 + parent: 34 + type: Transform + - uid: 12774 + components: + - pos: -22.155415,10.571997 + parent: 34 + type: Transform + - uid: 12775 + components: + - pos: -17.95229,12.650122 + parent: 34 + type: Transform + - uid: 12776 + components: + - pos: -16.811665,11.478247 + parent: 34 + type: Transform + - uid: 12777 + components: + - pos: -17.70229,10.368872 + parent: 34 + type: Transform + - uid: 12778 + components: + - pos: -17.73354,10.540747 + parent: 34 + type: Transform + - uid: 12779 + components: + - pos: -14.174653,13.212622 + parent: 34 + type: Transform + - uid: 12781 + components: + - pos: -13.549653,12.900122 + parent: 34 + type: Transform + - uid: 12783 + components: + - pos: -13.299653,11.556372 + parent: 34 + type: Transform + - uid: 12790 + components: + - pos: -29.486526,13.978247 + parent: 34 + type: Transform + - uid: 12836 + components: + - pos: -30.783401,12.759497 + parent: 34 + type: Transform + - uid: 12839 + components: + - pos: -29.142776,10.618872 + parent: 34 + type: Transform + - uid: 12840 + components: + - pos: -31.642776,14.040747 + parent: 34 + type: Transform +- proto: SheetGlass + entities: + - uid: 2319 + components: + - pos: -23.42932,-25.482 + parent: 34 + type: Transform + - uid: 4032 + components: + - pos: -45.440067,-22.364462 + parent: 34 + type: Transform + - uid: 11313 + components: + - pos: -10.453392,-38.404453 + parent: 34 + type: Transform +- proto: SheetPaper + entities: + - uid: 11945 + components: + - pos: -32.350746,-27.221853 + parent: 34 + type: Transform +- proto: SheetPlasma + entities: + - uid: 11132 + components: + - pos: -34.59602,1.5904913 + parent: 34 + type: Transform +- proto: SheetPlasma1 + entities: + - uid: 6248 + components: + - pos: -1.0009673,-26.397503 + parent: 34 + type: Transform +- proto: SheetPlasteel + entities: + - uid: 7425 + components: + - pos: -43.65221,-31.345268 + parent: 34 + type: Transform + - count: 15 + type: Stack + - uid: 8077 + components: + - pos: -19.331738,-14.409908 + parent: 34 + type: Transform + - count: 10 + type: Stack +- proto: SheetPlastic + entities: + - uid: 2320 + components: + - pos: -24.46057,-25.461153 + parent: 34 + type: Transform + - uid: 7405 + components: + - pos: -46.549442,-22.364462 + parent: 34 + type: Transform + - uid: 11889 + components: + - pos: -7.4719124,-38.466084 + parent: 34 + type: Transform +- proto: SheetSteel + entities: + - uid: 689 + components: + - pos: -8.470482,-38.473114 + parent: 34 + type: Transform + - uid: 2318 + components: + - pos: -22.46057,-25.461153 + parent: 34 + type: Transform + - uid: 3226 + components: + - pos: -47.440067,-22.473837 + parent: 34 + type: Transform + - uid: 7399 + components: + - pos: -14.468778,4.521938 + parent: 34 + type: Transform + - uid: 7421 + components: + - pos: -43.30846,-31.56417 + parent: 34 + type: Transform + - count: 15 + type: Stack + - uid: 8034 + components: + - pos: 28.599783,-43.326553 + parent: 34 + type: Transform + - uid: 8076 + components: + - pos: -19.644238,-14.534996 + parent: 34 + type: Transform + - count: 15 + type: Stack +- proto: Shinai + entities: + - uid: 147 + components: + - rot: 1.5707963267948966 rad + pos: -0.57282126,8.550755 + parent: 34 + type: Transform + - uid: 148 + components: + - rot: 1.5707963267948966 rad + pos: -0.41657126,8.602873 + parent: 34 + type: Transform + - uid: 168 + components: + - pos: -0.5832379,8.571602 + parent: 34 + type: Transform + - uid: 209 + components: + - pos: -0.41657126,8.561178 + parent: 34 + type: Transform +- proto: ShuttersNormalOpen + entities: + - uid: 843 + components: + - pos: -11.5,-10.5 + parent: 34 + type: Transform + - links: + - 246 + type: DeviceLinkSink + - uid: 844 + components: + - pos: -10.5,-10.5 + parent: 34 + type: Transform + - links: + - 246 + type: DeviceLinkSink + - uid: 845 + components: + - pos: -9.5,-10.5 + parent: 34 + type: Transform + - links: + - 246 + type: DeviceLinkSink + - uid: 846 + components: + - pos: -8.5,-10.5 + parent: 34 + type: Transform + - links: + - 246 + type: DeviceLinkSink + - uid: 2387 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-18.5 + parent: 34 + type: Transform + - links: + - 690 + type: DeviceLinkSink + - uid: 3609 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-9.5 + parent: 34 + type: Transform + - links: + - 2525 + type: DeviceLinkSink + - uid: 3610 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-10.5 + parent: 34 + type: Transform + - links: + - 2525 + type: DeviceLinkSink + - uid: 3611 + components: + - pos: 27.5,-12.5 + parent: 34 + type: Transform + - links: + - 2525 + type: DeviceLinkSink + - uid: 3612 + components: + - pos: 29.5,-12.5 + parent: 34 + type: Transform + - links: + - 2525 + type: DeviceLinkSink + - uid: 4169 + components: + - pos: 30.5,-12.5 + parent: 34 + type: Transform + - links: + - 2525 + type: DeviceLinkSink + - uid: 5005 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,1.5 + parent: 34 + type: Transform + - links: + - 4377 + type: DeviceLinkSink + - uid: 5006 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,0.5 + parent: 34 + type: Transform + - links: + - 4377 + type: DeviceLinkSink + - uid: 5007 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-1.5 + parent: 34 + type: Transform + - links: + - 4377 + type: DeviceLinkSink + - uid: 5312 + components: + - pos: -10.5,1.5 + parent: 34 + type: Transform + - links: + - 8431 + type: DeviceLinkSink + - uid: 5541 + components: + - pos: -11.5,1.5 + parent: 34 + type: Transform + - links: + - 8431 + type: DeviceLinkSink + - uid: 6093 + components: + - pos: -9.5,1.5 + parent: 34 + type: Transform + - links: + - 8431 + type: DeviceLinkSink + - uid: 7097 + components: + - pos: -35.5,0.5 + parent: 34 + type: Transform + - links: + - 2278 + type: DeviceLinkSink + - uid: 7098 + components: + - pos: -34.5,0.5 + parent: 34 + type: Transform + - links: + - 2278 + type: DeviceLinkSink + - uid: 12264 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-19.5 + parent: 34 + type: Transform + - links: + - 690 + type: DeviceLinkSink + - uid: 12265 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-21.5 + parent: 34 + type: Transform + - links: + - 690 + type: DeviceLinkSink + - uid: 12328 + components: + - pos: -15.5,-39.5 + parent: 34 + type: Transform + - links: + - 7459 + type: DeviceLinkSink + - uid: 12351 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-38.5 + parent: 34 + type: Transform + - links: + - 7459 + type: DeviceLinkSink + - uid: 12900 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,8.5 + parent: 34 + type: Transform + - links: + - 10766 + type: DeviceLinkSink + - uid: 12901 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,7.5 + parent: 34 + type: Transform + - links: + - 10766 + type: DeviceLinkSink + - uid: 12902 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,6.5 + parent: 34 + type: Transform + - links: + - 10766 + type: DeviceLinkSink + - uid: 12903 + components: + - pos: 10.5,4.5 + parent: 34 + type: Transform + - links: + - 10766 + type: DeviceLinkSink + - uid: 12904 + components: + - pos: 7.5,4.5 + parent: 34 + type: Transform + - links: + - 10766 + type: DeviceLinkSink + - uid: 12905 + components: + - pos: 8.5,4.5 + parent: 34 + type: Transform + - links: + - 10766 + type: DeviceLinkSink + - uid: 12946 + components: + - pos: -16.5,-39.5 + parent: 34 + type: Transform + - links: + - 7459 + type: DeviceLinkSink + - uid: 12947 + components: + - pos: -17.5,-39.5 + parent: 34 + type: Transform + - links: + - 7459 + type: DeviceLinkSink + - uid: 12948 + components: + - pos: -18.5,-39.5 + parent: 34 + type: Transform + - links: + - 7459 + type: DeviceLinkSink + - uid: 12951 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-36.5 + parent: 34 + type: Transform + - links: + - 7459 + type: DeviceLinkSink + - uid: 12952 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-36.5 + parent: 34 + type: Transform + - links: + - 7459 + type: DeviceLinkSink +- proto: ShuttersWindowOpen + entities: + - uid: 1287 + components: + - pos: -26.5,-9.5 + parent: 34 + type: Transform + - links: + - 1163 + type: DeviceLinkSink +- proto: shuttle_manipulator + entities: + - uid: 8359 + components: + - pos: 39.5,-34.5 + parent: 34 + type: Transform +- proto: SignAi + entities: + - uid: 6003 + components: + - pos: 46.5,-22.5 + parent: 34 + type: Transform + - uid: 6004 + components: + - pos: 38.5,-24.5 + parent: 34 + type: Transform +- proto: SignalButton + entities: + - uid: 678 + components: + - pos: -49.5,-39.5 + parent: 34 + type: Transform + - linkedPorts: + 1484: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 679 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,-46.5 + parent: 34 + type: Transform + - linkedPorts: + 1484: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignalButtonDirectional + entities: + - uid: 7459 + components: + - pos: -15.5,-36.5 + parent: 34 + type: Transform + - linkedPorts: + 12952: + - Pressed: Close + - Pressed: Open + - Pressed: Toggle + 12951: + - Pressed: Close + - Pressed: Open + - Pressed: Toggle + 12328: + - Pressed: Open + - Pressed: Close + - Pressed: Toggle + 12351: + - Pressed: Open + - Pressed: Close + - Pressed: Toggle + 12946: + - Pressed: Open + - Pressed: Close + - Pressed: Toggle + 12947: + - Pressed: Open + - Pressed: Close + - Pressed: Toggle + 12948: + - Pressed: Open + - Pressed: Close + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignalSwitch + entities: + - uid: 246 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-6.5 + parent: 34 + type: Transform + - linkedPorts: + 843: + - On: Close + - Off: Open + 844: + - On: Close + - Off: Open + 845: + - On: Close + - Off: Open + 846: + - On: Close + - Off: Open + type: DeviceLinkSource + - uid: 1054 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-43.5 + parent: 34 + type: Transform + - linkedPorts: + 8449: + - On: Reverse + - Off: Off + 902: + - On: Forward + - Off: Off + 11806: + - On: Open + - Off: Close + 7707: + - On: Open + - Off: Close + 1307: + - On: Forward + - Off: Off + 12691: + - On: Forward + - Off: Off + 12692: + - On: Forward + - Off: Off + 12693: + - On: Forward + - Off: Off + 12697: + - On: Forward + - Off: Off + 12698: + - On: Forward + - Off: Off + 12699: + - On: Forward + - Off: Off + type: DeviceLinkSource + - uid: 1163 + components: + - pos: -25.5,-6.5 + parent: 34 + type: Transform + - linkedPorts: + 836: + - On: Open + - Off: Close + 1287: + - On: Close + - Off: Open + type: DeviceLinkSource + - uid: 3750 + components: + - name: cell shutter switch + type: MetaData + - rot: 1.5707963267948966 rad + pos: 21.5,-2.5 + parent: 34 + type: Transform + - linkedPorts: + 3639: + - On: Close + - Off: Open + 3640: + - On: Close + - Off: Open + 3641: + - On: Close + - Off: Open + type: DeviceLinkSource + - uid: 7996 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-4.5 + parent: 34 + type: Transform + - linkedPorts: + 8683: + - On: Close + - Off: Open + type: DeviceLinkSource + - uid: 12307 + components: + - rot: 1.5707963267948966 rad + pos: -60.5,-35.5 + parent: 34 + type: Transform + - linkedPorts: + 12306: + - On: Open + - Off: Close + 12300: + - On: Open + - Off: Close + 12295: + - On: Open + - Off: Close + type: DeviceLinkSource +- proto: SignalSwitchDirectional + entities: + - uid: 690 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-23.5 + parent: 34 + type: Transform + - linkedPorts: + 12265: + - On: Close + - Off: Open + 12264: + - On: Close + - Off: Open + 2387: + - On: Close + - Off: Open + type: DeviceLinkSource + - uid: 2278 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,2.5 + parent: 34 + type: Transform + - linkedPorts: + 7097: + - On: Close + - Off: Open + 7098: + - On: Close + - Off: Open + type: DeviceLinkSource + - uid: 2525 + components: + - pos: 28.5,-8.5 + parent: 34 + type: Transform + - linkedPorts: + 3609: + - On: Close + - Off: Open + 3610: + - On: Close + - Off: Open + 3611: + - On: Close + - Off: Open + 3612: + - On: Close + - Off: Open + 4169: + - On: Close + - Off: Open + type: DeviceLinkSource + - uid: 4377 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-1.5 + parent: 34 + type: Transform + - linkedPorts: + 5007: + - On: Close + - Off: Open + 5006: + - On: Close + - Off: Open + 5005: + - On: Close + - Off: Open + type: DeviceLinkSource + - uid: 8431 + components: + - rot: 3.141592653589793 rad + pos: -7.5,1.5 + parent: 34 + type: Transform + - linkedPorts: + 6093: + - On: Close + - Off: Open + 5312: + - On: Close + - Off: Open + 5541: + - On: Close + - Off: Open + type: DeviceLinkSource + - uid: 10011 + components: + - name: Janitorial service lights + type: MetaData + - rot: 3.141592653589793 rad + pos: 21.5,-11.5 + parent: 34 + type: Transform + - linkedPorts: + 12927: + - On: On + - Off: Off + type: DeviceLinkSource + - uid: 10413 + components: + - name: Janitorial service lights + type: MetaData + - rot: -1.5707963267948966 rad + pos: -30.5,-19.5 + parent: 34 + type: Transform + - linkedPorts: + 12371: + - On: On + - Off: Off + type: DeviceLinkSource + - uid: 10572 + components: + - name: Janitorial service lights + type: MetaData + - rot: 3.141592653589793 rad + pos: -36.5,-28.5 + parent: 34 + type: Transform + - linkedPorts: + 10684: + - On: On + - Off: Off + type: DeviceLinkSource + - uid: 10766 + components: + - pos: 10.5,9.5 + parent: 34 + type: Transform + - linkedPorts: + 12900: + - On: Close + - Off: Open + 12901: + - On: Close + - Off: Open + 12902: + - On: Close + - Off: Open + 12903: + - On: Close + - Off: Open + 12905: + - On: Close + - Off: Open + 12904: + - On: Close + - Off: Open + type: DeviceLinkSource + - uid: 12928 + components: + - name: Janitorial service lights + type: MetaData + - rot: 1.5707963267948966 rad + pos: 1.5,-31.5 + parent: 34 + type: Transform + - linkedPorts: + 10010: + - On: On + - Off: Off + 10492: + - On: On + - Off: Off + type: DeviceLinkSource +- proto: SignAnomaly + entities: + - uid: 963 + components: + - pos: -28.5,-6.5 + parent: 34 + type: Transform +- proto: SignAnomaly2 + entities: + - uid: 5669 + components: + - pos: -36.5,0.5 + parent: 34 + type: Transform +- proto: SignArmory + entities: + - uid: 3698 + components: + - pos: 24.5,-1.5 + parent: 34 + type: Transform +- proto: SignAtmos + entities: + - uid: 1599 + components: + - pos: -36.5,-34.5 + parent: 34 + type: Transform + - uid: 1816 + components: + - pos: -41.5,-31.5 + parent: 34 + type: Transform +- proto: SignBar + entities: + - uid: 304 + components: + - pos: -2.5,-11.5 + parent: 34 + type: Transform +- proto: SignBridge + entities: + - uid: 4443 + components: + - pos: 31.5,-26.5 + parent: 34 + type: Transform +- proto: SignCanisters + entities: + - uid: 1606 + components: + - pos: -36.5,-29.5 + parent: 34 + type: Transform +- proto: SignCargo + entities: + - uid: 1892 + components: + - pos: -15.5,-23.5 + parent: 34 + type: Transform + - uid: 1933 + components: + - pos: -6.5,-38.5 + parent: 34 + type: Transform +- proto: SignChapel + entities: + - uid: 1992 + components: + - pos: -23.5,-20.5 + parent: 34 + type: Transform +- proto: SignChem + entities: + - uid: 2949 + components: + - pos: 0.5,-30.5 + parent: 34 + type: Transform +- proto: SignCloning + entities: + - uid: 11333 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-38.5 + parent: 34 + type: Transform +- proto: SignConference + entities: + - uid: 4442 + components: + - pos: 35.5,-31.5 + parent: 34 + type: Transform +- proto: SignConspiracyBoard + entities: + - uid: 6137 + components: + - pos: -10.5,6.5 + parent: 34 + type: Transform +- proto: SignCryogenicsMed + entities: + - uid: 1313 + components: + - pos: 2.5,-38.5 + parent: 34 + type: Transform +- proto: SignDirectionalBridge + entities: + - uid: 10373 + components: + - pos: 11.5,-2.5 + parent: 34 + type: Transform + - uid: 10375 + components: + - rot: 1.5707963267948966 rad + pos: 11.498057,-20.727808 + parent: 34 + type: Transform + - uid: 10386 + components: + - rot: 1.5707963267948966 rad + pos: -7.487588,-23.27868 + parent: 34 + type: Transform +- proto: SignDirectionalChapel + entities: + - uid: 185 + components: + - rot: -1.5707963267948966 rad + pos: -8.493627,-23.698729 + parent: 34 + type: Transform +- proto: SignDirectionalDorms + entities: + - uid: 10387 + components: + - rot: -1.5707963267948966 rad + pos: -7.518838,-23.716486 + parent: 34 + type: Transform + - uid: 10402 + components: + - rot: -1.5707963267948966 rad + pos: -5.4955645,1.703541 + parent: 34 + type: Transform + - uid: 10411 + components: + - rot: 3.141592653589793 rad + pos: -36.482975,-20.252234 + parent: 34 + type: Transform +- proto: SignDirectionalEng + entities: + - uid: 159 + components: + - rot: -1.5707963267948966 rad + pos: 10.491532,-2.266921 + parent: 34 + type: Transform + - uid: 184 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-23.5 + parent: 34 + type: Transform + - uid: 10264 + components: + - pos: -40.5,-11.5 + parent: 34 + type: Transform + - uid: 10398 + components: + - pos: -36.5,-2.5 + parent: 34 + type: Transform + - uid: 10407 + components: + - rot: -1.5707963267948966 rad + pos: 10.489528,-21.720585 + parent: 34 + type: Transform + - uid: 10410 + components: + - pos: -36.515026,-20.725943 + parent: 34 + type: Transform +- proto: SignDirectionalEvac + entities: + - uid: 3463 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-2.5 + parent: 34 + type: Transform + - uid: 5957 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-24.5 + parent: 34 + type: Transform + - uid: 10379 + components: + - pos: -4.4991846,1.2674417 + parent: 34 + type: Transform + - uid: 10384 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-21.5 + parent: 34 + type: Transform + - uid: 10388 + components: + - pos: -6.5,-10.5 + parent: 34 + type: Transform + - uid: 10393 + components: + - rot: -1.5707963267948966 rad + pos: 20.489033,-40.71605 + parent: 34 + type: Transform + - uid: 10394 + components: + - pos: -2.5,-42.5 + parent: 34 + type: Transform + - uid: 10396 + components: + - pos: -2.5,-25.5 + parent: 34 + type: Transform +- proto: SignDirectionalFood + entities: + - uid: 10385 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-23.5 + parent: 34 + type: Transform + - uid: 10408 + components: + - rot: -1.5707963267948966 rad + pos: 10.520778,-21.296457 + parent: 34 + type: Transform + - uid: 12537 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-24.5 + parent: 34 + type: Transform + - uid: 12538 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-2.5 + parent: 34 + type: Transform +- proto: SignDirectionalGravity + entities: + - uid: 11474 + components: + - pos: -33.5,-27.5 + parent: 34 + type: Transform +- proto: SignDirectionalHop + entities: + - uid: 77 + components: + - rot: -1.5707963267948966 rad + pos: -8.493627,-23.27656 + parent: 34 + type: Transform + - uid: 10405 + components: + - rot: -1.5707963267948966 rad + pos: 23.494371,-25.253572 + parent: 34 + type: Transform +- proto: SignDirectionalMed + entities: + - uid: 153 + components: + - rot: -1.5707963267948966 rad + pos: 10.507157,-2.7047243 + parent: 34 + type: Transform + - uid: 694 + components: + - pos: -2.504551,-25.707623 + parent: 34 + type: Transform + - uid: 10400 + components: + - rot: 1.5707963267948966 rad + pos: -36.48356,-2.7110643 + parent: 34 + type: Transform + - uid: 10401 + components: + - pos: -5.5,1.5 + parent: 34 + type: Transform + - uid: 10406 + components: + - rot: -1.5707963267948966 rad + pos: 23.513676,-25.72845 + parent: 34 + type: Transform +- proto: SignDirectionalSalvage + entities: + - uid: 11476 + components: + - rot: -1.5707963267948966 rad + pos: -33.49873,-27.715355 + parent: 34 + type: Transform + - uid: 12253 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-32.5 + parent: 34 + type: Transform + - uid: 12432 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-40.5 + parent: 34 + type: Transform +- proto: SignDirectionalSci + entities: + - uid: 186 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 34 + type: Transform + - uid: 10376 + components: + - rot: -1.5707963267948966 rad + pos: -5.4643145,1.2813723 + parent: 34 + type: Transform + - uid: 10404 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-25.5 + parent: 34 + type: Transform +- proto: SignDirectionalSec + entities: + - uid: 155 + components: + - pos: 11.522782,-2.6890879 + parent: 34 + type: Transform + - uid: 10378 + components: + - rot: 1.5707963267948966 rad + pos: -4.4991846,1.7208815 + parent: 34 + type: Transform + - uid: 10383 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-20.5 + parent: 34 + type: Transform + - uid: 10399 + components: + - rot: 1.5707963267948966 rad + pos: -36.501534,-2.2698255 + parent: 34 + type: Transform +- proto: SignDirectionalSolar + entities: + - uid: 10391 + components: + - rot: 3.141592653589793 rad + pos: -27.5,1.5 + parent: 34 + type: Transform + - uid: 10392 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-40.5 + parent: 34 + type: Transform +- proto: SignDirectionalSupply + entities: + - uid: 10377 + components: + - pos: -4.5,1.5 + parent: 34 + type: Transform + - uid: 10409 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-20.5 + parent: 34 + type: Transform + - uid: 11128 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-20.5 + parent: 34 + type: Transform +- proto: SignDirectionalWash + entities: + - uid: 4588 + components: + - pos: 39.5,2.5 + parent: 34 + type: Transform + - uid: 4707 + components: + - pos: -50.5,-2.5 + parent: 34 + type: Transform +- proto: SignDisposalSpace + entities: + - uid: 8128 + components: + - desc: Don't get any ideas. + type: MetaData + - pos: 42.5,7.5 + parent: 34 + type: Transform + - uid: 11306 + components: + - pos: -40.5,6.5 + parent: 34 + type: Transform +- proto: SignDojo + entities: + - uid: 193 + components: + - pos: -0.5,2.5 + parent: 34 + type: Transform +- proto: SignEngineering + entities: + - uid: 2324 + components: + - pos: -26.5,-24.5 + parent: 34 + type: Transform + - uid: 2325 + components: + - pos: -33.5,-24.5 + parent: 34 + type: Transform +- proto: SignEscapePods + entities: + - uid: 68 + components: + - rot: 3.141592653589793 rad + pos: 3.5,15.5 + parent: 34 + type: Transform + - uid: 6692 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-49.5 + parent: 34 + type: Transform +- proto: SignEVA + entities: + - uid: 11003 + components: + - pos: 27.5,-46.5 + parent: 34 + type: Transform + - uid: 11004 + components: + - pos: -25.5,9.5 + parent: 34 + type: Transform +- proto: SignGravity + entities: + - uid: 1123 + components: + - pos: -28.5,-38.5 + parent: 34 + type: Transform +- proto: SignHead + entities: + - uid: 1993 + components: + - desc: A sign designating the head of personnel's office. + name: head of personnel sign + type: MetaData + - pos: -15.5,-20.5 + parent: 34 + type: Transform +- proto: SignHydro2 + entities: + - uid: 1273 + components: + - pos: -14.5,-9.5 + parent: 34 + type: Transform +- proto: SignHydro3 + entities: + - uid: 10372 + components: + - pos: -16.5,-2.5 + parent: 34 + type: Transform +- proto: SignInterrogation + entities: + - uid: 4885 + components: + - pos: 27.5,-15.5 + parent: 34 + type: Transform +- proto: SignJanitor + entities: + - uid: 3728 + components: + - pos: 6.5,-21.5 + parent: 34 + type: Transform +- proto: SignLawyer + entities: + - uid: 11817 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,7.5 + parent: 34 + type: Transform +- proto: SignMail + entities: + - uid: 1895 + components: + - pos: -6.5,-23.5 + parent: 34 + type: Transform +- proto: SignMedical + entities: + - uid: 2934 + components: + - pos: -2.5,-34.5 + parent: 34 + type: Transform +- proto: SignRedOne + entities: + - uid: 11792 + components: + - pos: 1.2183137,15.5 + parent: 34 + type: Transform +- proto: SignRedTwo + entities: + - uid: 11827 + components: + - pos: -2.7816863,15.5 + parent: 34 + type: Transform +- proto: SignRobo + entities: + - uid: 919 + components: + - pos: -40.5,-21.5 + parent: 34 + type: Transform +- proto: SignScience + entities: + - uid: 599 + components: + - pos: -30.5,-20.5 + parent: 34 + type: Transform +- proto: SignSec + entities: + - uid: 10374 + components: + - pos: 15.5,-11.5 + parent: 34 + type: Transform + - uid: 10403 + components: + - pos: 15.5,-15.5 + parent: 34 + type: Transform +- proto: SignSurgery + entities: + - uid: 2950 + components: + - pos: 6.5,-27.5 + parent: 34 + type: Transform + - uid: 11912 + components: + - pos: -49.5,-15.5 + parent: 34 + type: Transform +- proto: SignTelecomms + entities: + - uid: 3276 + components: + - pos: -35.5,-47.5 + parent: 34 + type: Transform +- proto: SignToolStorage + entities: + - uid: 2326 + components: + - pos: -20.5,-24.5 + parent: 34 + type: Transform +- proto: SignVirology + entities: + - uid: 2690 + components: + - pos: 1.5,-35.5 + parent: 34 + type: Transform +- proto: SinkStemlessWater + entities: + - uid: 2216 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-4.5 + parent: 34 + type: Transform + - uid: 4594 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,1.5 + parent: 34 + type: Transform + - uid: 4595 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,0.5 + parent: 34 + type: Transform + - uid: 4596 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-0.5 + parent: 34 + type: Transform +- proto: SinkWide + entities: + - uid: 609 + components: + - pos: 1.5,-3.5 + parent: 34 + type: Transform + - uid: 882 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-6.5 + parent: 34 + type: Transform + - uid: 1006 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-20.5 + parent: 34 + type: Transform + - uid: 12804 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,7.5 + parent: 34 + type: Transform +- proto: SmartFridge + entities: + - uid: 401 + components: + - flags: SessionSpecific + type: MetaData + - pos: -13.5,-7.5 + parent: 34 + type: Transform +- proto: SMESBasic + entities: + - uid: 1124 + components: + - name: AME SMES 1 + type: MetaData + - pos: -33.5,-31.5 + parent: 34 + type: Transform + - uid: 1125 + components: + - name: AME SMES 2 + type: MetaData + - pos: -32.5,-31.5 + parent: 34 + type: Transform + - uid: 1126 + components: + - name: AME SMES 3 + type: MetaData + - pos: -31.5,-31.5 + parent: 34 + type: Transform + - uid: 5388 + components: + - name: Lower Solar's SMES + type: MetaData + - pos: 33.5,-44.5 + parent: 34 + type: Transform + - uid: 5795 + components: + - name: Upper Solar's SMES + type: MetaData + - pos: -27.5,4.5 + parent: 34 + type: Transform + - uid: 11763 + components: + - name: TEG SMES 1 + type: MetaData + - pos: -50.5,-29.5 + parent: 34 + type: Transform + - uid: 11787 + components: + - name: TEG SMES 2 + type: MetaData + - pos: -50.5,-30.5 + parent: 34 + type: Transform +- proto: soda_dispenser + entities: + - uid: 611 + components: + - pos: 5.5,-3.5 + parent: 34 + type: Transform + - uid: 4720 + components: + - pos: 39.5,6.5 + parent: 34 + type: Transform + - uid: 5516 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-41.5 + parent: 34 + type: Transform + - uid: 5796 + components: + - rot: 3.141592653589793 rad + pos: -8.5,7.5 + parent: 34 + type: Transform + - uid: 8495 + components: + - pos: -8.5,-40.5 + parent: 34 + type: Transform + - uid: 11212 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,12.5 + parent: 34 + type: Transform +- proto: SolarAssembly + entities: + - uid: 12841 + components: + - pos: -31.5,11.5 + parent: 34 + type: Transform + - uid: 12842 + components: + - pos: -29.5,14.5 + parent: 34 + type: Transform +- proto: SolarPanel + entities: + - uid: 5447 + components: + - pos: 34.5,-54.5 + parent: 34 + type: Transform + - uid: 5448 + components: + - pos: 34.5,-53.5 + parent: 34 + type: Transform + - uid: 5449 + components: + - pos: 34.5,-52.5 + parent: 34 + type: Transform + - uid: 5450 + components: + - pos: 34.5,-51.5 + parent: 34 + type: Transform + - uid: 5451 + components: + - pos: 34.5,-50.5 + parent: 34 + type: Transform + - uid: 5452 + components: + - pos: 32.5,-50.5 + parent: 34 + type: Transform + - uid: 5453 + components: + - pos: 32.5,-51.5 + parent: 34 + type: Transform + - uid: 5454 + components: + - pos: 32.5,-52.5 + parent: 34 + type: Transform + - uid: 5455 + components: + - pos: 32.5,-53.5 + parent: 34 + type: Transform + - uid: 5456 + components: + - pos: 32.5,-54.5 + parent: 34 + type: Transform + - uid: 5457 + components: + - pos: 30.5,-50.5 + parent: 34 + type: Transform + - uid: 5458 + components: + - pos: 30.5,-51.5 + parent: 34 + type: Transform + - uid: 5459 + components: + - pos: 30.5,-52.5 + parent: 34 + type: Transform + - uid: 5460 + components: + - pos: 30.5,-53.5 + parent: 34 + type: Transform + - uid: 5461 + components: + - pos: 30.5,-54.5 + parent: 34 + type: Transform + - uid: 5462 + components: + - pos: 28.5,-50.5 + parent: 34 + type: Transform + - uid: 5463 + components: + - pos: 28.5,-51.5 + parent: 34 + type: Transform + - uid: 5464 + components: + - pos: 28.5,-52.5 + parent: 34 + type: Transform + - uid: 5465 + components: + - pos: 28.5,-53.5 + parent: 34 + type: Transform + - uid: 5466 + components: + - pos: 28.5,-54.5 + parent: 34 + type: Transform + - uid: 5467 + components: + - pos: 24.5,-50.5 + parent: 34 + type: Transform + - uid: 5468 + components: + - pos: 24.5,-51.5 + parent: 34 + type: Transform + - uid: 5469 + components: + - pos: 24.5,-52.5 + parent: 34 + type: Transform + - uid: 5470 + components: + - pos: 26.5,-50.5 + parent: 34 + type: Transform + - uid: 5471 + components: + - pos: 26.5,-51.5 + parent: 34 + type: Transform + - uid: 5472 + components: + - pos: 26.5,-52.5 + parent: 34 + type: Transform + - uid: 5473 + components: + - pos: 26.5,-53.5 + parent: 34 + type: Transform + - uid: 7073 + components: + - pos: -22.5,10.5 + parent: 34 + type: Transform + - uid: 7075 + components: + - pos: -22.5,12.5 + parent: 34 + type: Transform + - uid: 7076 + components: + - pos: -22.5,13.5 + parent: 34 + type: Transform + - uid: 7077 + components: + - pos: -22.5,14.5 + parent: 34 + type: Transform + - uid: 7079 + components: + - pos: -20.5,11.5 + parent: 34 + type: Transform + - uid: 7081 + components: + - pos: -20.5,13.5 + parent: 34 + type: Transform + - uid: 7083 + components: + - pos: -18.5,14.5 + parent: 34 + type: Transform + - uid: 7084 + components: + - pos: -18.5,13.5 + parent: 34 + type: Transform + - uid: 7086 + components: + - pos: -18.5,11.5 + parent: 34 + type: Transform + - uid: 7089 + components: + - pos: -16.5,11.5 + parent: 34 + type: Transform + - uid: 7091 + components: + - pos: -16.5,13.5 + parent: 34 + type: Transform +- proto: SolarPanelBroken + entities: + - uid: 2241 + components: + - pos: -20.5,7.5 + parent: 34 + type: Transform + - uid: 4701 + components: + - pos: -16.5,10.5 + parent: 34 + type: Transform + - uid: 5474 + components: + - pos: 24.5,-53.5 + parent: 34 + type: Transform + - uid: 5475 + components: + - pos: 24.5,-54.5 + parent: 34 + type: Transform + - uid: 5476 + components: + - pos: 26.5,-54.5 + parent: 34 + type: Transform + - uid: 10724 + components: + - pos: -16.5,14.5 + parent: 34 + type: Transform + - uid: 10725 + components: + - pos: -20.5,14.5 + parent: 34 + type: Transform + - uid: 10726 + components: + - pos: -22.5,11.5 + parent: 34 + type: Transform + - uid: 10734 + components: + - pos: -18.5,10.5 + parent: 34 + type: Transform + - uid: 10914 + components: + - pos: -14.5,12.5 + parent: 34 + type: Transform + - uid: 12739 + components: + - pos: -12.5,14.5 + parent: 34 + type: Transform + - uid: 12770 + components: + - pos: -12.5,10.5 + parent: 34 + type: Transform + - uid: 12771 + components: + - pos: -14.5,14.5 + parent: 34 + type: Transform +- proto: SolarTracker + entities: + - uid: 9338 + components: + - pos: 25.5,-45.5 + parent: 34 + type: Transform +- proto: SophicScribe + entities: + - uid: 388 + components: + - pos: -27.5,-13.5 + parent: 34 + type: Transform +- proto: SpaceCash + entities: + - uid: 126 + components: + - pos: -15.450494,-32.36465 + parent: 34 + type: Transform + - uid: 973 + components: + - pos: -15.403619,-32.317776 + parent: 34 + type: Transform + - uid: 12268 + components: + - pos: -15.450494,-32.3334 + parent: 34 + type: Transform + - uid: 12269 + components: + - pos: -15.512994,-32.474026 + parent: 34 + type: Transform +- proto: SpaceCash10 + entities: + - uid: 5892 + components: + - rot: -1.5707963267948966 rad + pos: -57.634686,5.447304 + parent: 34 + type: Transform + - uid: 5893 + components: + - pos: -57.415936,5.6036625 + parent: 34 + type: Transform + - uid: 11180 + components: + - pos: -50.507698,12.237175 + parent: 34 + type: Transform + - uid: 11181 + components: + - pos: -50.304573,12.393534 + parent: 34 + type: Transform + - uid: 11182 + components: + - pos: -50.538948,12.518621 + parent: 34 + type: Transform + - uid: 11183 + components: + - pos: -50.773323,12.33099 + parent: 34 + type: Transform +- proto: SpaceCash500 + entities: + - uid: 11083 + components: + - pos: 40.50937,-38.527203 + parent: 34 + type: Transform +- proto: SpareIdCabinetFilled + entities: + - uid: 12969 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-35.5 + parent: 34 + type: Transform +- proto: SpawnMobAlexander + entities: + - uid: 2548 + components: + - pos: -35.5,-16.5 + parent: 34 + type: Transform +- proto: SpawnMobArcticFoxSiobhan + entities: + - uid: 954 + components: + - pos: -31.5,-6.5 + parent: 34 + type: Transform +- proto: SpawnMobBandito + entities: + - uid: 10819 + components: + - pos: 22.5,-37.5 + parent: 34 + type: Transform + - uid: 11756 + components: + - pos: -48.5,-14.5 + parent: 34 + type: Transform +- proto: SpawnMobCatGeneric + entities: + - uid: 10818 + components: + - pos: -39.5,-4.5 + parent: 34 + type: Transform + - uid: 10822 + components: + - pos: -39.5,-6.5 + parent: 34 + type: Transform +- proto: SpawnMobCleanBot + entities: + - uid: 10234 + components: + - pos: -4.5,-20.5 + parent: 34 + type: Transform + - uid: 10236 + components: + - pos: -39.5,-0.5 + parent: 34 + type: Transform +- proto: SpawnMobCorgi + entities: + - uid: 1978 + components: + - pos: -16.5,-16.5 + parent: 34 + type: Transform +- proto: SpawnMobCow + entities: + - uid: 4340 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-9.5 + parent: 34 + type: Transform +- proto: SpawnMobCrab + entities: + - uid: 2408 + components: + - pos: -1.5,10.5 + parent: 34 + type: Transform +- proto: SpawnMobDrone + entities: + - uid: 11854 + components: + - pos: -34.5,-44.5 + parent: 34 + type: Transform + - uid: 11856 + components: + - pos: -34.5,-45.5 + parent: 34 + type: Transform +- proto: SpawnMobFoxRenault + entities: + - uid: 4279 + components: + - pos: 27.5,-29.5 + parent: 34 + type: Transform +- proto: SpawnMobMedibot + entities: + - uid: 2246 + components: + - pos: 2.5,0.5 + parent: 34 + type: Transform + - uid: 10233 + components: + - pos: 3.5,-23.5 + parent: 34 + type: Transform + - uid: 12539 + components: + - pos: -0.5,-37.5 + parent: 34 + type: Transform +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 11469 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 34 + type: Transform +- proto: SpawnMobShiva + entities: + - uid: 4699 + components: + - pos: 27.5,-13.5 + parent: 34 + type: Transform +- proto: SpawnMobSmile + entities: + - uid: 1846 + components: + - pos: -28.5,-34.5 + parent: 34 + type: Transform +- proto: SpawnPointAssistant + entities: + - uid: 1051 + components: + - pos: -44.5,1.5 + parent: 34 + type: Transform + - uid: 1057 + components: + - pos: -50.5,-7.5 + parent: 34 + type: Transform + - uid: 1064 + components: + - pos: -46.5,-3.5 + parent: 34 + type: Transform + - uid: 10369 + components: + - pos: -5.5,-15.5 + parent: 34 + type: Transform + - uid: 10471 + components: + - pos: -14.5,-14.5 + parent: 34 + type: Transform + - uid: 10472 + components: + - pos: -14.5,-16.5 + parent: 34 + type: Transform + - uid: 10473 + components: + - pos: -5.5,-16.5 + parent: 34 + type: Transform + - uid: 10474 + components: + - pos: -5.5,-17.5 + parent: 34 + type: Transform + - uid: 10475 + components: + - pos: -14.5,-20.5 + parent: 34 + type: Transform + - uid: 10476 + components: + - pos: -14.5,-18.5 + parent: 34 + type: Transform + - uid: 10478 + components: + - pos: -25.5,-17.5 + parent: 34 + type: Transform + - uid: 10480 + components: + - pos: -24.5,-17.5 + parent: 34 + type: Transform + - uid: 10481 + components: + - pos: -38.5,-4.5 + parent: 34 + type: Transform + - uid: 10482 + components: + - pos: -42.5,-4.5 + parent: 34 + type: Transform + - uid: 10483 + components: + - pos: -42.5,-6.5 + parent: 34 + type: Transform + - uid: 10484 + components: + - pos: -42.5,-5.5 + parent: 34 + type: Transform + - uid: 10485 + components: + - pos: -39.5,-2.5 + parent: 34 + type: Transform + - uid: 10486 + components: + - pos: -39.5,-8.5 + parent: 34 + type: Transform + - uid: 10487 + components: + - pos: -7.5,-22.5 + parent: 34 + type: Transform + - uid: 10488 + components: + - pos: -9.5,-22.5 + parent: 34 + type: Transform + - uid: 10512 + components: + - pos: 18.5,3.5 + parent: 34 + type: Transform + - uid: 10513 + components: + - pos: 17.5,4.5 + parent: 34 + type: Transform + - uid: 10514 + components: + - pos: 16.5,3.5 + parent: 34 + type: Transform + - uid: 10515 + components: + - pos: 16.5,5.5 + parent: 34 + type: Transform + - uid: 10516 + components: + - pos: 17.5,5.5 + parent: 34 + type: Transform + - uid: 10517 + components: + - pos: 18.5,5.5 + parent: 34 + type: Transform + - uid: 10518 + components: + - pos: 20.5,3.5 + parent: 34 + type: Transform + - uid: 10519 + components: + - pos: 20.5,5.5 + parent: 34 + type: Transform + - uid: 11009 + components: + - pos: -11.5,-15.5 + parent: 34 + type: Transform + - uid: 11010 + components: + - pos: -11.5,-17.5 + parent: 34 + type: Transform + - uid: 11053 + components: + - pos: -50.5,1.5 + parent: 34 + type: Transform + - uid: 11054 + components: + - pos: -45.5,-7.5 + parent: 34 + type: Transform + - uid: 11055 + components: + - pos: -47.5,-7.5 + parent: 34 + type: Transform + - uid: 12897 + components: + - pos: -51.5,-4.5 + parent: 34 + type: Transform +- proto: SpawnPointAtmos + entities: + - uid: 10425 + components: + - pos: -34.5,-37.5 + parent: 34 + type: Transform + - uid: 12236 + components: + - pos: -34.5,-36.5 + parent: 34 + type: Transform +- proto: SpawnPointBartender + entities: + - uid: 10423 + components: + - pos: 2.5,-5.5 + parent: 34 + type: Transform + - uid: 10424 + components: + - pos: 4.5,-5.5 + parent: 34 + type: Transform +- proto: SpawnPointBorg + entities: + - uid: 2379 + components: + - pos: -42.5,-21.5 + parent: 34 + type: Transform + - uid: 6097 + components: + - pos: -41.5,-21.5 + parent: 34 + type: Transform +- proto: SpawnPointBotanist + entities: + - uid: 228 + components: + - pos: -19.5,-6.5 + parent: 34 + type: Transform + - uid: 10421 + components: + - pos: -18.5,-7.5 + parent: 34 + type: Transform + - uid: 10422 + components: + - pos: -19.5,-7.5 + parent: 34 + type: Transform +- proto: SpawnPointBrigmedic + entities: + - uid: 3983 + components: + - pos: 19.5,-1.5 + parent: 34 + type: Transform +- proto: SpawnPointCaptain + entities: + - uid: 11532 + components: + - pos: 39.5,-32.5 + parent: 34 + type: Transform +- proto: SpawnPointCargoTechnician + entities: + - uid: 1924 + components: + - pos: -13.5,-25.5 + parent: 34 + type: Transform + - uid: 1925 + components: + - pos: -13.5,-26.5 + parent: 34 + type: Transform + - uid: 1926 + components: + - pos: -12.5,-26.5 + parent: 34 + type: Transform + - uid: 1927 + components: + - pos: -12.5,-25.5 + parent: 34 + type: Transform +- proto: SpawnPointChaplain + entities: + - uid: 10436 + components: + - pos: -27.5,-14.5 + parent: 34 + type: Transform +- proto: SpawnPointChef + entities: + - uid: 10942 + components: + - pos: -10.5,-7.5 + parent: 34 + type: Transform + - uid: 10943 + components: + - pos: -8.5,-7.5 + parent: 34 + type: Transform + - uid: 10944 + components: + - pos: -9.5,-5.5 + parent: 34 + type: Transform + - uid: 10945 + components: + - pos: -9.5,-9.5 + parent: 34 + type: Transform +- proto: SpawnPointChemist + entities: + - uid: 6390 + components: + - pos: -0.5,-27.5 + parent: 34 + type: Transform + - uid: 11397 + components: + - pos: 0.5,-28.5 + parent: 34 + type: Transform +- proto: SpawnPointChiefEngineer + entities: + - uid: 4437 + components: + - pos: 37.5,-33.5 + parent: 34 + type: Transform +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 8118 + components: + - pos: 37.5,-35.5 + parent: 34 + type: Transform +- proto: SpawnPointClown + entities: + - uid: 10437 + components: + - pos: -1.5,-19.5 + parent: 34 + type: Transform +- proto: SpawnPointDetective + entities: + - uid: 4415 + components: + - pos: -10.5,2.5 + parent: 34 + type: Transform +- proto: SpawnPointForensicMantis + entities: + - uid: 1921 + components: + - pos: -31.5,2.5 + parent: 34 + type: Transform +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 11534 + components: + - pos: 41.5,-34.5 + parent: 34 + type: Transform +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 11536 + components: + - pos: 41.5,-33.5 + parent: 34 + type: Transform +- proto: SpawnPointJanitor + entities: + - uid: 240 + components: + - pos: 5.5,-19.5 + parent: 34 + type: Transform + - uid: 12179 + components: + - pos: 5.5,-18.5 + parent: 34 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 11818 + components: + - pos: 8.5,18.5 + parent: 34 + type: Transform + - uid: 11821 + components: + - pos: 9.5,18.5 + parent: 34 + type: Transform + - uid: 11822 + components: + - pos: 10.5,18.5 + parent: 34 + type: Transform +- proto: SpawnPointLawyer + entities: + - uid: 11820 + components: + - pos: 10.5,8.5 + parent: 34 + type: Transform +- proto: SpawnPointLocationMidRoundAntag + entities: + - uid: 1072 + components: + - pos: -41.5,-9.5 + parent: 34 + type: Transform + - uid: 4038 + components: + - pos: -9.5,-47.5 + parent: 34 + type: Transform + - uid: 10235 + components: + - pos: 24.5,8.5 + parent: 34 + type: Transform + - uid: 10834 + components: + - pos: -23.5,-5.5 + parent: 34 + type: Transform + - uid: 10836 + components: + - pos: -28.5,-14.5 + parent: 34 + type: Transform + - uid: 11239 + components: + - pos: 9.5,-14.5 + parent: 34 + type: Transform + - uid: 11241 + components: + - pos: -53.5,-4.5 + parent: 34 + type: Transform + - uid: 11323 + components: + - pos: -7.5,-17.5 + parent: 34 + type: Transform +- proto: SpawnPointMailCarrier + entities: + - uid: 857 + components: + - pos: -7.5,-26.5 + parent: 34 + type: Transform + - uid: 1284 + components: + - pos: -8.5,-26.5 + parent: 34 + type: Transform +- proto: SpawnPointMartialArtist + entities: + - uid: 11940 + components: + - pos: -2.5,4.5 + parent: 34 + type: Transform + - uid: 11941 + components: + - pos: -2.5,6.5 + parent: 34 + type: Transform + - uid: 11942 + components: + - pos: -2.5,5.5 + parent: 34 + type: Transform +- proto: SpawnPointMedicalDoctor + entities: + - uid: 11745 + components: + - pos: 3.5,-33.5 + parent: 34 + type: Transform + - uid: 11747 + components: + - pos: 3.5,-32.5 + parent: 34 + type: Transform + - uid: 11748 + components: + - pos: 6.5,-33.5 + parent: 34 + type: Transform + - uid: 11749 + components: + - pos: 6.5,-32.5 + parent: 34 + type: Transform + - uid: 11752 + components: + - pos: 5.5,-33.5 + parent: 34 + type: Transform + - uid: 11753 + components: + - pos: 4.5,-33.5 + parent: 34 + type: Transform + - uid: 11754 + components: + - pos: 4.5,-32.5 + parent: 34 + type: Transform + - uid: 11755 + components: + - pos: 5.5,-32.5 + parent: 34 + type: Transform +- proto: SpawnPointMedicalIntern + entities: + - uid: 7999 + components: + - pos: 6.5,-34.5 + parent: 34 + type: Transform + - uid: 8117 + components: + - pos: 6.5,-35.5 + parent: 34 + type: Transform + - uid: 12895 + components: + - pos: 3.5,-34.5 + parent: 34 + type: Transform + - uid: 12896 + components: + - pos: 3.5,-35.5 + parent: 34 + type: Transform +- proto: SpawnPointMime + entities: + - uid: 10469 + components: + - pos: 2.5,-19.5 + parent: 34 + type: Transform +- proto: SpawnPointMusician + entities: + - uid: 10470 + components: + - pos: 8.5,-8.5 + parent: 34 + type: Transform +- proto: SpawnPointObserver + entities: + - uid: 11309 + components: + - pos: -7.5,-16.5 + parent: 34 + type: Transform +- proto: SpawnPointParamedic + entities: + - uid: 11855 + components: + - pos: 12.5,-37.5 + parent: 34 + type: Transform + - uid: 11869 + components: + - pos: 13.5,-37.5 + parent: 34 + type: Transform +- proto: SpawnPointPrisoner + entities: + - uid: 4655 + components: + - pos: 40.5,-6.5 + parent: 34 + type: Transform + - uid: 4663 + components: + - pos: 47.5,-7.5 + parent: 34 + type: Transform + - uid: 4802 + components: + - pos: 36.5,0.5 + parent: 34 + type: Transform + - uid: 8910 + components: + - pos: 40.5,-12.5 + parent: 34 + type: Transform + - uid: 12079 + components: + - pos: 47.5,-13.5 + parent: 34 + type: Transform + - uid: 12187 + components: + - pos: 39.5,-10.5 + parent: 34 + type: Transform + - uid: 12189 + components: + - pos: 47.5,-9.5 + parent: 34 + type: Transform +- proto: SpawnPointQuartermaster + entities: + - uid: 11544 + components: + - pos: 37.5,-34.5 + parent: 34 + type: Transform +- proto: SpawnPointReporter + entities: + - uid: 10499 + components: + - pos: 17.5,-37.5 + parent: 34 + type: Transform +- proto: SpawnPointResearchAssistant + entities: + - uid: 10220 + components: + - pos: -28.5,-9.5 + parent: 34 + type: Transform + - uid: 11349 + components: + - pos: -29.5,-17.5 + parent: 34 + type: Transform + - uid: 11350 + components: + - pos: -28.5,-17.5 + parent: 34 + type: Transform + - uid: 11424 + components: + - pos: -28.5,-7.5 + parent: 34 + type: Transform +- proto: SpawnPointResearchDirector + entities: + - uid: 11589 + components: + - pos: 41.5,-35.5 + parent: 34 + type: Transform +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 704 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-32.5 + parent: 34 + type: Transform + - uid: 4771 + components: + - pos: -17.5,-34.5 + parent: 34 + type: Transform + - uid: 4894 + components: + - pos: -14.5,-32.5 + parent: 34 + type: Transform + - uid: 12515 + components: + - pos: -16.5,-32.5 + parent: 34 + type: Transform +- proto: SpawnPointScientist + entities: + - uid: 10440 + components: + - pos: -25.5,-15.5 + parent: 34 + type: Transform + - uid: 10441 + components: + - pos: -24.5,-15.5 + parent: 34 + type: Transform + - uid: 10442 + components: + - pos: -28.5,-15.5 + parent: 34 + type: Transform + - uid: 10443 + components: + - pos: -29.5,-15.5 + parent: 34 + type: Transform + - uid: 10444 + components: + - pos: -24.5,-16.5 + parent: 34 + type: Transform + - uid: 10445 + components: + - pos: -25.5,-16.5 + parent: 34 + type: Transform + - uid: 10446 + components: + - pos: -28.5,-16.5 + parent: 34 + type: Transform + - uid: 10447 + components: + - pos: -29.5,-16.5 + parent: 34 + type: Transform +- proto: SpawnPointSecurityCadet + entities: + - uid: 10504 + components: + - pos: 25.5,-13.5 + parent: 34 + type: Transform +- proto: SpawnPointSecurityOfficer + entities: + - uid: 10505 + components: + - pos: 23.5,-17.5 + parent: 34 + type: Transform + - uid: 10506 + components: + - pos: 24.5,-17.5 + parent: 34 + type: Transform + - uid: 10507 + components: + - pos: 25.5,-17.5 + parent: 34 + type: Transform + - uid: 10508 + components: + - pos: 23.5,-16.5 + parent: 34 + type: Transform + - uid: 10509 + components: + - pos: 24.5,-16.5 + parent: 34 + type: Transform + - uid: 10510 + components: + - pos: 25.5,-16.5 + parent: 34 + type: Transform +- proto: SpawnPointServiceWorker + entities: + - uid: 12278 + components: + - pos: -8.5,-13.5 + parent: 34 + type: Transform + - uid: 12279 + components: + - pos: -9.5,-13.5 + parent: 34 + type: Transform + - uid: 12280 + components: + - pos: -7.5,-13.5 + parent: 34 + type: Transform +- proto: SpawnPointStationEngineer + entities: + - uid: 10428 + components: + - pos: -30.5,-37.5 + parent: 34 + type: Transform + - uid: 10429 + components: + - pos: -30.5,-38.5 + parent: 34 + type: Transform + - uid: 10430 + components: + - pos: -30.5,-39.5 + parent: 34 + type: Transform + - uid: 10431 + components: + - pos: -30.5,-36.5 + parent: 34 + type: Transform + - uid: 10432 + components: + - pos: -30.5,-35.5 + parent: 34 + type: Transform +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 2136 + components: + - pos: -32.5,-40.5 + parent: 34 + type: Transform + - uid: 9710 + components: + - pos: -34.5,-40.5 + parent: 34 + type: Transform + - uid: 12893 + components: + - pos: -34.5,-38.5 + parent: 34 + type: Transform + - uid: 12894 + components: + - pos: -34.5,-39.5 + parent: 34 + type: Transform +- proto: SpawnPointWarden + entities: + - uid: 10511 + components: + - pos: 23.5,-14.5 + parent: 34 + type: Transform +- proto: SpawnVehicleATV + entities: + - uid: 7868 + components: + - pos: -9.5,-29.5 + parent: 34 + type: Transform +- proto: SpawnVehicleWheelchairFolded + entities: + - uid: 4795 + components: + - pos: 10.5,-29.5 + parent: 34 + type: Transform +- proto: SprayBottleSpaceCleaner + entities: + - uid: 4204 + components: + - pos: 6.355405,-18.541101 + parent: 34 + type: Transform + - uid: 8031 + components: + - pos: 6.178322,-18.416014 + parent: 34 + type: Transform +- proto: SprayBottleWater + entities: + - uid: 11045 + components: + - pos: 1.9681275,-3.6084273 + parent: 34 + type: Transform + - uid: 11107 + components: + - pos: -50.3787,-3.3120065 + parent: 34 + type: Transform +- proto: StasisBed + entities: + - uid: 1399 + components: + - pos: 7.5,-31.5 + parent: 34 + type: Transform +- proto: StationMap + entities: + - uid: 3243 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-12.5 + parent: 34 + type: Transform +- proto: SteelBench + entities: + - uid: 2737 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,18.5 + parent: 34 + type: Transform + - uid: 2738 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,17.5 + parent: 34 + type: Transform +- proto: Stool + entities: + - uid: 1108 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 34 + type: Transform + - uid: 2728 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-17.5 + parent: 34 + type: Transform + - uid: 3853 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 34 + type: Transform + - uid: 5032 + components: + - rot: 3.141592653589793 rad + pos: 16.5,5.5 + parent: 34 + type: Transform + - uid: 5033 + components: + - rot: 3.141592653589793 rad + pos: 17.5,5.5 + parent: 34 + type: Transform + - uid: 5034 + components: + - rot: 3.141592653589793 rad + pos: 18.5,5.5 + parent: 34 + type: Transform + - uid: 10887 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-39.5 + parent: 34 + type: Transform + - uid: 10888 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-39.5 + parent: 34 + type: Transform + - uid: 10912 + components: + - pos: 37.5,-28.5 + parent: 34 + type: Transform +- proto: StoolBar + entities: + - uid: 751 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 34 + type: Transform + - uid: 752 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 34 + type: Transform + - uid: 753 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 34 + type: Transform + - uid: 754 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 34 + type: Transform + - uid: 755 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 34 + type: Transform + - uid: 756 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-7.5 + parent: 34 + type: Transform + - uid: 757 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 34 + type: Transform + - uid: 758 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 34 + type: Transform + - uid: 4144 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-41.5 + parent: 34 + type: Transform + - uid: 5511 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-41.5 + parent: 34 + type: Transform + - uid: 5512 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-40.5 + parent: 34 + type: Transform + - uid: 5513 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-39.5 + parent: 34 + type: Transform +- proto: StorageCanister + entities: + - uid: 933 + components: + - pos: -30.5,-4.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 1647 + components: + - pos: -47.5,-40.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 1648 + components: + - pos: -48.5,-40.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 1795 + components: + - pos: -40.5,-31.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice + - uid: 1796 + components: + - pos: -40.5,-32.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice +- proto: Stunbaton + entities: + - uid: 3722 + components: + - pos: 24.607412,-19.584091 + parent: 34 + type: Transform + - uid: 10762 + components: + - rot: 3.141592653589793 rad + pos: 34.55371,-31.428358 + parent: 34 + type: Transform +- proto: SubstationBasic + entities: + - uid: 2236 + components: + - name: Dorm's substation + type: MetaData + - pos: -56.5,-3.5 + parent: 34 + type: Transform + - uid: 2762 + components: + - name: Service/epistemic's substation + type: MetaData + - pos: -16.5,-14.5 + parent: 34 + type: Transform + - uid: 3053 + components: + - name: Janitorial/bar's substation + type: MetaData + - pos: 10.5,-19.5 + parent: 34 + type: Transform + - uid: 3577 + components: + - name: Upper security's substation + type: MetaData + - pos: 24.5,4.5 + parent: 34 + type: Transform + - uid: 4309 + components: + - name: Command substation + type: MetaData + - pos: 36.5,-29.5 + parent: 34 + type: Transform + - uid: 4609 + components: + - name: Logistic's substation + type: MetaData + - pos: -22.5,-29.5 + parent: 34 + type: Transform + - uid: 5580 + components: + - name: Upper solar's substation + type: MetaData + - pos: -23.5,3.5 + parent: 34 + type: Transform + - uid: 8938 + components: + - name: Lower security's substation + type: MetaData + - pos: 37.5,-19.5 + parent: 34 + type: Transform + - uid: 9407 + components: + - name: Camera's substation + type: MetaData + - pos: 52.5,-24.5 + parent: 34 + type: Transform + - uid: 11370 + components: + - name: Medical's substation. + type: MetaData + - pos: 18.5,-44.5 + parent: 34 + type: Transform + - uid: 11852 + components: + - name: Engineering's substation + type: MetaData + - pos: -28.5,-32.5 + parent: 34 + type: Transform +- proto: SuitStorageAtmos + entities: + - uid: 7422 + components: + - pos: -46.5,-29.5 + parent: 34 + type: Transform + - uid: 11548 + components: + - pos: -47.5,-29.5 + parent: 34 + type: Transform +- proto: SuitStorageCaptain + entities: + - uid: 12229 + components: + - pos: 26.5,-29.5 + parent: 34 + type: Transform +- proto: SuitStorageCE + entities: + - uid: 11538 + components: + - pos: -24.5,-30.5 + parent: 34 + type: Transform +- proto: SuitStorageCMO + entities: + - uid: 2284 + components: + - pos: 10.5,-34.5 + parent: 34 + type: Transform +- proto: SuitStorageEngi + entities: + - uid: 3229 + components: + - pos: -35.5,-31.5 + parent: 34 + type: Transform + - uid: 3373 + components: + - pos: -35.5,-32.5 + parent: 34 + type: Transform + - uid: 12354 + components: + - pos: -31.5,-48.5 + parent: 34 + type: Transform + - uid: 12355 + components: + - pos: -31.5,-49.5 + parent: 34 + type: Transform +- proto: SuitStorageEVAAlternate + entities: + - uid: 1038 + components: + - pos: 8.5,-52.5 + parent: 34 + type: Transform + - uid: 1814 + components: + - pos: -5.5,-52.5 + parent: 34 + type: Transform + - uid: 6387 + components: + - pos: -5.5,-54.5 + parent: 34 + type: Transform + - uid: 10025 + components: + - pos: 8.5,-54.5 + parent: 34 + type: Transform + - uid: 11833 + components: + - pos: -5.5,-53.5 + parent: 34 + type: Transform + - uid: 12635 + components: + - pos: 8.5,-53.5 + parent: 34 + type: Transform +- proto: SuitStorageHOS + entities: + - uid: 11631 + components: + - pos: 33.5,-11.5 + parent: 34 + type: Transform +- proto: SuitStorageParamedic + entities: + - uid: 69 + components: + - pos: 13.5,-36.5 + parent: 34 + type: Transform + - uid: 2505 + components: + - pos: 12.5,-36.5 + parent: 34 + type: Transform +- proto: SuitStorageRD + entities: + - uid: 11240 + components: + - pos: -34.5,-3.5 + parent: 34 + type: Transform +- proto: SuitStorageSec + entities: + - uid: 3587 + components: + - pos: 28.5,-0.5 + parent: 34 + type: Transform + - uid: 3597 + components: + - pos: 23.5,-20.5 + parent: 34 + type: Transform + - uid: 3707 + components: + - pos: 25.5,-20.5 + parent: 34 + type: Transform + - uid: 3711 + components: + - pos: 29.5,-0.5 + parent: 34 + type: Transform + - uid: 3712 + components: + - pos: 30.5,-0.5 + parent: 34 + type: Transform +- proto: SuitStorageWarden + entities: + - uid: 3384 + components: + - pos: 29.5,-6.5 + parent: 34 + type: Transform +- proto: SurveillanceCameraCommand + entities: + - uid: 3316 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-31.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: conference + type: SurveillanceCamera + - uid: 10756 + components: + - pos: 33.5,-37.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: bridge + type: SurveillanceCamera + - uid: 10757 + components: + - pos: 37.5,-41.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: bar + type: SurveillanceCamera + - uid: 10758 + components: + - pos: 30.5,-29.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: front + type: SurveillanceCamera + - uid: 10759 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-33.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: vault + type: SurveillanceCamera +- proto: SurveillanceCameraEngineering + entities: + - uid: 1801 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,-30.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: TEG + type: SurveillanceCamera + - uid: 9035 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-29.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmosian's office + type: SurveillanceCamera + - uid: 10728 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-34.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: AME + type: SurveillanceCamera + - uid: 10729 + components: + - pos: -23.5,-27.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: front desk + type: SurveillanceCamera + - uid: 10730 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-35.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: atmospherics north + type: SurveillanceCamera + - uid: 10731 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-46.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: atmospherics south + type: SurveillanceCamera + - uid: 10732 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-40.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: atmospherics mix + type: SurveillanceCamera + - uid: 10733 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-31.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: canisters + type: SurveillanceCamera + - uid: 10767 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-43.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: south solar in + type: SurveillanceCamera + - uid: 10768 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-47.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: south solar out + type: SurveillanceCamera + - uid: 10769 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,3.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: north solar in + type: SurveillanceCamera + - uid: 10770 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,9.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: north solar out + type: SurveillanceCamera + - uid: 11222 + components: + - pos: -38.5,-27.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Front of engineering + type: SurveillanceCamera + - uid: 12109 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-49.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Telecomms + type: SurveillanceCamera +- proto: SurveillanceCameraGeneral + entities: + - uid: 4065 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-40.5 + parent: 34 + type: Transform + - uid: 10695 + components: + - rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: arrivals west + type: SurveillanceCamera + - uid: 10696 + components: + - pos: -23.5,-1.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: north solars + type: SurveillanceCamera + - uid: 10697 + components: + - pos: -40.5,-1.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: dorms north + type: SurveillanceCamera + - uid: 10698 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-9.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: dorms south + type: SurveillanceCamera + - uid: 10699 + components: + - pos: -29.5,-23.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: chapel + type: SurveillanceCamera + - uid: 10700 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-23.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: HoP + type: SurveillanceCamera + - uid: 10701 + components: + - pos: -9.5,-22.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: center south + type: SurveillanceCamera + - uid: 10702 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-11.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: center north + type: SurveillanceCamera + - uid: 10704 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-22.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: courtroom front + type: SurveillanceCamera + - uid: 10705 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-31.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: courtroom + type: SurveillanceCamera + - uid: 10706 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-13.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: security + type: SurveillanceCamera + - uid: 10707 + components: + - pos: 11.5,-1.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: arrivals east + type: SurveillanceCamera + - uid: 10708 + components: + - pos: 7.5,13.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: dock north + type: SurveillanceCamera + - uid: 10709 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-21.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: bridge + type: SurveillanceCamera + - uid: 10710 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-22.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: medical + type: SurveillanceCamera + - uid: 10744 + components: + - pos: 19.5,3.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: arcade + type: SurveillanceCamera + - uid: 12424 + components: + - pos: 10.5,13.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Arrivals + type: SurveillanceCamera + - uid: 12428 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-49.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Evacuation + type: SurveillanceCamera +- proto: SurveillanceCameraMedical + entities: + - uid: 5278 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-40.5 + parent: 34 + type: Transform + - uid: 11758 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-35.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Treatment + type: SurveillanceCamera + - uid: 11759 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-26.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Chemistry + type: SurveillanceCamera + - uid: 11760 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-29.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Surgery + type: SurveillanceCamera +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 5969 + components: + - name: camera router (command) + type: MetaData + - pos: 48.5,-25.5 + parent: 34 + type: Transform +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 5970 + components: + - name: camera router (engineering) + type: MetaData + - pos: 47.5,-25.5 + parent: 34 + type: Transform +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 5972 + components: + - name: camera router (general) + type: MetaData + - pos: 48.5,-23.5 + parent: 34 + type: Transform +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 5966 + components: + - name: camera router (medical) + type: MetaData + - pos: 47.5,-21.5 + parent: 34 + type: Transform +- proto: SurveillanceCameraRouterScience + entities: + - uid: 5971 + components: + - name: camera router (epistemics) + type: MetaData + - pos: 49.5,-25.5 + parent: 34 + type: Transform +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 5968 + components: + - name: camera router (security) + type: MetaData + - pos: 49.5,-21.5 + parent: 34 + type: Transform +- proto: SurveillanceCameraRouterService + entities: + - uid: 5967 + components: + - name: camera router (service) + type: MetaData + - pos: 48.5,-21.5 + parent: 34 + type: Transform +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 6697 + components: + - pos: 49.5,-23.5 + parent: 34 + type: Transform +- proto: SurveillanceCameraScience + entities: + - uid: 9019 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-16.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Robotics + type: SurveillanceCamera + - uid: 10735 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-16.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: chapel + type: SurveillanceCamera + - uid: 10736 + components: + - pos: -30.5,-11.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: interior + type: SurveillanceCamera + - uid: 10737 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-3.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: artifact + type: SurveillanceCamera + - uid: 10738 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-19.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: front desk + type: SurveillanceCamera + - uid: 10771 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,2.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: forensic mantis + type: SurveillanceCamera +- proto: SurveillanceCameraSecurity + entities: + - uid: 4559 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-8.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Prison bedroom 3 + type: SurveillanceCamera + - uid: 4560 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-11.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Prison bedroom 4 + type: SurveillanceCamera + - uid: 4561 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-8.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Prison bedroom 2 + type: SurveillanceCamera + - uid: 4562 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-11.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Prison bedroom 1 + type: SurveillanceCamera + - uid: 5941 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-0.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Corpsman's office + type: SurveillanceCamera + - uid: 9020 + components: + - rot: 3.141592653589793 rad + pos: -10.5,5.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Detective's office + type: SurveillanceCamera + - uid: 10716 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-15.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: south + type: SurveillanceCamera + - uid: 10717 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-18.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: interrogation + type: SurveillanceCamera + - uid: 10718 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-3.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: communal cell + type: SurveillanceCamera + - uid: 10719 + components: + - rot: 3.141592653589793 rad + pos: 29.5,4.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: armory + type: SurveillanceCamera + - uid: 10720 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-2.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: north + type: SurveillanceCamera + - uid: 10727 + components: + - pos: 40.5,3.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: perma chow + type: SurveillanceCamera + - uid: 12883 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,-4.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Breakroom prison + type: SurveillanceCamera + - uid: 12887 + components: + - pos: 41.5,-4.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Main hall prison + type: SurveillanceCamera +- proto: SurveillanceCameraService + entities: + - uid: 10739 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-7.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: botany + type: SurveillanceCamera + - uid: 10740 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-8.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: kitchen + type: SurveillanceCamera + - uid: 10741 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: bar + type: SurveillanceCamera + - uid: 10742 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,3.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: storage + type: SurveillanceCamera + - uid: 12422 + components: + - rot: 3.141592653589793 rad + pos: 5.5,8.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Dojo + type: SurveillanceCamera +- proto: SurveillanceCameraSupply + entities: + - uid: 8194 + components: + - pos: -9.5,-27.5 + parent: 34 + type: Transform + - uid: 8197 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-31.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Main room + type: SurveillanceCamera + - uid: 9987 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-33.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage + type: SurveillanceCamera + - uid: 12398 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-41.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Loading bay + type: SurveillanceCamera + - uid: 12399 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-46.5 + parent: 34 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage's walkway + type: SurveillanceCamera +- proto: SurveillanceCameraWirelessRouterEntertainment + entities: + - uid: 11689 + components: + - pos: 16.5,-36.5 + parent: 34 + type: Transform +- proto: SurveillanceWirelessCameraAnchoredEntertainment + entities: + - uid: 680 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-36.5 + parent: 34 + type: Transform +- proto: SurveillanceWirelessCameraMovableEntertainment + entities: + - uid: 7404 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-36.5 + parent: 34 + type: Transform +- proto: Syringe + entities: + - uid: 11714 + components: + - pos: -29.291363,3.4877024 + parent: 34 + type: Transform +- proto: SyringeEphedrine + entities: + - uid: 5878 + components: + - rot: 3.141592653589793 rad + pos: -49.412476,7.484777 + parent: 34 + type: Transform +- proto: SyringeInaprovaline + entities: + - uid: 4194 + components: + - rot: 3.141592653589793 rad + pos: 16.366955,-1.2841376 + parent: 34 + type: Transform +- proto: SyringeTranexamicAcid + entities: + - uid: 8989 + components: + - pos: 9.893164,-26.39215 + parent: 34 + type: Transform +- proto: Table + entities: + - uid: 825 + components: + - pos: -8.5,-3.5 + parent: 34 + type: Transform + - uid: 826 + components: + - pos: -7.5,-3.5 + parent: 34 + type: Transform + - uid: 827 + components: + - pos: -7.5,-4.5 + parent: 34 + type: Transform + - uid: 828 + components: + - pos: -7.5,-5.5 + parent: 34 + type: Transform + - uid: 863 + components: + - pos: -20.5,-3.5 + parent: 34 + type: Transform + - uid: 864 + components: + - pos: -20.5,-4.5 + parent: 34 + type: Transform + - uid: 908 + components: + - pos: -35.5,-5.5 + parent: 34 + type: Transform + - uid: 1888 + components: + - pos: -13.5,-27.5 + parent: 34 + type: Transform + - uid: 1889 + components: + - pos: -14.5,-24.5 + parent: 34 + type: Transform + - uid: 1902 + components: + - pos: -9.5,-27.5 + parent: 34 + type: Transform + - uid: 1903 + components: + - pos: -8.5,-27.5 + parent: 34 + type: Transform + - uid: 1904 + components: + - pos: -7.5,-24.5 + parent: 34 + type: Transform + - uid: 1916 + components: + - pos: -9.5,-26.5 + parent: 34 + type: Transform + - uid: 1989 + components: + - pos: -32.5,-29.5 + parent: 34 + type: Transform + - uid: 2286 + components: + - pos: 40.5,-35.5 + parent: 34 + type: Transform + - uid: 2359 + components: + - pos: -37.5,-27.5 + parent: 34 + type: Transform + - uid: 2424 + components: + - pos: 40.5,-34.5 + parent: 34 + type: Transform + - uid: 2425 + components: + - pos: 40.5,-33.5 + parent: 34 + type: Transform + - uid: 2942 + components: + - pos: 10.5,-38.5 + parent: 34 + type: Transform + - uid: 3511 + components: + - pos: 19.5,-20.5 + parent: 34 + type: Transform + - uid: 3512 + components: + - pos: 18.5,-20.5 + parent: 34 + type: Transform + - uid: 3813 + components: + - pos: 8.5,-20.5 + parent: 34 + type: Transform + - uid: 3957 + components: + - pos: -10.5,-46.5 + parent: 34 + type: Transform + - uid: 3960 + components: + - pos: -8.5,-48.5 + parent: 34 + type: Transform + - uid: 4325 + components: + - pos: 38.5,-33.5 + parent: 34 + type: Transform + - uid: 4326 + components: + - pos: 38.5,-34.5 + parent: 34 + type: Transform + - uid: 4327 + components: + - pos: 38.5,-35.5 + parent: 34 + type: Transform + - uid: 4328 + components: + - pos: 39.5,-33.5 + parent: 34 + type: Transform + - uid: 4330 + components: + - pos: 39.5,-35.5 + parent: 34 + type: Transform + - uid: 4394 + components: + - pos: 16.5,-38.5 + parent: 34 + type: Transform + - uid: 4727 + components: + - pos: 44.5,3.5 + parent: 34 + type: Transform + - uid: 4728 + components: + - pos: 44.5,6.5 + parent: 34 + type: Transform + - uid: 4773 + components: + - pos: 41.5,-0.5 + parent: 34 + type: Transform + - uid: 4774 + components: + - pos: 41.5,0.5 + parent: 34 + type: Transform + - uid: 4905 + components: + - pos: 29.5,-18.5 + parent: 34 + type: Transform + - uid: 4913 + components: + - pos: 22.5,-12.5 + parent: 34 + type: Transform + - uid: 4914 + components: + - pos: 22.5,-11.5 + parent: 34 + type: Transform + - uid: 4916 + components: + - pos: 23.5,-15.5 + parent: 34 + type: Transform + - uid: 4930 + components: + - pos: 20.5,-16.5 + parent: 34 + type: Transform + - uid: 4931 + components: + - pos: 19.5,-16.5 + parent: 34 + type: Transform + - uid: 5075 + components: + - pos: 2.5,-17.5 + parent: 34 + type: Transform + - uid: 5076 + components: + - pos: 1.5,-17.5 + parent: 34 + type: Transform + - uid: 5243 + components: + - pos: 24.5,-35.5 + parent: 34 + type: Transform + - uid: 5244 + components: + - pos: 26.5,-35.5 + parent: 34 + type: Transform + - uid: 5553 + components: + - pos: -18.5,3.5 + parent: 34 + type: Transform + - uid: 5554 + components: + - pos: -18.5,4.5 + parent: 34 + type: Transform + - uid: 5797 + components: + - pos: -21.5,5.5 + parent: 34 + type: Transform + - uid: 5799 + components: + - pos: -22.5,5.5 + parent: 34 + type: Transform + - uid: 5955 + components: + - pos: 29.5,-19.5 + parent: 34 + type: Transform + - uid: 7396 + components: + - pos: -35.5,-4.5 + parent: 34 + type: Transform + - uid: 7398 + components: + - pos: -31.5,-11.5 + parent: 34 + type: Transform + - uid: 7545 + components: + - pos: -31.5,-29.5 + parent: 34 + type: Transform + - uid: 9298 + components: + - pos: -9.5,-3.5 + parent: 34 + type: Transform + - uid: 10103 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-40.5 + parent: 34 + type: Transform + - uid: 10254 + components: + - pos: -57.5,-6.5 + parent: 34 + type: Transform + - uid: 10910 + components: + - pos: 37.5,-29.5 + parent: 34 + type: Transform + - uid: 11302 + components: + - pos: -42.5,10.5 + parent: 34 + type: Transform + - uid: 11303 + components: + - pos: -42.5,9.5 + parent: 34 + type: Transform + - uid: 11346 + components: + - pos: -28.5,-8.5 + parent: 34 + type: Transform + - uid: 12286 + components: + - pos: -9.5,2.5 + parent: 34 + type: Transform +- proto: TableCarpet + entities: + - uid: 81 + components: + - pos: -15.5,-32.5 + parent: 34 + type: Transform + - uid: 750 + components: + - pos: 2.5,-12.5 + parent: 34 + type: Transform + - uid: 760 + components: + - pos: -0.5,-12.5 + parent: 34 + type: Transform + - uid: 761 + components: + - pos: -0.5,-11.5 + parent: 34 + type: Transform + - uid: 762 + components: + - pos: 2.5,-11.5 + parent: 34 + type: Transform + - uid: 1297 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-40.5 + parent: 34 + type: Transform + - uid: 2587 + components: + - pos: -55.5,0.5 + parent: 34 + type: Transform + - uid: 3622 + components: + - pos: 18.5,-7.5 + parent: 34 + type: Transform + - uid: 5035 + components: + - pos: 20.5,4.5 + parent: 34 + type: Transform + - uid: 5036 + components: + - pos: 17.5,3.5 + parent: 34 + type: Transform + - uid: 9205 + components: + - pos: 48.5,-3.5 + parent: 34 + type: Transform + - uid: 11523 + components: + - pos: -46.5,-27.5 + parent: 34 + type: Transform + - uid: 12382 + components: + - pos: 49.5,-3.5 + parent: 34 + type: Transform +- proto: TableCounterMetal + entities: + - uid: 732 + components: + - pos: 5.5,-3.5 + parent: 34 + type: Transform + - uid: 734 + components: + - pos: 2.5,-3.5 + parent: 34 + type: Transform + - uid: 746 + components: + - pos: 3.5,-3.5 + parent: 34 + type: Transform + - uid: 1402 + components: + - pos: 5.5,-29.5 + parent: 34 + type: Transform + - uid: 2025 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-17.5 + parent: 34 + type: Transform + - uid: 2085 + components: + - pos: -42.5,-19.5 + parent: 34 + type: Transform + - uid: 2281 + components: + - pos: -42.5,-18.5 + parent: 34 + type: Transform + - uid: 2503 + components: + - pos: -42.5,-17.5 + parent: 34 + type: Transform + - uid: 2526 + components: + - pos: -32.5,-17.5 + parent: 34 + type: Transform + - uid: 2527 + components: + - pos: -31.5,-17.5 + parent: 34 + type: Transform + - uid: 2695 + components: + - pos: 10.5,-26.5 + parent: 34 + type: Transform + - uid: 2709 + components: + - pos: 9.5,-26.5 + parent: 34 + type: Transform + - uid: 2711 + components: + - pos: 8.5,-26.5 + parent: 34 + type: Transform + - uid: 3595 + components: + - pos: 30.5,1.5 + parent: 34 + type: Transform + - uid: 3708 + components: + - pos: 25.5,1.5 + parent: 34 + type: Transform + - uid: 3740 + components: + - pos: 28.5,4.5 + parent: 34 + type: Transform + - uid: 4031 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-44.5 + parent: 34 + type: Transform + - uid: 4047 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-44.5 + parent: 34 + type: Transform + - uid: 4054 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-44.5 + parent: 34 + type: Transform + - uid: 4667 + components: + - pos: 40.5,6.5 + parent: 34 + type: Transform + - uid: 4682 + components: + - pos: 41.5,6.5 + parent: 34 + type: Transform + - uid: 4695 + components: + - pos: 39.5,6.5 + parent: 34 + type: Transform + - uid: 4703 + components: + - pos: 41.5,5.5 + parent: 34 + type: Transform + - uid: 4704 + components: + - pos: 38.5,6.5 + parent: 34 + type: Transform + - uid: 4718 + components: + - pos: 40.5,3.5 + parent: 34 + type: Transform + - uid: 4723 + components: + - pos: 39.5,3.5 + parent: 34 + type: Transform + - uid: 5073 + components: + - pos: -0.5,-17.5 + parent: 34 + type: Transform + - uid: 5074 + components: + - pos: -1.5,-17.5 + parent: 34 + type: Transform + - uid: 5499 + components: + - pos: 40.5,-38.5 + parent: 34 + type: Transform + - uid: 5500 + components: + - pos: 40.5,-41.5 + parent: 34 + type: Transform + - uid: 5501 + components: + - pos: 40.5,-40.5 + parent: 34 + type: Transform + - uid: 6340 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 34 + type: Transform + - uid: 8028 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-1.5 + parent: 34 + type: Transform + - uid: 8157 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 34 + type: Transform + - uid: 10625 + components: + - pos: -8.5,7.5 + parent: 34 + type: Transform + - uid: 11426 + components: + - pos: -42.5,-16.5 + parent: 34 + type: Transform + - uid: 12792 + components: + - pos: -9.5,7.5 + parent: 34 + type: Transform +- proto: TableCounterWood + entities: + - uid: 2516 + components: + - pos: 40.5,-31.5 + parent: 34 + type: Transform + - uid: 3875 + components: + - pos: 13.5,-33.5 + parent: 34 + type: Transform + - uid: 3894 + components: + - pos: 15.5,-34.5 + parent: 34 + type: Transform + - uid: 3895 + components: + - pos: 15.5,-33.5 + parent: 34 + type: Transform + - uid: 3896 + components: + - pos: 16.5,-32.5 + parent: 34 + type: Transform + - uid: 3897 + components: + - pos: 17.5,-32.5 + parent: 34 + type: Transform + - uid: 3898 + components: + - pos: 15.5,-32.5 + parent: 34 + type: Transform + - uid: 3899 + components: + - pos: 14.5,-32.5 + parent: 34 + type: Transform + - uid: 3900 + components: + - pos: 13.5,-32.5 + parent: 34 + type: Transform + - uid: 3901 + components: + - pos: 17.5,-33.5 + parent: 34 + type: Transform + - uid: 3964 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-41.5 + parent: 34 + type: Transform + - uid: 4055 + components: + - pos: -7.5,-40.5 + parent: 34 + type: Transform + - uid: 4439 + components: + - pos: 38.5,-31.5 + parent: 34 + type: Transform + - uid: 4440 + components: + - pos: 39.5,-31.5 + parent: 34 + type: Transform + - uid: 5507 + components: + - pos: 38.5,-41.5 + parent: 34 + type: Transform + - uid: 5508 + components: + - pos: 38.5,-40.5 + parent: 34 + type: Transform + - uid: 5509 + components: + - pos: 38.5,-39.5 + parent: 34 + type: Transform + - uid: 5894 + components: + - pos: -56.5,-1.5 + parent: 34 + type: Transform + - uid: 5895 + components: + - pos: -55.5,-1.5 + parent: 34 + type: Transform + - uid: 11166 + components: + - pos: -51.5,12.5 + parent: 34 + type: Transform + - uid: 11167 + components: + - pos: -51.5,13.5 + parent: 34 + type: Transform + - uid: 11210 + components: + - pos: 22.5,12.5 + parent: 34 + type: Transform + - uid: 11211 + components: + - pos: 22.5,11.5 + parent: 34 + type: Transform + - uid: 12162 + components: + - pos: -56.5,-11.5 + parent: 34 + type: Transform +- proto: TableGlass + entities: + - uid: 833 + components: + - pos: -49.5,7.5 + parent: 34 + type: Transform + - uid: 1308 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-43.5 + parent: 34 + type: Transform + - uid: 1325 + components: + - pos: 9.5,-31.5 + parent: 34 + type: Transform + - uid: 1339 + components: + - pos: 9.5,-32.5 + parent: 34 + type: Transform + - uid: 2082 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-16.5 + parent: 34 + type: Transform + - uid: 2228 + components: + - pos: -45.5,-4.5 + parent: 34 + type: Transform + - uid: 2250 + components: + - pos: -51.5,-6.5 + parent: 34 + type: Transform + - uid: 2310 + components: + - pos: -22.5,-27.5 + parent: 34 + type: Transform + - uid: 2311 + components: + - pos: -21.5,-27.5 + parent: 34 + type: Transform + - uid: 2409 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-17.5 + parent: 34 + type: Transform + - uid: 2411 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-18.5 + parent: 34 + type: Transform + - uid: 3250 + components: + - pos: -5.5,4.5 + parent: 34 + type: Transform + - uid: 3281 + components: + - pos: -5.5,3.5 + parent: 34 + type: Transform + - uid: 4128 + components: + - pos: 6.5,-47.5 + parent: 34 + type: Transform + - uid: 4201 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-1.5 + parent: 34 + type: Transform + - uid: 4372 + components: + - pos: 32.5,-35.5 + parent: 34 + type: Transform + - uid: 4373 + components: + - pos: 32.5,-34.5 + parent: 34 + type: Transform + - uid: 4998 + components: + - pos: -49.5,6.5 + parent: 34 + type: Transform + - uid: 5852 + components: + - pos: -50.5,2.5 + parent: 34 + type: Transform + - uid: 7849 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-43.5 + parent: 34 + type: Transform + - uid: 10351 + components: + - pos: 26.5,-22.5 + parent: 34 + type: Transform + - uid: 10523 + components: + - pos: 14.5,13.5 + parent: 34 + type: Transform + - uid: 11539 + components: + - pos: -49.5,-22.5 + parent: 34 + type: Transform + - uid: 11779 + components: + - pos: 14.5,16.5 + parent: 34 + type: Transform + - uid: 12484 + components: + - pos: -8.5,-29.5 + parent: 34 + type: Transform + - uid: 12848 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-13.5 + parent: 34 + type: Transform +- proto: TablePlasmaGlass + entities: + - uid: 2953 + components: + - pos: -1.5,-36.5 + parent: 34 + type: Transform + - uid: 4374 + components: + - pos: 33.5,-31.5 + parent: 34 + type: Transform + - uid: 4375 + components: + - pos: 34.5,-31.5 + parent: 34 + type: Transform + - uid: 4378 + components: + - pos: 34.5,-37.5 + parent: 34 + type: Transform + - uid: 5926 + components: + - pos: -34.5,1.5 + parent: 34 + type: Transform + - uid: 7095 + components: + - pos: -35.5,1.5 + parent: 34 + type: Transform + - uid: 12318 + components: + - pos: -54.5,-35.5 + parent: 34 + type: Transform +- proto: TableReinforced + entities: + - uid: 211 + components: + - pos: -22.5,1.5 + parent: 34 + type: Transform + - uid: 269 + components: + - pos: -10.5,1.5 + parent: 34 + type: Transform + - uid: 276 + components: + - pos: -18.5,-2.5 + parent: 34 + type: Transform + - uid: 365 + components: + - pos: -11.5,-10.5 + parent: 34 + type: Transform + - uid: 366 + components: + - pos: -10.5,-10.5 + parent: 34 + type: Transform + - uid: 367 + components: + - pos: -9.5,-10.5 + parent: 34 + type: Transform + - uid: 370 + components: + - pos: -8.5,-10.5 + parent: 34 + type: Transform + - uid: 410 + components: + - pos: -18.5,-20.5 + parent: 34 + type: Transform + - uid: 710 + components: + - pos: -34.5,-20.5 + parent: 34 + type: Transform + - uid: 859 + components: + - pos: -19.5,-2.5 + parent: 34 + type: Transform + - uid: 968 + components: + - pos: -13.5,-8.5 + parent: 34 + type: Transform + - uid: 1282 + components: + - pos: 21.5,-13.5 + parent: 34 + type: Transform + - uid: 1384 + components: + - pos: -1.5,-30.5 + parent: 34 + type: Transform + - uid: 1387 + components: + - pos: -0.5,-30.5 + parent: 34 + type: Transform + - uid: 1396 + components: + - pos: 2.5,-27.5 + parent: 34 + type: Transform + - uid: 1397 + components: + - pos: 2.5,-26.5 + parent: 34 + type: Transform + - uid: 1884 + components: + - pos: -15.5,-26.5 + parent: 34 + type: Transform + - uid: 1899 + components: + - pos: -6.5,-25.5 + parent: 34 + type: Transform + - uid: 2307 + components: + - pos: -20.5,-26.5 + parent: 34 + type: Transform + - uid: 3696 + components: + - pos: 24.5,0.5 + parent: 34 + type: Transform + - uid: 3697 + components: + - pos: 24.5,-0.5 + parent: 34 + type: Transform + - uid: 4056 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-43.5 + parent: 34 + type: Transform + - uid: 4063 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-42.5 + parent: 34 + type: Transform + - uid: 4483 + components: + - pos: 33.5,-42.5 + parent: 34 + type: Transform + - uid: 5422 + components: + - pos: 28.5,-45.5 + parent: 34 + type: Transform + - uid: 5423 + components: + - pos: 29.5,-45.5 + parent: 34 + type: Transform + - uid: 5593 + components: + - pos: -21.5,1.5 + parent: 34 + type: Transform + - uid: 11844 + components: + - pos: -48.5,-30.5 + parent: 34 + type: Transform + - uid: 11887 + components: + - pos: -28.5,-29.5 + parent: 34 + type: Transform + - uid: 11996 + components: + - pos: -28.5,-30.5 + parent: 34 + type: Transform + - uid: 12182 + components: + - pos: -48.5,-31.5 + parent: 34 + type: Transform +- proto: TableReinforcedGlass + entities: + - uid: 219 + components: + - pos: -10.5,5.5 + parent: 34 + type: Transform + - uid: 1309 + components: + - pos: 5.5,-35.5 + parent: 34 + type: Transform + - uid: 1337 + components: + - pos: 5.5,-34.5 + parent: 34 + type: Transform + - uid: 1947 + components: + - pos: -1.5,-26.5 + parent: 34 + type: Transform + - uid: 2925 + components: + - pos: -0.5,-26.5 + parent: 34 + type: Transform + - uid: 12529 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-24.5 + parent: 34 + type: Transform + - uid: 12530 + components: + - rot: 3.141592653589793 rad + pos: -46.5,-24.5 + parent: 34 + type: Transform +- proto: TableStone + entities: + - uid: 2112 + components: + - pos: -43.5,2.5 + parent: 34 + type: Transform + - uid: 2712 + components: + - pos: -14.5,-15.5 + parent: 34 + type: Transform + - uid: 2719 + components: + - pos: -8.5,-22.5 + parent: 34 + type: Transform + - uid: 2720 + components: + - pos: -14.5,-19.5 + parent: 34 + type: Transform +- proto: TableWood + entities: + - uid: 787 + components: + - pos: 8.5,-5.5 + parent: 34 + type: Transform + - uid: 1552 + components: + - pos: -40.5,-17.5 + parent: 34 + type: Transform + - uid: 1809 + components: + - pos: -39.5,-17.5 + parent: 34 + type: Transform + - uid: 1958 + components: + - pos: -17.5,-18.5 + parent: 34 + type: Transform + - uid: 1976 + components: + - pos: -17.5,-19.5 + parent: 34 + type: Transform + - uid: 2021 + components: + - pos: -31.5,3.5 + parent: 34 + type: Transform + - uid: 2185 + components: + - pos: -43.5,-6.5 + parent: 34 + type: Transform + - uid: 2483 + components: + - pos: -26.5,-31.5 + parent: 34 + type: Transform + - uid: 3359 + components: + - pos: -32.5,-15.5 + parent: 34 + type: Transform + - uid: 3627 + components: + - pos: 19.5,-3.5 + parent: 34 + type: Transform + - uid: 3635 + components: + - pos: 27.5,-6.5 + parent: 34 + type: Transform + - uid: 3757 + components: + - pos: 29.5,-10.5 + parent: 34 + type: Transform + - uid: 3758 + components: + - pos: 30.5,-10.5 + parent: 34 + type: Transform + - uid: 3908 + components: + - pos: 17.5,-30.5 + parent: 34 + type: Transform + - uid: 3909 + components: + - pos: 16.5,-30.5 + parent: 34 + type: Transform + - uid: 3910 + components: + - pos: 14.5,-30.5 + parent: 34 + type: Transform + - uid: 3911 + components: + - pos: 13.5,-30.5 + parent: 34 + type: Transform + - uid: 4280 + components: + - pos: 24.5,-29.5 + parent: 34 + type: Transform + - uid: 4281 + components: + - pos: 24.5,-27.5 + parent: 34 + type: Transform + - uid: 4329 + components: + - pos: 48.5,-9.5 + parent: 34 + type: Transform + - uid: 4344 + components: + - pos: 39.5,-7.5 + parent: 34 + type: Transform + - uid: 4801 + components: + - rot: -1.5707963267948966 rad + pos: 48.5,-0.5 + parent: 34 + type: Transform + - uid: 8022 + components: + - pos: -32.5,3.5 + parent: 34 + type: Transform + - uid: 8079 + components: + - pos: -28.5,-23.5 + parent: 34 + type: Transform + - uid: 8942 + components: + - pos: 41.5,-18.5 + parent: 34 + type: Transform + - uid: 10886 + components: + - pos: 25.5,-39.5 + parent: 34 + type: Transform + - uid: 11261 + components: + - pos: 35.5,-10.5 + parent: 34 + type: Transform + - uid: 11703 + components: + - pos: -45.5,-14.5 + parent: 34 + type: Transform + - uid: 12146 + components: + - pos: -58.5,-9.5 + parent: 34 + type: Transform + - uid: 12147 + components: + - pos: -58.5,-10.5 + parent: 34 + type: Transform + - uid: 12794 + components: + - pos: -7.5,11.5 + parent: 34 + type: Transform +- proto: TableWoodReinforced + entities: + - uid: 130 + components: + - pos: -3.5,4.5 + parent: 34 + type: Transform + - uid: 194 + components: + - pos: -2.5,8.5 + parent: 34 + type: Transform + - uid: 195 + components: + - pos: -1.5,8.5 + parent: 34 + type: Transform + - uid: 200 + components: + - pos: -3.5,8.5 + parent: 34 + type: Transform + - uid: 601 + components: + - pos: 1.5,-6.5 + parent: 34 + type: Transform + - uid: 607 + components: + - pos: 3.5,-6.5 + parent: 34 + type: Transform + - uid: 610 + components: + - pos: 4.5,-6.5 + parent: 34 + type: Transform + - uid: 612 + components: + - pos: 2.5,-6.5 + parent: 34 + type: Transform + - uid: 613 + components: + - pos: 0.5,-5.5 + parent: 34 + type: Transform + - uid: 728 + components: + - pos: 0.5,-6.5 + parent: 34 + type: Transform + - uid: 730 + components: + - pos: 0.5,-3.5 + parent: 34 + type: Transform + - uid: 3479 + components: + - pos: 10.5,7.5 + parent: 34 + type: Transform + - uid: 4053 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-40.5 + parent: 34 + type: Transform + - uid: 4068 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-40.5 + parent: 34 + type: Transform + - uid: 6105 + components: + - pos: 9.5,7.5 + parent: 34 + type: Transform + - uid: 7655 + components: + - pos: -3.5,5.5 + parent: 34 + type: Transform + - uid: 10532 + components: + - pos: 5.5,-6.5 + parent: 34 + type: Transform + - uid: 11518 + components: + - rot: 3.141592653589793 rad + pos: -5.5,9.5 + parent: 34 + type: Transform + - uid: 11583 + components: + - pos: -7.5,9.5 + parent: 34 + type: Transform + - uid: 11670 + components: + - pos: -8.5,9.5 + parent: 34 + type: Transform + - uid: 11785 + components: + - pos: -9.5,9.5 + parent: 34 + type: Transform +- proto: tatamimat + entities: + - uid: 3 + components: + - rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 34 + type: Transform + - uid: 4 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,4.5 + parent: 34 + type: Transform + - uid: 15 + components: + - pos: 0.5,8.5 + parent: 34 + type: Transform + - uid: 32 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,7.5 + parent: 34 + type: Transform + - uid: 137 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 34 + type: Transform + - uid: 138 + components: + - rot: 3.141592653589793 rad + pos: 5.5,8.5 + parent: 34 + type: Transform + - uid: 141 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,5.5 + parent: 34 + type: Transform + - uid: 142 + components: + - pos: 4.5,3.5 + parent: 34 + type: Transform + - uid: 144 + components: + - rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 34 + type: Transform + - uid: 145 + components: + - rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 34 + type: Transform + - uid: 146 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,6.5 + parent: 34 + type: Transform + - uid: 150 + components: + - pos: 3.5,7.5 + parent: 34 + type: Transform + - uid: 151 + components: + - rot: 3.141592653589793 rad + pos: 3.5,8.5 + parent: 34 + type: Transform + - uid: 152 + components: + - pos: 1.5,7.5 + parent: 34 + type: Transform + - uid: 154 + components: + - pos: 3.5,4.5 + parent: 34 + type: Transform + - uid: 156 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,5.5 + parent: 34 + type: Transform + - uid: 158 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 34 + type: Transform + - uid: 164 + components: + - pos: 0.5,3.5 + parent: 34 + type: Transform + - uid: 166 + components: + - rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 34 + type: Transform + - uid: 167 + components: + - pos: 1.5,4.5 + parent: 34 + type: Transform + - uid: 169 + components: + - pos: 2.5,6.5 + parent: 34 + type: Transform + - uid: 170 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 34 + type: Transform + - uid: 173 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 34 + type: Transform + - uid: 174 + components: + - pos: 2.5,8.5 + parent: 34 + type: Transform + - uid: 177 + components: + - rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 34 + type: Transform + - uid: 189 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,7.5 + parent: 34 + type: Transform + - uid: 190 + components: + - pos: 2.5,5.5 + parent: 34 + type: Transform + - uid: 191 + components: + - rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 34 + type: Transform + - uid: 208 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,6.5 + parent: 34 + type: Transform + - uid: 224 + components: + - pos: -46.5,-6.5 + parent: 34 + type: Transform + - uid: 238 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-6.5 + parent: 34 + type: Transform + - uid: 259 + components: + - pos: -47.5,-7.5 + parent: 34 + type: Transform + - uid: 593 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,-9.5 + parent: 34 + type: Transform + - uid: 2576 + components: + - pos: -58.5,-8.5 + parent: 34 + type: Transform + - uid: 2578 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-11.5 + parent: 34 + type: Transform + - uid: 2579 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-8.5 + parent: 34 + type: Transform + - uid: 2580 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,-10.5 + parent: 34 + type: Transform + - uid: 2926 + components: + - rot: 3.141592653589793 rad + pos: -46.5,-7.5 + parent: 34 + type: Transform + - uid: 6109 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,-11.5 + parent: 34 + type: Transform + - uid: 6322 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,-9.5 + parent: 34 + type: Transform + - uid: 6366 + components: + - rot: -1.5707963267948966 rad + pos: -58.5,-9.5 + parent: 34 + type: Transform + - uid: 10418 + components: + - pos: 4.5,8.5 + parent: 34 + type: Transform + - uid: 10451 + components: + - rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 34 + type: Transform + - uid: 10452 + components: + - rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 34 + type: Transform + - uid: 10453 + components: + - rot: 3.141592653589793 rad + pos: 2.5,7.5 + parent: 34 + type: Transform + - uid: 10454 + components: + - pos: 2.5,3.5 + parent: 34 + type: Transform + - uid: 10456 + components: + - rot: 3.141592653589793 rad + pos: 4.5,7.5 + parent: 34 + type: Transform + - uid: 10573 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 34 + type: Transform + - uid: 11032 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,-10.5 + parent: 34 + type: Transform + - uid: 11293 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,-10.5 + parent: 34 + type: Transform + - uid: 11297 + components: + - pos: -58.5,-11.5 + parent: 34 + type: Transform + - uid: 11358 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,-8.5 + parent: 34 + type: Transform +- proto: tatamisingle + entities: + - uid: 253 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-7.5 + parent: 34 + type: Transform + - uid: 2099 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,-6.5 + parent: 34 + type: Transform +- proto: TegCenter + entities: + - uid: 10438 + components: + - pos: -55.5,-29.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice +- proto: TegCirculator + entities: + - uid: 6159 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,-30.5 + parent: 34 + type: Transform + - color: '#FF3300FF' + type: PointLight + - uid: 6282 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-28.5 + parent: 34 + type: Transform + - color: '#FF3300FF' + type: PointLight +- proto: TelecomServer + entities: + - uid: 3762 + components: + - pos: 27.5,-10.5 + parent: 34 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 3763 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 12050 + components: + - pos: -38.5,-47.5 + parent: 34 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 12051 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 12052 + components: + - pos: -37.5,-47.5 + parent: 34 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 12053 + - 12054 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 12055 + components: + - pos: -36.5,-47.5 + parent: 34 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 12056 + - 12057 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 12058 + components: + - pos: -36.5,-51.5 + parent: 34 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 12059 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 12060 + components: + - pos: -38.5,-51.5 + parent: 34 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 12061 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 12098 + components: + - pos: 30.5,-31.5 + parent: 34 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 12099 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer +- proto: TintedWindow + entities: + - uid: 111 + components: + - pos: -15.5,-3.5 + parent: 34 + type: Transform + - uid: 112 + components: + - pos: -15.5,-4.5 + parent: 34 + type: Transform + - uid: 360 + components: + - pos: -11.5,-3.5 + parent: 34 + type: Transform + - uid: 361 + components: + - pos: -11.5,-4.5 + parent: 34 + type: Transform + - uid: 447 + components: + - pos: -1.5,-21.5 + parent: 34 + type: Transform + - uid: 602 + components: + - pos: -32.5,-3.5 + parent: 34 + type: Transform + - uid: 603 + components: + - pos: -32.5,-4.5 + parent: 34 + type: Transform + - uid: 1014 + components: + - pos: -2.5,-19.5 + parent: 34 + type: Transform + - uid: 1015 + components: + - pos: -2.5,-18.5 + parent: 34 + type: Transform + - uid: 1022 + components: + - pos: 2.5,-21.5 + parent: 34 + type: Transform + - uid: 2015 + components: + - pos: -32.5,0.5 + parent: 34 + type: Transform + - uid: 2016 + components: + - pos: -31.5,0.5 + parent: 34 + type: Transform + - uid: 2030 + components: + - pos: -29.5,0.5 + parent: 34 + type: Transform + - uid: 2222 + components: + - pos: -45.5,-2.5 + parent: 34 + type: Transform + - uid: 2223 + components: + - pos: -46.5,-2.5 + parent: 34 + type: Transform + - uid: 4882 + components: + - pos: 28.5,-15.5 + parent: 34 + type: Transform + - uid: 4883 + components: + - pos: 29.5,-15.5 + parent: 34 + type: Transform + - uid: 4884 + components: + - pos: 30.5,-15.5 + parent: 34 + type: Transform + - uid: 5956 + components: + - pos: 10.5,-4.5 + parent: 34 + type: Transform + - uid: 7389 + components: + - pos: 5.5,-41.5 + parent: 34 + type: Transform + - uid: 8651 + components: + - pos: 10.5,-5.5 + parent: 34 + type: Transform + - uid: 8652 + components: + - pos: 10.5,-7.5 + parent: 34 + type: Transform + - uid: 8653 + components: + - pos: 10.5,-8.5 + parent: 34 + type: Transform + - uid: 10999 + components: + - pos: 5.5,-39.5 + parent: 34 + type: Transform + - uid: 11075 + components: + - pos: -1.5,-34.5 + parent: 34 + type: Transform + - uid: 11098 + components: + - pos: -0.5,-34.5 + parent: 34 + type: Transform + - uid: 12437 + components: + - pos: 2.5,-39.5 + parent: 34 + type: Transform + - uid: 12468 + components: + - pos: 2.5,-41.5 + parent: 34 + type: Transform +- proto: ToiletEmpty + entities: + - uid: 1055 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-4.5 + parent: 34 + type: Transform + - uid: 4591 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-0.5 + parent: 34 + type: Transform + - uid: 4592 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,1.5 + parent: 34 + type: Transform + - uid: 4593 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,0.5 + parent: 34 + type: Transform +- proto: ToolboxArtistic + entities: + - uid: 444 + components: + - pos: 1.5070635,-17.303316 + parent: 34 + type: Transform +- proto: ToolboxElectricalFilled + entities: + - uid: 1077 + components: + - pos: 34.524654,-6.9607882 + parent: 34 + type: Transform + - uid: 2108 + components: + - pos: -21.166645,8.012135 + parent: 34 + type: Transform +- proto: ToolboxEmergencyFilled + entities: + - uid: 620 + components: + - pos: -35.40616,-11.695753 + parent: 34 + type: Transform + - uid: 10630 + components: + - pos: -54.650143,-13.716921 + parent: 34 + type: Transform + - uid: 11195 + components: + - pos: 17.907946,9.591223 + parent: 34 + type: Transform + - uid: 11658 + components: + - pos: -42.40179,9.528585 + parent: 34 + type: Transform + - uid: 11744 + components: + - pos: 11.630091,-37.747 + parent: 34 + type: Transform + - uid: 11746 + components: + - pos: 9.4623,-32.9502 + parent: 34 + type: Transform + - uid: 12183 + components: + - rot: -1.5707963267948966 rad + pos: 14.738799,13.774046 + parent: 34 + type: Transform +- proto: ToolboxGoldFilled + entities: + - uid: 11115 + components: + - pos: 26.593485,-34.190426 + parent: 34 + type: Transform +- proto: ToolboxMechanical + entities: + - uid: 10226 + components: + - pos: 22.119648,-37.101128 + parent: 34 + type: Transform +- proto: ToolboxMechanicalFilled + entities: + - uid: 70 + components: + - pos: -49.305214,-20.810715 + parent: 34 + type: Transform + - uid: 82 + components: + - pos: -32.164547,-17.605564 + parent: 34 + type: Transform + - uid: 619 + components: + - pos: -35.635326,-11.362188 + parent: 34 + type: Transform + - uid: 5564 + components: + - pos: -15.578087,4.7132735 + parent: 34 + type: Transform + - uid: 5565 + components: + - pos: -15.406212,4.3849206 + parent: 34 + type: Transform +- proto: TorsoSkeleton + entities: + - uid: 4659 + components: + - pos: 41.464695,-16.448792 + parent: 34 + type: Transform +- proto: ToyAi + entities: + - uid: 2642 + components: + - pos: 52.53624,-23.395956 + parent: 34 + type: Transform +- proto: ToyIan + entities: + - uid: 1981 + components: + - pos: -17.75425,-19.468826 + parent: 34 + type: Transform + - uid: 11627 + components: + - pos: -39.733406,-17.16252 + parent: 34 + type: Transform +- proto: ToyMouse + entities: + - uid: 6563 + components: + - pos: 3.415373,10.654667 + parent: 34 + type: Transform +- proto: ToyRenault + entities: + - uid: 12247 + components: + - pos: 33.246067,-31.269136 + parent: 34 + type: Transform +- proto: ToyRipley + entities: + - uid: 11628 + components: + - pos: -40.264656,-17.308455 + parent: 34 + type: Transform +- proto: ToySiobhan + entities: + - uid: 12239 + components: + - pos: -28.485638,-19.517445 + parent: 34 + type: Transform +- proto: ToySpawner + entities: + - uid: 9769 + components: + - pos: -14.5,-19.5 + parent: 34 + type: Transform + - uid: 10828 + components: + - pos: 1.5,-19.5 + parent: 34 + type: Transform + - chance: 1 + type: RandomSpawner + - uid: 12327 + components: + - pos: -0.5,-19.5 + parent: 34 + type: Transform +- proto: TrainingBomb + entities: + - uid: 7869 + components: + - pos: 34.5,-6.5 + parent: 34 + type: Transform + - uid: 8685 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-6.5 + parent: 34 + type: Transform + - uid: 9577 + components: + - pos: 34.5,-7.5 + parent: 34 + type: Transform +- proto: TwoWayLever + entities: + - uid: 11254 + components: + - pos: -40.5,9.5 + parent: 34 + type: Transform + - linkedPorts: + 10285: + - Left: Forward + - Right: Reverse + - Middle: Off + 10284: + - Left: Forward + - Right: Reverse + - Middle: Off + 10283: + - Left: Forward + - Right: Reverse + - Middle: Off + 10282: + - Left: Forward + - Right: Reverse + - Middle: Off + 10817: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 12687 + components: + - pos: -39.5,-58.5 + parent: 34 + type: Transform + - linkedPorts: + 12657: + - Right: Forward + - Left: Reverse + - Middle: Off + 12658: + - Middle: Off + - Left: Reverse + - Right: Forward + 12659: + - Left: Reverse + - Right: Forward + - Middle: Off + 12664: + - Left: Reverse + - Right: Forward + - Middle: Off + 12661: + - Middle: Off + - Right: Forward + - Left: Reverse + 12666: + - Middle: Off + - Right: Forward + - Left: Reverse + 12672: + - Left: Reverse + - Right: Forward + - Middle: Off + 12673: + - Left: Reverse + - Right: Forward + - Middle: Off + 12677: + - Left: Reverse + - Right: Forward + - Middle: Off + 12678: + - Left: Reverse + - Right: Forward + - Middle: Off + 12679: + - Left: Reverse + - Right: Forward + - Middle: Off + 12680: + - Left: Reverse + - Right: Forward + - Middle: Off + type: DeviceLinkSource +- proto: UniformPrinter + entities: + - uid: 1965 + components: + - pos: -19.5,-16.5 + parent: 34 + type: Transform +- proto: UnstableMutagenChemistryBottle + entities: + - uid: 11382 + components: + - desc: Just one drop of this will cause rapid mutations in your plants. + type: MetaData + - pos: -20.702679,-4.431776 + parent: 34 + type: Transform +- proto: UprightPianoInstrument + entities: + - uid: 770 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 34 + type: Transform +- proto: Vaccinator + entities: + - uid: 2506 + components: + - pos: -1.5,-35.5 + parent: 34 + type: Transform +- proto: VehicleKeyATV + entities: + - uid: 12486 + components: + - pos: -8.795478,-29.291481 + parent: 34 + type: Transform +- proto: VendingBarDrobe + entities: + - uid: 780 + components: + - flags: SessionSpecific + type: MetaData + - pos: 9.5,-3.5 + parent: 34 + type: Transform +- proto: VendingMachineAtmosDrobe + entities: + - uid: 11808 + components: + - pos: -48.5,-29.5 + parent: 34 + type: Transform +- proto: VendingMachineBooze + entities: + - uid: 733 + components: + - flags: SessionSpecific + type: MetaData + - pos: 4.5,-3.5 + parent: 34 + type: Transform + - uid: 5502 + components: + - flags: SessionSpecific + type: MetaData + - pos: 40.5,-39.5 + parent: 34 + type: Transform + - uid: 10196 + components: + - pos: -7.5,7.5 + parent: 34 + type: Transform +- proto: VendingMachineBoxingDrobe + entities: + - uid: 7575 + components: + - flags: SessionSpecific + type: MetaData + - pos: -3.5,3.5 + parent: 34 + type: Transform +- proto: VendingMachineCargoDrobe + entities: + - uid: 858 + components: + - pos: -12.5,-29.5 + parent: 34 + type: Transform +- proto: VendingMachineCart + entities: + - uid: 1963 + components: + - flags: SessionSpecific + type: MetaData + - pos: -19.5,-18.5 + parent: 34 + type: Transform +- proto: VendingMachineChapel + entities: + - uid: 3317 + components: + - flags: SessionSpecific + type: MetaData + - pos: -32.5,-13.5 + parent: 34 + type: Transform +- proto: VendingMachineChefDrobe + entities: + - uid: 850 + components: + - flags: SessionSpecific + type: MetaData + - pos: -7.5,-9.5 + parent: 34 + type: Transform +- proto: VendingMachineChefvend + entities: + - uid: 101 + components: + - flags: SessionSpecific + type: MetaData + - pos: -11.5,-7.5 + parent: 34 + type: Transform + - uid: 4064 + components: + - pos: -10.5,-40.5 + parent: 34 + type: Transform +- proto: VendingMachineChemDrobe + entities: + - uid: 6120 + components: + - pos: 1.5,-26.5 + parent: 34 + type: Transform +- proto: VendingMachineChemicals + entities: + - uid: 7841 + components: + - pos: 0.5,-29.5 + parent: 34 + type: Transform +- proto: VendingMachineCigs + entities: + - uid: 800 + components: + - flags: SessionSpecific + type: MetaData + - pos: -0.5,-3.5 + parent: 34 + type: Transform + - uid: 4673 + components: + - pos: 45.5,-4.5 + parent: 34 + type: Transform + - uid: 9425 + components: + - flags: SessionSpecific + type: MetaData + - pos: -51.5,-10.5 + parent: 34 + type: Transform + - uid: 12074 + components: + - pos: -10.5,-48.5 + parent: 34 + type: Transform + - uid: 12287 + components: + - pos: -8.5,5.5 + parent: 34 + type: Transform +- proto: VendingMachineClothing + entities: + - uid: 2260 + components: + - flags: SessionSpecific + type: MetaData + - pos: -37.5,-4.5 + parent: 34 + type: Transform +- proto: VendingMachineCoffee + entities: + - uid: 1918 + components: + - flags: SessionSpecific + type: MetaData + - pos: -12.5,-27.5 + parent: 34 + type: Transform + - uid: 10367 + components: + - flags: SessionSpecific + type: MetaData + - pos: 6.5,-22.5 + parent: 34 + type: Transform + - uid: 11597 + components: + - flags: SessionSpecific + type: MetaData + - pos: -40.5,-15.5 + parent: 34 + type: Transform +- proto: VendingMachineCola + entities: + - uid: 2207 + components: + - flags: SessionSpecific + type: MetaData + - pos: -37.5,-6.5 + parent: 34 + type: Transform + - uid: 11185 + components: + - flags: SessionSpecific + type: MetaData + - pos: -52.5,10.5 + parent: 34 + type: Transform +- proto: VendingMachineCondiments + entities: + - uid: 13 + components: + - flags: SessionSpecific + type: MetaData + - pos: -11.5,-10.5 + parent: 34 + type: Transform + - uid: 4721 + components: + - flags: SessionSpecific + type: MetaData + - pos: 40.5,6.5 + parent: 34 + type: Transform +- proto: VendingMachineCourierDrobe + entities: + - uid: 8682 + components: + - pos: -8.5,-24.5 + parent: 34 + type: Transform +- proto: VendingMachineDetDrobe + entities: + - uid: 12275 + components: + - pos: -7.5,5.5 + parent: 34 + type: Transform +- proto: VendingMachineDinnerware + entities: + - uid: 834 + components: + - flags: SessionSpecific + type: MetaData + - pos: -7.5,-8.5 + parent: 34 + type: Transform +- proto: VendingMachineDiscount + entities: + - uid: 4851 + components: + - pos: 44.5,1.5 + parent: 34 + type: Transform +- proto: VendingMachineDonut + entities: + - uid: 10368 + components: + - flags: SessionSpecific + type: MetaData + - pos: 7.5,-22.5 + parent: 34 + type: Transform + - uid: 12849 + components: + - pos: 33.5,-13.5 + parent: 34 + type: Transform +- proto: VendingMachineEngiDrobe + entities: + - uid: 1095 + components: + - flags: SessionSpecific + type: MetaData + - pos: -32.5,-25.5 + parent: 34 + type: Transform +- proto: VendingMachineEngivend + entities: + - uid: 11477 + components: + - flags: SessionSpecific + type: MetaData + - pos: -34.5,-25.5 + parent: 34 + type: Transform +- proto: VendingMachineGames + entities: + - uid: 4800 + components: + - pos: 47.5,-1.5 + parent: 34 + type: Transform + - uid: 5037 + components: + - flags: SessionSpecific + type: MetaData + - pos: 19.5,6.5 + parent: 34 + type: Transform +- proto: VendingMachineHydrobe + entities: + - uid: 372 + components: + - flags: SessionSpecific + type: MetaData + - pos: -19.5,-8.5 + parent: 34 + type: Transform +- proto: VendingMachineJaniDrobe + entities: + - uid: 1025 + components: + - flags: SessionSpecific + type: MetaData + - pos: 4.5,-17.5 + parent: 34 + type: Transform +- proto: VendingMachineLawDrobe + entities: + - uid: 10996 + components: + - pos: 7.5,5.5 + parent: 34 + type: Transform +- proto: VendingMachineMedical + entities: + - uid: 12700 + components: + - pos: 5.5,-37.5 + parent: 34 + type: Transform +- proto: VendingMachineMediDrobe + entities: + - uid: 4492 + components: + - pos: 9.5,-36.5 + parent: 34 + type: Transform +- proto: VendingMachineMNKDrobe + entities: + - uid: 980 + components: + - flags: SessionSpecific + type: MetaData + - pos: -19.5,-10.5 + parent: 34 + type: Transform +- proto: VendingMachineNutri + entities: + - uid: 875 + components: + - flags: SessionSpecific + type: MetaData + - pos: -20.5,-7.5 + parent: 34 + type: Transform +- proto: VendingMachinePride + entities: + - uid: 61 + components: + - flags: SessionSpecific + type: MetaData + - pos: -18.5,-10.5 + parent: 34 + type: Transform +- proto: VendingMachineRepDrobe + entities: + - uid: 4393 + components: + - flags: SessionSpecific + type: MetaData + - pos: 17.5,-39.5 + parent: 34 + type: Transform +- proto: VendingMachineRestockMedical + entities: + - uid: 3847 + components: + - pos: 10.066545,-36.64957 + parent: 34 + type: Transform +- proto: VendingMachineRoboDrobe + entities: + - uid: 677 + components: + - pos: -50.5,-20.5 + parent: 34 + type: Transform +- proto: VendingMachineRobotics + entities: + - uid: 12419 + components: + - pos: -42.5,-15.5 + parent: 34 + type: Transform +- proto: VendingMachineSalvage + entities: + - uid: 2620 + components: + - pos: -14.5,-35.5 + parent: 34 + type: Transform +- proto: VendingMachineSciDrobe + entities: + - uid: 590 + components: + - flags: SessionSpecific + type: MetaData + - pos: -35.5,-9.5 + parent: 34 + type: Transform +- proto: VendingMachineSec + entities: + - uid: 3582 + components: + - flags: SessionSpecific + type: MetaData + - pos: 24.5,-20.5 + parent: 34 + type: Transform +- proto: VendingMachineSecDrobe + entities: + - uid: 11340 + components: + - flags: SessionSpecific + type: MetaData + - pos: 20.5,-20.5 + parent: 34 + type: Transform +- proto: VendingMachineSeeds + entities: + - uid: 870 + components: + - flags: SessionSpecific + type: MetaData + - pos: -20.5,-6.5 + parent: 34 + type: Transform +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 4705 + components: + - flags: SessionSpecific + type: MetaData + - pos: 36.5,6.5 + parent: 34 + type: Transform +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 3278 + components: + - flags: SessionSpecific + type: MetaData + - pos: -31.5,-47.5 + parent: 34 + type: Transform +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 1859 + components: + - flags: SessionSpecific + type: MetaData + - pos: -42.5,-29.5 + parent: 34 + type: Transform + - uid: 3318 + components: + - flags: SessionSpecific + type: MetaData + - pos: -35.5,-34.5 + parent: 34 + type: Transform + - uid: 5603 + components: + - flags: SessionSpecific + type: MetaData + - pos: -20.5,5.5 + parent: 34 + type: Transform + - uid: 10023 + components: + - pos: 39.5,-4.5 + parent: 34 + type: Transform +- proto: VendingMachineTheater + entities: + - uid: 62 + components: + - flags: SessionSpecific + type: MetaData + - pos: -17.5,-10.5 + parent: 34 + type: Transform +- proto: VendingMachineVendomat + entities: + - uid: 10371 + components: + - flags: SessionSpecific + type: MetaData + - pos: -22.5,-20.5 + parent: 34 + type: Transform +- proto: VendingMachineWinter + entities: + - uid: 4450 + components: + - pos: -37.5,-7.5 + parent: 34 + type: Transform +- proto: VendingMachineYouTool + entities: + - uid: 5738 + components: + - flags: SessionSpecific + type: MetaData + - pos: -20.5,4.5 + parent: 34 + type: Transform +- proto: Wakizashi + entities: + - uid: 1174 + components: + - desc: Shitai ni kiru no yō... + name: the mortician's scalpel + type: MetaData + - pos: 9.741736,-40.32208 + parent: 34 + type: Transform +- proto: WallmountTelevision + entities: + - uid: 5418 + components: + - pos: 2.5,-2.5 + parent: 34 + type: Transform +- proto: WallPaper + entities: + - uid: 46 + components: + - pos: 4.5,2.5 + parent: 34 + type: Transform + - uid: 47 + components: + - pos: -0.5,2.5 + parent: 34 + type: Transform + - uid: 80 + components: + - pos: 0.5,2.5 + parent: 34 + type: Transform + - uid: 91 + components: + - pos: -3.5,2.5 + parent: 34 + type: Transform + - uid: 205 + components: + - pos: 5.5,2.5 + parent: 34 + type: Transform + - uid: 2098 + components: + - pos: -47.5,-8.5 + parent: 34 + type: Transform + - uid: 2119 + components: + - pos: -51.5,0.5 + parent: 34 + type: Transform + - uid: 2121 + components: + - pos: -50.5,0.5 + parent: 34 + type: Transform + - uid: 2122 + components: + - pos: -48.5,0.5 + parent: 34 + type: Transform + - uid: 2123 + components: + - pos: -47.5,0.5 + parent: 34 + type: Transform + - uid: 2247 + components: + - pos: -45.5,-8.5 + parent: 34 + type: Transform + - uid: 5050 + components: + - pos: -43.5,0.5 + parent: 34 + type: Transform + - uid: 5809 + components: + - pos: -46.5,0.5 + parent: 34 + type: Transform + - uid: 5810 + components: + - pos: -44.5,0.5 + parent: 34 + type: Transform + - uid: 7995 + components: + - pos: -55.5,-8.5 + parent: 34 + type: Transform + - uid: 10360 + components: + - pos: -55.5,-11.5 + parent: 34 + type: Transform + - uid: 11298 + components: + - pos: -55.5,-9.5 + parent: 34 + type: Transform +- proto: WallReinforced + entities: + - uid: 8 + components: + - pos: 24.5,-36.5 + parent: 34 + type: Transform + - uid: 11 + components: + - pos: -14.5,5.5 + parent: 34 + type: Transform + - uid: 23 + components: + - pos: 29.5,-31.5 + parent: 34 + type: Transform + - uid: 24 + components: + - pos: -19.5,2.5 + parent: 34 + type: Transform + - uid: 25 + components: + - pos: -19.5,1.5 + parent: 34 + type: Transform + - uid: 28 + components: + - pos: -19.5,4.5 + parent: 34 + type: Transform + - uid: 29 + components: + - pos: -18.5,5.5 + parent: 34 + type: Transform + - uid: 30 + components: + - pos: -19.5,3.5 + parent: 34 + type: Transform + - uid: 31 + components: + - pos: -19.5,5.5 + parent: 34 + type: Transform + - uid: 54 + components: + - pos: -13.5,5.5 + parent: 34 + type: Transform + - uid: 55 + components: + - pos: -17.5,5.5 + parent: 34 + type: Transform + - uid: 73 + components: + - pos: 35.5,-17.5 + parent: 34 + type: Transform + - uid: 213 + components: + - pos: -22.5,-36.5 + parent: 34 + type: Transform + - uid: 214 + components: + - pos: -12.5,2.5 + parent: 34 + type: Transform + - uid: 215 + components: + - pos: -12.5,6.5 + parent: 34 + type: Transform + - uid: 217 + components: + - pos: -23.5,-33.5 + parent: 34 + type: Transform + - uid: 235 + components: + - pos: -11.5,6.5 + parent: 34 + type: Transform + - uid: 236 + components: + - pos: -10.5,6.5 + parent: 34 + type: Transform + - uid: 237 + components: + - pos: -9.5,6.5 + parent: 34 + type: Transform + - uid: 241 + components: + - pos: -8.5,6.5 + parent: 34 + type: Transform + - uid: 242 + components: + - pos: -7.5,6.5 + parent: 34 + type: Transform + - uid: 248 + components: + - pos: -5.5,1.5 + parent: 34 + type: Transform + - uid: 249 + components: + - pos: -5.5,6.5 + parent: 34 + type: Transform + - uid: 251 + components: + - pos: -4.5,6.5 + parent: 34 + type: Transform + - uid: 255 + components: + - pos: -12.5,4.5 + parent: 34 + type: Transform + - uid: 256 + components: + - pos: -4.5,1.5 + parent: 34 + type: Transform + - uid: 257 + components: + - pos: -12.5,5.5 + parent: 34 + type: Transform + - uid: 265 + components: + - pos: -12.5,3.5 + parent: 34 + type: Transform + - uid: 268 + components: + - pos: -55.5,10.5 + parent: 34 + type: Transform + - uid: 330 + components: + - pos: 34.5,-26.5 + parent: 34 + type: Transform + - uid: 331 + components: + - pos: 27.5,-20.5 + parent: 34 + type: Transform + - uid: 358 + components: + - pos: -17.5,-12.5 + parent: 34 + type: Transform + - uid: 377 + components: + - pos: -2.5,-30.5 + parent: 34 + type: Transform + - uid: 393 + components: + - pos: 8.5,-34.5 + parent: 34 + type: Transform + - uid: 397 + components: + - pos: -18.5,-12.5 + parent: 34 + type: Transform + - uid: 398 + components: + - pos: -16.5,-13.5 + parent: 34 + type: Transform + - uid: 399 + components: + - pos: -18.5,-15.5 + parent: 34 + type: Transform + - uid: 400 + components: + - pos: -19.5,-15.5 + parent: 34 + type: Transform + - uid: 402 + components: + - pos: -15.5,-15.5 + parent: 34 + type: Transform + - uid: 403 + components: + - pos: -15.5,-16.5 + parent: 34 + type: Transform + - uid: 405 + components: + - pos: -15.5,-18.5 + parent: 34 + type: Transform + - uid: 408 + components: + - pos: -15.5,-19.5 + parent: 34 + type: Transform + - uid: 409 + components: + - pos: -15.5,-20.5 + parent: 34 + type: Transform + - uid: 413 + components: + - pos: -20.5,-18.5 + parent: 34 + type: Transform + - uid: 414 + components: + - pos: -17.5,-15.5 + parent: 34 + type: Transform + - uid: 415 + components: + - pos: -20.5,-14.5 + parent: 34 + type: Transform + - uid: 416 + components: + - pos: -16.5,-15.5 + parent: 34 + type: Transform + - uid: 417 + components: + - pos: -20.5,-20.5 + parent: 34 + type: Transform + - uid: 418 + components: + - pos: -20.5,-15.5 + parent: 34 + type: Transform + - uid: 419 + components: + - pos: -20.5,-16.5 + parent: 34 + type: Transform + - uid: 439 + components: + - pos: 10.5,-17.5 + parent: 34 + type: Transform + - uid: 440 + components: + - pos: 11.5,-17.5 + parent: 34 + type: Transform + - uid: 441 + components: + - pos: 11.5,-18.5 + parent: 34 + type: Transform + - uid: 442 + components: + - pos: 11.5,-19.5 + parent: 34 + type: Transform + - uid: 443 + components: + - pos: 11.5,-20.5 + parent: 34 + type: Transform + - uid: 467 + components: + - pos: 8.5,-21.5 + parent: 34 + type: Transform + - uid: 468 + components: + - pos: 9.5,-21.5 + parent: 34 + type: Transform + - uid: 469 + components: + - pos: 10.5,-21.5 + parent: 34 + type: Transform + - uid: 483 + components: + - pos: -24.5,-2.5 + parent: 34 + type: Transform + - uid: 484 + components: + - pos: -24.5,-3.5 + parent: 34 + type: Transform + - uid: 485 + components: + - pos: -24.5,-4.5 + parent: 34 + type: Transform + - uid: 486 + components: + - pos: -24.5,-5.5 + parent: 34 + type: Transform + - uid: 487 + components: + - pos: -24.5,-6.5 + parent: 34 + type: Transform + - uid: 488 + components: + - pos: -24.5,-7.5 + parent: 34 + type: Transform + - uid: 489 + components: + - pos: -24.5,-8.5 + parent: 34 + type: Transform + - uid: 490 + components: + - pos: -24.5,-9.5 + parent: 34 + type: Transform + - uid: 492 + components: + - pos: -25.5,-2.5 + parent: 34 + type: Transform + - uid: 493 + components: + - pos: -26.5,-2.5 + parent: 34 + type: Transform + - uid: 494 + components: + - pos: -27.5,-2.5 + parent: 34 + type: Transform + - uid: 495 + components: + - pos: -28.5,-2.5 + parent: 34 + type: Transform + - uid: 499 + components: + - pos: -32.5,-2.5 + parent: 34 + type: Transform + - uid: 500 + components: + - pos: -33.5,-2.5 + parent: 34 + type: Transform + - uid: 501 + components: + - pos: -34.5,-2.5 + parent: 34 + type: Transform + - uid: 509 + components: + - pos: -24.5,-11.5 + parent: 34 + type: Transform + - uid: 510 + components: + - pos: -24.5,-12.5 + parent: 34 + type: Transform + - uid: 512 + components: + - pos: -25.5,-12.5 + parent: 34 + type: Transform + - uid: 513 + components: + - pos: -30.5,-13.5 + parent: 34 + type: Transform + - uid: 519 + components: + - pos: -35.5,-2.5 + parent: 34 + type: Transform + - uid: 520 + components: + - pos: -36.5,-2.5 + parent: 34 + type: Transform + - uid: 521 + components: + - pos: -36.5,-3.5 + parent: 34 + type: Transform + - uid: 522 + components: + - pos: -36.5,-4.5 + parent: 34 + type: Transform + - uid: 523 + components: + - pos: -36.5,-5.5 + parent: 34 + type: Transform + - uid: 524 + components: + - pos: -36.5,-6.5 + parent: 34 + type: Transform + - uid: 525 + components: + - pos: -36.5,-7.5 + parent: 34 + type: Transform + - uid: 526 + components: + - pos: -30.5,-16.5 + parent: 34 + type: Transform + - uid: 527 + components: + - pos: -36.5,-9.5 + parent: 34 + type: Transform + - uid: 528 + components: + - pos: -36.5,-10.5 + parent: 34 + type: Transform + - uid: 529 + components: + - pos: -36.5,-11.5 + parent: 34 + type: Transform + - uid: 530 + components: + - pos: -36.5,-12.5 + parent: 34 + type: Transform + - uid: 531 + components: + - pos: -36.5,-13.5 + parent: 34 + type: Transform + - uid: 532 + components: + - pos: -36.5,-14.5 + parent: 34 + type: Transform + - uid: 533 + components: + - pos: -36.5,-15.5 + parent: 34 + type: Transform + - uid: 535 + components: + - pos: -30.5,-17.5 + parent: 34 + type: Transform + - uid: 536 + components: + - pos: -30.5,-15.5 + parent: 34 + type: Transform + - uid: 538 + components: + - pos: -30.5,-12.5 + parent: 34 + type: Transform + - uid: 554 + components: + - pos: -30.5,-19.5 + parent: 34 + type: Transform + - uid: 557 + components: + - pos: 26.5,-36.5 + parent: 34 + type: Transform + - uid: 561 + components: + - pos: -26.5,-12.5 + parent: 34 + type: Transform + - uid: 565 + components: + - pos: -29.5,-12.5 + parent: 34 + type: Transform + - uid: 566 + components: + - pos: -27.5,-12.5 + parent: 34 + type: Transform + - uid: 567 + components: + - pos: -30.5,-20.5 + parent: 34 + type: Transform + - uid: 568 + components: + - pos: -31.5,-20.5 + parent: 34 + type: Transform + - uid: 573 + components: + - pos: -36.5,-20.5 + parent: 34 + type: Transform + - uid: 574 + components: + - pos: -36.5,-19.5 + parent: 34 + type: Transform + - uid: 579 + components: + - pos: -19.5,-12.5 + parent: 34 + type: Transform + - uid: 580 + components: + - pos: -20.5,-12.5 + parent: 34 + type: Transform + - uid: 588 + components: + - pos: -32.5,-6.5 + parent: 34 + type: Transform + - uid: 596 + components: + - pos: -36.5,-8.5 + parent: 34 + type: Transform + - uid: 605 + components: + - pos: 0.5,-38.5 + parent: 34 + type: Transform + - uid: 608 + components: + - pos: -33.5,-6.5 + parent: 34 + type: Transform + - uid: 621 + components: + - pos: -15.5,-23.5 + parent: 34 + type: Transform + - uid: 622 + components: + - pos: -14.5,-23.5 + parent: 34 + type: Transform + - uid: 623 + components: + - pos: -13.5,-23.5 + parent: 34 + type: Transform + - uid: 624 + components: + - pos: -12.5,-23.5 + parent: 34 + type: Transform + - uid: 627 + components: + - pos: -9.5,-23.5 + parent: 34 + type: Transform + - uid: 628 + components: + - pos: -8.5,-23.5 + parent: 34 + type: Transform + - uid: 629 + components: + - pos: -7.5,-23.5 + parent: 34 + type: Transform + - uid: 630 + components: + - pos: -6.5,-23.5 + parent: 34 + type: Transform + - uid: 635 + components: + - pos: -6.5,-28.5 + parent: 34 + type: Transform + - uid: 636 + components: + - pos: -6.5,-29.5 + parent: 34 + type: Transform + - uid: 637 + components: + - pos: -6.5,-30.5 + parent: 34 + type: Transform + - uid: 642 + components: + - pos: -13.5,-32.5 + parent: 34 + type: Transform + - uid: 643 + components: + - pos: -15.5,-28.5 + parent: 34 + type: Transform + - uid: 645 + components: + - pos: -14.5,-28.5 + parent: 34 + type: Transform + - uid: 656 + components: + - pos: -6.5,-39.5 + parent: 34 + type: Transform + - uid: 658 + components: + - pos: -6.5,-38.5 + parent: 34 + type: Transform + - uid: 660 + components: + - pos: -8.5,-39.5 + parent: 34 + type: Transform + - uid: 661 + components: + - pos: -9.5,-39.5 + parent: 34 + type: Transform + - uid: 662 + components: + - pos: -13.5,-28.5 + parent: 34 + type: Transform + - uid: 663 + components: + - pos: -11.5,-39.5 + parent: 34 + type: Transform + - uid: 665 + components: + - pos: 15.5,-43.5 + parent: 34 + type: Transform + - uid: 667 + components: + - pos: 15.5,-44.5 + parent: 34 + type: Transform + - uid: 682 + components: + - pos: 1.5,-30.5 + parent: 34 + type: Transform + - uid: 683 + components: + - pos: 8.5,-31.5 + parent: 34 + type: Transform + - uid: 684 + components: + - pos: 8.5,-30.5 + parent: 34 + type: Transform + - uid: 688 + components: + - pos: 8.5,-32.5 + parent: 34 + type: Transform + - uid: 696 + components: + - pos: -7.5,-39.5 + parent: 34 + type: Transform + - uid: 697 + components: + - pos: -10.5,-39.5 + parent: 34 + type: Transform + - uid: 699 + components: + - pos: -22.5,-40.5 + parent: 34 + type: Transform + - uid: 701 + components: + - pos: -2.5,-28.5 + parent: 34 + type: Transform + - uid: 702 + components: + - pos: -2.5,-40.5 + parent: 34 + type: Transform + - uid: 703 + components: + - pos: -20.5,-28.5 + parent: 34 + type: Transform + - uid: 705 + components: + - pos: -23.5,-29.5 + parent: 34 + type: Transform + - uid: 706 + components: + - pos: -22.5,-28.5 + parent: 34 + type: Transform + - uid: 707 + components: + - pos: -2.5,-41.5 + parent: 34 + type: Transform + - uid: 712 + components: + - pos: -27.5,-24.5 + parent: 34 + type: Transform + - uid: 713 + components: + - pos: -28.5,-24.5 + parent: 34 + type: Transform + - uid: 714 + components: + - pos: -29.5,-24.5 + parent: 34 + type: Transform + - uid: 715 + components: + - pos: -30.5,-24.5 + parent: 34 + type: Transform + - uid: 716 + components: + - pos: -31.5,-24.5 + parent: 34 + type: Transform + - uid: 717 + components: + - pos: -32.5,-24.5 + parent: 34 + type: Transform + - uid: 718 + components: + - pos: -33.5,-24.5 + parent: 34 + type: Transform + - uid: 725 + components: + - pos: -23.5,-30.5 + parent: 34 + type: Transform + - uid: 726 + components: + - pos: -53.5,-18.5 + parent: 34 + type: Transform + - uid: 748 + components: + - pos: 33.5,-46.5 + parent: 34 + type: Transform + - uid: 785 + components: + - pos: 31.5,-17.5 + parent: 34 + type: Transform + - uid: 788 + components: + - pos: -21.5,-28.5 + parent: 34 + type: Transform + - uid: 795 + components: + - pos: -6.5,1.5 + parent: 34 + type: Transform + - uid: 796 + components: + - pos: -4.5,2.5 + parent: 34 + type: Transform + - uid: 798 + components: + - pos: -4.5,4.5 + parent: 34 + type: Transform + - uid: 799 + components: + - pos: -4.5,3.5 + parent: 34 + type: Transform + - uid: 804 + components: + - pos: -12.5,1.5 + parent: 34 + type: Transform + - uid: 848 + components: + - pos: -20.5,-19.5 + parent: 34 + type: Transform + - uid: 878 + components: + - pos: 15.5,-15.5 + parent: 34 + type: Transform + - uid: 886 + components: + - pos: -2.5,-26.5 + parent: 34 + type: Transform + - uid: 894 + components: + - pos: -2.5,-27.5 + parent: 34 + type: Transform + - uid: 965 + components: + - pos: -28.5,0.5 + parent: 34 + type: Transform + - uid: 966 + components: + - pos: -28.5,1.5 + parent: 34 + type: Transform + - uid: 969 + components: + - pos: 16.5,-20.5 + parent: 34 + type: Transform + - uid: 975 + components: + - pos: -28.5,4.5 + parent: 34 + type: Transform + - uid: 976 + components: + - pos: -28.5,3.5 + parent: 34 + type: Transform + - uid: 978 + components: + - pos: -4.5,5.5 + parent: 34 + type: Transform + - uid: 984 + components: + - pos: 21.5,-21.5 + parent: 34 + type: Transform + - uid: 985 + components: + - pos: 16.5,-21.5 + parent: 34 + type: Transform + - uid: 988 + components: + - pos: 17.5,-21.5 + parent: 34 + type: Transform + - uid: 989 + components: + - pos: 15.5,-16.5 + parent: 34 + type: Transform + - uid: 990 + components: + - pos: 15.5,-17.5 + parent: 34 + type: Transform + - uid: 991 + components: + - pos: 15.5,-18.5 + parent: 34 + type: Transform + - uid: 992 + components: + - pos: 15.5,-19.5 + parent: 34 + type: Transform + - uid: 993 + components: + - pos: 19.5,-15.5 + parent: 34 + type: Transform + - uid: 994 + components: + - pos: 16.5,-11.5 + parent: 34 + type: Transform + - uid: 996 + components: + - pos: 15.5,-8.5 + parent: 34 + type: Transform + - uid: 997 + components: + - pos: 15.5,-10.5 + parent: 34 + type: Transform + - uid: 1002 + components: + - pos: 21.5,-15.5 + parent: 34 + type: Transform + - uid: 1012 + components: + - pos: 8.5,-17.5 + parent: 34 + type: Transform + - uid: 1035 + components: + - pos: -23.5,-31.5 + parent: 34 + type: Transform + - uid: 1037 + components: + - pos: -23.5,-32.5 + parent: 34 + type: Transform + - uid: 1039 + components: + - pos: -23.5,-35.5 + parent: 34 + type: Transform + - uid: 1043 + components: + - pos: -25.5,-28.5 + parent: 34 + type: Transform + - uid: 1044 + components: + - pos: -26.5,-28.5 + parent: 34 + type: Transform + - uid: 1045 + components: + - pos: -27.5,-28.5 + parent: 34 + type: Transform + - uid: 1053 + components: + - pos: 38.5,-5.5 + parent: 34 + type: Transform + - uid: 1062 + components: + - pos: -28.5,-35.5 + parent: 34 + type: Transform + - uid: 1066 + components: + - pos: -27.5,-29.5 + parent: 34 + type: Transform + - uid: 1068 + components: + - pos: -24.5,-35.5 + parent: 34 + type: Transform + - uid: 1071 + components: + - pos: -27.5,-35.5 + parent: 34 + type: Transform + - uid: 1074 + components: + - pos: -28.5,-38.5 + parent: 34 + type: Transform + - uid: 1117 + components: + - pos: -28.5,-36.5 + parent: 34 + type: Transform + - uid: 1118 + components: + - pos: -28.5,-39.5 + parent: 34 + type: Transform + - uid: 1119 + components: + - pos: -29.5,-41.5 + parent: 34 + type: Transform + - uid: 1155 + components: + - pos: -23.5,-28.5 + parent: 34 + type: Transform + - uid: 1167 + components: + - pos: -35.5,-39.5 + parent: 34 + type: Transform + - uid: 1168 + components: + - pos: -38.5,-38.5 + parent: 34 + type: Transform + - uid: 1171 + components: + - pos: -37.5,-38.5 + parent: 34 + type: Transform + - uid: 1172 + components: + - pos: -39.5,-38.5 + parent: 34 + type: Transform + - uid: 1178 + components: + - pos: -35.5,-40.5 + parent: 34 + type: Transform + - uid: 1179 + components: + - pos: -35.5,-42.5 + parent: 34 + type: Transform + - uid: 1180 + components: + - pos: -39.5,-44.5 + parent: 34 + type: Transform + - uid: 1181 + components: + - pos: -38.5,-44.5 + parent: 34 + type: Transform + - uid: 1182 + components: + - pos: -37.5,-44.5 + parent: 34 + type: Transform + - uid: 1183 + components: + - pos: -36.5,-44.5 + parent: 34 + type: Transform + - uid: 1184 + components: + - pos: -35.5,-44.5 + parent: 34 + type: Transform + - uid: 1186 + components: + - pos: -36.5,-42.5 + parent: 34 + type: Transform + - uid: 1187 + components: + - pos: -35.5,-38.5 + parent: 34 + type: Transform + - uid: 1188 + components: + - pos: -37.5,-34.5 + parent: 34 + type: Transform + - uid: 1190 + components: + - pos: -35.5,-41.5 + parent: 34 + type: Transform + - uid: 1191 + components: + - pos: -38.5,-40.5 + parent: 34 + type: Transform + - uid: 1194 + components: + - pos: -36.5,-38.5 + parent: 34 + type: Transform + - uid: 1195 + components: + - pos: -39.5,-40.5 + parent: 34 + type: Transform + - uid: 1196 + components: + - pos: -36.5,-40.5 + parent: 34 + type: Transform + - uid: 1203 + components: + - pos: -53.5,-44.5 + parent: 34 + type: Transform + - uid: 1204 + components: + - pos: -53.5,-43.5 + parent: 34 + type: Transform + - uid: 1205 + components: + - pos: -53.5,-42.5 + parent: 34 + type: Transform + - uid: 1207 + components: + - pos: -51.5,-44.5 + parent: 34 + type: Transform + - uid: 1210 + components: + - pos: -35.5,-43.5 + parent: 34 + type: Transform + - uid: 1212 + components: + - pos: -39.5,-42.5 + parent: 34 + type: Transform + - uid: 1213 + components: + - pos: -37.5,-40.5 + parent: 34 + type: Transform + - uid: 1214 + components: + - pos: -38.5,-42.5 + parent: 34 + type: Transform + - uid: 1220 + components: + - pos: -37.5,-42.5 + parent: 34 + type: Transform + - uid: 1224 + components: + - pos: -38.5,-34.5 + parent: 34 + type: Transform + - uid: 1258 + components: + - pos: -35.5,-45.5 + parent: 34 + type: Transform + - uid: 1259 + components: + - pos: -35.5,-46.5 + parent: 34 + type: Transform + - uid: 1260 + components: + - pos: -36.5,-46.5 + parent: 34 + type: Transform + - uid: 1261 + components: + - pos: -37.5,-46.5 + parent: 34 + type: Transform + - uid: 1262 + components: + - pos: -38.5,-46.5 + parent: 34 + type: Transform + - uid: 1263 + components: + - pos: -39.5,-46.5 + parent: 34 + type: Transform + - uid: 1269 + components: + - pos: -16.5,-12.5 + parent: 34 + type: Transform + - uid: 1270 + components: + - pos: -15.5,-14.5 + parent: 34 + type: Transform + - uid: 1271 + components: + - pos: -15.5,-13.5 + parent: 34 + type: Transform + - uid: 1293 + components: + - pos: 19.5,-43.5 + parent: 34 + type: Transform + - uid: 1295 + components: + - pos: 11.5,-34.5 + parent: 34 + type: Transform + - uid: 1296 + components: + - pos: 11.5,-35.5 + parent: 34 + type: Transform + - uid: 1298 + components: + - pos: -30.5,-46.5 + parent: 34 + type: Transform + - uid: 1301 + components: + - pos: 11.5,-33.5 + parent: 34 + type: Transform + - uid: 1302 + components: + - pos: 11.5,-31.5 + parent: 34 + type: Transform + - uid: 1306 + components: + - pos: 11.5,-32.5 + parent: 34 + type: Transform + - uid: 1310 + components: + - pos: 11.5,-30.5 + parent: 34 + type: Transform + - uid: 1312 + components: + - pos: 1.5,-25.5 + parent: 34 + type: Transform + - uid: 1314 + components: + - pos: 2.5,-25.5 + parent: 34 + type: Transform + - uid: 1317 + components: + - pos: -1.5,-25.5 + parent: 34 + type: Transform + - uid: 1318 + components: + - pos: 0.5,-25.5 + parent: 34 + type: Transform + - uid: 1319 + components: + - pos: -0.5,-25.5 + parent: 34 + type: Transform + - uid: 1345 + components: + - pos: 2.5,-30.5 + parent: 34 + type: Transform + - uid: 1346 + components: + - pos: -0.5,-38.5 + parent: 34 + type: Transform + - uid: 1368 + components: + - pos: -2.5,-43.5 + parent: 34 + type: Transform + - uid: 1378 + components: + - pos: 0.5,-30.5 + parent: 34 + type: Transform + - uid: 1393 + components: + - pos: -1.5,-38.5 + parent: 34 + type: Transform + - uid: 1394 + components: + - pos: -2.5,-38.5 + parent: 34 + type: Transform + - uid: 1398 + components: + - pos: -4.5,-50.5 + parent: 34 + type: Transform + - uid: 1432 + components: + - pos: 18.5,-21.5 + parent: 34 + type: Transform + - uid: 1439 + components: + - pos: 19.5,-21.5 + parent: 34 + type: Transform + - uid: 1454 + components: + - pos: -41.5,-29.5 + parent: 34 + type: Transform + - uid: 1456 + components: + - pos: -41.5,-32.5 + parent: 34 + type: Transform + - uid: 1457 + components: + - pos: -41.5,-31.5 + parent: 34 + type: Transform + - uid: 1472 + components: + - pos: -46.5,-44.5 + parent: 34 + type: Transform + - uid: 1473 + components: + - pos: -51.5,-46.5 + parent: 34 + type: Transform + - uid: 1477 + components: + - pos: -51.5,-48.5 + parent: 34 + type: Transform + - uid: 1495 + components: + - pos: -52.5,-41.5 + parent: 34 + type: Transform + - uid: 1496 + components: + - pos: -51.5,-41.5 + parent: 34 + type: Transform + - uid: 1499 + components: + - pos: -53.5,-45.5 + parent: 34 + type: Transform + - uid: 1500 + components: + - pos: -53.5,-46.5 + parent: 34 + type: Transform + - uid: 1501 + components: + - pos: -53.5,-47.5 + parent: 34 + type: Transform + - uid: 1502 + components: + - pos: -53.5,-48.5 + parent: 34 + type: Transform + - uid: 1503 + components: + - pos: -53.5,-49.5 + parent: 34 + type: Transform + - uid: 1504 + components: + - pos: -53.5,-50.5 + parent: 34 + type: Transform + - uid: 1505 + components: + - pos: -52.5,-50.5 + parent: 34 + type: Transform + - uid: 1506 + components: + - pos: -51.5,-50.5 + parent: 34 + type: Transform + - uid: 1507 + components: + - pos: -50.5,-50.5 + parent: 34 + type: Transform + - uid: 1508 + components: + - pos: -49.5,-50.5 + parent: 34 + type: Transform + - uid: 1509 + components: + - pos: -48.5,-50.5 + parent: 34 + type: Transform + - uid: 1510 + components: + - pos: -47.5,-50.5 + parent: 34 + type: Transform + - uid: 1511 + components: + - pos: -46.5,-50.5 + parent: 34 + type: Transform + - uid: 1521 + components: + - pos: -52.5,-38.5 + parent: 34 + type: Transform + - uid: 1543 + components: + - pos: -51.5,-40.5 + parent: 34 + type: Transform + - uid: 1568 + components: + - pos: -51.5,-39.5 + parent: 34 + type: Transform + - uid: 1569 + components: + - pos: -50.5,-39.5 + parent: 34 + type: Transform + - uid: 1570 + components: + - pos: -49.5,-39.5 + parent: 34 + type: Transform + - uid: 1571 + components: + - pos: 20.5,-21.5 + parent: 34 + type: Transform + - uid: 1577 + components: + - pos: -50.5,-37.5 + parent: 34 + type: Transform + - uid: 1579 + components: + - pos: -49.5,-37.5 + parent: 34 + type: Transform + - uid: 1583 + components: + - pos: -52.5,-39.5 + parent: 34 + type: Transform + - uid: 1592 + components: + - pos: -47.5,-32.5 + parent: 34 + type: Transform + - uid: 1594 + components: + - pos: -14.5,-36.5 + parent: 34 + type: Transform + - uid: 1605 + components: + - pos: -41.5,-28.5 + parent: 34 + type: Transform + - uid: 1628 + components: + - pos: -45.5,-50.5 + parent: 34 + type: Transform + - uid: 1633 + components: + - pos: -40.5,-50.5 + parent: 34 + type: Transform + - uid: 1654 + components: + - pos: -39.5,-47.5 + parent: 34 + type: Transform + - uid: 1655 + components: + - pos: -39.5,-48.5 + parent: 34 + type: Transform + - uid: 1656 + components: + - pos: -39.5,-49.5 + parent: 34 + type: Transform + - uid: 1657 + components: + - pos: -39.5,-50.5 + parent: 34 + type: Transform + - uid: 1721 + components: + - pos: -36.5,-43.5 + parent: 34 + type: Transform + - uid: 1740 + components: + - pos: -42.5,-28.5 + parent: 34 + type: Transform + - uid: 1741 + components: + - pos: -43.5,-28.5 + parent: 34 + type: Transform + - uid: 1742 + components: + - pos: -44.5,-28.5 + parent: 34 + type: Transform + - uid: 1743 + components: + - pos: -45.5,-28.5 + parent: 34 + type: Transform + - uid: 1744 + components: + - pos: -46.5,-28.5 + parent: 34 + type: Transform + - uid: 1745 + components: + - pos: -47.5,-28.5 + parent: 34 + type: Transform + - uid: 1747 + components: + - pos: -52.5,-40.5 + parent: 34 + type: Transform + - uid: 1751 + components: + - pos: -40.5,-34.5 + parent: 34 + type: Transform + - uid: 1794 + components: + - pos: -53.5,-17.5 + parent: 34 + type: Transform + - uid: 1804 + components: + - pos: 32.5,-8.5 + parent: 34 + type: Transform + - uid: 1812 + components: + - pos: -40.5,-24.5 + parent: 34 + type: Transform + - uid: 1813 + components: + - pos: -39.5,-24.5 + parent: 34 + type: Transform + - uid: 1819 + components: + - pos: -49.5,-28.5 + parent: 34 + type: Transform + - uid: 1820 + components: + - pos: -48.5,-28.5 + parent: 34 + type: Transform + - uid: 1825 + components: + - pos: 17.5,-15.5 + parent: 34 + type: Transform + - uid: 1829 + components: + - pos: -36.5,-24.5 + parent: 34 + type: Transform + - uid: 1833 + components: + - pos: -53.5,-14.5 + parent: 34 + type: Transform + - uid: 1839 + components: + - pos: -41.5,-34.5 + parent: 34 + type: Transform + - uid: 1862 + components: + - pos: 20.5,-15.5 + parent: 34 + type: Transform + - uid: 1869 + components: + - pos: -52.5,-37.5 + parent: 34 + type: Transform + - uid: 1935 + components: + - pos: -6.5,-31.5 + parent: 34 + type: Transform + - uid: 1995 + components: + - pos: 7.5,-17.5 + parent: 34 + type: Transform + - uid: 1996 + components: + - pos: 7.5,-19.5 + parent: 34 + type: Transform + - uid: 1997 + components: + - pos: 7.5,-18.5 + parent: 34 + type: Transform + - uid: 2008 + components: + - pos: -33.5,4.5 + parent: 34 + type: Transform + - uid: 2009 + components: + - pos: -33.5,3.5 + parent: 34 + type: Transform + - uid: 2010 + components: + - pos: -33.5,2.5 + parent: 34 + type: Transform + - uid: 2011 + components: + - pos: -33.5,1.5 + parent: 34 + type: Transform + - uid: 2012 + components: + - pos: -33.5,0.5 + parent: 34 + type: Transform + - uid: 2032 + components: + - pos: -28.5,2.5 + parent: 34 + type: Transform + - uid: 2083 + components: + - pos: -44.5,-15.5 + parent: 34 + type: Transform + - uid: 2145 + components: + - pos: 10.5,-35.5 + parent: 34 + type: Transform + - uid: 2152 + components: + - pos: -52.5,-14.5 + parent: 34 + type: Transform + - uid: 2156 + components: + - pos: 17.5,-2.5 + parent: 34 + type: Transform + - uid: 2218 + components: + - pos: 41.5,-5.5 + parent: 34 + type: Transform + - uid: 2280 + components: + - pos: -51.5,-23.5 + parent: 34 + type: Transform + - uid: 2285 + components: + - pos: -50.5,-19.5 + parent: 34 + type: Transform + - uid: 2331 + components: + - pos: -46.5,-15.5 + parent: 34 + type: Transform + - uid: 2342 + components: + - pos: 40.5,-5.5 + parent: 34 + type: Transform + - uid: 2386 + components: + - pos: 39.5,-5.5 + parent: 34 + type: Transform + - uid: 2404 + components: + - pos: -49.5,-19.5 + parent: 34 + type: Transform + - uid: 2406 + components: + - pos: -49.5,-35.5 + parent: 34 + type: Transform + - uid: 2419 + components: + - pos: -58.5,-23.5 + parent: 34 + type: Transform + - uid: 2420 + components: + - pos: -49.5,-15.5 + parent: 34 + type: Transform + - uid: 2431 + components: + - pos: 41.5,-8.5 + parent: 34 + type: Transform + - uid: 2433 + components: + - pos: -52.5,-15.5 + parent: 34 + type: Transform + - uid: 2434 + components: + - pos: 34.5,-4.5 + parent: 34 + type: Transform + - uid: 2436 + components: + - pos: -51.5,-19.5 + parent: 34 + type: Transform + - uid: 2474 + components: + - pos: 31.5,-10.5 + parent: 34 + type: Transform + - uid: 2477 + components: + - pos: -14.5,-39.5 + parent: 34 + type: Transform + - uid: 2488 + components: + - pos: -31.5,-46.5 + parent: 34 + type: Transform + - uid: 2494 + components: + - pos: -48.5,-19.5 + parent: 34 + type: Transform + - uid: 2512 + components: + - pos: -51.5,-22.5 + parent: 34 + type: Transform + - uid: 2517 + components: + - pos: 49.5,-7.5 + parent: 34 + type: Transform + - uid: 2519 + components: + - pos: 49.5,-10.5 + parent: 34 + type: Transform + - uid: 2521 + components: + - pos: 49.5,-9.5 + parent: 34 + type: Transform + - uid: 2565 + components: + - pos: 47.5,-8.5 + parent: 34 + type: Transform + - uid: 2572 + components: + - pos: -54.5,-14.5 + parent: 34 + type: Transform + - uid: 2573 + components: + - pos: -55.5,-14.5 + parent: 34 + type: Transform + - uid: 2574 + components: + - pos: -55.5,-13.5 + parent: 34 + type: Transform + - uid: 2575 + components: + - pos: -55.5,-12.5 + parent: 34 + type: Transform + - uid: 2577 + components: + - pos: -55.5,-7.5 + parent: 34 + type: Transform + - uid: 2581 + components: + - pos: -58.5,-7.5 + parent: 34 + type: Transform + - uid: 2582 + components: + - pos: -56.5,-7.5 + parent: 34 + type: Transform + - uid: 2585 + components: + - pos: -57.5,-7.5 + parent: 34 + type: Transform + - uid: 2586 + components: + - pos: -58.5,-6.5 + parent: 34 + type: Transform + - uid: 2588 + components: + - pos: -49.5,8.5 + parent: 34 + type: Transform + - uid: 2589 + components: + - pos: -48.5,6.5 + parent: 34 + type: Transform + - uid: 2590 + components: + - pos: -47.5,6.5 + parent: 34 + type: Transform + - uid: 2609 + components: + - pos: -19.5,-28.5 + parent: 34 + type: Transform + - uid: 2613 + components: + - pos: -52.5,-19.5 + parent: 34 + type: Transform + - uid: 2614 + components: + - pos: 42.5,-14.5 + parent: 34 + type: Transform + - uid: 2631 + components: + - pos: 46.5,-14.5 + parent: 34 + type: Transform + - uid: 2648 + components: + - pos: 49.5,-8.5 + parent: 34 + type: Transform + - uid: 2678 + components: + - pos: -14.5,-31.5 + parent: 34 + type: Transform + - uid: 2694 + components: + - pos: 2.5,-29.5 + parent: 34 + type: Transform + - uid: 2807 + components: + - pos: 27.5,-36.5 + parent: 34 + type: Transform + - uid: 2815 + components: + - pos: 26.5,-32.5 + parent: 34 + type: Transform + - uid: 2816 + components: + - pos: 27.5,-32.5 + parent: 34 + type: Transform + - uid: 2817 + components: + - pos: 27.5,-33.5 + parent: 34 + type: Transform + - uid: 2819 + components: + - pos: 27.5,-35.5 + parent: 34 + type: Transform + - uid: 2923 + components: + - pos: -2.5,-39.5 + parent: 34 + type: Transform + - uid: 2941 + components: + - pos: -2.5,-25.5 + parent: 34 + type: Transform + - uid: 2946 + components: + - pos: -2.5,-29.5 + parent: 34 + type: Transform + - uid: 2951 + components: + - pos: 8.5,-35.5 + parent: 34 + type: Transform + - uid: 2952 + components: + - pos: 9.5,-35.5 + parent: 34 + type: Transform + - uid: 2954 + components: + - pos: 41.5,-20.5 + parent: 34 + type: Transform + - uid: 2955 + components: + - pos: 42.5,-20.5 + parent: 34 + type: Transform + - uid: 3038 + components: + - pos: 24.5,-32.5 + parent: 34 + type: Transform + - uid: 3066 + components: + - pos: -18.5,-31.5 + parent: 34 + type: Transform + - uid: 3077 + components: + - pos: 7.5,-21.5 + parent: 34 + type: Transform + - uid: 3078 + components: + - pos: 7.5,-20.5 + parent: 34 + type: Transform + - uid: 3210 + components: + - pos: -31.5,-51.5 + parent: 34 + type: Transform + - uid: 3211 + components: + - pos: -30.5,-51.5 + parent: 34 + type: Transform + - uid: 3213 + components: + - pos: -30.5,-47.5 + parent: 34 + type: Transform + - uid: 3214 + components: + - pos: -30.5,-50.5 + parent: 34 + type: Transform + - uid: 3216 + components: + - pos: -35.5,-52.5 + parent: 34 + type: Transform + - uid: 3218 + components: + - pos: -35.5,-51.5 + parent: 34 + type: Transform + - uid: 3240 + components: + - pos: -19.5,-43.5 + parent: 34 + type: Transform + - uid: 3254 + components: + - pos: 49.5,-6.5 + parent: 34 + type: Transform + - uid: 3266 + components: + - pos: -35.5,-47.5 + parent: 34 + type: Transform + - uid: 3270 + components: + - pos: -38.5,-52.5 + parent: 34 + type: Transform + - uid: 3271 + components: + - pos: -36.5,-52.5 + parent: 34 + type: Transform + - uid: 3272 + components: + - pos: -37.5,-52.5 + parent: 34 + type: Transform + - uid: 3277 + components: + - pos: -30.5,-41.5 + parent: 34 + type: Transform + - uid: 3280 + components: + - pos: 48.5,-8.5 + parent: 34 + type: Transform + - uid: 3296 + components: + - pos: -17.5,-31.5 + parent: 34 + type: Transform + - uid: 3297 + components: + - pos: -39.5,-34.5 + parent: 34 + type: Transform + - uid: 3305 + components: + - pos: 15.5,-11.5 + parent: 34 + type: Transform + - uid: 3338 + components: + - pos: 16.5,-15.5 + parent: 34 + type: Transform + - uid: 3339 + components: + - pos: 15.5,-20.5 + parent: 34 + type: Transform + - uid: 3383 + components: + - pos: -7.5,1.5 + parent: 34 + type: Transform + - uid: 3385 + components: + - pos: -51.5,-37.5 + parent: 34 + type: Transform + - uid: 3390 + components: + - pos: 17.5,-8.5 + parent: 34 + type: Transform + - uid: 3393 + components: + - pos: 15.5,-7.5 + parent: 34 + type: Transform + - uid: 3394 + components: + - pos: 17.5,-11.5 + parent: 34 + type: Transform + - uid: 3395 + components: + - pos: 18.5,-11.5 + parent: 34 + type: Transform + - uid: 3396 + components: + - pos: 19.5,-11.5 + parent: 34 + type: Transform + - uid: 3409 + components: + - pos: -11.5,-40.5 + parent: 34 + type: Transform + - uid: 3411 + components: + - pos: -11.5,-41.5 + parent: 34 + type: Transform + - uid: 3412 + components: + - pos: -11.5,-43.5 + parent: 34 + type: Transform + - uid: 3413 + components: + - pos: -11.5,-44.5 + parent: 34 + type: Transform + - uid: 3449 + components: + - pos: -55.5,-6.5 + parent: 34 + type: Transform + - uid: 3450 + components: + - pos: -57.5,-1.5 + parent: 34 + type: Transform + - uid: 3452 + components: + - pos: -57.5,1.5 + parent: 34 + type: Transform + - uid: 3455 + components: + - pos: -56.5,-2.5 + parent: 34 + type: Transform + - uid: 3456 + components: + - pos: -55.5,-2.5 + parent: 34 + type: Transform + - uid: 3457 + components: + - pos: -55.5,-3.5 + parent: 34 + type: Transform + - uid: 3465 + components: + - pos: -57.5,2.5 + parent: 34 + type: Transform + - uid: 3466 + components: + - pos: -57.5,3.5 + parent: 34 + type: Transform + - uid: 3468 + components: + - pos: -51.5,9.5 + parent: 34 + type: Transform + - uid: 3469 + components: + - pos: -50.5,9.5 + parent: 34 + type: Transform + - uid: 3470 + components: + - pos: -55.5,9.5 + parent: 34 + type: Transform + - uid: 3472 + components: + - pos: -50.5,8.5 + parent: 34 + type: Transform + - uid: 3476 + components: + - pos: 21.5,-11.5 + parent: 34 + type: Transform + - uid: 3480 + components: + - pos: 20.5,2.5 + parent: 34 + type: Transform + - uid: 3481 + components: + - pos: 20.5,1.5 + parent: 34 + type: Transform + - uid: 3485 + components: + - pos: 23.5,-21.5 + parent: 34 + type: Transform + - uid: 3486 + components: + - pos: 22.5,-21.5 + parent: 34 + type: Transform + - uid: 3487 + components: + - pos: 20.5,-0.5 + parent: 34 + type: Transform + - uid: 3488 + components: + - pos: 20.5,-1.5 + parent: 34 + type: Transform + - uid: 3489 + components: + - pos: 19.5,-2.5 + parent: 34 + type: Transform + - uid: 3490 + components: + - pos: 20.5,-2.5 + parent: 34 + type: Transform + - uid: 3491 + components: + - pos: 18.5,-2.5 + parent: 34 + type: Transform + - uid: 3492 + components: + - pos: 16.5,-2.5 + parent: 34 + type: Transform + - uid: 3493 + components: + - pos: 15.5,-2.5 + parent: 34 + type: Transform + - uid: 3495 + components: + - pos: 21.5,-8.5 + parent: 34 + type: Transform + - uid: 3496 + components: + - pos: 19.5,-8.5 + parent: 34 + type: Transform + - uid: 3498 + components: + - pos: 18.5,-8.5 + parent: 34 + type: Transform + - uid: 3499 + components: + - pos: 15.5,-3.5 + parent: 34 + type: Transform + - uid: 3505 + components: + - pos: 15.5,-9.5 + parent: 34 + type: Transform + - uid: 3520 + components: + - pos: 21.5,-3.5 + parent: 34 + type: Transform + - uid: 3522 + components: + - pos: 21.5,-2.5 + parent: 34 + type: Transform + - uid: 3523 + components: + - pos: 28.5,-8.5 + parent: 34 + type: Transform + - uid: 3524 + components: + - pos: 27.5,-8.5 + parent: 34 + type: Transform + - uid: 3527 + components: + - pos: 24.5,-21.5 + parent: 34 + type: Transform + - uid: 3528 + components: + - pos: 25.5,-21.5 + parent: 34 + type: Transform + - uid: 3529 + components: + - pos: 26.5,-21.5 + parent: 34 + type: Transform + - uid: 3530 + components: + - pos: 27.5,-21.5 + parent: 34 + type: Transform + - uid: 3538 + components: + - pos: 20.5,-8.5 + parent: 34 + type: Transform + - uid: 3541 + components: + - pos: 26.5,-11.5 + parent: 34 + type: Transform + - uid: 3542 + components: + - pos: 26.5,-8.5 + parent: 34 + type: Transform + - uid: 3547 + components: + - pos: 30.5,-6.5 + parent: 34 + type: Transform + - uid: 3548 + components: + - pos: 30.5,-7.5 + parent: 34 + type: Transform + - uid: 3550 + components: + - pos: 29.5,-8.5 + parent: 34 + type: Transform + - uid: 3551 + components: + - pos: 30.5,-8.5 + parent: 34 + type: Transform + - uid: 3552 + components: + - pos: 26.5,-12.5 + parent: 34 + type: Transform + - uid: 3555 + components: + - pos: 28.5,-20.5 + parent: 34 + type: Transform + - uid: 3557 + components: + - pos: 31.5,-12.5 + parent: 34 + type: Transform + - uid: 3600 + components: + - pos: 31.5,-8.5 + parent: 34 + type: Transform + - uid: 3601 + components: + - pos: -19.5,-38.5 + parent: 34 + type: Transform + - uid: 3647 + components: + - pos: 23.5,6.5 + parent: 34 + type: Transform + - uid: 3648 + components: + - pos: 25.5,2.5 + parent: 34 + type: Transform + - uid: 3650 + components: + - pos: 24.5,-1.5 + parent: 34 + type: Transform + - uid: 3651 + components: + - pos: 24.5,2.5 + parent: 34 + type: Transform + - uid: 3653 + components: + - pos: 24.5,6.5 + parent: 34 + type: Transform + - uid: 3654 + components: + - pos: 25.5,3.5 + parent: 34 + type: Transform + - uid: 3655 + components: + - pos: 25.5,4.5 + parent: 34 + type: Transform + - uid: 3656 + components: + - pos: 25.5,5.5 + parent: 34 + type: Transform + - uid: 3657 + components: + - pos: 25.5,6.5 + parent: 34 + type: Transform + - uid: 3658 + components: + - pos: 31.5,2.5 + parent: 34 + type: Transform + - uid: 3659 + components: + - pos: 31.5,3.5 + parent: 34 + type: Transform + - uid: 3660 + components: + - pos: 31.5,4.5 + parent: 34 + type: Transform + - uid: 3661 + components: + - pos: 31.5,5.5 + parent: 34 + type: Transform + - uid: 3662 + components: + - pos: 31.5,6.5 + parent: 34 + type: Transform + - uid: 3663 + components: + - pos: 30.5,2.5 + parent: 34 + type: Transform + - uid: 3664 + components: + - pos: 30.5,3.5 + parent: 34 + type: Transform + - uid: 3665 + components: + - pos: 30.5,4.5 + parent: 34 + type: Transform + - uid: 3666 + components: + - pos: 30.5,5.5 + parent: 34 + type: Transform + - uid: 3667 + components: + - pos: 30.5,6.5 + parent: 34 + type: Transform + - uid: 3668 + components: + - pos: 27.5,6.5 + parent: 34 + type: Transform + - uid: 3669 + components: + - pos: 26.5,6.5 + parent: 34 + type: Transform + - uid: 3670 + components: + - pos: 28.5,6.5 + parent: 34 + type: Transform + - uid: 3671 + components: + - pos: 28.5,5.5 + parent: 34 + type: Transform + - uid: 3672 + components: + - pos: 30.5,-1.5 + parent: 34 + type: Transform + - uid: 3676 + components: + - pos: 27.5,5.5 + parent: 34 + type: Transform + - uid: 3677 + components: + - pos: 26.5,5.5 + parent: 34 + type: Transform + - uid: 3678 + components: + - pos: 29.5,6.5 + parent: 34 + type: Transform + - uid: 3679 + components: + - pos: 29.5,5.5 + parent: 34 + type: Transform + - uid: 3703 + components: + - pos: 31.5,-1.5 + parent: 34 + type: Transform + - uid: 3704 + components: + - pos: 31.5,-0.5 + parent: 34 + type: Transform + - uid: 3705 + components: + - pos: 31.5,0.5 + parent: 34 + type: Transform + - uid: 3706 + components: + - pos: 31.5,1.5 + parent: 34 + type: Transform + - uid: 3735 + components: + - pos: 23.5,2.5 + parent: 34 + type: Transform + - uid: 3792 + components: + - pos: -16.5,-31.5 + parent: 34 + type: Transform + - uid: 3820 + components: + - pos: 10.5,-20.5 + parent: 34 + type: Transform + - uid: 3846 + components: + - pos: -21.5,-30.5 + parent: 34 + type: Transform + - uid: 3848 + components: + - pos: -15.5,-31.5 + parent: 34 + type: Transform + - uid: 3863 + components: + - pos: -19.5,-33.5 + parent: 34 + type: Transform + - uid: 3881 + components: + - pos: 23.5,-32.5 + parent: 34 + type: Transform + - uid: 3882 + components: + - pos: 23.5,-36.5 + parent: 34 + type: Transform + - uid: 3883 + components: + - pos: 23.5,-35.5 + parent: 34 + type: Transform + - uid: 3884 + components: + - pos: 23.5,-25.5 + parent: 34 + type: Transform + - uid: 3885 + components: + - pos: 23.5,-26.5 + parent: 34 + type: Transform + - uid: 3886 + components: + - pos: 23.5,-33.5 + parent: 34 + type: Transform + - uid: 3888 + components: + - pos: 24.5,-26.5 + parent: 34 + type: Transform + - uid: 3889 + components: + - pos: 25.5,-26.5 + parent: 34 + type: Transform + - uid: 3890 + components: + - pos: 26.5,-26.5 + parent: 34 + type: Transform + - uid: 3891 + components: + - pos: 27.5,-26.5 + parent: 34 + type: Transform + - uid: 3947 + components: + - pos: -11.5,-49.5 + parent: 34 + type: Transform + - uid: 3948 + components: + - pos: -10.5,-49.5 + parent: 34 + type: Transform + - uid: 3958 + components: + - pos: -4.5,-49.5 + parent: 34 + type: Transform + - uid: 3959 + components: + - pos: -5.5,-49.5 + parent: 34 + type: Transform + - uid: 3963 + components: + - pos: -6.5,-49.5 + parent: 34 + type: Transform + - uid: 3981 + components: + - pos: -19.5,-35.5 + parent: 34 + type: Transform + - uid: 3985 + components: + - pos: 13.5,-46.5 + parent: 34 + type: Transform + - uid: 3986 + components: + - pos: 14.5,-46.5 + parent: 34 + type: Transform + - uid: 3988 + components: + - pos: 18.5,-43.5 + parent: 34 + type: Transform + - uid: 3990 + components: + - pos: 17.5,-43.5 + parent: 34 + type: Transform + - uid: 4006 + components: + - pos: 23.5,-38.5 + parent: 34 + type: Transform + - uid: 4007 + components: + - pos: 23.5,-27.5 + parent: 34 + type: Transform + - uid: 4008 + components: + - pos: 23.5,-28.5 + parent: 34 + type: Transform + - uid: 4009 + components: + - pos: 23.5,-29.5 + parent: 34 + type: Transform + - uid: 4010 + components: + - pos: 23.5,-30.5 + parent: 34 + type: Transform + - uid: 4012 + components: + - pos: 28.5,-26.5 + parent: 34 + type: Transform + - uid: 4016 + components: + - pos: -2.5,-42.5 + parent: 34 + type: Transform + - uid: 4018 + components: + - pos: -4.5,-51.5 + parent: 34 + type: Transform + - uid: 4019 + components: + - pos: -0.5,-54.5 + parent: 34 + type: Transform + - uid: 4020 + components: + - pos: 7.5,-51.5 + parent: 34 + type: Transform + - uid: 4021 + components: + - pos: 7.5,-50.5 + parent: 34 + type: Transform + - uid: 4024 + components: + - pos: 3.5,-51.5 + parent: 34 + type: Transform + - uid: 4025 + components: + - pos: -0.5,-51.5 + parent: 34 + type: Transform + - uid: 4026 + components: + - pos: -0.5,-53.5 + parent: 34 + type: Transform + - uid: 4027 + components: + - pos: -0.5,-52.5 + parent: 34 + type: Transform + - uid: 4028 + components: + - pos: 3.5,-52.5 + parent: 34 + type: Transform + - uid: 4073 + components: + - pos: 3.5,-53.5 + parent: 34 + type: Transform + - uid: 4074 + components: + - pos: 3.5,-54.5 + parent: 34 + type: Transform + - uid: 4080 + components: + - pos: -49.5,-29.5 + parent: 34 + type: Transform + - uid: 4130 + components: + - pos: 8.5,-49.5 + parent: 34 + type: Transform + - uid: 4131 + components: + - pos: 9.5,-49.5 + parent: 34 + type: Transform + - uid: 4132 + components: + - pos: 7.5,-49.5 + parent: 34 + type: Transform + - uid: 4133 + components: + - pos: 10.5,-46.5 + parent: 34 + type: Transform + - uid: 4135 + components: + - pos: -49.5,-30.5 + parent: 34 + type: Transform + - uid: 4138 + components: + - pos: 33.5,-8.5 + parent: 34 + type: Transform + - uid: 4140 + components: + - pos: 34.5,-5.5 + parent: 34 + type: Transform + - uid: 4147 + components: + - pos: 19.5,-44.5 + parent: 34 + type: Transform + - uid: 4149 + components: + - pos: 31.5,-18.5 + parent: 34 + type: Transform + - uid: 4151 + components: + - pos: 31.5,-15.5 + parent: 34 + type: Transform + - uid: 4152 + components: + - pos: 31.5,-16.5 + parent: 34 + type: Transform + - uid: 4154 + components: + - pos: 38.5,-15.5 + parent: 34 + type: Transform + - uid: 4155 + components: + - pos: 34.5,-15.5 + parent: 34 + type: Transform + - uid: 4158 + components: + - pos: 34.5,-12.5 + parent: 34 + type: Transform + - uid: 4165 + components: + - pos: 34.5,-1.5 + parent: 34 + type: Transform + - uid: 4167 + components: + - pos: 30.5,-5.5 + parent: 34 + type: Transform + - uid: 4172 + components: + - pos: 34.5,-18.5 + parent: 34 + type: Transform + - uid: 4260 + components: + - pos: 29.5,-30.5 + parent: 34 + type: Transform + - uid: 4261 + components: + - pos: 28.5,-30.5 + parent: 34 + type: Transform + - uid: 4262 + components: + - pos: 28.5,-27.5 + parent: 34 + type: Transform + - uid: 4265 + components: + - pos: 24.5,-30.5 + parent: 34 + type: Transform + - uid: 4266 + components: + - pos: 27.5,-30.5 + parent: 34 + type: Transform + - uid: 4270 + components: + - pos: 28.5,-29.5 + parent: 34 + type: Transform + - uid: 4291 + components: + - pos: 29.5,-36.5 + parent: 34 + type: Transform + - uid: 4292 + components: + - pos: 30.5,-30.5 + parent: 34 + type: Transform + - uid: 4294 + components: + - pos: 33.5,-30.5 + parent: 34 + type: Transform + - uid: 4295 + components: + - pos: 34.5,-30.5 + parent: 34 + type: Transform + - uid: 4296 + components: + - pos: 34.5,-27.5 + parent: 34 + type: Transform + - uid: 4297 + components: + - pos: 34.5,-29.5 + parent: 34 + type: Transform + - uid: 4298 + components: + - pos: 35.5,-26.5 + parent: 34 + type: Transform + - uid: 4300 + components: + - pos: 35.5,-30.5 + parent: 34 + type: Transform + - uid: 4301 + components: + - pos: 36.5,-30.5 + parent: 34 + type: Transform + - uid: 4302 + components: + - pos: 37.5,-30.5 + parent: 34 + type: Transform + - uid: 4303 + components: + - pos: 38.5,-30.5 + parent: 34 + type: Transform + - uid: 4304 + components: + - pos: 37.5,-26.5 + parent: 34 + type: Transform + - uid: 4305 + components: + - pos: 38.5,-26.5 + parent: 34 + type: Transform + - uid: 4306 + components: + - pos: 38.5,-27.5 + parent: 34 + type: Transform + - uid: 4307 + components: + - pos: 38.5,-28.5 + parent: 34 + type: Transform + - uid: 4308 + components: + - pos: 38.5,-29.5 + parent: 34 + type: Transform + - uid: 4337 + components: + - pos: 41.5,-37.5 + parent: 34 + type: Transform + - uid: 4338 + components: + - pos: 42.5,-37.5 + parent: 34 + type: Transform + - uid: 4345 + components: + - pos: 42.5,-30.5 + parent: 34 + type: Transform + - uid: 4346 + components: + - pos: 41.5,-30.5 + parent: 34 + type: Transform + - uid: 4347 + components: + - pos: 40.5,-30.5 + parent: 34 + type: Transform + - uid: 4348 + components: + - pos: 39.5,-30.5 + parent: 34 + type: Transform + - uid: 4379 + components: + - pos: 29.5,-37.5 + parent: 34 + type: Transform + - uid: 4381 + components: + - pos: 28.5,-38.5 + parent: 34 + type: Transform + - uid: 4383 + components: + - pos: 34.5,-38.5 + parent: 34 + type: Transform + - uid: 4384 + components: + - pos: 33.5,-38.5 + parent: 34 + type: Transform + - uid: 4385 + components: + - pos: 30.5,-38.5 + parent: 34 + type: Transform + - uid: 4386 + components: + - pos: 39.5,-42.5 + parent: 34 + type: Transform + - uid: 4387 + components: + - pos: 32.5,-38.5 + parent: 34 + type: Transform + - uid: 4389 + components: + - pos: 27.5,-38.5 + parent: 34 + type: Transform + - uid: 4390 + components: + - pos: 26.5,-38.5 + parent: 34 + type: Transform + - uid: 4391 + components: + - pos: 25.5,-38.5 + parent: 34 + type: Transform + - uid: 4392 + components: + - pos: 24.5,-38.5 + parent: 34 + type: Transform + - uid: 4417 + components: + - pos: 35.5,-5.5 + parent: 34 + type: Transform + - uid: 4419 + components: + - pos: -19.5,-37.5 + parent: 34 + type: Transform + - uid: 4421 + components: + - pos: 35.5,-1.5 + parent: 34 + type: Transform + - uid: 4422 + components: + - pos: 37.5,-5.5 + parent: 34 + type: Transform + - uid: 4423 + components: + - pos: 35.5,-0.5 + parent: 34 + type: Transform + - uid: 4424 + components: + - pos: 35.5,-6.5 + parent: 34 + type: Transform + - uid: 4425 + components: + - pos: 32.5,-0.5 + parent: 34 + type: Transform + - uid: 4427 + components: + - pos: 37.5,-1.5 + parent: 34 + type: Transform + - uid: 4428 + components: + - pos: 36.5,-1.5 + parent: 34 + type: Transform + - uid: 4429 + components: + - pos: 33.5,-12.5 + parent: 34 + type: Transform + - uid: 4446 + components: + - pos: -18.5,-28.5 + parent: 34 + type: Transform + - uid: 4471 + components: + - pos: 40.5,-42.5 + parent: 34 + type: Transform + - uid: 4472 + components: + - pos: 41.5,-42.5 + parent: 34 + type: Transform + - uid: 4477 + components: + - pos: 34.5,-41.5 + parent: 34 + type: Transform + - uid: 4478 + components: + - pos: 33.5,-41.5 + parent: 34 + type: Transform + - uid: 4479 + components: + - pos: 32.5,-41.5 + parent: 34 + type: Transform + - uid: 4480 + components: + - pos: 31.5,-41.5 + parent: 34 + type: Transform + - uid: 4481 + components: + - pos: 31.5,-42.5 + parent: 34 + type: Transform + - uid: 4484 + components: + - pos: 28.5,-42.5 + parent: 34 + type: Transform + - uid: 4485 + components: + - pos: 27.5,-43.5 + parent: 34 + type: Transform + - uid: 4486 + components: + - pos: 27.5,-42.5 + parent: 34 + type: Transform + - uid: 4487 + components: + - pos: 26.5,-43.5 + parent: 34 + type: Transform + - uid: 4488 + components: + - pos: 25.5,-43.5 + parent: 34 + type: Transform + - uid: 4489 + components: + - pos: 24.5,-43.5 + parent: 34 + type: Transform + - uid: 4490 + components: + - pos: 23.5,-43.5 + parent: 34 + type: Transform + - uid: 4495 + components: + - pos: 23.5,-44.5 + parent: 34 + type: Transform + - uid: 4500 + components: + - pos: 21.5,2.5 + parent: 34 + type: Transform + - uid: 4501 + components: + - pos: 34.5,-0.5 + parent: 34 + type: Transform + - uid: 4508 + components: + - pos: 35.5,-7.5 + parent: 34 + type: Transform + - uid: 4515 + components: + - pos: -28.5,-40.5 + parent: 34 + type: Transform + - uid: 4521 + components: + - pos: 35.5,0.5 + parent: 34 + type: Transform + - uid: 4522 + components: + - pos: 35.5,1.5 + parent: 34 + type: Transform + - uid: 4523 + components: + - pos: 35.5,2.5 + parent: 34 + type: Transform + - uid: 4524 + components: + - pos: 35.5,3.5 + parent: 34 + type: Transform + - uid: 4525 + components: + - pos: 35.5,4.5 + parent: 34 + type: Transform + - uid: 4526 + components: + - pos: 35.5,5.5 + parent: 34 + type: Transform + - uid: 4527 + components: + - pos: 35.5,6.5 + parent: 34 + type: Transform + - uid: 4534 + components: + - pos: 38.5,-11.5 + parent: 34 + type: Transform + - uid: 4538 + components: + - pos: 38.5,-14.5 + parent: 34 + type: Transform + - uid: 4546 + components: + - pos: 46.5,-5.5 + parent: 34 + type: Transform + - uid: 4566 + components: + - pos: -22.5,-38.5 + parent: 34 + type: Transform + - uid: 4573 + components: + - pos: -20.5,-38.5 + parent: 34 + type: Transform + - uid: 4582 + components: + - pos: 40.5,-1.5 + parent: 34 + type: Transform + - uid: 4583 + components: + - pos: 40.5,-0.5 + parent: 34 + type: Transform + - uid: 4584 + components: + - pos: 40.5,0.5 + parent: 34 + type: Transform + - uid: 4585 + components: + - pos: 40.5,1.5 + parent: 34 + type: Transform + - uid: 4586 + components: + - pos: 40.5,2.5 + parent: 34 + type: Transform + - uid: 4587 + components: + - pos: 39.5,2.5 + parent: 34 + type: Transform + - uid: 4589 + components: + - pos: 37.5,2.5 + parent: 34 + type: Transform + - uid: 4590 + components: + - pos: 36.5,2.5 + parent: 34 + type: Transform + - uid: 4602 + components: + - pos: 47.5,-5.5 + parent: 34 + type: Transform + - uid: 4603 + components: + - pos: 48.5,-5.5 + parent: 34 + type: Transform + - uid: 4604 + components: + - pos: -22.5,-30.5 + parent: 34 + type: Transform + - uid: 4611 + components: + - pos: 48.5,2.5 + parent: 34 + type: Transform + - uid: 4612 + components: + - pos: 47.5,2.5 + parent: 34 + type: Transform + - uid: 4613 + components: + - pos: 46.5,2.5 + parent: 34 + type: Transform + - uid: 4614 + components: + - pos: 46.5,3.5 + parent: 34 + type: Transform + - uid: 4617 + components: + - pos: 46.5,6.5 + parent: 34 + type: Transform + - uid: 4618 + components: + - pos: 46.5,7.5 + parent: 34 + type: Transform + - uid: 4619 + components: + - pos: 45.5,7.5 + parent: 34 + type: Transform + - uid: 4622 + components: + - pos: 42.5,7.5 + parent: 34 + type: Transform + - uid: 4623 + components: + - pos: 41.5,7.5 + parent: 34 + type: Transform + - uid: 4624 + components: + - pos: 40.5,7.5 + parent: 34 + type: Transform + - uid: 4628 + components: + - pos: 36.5,7.5 + parent: 34 + type: Transform + - uid: 4629 + components: + - pos: 35.5,7.5 + parent: 34 + type: Transform + - uid: 4630 + components: + - pos: 34.5,7.5 + parent: 34 + type: Transform + - uid: 4638 + components: + - pos: 34.5,-11.5 + parent: 34 + type: Transform + - uid: 4639 + components: + - pos: 34.5,-10.5 + parent: 34 + type: Transform + - uid: 4640 + components: + - pos: 51.5,-4.5 + parent: 34 + type: Transform + - uid: 4641 + components: + - pos: 50.5,2.5 + parent: 34 + type: Transform + - uid: 4643 + components: + - pos: 51.5,1.5 + parent: 34 + type: Transform + - uid: 4645 + components: + - pos: 49.5,2.5 + parent: 34 + type: Transform + - uid: 4647 + components: + - pos: 51.5,2.5 + parent: 34 + type: Transform + - uid: 4649 + components: + - pos: 38.5,-19.5 + parent: 34 + type: Transform + - uid: 4653 + components: + - pos: 49.5,-5.5 + parent: 34 + type: Transform + - uid: 4751 + components: + - pos: -18.5,-32.5 + parent: 34 + type: Transform + - uid: 4754 + components: + - pos: 46.5,-4.5 + parent: 34 + type: Transform + - uid: 4765 + components: + - pos: 46.5,-11.5 + parent: 34 + type: Transform + - uid: 4861 + components: + - pos: 32.5,-12.5 + parent: 34 + type: Transform + - uid: 4862 + components: + - pos: 40.5,-20.5 + parent: 34 + type: Transform + - uid: 4863 + components: + - pos: 37.5,-17.5 + parent: 34 + type: Transform + - uid: 4871 + components: + - pos: 42.5,-15.5 + parent: 34 + type: Transform + - uid: 4877 + components: + - pos: 29.5,-20.5 + parent: 34 + type: Transform + - uid: 4878 + components: + - pos: 30.5,-20.5 + parent: 34 + type: Transform + - uid: 4879 + components: + - pos: 31.5,-20.5 + parent: 34 + type: Transform + - uid: 4897 + components: + - pos: 31.5,-19.5 + parent: 34 + type: Transform + - uid: 4898 + components: + - pos: 35.5,-20.5 + parent: 34 + type: Transform + - uid: 4899 + components: + - pos: 34.5,-19.5 + parent: 34 + type: Transform + - uid: 4949 + components: + - pos: 38.5,-17.5 + parent: 34 + type: Transform + - uid: 4950 + components: + - pos: 38.5,-18.5 + parent: 34 + type: Transform + - uid: 4958 + components: + - pos: 32.5,-15.5 + parent: 34 + type: Transform + - uid: 4959 + components: + - pos: 34.5,8.5 + parent: 34 + type: Transform + - uid: 4960 + components: + - pos: 34.5,9.5 + parent: 34 + type: Transform + - uid: 4961 + components: + - pos: 33.5,9.5 + parent: 34 + type: Transform + - uid: 4964 + components: + - pos: 30.5,9.5 + parent: 34 + type: Transform + - uid: 4965 + components: + - pos: 29.5,9.5 + parent: 34 + type: Transform + - uid: 4968 + components: + - pos: 24.5,13.5 + parent: 34 + type: Transform + - uid: 4974 + components: + - pos: 21.5,4.5 + parent: 34 + type: Transform + - uid: 4975 + components: + - pos: 21.5,3.5 + parent: 34 + type: Transform + - uid: 4976 + components: + - pos: 21.5,6.5 + parent: 34 + type: Transform + - uid: 4977 + components: + - pos: 21.5,5.5 + parent: 34 + type: Transform + - uid: 4978 + components: + - pos: -58.5,-3.5 + parent: 34 + type: Transform + - uid: 4985 + components: + - pos: 18.5,10.5 + parent: 34 + type: Transform + - uid: 4986 + components: + - pos: 17.5,10.5 + parent: 34 + type: Transform + - uid: 4987 + components: + - pos: 16.5,10.5 + parent: 34 + type: Transform + - uid: 4993 + components: + - pos: 15.5,10.5 + parent: 34 + type: Transform + - uid: 4994 + components: + - pos: -58.5,-2.5 + parent: 34 + type: Transform + - uid: 4995 + components: + - pos: -57.5,-2.5 + parent: 34 + type: Transform + - uid: 4996 + components: + - pos: -58.5,4.5 + parent: 34 + type: Transform + - uid: 4997 + components: + - pos: -58.5,3.5 + parent: 34 + type: Transform + - uid: 5009 + components: + - pos: 34.5,-20.5 + parent: 34 + type: Transform + - uid: 5010 + components: + - pos: 36.5,-20.5 + parent: 34 + type: Transform + - uid: 5012 + components: + - pos: 37.5,-20.5 + parent: 34 + type: Transform + - uid: 5013 + components: + - pos: 38.5,-20.5 + parent: 34 + type: Transform + - uid: 5016 + components: + - pos: 38.5,-22.5 + parent: 34 + type: Transform + - uid: 5017 + components: + - pos: 38.5,-24.5 + parent: 34 + type: Transform + - uid: 5018 + components: + - pos: 40.5,-22.5 + parent: 34 + type: Transform + - uid: 5019 + components: + - pos: 40.5,-24.5 + parent: 34 + type: Transform + - uid: 5020 + components: + - pos: 39.5,-24.5 + parent: 34 + type: Transform + - uid: 5021 + components: + - pos: 39.5,-22.5 + parent: 34 + type: Transform + - uid: 5059 + components: + - pos: -48.5,8.5 + parent: 34 + type: Transform + - uid: 5060 + components: + - pos: -58.5,5.5 + parent: 34 + type: Transform + - uid: 5139 + components: + - pos: 19.5,-45.5 + parent: 34 + type: Transform + - uid: 5206 + components: + - pos: 29.5,-32.5 + parent: 34 + type: Transform + - uid: 5254 + components: + - pos: 3.5,-55.5 + parent: 34 + type: Transform + - uid: 5255 + components: + - pos: 7.5,-55.5 + parent: 34 + type: Transform + - uid: 5256 + components: + - pos: -0.5,-55.5 + parent: 34 + type: Transform + - uid: 5257 + components: + - pos: -4.5,-55.5 + parent: 34 + type: Transform + - uid: 5268 + components: + - pos: 31.5,-9.5 + parent: 34 + type: Transform + - uid: 5280 + components: + - pos: 13.5,-49.5 + parent: 34 + type: Transform + - uid: 5283 + components: + - pos: 13.5,-47.5 + parent: 34 + type: Transform + - uid: 5303 + components: + - pos: 37.5,-43.5 + parent: 34 + type: Transform + - uid: 5396 + components: + - pos: 27.5,-46.5 + parent: 34 + type: Transform + - uid: 5412 + components: + - pos: 34.5,-42.5 + parent: 34 + type: Transform + - uid: 5420 + components: + - pos: 34.5,-46.5 + parent: 34 + type: Transform + - uid: 5483 + components: + - pos: 37.5,-46.5 + parent: 34 + type: Transform + - uid: 5489 + components: + - pos: 37.5,-44.5 + parent: 34 + type: Transform + - uid: 5490 + components: + - pos: 37.5,-45.5 + parent: 34 + type: Transform + - uid: 5491 + components: + - pos: 35.5,-42.5 + parent: 34 + type: Transform + - uid: 5492 + components: + - pos: 36.5,-42.5 + parent: 34 + type: Transform + - uid: 5493 + components: + - pos: 37.5,-42.5 + parent: 34 + type: Transform + - uid: 5494 + components: + - pos: 38.5,-42.5 + parent: 34 + type: Transform + - uid: 5497 + components: + - pos: 34.5,-39.5 + parent: 34 + type: Transform + - uid: 5576 + components: + - pos: -28.5,5.5 + parent: 34 + type: Transform + - uid: 5577 + components: + - pos: -28.5,6.5 + parent: 34 + type: Transform + - uid: 5597 + components: + - pos: -23.5,1.5 + parent: 34 + type: Transform + - uid: 5598 + components: + - pos: -27.5,1.5 + parent: 34 + type: Transform + - uid: 5604 + components: + - pos: -19.5,6.5 + parent: 34 + type: Transform + - uid: 5605 + components: + - pos: -24.5,6.5 + parent: 34 + type: Transform + - uid: 5607 + components: + - pos: -27.5,6.5 + parent: 34 + type: Transform + - uid: 5608 + components: + - pos: -27.5,9.5 + parent: 34 + type: Transform + - uid: 5609 + components: + - pos: -24.5,9.5 + parent: 34 + type: Transform + - uid: 5615 + components: + - pos: -26.5,9.5 + parent: 34 + type: Transform + - uid: 5616 + components: + - pos: -25.5,9.5 + parent: 34 + type: Transform + - uid: 5631 + components: + - pos: -43.5,7.5 + parent: 34 + type: Transform + - uid: 5834 + components: + - pos: -33.5,6.5 + parent: 34 + type: Transform + - uid: 5835 + components: + - pos: -33.5,5.5 + parent: 34 + type: Transform + - uid: 5836 + components: + - pos: -34.5,6.5 + parent: 34 + type: Transform + - uid: 5837 + components: + - pos: -35.5,6.5 + parent: 34 + type: Transform + - uid: 5838 + components: + - pos: -36.5,6.5 + parent: 34 + type: Transform + - uid: 5839 + components: + - pos: -37.5,6.5 + parent: 34 + type: Transform + - uid: 5840 + components: + - pos: -38.5,6.5 + parent: 34 + type: Transform + - uid: 5841 + components: + - pos: -39.5,6.5 + parent: 34 + type: Transform + - uid: 5842 + components: + - pos: -40.5,6.5 + parent: 34 + type: Transform + - uid: 5865 + components: + - pos: -43.5,6.5 + parent: 34 + type: Transform + - uid: 5866 + components: + - pos: -42.5,6.5 + parent: 34 + type: Transform + - uid: 5868 + components: + - pos: -48.5,7.5 + parent: 34 + type: Transform + - uid: 5869 + components: + - pos: -58.5,6.5 + parent: 34 + type: Transform + - uid: 5870 + components: + - pos: -58.5,7.5 + parent: 34 + type: Transform + - uid: 5871 + components: + - pos: -57.5,8.5 + parent: 34 + type: Transform + - uid: 5872 + components: + - pos: -57.5,9.5 + parent: 34 + type: Transform + - uid: 5873 + components: + - pos: -56.5,9.5 + parent: 34 + type: Transform + - uid: 5874 + components: + - pos: -58.5,8.5 + parent: 34 + type: Transform + - uid: 5914 + components: + - pos: -43.5,8.5 + parent: 34 + type: Transform + - uid: 5973 + components: + - pos: 46.5,-20.5 + parent: 34 + type: Transform + - uid: 5974 + components: + - pos: 47.5,-20.5 + parent: 34 + type: Transform + - uid: 5975 + components: + - pos: 48.5,-20.5 + parent: 34 + type: Transform + - uid: 5976 + components: + - pos: 49.5,-20.5 + parent: 34 + type: Transform + - uid: 5977 + components: + - pos: 50.5,-20.5 + parent: 34 + type: Transform + - uid: 5978 + components: + - pos: 51.5,-20.5 + parent: 34 + type: Transform + - uid: 5979 + components: + - pos: 52.5,-20.5 + parent: 34 + type: Transform + - uid: 5980 + components: + - pos: 46.5,-21.5 + parent: 34 + type: Transform + - uid: 5981 + components: + - pos: 46.5,-25.5 + parent: 34 + type: Transform + - uid: 5982 + components: + - pos: 46.5,-26.5 + parent: 34 + type: Transform + - uid: 5983 + components: + - pos: 47.5,-26.5 + parent: 34 + type: Transform + - uid: 5984 + components: + - pos: 48.5,-26.5 + parent: 34 + type: Transform + - uid: 5985 + components: + - pos: 49.5,-26.5 + parent: 34 + type: Transform + - uid: 5986 + components: + - pos: 50.5,-26.5 + parent: 34 + type: Transform + - uid: 5987 + components: + - pos: 51.5,-26.5 + parent: 34 + type: Transform + - uid: 5988 + components: + - pos: 52.5,-26.5 + parent: 34 + type: Transform + - uid: 5989 + components: + - pos: 52.5,-25.5 + parent: 34 + type: Transform + - uid: 5993 + components: + - pos: 52.5,-21.5 + parent: 34 + type: Transform + - uid: 5995 + components: + - pos: 53.5,-21.5 + parent: 34 + type: Transform + - uid: 5996 + components: + - pos: 53.5,-22.5 + parent: 34 + type: Transform + - uid: 5997 + components: + - pos: 53.5,-23.5 + parent: 34 + type: Transform + - uid: 5998 + components: + - pos: 53.5,-24.5 + parent: 34 + type: Transform + - uid: 5999 + components: + - pos: 53.5,-25.5 + parent: 34 + type: Transform + - uid: 6000 + components: + - pos: 46.5,-22.5 + parent: 34 + type: Transform + - uid: 6001 + components: + - pos: 46.5,-24.5 + parent: 34 + type: Transform + - uid: 6005 + components: + - pos: 50.5,-25.5 + parent: 34 + type: Transform + - uid: 6006 + components: + - pos: 51.5,-25.5 + parent: 34 + type: Transform + - uid: 6018 + components: + - pos: 51.5,-21.5 + parent: 34 + type: Transform + - uid: 6019 + components: + - pos: 50.5,-21.5 + parent: 34 + type: Transform + - uid: 6106 + components: + - pos: 7.5,12.5 + parent: 34 + type: Transform + - uid: 6119 + components: + - pos: 11.5,11.5 + parent: 34 + type: Transform + - uid: 6121 + components: + - pos: 11.5,12.5 + parent: 34 + type: Transform + - uid: 6124 + components: + - pos: 6.5,12.5 + parent: 34 + type: Transform + - uid: 6131 + components: + - pos: 9.5,12.5 + parent: 34 + type: Transform + - uid: 6149 + components: + - pos: 10.5,12.5 + parent: 34 + type: Transform + - uid: 6151 + components: + - pos: 18.5,2.5 + parent: 34 + type: Transform + - uid: 6153 + components: + - pos: 16.5,2.5 + parent: 34 + type: Transform + - uid: 6154 + components: + - pos: 19.5,2.5 + parent: 34 + type: Transform + - uid: 6156 + components: + - pos: 15.5,2.5 + parent: 34 + type: Transform + - uid: 6160 + components: + - pos: 15.5,11.5 + parent: 34 + type: Transform + - uid: 6161 + components: + - pos: 15.5,12.5 + parent: 34 + type: Transform + - uid: 6162 + components: + - pos: 5.5,12.5 + parent: 34 + type: Transform + - uid: 6163 + components: + - pos: 4.5,12.5 + parent: 34 + type: Transform + - uid: 6166 + components: + - pos: -5.5,13.5 + parent: 34 + type: Transform + - uid: 6167 + components: + - pos: 15.5,16.5 + parent: 34 + type: Transform + - uid: 6169 + components: + - pos: 15.5,13.5 + parent: 34 + type: Transform + - uid: 6170 + components: + - pos: 14.5,20.5 + parent: 34 + type: Transform + - uid: 6173 + components: + - pos: 3.5,12.5 + parent: 34 + type: Transform + - uid: 6174 + components: + - pos: 3.5,13.5 + parent: 34 + type: Transform + - uid: 6176 + components: + - pos: 11.5,19.5 + parent: 34 + type: Transform + - uid: 6177 + components: + - pos: -5.5,12.5 + parent: 34 + type: Transform + - uid: 6182 + components: + - pos: -4.5,12.5 + parent: 34 + type: Transform + - uid: 6193 + components: + - pos: -12.5,-43.5 + parent: 34 + type: Transform + - uid: 6214 + components: + - pos: -55.5,-5.5 + parent: 34 + type: Transform + - uid: 6241 + components: + - pos: 17.5,2.5 + parent: 34 + type: Transform + - uid: 6297 + components: + - pos: 1.5,15.5 + parent: 34 + type: Transform + - uid: 6298 + components: + - pos: -2.5,15.5 + parent: 34 + type: Transform + - uid: 6319 + components: + - pos: -60.5,-8.5 + parent: 34 + type: Transform + - uid: 6320 + components: + - pos: -60.5,-7.5 + parent: 34 + type: Transform + - uid: 6324 + components: + - pos: -60.5,-11.5 + parent: 34 + type: Transform + - uid: 6325 + components: + - pos: -60.5,-12.5 + parent: 34 + type: Transform + - uid: 6326 + components: + - pos: -59.5,-12.5 + parent: 34 + type: Transform + - uid: 6327 + components: + - pos: -58.5,-12.5 + parent: 34 + type: Transform + - uid: 6328 + components: + - pos: -57.5,-12.5 + parent: 34 + type: Transform + - uid: 6329 + components: + - pos: -56.5,-12.5 + parent: 34 + type: Transform + - uid: 6331 + components: + - pos: -59.5,-7.5 + parent: 34 + type: Transform + - uid: 6389 + components: + - pos: 7.5,19.5 + parent: 34 + type: Transform + - uid: 6393 + components: + - pos: -22.5,-37.5 + parent: 34 + type: Transform + - uid: 6400 + components: + - pos: -14.5,-43.5 + parent: 34 + type: Transform + - uid: 6401 + components: + - pos: -16.5,-36.5 + parent: 34 + type: Transform + - uid: 6687 + components: + - pos: -15.5,-36.5 + parent: 34 + type: Transform + - uid: 6695 + components: + - pos: 12.5,-46.5 + parent: 34 + type: Transform + - uid: 6749 + components: + - pos: 15.5,-45.5 + parent: 34 + type: Transform + - uid: 7030 + components: + - pos: 49.5,-14.5 + parent: 34 + type: Transform + - uid: 7046 + components: + - pos: 49.5,-12.5 + parent: 34 + type: Transform + - uid: 7047 + components: + - pos: 40.5,-11.5 + parent: 34 + type: Transform + - uid: 7048 + components: + - pos: 11.5,-46.5 + parent: 34 + type: Transform + - uid: 7055 + components: + - pos: 40.5,-14.5 + parent: 34 + type: Transform + - uid: 7074 + components: + - pos: 39.5,-8.5 + parent: 34 + type: Transform + - uid: 7078 + components: + - pos: 46.5,-8.5 + parent: 34 + type: Transform + - uid: 7080 + components: + - pos: 46.5,1.5 + parent: 34 + type: Transform + - uid: 7090 + components: + - pos: 47.5,-11.5 + parent: 34 + type: Transform + - uid: 7412 + components: + - pos: -10.5,9.5 + parent: 34 + type: Transform + - uid: 7417 + components: + - pos: -49.5,-31.5 + parent: 34 + type: Transform + - uid: 7418 + components: + - pos: 9.5,-51.5 + parent: 34 + type: Transform + - uid: 7428 + components: + - pos: 19.5,-46.5 + parent: 34 + type: Transform + - uid: 7466 + components: + - pos: -43.5,9.5 + parent: 34 + type: Transform + - uid: 7554 + components: + - pos: -10.5,11.5 + parent: 34 + type: Transform + - uid: 7572 + components: + - pos: -5.5,14.5 + parent: 34 + type: Transform + - uid: 7574 + components: + - pos: 2.5,12.5 + parent: 34 + type: Transform + - uid: 7578 + components: + - pos: 15.5,19.5 + parent: 34 + type: Transform + - uid: 7703 + components: + - pos: 9.5,-55.5 + parent: 34 + type: Transform + - uid: 7705 + components: + - pos: -31.5,-44.5 + parent: 34 + type: Transform + - uid: 7720 + components: + - pos: 29.5,-38.5 + parent: 34 + type: Transform + - uid: 7754 + components: + - pos: -1.5,-44.5 + parent: 34 + type: Transform + - uid: 7756 + components: + - pos: -0.5,-44.5 + parent: 34 + type: Transform + - uid: 7780 + components: + - pos: -6.5,-55.5 + parent: 34 + type: Transform + - uid: 7803 + components: + - pos: -43.5,10.5 + parent: 34 + type: Transform + - uid: 7804 + components: + - pos: -43.5,11.5 + parent: 34 + type: Transform + - uid: 7805 + components: + - pos: -42.5,11.5 + parent: 34 + type: Transform + - uid: 7812 + components: + - pos: -39.5,11.5 + parent: 34 + type: Transform + - uid: 7820 + components: + - pos: -49.5,-36.5 + parent: 34 + type: Transform + - uid: 7827 + components: + - pos: 0.5,-44.5 + parent: 34 + type: Transform + - uid: 7968 + components: + - pos: -38.5,11.5 + parent: 34 + type: Transform + - uid: 7969 + components: + - pos: -37.5,11.5 + parent: 34 + type: Transform + - uid: 7970 + components: + - pos: -37.5,10.5 + parent: 34 + type: Transform + - uid: 8086 + components: + - pos: -37.5,9.5 + parent: 34 + type: Transform + - uid: 8110 + components: + - pos: -37.5,8.5 + parent: 34 + type: Transform + - uid: 8249 + components: + - pos: -37.5,7.5 + parent: 34 + type: Transform + - uid: 8417 + components: + - pos: -27.5,-32.5 + parent: 34 + type: Transform + - uid: 8422 + components: + - pos: -10.5,12.5 + parent: 34 + type: Transform + - uid: 8435 + components: + - pos: -47.5,-23.5 + parent: 34 + type: Transform + - uid: 8891 + components: + - pos: 34.5,-14.5 + parent: 34 + type: Transform + - uid: 8903 + components: + - pos: 39.5,-1.5 + parent: 34 + type: Transform + - uid: 8916 + components: + - pos: 50.5,-5.5 + parent: 34 + type: Transform + - uid: 8917 + components: + - pos: 48.5,-11.5 + parent: 34 + type: Transform + - uid: 8918 + components: + - pos: 42.5,-17.5 + parent: 34 + type: Transform + - uid: 8925 + components: + - pos: 34.5,-9.5 + parent: 34 + type: Transform + - uid: 8926 + components: + - pos: 34.5,-13.5 + parent: 34 + type: Transform + - uid: 8928 + components: + - pos: -19.5,-32.5 + parent: 34 + type: Transform + - uid: 8933 + components: + - pos: 35.5,-8.5 + parent: 34 + type: Transform + - uid: 8970 + components: + - pos: -2.5,-44.5 + parent: 34 + type: Transform + - uid: 9021 + components: + - pos: 1.5,-44.5 + parent: 34 + type: Transform + - uid: 9383 + components: + - pos: -41.5,-17.5 + parent: 34 + type: Transform + - uid: 9493 + components: + - pos: -45.5,-23.5 + parent: 34 + type: Transform + - uid: 9701 + components: + - pos: -10.5,8.5 + parent: 34 + type: Transform + - uid: 10005 + components: + - pos: 38.5,-1.5 + parent: 34 + type: Transform + - uid: 10138 + components: + - pos: 48.5,-14.5 + parent: 34 + type: Transform + - uid: 10219 + components: + - pos: 49.5,-13.5 + parent: 34 + type: Transform + - uid: 10221 + components: + - pos: 41.5,-11.5 + parent: 34 + type: Transform + - uid: 10261 + components: + - pos: 43.5,-37.5 + parent: 34 + type: Transform + - uid: 10295 + components: + - pos: -35.5,-6.5 + parent: 34 + type: Transform + - uid: 10335 + components: + - pos: 43.5,-30.5 + parent: 34 + type: Transform + - uid: 10345 + components: + - pos: 39.5,-11.5 + parent: 34 + type: Transform + - uid: 10380 + components: + - pos: -41.5,-23.5 + parent: 34 + type: Transform + - uid: 10434 + components: + - pos: -31.5,-41.5 + parent: 34 + type: Transform + - uid: 10448 + components: + - pos: -41.5,-20.5 + parent: 34 + type: Transform + - uid: 10450 + components: + - pos: -53.5,-19.5 + parent: 34 + type: Transform + - uid: 10459 + components: + - pos: 40.5,-8.5 + parent: 34 + type: Transform + - uid: 10462 + components: + - pos: 16.5,-46.5 + parent: 34 + type: Transform + - uid: 10496 + components: + - pos: -53.5,-41.5 + parent: 34 + type: Transform + - uid: 10497 + components: + - pos: -43.5,-23.5 + parent: 34 + type: Transform + - uid: 10498 + components: + - pos: -40.5,-23.5 + parent: 34 + type: Transform + - uid: 10500 + components: + - pos: -40.5,-20.5 + parent: 34 + type: Transform + - uid: 10501 + components: + - pos: -49.5,-23.5 + parent: 34 + type: Transform + - uid: 10502 + components: + - pos: -50.5,-23.5 + parent: 34 + type: Transform + - uid: 10545 + components: + - pos: -24.5,-28.5 + parent: 34 + type: Transform + - uid: 10561 + components: + - pos: -31.5,-42.5 + parent: 34 + type: Transform + - uid: 10609 + components: + - pos: -6.5,-51.5 + parent: 34 + type: Transform + - uid: 10623 + components: + - pos: 29.5,13.5 + parent: 34 + type: Transform + - uid: 10633 + components: + - pos: -31.5,-45.5 + parent: 34 + type: Transform + - uid: 10678 + components: + - pos: -48.5,-32.5 + parent: 34 + type: Transform + - uid: 10745 + components: + - pos: -31.5,-43.5 + parent: 34 + type: Transform + - uid: 10747 + components: + - pos: -5.5,15.5 + parent: 34 + type: Transform + - uid: 10752 + components: + - pos: -11.5,-42.5 + parent: 34 + type: Transform + - uid: 10765 + components: + - pos: -42.5,-23.5 + parent: 34 + type: Transform + - uid: 10790 + components: + - pos: -44.5,-23.5 + parent: 34 + type: Transform + - uid: 10792 + components: + - pos: -51.5,-15.5 + parent: 34 + type: Transform + - uid: 10793 + components: + - pos: -50.5,-15.5 + parent: 34 + type: Transform + - uid: 10947 + components: + - pos: -34.5,-6.5 + parent: 34 + type: Transform + - uid: 10949 + components: + - pos: 3.5,19.5 + parent: 34 + type: Transform + - uid: 10950 + components: + - pos: 7.5,20.5 + parent: 34 + type: Transform + - uid: 10982 + components: + - pos: -22.5,-43.5 + parent: 34 + type: Transform + - uid: 11103 + components: + - pos: 18.5,11.5 + parent: 34 + type: Transform + - uid: 11110 + components: + - pos: -39.5,-52.5 + parent: 34 + type: Transform + - uid: 11111 + components: + - pos: -39.5,-51.5 + parent: 34 + type: Transform + - uid: 11131 + components: + - pos: -3.5,12.5 + parent: 34 + type: Transform + - uid: 11148 + components: + - pos: -55.5,11.5 + parent: 34 + type: Transform + - uid: 11149 + components: + - pos: -55.5,12.5 + parent: 34 + type: Transform + - uid: 11150 + components: + - pos: -55.5,13.5 + parent: 34 + type: Transform + - uid: 11151 + components: + - pos: -54.5,13.5 + parent: 34 + type: Transform + - uid: 11153 + components: + - pos: -53.5,14.5 + parent: 34 + type: Transform + - uid: 11154 + components: + - pos: -52.5,14.5 + parent: 34 + type: Transform + - uid: 11155 + components: + - pos: -51.5,14.5 + parent: 34 + type: Transform + - uid: 11156 + components: + - pos: -50.5,14.5 + parent: 34 + type: Transform + - uid: 11157 + components: + - pos: -49.5,14.5 + parent: 34 + type: Transform + - uid: 11158 + components: + - pos: -49.5,13.5 + parent: 34 + type: Transform + - uid: 11159 + components: + - pos: -49.5,12.5 + parent: 34 + type: Transform + - uid: 11160 + components: + - pos: -49.5,11.5 + parent: 34 + type: Transform + - uid: 11161 + components: + - pos: -50.5,11.5 + parent: 34 + type: Transform + - uid: 11162 + components: + - pos: -51.5,11.5 + parent: 34 + type: Transform + - uid: 11163 + components: + - pos: -51.5,10.5 + parent: 34 + type: Transform + - uid: 11169 + components: + - pos: -54.5,14.5 + parent: 34 + type: Transform + - uid: 11196 + components: + - pos: 18.5,12.5 + parent: 34 + type: Transform + - uid: 11197 + components: + - pos: 18.5,13.5 + parent: 34 + type: Transform + - uid: 11198 + components: + - pos: 19.5,13.5 + parent: 34 + type: Transform + - uid: 11201 + components: + - pos: 22.5,13.5 + parent: 34 + type: Transform + - uid: 11203 + components: + - pos: 23.5,13.5 + parent: 34 + type: Transform + - uid: 11220 + components: + - pos: 18.5,-46.5 + parent: 34 + type: Transform + - uid: 11221 + components: + - pos: 15.5,-46.5 + parent: 34 + type: Transform + - uid: 11232 + components: + - pos: 17.5,-46.5 + parent: 34 + type: Transform + - uid: 11262 + components: + - pos: 28.5,13.5 + parent: 34 + type: Transform + - uid: 11267 + components: + - pos: 29.5,12.5 + parent: 34 + type: Transform + - uid: 11268 + components: + - pos: 29.5,11.5 + parent: 34 + type: Transform + - uid: 11269 + components: + - pos: 29.5,10.5 + parent: 34 + type: Transform + - uid: 11317 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-23.5 + parent: 34 + type: Transform + - uid: 11372 + components: + - pos: 42.5,-16.5 + parent: 34 + type: Transform + - uid: 11383 + components: + - pos: 0.5,12.5 + parent: 34 + type: Transform + - uid: 11438 + components: + - pos: -1.5,12.5 + parent: 34 + type: Transform + - uid: 11442 + components: + - pos: 42.5,-18.5 + parent: 34 + type: Transform + - uid: 11494 + components: + - pos: -54.5,-42.5 + parent: 34 + type: Transform + - uid: 11495 + components: + - pos: -54.5,-41.5 + parent: 34 + type: Transform + - uid: 11496 + components: + - pos: -54.5,-38.5 + parent: 34 + type: Transform + - uid: 11497 + components: + - pos: -54.5,-39.5 + parent: 34 + type: Transform + - uid: 11537 + components: + - pos: -10.5,7.5 + parent: 34 + type: Transform + - uid: 11588 + components: + - pos: -53.5,-16.5 + parent: 34 + type: Transform + - uid: 11604 + components: + - pos: -48.5,-15.5 + parent: 34 + type: Transform + - uid: 11606 + components: + - pos: -45.5,-15.5 + parent: 34 + type: Transform + - uid: 11609 + components: + - pos: -22.5,-35.5 + parent: 34 + type: Transform + - uid: 11764 + components: + - pos: -29.5,-40.5 + parent: 34 + type: Transform + - uid: 11770 + components: + - pos: -48.5,-23.5 + parent: 34 + type: Transform + - uid: 11788 + components: + - pos: 1.5,12.5 + parent: 34 + type: Transform + - uid: 11791 + components: + - pos: 2.5,15.5 + parent: 34 + type: Transform + - uid: 11824 + components: + - pos: -0.5,12.5 + parent: 34 + type: Transform + - uid: 11836 + components: + - pos: 3.5,15.5 + parent: 34 + type: Transform + - uid: 11878 + components: + - pos: 51.5,-5.5 + parent: 34 + type: Transform + - uid: 11907 + components: + - pos: 4.5,19.5 + parent: 34 + type: Transform + - uid: 11908 + components: + - pos: 11.5,20.5 + parent: 34 + type: Transform + - uid: 11910 + components: + - pos: 14.5,19.5 + parent: 34 + type: Transform + - uid: 11919 + components: + - pos: -26.5,-43.5 + parent: 34 + type: Transform + - uid: 11920 + components: + - pos: -13.5,-43.5 + parent: 34 + type: Transform + - uid: 12001 + components: + - pos: -13.5,-31.5 + parent: 34 + type: Transform + - uid: 12101 + components: + - pos: -53.5,-15.5 + parent: 34 + type: Transform + - uid: 12110 + components: + - pos: -13.5,-29.5 + parent: 34 + type: Transform + - uid: 12218 + components: + - pos: -23.5,-43.5 + parent: 34 + type: Transform + - uid: 12255 + components: + - pos: 4.5,20.5 + parent: 34 + type: Transform + - uid: 12301 + components: + - pos: -27.5,-40.5 + parent: 34 + type: Transform + - uid: 12302 + components: + - pos: -26.5,-40.5 + parent: 34 + type: Transform + - uid: 12303 + components: + - pos: -25.5,-40.5 + parent: 34 + type: Transform + - uid: 12304 + components: + - pos: -24.5,-40.5 + parent: 34 + type: Transform + - uid: 12305 + components: + - pos: -23.5,-40.5 + parent: 34 + type: Transform + - uid: 12308 + components: + - pos: -41.5,-16.5 + parent: 34 + type: Transform + - uid: 12310 + components: + - pos: -16.5,-28.5 + parent: 34 + type: Transform + - uid: 12311 + components: + - pos: -13.5,-36.5 + parent: 34 + type: Transform + - uid: 12312 + components: + - pos: -13.5,-35.5 + parent: 34 + type: Transform + - uid: 12313 + components: + - pos: -19.5,-36.5 + parent: 34 + type: Transform + - uid: 12316 + components: + - pos: -41.5,-15.5 + parent: 34 + type: Transform + - uid: 12363 + components: + - pos: -44.5,-14.5 + parent: 34 + type: Transform + - uid: 12366 + components: + - pos: -41.5,-14.5 + parent: 34 + type: Transform + - uid: 12367 + components: + - pos: -42.5,-14.5 + parent: 34 + type: Transform + - uid: 12385 + components: + - pos: -10.5,10.5 + parent: 34 + type: Transform + - uid: 12387 + components: + - pos: 38.5,-6.5 + parent: 34 + type: Transform + - uid: 12388 + components: + - pos: 38.5,-7.5 + parent: 34 + type: Transform + - uid: 12389 + components: + - pos: 38.5,-8.5 + parent: 34 + type: Transform + - uid: 12396 + components: + - pos: 38.5,-9.5 + parent: 34 + type: Transform + - uid: 12397 + components: + - pos: 38.5,-10.5 + parent: 34 + type: Transform + - uid: 12401 + components: + - pos: 38.5,-12.5 + parent: 34 + type: Transform + - uid: 12402 + components: + - pos: 38.5,-13.5 + parent: 34 + type: Transform + - uid: 12415 + components: + - pos: 42.5,-19.5 + parent: 34 + type: Transform + - uid: 12441 + components: + - pos: -19.5,-39.5 + parent: 34 + type: Transform + - uid: 12463 + components: + - pos: 39.5,-20.5 + parent: 34 + type: Transform + - uid: 12464 + components: + - pos: 34.5,-17.5 + parent: 34 + type: Transform + - uid: 12523 + components: + - pos: -54.5,-37.5 + parent: 34 + type: Transform + - uid: 12524 + components: + - pos: -54.5,-36.5 + parent: 34 + type: Transform + - uid: 12532 + components: + - pos: -22.5,-39.5 + parent: 34 + type: Transform + - uid: 12540 + components: + - pos: -59.5,-24.5 + parent: 34 + type: Transform + - uid: 12541 + components: + - pos: -60.5,-24.5 + parent: 34 + type: Transform + - uid: 12542 + components: + - pos: -58.5,-24.5 + parent: 34 + type: Transform + - uid: 12543 + components: + - pos: -60.5,-25.5 + parent: 34 + type: Transform + - uid: 12544 + components: + - pos: -60.5,-26.5 + parent: 34 + type: Transform + - uid: 12547 + components: + - pos: -56.5,-42.5 + parent: 34 + type: Transform + - uid: 12548 + components: + - pos: -60.5,-30.5 + parent: 34 + type: Transform + - uid: 12552 + components: + - pos: -60.5,-34.5 + parent: 34 + type: Transform + - uid: 12553 + components: + - pos: -60.5,-35.5 + parent: 34 + type: Transform + - uid: 12554 + components: + - pos: -60.5,-36.5 + parent: 34 + type: Transform + - uid: 12556 + components: + - pos: -60.5,-37.5 + parent: 34 + type: Transform + - uid: 12559 + components: + - pos: -60.5,-41.5 + parent: 34 + type: Transform + - uid: 12575 + components: + - pos: -55.5,-42.5 + parent: 34 + type: Transform + - uid: 12576 + components: + - pos: -57.5,-42.5 + parent: 34 + type: Transform + - uid: 12577 + components: + - pos: -58.5,-42.5 + parent: 34 + type: Transform + - uid: 12578 + components: + - pos: -59.5,-42.5 + parent: 34 + type: Transform + - uid: 12579 + components: + - pos: -60.5,-42.5 + parent: 34 + type: Transform + - uid: 12580 + components: + - pos: -54.5,-43.5 + parent: 34 + type: Transform + - uid: 12636 + components: + - pos: 49.5,-11.5 + parent: 34 + type: Transform + - uid: 12638 + components: + - pos: -49.5,-32.5 + parent: 34 + type: Transform + - uid: 12701 + components: + - pos: 47.5,-14.5 + parent: 34 + type: Transform + - uid: 12702 + components: + - pos: 41.5,-14.5 + parent: 34 + type: Transform + - uid: 12703 + components: + - pos: 39.5,-14.5 + parent: 34 + type: Transform + - uid: 12780 + components: + - pos: 34.5,-8.5 + parent: 34 + type: Transform + - uid: 12785 + components: + - pos: 7.5,-46.5 + parent: 34 + type: Transform + - uid: 12786 + components: + - pos: 8.5,-46.5 + parent: 34 + type: Transform + - uid: 12787 + components: + - pos: 9.5,-46.5 + parent: 34 + type: Transform + - uid: 12788 + components: + - pos: 7.5,-47.5 + parent: 34 + type: Transform +- proto: WallSolid + entities: + - uid: 109 + components: + - pos: -13.5,1.5 + parent: 34 + type: Transform + - uid: 134 + components: + - pos: -14.5,-2.5 + parent: 34 + type: Transform + - uid: 270 + components: + - pos: 4.5,-2.5 + parent: 34 + type: Transform + - uid: 271 + components: + - pos: 5.5,-2.5 + parent: 34 + type: Transform + - uid: 273 + components: + - pos: 7.5,-2.5 + parent: 34 + type: Transform + - uid: 278 + components: + - pos: -16.5,-2.5 + parent: 34 + type: Transform + - uid: 279 + components: + - pos: -15.5,-2.5 + parent: 34 + type: Transform + - uid: 282 + components: + - pos: -12.5,-2.5 + parent: 34 + type: Transform + - uid: 283 + components: + - pos: -11.5,-2.5 + parent: 34 + type: Transform + - uid: 288 + components: + - pos: -6.5,-2.5 + parent: 34 + type: Transform + - uid: 290 + components: + - pos: -2.5,-7.5 + parent: 34 + type: Transform + - uid: 291 + components: + - pos: -2.5,-3.5 + parent: 34 + type: Transform + - uid: 292 + components: + - pos: -2.5,-2.5 + parent: 34 + type: Transform + - uid: 293 + components: + - pos: -1.5,-2.5 + parent: 34 + type: Transform + - uid: 296 + components: + - pos: 1.5,-2.5 + parent: 34 + type: Transform + - uid: 297 + components: + - pos: 3.5,-2.5 + parent: 34 + type: Transform + - uid: 301 + components: + - pos: -2.5,-11.5 + parent: 34 + type: Transform + - uid: 305 + components: + - pos: -2.5,-12.5 + parent: 34 + type: Transform + - uid: 306 + components: + - pos: -2.5,-13.5 + parent: 34 + type: Transform + - uid: 308 + components: + - pos: 6.5,-9.5 + parent: 34 + type: Transform + - uid: 309 + components: + - pos: 6.5,-10.5 + parent: 34 + type: Transform + - uid: 310 + components: + - pos: 6.5,-11.5 + parent: 34 + type: Transform + - uid: 311 + components: + - pos: 7.5,-5.5 + parent: 34 + type: Transform + - uid: 314 + components: + - pos: 6.5,-6.5 + parent: 34 + type: Transform + - uid: 315 + components: + - pos: 6.5,-7.5 + parent: 34 + type: Transform + - uid: 316 + components: + - pos: 6.5,-12.5 + parent: 34 + type: Transform + - uid: 317 + components: + - pos: 6.5,-13.5 + parent: 34 + type: Transform + - uid: 319 + components: + - pos: 5.5,-13.5 + parent: 34 + type: Transform + - uid: 321 + components: + - pos: 3.5,-13.5 + parent: 34 + type: Transform + - uid: 322 + components: + - pos: 2.5,-13.5 + parent: 34 + type: Transform + - uid: 323 + components: + - pos: 1.5,-13.5 + parent: 34 + type: Transform + - uid: 324 + components: + - pos: 0.5,-13.5 + parent: 34 + type: Transform + - uid: 325 + components: + - pos: -0.5,-13.5 + parent: 34 + type: Transform + - uid: 326 + components: + - pos: -1.5,-13.5 + parent: 34 + type: Transform + - uid: 327 + components: + - pos: 8.5,-2.5 + parent: 34 + type: Transform + - uid: 328 + components: + - pos: 9.5,-2.5 + parent: 34 + type: Transform + - uid: 329 + components: + - pos: 10.5,-2.5 + parent: 34 + type: Transform + - uid: 334 + components: + - pos: 10.5,-3.5 + parent: 34 + type: Transform + - uid: 335 + components: + - pos: 10.5,-9.5 + parent: 34 + type: Transform + - uid: 338 + components: + - pos: 7.5,-3.5 + parent: 34 + type: Transform + - uid: 342 + components: + - pos: 7.5,-10.5 + parent: 34 + type: Transform + - uid: 343 + components: + - pos: 8.5,-10.5 + parent: 34 + type: Transform + - uid: 344 + components: + - pos: 9.5,-10.5 + parent: 34 + type: Transform + - uid: 349 + components: + - pos: -6.5,-3.5 + parent: 34 + type: Transform + - uid: 354 + components: + - pos: -6.5,-8.5 + parent: 34 + type: Transform + - uid: 355 + components: + - pos: -6.5,-9.5 + parent: 34 + type: Transform + - uid: 356 + components: + - pos: -13.5,-6.5 + parent: 34 + type: Transform + - uid: 357 + components: + - pos: -12.5,-6.5 + parent: 34 + type: Transform + - uid: 359 + components: + - pos: -11.5,-6.5 + parent: 34 + type: Transform + - uid: 362 + components: + - pos: -14.5,-6.5 + parent: 34 + type: Transform + - uid: 363 + components: + - pos: -15.5,-6.5 + parent: 34 + type: Transform + - uid: 368 + components: + - pos: -6.5,-10.5 + parent: 34 + type: Transform + - uid: 369 + components: + - pos: -7.5,-10.5 + parent: 34 + type: Transform + - uid: 374 + components: + - pos: -19.5,-9.5 + parent: 34 + type: Transform + - uid: 375 + components: + - pos: -13.5,-10.5 + parent: 34 + type: Transform + - uid: 376 + components: + - pos: -45.5,-11.5 + parent: 34 + type: Transform + - uid: 379 + components: + - pos: -2.5,-35.5 + parent: 34 + type: Transform + - uid: 380 + components: + - pos: -21.5,-2.5 + parent: 34 + type: Transform + - uid: 381 + components: + - pos: -21.5,-3.5 + parent: 34 + type: Transform + - uid: 382 + components: + - pos: -21.5,-4.5 + parent: 34 + type: Transform + - uid: 384 + components: + - pos: -21.5,-6.5 + parent: 34 + type: Transform + - uid: 385 + components: + - pos: -21.5,-7.5 + parent: 34 + type: Transform + - uid: 386 + components: + - pos: 6.5,-25.5 + parent: 34 + type: Transform + - uid: 387 + components: + - pos: -21.5,-9.5 + parent: 34 + type: Transform + - uid: 389 + components: + - pos: -20.5,-10.5 + parent: 34 + type: Transform + - uid: 391 + components: + - pos: 3.5,-25.5 + parent: 34 + type: Transform + - uid: 394 + components: + - pos: 1.5,-16.5 + parent: 34 + type: Transform + - uid: 395 + components: + - pos: 7.5,-16.5 + parent: 34 + type: Transform + - uid: 407 + components: + - pos: -23.5,-15.5 + parent: 34 + type: Transform + - uid: 420 + components: + - pos: -2.5,-15.5 + parent: 34 + type: Transform + - uid: 421 + components: + - pos: -2.5,-16.5 + parent: 34 + type: Transform + - uid: 422 + components: + - pos: -1.5,-16.5 + parent: 34 + type: Transform + - uid: 423 + components: + - pos: -0.5,-16.5 + parent: 34 + type: Transform + - uid: 426 + components: + - pos: 2.5,-16.5 + parent: 34 + type: Transform + - uid: 427 + components: + - pos: 3.5,-16.5 + parent: 34 + type: Transform + - uid: 428 + components: + - pos: 4.5,-16.5 + parent: 34 + type: Transform + - uid: 430 + components: + - pos: 6.5,-16.5 + parent: 34 + type: Transform + - uid: 434 + components: + - pos: -2.5,-17.5 + parent: 34 + type: Transform + - uid: 436 + components: + - pos: 10.5,-14.5 + parent: 34 + type: Transform + - uid: 438 + components: + - pos: 10.5,-15.5 + parent: 34 + type: Transform + - uid: 445 + components: + - pos: 3.5,-20.5 + parent: 34 + type: Transform + - uid: 446 + components: + - pos: -0.5,-21.5 + parent: 34 + type: Transform + - uid: 452 + components: + - pos: -2.5,-21.5 + parent: 34 + type: Transform + - uid: 454 + components: + - pos: 4.5,-21.5 + parent: 34 + type: Transform + - uid: 455 + components: + - pos: 3.5,-21.5 + parent: 34 + type: Transform + - uid: 456 + components: + - pos: 1.5,-21.5 + parent: 34 + type: Transform + - uid: 462 + components: + - pos: -27.5,-6.5 + parent: 34 + type: Transform + - uid: 505 + components: + - pos: -28.5,-6.5 + parent: 34 + type: Transform + - uid: 507 + components: + - pos: -25.5,-6.5 + parent: 34 + type: Transform + - uid: 508 + components: + - pos: -32.5,-8.5 + parent: 34 + type: Transform + - uid: 511 + components: + - pos: -23.5,-12.5 + parent: 34 + type: Transform + - uid: 517 + components: + - pos: -33.5,-13.5 + parent: 34 + type: Transform + - uid: 518 + components: + - pos: -33.5,-15.5 + parent: 34 + type: Transform + - uid: 537 + components: + - pos: -31.5,-16.5 + parent: 34 + type: Transform + - uid: 540 + components: + - pos: -32.5,-12.5 + parent: 34 + type: Transform + - uid: 542 + components: + - pos: -32.5,-7.5 + parent: 34 + type: Transform + - uid: 544 + components: + - pos: -20.5,-9.5 + parent: 34 + type: Transform + - uid: 550 + components: + - pos: -33.5,-12.5 + parent: 34 + type: Transform + - uid: 552 + components: + - pos: -31.5,-12.5 + parent: 34 + type: Transform + - uid: 553 + components: + - pos: -35.5,-12.5 + parent: 34 + type: Transform + - uid: 558 + components: + - pos: -23.5,-16.5 + parent: 34 + type: Transform + - uid: 559 + components: + - pos: -23.5,-17.5 + parent: 34 + type: Transform + - uid: 560 + components: + - pos: -23.5,-18.5 + parent: 34 + type: Transform + - uid: 562 + components: + - pos: -33.5,-14.5 + parent: 34 + type: Transform + - uid: 563 + components: + - pos: -33.5,-16.5 + parent: 34 + type: Transform + - uid: 564 + components: + - pos: -32.5,-16.5 + parent: 34 + type: Transform + - uid: 577 + components: + - pos: -23.5,-19.5 + parent: 34 + type: Transform + - uid: 578 + components: + - pos: -23.5,-20.5 + parent: 34 + type: Transform + - uid: 584 + components: + - pos: -23.5,-13.5 + parent: 34 + type: Transform + - uid: 646 + components: + - pos: -7.5,-28.5 + parent: 34 + type: Transform + - uid: 651 + components: + - pos: -9.5,-28.5 + parent: 34 + type: Transform + - uid: 671 + components: + - pos: -8.5,-28.5 + parent: 34 + type: Transform + - uid: 691 + components: + - pos: 5.5,-38.5 + parent: 34 + type: Transform + - uid: 698 + components: + - pos: -21.5,-24.5 + parent: 34 + type: Transform + - uid: 711 + components: + - pos: -26.5,-24.5 + parent: 34 + type: Transform + - uid: 739 + components: + - pos: 10.5,-13.5 + parent: 34 + type: Transform + - uid: 741 + components: + - pos: 9.5,-13.5 + parent: 34 + type: Transform + - uid: 742 + components: + - pos: 7.5,-6.5 + parent: 34 + type: Transform + - uid: 743 + components: + - pos: 8.5,-6.5 + parent: 34 + type: Transform + - uid: 744 + components: + - pos: 9.5,-6.5 + parent: 34 + type: Transform + - uid: 745 + components: + - pos: 10.5,-6.5 + parent: 34 + type: Transform + - uid: 749 + components: + - pos: 2.5,-2.5 + parent: 34 + type: Transform + - uid: 842 + components: + - pos: -12.5,-10.5 + parent: 34 + type: Transform + - uid: 873 + components: + - pos: -21.5,-8.5 + parent: 34 + type: Transform + - uid: 879 + components: + - pos: -16.5,-9.5 + parent: 34 + type: Transform + - uid: 880 + components: + - pos: -14.5,-9.5 + parent: 34 + type: Transform + - uid: 913 + components: + - pos: -27.5,-9.5 + parent: 34 + type: Transform + - uid: 987 + components: + - pos: -2.5,-31.5 + parent: 34 + type: Transform + - uid: 1013 + components: + - pos: -2.5,-20.5 + parent: 34 + type: Transform + - uid: 1023 + components: + - pos: 10.5,-16.5 + parent: 34 + type: Transform + - uid: 1032 + components: + - pos: 9.5,-12.5 + parent: 34 + type: Transform + - uid: 1046 + components: + - pos: -27.5,-27.5 + parent: 34 + type: Transform + - uid: 1048 + components: + - pos: -27.5,-25.5 + parent: 34 + type: Transform + - uid: 1075 + components: + - pos: -20.5,-24.5 + parent: 34 + type: Transform + - uid: 1087 + components: + - pos: -29.5,-28.5 + parent: 34 + type: Transform + - uid: 1088 + components: + - pos: -32.5,-28.5 + parent: 34 + type: Transform + - uid: 1089 + components: + - pos: -33.5,-28.5 + parent: 34 + type: Transform + - uid: 1090 + components: + - pos: -33.5,-27.5 + parent: 34 + type: Transform + - uid: 1092 + components: + - pos: -33.5,-25.5 + parent: 34 + type: Transform + - uid: 1105 + components: + - pos: -31.5,-28.5 + parent: 34 + type: Transform + - uid: 1106 + components: + - pos: -28.5,-28.5 + parent: 34 + type: Transform + - uid: 1276 + components: + - pos: -13.5,-9.5 + parent: 34 + type: Transform + - uid: 1277 + components: + - pos: 10.5,-25.5 + parent: 34 + type: Transform + - uid: 1283 + components: + - pos: 11.5,-25.5 + parent: 34 + type: Transform + - uid: 1288 + components: + - pos: 5.5,-42.5 + parent: 34 + type: Transform + - uid: 1292 + components: + - pos: -2.5,-34.5 + parent: 34 + type: Transform + - uid: 1299 + components: + - pos: 1.5,-34.5 + parent: 34 + type: Transform + - uid: 1316 + components: + - pos: -2.5,-36.5 + parent: 34 + type: Transform + - uid: 1323 + components: + - pos: 1.5,-35.5 + parent: 34 + type: Transform + - uid: 1326 + components: + - pos: 0.5,-34.5 + parent: 34 + type: Transform + - uid: 1329 + components: + - pos: 9.5,-39.5 + parent: 34 + type: Transform + - uid: 1331 + components: + - pos: 6.5,-38.5 + parent: 34 + type: Transform + - uid: 1341 + components: + - pos: 5.5,-43.5 + parent: 34 + type: Transform + - uid: 1344 + components: + - pos: 11.5,-29.5 + parent: 34 + type: Transform + - uid: 1351 + components: + - pos: 1.5,-31.5 + parent: 34 + type: Transform + - uid: 1356 + components: + - pos: 11.5,-28.5 + parent: 34 + type: Transform + - uid: 1357 + components: + - pos: 11.5,-27.5 + parent: 34 + type: Transform + - uid: 1358 + components: + - pos: 11.5,-26.5 + parent: 34 + type: Transform + - uid: 1360 + components: + - pos: 7.5,-30.5 + parent: 34 + type: Transform + - uid: 1377 + components: + - pos: -2.5,-37.5 + parent: 34 + type: Transform + - uid: 1390 + components: + - pos: 6.5,-29.5 + parent: 34 + type: Transform + - uid: 1400 + components: + - pos: 1.5,-38.5 + parent: 34 + type: Transform + - uid: 1401 + components: + - pos: 13.5,-39.5 + parent: 34 + type: Transform + - uid: 1601 + components: + - pos: -36.5,-28.5 + parent: 34 + type: Transform + - uid: 1618 + components: + - pos: 11.5,-2.5 + parent: 34 + type: Transform + - uid: 1753 + components: + - pos: -36.5,-29.5 + parent: 34 + type: Transform + - uid: 1755 + components: + - pos: -36.5,-34.5 + parent: 34 + type: Transform + - uid: 1766 + components: + - pos: -37.5,-28.5 + parent: 34 + type: Transform + - uid: 1768 + components: + - pos: -40.5,-28.5 + parent: 34 + type: Transform + - uid: 1774 + components: + - pos: -46.5,-32.5 + parent: 34 + type: Transform + - uid: 1806 + components: + - pos: 6.5,-26.5 + parent: 34 + type: Transform + - uid: 1826 + components: + - pos: 9.5,-9.5 + parent: 34 + type: Transform + - uid: 1875 + components: + - pos: 11.5,5.5 + parent: 34 + type: Transform + - uid: 2033 + components: + - pos: -40.5,-2.5 + parent: 34 + type: Transform + - uid: 2036 + components: + - pos: -40.5,-5.5 + parent: 34 + type: Transform + - uid: 2039 + components: + - pos: -49.5,-5.5 + parent: 34 + type: Transform + - uid: 2040 + components: + - pos: -50.5,-5.5 + parent: 34 + type: Transform + - uid: 2041 + components: + - pos: -51.5,-5.5 + parent: 34 + type: Transform + - uid: 2042 + components: + - pos: -44.5,-5.5 + parent: 34 + type: Transform + - uid: 2043 + components: + - pos: -45.5,-5.5 + parent: 34 + type: Transform + - uid: 2044 + components: + - pos: -46.5,-5.5 + parent: 34 + type: Transform + - uid: 2045 + components: + - pos: -47.5,-5.5 + parent: 34 + type: Transform + - uid: 2046 + components: + - pos: -44.5,-2.5 + parent: 34 + type: Transform + - uid: 2047 + components: + - pos: -44.5,-3.5 + parent: 34 + type: Transform + - uid: 2048 + components: + - pos: -44.5,-4.5 + parent: 34 + type: Transform + - uid: 2049 + components: + - pos: -48.5,-5.5 + parent: 34 + type: Transform + - uid: 2050 + components: + - pos: -48.5,-4.5 + parent: 34 + type: Transform + - uid: 2051 + components: + - pos: -48.5,-3.5 + parent: 34 + type: Transform + - uid: 2052 + components: + - pos: -48.5,-2.5 + parent: 34 + type: Transform + - uid: 2053 + components: + - pos: -44.5,-6.5 + parent: 34 + type: Transform + - uid: 2054 + components: + - pos: -44.5,-7.5 + parent: 34 + type: Transform + - uid: 2055 + components: + - pos: -48.5,-6.5 + parent: 34 + type: Transform + - uid: 2056 + components: + - pos: -48.5,-7.5 + parent: 34 + type: Transform + - uid: 2057 + components: + - pos: -48.5,-8.5 + parent: 34 + type: Transform + - uid: 2058 + components: + - pos: -44.5,-8.5 + parent: 34 + type: Transform + - uid: 2059 + components: + - pos: -40.5,-8.5 + parent: 34 + type: Transform + - uid: 2065 + components: + - pos: -52.5,-8.5 + parent: 34 + type: Transform + - uid: 2066 + components: + - pos: -52.5,-2.5 + parent: 34 + type: Transform + - uid: 2067 + components: + - pos: -52.5,-4.5 + parent: 34 + type: Transform + - uid: 2068 + components: + - pos: -52.5,-5.5 + parent: 34 + type: Transform + - uid: 2069 + components: + - pos: -52.5,-7.5 + parent: 34 + type: Transform + - uid: 2070 + components: + - pos: -52.5,-6.5 + parent: 34 + type: Transform + - uid: 2071 + components: + - pos: -52.5,-3.5 + parent: 34 + type: Transform + - uid: 2073 + components: + - pos: -40.5,-13.5 + parent: 34 + type: Transform + - uid: 2074 + components: + - pos: -46.5,-11.5 + parent: 34 + type: Transform + - uid: 2075 + components: + - pos: -48.5,-11.5 + parent: 34 + type: Transform + - uid: 2076 + components: + - pos: -47.5,-11.5 + parent: 34 + type: Transform + - uid: 2077 + components: + - pos: -51.5,-11.5 + parent: 34 + type: Transform + - uid: 2090 + components: + - pos: -52.5,-11.5 + parent: 34 + type: Transform + - uid: 2092 + components: + - pos: -52.5,-1.5 + parent: 34 + type: Transform + - uid: 2093 + components: + - pos: -40.5,-11.5 + parent: 34 + type: Transform + - uid: 2094 + components: + - pos: -40.5,-14.5 + parent: 34 + type: Transform + - uid: 2096 + components: + - pos: -51.5,-8.5 + parent: 34 + type: Transform + - uid: 2097 + components: + - pos: -50.5,-8.5 + parent: 34 + type: Transform + - uid: 2102 + components: + - pos: -50.5,-2.5 + parent: 34 + type: Transform + - uid: 2103 + components: + - pos: -51.5,-2.5 + parent: 34 + type: Transform + - uid: 2116 + components: + - pos: -39.5,2.5 + parent: 34 + type: Transform + - uid: 2147 + components: + - pos: 8.5,-25.5 + parent: 34 + type: Transform + - uid: 2148 + components: + - pos: 6.5,-27.5 + parent: 34 + type: Transform + - uid: 2176 + components: + - pos: -41.5,-8.5 + parent: 34 + type: Transform + - uid: 2178 + components: + - pos: -43.5,-2.5 + parent: 34 + type: Transform + - uid: 2240 + components: + - pos: -39.5,5.5 + parent: 34 + type: Transform + - uid: 2242 + components: + - pos: -39.5,4.5 + parent: 34 + type: Transform + - uid: 2382 + components: + - pos: -43.5,-24.5 + parent: 34 + type: Transform + - uid: 2428 + components: + - pos: 14.5,-37.5 + parent: 34 + type: Transform + - uid: 2507 + components: + - pos: -50.5,-11.5 + parent: 34 + type: Transform + - uid: 2509 + components: + - pos: -43.5,-11.5 + parent: 34 + type: Transform + - uid: 2510 + components: + - pos: -42.5,-11.5 + parent: 34 + type: Transform + - uid: 2511 + components: + - pos: -41.5,-11.5 + parent: 34 + type: Transform + - uid: 2542 + components: + - pos: 22.5,-40.5 + parent: 34 + type: Transform + - uid: 2561 + components: + - pos: -39.5,1.5 + parent: 34 + type: Transform + - uid: 2599 + components: + - pos: 20.5,-40.5 + parent: 34 + type: Transform + - uid: 2600 + components: + - pos: 17.5,-40.5 + parent: 34 + type: Transform + - uid: 2602 + components: + - pos: -52.5,-9.5 + parent: 34 + type: Transform + - uid: 2611 + components: + - pos: -39.5,0.5 + parent: 34 + type: Transform + - uid: 2667 + components: + - pos: 16.5,-39.5 + parent: 34 + type: Transform + - uid: 2672 + components: + - pos: 11.5,-39.5 + parent: 34 + type: Transform + - uid: 2705 + components: + - pos: 6.5,-43.5 + parent: 34 + type: Transform + - uid: 2739 + components: + - pos: -22.5,-19.5 + parent: 34 + type: Transform + - uid: 2743 + components: + - pos: -23.5,-2.5 + parent: 34 + type: Transform + - uid: 2921 + components: + - pos: 3.5,-19.5 + parent: 34 + type: Transform + - uid: 2922 + components: + - pos: 3.5,-18.5 + parent: 34 + type: Transform + - uid: 2939 + components: + - pos: 8.5,-38.5 + parent: 34 + type: Transform + - uid: 2940 + components: + - pos: 8.5,-43.5 + parent: 34 + type: Transform + - uid: 2943 + components: + - pos: 6.5,-30.5 + parent: 34 + type: Transform + - uid: 2945 + components: + - pos: 7.5,-25.5 + parent: 34 + type: Transform + - uid: 2960 + components: + - pos: 10.5,-39.5 + parent: 34 + type: Transform + - uid: 2961 + components: + - pos: 9.5,-25.5 + parent: 34 + type: Transform + - uid: 3073 + components: + - pos: 6.5,-21.5 + parent: 34 + type: Transform + - uid: 3080 + components: + - pos: 12.5,-35.5 + parent: 34 + type: Transform + - uid: 3224 + components: + - pos: 23.5,-40.5 + parent: 34 + type: Transform + - uid: 3225 + components: + - pos: 23.5,-39.5 + parent: 34 + type: Transform + - uid: 3282 + components: + - pos: 18.5,-40.5 + parent: 34 + type: Transform + - uid: 3283 + components: + - pos: 19.5,-40.5 + parent: 34 + type: Transform + - uid: 3447 + components: + - pos: 3.5,-17.5 + parent: 34 + type: Transform + - uid: 3454 + components: + - pos: -56.5,2.5 + parent: 34 + type: Transform + - uid: 3467 + components: + - pos: -55.5,2.5 + parent: 34 + type: Transform + - uid: 3483 + components: + - pos: 21.5,-20.5 + parent: 34 + type: Transform + - uid: 3531 + components: + - pos: 27.5,-19.5 + parent: 34 + type: Transform + - uid: 3535 + components: + - pos: 21.5,-19.5 + parent: 34 + type: Transform + - uid: 3545 + components: + - pos: 30.5,-4.5 + parent: 34 + type: Transform + - uid: 3562 + components: + - pos: 25.5,-8.5 + parent: 34 + type: Transform + - uid: 3570 + components: + - pos: 25.5,-4.5 + parent: 34 + type: Transform + - uid: 3649 + components: + - pos: 15.5,9.5 + parent: 34 + type: Transform + - uid: 3855 + components: + - pos: 17.5,-35.5 + parent: 34 + type: Transform + - uid: 3864 + components: + - pos: 18.5,-35.5 + parent: 34 + type: Transform + - uid: 3866 + components: + - pos: 19.5,-32.5 + parent: 34 + type: Transform + - uid: 3871 + components: + - pos: 19.5,-27.5 + parent: 34 + type: Transform + - uid: 3872 + components: + - pos: 19.5,-26.5 + parent: 34 + type: Transform + - uid: 3873 + components: + - pos: 19.5,-25.5 + parent: 34 + type: Transform + - uid: 3892 + components: + - pos: 19.5,-35.5 + parent: 34 + type: Transform + - uid: 3893 + components: + - pos: 19.5,-34.5 + parent: 34 + type: Transform + - uid: 3927 + components: + - pos: 14.5,-25.5 + parent: 34 + type: Transform + - uid: 3928 + components: + - pos: 16.5,-25.5 + parent: 34 + type: Transform + - uid: 3974 + components: + - pos: 1.5,-46.5 + parent: 34 + type: Transform + - uid: 3976 + components: + - pos: 3.5,-46.5 + parent: 34 + type: Transform + - uid: 3977 + components: + - pos: 4.5,-46.5 + parent: 34 + type: Transform + - uid: 3978 + components: + - pos: 5.5,-46.5 + parent: 34 + type: Transform + - uid: 3979 + components: + - pos: 6.5,-46.5 + parent: 34 + type: Transform + - uid: 3991 + components: + - pos: 13.5,-35.5 + parent: 34 + type: Transform + - uid: 3994 + components: + - pos: 12.5,-39.5 + parent: 34 + type: Transform + - uid: 3996 + components: + - pos: 16.5,-40.5 + parent: 34 + type: Transform + - uid: 3997 + components: + - pos: 2.5,-42.5 + parent: 34 + type: Transform + - uid: 4000 + components: + - pos: 19.5,-39.5 + parent: 34 + type: Transform + - uid: 4049 + components: + - pos: -10.5,-44.5 + parent: 34 + type: Transform + - uid: 4066 + components: + - pos: -6.5,-44.5 + parent: 34 + type: Transform + - uid: 4171 + components: + - pos: 27.5,-15.5 + parent: 34 + type: Transform + - uid: 4269 + components: + - pos: 34.5,-25.5 + parent: 34 + type: Transform + - uid: 4271 + components: + - pos: 31.5,-26.5 + parent: 34 + type: Transform + - uid: 4314 + components: + - pos: 28.5,-25.5 + parent: 34 + type: Transform + - uid: 4319 + components: + - pos: 35.5,-31.5 + parent: 34 + type: Transform + - uid: 4324 + components: + - pos: 35.5,-36.5 + parent: 34 + type: Transform + - uid: 4331 + components: + - pos: 35.5,-37.5 + parent: 34 + type: Transform + - uid: 4334 + components: + - pos: 38.5,-37.5 + parent: 34 + type: Transform + - uid: 4335 + components: + - pos: 39.5,-37.5 + parent: 34 + type: Transform + - uid: 4336 + components: + - pos: 40.5,-37.5 + parent: 34 + type: Transform + - uid: 4351 + components: + - pos: 14.5,-36.5 + parent: 34 + type: Transform + - uid: 4360 + components: + - pos: 11.5,-43.5 + parent: 34 + type: Transform + - uid: 4361 + components: + - pos: 10.5,-43.5 + parent: 34 + type: Transform + - uid: 4362 + components: + - pos: 9.5,-43.5 + parent: 34 + type: Transform + - uid: 4364 + components: + - pos: 7.5,-43.5 + parent: 34 + type: Transform + - uid: 4382 + components: + - pos: 35.5,-38.5 + parent: 34 + type: Transform + - uid: 4406 + components: + - pos: -18.5,1.5 + parent: 34 + type: Transform + - uid: 4635 + components: + - pos: 45.5,2.5 + parent: 34 + type: Transform + - uid: 4636 + components: + - pos: 44.5,2.5 + parent: 34 + type: Transform + - uid: 4867 + components: + - pos: 32.5,-20.5 + parent: 34 + type: Transform + - uid: 4880 + components: + - pos: 27.5,-18.5 + parent: 34 + type: Transform + - uid: 4881 + components: + - pos: 27.5,-16.5 + parent: 34 + type: Transform + - uid: 4966 + components: + - pos: 24.5,9.5 + parent: 34 + type: Transform + - uid: 4970 + components: + - pos: 27.5,9.5 + parent: 34 + type: Transform + - uid: 4971 + components: + - pos: 25.5,9.5 + parent: 34 + type: Transform + - uid: 4973 + components: + - pos: 20.5,10.5 + parent: 34 + type: Transform + - uid: 4980 + components: + - pos: 20.5,7.5 + parent: 34 + type: Transform + - uid: 4981 + components: + - pos: 20.5,6.5 + parent: 34 + type: Transform + - uid: 4988 + components: + - pos: 19.5,7.5 + parent: 34 + type: Transform + - uid: 4989 + components: + - pos: 18.5,7.5 + parent: 34 + type: Transform + - uid: 4990 + components: + - pos: 17.5,7.5 + parent: 34 + type: Transform + - uid: 4991 + components: + - pos: 16.5,7.5 + parent: 34 + type: Transform + - uid: 4992 + components: + - pos: 15.5,7.5 + parent: 34 + type: Transform + - uid: 4999 + components: + - pos: 15.5,6.5 + parent: 34 + type: Transform + - uid: 5402 + components: + - pos: 34.5,-45.5 + parent: 34 + type: Transform + - uid: 5570 + components: + - pos: 3.5,9.5 + parent: 34 + type: Transform + - uid: 5626 + components: + - pos: -38.5,0.5 + parent: 34 + type: Transform + - uid: 5668 + components: + - pos: -40.5,0.5 + parent: 34 + type: Transform + - uid: 5677 + components: + - pos: -36.5,0.5 + parent: 34 + type: Transform + - uid: 5943 + components: + - pos: 6.5,4.5 + parent: 34 + type: Transform + - uid: 5952 + components: + - pos: 5.5,9.5 + parent: 34 + type: Transform + - uid: 6108 + components: + - pos: 11.5,4.5 + parent: 34 + type: Transform + - uid: 6127 + components: + - pos: 6.5,2.5 + parent: 34 + type: Transform + - uid: 6130 + components: + - pos: 4.5,9.5 + parent: 34 + type: Transform + - uid: 6141 + components: + - pos: -4.5,9.5 + parent: 34 + type: Transform + - uid: 6144 + components: + - pos: -4.5,7.5 + parent: 34 + type: Transform + - uid: 6147 + components: + - pos: 6.5,3.5 + parent: 34 + type: Transform + - uid: 6388 + components: + - pos: 12.5,-40.5 + parent: 34 + type: Transform + - uid: 6567 + components: + - pos: -44.5,-11.5 + parent: 34 + type: Transform + - uid: 6730 + components: + - pos: 23.5,10.5 + parent: 34 + type: Transform + - uid: 7741 + components: + - pos: 12.5,-42.5 + parent: 34 + type: Transform + - uid: 7742 + components: + - pos: 2.5,-43.5 + parent: 34 + type: Transform + - uid: 7755 + components: + - pos: 9.5,-38.5 + parent: 34 + type: Transform + - uid: 7846 + components: + - pos: 12.5,-43.5 + parent: 34 + type: Transform + - uid: 8004 + components: + - pos: 2.5,-46.5 + parent: 34 + type: Transform + - uid: 8035 + components: + - pos: -3.5,9.5 + parent: 34 + type: Transform + - uid: 8116 + components: + - pos: -4.5,8.5 + parent: 34 + type: Transform + - uid: 8413 + components: + - pos: 14.5,-38.5 + parent: 34 + type: Transform + - uid: 8501 + components: + - pos: -6.5,-40.5 + parent: 34 + type: Transform + - uid: 9033 + components: + - pos: 4.5,-43.5 + parent: 34 + type: Transform + - uid: 9289 + components: + - pos: -52.5,-10.5 + parent: 34 + type: Transform + - uid: 10009 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 34 + type: Transform + - uid: 10370 + components: + - pos: 2.5,9.5 + parent: 34 + type: Transform + - uid: 10381 + components: + - pos: 10.5,9.5 + parent: 34 + type: Transform + - uid: 10449 + components: + - pos: 9.5,9.5 + parent: 34 + type: Transform + - uid: 10463 + components: + - pos: 7.5,-38.5 + parent: 34 + type: Transform + - uid: 10593 + components: + - pos: 24.5,-8.5 + parent: 34 + type: Transform + - uid: 10622 + components: + - pos: 23.5,9.5 + parent: 34 + type: Transform + - uid: 10711 + components: + - pos: 2.5,-44.5 + parent: 34 + type: Transform + - uid: 10714 + components: + - pos: 17.5,-42.5 + parent: 34 + type: Transform + - uid: 10788 + components: + - pos: 14.5,-39.5 + parent: 34 + type: Transform + - uid: 10829 + components: + - pos: 11.5,9.5 + parent: 34 + type: Transform + - uid: 11202 + components: + - pos: 23.5,12.5 + parent: 34 + type: Transform + - uid: 11206 + components: + - pos: 23.5,11.5 + parent: 34 + type: Transform + - uid: 11263 + components: + - pos: 28.5,9.5 + parent: 34 + type: Transform + - uid: 11381 + components: + - pos: 6.5,9.5 + parent: 34 + type: Transform + - uid: 11399 + components: + - pos: 7.5,9.5 + parent: 34 + type: Transform + - uid: 11437 + components: + - pos: -1.5,9.5 + parent: 34 + type: Transform + - uid: 11623 + components: + - pos: 1.5,9.5 + parent: 34 + type: Transform + - uid: 11715 + components: + - pos: -2.5,9.5 + parent: 34 + type: Transform + - uid: 11786 + components: + - pos: 6.5,6.5 + parent: 34 + type: Transform + - uid: 11807 + components: + - pos: -0.5,9.5 + parent: 34 + type: Transform + - uid: 11810 + components: + - pos: 6.5,5.5 + parent: 34 + type: Transform + - uid: 12231 + components: + - pos: 6.5,8.5 + parent: 34 + type: Transform + - uid: 12238 + components: + - pos: 6.5,7.5 + parent: 34 + type: Transform + - uid: 12425 + components: + - pos: 2.5,-38.5 + parent: 34 + type: Transform + - uid: 12935 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 34 + type: Transform +- proto: WallSolidRust + entities: + - uid: 3462 + components: + - pos: -54.5,9.5 + parent: 34 + type: Transform + - uid: 3471 + components: + - pos: -53.5,9.5 + parent: 34 + type: Transform + - uid: 4982 + components: + - pos: 22.5,10.5 + parent: 34 + type: Transform + - uid: 4983 + components: + - pos: 21.5,10.5 + parent: 34 + type: Transform + - uid: 11164 + components: + - pos: -52.5,9.5 + parent: 34 + type: Transform +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 3586 + components: + - pos: 27.5,5.5 + parent: 34 + type: Transform + - uid: 4496 + components: + - pos: 28.5,5.5 + parent: 34 + type: Transform +- proto: WallWood + entities: + - uid: 2109 + components: + - pos: -52.5,2.5 + parent: 34 + type: Transform + - uid: 2111 + components: + - pos: -51.5,3.5 + parent: 34 + type: Transform + - uid: 2113 + components: + - pos: -47.5,2.5 + parent: 34 + type: Transform + - uid: 2114 + components: + - pos: -47.5,1.5 + parent: 34 + type: Transform + - uid: 2117 + components: + - pos: -52.5,1.5 + parent: 34 + type: Transform + - uid: 2118 + components: + - pos: -52.5,0.5 + parent: 34 + type: Transform + - uid: 5046 + components: + - pos: -52.5,3.5 + parent: 34 + type: Transform + - uid: 5047 + components: + - pos: -50.5,3.5 + parent: 34 + type: Transform + - uid: 5048 + components: + - pos: -49.5,3.5 + parent: 34 + type: Transform + - uid: 5049 + components: + - pos: -48.5,3.5 + parent: 34 + type: Transform + - uid: 5051 + components: + - pos: -42.5,0.5 + parent: 34 + type: Transform + - uid: 5052 + components: + - pos: -42.5,1.5 + parent: 34 + type: Transform + - uid: 5053 + components: + - pos: -42.5,2.5 + parent: 34 + type: Transform + - uid: 5054 + components: + - pos: -42.5,3.5 + parent: 34 + type: Transform + - uid: 5055 + components: + - pos: -43.5,3.5 + parent: 34 + type: Transform + - uid: 5056 + components: + - pos: -44.5,3.5 + parent: 34 + type: Transform + - uid: 5057 + components: + - pos: -45.5,3.5 + parent: 34 + type: Transform + - uid: 5058 + components: + - pos: -46.5,3.5 + parent: 34 + type: Transform + - uid: 5808 + components: + - pos: -47.5,3.5 + parent: 34 + type: Transform + - uid: 5886 + components: + - pos: -53.5,2.5 + parent: 34 + type: Transform +- proto: WardrobeCargoFilled + entities: + - uid: 10970 + components: + - pos: -11.5,-29.5 + parent: 34 + type: Transform +- proto: WardrobeFormal + entities: + - uid: 5960 + components: + - pos: 7.5,-7.5 + parent: 34 + type: Transform +- proto: WardrobeGreyFilled + entities: + - uid: 2208 + components: + - pos: -50.5,-6.5 + parent: 34 + type: Transform +- proto: WardrobeMixedFilled + entities: + - uid: 2120 + components: + - pos: -43.5,1.5 + parent: 34 + type: Transform +- proto: WardrobePrisonFilled + entities: + - uid: 3392 + components: + - pos: 16.5,-10.5 + parent: 34 + type: Transform +- proto: WarningCO2 + entities: + - uid: 10966 + components: + - pos: -49.5,-37.5 + parent: 34 + type: Transform +- proto: WarningN2 + entities: + - uid: 1199 + components: + - pos: -39.5,-40.5 + parent: 34 + type: Transform +- proto: WarningO2 + entities: + - uid: 1198 + components: + - pos: -39.5,-42.5 + parent: 34 + type: Transform +- proto: WarningPlasma + entities: + - uid: 1201 + components: + - name: plasma warning sign + type: MetaData + - pos: -39.5,-44.5 + parent: 34 + type: Transform +- proto: WarningWaste + entities: + - uid: 1200 + components: + - pos: -39.5,-46.5 + parent: 34 + type: Transform +- proto: WarpPoint + entities: + - uid: 11316 + components: + - pos: -44.5,-41.5 + parent: 34 + type: Transform + - location: atmospherics + type: WarpPoint + - uid: 11319 + components: + - pos: 22.5,-7.5 + parent: 34 + type: Transform + - location: security + type: WarpPoint + - text: Security + type: NavMapBeacon + - uid: 11320 + components: + - pos: 42.5,-2.5 + parent: 34 + type: Transform + - location: perma + type: WarpPoint + - uid: 11324 + components: + - pos: -0.5,-48.5 + parent: 34 + type: Transform + - location: evac south + type: WarpPoint + - text: evac south + type: NavMapBeacon + - uid: 11325 + components: + - pos: 15.5,-30.5 + parent: 34 + type: Transform + - location: courtroom + type: WarpPoint + - uid: 11326 + components: + - pos: 9.5,14.5 + parent: 34 + type: Transform + - location: evac north + type: WarpPoint + - text: evac north + type: NavMapBeacon +- proto: WarpPointBeaconCargo + entities: + - uid: 11321 + components: + - pos: -10.5,-31.5 + parent: 34 + type: Transform + - location: logistics + type: WarpPoint +- proto: WarpPointBeaconCommand + entities: + - uid: 12919 + components: + - pos: 31.5,-34.5 + parent: 34 + type: Transform +- proto: WarpPointBeaconEngineering + entities: + - uid: 11015 + components: + - pos: -32.5,-37.5 + parent: 34 + type: Transform +- proto: WarpPointBeaconMedical + entities: + - uid: 10915 + components: + - pos: 4.5,-34.5 + parent: 34 + type: Transform +- proto: WarpPointBeaconScience + entities: + - uid: 10916 + components: + - pos: -30.5,-9.5 + parent: 34 + type: Transform + - location: epistemics + type: WarpPoint +- proto: WarpPointBeaconSecurity + entities: + - uid: 11318 + components: + - pos: 24.5,-12.5 + parent: 34 + type: Transform +- proto: WarpPointBeaconService + entities: + - uid: 10917 + components: + - pos: -13.5,-5.5 + parent: 34 + type: Transform +- proto: WarpPointBombing + entities: + - uid: 6490 + components: + - pos: 8.5,-27.5 + parent: 34 + type: Transform + - location: surgery + type: WarpPoint + - uid: 9983 + components: + - pos: -8.5,-16.5 + parent: 34 + type: Transform + - location: central square + type: WarpPoint + - uid: 11315 + components: + - pos: -43.5,-5.5 + parent: 34 + type: Transform + - location: dorms + type: WarpPoint + - uid: 12350 + components: + - pos: -45.5,-20.5 + parent: 34 + type: Transform + - location: robotics + type: WarpPoint + - uid: 12916 + components: + - pos: 25.5,-34.5 + parent: 34 + type: Transform + - location: vault + type: WarpPoint + - uid: 12918 + components: + - pos: -24.5,4.5 + parent: 34 + type: Transform + - location: engineering checkpoint + type: WarpPoint +- proto: WashingMachineFilledClothes + entities: + - uid: 8890 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,-3.5 + parent: 34 + type: Transform +- proto: WaterCooler + entities: + - uid: 17 + components: + - pos: -9.5,5.5 + parent: 34 + type: Transform + - uid: 2084 + components: + - pos: -42.5,-20.5 + parent: 34 + type: Transform + - uid: 2190 + components: + - pos: -41.5,-5.5 + parent: 34 + type: Transform + - uid: 3856 + components: + - pos: 31.5,-13.5 + parent: 34 + type: Transform + - uid: 4157 + components: + - pos: 25.5,-10.5 + parent: 34 + type: Transform + - uid: 4444 + components: + - pos: 37.5,-31.5 + parent: 34 + type: Transform + - uid: 10743 + components: + - pos: 7.5,6.5 + parent: 34 + type: Transform + - uid: 12531 + components: + - pos: -47.5,-24.5 + parent: 34 + type: Transform + - uid: 12545 + components: + - pos: -7.5,-31.5 + parent: 34 + type: Transform +- proto: WaterTankFull + entities: + - uid: 4714 + components: + - pos: 36.5,5.5 + parent: 34 + type: Transform + - uid: 5557 + components: + - pos: -18.5,2.5 + parent: 34 + type: Transform +- proto: WaterTankHighCapacity + entities: + - uid: 876 + components: + - pos: -17.5,-8.5 + parent: 34 + type: Transform +- proto: WaterVaporCanister + entities: + - uid: 12326 + components: + - pos: -52.5,-30.5 + parent: 34 + type: Transform + - joinedGrid: 34 + type: AtmosDevice +- proto: WeaponCapacitorRecharger + entities: + - uid: 3598 + components: + - pos: 18.5,-20.5 + parent: 34 + type: Transform + - uid: 10760 + components: + - pos: 33.5,-31.5 + parent: 34 + type: Transform +- proto: WeaponDisabler + entities: + - uid: 3713 + components: + - pos: 22.34301,-19.588076 + parent: 34 + type: Transform + - uid: 3723 + components: + - pos: 22.634678,-19.421293 + parent: 34 + type: Transform + - uid: 3724 + components: + - pos: 22.31176,-19.264936 + parent: 34 + type: Transform + - uid: 10761 + components: + - pos: 34.069336,-31.35018 + parent: 34 + type: Transform +- proto: WeaponLaserCarbine + entities: + - uid: 3736 + components: + - pos: 26.565401,3.7038927 + parent: 34 + type: Transform + - uid: 3737 + components: + - pos: 26.513319,3.4224472 + parent: 34 + type: Transform +- proto: WeaponLauncherRocket + entities: + - uid: 3741 + components: + - pos: 29.395697,4.62251 + parent: 34 + type: Transform + - uid: 4499 + components: + - pos: 29.57278,4.3827605 + parent: 34 + type: Transform +- proto: WeaponRifleBB + entities: + - uid: 12483 + components: + - pos: 41.015553,-16.55187 + parent: 34 + type: Transform +- proto: WeaponRifleLecter + entities: + - uid: 3738 + components: + - rot: -1.5707963267948966 rad + pos: 26.263319,4.548229 + parent: 34 + type: Transform + - uid: 3739 + components: + - rot: -1.5707963267948966 rad + pos: 26.669569,4.548229 + parent: 34 + type: Transform +- proto: WeaponShotgunKammerer + entities: + - uid: 3733 + components: + - pos: 29.461235,3.6309257 + parent: 34 + type: Transform + - uid: 3734 + components: + - pos: 29.502901,3.3911757 + parent: 34 + type: Transform +- proto: WeldingFuelTankFull + entities: + - uid: 5566 + components: + - pos: -13.5,2.5 + parent: 34 + type: Transform + - uid: 6222 + components: + - pos: 34.5,6.5 + parent: 34 + type: Transform + - uid: 10356 + components: + - pos: 7.5,-13.5 + parent: 34 + type: Transform + - uid: 11165 + components: + - desc: Fred insists it's alright to put the fuel tank here. Take it up with him if you have a problem with it. + type: MetaData + - pos: -54.5,10.5 + parent: 34 + type: Transform + - uid: 11478 + components: + - pos: -35.5,-25.5 + parent: 34 + type: Transform + - uid: 12157 + components: + - pos: -54.5,-7.5 + parent: 34 + type: Transform +- proto: WetFloorSign + entities: + - uid: 11925 + components: + - pos: 4.345566,-19.175034 + parent: 34 + type: Transform + - uid: 11934 + components: + - pos: 4.480983,-19.341816 + parent: 34 + type: Transform +- proto: Windoor + entities: + - uid: 478 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-16.5 + parent: 34 + type: Transform + - uid: 5514 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,-38.5 + parent: 34 + type: Transform + - uid: 10310 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,9.5 + parent: 34 + type: Transform +- proto: WindoorBarLocked + entities: + - uid: 729 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 34 + type: Transform + - uid: 12789 + components: + - pos: -6.5,9.5 + parent: 34 + type: Transform +- proto: WindoorHydroponicsLocked + entities: + - uid: 274 + components: + - name: snack window + type: MetaData + - pos: -18.5,-2.5 + parent: 34 + type: Transform + - uid: 277 + components: + - name: snack window + type: MetaData + - pos: -19.5,-2.5 + parent: 34 + type: Transform + - uid: 12240 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-8.5 + parent: 34 + type: Transform +- proto: WindoorKitchenLocked + entities: + - uid: 223 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-8.5 + parent: 34 + type: Transform +- proto: WindoorSecure + entities: + - uid: 11328 + components: + - pos: -18.5,-20.5 + parent: 34 + type: Transform +- proto: WindoorSecureArmoryLocked + entities: + - uid: 3700 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-0.5 + parent: 34 + type: Transform + - uid: 3701 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,0.5 + parent: 34 + type: Transform +- proto: WindoorSecureCargoLocked + entities: + - uid: 1885 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-26.5 + parent: 34 + type: Transform + - uid: 1900 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-25.5 + parent: 34 + type: Transform +- proto: WindoorSecureChemistryLocked + entities: + - uid: 1385 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-27.5 + parent: 34 + type: Transform + - uid: 2685 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-30.5 + parent: 34 + type: Transform + - uid: 2687 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-30.5 + parent: 34 + type: Transform + - uid: 2692 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-26.5 + parent: 34 + type: Transform +- proto: WindoorSecureCommandLocked + entities: + - uid: 1353 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-54.5 + parent: 34 + type: Transform + - uid: 1810 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-52.5 + parent: 34 + type: Transform + - uid: 1891 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-53.5 + parent: 34 + type: Transform + - uid: 7029 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-53.5 + parent: 34 + type: Transform + - uid: 11057 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-52.5 + parent: 34 + type: Transform + - uid: 11809 + components: + - rot: -1.5707963267948966 rad + pos: 51.5,-23.5 + parent: 34 + type: Transform + - uid: 12345 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-54.5 + parent: 34 + type: Transform +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 2308 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-26.5 + parent: 34 + type: Transform + - uid: 5601 + components: + - rot: 3.141592653589793 rad + pos: -22.5,1.5 + parent: 34 + type: Transform + - uid: 5602 + components: + - rot: 3.141592653589793 rad + pos: -21.5,1.5 + parent: 34 + type: Transform +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 1955 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-20.5 + parent: 34 + type: Transform +- proto: WindoorSecureScienceLocked + entities: + - uid: 2523 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-20.5 + parent: 34 + type: Transform +- proto: WindoorSecureSecurityLawyerLocked + entities: + - uid: 802 + components: + - rot: 3.141592653589793 rad + pos: -10.5,1.5 + parent: 34 + type: Transform + - uid: 3902 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-34.5 + parent: 34 + type: Transform + - uid: 3935 + components: + - pos: 15.5,-28.5 + parent: 34 + type: Transform +- proto: WindoorSecureSecurityLocked + entities: + - uid: 1281 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-13.5 + parent: 34 + type: Transform + - uid: 3560 + components: + - pos: 25.5,-18.5 + parent: 34 + type: Transform + - uid: 3578 + components: + - pos: 23.5,-18.5 + parent: 34 + type: Transform +- proto: Window + entities: + - uid: 16 + components: + - pos: -15.5,-21.5 + parent: 34 + type: Transform + - uid: 59 + components: + - pos: -17.5,-9.5 + parent: 34 + type: Transform + - uid: 60 + components: + - pos: -18.5,-9.5 + parent: 34 + type: Transform + - uid: 108 + components: + - pos: 23.5,-22.5 + parent: 34 + type: Transform + - uid: 128 + components: + - pos: 23.5,-24.5 + parent: 34 + type: Transform + - uid: 188 + components: + - pos: 3.5,2.5 + parent: 34 + type: Transform + - uid: 192 + components: + - pos: 1.5,2.5 + parent: 34 + type: Transform + - uid: 585 + components: + - pos: -32.5,-9.5 + parent: 34 + type: Transform + - uid: 587 + components: + - pos: -32.5,-11.5 + parent: 34 + type: Transform + - uid: 595 + components: + - pos: -29.5,-20.5 + parent: 34 + type: Transform + - uid: 648 + components: + - pos: -11.5,-28.5 + parent: 34 + type: Transform + - uid: 720 + components: + - pos: -43.5,-27.5 + parent: 34 + type: Transform + - uid: 774 + components: + - pos: -2.5,-6.5 + parent: 34 + type: Transform + - uid: 777 + components: + - pos: -2.5,-5.5 + parent: 34 + type: Transform + - uid: 778 + components: + - pos: -2.5,-4.5 + parent: 34 + type: Transform + - uid: 906 + components: + - pos: -2.5,-9.5 + parent: 34 + type: Transform + - uid: 910 + components: + - pos: -28.5,-20.5 + parent: 34 + type: Transform + - uid: 911 + components: + - pos: -25.5,-20.5 + parent: 34 + type: Transform + - uid: 912 + components: + - pos: -24.5,-20.5 + parent: 34 + type: Transform + - uid: 1003 + components: + - pos: -3.5,-3.5 + parent: 34 + type: Transform + - uid: 1005 + components: + - pos: -5.5,-3.5 + parent: 34 + type: Transform + - uid: 1315 + components: + - pos: 5.5,-30.5 + parent: 34 + type: Transform + - uid: 1739 + components: + - pos: -36.5,-31.5 + parent: 34 + type: Transform + - uid: 1765 + components: + - pos: -36.5,-32.5 + parent: 34 + type: Transform + - uid: 1769 + components: + - pos: 11.5,7.5 + parent: 34 + type: Transform + - uid: 1830 + components: + - pos: -38.5,-28.5 + parent: 34 + type: Transform + - uid: 1893 + components: + - pos: -12.5,-28.5 + parent: 34 + type: Transform + - uid: 1943 + components: + - pos: 3.5,-30.5 + parent: 34 + type: Transform + - uid: 1998 + components: + - pos: -2.5,-22.5 + parent: 34 + type: Transform + - uid: 2104 + components: + - pos: -40.5,-3.5 + parent: 34 + type: Transform + - uid: 2105 + components: + - pos: -40.5,-4.5 + parent: 34 + type: Transform + - uid: 2106 + components: + - pos: -40.5,-6.5 + parent: 34 + type: Transform + - uid: 2107 + components: + - pos: -40.5,-7.5 + parent: 34 + type: Transform + - uid: 2179 + components: + - pos: -43.5,-8.5 + parent: 34 + type: Transform + - uid: 2181 + components: + - pos: -41.5,-2.5 + parent: 34 + type: Transform + - uid: 2699 + components: + - pos: 8.5,-36.5 + parent: 34 + type: Transform + - uid: 3200 + components: + - pos: -34.5,-41.5 + parent: 34 + type: Transform + - uid: 3201 + components: + - pos: -32.5,-41.5 + parent: 34 + type: Transform + - uid: 3222 + components: + - pos: 11.5,6.5 + parent: 34 + type: Transform + - uid: 3458 + components: + - pos: 11.5,8.5 + parent: 34 + type: Transform + - uid: 3544 + components: + - pos: 27.5,-4.5 + parent: 34 + type: Transform + - uid: 3558 + components: + - pos: 21.5,-16.5 + parent: 34 + type: Transform + - uid: 3564 + components: + - pos: 29.5,-4.5 + parent: 34 + type: Transform + - uid: 3568 + components: + - pos: 26.5,-4.5 + parent: 34 + type: Transform + - uid: 3572 + components: + - pos: 25.5,-6.5 + parent: 34 + type: Transform + - uid: 3573 + components: + - pos: 25.5,-7.5 + parent: 34 + type: Transform + - uid: 3575 + components: + - pos: 25.5,-5.5 + parent: 34 + type: Transform + - uid: 3614 + components: + - pos: 21.5,-18.5 + parent: 34 + type: Transform + - uid: 3797 + components: + - pos: 14.5,-2.5 + parent: 34 + type: Transform + - uid: 3798 + components: + - pos: 12.5,-2.5 + parent: 34 + type: Transform + - uid: 3923 + components: + - pos: 12.5,-25.5 + parent: 34 + type: Transform + - uid: 3924 + components: + - pos: 13.5,-25.5 + parent: 34 + type: Transform + - uid: 3925 + components: + - pos: 17.5,-25.5 + parent: 34 + type: Transform + - uid: 3926 + components: + - pos: 18.5,-25.5 + parent: 34 + type: Transform + - uid: 3967 + components: + - pos: -3.5,-30.5 + parent: 34 + type: Transform + - uid: 3969 + components: + - pos: -5.5,-30.5 + parent: 34 + type: Transform + - uid: 3971 + components: + - pos: -3.5,-39.5 + parent: 34 + type: Transform + - uid: 4042 + components: + - pos: -6.5,-42.5 + parent: 34 + type: Transform + - uid: 4045 + components: + - pos: -5.5,-39.5 + parent: 34 + type: Transform + - uid: 4084 + components: + - pos: 2.5,-51.5 + parent: 34 + type: Transform + - uid: 4085 + components: + - pos: 1.5,-51.5 + parent: 34 + type: Transform + - uid: 4086 + components: + - pos: 0.5,-51.5 + parent: 34 + type: Transform + - uid: 4176 + components: + - pos: 14.5,-20.5 + parent: 34 + type: Transform + - uid: 4177 + components: + - pos: 12.5,-20.5 + parent: 34 + type: Transform + - uid: 4179 + components: + - pos: -2.5,-24.5 + parent: 34 + type: Transform + - uid: 4182 + components: + - pos: 10.5,-22.5 + parent: 34 + type: Transform + - uid: 4183 + components: + - pos: 10.5,-24.5 + parent: 34 + type: Transform + - uid: 4192 + components: + - pos: 8.5,4.5 + parent: 34 + type: Transform + - uid: 4193 + components: + - pos: 7.5,4.5 + parent: 34 + type: Transform + - uid: 4545 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 34 + type: Transform + - uid: 5003 + components: + - pos: 15.5,5.5 + parent: 34 + type: Transform + - uid: 5004 + components: + - pos: 15.5,3.5 + parent: 34 + type: Transform + - uid: 5550 + components: + - pos: -15.5,1.5 + parent: 34 + type: Transform + - uid: 5551 + components: + - pos: -16.5,1.5 + parent: 34 + type: Transform + - uid: 5939 + components: + - pos: 10.5,4.5 + parent: 34 + type: Transform + - uid: 6198 + components: + - pos: 14.5,12.5 + parent: 34 + type: Transform + - uid: 6199 + components: + - pos: 12.5,12.5 + parent: 34 + type: Transform + - uid: 8726 + components: + - pos: 6.5,1.5 + parent: 34 + type: Transform + - uid: 10940 + components: + - pos: -6.5,12.5 + parent: 34 + type: Transform + - uid: 10951 + components: + - pos: 2.5,2.5 + parent: 34 + type: Transform + - uid: 10992 + components: + - pos: -8.5,12.5 + parent: 34 + type: Transform + - uid: 11580 + components: + - pos: -40.5,-21.5 + parent: 34 + type: Transform + - uid: 11607 + components: + - pos: -41.5,-18.5 + parent: 34 + type: Transform + - uid: 11616 + components: + - pos: -39.5,-14.5 + parent: 34 + type: Transform + - uid: 11771 + components: + - pos: -7.5,12.5 + parent: 34 + type: Transform + - uid: 11789 + components: + - pos: -9.5,12.5 + parent: 34 + type: Transform + - uid: 12262 + components: + - pos: -41.5,-19.5 + parent: 34 + type: Transform +- proto: WindowDirectional + entities: + - uid: 10286 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,7.5 + parent: 34 + type: Transform + - uid: 10287 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,8.5 + parent: 34 + type: Transform + - uid: 10288 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,10.5 + parent: 34 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 116 + components: + - pos: -16.5,6.5 + parent: 34 + type: Transform + - uid: 461 + components: + - rot: 3.141592653589793 rad + pos: 43.5,-15.5 + parent: 34 + type: Transform + - uid: 3484 + components: + - pos: 22.5,-18.5 + parent: 34 + type: Transform + - uid: 3579 + components: + - pos: 24.5,-18.5 + parent: 34 + type: Transform + - uid: 3588 + components: + - pos: 26.5,-18.5 + parent: 34 + type: Transform + - uid: 3929 + components: + - pos: 12.5,-28.5 + parent: 34 + type: Transform + - uid: 3930 + components: + - pos: 13.5,-28.5 + parent: 34 + type: Transform + - uid: 3931 + components: + - pos: 14.5,-28.5 + parent: 34 + type: Transform + - uid: 3932 + components: + - pos: 16.5,-28.5 + parent: 34 + type: Transform + - uid: 3933 + components: + - pos: 17.5,-28.5 + parent: 34 + type: Transform + - uid: 3934 + components: + - pos: 18.5,-28.5 + parent: 34 + type: Transform + - uid: 4205 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-50.5 + parent: 34 + type: Transform + - uid: 4206 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-50.5 + parent: 34 + type: Transform + - uid: 4207 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-50.5 + parent: 34 + type: Transform + - uid: 4208 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-54.5 + parent: 34 + type: Transform + - uid: 4209 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-54.5 + parent: 34 + type: Transform + - uid: 4210 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-54.5 + parent: 34 + type: Transform + - uid: 4563 + components: + - rot: 3.141592653589793 rad + pos: 44.5,-15.5 + parent: 34 + type: Transform + - uid: 4661 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-15.5 + parent: 34 + type: Transform + - uid: 4698 + components: + - rot: -1.5707963267948966 rad + pos: 52.5,-2.5 + parent: 34 + type: Transform + - uid: 8073 + components: + - rot: -1.5707963267948966 rad + pos: 52.5,-1.5 + parent: 34 + type: Transform + - uid: 9104 + components: + - rot: -1.5707963267948966 rad + pos: 52.5,0.5 + parent: 34 + type: Transform + - uid: 11062 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,4.5 + parent: 34 + type: Transform + - uid: 11063 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,5.5 + parent: 34 + type: Transform + - uid: 11064 + components: + - pos: 44.5,8.5 + parent: 34 + type: Transform + - uid: 11065 + components: + - pos: 43.5,8.5 + parent: 34 + type: Transform + - uid: 11066 + components: + - pos: 39.5,8.5 + parent: 34 + type: Transform + - uid: 11067 + components: + - pos: 38.5,8.5 + parent: 34 + type: Transform + - uid: 11068 + components: + - pos: 37.5,8.5 + parent: 34 + type: Transform + - uid: 11581 + components: + - rot: -1.5707963267948966 rad + pos: 52.5,-0.5 + parent: 34 + type: Transform + - uid: 11591 + components: + - rot: -1.5707963267948966 rad + pos: 52.5,-3.5 + parent: 34 + type: Transform + - uid: 12237 + components: + - pos: -15.5,6.5 + parent: 34 + type: Transform +- proto: WindowTintedDirectional + entities: + - uid: 216 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,5.5 + parent: 34 + type: Transform + - uid: 10873 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,2.5 + parent: 34 + type: Transform + - uid: 10900 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,3.5 + parent: 34 + type: Transform + - uid: 11014 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-40.5 + parent: 34 + type: Transform + - uid: 11223 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-42.5 + parent: 34 + type: Transform +- proto: WoodDoor + entities: + - uid: 2183 + components: + - pos: -42.5,-8.5 + parent: 34 + type: Transform + - uid: 2184 + components: + - pos: -42.5,-2.5 + parent: 34 + type: Transform +- proto: Wrench + entities: + - uid: 12447 + components: + - pos: 1.6133218,-43.478226 + parent: 34 + type: Transform +- proto: Zipties + entities: + - uid: 11712 + components: + - pos: -29.666363,3.6544852 + parent: 34 + type: Transform + - uid: 11713 + components: + - pos: -29.655947,3.425158 + parent: 34 + type: Transform +... diff --git a/Resources/Maps/tortuga.yml b/Resources/Maps/tortuga.yml index 8caaa5d533..7971b73d05 100644 --- a/Resources/Maps/tortuga.yml +++ b/Resources/Maps/tortuga.yml @@ -8,58 +8,59 @@ tilemap: 3: FloorArcadeRed 7: FloorAsteroidSand 10: FloorAsteroidSandUnvariantized - 12: FloorBar - 14: FloorBlue - 15: FloorBlueCircuit - 16: FloorBoxing - 17: FloorBrokenWood - 18: FloorCarpetClown - 19: FloorCarpetOffice - 21: FloorCaveDrought - 27: FloorDark - 28: FloorDarkDiagonal - 32: FloorDarkMono - 38: FloorDirt - 39: FloorEighties - 40: FloorElevatorShaft - 42: FloorFreezer - 43: FloorGlass - 44: FloorGold - 46: FloorGrassDark - 48: FloorGrassLight - 52: FloorGreenCircuit - 54: FloorHull - 55: FloorHullReinforced - 56: FloorHydro - 58: FloorKitchen - 59: FloorLaundry - 60: FloorLino - 61: FloorLowDesert - 62: FloorMetalDiamond - 63: FloorMime - 69: FloorPlanetGrass - 71: FloorRGlass - 72: FloorReinforced - 73: FloorReinforcedHardened - 74: FloorRockVault - 75: FloorShowroom - 81: FloorSilver - 84: FloorSteel - 87: FloorSteelDiagonal - 88: FloorSteelDiagonalMini - 89: FloorSteelDirty - 92: FloorSteelMono - 96: FloorTechMaint - 97: FloorTechMaint2 - 98: FloorTechMaint3 - 100: FloorWhite - 101: FloorWhiteDiagonal - 105: FloorWhiteMono - 110: FloorWood - 111: FloorWoodTile - 112: Lattice - 113: Plating - 114: PlatingAsteroid + 14: FloorBar + 17: FloorBlue + 18: FloorBlueCircuit + 19: FloorBoxing + 20: FloorBrokenWood + 21: FloorCarpetClown + 22: FloorCarpetOffice + 24: FloorCaveDrought + 30: FloorDark + 31: FloorDarkDiagonal + 35: FloorDarkMono + 41: FloorDirt + 42: FloorEighties + 43: FloorElevatorShaft + 45: FloorFreezer + 46: FloorGlass + 47: FloorGold + 49: FloorGrassDark + 51: FloorGrassLight + 53: FloorGrayConcreteMono + 55: FloorGreenCircuit + 57: FloorHull + 58: FloorHullReinforced + 59: FloorHydro + 61: FloorKitchen + 62: FloorLaundry + 63: FloorLino + 64: FloorLowDesert + 65: FloorMetalDiamond + 66: FloorMime + 75: FloorPlanetGrass + 77: FloorRGlass + 78: FloorReinforced + 79: FloorReinforcedHardened + 80: FloorRockVault + 81: FloorShowroom + 87: FloorSilver + 90: FloorSteel + 95: FloorSteelDiagonal + 96: FloorSteelDiagonalMini + 97: FloorSteelDirty + 101: FloorSteelMono + 105: FloorTechMaint + 106: FloorTechMaint2 + 107: FloorTechMaint3 + 109: FloorWhite + 110: FloorWhiteDiagonal + 114: FloorWhiteMono + 119: FloorWood + 120: FloorWoodTile + 121: Lattice + 122: Plating + 123: PlatingAsteroid entities: - proto: "" entities: @@ -72,533 +73,533 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: VAAAAAAAVAAAAAACVAAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAABVAAAAAABSAAAAAAASAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAABVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAADVAAAAAADSAAAAAAASAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAASAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADSAAAAAAASAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABSAAAAAAASAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAADVAAAAAACSAAAAAAASAAAAAAAVAAAAAACVAAAAAABVAAAAAADSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAVAAAAAADSAAAAAAASAAAAAAAVAAAAAAAVAAAAAADVAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAACSAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAABcQAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAADSAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAcQAAAAAASAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAADSAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAACcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAACcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAVAAAAAACVAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAAA + tiles: WgAAAAACWgAAAAAAWgAAAAABTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAAAWgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAADWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABWgAAAAADWgAAAAADTgAAAAAATgAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAACWgAAAAAATgAAAAAATgAAAAAAWgAAAAADWgAAAAABWgAAAAACWgAAAAAAWgAAAAABWgAAAAACegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWgAAAAADWgAAAAABWgAAAAAAegAAAAAATgAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAADegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAABTgAAAAAATgAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAAAWgAAAAAAWgAAAAABegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAABTgAAAAAATgAAAAAAWgAAAAADWgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAADWgAAAAACTgAAAAAATgAAAAAAWgAAAAACWgAAAAAAWgAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAWgAAAAAATgAAAAAATgAAAAAAWgAAAAABWgAAAAACWgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAADTgAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAAAWgAAAAADWgAAAAADegAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAADTgAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAADWgAAAAAAWgAAAAABWgAAAAAAegAAAAAATgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACTgAAAAAAWgAAAAADWgAAAAACWgAAAAADWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAABegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAADegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAABWgAAAAACWgAAAAABWgAAAAABWgAAAAABWgAAAAADWgAAAAADWgAAAAADegAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAWgAAAAAAWgAAAAABTgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAAB version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAABPgAAAAAAPgAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAADPgAAAAAAPgAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAACcQAAAAAAVAAAAAACVAAAAAABPgAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAADSAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAADcQAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAADYAAAAAAAYAAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAGwAAAAADGwAAAAACGwAAAAAAcQAAAAAAGwAAAAADGwAAAAAAVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAADcQAAAAAAGwAAAAABGwAAAAACVAAAAAABcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAADcQAAAAAAGwAAAAADGwAAAAADGwAAAAACcQAAAAAAGwAAAAABGwAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAABQQAAAAAAQQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAACWgAAAAACWgAAAAADWgAAAAABQQAAAAAAQQAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAACegAAAAAAWgAAAAADWgAAAAADQQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAAAWgAAAAADWgAAAAACWgAAAAABWgAAAAADWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAACWgAAAAABWgAAAAABWgAAAAABWgAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAAAWgAAAAADWgAAAAACWgAAAAADWgAAAAADWgAAAAACTgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAACegAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAADWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAADWgAAAAABaQAAAAAAaQAAAAAAagAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAADegAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAagAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAACWgAAAAABWgAAAAABWgAAAAABWgAAAAADegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAADWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAABWgAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAABegAAAAAAHgAAAAAAHgAAAAABWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAAAegAAAAAAHgAAAAACHgAAAAABHgAAAAACegAAAAAAHgAAAAADHgAAAAADWgAAAAACegAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAABegAAAAAAHgAAAAACHgAAAAABHgAAAAACegAAAAAAHgAAAAADHgAAAAAB version: 6 -1,0: ind: -1,0 - tiles: VAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMAAAAAACKwAAAAAAKwAAAAADMAAAAAADcQAAAAAAMAAAAAAAMAAAAAACMAAAAAACMAAAAAACMAAAAAAAMAAAAAADPwAAAAAAPwAAAAAAPwAAAAAAcQAAAAAAMAAAAAAAMAAAAAACKwAAAAABKwAAAAADMAAAAAADMAAAAAABMAAAAAABMAAAAAABMAAAAAABMAAAAAAAMAAAAAAAMAAAAAACPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAMAAAAAAAMAAAAAADKwAAAAAAKwAAAAADMAAAAAABMAAAAAABMAAAAAABMAAAAAABMAAAAAAAMAAAAAABMAAAAAABMAAAAAABPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAMAAAAAACMAAAAAACKwAAAAACKwAAAAACMAAAAAAAMAAAAAACMAAAAAAAMAAAAAADMAAAAAABMAAAAAABMAAAAAAAMAAAAAACPwAAAAAAPwAAAAAAPwAAAAAAcQAAAAAAMAAAAAADMAAAAAABKwAAAAAAKwAAAAABMAAAAAAAMAAAAAABMAAAAAADMAAAAAABMAAAAAADMAAAAAACMAAAAAABMAAAAAABPwAAAAAAPwAAAAAAPwAAAAAAcQAAAAAAMAAAAAABMAAAAAADKwAAAAAAKwAAAAACMAAAAAADMAAAAAADMAAAAAADMAAAAAADMAAAAAADMAAAAAADMAAAAAADMAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMAAAAAACMAAAAAAAKwAAAAACKwAAAAABMAAAAAAAMAAAAAAAMAAAAAADMAAAAAACMAAAAAAAMAAAAAABMAAAAAAAMAAAAAACPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAMAAAAAADMAAAAAADKwAAAAACKwAAAAACMAAAAAADMAAAAAABMAAAAAADMAAAAAAAMAAAAAADMAAAAAADMAAAAAADMAAAAAACPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAMAAAAAAAMAAAAAACKwAAAAAAKwAAAAABMAAAAAADMAAAAAABMAAAAAADMAAAAAAAMAAAAAACMAAAAAABMAAAAAACMAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAMAAAAAACMAAAAAABKwAAAAADKwAAAAADMAAAAAABMAAAAAABMAAAAAADMAAAAAADMAAAAAACMAAAAAABMAAAAAABMAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMAAAAAADMAAAAAACKwAAAAACKwAAAAABMAAAAAADMAAAAAABMAAAAAADcQAAAAAAMAAAAAACMAAAAAACMAAAAAADMAAAAAACEgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAMAAAAAABMAAAAAADKwAAAAACKwAAAAADMAAAAAACMAAAAAACMAAAAAADcQAAAAAAGwAAAAACMAAAAAABMAAAAAABMAAAAAAD + tiles: WgAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAACWgAAAAABWgAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAADWgAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAADWgAAAAADWgAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAACWgAAAAADWgAAAAABWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAABWgAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAAAWgAAAAADWgAAAAABWgAAAAACWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMwAAAAAALgAAAAAALgAAAAADMwAAAAADegAAAAAAMwAAAAAAMwAAAAACMwAAAAAAMwAAAAADMwAAAAADMwAAAAABQgAAAAAAQgAAAAAAQgAAAAAAegAAAAAAMwAAAAACMwAAAAAALgAAAAABLgAAAAADMwAAAAABMwAAAAABMwAAAAADMwAAAAAAMwAAAAAAMwAAAAABMwAAAAABMwAAAAABQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAMwAAAAAAMwAAAAABLgAAAAABLgAAAAACMwAAAAABMwAAAAABMwAAAAACMwAAAAABMwAAAAACMwAAAAADMwAAAAAAMwAAAAACQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAMwAAAAADMwAAAAADLgAAAAAALgAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAACMwAAAAADMwAAAAADMwAAAAACMwAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAegAAAAAAMwAAAAACMwAAAAACLgAAAAACLgAAAAAAMwAAAAAAMwAAAAAAMwAAAAADMwAAAAACMwAAAAACMwAAAAADMwAAAAABMwAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAegAAAAAAMwAAAAACMwAAAAABLgAAAAAALgAAAAACMwAAAAAAMwAAAAACMwAAAAADMwAAAAABMwAAAAAAMwAAAAABMwAAAAAAMwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAMwAAAAACMwAAAAAALgAAAAAALgAAAAABMwAAAAAAMwAAAAACMwAAAAABMwAAAAADMwAAAAADMwAAAAABMwAAAAABMwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAMwAAAAABMwAAAAACLgAAAAACLgAAAAACMwAAAAAAMwAAAAADMwAAAAACMwAAAAABMwAAAAADMwAAAAADMwAAAAAAMwAAAAACPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAMwAAAAABMwAAAAADLgAAAAACLgAAAAABMwAAAAAAMwAAAAABMwAAAAACMwAAAAABMwAAAAAAMwAAAAADMwAAAAACMwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAMwAAAAABMwAAAAADLgAAAAABLgAAAAACMwAAAAABMwAAAAABMwAAAAABMwAAAAABMwAAAAABMwAAAAAAMwAAAAACMwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAMwAAAAABMwAAAAABLgAAAAACLgAAAAACMwAAAAADMwAAAAAAMwAAAAADegAAAAAAMwAAAAADMwAAAAACMwAAAAACMwAAAAABFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAMwAAAAACMwAAAAADLgAAAAADLgAAAAACMwAAAAACMwAAAAAAMwAAAAAAegAAAAAAHgAAAAAAMwAAAAACMwAAAAABMwAAAAAC version: 6 0,-2: ind: 0,-2 - tiles: cQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAABcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAADVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAVAAAAAACVAAAAAAASAAAAAAAVAAAAAABcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAAB + tiles: egAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAACegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAACWgAAAAADWgAAAAAAWgAAAAACWgAAAAABegAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAADWgAAAAADWgAAAAACWgAAAAAAWgAAAAACWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAACWgAAAAACWgAAAAACWgAAAAADWgAAAAACWgAAAAACWgAAAAAAWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAWgAAAAACWgAAAAABTgAAAAAAWgAAAAACegAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAADWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAADWgAAAAADWgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAADWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAABWgAAAAAB version: 6 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAABbwAAAAADbwAAAAADbwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAADbwAAAAADbwAAAAAAbwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAABWAAAAAACWAAAAAABWAAAAAABWAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAABcQAAAAAAWAAAAAABSwAAAAAASwAAAAAAVAAAAAACVAAAAAADVAAAAAABcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAACcQAAAAAAWAAAAAAASwAAAAAASwAAAAAAVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABSAAAAAAASAAAAAAAcQAAAAAASAAAAAAAVAAAAAAASAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAADcQAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAADeAAAAAABeAAAAAACeAAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAABWgAAAAACWgAAAAADegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAAAWgAAAAACWgAAAAAAeAAAAAADeAAAAAABeAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAADWgAAAAACWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAABegAAAAAAWgAAAAACWgAAAAACWgAAAAABWgAAAAABWgAAAAACWgAAAAAAWgAAAAABWgAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADegAAAAAAYAAAAAADUQAAAAAAUQAAAAAAWgAAAAABWgAAAAABWgAAAAABegAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAABWgAAAAABWgAAAAADWgAAAAACWgAAAAAAegAAAAAAYAAAAAABUQAAAAAAUQAAAAAAWgAAAAABWgAAAAABWgAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACTgAAAAAATgAAAAAAegAAAAAATgAAAAAAWgAAAAADTgAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAABWgAAAAABWgAAAAACWgAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAABQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: AAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABWQAAAAAAYgAAAAAAWQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWQAAAAAAPgAAAAAAPgAAAAAAYgAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAACXAAAAAADXAAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAABXAAAAAADXAAAAAADPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAADXAAAAAABXAAAAAACXAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAAAXAAAAAAAXAAAAAADPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAADXAAAAAACXAAAAAABPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAAAXAAAAAABXAAAAAADXAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACYQAAAAAAawAAAAABYQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAYQAAAAAAQQAAAAAAQQAAAAAAawAAAAABTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZQAAAAACZQAAAAACZQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZQAAAAABZQAAAAABZQAAAAADQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZQAAAAACZQAAAAABZQAAAAABZQAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZQAAAAADZQAAAAAAZQAAAAACQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZQAAAAADZQAAAAACZQAAAAACQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZQAAAAADZQAAAAABZQAAAAAAZQAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZQAAAAAAZQAAAAACZQAAAAAAZQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAZQAAAAADZQAAAAAAZQAAAAACZQAAAAACTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: VAAAAAADPgAAAAAAPgAAAAAAPgAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAABIAAAAAABVAAAAAABPgAAAAAAPgAAAAAAPgAAAAAAVAAAAAACVAAAAAADVAAAAAAAPgAAAAAAPgAAAAAAVAAAAAADVAAAAAABIAAAAAACIAAAAAACIAAAAAACIAAAAAAAIAAAAAABVAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAVAAAAAADVAAAAAADVAAAAAACPgAAAAAAPgAAAAAAVAAAAAAAVAAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAACVAAAAAACPgAAAAAAPgAAAAAAVAAAAAADVAAAAAADPgAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAABPgAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAACVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAACVAAAAAADVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAACSAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAPgAAAAAAPgAAAAAASAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAABYAAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAABPgAAAAAAPgAAAAAAYAAAAAAAYgAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAABPgAAAAAAPgAAAAAAVAAAAAADcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAAAVAAAAAACPgAAAAAAPgAAAAAAPgAAAAAAVAAAAAAAVAAAAAADGwAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAACPgAAAAAAPgAAAAAAPgAAAAAAVAAAAAADVAAAAAAAGwAAAAABcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAGwAAAAACcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAD + tiles: WgAAAAACQQAAAAAAQQAAAAAAQQAAAAAAWgAAAAADWgAAAAACWgAAAAADWgAAAAADWgAAAAACWgAAAAACWgAAAAADIwAAAAADIwAAAAAAIwAAAAABIwAAAAACIwAAAAADWgAAAAACQQAAAAAAQQAAAAAAQQAAAAAAWgAAAAABWgAAAAACWgAAAAAAQQAAAAAAQQAAAAAAWgAAAAABWgAAAAABIwAAAAAAIwAAAAABIwAAAAABIwAAAAAAIwAAAAABWgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAWgAAAAADWgAAAAADWgAAAAACQQAAAAAAQQAAAAAAWgAAAAAAWgAAAAACQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAWgAAAAACWgAAAAACWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADQQAAAAAAQQAAAAAAWgAAAAADWgAAAAADQQAAAAAAIwAAAAACIwAAAAADIwAAAAACIwAAAAABWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAABWgAAAAAAQQAAAAAAIwAAAAABIwAAAAADIwAAAAACIwAAAAACWgAAAAADWgAAAAABWgAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAADWgAAAAAAWgAAAAACWgAAAAABWgAAAAACQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAAAWgAAAAABWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAABWgAAAAABWgAAAAABWgAAAAADWgAAAAABWgAAAAAAWgAAAAAATgAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAADWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAADWgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADQQAAAAAAQQAAAAAATgAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAADaQAAAAAAQQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAawAAAAACegAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAABQQAAAAAAQQAAAAAAWgAAAAADegAAAAAAWgAAAAADWgAAAAABWgAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAACWgAAAAACWgAAAAACQQAAAAAAQQAAAAAAQQAAAAAAWgAAAAACWgAAAAADHgAAAAACegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAADQQAAAAAAQQAAAAAAQQAAAAAAWgAAAAAAWgAAAAAAHgAAAAACegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAADWgAAAAADegAAAAAAWgAAAAADWgAAAAABWgAAAAAAHgAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAACegAAAAAAWgAAAAADWgAAAAADWgAAAAAB version: 6 2,-1: ind: 2,-1 - tiles: IAAAAAACXAAAAAACXAAAAAAAXAAAAAABXAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAXAAAAAACXAAAAAADXAAAAAADXAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIAAAAAABIAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAIAAAAAACIAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAIAAAAAACIAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAADIAAAAAABVAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACPgAAAAAAPgAAAAAAPgAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAABPgAAAAAAPgAAAAAAPgAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAACVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAA + tiles: IwAAAAACZQAAAAADZQAAAAABZQAAAAADZQAAAAADTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAZQAAAAACZQAAAAADZQAAAAACZQAAAAADTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAZQAAAAACZQAAAAAAZQAAAAAAZQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAADIwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAAeQAAAAAAegAAAAAAIwAAAAABIwAAAAADWgAAAAABWgAAAAABWgAAAAACWgAAAAADWgAAAAADTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAeQAAAAAAegAAAAAAIwAAAAABIwAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAADWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAACIwAAAAAAWgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAABQQAAAAAAQQAAAAAAQQAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAACQQAAAAAAQQAAAAAAQQAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAACWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAAAWgAAAAADWgAAAAACWgAAAAADWgAAAAADWgAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAAeQAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAADWgAAAAADWgAAAAADWgAAAAABWgAAAAADegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAABegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWgAAAAACWgAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAABaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAA version: 6 1,0: ind: 1,0 - tiles: GwAAAAABcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAPAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYgAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAACcQAAAAAAPAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAABcQAAAAAAPAAAAAAAYAAAAAAAYgAAAAACYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAZAAAAAACcQAAAAAAYAAAAAAAYgAAAAADcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAADVAAAAAADYAAAAAAAYAAAAAAAZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAAAcQAAAAAAYAAAAAAAZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAYgAAAAAAYgAAAAABZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAAASAAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAADSAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAADSAAAAAAAVAAAAAAAYQAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAACcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAWQAAAAAAVAAAAAABEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAABcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAACWQAAAAAA + tiles: HgAAAAACegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAQQAAAAAAegAAAAAAPwAAAAAAegAAAAAAQQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAQQAAAAAAegAAAAAAPwAAAAAAPwAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPwAAAAAAegAAAAAAQQAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAawAAAAADegAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAAAWgAAAAACegAAAAAAPwAAAAAAegAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAADWgAAAAAAegAAAAAAPwAAAAAAaQAAAAAAawAAAAACaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAADWgAAAAAAWgAAAAAAegAAAAAAPwAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAADWgAAAAACWgAAAAAAegAAAAAAegAAAAAAbQAAAAADegAAAAAAaQAAAAAAawAAAAACegAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAADWgAAAAAAWgAAAAAAaQAAAAAAaQAAAAAAbQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAADWgAAAAACWgAAAAAAegAAAAAAaQAAAAAAbQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAADegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAADegAAAAAAWgAAAAABWgAAAAADWgAAAAABWgAAAAAAegAAAAAAawAAAAAAawAAAAACbQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAAAWgAAAAABTgAAAAAAWgAAAAABWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAABTgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAAATgAAAAAAWgAAAAACagAAAAAAFgAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAABegAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAABegAAAAAAYQAAAAAAWgAAAAABFgAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAADegAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADYQAAAAAA version: 6 2,0: ind: 2,0 - tiles: SAAAAAAAPAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAWQAAAAAAYgAAAAABcQAAAAAAVAAAAAAADgAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAVAAAAAADWQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYgAAAAAAVAAAAAABWQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAWQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAACYgAAAAADcQAAAAAAVAAAAAACVAAAAAADcQAAAAAAVAAAAAACVAAAAAACcQAAAAAAWQAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADWQAAAAAAcQAAAAAAYgAAAAADYgAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAVAAAAAABcQAAAAAAVAAAAAAAVAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAYgAAAAADWQAAAAAAVAAAAAACYgAAAAADYgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAPgAAAAAASAAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAYgAAAAACYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACWQAAAAAAYgAAAAADWQAAAAAAcQAAAAAAVAAAAAADPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAACYgAAAAABcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAABWQAAAAAAVAAAAAACVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACWQAAAAAAcQAAAAAAVAAAAAAA + tiles: TgAAAAAAPwAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAYQAAAAAAawAAAAADegAAAAAAWgAAAAAAEQAAAAAAegAAAAAAWgAAAAAAegAAAAAAegAAAAAAWgAAAAACYQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAawAAAAADWgAAAAACYQAAAAAAegAAAAAAegAAAAAAWgAAAAABegAAAAAAegAAAAAAYQAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAABawAAAAADegAAAAAAWgAAAAACWgAAAAABegAAAAAAWgAAAAACWgAAAAADegAAAAAAYQAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAAAYQAAAAAAegAAAAAAawAAAAADawAAAAACegAAAAAAegAAAAAAYQAAAAAAYQAAAAAAWgAAAAACegAAAAAAWgAAAAADWgAAAAABQQAAAAAAQQAAAAAAQQAAAAAAawAAAAABYQAAAAAAWgAAAAABawAAAAACawAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAQQAAAAAATgAAAAAAegAAAAAAYQAAAAAAegAAAAAAawAAAAACaQAAAAAAegAAAAAAWgAAAAACWgAAAAADYQAAAAAAawAAAAABYQAAAAAAegAAAAAAWgAAAAABQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAYQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAACWgAAAAABWgAAAAACawAAAAADegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAABYQAAAAAAWgAAAAABWgAAAAADWgAAAAADegAAAAAAegAAAAAAWgAAAAACYQAAAAAAegAAAAAAWgAAAAAC version: 6 1,1: ind: 1,1 - tiles: EwAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAACcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAACcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAACcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAASAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAACcQAAAAAASAAAAAAAVAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAASAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACSAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAACcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAACGwAAAAADSAAAAAAASAAAAAAAGwAAAAACGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAAAGwAAAAABGwAAAAACGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAABGwAAAAADcQAAAAAAYAAAAAAAYQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAKwAAAAADKwAAAAABKwAAAAAAKwAAAAABKwAAAAAAKwAAAAABKwAAAAAAGwAAAAADGwAAAAABcQAAAAAAYAAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAADcQAAAAAAKwAAAAAAGwAAAAACGwAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAACDAAAAAACcQAAAAAAKwAAAAADGwAAAAAAGwAAAAABcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAADAAAAAACDAAAAAACDAAAAAACDAAAAAAADAAAAAAAcQAAAAAAKwAAAAAAGwAAAAABGwAAAAABcQAAAAAAYAAAAAAAYQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAA + tiles: FgAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAFgAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAADegAAAAAAWgAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAACWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAABWgAAAAABegAAAAAAWgAAAAACWgAAAAADWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAACegAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAABWgAAAAACegAAAAAAWgAAAAAAWgAAAAABWgAAAAADTgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAACWgAAAAABegAAAAAATgAAAAAAWgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAACTgAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAADWgAAAAADWgAAAAABWgAAAAABWgAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAACWgAAAAACWgAAAAACWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADTgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAABWgAAAAABegAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAABWgAAAAABWgAAAAADWgAAAAABWgAAAAADWgAAAAACWgAAAAAAegAAAAAAWgAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAHgAAAAABTgAAAAAATgAAAAAAHgAAAAABHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAACHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAABHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAACHgAAAAACHgAAAAADHgAAAAACHgAAAAACegAAAAAAaQAAAAAAagAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAACLgAAAAAALgAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAADLgAAAAACHgAAAAABHgAAAAADegAAAAAAaQAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAACHgAAAAABHgAAAAACegAAAAAALgAAAAACHgAAAAACHgAAAAADegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAADgAAAAADDgAAAAABDgAAAAADDgAAAAACDgAAAAACegAAAAAALgAAAAADHgAAAAACHgAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAADgAAAAADDgAAAAACDgAAAAADDgAAAAAADgAAAAACegAAAAAALgAAAAABHgAAAAAAHgAAAAABegAAAAAAaQAAAAAAagAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAABRwAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAADRwAAAAADcQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAACRwAAAAABcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAADRwAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAADRwAAAAABSAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAABVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAAARwAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAACRwAAAAABSAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAABHAAAAAACHAAAAAACHAAAAAAAHAAAAAADHAAAAAAASAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAAAHAAAAAADSAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAACSAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAACcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATQAAAAADTQAAAAADegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATQAAAAADTQAAAAACegAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAABWgAAAAAAWgAAAAABWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATQAAAAACTQAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAABWgAAAAAAWgAAAAADWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATQAAAAACTQAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAACWgAAAAACWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATQAAAAAATQAAAAAATgAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAADWgAAAAAAWgAAAAACWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATQAAAAABTQAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAACWgAAAAACWgAAAAABWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATQAAAAAATQAAAAACTgAAAAAAWgAAAAADWgAAAAABWgAAAAACWgAAAAACWgAAAAADWgAAAAADWgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAACWgAAAAACWgAAAAABWgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAAAHwAAAAAATgAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAABWgAAAAABWgAAAAACWgAAAAABWgAAAAADWgAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAATgAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAABWgAAAAACWgAAAAACegAAAAAAegAAAAAATgAAAAAATgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAAATgAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAABWgAAAAABWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAABegAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAAAWgAAAAACWgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAABWgAAAAABWgAAAAACWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAADWgAAAAADWgAAAAADWgAAAAAAWgAAAAADWgAAAAADWgAAAAADTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADWgAAAAABWgAAAAACWgAAAAABWgAAAAADWgAAAAABWgAAAAABWgAAAAACWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAAAWgAAAAABegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: cQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAARwAAAAACRwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAABcQAAAAAARwAAAAAARwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABcQAAAAAARwAAAAACRwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAACcQAAAAAARwAAAAACRwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAACSAAAAAAARwAAAAACRwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAADRwAAAAABRwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAABVAAAAAAAVAAAAAABSAAAAAAARwAAAAADRwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAABSAAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADSAAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAABXAAAAAACXAAAAAABXAAAAAADXAAAAAACcQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAAASAAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAADcQAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAHAAAAAADHAAAAAAAHAAAAAACXAAAAAADXAAAAAACXAAAAAACXAAAAAAAXAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAABXAAAAAADXAAAAAAAXAAAAAACXAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAC + tiles: egAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAATQAAAAABTQAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAACWgAAAAAAWgAAAAABegAAAAAATQAAAAAATQAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAABegAAAAAATQAAAAACTQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABegAAAAAATQAAAAAATQAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAADWgAAAAACTgAAAAAATQAAAAABTQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAWgAAAAACTQAAAAACTQAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAACWgAAAAAAWgAAAAABWgAAAAADWgAAAAABTgAAAAAATQAAAAAATQAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAADWgAAAAABWgAAAAABWgAAAAACWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAABWgAAAAABWgAAAAADWgAAAAADTgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAADWgAAAAABWgAAAAADTgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAADZQAAAAABZQAAAAACZQAAAAAAZQAAAAABegAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAACWgAAAAABTgAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAACZQAAAAACZQAAAAAAZQAAAAABZQAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAABWgAAAAAAWgAAAAABWgAAAAABegAAAAAAegAAAAAAHwAAAAADHwAAAAADHwAAAAADZQAAAAAAZQAAAAADZQAAAAADZQAAAAADZQAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAADWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAAAZQAAAAABZQAAAAABZQAAAAAAZQAAAAACegAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAADWgAAAAABWgAAAAACWgAAAAABWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAABWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAAAWgAAAAABQQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAPQAAAAAAPQAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAB version: 6 -2,-1: ind: -2,-1 - tiles: YAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAVAAAAAACVAAAAAACYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAASAAAAAAAVAAAAAACVAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAASAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAVAAAAAACVAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAABVAAAAAABMAAAAAADMAAAAAAAMAAAAAABMAAAAAABMAAAAAAAMAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAABVAAAAAACLgAAAAADLgAAAAABLgAAAAACMAAAAAACMAAAAAAAMAAAAAADcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAADVAAAAAACLgAAAAAAFQAAAAACLgAAAAADLgAAAAABMAAAAAAAMAAAAAABcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAADVAAAAAABFQAAAAAFFQAAAAAAFQAAAAABLgAAAAACLgAAAAAAMAAAAAADcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAABFQAAAAACFQAAAAAEFQAAAAABFQAAAAAFLgAAAAADMAAAAAACcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAFQAAAAAHFQAAAAAAFQAAAAADLgAAAAADLgAAAAACMAAAAAABcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAABLgAAAAABFQAAAAADLgAAAAACLgAAAAABMAAAAAAAMAAAAAABcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAADVAAAAAADLgAAAAABLgAAAAADLgAAAAACMAAAAAADMAAAAAABMAAAAAADcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAACVAAAAAACMAAAAAACMAAAAAAAMAAAAAADMAAAAAABMAAAAAACMAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAASAAAAAAAVAAAAAADSAAAAAAAcQAAAAAAcQAAAAAASAAAAAAA + tiles: aQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAWgAAAAAAWgAAAAABaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAATgAAAAAAWgAAAAACWgAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAATgAAAAAAWgAAAAABWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAWgAAAAAAWgAAAAACaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAACWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAABWgAAAAAAMwAAAAAAMwAAAAADMwAAAAADMwAAAAADMwAAAAABMwAAAAACegAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAADWgAAAAAAMQAAAAADMQAAAAACMQAAAAACMwAAAAACMwAAAAADMwAAAAADegAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWgAAAAABWgAAAAAAMQAAAAACGAAAAAAAMQAAAAACMQAAAAABMwAAAAABMwAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAACWgAAAAAAGAAAAAACGAAAAAAFGAAAAAADMQAAAAACMQAAAAAAMwAAAAABegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAACWgAAAAABGAAAAAAAGAAAAAADGAAAAAAEGAAAAAAHMQAAAAADMwAAAAADegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAABWgAAAAACGAAAAAAEGAAAAAAFGAAAAAAGMQAAAAABMQAAAAABMwAAAAACegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAAAWgAAAAADMQAAAAACGAAAAAAAMQAAAAADMQAAAAABMwAAAAADMwAAAAADegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAADWgAAAAACMQAAAAACMQAAAAADMQAAAAACMwAAAAADMwAAAAACMwAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAAAWgAAAAACMwAAAAABMwAAAAACMwAAAAABMwAAAAADMwAAAAABMwAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAADWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACegAAAAAATgAAAAAAWgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: cQAAAAAAbgAAAAACbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAbgAAAAADbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACcQAAAAAAbgAAAAAAcQAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAABbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAAAbgAAAAABbgAAAAABbgAAAAABbgAAAAAAbgAAAAACbgAAAAADbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAbgAAAAADbgAAAAACbgAAAAABbgAAAAADbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAADbgAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbgAAAAACcQAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAADbgAAAAABbgAAAAABbgAAAAABbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAADbgAAAAADbgAAAAADbgAAAAAAbgAAAAABbgAAAAADcQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAcQAAAAAAbgAAAAABbgAAAAADcQAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAAAbgAAAAAAbgAAAAABbgAAAAACbgAAAAABSAAAAAAAMAAAAAABMAAAAAAAMAAAAAACcQAAAAAAbgAAAAABbgAAAAADcQAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAABbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACbgAAAAABMAAAAAACMAAAAAABLgAAAAADcQAAAAAAbgAAAAACbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADbgAAAAABbgAAAAADbgAAAAABbgAAAAABbgAAAAACbgAAAAACSAAAAAAAMAAAAAADLgAAAAABLgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAVAAAAAADSAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMAAAAAADLgAAAAABFQAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAABcQAAAAAAMAAAAAADLgAAAAABLgAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAADSAAAAAAAMAAAAAAAMAAAAAAALgAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADMAAAAAABMAAAAAADMAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAAASAAAAAAAMAAAAAADMAAAAAACMAAAAAACGwAAAAADGwAAAAADGwAAAAACGwAAAAADGwAAAAADGwAAAAACGwAAAAADcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: egAAAAAAdwAAAAABdwAAAAAAdwAAAAABdwAAAAACdwAAAAACdwAAAAABegAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAdwAAAAAAdwAAAAACegAAAAAAegAAAAAAegAAAAAAdwAAAAABegAAAAAAdwAAAAACegAAAAAAUAAAAAAAUAAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAADdwAAAAADdwAAAAAAdwAAAAACdwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAdwAAAAADdwAAAAACdwAAAAACdwAAAAACdwAAAAABdwAAAAACdwAAAAADdwAAAAAAdwAAAAABdwAAAAABdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADdwAAAAACdwAAAAAAdwAAAAACdwAAAAAAdwAAAAAAdwAAAAADdwAAAAAAdwAAAAAAdwAAAAACdwAAAAACdwAAAAACegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAdwAAAAADegAAAAAAdwAAAAAAdwAAAAADdwAAAAABdwAAAAADdwAAAAAAdwAAAAABdwAAAAACdwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAAAegAAAAAAdwAAAAACdwAAAAADdwAAAAAAdwAAAAABdwAAAAAAdwAAAAACdwAAAAADdwAAAAADegAAAAAAMwAAAAABMwAAAAADMwAAAAABegAAAAAAdwAAAAADdwAAAAADegAAAAAAdwAAAAADdwAAAAACdwAAAAADdwAAAAABdwAAAAABdwAAAAAAdwAAAAABdwAAAAADTgAAAAAAMwAAAAAAMwAAAAABMwAAAAADegAAAAAAdwAAAAADdwAAAAABegAAAAAAdwAAAAAAdwAAAAAAdwAAAAABdwAAAAACdwAAAAADdwAAAAABdwAAAAADdwAAAAABdwAAAAADMwAAAAADMwAAAAADMQAAAAAAegAAAAAAdwAAAAACdwAAAAADdwAAAAADdwAAAAADdwAAAAADdwAAAAACdwAAAAACdwAAAAAAdwAAAAACdwAAAAAAdwAAAAABTgAAAAAAMwAAAAABMQAAAAADMQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAWgAAAAADTgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMwAAAAACMQAAAAAAGAAAAAACWgAAAAABWgAAAAABWgAAAAABWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAADWgAAAAADWgAAAAABWgAAAAABegAAAAAAMwAAAAAAMQAAAAABMQAAAAACWgAAAAACWgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAAAWgAAAAACWgAAAAAATgAAAAAAMwAAAAADMwAAAAACMQAAAAAAWgAAAAABWgAAAAADWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAABWgAAAAACWgAAAAABWgAAAAADMwAAAAAAMwAAAAABMwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAAATgAAAAAAMwAAAAADMwAAAAADMwAAAAABHgAAAAACHgAAAAADHgAAAAABHgAAAAADHgAAAAADHgAAAAABHgAAAAACegAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -3,0: ind: -3,0 - tiles: GwAAAAACGwAAAAADGwAAAAADSAAAAAAAGwAAAAAAGwAAAAADGwAAAAABcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABGwAAAAABGwAAAAAAGwAAAAADcQAAAAAAGwAAAAAAGwAAAAADGwAAAAADcQAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAACKwAAAAACVAAAAAABKwAAAAAAGwAAAAACGwAAAAACGwAAAAABcQAAAAAASAAAAAAAGwAAAAAASAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAKwAAAAABVAAAAAACGwAAAAADGwAAAAAAGwAAAAADcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABKwAAAAACVAAAAAACVAAAAAACVAAAAAABKwAAAAADVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZAAAAAADZAAAAAACcQAAAAAAVAAAAAABVAAAAAADVAAAAAACKwAAAAACVAAAAAADVAAAAAACVAAAAAADVAAAAAACcQAAAAAAGwAAAAAAGwAAAAADGwAAAAACZAAAAAAAZAAAAAADZAAAAAABcQAAAAAAVAAAAAADKwAAAAACVAAAAAABVAAAAAAAVAAAAAACKwAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAACZAAAAAACZAAAAAABZAAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAKwAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAGwAAAAACGwAAAAABGwAAAAAAZAAAAAAAZAAAAAAAZAAAAAABcQAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAACcQAAAAAASAAAAAAAZAAAAAADZAAAAAADSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAADZAAAAAADZAAAAAADZAAAAAAAZAAAAAABZAAAAAABZAAAAAAAZAAAAAABZAAAAAACcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAACZAAAAAACZAAAAAACZAAAAAACZAAAAAACZAAAAAACZAAAAAAAZAAAAAAAZAAAAAACcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAACZAAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAACZAAAAAAAZAAAAAADZAAAAAABcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAAASAAAAAAASAAAAAAAcQAAAAAAZAAAAAABZAAAAAADZAAAAAADZAAAAAAAZAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAAAZAAAAAACZAAAAAABSAAAAAAAZAAAAAACZAAAAAABZAAAAAADZAAAAAADZAAAAAADcQAAAAAAYAAAAAAAYAAAAAAAVAAAAAABGwAAAAAAGwAAAAAAGwAAAAACGwAAAAACZAAAAAACZAAAAAACZAAAAAABZAAAAAADZAAAAAABZAAAAAACZAAAAAACZAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAAC + tiles: HgAAAAAAHgAAAAACHgAAAAADTgAAAAAAHgAAAAADHgAAAAADHgAAAAACegAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAACHgAAAAADHgAAAAACHgAAAAABegAAAAAAHgAAAAABHgAAAAABHgAAAAABegAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAABWgAAAAACLgAAAAABWgAAAAADLgAAAAACHgAAAAABHgAAAAADHgAAAAACegAAAAAATgAAAAAAHgAAAAACTgAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAAALgAAAAABWgAAAAADHgAAAAAAHgAAAAABHgAAAAADegAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAADWgAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABLgAAAAACWgAAAAAAWgAAAAACWgAAAAABLgAAAAAAWgAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAABbQAAAAACegAAAAAAWgAAAAACWgAAAAACWgAAAAADLgAAAAACWgAAAAADWgAAAAADWgAAAAABWgAAAAACegAAAAAAHgAAAAADHgAAAAADHgAAAAAAbQAAAAAAbQAAAAAAbQAAAAABegAAAAAAWgAAAAACLgAAAAADWgAAAAACWgAAAAABWgAAAAADLgAAAAACWgAAAAADWgAAAAACegAAAAAAHgAAAAAAHgAAAAACHgAAAAAAbQAAAAAAbQAAAAADbQAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAACLgAAAAACWgAAAAADWgAAAAABWgAAAAADWgAAAAADegAAAAAAHgAAAAABHgAAAAAAHgAAAAACbQAAAAABbQAAAAACbQAAAAADegAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAADWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAAAbQAAAAABegAAAAAATgAAAAAAbQAAAAADbQAAAAADTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAAAbQAAAAADbQAAAAADbQAAAAACbQAAAAABbQAAAAABbQAAAAAAbQAAAAABbQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAADbQAAAAADbQAAAAACbQAAAAACbQAAAAAAbQAAAAACbQAAAAABbQAAAAADbQAAAAADegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAAAbQAAAAACbQAAAAACbQAAAAAAbQAAAAADbQAAAAABbQAAAAACbQAAAAABbQAAAAACegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAAATgAAAAAATgAAAAAAegAAAAAAbQAAAAACbQAAAAADbQAAAAAAbQAAAAAAbQAAAAABegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAADbQAAAAADbQAAAAACTgAAAAAAbQAAAAADbQAAAAACbQAAAAACbQAAAAADbQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAWgAAAAABHgAAAAACHgAAAAAAHgAAAAAAHgAAAAADbQAAAAADbQAAAAABbQAAAAACbQAAAAACbQAAAAACbQAAAAADbQAAAAABbQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAAD version: 6 -4,-1: ind: -4,-1 - tiles: NgAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAADNgAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAABGwAAAAADGwAAAAADGwAAAAACGwAAAAACGwAAAAACGwAAAAADSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAAAGwAAAAACSAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAABGwAAAAADGwAAAAABcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAGwAAAAAAGwAAAAACGwAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAGwAAAAACGwAAAAABcQAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAACGwAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAADGwAAAAAAGwAAAAAAGwAAAAABcQAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAADGwAAAAABGwAAAAACGwAAAAABGwAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAAAGwAAAAABGwAAAAADSAAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAABGwAAAAADGwAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAACGwAAAAADGwAAAAADGwAAAAADGwAAAAACDwAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAADSAAAAAAAVAAAAAACSAAAAAAAVAAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAB + tiles: OQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAACHgAAAAABOQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAADHgAAAAADHgAAAAACHgAAAAABHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAAAHgAAAAABHgAAAAADTgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAAAHgAAAAACTgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAADegAAAAAAegAAAAAAegAAAAAAHgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAADHgAAAAACHgAAAAACegAAAAAAegAAAAAAHgAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAACegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAHgAAAAAAHgAAAAACegAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAADHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAACHgAAAAADHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAADHgAAAAACHgAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAHgAAAAADHgAAAAACegAAAAAAHgAAAAADHgAAAAACHgAAAAADHgAAAAACHgAAAAABHgAAAAABHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAABHgAAAAAAHgAAAAABTgAAAAAAegAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAABHgAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAABHgAAAAAAEgAAAAAAegAAAAAAHgAAAAACHgAAAAABHgAAAAADTgAAAAAAWgAAAAADTgAAAAAAWgAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAADWgAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAACWgAAAAABWgAAAAACWgAAAAACWgAAAAABWgAAAAAAWgAAAAABWgAAAAADWgAAAAABWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAA version: 6 -4,0: ind: -4,0 - tiles: ZAAAAAAAZAAAAAAAZAAAAAACcQAAAAAAZAAAAAACZAAAAAACZAAAAAAAZAAAAAABZAAAAAABZAAAAAACZAAAAAAAZAAAAAACZAAAAAACZAAAAAACcQAAAAAAGwAAAAAAZAAAAAAAZAAAAAACZAAAAAACcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAACZAAAAAABZAAAAAADZAAAAAABZAAAAAABZAAAAAADZAAAAAADZAAAAAAAcQAAAAAAGwAAAAACZAAAAAACZAAAAAACZAAAAAABZAAAAAACZAAAAAACZAAAAAABZAAAAAADZAAAAAABZAAAAAAAZAAAAAAAZAAAAAACZAAAAAACZAAAAAABZAAAAAABcQAAAAAAGwAAAAABZAAAAAADZAAAAAACZAAAAAACcQAAAAAAZAAAAAAAZAAAAAADZAAAAAAAZAAAAAABZAAAAAABZAAAAAADZAAAAAADZAAAAAACZAAAAAADZAAAAAADGwAAAAAAGwAAAAABZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZAAAAAABZAAAAAABZAAAAAADZAAAAAADZAAAAAABcQAAAAAAcQAAAAAAZAAAAAADcQAAAAAAaQAAAAADaQAAAAADaQAAAAABaQAAAAACaQAAAAADSAAAAAAAZAAAAAACZAAAAAACZAAAAAAAZAAAAAADZAAAAAABZAAAAAADcQAAAAAAZAAAAAADZAAAAAADcQAAAAAAaQAAAAADaQAAAAABaQAAAAABaQAAAAACaQAAAAABZAAAAAACZAAAAAAAZAAAAAACZAAAAAACZAAAAAADZAAAAAADZAAAAAADZAAAAAACZAAAAAACZAAAAAADSAAAAAAAaQAAAAAAaQAAAAACaQAAAAACaQAAAAADaQAAAAABSAAAAAAAZAAAAAACZAAAAAAAZAAAAAABZAAAAAAAZAAAAAABZAAAAAADSAAAAAAAZAAAAAABZAAAAAADZAAAAAABaQAAAAADaQAAAAACaQAAAAABaQAAAAADaQAAAAACcQAAAAAAZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAADZAAAAAACcQAAAAAAcQAAAAAAZAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAADZAAAAAAAZAAAAAADZAAAAAAAZAAAAAABZAAAAAAASAAAAAAAZAAAAAABZAAAAAACZAAAAAACZAAAAAAAZAAAAAACZAAAAAAAZAAAAAAAZAAAAAABZAAAAAADZAAAAAABZAAAAAACZAAAAAACZAAAAAAAZAAAAAAAZAAAAAACSAAAAAAAZAAAAAACZAAAAAACZAAAAAABZAAAAAAAZAAAAAADZAAAAAACZAAAAAACZAAAAAACSAAAAAAAZAAAAAACZAAAAAADZAAAAAABZAAAAAACZAAAAAABZAAAAAACZAAAAAACZAAAAAABZAAAAAACZAAAAAADZAAAAAADZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAADZAAAAAAASAAAAAAAZAAAAAACSwAAAAAAcQAAAAAAcQAAAAAAHAAAAAABcQAAAAAAZAAAAAADZAAAAAAAZAAAAAAAZAAAAAABZAAAAAADZAAAAAADZAAAAAACZAAAAAADZAAAAAACcQAAAAAASAAAAAAASwAAAAAAcQAAAAAAHAAAAAABHAAAAAABcQAAAAAAZAAAAAADZAAAAAAAZAAAAAADZAAAAAABZAAAAAADZAAAAAABZAAAAAAAZAAAAAACZAAAAAACZAAAAAAAZAAAAAAASwAAAAAAcQAAAAAAHAAAAAACHAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAZAAAAAADZAAAAAADZAAAAAAAZAAAAAABZAAAAAACZAAAAAAB + tiles: bQAAAAAAbQAAAAABbQAAAAAAegAAAAAAbQAAAAAAbQAAAAADbQAAAAACbQAAAAACbQAAAAAAbQAAAAACbQAAAAACbQAAAAACbQAAAAABbQAAAAACegAAAAAAHgAAAAACbQAAAAACbQAAAAABbQAAAAACegAAAAAAbQAAAAABbQAAAAAAbQAAAAABbQAAAAADbQAAAAAAbQAAAAAAbQAAAAADbQAAAAABbQAAAAACbQAAAAACegAAAAAAHgAAAAADbQAAAAABbQAAAAACbQAAAAADbQAAAAACbQAAAAAAbQAAAAADbQAAAAAAbQAAAAAAbQAAAAABbQAAAAAAbQAAAAABbQAAAAACbQAAAAABbQAAAAACegAAAAAAHgAAAAADbQAAAAAAbQAAAAACbQAAAAACegAAAAAAbQAAAAADbQAAAAABbQAAAAACbQAAAAAAbQAAAAACbQAAAAAAbQAAAAABbQAAAAAAbQAAAAABbQAAAAAAHgAAAAACHgAAAAADbQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAADbQAAAAADbQAAAAAAbQAAAAAAbQAAAAACegAAAAAAegAAAAAAbQAAAAADegAAAAAAcgAAAAADcgAAAAACcgAAAAABcgAAAAABcgAAAAAATgAAAAAAbQAAAAACbQAAAAAAbQAAAAABbQAAAAAAbQAAAAAAbQAAAAADegAAAAAAbQAAAAAAbQAAAAAAegAAAAAAcgAAAAADcgAAAAAAcgAAAAAAcgAAAAADcgAAAAABbQAAAAACbQAAAAACbQAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAACbQAAAAADbQAAAAADbQAAAAADTgAAAAAAcgAAAAADcgAAAAADcgAAAAADcgAAAAAAcgAAAAAATgAAAAAAbQAAAAADbQAAAAABbQAAAAADbQAAAAADbQAAAAADbQAAAAABTgAAAAAAbQAAAAABbQAAAAADbQAAAAACcgAAAAADcgAAAAACcgAAAAACcgAAAAACcgAAAAADegAAAAAAbQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAAAbQAAAAACegAAAAAAegAAAAAAbQAAAAABTgAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAAAbQAAAAABbQAAAAABbQAAAAADbQAAAAADbQAAAAACTgAAAAAAbQAAAAABbQAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAABbQAAAAABbQAAAAAAbQAAAAABbQAAAAABbQAAAAAAbQAAAAABbQAAAAADbQAAAAAAbQAAAAACTgAAAAAAbQAAAAAAbQAAAAACbQAAAAACbQAAAAACbQAAAAACbQAAAAACbQAAAAADbQAAAAABTgAAAAAAbQAAAAADbQAAAAAAbQAAAAADbQAAAAAAbQAAAAABbQAAAAABbQAAAAABbQAAAAABbQAAAAACbQAAAAAAbQAAAAAAbQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAACbQAAAAAAbQAAAAABbQAAAAAAbQAAAAADTgAAAAAAbQAAAAABUQAAAAAAegAAAAAAegAAAAAAHwAAAAABegAAAAAAbQAAAAABbQAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAAAbQAAAAADbQAAAAAAbQAAAAAAegAAAAAATgAAAAAAUQAAAAAAegAAAAAAHwAAAAAAHwAAAAABegAAAAAAbQAAAAACbQAAAAADbQAAAAAAbQAAAAACbQAAAAACbQAAAAABbQAAAAABbQAAAAABbQAAAAACbQAAAAAAbQAAAAAAUQAAAAAAegAAAAAAHwAAAAABHwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABegAAAAAAbQAAAAADbQAAAAADbQAAAAADbQAAAAADbQAAAAAAbQAAAAAC version: 6 -5,-1: ind: -5,-1 - tiles: GwAAAAACGwAAAAABGwAAAAACGwAAAAAAcQAAAAAAVAAAAAADKwAAAAABVAAAAAACVAAAAAACGwAAAAABGwAAAAAAGwAAAAAAcQAAAAAANgAAAAAANwAAAAAANwAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAACcQAAAAAASAAAAAAAGwAAAAACcQAAAAAANgAAAAAAPgAAAAAAPgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADcQAAAAAAVAAAAAACVAAAAAABKwAAAAAAVAAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAABGwAAAAADGwAAAAAAGwAAAAADGwAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAACGwAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAABGwAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAADGwAAAAADSAAAAAAAVAAAAAAAKwAAAAAAVAAAAAADVAAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAADGwAAAAABGwAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAAASAAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAADSAAAAAAAVAAAAAACVAAAAAABKwAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAACGwAAAAABcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAACSAAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAADGwAAAAADGwAAAAACGwAAAAAAGwAAAAACGwAAAAACGwAAAAADcQAAAAAAVAAAAAAAKwAAAAADVAAAAAACVAAAAAADSAAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAACGwAAAAADGwAAAAADGwAAAAAAGwAAAAABGwAAAAAAGwAAAAADcQAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAACSAAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAABcQAAAAAAVAAAAAACVAAAAAABKwAAAAAAVAAAAAADSAAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAAAGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAAASAAAAAAASAAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAABcQAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAABSAAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAACSAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAAASAAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAACSAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAAASAAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAADcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: HgAAAAABHgAAAAABHgAAAAADHgAAAAACegAAAAAAWgAAAAABLgAAAAAAWgAAAAABWgAAAAAAHgAAAAACHgAAAAACHgAAAAABegAAAAAAOQAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAACegAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAADegAAAAAATgAAAAAAHgAAAAAAegAAAAAAOQAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAABegAAAAAAWgAAAAAAWgAAAAABLgAAAAACWgAAAAABegAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAADHgAAAAACegAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAABHgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAACHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHgAAAAAATgAAAAAAWgAAAAAALgAAAAADWgAAAAADWgAAAAACHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAABHgAAAAADHgAAAAAAHgAAAAADHgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAADWgAAAAAATgAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAAAHgAAAAABTgAAAAAAWgAAAAADWgAAAAABLgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAABHgAAAAABegAAAAAAWgAAAAADWgAAAAACWgAAAAABWgAAAAAATgAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAADHgAAAAAAHgAAAAACHgAAAAACHgAAAAABegAAAAAAWgAAAAAALgAAAAACWgAAAAABWgAAAAADTgAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAABHgAAAAADHgAAAAAAHgAAAAACegAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAADTgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAADHgAAAAADHgAAAAADHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABegAAAAAAWgAAAAAAWgAAAAAALgAAAAACWgAAAAADTgAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAACHgAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAADTgAAAAAAEQAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAABegAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAAAWgAAAAACWgAAAAABWgAAAAACWgAAAAABWgAAAAADWgAAAAACTgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABTgAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAABWgAAAAADWgAAAAACWgAAAAADWgAAAAABWgAAAAAATgAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABTgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAACWgAAAAACWgAAAAADTgAAAAAAHgAAAAADHgAAAAABHgAAAAADHgAAAAADegAAAAAAWgAAAAAAWgAAAAABWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAADGwAAAAACbgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAACbgAAAAABSAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAAAGwAAAAABbgAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAADGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABcQAAAAAAcAAAAAAAcAAAAAAAGwAAAAABGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAASAAAAAAAcAAAAAAAcAAAAAAAGwAAAAAAGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACcQAAAAAAcAAAAAAAcAAAAAAAGwAAAAAAGwAAAAACGwAAAAACcQAAAAAAYAAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAbgAAAAABcQAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAABGwAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAACcQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAbgAAAAADcQAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAABGwAAAAADcQAAAAAAGwAAAAACGwAAAAADGwAAAAABcQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAAAGwAAAAADcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcAAAAAAASAAAAAAAGwAAAAADGwAAAAABGwAAAAABGwAAAAABGwAAAAACcQAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAAAAAAAAAAASAAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAABGwAAAAACcQAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAABGwAAAAADGwAAAAAAGwAAAAACcQAAAAAAcQAAAAAANAAAAAAANAAAAAAAGwAAAAABDwAAAAAADwAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAAAGwAAAAAAGwAAAAAANgAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAADGwAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAACHgAAAAABdwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAABHgAAAAADdwAAAAACTgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAABHgAAAAADdwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAADegAAAAAAegAAAAAAegAAAAAAdwAAAAABTgAAAAAAeQAAAAAAeQAAAAAAegAAAAAAHgAAAAABHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAHgAAAAABHgAAAAADHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAACTgAAAAAAeQAAAAAAeQAAAAAAHgAAAAABHgAAAAACHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAADegAAAAAAeQAAAAAAeQAAAAAAHgAAAAADHgAAAAABHgAAAAAAegAAAAAAaQAAAAAAQQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAABegAAAAAATgAAAAAATgAAAAAAegAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdwAAAAABegAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAACHgAAAAABegAAAAAAHgAAAAACHgAAAAABHgAAAAAAegAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdwAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAACegAAAAAAHgAAAAADHgAAAAADHgAAAAACegAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAABegAAAAAAegAAAAAAHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABegAAAAAAeQAAAAAATgAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAACegAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAADHgAAAAAAAAAAAAAATgAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAABegAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAACHgAAAAADHgAAAAABegAAAAAAegAAAAAANwAAAAAANwAAAAAAHgAAAAADEgAAAAAAEgAAAAAAegAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAACHgAAAAADHgAAAAAAHgAAAAADHgAAAAADOQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAABHgAAAAAD version: 6 -5,-2: ind: -5,-2 - tiles: VAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAAAcQAAAAAAbgAAAAADcQAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAABbgAAAAABbgAAAAABbgAAAAABbgAAAAADbgAAAAABbgAAAAACbgAAAAABbgAAAAADbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABSAAAAAAAbgAAAAABbgAAAAACbgAAAAACbgAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAABcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAVAAAAAADVAAAAAACcQAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAACbgAAAAADbgAAAAADbgAAAAABbgAAAAAAcQAAAAAAPgAAAAAAYgAAAAACYgAAAAAAcQAAAAAAVAAAAAABVAAAAAADSAAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAACcQAAAAAAPgAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAVAAAAAADVAAAAAABSAAAAAAAbgAAAAACbgAAAAABbgAAAAABbgAAAAACbgAAAAABbgAAAAADbgAAAAADbgAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABcQAAAAAASAAAAAAAcQAAAAAAbgAAAAABbgAAAAADbgAAAAACbgAAAAADbgAAAAACbgAAAAACcQAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAADbgAAAAADbgAAAAABbgAAAAACbgAAAAADbgAAAAACbgAAAAACbgAAAAADcQAAAAAAWQAAAAAAWQAAAAAAVAAAAAADSAAAAAAAVAAAAAACKwAAAAACVAAAAAAAVAAAAAABbgAAAAACbgAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAADbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAACSAAAAAAAbgAAAAACbgAAAAABbgAAAAAAbgAAAAADbgAAAAADbgAAAAADSAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACKwAAAAADVAAAAAACSAAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAABbgAAAAACSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAACcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAABKwAAAAADVAAAAAACVAAAAAADSAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAABSAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAKwAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAGwAAAAABGwAAAAAAGwAAAAADcQAAAAAANgAAAAAANwAAAAAANwAAAAAA + tiles: WgAAAAACWgAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAABWgAAAAABegAAAAAAdwAAAAADegAAAAAAdwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAADWgAAAAAAWgAAAAADdwAAAAADdwAAAAABdwAAAAADdwAAAAADdwAAAAABdwAAAAACdwAAAAACdwAAAAABdwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACTgAAAAAAdwAAAAADdwAAAAADdwAAAAAAdwAAAAABdwAAAAAAdwAAAAADdwAAAAACdwAAAAADegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAWgAAAAAAWgAAAAAAegAAAAAAdwAAAAAAdwAAAAACdwAAAAADdwAAAAACdwAAAAABdwAAAAABdwAAAAADdwAAAAACegAAAAAAQQAAAAAAawAAAAAAawAAAAABegAAAAAAWgAAAAABWgAAAAACTgAAAAAAdwAAAAACdwAAAAADdwAAAAADdwAAAAABdwAAAAACdwAAAAACdwAAAAACdwAAAAADegAAAAAAQQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAWgAAAAAAWgAAAAADTgAAAAAAdwAAAAADdwAAAAABdwAAAAACdwAAAAABdwAAAAAAdwAAAAADdwAAAAABdwAAAAABegAAAAAAegAAAAAAYQAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAADegAAAAAATgAAAAAAegAAAAAAdwAAAAADdwAAAAAAdwAAAAACdwAAAAABdwAAAAADdwAAAAABegAAAAAAWgAAAAADYQAAAAAAYQAAAAAAYQAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAACdwAAAAABdwAAAAACdwAAAAAAdwAAAAABdwAAAAACdwAAAAAAdwAAAAAAegAAAAAAYQAAAAAAYQAAAAAAWgAAAAADTgAAAAAAWgAAAAABLgAAAAAAWgAAAAACWgAAAAAAdwAAAAAAdwAAAAADdwAAAAACdwAAAAAAdwAAAAADdwAAAAAAdwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAAATgAAAAAAdwAAAAAAdwAAAAACdwAAAAAAdwAAAAAAdwAAAAADdwAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAADWgAAAAAALgAAAAADWgAAAAACTgAAAAAAdwAAAAABdwAAAAAAdwAAAAACdwAAAAADdwAAAAAAdwAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAACegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAALgAAAAABWgAAAAAAWgAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAABTgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAACWgAAAAAALgAAAAABWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAHgAAAAACHgAAAAACHgAAAAABegAAAAAAOQAAAAAAHgAAAAAAHgAAAAAA version: 6 -6,-2: ind: -6,-2 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABRwAAAAAAVAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAEAAAAAADEAAAAAACPQAAAAADRQAAAAABRQAAAAAARQAAAAACRQAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAEAAAAAAAEAAAAAAAPQAAAAACPQAAAAAEPQAAAAADPQAAAAAERQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAEAAAAAABEAAAAAADPQAAAAABPQAAAAAEPQAAAAAEPQAAAAABPQAAAAAEcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAEAAAAAACEAAAAAACPQAAAAADPQAAAAADPQAAAAAFPQAAAAADPQAAAAAFcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAADTQAAAAABWgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAADWgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAYQAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAYQAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAYQAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAYQAAAAAAegAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAEwAAAAABEwAAAAAAQAAAAAABSwAAAAADSwAAAAAASwAAAAADSwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAEwAAAAAAEwAAAAACQAAAAAABQAAAAAAAQAAAAAAEQAAAAAACSwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAEwAAAAACEwAAAAAAQAAAAAAEQAAAAAABQAAAAAAAQAAAAAAEQAAAAAAFegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAEwAAAAADEwAAAAACQAAAAAAAQAAAAAACQAAAAAADQAAAAAAAQAAAAAAANQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAA version: 6 -6,-1: ind: -6,-1 - tiles: EAAAAAABEAAAAAAAPQAAAAAAPQAAAAABPQAAAAAAPQAAAAAAPQAAAAAEcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAEAAAAAACEAAAAAAAPQAAAAADPQAAAAAAPQAAAAAARQAAAAADRQAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANAAAAAAANAAAAAAAcQAAAAAASAAAAAAAEAAAAAAAEAAAAAADRQAAAAABRQAAAAABRQAAAAAARQAAAAABRQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANAAAAAAANAAAAAAAGwAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANAAAAAAANAAAAAAAcQAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAKwAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADwAAAAAADwAAAAAAcQAAAAAASAAAAAAAJgAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADwAAAAAADwAAAAAAGwAAAAACJgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADwAAAAAADwAAAAAAcQAAAAAASAAAAAAAJgAAAAAAKwAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAKwAAAAADKwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: EwAAAAABEwAAAAACQAAAAAACQAAAAAADQAAAAAAEQAAAAAAEQAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAEwAAAAAAEwAAAAAAQAAAAAAFQAAAAAAAQAAAAAACSwAAAAABSwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAANwAAAAAANwAAAAAAegAAAAAATgAAAAAAEwAAAAACEwAAAAADSwAAAAAASwAAAAABSwAAAAACSwAAAAACSwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAANwAAAAAANwAAAAAAHgAAAAADTgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAANwAAAAAANwAAAAAAegAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAALgAAAAABTgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEgAAAAAAEgAAAAAAegAAAAAATgAAAAAAKQAAAAACTgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEgAAAAAAEgAAAAAAHgAAAAABKQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEgAAAAAAEgAAAAAAegAAAAAATgAAAAAAKQAAAAABLgAAAAABaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAALgAAAAABLgAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAA version: 6 -6,0: ind: -6,0 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAADgAAAAAASAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAASAAAAAAAGwAAAAAAGwAAAAADGwAAAAADcQAAAAAAGwAAAAABGwAAAAABcQAAAAAAZAAAAAABZAAAAAAAZAAAAAABZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAASAAAAAAAGwAAAAADGwAAAAACGwAAAAADcQAAAAAAGwAAAAABGwAAAAADcQAAAAAAZAAAAAABZAAAAAACZAAAAAAAZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAABcQAAAAAAZAAAAAADZAAAAAADZAAAAAACZAAAAAACYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAADcQAAAAAAcQAAAAAASAAAAAAAZAAAAAACSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAASAAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAABZAAAAAACZAAAAAAAZAAAAAACZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAASAAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAABSAAAAAAAZAAAAAACZAAAAAAAZAAAAAADZAAAAAABYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAADcQAAAAAAZAAAAAABZAAAAAABZAAAAAACZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAZAAAAAADZAAAAAADZAAAAAADZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAEQAAAAAATgAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAATgAAAAAAHgAAAAAAHgAAAAAAHgAAAAACegAAAAAAHgAAAAAAHgAAAAADegAAAAAAbQAAAAAAbQAAAAABbQAAAAAAbQAAAAADegAAAAAAegAAAAAAegAAAAAAAAAAAAAATgAAAAAAHgAAAAABHgAAAAABHgAAAAABegAAAAAAHgAAAAABHgAAAAAAegAAAAAAbQAAAAACbQAAAAACbQAAAAACbQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAHgAAAAADegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAABegAAAAAAbQAAAAABbQAAAAADbQAAAAABbQAAAAACaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAABegAAAAAAegAAAAAATgAAAAAAbQAAAAADTgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAATgAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHgAAAAAAHgAAAAACbQAAAAACbQAAAAADbQAAAAABbQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAATgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAACTgAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAACaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAADHgAAAAADHgAAAAACegAAAAAAbQAAAAAAbQAAAAACbQAAAAADbQAAAAACegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAACbQAAAAACbQAAAAADegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAEQAAAAAAEQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEQAAAAAAEQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEQAAAAAAEQAAAAAA version: 6 -5,0: ind: -5,0 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAAAZAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAADVAAAAAACcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAAAZAAAAAACcQAAAAAASAAAAAAAVAAAAAACVAAAAAAAVAAAAAAASAAAAAAAVAAAAAABVAAAAAABVAAAAAADcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAVAAAAAADZAAAAAAAcQAAAAAASAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACSAAAAAAAVAAAAAAAVAAAAAABVAAAAAABcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAAAZAAAAAACcQAAAAAASAAAAAAAVAAAAAACVAAAAAADVAAAAAADSAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAAAZAAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAABVAAAAAAAVAAAAAADcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAAAZAAAAAABcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAZAAAAAADSAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAZAAAAAADZAAAAAAAZAAAAAAAZAAAAAADZAAAAAABSAAAAAAAZAAAAAADZAAAAAABZAAAAAACZAAAAAAAZAAAAAADZAAAAAACZAAAAAADZAAAAAAASAAAAAAAZAAAAAABZAAAAAAAZAAAAAACZAAAAAAAZAAAAAADZAAAAAACZAAAAAAAZAAAAAADZAAAAAADZAAAAAABZAAAAAADZAAAAAABZAAAAAACZAAAAAAAZAAAAAABZAAAAAACZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADSAAAAAAAcQAAAAAAcQAAAAAAZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAADcQAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAADGwAAAAAAGwAAAAAAGwAAAAACcQAAAAAAZAAAAAAAZAAAAAADZAAAAAACZAAAAAACSAAAAAAAZAAAAAADcQAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAADGwAAAAAAZAAAAAADZAAAAAADZAAAAAACZAAAAAADZAAAAAAAZAAAAAACZAAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAABcQAAAAAAZAAAAAABZAAAAAADZAAAAAACZAAAAAADcQAAAAAAZAAAAAABcQAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAACGwAAAAAAGwAAAAADGwAAAAADGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAAAGwAAAAAASAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAACPgAAAAAAGwAAAAAASAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAADegAAAAAAUAAAAAAAegAAAAAAegAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAegAAAAAAegAAAAAAegAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAegAAAAAATgAAAAAAWgAAAAADWgAAAAABWgAAAAAATgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAegAAAAAAEgAAAAAAegAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAegAAAAAATgAAAAAAWgAAAAABWgAAAAAAWgAAAAACTgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAegAAAAAAegAAAAAAegAAAAAAUAAAAAAAUAAAAAAAegAAAAAAbQAAAAACegAAAAAATgAAAAAAWgAAAAABWgAAAAACWgAAAAABTgAAAAAAWgAAAAABWgAAAAACWgAAAAABegAAAAAAEgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAABWgAAAAABWgAAAAABegAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAegAAAAAAUAAAAAAAbQAAAAABegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAbQAAAAADTgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAbQAAAAADbQAAAAAAbQAAAAACbQAAAAABbQAAAAABTgAAAAAAbQAAAAACbQAAAAADbQAAAAAAbQAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAADTgAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAACbQAAAAACbQAAAAABbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAABbQAAAAABbQAAAAAAegAAAAAATgAAAAAAEQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABTgAAAAAAegAAAAAAegAAAAAAbQAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAAAegAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAegAAAAAAQQAAAAAAHgAAAAADHgAAAAACHgAAAAAAegAAAAAAbQAAAAABbQAAAAAAbQAAAAABbQAAAAAATgAAAAAAbQAAAAAAegAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAHgAAAAACHgAAAAADbQAAAAACbQAAAAADbQAAAAABbQAAAAABbQAAAAAAbQAAAAABbQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAegAAAAAAQQAAAAAAHgAAAAAAHgAAAAACHgAAAAADegAAAAAAbQAAAAADbQAAAAABbQAAAAABbQAAAAAAegAAAAAAbQAAAAADEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAegAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAABTgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAADTgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAA version: 6 -5,1: ind: -5,1 - tiles: cQAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAACGwAAAAADPgAAAAAAPgAAAAAAPgAAAAAASAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAABbgAAAAACbgAAAAACbgAAAAABbgAAAAAAbgAAAAACbgAAAAACcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAASAAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACbgAAAAADcQAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAbgAAAAAAbgAAAAACbgAAAAABbgAAAAAAbgAAAAACbgAAAAACbgAAAAADcQAAAAAAGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAbgAAAAACbgAAAAABbgAAAAABbgAAAAADbgAAAAADbgAAAAACbgAAAAAAcQAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAACbgAAAAABbgAAAAAAbgAAAAABcQAAAAAAbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAAAbgAAAAABbgAAAAACbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAABbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAC + tiles: EQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAAATgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAdwAAAAADdwAAAAAAdwAAAAADdwAAAAACdwAAAAADdwAAAAADdwAAAAACegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAeQAAAAAATgAAAAAAdwAAAAACdwAAAAABdwAAAAACdwAAAAABdwAAAAABdwAAAAAAdwAAAAAAegAAAAAAHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAdwAAAAAAdwAAAAADdwAAAAABdwAAAAAAdwAAAAACdwAAAAAAdwAAAAABegAAAAAAHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAdwAAAAACdwAAAAAAdwAAAAADdwAAAAABdwAAAAADdwAAAAAAdwAAAAABegAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAdwAAAAADdwAAAAABdwAAAAADdwAAAAABdwAAAAADdwAAAAAAdwAAAAACegAAAAAAdwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAdwAAAAADdwAAAAADdwAAAAADdwAAAAAAdwAAAAABdwAAAAABdwAAAAADdwAAAAADdwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAdwAAAAADdwAAAAABdwAAAAAAdwAAAAAAdwAAAAACdwAAAAACdwAAAAADdwAAAAAAdwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAAB version: 6 -4,1: ind: -4,1 - tiles: SwAAAAAAcQAAAAAAHAAAAAACHAAAAAADHAAAAAADcQAAAAAAZAAAAAABZAAAAAACZAAAAAADcQAAAAAAZAAAAAADZAAAAAACZAAAAAAAZAAAAAABZAAAAAADZAAAAAACcQAAAAAAcQAAAAAAHAAAAAADHAAAAAABHAAAAAADcQAAAAAAZAAAAAABZAAAAAABZAAAAAADcQAAAAAAZAAAAAAAZAAAAAACcQAAAAAAZAAAAAAAZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAABZAAAAAABcQAAAAAAZAAAAAABZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAZAAAAAABZAAAAAABcQAAAAAAZAAAAAABZAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAABGwAAAAAAGwAAAAADGwAAAAACGwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAACcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAACGwAAAAACGwAAAAADGwAAAAADGwAAAAAAGwAAAAADGwAAAAABbgAAAAACGwAAAAADGwAAAAACGwAAAAADGwAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAAASAAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAABcQAAAAAASAAAAAAASAAAAAAASAAAAAAAbgAAAAAAcQAAAAAAcQAAAAAALAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAbgAAAAABbgAAAAADbgAAAAACbgAAAAABcQAAAAAALAAAAAAALAAAAAAALAAAAAAAcQAAAAAASAAAAAAARwAAAAADRwAAAAADGwAAAAACGwAAAAABGwAAAAADbgAAAAADbgAAAAADbgAAAAABbgAAAAACbgAAAAACcQAAAAAALAAAAAAALAAAAAAALAAAAAAAcQAAAAAASAAAAAAARwAAAAAARwAAAAADGwAAAAADGwAAAAADGwAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAABcQAAAAAALAAAAAAALAAAAAAALAAAAAAAcQAAAAAASAAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAABRwAAAAAC + tiles: UQAAAAAAegAAAAAAHwAAAAAAHwAAAAACHwAAAAACegAAAAAAbQAAAAACbQAAAAADbQAAAAACegAAAAAAbQAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAAAbQAAAAAAegAAAAAAegAAAAAAHwAAAAACHwAAAAAAHwAAAAADegAAAAAAbQAAAAADbQAAAAACbQAAAAABegAAAAAAbQAAAAACbQAAAAADegAAAAAAbQAAAAAAbQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAACbQAAAAACegAAAAAAbQAAAAAAbQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAbQAAAAADbQAAAAADegAAAAAAbQAAAAADbQAAAAABegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAACHgAAAAAAHgAAAAAAHgAAAAABHgAAAAABegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAABHgAAAAABHgAAAAAAHgAAAAABHgAAAAACegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAACegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAABHgAAAAACHgAAAAABHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAABdwAAAAADHgAAAAADHgAAAAADHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAABHgAAAAAATgAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAADegAAAAAAegAAAAAALwAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAdwAAAAAAdwAAAAABdwAAAAADdwAAAAADegAAAAAALwAAAAAALwAAAAAALwAAAAAAegAAAAAATgAAAAAATQAAAAACTQAAAAADHgAAAAAAHgAAAAAAHgAAAAABdwAAAAACdwAAAAADdwAAAAADdwAAAAADdwAAAAAAegAAAAAALwAAAAAALwAAAAAALwAAAAAAegAAAAAATgAAAAAATQAAAAACTQAAAAACHgAAAAADHgAAAAAAHgAAAAABegAAAAAAdwAAAAADdwAAAAADdwAAAAACdwAAAAABegAAAAAALwAAAAAALwAAAAAALwAAAAAAegAAAAAATgAAAAAATQAAAAACTQAAAAAATQAAAAAATQAAAAAATQAAAAAD version: 6 -3,1: ind: -3,1 - tiles: ZAAAAAADZAAAAAADSAAAAAAAZAAAAAADZAAAAAADZAAAAAAAZAAAAAAAZAAAAAACcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAABZAAAAAACZAAAAAABcQAAAAAAZAAAAAADZAAAAAABZAAAAAAAZAAAAAAAZAAAAAADcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACSAAAAAAASAAAAAAAZAAAAAACZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAABZAAAAAAAZAAAAAABcQAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAABGwAAAAACcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAABGwAAAAADcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADKwAAAAACKwAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAABGwAAAAADcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAAAKwAAAAADKwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAGwAAAAABGwAAAAAAGwAAAAACcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAVAAAAAAAGwAAAAABGwAAAAADGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAADVAAAAAADGwAAAAAAGwAAAAABGwAAAAAAGwAAAAADRwAAAAACRwAAAAACSAAAAAAAGwAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAACGwAAAAACGwAAAAADGwAAAAAAGwAAAAACRwAAAAACRwAAAAABSAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAACRwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAAARwAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAGwAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAA + tiles: bQAAAAACbQAAAAABTgAAAAAAbQAAAAADbQAAAAACbQAAAAACbQAAAAACbQAAAAABegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAABbQAAAAABbQAAAAABegAAAAAAbQAAAAAAbQAAAAABbQAAAAADbQAAAAADbQAAAAACegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAACTgAAAAAATgAAAAAAbQAAAAAAbQAAAAABegAAAAAAegAAAAAAegAAAAAAbQAAAAABegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAACbQAAAAACbQAAAAABegAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAAAHgAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAABegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAABegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAABWgAAAAABLgAAAAABLgAAAAAAegAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAADHgAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAAAWgAAAAABLgAAAAADLgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAADegAAAAAAWgAAAAADaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAABHgAAAAADHgAAAAACHgAAAAABegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAWgAAAAAAHgAAAAACHgAAAAAAHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAACWgAAAAADHgAAAAACHgAAAAACHgAAAAABHgAAAAACTQAAAAAATQAAAAAATgAAAAAAHgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAACHgAAAAABHgAAAAACHgAAAAAAHgAAAAAATQAAAAABTQAAAAABTgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAADTQAAAAADTQAAAAACTQAAAAAATQAAAAABTQAAAAADTQAAAAABTgAAAAAAegAAAAAATgAAAAAATgAAAAAAHgAAAAACegAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAC version: 6 -4,2: ind: -4,2 - tiles: cQAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAAAcQAAAAAALAAAAAAALAAAAAAALAAAAAAAcQAAAAAASAAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAACcQAAAAAAbgAAAAABbgAAAAADbgAAAAABbgAAAAABcQAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAASAAAAAAARwAAAAACRwAAAAACGwAAAAAAGwAAAAACGwAAAAAAcQAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAACSwAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAASAAAAAAARwAAAAAARwAAAAABGwAAAAACGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAGwAAAAABGwAAAAACSAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAGwAAAAAAGwAAAAADSAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAGwAAAAACGwAAAAABSAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAGwAAAAADGwAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASAAAAAAAGwAAAAADGwAAAAACSAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAGwAAAAABGwAAAAACSAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAGwAAAAACGwAAAAAAGwAAAAABSAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAGwAAAAACGwAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABGwAAAAAAGwAAAAADGwAAAAABSAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAACSAAAAAAASAAAAAAAcQAAAAAASAAAAAAA + tiles: egAAAAAAdwAAAAAAdwAAAAAAdwAAAAACdwAAAAACegAAAAAALwAAAAAALwAAAAAALwAAAAAAegAAAAAATgAAAAAATQAAAAADTQAAAAACTQAAAAAATQAAAAAATQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATQAAAAADTQAAAAADTQAAAAACTQAAAAACTQAAAAACegAAAAAAdwAAAAABdwAAAAADdwAAAAACdwAAAAABegAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAegAAAAAATgAAAAAATQAAAAADTQAAAAACHgAAAAACHgAAAAACHgAAAAABegAAAAAAdwAAAAABdwAAAAAAdwAAAAAAdwAAAAADUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAegAAAAAATgAAAAAATQAAAAACTQAAAAACHgAAAAADHgAAAAADHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAHgAAAAACegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAHgAAAAABHgAAAAABTgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAHgAAAAABHgAAAAABTgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAHgAAAAAAHgAAAAADTgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAHgAAAAABHgAAAAABTgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAATgAAAAAAHgAAAAABHgAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAHgAAAAAAHgAAAAADTgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAHgAAAAACHgAAAAABHgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAHgAAAAACHgAAAAADTgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADHgAAAAABHgAAAAADHgAAAAABTgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAABTgAAAAAATgAAAAAAegAAAAAATgAAAAAA version: 6 -3,2: ind: -3,2 - tiles: RwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAACSAAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAACSAAAAAAASwAAAAAASwAAAAAASwAAAAAAVAAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAABRwAAAAABRwAAAAAASAAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAABSAAAAAAASwAAAAAASwAAAAAASwAAAAAAVAAAAAABGwAAAAABGwAAAAAAGwAAAAADGwAAAAACRwAAAAAARwAAAAADSAAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAAASwAAAAAASwAAAAAASwAAAAAAVAAAAAADGwAAAAAAGwAAAAACGwAAAAABGwAAAAAARwAAAAACRwAAAAADSAAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAAASAAAAAAASwAAAAAASwAAAAAASwAAAAAAVAAAAAACSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAAVAAAAAABSAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAVAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADSAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAACKwAAAAACVAAAAAAAKwAAAAAAVAAAAAADKwAAAAAAVAAAAAAAKwAAAAADVAAAAAACVAAAAAACSAAAAAAAVAAAAAABVAAAAAADVAAAAAACSAAAAAAASAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAADSAAAAAAAcQAAAAAAVAAAAAACVAAAAAADKwAAAAAAVAAAAAAAKwAAAAABVAAAAAAAKwAAAAACVAAAAAAAKwAAAAADVAAAAAABcQAAAAAAVAAAAAAB + tiles: TQAAAAADTQAAAAAATQAAAAACTQAAAAAATQAAAAABTQAAAAADTgAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAATgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAWgAAAAADTQAAAAABTQAAAAACTQAAAAAATQAAAAACTQAAAAAATQAAAAABTgAAAAAAegAAAAAAHgAAAAACHgAAAAACHgAAAAACTgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAWgAAAAADHgAAAAACHgAAAAACHgAAAAACHgAAAAABTQAAAAABTQAAAAACTgAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAABHgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAWgAAAAADHgAAAAADHgAAAAABHgAAAAADHgAAAAACTQAAAAADTQAAAAADTgAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAACTgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAWgAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAAAegAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAWgAAAAABTgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAWgAAAAACAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAWgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAABLgAAAAABWgAAAAABLgAAAAABWgAAAAACLgAAAAAAWgAAAAAALgAAAAAAWgAAAAACWgAAAAACTgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABTgAAAAAATgAAAAAAWgAAAAACWgAAAAADWgAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAABTgAAAAAAegAAAAAAWgAAAAACWgAAAAAALgAAAAABWgAAAAACLgAAAAAAWgAAAAACLgAAAAABWgAAAAADLgAAAAABWgAAAAABegAAAAAAWgAAAAAA version: 6 -4,3: ind: -4,3 - tiles: AAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAVAAAAAABKwAAAAAAVAAAAAABKwAAAAACVAAAAAABAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAVAAAAAAAKwAAAAABVAAAAAAAKwAAAAACVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAADKwAAAAAAVAAAAAADKwAAAAADVAAAAAADAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAADAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAWgAAAAAALgAAAAABWgAAAAAALgAAAAABWgAAAAADAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAWgAAAAABLgAAAAAAWgAAAAADLgAAAAADWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAACWgAAAAABWgAAAAABWgAAAAABWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAADLgAAAAADWgAAAAAALgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAABWgAAAAACWgAAAAABWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,4: ind: -4,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAWgAAAAABWgAAAAADWgAAAAABWgAAAAAAWgAAAAAAWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAACWgAAAAAAWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAADWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAABWgAAAAAAWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAA version: 6 -4,5: ind: -4,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,5: ind: -3,5 - tiles: VAAAAAACVAAAAAABVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAANwAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAYAAAAAAA + tiles: WgAAAAACWgAAAAACWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAQQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAQQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAQQAAAAAAaQAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAQQAAAAAAegAAAAAAQQAAAAAAegAAAAAAaQAAAAAAaQAAAAAA version: 6 -3,4: ind: -3,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAACSAAAAAAAVAAAAAACVAAAAAAAVAAAAAABcQAAAAAAGwAAAAACGwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAADcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABcQAAAAAAGwAAAAACGwAAAAABSAAAAAAASAAAAAAASAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAADVAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAADcQAAAAAASAAAAAAASAAAAAAAGwAAAAADGwAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAADcQAAAAAASAAAAAAAGwAAAAABGwAAAAAAGwAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAADcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAABcQAAAAAASAAAAAAAGwAAAAABGwAAAAAAGwAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAABcQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAADcQAAAAAASAAAAAAAGwAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAADSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAADVAAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAADSAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAcQAAAAAANwAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAACcQAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAcQAAAAAANwAAAAAAVAAAAAADVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAcQAAAAAANwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAIwAAAAACIwAAAAABIwAAAAADIwAAAAABIwAAAAACTgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADegAAAAAAHgAAAAAAHgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAIwAAAAACIwAAAAAAIwAAAAACIwAAAAABIwAAAAABegAAAAAAWgAAAAABWgAAAAAAWgAAAAAAegAAAAAAHgAAAAABHgAAAAACTgAAAAAATgAAAAAATgAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAACWgAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAABegAAAAAATgAAAAAATgAAAAAAHgAAAAADHgAAAAADWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAABegAAAAAATgAAAAAAHgAAAAABHgAAAAAAHgAAAAADWgAAAAAAWgAAAAADWgAAAAACWgAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAADWgAAAAADWgAAAAACegAAAAAATgAAAAAAHgAAAAABHgAAAAADHgAAAAADWgAAAAACWgAAAAAAWgAAAAAAWgAAAAACegAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAACegAAAAAATgAAAAAAHgAAAAACWgAAAAACWgAAAAAAWgAAAAACWgAAAAABWgAAAAACWgAAAAADegAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAACWgAAAAAAWgAAAAABegAAAAAATgAAAAAATgAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAACWgAAAAADWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAACTgAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAACWgAAAAACWgAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAABWgAAAAABWgAAAAABWgAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAADWgAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAABWgAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAABWgAAAAAAegAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAOgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAABWgAAAAACWgAAAAADegAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAOgAAAAAAWgAAAAADWgAAAAACWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAOgAAAAAA version: 6 -3,3: ind: -3,3 - tiles: VAAAAAADVAAAAAADSAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAKwAAAAADVAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAACSAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAADSAAAAAAAcQAAAAAAVAAAAAACKwAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAADVAAAAAAASAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAADSAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAACKwAAAAACVAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAACSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACSAAAAAAASAAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAABVwAAAAADSAAAAAAAVAAAAAACVAAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAADVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAADVwAAAAADSAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAABcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACcQAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAADIAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABSAAAAAAASAAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAAAIAAAAAACSAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAACIAAAAAAASAAAAAAAVAAAAAADVAAAAAACVAAAAAADSAAAAAAASAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAABcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAACIAAAAAADSAAAAAAAVAAAAAABVAAAAAACVAAAAAADcQAAAAAAGwAAAAAAGwAAAAAC + tiles: WgAAAAACWgAAAAACTgAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAABegAAAAAAWgAAAAACLgAAAAACWgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAABegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAACTgAAAAAAegAAAAAAWgAAAAACLgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAABWgAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAADTgAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAABTgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAADTgAAAAAATgAAAAAAegAAAAAAWgAAAAAALgAAAAAAWgAAAAABTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAABTgAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAADTgAAAAAATgAAAAAAXwAAAAAAXwAAAAAAXwAAAAACXwAAAAAAXwAAAAAATgAAAAAAWgAAAAABWgAAAAABWgAAAAABegAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAXwAAAAAAXwAAAAADXwAAAAADXwAAAAADXwAAAAAAXwAAAAACXwAAAAACWgAAAAAAWgAAAAADWgAAAAACegAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAXwAAAAADXwAAAAACXwAAAAADXwAAAAADXwAAAAACTgAAAAAAWgAAAAABWgAAAAACWgAAAAADegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXwAAAAADXwAAAAABXwAAAAABXwAAAAACXwAAAAADegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAADIwAAAAAAIwAAAAADIwAAAAACIwAAAAACegAAAAAAWgAAAAABWgAAAAADWgAAAAABTgAAAAAATgAAAAAAWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAIwAAAAAAIwAAAAAAIwAAAAADIwAAAAADIwAAAAABTgAAAAAAWgAAAAADWgAAAAACWgAAAAADWgAAAAABWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAIwAAAAACIwAAAAABIwAAAAAAIwAAAAABIwAAAAADTgAAAAAAWgAAAAADWgAAAAADWgAAAAADTgAAAAAATgAAAAAAWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAABIwAAAAABIwAAAAAAIwAAAAABIwAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAAAegAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAABIwAAAAAAIwAAAAADIwAAAAACIwAAAAACegAAAAAAWgAAAAABWgAAAAACWgAAAAABegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAIwAAAAABIwAAAAABIwAAAAACIwAAAAADIwAAAAACTgAAAAAAWgAAAAABWgAAAAADWgAAAAADegAAAAAAHgAAAAAAHgAAAAAB version: 6 -2,2: ind: -2,2 - tiles: VAAAAAAAVAAAAAAAcQAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAADbgAAAAADcQAAAAAAJgAAAAAAJgAAAAADJgAAAAAAJgAAAAABVAAAAAAAVAAAAAADcQAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAADbgAAAAADbgAAAAADbgAAAAACbgAAAAABcQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAACVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAABcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAACVAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAACcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAABVAAAAAADSAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAADcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAADVAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAbgAAAAABbgAAAAABbgAAAAABbgAAAAADcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAOwAAAAAAOwAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAABcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAADcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAABVAAAAAAAVAAAAAACSAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAAAVAAAAAABVAAAAAABGwAAAAACGwAAAAACGwAAAAABPgAAAAAAGwAAAAAAPgAAAAAAGwAAAAACPgAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAABVAAAAAACVAAAAAABSAAAAAAAGwAAAAADGwAAAAABPgAAAAAAGwAAAAABPgAAAAAAGwAAAAADPgAAAAAAcQAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAACVAAAAAAAVAAAAAAASAAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAPgAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAADVAAAAAACVAAAAAACSAAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAABPgAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAA + tiles: WgAAAAACWgAAAAABegAAAAAAdwAAAAABdwAAAAAAdwAAAAACdwAAAAACdwAAAAADdwAAAAABdwAAAAADdwAAAAADegAAAAAAKQAAAAABKQAAAAACKQAAAAACKQAAAAACWgAAAAAAWgAAAAAAegAAAAAAdwAAAAACdwAAAAAAdwAAAAABdwAAAAAAdwAAAAABdwAAAAAAdwAAAAACdwAAAAABegAAAAAAKQAAAAAAKQAAAAADKQAAAAABKQAAAAABWgAAAAACWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAADdwAAAAAAdwAAAAABdwAAAAACegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWgAAAAACWgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAdwAAAAADdwAAAAABdwAAAAADdwAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWgAAAAABWgAAAAAATgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAdwAAAAADdwAAAAABdwAAAAAAdwAAAAABegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWgAAAAACWgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAdwAAAAADdwAAAAADdwAAAAABdwAAAAADegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWgAAAAADWgAAAAABegAAAAAAPgAAAAAAPgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACegAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAACWgAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAABWgAAAAACWgAAAAADegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAACWgAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAACWgAAAAADWgAAAAADWgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAACWgAAAAADWgAAAAABWgAAAAACWgAAAAADWgAAAAABWgAAAAACWgAAAAADegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWgAAAAAAWgAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWgAAAAACWgAAAAACWgAAAAABTgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWgAAAAACWgAAAAAAWgAAAAABHgAAAAACHgAAAAAAHgAAAAADQQAAAAAAHgAAAAAAQQAAAAAAHgAAAAADQQAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWgAAAAAAWgAAAAABWgAAAAADTgAAAAAAHgAAAAABHgAAAAAAQQAAAAAAHgAAAAAAQQAAAAAAHgAAAAADQQAAAAAAegAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWgAAAAABWgAAAAACWgAAAAABTgAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAAAQQAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWgAAAAADWgAAAAADWgAAAAACTgAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAABHgAAAAAAQQAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAA version: 6 -2,3: ind: -2,3 - tiles: VAAAAAACVAAAAAAAVAAAAAAAcQAAAAAASAAAAAAASAAAAAAAGwAAAAACSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASAAAAAAAVAAAAAADVAAAAAAASAAAAAAAcQAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASAAAAAAAVAAAAAADVAAAAAAASAAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAAAVAAAAAABSAAAAAAAcQAAAAAAPgAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAACVAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAACSAAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAABSAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAACSAAAAAAASAAAAAAAVAAAAAABVAAAAAADVAAAAAACSAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAABSAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAVAAAAAAASAAAAAAAcQAAAAAASAAAAAAAVAAAAAADVAAAAAACSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAVAAAAAADSAAAAAAASAAAAAAASAAAAAAAVAAAAAADVAAAAAACSAAAAAAAcQAAAAAASAAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAACcQAAAAAASAAAAAAAVAAAAAAAVAAAAAADSAAAAAAASAAAAAAASAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAACSAAAAAAA + tiles: WgAAAAABWgAAAAACWgAAAAADegAAAAAATgAAAAAATgAAAAAAHgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAWgAAAAADWgAAAAACWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAADWgAAAAACWgAAAAADWgAAAAACWgAAAAADWgAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAACWgAAAAADWgAAAAABWgAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAABWgAAAAADWgAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAADWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAATgAAAAAAWgAAAAAAWgAAAAACTgAAAAAAegAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAATgAAAAAAWgAAAAACWgAAAAADTgAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAADWgAAAAADTgAAAAAAegAAAAAAQQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAADWgAAAAACTgAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACTgAAAAAATgAAAAAATgAAAAAAWgAAAAACWgAAAAAATgAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAADTgAAAAAATgAAAAAAWgAAAAABWgAAAAABWgAAAAADTgAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAAWgAAAAADTgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAWgAAAAABTgAAAAAAegAAAAAATgAAAAAAWgAAAAACWgAAAAACTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAWgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAADWgAAAAABTgAAAAAAegAAAAAATgAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAACegAAAAAATgAAAAAAWgAAAAACWgAAAAABTgAAAAAATgAAAAAATgAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAACTgAAAAAA version: 6 -1,3: ind: -1,3 - tiles: SAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAABcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAANAAAAAAASAAAAAAAcQAAAAAAAQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAcQAAAAAAAQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANAAAAAAADwAAAAAANAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAcQAAAAAAcQAAAAAADwAAAAAASAAAAAAASAAAAAAASAAAAAAANAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAcQAAAAAAcQAAAAAANAAAAAAASAAAAAAASAAAAAAASAAAAAAADwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADwAAAAAASAAAAAAASAAAAAAASAAAAAAANAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: TgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAADWgAAAAABWgAAAAACWgAAAAADWgAAAAABWgAAAAADWgAAAAADWgAAAAADWgAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAABWgAAAAACWgAAAAABWgAAAAADWgAAAAADWgAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAADWgAAAAABWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAABegAAAAAATgAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAANwAAAAAATgAAAAAAegAAAAAAAQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAegAAAAAAAQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAegAAAAAAegAAAAAAegAAAAAANwAAAAAAEgAAAAAANwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAegAAAAAAegAAAAAAEgAAAAAATgAAAAAATgAAAAAATgAAAAAANwAAAAAAegAAAAAAegAAAAAAegAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAegAAAAAAegAAAAAANwAAAAAATgAAAAAATgAAAAAATgAAAAAAEgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEgAAAAAATgAAAAAATgAAAAAATgAAAAAANwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -2,5: ind: -2,5 - tiles: NwAAAAAANwAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABSAAAAAAASAAAAAAAVAAAAAAAVAAAAAAASAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAABAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAADSAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAACVAAAAAAASAAAAAAASAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADSAAAAAAASAAAAAAAVAAAAAAAVAAAAAAASAAAAAAASAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAABVAAAAAACSAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAADSAAAAAAASAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACSAAAAAAASAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAADVAAAAAACSAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAAAGwAAAAADSAAAAAAASAAAAAAAVAAAAAADVAAAAAACSAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAASAAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAABGwAAAAAAGwAAAAACVAAAAAAAVAAAAAAAVAAAAAADSAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADcQAAAAAASAAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAAAGwAAAAACcQAAAAAASAAAAAAAVAAAAAAAVAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAACcQAAAAAASAAAAAAAVAAAAAADVAAAAAABSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAAAGwAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAADbgAAAAAAEQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAWQAAAAAAVAAAAAAB + tiles: egAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAAATgAAAAAATgAAAAAAWgAAAAACWgAAAAADTgAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAADAAAAAAAAAAAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAABTgAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAABWgAAAAACAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAAAWgAAAAABTgAAAAAATgAAAAAAWgAAAAADWgAAAAABWgAAAAACWgAAAAACAAAAAAAAAAAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAAATgAAAAAATgAAAAAAWgAAAAAAWgAAAAAATgAAAAAATgAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAAAWgAAAAADAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAADWgAAAAABTgAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAABTgAAAAAATgAAAAAAWgAAAAABWgAAAAADWgAAAAABWgAAAAADWgAAAAACWgAAAAACWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAABWgAAAAADWgAAAAAAWgAAAAABTgAAAAAATgAAAAAAWgAAAAACWgAAAAADWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAADWgAAAAADTgAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAADHgAAAAABTgAAAAAATgAAAAAAWgAAAAABWgAAAAABTgAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAADegAAAAAATgAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAACHgAAAAACHgAAAAAAWgAAAAACWgAAAAAAWgAAAAACTgAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAADegAAAAAATgAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAAAHgAAAAADegAAAAAATgAAAAAAWgAAAAACWgAAAAABTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAADegAAAAAATgAAAAAAWgAAAAAAWgAAAAACTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAACdwAAAAADFAAAAAAEegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAYQAAAAAAWgAAAAAC version: 6 -2,4: ind: -2,4 - tiles: GwAAAAADGwAAAAADGwAAAAACGwAAAAACcQAAAAAASAAAAAAAVAAAAAADVAAAAAACSAAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAAASAAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAAAVAAAAAACSAAAAAAAcQAAAAAASAAAAAAAVAAAAAABVAAAAAACSAAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAABVAAAAAABSAAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAADSAAAAAAASAAAAAAASAAAAAAAGwAAAAACSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAADSAAAAAAAGwAAAAADGwAAAAACGwAAAAACSAAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAADGwAAAAABGwAAAAADGwAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAACSAAAAAAAGwAAAAAAGwAAAAACGwAAAAAASAAAAAAAcQAAAAAASAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAACSAAAAAAASAAAAAAASAAAAAAAVAAAAAACSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAABGwAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAAAVAAAAAADSAAAAAAAcQAAAAAASAAAAAAAGwAAAAABSAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAACSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAADSAAAAAAASAAAAAAASAAAAAAAGwAAAAADGwAAAAADGwAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAACSAAAAAAASAAAAAAASAAAAAAAGwAAAAADGwAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAABSAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAANwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAABVAAAAAADSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANwAAAAAANwAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADNwAAAAAANwAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAADSAAAAAAASAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAADNwAAAAAANwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAABVAAAAAADSAAAAAAASAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAAB + tiles: HgAAAAABHgAAAAADHgAAAAAAHgAAAAABegAAAAAATgAAAAAAWgAAAAABWgAAAAADTgAAAAAATgAAAAAATgAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAADTgAAAAAAHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAACWgAAAAAATgAAAAAAegAAAAAATgAAAAAAWgAAAAABWgAAAAABTgAAAAAAegAAAAAAegAAAAAAHgAAAAACegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAAWgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAACWgAAAAADTgAAAAAATgAAAAAATgAAAAAAHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAADWgAAAAADWgAAAAACWgAAAAACTgAAAAAAHgAAAAADHgAAAAAAHgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAACWgAAAAABWgAAAAABWgAAAAABWgAAAAACWgAAAAACHgAAAAAAHgAAAAADHgAAAAACTgAAAAAATgAAAAAATgAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAABWgAAAAABWgAAAAAATgAAAAAAHgAAAAAAHgAAAAACHgAAAAAATgAAAAAAegAAAAAATgAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAACHgAAAAACWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAATgAAAAAAegAAAAAATgAAAAAAHgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAADTgAAAAAATgAAAAAATgAAAAAAHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAADTgAAAAAATgAAAAAATgAAAAAAHgAAAAAAHgAAAAABHgAAAAAAWgAAAAADWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAADWgAAAAACWgAAAAADWgAAAAADWgAAAAABTgAAAAAATgAAAAAATgAAAAAAHgAAAAABHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAADWgAAAAADTgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAOgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAACWgAAAAACTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAOgAAAAAAOgAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAADTgAAAAAATgAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAADWgAAAAACOgAAAAAAOgAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAABTgAAAAAATgAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAADOgAAAAAAOgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAADWgAAAAACTgAAAAAATgAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAAA version: 6 -1,4: ind: -1,4 - tiles: SAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAPgAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAACIAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAABPgAAAAAAPgAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAIAAAAAACSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAIAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAACIAAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADSAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAIAAAAAABIAAAAAADSAAAAAAAIAAAAAAASAAAAAAAIAAAAAABIAAAAAACSAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAIAAAAAAAIAAAAAADSAAAAAAAIAAAAAACSAAAAAAAIAAAAAADIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAIAAAAAABIAAAAAACSAAAAAAAIAAAAAACSAAAAAAAIAAAAAACIAAAAAACcQAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAAAGwAAAAACGwAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAABGwAAAAABcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAABGwAAAAAAGwAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: TgAAAAAAegAAAAAAegAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAQQAAAAAAIwAAAAACIwAAAAACIwAAAAABIwAAAAABIwAAAAADQQAAAAAAQQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAIwAAAAACIwAAAAADIwAAAAABIwAAAAAAIwAAAAACIwAAAAABIwAAAAABIwAAAAAAIwAAAAADIwAAAAAAIwAAAAAAQQAAAAAAQQAAAAAAIwAAAAAAIwAAAAADIwAAAAAAIwAAAAABIwAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAIwAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAABIwAAAAAAIwAAAAACIwAAAAACIwAAAAACIwAAAAACIwAAAAAAIwAAAAAAIwAAAAADTgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAIwAAAAACIwAAAAADTgAAAAAAIwAAAAAATgAAAAAAIwAAAAAAIwAAAAABTgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAIwAAAAACIwAAAAAATgAAAAAAIwAAAAABTgAAAAAAIwAAAAAAIwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAIwAAAAACIwAAAAACTgAAAAAAIwAAAAAATgAAAAAAIwAAAAAAIwAAAAADegAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAABegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 1,3: ind: 1,3 - tiles: VAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAADSAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAABSAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: WgAAAAACWgAAAAABWgAAAAAAWgAAAAADWgAAAAACWgAAAAABWgAAAAACWgAAAAABTgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAEwAAAAADEwAAAAAAEwAAAAABEwAAAAACWgAAAAACWgAAAAABWgAAAAACWgAAAAACWgAAAAACWgAAAAADWgAAAAABWgAAAAADTgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAEwAAAAABEwAAAAACEwAAAAACEwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAACWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -4,6: ind: -4,6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAF + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAA version: 6 0,3: ind: 0,3 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAACcQAAAAAAcQAAAAAASAAAAAAAVAAAAAADSAAAAAAAVAAAAAACSAAAAAAASAAAAAAAcQAAAAAAVAAAAAADVAAAAAADcQAAAAAASAAAAAAAVAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABSAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAJwAAAAAAJwAAAAAAAwAAAAAAAQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAACNAAAAAAAcQAAAAAAJwAAAAAAJwAAAAAAAwAAAAAAAQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAABNAAAAAAAcQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABNAAAAAAAcQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAADWgAAAAADWgAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAADWgAAAAAAWgAAAAACWgAAAAADWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAACWgAAAAADWgAAAAACWgAAAAABegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAADWgAAAAAAWgAAAAACWgAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAAATgAAAAAAWgAAAAADTgAAAAAATgAAAAAAegAAAAAAWgAAAAABWgAAAAADegAAAAAATgAAAAAAWgAAAAACTgAAAAAAegAAAAAAegAAAAAAegAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAegAAAAAAWgAAAAADWgAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAABegAAAAAAegAAAAAAegAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAegAAAAAAWgAAAAAAWgAAAAACTgAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAADWgAAAAACWgAAAAAAegAAAAAAegAAAAAAKgAAAAAAKgAAAAAAAwAAAAAAAQAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAABWgAAAAACWgAAAAACNwAAAAAAegAAAAAAKgAAAAAAKgAAAAAAAwAAAAAAAQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAAAWgAAAAACWgAAAAABNwAAAAAAegAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAAANwAAAAAAegAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAABWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAABWgAAAAACWgAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAQQAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAACWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAABWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 1,2: ind: 1,2 - tiles: DAAAAAACDAAAAAACDAAAAAADDAAAAAADDAAAAAADcQAAAAAAKwAAAAAAGwAAAAABGwAAAAACcQAAAAAAYAAAAAAAYQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAADAAAAAADDAAAAAABDAAAAAABDAAAAAACDAAAAAADcQAAAAAAKwAAAAACGwAAAAADcQAAAAAAcQAAAAAAYAAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADcQAAAAAAKwAAAAABGwAAAAACGwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAACKwAAAAAAKwAAAAADKwAAAAADKwAAAAACKwAAAAAAKwAAAAABGwAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAYQAAAAAAYQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAADGwAAAAABGwAAAAAAGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAPgAAAAAAWQAAAAAAcQAAAAAAVAAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAADcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAPgAAAAAAVAAAAAADcQAAAAAAPgAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAAAGwAAAAACEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAADcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAVAAAAAADVAAAAAABVAAAAAADSAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASAAAAAAAVAAAAAADVAAAAAABVAAAAAACSAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAACOwAAAAAAOwAAAAAAOwAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAB + tiles: DgAAAAAADgAAAAABDgAAAAABDgAAAAACDgAAAAACegAAAAAALgAAAAADHgAAAAADHgAAAAACegAAAAAAaQAAAAAAagAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAADgAAAAADDgAAAAACDgAAAAADDgAAAAABDgAAAAAAegAAAAAALgAAAAABHgAAAAAAegAAAAAAegAAAAAAaQAAAAAAagAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAADHgAAAAAAegAAAAAALgAAAAADHgAAAAABHgAAAAADegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAADLgAAAAACLgAAAAADLgAAAAABHgAAAAABHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAADHgAAAAACHgAAAAABHgAAAAACegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAagAAAAAAagAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAAAHgAAAAACHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAHgAAAAABegAAAAAAegAAAAAAegAAAAAAHgAAAAABegAAAAAAHgAAAAABegAAAAAAegAAAAAAQQAAAAAAYQAAAAAAegAAAAAAWgAAAAADHgAAAAABHgAAAAADHgAAAAABHgAAAAAAegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAPgAAAAAAPgAAAAAAegAAAAAAYQAAAAAAegAAAAAAWgAAAAABYQAAAAAAdwAAAAADdwAAAAADdwAAAAAAdwAAAAABegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAPgAAAAAAPgAAAAAAegAAAAAAQQAAAAAAWgAAAAAAegAAAAAAQQAAAAAAdwAAAAABdwAAAAABdwAAAAACdwAAAAADegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAPgAAAAAAPgAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABegAAAAAAdwAAAAADdwAAAAAAdwAAAAACdwAAAAADHgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAACegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAWgAAAAACWgAAAAACWgAAAAADTgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAEwAAAAAAEwAAAAACEwAAAAAAEwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAWgAAAAAAWgAAAAACWgAAAAAATgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAEwAAAAABEwAAAAACEwAAAAADEwAAAAABTgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAEwAAAAAAEwAAAAACEwAAAAABEwAAAAAB version: 6 -2,0: ind: -2,0 - tiles: VAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAABKwAAAAACVAAAAAAAKwAAAAACVAAAAAADKwAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAKwAAAAABVAAAAAADKwAAAAACVAAAAAADKwAAAAACVAAAAAAAKwAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAACcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAGwAAAAABGwAAAAABcQAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAAASAAAAAAAVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAGwAAAAADGwAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAABSAAAAAAAVAAAAAACVAAAAAADVAAAAAADcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAADcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAADSAAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAADVAAAAAADVAAAAAABVAAAAAABcQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAVAAAAAABGwAAAAACGwAAAAABGwAAAAADGwAAAAADGwAAAAADGwAAAAAAGwAAAAABSAAAAAAAVAAAAAABVAAAAAABVAAAAAADcQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAADGwAAAAADSAAAAAAAVAAAAAAAVAAAAAACVAAAAAAASAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAABSAAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAVAAAAAACGwAAAAABGwAAAAABcQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAABcQAAAAAAVAAAAAADVAAAAAABVAAAAAACSAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcQAAAAAAGwAAAAACGwAAAAABcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAAASAAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcQAAAAAAGwAAAAABGwAAAAADcQAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAAASAAAAAAAVAAAAAADVAAAAAABVAAAAAABcQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAVAAAAAAA + tiles: WgAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADLgAAAAABWgAAAAAALgAAAAADWgAAAAACLgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAAAWgAAAAADWgAAAAAALgAAAAADWgAAAAABLgAAAAAAWgAAAAABLgAAAAACWgAAAAADLgAAAAACWgAAAAADWgAAAAADWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAABWgAAAAABWgAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAACWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAAAWgAAAAACWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAACWgAAAAABWgAAAAABegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAACegAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAACegAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAABWgAAAAADegAAAAAAHgAAAAABHgAAAAACegAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAAATgAAAAAAWgAAAAAAWgAAAAACWgAAAAACegAAAAAAWgAAAAACWgAAAAAAWgAAAAADegAAAAAAHgAAAAADHgAAAAABegAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABTgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAADegAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAABHgAAAAADegAAAAAAWgAAAAAAWgAAAAAAWgAAAAACegAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAAATgAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAACWgAAAAACWgAAAAAAWgAAAAACegAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAQgAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAAATgAAAAAAWgAAAAADWgAAAAAAWgAAAAADegAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAADTgAAAAAAWgAAAAADWgAAAAABWgAAAAAATgAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAegAAAAAAHgAAAAADHgAAAAADHgAAAAADTgAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAACWgAAAAABWgAAAAAAWgAAAAADWgAAAAACVwAAAAAAVwAAAAAAVwAAAAAAWgAAAAADHgAAAAAAHgAAAAACegAAAAAAegAAAAAAHgAAAAABHgAAAAADHgAAAAADegAAAAAAWgAAAAADWgAAAAADWgAAAAAATgAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAegAAAAAAHgAAAAABHgAAAAADegAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAADTgAAAAAAWgAAAAACWgAAAAADWgAAAAADegAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAegAAAAAAHgAAAAADHgAAAAACegAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAABTgAAAAAAWgAAAAABWgAAAAADWgAAAAACegAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAFQAAAAAA version: 6 -2,1: ind: -2,1 - tiles: GwAAAAADGwAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAADcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAABcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAADcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAABVAAAAAACcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAABVAAAAAABSAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASAAAAAAAVAAAAAADVAAAAAACcQAAAAAAcQAAAAAASAAAAAAAVAAAAAABSAAAAAAAVAAAAAAAVAAAAAABcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAVAAAAAABVAAAAAACVAAAAAACbgAAAAACbgAAAAADbgAAAAACbgAAAAADbgAAAAABbgAAAAADbgAAAAADbgAAAAADcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAVAAAAAACVAAAAAACcQAAAAAAbgAAAAACbgAAAAADbgAAAAACbgAAAAACbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAABcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAVAAAAAACVAAAAAABcQAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAADbgAAAAABbgAAAAADbgAAAAACcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAVAAAAAADVAAAAAADSAAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAAAbgAAAAABbgAAAAACbgAAAAABbgAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAVAAAAAABVAAAAAACVAAAAAACbgAAAAADbgAAAAACbgAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAACbgAAAAAAcQAAAAAASAAAAAAAVAAAAAAASAAAAAAASAAAAAAAVAAAAAACVAAAAAABSAAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAABbgAAAAACbgAAAAACcQAAAAAAJgAAAAAAJgAAAAADJgAAAAABJgAAAAAB + tiles: HgAAAAAAHgAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAACHgAAAAABegAAAAAAWgAAAAACWgAAAAADWgAAAAAAegAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAACegAAAAAAWgAAAAABWgAAAAABWgAAAAADegAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAACWgAAAAABWgAAAAADWgAAAAACWgAAAAACWgAAAAAAWgAAAAACWgAAAAACegAAAAAAWgAAAAABWgAAAAACWgAAAAADegAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAAAWgAAAAACWgAAAAABWgAAAAACWgAAAAACWgAAAAACWgAAAAABWgAAAAABegAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAADWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAADWgAAAAACegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAACWgAAAAADWgAAAAABWgAAAAABWgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAACWgAAAAADWgAAAAAAWgAAAAABWgAAAAACTgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAACWgAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAWgAAAAADWgAAAAABegAAAAAAegAAAAAATgAAAAAAWgAAAAAATgAAAAAAWgAAAAACWgAAAAABegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAWgAAAAADWgAAAAADWgAAAAAAdwAAAAACdwAAAAAAdwAAAAABdwAAAAAAdwAAAAADdwAAAAAAdwAAAAADdwAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAWgAAAAADWgAAAAADegAAAAAAdwAAAAABdwAAAAABdwAAAAACdwAAAAACdwAAAAAAdwAAAAADdwAAAAADdwAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAWgAAAAABWgAAAAABegAAAAAAdwAAAAAAdwAAAAABdwAAAAAAdwAAAAADdwAAAAAAdwAAAAABdwAAAAABdwAAAAACegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAWgAAAAACWgAAAAAATgAAAAAAdwAAAAACdwAAAAAAdwAAAAAAdwAAAAABdwAAAAAAdwAAAAABdwAAAAACdwAAAAACegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAWgAAAAADWgAAAAADWgAAAAACdwAAAAACdwAAAAABdwAAAAAAdwAAAAADdwAAAAADdwAAAAABdwAAAAACdwAAAAABegAAAAAATgAAAAAAWgAAAAAATgAAAAAATgAAAAAAWgAAAAAAWgAAAAAATgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAADdwAAAAADdwAAAAAAdwAAAAADdwAAAAABegAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAD version: 6 0,2: ind: 0,2 - tiles: cQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAACcQAAAAAAVAAAAAACVAAAAAADVAAAAAABGwAAAAACGwAAAAACKwAAAAACGwAAAAABcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADKwAAAAACGwAAAAADcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAGwAAAAAAKwAAAAAAGwAAAAADVAAAAAADPgAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAAASAAAAAAAGwAAAAABKwAAAAAAKwAAAAADcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAADGwAAAAACGwAAAAACGwAAAAACGwAAAAACcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAARwAAAAABRwAAAAACPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADSAAAAAAAGwAAAAABGwAAAAAAGwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAARwAAAAADRwAAAAADPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAAASAAAAAAAbgAAAAABcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAACSAAAAAAAbgAAAAADLgAAAAACYAAAAAAAcQAAAAAAcQAAAAAARwAAAAABRwAAAAADPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAADSAAAAAAAbgAAAAACLgAAAAADYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAALgAAAAABYAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAADSAAAAAAAcAAAAAAAcAAAAAAALgAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABSAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADSAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAACcQAAAAAAcQAAAAAASAAAAAAA + tiles: egAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAABegAAAAAAWgAAAAABWgAAAAACWgAAAAAAHgAAAAAAHgAAAAAALgAAAAADHgAAAAACegAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABLgAAAAADHgAAAAABegAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAADWgAAAAACWgAAAAAAWgAAAAAAegAAAAAAHgAAAAAALgAAAAADHgAAAAABWgAAAAAAQQAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAADWgAAAAABTgAAAAAAHgAAAAABLgAAAAAALgAAAAACegAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAADWgAAAAADWgAAAAACWgAAAAADHgAAAAADHgAAAAADHgAAAAADHgAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADegAAAAAAWgAAAAABWgAAAAABWgAAAAADHgAAAAAAHgAAAAABHgAAAAABHgAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAATQAAAAADTQAAAAADPwAAAAAAPwAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAABTgAAAAAAHgAAAAACHgAAAAADHgAAAAADegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPwAAAAAAPwAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAABegAAAAAAegAAAAAAegAAAAAAHgAAAAACegAAAAAAaQAAAAAAegAAAAAAegAAAAAATQAAAAAATQAAAAADPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAABTgAAAAAAdwAAAAABegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACTgAAAAAAdwAAAAAAawAAAAAAaQAAAAAAegAAAAAAegAAAAAATQAAAAABTQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAAATgAAAAAAdwAAAAADMQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAMQAAAAACaQAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAADWgAAAAABTgAAAAAAeQAAAAAAeQAAAAAAMQAAAAACaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAAAWgAAAAAATgAAAAAAeQAAAAAAAAAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAADWgAAAAADTgAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAADWgAAAAAAWgAAAAABegAAAAAAegAAAAAATgAAAAAA version: 6 0,1: ind: 0,1 - tiles: GwAAAAABGwAAAAAAGwAAAAAAMAAAAAAAMAAAAAABVAAAAAABVAAAAAACVAAAAAACGwAAAAABGwAAAAACGwAAAAAAGwAAAAACGwAAAAABEwAAAAAAEwAAAAAAEwAAAAAAGwAAAAABGwAAAAACcQAAAAAAMAAAAAAAMAAAAAABVAAAAAAAVAAAAAAAVAAAAAAASAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAGwAAAAABGwAAAAACcQAAAAAAMAAAAAAAMAAAAAADVAAAAAACVAAAAAAAVAAAAAABSAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADcQAAAAAAMAAAAAABcQAAAAAAVAAAAAADVAAAAAABVAAAAAACcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAABcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAABSAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAAGwAAAAADGwAAAAADGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACOgAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADSAAAAAAAGwAAAAACGwAAAAABGwAAAAACcQAAAAAAGwAAAAABGwAAAAACGwAAAAACOgAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACSAAAAAAAGwAAAAAAGwAAAAACGwAAAAACcQAAAAAAGwAAAAADGwAAAAADGwAAAAAAOgAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAADcQAAAAAAGwAAAAABGwAAAAADGwAAAAAAcQAAAAAAGwAAAAABKwAAAAACKwAAAAACOgAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAAAKwAAAAADGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABKwAAAAAADAAAAAACcQAAAAAAPgAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAABcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAGwAAAAACKwAAAAABDAAAAAAC + tiles: HgAAAAABHgAAAAADHgAAAAABMwAAAAACMwAAAAACWgAAAAACWgAAAAADWgAAAAADHgAAAAABHgAAAAABHgAAAAAAHgAAAAABHgAAAAACFgAAAAAAFgAAAAAAFgAAAAAAHgAAAAACHgAAAAAAegAAAAAAMwAAAAABMwAAAAABWgAAAAADWgAAAAADWgAAAAADTgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAHgAAAAACHgAAAAAAegAAAAAAMwAAAAABMwAAAAADWgAAAAADWgAAAAACWgAAAAACTgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAADegAAAAAAMwAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAAAegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAWgAAAAACWgAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAACWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAACWgAAAAACWgAAAAACWgAAAAADWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAABWgAAAAADWgAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAADWgAAAAACWgAAAAACWgAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAABWgAAAAADWgAAAAADWgAAAAACWgAAAAADegAAAAAAWgAAAAACegAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAADTgAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAAAegAAAAAAHgAAAAABHgAAAAABHgAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADPQAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAABTgAAAAAAHgAAAAAAHgAAAAACHgAAAAACegAAAAAAHgAAAAADHgAAAAAAHgAAAAABPQAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAACTgAAAAAAHgAAAAABHgAAAAACHgAAAAAAegAAAAAAHgAAAAADHgAAAAADHgAAAAABPQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAABegAAAAAAHgAAAAABHgAAAAABHgAAAAACegAAAAAAHgAAAAACLgAAAAABLgAAAAACPQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAADegAAAAAAHgAAAAABHgAAAAAAHgAAAAACHgAAAAACHgAAAAABLgAAAAAAHgAAAAABegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACLgAAAAABDgAAAAAAegAAAAAAQQAAAAAAegAAAAAAQQAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAABegAAAAAAWgAAAAACWgAAAAABWgAAAAACegAAAAAAHgAAAAAALgAAAAAADgAAAAAA version: 6 2,1: ind: 2,1 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAACcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAACcQAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAABVAAAAAADcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAACcQAAAAAASAAAAAAAVAAAAAABSAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAACSAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAAAVAAAAAABSAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAABSAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAABVAAAAAAASAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAADSAAAAAAAVAAAAAABVAAAAAACVAAAAAABcQAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAABSAAAAAAAVAAAAAACVAAAAAAAVAAAAAACGwAAAAADVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAACVAAAAAADSAAAAAAAVAAAAAADVAAAAAADVAAAAAADGwAAAAACVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAADSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAADSAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABSAAAAAAASAAAAAAAcAAAAAAAcAAAAAAASAAAAAAASAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAASAAAAAAASAAAAAAAVAAAAAADVAAAAAADVAAAAAADGwAAAAAASAAAAAAAcAAAAAAAcAAAAAAASAAAAAAASAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAASAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACGwAAAAAB + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAADegAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAADWgAAAAAAWgAAAAACWgAAAAADWgAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAABegAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAABWgAAAAADWgAAAAABWgAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAACegAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAABWgAAAAACWgAAAAABegAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAACWgAAAAABWgAAAAADegAAAAAATgAAAAAAWgAAAAACTgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAAATgAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAACWgAAAAADTgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAAAWgAAAAAAWgAAAAACWgAAAAABTgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABTgAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAABWgAAAAABWgAAAAACWgAAAAACWgAAAAAAWgAAAAAAWgAAAAACWgAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAACWgAAAAABTgAAAAAAWgAAAAABWgAAAAADWgAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAABTgAAAAAAWgAAAAABWgAAAAABWgAAAAADHgAAAAAAWgAAAAADWgAAAAAAWgAAAAACegAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAADWgAAAAACWgAAAAADWgAAAAAATgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAHgAAAAADWgAAAAADWgAAAAADWgAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAABWgAAAAACWgAAAAAAWgAAAAACegAAAAAAWgAAAAADWgAAAAACWgAAAAACTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAACTgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAACTgAAAAAATgAAAAAAeQAAAAAAeQAAAAAATgAAAAAATgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAATgAAAAAATgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAHgAAAAABTgAAAAAAeQAAAAAAeQAAAAAATgAAAAAATgAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAATgAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAACHgAAAAAD version: 6 3,0: ind: 3,0 - tiles: SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: TgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,1: ind: 3,1 - tiles: cQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAANAAAAAAANAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAANAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAcQAAAAAASAAAAAAASAAAAAAANAAAAAAANAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACcQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAcQAAAAAASAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADcQAAAAAASAAAAAAAPgAAAAAASAAAAAAAcQAAAAAASAAAAAAAPgAAAAAASAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAGwAAAAABPgAAAAAAPgAAAAAAPgAAAAAAGwAAAAADcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAACGwAAAAABGwAAAAABGwAAAAABGwAAAAADPgAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAADGwAAAAABGwAAAAAAGwAAAAACPgAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAGwAAAAADGwAAAAACcQAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACPgAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAAAAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAADcQAAAAAAGwAAAAABGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAADGwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: egAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAANwAAAAAANwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAANwAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAegAAAAAATgAAAAAATgAAAAAANwAAAAAANwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADegAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAegAAAAAATgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAegAAAAAATgAAAAAAQQAAAAAATgAAAAAAegAAAAAATgAAAAAAQQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAHgAAAAACQQAAAAAAQQAAAAAAQQAAAAAAHgAAAAABegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAADHgAAAAABHgAAAAADQQAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAHgAAAAADHgAAAAAAegAAAAAAHgAAAAACHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABQQAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAAAegAAAAAAHgAAAAADHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAADHgAAAAACHgAAAAADHgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,2: ind: 3,2 - tiles: GwAAAAADGwAAAAADcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAAAGwAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HgAAAAABHgAAAAACegAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAADTgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,3: ind: 3,3 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -3,6: ind: -3,6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHcQAAAAAAPgAAAAAAcQAAAAAAPgAAAAAAcQAAAAAABwAAAAACBwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAIBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAEBwAAAAAEBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAGBwAAAAAABwAAAAADBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAKBwAAAAAABwAAAAACBwAAAAAMBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAJ + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAegAAAAAAQQAAAAAAaQAAAAAAQQAAAAAAegAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGegAAAAAAQQAAAAAAaQAAAAAAQQAAAAAAegAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAQQAAAAAAegAAAAAAQQAAAAAAegAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAKBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAFBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAKBwAAAAAABwAAAAADBwAAAAAABwAAAAAFBwAAAAADBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAK version: 6 -2,7: ind: -2,7 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAABBwAAAAAABwAAAAAFBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,7: ind: -3,7 - tiles: BwAAAAAEBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAALBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAASQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAASQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAASQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAASQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAJBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAALBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAIBwAAAAAKBwAAAAAFBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAACBwAAAAAABwAAAAALBwAAAAAFBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAGBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAATwAAAAAATwAAAAAAegAAAAAAegAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAACBwAAAAALBwAAAAADBwAAAAADegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAIBwAAAAAABwAAAAAA version: 6 -2,6: ind: -2,6 - tiles: cQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAbgAAAAAAbgAAAAABbgAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAACVAAAAAACBwAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAABbgAAAAACbgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADBwAAAAAABwAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAWQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAABWQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAWQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAALBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: egAAAAAAAAAAAAAAAAAAAAAATgAAAAAAdwAAAAACdwAAAAABdwAAAAABegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAAAWgAAAAADBwAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAACdwAAAAABdwAAAAABegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAADWgAAAAABBwAAAAAABwAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAAAYQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAAAYQAAAAAABwAAAAAABwAAAAAABwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACYQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAABwAAAAAGBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAGBwAAAAAEBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAHBwAAAAALBwAAAAAGBwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,3: ind: 2,3 - tiles: EAAAAAACOwAAAAAAOwAAAAAAcQAAAAAAYAAAAAAAYgAAAAACYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABSAAAAAAAEAAAAAABOwAAAAAAOwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAACSAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAABSAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAACSAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAABVAAAAAABSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAVAAAAAACSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: EwAAAAABPgAAAAAAPgAAAAAAegAAAAAAaQAAAAAAawAAAAADaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAACTgAAAAAAEwAAAAABPgAAAAAAPgAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAAATgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAaQAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAACTgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAAATgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAADWgAAAAAAWgAAAAABTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAADWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAWgAAAAACTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 2,2: ind: 2,2 - tiles: SAAAAAAAcAAAAAAAcAAAAAAASAAAAAAASAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAASAAAAAAASAAAAAAAVAAAAAABVAAAAAADVAAAAAADSAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAASAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAABSAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABSAAAAAAAYQAAAAAAYQAAAAAAYAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASAAAAAAAVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAVAAAAAACVAAAAAABVAAAAAADSAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACSAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAABcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAYQAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAADSAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAADVAAAAAACSAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAEAAAAAADOwAAAAAAOwAAAAAAcQAAAAAAYAAAAAAAYgAAAAAAPgAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAABcQAAAAAAEAAAAAADOwAAAAAAOwAAAAAAcQAAAAAAYAAAAAAAYgAAAAADPgAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAADSAAAAAAAEAAAAAACOwAAAAAAOwAAAAAAcQAAAAAAYAAAAAAAYgAAAAACYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABSAAAAAAA + tiles: TgAAAAAAeQAAAAAAeQAAAAAATgAAAAAATgAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAATgAAAAAATgAAAAAAWgAAAAAAWgAAAAABWgAAAAACTgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAATgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAATgAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAACTgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAABTgAAAAAAagAAAAAAagAAAAAAaQAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAWgAAAAAAWgAAAAADWgAAAAACegAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAWgAAAAADWgAAAAABWgAAAAACTgAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAADTgAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAADegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAagAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAABegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAagAAAAAAaQAAAAAAQQAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAACWgAAAAABWgAAAAABWgAAAAACTgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAABTgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAABWgAAAAABegAAAAAAEwAAAAABPgAAAAAAPgAAAAAAegAAAAAAaQAAAAAAawAAAAADQQAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAADegAAAAAAEwAAAAACPgAAAAAAPgAAAAAAegAAAAAAaQAAAAAAawAAAAABQQAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAABWgAAAAADWgAAAAACWgAAAAAATgAAAAAAEwAAAAABPgAAAAAAPgAAAAAAegAAAAAAaQAAAAAAawAAAAACaQAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAACWgAAAAACWgAAAAADWgAAAAABTgAAAAAA version: 6 -1,2: ind: -1,2 - tiles: SAAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAABSAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAABSAAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAADGwAAAAADVAAAAAACOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAAAGwAAAAAAGwAAAAADGwAAAAACSAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAADGwAAAAABGwAAAAAAGwAAAAABVAAAAAADOgAAAAAAOgAAAAAAOgAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAACSAAAAAAAVAAAAAABVAAAAAAAGwAAAAABGwAAAAADGwAAAAACSAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKgAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAASAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADSAAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAABcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAACLgAAAAACLgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAACLgAAAAACOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAABLgAAAAABLgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAALgAAAAAALgAAAAADLgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: TgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABHgAAAAACTgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAAATgAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAAAWgAAAAADPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAADWgAAAAABWgAAAAACWgAAAAACHgAAAAABHgAAAAACHgAAAAADTgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAABHgAAAAABHgAAAAADHgAAAAAAWgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAABWgAAAAAAWgAAAAABTgAAAAAAWgAAAAABWgAAAAAAHgAAAAAAHgAAAAAAHgAAAAADTgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAABWgAAAAABWgAAAAADegAAAAAAegAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAATgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAAATgAAAAAAegAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAegAAAAAALQAAAAAALQAAAAAALQAAAAAAMQAAAAADMQAAAAACMQAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAegAAAAAALQAAAAAALQAAAAAALQAAAAAAMQAAAAACMQAAAAAAMQAAAAABOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAegAAAAAALQAAAAAALQAAAAAALQAAAAAAMQAAAAAAMQAAAAABMQAAAAABOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAAAMQAAAAADMQAAAAABOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -1,1: ind: -1,1 - tiles: EgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAMAAAAAAAMAAAAAABKwAAAAACKwAAAAACMAAAAAAAMAAAAAAAMAAAAAABGwAAAAABGwAAAAACGwAAAAACGwAAAAADGwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAMAAAAAADMAAAAAACKwAAAAACKwAAAAABMAAAAAABMAAAAAADMAAAAAACcQAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAMAAAAAADMAAAAAABKwAAAAADKwAAAAACMAAAAAACMAAAAAACMAAAAAADcQAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAADEgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAMAAAAAADMAAAAAACKwAAAAADKwAAAAABMAAAAAACcQAAAAAAMAAAAAACcQAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAABcQAAAAAAVAAAAAABVAAAAAABVAAAAAABPAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAVAAAAAACSAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAADcQAAAAAASAAAAAAAVAAAAAADVAAAAAACPAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAPAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAADcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAPAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAACcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAPAAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAASAAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAADGwAAAAADSAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAAC + tiles: FQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAMwAAAAABMwAAAAABLgAAAAACLgAAAAADMwAAAAACMwAAAAAAMwAAAAADHgAAAAACHgAAAAADHgAAAAAAHgAAAAAAHgAAAAADFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAMwAAAAADMwAAAAACLgAAAAABLgAAAAAAMwAAAAADMwAAAAACMwAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAMwAAAAAAMwAAAAAALgAAAAABLgAAAAADMwAAAAAAMwAAAAAAMwAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAABFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAMwAAAAAAMwAAAAADLgAAAAABLgAAAAACMwAAAAAAegAAAAAAMwAAAAACegAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAACWgAAAAACWgAAAAABWgAAAAADWgAAAAABWgAAAAABWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAADWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAABWgAAAAACWgAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAADWgAAAAADWgAAAAACWgAAAAADWgAAAAADWgAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAADWgAAAAACWgAAAAABWgAAAAABWgAAAAABWgAAAAAAWgAAAAACWgAAAAACWgAAAAABWgAAAAABegAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAADegAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAADegAAAAAAWgAAAAABWgAAAAABWgAAAAADPwAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAABegAAAAAAWgAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAAegAAAAAATgAAAAAAWgAAAAACWgAAAAACPwAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAACegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPwAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAADegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPwAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAADegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPwAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAADegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADegAAAAAAegAAAAAAWgAAAAADegAAAAAATgAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAATgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAABWgAAAAAB version: 6 0,0: ind: 0,0 - tiles: VAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAGwAAAAACGwAAAAABGwAAAAABcQAAAAAAGwAAAAABGwAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAGwAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAAASAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAMAAAAAADMAAAAAADMAAAAAADMAAAAAABcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABSAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAMAAAAAADMAAAAAAAMAAAAAABMAAAAAABMAAAAAACVAAAAAABVAAAAAABVAAAAAACPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAMAAAAAABMAAAAAADMAAAAAACMAAAAAACMAAAAAACVAAAAAACVAAAAAABVAAAAAACSAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAYAAAAAAAMAAAAAABMAAAAAADMAAAAAADMAAAAAAAMAAAAAABVAAAAAACVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABMAAAAAAAMAAAAAADMAAAAAACMAAAAAABMAAAAAAAVAAAAAAAVAAAAAADVAAAAAABSAAAAAAAZAAAAAADZAAAAAACZAAAAAAAZAAAAAABZAAAAAABZAAAAAABZAAAAAAAMAAAAAAAMAAAAAABMAAAAAAAMAAAAAACMAAAAAADVAAAAAACVAAAAAAAVAAAAAAAZAAAAAADZQAAAAABZQAAAAABZQAAAAABZQAAAAAAZQAAAAABZQAAAAACZQAAAAAAMAAAAAABMAAAAAADMAAAAAAAMAAAAAAAMAAAAAAAVAAAAAAAVAAAAAADVAAAAAABSAAAAAAAZAAAAAACZAAAAAABZAAAAAABZAAAAAACZAAAAAACZAAAAAAAZQAAAAABMAAAAAAAMAAAAAABMAAAAAADMAAAAAABMAAAAAACVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZQAAAAADMAAAAAAAMAAAAAACMAAAAAADMAAAAAAAMAAAAAACVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAZAAAAAADZAAAAAAAMAAAAAADMAAAAAACMAAAAAADMAAAAAACMAAAAAADVAAAAAACVAAAAAABVAAAAAADSAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMAAAAAACMAAAAAADcQAAAAAAMAAAAAADMAAAAAACVAAAAAAAVAAAAAAAVAAAAAACSAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAMAAAAAABGwAAAAACcQAAAAAAMAAAAAABMAAAAAACVAAAAAADVAAAAAACVAAAAAACGwAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAA + tiles: WgAAAAACWgAAAAABWgAAAAABWgAAAAABWgAAAAABWgAAAAAAWgAAAAABWgAAAAACWgAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAAAegAAAAAAHgAAAAACHgAAAAADWgAAAAAAWgAAAAABWgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAABWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABegAAAAAAHgAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAACWgAAAAAAWgAAAAACWgAAAAADWgAAAAACegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAABWgAAAAABWgAAAAADTgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAMwAAAAACMwAAAAADMwAAAAADMwAAAAADegAAAAAAWgAAAAAAWgAAAAAAWgAAAAABTgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAMwAAAAABMwAAAAAAMwAAAAADMwAAAAADMwAAAAABWgAAAAAAWgAAAAAAWgAAAAADPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAADMwAAAAAAWgAAAAAAWgAAAAACWgAAAAABTgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAaQAAAAAAMwAAAAACMwAAAAADMwAAAAACMwAAAAAAMwAAAAABWgAAAAAAWgAAAAADWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABMwAAAAACMwAAAAAAMwAAAAABMwAAAAABMwAAAAABWgAAAAACWgAAAAACWgAAAAABTgAAAAAAbQAAAAADbQAAAAABbQAAAAADbQAAAAABbQAAAAABbQAAAAABbQAAAAADMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAADWgAAAAAAWgAAAAADWgAAAAADbQAAAAADbgAAAAACbgAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAADbgAAAAADMwAAAAAAMwAAAAADMwAAAAABMwAAAAACMwAAAAACWgAAAAAAWgAAAAAAWgAAAAABTgAAAAAAbQAAAAACbQAAAAAAbQAAAAABbQAAAAAAbQAAAAADbQAAAAAAbgAAAAACMwAAAAABMwAAAAAAMwAAAAAAMwAAAAABMwAAAAABWgAAAAADWgAAAAABWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAACbgAAAAAAMwAAAAADMwAAAAACMwAAAAAAMwAAAAACMwAAAAACWgAAAAADWgAAAAACWgAAAAAAegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAbQAAAAAAbQAAAAABMwAAAAADMwAAAAACMwAAAAADMwAAAAABMwAAAAACWgAAAAADWgAAAAAAWgAAAAADTgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAAegAAAAAAegAAAAAAMwAAAAADMwAAAAAAegAAAAAAMwAAAAABMwAAAAAAWgAAAAACWgAAAAAAWgAAAAACTgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAMwAAAAABHgAAAAAAegAAAAAAMwAAAAACMwAAAAAAWgAAAAACWgAAAAACWgAAAAADHgAAAAADHgAAAAABHgAAAAADHgAAAAABHgAAAAABFgAAAAAAFgAAAAAAFgAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAADYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYgAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAARwAAAAAARwAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAARwAAAAABRwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAARwAAAAAARwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAARwAAAAADRwAAAAACSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAARwAAAAACRwAAAAACSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAASAAAAAAAAAAAAAAAcQAAAAAARwAAAAABRwAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAASAAAAAAAAAAAAAAAcQAAAAAARwAAAAACRwAAAAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAawAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATQAAAAAATQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATQAAAAADTQAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATQAAAAABTQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATQAAAAAATQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATQAAAAADTQAAAAACTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAATgAAAAAAAAAAAAAAegAAAAAATQAAAAABTQAAAAABTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAATgAAAAAAAAAAAAAAegAAAAAATQAAAAACTQAAAAABTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,2: ind: -5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAPgAAAAAAPgAAAAAASAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACPgAAAAAAPgAAAAAASAAAAAAAbgAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAACbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACPgAAAAAAPgAAAAAASAAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAADbgAAAAACbgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABPgAAAAAAPgAAAAAASAAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAAARwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAADQQAAAAAAQQAAAAAATgAAAAAAdwAAAAADdwAAAAACdwAAAAAAdwAAAAACdwAAAAAAdwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAQQAAAAAAQQAAAAAATgAAAAAAdwAAAAAAdwAAAAABdwAAAAABdwAAAAADdwAAAAAAdwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAABQQAAAAAAQQAAAAAATgAAAAAAdwAAAAACdwAAAAABdwAAAAABdwAAAAADdwAAAAADdwAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAADQQAAAAAAQQAAAAAATgAAAAAAdwAAAAAAdwAAAAADdwAAAAABdwAAAAADdwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAADTQAAAAACTQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -6,1: ind: -6,1 - tiles: WQAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAVAAAAAABWQAAAAAAVAAAAAAAWQAAAAAAVAAAAAACVAAAAAABWQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABWQAAAAAAVAAAAAACcQAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAVAAAAAABVAAAAAADcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAVAAAAAADVAAAAAACWQAAAAAAWQAAAAAAVAAAAAABWQAAAAAAVAAAAAAAVAAAAAABWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABWQAAAAAAVAAAAAACcQAAAAAAWQAAAAAAVAAAAAADcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAVAAAAAABWQAAAAAAVAAAAAADVAAAAAADWQAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAWQAAAAAAVAAAAAADWQAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAVAAAAAADVAAAAAADVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YQAAAAAAWgAAAAADYQAAAAAAegAAAAAAYQAAAAAAYQAAAAAAegAAAAAAYQAAAAAAWgAAAAADWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAEQAAAAAAEQAAAAAAYQAAAAAAYQAAAAAAWgAAAAABYQAAAAAAWgAAAAADYQAAAAAAWgAAAAABWgAAAAABYQAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABYQAAAAAAWgAAAAAAegAAAAAAWgAAAAACYQAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACYQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAADYQAAAAAAegAAAAAAWgAAAAABWgAAAAADegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAWgAAAAABWgAAAAAAYQAAAAAAYQAAAAAAWgAAAAAAYQAAAAAAWgAAAAACWgAAAAACYQAAAAAAYQAAAAAAegAAAAAAQQAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAWgAAAAAAYQAAAAAAWgAAAAACegAAAAAAYQAAAAAAWgAAAAABegAAAAAAWgAAAAAAWgAAAAADWgAAAAACegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYQAAAAAAWgAAAAACYQAAAAAAWgAAAAAAWgAAAAABYQAAAAAAWgAAAAAAWgAAAAAAYQAAAAAAWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAYQAAAAAAWgAAAAAAYQAAAAAAYQAAAAAAWgAAAAADYQAAAAAAWgAAAAAAWgAAAAAAWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,4: ind: 0,4 - tiles: cAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAADWQAAAAAAVAAAAAACVAAAAAADWQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAADWQAAAAAAVAAAAAADVAAAAAAAWQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAWQAAAAAAVAAAAAADWQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAWQAAAAAAVAAAAAABVAAAAAACWQAAAAAAVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAVAAAAAABYAAAAAAAYAAAAAAAVAAAAAAAYAAAAAAAcAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAVAAAAAADYAAAAAAAYAAAAAAAVAAAAAADYAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAVAAAAAABYAAAAAAAYAAAAAAAVAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: eQAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAAAYQAAAAAAWgAAAAAAWgAAAAACYQAAAAAAWgAAAAABWgAAAAACegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAABYQAAAAAAWgAAAAAAWgAAAAABYQAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAAAWgAAAAADYQAAAAAAWgAAAAAAYQAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAYQAAAAAAWgAAAAADWgAAAAAAYQAAAAAAWgAAAAADWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAAAYQAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAADYQAAAAAAWgAAAAAAYQAAAAAAYQAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAWgAAAAADaQAAAAAAaQAAAAAAWgAAAAACaQAAAAAAeQAAAAAAegAAAAAAQQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAWgAAAAAAaQAAAAAAaQAAAAAAWgAAAAACaQAAAAAAAAAAAAAAegAAAAAAQQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAWgAAAAAAaQAAAAAAaQAAAAAAWgAAAAADaQAAAAAAegAAAAAAegAAAAAAQQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAABaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: GwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAACcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAACcQAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAXAAAAAACcQAAAAAAGwAAAAAAGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAbgAAAAADcQAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAABbgAAAAADbgAAAAACbgAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAPgAAAAAA + tiles: HgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYQAAAAAAWgAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYQAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAACegAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADegAAAAAAYQAAAAAAegAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAADegAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAATgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAQQAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAATgAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAABHgAAAAADegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAACHgAAAAAAegAAAAAAQQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAZQAAAAACegAAAAAAHgAAAAABHgAAAAADHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADegAAAAAAdwAAAAAAegAAAAAAegAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAdwAAAAADdwAAAAABdwAAAAADdwAAAAADdwAAAAACdwAAAAACdwAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAegAAAAAAegAAAAAAaQAAAAAAQQAAAAAA version: 6 -5,-3: ind: -5,-3 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADcQAAAAAAbgAAAAABbgAAAAABbgAAAAABbgAAAAAAbgAAAAACbgAAAAADcQAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAADVAAAAAAAVAAAAAABVAAAAAABbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAADbgAAAAADcQAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAADbgAAAAABVAAAAAABVAAAAAAAVAAAAAADbgAAAAAAbgAAAAACbgAAAAADbgAAAAAAbgAAAAACbgAAAAABcQAAAAAAbgAAAAACbgAAAAADbgAAAAAAbgAAAAACbgAAAAADbgAAAAAARwAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABcQAAAAAAbgAAAAADbgAAAAACbgAAAAADbgAAAAAAbgAAAAAAbgAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAbgAAAAACcQAAAAAAbgAAAAADbgAAAAACbgAAAAABbgAAAAAAbgAAAAAAbgAAAAAC + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACegAAAAAAdwAAAAADdwAAAAADdwAAAAAAdwAAAAADdwAAAAADdwAAAAAAegAAAAAAdwAAAAACdwAAAAAAdwAAAAACdwAAAAACdwAAAAABdwAAAAACWgAAAAADWgAAAAAAWgAAAAADdwAAAAADdwAAAAACdwAAAAAAdwAAAAABdwAAAAACdwAAAAABegAAAAAAdwAAAAADdwAAAAADdwAAAAABdwAAAAADdwAAAAACdwAAAAACWgAAAAABWgAAAAACWgAAAAABdwAAAAADdwAAAAABdwAAAAAAdwAAAAACdwAAAAADdwAAAAAAegAAAAAAdwAAAAADdwAAAAADdwAAAAADdwAAAAACdwAAAAACdwAAAAAATQAAAAADWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAACegAAAAAAdwAAAAAAdwAAAAACdwAAAAABdwAAAAAAdwAAAAADdwAAAAADWgAAAAADWgAAAAACWgAAAAADWgAAAAADWgAAAAADWgAAAAABWgAAAAABegAAAAAAdwAAAAAAegAAAAAAdwAAAAABdwAAAAACdwAAAAADdwAAAAACdwAAAAADdwAAAAAB version: 6 -4,-3: ind: -4,-3 - tiles: SAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbgAAAAACbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAADVAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAAB + tiles: TgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAUAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAdwAAAAACdwAAAAADegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAADWgAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAACegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAAA version: 6 -6,-3: ind: -6,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAACVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAASAAAAAAAVAAAAAACVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAASAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAADRwAAAAADVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAADVAAAAAABRwAAAAACVAAAAAABRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABRwAAAAABVAAAAAAAUQAAAAAAVAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACRwAAAAABVAAAAAADRwAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAADWgAAAAADWgAAAAABegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAACegAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAATgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADegAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAADegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAATgAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAABWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAABTQAAAAADWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAAWgAAAAABTQAAAAABWgAAAAABTQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAADTQAAAAADWgAAAAAAVwAAAAAAWgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAATQAAAAACWgAAAAACTQAAAAAC version: 6 -6,-4: ind: -6,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAA version: 6 -5,-4: ind: -5,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAPgAAAAAAcQAAAAAAPgAAAAAASAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAPgAAAAAAcQAAAAAAPgAAAAAASAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAQQAAAAAAegAAAAAAQQAAAAAATgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAQQAAAAAAegAAAAAAQQAAAAAATgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPAAAAAAAcQAAAAAAPAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAPwAAAAAAPwAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAPwAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAPwAAAAAAegAAAAAAPwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAPwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA version: 6 0,5: ind: 0,5 - tiles: SAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: TgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -1,5: ind: -1,5 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAKAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAKAAAAAAAcQAAAAAAcAAAAAAASAAAAAAAPgAAAAAAPgAAAAAASAAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAKAAAAAAAcQAAAAAAcAAAAAAASAAAAAAAPgAAAAAAPgAAAAAASAAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAKAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAKAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPwAAAAAAPwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAKwAAAAAAKwAAAAAAegAAAAAAeQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAKwAAAAAAKwAAAAAAegAAAAAAeQAAAAAATgAAAAAAQQAAAAAAQQAAAAAATgAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAKwAAAAAAKwAAAAAAegAAAAAAeQAAAAAATgAAAAAAQQAAAAAAQQAAAAAATgAAAAAAQQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAKwAAAAAAKwAAAAAAegAAAAAAeQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAKwAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAKwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAKwAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAKwAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWgAAAAABWgAAAAAAWgAAAAACegAAAAAAKwAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA version: 6 -4,7: ind: -4,7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAABegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,3: ind: 4,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAAQQAAAAAAQQAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAAQQAAAAAAQQAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 4,2: ind: 4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAA version: 6 5,2: ind: 5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,3: ind: 5,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,4: ind: 2,4 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAA version: 6 3,4: ind: 3,4 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,4: ind: 1,4 - tiles: cQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAASAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAASAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAJwAAAAAAJwAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAJwAAAAAAJwAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAJwAAAAAAJwAAAAAAAQAAAAAAAQAAAAAAAgAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA + tiles: egAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAATgAAAAAAAAAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAATgAAAAAAAAAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAKgAAAAAAKgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAKgAAAAAAKgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAKgAAAAAAKgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA version: 6 3,5: ind: 3,5 - tiles: SAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: TgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,6: ind: -1,6 - tiles: VAAAAAABWQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVAAAAAADWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVAAAAAABVAAAAAABVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWQAAAAAAWQAAAAAAVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWQAAAAAAWQAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: WgAAAAABYQAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWgAAAAABYQAAAAAAYQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWgAAAAADWgAAAAADWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYQAAAAAAYQAAAAAAWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYQAAAAAAYQAAAAAAWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -7,0: ind: -7,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAA version: 6 -7,-1: ind: -7,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAEAAAAAACEAAAAAAAEAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAEAAAAAAAEAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAEAAAAAAAEAAAAAABEAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAABKwAAAAACKwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAABJgAAAAAAJgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAAAJgAAAAABJgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAADKwAAAAADKwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAEwAAAAADEwAAAAADEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAEwAAAAACEwAAAAAAEwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAEwAAAAABEwAAAAADEwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAALgAAAAABLgAAAAABLgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAALgAAAAADKQAAAAADKQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAALgAAAAACKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAALgAAAAAAKQAAAAABKQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAALgAAAAABLgAAAAABLgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAA version: 6 -7,1: ind: -7,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYgAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAABRwAAAAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAAARwAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAAARwAAAAACSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAARwAAAAABRwAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAARwAAAAABRwAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAARwAAAAACRwAAAAAAcQAAAAAAAAAAAAAASAAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAARwAAAAADRwAAAAACcQAAAAAAAAAAAAAASAAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAawAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAawAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATQAAAAADTQAAAAACTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATQAAAAABTQAAAAADTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATQAAAAADTQAAAAABTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATQAAAAABTQAAAAADTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATQAAAAADTQAAAAACTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATQAAAAAATQAAAAABegAAAAAAAAAAAAAATgAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATQAAAAACTQAAAAAAegAAAAAAAAAAAAAATgAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-4: ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,7: ind: -1,7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,8: ind: -1,8 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-4: ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAAAAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAeQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,-2: ind: -7,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAEAAAAAAAEAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAEAAAAAADEAAAAAAAEAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAEAAAAAABEAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAEAAAAAADEAAAAAACEAAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAEwAAAAACEwAAAAADEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAEwAAAAAAEwAAAAADEwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAEwAAAAACEwAAAAABEwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAB version: 6 2,5: ind: 2,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,5: ind: 1,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,6: ind: 0,6 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,4: ind: 4,4 - tiles: cQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAVAAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: egAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAACWgAAAAADegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAYQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAYQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAWgAAAAADegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAACWgAAAAABegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,4: ind: 5,4 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,1: ind: 4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAA version: 6 5,1: ind: 5,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,-3: ind: -7,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -8,1: ind: -8,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -8,0: ind: -8,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA version: 6 -8,-1: ind: -8,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA version: 6 -6,2: ind: -6,2 - tiles: AAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,2: ind: -7,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-5: ind: -5,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -4,-5: ind: -4,-5 - tiles: AAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-6: ind: -4,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-6: ind: -5,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -6,-6: ind: -6,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,-6: ind: -7,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAA version: 6 -6,-5: ind: -6,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -7,-4: ind: -7,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,-5: ind: -7,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbwAAAAADbwAAAAABbwAAAAACbwAAAAACbwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbwAAAAABbwAAAAABbwAAAAADbwAAAAABbwAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbwAAAAABbwAAAAAAbwAAAAACbwAAAAADbwAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAARwAAAAACAAAAAAAAcAAAAAAAAAAAAAAARwAAAAACAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAACAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAARwAAAAABAAAAAAAAcAAAAAAAAAAAAAAARwAAAAACAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeAAAAAACeAAAAAADeAAAAAADeAAAAAAAeAAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeAAAAAABeAAAAAABeAAAAAABeAAAAAADeAAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAATQAAAAABAAAAAAAAeQAAAAAAAAAAAAAATQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAATQAAAAADeQAAAAAAeQAAAAAAeQAAAAAATQAAAAADAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAATQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAATQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,5: ind: 4,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 6,3: ind: 6,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 6,1: ind: 6,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 6,2: ind: 6,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 6,4: ind: 6,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,5: ind: 5,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 6,0: ind: 6,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,8: ind: -3,8 - tiles: AAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAACBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 type: MapGrid - type: Broadphase - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 + angularDamping: 10000 + linearDamping: 10000 fixedRotation: False bodyType: Dynamic type: Physics @@ -614,19 +615,19 @@ entities: color: '#DE3A3A96' id: 0 decals: - 6625: -39.85117,58.98269 - 6626: -41.236588,60.96323 - 6627: -43.205338,63.01674 + 6344: -39.85117,58.98269 + 6345: -41.236588,60.96323 + 6346: -43.205338,63.01674 - node: color: '#1D1D21FF' id: 1 decals: - 1031: 13,-10 + 989: 13,-10 - node: color: '#DE3A3A96' id: 1 decals: - 6624: -40.174088,58.961838 + 6343: -40.174088,58.961838 - node: color: '#F9801DFF' id: 1 @@ -636,12 +637,12 @@ entities: color: '#1D1D21FF' id: 2 decals: - 1032: 12,-10 + 990: 12,-10 - node: color: '#DE3A3A96' id: 2 decals: - 6628: -41.75742,60.931957 + 6347: -41.75742,60.931957 - node: color: '#F9801DFF' id: 2 @@ -651,12 +652,12 @@ entities: color: '#1D1D21FF' id: 3 decals: - 1033: 11,-10 + 7006: 11,-10 - node: color: '#DE3A3A96' id: 3 decals: - 6629: -43.736588,62.995888 + 6348: -43.736588,62.995888 - node: color: '#F9801DFF' id: 3 @@ -689,70 +690,70 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 7067: -45,45 + 6782: -45,45 - node: angle: -1.5707963267948966 rad color: '#52B4E9FF' id: ArrowsGreyscale decals: - 6211: -70,8 - 6212: -71,8 - 6213: -72,8 - 6215: -69,8 + 6085: -70,8 + 6086: -71,8 + 6087: -72,8 + 6089: -69,8 - node: color: '#52B4E9FF' id: ArrowsGreyscale decals: - 6209: -73,7 - 6210: -69,10 - 6214: -73,8 + 6083: -73,7 + 6084: -69,10 + 6088: -73,8 - node: color: '#FFFFFFFF' id: Bot decals: 291: 7,55 292: 8,55 - 946: 26,60 - 947: 26,59 - 948: 55,73 - 949: 56,73 - 950: 56,72 - 951: 55,72 - 952: 55,71 - 953: 56,71 - 954: 56,70 - 955: 55,70 - 956: 55,69 - 957: 56,69 - 958: 56,68 - 959: 55,68 - 960: 46,57 - 961: 46,56 - 1283: -55,-52 - 5721: -79,-22 - 5722: -78,-22 - 5723: -77,-22 - 5795: 34,22 - 5796: 34,21 - 5797: 34,20 - 6080: -51,-31 - 6081: -51,-32 - 6100: 5,-22 - 6128: 19,-18 - 6630: -53,-31 - 6631: -53,-32 - 6632: -52,-32 - 6633: -52,-31 + 930: 26,60 + 931: 26,59 + 932: 55,73 + 933: 56,73 + 934: 56,72 + 935: 55,72 + 936: 55,71 + 937: 56,71 + 938: 56,70 + 939: 55,70 + 940: 55,69 + 941: 56,69 + 942: 56,68 + 943: 55,68 + 944: 46,57 + 945: 46,56 + 1240: -55,-52 + 5595: -79,-22 + 5596: -78,-22 + 5597: -77,-22 + 5669: 34,22 + 5670: 34,21 + 5671: 34,20 + 5954: -51,-31 + 5955: -51,-32 + 5974: 5,-22 + 6002: 19,-18 + 6349: -53,-31 + 6350: -53,-32 + 6351: -52,-32 + 6352: -52,-31 - node: color: '#FFFFFFFF' id: BotGreyscale decals: - 7087: 62,70 - 7088: 63,70 - 7089: 64,70 - 7090: 67,70 - 7091: 67,74 - 7092: 67,75 + 6802: 62,70 + 6803: 63,70 + 6804: 64,70 + 6805: 67,70 + 6806: 67,74 + 6807: 67,75 - node: color: '#FEFF3DFF' id: Box @@ -781,38 +782,38 @@ entities: color: '#FFFFFFFF' id: Box decals: - 7099: 67,73 - 7100: 67,72 - 7101: 67,71 + 6811: 67,73 + 6812: 67,72 + 6813: 67,71 - node: color: '#FFFFFFFF' id: Box decals: - 4746: 53,30 - 4747: 53,26 - 5576: -65,-47 - 5577: -65,-48 - 6082: -51,-32 - 6083: -51,-31 - 6140: 22,-13 - 6141: 22,-15 - 6153: 18,-14 - 6154: 18,-16 - 6158: 12,-15 - 6159: 13,-14 - 6162: 13,-16 - 6634: -53,-31 - 6635: -52,-31 - 6636: -52,-32 - 6637: -53,-32 - 6862: 37,-5 - 6863: 39,-5 - 6868: 37,-5 - 6869: 39,-5 - 6877: 38,-8 - 6878: 38,-10 - 7102: 54,-20 - 7103: 54,-24 + 4636: 53,30 + 4637: 53,26 + 5450: -65,-47 + 5451: -65,-48 + 5956: -51,-32 + 5957: -51,-31 + 6014: 22,-13 + 6015: 22,-15 + 6027: 18,-14 + 6028: 18,-16 + 6032: 12,-15 + 6033: 13,-14 + 6036: 13,-16 + 6353: -53,-31 + 6354: -52,-31 + 6355: -52,-32 + 6356: -53,-32 + 6577: 37,-5 + 6578: 39,-5 + 6583: 37,-5 + 6584: 39,-5 + 6592: 38,-8 + 6593: 38,-10 + 6814: 54,-20 + 6815: 54,-24 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -834,1708 +835,1707 @@ entities: color: '#FFFFFFFF' id: BoxGreyscale decals: - 7077: 68,68 - 7078: 69,68 - 7079: 69,67 - 7080: 69,66 - 7081: 69,65 - 7082: 69,64 - 7083: 68,64 + 6792: 68,68 + 6793: 69,68 + 6794: 69,67 + 6795: 69,66 + 6796: 69,65 + 6797: 69,64 + 6798: 68,64 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 4820: -8,-2 - 4904: 14,-9 - 4915: 9,-5 - 4921: 8,0 - 5006: 28,22 - 5008: 27,23 - 5012: 24,24 - 5091: 13,42 - 5096: 12,51 - 5123: 23,49 - 5130: 8,52 - 5200: -16,52 - 5287: -22,41 - 5302: -22,24 - 5384: -12,29 - 5394: -11,36 - 5409: -37,7 - 5411: -38,8 - 5464: -72,5 - 5560: -51,-2 - 5785: -8,52 - 5789: 0,24 - 6205: -3,52 - 6252: -81,-30 - 6280: -74,-27 + 4710: -8,-2 + 4789: 9,-5 + 4795: 8,0 + 4880: 28,22 + 4882: 27,23 + 4886: 24,24 + 4965: 13,42 + 4970: 12,51 + 4997: 23,49 + 5004: 8,52 + 5074: -16,52 + 5161: -22,41 + 5176: -22,24 + 5258: -12,29 + 5268: -11,36 + 5283: -37,7 + 5285: -38,8 + 5338: -72,5 + 5434: -51,-2 + 5659: -8,52 + 5663: 0,24 + 6079: -3,52 + 6126: -81,-30 + 6154: -74,-27 + 6989: 14,-9 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 6057: 0,-24 - 6068: -5,-18 + 5931: 0,-24 + 5942: -5,-18 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 4836: -18,-2 - 4907: 11,-9 - 4988: 25,15 - 5023: 13,24 - 5075: 4,36 - 5082: 9,39 - 5087: 8,47 - 5131: 7,52 - 5159: -33,52 - 5231: -36,21 - 5301: -23,24 - 5398: -15,36 - 5417: -44,8 - 5517: -75,-6 - 5784: -11,52 - 5788: -3,24 - 6203: -6,52 - 6241: -75,-27 - 6256: -85,-30 - 6299: 5,-17 - 6729: -74,5 + 4726: -18,-2 + 4862: 25,15 + 4897: 13,24 + 4949: 4,36 + 4956: 9,39 + 4961: 8,47 + 5005: 7,52 + 5033: -33,52 + 5105: -36,21 + 5175: -23,24 + 5272: -15,36 + 5291: -44,8 + 5391: -75,-6 + 5658: -11,52 + 5662: -3,24 + 6077: -6,52 + 6115: -75,-27 + 6130: -85,-30 + 6446: -74,5 + 6980: 5,-17 + 6992: 11,-9 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 5980: -27,-18 - 5991: -32,-24 + 5854: -27,-18 + 5865: -32,-24 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 4816: -8,-6 - 4971: 18,19 - 4995: 28,11 - 5090: 13,40 - 5126: 23,44 - 5289: -22,39 - 5365: -6,20 - 5389: -11,31 - 5496: -72,-25 - 5552: -37,-5 - 5755: 0,-2 - 5772: 11,34 - 6236: -74,-33 - 6267: -83,-41 - 6275: -79,-37 - 6305: 9,-19 - 6311: 14,-18 + 4706: -8,-6 + 4845: 18,19 + 4869: 28,11 + 4964: 13,40 + 5000: 23,44 + 5163: -22,39 + 5239: -6,20 + 5263: -11,31 + 5370: -72,-25 + 5426: -37,-5 + 5629: 0,-2 + 5646: 11,34 + 6110: -74,-33 + 6141: -83,-41 + 6149: -79,-37 + 6157: 9,-19 + 6159: 14,-18 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 6004: -25,-31 - 6014: -22,-24 - 6050: 0,-31 + 5878: -25,-31 + 5888: -22,-24 + 5924: 0,-31 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 4893: 5,-8 - 4956: 3,20 - 4967: 14,19 - 4992: 25,11 - 5074: 4,33 - 5086: 8,44 - 5125: 21,44 - 5232: -36,18 - 5369: -11,20 - 5403: -15,31 - 5422: -44,3 - 5493: -75,-25 - 5558: -52,-5 - 5754: -3,-2 - 6265: -85,-41 - 6294: 6,-15 - 6301: 5,-19 + 4783: 5,-8 + 4830: 3,20 + 4841: 14,19 + 4866: 25,11 + 4948: 4,33 + 4960: 8,44 + 4999: 21,44 + 5106: -36,18 + 5243: -11,20 + 5277: -15,31 + 5296: -44,3 + 5367: -75,-25 + 5432: -52,-5 + 5628: -3,-2 + 6139: -85,-41 + 6975: 6,-15 + 6982: 5,-19 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 5998: -32,-31 - 6034: -10,-24 - 6044: -7,-31 + 5872: -32,-31 + 5908: -10,-24 + 5918: -7,-31 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 4884: -22,3 - 4910: 9,-10 - 4916: 8,-5 - 4922: 7,0 - 5007: 27,22 - 5011: 24,23 - 5030: 7,23 - 5092: 12,42 - 5095: 12,49 - 5199: -16,51 - 5253: -31,21 - 5279: -30,41 - 5303: -22,23 - 5383: -12,23 - 5385: -13,29 - 5405: -37,3 - 5410: -38,7 - 5471: -72,-2 - 5561: -51,-3 - 5777: 8,51 - 5782: -8,51 - 5791: 0,23 - 6206: -3,51 - 6251: -81,-31 - 6614: 9,-15 + 4774: -22,3 + 4790: 8,-5 + 4796: 7,0 + 4881: 27,22 + 4885: 24,23 + 4904: 7,23 + 4966: 12,42 + 4969: 12,49 + 5073: -16,51 + 5127: -31,21 + 5153: -30,41 + 5177: -22,23 + 5257: -12,23 + 5259: -13,29 + 5279: -37,3 + 5284: -38,7 + 5345: -72,-2 + 5435: -51,-3 + 5651: 8,51 + 5656: -8,51 + 5665: 0,23 + 6080: -3,51 + 6125: -81,-31 + 6995: 9,-10 + 7001: 9,-15 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 6062: -5,-24 - 6077: -14,-18 + 5936: -5,-24 + 5951: -14,-18 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 4883: -24,3 - 4908: 11,-10 - 4938: 5,3 - 4987: 26,15 - 5024: 13,23 - 5073: 5,23 - 5080: 9,36 - 5083: 10,39 - 5089: 10,47 - 5228: -33,21 - 5245: -23,21 - 5370: -14,23 - 5432: -40,-3 - 5726: -74,-6 - 5781: 7,51 - 5783: -11,51 - 5790: -3,23 - 6202: -6,51 - 6245: -75,-31 - 6297: 7,-17 - 6613: 11,-15 + 4773: -24,3 + 4812: 5,3 + 4861: 26,15 + 4898: 13,23 + 4947: 5,23 + 4954: 9,36 + 4957: 10,39 + 4963: 10,47 + 5102: -33,21 + 5119: -23,21 + 5244: -14,23 + 5306: -40,-3 + 5600: -74,-6 + 5655: 7,51 + 5657: -11,51 + 5664: -3,23 + 6076: -6,51 + 6119: -75,-31 + 6978: 7,-17 + 6993: 11,-10 + 7000: 11,-15 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 5971: -18,-18 - 5986: -27,-24 + 5845: -18,-18 + 5860: -27,-24 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 4810: -14,-6 - 4958: 7,21 - 4973: 18,21 - 5041: 7,34 - 5093: 12,48 - 5278: -30,49 - 5298: -31,39 - 5347: -22,21 - 5366: -6,21 - 5387: -13,31 - 5518: -72,-4 - 5557: -37,0 - 5758: 0,0 - 6271: -83,-37 - 6279: -79,-33 - 6306: 9,-18 - 6612: 9,-13 + 4700: -14,-6 + 4832: 7,21 + 4847: 18,21 + 4915: 7,34 + 4967: 12,48 + 5152: -30,49 + 5172: -31,39 + 5221: -22,21 + 5240: -6,21 + 5261: -13,31 + 5392: -72,-4 + 5431: -37,0 + 5632: 0,0 + 6145: -83,-37 + 6153: -79,-33 + 6158: 9,-18 + 6999: 9,-13 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 6011: -25,-24 - 6018: -22,-20 + 5885: -25,-24 + 5892: -22,-20 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 4885: 5,0 - 4894: 6,-8 - 4955: 5,20 - 4965: 14,21 - 4981: 26,21 - 5081: 5,33 - 5084: 10,44 - 5094: 10,49 - 5124: 21,48 - 5244: -24,18 - 5325: 3,21 - 5368: -11,21 - 5404: -14,31 - 5426: -40,3 - 5559: -52,-4 - 5759: -3,0 - 6295: 7,-15 - 6611: 11,-13 + 4775: 5,0 + 4784: 6,-8 + 4829: 5,20 + 4839: 14,21 + 4855: 26,21 + 4955: 5,33 + 4958: 10,44 + 4968: 10,49 + 4998: 21,48 + 5118: -24,18 + 5199: 3,21 + 5242: -11,21 + 5278: -14,31 + 5300: -40,3 + 5433: -52,-4 + 5633: -3,0 + 6976: 7,-15 + 6998: 11,-13 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 6030: -10,-20 - 6037: -7,-24 + 5904: -10,-20 + 5911: -7,-24 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 4799: -14,-17 - 4800: -14,-16 - 4801: -14,-15 - 4802: -14,-14 - 4803: -14,-13 - 4804: -14,-12 - 4805: -14,-11 - 4806: -14,-10 - 4807: -14,-9 - 4808: -14,-8 - 4809: -14,-7 - 4817: -8,-5 - 4818: -8,-4 - 4819: -8,-3 - 4901: 14,-12 - 4902: 14,-11 - 4903: 14,-10 - 4911: 9,-9 - 4912: 9,-8 - 4913: 9,-7 - 4914: 9,-6 - 4917: 8,-4 - 4918: 8,-3 - 4919: 8,-2 - 4920: 8,-1 - 4923: 7,1 - 4924: 7,2 - 4925: 7,3 - 4926: 7,4 - 4927: 7,5 - 4928: 7,6 - 4929: 7,12 - 4930: 7,13 - 4931: 7,14 - 4932: 7,15 - 4933: 7,16 - 4934: 7,17 - 4935: 7,18 - 4936: 7,19 - 4937: 7,20 - 4972: 18,20 - 4996: 28,12 - 4997: 28,13 - 4998: 28,14 - 4999: 28,15 - 5000: 28,16 - 5001: 28,17 - 5002: 28,18 - 5003: 28,19 - 5004: 28,20 - 5005: 28,21 - 5031: 7,24 - 5032: 7,25 - 5033: 7,26 - 5034: 7,27 - 5035: 7,28 - 5036: 7,29 - 5037: 7,30 - 5038: 7,31 - 5039: 7,32 - 5040: 7,33 - 5045: 11,36 - 5046: 13,41 - 5047: 12,43 - 5048: 12,44 - 5049: 12,45 - 5050: 12,46 - 5051: 12,47 - 5052: 12,50 - 5119: 23,48 - 5120: 23,47 - 5121: 23,46 - 5122: 23,45 - 5254: -31,22 - 5255: -31,23 - 5256: -31,24 - 5257: -31,25 - 5258: -31,26 - 5259: -31,27 - 5260: -31,28 - 5261: -31,29 - 5262: -31,30 - 5263: -31,31 - 5264: -31,32 - 5265: -31,33 - 5266: -31,34 - 5267: -31,35 - 5268: -31,36 - 5269: -31,37 - 5270: -31,38 - 5271: -30,42 - 5272: -30,43 - 5273: -30,44 - 5274: -30,45 - 5275: -30,46 - 5276: -30,47 - 5277: -30,48 - 5288: -22,40 - 5348: -22,20 - 5349: -22,19 - 5350: -22,18 - 5351: -22,17 - 5352: -22,16 - 5353: -22,15 - 5354: -22,14 - 5355: -22,13 - 5356: -22,12 - 5357: -22,11 - 5358: -22,10 - 5359: -22,9 - 5360: -22,8 - 5361: -22,7 - 5362: -22,6 - 5363: -22,5 - 5364: -22,4 - 5378: -12,24 - 5379: -12,25 - 5380: -12,26 - 5381: -12,27 - 5382: -12,28 - 5386: -13,30 - 5390: -11,32 - 5391: -11,33 - 5392: -11,34 - 5393: -11,35 - 5406: -37,4 - 5407: -37,5 - 5408: -37,6 - 5465: -72,4 - 5466: -72,3 - 5467: -72,2 - 5468: -72,1 - 5469: -72,0 - 5470: -72,-1 - 5497: -72,-24 - 5498: -72,-23 - 5499: -72,-22 - 5500: -72,-21 - 5501: -72,-20 - 5502: -72,-19 - 5503: -72,-18 - 5504: -72,-17 - 5505: -72,-16 - 5506: -72,-15 - 5507: -72,-14 - 5508: -72,-13 - 5509: -72,-12 - 5510: -72,-11 - 5511: -72,-10 - 5512: -72,-9 - 5513: -72,-8 - 5514: -72,-7 - 5515: -72,-6 - 5516: -72,-5 - 5553: -37,-4 - 5554: -37,-3 - 5555: -37,-2 - 5556: -37,-1 - 5757: 0,-1 - 5773: 11,35 - 5774: 11,38 - 5775: 11,39 - 6195: 7,11 - 6197: 7,10 - 6198: 7,9 - 6199: 7,8 - 6200: 7,7 - 6231: -74,-28 - 6232: -74,-29 - 6233: -74,-30 - 6234: -74,-31 - 6235: -74,-32 - 6268: -83,-40 - 6269: -83,-39 - 6270: -83,-38 - 6276: -79,-36 - 6277: -79,-35 - 6278: -79,-34 - 6312: 14,-17 - 6313: 14,-13 - 6609: 9,-14 + 4689: -14,-17 + 4690: -14,-16 + 4691: -14,-15 + 4692: -14,-14 + 4693: -14,-13 + 4694: -14,-12 + 4695: -14,-11 + 4696: -14,-10 + 4697: -14,-9 + 4698: -14,-8 + 4699: -14,-7 + 4707: -8,-5 + 4708: -8,-4 + 4709: -8,-3 + 4785: 14,-11 + 4786: 9,-8 + 4787: 9,-7 + 4788: 9,-6 + 4791: 8,-4 + 4792: 8,-3 + 4793: 8,-2 + 4794: 8,-1 + 4797: 7,1 + 4798: 7,2 + 4799: 7,3 + 4800: 7,4 + 4801: 7,5 + 4802: 7,6 + 4803: 7,12 + 4804: 7,13 + 4805: 7,14 + 4806: 7,15 + 4807: 7,16 + 4808: 7,17 + 4809: 7,18 + 4810: 7,19 + 4811: 7,20 + 4846: 18,20 + 4870: 28,12 + 4871: 28,13 + 4872: 28,14 + 4873: 28,15 + 4874: 28,16 + 4875: 28,17 + 4876: 28,18 + 4877: 28,19 + 4878: 28,20 + 4879: 28,21 + 4905: 7,24 + 4906: 7,25 + 4907: 7,26 + 4908: 7,27 + 4909: 7,28 + 4910: 7,29 + 4911: 7,30 + 4912: 7,31 + 4913: 7,32 + 4914: 7,33 + 4919: 11,36 + 4920: 13,41 + 4921: 12,43 + 4922: 12,44 + 4923: 12,45 + 4924: 12,46 + 4925: 12,47 + 4926: 12,50 + 4993: 23,48 + 4994: 23,47 + 4995: 23,46 + 4996: 23,45 + 5128: -31,22 + 5129: -31,23 + 5130: -31,24 + 5131: -31,25 + 5132: -31,26 + 5133: -31,27 + 5134: -31,28 + 5135: -31,29 + 5136: -31,30 + 5137: -31,31 + 5138: -31,32 + 5139: -31,33 + 5140: -31,34 + 5141: -31,35 + 5142: -31,36 + 5143: -31,37 + 5144: -31,38 + 5145: -30,42 + 5146: -30,43 + 5147: -30,44 + 5148: -30,45 + 5149: -30,46 + 5150: -30,47 + 5151: -30,48 + 5162: -22,40 + 5222: -22,20 + 5223: -22,19 + 5224: -22,18 + 5225: -22,17 + 5226: -22,16 + 5227: -22,15 + 5228: -22,14 + 5229: -22,13 + 5230: -22,12 + 5231: -22,11 + 5232: -22,10 + 5233: -22,9 + 5234: -22,8 + 5235: -22,7 + 5236: -22,6 + 5237: -22,5 + 5238: -22,4 + 5252: -12,24 + 5253: -12,25 + 5254: -12,26 + 5255: -12,27 + 5256: -12,28 + 5260: -13,30 + 5264: -11,32 + 5265: -11,33 + 5266: -11,34 + 5267: -11,35 + 5280: -37,4 + 5281: -37,5 + 5282: -37,6 + 5339: -72,4 + 5340: -72,3 + 5341: -72,2 + 5342: -72,1 + 5343: -72,0 + 5344: -72,-1 + 5371: -72,-24 + 5372: -72,-23 + 5373: -72,-22 + 5374: -72,-21 + 5375: -72,-20 + 5376: -72,-19 + 5377: -72,-18 + 5378: -72,-17 + 5379: -72,-16 + 5380: -72,-15 + 5381: -72,-14 + 5382: -72,-13 + 5383: -72,-12 + 5384: -72,-11 + 5385: -72,-10 + 5386: -72,-9 + 5387: -72,-8 + 5388: -72,-7 + 5389: -72,-6 + 5390: -72,-5 + 5427: -37,-4 + 5428: -37,-3 + 5429: -37,-2 + 5430: -37,-1 + 5631: 0,-1 + 5647: 11,35 + 5648: 11,38 + 5649: 11,39 + 6069: 7,11 + 6071: 7,10 + 6072: 7,9 + 6073: 7,8 + 6074: 7,7 + 6105: -74,-28 + 6106: -74,-29 + 6107: -74,-30 + 6108: -74,-31 + 6109: -74,-32 + 6142: -83,-40 + 6143: -83,-39 + 6144: -83,-38 + 6150: -79,-36 + 6151: -79,-35 + 6152: -79,-34 + 6160: 14,-17 + 6161: 14,-13 + 6987: 14,-12 + 6988: 14,-10 + 6996: 9,-9 + 6997: 9,-14 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 6005: -25,-30 - 6006: -25,-29 - 6007: -25,-28 - 6008: -25,-27 - 6009: -25,-26 - 6010: -25,-25 - 6015: -22,-23 - 6016: -22,-22 - 6017: -22,-21 - 6051: 0,-30 - 6052: 0,-29 - 6053: 0,-28 - 6054: 0,-27 - 6055: 0,-26 - 6056: 0,-25 - 6063: -5,-23 - 6064: -5,-22 - 6065: -5,-21 - 6066: -5,-20 - 6067: -5,-19 + 5879: -25,-30 + 5880: -25,-29 + 5881: -25,-28 + 5882: -25,-27 + 5883: -25,-26 + 5884: -25,-25 + 5889: -22,-23 + 5890: -22,-22 + 5891: -22,-21 + 5925: 0,-30 + 5926: 0,-29 + 5927: 0,-28 + 5928: 0,-27 + 5929: 0,-26 + 5930: 0,-25 + 5937: -5,-23 + 5938: -5,-22 + 5939: -5,-21 + 5940: -5,-20 + 5941: -5,-19 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 4760: 3,3 - 4761: 2,3 - 4762: 1,3 - 4763: 0,3 - 4764: -2,3 - 4765: -3,3 - 4766: -4,3 - 4767: -5,3 - 4768: -6,3 - 4769: -7,3 - 4770: -8,3 - 4771: -1,3 - 4772: -9,3 - 4773: -10,3 - 4774: -11,3 - 4775: -12,3 - 4776: -13,3 - 4777: -14,3 - 4778: -15,3 - 4779: -16,3 - 4780: -17,3 - 4781: -18,3 - 4782: -19,3 - 4783: -20,3 - 4784: -21,3 - 4837: -17,-2 - 4838: -16,-2 - 4839: -15,-2 - 4840: -14,-2 - 4841: -13,-2 - 4842: -12,-2 - 4843: -11,-2 - 4844: -10,-2 - 4845: -9,-2 - 4846: 4,3 - 4871: -36,3 - 4872: -35,3 - 4873: -34,3 - 4874: -33,3 - 4875: -32,3 - 4876: -31,3 - 4877: -30,3 - 4878: -29,3 - 4879: -28,3 - 4880: -27,3 - 4881: -26,3 - 4882: -25,3 - 4905: 13,-9 - 4906: 12,-9 - 4909: 10,-10 - 5009: 26,23 - 5010: 25,23 - 5013: 23,24 - 5014: 22,24 - 5015: 21,24 - 5016: 20,24 - 5017: 19,24 - 5018: 18,24 - 5019: 17,24 - 5020: 16,24 - 5021: 15,24 - 5022: 14,24 - 5025: 12,23 - 5026: 11,23 - 5027: 10,23 - 5028: 9,23 - 5029: 8,23 - 5076: 5,36 - 5077: 6,36 - 5078: 7,36 - 5079: 8,36 - 5088: 9,47 - 5097: 13,49 - 5098: 14,49 - 5099: 15,49 - 5100: 16,49 - 5101: 17,49 - 5102: 18,49 - 5103: 19,49 - 5104: 20,49 - 5105: 21,49 - 5106: 22,49 - 5127: 11,51 - 5128: 10,51 - 5129: 9,51 - 5132: 5,51 - 5133: 4,51 - 5134: 3,51 - 5135: 2,51 - 5136: 1,51 - 5137: 0,51 - 5138: -1,51 - 5139: -12,51 - 5140: -13,51 - 5141: -14,51 - 5142: -15,51 - 5143: -17,52 - 5144: -18,52 - 5145: -19,52 - 5146: -20,52 - 5147: -21,52 - 5148: -22,52 - 5149: -23,52 - 5150: -24,52 - 5151: -25,52 - 5152: -26,52 - 5153: -27,52 - 5154: -28,52 - 5155: -29,52 - 5156: -30,52 - 5157: -31,52 - 5158: -32,52 - 5229: -34,21 - 5230: -35,21 - 5246: -24,21 - 5247: -25,21 - 5248: -26,21 - 5249: -27,21 - 5250: -28,21 - 5251: -29,21 - 5252: -30,21 - 5280: -29,41 - 5281: -28,41 - 5282: -27,41 - 5283: -26,41 - 5284: -25,41 - 5285: -24,41 - 5286: -23,41 - 5304: -21,23 - 5305: -20,23 - 5306: -19,23 - 5307: -18,23 - 5308: -17,23 - 5309: -16,23 - 5310: -15,23 - 5311: -11,23 - 5312: -10,23 - 5313: -9,23 - 5314: -8,23 - 5315: -7,23 - 5316: -6,23 - 5317: -5,23 - 5318: -4,23 - 5319: -2,24 - 5320: -1,24 - 5321: 1,23 - 5322: 2,23 - 5323: 3,23 - 5324: 4,23 - 5395: -12,36 - 5396: -13,36 - 5397: -14,36 - 5412: -39,8 - 5413: -40,8 - 5414: -41,8 - 5415: -42,8 - 5416: -43,8 - 5433: -41,-3 - 5434: -42,-3 - 5435: -43,-3 - 5436: -44,-3 - 5437: -45,-3 - 5438: -46,-3 - 5439: -47,-3 - 5440: -48,-3 - 5441: -49,-3 - 5442: -50,-3 - 5443: -52,-2 - 5444: -53,-2 - 5445: -54,-2 - 5446: -55,-2 - 5447: -56,-2 - 5448: -57,-2 - 5449: -58,-2 - 5450: -59,-2 - 5451: -60,-2 - 5452: -61,-2 - 5453: -62,-2 - 5454: -63,-2 - 5455: -64,-2 - 5456: -65,-2 - 5457: -66,-2 - 5458: -67,-2 - 5459: -68,-2 - 5460: -69,-2 - 5461: -70,-2 - 5462: -71,-2 - 5463: -73,5 - 5780: 6,51 - 5786: -10,52 - 5787: -9,52 - 6201: -7,51 - 6204: -5,52 - 6207: -2,51 - 6208: -4,52 - 6246: -76,-31 - 6247: -78,-31 - 6248: -77,-31 - 6249: -79,-31 - 6250: -80,-31 - 6253: -82,-30 - 6254: -83,-30 - 6255: -84,-30 - 6298: 6,-17 - 6610: 10,-15 + 4650: 3,3 + 4651: 2,3 + 4652: 1,3 + 4653: 0,3 + 4654: -2,3 + 4655: -3,3 + 4656: -4,3 + 4657: -5,3 + 4658: -6,3 + 4659: -7,3 + 4660: -8,3 + 4661: -1,3 + 4662: -9,3 + 4663: -10,3 + 4664: -11,3 + 4665: -12,3 + 4666: -13,3 + 4667: -14,3 + 4668: -15,3 + 4669: -16,3 + 4670: -17,3 + 4671: -18,3 + 4672: -19,3 + 4673: -20,3 + 4674: -21,3 + 4727: -17,-2 + 4728: -16,-2 + 4729: -15,-2 + 4730: -14,-2 + 4731: -13,-2 + 4732: -12,-2 + 4733: -11,-2 + 4734: -10,-2 + 4735: -9,-2 + 4736: 4,3 + 4761: -36,3 + 4762: -35,3 + 4763: -34,3 + 4764: -33,3 + 4765: -32,3 + 4766: -31,3 + 4767: -30,3 + 4768: -29,3 + 4769: -28,3 + 4770: -27,3 + 4771: -26,3 + 4772: -25,3 + 4883: 26,23 + 4884: 25,23 + 4887: 23,24 + 4888: 22,24 + 4889: 21,24 + 4890: 20,24 + 4891: 19,24 + 4892: 18,24 + 4893: 17,24 + 4894: 16,24 + 4895: 15,24 + 4896: 14,24 + 4899: 12,23 + 4900: 11,23 + 4901: 10,23 + 4902: 9,23 + 4903: 8,23 + 4950: 5,36 + 4951: 6,36 + 4952: 7,36 + 4953: 8,36 + 4962: 9,47 + 4971: 13,49 + 4972: 14,49 + 4973: 15,49 + 4974: 16,49 + 4975: 17,49 + 4976: 18,49 + 4977: 19,49 + 4978: 20,49 + 4979: 21,49 + 4980: 22,49 + 5001: 11,51 + 5002: 10,51 + 5003: 9,51 + 5006: 5,51 + 5007: 4,51 + 5008: 3,51 + 5009: 2,51 + 5010: 1,51 + 5011: 0,51 + 5012: -1,51 + 5013: -12,51 + 5014: -13,51 + 5015: -14,51 + 5016: -15,51 + 5017: -17,52 + 5018: -18,52 + 5019: -19,52 + 5020: -20,52 + 5021: -21,52 + 5022: -22,52 + 5023: -23,52 + 5024: -24,52 + 5025: -25,52 + 5026: -26,52 + 5027: -27,52 + 5028: -28,52 + 5029: -29,52 + 5030: -30,52 + 5031: -31,52 + 5032: -32,52 + 5103: -34,21 + 5104: -35,21 + 5120: -24,21 + 5121: -25,21 + 5122: -26,21 + 5123: -27,21 + 5124: -28,21 + 5125: -29,21 + 5126: -30,21 + 5154: -29,41 + 5155: -28,41 + 5156: -27,41 + 5157: -26,41 + 5158: -25,41 + 5159: -24,41 + 5160: -23,41 + 5178: -21,23 + 5179: -20,23 + 5180: -19,23 + 5181: -18,23 + 5182: -17,23 + 5183: -16,23 + 5184: -15,23 + 5185: -11,23 + 5186: -10,23 + 5187: -9,23 + 5188: -8,23 + 5189: -7,23 + 5190: -6,23 + 5191: -5,23 + 5192: -4,23 + 5193: -2,24 + 5194: -1,24 + 5195: 1,23 + 5196: 2,23 + 5197: 3,23 + 5198: 4,23 + 5269: -12,36 + 5270: -13,36 + 5271: -14,36 + 5286: -39,8 + 5287: -40,8 + 5288: -41,8 + 5289: -42,8 + 5290: -43,8 + 5307: -41,-3 + 5308: -42,-3 + 5309: -43,-3 + 5310: -44,-3 + 5311: -45,-3 + 5312: -46,-3 + 5313: -47,-3 + 5314: -48,-3 + 5315: -49,-3 + 5316: -50,-3 + 5317: -52,-2 + 5318: -53,-2 + 5319: -54,-2 + 5320: -55,-2 + 5321: -56,-2 + 5322: -57,-2 + 5323: -58,-2 + 5324: -59,-2 + 5325: -60,-2 + 5326: -61,-2 + 5327: -62,-2 + 5328: -63,-2 + 5329: -64,-2 + 5330: -65,-2 + 5331: -66,-2 + 5332: -67,-2 + 5333: -68,-2 + 5334: -69,-2 + 5335: -70,-2 + 5336: -71,-2 + 5337: -73,5 + 5654: 6,51 + 5660: -10,52 + 5661: -9,52 + 6075: -7,51 + 6078: -5,52 + 6081: -2,51 + 6082: -4,52 + 6120: -76,-31 + 6121: -78,-31 + 6122: -77,-31 + 6123: -79,-31 + 6124: -80,-31 + 6127: -82,-30 + 6128: -83,-30 + 6129: -84,-30 + 6979: 6,-17 + 6990: 13,-9 + 6991: 12,-9 + 6994: 10,-10 + 7002: 10,-15 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 5972: -19,-18 - 5973: -20,-18 - 5974: -21,-18 - 5975: -22,-18 - 5976: -23,-18 - 5977: -24,-18 - 5978: -25,-18 - 5979: -26,-18 - 5987: -28,-24 - 5988: -29,-24 - 5989: -30,-24 - 5990: -31,-24 - 6058: -1,-24 - 6059: -2,-24 - 6060: -3,-24 - 6061: -4,-24 - 6069: -6,-18 - 6070: -7,-18 - 6071: -8,-18 - 6072: -9,-18 - 6073: -10,-18 - 6074: -11,-18 - 6075: -12,-18 - 6076: -13,-18 + 5846: -19,-18 + 5847: -20,-18 + 5848: -21,-18 + 5849: -22,-18 + 5850: -23,-18 + 5851: -24,-18 + 5852: -25,-18 + 5853: -26,-18 + 5861: -28,-24 + 5862: -29,-24 + 5863: -30,-24 + 5864: -31,-24 + 5932: -1,-24 + 5933: -2,-24 + 5934: -3,-24 + 5935: -4,-24 + 5943: -6,-18 + 5944: -7,-18 + 5945: -8,-18 + 5946: -9,-18 + 5947: -10,-18 + 5948: -11,-18 + 5949: -12,-18 + 5950: -13,-18 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 4811: -13,-6 - 4812: -12,-6 - 4813: -11,-6 - 4814: -10,-6 - 4815: -9,-6 - 4847: 4,0 - 4848: 3,0 - 4849: -8,0 - 4850: -9,0 - 4851: -10,0 - 4852: -11,0 - 4853: -12,0 - 4854: -13,0 - 4855: -14,0 - 4856: -15,0 - 4857: -16,0 - 4858: -17,0 - 4859: -18,0 - 4860: -26,0 - 4861: -27,0 - 4862: -28,0 - 4863: -29,0 - 4864: -30,0 - 4865: -31,0 - 4866: -32,0 - 4867: -33,0 - 4868: -34,0 - 4869: -35,0 - 4870: -36,0 - 4957: 4,20 - 4959: 8,21 - 4960: 9,21 - 4961: 10,21 - 4962: 11,21 - 4963: 12,21 - 4964: 13,21 - 4968: 15,19 - 4969: 16,19 - 4970: 17,19 - 4974: 19,21 - 4975: 20,21 - 4976: 21,21 - 4977: 22,21 - 4978: 23,21 - 4979: 24,21 - 4980: 25,21 - 4993: 26,11 - 4994: 27,11 - 5042: 8,34 - 5043: 9,34 - 5044: 10,34 - 5085: 9,44 - 5107: 13,48 - 5108: 14,48 - 5109: 15,48 - 5110: 16,48 - 5111: 17,48 - 5112: 18,48 - 5113: 19,48 - 5114: 20,48 - 5115: 22,44 - 5160: -29,49 - 5161: -28,49 - 5162: -27,49 - 5163: -26,49 - 5164: -25,49 - 5165: -24,49 - 5166: -23,49 - 5167: -22,49 - 5168: -21,49 - 5169: -20,49 - 5170: -19,49 - 5171: -18,49 - 5172: -17,49 - 5173: -16,49 - 5174: -15,49 - 5175: -14,49 - 5176: -13,49 - 5177: -12,49 - 5178: -11,49 - 5179: -10,49 - 5180: -9,49 - 5181: -8,49 - 5182: -7,49 - 5183: -6,49 - 5184: -5,49 - 5185: -4,49 - 5186: -3,49 - 5187: -2,49 - 5188: -1,49 - 5189: 0,49 - 5190: 1,49 - 5191: 2,49 - 5192: 3,49 - 5193: 4,49 - 5194: 5,49 - 5195: 6,49 - 5196: 7,49 - 5197: 8,49 - 5198: 9,49 - 5233: -35,18 - 5234: -34,18 - 5235: -33,18 - 5236: -32,18 - 5237: -31,18 - 5238: -30,18 - 5239: -29,18 - 5240: -28,18 - 5241: -27,18 - 5242: -26,18 - 5243: -25,18 - 5290: -23,39 - 5291: -24,39 - 5292: -25,39 - 5293: -26,39 - 5294: -27,39 - 5295: -28,39 - 5296: -29,39 - 5297: -30,39 - 5326: 2,21 - 5327: 1,21 - 5328: 0,21 - 5329: -1,21 - 5330: -2,21 - 5331: -3,21 - 5332: -4,21 - 5333: -5,21 - 5334: -7,20 - 5335: -8,20 - 5336: -9,20 - 5337: -10,20 - 5338: -13,21 - 5339: -14,21 - 5340: -15,21 - 5341: -16,21 - 5342: -17,21 - 5343: -18,21 - 5344: -19,21 - 5345: -20,21 - 5346: -21,21 - 5367: -12,21 - 5388: -12,31 - 5423: -43,3 - 5424: -42,3 - 5425: -41,3 - 5494: -74,-25 - 5495: -73,-25 - 5519: -71,-4 - 5520: -70,-4 - 5521: -69,-4 - 5522: -68,-4 - 5523: -67,-4 - 5524: -66,-4 - 5525: -65,-4 - 5526: -64,-4 - 5527: -63,-4 - 5528: -62,-4 - 5529: -61,-4 - 5530: -60,-4 - 5531: -59,-4 - 5532: -58,-4 - 5533: -57,-4 - 5534: -56,-4 - 5535: -55,-4 - 5536: -54,-4 - 5537: -53,-4 - 5538: -51,-5 - 5539: -50,-5 - 5540: -49,-5 - 5541: -48,-5 - 5542: -47,-5 - 5543: -46,-5 - 5544: -45,-5 - 5545: -44,-5 - 5546: -43,-5 - 5547: -42,-5 - 5548: -41,-5 - 5549: -40,-5 - 5550: -39,-5 - 5551: -38,-5 - 5734: -25,0 - 5735: -24,0 - 5736: -23,0 - 5737: -22,0 - 5738: -21,0 - 5739: -20,0 - 5740: -19,0 - 5760: -1,-2 - 5761: -2,-2 - 5762: -7,0 - 5763: -6,0 - 5764: -5,0 - 5765: -4,0 - 5766: 1,0 - 5767: 2,0 - 6237: -75,-33 - 6238: -76,-33 - 6239: -77,-33 - 6240: -78,-33 - 6266: -84,-41 - 6272: -82,-37 - 6273: -81,-37 - 6274: -80,-37 - 6302: 6,-19 - 6303: 7,-19 - 6304: 8,-19 - 6307: 10,-18 - 6308: 11,-18 - 6309: 12,-18 - 6310: 13,-18 - 6608: 10,-13 + 4701: -13,-6 + 4702: -12,-6 + 4703: -11,-6 + 4704: -10,-6 + 4705: -9,-6 + 4737: 4,0 + 4738: 3,0 + 4739: -8,0 + 4740: -9,0 + 4741: -10,0 + 4742: -11,0 + 4743: -12,0 + 4744: -13,0 + 4745: -14,0 + 4746: -15,0 + 4747: -16,0 + 4748: -17,0 + 4749: -18,0 + 4750: -26,0 + 4751: -27,0 + 4752: -28,0 + 4753: -29,0 + 4754: -30,0 + 4755: -31,0 + 4756: -32,0 + 4757: -33,0 + 4758: -34,0 + 4759: -35,0 + 4760: -36,0 + 4831: 4,20 + 4833: 8,21 + 4834: 9,21 + 4835: 10,21 + 4836: 11,21 + 4837: 12,21 + 4838: 13,21 + 4842: 15,19 + 4843: 16,19 + 4844: 17,19 + 4848: 19,21 + 4849: 20,21 + 4850: 21,21 + 4851: 22,21 + 4852: 23,21 + 4853: 24,21 + 4854: 25,21 + 4867: 26,11 + 4868: 27,11 + 4916: 8,34 + 4917: 9,34 + 4918: 10,34 + 4959: 9,44 + 4981: 13,48 + 4982: 14,48 + 4983: 15,48 + 4984: 16,48 + 4985: 17,48 + 4986: 18,48 + 4987: 19,48 + 4988: 20,48 + 4989: 22,44 + 5034: -29,49 + 5035: -28,49 + 5036: -27,49 + 5037: -26,49 + 5038: -25,49 + 5039: -24,49 + 5040: -23,49 + 5041: -22,49 + 5042: -21,49 + 5043: -20,49 + 5044: -19,49 + 5045: -18,49 + 5046: -17,49 + 5047: -16,49 + 5048: -15,49 + 5049: -14,49 + 5050: -13,49 + 5051: -12,49 + 5052: -11,49 + 5053: -10,49 + 5054: -9,49 + 5055: -8,49 + 5056: -7,49 + 5057: -6,49 + 5058: -5,49 + 5059: -4,49 + 5060: -3,49 + 5061: -2,49 + 5062: -1,49 + 5063: 0,49 + 5064: 1,49 + 5065: 2,49 + 5066: 3,49 + 5067: 4,49 + 5068: 5,49 + 5069: 6,49 + 5070: 7,49 + 5071: 8,49 + 5072: 9,49 + 5107: -35,18 + 5108: -34,18 + 5109: -33,18 + 5110: -32,18 + 5111: -31,18 + 5112: -30,18 + 5113: -29,18 + 5114: -28,18 + 5115: -27,18 + 5116: -26,18 + 5117: -25,18 + 5164: -23,39 + 5165: -24,39 + 5166: -25,39 + 5167: -26,39 + 5168: -27,39 + 5169: -28,39 + 5170: -29,39 + 5171: -30,39 + 5200: 2,21 + 5201: 1,21 + 5202: 0,21 + 5203: -1,21 + 5204: -2,21 + 5205: -3,21 + 5206: -4,21 + 5207: -5,21 + 5208: -7,20 + 5209: -8,20 + 5210: -9,20 + 5211: -10,20 + 5212: -13,21 + 5213: -14,21 + 5214: -15,21 + 5215: -16,21 + 5216: -17,21 + 5217: -18,21 + 5218: -19,21 + 5219: -20,21 + 5220: -21,21 + 5241: -12,21 + 5262: -12,31 + 5297: -43,3 + 5298: -42,3 + 5299: -41,3 + 5368: -74,-25 + 5369: -73,-25 + 5393: -71,-4 + 5394: -70,-4 + 5395: -69,-4 + 5396: -68,-4 + 5397: -67,-4 + 5398: -66,-4 + 5399: -65,-4 + 5400: -64,-4 + 5401: -63,-4 + 5402: -62,-4 + 5403: -61,-4 + 5404: -60,-4 + 5405: -59,-4 + 5406: -58,-4 + 5407: -57,-4 + 5408: -56,-4 + 5409: -55,-4 + 5410: -54,-4 + 5411: -53,-4 + 5412: -51,-5 + 5413: -50,-5 + 5414: -49,-5 + 5415: -48,-5 + 5416: -47,-5 + 5417: -46,-5 + 5418: -45,-5 + 5419: -44,-5 + 5420: -43,-5 + 5421: -42,-5 + 5422: -41,-5 + 5423: -40,-5 + 5424: -39,-5 + 5425: -38,-5 + 5608: -25,0 + 5609: -24,0 + 5610: -23,0 + 5611: -22,0 + 5612: -21,0 + 5613: -20,0 + 5614: -19,0 + 5634: -1,-2 + 5635: -2,-2 + 5636: -7,0 + 5637: -6,0 + 5638: -5,0 + 5639: -4,0 + 5640: 1,0 + 5641: 2,0 + 6111: -75,-33 + 6112: -76,-33 + 6113: -77,-33 + 6114: -78,-33 + 6140: -84,-41 + 6146: -82,-37 + 6147: -81,-37 + 6148: -80,-37 + 6155: 6,-19 + 6156: 7,-19 + 6983: 10,-18 + 6984: 11,-18 + 6985: 12,-18 + 6986: 13,-18 + 7004: 10,-13 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 5999: -31,-31 - 6000: -30,-31 - 6001: -29,-31 - 6002: -28,-31 - 6003: -26,-31 - 6012: -24,-24 - 6013: -23,-24 - 6019: -21,-20 - 6020: -20,-20 - 6021: -19,-20 - 6022: -18,-20 - 6023: -17,-20 - 6024: -16,-20 - 6025: -15,-20 - 6026: -14,-20 - 6027: -13,-20 - 6028: -12,-20 - 6029: -11,-20 - 6035: -9,-24 - 6036: -8,-24 - 6045: -6,-31 - 6046: -4,-31 - 6047: -3,-31 - 6048: -2,-31 - 6049: -1,-31 + 5873: -31,-31 + 5874: -30,-31 + 5875: -29,-31 + 5876: -28,-31 + 5877: -26,-31 + 5886: -24,-24 + 5887: -23,-24 + 5893: -21,-20 + 5894: -20,-20 + 5895: -19,-20 + 5896: -18,-20 + 5897: -17,-20 + 5898: -16,-20 + 5899: -15,-20 + 5900: -14,-20 + 5901: -13,-20 + 5902: -12,-20 + 5903: -11,-20 + 5909: -9,-24 + 5910: -8,-24 + 5919: -6,-31 + 5920: -4,-31 + 5921: -3,-31 + 5922: -2,-31 + 5923: -1,-31 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 4785: -24,4 - 4786: -24,5 - 4787: -24,6 - 4788: -24,7 - 4789: -24,8 - 4790: -24,9 - 4791: -24,10 - 4792: -24,11 - 4793: -24,12 - 4794: -24,13 - 4795: -24,14 - 4796: -24,15 - 4797: -24,16 - 4798: -24,17 - 4821: -18,-17 - 4822: -18,-16 - 4823: -18,-15 - 4824: -18,-14 - 4825: -18,-13 - 4826: -18,-12 - 4827: -18,-11 - 4828: -18,-10 - 4829: -18,-9 - 4830: -18,-8 - 4831: -18,-7 - 4832: -18,-6 - 4833: -18,-5 - 4834: -18,-4 - 4835: -18,-3 - 4886: 5,-1 - 4887: 5,-2 - 4888: 5,-3 - 4889: 5,-4 - 4890: 5,-5 - 4891: 5,-6 - 4892: 5,-7 - 4895: 6,-9 - 4896: 6,-10 - 4897: 6,-11 - 4898: 6,-12 - 4899: 6,-13 - 4900: 6,-14 - 4939: 5,4 - 4940: 5,5 - 4941: 5,6 - 4942: 5,7 - 4943: 5,8 - 4944: 5,9 - 4945: 5,10 - 4946: 5,11 - 4947: 5,12 - 4948: 5,13 - 4949: 5,14 - 4950: 5,15 - 4951: 5,16 - 4952: 5,17 - 4953: 5,18 - 4954: 5,19 - 4966: 14,20 - 4982: 26,20 - 4983: 26,19 - 4984: 26,18 - 4985: 26,17 - 4986: 26,16 - 4989: 25,14 - 4990: 25,13 - 4991: 25,12 - 5053: 10,48 - 5054: 8,46 - 5055: 8,45 - 5056: 10,43 - 5057: 10,42 - 5058: 10,41 - 5059: 10,40 - 5060: 9,38 - 5061: 9,37 - 5062: 4,35 - 5063: 4,34 - 5064: 5,32 - 5065: 5,31 - 5066: 5,30 - 5067: 5,29 - 5068: 5,28 - 5069: 5,27 - 5070: 5,26 - 5071: 5,25 - 5072: 5,24 - 5116: 21,47 - 5117: 21,46 - 5118: 21,45 - 5201: -33,51 - 5202: -33,50 - 5203: -33,49 - 5204: -33,48 - 5205: -33,47 - 5206: -33,46 - 5207: -33,45 - 5208: -33,44 - 5209: -33,43 - 5210: -33,42 - 5211: -33,41 - 5212: -33,40 - 5213: -33,39 - 5214: -33,38 - 5215: -33,37 - 5216: -33,31 - 5217: -33,30 - 5218: -33,29 - 5219: -33,28 - 5220: -33,27 - 5221: -33,26 - 5222: -33,25 - 5223: -33,24 - 5224: -33,23 - 5225: -33,22 - 5226: -36,20 - 5227: -36,19 - 5299: -23,22 - 5300: -23,23 - 5371: -14,24 - 5372: -14,25 - 5373: -14,26 - 5374: -14,27 - 5375: -14,28 - 5376: -14,29 - 5377: -14,30 - 5399: -15,35 - 5400: -15,34 - 5401: -15,33 - 5402: -15,32 - 5418: -44,7 - 5419: -44,6 - 5420: -44,5 - 5421: -44,4 - 5427: -40,2 - 5428: -40,1 - 5429: -40,0 - 5430: -40,-1 - 5431: -40,-2 - 5472: -74,-1 - 5473: -74,-2 - 5474: -74,-3 - 5475: -74,-4 - 5476: -74,-5 - 5477: -75,-7 - 5478: -75,-8 - 5479: -75,-9 - 5480: -75,-10 - 5481: -75,-11 - 5482: -75,-12 - 5483: -75,-13 - 5484: -75,-14 - 5485: -75,-15 - 5486: -75,-16 - 5487: -75,-17 - 5488: -75,-18 - 5489: -75,-19 - 5490: -75,-20 - 5491: -75,-21 - 5492: -75,-22 - 5725: -75,-24 - 5728: -75,-23 - 5756: -3,-1 - 6242: -75,-28 - 6243: -75,-29 - 6244: -75,-30 - 6257: -85,-31 - 6258: -85,-32 - 6259: -85,-33 - 6260: -85,-34 - 6261: -85,-35 - 6262: -85,-37 - 6263: -85,-38 - 6264: -85,-39 - 6296: 7,-16 - 6300: 5,-18 - 6607: 11,-14 - 6730: -74,4 - 6731: -74,3 - 6732: -74,2 - 6733: -74,1 - 6734: -74,0 + 4675: -24,4 + 4676: -24,5 + 4677: -24,6 + 4678: -24,7 + 4679: -24,8 + 4680: -24,9 + 4681: -24,10 + 4682: -24,11 + 4683: -24,12 + 4684: -24,13 + 4685: -24,14 + 4686: -24,15 + 4687: -24,16 + 4688: -24,17 + 4711: -18,-17 + 4712: -18,-16 + 4713: -18,-15 + 4714: -18,-14 + 4715: -18,-13 + 4716: -18,-12 + 4717: -18,-11 + 4718: -18,-10 + 4719: -18,-9 + 4720: -18,-8 + 4721: -18,-7 + 4722: -18,-6 + 4723: -18,-5 + 4724: -18,-4 + 4725: -18,-3 + 4776: 5,-1 + 4777: 5,-2 + 4778: 5,-3 + 4779: 5,-4 + 4780: 5,-5 + 4781: 5,-6 + 4782: 5,-7 + 4813: 5,4 + 4814: 5,5 + 4815: 5,6 + 4816: 5,7 + 4817: 5,8 + 4818: 5,9 + 4819: 5,10 + 4820: 5,11 + 4821: 5,12 + 4822: 5,13 + 4823: 5,14 + 4824: 5,15 + 4825: 5,16 + 4826: 5,17 + 4827: 5,18 + 4828: 5,19 + 4840: 14,20 + 4856: 26,20 + 4857: 26,19 + 4858: 26,18 + 4859: 26,17 + 4860: 26,16 + 4863: 25,14 + 4864: 25,13 + 4865: 25,12 + 4927: 10,48 + 4928: 8,46 + 4929: 8,45 + 4930: 10,43 + 4931: 10,42 + 4932: 10,41 + 4933: 10,40 + 4934: 9,38 + 4935: 9,37 + 4936: 4,35 + 4937: 4,34 + 4938: 5,32 + 4939: 5,31 + 4940: 5,30 + 4941: 5,29 + 4942: 5,28 + 4943: 5,27 + 4944: 5,26 + 4945: 5,25 + 4946: 5,24 + 4990: 21,47 + 4991: 21,46 + 4992: 21,45 + 5075: -33,51 + 5076: -33,50 + 5077: -33,49 + 5078: -33,48 + 5079: -33,47 + 5080: -33,46 + 5081: -33,45 + 5082: -33,44 + 5083: -33,43 + 5084: -33,42 + 5085: -33,41 + 5086: -33,40 + 5087: -33,39 + 5088: -33,38 + 5089: -33,37 + 5090: -33,31 + 5091: -33,30 + 5092: -33,29 + 5093: -33,28 + 5094: -33,27 + 5095: -33,26 + 5096: -33,25 + 5097: -33,24 + 5098: -33,23 + 5099: -33,22 + 5100: -36,20 + 5101: -36,19 + 5173: -23,22 + 5174: -23,23 + 5245: -14,24 + 5246: -14,25 + 5247: -14,26 + 5248: -14,27 + 5249: -14,28 + 5250: -14,29 + 5251: -14,30 + 5273: -15,35 + 5274: -15,34 + 5275: -15,33 + 5276: -15,32 + 5292: -44,7 + 5293: -44,6 + 5294: -44,5 + 5295: -44,4 + 5301: -40,2 + 5302: -40,1 + 5303: -40,0 + 5304: -40,-1 + 5305: -40,-2 + 5346: -74,-1 + 5347: -74,-2 + 5348: -74,-3 + 5349: -74,-4 + 5350: -74,-5 + 5351: -75,-7 + 5352: -75,-8 + 5353: -75,-9 + 5354: -75,-10 + 5355: -75,-11 + 5356: -75,-12 + 5357: -75,-13 + 5358: -75,-14 + 5359: -75,-15 + 5360: -75,-16 + 5361: -75,-17 + 5362: -75,-18 + 5363: -75,-19 + 5364: -75,-20 + 5365: -75,-21 + 5366: -75,-22 + 5599: -75,-24 + 5602: -75,-23 + 5630: -3,-1 + 6116: -75,-28 + 6117: -75,-29 + 6118: -75,-30 + 6131: -85,-31 + 6132: -85,-32 + 6133: -85,-33 + 6134: -85,-34 + 6135: -85,-35 + 6136: -85,-37 + 6137: -85,-38 + 6138: -85,-39 + 6447: -74,4 + 6448: -74,3 + 6449: -74,2 + 6450: -74,1 + 6451: -74,0 + 6969: 6,-9 + 6970: 6,-10 + 6971: 6,-11 + 6972: 6,-12 + 6973: 6,-13 + 6974: 6,-14 + 6977: 7,-16 + 6981: 5,-18 + 7003: 11,-14 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 5981: -27,-19 - 5982: -27,-20 - 5983: -27,-21 - 5984: -27,-22 - 5985: -27,-23 - 5992: -32,-25 - 5993: -32,-26 - 5994: -32,-27 - 5995: -32,-28 - 5996: -32,-29 - 5997: -32,-30 - 6031: -10,-21 - 6032: -10,-22 - 6033: -10,-23 - 6038: -7,-25 - 6039: -7,-26 - 6040: -7,-27 - 6041: -7,-28 - 6042: -7,-29 - 6043: -7,-30 + 5855: -27,-19 + 5856: -27,-20 + 5857: -27,-21 + 5858: -27,-22 + 5859: -27,-23 + 5866: -32,-25 + 5867: -32,-26 + 5868: -32,-27 + 5869: -32,-28 + 5870: -32,-29 + 5871: -32,-30 + 5905: -10,-21 + 5906: -10,-22 + 5907: -10,-23 + 5912: -7,-25 + 5913: -7,-26 + 5914: -7,-27 + 5915: -7,-28 + 5916: -7,-29 + 5917: -7,-30 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 4749: 3,3 - 4750: 2,3 - 4751: 1,3 - 4752: 0,3 - 4753: -2,3 - 4754: -3,3 - 4755: -4,3 - 4756: -5,3 - 4757: -6,3 - 4758: -7,3 - 4759: -8,3 + 4639: 3,3 + 4640: 2,3 + 4641: 1,3 + 4642: 0,3 + 4643: -2,3 + 4644: -3,3 + 4645: -4,3 + 4646: -5,3 + 4647: -6,3 + 4648: -7,3 + 4649: -8,3 - node: color: '#DE3A3A96' id: BrickTileWhiteBox decals: - 6724: -77,3 - 6725: -78,4 - 6726: -76,4 - 6727: -76,2 - 6728: -78,2 + 6441: -77,3 + 6442: -78,4 + 6443: -76,4 + 6444: -76,2 + 6445: -78,2 - node: color: '#D381C996' id: BrickTileWhiteCornerNe decals: - 6661: -45,-19 - 6662: -49,-14 + 6380: -45,-19 + 6381: -49,-14 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 6747: -7,72 - 6749: -2,72 + 6464: -7,72 + 6466: -2,72 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 5804: 44,24 - 5810: 36,24 - 5819: 30,18 + 5678: 44,24 + 5684: 36,24 + 5693: 30,18 - node: color: '#D381C996' id: BrickTileWhiteCornerNw decals: - 6654: -47,-19 + 6373: -47,-19 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 6739: -13,69 - 6746: -8,72 - 6748: -3,72 + 6456: -13,69 + 6463: -8,72 + 6465: -3,72 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 5806: 42,24 - 5809: 34,24 - 5827: 46,26 - 5830: 46,31 + 5680: 42,24 + 5683: 34,24 + 5701: 46,26 + 5704: 46,31 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe decals: - 6168: 14,10 + 6042: 14,10 - node: color: '#D381C996' id: BrickTileWhiteCornerSe decals: - 6659: -45,-21 - 6678: -53,-14 + 6378: -45,-21 + 6397: -53,-14 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 6757: -2,69 - 6784: -4,66 + 6474: -2,69 + 6501: -4,66 - node: color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 5805: 44,23 - 5811: 36,23 - 5818: 30,17 + 5679: 44,23 + 5685: 36,23 + 5692: 30,17 - node: color: '#D381C996' id: BrickTileWhiteCornerSw decals: - 6657: -47,-21 + 6376: -47,-21 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 6770: -13,67 - 6780: -8,66 + 6487: -13,67 + 6497: -8,66 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 5807: 42,23 - 5808: 34,23 - 5828: 46,25 - 5829: 46,30 + 5681: 42,23 + 5682: 34,23 + 5702: 46,25 + 5703: 46,30 - node: color: '#D381C996' id: BrickTileWhiteEndE decals: - 6695: -51,-20 + 6414: -51,-20 - node: color: '#DE3A3A96' id: BrickTileWhiteEndE decals: - 6786: -3,67 + 6503: -3,67 - node: color: '#EFB34196' id: BrickTileWhiteEndE decals: - 5831: 44,31 - 5832: 44,39 - 5834: 44,49 - 5838: 39,52 + 5705: 44,31 + 5706: 44,39 + 5708: 44,49 + 5712: 39,52 - node: color: '#D381C996' id: BrickTileWhiteEndN decals: - 6677: -53,-13 - 6698: -56,-16 + 6396: -53,-13 + 6417: -56,-16 - node: color: '#DE3A3A96' id: BrickTileWhiteEndN decals: - 6750: -5,72 + 6467: -5,72 - node: color: '#EFB34196' id: BrickTileWhiteEndN decals: - 5820: 32,17 - 5826: 37,21 + 5694: 32,17 + 5700: 37,21 - node: color: '#D381C996' id: BrickTileWhiteEndS decals: - 6694: -49,-20 - 6697: -56,-20 + 6413: -49,-20 + 6416: -56,-20 - node: color: '#EFB34196' id: BrickTileWhiteEndS decals: - 5823: 37,19 - 5835: 45,53 + 5697: 37,19 + 5709: 45,53 - node: color: '#D381C996' id: BrickTileWhiteEndW decals: - 6693: -51,-14 - 6696: -54,-20 - 6699: -56,-14 + 6412: -51,-14 + 6415: -54,-20 + 6418: -56,-14 - node: color: '#EFB34196' id: BrickTileWhiteEndW decals: - 5833: 46,36 + 5707: 46,36 - node: color: '#52B4E996' id: BrickTileWhiteInnerNe decals: - 5620: -6,54 - 5641: -2,56 + 5494: -6,54 + 5515: -2,56 - node: color: '#D381C996' id: BrickTileWhiteInnerNe decals: - 6650: -46,-21 - 6651: -47,-21 - 6652: -47,-20 - 6653: -46,-20 + 6369: -46,-21 + 6370: -47,-21 + 6371: -47,-20 + 6372: -46,-20 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNe decals: - 6774: -12,67 - 6800: -7,69 - 6801: -5,69 - 6804: -6,67 + 6491: -12,67 + 6517: -7,69 + 6518: -5,69 + 6521: -6,67 - node: color: '#52B4E996' id: BrickTileWhiteInnerNw decals: - 5631: -3,54 - 5635: 0,56 - 6176: 16,8 + 5505: -3,54 + 5509: 0,56 + 6050: 16,8 - node: color: '#D381C996' id: BrickTileWhiteInnerNw decals: - 6646: -46,-20 - 6647: -45,-20 - 6648: -45,-21 - 6649: -46,-21 - 6664: -53,-14 + 6365: -46,-20 + 6366: -45,-20 + 6367: -45,-21 + 6368: -46,-21 + 6383: -53,-14 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNw decals: - 6738: -13,68 - 6743: -8,69 - 6798: -3,69 - 6799: -5,69 - 6805: -6,67 + 6455: -13,68 + 6460: -8,69 + 6515: -3,69 + 6516: -5,69 + 6522: -6,67 - node: color: '#1D1D21E6' id: BrickTileWhiteInnerSe decals: - 5582: 11,40 + 5456: 11,40 - node: color: '#52B4E996' id: BrickTileWhiteInnerSe decals: - 5624: -6,58 - 5639: -2,58 - 6170: 14,12 + 5498: -6,58 + 5513: -2,58 + 6044: 14,12 - node: color: '#D381C996' id: BrickTileWhiteInnerSe decals: - 6642: -46,-19 - 6643: -47,-19 - 6644: -47,-20 - 6645: -46,-20 + 6361: -46,-19 + 6362: -47,-19 + 6363: -47,-20 + 6364: -46,-20 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSe decals: - 6773: -12,69 - 6785: -4,67 - 6806: -6,69 + 6490: -12,69 + 6502: -4,67 + 6523: -6,69 - node: color: '#52B4E996' id: BrickTileWhiteInnerSw decals: - 5627: -3,58 - 5637: 0,58 - 6172: 16,12 + 5501: -3,58 + 5511: 0,58 + 6046: 16,12 - node: color: '#D381C996' id: BrickTileWhiteInnerSw decals: - 6638: -45,-19 - 6639: -46,-19 - 6640: -46,-20 - 6641: -45,-20 - 6691: -49,-14 + 6357: -45,-19 + 6358: -46,-19 + 6359: -46,-20 + 6360: -45,-20 + 6410: -49,-14 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSw decals: - 6771: -13,68 - 6779: -8,67 - 6807: -6,69 + 6488: -13,68 + 6496: -8,67 + 6524: -6,69 - node: color: '#1D1D21E6' id: BrickTileWhiteLineE decals: - 5583: 11,37 + 5457: 11,37 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 5621: -6,55 - 5622: -6,56 - 5623: -6,57 - 5640: -2,57 - 6169: 14,11 + 5495: -6,55 + 5496: -6,56 + 5497: -6,57 + 5514: -2,57 + 6043: 14,11 - node: color: '#D381C996' id: BrickTileWhiteLineE decals: - 6660: -45,-20 - 6672: -49,-19 - 6673: -49,-18 - 6674: -49,-17 - 6675: -49,-16 - 6676: -49,-15 - 6681: -56,-17 - 6682: -56,-18 - 6683: -56,-19 + 6379: -45,-20 + 6391: -49,-19 + 6392: -49,-18 + 6393: -49,-17 + 6394: -49,-16 + 6395: -49,-15 + 6400: -56,-17 + 6401: -56,-18 + 6402: -56,-19 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 6751: -7,71 - 6752: -7,70 - 6753: -5,71 - 6754: -5,70 - 6755: -2,71 - 6756: -2,70 - 6772: -12,68 - 6808: -6,68 + 6468: -7,71 + 6469: -7,70 + 6470: -5,71 + 6471: -5,70 + 6472: -2,71 + 6473: -2,70 + 6489: -12,68 + 6525: -6,68 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 5821: 32,16 - 5824: 37,20 - 5836: 45,54 + 5695: 32,16 + 5698: 37,20 + 5710: 45,54 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 5632: -5,54 - 5633: -4,54 - 5634: -1,56 - 6177: 15,8 - 6178: 14,8 - 6179: 13,8 - 6180: 12,8 - 6181: 11,8 - 6182: 10,8 + 5506: -5,54 + 5507: -4,54 + 5508: -1,56 + 6051: 15,8 + 6052: 14,8 + 6053: 13,8 + 6054: 12,8 + 6055: 11,8 + 6056: 10,8 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 6655: -46,-19 - 6663: -50,-14 - 6665: -54,-14 - 6666: -55,-14 - 6684: -53,-20 - 6685: -52,-20 + 6374: -46,-19 + 6382: -50,-14 + 6384: -54,-14 + 6385: -55,-14 + 6403: -53,-20 + 6404: -52,-20 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 6735: -16,68 - 6736: -15,68 - 6737: -14,68 - 6740: -11,69 - 6741: -10,69 - 6742: -9,69 - 6769: -12,69 - 6787: -4,67 - 6788: -5,67 - 6789: -7,67 - 6790: -8,67 - 6791: -9,67 - 6792: -10,67 - 6793: -11,67 - 6802: -4,69 - 6803: -6,69 + 6452: -16,68 + 6453: -15,68 + 6454: -14,68 + 6457: -11,69 + 6458: -10,69 + 6459: -9,69 + 6486: -12,69 + 6504: -4,67 + 6505: -5,67 + 6506: -7,67 + 6507: -8,67 + 6508: -9,67 + 6509: -10,67 + 6510: -11,67 + 6519: -4,69 + 6520: -6,69 - node: color: '#EFB34196' id: BrickTileWhiteLineN decals: - 5812: 35,24 - 5813: 43,24 - 5817: 29,18 + 5686: 35,24 + 5687: 43,24 + 5691: 29,18 - node: color: '#1D1D21E6' id: BrickTileWhiteLineS decals: - 5581: 12,40 + 5455: 12,40 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 5625: -5,58 - 5626: -4,58 - 5638: -1,58 - 6163: 9,10 - 6164: 10,10 - 6165: 11,10 - 6166: 12,10 - 6167: 13,10 - 6171: 15,12 + 5499: -5,58 + 5500: -4,58 + 5512: -1,58 + 6037: 9,10 + 6038: 10,10 + 6039: 11,10 + 6040: 12,10 + 6041: 13,10 + 6045: 15,12 - node: color: '#D381C996' id: BrickTileWhiteLineS decals: - 6658: -46,-21 - 6670: -53,-20 - 6671: -52,-20 - 6679: -54,-14 - 6680: -55,-14 - 6692: -50,-14 + 6377: -46,-21 + 6389: -53,-20 + 6390: -52,-20 + 6398: -54,-14 + 6399: -55,-14 + 6411: -50,-14 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 6758: -3,69 - 6759: -4,69 - 6760: -5,69 - 6761: -7,69 - 6762: -8,69 - 6763: -9,69 - 6764: -10,69 - 6765: -11,69 - 6766: -16,68 - 6767: -15,68 - 6768: -14,68 - 6775: -12,67 - 6776: -11,67 - 6777: -10,67 - 6778: -9,67 - 6781: -7,66 - 6782: -6,66 - 6783: -5,66 + 6475: -3,69 + 6476: -4,69 + 6477: -5,69 + 6478: -7,69 + 6479: -8,69 + 6480: -9,69 + 6481: -10,69 + 6482: -11,69 + 6483: -16,68 + 6484: -15,68 + 6485: -14,68 + 6492: -12,67 + 6493: -11,67 + 6494: -10,67 + 6495: -9,67 + 6498: -7,66 + 6499: -6,66 + 6500: -5,66 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 5814: 43,23 - 5815: 35,23 - 5816: 29,17 + 5688: 43,23 + 5689: 35,23 + 5690: 29,17 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 5628: -3,57 - 5629: -3,56 - 5630: -3,55 - 5636: 0,57 - 6173: 16,11 - 6174: 16,10 - 6175: 16,9 + 5502: -3,57 + 5503: -3,56 + 5504: -3,55 + 5510: 0,57 + 6047: 16,11 + 6048: 16,10 + 6049: 16,9 - node: color: '#D381C996' id: BrickTileWhiteLineW decals: - 6656: -47,-20 - 6667: -56,-17 - 6668: -56,-18 - 6669: -56,-19 - 6686: -49,-19 - 6687: -49,-18 - 6688: -49,-17 - 6689: -49,-16 - 6690: -49,-15 + 6375: -47,-20 + 6386: -56,-17 + 6387: -56,-18 + 6388: -56,-19 + 6405: -49,-19 + 6406: -49,-18 + 6407: -49,-17 + 6408: -49,-16 + 6409: -49,-15 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 6744: -8,70 - 6745: -8,71 - 6794: -5,71 - 6795: -5,70 - 6796: -3,71 - 6797: -3,70 - 6809: -6,68 + 6461: -8,70 + 6462: -8,71 + 6511: -5,71 + 6512: -5,70 + 6513: -3,71 + 6514: -3,70 + 6526: -6,68 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 5822: 32,16 - 5825: 37,20 - 5837: 45,54 + 5696: 32,16 + 5699: 37,20 + 5711: 45,54 - node: color: '#52B4E9FF' id: Bushd3 decals: - 1300: -91.76848,-14.158988 + 1257: -91.76848,-14.158988 - node: color: '#FED83DFF' id: Bushe4 decals: - 4695: -19.990929,32.31389 + 4597: -19.990929,32.31389 - node: color: '#80C71FFF' id: Bushg4 decals: - 4696: -18.095095,32.261772 - 4697: -17.022179,32.29304 - 4698: -17.532595,32.220074 + 4598: -18.095095,32.261772 + 4599: -17.022179,32.29304 + 4600: -17.532595,32.220074 - node: color: '#52B4E9FF' id: Bushi2 decals: - 1288: -90.602745,-13.842273 - 1289: -89.95691,-13.946511 + 1245: -90.602745,-13.842273 + 1246: -89.95691,-13.946511 - node: color: '#52B4E9FF' id: Bushi3 decals: - 1292: -89.89441,-19.33567 - 1299: -89.83191,-18.501759 - 1301: -92.42473,-13.908814 - 1302: -91.32056,-14.0547495 + 1249: -89.89441,-19.33567 + 1256: -89.83191,-18.501759 + 1258: -92.42473,-13.908814 + 1259: -91.32056,-14.0547495 - node: color: '#52B4E9FF' id: Bushi4 decals: - 1290: -90.06107,-14.603217 - 1291: -90.758995,-20.211279 - 1297: -93.758995,-20.034073 - 1298: -93.30066,-20.169582 + 1247: -90.06107,-14.603217 + 1248: -90.758995,-20.211279 + 1254: -93.758995,-20.034073 + 1255: -93.30066,-20.169582 - node: color: '#52B4E9FF' id: Bushj1 decals: - 1284: -90,-20 - 1285: -94.24857,-13.852696 + 1241: -90,-20 + 1242: -94.24857,-13.852696 - node: color: '#52B4E9FF' id: Bushj3 decals: - 1293: -94.196495,-19.929832 - 1294: -94.17566,-18.981258 + 1250: -94.196495,-19.929832 + 1251: -94.17566,-18.981258 - node: color: '#52B4E9FF' id: Bushk1 decals: - 1286: -93.15482,-13.9986315 - 1287: -90.696495,-14.488555 + 1243: -93.15482,-13.9986315 + 1244: -90.696495,-14.488555 - node: color: '#52B4E9FF' id: Bushk2 decals: - 1296: -90.59232,-19.14804 + 1253: -90.59232,-19.14804 - node: color: '#52B4E9FF' id: Bushk3 decals: - 1295: -92.67566,-19.950682 + 1252: -92.67566,-19.950682 - node: color: '#52B4E9FF' id: Bushn1 decals: - 1303: -91.15389,-14.0547495 + 1260: -91.15389,-14.0547495 - node: color: '#C74EBDFF' id: Bushn1 decals: - 4705: 3.113873,14.499957 + 4607: 3.113873,14.499957 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Caution decals: - 7098: 59,74 + 6828: 61,74 - node: color: '#169C9CFF' id: CheckerNESW @@ -2550,48 +2550,48 @@ entities: color: '#79140040' id: CheckerNESW decals: - 5586: 25,37 - 5587: 26,37 + 5460: 25,37 + 5461: 26,37 - node: color: '#835432FF' id: CheckerNESW decals: - 6115: -29,38 - 6116: -28,38 - 6117: -28,37 - 6118: -29,37 - 6119: -30,37 - 6120: -27,37 - 6121: -27,36 - 6122: -28,36 - 6123: -29,36 - 6124: -30,35 - 6125: -29,35 - 6126: -28,35 - 6127: -27,35 + 5989: -29,38 + 5990: -28,38 + 5991: -28,37 + 5992: -29,37 + 5993: -30,37 + 5994: -27,37 + 5995: -27,36 + 5996: -28,36 + 5997: -29,36 + 5998: -30,35 + 5999: -29,35 + 6000: -28,35 + 6001: -27,35 - node: color: '#D58C18BF' id: CheckerNESW decals: - 874: -29,74 - 875: -30,74 - 876: -31,74 - 877: -32,74 - 878: -33,74 - 879: -34,74 - 880: -35,74 - 881: -36,74 - 882: -37,74 - 883: -38,74 - 884: -39,74 - 885: -40,74 - 886: -41,74 + 858: -29,74 + 859: -30,74 + 860: -31,74 + 861: -32,74 + 862: -33,74 + 863: -34,74 + 864: -35,74 + 865: -36,74 + 866: -37,74 + 867: -38,74 + 868: -39,74 + 869: -40,74 + 870: -41,74 - node: color: '#DE3A3A96' id: CheckerNESW decals: - 6084: -34,59 - 6085: -35,59 + 5958: -34,59 + 5959: -35,59 - node: color: '#8932B8FF' id: CheckerNWSE @@ -2606,3839 +2606,3741 @@ entities: color: '#DE3A3A96' id: CheckerNWSE decals: - 928: -37,52 - 929: -37,51 - 930: -36,51 - 931: -36,50 - 932: -38,51 - 933: -39,51 - 934: -40,51 - 935: -41,51 - 936: -42,51 - 937: -43,51 - 938: -44,51 - 5604: -4,-9 - 5605: -3,-9 - 5606: -3,-8 - 5607: -3,-7 - 5608: -3,-6 - 5609: -3,-5 - 5610: -2,-5 - 5611: -4,-5 - 5612: -5,-5 + 912: -37,52 + 913: -37,51 + 914: -36,51 + 915: -36,50 + 916: -38,51 + 917: -39,51 + 918: -40,51 + 919: -41,51 + 920: -42,51 + 921: -43,51 + 922: -44,51 + 5478: -4,-9 + 5479: -3,-9 + 5480: -3,-8 + 5481: -3,-7 + 5482: -3,-6 + 5483: -3,-5 + 5484: -2,-5 + 5485: -4,-5 + 5486: -5,-5 - node: color: '#FED83DFF' id: CheckerNWSE decals: - 6102: -29,38 - 6103: -28,38 - 6104: -30,37 - 6105: -29,37 - 6106: -28,37 - 6107: -27,37 - 6108: -27,36 - 6109: -28,36 - 6110: -29,36 - 6111: -30,35 - 6112: -29,35 - 6113: -28,35 - 6114: -27,35 + 5976: -29,38 + 5977: -28,38 + 5978: -30,37 + 5979: -29,37 + 5980: -28,37 + 5981: -27,37 + 5982: -27,36 + 5983: -28,36 + 5984: -29,36 + 5985: -30,35 + 5986: -29,35 + 5987: -28,35 + 5988: -27,35 - node: color: '#DE3A3A96' id: Delivery decals: - 5793: -56,-10 - 5794: -56,-11 + 5667: -56,-10 + 5668: -56,-11 - node: color: '#FFFFFFFF' id: Delivery decals: - 6876: 37,-9 - 6900: 20,18 - 6901: -37,97 + 6591: 37,-9 + 6615: 20,18 + 6616: -37,97 - node: color: '#A46106FF' id: DeliveryGreyscale decals: - 6859: 36,-4 + 6574: 36,-4 - node: color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 6899: 20,18 - 7070: 68,68 - 7071: 69,68 - 7072: 69,67 - 7073: 69,66 - 7074: 69,65 - 7075: 69,64 - 7076: 68,64 + 6614: 20,18 + 6785: 68,68 + 6786: 69,68 + 6787: 69,67 + 6788: 69,66 + 6789: 69,65 + 6790: 69,64 + 6791: 68,64 - node: color: '#52B4E996' id: DiagonalCheckerAOverlay decals: - 5613: -5,57 - 5614: -4,57 - 5615: -5,56 - 5616: -4,56 - 5617: -5,55 - 5618: -4,55 - 5619: -1,57 - 6183: 9,9 - 6184: 10,9 - 6185: 11,9 - 6186: 12,9 - 6187: 13,9 - 6188: 14,9 - 6189: 15,10 - 6190: 15,11 - 6191: 15,9 + 5487: -5,57 + 5488: -4,57 + 5489: -5,56 + 5490: -4,56 + 5491: -5,55 + 5492: -4,55 + 5493: -1,57 + 6057: 9,9 + 6058: 10,9 + 6059: 11,9 + 6060: 12,9 + 6061: 13,9 + 6062: 14,9 + 6063: 15,10 + 6064: 15,11 + 6065: 15,9 - node: color: '#79150096' id: DiagonalCheckerAOverlay decals: - 5886: -20,-24 - 5887: -20,-22 - 5888: -12,-24 - 5889: -12,-22 - 5890: -20,-23 - 5891: -12,-23 + 5760: -20,-24 + 5761: -20,-22 + 5762: -12,-24 + 5763: -12,-22 + 5764: -20,-23 + 5765: -12,-23 - node: color: '#52B4E982' id: DiagonalCheckerBOverlay decals: - 6594: -61,14 - 6595: -61,15 - 6596: -61,16 - 6597: -61,17 - 6598: -61,13 + 6329: -61,14 + 6330: -61,15 + 6331: -61,16 + 6332: -61,17 + 6333: -61,13 - node: color: '#79150096' id: DiagonalCheckerBOverlay decals: - 5876: -18,-24 - 5877: -18,-23 - 5878: -17,-23 - 5879: -16,-23 - 5880: -15,-23 - 5881: -14,-23 - 5882: -14,-24 - 5883: -17,-24 - 5884: -16,-24 - 5885: -15,-24 + 5750: -18,-24 + 5751: -18,-23 + 5752: -17,-23 + 5753: -16,-23 + 5754: -15,-23 + 5755: -14,-23 + 5756: -14,-24 + 5757: -17,-24 + 5758: -16,-24 + 5759: -15,-24 - node: color: '#FFFFFFFF' id: Dirt decals: - 4727: -14.197802,37.491196 - 4728: -14.051969,37.981117 - 5562: -69,-15 - 5563: -68.97821,-14.4746065 - 5588: 16,26 - 5589: 21,28 + 4629: -14.197802,37.491196 + 4630: -14.051969,37.981117 + 5436: -69,-15 + 5437: -68.97821,-14.4746065 + 5462: 16,26 + 5463: 21,28 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 3513: -18,-13 - 3514: -18,-10 - 3515: -18,-9 - 3516: -18,-5 - 3517: -14,-7 - 3518: -6,-12 - 3519: -6,-12 - 3520: -7,-13 - 3521: -17,-3 - 3522: -16.532848,-2.616184 - 3523: -14.814097,-2.7516947 - 3524: -13.282847,-2.3972821 - 3525: -12.58493,-2.4910975 - 3526: -11.376597,-2.6057603 - 3527: -10.095347,-0.3857574 - 3528: -9.657847,-0.3857574 - 3529: -9.543263,-0.82356197 - 3530: -8.543263,-0.50042087 - 3531: -9.39743,-1.0320396 - 3532: -10.689097,-0.5629641 - 3533: -11.251597,-0.073040605 - 3534: -13.345347,1.8762295 - 3535: -9.05368,3.035382 - 3536: -5.3280025,0.8672097 - 3537: 3.9595351,3.4078434 - 3538: 4.386618,3.0534308 - 3539: 8.475068,-0.8927023 - 3540: 9.329235,-7.501841 - 3541: 13.787568,-11.484466 - 3542: 13.172985,-10.171054 - 3543: 11.412568,-10.34826 - 3544: 6.4383035,-13.8879175 - 3545: 12.532054,-17.244085 - 3546: 12.271638,-18.818096 - 3547: 14.625804,-19.245476 - 3548: 12.177888,-18.797249 - 3549: 12.886221,-16.837553 - 3550: 11.584138,-19.120388 - 3551: 16.282053,-16.360853 - 3552: 7.271637,-20.156952 - 3553: 8.959138,-22.919287 - 3554: 8.032054,-24.785168 - 3555: 9.479971,-24.097189 - 3556: 18.93221,-23.22158 - 3557: 20.604755,-23.096493 - 3558: 19.72987,-23.16946 - 3559: 22.661444,-24.670504 - 3560: 25.255194,-23.27358 - 3561: 26.755194,-24.439537 - 3562: 26.703112,-24.783527 - 3563: 26.348944,-24.554201 - 3564: 26.848944,-23.51181 - 3579: 27.419094,-20.067987 - 3580: 28.752426,-20.276466 - 3581: 26.96076,-18.587793 - 3582: 27.481594,-19.692726 - 3583: 27.699795,-19.838661 - 3584: 28.939379,-20.04714 - 3585: 29.814379,-19.974173 - 3586: 31.835606,-18.942205 - 3587: 27.106438,-16.211426 - 3588: 28.293938,-16.263546 - 3589: 31.50227,-15.9821005 - 3590: 32.846024,-15.888285 - 3591: 33.564774,-12.250341 - 3592: 34.908524,-14.084949 - 3593: 27.67448,-16.138458 - 3594: 24.20573,-17.180847 - 3595: 24.630676,-20.938608 - 3596: 21.763302,-19.163506 - 3597: 15.218217,-17.790993 - 3598: 15.561966,-18.166252 - 3599: 15.395301,-18.875078 - 3600: 22.92655,-15.768755 - 3601: 23.343216,-16.206558 - 3602: 23.67655,-16.727755 - 3603: 22.874466,-15.424767 - 3604: 22.9578,-14.705517 - 3605: 22.978634,-14.121778 - 3606: 22.9578,-13.715245 - 3607: 24.134884,-12.412257 - 3608: 13.66569,-11.666533 - 3609: 15.155273,-12.948674 - 3610: 16.019855,-13.011218 - 3611: 16.374023,-11.916707 - 3612: 16.50944,-12.448327 - 3613: 17.769424,-13.334359 - 3614: 19.394424,-13.626228 - 3615: 20.243248,-8.682604 - 3616: 21.149498,-8.119713 - 3617: 22.149498,-7.8903866 - 3618: 19.440414,-9.328886 - 3619: 17.596664,-9.443549 - 3620: 24.597193,-6.6603656 - 3621: 25.243027,-6.7124853 - 3622: 25.878443,-6.743757 - 3623: 26.107609,-6.7646046 - 3624: 25.690943,-7.317072 - 3625: 25.097193,-8.109289 - 3626: 23.466253,-10.850778 - 3627: 26.122503,-5.1448708 - 3628: 25.549587,-5.1448708 - 3629: 24.497503,-5.00936 - 3630: 23.41417,-4.8217297 - 3631: 26.924587,-4.5507083 - 3632: 26.455837,-4.383926 - 3633: 24.07042,-4.34223 - 3634: 22.185003,-4.1129045 - 3635: 27.13292,-3.7689154 - 3636: 25.768337,-3.4249263 - 3637: 23.612087,-3.258144 - 3638: 22.185003,-2.9766986 - 3639: 26.341253,-2.4033837 - 3640: 25.091253,-1.2567542 - 3641: 24.466253,-0.9544608 - 3642: 23.122503,-1.4548085 - 3643: 21.75792,-1.8717647 - 3644: 25.143337,-1.3714168 - 3645: 24.862087,-2.3095686 - 3646: 24.88292,-3.7584918 - 3647: 25.997503,-1.24633 - 3648: 26.153753,-2.048971 - 3649: 26.830837,-3.560437 - 3650: 23.612087,-2.34084 - 3651: 22.487087,-2.5597425 - 3652: 21.03917,-3.1122096 - 3653: 25.32042,-0.40598077 - 3654: 25.216253,0.6676817 - 3655: 25.122503,1.2722678 - 3656: 25.19542,2.3563542 - 3657: 24.737087,2.2521152 - 3658: 24.41417,1.5745616 - 3659: 24.278753,1.0950618 - 3660: 34.869835,-4.040743 - 3661: 34.442753,-6.459089 - 3662: 35.380253,-7.3972406 - 3663: 36.734417,-8.523023 - 3664: 36.340343,-7.188762 - 3665: 36.559093,-7.9705553 - 3666: 36.29868,-8.512599 - 3667: 34.934093,-8.846164 - 3668: 33.215343,-7.1679144 - 3669: 31.859966,-7.991404 - 3670: 31.359962,-7.9809794 - 3671: 30.547462,-8.012251 - 3672: 29.18288,-7.8350444 - 3673: 30.662046,-8.9712515 - 3674: 30.24538,-6.8760457 - 3675: 29.87038,-3.8009927 - 3676: 30.547462,-3.2902212 - 3677: 29.74538,-4.4576993 - 3678: 34.8489,-1.1564186 - 3679: 35.58848,-1.0521793 - 3680: 36.69265,-1.1772659 - 3681: 38.265564,-1.2710814 - 3682: 37.640564,6.0891495 - 3683: 37.546814,5.432443 - 3684: 37.25515,3.9730964 - 3685: 38.953064,5.891095 - 3686: 37.4114,5.911943 - 3687: 40.74473,5.07803 - 3688: 40.578064,3.806314 - 3689: 40.734314,6.1412687 - 3690: 41.74473,3.9001293 - 3691: 41.203064,2.8056188 - 3692: 38.33848,2.9202814 - 3693: 36.31765,2.0967932 - 3694: 40.828064,1.450511 - 3695: 41.421814,0.7521093 - 3696: 39.671814,0.86677194 - 3697: 40.30723,-0.97825927 - 3698: 46.599323,0.67914176 - 3699: 46.349323,0.2204898 - 3700: 23.944952,5.297336 - 3701: 24.549118,4.484271 - 3702: 24.903284,4.1507063 - 3703: 25.559534,4.02562 - 3704: 23.944952,4.9220757 - 3705: 26.059534,4.286217 - 3706: 27.997034,4.119435 - 3707: 28.976202,4.0568914 - 3708: 28.757452,6.5690527 - 3709: 28.299118,5.370303 - 3710: 27.767868,4.890804 - 3711: 28.840784,9.07079 - 3712: 29.101202,8.351541 - 3713: 29.007452,7.9137363 - 3714: 28.080368,7.9971275 - 3715: 26.528284,8.7684965 - 3716: 25.236618,8.820616 - 3717: 27.507452,9.112485 - 3718: 25.819952,8.216029 - 3719: 25.424118,7.4446607 - 3720: 24.632452,6.5794764 - 3721: 26.299118,7.4863563 - 3722: 26.851202,6.548205 - 3723: 29.50109,8.769991 - 3724: 31.813591,8.530241 - 3725: 32.801582,8.571937 - 3726: 35.819508,8.509394 - 3727: 36.10142,8.551089 - 3728: 34.01809,8.353035 - 3729: 44.559753,8.300916 - 3730: 48.721,10.219759 - 3731: 49.41892,10.365694 - 3732: 49.73142,10.939009 - 3733: 50.096,11.512323 - 3734: 50.06475,12.763192 - 3735: 49.773083,12.794464 - 3736: 49.20017,12.888279 - 3737: 50.4085,9.854922 - 3738: 47.165226,12.681936 - 3739: 47.133976,12.640241 - 3740: 46.34231,12.421338 - 3741: 45.769394,12.285828 - 3742: 47.12356,11.577003 - 3743: 45.488144,11.483187 - 3744: 44.915226,11.816752 - 3745: 45.040226,12.838295 - 3746: 44.02981,13.317794 - 3747: 45.102726,14.120435 - 3748: 43.102726,13.567968 - 3749: 41.571476,13.17186 - 3750: 41.238144,11.545731 - 3751: 42.40481,10.732666 - 3752: 39.27981,14.454 - 3753: 37.738144,14.07874 - 3754: 37.363144,14.172555 - 3755: 37.28786,12.232981 - 3756: 30.721037,11.951535 - 3757: 30.978573,11.878568 - 3758: 30.874405,11.920263 - 3759: 32.95774,11.847296 - 3760: 28.236643,10.898721 - 3761: 29.028309,11.023808 - 3762: 29.892893,11.023808 - 3763: 27.809559,11.148894 - 3764: 26.736643,11.075927 - 3765: 25.517893,11.055079 - 3766: 24.609991,11.958938 - 3767: 22.615698,15.805538 - 3768: 22.48028,14.700603 - 3769: 22.240698,13.710331 - 3770: 20.626114,12.157169 - 3771: 21.29278,19.631111 - 3772: 22.282364,18.380241 - 3773: 22.865698,17.139797 - 3774: 26.246363,12.3448 - 3775: 26.642197,15.190526 - 3776: 28.506779,18.233698 - 3777: 27.381779,16.90986 - 3778: 28.319279,21.058577 - 3779: 28.506779,21.673588 - 3780: 28.538029,21.069 - 3781: 28.558863,20.391445 - 3782: 28.725529,17.879284 - 3783: 28.267197,17.337242 - 3784: 27.798447,16.774351 - 3785: 29.506779,17.076645 - 3786: 33.831654,17.472752 - 3787: 33.800404,18.098186 - 3788: 33.612904,19.130154 - 3789: 33.43582,17.712502 - 3790: 34.22749,21.81991 - 3791: 34.394154,21.663551 - 3792: 33.32124,20.683704 - 3793: 30.425404,21.694225 - 3794: 30.352486,21.318964 - 3795: 29.87332,20.620564 - 3796: 30.09207,20.9854 - 3797: 33.78361,25.00645 - 3798: 29.544073,26.320004 - 3799: 29.27324,25.089983 - 3800: 34.512825,24.06844 - 3801: 36.273243,24.01632 - 3802: 37.012825,26.121948 - 3803: 38.491993,26.351274 - 3804: 40.856575,26.351274 - 3805: 41.689907,26.226189 - 3806: 37.898243,26.299156 - 3807: 41.939907,24.714722 - 3808: 38.491993,23.797419 - 3809: 36.616993,22.776781 - 3810: 37.273243,18.721882 - 3811: 37.578465,17.70034 - 3812: 42.321777,17.762882 - 3813: 42.071777,18.263231 - 3814: 40.93636,19.024176 - 3815: 42.34261,18.857393 - 3816: 43.811356,17.335503 - 3817: 43.204903,17.012362 - 3818: 39.45091,21.58814 - 3819: 47.711323,22.390781 - 3820: 47.35716,21.473478 - 3821: 46.54466,21.265 - 3822: 45.648823,25.399319 - 3823: 46.32591,24.97869 - 3824: 46.773823,24.843376 - 3825: 46.03424,30.878817 - 3826: 46.461323,30.94136 - 3827: 45.98216,31.222805 - 3828: 44.20091,30.914654 - 3829: 42.66966,30.747871 - 3830: 45.10716,33.039444 - 3831: 44.95091,34.752834 - 3832: 44.086323,35.43039 - 3833: 43.73216,37.10864 - 3834: 46.31549,36.20176 - 3835: 45.26341,38.178833 - 3836: 43.78424,38.700027 - 3837: 44.07591,39.189953 - 3838: 44.88841,41.472904 - 3839: 44.81549,42.969856 - 3840: 43.398823,43.41812 - 3841: 42.13841,45.57587 - 3842: 41.29466,45.784348 - 3843: 40.25299,45.773922 - 3844: 40.805073,45.14849 - 3845: 41.40924,46.77462 - 3846: 40.47174,46.399357 - 3847: 40.898823,44.418816 - 3848: 40.94049,43.01159 - 3849: 41.78424,43.79338 - 3850: 43.089558,43.867336 - 3851: 44.63122,45.316257 - 3852: 45.058308,49.154198 - 3853: 44.933308,50.246536 - 3854: 45.120808,48.057518 - 3855: 43.48539,48.89521 - 3856: 43.57914,49.353863 - 3857: 43.777058,49.009872 - 3858: 43.870808,48.69716 - 3859: 42.54789,48.99945 - 3860: 41.29789,48.978603 - 3861: 41.50622,39.01236 - 3862: 41.277058,39.043633 - 3863: 40.00622,39.158295 - 3864: 40.339558,38.991512 - 3865: 44.729176,53.597824 - 3866: 44.458344,53.066204 - 3867: 43.406258,52.774334 - 3868: 37.822926,52.30526 - 3869: 38.437508,52.31568 - 3870: 39.239594,52.138474 - 3871: 39.791676,52.180172 - 3872: 38.927094,51.83618 - 3873: 37.843758,51.700672 - 3874: 27.165503,51.578514 - 3875: 31.206818,51.695198 - 3876: 30.310984,51.75774 - 3877: 27.331818,50.42348 - 3878: 25.748484,47.463093 - 3879: 24.842234,48.01556 - 3880: 25.071402,47.142246 - 3881: 26.529734,44.515423 - 3882: 27.571402,43.024803 - 3883: 25.550568,38.483986 - 3884: 25.175568,38.62992 - 3885: 25.810984,39.578495 - 3886: 26.071402,40.33944 - 3887: 31.253078,44.27846 - 3888: 32.232246,41.672485 - 3889: 33.888496,42.391735 - 3890: 34.357246,42.03732 - 3891: 34.107246,44.28936 - 3892: 34.107246,47.361183 - 3893: 33.97183,51.60324 - 3894: 33.461414,51.44688 - 3895: 32.732246,51.321793 - 3896: 31.523914,50.77975 - 3897: 30.325994,50.72763 - 3898: 23.935377,46.89536 - 3899: 23.206211,46.9996 - 3900: 22.549961,47.385284 - 3901: 20.956211,48.615303 - 3902: 18.924961,47.9169 - 3903: 20.987461,45.33177 - 3904: 21.195793,44.779305 - 3905: 21.924961,44.383198 - 3906: 21.466627,43.83073 - 3907: 21.049961,43.924545 - 3908: 25.297033,37.934616 - 3909: 24.266186,34.621353 - 3910: 25.44327,34.81941 - 3911: 26.09952,34.79856 - 3912: 26.713217,34.953156 - 3913: 25.119516,22.793173 - 3914: 25.807016,23.095467 - 3915: 26.661182,22.62639 - 3916: 24.535053,20.744965 - 3917: 21.347553,20.901323 - 3918: 20.118387,21.026411 - 3919: 18.38922,21.328705 - 3920: 18.629936,24.316092 - 3921: 19.629936,24.128462 - 3922: 19.296602,25.896872 - 3923: 11.379937,31.908005 - 3924: 11.473687,31.543167 - 3925: 11.484103,30.88646 - 3926: 10.077853,30.625862 - 3927: 10.921603,31.147057 - 3928: 11.61952,32.043514 - 3929: 12.192437,31.324265 - 3930: 12.692437,30.396536 - 3931: 19.96327,32.08521 - 3932: 18.40077,32.022667 - 3933: 19.734102,30.855188 - 3934: 16.577852,30.625862 - 3935: 15.7450695,24.53702 - 3936: 15.140903,24.067945 - 3937: 14.5367365,22.556479 - 3938: 16.849236,20.377882 - 3939: 17.422152,18.751753 - 3940: 18.12007,18.428612 - 3941: 19.27632,23.776075 - 3942: 18.922152,23.932434 - 3943: 14.52452,19.53984 - 3944: 13.46202,20.373755 - 3945: 8.045353,21.979036 - 3946: 5.861649,17.692434 - 3947: 6.9137325,16.498894 - 3948: 7.6533165,15.568497 - 3949: 5.986649,13.26724 - 3950: 6.611649,12.853299 - 3951: 6.642899,6.7943683 - 3952: 7.6324825,6.051437 - 3953: 6.788732,2.7948875 - 3954: 6.392899,2.15044 - 3955: 5.486649,0.7953317 - 3956: 6.0283155,0.67030525 - 3957: 7.3095655,-0.34081322 - 3958: 8.5283165,-1.6854973 - 3959: 7.9241495,-5.599303 - 3960: 8.0595665,-4.436144 - 3961: 8.3408165,-4.9781857 - 3962: 8.4345665,-5.5202293 - 3963: 9.069983,-7.0838156 - 3964: 6.5595655,-4.8009796 - 3965: 5.851232,-6.427109 - 3966: 10.849246,-7.03366 - 3967: 11.58883,-7.190019 - 3968: 4.6863317,22.035303 - 3969: 4.1654983,21.211815 - 3970: -1.907418,21.57665 - 3971: 1.623832,23.359138 - 3972: 1.9779987,23.181932 - 3973: 1.7771201,21.378597 - 3974: -0.16037995,21.159695 - 3975: -0.9241701,24.130508 - 3976: -4.746551,23.536345 - 3977: -5.121551,24.359833 - 3978: -5.423634,24.67255 - 3979: -6.517384,24.568312 - 3980: -7.934051,24.599583 - 3981: -9.215301,24.662127 - 3982: -10.434051,24.464073 - 3983: -10.069467,24.2139 - 3984: -9.684051,23.901182 - 3985: -8.642384,23.651009 - 3986: -7.1007175,23.452953 - 3987: -6.215301,23.411259 - 3988: -8.525336,20.967396 - 3989: -11.535753,21.45732 - 3990: -12.917024,24.256956 - 3991: -13.010774,25.961649 - 3992: -13.312857,29.15422 - 3993: -13.469107,31.442356 - 3994: -13.979524,36.46825 - 3995: -13.979524,36.155533 - 3996: -14.042024,35.811543 - 3997: -15.05244,34.581524 - 3998: -12.719107,30.401537 - 3999: -5.141668,37.232647 - 4000: -4.6520844,36.304916 - 4001: -3.7979174,34.86642 - 4002: -3.4854174,33.865723 - 4003: -3.5166674,32.510616 - 4004: -4.4854174,30.665585 - 4005: -1.2562506,30.769825 - 4006: -0.8500007,32.646126 - 4007: -8.231247,38.430656 - 4008: -9.522913,38.44108 - 4009: -9.106246,39.712795 - 4010: -8.981246,40.932392 - 4011: -9.679163,41.766304 - 4012: -10.043747,43.05887 - 4013: -8.064581,42.933784 - 4014: -8.418747,41.78715 - 4015: -14.057743,37.065125 - 4016: -17.797327,37.90946 - 4017: -13.807743,42.034073 - 4018: -14.53691,42.169582 - 4019: -15.297327,44.08758 - 4020: -17.182745,43.889526 - 4021: -18.047327,42.763744 - 4022: -19.005661,40.50176 - 4023: -20.661911,39.65742 - 4024: -20.088995,40.011833 - 4025: -17.922327,37.899117 - 4026: -18.099411,36.43818 - 4027: -18.370245,35.604267 - 4028: -19.151495,34.468063 - 4029: -19.370245,33.884323 - 4030: -18.182745,33.446518 - 4031: -17.380661,33.571606 - 4032: -22.344788,39.47244 - 4033: -22.751038,40.94221 - 4034: -25.761456,39.243114 - 4035: -26.896872,39.26396 - 4036: -29.355206,39.534985 - 4037: -30.067593,39.652775 - 4038: -32.553303,40.778557 - 4039: -33.481487,37.504967 - 4040: -31.585653,35.795444 - 4041: -31.002321,30.852837 - 4042: -31.377321,28.237875 - 4043: -32.18982,27.370338 - 4044: -30.679403,26.851313 - 4045: -31.119087,23.939573 - 4046: -32.90309,21.730259 - 4047: -35.210823,21.187757 - 4048: -34.794155,20.875042 - 4049: -33.669155,18.957043 - 4050: -32.20041,17.77914 - 4051: -30.444805,18.49839 - 4052: -27.177578,19.186369 - 4053: -24.423416,19.123825 - 4054: -24.13175,19.186369 - 4055: -28.94425,19.321878 - 4056: -22.327682,23.658224 - 4057: -22.098515,23.35593 - 4058: -21.181849,22.709648 - 4059: -22.786015,22.39693 - 4060: -19.5617,21.124546 - 4061: -18.176285,23.386534 - 4062: -24.459047,11.871808 - 4063: -25.604881,12.028167 - 4064: -23.927797,11.746721 - 4065: -22.72988,9.755754 - 4066: -21.94863,11.361036 - 4067: -22.594463,7.1784043 - 4068: -23.750713,2.3874435 - 4069: -26.063213,0.61707854 - 4070: -25.844463,2.5051558 - 4071: -38.117897,3.255677 - 4072: -40.149147,4.94435 - 4073: -42.284565,6.862349 - 4074: -37.607483,8.0506735 - 4075: -38.326233,8.623988 - 4076: -38.044983,7.950757 - 4077: -37.305397,6.1578455 - 4078: -37.149147,5.063335 - 4079: -37.201233,2.6449885 - 4080: -36.534565,-3.156522 - 4081: -36.961647,-3.354576 - 4082: -39.289185,-3.3337276 - 4083: -47.777866,-4.4167066 - 4084: -52.660725,-2.1737058 - 4085: -55.374886,-2.997194 - 4086: -57.2565,-3.455846 - 4087: -61.762447,-3.0493138 - 4088: -64.78329,-3.4245746 - 4089: -65.88745,-4.633748 - 4090: -71.41285,-1.6212385 - 4091: -72.16285,-0.589272 - 4092: -72.95026,5.216684 - 4093: -73.17942,4.3410754 - 4094: -73.971085,-1.4264553 - 4095: -73.002335,-4.853541 - 4096: -72.814835,-6.847305 - 4097: -73.07526,-10.073644 - 4098: -73.63776,-12.86725 - 4099: -73.01056,-14.304357 - 4100: -71.36473,-15.636832 - 4101: -71.66681,-16.710493 - 4102: -72.26056,-17.544407 - 4103: -72.79181,-15.84531 - 4104: -71.36473,-17.012787 - 4105: -69.937645,-17.221264 - 4106: -69.36473,-16.429049 - 4107: -69.062645,-15.41793 - 4108: -68.47931,-16.053787 - 4109: -68.062645,-16.971092 - 4110: -64.34564,-14.678927 - 4111: -63.949806,-14.136885 - 4112: -64.55398,-13.501026 - 4113: -71.51188,-12.193083 - 4114: -75.31595,-18.205387 - 4115: -73.38887,-23.328585 - 4116: -73.63887,-25.027681 - 4117: -73.81595,-25.809475 - 4118: -73.836784,-24.579453 - 4119: -74.211784,-25.507181 - 4120: -74.50345,-25.319551 - 4121: -75.35762,-25.048529 - 4122: -72.055534,-24.443943 - 4123: -74.01387,-26.102983 - 4124: -80.77169,-14.003633 - 4125: -80.54253,-8.030733 - 4127: -54.147945,54.05475 - 4128: -54.220863,51.81361 - 4129: -52.293777,52.20972 - 4130: -51.137527,53.283382 - 4131: -49.731277,51.76149 - 4132: -48.168777,49.259754 - 4133: -47.522945,47.664894 - 4134: -47.28021,45.775455 - 4135: -42.7609,45.077053 - 4136: -45.711395,45.62952 - 4137: -42.950977,45.462738 - 4138: -39.857227,45.306377 - 4139: -36.253063,45.22299 - 4140: -42.013477,48.235497 - 4141: -39.596813,46.129868 - 4142: -39.232227,48.256344 - 4143: -38.784313,47.61006 - 4144: -36.60944,52.003372 - 4145: -37.67194,51.35709 - 4146: -43.161522,50.867165 - 4147: -37.807354,50.669113 - 4148: -35.869854,49.314003 - 4149: -35.503277,48.115253 - 4150: -37.871613,45.309006 - 4151: -34.53828,45.996983 - 4152: -32.94453,45.986557 - 4153: -32.704945,46.195038 - 4154: -34.915768,44.641876 - 4155: -32.92618,43.98517 - 4156: -32.134518,44.030342 - 4157: -30.269936,41.247158 - 4158: -29.905352,44.353714 - 4159: -28.707434,43.905483 - 4160: -26.276476,43.07157 - 4161: -26.245226,45.07296 - 4162: -23.838976,43.17581 - 4163: -24.151476,44.728973 - 4164: -22.29532,43.12369 - 4165: -26.200085,47.92911 - 4166: -27.351353,48.957184 - 4167: -26.496693,49.84182 - 4168: -32.986275,51.392048 - 4169: -24.989897,49.90143 - 4170: -22.91698,51.07933 - 4171: -21.562813,51.50671 - 4172: -21.156563,51.95494 - 4173: -21.031563,48.91116 - 4174: -21.19823,48.73395 - 4175: -19.823692,52.559525 - 4176: -18.89661,51.110603 - 4177: -16.191216,51.527557 - 4178: -13.1391325,50.43305 - 4179: -12.595734,48.80692 - 4180: -10.470734,49.7138 - 4181: -8.137402,50.58941 - 4182: -1.4589446,49.74507 - 4183: -4.0631113,48.765224 - 4184: -3.996604,48.827766 - 4185: 1.4200628,49.31769 - 4186: 2.3361983,49.98482 - 4187: 2.502865,51.20442 - 4188: 2.8986983,51.152298 - 4189: 4.877865,49.39066 - 4190: 6.0302835,49.651257 - 4191: 7.717784,53.633186 - 4192: 7.749034,53.987602 - 4193: 7.634451,54.821514 - 4194: 6.988617,54.665154 - 4195: 7.926118,52.486557 - 4196: 8.134451,50.03694 - 4197: 9.332122,50.27669 - 4198: 11.0009775,48.33976 - 4199: 11.292644,46.400913 - 4200: 10.032227,45.410645 - 4201: 8.86556,46.12989 - 4202: 11.417644,43.122326 - 4203: 12.5634775,40.985428 - 4204: 9.14681,35.544983 - 4205: 7.1155596,35.543716 - 4206: 6.9593096,37.11773 - 4207: 6.542643,38.660465 - 4208: 6.8655596,37.399174 - 4209: 7.0530596,36.64865 - 4210: 4.22942,35.66222 - 4211: 4.7710867,34.11948 - 4212: 5.896087,28.190945 - 4213: 6.2815037,24.555466 - 4214: 3.333587,23.239985 - 4215: 1.8127537,23.511005 - 4216: 11.111213,52.948692 - 4217: 10.24663,54.710335 - 4218: 10.18413,54.99178 - 4219: 9.882046,57.50394 - 4220: 8.913296,58.337852 - 4221: 7.8612127,58.921593 - 4222: 7.2674623,60.787468 - 4223: 8.027879,61.631805 - 4224: 9.423713,60.558144 - 4225: 9.96538,59.901436 - 4226: 10.892463,61.42333 - 4227: 10.736213,62.382328 - 4228: 13.142463,56.127983 - 4229: 13.569546,56.899353 - 4230: 15.611212,56.38858 - 4231: 18.007046,56.961895 - 4232: 20.007046,56.01332 - 4233: 18.892462,54.929234 - 4234: 16.819546,54.314224 - 4235: 10.991041,63.454468 - 4236: 11.491042,63.996513 - 4237: 11.918125,63.84015 - 4238: 12.011875,64.99721 - 4239: 11.876458,65.351616 - 4240: 11.126458,66.15426 - 4241: 11.032708,67.175804 - 4242: 10.761875,68.10353 - 4243: 9.845208,68.312004 - 4244: 8.709791,68.37455 - 4245: 8.053541,68.28074 - 4246: 7.543124,67.39471 - 4247: 7.522291,66.5191 - 4248: 7.168124,65.831116 - 4249: 7.0847907,64.46558 - 4250: 7.0639577,64.31965 - 4251: 7.0327077,64.91381 - 4252: 6.855624,66.24807 - 4253: 6.761874,67.23834 - 4254: 6.6785407,68.03056 - 4255: 6.8660407,69.33355 - 4256: 6.9077077,69.55245 - 4257: 6.949374,69.03126 - 4258: 6.980624,67.70742 - 4259: 7.4077077,67.30089 - 4260: 7.563958,68.249466 - 4261: 7.772291,69.0521 - 4262: 9.032708,69.42736 - 4263: 10.063958,69.41694 - 4264: 10.949375,69.385666 - 4265: 10.959791,68.416245 - 4266: 10.220208,68.45794 - 4267: 7.959791,68.3954 - 4268: 10.845208,68.84363 - 4269: 11.511875,68.18692 - 4270: 11.970208,66.102135 - 4271: 12.074375,65.643486 - 4272: 12.324375,68.791504 - 4273: 12.428542,65.71645 - 4274: 11.824375,64.674065 - 4275: 11.126458,64.778305 - 4276: 10.824375,66.28977 - 4277: 10.386875,67.71784 - 4278: 9.584791,67.86378 - 4279: 8.928541,65.549675 - 4280: 10.095208,64.40304 - 4281: 10.282708,64.006935 - 4282: 10.324375,63.788033 - 4283: 13.085067,63.96402 - 4284: 13.980901,64.02656 - 4285: 14.116317,64.1308 - 4286: 14.251734,65.15234 - 4287: 14.282984,66.56999 - 4288: 14.418401,65.39209 - 4289: 14.574651,63.3907 - 4290: 14.710067,61.212105 - 4291: 14.553817,64.10462 - 4292: 14.585067,66.71647 - 4293: 14.668401,70.27652 - 4294: 14.501734,71.70704 - 4295: 14.157984,72.322044 - 4296: -12.870427,83.930214 - 4297: -12.932927,83.40902 - 4298: -12.755843,82.60638 - 4299: -12.339177,81.75162 - 4300: -11.474593,81.136604 - 4301: -10.61001,81.053215 - 4302: 19.254375,65.00493 - 4303: 19.618958,64.03551 - 4304: 20.191875,62.815907 - 4305: 20.483541,64.577545 - 4306: 22.077291,61.898605 - 4307: 23.525208,61.429527 - 4308: 23.973125,60.564342 - 4309: 23.389791,60.220356 - 4310: 16.837708,61.512917 - 4311: 15.452292,61.773518 - 4312: 15.441875,61.75267 - 4313: -37.95692,-26.163164 - 4314: -37.946503,-26.455034 - 4315: -37.20692,-29.622608 - 4316: -37.290253,-30.060413 - 4317: -37.623585,-30.74839 - 4318: -39.14442,-31.41552 - 4319: -40.571503,-31.832476 - 4320: -41.14442,-31.290434 - 4321: -41.58192,-30.300163 - 4322: -37.967587,-30.723152 - 4323: -38.05092,-31.108837 - 4324: -56.048733,-35.095745 - 4325: -57.944565,-36.086018 - 4326: -58.798733,-37.46197 - 4327: -58.861233,-38.1708 - 4328: -58.5904,-38.52521 - 4329: -57.975815,-39.692688 - 4330: -56.017483,-39.77608 - 4331: -55.288315,-38.129105 - 4332: -55.05915,-36.711452 - 4333: -54.882065,-36.20068 - 4334: -80.596344,-38.388527 - 4335: -80.61718,-39.264133 - 4336: -80.221344,-39.56643 - 4337: -79.67968,-40.12932 - 4338: -79.388016,-38.99917 - 4339: -84.304405,-30.28082 - 4340: -85.866905,-30.114038 - 4341: -83.69129,-30.364212 - 4342: -89.95491,-23.975794 - 4343: -90.57991,-24.038338 - 4344: -91.215324,-24.100882 - 4345: -91.66324,-24.392752 - 4346: -92.121574,-25.059881 - 4347: -91.82991,-23.475447 - 4348: -90.60074,-23.809011 - 4349: -89.04866,-24.25724 - 4350: -88.54866,-24.986916 - 4351: -89.277824,-17.110107 - 4352: -88.88199,-17.110107 - 4353: -88.63199,-17.120531 - 4354: -88.23616,-17.068413 - 4355: -88.03824,-16.84951 - 4356: -87.996574,-16.568066 - 4357: -87.965324,-16.09899 - 4358: -87.95491,-15.494403 - 4359: -88.152824,-16.828663 - 4360: -88.03824,-17.641727 - 4361: -87.965324,-18.18377 - 4362: -87.69449,-17.495792 - 4363: -87.36116,-16.734848 - 4364: -87.14241,-15.692457 - 4365: -87.67366,-14.326925 - 4366: -87.31949,-18.26716 - 4367: -87.29866,-19.267857 - 4368: -87.29866,-20.039227 - 4369: -92.00699,-6.1643047 - 4370: -91.39241,-6.1017613 - 4371: -91.14241,-5.820316 - 4372: -91.215324,-5.40336 - 4373: -89.67366,-3.9335892 - 4374: -90.64241,-3.6625674 - 4375: -92.152824,-3.266459 - 4376: -88.81949,-5.6743813 - 4377: -87.97574,-6.5082936 - 4378: -90.75699,-6.247696 - 4379: -90.75738,14.310686 - 4380: -90.62196,14.112632 - 4381: -90.13238,13.685252 - 4382: -91.11155,14.4461975 - 4383: -91.49696,13.956273 - 4384: -91.43446,15.9263935 - 4385: -91.97613,16.041056 - 4386: -90.97613,16.499708 - 4387: -91.46571,17.260653 - 4388: -91.53863,17.959055 - 4389: -90.91363,18.636608 - 4390: -91.61155,19.084837 - 4391: -91.34071,19.908325 - 4392: -91.2678,20.492064 - 4393: -91.72613,20.742237 - 4394: -91.27821,21.730818 - 4395: -92.19488,22.324982 - 4396: -91.4553,22.983862 - 4397: -90.79905,25.356894 - 4398: -94.06988,25.050785 - 4399: -94.93446,24.133482 - 4400: -95.69488,25.457317 - 4401: -93.38238,25.394773 - 4402: -91.25738,24.1856 - 4403: -89.96571,25.874273 - 4404: -89.75738,24.508741 - 4405: -88.17405,24.070938 - 4406: -87.38238,25.217567 - 4407: -87.43446,21.642168 - 4408: -88.34071,20.161974 - 4409: -93.78863,20.464266 - 4410: -94.40321,21.464962 - 4411: -95.81988,21.840221 - 4412: -93.60113,21.110548 - 4413: -93.80946,17.567955 - 4414: -94.63238,16.335867 - 4415: -95.40321,17.826454 - 4416: -94.29905,16.137907 - 4417: -95.48655,15.846037 - 4418: -88.74696,17.691069 - 4419: -87.84071,17.628525 - 4420: -87.19488,17.357504 - 4421: -87.28863,16.075363 - 4422: -87.60113,15.793917 - 4423: -89.16363,15.929428 - 4424: -89.03863,16.659101 - 4425: -89.40321,17.05521 - 4426: -95.94266,24.127657 - 4427: -95.94266,24.13808 - 4428: -90.70437,13.908267 - 4429: -89.55853,13.428766 - 4430: -88.4752,13.241137 - 4431: -86.37103,13.011811 - 4432: -37.32388,34.248528 - 4433: -38.053047,34.102592 - 4434: -39.115547,34.09217 - 4435: -52.810127,37.674557 - 4436: -52.17471,38.977547 - 4437: -52.810127,46.264038 - 4438: -53.251755,50.076374 - 4439: -52.283005,49.033985 - 4440: -36.73952,54.867203 - 4441: -36.68744,57.011337 - 4442: -36.98952,59.87732 - 4443: -37.041603,62.25946 - 4444: -37.02077,65.12927 - 4445: -37.02077,67.35345 - 4446: -37.02077,69.42614 - 4447: -37.072853,72.69632 - 4448: -37.08327,73.65532 - 4449: -37.02077,73.92634 - 4450: -38.405388,73.94719 - 4451: -40.721672,73.94719 - 4452: -42.064476,74.06185 - 4453: -42.762394,72.831825 - 4454: -43.969833,69.85059 - 4455: -47.306793,70.840866 - 4456: -48.483875,70.840866 - 4457: -46.94221,66.890205 - 4458: -47.838043,66.577484 - 4459: -48.869293,66.879776 - 4460: -54.022034,72.719795 - 4461: -53.147034,72.64683 - 4462: -53.334534,74.158295 - 4463: -52.34495,74.18957 - 4464: -51.147034,72.48005 - 4465: -50.78245,69.94704 - 4466: -49.38662,69.13397 - 4467: -48.76162,71.44808 - 4468: -49.0637,73.03252 - 4469: -48.21995,74.73161 - 4470: -47.38662,74.88797 - 4471: -46.65745,74.460594 - 4472: -46.428284,72.90743 - 4473: -47.022034,72.39666 - 4474: -48.709534,72.77192 - 4475: -48.32412,74.25211 - 4476: -50.09495,77.056145 - 4477: -50.76162,76.55579 - 4478: -44.71995,77.18123 - 4479: -44.16787,76.5141 - 4480: -47.35537,77.79624 - 4481: -48.053284,80.0895 - 4482: -45.8762,80.12077 - 4483: -46.57412,78.16108 - 4484: -46.772034,77.441826 - 4485: -40.44242,74.124916 - 4486: -37.619503,74.05195 - 4487: -37.25492,75.38621 - 4488: -36.97367,76.24097 - 4489: -36.97367,75.87366 - 4490: -36.91117,76.37589 - 4491: -36.89034,77.381165 - 4492: -37.45284,79.892654 - 4493: -38.244503,79.229866 - 4494: -38.64034,78.625275 - 4495: -38.81742,77.958145 - 4496: -38.19242,77.43695 - 4497: -37.869503,78.635704 - 4498: -36.79659,78.07281 - 4499: -34.91117,77.687126 - 4500: -34.70284,78.250015 - 4501: -36.34867,79.209015 - 4502: -36.76534,80.243385 - 4503: -37.54659,82.795845 - 4504: -36.03617,82.53755 - 4505: -36.057003,84.97943 - 4506: -36.057003,86.984604 - 4507: -36.057003,88.996605 - 4508: -36.06742,90.77904 - 4509: -36.06742,92.65208 - 4510: -36.06742,94.55308 - 4511: -36.06742,96.453865 - 4512: -36.06742,98.44008 - 4513: -35.994503,98.33815 - 4514: -36.338253,98.0984 - 4515: -36.025753,96.98304 - 4516: -36.12992,96.31591 - 4517: -36.75492,98.171364 - 4518: -37.75492,97.96289 - 4519: -37.775753,97.93162 - 4520: -37.73409,96.42015 - 4521: -37.72367,95.878105 - 4522: -35.869503,93.790634 - 4523: -37.62992,93.4258 - 4524: -37.89034,93.83233 - 4525: -38.73409,92.831635 - 4526: -40.17159,93.73852 - 4527: -39.98409,93.78021 - 4528: -37.16117,92.49807 - 4529: -36.85909,91.393135 - 4530: -36.494503,90.172516 - 4531: -37.10909,88.13306 - 4532: -37.56742,89.8268 - 4533: -37.713253,86.23262 - 4534: -37.75492,87.34258 - 4535: -38.01534,85.21611 - 4536: -38.01534,84.14245 - 4537: -37.807003,81.7236 - 4538: -37.64034,78.78363 - 4539: -33.873714,73.878784 - 4540: -30.748716,73.82666 - 4541: -28.092466,74.00387 - 4542: -26.602882,74.00387 - 4543: -26.559574,74.01429 - 4544: -26.25749,72.779305 - 4545: -26.111658,73.0958 - 4546: -25.528324,71.90748 - 4547: -25.267908,71.27162 - 4548: -26.611658,70.729576 - 4549: -28.590824,71.08399 - 4550: -30.174158,69.92694 - 4551: -32.080406,68.89497 - 4552: -31.580408,68.40505 - 4553: -31.94127,62.93868 - 4554: -32.03502,65.11727 - 4555: -26.139187,66.674965 - 4556: -25.774603,65.49706 - 4557: -25.618353,64.065346 - 4558: -25.087103,61.64628 - 4559: -25.09752,61.09381 - 4560: -24.607937,60.61431 - 4561: -24.91002,59.665737 - 4562: -26.232937,58.539955 - 4563: -27.857937,58.49826 - 4564: -30.357937,58.63377 - 4565: -33.0871,59.738705 - 4566: -31.076687,59.88464 - 4567: -30.670437,59.874214 - 4568: -31.576687,57.544033 - 4569: -29.826687,57.37725 - 4570: -27.962103,56.876904 - 4571: -26.69127,56.84563 - 4572: -22.305016,58.98561 - 4573: -21.88835,59.016884 - 4574: -20.846682,58.943916 - 4575: -20.409182,56.9141 - 4576: -20.4196,54.02712 - 4577: -20.565432,52.986176 - 4578: -21.01335,51.860394 - 4579: -19.596682,61.98536 - 4580: -19.086266,63.14776 - 4581: -19.992516,62.887157 - 4582: -20.51335,61.448658 - 4583: -18.367516,63.54386 - 4584: -18.680016,63.408356 - 4585: -19.721682,62.730797 - 4586: -20.6696,65.18599 - 4587: -20.555016,65.786064 - 4588: -17.182793,68.10431 - 4589: -18.948448,70.21108 - 4590: -18.885948,73.421646 - 4591: -15.240114,72.7024 - 4592: -22.16052,68.67403 - 4593: -24.202187,69.038864 - 4594: -24.31677,70.47819 - 4595: -24.243855,71.9014 - 4596: -23.87927,73.78141 - 4597: -23.62927,77.109985 - 4598: -23.577187,78.93417 - 4599: -23.556355,86.2738 - 4600: -23.50427,84.10563 - 4601: -25.69177,83.94927 - 4602: -25.181355,84.063934 - 4603: -26.337605,86.92009 - 4604: -26.75427,86.857544 - 4605: -27.50427,85.75261 - 4606: -23.483437,78.38291 - 4607: -21.56677,77.12162 - 4608: -20.045937,76.93398 - 4609: -18.306353,76.74635 - 4610: -17.681353,76.673386 - 4611: -17.264687,77.42391 - 4612: -17.139687,78.25782 - 4613: -17.212603,78.89368 - 4614: -17.368853,78.10146 - 4615: -17.670937,77.19458 - 4616: -19.66052,76.683815 - 4617: -17.483437,78.695625 - 4618: -17.47302,79.53996 - 4619: -17.525103,80.29048 - 4620: -17.014687,83.45935 - 4621: -16.712603,84.15775 - 4622: -17.97302,84.24114 - 4623: -17.806353,84.23072 - 4624: -16.75427,82.89646 - 4625: -17.69177,81.90619 - 4626: -19.920937,81.40584 - 4627: -19.72302,81.093124 - 4628: -19.525103,81.31203 - 4629: -19.639687,79.863106 - 4630: -19.556353,80.1237 - 4631: -20.22302,79.39403 - 4632: -19.868855,79.49827 - 4633: -19.545937,79.87353 - 4634: -19.618853,80.519806 - 4635: -19.900105,81.68729 - 4636: -20.077187,84.22079 - 4637: -20.87927,84.23121 - 4638: -19.233437,86.25345 - 4639: -18.952187,87.097786 - 4640: -19.014687,89.64122 - 4641: -20.514687,90.13114 - 4642: -13.574523,94.76726 - 4643: -14.084939,95.330154 - 4644: -14.751606,96.768654 - 4645: -15.105773,98.53029 - 4646: -15.439106,100.38575 - 4647: -16.67869,100.31278 - 4648: -16.428688,98.91598 - 4649: -16.178688,98.12376 - 4650: -15.397439,100.63592 - 4651: -15.762023,98.217575 - 4652: -15.887023,97.362816 - 4653: -16.147438,97.69638 - 4654: -16.074524,96.289154 - 4655: -16.314106,95.65329 - 4656: -17.730774,95.11125 - 4657: -17.671528,99.921524 - 4658: -17.504862,98.295395 - 4659: -17.442362,96.84647 - 4660: -14.109027,95.1578 - 4723: -41.9497,-5.427035 - 4741: 9.594095,-22.751493 - 4742: 5.1565943,-17.243027 - 4743: 5.302428,-8.834106 - 4744: 5.417011,-9.053009 - 4745: 5.5003443,-9.490813 - 5565: 51.204163,12.93541 - 5566: 51.360413,12.924986 - 5567: 51.797913,12.88329 - 5568: 52.464577,12.779052 - 5569: 52.266663,11.330129 - 5570: 51.829163,11.330129 - 5571: 51.110413,11.257161 - 5572: 50.558327,10.527488 - 5573: 51.954163,9.995868 - 5574: 38.58185,9.101582 - 5575: 39.9881,8.319789 - 5674: 61.50257,25.957602 - 5675: 61.40882,25.488525 - 5676: 61.03382,25.092417 - 5677: 59.825485,25.300896 - 5678: 59.47132,24.43571 - 5679: 58.867153,24.16469 - 5680: 58.492153,22.788734 - 5681: 54.575485,21.537865 - 5682: 55.179653,21.464897 - 5856: 40.54635,24.083632 - 5857: 37.848434,24.021088 - 5858: 42.54635,22.822338 - 5859: 43.535934,22.811914 - 5860: 44.473434,21.988426 - 5861: 44.931767,21.14409 - 5892: -24.370983,-27.014597 - 5893: -24.433483,-26.983324 - 5894: -24.704317,-26.83739 - 5895: -25.006401,-26.691456 - 5896: -24.467266,-20.584093 - 5897: -24.352682,-21.21995 - 5898: -24.571432,-20.938505 - 5899: -24.571432,-21.626482 - 5900: -24.561016,-22.324884 - 5901: -24.791817,-23.408972 - 5902: -25.718899,-23.857199 - 5903: -28.4341,-20.159492 - 5904: -28.4966,-19.898895 - 5905: -29.46535,-19.51321 - 5906: -30.579931,-19.32558 - 5907: -33.11118,-19.971863 - 5908: -32.371597,-20.04483 - 5909: -30.829931,-21.097645 - 5910: -29.569515,-21.22273 - 5911: -28.77785,-20.764078 - 5912: -7.2428117,-27.64197 - 5913: -7.003228,-28.06935 - 5914: -6.971978,-28.079773 - 5915: -7.1178117,-25.98091 - 5916: -7.128228,-24.792583 - 5917: -5.2634015,-20.342798 - 5918: -5.0342345,-20.592972 - 5919: -4.5446515,-22.344189 - 5920: -4.398818,-23.365732 - 5921: -4.325901,-24.387274 - 5922: -4.346734,-25.231611 - 5923: -7.1580296,-20.84307 - 5958: -23.581772,-43.4543 - 5959: -23.415104,-43.391758 - 5960: -23.081772,-43.152008 - 5961: -22.925522,-42.828865 - 5962: -22.435938,-40.587727 - 5963: -22.467188,-41.0568 - 5964: -22.560938,-41.90114 - 5965: -21.59118,-43.631508 - 5966: -9.005033,-40.82498 - 5967: -8.963366,-41.11685 - 5968: -8.869616,-41.746315 - 5969: -8.963366,-42.309208 - 5970: -8.880033,-42.794773 - 6438: 8.812364,-20.650158 - 6439: 8.885281,-20.33744 - 6440: 8.666531,-19.639038 - 6441: 15.988506,-19.253355 - 6442: 15.91559,-20.06642 - 6443: 19.966806,-21.796787 - 6444: 19.029306,-22.119928 - 6445: 18.218397,-22.610744 - 6446: 16.530897,-23.04855 - 6447: 14.780897,-23.21533 - 6448: 13.093397,-20.46342 - 6449: 12.166314,-20.525963 - 6450: 8.2101,-23.694832 - 6451: 7.480933,-23.882462 - 6452: 6.4080167,-23.934582 - 6453: 5.2830167,-23.673985 - 6454: 4.762183,-22.527353 - 6455: 4.699683,-21.599627 - 6456: 22.741604,-24.230524 - 6457: 22.731186,-24.814262 - 6458: 23.449936,-25.262491 - 6459: 23.47077,-24.93935 - 6460: 19.75202,-25.80289 - 6461: -74.53544,-27.091312 - 6462: -74.75419,-26.54927 - 6463: -74.11877,-32.478603 - 6464: -75.49377,-33.260395 - 6465: -79.911964,-37.73515 - 6466: -80.411964,-37.380737 - 6467: -82.67238,-33.57601 - 6468: -85.20363,-30.62568 - 6469: -85.3078,-31.6368 - 6847: -23.661736,90.64396 - 6848: -23.62007,90.57099 - 6849: -23.40132,90.14361 - 6902: 36.567677,-3.9678266 - 6903: 36.661427,-4.1346097 - 6904: 36.817677,-4.238848 - 6905: 37.18226,-4.32224 - 6906: 37.43226,-4.2492723 - 6907: 37.661427,-4.0407944 - 6908: 37.95309,-3.9365551 - 6909: 37.90101,-4.197153 - 6910: 37.692677,-4.405631 - 6911: 37.96351,-4.5307174 - 6912: 38.10934,-4.5098696 - 6913: 38.32809,-4.218001 - 6914: 37.93226,-3.8427403 - 6915: 37.567677,-4.301392 - 6916: 38.08851,-4.4890223 - 6917: 38.43226,-4.5098696 - 6918: 38.723927,-4.290968 - 6919: 39.27601,-4.1033373 - 6920: 39.71351,-4.0407944 - 6921: 39.89059,-3.915707 - 6922: 38.05726,-8.905918 - 6923: 37.98434,-8.853799 - 6924: 37.786427,-8.697439 - 6925: 37.598927,-8.791255 - 6926: 37.567677,-9.093549 - 6927: 37.817677,-9.41669 - 6928: 38.30726,-9.41669 - 6929: 38.49476,-9.17694 - 6930: 38.89059,-9.041429 - 6931: 39.49476,-9.093549 - 6932: 39.79684,-8.93719 - 6933: 40.46351,-8.947614 - 6934: 40.96351,-9.062277 - 6935: 41.223927,-8.874646 - 6936: 41.286427,-8.718287 - 6937: 41.61976,-8.874646 - 6938: 42.005177,-9.145668 - 6939: 42.65101,-9.135243 - 6940: 43.27601,-8.978886 - 6941: 43.42184,-8.822527 - 6942: 43.95309,-8.853799 - 6943: 44.411427,-8.978886 - 6944: 45.255177,-8.989309 - 6945: 45.51559,-8.926766 - 6946: 45.786427,-8.999733 - 6947: 45.98434,-9.093549 - 6948: 46.17184,-9.156092 - 6949: 46.29684,-9.062277 - 6950: 46.10934,-8.853799 - 7024: 33.963623,-10.945465 - 7025: 36.328667,-20.029716 - 7026: 36.297417,-20.123531 - 7027: 36.037,-20.113108 - 7028: 35.589085,-19.706575 - 7029: 36.3495,-23.323671 - 7030: 36.214085,-23.073498 - 7031: 36.203667,-22.541878 - 7032: 36.328667,-22.57315 - 7033: 35.953667,-23.605116 - 7034: 35.4745,-24.449453 - 7035: 34.964085,-25.923508 - 7036: 35.38075,-26.05902 - 7037: 35.651585,-26.694876 - 7038: 34.745335,-27.018017 - 7039: 33.75575,-27.070137 - 7040: 33.016167,-26.684452 - 7041: 33.50575,-26.079866 - 7042: 34.526585,-26.079866 - 7043: 34.682835,-25.50655 - 7044: 34.359917,-24.776876 - 7051: 32.510376,-17.76969 - 7052: 32.749958,-18.155375 - 7053: 33.135376,-17.999016 - 7054: 33.239544,-19.041407 - 7055: 33.156208,-19.593874 - 7056: 32.864544,-20.125494 - 7057: 33.020794,-20.792624 - 7058: 33.145794,-21.376362 - 7059: 32.937458,-21.793318 - 7060: 32.708294,-22.189426 + 3437: -18,-13 + 3438: -18,-10 + 3439: -18,-9 + 3440: -18,-5 + 3441: -14,-7 + 3442: -6,-12 + 3443: -6,-12 + 3444: -7,-13 + 3445: -17,-3 + 3446: -16.532848,-2.616184 + 3447: -14.814097,-2.7516947 + 3448: -13.282847,-2.3972821 + 3449: -12.58493,-2.4910975 + 3450: -11.376597,-2.6057603 + 3451: -10.095347,-0.3857574 + 3452: -9.657847,-0.3857574 + 3453: -9.543263,-0.82356197 + 3454: -8.543263,-0.50042087 + 3455: -9.39743,-1.0320396 + 3456: -10.689097,-0.5629641 + 3457: -11.251597,-0.073040605 + 3458: -13.345347,1.8762295 + 3459: -9.05368,3.035382 + 3460: -5.3280025,0.8672097 + 3461: 3.9595351,3.4078434 + 3462: 4.386618,3.0534308 + 3463: 8.475068,-0.8927023 + 3464: 9.329235,-7.501841 + 3465: 13.172985,-10.171054 + 3466: 11.412568,-10.34826 + 3467: 12.532054,-17.244085 + 3468: 12.886221,-16.837553 + 3469: 16.282053,-16.360853 + 3470: 7.271637,-20.156952 + 3471: 18.93221,-23.22158 + 3472: 20.604755,-23.096493 + 3473: 22.661444,-24.670504 + 3474: 26.755194,-24.439537 + 3475: 26.703112,-24.783527 + 3476: 26.348944,-24.554201 + 3477: 26.848944,-23.51181 + 3485: 27.419094,-20.067987 + 3486: 28.752426,-20.276466 + 3487: 26.96076,-18.587793 + 3488: 27.481594,-19.692726 + 3489: 27.699795,-19.838661 + 3490: 28.939379,-20.04714 + 3491: 29.814379,-19.974173 + 3492: 31.835606,-18.942205 + 3493: 27.106438,-16.211426 + 3494: 28.293938,-16.263546 + 3495: 31.50227,-15.9821005 + 3496: 32.846024,-15.888285 + 3497: 33.564774,-12.250341 + 3498: 34.908524,-14.084949 + 3499: 27.67448,-16.138458 + 3500: 24.20573,-17.180847 + 3501: 15.218217,-17.790993 + 3502: 15.561966,-18.166252 + 3503: 15.395301,-18.875078 + 3504: 22.92655,-15.768755 + 3505: 23.343216,-16.206558 + 3506: 23.67655,-16.727755 + 3507: 22.874466,-15.424767 + 3508: 22.9578,-14.705517 + 3509: 22.978634,-14.121778 + 3510: 22.9578,-13.715245 + 3511: 24.134884,-12.412257 + 3512: 15.155273,-12.948674 + 3513: 16.019855,-13.011218 + 3514: 16.374023,-11.916707 + 3515: 16.50944,-12.448327 + 3516: 17.769424,-13.334359 + 3517: 19.394424,-13.626228 + 3518: 20.243248,-8.682604 + 3519: 21.149498,-8.119713 + 3520: 22.149498,-7.8903866 + 3521: 19.440414,-9.328886 + 3522: 17.596664,-9.443549 + 3523: 24.597193,-6.6603656 + 3524: 25.243027,-6.7124853 + 3525: 25.878443,-6.743757 + 3526: 26.107609,-6.7646046 + 3527: 25.690943,-7.317072 + 3528: 25.097193,-8.109289 + 3529: 23.466253,-10.850778 + 3530: 26.122503,-5.1448708 + 3531: 25.549587,-5.1448708 + 3532: 24.497503,-5.00936 + 3533: 23.41417,-4.8217297 + 3534: 26.924587,-4.5507083 + 3535: 26.455837,-4.383926 + 3536: 24.07042,-4.34223 + 3537: 22.185003,-4.1129045 + 3538: 27.13292,-3.7689154 + 3539: 25.768337,-3.4249263 + 3540: 23.612087,-3.258144 + 3541: 22.185003,-2.9766986 + 3542: 26.341253,-2.4033837 + 3543: 25.091253,-1.2567542 + 3544: 24.466253,-0.9544608 + 3545: 23.122503,-1.4548085 + 3546: 21.75792,-1.8717647 + 3547: 25.143337,-1.3714168 + 3548: 24.862087,-2.3095686 + 3549: 24.88292,-3.7584918 + 3550: 25.997503,-1.24633 + 3551: 26.153753,-2.048971 + 3552: 26.830837,-3.560437 + 3553: 23.612087,-2.34084 + 3554: 22.487087,-2.5597425 + 3555: 21.03917,-3.1122096 + 3556: 25.32042,-0.40598077 + 3557: 25.216253,0.6676817 + 3558: 25.122503,1.2722678 + 3559: 25.19542,2.3563542 + 3560: 24.737087,2.2521152 + 3561: 24.41417,1.5745616 + 3562: 24.278753,1.0950618 + 3563: 34.869835,-4.040743 + 3564: 34.442753,-6.459089 + 3565: 35.380253,-7.3972406 + 3566: 36.734417,-8.523023 + 3567: 36.340343,-7.188762 + 3568: 36.559093,-7.9705553 + 3569: 36.29868,-8.512599 + 3570: 34.934093,-8.846164 + 3571: 33.215343,-7.1679144 + 3572: 31.859966,-7.991404 + 3573: 31.359962,-7.9809794 + 3574: 30.547462,-8.012251 + 3575: 29.18288,-7.8350444 + 3576: 30.662046,-8.9712515 + 3577: 30.24538,-6.8760457 + 3578: 29.87038,-3.8009927 + 3579: 30.547462,-3.2902212 + 3580: 29.74538,-4.4576993 + 3581: 34.8489,-1.1564186 + 3582: 35.58848,-1.0521793 + 3583: 36.69265,-1.1772659 + 3584: 38.265564,-1.2710814 + 3585: 37.640564,6.0891495 + 3586: 37.546814,5.432443 + 3587: 37.25515,3.9730964 + 3588: 38.953064,5.891095 + 3589: 37.4114,5.911943 + 3590: 40.74473,5.07803 + 3591: 40.578064,3.806314 + 3592: 40.734314,6.1412687 + 3593: 41.74473,3.9001293 + 3594: 41.203064,2.8056188 + 3595: 38.33848,2.9202814 + 3596: 36.31765,2.0967932 + 3597: 40.828064,1.450511 + 3598: 41.421814,0.7521093 + 3599: 39.671814,0.86677194 + 3600: 40.30723,-0.97825927 + 3601: 46.599323,0.67914176 + 3602: 46.349323,0.2204898 + 3603: 23.944952,5.297336 + 3604: 24.549118,4.484271 + 3605: 24.903284,4.1507063 + 3606: 25.559534,4.02562 + 3607: 23.944952,4.9220757 + 3608: 26.059534,4.286217 + 3609: 27.997034,4.119435 + 3610: 28.976202,4.0568914 + 3611: 28.757452,6.5690527 + 3612: 28.299118,5.370303 + 3613: 27.767868,4.890804 + 3614: 28.840784,9.07079 + 3615: 29.101202,8.351541 + 3616: 29.007452,7.9137363 + 3617: 28.080368,7.9971275 + 3618: 26.528284,8.7684965 + 3619: 25.236618,8.820616 + 3620: 27.507452,9.112485 + 3621: 25.819952,8.216029 + 3622: 25.424118,7.4446607 + 3623: 24.632452,6.5794764 + 3624: 26.299118,7.4863563 + 3625: 26.851202,6.548205 + 3626: 29.50109,8.769991 + 3627: 31.813591,8.530241 + 3628: 32.801582,8.571937 + 3629: 35.819508,8.509394 + 3630: 36.10142,8.551089 + 3631: 34.01809,8.353035 + 3632: 44.559753,8.300916 + 3633: 48.721,10.219759 + 3634: 49.41892,10.365694 + 3635: 49.73142,10.939009 + 3636: 50.096,11.512323 + 3637: 50.06475,12.763192 + 3638: 49.773083,12.794464 + 3639: 49.20017,12.888279 + 3640: 50.4085,9.854922 + 3641: 47.165226,12.681936 + 3642: 47.133976,12.640241 + 3643: 46.34231,12.421338 + 3644: 45.769394,12.285828 + 3645: 47.12356,11.577003 + 3646: 45.488144,11.483187 + 3647: 44.915226,11.816752 + 3648: 45.040226,12.838295 + 3649: 44.02981,13.317794 + 3650: 45.102726,14.120435 + 3651: 43.102726,13.567968 + 3652: 41.571476,13.17186 + 3653: 41.238144,11.545731 + 3654: 42.40481,10.732666 + 3655: 39.27981,14.454 + 3656: 37.738144,14.07874 + 3657: 37.363144,14.172555 + 3658: 37.28786,12.232981 + 3659: 30.721037,11.951535 + 3660: 30.978573,11.878568 + 3661: 30.874405,11.920263 + 3662: 32.95774,11.847296 + 3663: 28.236643,10.898721 + 3664: 29.028309,11.023808 + 3665: 29.892893,11.023808 + 3666: 27.809559,11.148894 + 3667: 26.736643,11.075927 + 3668: 25.517893,11.055079 + 3669: 24.609991,11.958938 + 3670: 22.615698,15.805538 + 3671: 22.48028,14.700603 + 3672: 22.240698,13.710331 + 3673: 20.626114,12.157169 + 3674: 21.29278,19.631111 + 3675: 22.282364,18.380241 + 3676: 22.865698,17.139797 + 3677: 26.246363,12.3448 + 3678: 26.642197,15.190526 + 3679: 28.506779,18.233698 + 3680: 27.381779,16.90986 + 3681: 28.319279,21.058577 + 3682: 28.506779,21.673588 + 3683: 28.538029,21.069 + 3684: 28.558863,20.391445 + 3685: 28.725529,17.879284 + 3686: 28.267197,17.337242 + 3687: 27.798447,16.774351 + 3688: 29.506779,17.076645 + 3689: 33.831654,17.472752 + 3690: 33.800404,18.098186 + 3691: 33.612904,19.130154 + 3692: 33.43582,17.712502 + 3693: 34.22749,21.81991 + 3694: 34.394154,21.663551 + 3695: 33.32124,20.683704 + 3696: 30.425404,21.694225 + 3697: 30.352486,21.318964 + 3698: 29.87332,20.620564 + 3699: 30.09207,20.9854 + 3700: 33.78361,25.00645 + 3701: 29.544073,26.320004 + 3702: 29.27324,25.089983 + 3703: 34.512825,24.06844 + 3704: 36.273243,24.01632 + 3705: 37.012825,26.121948 + 3706: 38.491993,26.351274 + 3707: 40.856575,26.351274 + 3708: 41.689907,26.226189 + 3709: 37.898243,26.299156 + 3710: 41.939907,24.714722 + 3711: 38.491993,23.797419 + 3712: 36.616993,22.776781 + 3713: 37.273243,18.721882 + 3714: 37.578465,17.70034 + 3715: 42.321777,17.762882 + 3716: 42.071777,18.263231 + 3717: 40.93636,19.024176 + 3718: 42.34261,18.857393 + 3719: 43.811356,17.335503 + 3720: 43.204903,17.012362 + 3721: 39.45091,21.58814 + 3722: 47.711323,22.390781 + 3723: 47.35716,21.473478 + 3724: 46.54466,21.265 + 3725: 45.648823,25.399319 + 3726: 46.32591,24.97869 + 3727: 46.773823,24.843376 + 3728: 46.03424,30.878817 + 3729: 46.461323,30.94136 + 3730: 45.98216,31.222805 + 3731: 44.20091,30.914654 + 3732: 42.66966,30.747871 + 3733: 45.10716,33.039444 + 3734: 44.95091,34.752834 + 3735: 44.086323,35.43039 + 3736: 43.73216,37.10864 + 3737: 46.31549,36.20176 + 3738: 45.26341,38.178833 + 3739: 43.78424,38.700027 + 3740: 44.07591,39.189953 + 3741: 44.88841,41.472904 + 3742: 44.81549,42.969856 + 3743: 43.398823,43.41812 + 3744: 42.13841,45.57587 + 3745: 41.29466,45.784348 + 3746: 40.25299,45.773922 + 3747: 40.805073,45.14849 + 3748: 41.40924,46.77462 + 3749: 40.47174,46.399357 + 3750: 40.898823,44.418816 + 3751: 40.94049,43.01159 + 3752: 41.78424,43.79338 + 3753: 43.089558,43.867336 + 3754: 44.63122,45.316257 + 3755: 45.058308,49.154198 + 3756: 44.933308,50.246536 + 3757: 45.120808,48.057518 + 3758: 43.48539,48.89521 + 3759: 43.57914,49.353863 + 3760: 43.777058,49.009872 + 3761: 43.870808,48.69716 + 3762: 42.54789,48.99945 + 3763: 41.29789,48.978603 + 3764: 41.50622,39.01236 + 3765: 41.277058,39.043633 + 3766: 40.00622,39.158295 + 3767: 40.339558,38.991512 + 3768: 44.729176,53.597824 + 3769: 44.458344,53.066204 + 3770: 43.406258,52.774334 + 3771: 37.822926,52.30526 + 3772: 38.437508,52.31568 + 3773: 39.239594,52.138474 + 3774: 39.791676,52.180172 + 3775: 38.927094,51.83618 + 3776: 37.843758,51.700672 + 3777: 27.165503,51.578514 + 3778: 31.206818,51.695198 + 3779: 30.310984,51.75774 + 3780: 27.331818,50.42348 + 3781: 25.748484,47.463093 + 3782: 24.842234,48.01556 + 3783: 25.071402,47.142246 + 3784: 26.529734,44.515423 + 3785: 27.571402,43.024803 + 3786: 25.550568,38.483986 + 3787: 25.175568,38.62992 + 3788: 25.810984,39.578495 + 3789: 26.071402,40.33944 + 3790: 31.253078,44.27846 + 3791: 32.232246,41.672485 + 3792: 33.888496,42.391735 + 3793: 34.357246,42.03732 + 3794: 34.107246,44.28936 + 3795: 34.107246,47.361183 + 3796: 33.97183,51.60324 + 3797: 33.461414,51.44688 + 3798: 32.732246,51.321793 + 3799: 31.523914,50.77975 + 3800: 30.325994,50.72763 + 3801: 23.935377,46.89536 + 3802: 23.206211,46.9996 + 3803: 22.549961,47.385284 + 3804: 20.956211,48.615303 + 3805: 18.924961,47.9169 + 3806: 20.987461,45.33177 + 3807: 21.195793,44.779305 + 3808: 21.924961,44.383198 + 3809: 21.466627,43.83073 + 3810: 21.049961,43.924545 + 3811: 25.297033,37.934616 + 3812: 24.266186,34.621353 + 3813: 25.44327,34.81941 + 3814: 26.09952,34.79856 + 3815: 26.713217,34.953156 + 3816: 25.119516,22.793173 + 3817: 25.807016,23.095467 + 3818: 26.661182,22.62639 + 3819: 24.535053,20.744965 + 3820: 21.347553,20.901323 + 3821: 20.118387,21.026411 + 3822: 18.38922,21.328705 + 3823: 18.629936,24.316092 + 3824: 19.629936,24.128462 + 3825: 19.296602,25.896872 + 3826: 11.379937,31.908005 + 3827: 11.473687,31.543167 + 3828: 11.484103,30.88646 + 3829: 10.077853,30.625862 + 3830: 10.921603,31.147057 + 3831: 11.61952,32.043514 + 3832: 12.192437,31.324265 + 3833: 12.692437,30.396536 + 3834: 19.96327,32.08521 + 3835: 18.40077,32.022667 + 3836: 19.734102,30.855188 + 3837: 16.577852,30.625862 + 3838: 15.7450695,24.53702 + 3839: 15.140903,24.067945 + 3840: 14.5367365,22.556479 + 3841: 16.849236,20.377882 + 3842: 17.422152,18.751753 + 3843: 18.12007,18.428612 + 3844: 19.27632,23.776075 + 3845: 18.922152,23.932434 + 3846: 14.52452,19.53984 + 3847: 13.46202,20.373755 + 3848: 8.045353,21.979036 + 3849: 5.861649,17.692434 + 3850: 6.9137325,16.498894 + 3851: 7.6533165,15.568497 + 3852: 5.986649,13.26724 + 3853: 6.611649,12.853299 + 3854: 6.642899,6.7943683 + 3855: 7.6324825,6.051437 + 3856: 6.788732,2.7948875 + 3857: 6.392899,2.15044 + 3858: 5.486649,0.7953317 + 3859: 6.0283155,0.67030525 + 3860: 7.3095655,-0.34081322 + 3861: 8.5283165,-1.6854973 + 3862: 7.9241495,-5.599303 + 3863: 8.0595665,-4.436144 + 3864: 8.3408165,-4.9781857 + 3865: 8.4345665,-5.5202293 + 3866: 9.069983,-7.0838156 + 3867: 6.5595655,-4.8009796 + 3868: 5.851232,-6.427109 + 3869: 10.849246,-7.03366 + 3870: 11.58883,-7.190019 + 3871: 4.6863317,22.035303 + 3872: 4.1654983,21.211815 + 3873: -1.907418,21.57665 + 3874: 1.623832,23.359138 + 3875: 1.9779987,23.181932 + 3876: 1.7771201,21.378597 + 3877: -0.16037995,21.159695 + 3878: -0.9241701,24.130508 + 3879: -4.746551,23.536345 + 3880: -5.121551,24.359833 + 3881: -5.423634,24.67255 + 3882: -6.517384,24.568312 + 3883: -7.934051,24.599583 + 3884: -9.215301,24.662127 + 3885: -10.434051,24.464073 + 3886: -10.069467,24.2139 + 3887: -9.684051,23.901182 + 3888: -8.642384,23.651009 + 3889: -7.1007175,23.452953 + 3890: -6.215301,23.411259 + 3891: -8.525336,20.967396 + 3892: -11.535753,21.45732 + 3893: -12.917024,24.256956 + 3894: -13.010774,25.961649 + 3895: -13.312857,29.15422 + 3896: -13.469107,31.442356 + 3897: -13.979524,36.46825 + 3898: -13.979524,36.155533 + 3899: -14.042024,35.811543 + 3900: -15.05244,34.581524 + 3901: -12.719107,30.401537 + 3902: -5.141668,37.232647 + 3903: -4.6520844,36.304916 + 3904: -3.7979174,34.86642 + 3905: -3.4854174,33.865723 + 3906: -3.5166674,32.510616 + 3907: -4.4854174,30.665585 + 3908: -1.2562506,30.769825 + 3909: -0.8500007,32.646126 + 3910: -8.231247,38.430656 + 3911: -9.522913,38.44108 + 3912: -9.106246,39.712795 + 3913: -8.981246,40.932392 + 3914: -9.679163,41.766304 + 3915: -10.043747,43.05887 + 3916: -8.064581,42.933784 + 3917: -8.418747,41.78715 + 3918: -14.057743,37.065125 + 3919: -17.797327,37.90946 + 3920: -13.807743,42.034073 + 3921: -14.53691,42.169582 + 3922: -15.297327,44.08758 + 3923: -17.182745,43.889526 + 3924: -18.047327,42.763744 + 3925: -19.005661,40.50176 + 3926: -20.661911,39.65742 + 3927: -20.088995,40.011833 + 3928: -17.922327,37.899117 + 3929: -18.099411,36.43818 + 3930: -18.370245,35.604267 + 3931: -19.151495,34.468063 + 3932: -19.370245,33.884323 + 3933: -18.182745,33.446518 + 3934: -17.380661,33.571606 + 3935: -22.344788,39.47244 + 3936: -22.751038,40.94221 + 3937: -25.761456,39.243114 + 3938: -26.896872,39.26396 + 3939: -29.355206,39.534985 + 3940: -30.067593,39.652775 + 3941: -32.553303,40.778557 + 3942: -33.481487,37.504967 + 3943: -31.585653,35.795444 + 3944: -31.002321,30.852837 + 3945: -31.377321,28.237875 + 3946: -32.18982,27.370338 + 3947: -30.679403,26.851313 + 3948: -31.119087,23.939573 + 3949: -32.90309,21.730259 + 3950: -35.210823,21.187757 + 3951: -34.794155,20.875042 + 3952: -33.669155,18.957043 + 3953: -32.20041,17.77914 + 3954: -30.444805,18.49839 + 3955: -27.177578,19.186369 + 3956: -24.423416,19.123825 + 3957: -24.13175,19.186369 + 3958: -28.94425,19.321878 + 3959: -22.327682,23.658224 + 3960: -22.098515,23.35593 + 3961: -21.181849,22.709648 + 3962: -22.786015,22.39693 + 3963: -19.5617,21.124546 + 3964: -18.176285,23.386534 + 3965: -24.459047,11.871808 + 3966: -25.604881,12.028167 + 3967: -23.927797,11.746721 + 3968: -22.72988,9.755754 + 3969: -21.94863,11.361036 + 3970: -22.594463,7.1784043 + 3971: -23.750713,2.3874435 + 3972: -26.063213,0.61707854 + 3973: -25.844463,2.5051558 + 3974: -38.117897,3.255677 + 3975: -40.149147,4.94435 + 3976: -42.284565,6.862349 + 3977: -37.607483,8.0506735 + 3978: -38.326233,8.623988 + 3979: -38.044983,7.950757 + 3980: -37.305397,6.1578455 + 3981: -37.149147,5.063335 + 3982: -37.201233,2.6449885 + 3983: -36.534565,-3.156522 + 3984: -36.961647,-3.354576 + 3985: -39.289185,-3.3337276 + 3986: -47.777866,-4.4167066 + 3987: -52.660725,-2.1737058 + 3988: -55.374886,-2.997194 + 3989: -57.2565,-3.455846 + 3990: -61.762447,-3.0493138 + 3991: -64.78329,-3.4245746 + 3992: -65.88745,-4.633748 + 3993: -71.41285,-1.6212385 + 3994: -72.16285,-0.589272 + 3995: -72.95026,5.216684 + 3996: -73.17942,4.3410754 + 3997: -73.971085,-1.4264553 + 3998: -73.002335,-4.853541 + 3999: -72.814835,-6.847305 + 4000: -73.07526,-10.073644 + 4001: -73.63776,-12.86725 + 4002: -73.01056,-14.304357 + 4003: -71.36473,-15.636832 + 4004: -71.66681,-16.710493 + 4005: -72.26056,-17.544407 + 4006: -72.79181,-15.84531 + 4007: -71.36473,-17.012787 + 4008: -69.937645,-17.221264 + 4009: -69.36473,-16.429049 + 4010: -69.062645,-15.41793 + 4011: -68.47931,-16.053787 + 4012: -68.062645,-16.971092 + 4013: -64.34564,-14.678927 + 4014: -63.949806,-14.136885 + 4015: -64.55398,-13.501026 + 4016: -71.51188,-12.193083 + 4017: -75.31595,-18.205387 + 4018: -73.38887,-23.328585 + 4019: -73.63887,-25.027681 + 4020: -73.81595,-25.809475 + 4021: -73.836784,-24.579453 + 4022: -74.211784,-25.507181 + 4023: -74.50345,-25.319551 + 4024: -75.35762,-25.048529 + 4025: -72.055534,-24.443943 + 4026: -74.01387,-26.102983 + 4027: -80.77169,-14.003633 + 4028: -80.54253,-8.030733 + 4029: -54.147945,54.05475 + 4030: -54.220863,51.81361 + 4031: -52.293777,52.20972 + 4032: -51.137527,53.283382 + 4033: -49.731277,51.76149 + 4034: -48.168777,49.259754 + 4035: -47.522945,47.664894 + 4036: -47.28021,45.775455 + 4037: -42.7609,45.077053 + 4038: -45.711395,45.62952 + 4039: -42.950977,45.462738 + 4040: -39.857227,45.306377 + 4041: -36.253063,45.22299 + 4042: -42.013477,48.235497 + 4043: -39.596813,46.129868 + 4044: -39.232227,48.256344 + 4045: -38.784313,47.61006 + 4046: -36.60944,52.003372 + 4047: -37.67194,51.35709 + 4048: -43.161522,50.867165 + 4049: -37.807354,50.669113 + 4050: -35.869854,49.314003 + 4051: -35.503277,48.115253 + 4052: -37.871613,45.309006 + 4053: -34.53828,45.996983 + 4054: -32.94453,45.986557 + 4055: -32.704945,46.195038 + 4056: -34.915768,44.641876 + 4057: -32.92618,43.98517 + 4058: -32.134518,44.030342 + 4059: -30.269936,41.247158 + 4060: -29.905352,44.353714 + 4061: -28.707434,43.905483 + 4062: -26.276476,43.07157 + 4063: -26.245226,45.07296 + 4064: -23.838976,43.17581 + 4065: -24.151476,44.728973 + 4066: -22.29532,43.12369 + 4067: -26.200085,47.92911 + 4068: -27.351353,48.957184 + 4069: -26.496693,49.84182 + 4070: -32.986275,51.392048 + 4071: -24.989897,49.90143 + 4072: -22.91698,51.07933 + 4073: -21.562813,51.50671 + 4074: -21.156563,51.95494 + 4075: -21.031563,48.91116 + 4076: -21.19823,48.73395 + 4077: -19.823692,52.559525 + 4078: -18.89661,51.110603 + 4079: -16.191216,51.527557 + 4080: -13.1391325,50.43305 + 4081: -12.595734,48.80692 + 4082: -10.470734,49.7138 + 4083: -8.137402,50.58941 + 4084: -1.4589446,49.74507 + 4085: -4.0631113,48.765224 + 4086: -3.996604,48.827766 + 4087: 1.4200628,49.31769 + 4088: 2.3361983,49.98482 + 4089: 2.502865,51.20442 + 4090: 2.8986983,51.152298 + 4091: 4.877865,49.39066 + 4092: 6.0302835,49.651257 + 4093: 7.717784,53.633186 + 4094: 7.749034,53.987602 + 4095: 7.634451,54.821514 + 4096: 6.988617,54.665154 + 4097: 7.926118,52.486557 + 4098: 8.134451,50.03694 + 4099: 9.332122,50.27669 + 4100: 11.0009775,48.33976 + 4101: 11.292644,46.400913 + 4102: 10.032227,45.410645 + 4103: 8.86556,46.12989 + 4104: 11.417644,43.122326 + 4105: 12.5634775,40.985428 + 4106: 9.14681,35.544983 + 4107: 7.1155596,35.543716 + 4108: 6.9593096,37.11773 + 4109: 6.542643,38.660465 + 4110: 6.8655596,37.399174 + 4111: 7.0530596,36.64865 + 4112: 4.22942,35.66222 + 4113: 4.7710867,34.11948 + 4114: 5.896087,28.190945 + 4115: 6.2815037,24.555466 + 4116: 3.333587,23.239985 + 4117: 1.8127537,23.511005 + 4118: 11.111213,52.948692 + 4119: 10.24663,54.710335 + 4120: 10.18413,54.99178 + 4121: 9.882046,57.50394 + 4122: 8.913296,58.337852 + 4123: 7.8612127,58.921593 + 4124: 7.2674623,60.787468 + 4125: 8.027879,61.631805 + 4126: 9.423713,60.558144 + 4127: 9.96538,59.901436 + 4128: 10.892463,61.42333 + 4129: 10.736213,62.382328 + 4130: 13.142463,56.127983 + 4131: 13.569546,56.899353 + 4132: 15.611212,56.38858 + 4133: 18.007046,56.961895 + 4134: 20.007046,56.01332 + 4135: 18.892462,54.929234 + 4136: 16.819546,54.314224 + 4137: 10.991041,63.454468 + 4138: 11.491042,63.996513 + 4139: 11.918125,63.84015 + 4140: 12.011875,64.99721 + 4141: 11.876458,65.351616 + 4142: 11.126458,66.15426 + 4143: 11.032708,67.175804 + 4144: 10.761875,68.10353 + 4145: 9.845208,68.312004 + 4146: 8.709791,68.37455 + 4147: 8.053541,68.28074 + 4148: 7.543124,67.39471 + 4149: 7.522291,66.5191 + 4150: 7.168124,65.831116 + 4151: 7.0847907,64.46558 + 4152: 7.0639577,64.31965 + 4153: 7.0327077,64.91381 + 4154: 6.855624,66.24807 + 4155: 6.761874,67.23834 + 4156: 6.6785407,68.03056 + 4157: 6.8660407,69.33355 + 4158: 6.9077077,69.55245 + 4159: 6.949374,69.03126 + 4160: 6.980624,67.70742 + 4161: 7.4077077,67.30089 + 4162: 7.563958,68.249466 + 4163: 7.772291,69.0521 + 4164: 9.032708,69.42736 + 4165: 10.063958,69.41694 + 4166: 10.949375,69.385666 + 4167: 10.959791,68.416245 + 4168: 10.220208,68.45794 + 4169: 7.959791,68.3954 + 4170: 10.845208,68.84363 + 4171: 11.511875,68.18692 + 4172: 11.970208,66.102135 + 4173: 12.074375,65.643486 + 4174: 12.324375,68.791504 + 4175: 12.428542,65.71645 + 4176: 11.824375,64.674065 + 4177: 11.126458,64.778305 + 4178: 10.824375,66.28977 + 4179: 10.386875,67.71784 + 4180: 9.584791,67.86378 + 4181: 8.928541,65.549675 + 4182: 10.095208,64.40304 + 4183: 10.282708,64.006935 + 4184: 10.324375,63.788033 + 4185: 13.085067,63.96402 + 4186: 13.980901,64.02656 + 4187: 14.116317,64.1308 + 4188: 14.251734,65.15234 + 4189: 14.282984,66.56999 + 4190: 14.418401,65.39209 + 4191: 14.574651,63.3907 + 4192: 14.710067,61.212105 + 4193: 14.553817,64.10462 + 4194: 14.585067,66.71647 + 4195: 14.668401,70.27652 + 4196: 14.501734,71.70704 + 4197: 14.157984,72.322044 + 4198: -12.870427,83.930214 + 4199: -12.932927,83.40902 + 4200: -12.755843,82.60638 + 4201: -12.339177,81.75162 + 4202: -11.474593,81.136604 + 4203: -10.61001,81.053215 + 4204: 19.254375,65.00493 + 4205: 19.618958,64.03551 + 4206: 20.191875,62.815907 + 4207: 20.483541,64.577545 + 4208: 22.077291,61.898605 + 4209: 23.525208,61.429527 + 4210: 23.973125,60.564342 + 4211: 23.389791,60.220356 + 4212: 16.837708,61.512917 + 4213: 15.452292,61.773518 + 4214: 15.441875,61.75267 + 4215: -37.95692,-26.163164 + 4216: -37.946503,-26.455034 + 4217: -37.20692,-29.622608 + 4218: -37.290253,-30.060413 + 4219: -37.623585,-30.74839 + 4220: -39.14442,-31.41552 + 4221: -40.571503,-31.832476 + 4222: -41.14442,-31.290434 + 4223: -41.58192,-30.300163 + 4224: -37.967587,-30.723152 + 4225: -38.05092,-31.108837 + 4226: -56.048733,-35.095745 + 4227: -57.944565,-36.086018 + 4228: -58.798733,-37.46197 + 4229: -58.861233,-38.1708 + 4230: -58.5904,-38.52521 + 4231: -57.975815,-39.692688 + 4232: -56.017483,-39.77608 + 4233: -55.288315,-38.129105 + 4234: -55.05915,-36.711452 + 4235: -54.882065,-36.20068 + 4236: -80.596344,-38.388527 + 4237: -80.61718,-39.264133 + 4238: -80.221344,-39.56643 + 4239: -79.67968,-40.12932 + 4240: -79.388016,-38.99917 + 4241: -84.304405,-30.28082 + 4242: -85.866905,-30.114038 + 4243: -83.69129,-30.364212 + 4244: -89.95491,-23.975794 + 4245: -90.57991,-24.038338 + 4246: -91.215324,-24.100882 + 4247: -91.66324,-24.392752 + 4248: -92.121574,-25.059881 + 4249: -91.82991,-23.475447 + 4250: -90.60074,-23.809011 + 4251: -89.04866,-24.25724 + 4252: -88.54866,-24.986916 + 4253: -89.277824,-17.110107 + 4254: -88.88199,-17.110107 + 4255: -88.63199,-17.120531 + 4256: -88.23616,-17.068413 + 4257: -88.03824,-16.84951 + 4258: -87.996574,-16.568066 + 4259: -87.965324,-16.09899 + 4260: -87.95491,-15.494403 + 4261: -88.152824,-16.828663 + 4262: -88.03824,-17.641727 + 4263: -87.965324,-18.18377 + 4264: -87.69449,-17.495792 + 4265: -87.36116,-16.734848 + 4266: -87.14241,-15.692457 + 4267: -87.67366,-14.326925 + 4268: -87.31949,-18.26716 + 4269: -87.29866,-19.267857 + 4270: -87.29866,-20.039227 + 4271: -92.00699,-6.1643047 + 4272: -91.39241,-6.1017613 + 4273: -91.14241,-5.820316 + 4274: -91.215324,-5.40336 + 4275: -89.67366,-3.9335892 + 4276: -90.64241,-3.6625674 + 4277: -92.152824,-3.266459 + 4278: -88.81949,-5.6743813 + 4279: -87.97574,-6.5082936 + 4280: -90.75699,-6.247696 + 4281: -90.75738,14.310686 + 4282: -90.62196,14.112632 + 4283: -90.13238,13.685252 + 4284: -91.11155,14.4461975 + 4285: -91.49696,13.956273 + 4286: -91.43446,15.9263935 + 4287: -91.97613,16.041056 + 4288: -90.97613,16.499708 + 4289: -91.46571,17.260653 + 4290: -91.53863,17.959055 + 4291: -90.91363,18.636608 + 4292: -91.61155,19.084837 + 4293: -91.34071,19.908325 + 4294: -91.2678,20.492064 + 4295: -91.72613,20.742237 + 4296: -91.27821,21.730818 + 4297: -92.19488,22.324982 + 4298: -91.4553,22.983862 + 4299: -90.79905,25.356894 + 4300: -94.06988,25.050785 + 4301: -94.93446,24.133482 + 4302: -95.69488,25.457317 + 4303: -93.38238,25.394773 + 4304: -91.25738,24.1856 + 4305: -89.96571,25.874273 + 4306: -89.75738,24.508741 + 4307: -88.17405,24.070938 + 4308: -87.38238,25.217567 + 4309: -87.43446,21.642168 + 4310: -88.34071,20.161974 + 4311: -93.78863,20.464266 + 4312: -94.40321,21.464962 + 4313: -95.81988,21.840221 + 4314: -93.60113,21.110548 + 4315: -93.80946,17.567955 + 4316: -94.63238,16.335867 + 4317: -95.40321,17.826454 + 4318: -94.29905,16.137907 + 4319: -95.48655,15.846037 + 4320: -88.74696,17.691069 + 4321: -87.84071,17.628525 + 4322: -87.19488,17.357504 + 4323: -87.28863,16.075363 + 4324: -87.60113,15.793917 + 4325: -89.16363,15.929428 + 4326: -89.03863,16.659101 + 4327: -89.40321,17.05521 + 4328: -95.94266,24.127657 + 4329: -95.94266,24.13808 + 4330: -90.70437,13.908267 + 4331: -89.55853,13.428766 + 4332: -88.4752,13.241137 + 4333: -86.37103,13.011811 + 4334: -37.32388,34.248528 + 4335: -38.053047,34.102592 + 4336: -39.115547,34.09217 + 4337: -52.810127,37.674557 + 4338: -52.17471,38.977547 + 4339: -52.810127,46.264038 + 4340: -53.251755,50.076374 + 4341: -52.283005,49.033985 + 4342: -36.73952,54.867203 + 4343: -36.68744,57.011337 + 4344: -36.98952,59.87732 + 4345: -37.041603,62.25946 + 4346: -37.02077,65.12927 + 4347: -37.02077,67.35345 + 4348: -37.02077,69.42614 + 4349: -37.072853,72.69632 + 4350: -37.08327,73.65532 + 4351: -37.02077,73.92634 + 4352: -38.405388,73.94719 + 4353: -40.721672,73.94719 + 4354: -42.064476,74.06185 + 4355: -42.762394,72.831825 + 4356: -43.969833,69.85059 + 4357: -47.306793,70.840866 + 4358: -48.483875,70.840866 + 4359: -46.94221,66.890205 + 4360: -47.838043,66.577484 + 4361: -48.869293,66.879776 + 4362: -54.022034,72.719795 + 4363: -53.147034,72.64683 + 4364: -53.334534,74.158295 + 4365: -52.34495,74.18957 + 4366: -51.147034,72.48005 + 4367: -50.78245,69.94704 + 4368: -49.38662,69.13397 + 4369: -48.76162,71.44808 + 4370: -49.0637,73.03252 + 4371: -48.21995,74.73161 + 4372: -47.38662,74.88797 + 4373: -46.65745,74.460594 + 4374: -46.428284,72.90743 + 4375: -47.022034,72.39666 + 4376: -48.709534,72.77192 + 4377: -48.32412,74.25211 + 4378: -50.09495,77.056145 + 4379: -50.76162,76.55579 + 4380: -44.71995,77.18123 + 4381: -44.16787,76.5141 + 4382: -47.35537,77.79624 + 4383: -48.053284,80.0895 + 4384: -45.8762,80.12077 + 4385: -46.57412,78.16108 + 4386: -46.772034,77.441826 + 4387: -40.44242,74.124916 + 4388: -37.619503,74.05195 + 4389: -37.25492,75.38621 + 4390: -36.97367,76.24097 + 4391: -36.97367,75.87366 + 4392: -36.91117,76.37589 + 4393: -36.89034,77.381165 + 4394: -37.45284,79.892654 + 4395: -38.244503,79.229866 + 4396: -38.64034,78.625275 + 4397: -38.81742,77.958145 + 4398: -38.19242,77.43695 + 4399: -37.869503,78.635704 + 4400: -36.79659,78.07281 + 4401: -34.91117,77.687126 + 4402: -34.70284,78.250015 + 4403: -36.34867,79.209015 + 4404: -36.76534,80.243385 + 4405: -37.54659,82.795845 + 4406: -36.03617,82.53755 + 4407: -36.057003,84.97943 + 4408: -36.057003,86.984604 + 4409: -36.057003,88.996605 + 4410: -36.06742,90.77904 + 4411: -36.06742,92.65208 + 4412: -36.06742,94.55308 + 4413: -36.06742,96.453865 + 4414: -36.06742,98.44008 + 4415: -35.994503,98.33815 + 4416: -36.338253,98.0984 + 4417: -36.025753,96.98304 + 4418: -36.12992,96.31591 + 4419: -36.75492,98.171364 + 4420: -37.75492,97.96289 + 4421: -37.775753,97.93162 + 4422: -37.73409,96.42015 + 4423: -37.72367,95.878105 + 4424: -35.869503,93.790634 + 4425: -37.62992,93.4258 + 4426: -37.89034,93.83233 + 4427: -38.73409,92.831635 + 4428: -40.17159,93.73852 + 4429: -39.98409,93.78021 + 4430: -37.16117,92.49807 + 4431: -36.85909,91.393135 + 4432: -36.494503,90.172516 + 4433: -37.10909,88.13306 + 4434: -37.56742,89.8268 + 4435: -37.713253,86.23262 + 4436: -37.75492,87.34258 + 4437: -38.01534,85.21611 + 4438: -38.01534,84.14245 + 4439: -37.807003,81.7236 + 4440: -37.64034,78.78363 + 4441: -33.873714,73.878784 + 4442: -30.748716,73.82666 + 4443: -28.092466,74.00387 + 4444: -26.602882,74.00387 + 4445: -26.559574,74.01429 + 4446: -26.25749,72.779305 + 4447: -26.111658,73.0958 + 4448: -25.528324,71.90748 + 4449: -25.267908,71.27162 + 4450: -26.611658,70.729576 + 4451: -28.590824,71.08399 + 4452: -30.174158,69.92694 + 4453: -32.080406,68.89497 + 4454: -31.580408,68.40505 + 4455: -31.94127,62.93868 + 4456: -32.03502,65.11727 + 4457: -26.139187,66.674965 + 4458: -25.774603,65.49706 + 4459: -25.618353,64.065346 + 4460: -25.087103,61.64628 + 4461: -25.09752,61.09381 + 4462: -24.607937,60.61431 + 4463: -24.91002,59.665737 + 4464: -26.232937,58.539955 + 4465: -27.857937,58.49826 + 4466: -30.357937,58.63377 + 4467: -33.0871,59.738705 + 4468: -31.076687,59.88464 + 4469: -30.670437,59.874214 + 4470: -31.576687,57.544033 + 4471: -29.826687,57.37725 + 4472: -27.962103,56.876904 + 4473: -26.69127,56.84563 + 4474: -22.305016,58.98561 + 4475: -21.88835,59.016884 + 4476: -20.846682,58.943916 + 4477: -20.409182,56.9141 + 4478: -20.4196,54.02712 + 4479: -20.565432,52.986176 + 4480: -21.01335,51.860394 + 4481: -19.596682,61.98536 + 4482: -19.086266,63.14776 + 4483: -19.992516,62.887157 + 4484: -20.51335,61.448658 + 4485: -18.367516,63.54386 + 4486: -18.680016,63.408356 + 4487: -19.721682,62.730797 + 4488: -20.6696,65.18599 + 4489: -20.555016,65.786064 + 4490: -17.182793,68.10431 + 4491: -18.948448,70.21108 + 4492: -18.885948,73.421646 + 4493: -15.240114,72.7024 + 4494: -22.16052,68.67403 + 4495: -24.202187,69.038864 + 4496: -24.31677,70.47819 + 4497: -24.243855,71.9014 + 4498: -23.87927,73.78141 + 4499: -23.62927,77.109985 + 4500: -23.577187,78.93417 + 4501: -23.556355,86.2738 + 4502: -23.50427,84.10563 + 4503: -25.69177,83.94927 + 4504: -25.181355,84.063934 + 4505: -26.337605,86.92009 + 4506: -26.75427,86.857544 + 4507: -27.50427,85.75261 + 4508: -23.483437,78.38291 + 4509: -21.56677,77.12162 + 4510: -20.045937,76.93398 + 4511: -18.306353,76.74635 + 4512: -17.681353,76.673386 + 4513: -17.264687,77.42391 + 4514: -17.139687,78.25782 + 4515: -17.212603,78.89368 + 4516: -17.368853,78.10146 + 4517: -17.670937,77.19458 + 4518: -19.66052,76.683815 + 4519: -17.483437,78.695625 + 4520: -17.47302,79.53996 + 4521: -17.525103,80.29048 + 4522: -17.014687,83.45935 + 4523: -16.712603,84.15775 + 4524: -17.97302,84.24114 + 4525: -17.806353,84.23072 + 4526: -16.75427,82.89646 + 4527: -17.69177,81.90619 + 4528: -19.920937,81.40584 + 4529: -19.72302,81.093124 + 4530: -19.525103,81.31203 + 4531: -19.639687,79.863106 + 4532: -19.556353,80.1237 + 4533: -20.22302,79.39403 + 4534: -19.868855,79.49827 + 4535: -19.545937,79.87353 + 4536: -19.618853,80.519806 + 4537: -19.900105,81.68729 + 4538: -20.077187,84.22079 + 4539: -20.87927,84.23121 + 4540: -19.233437,86.25345 + 4541: -18.952187,87.097786 + 4542: -19.014687,89.64122 + 4543: -20.514687,90.13114 + 4544: -13.574523,94.76726 + 4545: -14.084939,95.330154 + 4546: -14.751606,96.768654 + 4547: -15.105773,98.53029 + 4548: -15.439106,100.38575 + 4549: -16.67869,100.31278 + 4550: -16.428688,98.91598 + 4551: -16.178688,98.12376 + 4552: -15.397439,100.63592 + 4553: -15.762023,98.217575 + 4554: -15.887023,97.362816 + 4555: -16.147438,97.69638 + 4556: -16.074524,96.289154 + 4557: -16.314106,95.65329 + 4558: -17.730774,95.11125 + 4559: -17.671528,99.921524 + 4560: -17.504862,98.295395 + 4561: -17.442362,96.84647 + 4562: -14.109027,95.1578 + 4625: -41.9497,-5.427035 + 5439: 51.204163,12.93541 + 5440: 51.360413,12.924986 + 5441: 51.797913,12.88329 + 5442: 52.464577,12.779052 + 5443: 52.266663,11.330129 + 5444: 51.829163,11.330129 + 5445: 51.110413,11.257161 + 5446: 50.558327,10.527488 + 5447: 51.954163,9.995868 + 5448: 38.58185,9.101582 + 5449: 39.9881,8.319789 + 5548: 61.50257,25.957602 + 5549: 61.40882,25.488525 + 5550: 61.03382,25.092417 + 5551: 59.825485,25.300896 + 5552: 59.47132,24.43571 + 5553: 58.867153,24.16469 + 5554: 58.492153,22.788734 + 5555: 54.575485,21.537865 + 5556: 55.179653,21.464897 + 5730: 40.54635,24.083632 + 5731: 37.848434,24.021088 + 5732: 42.54635,22.822338 + 5733: 43.535934,22.811914 + 5734: 44.473434,21.988426 + 5735: 44.931767,21.14409 + 5766: -24.370983,-27.014597 + 5767: -24.433483,-26.983324 + 5768: -24.704317,-26.83739 + 5769: -25.006401,-26.691456 + 5770: -24.467266,-20.584093 + 5771: -24.352682,-21.21995 + 5772: -24.571432,-20.938505 + 5773: -24.571432,-21.626482 + 5774: -24.561016,-22.324884 + 5775: -24.791817,-23.408972 + 5776: -25.718899,-23.857199 + 5777: -28.4341,-20.159492 + 5778: -28.4966,-19.898895 + 5779: -29.46535,-19.51321 + 5780: -30.579931,-19.32558 + 5781: -33.11118,-19.971863 + 5782: -32.371597,-20.04483 + 5783: -30.829931,-21.097645 + 5784: -29.569515,-21.22273 + 5785: -28.77785,-20.764078 + 5786: -7.2428117,-27.64197 + 5787: -7.003228,-28.06935 + 5788: -6.971978,-28.079773 + 5789: -7.1178117,-25.98091 + 5790: -7.128228,-24.792583 + 5791: -5.2634015,-20.342798 + 5792: -5.0342345,-20.592972 + 5793: -4.5446515,-22.344189 + 5794: -4.398818,-23.365732 + 5795: -4.325901,-24.387274 + 5796: -4.346734,-25.231611 + 5797: -7.1580296,-20.84307 + 5832: -23.581772,-43.4543 + 5833: -23.415104,-43.391758 + 5834: -23.081772,-43.152008 + 5835: -22.925522,-42.828865 + 5836: -22.435938,-40.587727 + 5837: -22.467188,-41.0568 + 5838: -22.560938,-41.90114 + 5839: -21.59118,-43.631508 + 5840: -9.005033,-40.82498 + 5841: -8.963366,-41.11685 + 5842: -8.869616,-41.746315 + 5843: -8.963366,-42.309208 + 5844: -8.880033,-42.794773 + 6186: 8.812364,-20.650158 + 6187: 8.885281,-20.33744 + 6188: 15.988506,-19.253355 + 6189: 15.91559,-20.06642 + 6190: 19.966806,-21.796787 + 6191: 19.029306,-22.119928 + 6192: 18.218397,-22.610744 + 6193: 13.093397,-20.46342 + 6194: 12.166314,-20.525963 + 6195: 8.2101,-23.694832 + 6196: 5.2830167,-23.673985 + 6197: 4.699683,-21.599627 + 6198: 22.741604,-24.230524 + 6199: 22.731186,-24.814262 + 6200: 23.449936,-25.262491 + 6201: 23.47077,-24.93935 + 6202: -74.53544,-27.091312 + 6203: -74.75419,-26.54927 + 6204: -74.11877,-32.478603 + 6205: -75.49377,-33.260395 + 6206: -79.911964,-37.73515 + 6207: -80.411964,-37.380737 + 6208: -82.67238,-33.57601 + 6209: -85.20363,-30.62568 + 6210: -85.3078,-31.6368 + 6562: -23.661736,90.64396 + 6563: -23.62007,90.57099 + 6564: -23.40132,90.14361 + 6617: 36.567677,-3.9678266 + 6618: 36.661427,-4.1346097 + 6619: 36.817677,-4.238848 + 6620: 37.18226,-4.32224 + 6621: 37.43226,-4.2492723 + 6622: 37.661427,-4.0407944 + 6623: 37.95309,-3.9365551 + 6624: 37.90101,-4.197153 + 6625: 37.692677,-4.405631 + 6626: 37.96351,-4.5307174 + 6627: 38.10934,-4.5098696 + 6628: 38.32809,-4.218001 + 6629: 37.93226,-3.8427403 + 6630: 37.567677,-4.301392 + 6631: 38.08851,-4.4890223 + 6632: 38.43226,-4.5098696 + 6633: 38.723927,-4.290968 + 6634: 39.27601,-4.1033373 + 6635: 39.71351,-4.0407944 + 6636: 39.89059,-3.915707 + 6637: 38.05726,-8.905918 + 6638: 37.98434,-8.853799 + 6639: 37.786427,-8.697439 + 6640: 37.598927,-8.791255 + 6641: 37.567677,-9.093549 + 6642: 37.817677,-9.41669 + 6643: 38.30726,-9.41669 + 6644: 38.49476,-9.17694 + 6645: 38.89059,-9.041429 + 6646: 39.49476,-9.093549 + 6647: 39.79684,-8.93719 + 6648: 40.46351,-8.947614 + 6649: 40.96351,-9.062277 + 6650: 41.223927,-8.874646 + 6651: 41.286427,-8.718287 + 6652: 41.61976,-8.874646 + 6653: 42.005177,-9.145668 + 6654: 42.65101,-9.135243 + 6655: 43.27601,-8.978886 + 6656: 43.42184,-8.822527 + 6657: 43.95309,-8.853799 + 6658: 44.411427,-8.978886 + 6659: 45.255177,-8.989309 + 6660: 45.51559,-8.926766 + 6661: 45.786427,-8.999733 + 6662: 45.98434,-9.093549 + 6663: 46.17184,-9.156092 + 6664: 46.29684,-9.062277 + 6665: 46.10934,-8.853799 + 6739: 33.963623,-10.945465 + 6740: 36.328667,-20.029716 + 6741: 36.297417,-20.123531 + 6742: 36.037,-20.113108 + 6743: 35.589085,-19.706575 + 6744: 36.3495,-23.323671 + 6745: 36.214085,-23.073498 + 6746: 36.203667,-22.541878 + 6747: 36.328667,-22.57315 + 6748: 35.953667,-23.605116 + 6749: 35.4745,-24.449453 + 6750: 34.964085,-25.923508 + 6751: 35.38075,-26.05902 + 6752: 35.651585,-26.694876 + 6753: 34.745335,-27.018017 + 6754: 33.75575,-27.070137 + 6755: 33.016167,-26.684452 + 6756: 33.50575,-26.079866 + 6757: 34.526585,-26.079866 + 6758: 34.682835,-25.50655 + 6759: 34.359917,-24.776876 + 6766: 32.510376,-17.76969 + 6767: 32.749958,-18.155375 + 6768: 33.135376,-17.999016 + 6769: 33.239544,-19.041407 + 6770: 33.156208,-19.593874 + 6771: 32.864544,-20.125494 + 6772: 33.020794,-20.792624 + 6773: 33.145794,-21.376362 + 6774: 32.937458,-21.793318 + 6775: 32.708294,-22.189426 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 1351: 12.958538,-16.443497 - 1352: 12.958538,-16.943844 - 1353: 12.958538,-18.64294 - 1354: 12.937705,-18.77845 - 1375: 15.079685,-12.984484 - 1376: 15.079685,-12.984484 - 1377: 15.079685,-12.984484 - 1378: 15.850517,-12.963635 - 1412: 28.464254,-19.70358 - 1413: 28.391338,-19.474255 - 1414: 27.422588,-19.974602 - 1459: 23.46921,-11.37538 - 1460: 23.56296,-11.5838585 - 1461: 23.854626,-11.948695 - 1530: 20.749935,-1.5208876 - 1531: 20.749935,-1.5208876 - 1532: 20.749935,-1.5208876 - 1533: 21.031185,-2.0420828 - 1534: 21.031185,-2.0420828 - 1604: 23.56943,5.1483226 - 1605: 23.53818,3.5743132 - 1606: 23.53818,3.5534654 - 1607: 23.53818,3.470074 - 1608: 28.017347,6.534702 - 1609: 28.017347,6.534702 - 1610: 29.267347,5.252562 - 1611: 25.902763,8.087864 - 1612: 25.31943,8.296342 - 1671: 41.78837,12.010085 - 1672: 41.78837,12.010085 - 2152: 17.961287,57.494015 - 2153: 7.482119,68.38451 - 2154: 7.7633696,68.40535 - 2155: 8.57587,68.43662 - 2156: 9.784203,68.45747 - 2157: 11.440453,68.54086 - 2158: 11.055037,69.47901 - 2159: 9.88837,69.48944 - 2160: 9.273786,69.510284 - 2161: 8.086286,69.531136 - 2162: 6.659202,68.06136 - 2163: 6.471702,66.99812 - 2164: 11.76337,68.37408 - 2165: 11.909203,67.91543 - 2166: 12.38837,67.300415 - 2167: 12.627953,66.5082 - 2168: 12.48212,65.61175 - 2169: 11.773787,65.476234 - 2470: -39.12909,77.7975 - 2471: -38.889503,77.24503 - 2472: -34.889503,77.24503 - 2473: -34.87909,77.32842 - 2474: -34.639503,77.43266 - 2475: -36.94159,75.53905 - 2476: -37.25409,76.571014 - 2477: -37.16034,76.33126 - 2478: -37.80617,98.42468 - 2479: -37.80617,98.42468 - 2480: -36.827003,98.36214 - 2481: -36.09784,98.247475 - 2482: -35.72284,98.2162 - 2483: -35.545753,98.23705 - 2484: -37.94159,97.88264 - 2485: -38.014503,97.62204 - 2486: -35.858253,97.90349 - 2487: -35.78534,97.13212 - 2488: -35.795753,95.089035 - 2489: -35.74367,94.36978 - 2490: -35.764503,94.30724 - 2491: -35.86867,93.9007 - 2492: -38.05617,94.234276 - 2493: -37.99367,96.141846 - 2494: -38.014503,97.288475 - 2495: -36.202003,96.715164 - 2496: -36.12909,95.6415 - 2497: -37.75409,93.68181 - 2498: -37.72284,92.0661 - 2695: -18.566235,33.873024 - 2696: -16.472485,35.592968 - 2697: -19.628735,33.278862 - 2705: -19.597485,34.70111 - 2706: -19.430817,34.388393 - 5924: -7.5999374,-24.495373 - 5925: -7.5999374,-24.495373 - 5926: -6.9641824,-30.991838 - 5927: -4.1066065,-23.961405 - 5928: -4.1066065,-23.961405 - 5929: -4.0961905,-21.570915 - 5930: -4.0961905,-21.570915 - 5931: -4.0961905,-21.570915 - 6388: 9.435939,-20.517126 - 6951: 37.11647,-3.7861779 - 6952: 37.11647,-3.7757537 - 6953: 38.08522,-3.8070252 - 6954: 38.08522,-3.8070252 - 6955: 38.90814,-3.8382976 - 6956: 38.918556,-3.8382976 - 6957: 39.137306,-3.8487213 - 6958: 39.14772,-3.8487213 - 6959: 39.14772,-3.8487213 - 6960: 39.387306,-4.630514 - 6961: 39.387306,-4.630514 - 6962: 39.387306,-4.630514 - 6963: 46.428974,-8.539479 - 6964: 46.428974,-8.539479 + 1306: 12.958538,-16.443497 + 1307: 12.958538,-16.943844 + 1314: 15.079685,-12.984484 + 1315: 15.079685,-12.984484 + 1316: 15.079685,-12.984484 + 1317: 15.850517,-12.963635 + 1339: 28.464254,-19.70358 + 1340: 28.391338,-19.474255 + 1341: 27.422588,-19.974602 + 1385: 23.46921,-11.37538 + 1386: 23.56296,-11.5838585 + 1387: 23.854626,-11.948695 + 1454: 20.749935,-1.5208876 + 1455: 20.749935,-1.5208876 + 1456: 20.749935,-1.5208876 + 1457: 21.031185,-2.0420828 + 1458: 21.031185,-2.0420828 + 1528: 23.56943,5.1483226 + 1529: 23.53818,3.5743132 + 1530: 23.53818,3.5534654 + 1531: 23.53818,3.470074 + 1532: 28.017347,6.534702 + 1533: 28.017347,6.534702 + 1534: 29.267347,5.252562 + 1535: 25.902763,8.087864 + 1536: 25.31943,8.296342 + 1595: 41.78837,12.010085 + 1596: 41.78837,12.010085 + 2076: 17.961287,57.494015 + 2077: 7.482119,68.38451 + 2078: 7.7633696,68.40535 + 2079: 8.57587,68.43662 + 2080: 9.784203,68.45747 + 2081: 11.440453,68.54086 + 2082: 11.055037,69.47901 + 2083: 9.88837,69.48944 + 2084: 9.273786,69.510284 + 2085: 8.086286,69.531136 + 2086: 6.659202,68.06136 + 2087: 6.471702,66.99812 + 2088: 11.76337,68.37408 + 2089: 11.909203,67.91543 + 2090: 12.38837,67.300415 + 2091: 12.627953,66.5082 + 2092: 12.48212,65.61175 + 2093: 11.773787,65.476234 + 2394: -39.12909,77.7975 + 2395: -38.889503,77.24503 + 2396: -34.889503,77.24503 + 2397: -34.87909,77.32842 + 2398: -34.639503,77.43266 + 2399: -36.94159,75.53905 + 2400: -37.25409,76.571014 + 2401: -37.16034,76.33126 + 2402: -37.80617,98.42468 + 2403: -37.80617,98.42468 + 2404: -36.827003,98.36214 + 2405: -36.09784,98.247475 + 2406: -35.72284,98.2162 + 2407: -35.545753,98.23705 + 2408: -37.94159,97.88264 + 2409: -38.014503,97.62204 + 2410: -35.858253,97.90349 + 2411: -35.78534,97.13212 + 2412: -35.795753,95.089035 + 2413: -35.74367,94.36978 + 2414: -35.764503,94.30724 + 2415: -35.86867,93.9007 + 2416: -38.05617,94.234276 + 2417: -37.99367,96.141846 + 2418: -38.014503,97.288475 + 2419: -36.202003,96.715164 + 2420: -36.12909,95.6415 + 2421: -37.75409,93.68181 + 2422: -37.72284,92.0661 + 2619: -18.566235,33.873024 + 2620: -16.472485,35.592968 + 2621: -19.628735,33.278862 + 2629: -19.597485,34.70111 + 2630: -19.430817,34.388393 + 5798: -7.5999374,-24.495373 + 5799: -7.5999374,-24.495373 + 5800: -6.9641824,-30.991838 + 5801: -4.1066065,-23.961405 + 5802: -4.1066065,-23.961405 + 5803: -4.0961905,-21.570915 + 5804: -4.0961905,-21.570915 + 5805: -4.0961905,-21.570915 + 6666: 37.11647,-3.7861779 + 6667: 37.11647,-3.7757537 + 6668: 38.08522,-3.8070252 + 6669: 38.08522,-3.8070252 + 6670: 38.90814,-3.8382976 + 6671: 38.918556,-3.8382976 + 6672: 39.137306,-3.8487213 + 6673: 39.14772,-3.8487213 + 6674: 39.14772,-3.8487213 + 6675: 39.387306,-4.630514 + 6676: 39.387306,-4.630514 + 6677: 39.387306,-4.630514 + 6678: 46.428974,-8.539479 + 6679: 46.428974,-8.539479 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 7061: 32.541626,-19.437515 - 7062: 32.520794,-19.041407 - 7063: 32.541626,-20.479906 + 6776: 32.541626,-19.437515 + 6777: 32.520794,-19.041407 + 6778: 32.541626,-20.479906 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 1310: -13.729793,-16.662243 - 1311: -13.729793,-16.662243 - 1312: -17.816233,-13.531803 - 1313: -17.816233,-13.531803 - 1314: -17.816233,-13.531803 - 1315: -8.451649,-10.974869 - 1316: -8.451649,-10.974869 - 1317: -8.441231,-10.703847 - 1318: -7.326648,-10.943597 - 1319: -7.326648,-10.943597 - 1320: -7.514148,-13.038802 - 1321: -6.5662313,-12.111075 - 1322: -6.5558147,-12.371673 - 1323: -9.368314,-11.395324 - 1324: -9.378731,-11.718465 - 1325: -13.649565,-12.475521 - 1326: -13.639148,-12.475521 - 1327: -7.7745647,-6.448164 - 1328: -7.7745647,-6.448164 - 1329: -11.503731,-1.6403191 - 1330: -17.493315,-1.7862542 - 1331: -17.503733,-1.7862542 - 1332: -12.514148,3.4118273 - 1333: -19.034983,3.453523 - 1334: -18.316233,3.463947 - 1335: -18.764149,-0.18441999 - 1336: -5.4368734,1.8169699 - 1337: -20.356619,1.7544267 - 1355: 11.500205,-19.195406 - 1356: 11.500205,-19.195406 - 1357: 11.500205,-19.195406 - 1358: 10.593955,-16.436058 - 1359: 6.4168706,-20.974081 - 1360: 6.4168706,-20.83857 - 1361: 9.989788,-22.37452 - 1362: 9.989788,-22.37452 - 1363: 9.989788,-22.384943 - 1364: 18.457514,-22.958258 - 1365: 18.457514,-22.958258 - 1379: 15.503908,-15.9562 - 1380: 15.503908,-15.9562 - 1381: 15.503908,-15.9562 - 1382: 15.545574,-15.4871235 - 1383: 15.545574,-15.4871235 - 1384: 15.764324,-15.4871235 - 1385: 15.764324,-15.4871235 - 1386: 15.764324,-15.4871235 - 1387: 15.399742,-16.581635 - 1388: 15.399742,-16.581635 - 1389: 15.399742,-16.581635 - 1390: 22.945652,-15.560091 - 1391: 22.945652,-15.560091 - 1392: 23.008152,-15.653906 - 1393: 23.018568,-15.789417 - 1394: 23.018568,-15.789417 - 1395: 23.049818,-16.03959 - 1396: 27.476902,-18.57383 - 1397: 27.476902,-18.57383 - 1398: 24.00353,-23.411848 - 1399: 24.00353,-23.411848 - 1400: 24.00353,-23.411848 - 1401: 19.670197,-22.56515 - 1402: 27.56517,-19.641037 - 1403: 27.554752,-19.65146 - 1415: 21.657755,-20.349817 - 1416: 22.761923,-21.788317 - 1417: 23.678589,-18.317156 - 1418: 21.178589,-21.871708 - 1419: 24.241089,-17.566633 - 1420: 20.584839,-22.872402 - 1421: 27.535648,-15.737391 - 1422: 27.535648,-15.768662 - 1423: 27.712732,-15.89375 - 1424: 28.306482,-16.258587 - 1425: 28.483564,-16.310707 - 1426: 28.535648,-16.341978 - 1427: 28.577314,-16.571302 - 1428: 32.47799,-12.366075 - 1439: 29.48862,-12.616248 - 1440: 29.48862,-12.616248 - 1441: 27.052542,-13.45016 - 1442: 26.583792,-13.387617 - 1443: 26.43796,-13.3459215 - 1444: 26.56296,-13.31465 - 1445: 26.885876,-13.481432 - 1446: 25.71921,-11.917423 - 1447: 25.62546,-11.7610655 - 1448: 25.43796,-11.396228 - 1449: 25.333792,-11.13563 - 1450: 25.417126,-10.729097 - 1451: 25.479626,-11.104359 - 1452: 25.615042,-11.813185 - 1453: 25.59421,-12.125901 - 1454: 24.615042,-12.5324335 - 1455: 24.385876,-12.501163 - 1456: 24.333792,-12.407348 - 1457: 24.34421,-12.198869 - 1458: 24.56296,-12.396923 - 1467: 15.989529,-11.385074 - 1468: 15.989529,-11.385074 - 1469: 15.989529,-11.385074 - 1470: 19.437445,-9.540043 - 1471: 19.437445,-9.540043 - 1472: 18.749945,-9.4045315 - 1473: 18.145779,-9.331564 - 1474: 17.770779,-9.3732605 - 1475: 20.566778,-7.5450015 - 1476: 20.545944,-7.4094906 - 1477: 20.441778,-6.8674474 - 1478: 20.49386,-6.8465996 - 1479: 20.49386,-6.8465996 - 1480: 21.71261,-7.159317 - 1481: 21.660528,-7.357371 - 1482: 21.629278,-7.378219 - 1483: 21.598028,-7.4303384 - 1484: 21.327194,-7.4199147 - 1485: 21.327194,-7.4511867 - 1486: 21.473028,-7.4511867 - 1487: 21.889694,-7.3677955 - 1488: 22.05636,-7.3677955 - 1489: 22.389694,-7.346947 - 1490: 23.264694,-7.3156757 - 1491: 20.316778,-8.326794 - 1492: 20.316778,-8.378914 - 1493: 20.629278,-8.535273 - 1494: 20.639694,-8.597816 - 1495: 20.702194,-8.691631 - 1496: 25.460304,-9.454066 - 1497: 25.460304,-9.454066 - 1510: 24.31447,-5.4617095 - 1511: 24.554054,-5.5242534 - 1512: 26.50197,-5.503405 - 1513: 26.50197,-5.503405 - 1514: 26.84572,-5.3678946 - 1515: 27.137388,-5.2323837 - 1516: 26.679054,-2.573702 - 1517: 26.647804,-2.7613325 - 1518: 26.59572,-3.0010824 - 1519: 26.356138,-3.699484 - 1520: 25.449888,-5.0545917 - 1521: 25.418638,-4.3561897 - 1522: 25.074888,-0.74951893 - 1523: 25.054054,-1.0726595 - 1524: 25.022804,-1.8231807 - 1535: 23.927017,-1.6147025 - 1536: 23.708267,-1.3124094 - 1537: 23.874935,-1.562583 - 1538: 23.885351,-1.5730071 - 1539: 23.031185,-1.3853769 - 1540: 22.947851,-3.5639734 - 1541: 22.947851,-3.574397 - 1542: 22.947851,-3.6369402 - 1543: 22.843685,-4.3249187 - 1544: 22.968685,-4.2206793 - 1545: 21.812435,-3.8454187 - 1546: 21.416601,-4.2727985 - 1547: 21.343685,-4.4291573 - 1548: 21.218685,-4.741874 - 1549: 21.031185,-5.0337434 - 1561: 23.871513,6.993354 - 1562: 23.892347,6.9308105 - 1563: 24.277763,6.6389413 - 1564: 25.486097,9.526362 - 1565: 25.611097,9.474244 - 1566: 25.88193,9.422124 - 1567: 27.173597,9.536787 - 1568: 27.954847,9.620178 - 1569: 27.371513,9.349156 - 1570: 26.402763,9.036439 - 1571: 25.559013,8.817537 - 1572: 24.66318,8.74457 - 1573: 24.027763,8.7237215 - 1574: 24.371513,8.463124 - 1575: 25.590263,8.254646 - 1576: 27.28818,8.598636 - 1577: 28.642347,8.786265 - 1578: 29.31943,8.431853 - 1579: 29.142347,7.9523535 - 1580: 28.642347,7.8689623 - 1581: 26.50693,7.5979404 - 1582: 27.246513,7.0142016 - 1583: 27.965263,6.816148 - 1584: 28.527763,6.565974 - 1585: 28.329847,6.0447783 - 1586: 27.496513,5.971812 - 1587: 26.965263,5.106627 - 1588: 27.81943,4.9606924 - 1589: 28.684013,4.3769536 - 1590: 27.996513,3.9391494 - 1591: 27.38193,3.907878 - 1592: 26.454847,3.803639 - 1593: 24.496513,6.4617352 - 1594: 24.496513,6.4617352 - 1613: 25.923597,10.131614 - 1614: 25.923597,10.684081 - 1615: 25.91318,11.101037 - 1616: 25.91318,11.684776 - 1617: 25.902763,12.456145 - 1618: 25.798597,11.142734 - 1619: 26.777763,10.36094 - 1620: 26.746513,10.746625 - 1621: 26.704847,11.059342 - 1622: 26.548597,12.518689 - 1623: 26.371513,11.246972 - 1624: 27.246513,10.340093 - 1625: 27.28818,10.850863 - 1626: 27.267347,11.372059 - 1627: 29.633009,11.071933 - 1628: 29.372591,11.082356 - 1629: 31.705929,14.626485 - 1630: 31.872593,14.720301 - 1631: 33.39343,14.178258 - 1632: 33.38301,14.126138 - 1633: 31.997593,11.905846 - 1634: 31.237175,11.905846 - 1635: 30.893425,12.041356 - 1636: 31.63301,11.9996605 - 1637: 32.72676,11.957965 - 1638: 36.36218,12.114324 - 1639: 37.08093,12.208138 - 1640: 38.03926,14.126138 - 1641: 36.69551,8.872489 - 1642: 33.95593,8.455533 - 1643: 31.591343,8.445109 - 1644: 30.664259,8.424261 - 1645: 31.205925,8.518076 - 1646: 34.91426,8.632739 - 1647: 44.706745,9.143511 - 1648: 46.748413,11.353379 - 1649: 46.165077,10.436074 - 1650: 44.998413,9.800217 - 1651: 43.956745,9.268598 - 1652: 47.810913,9.821065 - 1653: 47.610493,12.969085 - 1654: 47.547993,12.95866 - 1655: 46.037575,13.292226 - 1656: 44.620907,13.667486 - 1657: 43.381325,13.667486 - 1658: 41.537575,13.636214 - 1659: 46.016743,14.324192 - 1669: 42.184204,11.259563 - 1670: 41.13212,11.947541 - 1684: 28.429485,13.028685 - 1685: 28.335735,13.028685 - 1686: 28.460735,11.235772 - 1687: 28.439901,11.152381 - 1688: 28.346151,10.881359 - 1689: 25.471151,15.3787565 - 1690: 24.481567,13.617117 - 1691: 24.471151,13.533727 - 1692: 24.387817,10.996278 - 1693: 24.387817,11.006701 - 1694: 20.32563,13.695882 - 1695: 20.533964,19.55412 - 1696: 20.533964,19.55412 - 1697: 21.54438,19.429031 - 1698: 21.940214,19.283096 - 1699: 22.158964,18.522152 - 1700: 23.07563,17.219164 - 1701: 22.16938,15.530491 - 1702: 22.367296,14.123262 - 1703: 22.752714,12.559676 - 1704: 20.929796,11.798731 - 1715: 25.262802,19.621094 - 1716: 25.491968,18.922693 - 1717: 25.398218,18.015812 - 1718: 28.71072,15.764248 - 1719: 28.55447,15.795521 - 1720: 28.533636,15.889336 - 1721: 28.64822,19.933811 - 1722: 28.55447,20.819843 - 1723: 28.58572,21.52867 - 1724: 28.58572,21.52867 - 1725: 28.58572,21.52867 - 1726: 28.58572,21.215952 - 1727: 28.58572,21.142984 - 1728: 28.58572,20.371616 - 1729: 28.58572,20.423735 - 1730: 28.58572,20.423735 - 1743: 28.012802,17.619705 - 1744: 27.794052,17.140205 - 1745: 24.671003,20.596066 - 1746: 24.077253,20.377163 - 1747: 24.816837,20.387587 - 1748: 25.27517,23.056107 - 1749: 25.202253,23.504335 - 1750: 30.199944,20.658607 - 1751: 30.199944,20.658607 - 1752: 30.231194,20.429281 - 1753: 30.39786,20.064445 - 1754: 30.17911,21.680151 - 1755: 30.17911,21.680151 - 1756: 33.4969,18.506353 - 1757: 33.4969,18.516777 - 1758: 33.476067,18.485504 - 1759: 33.14273,18.412539 - 1760: 32.84065,18.39169 - 1761: 33.42398,17.630745 - 1762: 33.36148,17.505657 - 1763: 32.90315,17.474386 - 1768: 33.71565,21.53133 - 1769: 33.67398,21.427092 - 1770: 33.17398,20.96844 - 1771: 29.392729,26.351194 - 1772: 29.507313,25.75703 - 1773: 29.434397,24.996086 - 1774: 29.528147,25.746607 - 1775: 29.476063,26.121868 - 1776: 30.226063,26.497128 - 1777: 33.59065,25.538128 - 1778: 33.59065,25.51728 - 1779: 35.601067,24.381075 - 1780: 35.59065,24.162172 - 1781: 34.4344,23.453348 - 1782: 35.726067,26.497128 - 1783: 36.4344,26.382465 - 1784: 39.226067,26.330345 - 1785: 41.1844,26.434586 - 1786: 41.569817,26.5284 - 1787: 39.5594,26.497128 - 1788: 37.538567,26.44501 - 1789: 36.26773,26.517977 - 1790: 36.48648,27.080868 - 1791: 36.96565,26.674335 - 1792: 37.413567,26.601368 - 1793: 37.76773,26.361618 - 1794: 39.819817,26.330345 - 1795: 42.01773,26.559671 - 1796: 41.26773,26.47628 - 1797: 40.40315,26.309498 - 1798: 39.382317,26.267801 - 1799: 37.29898,26.361618 - 1800: 35.67398,26.465857 - 1809: 36.897545,18.931717 - 1817: 41.230877,18.629425 - 1818: 41.293377,18.608576 - 1819: 41.710045,18.619 - 1820: 41.855877,18.639847 - 1821: 42.085045,18.629425 - 1822: 42.741295,18.389675 - 1823: 42.741295,18.358402 - 1824: 42.678795,17.972717 - 1825: 45.43921,21.108114 - 1826: 47.772545,21.723124 - 1827: 47.710045,21.650156 - 1828: 40.949627,21.379135 - 1829: 46.03296,20.597342 - 1830: 46.03296,20.597342 - 1831: 46.56421,24.44474 - 1832: 46.56421,24.486437 - 1833: 46.324627,25.21611 - 1834: 44.085045,27.040293 - 1835: 45.303795,24.621946 - 1836: 45.418377,27.8016 - 1837: 45.022545,30.418001 - 1838: 46.710045,30.857872 - 1839: 46.012127,30.72236 - 1840: 44.605877,30.597275 - 1841: 43.053795,30.72236 - 1842: 45.06421,24.114763 - 1843: 45.06421,27.552265 - 1844: 45.06421,29.772232 - 1845: 45.06421,31.372208 - 1846: 45.06421,34.37216 - 1847: 45.06421,35.77214 - 1848: 45.06421,38.97209 - 1849: 45.06421,40.172073 - 1850: 45.06421,43.172028 - 1851: 45.06421,45.971985 - 1852: 45.06421,48.78815 - 1853: 45.06421,51.120148 - 1854: 45.105877,52.181366 - 1855: 45.105877,50.547134 - 1856: 45.105877,47.74254 - 1857: 45.105877,45.607235 - 1858: 45.105877,43.98729 - 1859: 45.105877,41.187386 - 1860: 45.105877,38.18749 - 1861: 45.105877,36.587543 - 1862: 45.105877,33.587646 - 1863: 45.105877,30.787743 - 1864: 45.105877,29.187798 - 1865: 45.105877,25.787897 - 1866: 45.105877,24.187937 - 1867: 45.105877,20.988016 - 1868: 46.512127,32.051205 - 1869: 43.116295,32.676636 - 1870: 43.449627,34.396584 - 1871: 43.512127,34.636333 - 1872: 43.605877,36.940292 - 1873: 46.574627,37.21009 - 1874: 46.553795,36.61593 - 1875: 46.741295,36.011345 - 1876: 46.793377,35.729897 - 1877: 46.522545,35.57354 - 1878: 46.210045,35.646507 - 1879: 45.866295,35.802864 - 1880: 46.28296,36.084312 - 1881: 46.37671,36.4283 - 1882: 43.89996,39.47233 - 1883: 43.441624,39.18046 - 1884: 43.61871,39.09707 - 1885: 43.222874,38.523754 - 1886: 43.54579,38.586296 - 1887: 43.660374,38.690536 - 1888: 45.95204,42.03086 - 1889: 41.32704,42.51036 - 1890: 40.58746,42.42697 - 1891: 40.21246,42.385277 - 1892: 41.004124,44.61599 - 1893: 40.347874,45.846012 - 1894: 40.77496,46.34636 - 1895: 40.98329,46.325512 - 1896: 41.67079,45.98152 - 1897: 41.629124,45.554142 - 1898: 41.38954,45.30397 - 1899: 40.92079,44.80362 - 1900: 39.58746,41.666027 - 1901: 39.35829,42.385277 - 1902: 39.45204,43.563175 - 1903: 39.36871,45.137184 - 1904: 39.45204,47.30536 - 1905: 43.49371,47.430447 - 1906: 43.49371,47.430447 - 1907: 43.61871,45.536892 - 1908: 42.879124,45.151207 - 1909: 41.04579,43.431263 - 1910: 41.95204,43.58762 - 1911: 43.472874,43.545925 - 1912: 44.628307,48.84759 - 1913: 44.003307,48.89971 - 1914: 43.753307,48.92056 - 1915: 43.565807,48.910133 - 1916: 43.722057,49.4626 - 1917: 43.74289,49.264545 - 1918: 43.77414,49.066494 - 1919: 43.690807,48.57657 - 1920: 43.43039,48.409786 - 1921: 39.732643,52.200104 - 1922: 39.097225,52.147984 - 1923: 38.659725,51.908234 - 1924: 38.482643,51.803993 - 1925: 38.451393,51.647636 - 1926: 38.722225,51.616364 - 1927: 39.076393,51.564247 - 1928: 39.461807,51.803993 - 1929: 39.618057,52.012474 - 1930: 39.972225,52.127136 - 1931: 20.261162,20.843893 - 1932: 20.781994,20.843893 - 1933: 21.823662,20.750078 - 1934: 16.689684,24.405725 - 1935: 17.668852,24.541237 - 1936: 18.283434,24.572508 - 1937: 16.762602,18.545938 - 1938: 15.675852,18.472971 - 1939: 13.637076,18.42085 - 1940: 13.598222,19.598753 - 1941: 13.587805,19.661297 - 1942: 13.546138,19.484089 - 1943: 11.245337,23.468536 - 1944: 10.70367,23.551928 - 1945: 10.6620035,23.572777 - 1946: 10.776587,23.5832 - 1947: 8.047848,20.560268 - 1948: 7.6207647,20.518572 - 1949: 8.006182,20.518572 - 1950: 8.349932,20.456028 - 1951: 4.724931,28.81707 - 1952: 4.537431,29.160887 - 1953: 4.6207643,29.994799 - 1954: 4.2665973,34.580273 - 1955: 4.3082643,34.434338 - 1956: 4.349931,34.17374 - 1957: 4.349931,33.965263 - 1958: 4.349931,33.913143 - 1959: 4.287431,33.50661 - 1960: 4.4853473,36.164707 - 1961: 4.506181,36.539967 - 1962: 4.506181,36.539967 - 1963: 3.5374308,36.44615 - 1964: 3.5165973,36.33149 - 1965: 3.5061808,36.22725 - 1966: 3.4853475,36.03962 - 1967: 3.4540975,35.872837 - 1968: 3.5374308,35.549698 - 1969: 3.5999308,35.508 - 1970: 3.8811808,35.497578 - 1971: 5.875297,35.513557 - 1972: 5.7607136,35.607372 - 1973: 5.625297,35.73246 - 1974: 7.5355015,36.600502 - 1975: 7.4625845,36.63177 - 1976: 7.4625845,36.63177 - 1977: 7.389668,36.63177 - 1978: 7.389668,36.621346 - 1979: 7.5667515,36.590076 - 1980: 7.5667515,36.57965 - 1981: 12.448409,36.537956 - 1982: 12.448409,36.537956 - 1983: 9.271326,30.594513 - 1984: 9.271326,30.594513 - 1985: 9.271326,30.594513 - 1993: 12.511861,43.38947 - 1994: 8.501445,43.477783 - 1995: 7.970195,43.54033 - 1996: 7.636861,43.8322 - 1997: 7.376444,44.7912 - 1998: 7.699361,47.219967 - 1999: 8.366028,47.365902 - 2000: 9.178528,47.480564 - 2001: 12.747864,49.434944 - 2002: 12.966614,49.361977 - 2003: 14.768697,48.465523 - 2004: 15.320781,48.017292 - 2005: 17.294996,47.683727 - 2006: 19.992174,47.746273 - 2007: 17.53384,47.52737 - 2008: 18.90884,47.433556 - 2009: 19.19009,47.412704 - 2010: 22.45185,47.485672 - 2011: 21.378935,48.73654 - 2012: 20.95185,49.570454 - 2013: 23.181019,48.48637 - 2014: 23.285185,48.43425 - 2015: 23.368519,46.58922 - 2016: 23.368519,47.193806 - 2017: 22.51435,43.396538 - 2018: 22.503935,44.167908 - 2019: 21.628935,44.668255 - 2020: 21.57685,44.65783 - 2021: 21.024769,44.57444 - 2022: 20.4831,43.521626 - 2023: 20.503935,43.69883 - 2024: 20.51435,44.021973 - 2025: 20.51435,44.021973 - 2026: 25.612768,49.063152 - 2027: 26.196102,49.10485 - 2028: 26.175268,48.906796 - 2029: 24.654436,45.435635 - 2030: 24.716936,43.8512 - 2031: 24.550268,43.277885 - 2032: 25.4608,38.606785 - 2033: 24.86705,38.679752 - 2034: 24.939966,39.159252 - 2035: 25.825384,39.74299 - 2036: 28.158716,43.832745 - 2037: 28.387884,43.884865 - 2038: 29.762884,44.051647 - 2039: 34.419136,48.7841 - 2040: 34.554554,49.034275 - 2041: 34.554554,49.034275 - 2042: 33.492054,52.41162 - 2043: 33.492054,52.41162 - 2044: 27.033716,52.43247 - 2045: 27.075384,52.401196 - 2046: 27.231634,51.807034 - 2047: 27.356634,51.556858 - 2048: 27.36705,51.53601 - 2049: 29.106634,50.587437 - 2050: 31.856636,50.56659 - 2051: 32.37747,41.45986 - 2052: 32.37747,41.45986 - 2053: 31.867054,41.439014 - 2054: 34.53372,42.543945 - 2055: 34.481636,42.398014 - 2056: 34.325386,41.88724 - 2057: 31.575386,44.441097 - 2058: 31.533718,44.201347 - 2059: 31.512886,43.99287 - 2060: 32.59622,44.263893 - 2061: 28.346216,49.826553 - 2062: 27.564966,49.774433 - 2064: 20.40685,56.442368 - 2065: 20.40685,56.442368 - 2066: 10.396436,59.73632 - 2067: 10.396436,59.73632 - 2068: 10.500602,60.37218 - 2069: 10.365186,60.4243 - 2070: 10.365186,60.4243 - 2071: 9.625602,59.684204 - 2072: 9.636019,60.08031 - 2073: 9.636019,60.08031 - 2074: 10.636019,62.550777 - 2075: 11.083936,62.592472 - 2076: 11.656853,62.592472 - 2077: 11.406853,62.498657 - 2078: 6.5839353,61.41457 - 2079: 6.6047683,60.18455 - 2080: 6.5214353,59.65293 - 2081: 6.3964353,58.63139 - 2082: 7.4797683,57.68281 - 2083: 7.5110188,58.256126 - 2084: 11.625603,60.330486 - 2085: 11.969353,60.351334 - 2086: 12.365186,58.09977 - 2087: 12.344353,57.68281 - 2088: 13.156853,56.536182 - 2089: 13.438103,56.504913 - 2090: 13.438103,56.504913 - 2091: 7.5110188,56.484062 - 2092: 7.5110188,56.484062 - 2093: 7.500602,56.390247 - 2094: 6.9276853,53.096294 - 2095: 6.906852,53.554947 - 2096: 6.906852,54.02402 - 2097: 6.938102,54.63903 - 2098: 6.9901853,54.76412 - 2099: 7.063102,53.690456 - 2100: 6.719352,50.052513 - 2101: 7.7089357,49.520893 - 2102: 7.7401857,50.12548 - 2103: 8.021436,52.65849 - 2104: 8.000602,54.295044 - 2105: 8.615186,50.30269 - 2106: 9.865186,49.6981 - 2120: 7.5342026,61.934597 - 2121: 7.1487856,61.090263 - 2122: 6.857119,60.22508 - 2123: 6.752952,59.43286 - 2124: 10.815453,62.278587 - 2125: 11.20087,60.079144 - 2126: 11.752953,59.047176 - 2127: 14.54462,54.12709 - 2128: 9.909203,57.264687 - 2129: 7.8779526,58.536404 - 2130: 13.32587,56.68095 - 2131: 15.086287,56.837307 - 2132: 15.721703,56.847733 - 2133: 19.544619,56.4412 - 2134: 20.669619,55.982548 - 2135: 19.752953,55.419655 - 2136: 19.086287,54.81507 - 2137: 18.784203,54.76295 - 2138: 20.075869,53.80395 - 2139: 19.638369,53.678864 - 2140: 8.04462,54.773376 - 2141: 7.169619,54.846344 - 2142: 7.9300356,54.06455 - 2143: 9.617536,55.07567 - 2144: 10.117537,55.0027 - 2145: 11.284203,52.584354 - 2146: 10.815453,52.448845 - 2147: 10.73212,53.05343 - 2148: 17.659203,57.494015 - 2149: 18.263369,57.494015 - 2150: 18.336287,57.368927 - 2151: 18.159203,56.899853 - 2188: 7.388369,66.39354 - 2189: 7.5758696,66.32057 - 2190: 7.6383696,66.247604 - 2191: 7.8050356,66.89388 - 2192: 7.8362856,67.498474 - 2193: 8.752953,68.00924 - 2194: 9.961287,67.977974 - 2195: 10.10712,67.89458 - 2196: 8.76337,64.75698 - 2197: 9.38837,64.47554 - 2198: 9.971703,64.39214 - 2199: 10.492537,64.10028 - 2200: 10.85712,63.631203 - 2201: 11.586287,65.52835 - 2202: 11.398787,66.247604 - 2203: 11.10712,67.008545 - 2204: 11.273787,65.966156 - 2205: 11.60712,65.5492 - 2206: 10.596703,65.5909 - 2207: 8.76337,64.76741 - 2208: 7.7529526,64.35045 - 2209: 6.784202,64.433846 - 2210: 7.263369,64.10028 - 2211: 8.148786,68.03009 - 2212: 8.596703,64.996735 - 2213: 11.32587,67.4672 - 2214: 8.815453,68.80146 - 2215: 8.992536,66.47693 - 2216: 9.565453,67.790344 - 2217: 10.76337,68.48874 - 2218: 10.784203,66.87304 - 2219: 8.846703,64.76741 - 2220: 12.502953,65.72641 - 2221: 7.5550356,68.32196 - 2222: 7.9404526,65.14267 - 2223: -0.28897285,48.47074 - 2224: -2.2681396,48.43947 - 2225: -3.622306,48.376926 - 2226: 2.5235274,51.618763 - 2227: 2.533944,51.326893 - 2228: 3.0131106,51.45198 - 2229: 3.471444,51.472828 - 2230: 1.3647022,51.900208 - 2231: 1.0730355,52.056564 - 2232: 0.7292855,52.338013 - 2233: -8.104769,48.397774 - 2234: -8.000603,48.46032 - 2235: -7.4797688,48.43947 - 2236: -4.1719627,48.3665 - 2237: -3.682379,48.43947 - 2238: -3.713629,48.65837 - 2239: -3.942796,48.720917 - 2240: -14.298122,51.526863 - 2241: -14.662705,51.578983 - 2242: -15.058539,51.662373 - 2243: -15.506455,51.73534 - 2244: -16.735624,52.350353 - 2245: -17.475206,52.412895 - 2246: -17.516874,52.548405 - 2247: -16.568956,48.72283 - 2248: -16.516874,48.566475 - 2249: -15.912705,48.535202 - 2250: -12.641872,48.48308 - 2251: -20.226145,48.52478 - 2252: -21.246979,48.785378 - 2253: -19.496979,52.565838 - 2254: -19.496979,52.565838 - 2255: -19.528229,52.37821 - 2256: -22.569895,52.6805 - 2257: -23.111563,52.01337 - 2258: -14.398411,50.09537 - 2259: -1.9534132,50.074524 - 2260: 2.4452457,50.105797 - 2261: 5.1485205,50.08495 - 2262: 10.5379,50.08495 - 2263: -25.249157,50.04325 - 2264: -33.381947,52.221848 - 2265: -32.38195,51.460903 - 2266: -32.52778,49.542904 - 2267: -32.65278,49.011288 - 2268: -33.756947,48.281612 - 2269: -29.475698,47.604057 - 2270: -29.475698,47.604057 - 2271: -27.881948,48.385853 - 2272: -26.18403,48.469242 - 2273: -24.569448,52.534565 - 2274: -26.49653,50.230885 - 2275: -26.392365,49.866047 - 2276: -20.465534,53.638462 - 2277: -20.507202,54.253475 - 2278: -20.569702,55.233322 - 2279: -20.507202,57.3332 - 2280: -20.517618,58.892445 - 2281: -20.767618,59.059364 - 2282: -22.225952,58.975975 - 2283: -20.215534,60.487206 - 2284: -20.215534,61.362816 - 2285: -20.361368,62.186302 - 2286: -19.746784,63.51596 - 2287: -18.444702,63.89122 - 2288: -18.455118,63.818253 - 2289: -18.465534,63.20324 - 2290: -18.434284,63.130272 - 2291: -18.475952,63.69317 - 2292: -18.413452,63.31791 - 2293: -18.340534,62.900948 - 2294: -18.413452,62.244244 - 2295: -18.621784,63.130272 - 2296: -18.850952,63.390877 - 2297: -19.121784,63.734863 - 2298: -19.632202,63.453415 - 2299: -19.298868,63.463837 - 2300: -19.600952,62.963493 - 2301: -20.715534,64.34987 - 2302: -21.840534,65.371414 - 2303: -21.538452,65.32972 - 2304: -20.475952,65.35056 - 2305: -19.288452,65.15251 - 2306: -19.507202,64.593704 - 2307: -19.892618,65.63609 - 2308: -20.194702,66.2928 - 2309: -20.111368,66.0739 - 2310: -20.778034,53.550777 - 2311: -20.944702,53.154667 - 2312: -21.746784,52.435417 - 2313: -20.850952,52.341602 - 2314: -20.225952,51.821316 - 2315: -21.132202,51.33139 - 2316: -21.361368,51.86301 - 2322: -16.413448,68.041504 - 2323: -18.996784,70.282646 - 2324: -24.140543,68.22913 - 2325: -26.260176,66.69682 - 2326: -24.627611,61.506195 - 2327: -24.627611,61.495773 - 2328: -25.388027,61.41238 - 2329: -24.960943,60.572174 - 2330: -24.919277,60.572174 - 2331: -24.658861,59.75911 - 2332: -24.898443,57.60136 - 2333: -28.148443,59.456818 - 2334: -33.301167,60.520058 - 2335: -32.467834,60.499207 - 2336: -31.030334,60.499207 - 2337: -30.905334,57.632633 - 2338: -30.926168,57.57009 - 2339: -33.04075,57.976624 - 2340: -33.04075,57.976624 - 2341: -28.269918,57.319916 - 2342: -27.582418,57.340763 - 2343: -27.363668,57.340763 - 2344: -26.29075,57.267796 - 2345: -27.155334,59.38385 - 2346: -32.662434,65.65924 - 2347: -32.308266,65.35694 - 2348: -31.683268,65.53415 - 2349: -31.495768,62.73012 - 2350: -31.506186,62.73012 - 2351: -31.412436,68.752365 - 2352: -31.412436,68.1999 - 2353: -31.391602,67.980995 - 2354: -31.454102,68.58559 - 2355: -31.495768,68.06439 - 2356: -33.568684,68.62728 - 2357: -33.224934,70.23256 - 2358: -33.172848,70.49316 - 2359: -32.933266,70.566124 - 2360: -31.849936,70.5557 - 2361: -28.349936,71.30622 - 2362: -28.349936,71.26453 - 2363: -28.006186,70.76418 - 2364: -26.745768,70.670364 - 2365: -25.371166,71.69255 - 2366: -27.069082,73.92327 - 2367: -27.67325,74.53828 - 2368: -27.29825,74.444466 - 2369: -26.777416,74.09005 - 2370: -23.808666,72.46392 - 2371: -21.558666,77.37536 - 2372: -21.756582,77.25027 - 2373: -22.662832,76.98967 - 2374: -20.141998,76.97925 - 2375: -18.777416,76.39551 - 2376: -18.110748,76.53102 - 2377: -17.100332,77.96952 - 2378: -17.319082,78.15715 - 2379: -17.319082,78.386475 - 2380: -17.412832,78.90767 - 2381: -17.423248,79.449715 - 2382: -17.391998,79.89794 - 2383: -17.360748,80.4921 - 2384: -16.714914,82.55604 - 2385: -16.485748,82.4518 - 2386: -16.485748,83.59843 - 2387: -16.912832,84.171745 - 2388: -20.287832,81.92018 - 2389: -19.850332,81.60746 - 2390: -19.444082,80.5338 - 2391: -19.902416,79.75201 - 2392: -20.225332,79.50183 - 2393: -20.454498,79.12657 - 2394: -20.423248,84.43857 - 2395: -20.423248,84.43857 - 2396: -20.652416,83.542114 - 2397: -21.329498,83.833984 - 2398: -21.527416,83.9278 - 2399: -22.141998,84.43857 - 2400: -22.933666,84.313484 - 2401: -22.298248,84.125854 - 2402: -23.516998,84.15713 - 2403: -25.464916,84.17797 - 2404: -23.319082,85.93961 - 2405: -22.141998,86.08555 - 2406: -23.589916,87.44 - 2407: -24.944082,86.9605 - 2408: -25.98575,87.064735 - 2409: -26.621166,86.95007 - 2410: -27.29825,86.16828 - 2411: -26.3295,84.07629 - 2412: -25.006582,84.02416 - 2413: -26.287832,80.86572 - 2414: -24.694082,80.47566 - 2415: -26.944082,77.67205 - 2416: -26.277416,77.06746 - 2417: -19.321144,73.81426 - 2418: -19.51906,74.47097 - 2419: -18.966978,74.49182 - 2420: -18.623228,73.58494 - 2421: -19.20656,73.49113 - 2422: -19.23781,73.13671 - 2423: -15.661638,72.54255 - 2424: -15.359555,72.57382 - 2425: -14.828305,72.53213 - 2426: -28.932705,74.027054 - 2427: -33.497303,73.97493 - 2428: -36.827003,73.96451 - 2429: -39.61867,74.06875 - 2430: -41.983253,74.131294 - 2431: -37.36867,76.517654 - 2432: -36.83742,76.4968 - 2433: -36.389503,76.45511 - 2434: -36.59784,75.81925 - 2435: -36.74367,75.371025 - 2436: -36.87909,75.11043 - 2437: -37.09784,75.44399 - 2438: -37.28534,75.48569 - 2439: -37.25409,74.63093 - 2440: -34.52492,79.298546 - 2441: -34.52492,78.46463 - 2442: -34.47284,78.026825 - 2443: -34.52492,77.557755 - 2444: -34.62909,76.95316 - 2445: -34.702003,78.00598 - 2446: -34.81659,78.92329 - 2447: -35.14992,79.465324 - 2448: -35.08742,78.18319 - 2449: -35.12909,77.557755 - 2450: -35.39992,76.96359 - 2451: -35.31659,76.692566 - 2452: -35.014503,77.56818 - 2453: -35.08742,78.54803 - 2454: -39.47284,79.42363 - 2455: -39.483253,79.236 - 2456: -39.49367,77.64114 - 2457: -39.327003,77.06783 - 2458: -39.139503,76.75511 - 2459: -39.08742,78.16234 - 2460: -38.77492,79.35066 - 2461: -38.733253,77.91216 - 2462: -38.889503,77.04698 - 2463: -39.420753,76.53621 - 2512: -38.639503,96.39214 - 2513: -37.36867,98.53947 - 2514: -37.37909,98.5082 - 2515: -37.30617,97.90361 - 2516: -36.108253,95.078735 - 2517: -36.014503,93.84871 - 2518: -39.55617,93.38497 - 2519: -40.12909,93.87489 - 2520: -38.577003,91.63831 - 2521: -38.22284,90.34574 - 2522: -38.295753,89.34505 - 2523: -35.43117,85.30189 - 2524: -35.545753,83.29655 - 2525: -35.91034,82.715805 - 2526: -38.11867,85.012634 - 2527: -35.09784,76.63375 - 2528: -36.014503,76.779686 - 2529: -38.58742,77.22663 - 2530: -37.41034,78.46707 - 2531: -36.08742,77.455956 - 2532: -36.83742,78.90137 - 2533: -36.32421,83.85008 - 2534: -37.119507,88.82083 - 2535: -37.077785,91.963425 - 2536: -37.046505,95.954445 - 2537: -37.379837,98.47703 - 2538: -36.296505,92.775154 - 2539: -39.379837,92.89642 - 2540: -39.640255,94.1592 - 2541: -36.546505,90.75783 - 2542: -36.556923,87.11225 - 2543: -36.577755,85.23121 - 2544: -37.286087,82.41265 - 2545: -36.598587,79.807274 - 2546: -42.533913,73.549515 - 2547: -43.88808,71.65237 - 2548: -42.91933,69.64056 - 2549: -42.91933,69.58843 - 2550: -44.711,68.7024 - 2551: -44.721413,68.7024 - 2552: -48.383827,67.28951 - 2553: -48.48799,66.41391 - 2554: -47.540077,66.51815 - 2555: -47.55049,67.216545 - 2556: -47.727577,66.4973 - 2557: -48.46716,66.945526 - 2558: -48.508827,66.59111 - 2559: -47.508827,66.76832 - 2560: -47.36299,70.8128 - 2561: -47.95674,70.61474 - 2562: -47.34216,70.62517 - 2563: -47.59216,70.677284 - 2564: -46.05049,74.22105 - 2565: -46.36299,73.39756 - 2566: -47.821327,72.14669 - 2567: -48.86299,74.36698 - 2568: -46.93591,74.90903 - 2569: -44.321327,76.722786 - 2570: -43.99841,74.86733 - 2571: -42.89424,76.58727 - 2572: -45.196327,77.483734 - 2573: -45.196327,77.42119 - 2574: -45.09216,77.26483 - 2575: -45.08174,77.24398 - 2576: -50.48799,71.60465 - 2577: -50.49841,71.50041 - 2578: -51.321327,70.280815 - 2579: -52.20674,69.196724 - 2580: -52.88599,74.34041 - 2581: -53.427658,72.7247 - 2582: -53.91724,74.45507 - 2583: -53.458908,72.66216 - 2584: -53.458908,72.66216 - 2585: -54.021408,74.32999 - 2586: -50.94849,72.91233 - 2587: -50.94849,76.602394 - 2588: -50.396408,77.102745 - 2589: -47.438076,76.20629 - 2590: -46.063076,80.13908 - 2591: -47.896408,79.81594 - 2592: -46.375576,78.52338 - 2593: -39.386536,70.74174 - 2594: -39.417786,70.710464 - 2595: -40.428204,70.6375 - 2596: -40.740704,70.627075 - 2597: -41.219868,69.34493 - 2598: -41.219868,69.30324 - 2599: -41.334454,68.90713 - 2600: -40.261536,68.56314 - 2601: -40.605286,68.57356 - 2602: -40.344868,68.62569 - 2603: -39.646954,69.04264 - 2604: -39.386536,69.12603 - 2605: -39.303204,69.21985 - 2606: -39.094868,69.49087 - 2607: -39.011536,69.50129 - 2608: -38.636536,70.38732 - 2609: -37.323254,71.01372 - 2610: -36.36492,69.88811 - 2611: -37.167004,68.10585 - 2612: -37.08367,67.669586 - 2613: -37.05242,63.64869 - 2614: -36.854504,61.81581 - 2615: -36.87534,60.460175 - 2616: -36.87534,58.584904 - 2617: -36.21909,56.17809 - 2618: -36.28159,55.268696 - 2619: -37.80242,55.47835 - 2620: -38.260754,55.029255 - 2621: -37.31284,53.437935 - 2622: -36.604504,51.572056 - 2623: -35.98992,49.914654 - 2624: -36.31284,49.456 - 2625: -39.156734,50.800686 - 2626: -42.946945,51.07171 - 2627: -45.99469,51.228065 - 2628: -47.207397,53.792347 - 2629: -48.97823,53.781925 - 2630: -51.34281,53.87574 - 2631: -52.04073,51.80138 - 2632: -50.71781,51.822227 - 2633: -49.519897,51.58248 - 2634: -47.29073,51.509514 - 2635: -47.75948,51.55121 - 2636: -49.582397,51.676296 - 2637: -52.082527,49.945217 - 2638: -50.34294,49.851402 - 2639: -48.43669,49.611652 - 2640: -47.801277,49.622074 - 2641: -54.49621,54.14605 - 2642: -54.319126,53.885452 - 2643: -54.33996,51.20651 - 2644: -52.93371,46.13254 - 2645: -52.43371,43.482754 - 2646: -52.506626,42.793663 - 2647: -52.517044,41.12463 - 2648: -52.83996,37.75766 - 2649: -48.207672,47.314137 - 2650: -47.916008,47.522614 - 2651: -46.728508,46.115387 - 2652: -44.025024,44.877365 - 2653: -42.816402,45.9823 - 2654: -40.80599,44.91906 - 2655: -38.82682,45.627884 - 2656: -37.549496,43.991333 - 2657: -38.518246,48.631657 - 2658: -38.549496,48.548267 - 2659: -38.736996,48.33979 - 2660: -42.403664,48.548267 - 2661: -33.49661,41.621567 - 2662: -28.23743,41.559734 - 2663: -22.518679,41.38253 - 2664: -22.299929,41.247017 - 2665: -21.560347,40.819637 - 2666: -21.518679,40.100388 - 2667: -21.435347,39.474953 - 2668: -21.820763,38.76613 - 2669: -22.029097,38.891216 - 2670: -21.664513,40.538193 - 2671: -21.789513,39.954453 - 2672: -22.081179,39.422836 - 2673: -22.591597,41.121933 - 2674: -22.008263,40.538193 - 2675: -21.716597,40.21505 - 2676: -20.243317,33.497765 - 2677: -19.95165,33.497765 - 2678: -19.941235,33.497765 - 2679: -19.63915,33.518612 - 2680: -19.378735,33.476917 - 2681: -19.0454,33.43522 - 2682: -18.712067,33.41437 - 2683: -18.26415,33.393524 - 2684: -17.930817,33.372677 - 2685: -17.4204,33.36225 - 2686: -16.899567,33.383102 - 2687: -16.555817,33.508186 - 2688: -16.95165,33.45607 - 2689: -17.659985,33.508186 - 2690: -18.597485,33.581154 - 2691: -20.462067,33.529034 - 2707: -15.981277,40.66405 - 2708: -17.554195,42.008736 - 2709: -16.720861,42.57163 - 2710: -14.5854435,42.112976 - 2711: -15.481277,44.2603 - 2712: -17.700027,46.00109 - 2713: -13.4396105,41.91492 - 2714: -15.543777,39.090042 - 2715: -18.502111,34.983025 - 2716: -20.189611,40.06989 - 2717: -10.44136,38.370792 - 2718: -9.06636,39.64251 - 2719: -8.53511,38.454185 - 2720: -7.743444,37.891293 - 2721: -17.332579,36.504913 - 2722: -17.790913,35.61888 - 2723: -18.040913,35.629307 - 2724: -16.936747,38.652237 - 2725: -15.582578,38.766903 - 2726: -7.592995,38.39164 - 2727: -13.478412,37.53688 - 2728: -13.499245,37.53688 - 2729: -17.436747,43.572323 - 2730: -17.436747,43.572323 - 2731: -16.415913,43.54105 - 2732: -15.582578,46.511864 - 2733: -14.415912,46.44932 - 2734: -12.280495,46.10533 - 2735: -12.822162,46.459743 - 2736: -12.707578,46.34508 - 2737: -16.124245,46.501442 - 2738: -16.634663,46.501442 - 2739: -13.217995,46.57441 - 2740: -14.176328,46.595253 - 2741: -17.280497,46.6578 - 2742: -17.884663,46.6578 - 2743: -18.342997,46.66822 - 2744: -19.124247,46.751614 - 2745: -19.259663,47.158146 - 2746: -19.103413,47.231113 - 2747: -18.124247,47.18942 - 2748: -16.353413,47.06433 - 2749: -18.988829,46.28254 - 2750: -18.905497,46.511864 - 2751: -18.634663,46.887123 - 2752: -17.374247,46.855854 - 2753: -16.197163,46.84543 - 2754: -17.332579,46.543137 - 2755: -15.988828,46.48059 - 2756: -14.249245,46.28254 - 2757: -12.967995,46.219994 - 2758: -18.124247,46.12618 - 2759: -18.738829,45.876007 - 2760: -19.124247,45.177605 - 2761: -19.311747,44.729378 - 2762: -19.790913,42.655018 - 2763: -19.842997,41.518814 - 2764: -19.853413,40.799564 - 2765: -19.905497,40.58066 - 2766: -19.426329,40.4243 - 2767: -19.842997,40.18455 - 2768: -14.189258,36.44854 - 2769: -14.199674,36.052433 - 2770: -13.783008,36.333878 - 2771: -13.908008,36.042007 - 2772: -14.335091,35.791836 - 2773: -14.418424,35.48954 - 2774: -13.314258,29.843378 - 2775: -12.303841,25.027534 - 2776: -12.970508,23.380556 - 2777: -30.284952,37.366932 - 2778: -30.337034,37.293964 - 2779: -30.472452,36.699802 - 2780: -30.420368,35.772076 - 2781: -33.57662,38.21127 - 2782: -33.53495,37.929825 - 2783: -33.524532,37.888126 - 2784: -33.51412,38.117455 - 2785: -33.47245,38.430172 - 2786: -30.472452,33.051437 - 2787: -30.514118,32.87423 - 2788: -30.545368,32.717873 - 2789: -30.613153,27.69818 - 2790: -30.59232,27.708603 - 2791: -30.644403,27.520973 - 2792: -30.540237,27.333344 - 2793: -30.43607,27.135288 - 2794: -33.477734,21.524982 - 2795: -33.49857,21.514559 - 2796: -33.602734,21.556253 - 2797: -34.133984,21.54583 - 2798: -33.74857,21.462439 - 2799: -33.5194,21.514559 - 2800: -35.34712,21.685957 - 2801: -35.3992,21.50875 - 2802: -35.12837,21.529598 - 2803: -34.701286,21.487904 - 2804: -34.545036,21.404512 - 2805: -34.99295,21.123066 - 2806: -34.53462,20.43509 - 2807: -35.3367,17.88426 - 2808: -33.6492,17.86341 - 2809: -32.0867,17.686205 - 2810: -24.569992,17.498573 - 2811: -24.569992,17.498573 - 2812: -25.465826,21.49426 - 2813: -25.465826,21.49426 - 2814: -24.819992,21.567228 - 2815: -24.007492,21.546381 - 2816: -22.525463,23.750225 - 2817: -22.525463,24.094213 - 2818: -22.546297,24.35481 - 2819: -23.556713,24.27142 - 2820: -23.50463,23.823193 - 2821: -23.358797,23.510475 - 2822: -21.608797,24.365234 - 2823: -21.619213,23.87531 - 2824: -21.53588,23.354116 - 2825: -19.794304,20.40415 - 2826: -19.025888,20.497965 - 2827: -18.067554,20.466694 - 2828: -15.9738035,20.466694 - 2829: -18.255054,23.510475 - 2830: -17.67172,23.468779 - 2831: -17.942554,24.198452 - 2832: -18.335697,21.727987 - 2833: -9.85653,22.280455 - 2834: -13.627363,23.09352 - 2835: -13.252363,23.114367 - 2836: -14.908613,21.915617 - 2837: -12.658613,22.655714 - 2838: -12.033613,22.061552 - 2839: -11.179446,21.696714 - 2840: -12.471113,22.5619 - 2841: -13.82528,24.32354 - 2842: -13.273197,28.847515 - 2843: -13.304447,28.086569 - 2844: -13.189863,26.595951 - 2845: -12.991947,25.053213 - 2846: -15.189863,21.519508 - 2847: -16.700281,21.613325 - 2848: -10.264914,20.841953 - 2849: -5.076751,20.685596 - 2850: -7.1288347,23.645985 - 2851: -9.316335,23.625137 - 2852: -7.295501,23.520899 - 2853: -4.81146,22.999704 - 2854: -6.5822935,23.051823 - 2855: -2.4572933,24.532017 - 2856: -2.0822933,24.448626 - 2857: -0.8010431,24.417355 - 2858: -0.49895984,23.969126 - 2859: -1.2281265,23.09352 - 2860: -2.5718765,22.864193 - 2861: -0.62395984,21.1234 - 2862: -0.4449033,21.269335 - 2863: 4.959138,22.780802 - 2864: 4.5424714,21.727987 - 2865: 3.7299714,20.852379 - 2866: 6.6377254,24.062943 - 2867: 5.6108203,20.060162 - 2868: 7.4842143,16.547249 - 2869: 7.619632,15.91139 - 2870: 7.4946313,12.362568 - 2871: 7.577965,-8.661011 - 2872: 7.4946313,-6.1619706 - 2873: 7.348798,-4.3769665 - 2874: 6.8592143,-1.908556 - 2875: 6.7967143,0.5239835 - 2876: 6.192548,2.4129975 - 2877: 6.1821313,0.83694434 - 2878: 6.1717143,-1.2616551 - 2879: 6.1717143,-4.521998 - 2880: 6.1717143,-5.8270054 - 2881: 6.192548,-8.715143 - 2882: 6.2133813,-11.58789 - 2883: 7.0154643,-9.970169 - 2884: 7.0154643,-7.2633624 - 2885: 7.0258813,-4.6318364 - 2886: 6.7446313,-1.5693882 - 2887: 6.130048,0.81458163 - 2888: 2.377322,2.035251 - 2889: 0.34117383,1.983499 - 2890: -2.803865,1.920995 - 2891: 4.3894205,11.271226 - 2892: 4.3894205,11.761149 - 2893: 4.493587,13.564485 - 2894: 4.5144205,13.460246 - 2895: 4.5665035,12.782692 - 2896: 4.524837,11.886236 - 2897: -10.626441,3.5627813 - 2898: -10.188941,3.5210853 - 2899: -9.282691,3.3647263 - 2900: -8.605607,19.740305 - 2901: -8.751441,19.667337 - 2902: -9.647274,19.69861 - 2903: -10.428524,19.604795 - 2904: -8.793107,19.709034 - 3007: -21.987375,3.5895429 - 3008: -21.591543,3.5478468 - 3009: -21.44571,3.4436076 - 3010: -21.612375,3.8709874 - 3011: -21.560293,11.035428 - 3012: -21.53946,11.577472 - 3013: -22.07071,11.567048 - 3014: -23.841543,10.806103 - 3015: -24.456125,11.629591 - 3016: -24.206125,12.140363 - 3017: -21.75821,18.309427 - 3018: -23.122793,16.860504 - 3019: -22.310293,14.3477125 - 3020: -22.810293,10.743245 - 3021: -22.529043,14.265988 - 3022: -23.049875,8.369986 - 3023: -22.654043,4.498516 - 3024: -23.935293,8.970056 - 3025: -24.831125,8.938784 - 3026: -26.018625,8.98048 - 3027: -25.518625,12.065724 - 3028: -25.82071,11.91979 - 3029: -28.279043,10.898247 - 3030: -28.13321,10.147726 - 3031: -27.25821,7.781499 - 3032: -28.622793,5.5221157 - 3033: -26.53946,6.3768764 - 3034: -28.47696,6.8668003 - 3035: -26.239887,15.587893 - 3036: -26.271137,15.379413 - 3037: -26.177387,15.785946 - 3038: -26.177387,15.723404 - 3039: -26.187803,15.525349 - 3040: -26.521137,15.335574 - 3041: -28.286758,3.0192616 - 3042: -26.536758,2.5084898 - 3043: -27.596325,1.3722842 - 3044: -32.91358,1.3931315 - 3045: -35.843235,1.341012 - 3046: -42.94379,8.537208 - 3047: -42.620876,8.453816 - 3048: -42.11046,8.27661 - 3049: -39.839626,4.388493 - 3050: -43.01671,6.963198 - 3051: -41.92296,4.9409604 - 3052: -38.50629,8.558055 - 3053: -37.88129,8.443393 - 3054: -38.058376,8.547631 - 3055: -38.527126,8.599751 - 3056: -38.75629,8.537208 - 3057: -38.48546,8.401696 - 3058: -38.04796,8.474664 - 3059: -37.54796,8.495512 - 3060: -37.527126,8.172371 - 3061: -37.495876,7.963892 - 3062: -37.26671,6.254372 - 3063: -36.85004,6.410731 - 3064: -36.53754,6.692176 - 3065: -36.69379,5.149438 - 3066: -36.808376,4.690786 - 3067: -36.76671,4.3780694 - 3068: -36.76671,4.0966234 - 3069: -36.527126,3.6275477 - 3070: -35.47504,2.9256542 - 3071: -35.558376,3.2383716 - 3072: -36.183376,3.2383716 - 3073: -36.51671,2.9986217 - 3074: -35.995876,-0.5778641 - 3075: -40.47504,-0.9843964 - 3076: -40.45421,-1.4638963 - 3077: -40.44379,-1.9642434 - 3078: -37.75179,-5.2990575 - 3079: -37.56429,-4.8612533 - 3080: -36.585125,-3.3914826 - 3257: -48.27621,-4.0158615 - 3258: -50.334366,-4.0158615 - 3259: -59.03737,-2.7754164 - 3260: -61.68545,-2.7649925 - 3261: -64.4904,-2.7649925 - 3262: -68.51817,-2.7024488 - 3263: -71.56062,-3.2653399 - 3264: -71.74853,-4.026285 - 3265: -71.34228,-3.8282309 - 3266: -72.08186,-4.4640894 - 3267: -72.1027,-1.6430955 - 3268: -73.05061,-0.67367285 - 3269: -73.6027,5.4136753 - 3270: -72.67561,5.4866424 - 3271: -72.73811,4.8299365 - 3272: -72.7277,3.808394 - 3273: -72.25895,1.1294498 - 3274: -71.2902,1.7131882 - 3275: -71.39436,1.2232647 - 3276: -71.44645,0.19129807 - 3277: -74.61311,-0.4341361 - 3278: -74.61311,-0.4341361 - 3279: -74.52978,-5.515501 - 3280: -74.52978,-5.369566 - 3281: -74.55061,-4.9734583 - 3282: -70.44645,-4.5981975 - 3283: -69.64436,-4.566926 - 3284: -69.55061,-4.566926 - 3285: -68.59228,-4.6398926 - 3286: -60.43736,-1.7662196 - 3287: -51.73944,-1.8183391 - 3288: -55.165905,-1.4847744 - 3289: -55.165905,-1.4847744 - 3290: -60.758797,-1.349263 - 3291: -70.144135,-1.4013824 - 3292: -71.51818,-1.4013824 - 3293: -53.646587,-2.078937 - 3294: -48.544907,-3.0692077 - 3295: -49.72908,-2.8815773 - 3296: -47.624916,-3.5904033 - 3297: -49.664513,-5.5635138 - 3298: -51.737427,-5.4175787 - 3299: -51.990097,-6.5061088 - 3300: -51.885933,-6.8605213 - 3301: -49.729683,-6.996032 - 3302: -49.948433,-7.652738 - 3303: -42.268738,-5.683358 - 3304: -42.268738,-5.5582714 - 3305: -42.258324,-5.2664022 - 3306: -41.267006,-3.0040543 - 3307: -73.448906,-7.014419 - 3308: -72.95932,-9.036657 - 3309: -73.667656,-12.382731 - 3310: -73.74057,-13.308479 - 3311: -73.33432,-17.352732 - 3312: -73.969734,-20.87785 - 3313: -73.511406,-20.522848 - 3314: -73.605156,-22.201097 - 3315: -74.20932,-26.09964 - 3316: -74.261406,-25.630564 - 3317: -74.094734,-25.286573 - 3318: -73.730156,-25.328268 - 3319: -73.573906,-25.640987 - 3320: -75.42807,-25.5159 - 3321: -75.532234,-25.432508 - 3322: -71.594734,-25.390814 - 3323: -71.594734,-24.327574 - 3324: -71.407234,-17.425032 - 3325: -71.448906,-16.549425 - 3326: -71.58432,-16.601543 - 3327: -71.563484,-15.92399 - 3328: -71.313484,-15.621696 - 3329: -71.563484,-17.039347 - 3330: -71.250984,-17.435455 - 3331: -75.355156,-18.415302 - 3332: -68.39647,-17.334116 - 3333: -68.58397,-17.34454 - 3334: -69.39647,-17.240301 - 3335: -69.292305,-15.687139 - 3336: -68.511055,-15.562053 - 3337: -69.073555,-16.521051 - 3338: -69.90688,-17.354963 - 3339: -69.64647,-17.198605 - 3340: -69.49022,-16.906736 - 3341: -68.84438,-16.458508 - 3342: -64.40282,-15.27514 - 3343: -64.52782,-14.879032 - 3344: -64.31947,-14.753945 - 3345: -64.03822,-14.211902 - 3346: -63.30906,-14.243174 - 3347: -62.725727,-14.243174 - 3348: -64.93617,-9.943493 - 3349: -64.86326,-8.515418 - 3350: -62.311172,-8.181852 - 3351: -60.738255,-6.2414756 - 3352: -66.67576,-7.6591268 - 3353: -78.11984,-10.566341 - 3354: -75.49484,-10.6381 - 3355: -76.54693,-11.555404 - 3356: -76.505264,-11.419892 - 3357: -78.33859,-16.542261 - 3358: -79.005264,-16.469296 - 3359: -79.224014,-16.907099 - 3360: -77.95318,-22.459986 - 3361: -77.42193,-22.585073 - 3362: -80.768814,-22.571266 - 3363: -81.41464,-22.592115 - 3364: -78.24798,-25.531656 - 3365: 14.609969,24.518326 - 3366: 15.193303,24.518326 - 3367: 15.787052,24.56002 - 3368: 18.859968,24.52875 - 3369: 19.505802,24.507902 - 3370: 19.505802,24.466206 - 3371: 19.453718,24.236881 - 3372: 19.318302,23.872044 - 3373: 14.276636,22.349371 - 3374: 10.276636,22.193012 - 3375: 20.401636,21.703087 - 3376: 6.1423473,24.393612 - 3377: 6.121514,28.228384 - 3378: 12.518362,41.221333 - 3379: 11.366679,45.31279 - 3380: 10.909221,49.593803 - 3381: 12.733825,31.305782 - 3382: 13.171325,30.534414 - 3383: 13.265075,29.66923 - 3384: 23.108824,28.772774 - 3385: 23.317158,30.263393 - 3386: 23.077574,33.45311 - 3387: 24.754658,37.08071 - 3388: 23.025492,36.97647 - 3389: 22.817158,37.21622 - 3390: 24.192158,35.068897 - 3391: 23.827574,34.99593 - 3392: 24.413504,34.631092 - 3393: 24.601004,35.52755 - 3394: 19.621838,31.92088 - 3395: 15.569754,31.92088 - 3396: 15.371839,32.00427 - 3397: 18.048922,31.86876 - 3398: 20.153088,31.806213 - 3399: 21.198574,31.86876 - 3400: 20.39649,31.962574 - 3401: 18.86524,31.941727 - 3402: 16.156906,30.80552 - 3403: 15.261074,30.659586 - 3404: 15.240241,30.70128 - 3405: 16.281906,32.733944 - 3406: 17.438156,32.744366 - 3407: 18.80274,32.77564 - 3408: 19.67774,32.817333 - 3409: 19.20899,32.65055 - 3410: 19.20899,32.65055 - 3411: 15.656906,33.515736 - 3412: 16.24024,33.536583 - 3413: 18.229824,33.432343 - 3414: 18.80274,33.453194 - 3415: 19.136074,33.453194 - 3416: 19.625656,33.47404 - 3417: 19.011074,33.453194 - 3418: 18.531906,33.47404 - 3419: 17.386074,33.47404 - 3420: -2.4195707,30.419691 - 3421: -2.4195707,30.419691 - 3422: -1.4820707,30.35715 - 3423: -1.4820707,30.471811 - 3424: -1.315404,31.10767 - 3425: -0.92998743,31.785225 - 3426: -0.52373743,32.879734 - 3427: -0.52373743,32.89016 - 3428: -0.52373743,33.34881 - 3429: -0.46123743,35.376137 - 3430: -0.57582074,35.188507 - 3431: -0.64873743,34.792397 - 3432: 0.63251257,34.573494 - 3433: 0.59084594,34.656887 - 3434: -4.586238,36.522766 - 3435: -5.3779044,36.491493 - 3436: -4.6591544,36.460224 - 3437: -4.5445714,36.31429 - 3438: -4.5966544,35.9703 - 3439: -5.4520974,34.629406 - 3440: -5.4416814,34.076942 - 3441: -5.4625144,30.3973 - 3442: -5.0354314,30.574509 - 3443: -4.7541814,30.772562 - 3444: -3.3270974,33.732952 - 3445: -3.4833474,33.19091 - 3446: -3.4937642,33.17006 - 3447: -4.618441,23.525824 - 3448: -5.1601076,23.46328 - 3449: -4.743441,23.536247 - 3450: -4.4830236,23.46328 - 3451: -9.555941,23.5154 - 3452: -10.108024,23.536247 - 3453: -10.483024,23.557095 - 3454: -10.024691,23.567518 - 3455: -6.9413576,24.432703 - 3456: -6.5663576,24.484823 - 3457: -6.024691,24.432703 - 3458: -5.712191,24.391008 - 3459: -10.45324,25.402126 - 3460: -10.401156,24.432703 - 3461: -10.35949,24.297192 - 3462: -10.29699,24.13041 - 3463: -2.9324067,25.579332 - 3464: -3.4428234,25.68357 - 3465: -3.4532402,26.31943 - 3466: -0.5157402,25.422974 - 3467: 0.18217677,25.714844 - 3468: 0.35925978,26.64257 - 3469: 0.39050978,27.539028 - 3470: -6.5157404,31.744125 - 3471: -6.692824,31.066574 - 3472: -6.817824,30.920637 - 3473: -7.130324,30.722584 - 3474: -7.974074,30.566225 - 3475: -7.911574,30.618343 - 3476: -7.338657,30.816399 - 3477: -7.786574,36.2681 - 3478: -8.713656,36.070045 - 3479: -8.401157,35.77818 - 3480: -8.39074,35.72606 - 3481: -8.411573,35.5697 - 3482: -11.621528,29.46129 - 3483: -26.446615,47.546844 - 3484: -26.050783,47.432182 - 3485: -25.957033,47.369637 - 3486: -25.946615,47.150738 - 3487: -25.6237,44.534336 - 3488: -26.113283,44.534336 - 3489: -26.165365,43.460674 - 3490: -26.321615,43.24177 - 3491: -26.582033,43.095837 - 3492: -28.446615,43.523216 - 3493: -28.540365,43.596184 - 3494: -29.050783,43.919327 - 3495: -29.352865,44.315434 - 3496: -29.4362,44.450943 - 3497: -29.4362,44.25289 - 3498: -29.457033,43.731697 - 3499: -26.571615,42.866512 - 3500: -24.946615,42.76227 - 3501: -22.957033,42.84566 - 3502: -21.957033,42.981174 - 3503: -21.769533,45.10765 - 3504: -22.5612,43.710846 - 3505: -20.977865,45.649693 - 3506: -20.707033,46.410637 - 3507: -20.707033,47.03607 - 3508: -20.634115,47.380062 - 3509: -20.634115,47.380062 - 3510: -20.613283,47.16116 - 3511: -20.602865,46.097923 - 3512: -25.196615,43.85678 - 3574: 26.856594,-21.757402 - 3575: 27.033676,-21.027729 - 3576: 27.158676,-20.850523 - 3577: 27.669094,-21.027729 - 3578: 26.83576,-23.362684 - 4738: 9.53583,-18.258945 - 4739: 8.47333,-22.751648 - 4740: 8.421247,-23.2103 - 5642: 59.53473,25.488937 - 5643: 59.52431,25.44724 - 5644: 59.52431,25.44724 - 5645: 58.69098,24.415274 - 5646: 58.68056,24.40485 - 5647: 58.68056,24.40485 - 5648: 58.55556,22.611938 - 5649: 58.55556,22.611938 - 5650: 58.55556,22.611938 - 5655: 57.25348,21.454885 - 5656: 57.326397,21.46531 - 5657: 57.638897,21.475733 - 5658: 60.512985,22.434732 - 5659: 60.512985,22.434732 - 5667: 61.356735,25.467678 - 5668: 61.367153,25.467678 - 5669: 57.47132,24.956907 - 5670: 57.47132,24.956907 - 5839: 43.975986,24.032072 - 5840: 42.58015,23.729778 - 5841: 44.46557,22.478909 - 5842: 44.007236,22.791626 - 5843: 42.600986,23.323246 - 5844: 43.819736,22.833323 - 5845: 44.33015,22.583149 - 5851: 39.234314,24.480299 - 5852: 39.775978,24.449028 - 5853: 39.786396,24.438604 - 5854: 39.900978,23.917408 - 5855: 40.505146,23.698507 - 5932: -5.481607,-20.65537 - 5933: -5.481607,-20.65537 - 5934: -26.528284,-26.50296 - 5935: -26.694952,-26.450842 - 5936: -27.587608,-23.593887 - 5937: -27.504276,-23.771093 - 5938: -27.545942,-24.24017 - 5939: -27.139692,-28.388151 - 5940: -27.327192,-28.377728 - 5941: -27.295942,-28.78426 - 5942: -27.316776,-29.096977 - 5943: -27.420942,-29.524357 - 5944: -27.525108,-30.399965 - 5945: -24.641787,-30.410389 - 5946: -24.66262,-30.379118 - 5947: -24.798037,-29.96216 - 5948: -24.954287,-29.732836 - 5949: -25.35012,-29.732836 - 5950: -25.245953,-30.045551 - 5951: -25.16262,-30.295727 - 5952: -24.402203,-22.992306 - 5953: -24.558453,-20.396753 - 5954: -24.589703,-20.448874 - 5955: -24.704287,-20.511417 - 5956: -26.527203,-20.584383 - 5957: -26.527203,-20.584383 - 6389: 15.488207,-19.53728 - 6390: 15.488207,-19.53728 - 6391: 15.988205,-19.558126 - 6392: 15.988205,-19.558126 - 6393: 16.477789,-19.599823 - 6394: 16.477789,-19.599823 - 6395: 18.504423,-21.56994 - 6396: 18.587757,-22.10156 - 6397: 18.598173,-22.299614 - 6398: 18.629423,-22.445549 - 6399: 19.285673,-22.643604 - 6400: 19.285673,-22.643604 - 6401: 19.035673,-22.508093 - 6402: 18.994007,-22.49767 - 6403: 16.653166,-22.883354 - 6404: 15.590666,-23.321157 - 6405: 14.236501,-23.383701 - 6406: 10.528167,-22.73742 - 6407: 10.528167,-22.747843 - 6408: 10.486501,-23.394125 - 6409: 10.486501,-19.902117 - 6410: 12.601084,-19.870844 - 6411: 12.580251,-20.016779 - 6412: 12.580251,-20.193985 - 6413: 15.361501,-19.964659 - 6414: 15.361501,-20.089746 - 6415: 15.351084,-20.277376 - 6416: 10.447781,-22.622755 - 6417: 5.3644466,-24.478212 - 6418: 4.69778,-24.363548 - 6419: 4.41653,-23.790234 - 6420: 4.718613,-24.134222 - 6421: 7.5102806,-24.426092 - 6422: 8.072781,-24.426092 - 6423: 8.656114,-24.436516 - 6424: 8.979031,-24.373972 - 6425: 9.551948,-23.43582 - 6426: 8.479031,-20.558823 - 6427: 9.354031,-20.52755 - 6428: 6.156113,-20.600517 - 6429: 5.44778,-20.569246 - 6430: 5.312363,-20.57967 - 6431: 4.781113,-20.7673 - 6432: 4.57278,-20.923658 - 6433: 9.395698,-19.34717 - 6434: 9.301948,-19.388865 - 6435: 8.791531,-19.461832 - 6436: 5.9894466,-17.210268 - 6437: 5.44778,-17.304085 - 6470: -85.59067,-35.482452 - 6471: -85.59067,-35.482452 - 6472: -85.69483,-37.723595 - 6473: -85.52817,-38.015465 - 6474: -85.517746,-38.41157 - 6475: -85.43442,-41.18433 - 6476: -85.34067,-41.382385 - 6477: -82.59067,-38.369877 - 6478: -82.56983,-37.786137 - 6479: -78.66358,-37.47342 - 6480: -78.52817,-37.4213 - 6481: -78.38233,-36.900105 - 6482: -78.548996,-33.65827 - 6483: -78.142746,-33.533184 - 6484: -81.28858,-33.43937 - 6485: -80.56983,-33.491486 - 6486: -80.50733,-32.78266 - 6487: -81.53858,-31.261269 - 6488: -81.49692,-31.58441 - 6489: -82.43442,-32.522564 - 6490: -84.49692,-33.53368 - 6491: -84.68442,-33.53368 - 6492: -85.298996,-34.59692 - 6493: -75.49842,-30.468445 - 6494: -75.49842,-30.468445 - 6495: -75.5505,-30.895824 - 6496: -73.46717,-30.447598 - 6497: -73.46717,-30.447598 - 6498: -80.602585,-29.676228 - 6499: -80.602585,-29.488598 - 6500: -80.62342,-29.446901 - 6501: -80.45675,-29.770042 - 6502: -80.508835,-30.103607 - 6503: -80.49842,-29.957672 - 6504: -80.89425,-29.467749 - 6505: -85.22755,-29.728348 - 6506: -85.23796,-29.728348 - 6507: -85.47755,-30.061913 - 6508: -85.42546,-29.79089 - 6509: -85.30046,-29.55114 - 6510: -85.217125,-29.707499 - 6511: -85.30046,-29.811739 - 6512: -84.560875,-29.749195 - 6513: -84.5088,-29.665804 - 6514: -84.10255,-29.634533 - 6515: -83.99151,-37.486996 - 6516: -83.92901,-39.519657 - 6517: -83.55401,-39.56135 - 6518: -83.449844,-40.072124 - 6825: -24.43257,92.50984 - 6826: -24.55757,92.145004 - 6827: -22.849236,92.50984 - 6828: -22.37007,91.06091 - 6829: -22.37007,91.06091 - 6830: -22.37007,91.01922 - 6831: -22.359653,90.894135 - 6832: -22.359653,90.86286 - 6833: -22.359653,90.84201 - 6834: -22.33882,90.71693 - 6835: -22.68257,92.65578 - 6836: -22.71382,92.94764 - 6837: -22.755486,93.12485 - 6838: -22.80757,93.26036 - 6839: -24.49507,91.081764 - 6840: -24.536736,90.88371 - 6841: -24.547153,90.73778 - 6842: -24.578403,90.66481 - 6843: -24.922153,90.508446 - 6844: -25.453403,89.99768 - 6845: -25.547153,89.69538 - 6846: -25.62007,89.38267 - 6965: 40.615875,-11.57723 - 6966: 40.615875,-11.57723 - 6967: 41.56379,-11.608502 - 6968: 41.56379,-12.473687 - 6969: 41.56379,-12.473687 - 6970: 41.542957,-12.473687 - 6971: 42.324207,-12.45284 - 6972: 42.511707,-12.536231 - 6973: 42.553375,-12.557078 - 6974: 42.56379,-12.557078 - 6975: 42.511707,-11.858677 - 6976: 42.615875,-11.733589 - 6977: 44.50129,-11.629351 - 6978: 44.50129,-11.608502 - 6979: 45.240875,-11.650198 - 6980: 45.18879,-10.451448 - 6981: 45.03254,-10.451448 - 6982: 44.584625,-10.472297 - 6983: 44.105457,-10.472297 - 6984: 43.855457,-10.472297 - 6985: 43.542957,-10.472297 - 6986: 43.199207,-10.493145 - 6987: 42.792957,-10.524416 - 6988: 42.053375,-10.545264 - 6989: 40.397125,-8.523026 - 6990: 40.93879,-8.523026 - 6991: 41.303375,-8.502178 - 6992: 41.605457,-8.48133 - 6993: 42.417957,-8.450058 - 6994: 43.042957,-8.439634 - 6995: 43.37629,-8.418787 - 6996: 44.43879,-7.636994 - 6997: 44.042957,-7.584874 - 6998: 43.542957,-7.5640264 - 6999: 43.28254,-7.449363 - 7000: 40.68879,-7.491059 - 7001: 40.68879,-7.57445 - 7002: 40.615875,-7.7933526 - 7003: 40.511707,-8.126917 - 7004: 40.31379,-8.512602 - 7005: 39.34504,-10.5661125 - 7006: 39.334625,-10.545264 - 7007: 38.772125,-10.524416 - 7008: 36.511707,-9.502873 - 7009: 36.490875,-9.586265 - 7010: 36.542957,-10.284666 - 7011: 35.959625,-10.430601 - 7012: 35.47004,-9.554993 - 7013: 35.428375,-9.554993 - 7014: 34.93879,-9.544569 - 7015: 35.522175,-7.552371 - 7016: 35.615925,-7.740001 - 7017: 36.188843,-8.167381 - 7018: 36.553425,-8.45925 - 7019: 34.47575,-10.601477 - 7020: 33.72575,-10.580629 - 7021: 33.642418,-10.570205 - 7022: 33.527832,-11.258183 - 7023: 33.486168,-11.497932 - 7045: 36.44325,-21.45165 - 7046: 35.703667,-21.555891 - 7047: 35.662,-21.545465 - 7048: 35.609917,-21.535042 - 7049: 35.453667,-21.535042 - 7050: 35.547417,-20.534348 - 7064: 33.374958,-20.563297 - 7065: 33.395794,-20.876015 - 7066: 33.489544,-21.68908 + 1267: -13.729793,-16.662243 + 1268: -13.729793,-16.662243 + 1269: -17.816233,-13.531803 + 1270: -17.816233,-13.531803 + 1271: -17.816233,-13.531803 + 1272: -8.451649,-10.974869 + 1273: -8.451649,-10.974869 + 1274: -8.441231,-10.703847 + 1275: -7.326648,-10.943597 + 1276: -7.326648,-10.943597 + 1277: -7.514148,-13.038802 + 1278: -6.5662313,-12.111075 + 1279: -6.5558147,-12.371673 + 1280: -9.368314,-11.395324 + 1281: -9.378731,-11.718465 + 1282: -13.649565,-12.475521 + 1283: -13.639148,-12.475521 + 1284: -7.7745647,-6.448164 + 1285: -7.7745647,-6.448164 + 1286: -11.503731,-1.6403191 + 1287: -17.493315,-1.7862542 + 1288: -17.503733,-1.7862542 + 1289: -12.514148,3.4118273 + 1290: -19.034983,3.453523 + 1291: -18.316233,3.463947 + 1292: -18.764149,-0.18441999 + 1293: -5.4368734,1.8169699 + 1294: -20.356619,1.7544267 + 1308: 10.593955,-16.436058 + 1309: 6.4168706,-20.974081 + 1310: 6.4168706,-20.83857 + 1318: 22.945652,-15.560091 + 1319: 22.945652,-15.560091 + 1320: 23.008152,-15.653906 + 1321: 23.018568,-15.789417 + 1322: 23.018568,-15.789417 + 1323: 23.049818,-16.03959 + 1324: 27.476902,-18.57383 + 1325: 27.476902,-18.57383 + 1326: 24.00353,-23.411848 + 1327: 24.00353,-23.411848 + 1328: 24.00353,-23.411848 + 1329: 27.56517,-19.641037 + 1330: 27.554752,-19.65146 + 1342: 21.657755,-20.349817 + 1343: 22.761923,-21.788317 + 1344: 23.678589,-18.317156 + 1345: 21.178589,-21.871708 + 1346: 24.241089,-17.566633 + 1347: 20.584839,-22.872402 + 1348: 27.535648,-15.737391 + 1349: 27.535648,-15.768662 + 1350: 27.712732,-15.89375 + 1351: 28.306482,-16.258587 + 1352: 28.483564,-16.310707 + 1353: 28.535648,-16.341978 + 1354: 28.577314,-16.571302 + 1355: 32.47799,-12.366075 + 1366: 29.48862,-12.616248 + 1367: 29.48862,-12.616248 + 1368: 27.052542,-13.45016 + 1369: 26.583792,-13.387617 + 1370: 26.43796,-13.3459215 + 1371: 26.56296,-13.31465 + 1372: 26.885876,-13.481432 + 1373: 25.71921,-11.917423 + 1374: 25.62546,-11.7610655 + 1375: 25.43796,-11.396228 + 1376: 25.333792,-11.13563 + 1377: 25.479626,-11.104359 + 1378: 25.615042,-11.813185 + 1379: 25.59421,-12.125901 + 1380: 24.615042,-12.5324335 + 1381: 24.385876,-12.501163 + 1382: 24.333792,-12.407348 + 1383: 24.34421,-12.198869 + 1384: 24.56296,-12.396923 + 1393: 15.989529,-11.385074 + 1394: 15.989529,-11.385074 + 1395: 15.989529,-11.385074 + 1396: 19.437445,-9.540043 + 1397: 19.437445,-9.540043 + 1398: 18.749945,-9.4045315 + 1399: 18.145779,-9.331564 + 1400: 17.770779,-9.3732605 + 1401: 20.566778,-7.5450015 + 1402: 20.545944,-7.4094906 + 1403: 20.441778,-6.8674474 + 1404: 20.49386,-6.8465996 + 1405: 20.49386,-6.8465996 + 1406: 21.71261,-7.159317 + 1407: 21.660528,-7.357371 + 1408: 21.629278,-7.378219 + 1409: 21.598028,-7.4303384 + 1410: 21.327194,-7.4199147 + 1411: 21.327194,-7.4511867 + 1412: 21.473028,-7.4511867 + 1413: 21.889694,-7.3677955 + 1414: 22.05636,-7.3677955 + 1415: 22.389694,-7.346947 + 1416: 23.264694,-7.3156757 + 1417: 20.316778,-8.326794 + 1418: 20.316778,-8.378914 + 1419: 20.629278,-8.535273 + 1420: 20.639694,-8.597816 + 1421: 20.702194,-8.691631 + 1434: 24.31447,-5.4617095 + 1435: 24.554054,-5.5242534 + 1436: 26.50197,-5.503405 + 1437: 26.50197,-5.503405 + 1438: 26.84572,-5.3678946 + 1439: 27.137388,-5.2323837 + 1440: 26.679054,-2.573702 + 1441: 26.647804,-2.7613325 + 1442: 26.59572,-3.0010824 + 1443: 26.356138,-3.699484 + 1444: 25.449888,-5.0545917 + 1445: 25.418638,-4.3561897 + 1446: 25.074888,-0.74951893 + 1447: 25.054054,-1.0726595 + 1448: 25.022804,-1.8231807 + 1459: 23.927017,-1.6147025 + 1460: 23.708267,-1.3124094 + 1461: 23.874935,-1.562583 + 1462: 23.885351,-1.5730071 + 1463: 23.031185,-1.3853769 + 1464: 22.947851,-3.5639734 + 1465: 22.947851,-3.574397 + 1466: 22.947851,-3.6369402 + 1467: 22.843685,-4.3249187 + 1468: 22.968685,-4.2206793 + 1469: 21.812435,-3.8454187 + 1470: 21.416601,-4.2727985 + 1471: 21.343685,-4.4291573 + 1472: 21.218685,-4.741874 + 1473: 21.031185,-5.0337434 + 1485: 23.871513,6.993354 + 1486: 23.892347,6.9308105 + 1487: 24.277763,6.6389413 + 1488: 25.486097,9.526362 + 1489: 25.611097,9.474244 + 1490: 25.88193,9.422124 + 1491: 27.173597,9.536787 + 1492: 27.954847,9.620178 + 1493: 27.371513,9.349156 + 1494: 26.402763,9.036439 + 1495: 25.559013,8.817537 + 1496: 24.66318,8.74457 + 1497: 24.027763,8.7237215 + 1498: 24.371513,8.463124 + 1499: 25.590263,8.254646 + 1500: 27.28818,8.598636 + 1501: 28.642347,8.786265 + 1502: 29.31943,8.431853 + 1503: 29.142347,7.9523535 + 1504: 28.642347,7.8689623 + 1505: 26.50693,7.5979404 + 1506: 27.246513,7.0142016 + 1507: 27.965263,6.816148 + 1508: 28.527763,6.565974 + 1509: 28.329847,6.0447783 + 1510: 27.496513,5.971812 + 1511: 26.965263,5.106627 + 1512: 27.81943,4.9606924 + 1513: 28.684013,4.3769536 + 1514: 27.996513,3.9391494 + 1515: 27.38193,3.907878 + 1516: 26.454847,3.803639 + 1517: 24.496513,6.4617352 + 1518: 24.496513,6.4617352 + 1537: 25.923597,10.131614 + 1538: 25.923597,10.684081 + 1539: 25.91318,11.101037 + 1540: 25.91318,11.684776 + 1541: 25.902763,12.456145 + 1542: 25.798597,11.142734 + 1543: 26.777763,10.36094 + 1544: 26.746513,10.746625 + 1545: 26.704847,11.059342 + 1546: 26.548597,12.518689 + 1547: 26.371513,11.246972 + 1548: 27.246513,10.340093 + 1549: 27.28818,10.850863 + 1550: 27.267347,11.372059 + 1551: 29.633009,11.071933 + 1552: 29.372591,11.082356 + 1553: 31.705929,14.626485 + 1554: 31.872593,14.720301 + 1555: 33.39343,14.178258 + 1556: 33.38301,14.126138 + 1557: 31.997593,11.905846 + 1558: 31.237175,11.905846 + 1559: 30.893425,12.041356 + 1560: 31.63301,11.9996605 + 1561: 32.72676,11.957965 + 1562: 36.36218,12.114324 + 1563: 37.08093,12.208138 + 1564: 38.03926,14.126138 + 1565: 36.69551,8.872489 + 1566: 33.95593,8.455533 + 1567: 31.591343,8.445109 + 1568: 30.664259,8.424261 + 1569: 31.205925,8.518076 + 1570: 34.91426,8.632739 + 1571: 44.706745,9.143511 + 1572: 46.748413,11.353379 + 1573: 46.165077,10.436074 + 1574: 44.998413,9.800217 + 1575: 43.956745,9.268598 + 1576: 47.810913,9.821065 + 1577: 47.610493,12.969085 + 1578: 47.547993,12.95866 + 1579: 46.037575,13.292226 + 1580: 44.620907,13.667486 + 1581: 43.381325,13.667486 + 1582: 41.537575,13.636214 + 1583: 46.016743,14.324192 + 1593: 42.184204,11.259563 + 1594: 41.13212,11.947541 + 1608: 28.429485,13.028685 + 1609: 28.335735,13.028685 + 1610: 28.460735,11.235772 + 1611: 28.439901,11.152381 + 1612: 28.346151,10.881359 + 1613: 25.471151,15.3787565 + 1614: 24.481567,13.617117 + 1615: 24.471151,13.533727 + 1616: 24.387817,10.996278 + 1617: 24.387817,11.006701 + 1618: 20.32563,13.695882 + 1619: 20.533964,19.55412 + 1620: 20.533964,19.55412 + 1621: 21.54438,19.429031 + 1622: 21.940214,19.283096 + 1623: 22.158964,18.522152 + 1624: 23.07563,17.219164 + 1625: 22.16938,15.530491 + 1626: 22.367296,14.123262 + 1627: 22.752714,12.559676 + 1628: 20.929796,11.798731 + 1639: 25.262802,19.621094 + 1640: 25.491968,18.922693 + 1641: 25.398218,18.015812 + 1642: 28.71072,15.764248 + 1643: 28.55447,15.795521 + 1644: 28.533636,15.889336 + 1645: 28.64822,19.933811 + 1646: 28.55447,20.819843 + 1647: 28.58572,21.52867 + 1648: 28.58572,21.52867 + 1649: 28.58572,21.52867 + 1650: 28.58572,21.215952 + 1651: 28.58572,21.142984 + 1652: 28.58572,20.371616 + 1653: 28.58572,20.423735 + 1654: 28.58572,20.423735 + 1667: 28.012802,17.619705 + 1668: 27.794052,17.140205 + 1669: 24.671003,20.596066 + 1670: 24.077253,20.377163 + 1671: 24.816837,20.387587 + 1672: 25.27517,23.056107 + 1673: 25.202253,23.504335 + 1674: 30.199944,20.658607 + 1675: 30.199944,20.658607 + 1676: 30.231194,20.429281 + 1677: 30.39786,20.064445 + 1678: 30.17911,21.680151 + 1679: 30.17911,21.680151 + 1680: 33.4969,18.506353 + 1681: 33.4969,18.516777 + 1682: 33.476067,18.485504 + 1683: 33.14273,18.412539 + 1684: 32.84065,18.39169 + 1685: 33.42398,17.630745 + 1686: 33.36148,17.505657 + 1687: 32.90315,17.474386 + 1692: 33.71565,21.53133 + 1693: 33.67398,21.427092 + 1694: 33.17398,20.96844 + 1695: 29.392729,26.351194 + 1696: 29.507313,25.75703 + 1697: 29.434397,24.996086 + 1698: 29.528147,25.746607 + 1699: 29.476063,26.121868 + 1700: 30.226063,26.497128 + 1701: 33.59065,25.538128 + 1702: 33.59065,25.51728 + 1703: 35.601067,24.381075 + 1704: 35.59065,24.162172 + 1705: 34.4344,23.453348 + 1706: 35.726067,26.497128 + 1707: 36.4344,26.382465 + 1708: 39.226067,26.330345 + 1709: 41.1844,26.434586 + 1710: 41.569817,26.5284 + 1711: 39.5594,26.497128 + 1712: 37.538567,26.44501 + 1713: 36.26773,26.517977 + 1714: 36.48648,27.080868 + 1715: 36.96565,26.674335 + 1716: 37.413567,26.601368 + 1717: 37.76773,26.361618 + 1718: 39.819817,26.330345 + 1719: 42.01773,26.559671 + 1720: 41.26773,26.47628 + 1721: 40.40315,26.309498 + 1722: 39.382317,26.267801 + 1723: 37.29898,26.361618 + 1724: 35.67398,26.465857 + 1733: 36.897545,18.931717 + 1741: 41.230877,18.629425 + 1742: 41.293377,18.608576 + 1743: 41.710045,18.619 + 1744: 41.855877,18.639847 + 1745: 42.085045,18.629425 + 1746: 42.741295,18.389675 + 1747: 42.741295,18.358402 + 1748: 42.678795,17.972717 + 1749: 45.43921,21.108114 + 1750: 47.772545,21.723124 + 1751: 47.710045,21.650156 + 1752: 40.949627,21.379135 + 1753: 46.03296,20.597342 + 1754: 46.03296,20.597342 + 1755: 46.56421,24.44474 + 1756: 46.56421,24.486437 + 1757: 46.324627,25.21611 + 1758: 44.085045,27.040293 + 1759: 45.303795,24.621946 + 1760: 45.418377,27.8016 + 1761: 45.022545,30.418001 + 1762: 46.710045,30.857872 + 1763: 46.012127,30.72236 + 1764: 44.605877,30.597275 + 1765: 43.053795,30.72236 + 1766: 45.06421,24.114763 + 1767: 45.06421,27.552265 + 1768: 45.06421,29.772232 + 1769: 45.06421,31.372208 + 1770: 45.06421,34.37216 + 1771: 45.06421,35.77214 + 1772: 45.06421,38.97209 + 1773: 45.06421,40.172073 + 1774: 45.06421,43.172028 + 1775: 45.06421,45.971985 + 1776: 45.06421,48.78815 + 1777: 45.06421,51.120148 + 1778: 45.105877,52.181366 + 1779: 45.105877,50.547134 + 1780: 45.105877,47.74254 + 1781: 45.105877,45.607235 + 1782: 45.105877,43.98729 + 1783: 45.105877,41.187386 + 1784: 45.105877,38.18749 + 1785: 45.105877,36.587543 + 1786: 45.105877,33.587646 + 1787: 45.105877,30.787743 + 1788: 45.105877,29.187798 + 1789: 45.105877,25.787897 + 1790: 45.105877,24.187937 + 1791: 45.105877,20.988016 + 1792: 46.512127,32.051205 + 1793: 43.116295,32.676636 + 1794: 43.449627,34.396584 + 1795: 43.512127,34.636333 + 1796: 43.605877,36.940292 + 1797: 46.574627,37.21009 + 1798: 46.553795,36.61593 + 1799: 46.741295,36.011345 + 1800: 46.793377,35.729897 + 1801: 46.522545,35.57354 + 1802: 46.210045,35.646507 + 1803: 45.866295,35.802864 + 1804: 46.28296,36.084312 + 1805: 46.37671,36.4283 + 1806: 43.89996,39.47233 + 1807: 43.441624,39.18046 + 1808: 43.61871,39.09707 + 1809: 43.222874,38.523754 + 1810: 43.54579,38.586296 + 1811: 43.660374,38.690536 + 1812: 45.95204,42.03086 + 1813: 41.32704,42.51036 + 1814: 40.58746,42.42697 + 1815: 40.21246,42.385277 + 1816: 41.004124,44.61599 + 1817: 40.347874,45.846012 + 1818: 40.77496,46.34636 + 1819: 40.98329,46.325512 + 1820: 41.67079,45.98152 + 1821: 41.629124,45.554142 + 1822: 41.38954,45.30397 + 1823: 40.92079,44.80362 + 1824: 39.58746,41.666027 + 1825: 39.35829,42.385277 + 1826: 39.45204,43.563175 + 1827: 39.36871,45.137184 + 1828: 39.45204,47.30536 + 1829: 43.49371,47.430447 + 1830: 43.49371,47.430447 + 1831: 43.61871,45.536892 + 1832: 42.879124,45.151207 + 1833: 41.04579,43.431263 + 1834: 41.95204,43.58762 + 1835: 43.472874,43.545925 + 1836: 44.628307,48.84759 + 1837: 44.003307,48.89971 + 1838: 43.753307,48.92056 + 1839: 43.565807,48.910133 + 1840: 43.722057,49.4626 + 1841: 43.74289,49.264545 + 1842: 43.77414,49.066494 + 1843: 43.690807,48.57657 + 1844: 43.43039,48.409786 + 1845: 39.732643,52.200104 + 1846: 39.097225,52.147984 + 1847: 38.659725,51.908234 + 1848: 38.482643,51.803993 + 1849: 38.451393,51.647636 + 1850: 38.722225,51.616364 + 1851: 39.076393,51.564247 + 1852: 39.461807,51.803993 + 1853: 39.618057,52.012474 + 1854: 39.972225,52.127136 + 1855: 20.261162,20.843893 + 1856: 20.781994,20.843893 + 1857: 21.823662,20.750078 + 1858: 16.689684,24.405725 + 1859: 17.668852,24.541237 + 1860: 18.283434,24.572508 + 1861: 16.762602,18.545938 + 1862: 15.675852,18.472971 + 1863: 13.637076,18.42085 + 1864: 13.598222,19.598753 + 1865: 13.587805,19.661297 + 1866: 13.546138,19.484089 + 1867: 11.245337,23.468536 + 1868: 10.70367,23.551928 + 1869: 10.6620035,23.572777 + 1870: 10.776587,23.5832 + 1871: 8.047848,20.560268 + 1872: 7.6207647,20.518572 + 1873: 8.006182,20.518572 + 1874: 8.349932,20.456028 + 1875: 4.724931,28.81707 + 1876: 4.537431,29.160887 + 1877: 4.6207643,29.994799 + 1878: 4.2665973,34.580273 + 1879: 4.3082643,34.434338 + 1880: 4.349931,34.17374 + 1881: 4.349931,33.965263 + 1882: 4.349931,33.913143 + 1883: 4.287431,33.50661 + 1884: 4.4853473,36.164707 + 1885: 4.506181,36.539967 + 1886: 4.506181,36.539967 + 1887: 3.5374308,36.44615 + 1888: 3.5165973,36.33149 + 1889: 3.5061808,36.22725 + 1890: 3.4853475,36.03962 + 1891: 3.4540975,35.872837 + 1892: 3.5374308,35.549698 + 1893: 3.5999308,35.508 + 1894: 3.8811808,35.497578 + 1895: 5.875297,35.513557 + 1896: 5.7607136,35.607372 + 1897: 5.625297,35.73246 + 1898: 7.5355015,36.600502 + 1899: 7.4625845,36.63177 + 1900: 7.4625845,36.63177 + 1901: 7.389668,36.63177 + 1902: 7.389668,36.621346 + 1903: 7.5667515,36.590076 + 1904: 7.5667515,36.57965 + 1905: 12.448409,36.537956 + 1906: 12.448409,36.537956 + 1907: 9.271326,30.594513 + 1908: 9.271326,30.594513 + 1909: 9.271326,30.594513 + 1917: 12.511861,43.38947 + 1918: 8.501445,43.477783 + 1919: 7.970195,43.54033 + 1920: 7.636861,43.8322 + 1921: 7.376444,44.7912 + 1922: 7.699361,47.219967 + 1923: 8.366028,47.365902 + 1924: 9.178528,47.480564 + 1925: 12.747864,49.434944 + 1926: 12.966614,49.361977 + 1927: 14.768697,48.465523 + 1928: 15.320781,48.017292 + 1929: 17.294996,47.683727 + 1930: 19.992174,47.746273 + 1931: 17.53384,47.52737 + 1932: 18.90884,47.433556 + 1933: 19.19009,47.412704 + 1934: 22.45185,47.485672 + 1935: 21.378935,48.73654 + 1936: 20.95185,49.570454 + 1937: 23.181019,48.48637 + 1938: 23.285185,48.43425 + 1939: 23.368519,46.58922 + 1940: 23.368519,47.193806 + 1941: 22.51435,43.396538 + 1942: 22.503935,44.167908 + 1943: 21.628935,44.668255 + 1944: 21.57685,44.65783 + 1945: 21.024769,44.57444 + 1946: 20.4831,43.521626 + 1947: 20.503935,43.69883 + 1948: 20.51435,44.021973 + 1949: 20.51435,44.021973 + 1950: 25.612768,49.063152 + 1951: 26.196102,49.10485 + 1952: 26.175268,48.906796 + 1953: 24.654436,45.435635 + 1954: 24.716936,43.8512 + 1955: 24.550268,43.277885 + 1956: 25.4608,38.606785 + 1957: 24.86705,38.679752 + 1958: 24.939966,39.159252 + 1959: 25.825384,39.74299 + 1960: 28.158716,43.832745 + 1961: 28.387884,43.884865 + 1962: 29.762884,44.051647 + 1963: 34.419136,48.7841 + 1964: 34.554554,49.034275 + 1965: 34.554554,49.034275 + 1966: 33.492054,52.41162 + 1967: 33.492054,52.41162 + 1968: 27.033716,52.43247 + 1969: 27.075384,52.401196 + 1970: 27.231634,51.807034 + 1971: 27.356634,51.556858 + 1972: 27.36705,51.53601 + 1973: 29.106634,50.587437 + 1974: 31.856636,50.56659 + 1975: 32.37747,41.45986 + 1976: 32.37747,41.45986 + 1977: 31.867054,41.439014 + 1978: 34.53372,42.543945 + 1979: 34.481636,42.398014 + 1980: 34.325386,41.88724 + 1981: 31.575386,44.441097 + 1982: 31.533718,44.201347 + 1983: 31.512886,43.99287 + 1984: 32.59622,44.263893 + 1985: 28.346216,49.826553 + 1986: 27.564966,49.774433 + 1988: 20.40685,56.442368 + 1989: 20.40685,56.442368 + 1990: 10.396436,59.73632 + 1991: 10.396436,59.73632 + 1992: 10.500602,60.37218 + 1993: 10.365186,60.4243 + 1994: 10.365186,60.4243 + 1995: 9.625602,59.684204 + 1996: 9.636019,60.08031 + 1997: 9.636019,60.08031 + 1998: 10.636019,62.550777 + 1999: 11.083936,62.592472 + 2000: 11.656853,62.592472 + 2001: 11.406853,62.498657 + 2002: 6.5839353,61.41457 + 2003: 6.6047683,60.18455 + 2004: 6.5214353,59.65293 + 2005: 6.3964353,58.63139 + 2006: 7.4797683,57.68281 + 2007: 7.5110188,58.256126 + 2008: 11.625603,60.330486 + 2009: 11.969353,60.351334 + 2010: 12.365186,58.09977 + 2011: 12.344353,57.68281 + 2012: 13.156853,56.536182 + 2013: 13.438103,56.504913 + 2014: 13.438103,56.504913 + 2015: 7.5110188,56.484062 + 2016: 7.5110188,56.484062 + 2017: 7.500602,56.390247 + 2018: 6.9276853,53.096294 + 2019: 6.906852,53.554947 + 2020: 6.906852,54.02402 + 2021: 6.938102,54.63903 + 2022: 6.9901853,54.76412 + 2023: 7.063102,53.690456 + 2024: 6.719352,50.052513 + 2025: 7.7089357,49.520893 + 2026: 7.7401857,50.12548 + 2027: 8.021436,52.65849 + 2028: 8.000602,54.295044 + 2029: 8.615186,50.30269 + 2030: 9.865186,49.6981 + 2044: 7.5342026,61.934597 + 2045: 7.1487856,61.090263 + 2046: 6.857119,60.22508 + 2047: 6.752952,59.43286 + 2048: 10.815453,62.278587 + 2049: 11.20087,60.079144 + 2050: 11.752953,59.047176 + 2051: 14.54462,54.12709 + 2052: 9.909203,57.264687 + 2053: 7.8779526,58.536404 + 2054: 13.32587,56.68095 + 2055: 15.086287,56.837307 + 2056: 15.721703,56.847733 + 2057: 19.544619,56.4412 + 2058: 20.669619,55.982548 + 2059: 19.752953,55.419655 + 2060: 19.086287,54.81507 + 2061: 18.784203,54.76295 + 2062: 20.075869,53.80395 + 2063: 19.638369,53.678864 + 2064: 8.04462,54.773376 + 2065: 7.169619,54.846344 + 2066: 7.9300356,54.06455 + 2067: 9.617536,55.07567 + 2068: 10.117537,55.0027 + 2069: 11.284203,52.584354 + 2070: 10.815453,52.448845 + 2071: 10.73212,53.05343 + 2072: 17.659203,57.494015 + 2073: 18.263369,57.494015 + 2074: 18.336287,57.368927 + 2075: 18.159203,56.899853 + 2112: 7.388369,66.39354 + 2113: 7.5758696,66.32057 + 2114: 7.6383696,66.247604 + 2115: 7.8050356,66.89388 + 2116: 7.8362856,67.498474 + 2117: 8.752953,68.00924 + 2118: 9.961287,67.977974 + 2119: 10.10712,67.89458 + 2120: 8.76337,64.75698 + 2121: 9.38837,64.47554 + 2122: 9.971703,64.39214 + 2123: 10.492537,64.10028 + 2124: 10.85712,63.631203 + 2125: 11.586287,65.52835 + 2126: 11.398787,66.247604 + 2127: 11.10712,67.008545 + 2128: 11.273787,65.966156 + 2129: 11.60712,65.5492 + 2130: 10.596703,65.5909 + 2131: 8.76337,64.76741 + 2132: 7.7529526,64.35045 + 2133: 6.784202,64.433846 + 2134: 7.263369,64.10028 + 2135: 8.148786,68.03009 + 2136: 8.596703,64.996735 + 2137: 11.32587,67.4672 + 2138: 8.815453,68.80146 + 2139: 8.992536,66.47693 + 2140: 9.565453,67.790344 + 2141: 10.76337,68.48874 + 2142: 10.784203,66.87304 + 2143: 8.846703,64.76741 + 2144: 12.502953,65.72641 + 2145: 7.5550356,68.32196 + 2146: 7.9404526,65.14267 + 2147: -0.28897285,48.47074 + 2148: -2.2681396,48.43947 + 2149: -3.622306,48.376926 + 2150: 2.5235274,51.618763 + 2151: 2.533944,51.326893 + 2152: 3.0131106,51.45198 + 2153: 3.471444,51.472828 + 2154: 1.3647022,51.900208 + 2155: 1.0730355,52.056564 + 2156: 0.7292855,52.338013 + 2157: -8.104769,48.397774 + 2158: -8.000603,48.46032 + 2159: -7.4797688,48.43947 + 2160: -4.1719627,48.3665 + 2161: -3.682379,48.43947 + 2162: -3.713629,48.65837 + 2163: -3.942796,48.720917 + 2164: -14.298122,51.526863 + 2165: -14.662705,51.578983 + 2166: -15.058539,51.662373 + 2167: -15.506455,51.73534 + 2168: -16.735624,52.350353 + 2169: -17.475206,52.412895 + 2170: -17.516874,52.548405 + 2171: -16.568956,48.72283 + 2172: -16.516874,48.566475 + 2173: -15.912705,48.535202 + 2174: -12.641872,48.48308 + 2175: -20.226145,48.52478 + 2176: -21.246979,48.785378 + 2177: -19.496979,52.565838 + 2178: -19.496979,52.565838 + 2179: -19.528229,52.37821 + 2180: -22.569895,52.6805 + 2181: -23.111563,52.01337 + 2182: -14.398411,50.09537 + 2183: -1.9534132,50.074524 + 2184: 2.4452457,50.105797 + 2185: 5.1485205,50.08495 + 2186: 10.5379,50.08495 + 2187: -25.249157,50.04325 + 2188: -33.381947,52.221848 + 2189: -32.38195,51.460903 + 2190: -32.52778,49.542904 + 2191: -32.65278,49.011288 + 2192: -33.756947,48.281612 + 2193: -29.475698,47.604057 + 2194: -29.475698,47.604057 + 2195: -27.881948,48.385853 + 2196: -26.18403,48.469242 + 2197: -24.569448,52.534565 + 2198: -26.49653,50.230885 + 2199: -26.392365,49.866047 + 2200: -20.465534,53.638462 + 2201: -20.507202,54.253475 + 2202: -20.569702,55.233322 + 2203: -20.507202,57.3332 + 2204: -20.517618,58.892445 + 2205: -20.767618,59.059364 + 2206: -22.225952,58.975975 + 2207: -20.215534,60.487206 + 2208: -20.215534,61.362816 + 2209: -20.361368,62.186302 + 2210: -19.746784,63.51596 + 2211: -18.444702,63.89122 + 2212: -18.455118,63.818253 + 2213: -18.465534,63.20324 + 2214: -18.434284,63.130272 + 2215: -18.475952,63.69317 + 2216: -18.413452,63.31791 + 2217: -18.340534,62.900948 + 2218: -18.413452,62.244244 + 2219: -18.621784,63.130272 + 2220: -18.850952,63.390877 + 2221: -19.121784,63.734863 + 2222: -19.632202,63.453415 + 2223: -19.298868,63.463837 + 2224: -19.600952,62.963493 + 2225: -20.715534,64.34987 + 2226: -21.840534,65.371414 + 2227: -21.538452,65.32972 + 2228: -20.475952,65.35056 + 2229: -19.288452,65.15251 + 2230: -19.507202,64.593704 + 2231: -19.892618,65.63609 + 2232: -20.194702,66.2928 + 2233: -20.111368,66.0739 + 2234: -20.778034,53.550777 + 2235: -20.944702,53.154667 + 2236: -21.746784,52.435417 + 2237: -20.850952,52.341602 + 2238: -20.225952,51.821316 + 2239: -21.132202,51.33139 + 2240: -21.361368,51.86301 + 2246: -16.413448,68.041504 + 2247: -18.996784,70.282646 + 2248: -24.140543,68.22913 + 2249: -26.260176,66.69682 + 2250: -24.627611,61.506195 + 2251: -24.627611,61.495773 + 2252: -25.388027,61.41238 + 2253: -24.960943,60.572174 + 2254: -24.919277,60.572174 + 2255: -24.658861,59.75911 + 2256: -24.898443,57.60136 + 2257: -28.148443,59.456818 + 2258: -33.301167,60.520058 + 2259: -32.467834,60.499207 + 2260: -31.030334,60.499207 + 2261: -30.905334,57.632633 + 2262: -30.926168,57.57009 + 2263: -33.04075,57.976624 + 2264: -33.04075,57.976624 + 2265: -28.269918,57.319916 + 2266: -27.582418,57.340763 + 2267: -27.363668,57.340763 + 2268: -26.29075,57.267796 + 2269: -27.155334,59.38385 + 2270: -32.662434,65.65924 + 2271: -32.308266,65.35694 + 2272: -31.683268,65.53415 + 2273: -31.495768,62.73012 + 2274: -31.506186,62.73012 + 2275: -31.412436,68.752365 + 2276: -31.412436,68.1999 + 2277: -31.391602,67.980995 + 2278: -31.454102,68.58559 + 2279: -31.495768,68.06439 + 2280: -33.568684,68.62728 + 2281: -33.224934,70.23256 + 2282: -33.172848,70.49316 + 2283: -32.933266,70.566124 + 2284: -31.849936,70.5557 + 2285: -28.349936,71.30622 + 2286: -28.349936,71.26453 + 2287: -28.006186,70.76418 + 2288: -26.745768,70.670364 + 2289: -25.371166,71.69255 + 2290: -27.069082,73.92327 + 2291: -27.67325,74.53828 + 2292: -27.29825,74.444466 + 2293: -26.777416,74.09005 + 2294: -23.808666,72.46392 + 2295: -21.558666,77.37536 + 2296: -21.756582,77.25027 + 2297: -22.662832,76.98967 + 2298: -20.141998,76.97925 + 2299: -18.777416,76.39551 + 2300: -18.110748,76.53102 + 2301: -17.100332,77.96952 + 2302: -17.319082,78.15715 + 2303: -17.319082,78.386475 + 2304: -17.412832,78.90767 + 2305: -17.423248,79.449715 + 2306: -17.391998,79.89794 + 2307: -17.360748,80.4921 + 2308: -16.714914,82.55604 + 2309: -16.485748,82.4518 + 2310: -16.485748,83.59843 + 2311: -16.912832,84.171745 + 2312: -20.287832,81.92018 + 2313: -19.850332,81.60746 + 2314: -19.444082,80.5338 + 2315: -19.902416,79.75201 + 2316: -20.225332,79.50183 + 2317: -20.454498,79.12657 + 2318: -20.423248,84.43857 + 2319: -20.423248,84.43857 + 2320: -20.652416,83.542114 + 2321: -21.329498,83.833984 + 2322: -21.527416,83.9278 + 2323: -22.141998,84.43857 + 2324: -22.933666,84.313484 + 2325: -22.298248,84.125854 + 2326: -23.516998,84.15713 + 2327: -25.464916,84.17797 + 2328: -23.319082,85.93961 + 2329: -22.141998,86.08555 + 2330: -23.589916,87.44 + 2331: -24.944082,86.9605 + 2332: -25.98575,87.064735 + 2333: -26.621166,86.95007 + 2334: -27.29825,86.16828 + 2335: -26.3295,84.07629 + 2336: -25.006582,84.02416 + 2337: -26.287832,80.86572 + 2338: -24.694082,80.47566 + 2339: -26.944082,77.67205 + 2340: -26.277416,77.06746 + 2341: -19.321144,73.81426 + 2342: -19.51906,74.47097 + 2343: -18.966978,74.49182 + 2344: -18.623228,73.58494 + 2345: -19.20656,73.49113 + 2346: -19.23781,73.13671 + 2347: -15.661638,72.54255 + 2348: -15.359555,72.57382 + 2349: -14.828305,72.53213 + 2350: -28.932705,74.027054 + 2351: -33.497303,73.97493 + 2352: -36.827003,73.96451 + 2353: -39.61867,74.06875 + 2354: -41.983253,74.131294 + 2355: -37.36867,76.517654 + 2356: -36.83742,76.4968 + 2357: -36.389503,76.45511 + 2358: -36.59784,75.81925 + 2359: -36.74367,75.371025 + 2360: -36.87909,75.11043 + 2361: -37.09784,75.44399 + 2362: -37.28534,75.48569 + 2363: -37.25409,74.63093 + 2364: -34.52492,79.298546 + 2365: -34.52492,78.46463 + 2366: -34.47284,78.026825 + 2367: -34.52492,77.557755 + 2368: -34.62909,76.95316 + 2369: -34.702003,78.00598 + 2370: -34.81659,78.92329 + 2371: -35.14992,79.465324 + 2372: -35.08742,78.18319 + 2373: -35.12909,77.557755 + 2374: -35.39992,76.96359 + 2375: -35.31659,76.692566 + 2376: -35.014503,77.56818 + 2377: -35.08742,78.54803 + 2378: -39.47284,79.42363 + 2379: -39.483253,79.236 + 2380: -39.49367,77.64114 + 2381: -39.327003,77.06783 + 2382: -39.139503,76.75511 + 2383: -39.08742,78.16234 + 2384: -38.77492,79.35066 + 2385: -38.733253,77.91216 + 2386: -38.889503,77.04698 + 2387: -39.420753,76.53621 + 2436: -38.639503,96.39214 + 2437: -37.36867,98.53947 + 2438: -37.37909,98.5082 + 2439: -37.30617,97.90361 + 2440: -36.108253,95.078735 + 2441: -36.014503,93.84871 + 2442: -39.55617,93.38497 + 2443: -40.12909,93.87489 + 2444: -38.577003,91.63831 + 2445: -38.22284,90.34574 + 2446: -38.295753,89.34505 + 2447: -35.43117,85.30189 + 2448: -35.545753,83.29655 + 2449: -35.91034,82.715805 + 2450: -38.11867,85.012634 + 2451: -35.09784,76.63375 + 2452: -36.014503,76.779686 + 2453: -38.58742,77.22663 + 2454: -37.41034,78.46707 + 2455: -36.08742,77.455956 + 2456: -36.83742,78.90137 + 2457: -36.32421,83.85008 + 2458: -37.119507,88.82083 + 2459: -37.077785,91.963425 + 2460: -37.046505,95.954445 + 2461: -37.379837,98.47703 + 2462: -36.296505,92.775154 + 2463: -39.379837,92.89642 + 2464: -39.640255,94.1592 + 2465: -36.546505,90.75783 + 2466: -36.556923,87.11225 + 2467: -36.577755,85.23121 + 2468: -37.286087,82.41265 + 2469: -36.598587,79.807274 + 2470: -42.533913,73.549515 + 2471: -43.88808,71.65237 + 2472: -42.91933,69.64056 + 2473: -42.91933,69.58843 + 2474: -44.711,68.7024 + 2475: -44.721413,68.7024 + 2476: -48.383827,67.28951 + 2477: -48.48799,66.41391 + 2478: -47.540077,66.51815 + 2479: -47.55049,67.216545 + 2480: -47.727577,66.4973 + 2481: -48.46716,66.945526 + 2482: -48.508827,66.59111 + 2483: -47.508827,66.76832 + 2484: -47.36299,70.8128 + 2485: -47.95674,70.61474 + 2486: -47.34216,70.62517 + 2487: -47.59216,70.677284 + 2488: -46.05049,74.22105 + 2489: -46.36299,73.39756 + 2490: -47.821327,72.14669 + 2491: -48.86299,74.36698 + 2492: -46.93591,74.90903 + 2493: -44.321327,76.722786 + 2494: -43.99841,74.86733 + 2495: -42.89424,76.58727 + 2496: -45.196327,77.483734 + 2497: -45.196327,77.42119 + 2498: -45.09216,77.26483 + 2499: -45.08174,77.24398 + 2500: -50.48799,71.60465 + 2501: -50.49841,71.50041 + 2502: -51.321327,70.280815 + 2503: -52.20674,69.196724 + 2504: -52.88599,74.34041 + 2505: -53.427658,72.7247 + 2506: -53.91724,74.45507 + 2507: -53.458908,72.66216 + 2508: -53.458908,72.66216 + 2509: -54.021408,74.32999 + 2510: -50.94849,72.91233 + 2511: -50.94849,76.602394 + 2512: -50.396408,77.102745 + 2513: -47.438076,76.20629 + 2514: -46.063076,80.13908 + 2515: -47.896408,79.81594 + 2516: -46.375576,78.52338 + 2517: -39.386536,70.74174 + 2518: -39.417786,70.710464 + 2519: -40.428204,70.6375 + 2520: -40.740704,70.627075 + 2521: -41.219868,69.34493 + 2522: -41.219868,69.30324 + 2523: -41.334454,68.90713 + 2524: -40.261536,68.56314 + 2525: -40.605286,68.57356 + 2526: -40.344868,68.62569 + 2527: -39.646954,69.04264 + 2528: -39.386536,69.12603 + 2529: -39.303204,69.21985 + 2530: -39.094868,69.49087 + 2531: -39.011536,69.50129 + 2532: -38.636536,70.38732 + 2533: -37.323254,71.01372 + 2534: -36.36492,69.88811 + 2535: -37.167004,68.10585 + 2536: -37.08367,67.669586 + 2537: -37.05242,63.64869 + 2538: -36.854504,61.81581 + 2539: -36.87534,60.460175 + 2540: -36.87534,58.584904 + 2541: -36.21909,56.17809 + 2542: -36.28159,55.268696 + 2543: -37.80242,55.47835 + 2544: -38.260754,55.029255 + 2545: -37.31284,53.437935 + 2546: -36.604504,51.572056 + 2547: -35.98992,49.914654 + 2548: -36.31284,49.456 + 2549: -39.156734,50.800686 + 2550: -42.946945,51.07171 + 2551: -45.99469,51.228065 + 2552: -47.207397,53.792347 + 2553: -48.97823,53.781925 + 2554: -51.34281,53.87574 + 2555: -52.04073,51.80138 + 2556: -50.71781,51.822227 + 2557: -49.519897,51.58248 + 2558: -47.29073,51.509514 + 2559: -47.75948,51.55121 + 2560: -49.582397,51.676296 + 2561: -52.082527,49.945217 + 2562: -50.34294,49.851402 + 2563: -48.43669,49.611652 + 2564: -47.801277,49.622074 + 2565: -54.49621,54.14605 + 2566: -54.319126,53.885452 + 2567: -54.33996,51.20651 + 2568: -52.93371,46.13254 + 2569: -52.43371,43.482754 + 2570: -52.506626,42.793663 + 2571: -52.517044,41.12463 + 2572: -52.83996,37.75766 + 2573: -48.207672,47.314137 + 2574: -47.916008,47.522614 + 2575: -46.728508,46.115387 + 2576: -44.025024,44.877365 + 2577: -42.816402,45.9823 + 2578: -40.80599,44.91906 + 2579: -38.82682,45.627884 + 2580: -37.549496,43.991333 + 2581: -38.518246,48.631657 + 2582: -38.549496,48.548267 + 2583: -38.736996,48.33979 + 2584: -42.403664,48.548267 + 2585: -33.49661,41.621567 + 2586: -28.23743,41.559734 + 2587: -22.518679,41.38253 + 2588: -22.299929,41.247017 + 2589: -21.560347,40.819637 + 2590: -21.518679,40.100388 + 2591: -21.435347,39.474953 + 2592: -21.820763,38.76613 + 2593: -22.029097,38.891216 + 2594: -21.664513,40.538193 + 2595: -21.789513,39.954453 + 2596: -22.081179,39.422836 + 2597: -22.591597,41.121933 + 2598: -22.008263,40.538193 + 2599: -21.716597,40.21505 + 2600: -20.243317,33.497765 + 2601: -19.95165,33.497765 + 2602: -19.941235,33.497765 + 2603: -19.63915,33.518612 + 2604: -19.378735,33.476917 + 2605: -19.0454,33.43522 + 2606: -18.712067,33.41437 + 2607: -18.26415,33.393524 + 2608: -17.930817,33.372677 + 2609: -17.4204,33.36225 + 2610: -16.899567,33.383102 + 2611: -16.555817,33.508186 + 2612: -16.95165,33.45607 + 2613: -17.659985,33.508186 + 2614: -18.597485,33.581154 + 2615: -20.462067,33.529034 + 2631: -15.981277,40.66405 + 2632: -17.554195,42.008736 + 2633: -16.720861,42.57163 + 2634: -14.5854435,42.112976 + 2635: -15.481277,44.2603 + 2636: -17.700027,46.00109 + 2637: -13.4396105,41.91492 + 2638: -15.543777,39.090042 + 2639: -18.502111,34.983025 + 2640: -20.189611,40.06989 + 2641: -10.44136,38.370792 + 2642: -9.06636,39.64251 + 2643: -8.53511,38.454185 + 2644: -7.743444,37.891293 + 2645: -17.332579,36.504913 + 2646: -17.790913,35.61888 + 2647: -18.040913,35.629307 + 2648: -16.936747,38.652237 + 2649: -15.582578,38.766903 + 2650: -7.592995,38.39164 + 2651: -13.478412,37.53688 + 2652: -13.499245,37.53688 + 2653: -17.436747,43.572323 + 2654: -17.436747,43.572323 + 2655: -16.415913,43.54105 + 2656: -15.582578,46.511864 + 2657: -14.415912,46.44932 + 2658: -12.280495,46.10533 + 2659: -12.822162,46.459743 + 2660: -12.707578,46.34508 + 2661: -16.124245,46.501442 + 2662: -16.634663,46.501442 + 2663: -13.217995,46.57441 + 2664: -14.176328,46.595253 + 2665: -17.280497,46.6578 + 2666: -17.884663,46.6578 + 2667: -18.342997,46.66822 + 2668: -19.124247,46.751614 + 2669: -19.259663,47.158146 + 2670: -19.103413,47.231113 + 2671: -18.124247,47.18942 + 2672: -16.353413,47.06433 + 2673: -18.988829,46.28254 + 2674: -18.905497,46.511864 + 2675: -18.634663,46.887123 + 2676: -17.374247,46.855854 + 2677: -16.197163,46.84543 + 2678: -17.332579,46.543137 + 2679: -15.988828,46.48059 + 2680: -14.249245,46.28254 + 2681: -12.967995,46.219994 + 2682: -18.124247,46.12618 + 2683: -18.738829,45.876007 + 2684: -19.124247,45.177605 + 2685: -19.311747,44.729378 + 2686: -19.790913,42.655018 + 2687: -19.842997,41.518814 + 2688: -19.853413,40.799564 + 2689: -19.905497,40.58066 + 2690: -19.426329,40.4243 + 2691: -19.842997,40.18455 + 2692: -14.189258,36.44854 + 2693: -14.199674,36.052433 + 2694: -13.783008,36.333878 + 2695: -13.908008,36.042007 + 2696: -14.335091,35.791836 + 2697: -14.418424,35.48954 + 2698: -13.314258,29.843378 + 2699: -12.303841,25.027534 + 2700: -12.970508,23.380556 + 2701: -30.284952,37.366932 + 2702: -30.337034,37.293964 + 2703: -30.472452,36.699802 + 2704: -30.420368,35.772076 + 2705: -33.57662,38.21127 + 2706: -33.53495,37.929825 + 2707: -33.524532,37.888126 + 2708: -33.51412,38.117455 + 2709: -33.47245,38.430172 + 2710: -30.472452,33.051437 + 2711: -30.514118,32.87423 + 2712: -30.545368,32.717873 + 2713: -30.613153,27.69818 + 2714: -30.59232,27.708603 + 2715: -30.644403,27.520973 + 2716: -30.540237,27.333344 + 2717: -30.43607,27.135288 + 2718: -33.477734,21.524982 + 2719: -33.49857,21.514559 + 2720: -33.602734,21.556253 + 2721: -34.133984,21.54583 + 2722: -33.74857,21.462439 + 2723: -33.5194,21.514559 + 2724: -35.34712,21.685957 + 2725: -35.3992,21.50875 + 2726: -35.12837,21.529598 + 2727: -34.701286,21.487904 + 2728: -34.545036,21.404512 + 2729: -34.99295,21.123066 + 2730: -34.53462,20.43509 + 2731: -35.3367,17.88426 + 2732: -33.6492,17.86341 + 2733: -32.0867,17.686205 + 2734: -24.569992,17.498573 + 2735: -24.569992,17.498573 + 2736: -25.465826,21.49426 + 2737: -25.465826,21.49426 + 2738: -24.819992,21.567228 + 2739: -24.007492,21.546381 + 2740: -22.525463,23.750225 + 2741: -22.525463,24.094213 + 2742: -22.546297,24.35481 + 2743: -23.556713,24.27142 + 2744: -23.50463,23.823193 + 2745: -23.358797,23.510475 + 2746: -21.608797,24.365234 + 2747: -21.619213,23.87531 + 2748: -21.53588,23.354116 + 2749: -19.794304,20.40415 + 2750: -19.025888,20.497965 + 2751: -18.067554,20.466694 + 2752: -15.9738035,20.466694 + 2753: -18.255054,23.510475 + 2754: -17.67172,23.468779 + 2755: -17.942554,24.198452 + 2756: -18.335697,21.727987 + 2757: -9.85653,22.280455 + 2758: -13.627363,23.09352 + 2759: -13.252363,23.114367 + 2760: -14.908613,21.915617 + 2761: -12.658613,22.655714 + 2762: -12.033613,22.061552 + 2763: -11.179446,21.696714 + 2764: -12.471113,22.5619 + 2765: -13.82528,24.32354 + 2766: -13.273197,28.847515 + 2767: -13.304447,28.086569 + 2768: -13.189863,26.595951 + 2769: -12.991947,25.053213 + 2770: -15.189863,21.519508 + 2771: -16.700281,21.613325 + 2772: -10.264914,20.841953 + 2773: -5.076751,20.685596 + 2774: -7.1288347,23.645985 + 2775: -9.316335,23.625137 + 2776: -7.295501,23.520899 + 2777: -4.81146,22.999704 + 2778: -6.5822935,23.051823 + 2779: -2.4572933,24.532017 + 2780: -2.0822933,24.448626 + 2781: -0.8010431,24.417355 + 2782: -0.49895984,23.969126 + 2783: -1.2281265,23.09352 + 2784: -2.5718765,22.864193 + 2785: -0.62395984,21.1234 + 2786: -0.4449033,21.269335 + 2787: 4.959138,22.780802 + 2788: 4.5424714,21.727987 + 2789: 3.7299714,20.852379 + 2790: 6.6377254,24.062943 + 2791: 5.6108203,20.060162 + 2792: 7.4842143,16.547249 + 2793: 7.619632,15.91139 + 2794: 7.4946313,12.362568 + 2795: 7.577965,-8.661011 + 2796: 7.4946313,-6.1619706 + 2797: 7.348798,-4.3769665 + 2798: 6.8592143,-1.908556 + 2799: 6.7967143,0.5239835 + 2800: 6.192548,2.4129975 + 2801: 6.1821313,0.83694434 + 2802: 6.1717143,-1.2616551 + 2803: 6.1717143,-4.521998 + 2804: 6.1717143,-5.8270054 + 2805: 6.192548,-8.715143 + 2806: 6.2133813,-11.58789 + 2807: 7.0154643,-9.970169 + 2808: 7.0154643,-7.2633624 + 2809: 7.0258813,-4.6318364 + 2810: 6.7446313,-1.5693882 + 2811: 6.130048,0.81458163 + 2812: 2.377322,2.035251 + 2813: 0.34117383,1.983499 + 2814: -2.803865,1.920995 + 2815: 4.3894205,11.271226 + 2816: 4.3894205,11.761149 + 2817: 4.493587,13.564485 + 2818: 4.5144205,13.460246 + 2819: 4.5665035,12.782692 + 2820: 4.524837,11.886236 + 2821: -10.626441,3.5627813 + 2822: -10.188941,3.5210853 + 2823: -9.282691,3.3647263 + 2824: -8.605607,19.740305 + 2825: -8.751441,19.667337 + 2826: -9.647274,19.69861 + 2827: -10.428524,19.604795 + 2828: -8.793107,19.709034 + 2931: -21.987375,3.5895429 + 2932: -21.591543,3.5478468 + 2933: -21.44571,3.4436076 + 2934: -21.612375,3.8709874 + 2935: -21.560293,11.035428 + 2936: -21.53946,11.577472 + 2937: -22.07071,11.567048 + 2938: -23.841543,10.806103 + 2939: -24.456125,11.629591 + 2940: -24.206125,12.140363 + 2941: -21.75821,18.309427 + 2942: -23.122793,16.860504 + 2943: -22.310293,14.3477125 + 2944: -22.810293,10.743245 + 2945: -22.529043,14.265988 + 2946: -23.049875,8.369986 + 2947: -22.654043,4.498516 + 2948: -23.935293,8.970056 + 2949: -24.831125,8.938784 + 2950: -26.018625,8.98048 + 2951: -25.518625,12.065724 + 2952: -25.82071,11.91979 + 2953: -28.279043,10.898247 + 2954: -28.13321,10.147726 + 2955: -27.25821,7.781499 + 2956: -28.622793,5.5221157 + 2957: -26.53946,6.3768764 + 2958: -28.47696,6.8668003 + 2959: -26.239887,15.587893 + 2960: -26.271137,15.379413 + 2961: -26.177387,15.785946 + 2962: -26.177387,15.723404 + 2963: -26.187803,15.525349 + 2964: -26.521137,15.335574 + 2965: -28.286758,3.0192616 + 2966: -26.536758,2.5084898 + 2967: -27.596325,1.3722842 + 2968: -32.91358,1.3931315 + 2969: -35.843235,1.341012 + 2970: -42.94379,8.537208 + 2971: -42.620876,8.453816 + 2972: -42.11046,8.27661 + 2973: -39.839626,4.388493 + 2974: -43.01671,6.963198 + 2975: -41.92296,4.9409604 + 2976: -38.50629,8.558055 + 2977: -37.88129,8.443393 + 2978: -38.058376,8.547631 + 2979: -38.527126,8.599751 + 2980: -38.75629,8.537208 + 2981: -38.48546,8.401696 + 2982: -38.04796,8.474664 + 2983: -37.54796,8.495512 + 2984: -37.527126,8.172371 + 2985: -37.495876,7.963892 + 2986: -37.26671,6.254372 + 2987: -36.85004,6.410731 + 2988: -36.53754,6.692176 + 2989: -36.69379,5.149438 + 2990: -36.808376,4.690786 + 2991: -36.76671,4.3780694 + 2992: -36.76671,4.0966234 + 2993: -36.527126,3.6275477 + 2994: -35.47504,2.9256542 + 2995: -35.558376,3.2383716 + 2996: -36.183376,3.2383716 + 2997: -36.51671,2.9986217 + 2998: -35.995876,-0.5778641 + 2999: -40.47504,-0.9843964 + 3000: -40.45421,-1.4638963 + 3001: -40.44379,-1.9642434 + 3002: -37.75179,-5.2990575 + 3003: -37.56429,-4.8612533 + 3004: -36.585125,-3.3914826 + 3181: -48.27621,-4.0158615 + 3182: -50.334366,-4.0158615 + 3183: -59.03737,-2.7754164 + 3184: -61.68545,-2.7649925 + 3185: -64.4904,-2.7649925 + 3186: -68.51817,-2.7024488 + 3187: -71.56062,-3.2653399 + 3188: -71.74853,-4.026285 + 3189: -71.34228,-3.8282309 + 3190: -72.08186,-4.4640894 + 3191: -72.1027,-1.6430955 + 3192: -73.05061,-0.67367285 + 3193: -73.6027,5.4136753 + 3194: -72.67561,5.4866424 + 3195: -72.73811,4.8299365 + 3196: -72.7277,3.808394 + 3197: -72.25895,1.1294498 + 3198: -71.2902,1.7131882 + 3199: -71.39436,1.2232647 + 3200: -71.44645,0.19129807 + 3201: -74.61311,-0.4341361 + 3202: -74.61311,-0.4341361 + 3203: -74.52978,-5.515501 + 3204: -74.52978,-5.369566 + 3205: -74.55061,-4.9734583 + 3206: -70.44645,-4.5981975 + 3207: -69.64436,-4.566926 + 3208: -69.55061,-4.566926 + 3209: -68.59228,-4.6398926 + 3210: -60.43736,-1.7662196 + 3211: -51.73944,-1.8183391 + 3212: -55.165905,-1.4847744 + 3213: -55.165905,-1.4847744 + 3214: -60.758797,-1.349263 + 3215: -70.144135,-1.4013824 + 3216: -71.51818,-1.4013824 + 3217: -53.646587,-2.078937 + 3218: -48.544907,-3.0692077 + 3219: -49.72908,-2.8815773 + 3220: -47.624916,-3.5904033 + 3221: -49.664513,-5.5635138 + 3222: -51.737427,-5.4175787 + 3223: -51.990097,-6.5061088 + 3224: -51.885933,-6.8605213 + 3225: -49.729683,-6.996032 + 3226: -49.948433,-7.652738 + 3227: -42.268738,-5.683358 + 3228: -42.268738,-5.5582714 + 3229: -42.258324,-5.2664022 + 3230: -41.267006,-3.0040543 + 3231: -73.448906,-7.014419 + 3232: -72.95932,-9.036657 + 3233: -73.667656,-12.382731 + 3234: -73.74057,-13.308479 + 3235: -73.33432,-17.352732 + 3236: -73.969734,-20.87785 + 3237: -73.511406,-20.522848 + 3238: -73.605156,-22.201097 + 3239: -74.20932,-26.09964 + 3240: -74.261406,-25.630564 + 3241: -74.094734,-25.286573 + 3242: -73.730156,-25.328268 + 3243: -73.573906,-25.640987 + 3244: -75.42807,-25.5159 + 3245: -75.532234,-25.432508 + 3246: -71.594734,-25.390814 + 3247: -71.594734,-24.327574 + 3248: -71.407234,-17.425032 + 3249: -71.448906,-16.549425 + 3250: -71.58432,-16.601543 + 3251: -71.563484,-15.92399 + 3252: -71.313484,-15.621696 + 3253: -71.563484,-17.039347 + 3254: -71.250984,-17.435455 + 3255: -75.355156,-18.415302 + 3256: -68.39647,-17.334116 + 3257: -68.58397,-17.34454 + 3258: -69.39647,-17.240301 + 3259: -69.292305,-15.687139 + 3260: -68.511055,-15.562053 + 3261: -69.073555,-16.521051 + 3262: -69.90688,-17.354963 + 3263: -69.64647,-17.198605 + 3264: -69.49022,-16.906736 + 3265: -68.84438,-16.458508 + 3266: -64.40282,-15.27514 + 3267: -64.52782,-14.879032 + 3268: -64.31947,-14.753945 + 3269: -64.03822,-14.211902 + 3270: -63.30906,-14.243174 + 3271: -62.725727,-14.243174 + 3272: -64.93617,-9.943493 + 3273: -64.86326,-8.515418 + 3274: -62.311172,-8.181852 + 3275: -60.738255,-6.2414756 + 3276: -66.67576,-7.6591268 + 3277: -78.11984,-10.566341 + 3278: -75.49484,-10.6381 + 3279: -76.54693,-11.555404 + 3280: -76.505264,-11.419892 + 3281: -78.33859,-16.542261 + 3282: -79.005264,-16.469296 + 3283: -79.224014,-16.907099 + 3284: -77.95318,-22.459986 + 3285: -77.42193,-22.585073 + 3286: -80.768814,-22.571266 + 3287: -81.41464,-22.592115 + 3288: -78.24798,-25.531656 + 3289: 14.609969,24.518326 + 3290: 15.193303,24.518326 + 3291: 15.787052,24.56002 + 3292: 18.859968,24.52875 + 3293: 19.505802,24.507902 + 3294: 19.505802,24.466206 + 3295: 19.453718,24.236881 + 3296: 19.318302,23.872044 + 3297: 14.276636,22.349371 + 3298: 10.276636,22.193012 + 3299: 20.401636,21.703087 + 3300: 6.1423473,24.393612 + 3301: 6.121514,28.228384 + 3302: 12.518362,41.221333 + 3303: 11.366679,45.31279 + 3304: 10.909221,49.593803 + 3305: 12.733825,31.305782 + 3306: 13.171325,30.534414 + 3307: 13.265075,29.66923 + 3308: 23.108824,28.772774 + 3309: 23.317158,30.263393 + 3310: 23.077574,33.45311 + 3311: 24.754658,37.08071 + 3312: 23.025492,36.97647 + 3313: 22.817158,37.21622 + 3314: 24.192158,35.068897 + 3315: 23.827574,34.99593 + 3316: 24.413504,34.631092 + 3317: 24.601004,35.52755 + 3318: 19.621838,31.92088 + 3319: 15.569754,31.92088 + 3320: 15.371839,32.00427 + 3321: 18.048922,31.86876 + 3322: 20.153088,31.806213 + 3323: 21.198574,31.86876 + 3324: 20.39649,31.962574 + 3325: 18.86524,31.941727 + 3326: 16.156906,30.80552 + 3327: 15.261074,30.659586 + 3328: 15.240241,30.70128 + 3329: 16.281906,32.733944 + 3330: 17.438156,32.744366 + 3331: 18.80274,32.77564 + 3332: 19.67774,32.817333 + 3333: 19.20899,32.65055 + 3334: 19.20899,32.65055 + 3335: 15.656906,33.515736 + 3336: 16.24024,33.536583 + 3337: 18.229824,33.432343 + 3338: 18.80274,33.453194 + 3339: 19.136074,33.453194 + 3340: 19.625656,33.47404 + 3341: 19.011074,33.453194 + 3342: 18.531906,33.47404 + 3343: 17.386074,33.47404 + 3344: -2.4195707,30.419691 + 3345: -2.4195707,30.419691 + 3346: -1.4820707,30.35715 + 3347: -1.4820707,30.471811 + 3348: -1.315404,31.10767 + 3349: -0.92998743,31.785225 + 3350: -0.52373743,32.879734 + 3351: -0.52373743,32.89016 + 3352: -0.52373743,33.34881 + 3353: -0.46123743,35.376137 + 3354: -0.57582074,35.188507 + 3355: -0.64873743,34.792397 + 3356: 0.63251257,34.573494 + 3357: 0.59084594,34.656887 + 3358: -4.586238,36.522766 + 3359: -5.3779044,36.491493 + 3360: -4.6591544,36.460224 + 3361: -4.5445714,36.31429 + 3362: -4.5966544,35.9703 + 3363: -5.4520974,34.629406 + 3364: -5.4416814,34.076942 + 3365: -5.4625144,30.3973 + 3366: -5.0354314,30.574509 + 3367: -4.7541814,30.772562 + 3368: -3.3270974,33.732952 + 3369: -3.4833474,33.19091 + 3370: -3.4937642,33.17006 + 3371: -4.618441,23.525824 + 3372: -5.1601076,23.46328 + 3373: -4.743441,23.536247 + 3374: -4.4830236,23.46328 + 3375: -9.555941,23.5154 + 3376: -10.108024,23.536247 + 3377: -10.483024,23.557095 + 3378: -10.024691,23.567518 + 3379: -6.9413576,24.432703 + 3380: -6.5663576,24.484823 + 3381: -6.024691,24.432703 + 3382: -5.712191,24.391008 + 3383: -10.45324,25.402126 + 3384: -10.401156,24.432703 + 3385: -10.35949,24.297192 + 3386: -10.29699,24.13041 + 3387: -2.9324067,25.579332 + 3388: -3.4428234,25.68357 + 3389: -3.4532402,26.31943 + 3390: -0.5157402,25.422974 + 3391: 0.18217677,25.714844 + 3392: 0.35925978,26.64257 + 3393: 0.39050978,27.539028 + 3394: -6.5157404,31.744125 + 3395: -6.692824,31.066574 + 3396: -6.817824,30.920637 + 3397: -7.130324,30.722584 + 3398: -7.974074,30.566225 + 3399: -7.911574,30.618343 + 3400: -7.338657,30.816399 + 3401: -7.786574,36.2681 + 3402: -8.713656,36.070045 + 3403: -8.401157,35.77818 + 3404: -8.39074,35.72606 + 3405: -8.411573,35.5697 + 3406: -11.621528,29.46129 + 3407: -26.446615,47.546844 + 3408: -26.050783,47.432182 + 3409: -25.957033,47.369637 + 3410: -25.946615,47.150738 + 3411: -25.6237,44.534336 + 3412: -26.113283,44.534336 + 3413: -26.165365,43.460674 + 3414: -26.321615,43.24177 + 3415: -26.582033,43.095837 + 3416: -28.446615,43.523216 + 3417: -28.540365,43.596184 + 3418: -29.050783,43.919327 + 3419: -29.352865,44.315434 + 3420: -29.4362,44.450943 + 3421: -29.4362,44.25289 + 3422: -29.457033,43.731697 + 3423: -26.571615,42.866512 + 3424: -24.946615,42.76227 + 3425: -22.957033,42.84566 + 3426: -21.957033,42.981174 + 3427: -21.769533,45.10765 + 3428: -22.5612,43.710846 + 3429: -20.977865,45.649693 + 3430: -20.707033,46.410637 + 3431: -20.707033,47.03607 + 3432: -20.634115,47.380062 + 3433: -20.634115,47.380062 + 3434: -20.613283,47.16116 + 3435: -20.602865,46.097923 + 3436: -25.196615,43.85678 + 3484: 26.83576,-23.362684 + 4634: 8.47333,-22.751648 + 4635: 8.421247,-23.2103 + 5516: 59.53473,25.488937 + 5517: 59.52431,25.44724 + 5518: 59.52431,25.44724 + 5519: 58.69098,24.415274 + 5520: 58.68056,24.40485 + 5521: 58.68056,24.40485 + 5522: 58.55556,22.611938 + 5523: 58.55556,22.611938 + 5524: 58.55556,22.611938 + 5529: 57.25348,21.454885 + 5530: 57.326397,21.46531 + 5531: 57.638897,21.475733 + 5532: 60.512985,22.434732 + 5533: 60.512985,22.434732 + 5541: 61.356735,25.467678 + 5542: 61.367153,25.467678 + 5543: 57.47132,24.956907 + 5544: 57.47132,24.956907 + 5713: 43.975986,24.032072 + 5714: 42.58015,23.729778 + 5715: 44.46557,22.478909 + 5716: 44.007236,22.791626 + 5717: 42.600986,23.323246 + 5718: 43.819736,22.833323 + 5719: 44.33015,22.583149 + 5725: 39.234314,24.480299 + 5726: 39.775978,24.449028 + 5727: 39.786396,24.438604 + 5728: 39.900978,23.917408 + 5729: 40.505146,23.698507 + 5806: -5.481607,-20.65537 + 5807: -5.481607,-20.65537 + 5808: -26.528284,-26.50296 + 5809: -26.694952,-26.450842 + 5810: -27.587608,-23.593887 + 5811: -27.504276,-23.771093 + 5812: -27.545942,-24.24017 + 5813: -27.139692,-28.388151 + 5814: -27.327192,-28.377728 + 5815: -27.295942,-28.78426 + 5816: -27.316776,-29.096977 + 5817: -27.420942,-29.524357 + 5818: -27.525108,-30.399965 + 5819: -24.641787,-30.410389 + 5820: -24.66262,-30.379118 + 5821: -24.798037,-29.96216 + 5822: -24.954287,-29.732836 + 5823: -25.35012,-29.732836 + 5824: -25.245953,-30.045551 + 5825: -25.16262,-30.295727 + 5826: -24.402203,-22.992306 + 5827: -24.558453,-20.396753 + 5828: -24.589703,-20.448874 + 5829: -24.704287,-20.511417 + 5830: -26.527203,-20.584383 + 5831: -26.527203,-20.584383 + 6167: 15.988205,-19.558126 + 6168: 15.988205,-19.558126 + 6169: 16.477789,-19.599823 + 6170: 16.477789,-19.599823 + 6171: 18.587757,-22.10156 + 6172: 18.598173,-22.299614 + 6173: 18.629423,-22.445549 + 6174: 19.035673,-22.508093 + 6175: 18.994007,-22.49767 + 6176: 10.486501,-19.902117 + 6177: 12.580251,-20.193985 + 6178: 6.156113,-20.600517 + 6179: 5.44778,-20.569246 + 6180: 5.312363,-20.57967 + 6181: 9.395698,-19.34717 + 6182: 9.301948,-19.388865 + 6183: 8.791531,-19.461832 + 6184: 5.9894466,-17.210268 + 6185: 5.44778,-17.304085 + 6211: -85.59067,-35.482452 + 6212: -85.59067,-35.482452 + 6213: -85.69483,-37.723595 + 6214: -85.52817,-38.015465 + 6215: -85.517746,-38.41157 + 6216: -85.43442,-41.18433 + 6217: -85.34067,-41.382385 + 6218: -82.59067,-38.369877 + 6219: -82.56983,-37.786137 + 6220: -78.66358,-37.47342 + 6221: -78.52817,-37.4213 + 6222: -78.38233,-36.900105 + 6223: -78.548996,-33.65827 + 6224: -78.142746,-33.533184 + 6225: -81.28858,-33.43937 + 6226: -80.56983,-33.491486 + 6227: -80.50733,-32.78266 + 6228: -81.53858,-31.261269 + 6229: -81.49692,-31.58441 + 6230: -82.43442,-32.522564 + 6231: -84.49692,-33.53368 + 6232: -84.68442,-33.53368 + 6233: -85.298996,-34.59692 + 6234: -75.49842,-30.468445 + 6235: -75.49842,-30.468445 + 6236: -75.5505,-30.895824 + 6237: -73.46717,-30.447598 + 6238: -73.46717,-30.447598 + 6239: -80.602585,-29.676228 + 6240: -80.602585,-29.488598 + 6241: -80.62342,-29.446901 + 6242: -80.45675,-29.770042 + 6243: -80.508835,-30.103607 + 6244: -80.49842,-29.957672 + 6245: -80.89425,-29.467749 + 6246: -85.22755,-29.728348 + 6247: -85.23796,-29.728348 + 6248: -85.47755,-30.061913 + 6249: -85.42546,-29.79089 + 6250: -85.30046,-29.55114 + 6251: -85.217125,-29.707499 + 6252: -85.30046,-29.811739 + 6253: -84.560875,-29.749195 + 6254: -84.5088,-29.665804 + 6255: -84.10255,-29.634533 + 6256: -83.99151,-37.486996 + 6257: -83.92901,-39.519657 + 6258: -83.55401,-39.56135 + 6259: -83.449844,-40.072124 + 6540: -24.43257,92.50984 + 6541: -24.55757,92.145004 + 6542: -22.849236,92.50984 + 6543: -22.37007,91.06091 + 6544: -22.37007,91.06091 + 6545: -22.37007,91.01922 + 6546: -22.359653,90.894135 + 6547: -22.359653,90.86286 + 6548: -22.359653,90.84201 + 6549: -22.33882,90.71693 + 6550: -22.68257,92.65578 + 6551: -22.71382,92.94764 + 6552: -22.755486,93.12485 + 6553: -22.80757,93.26036 + 6554: -24.49507,91.081764 + 6555: -24.536736,90.88371 + 6556: -24.547153,90.73778 + 6557: -24.578403,90.66481 + 6558: -24.922153,90.508446 + 6559: -25.453403,89.99768 + 6560: -25.547153,89.69538 + 6561: -25.62007,89.38267 + 6680: 40.615875,-11.57723 + 6681: 40.615875,-11.57723 + 6682: 41.56379,-11.608502 + 6683: 41.56379,-12.473687 + 6684: 41.56379,-12.473687 + 6685: 41.542957,-12.473687 + 6686: 42.324207,-12.45284 + 6687: 42.511707,-12.536231 + 6688: 42.553375,-12.557078 + 6689: 42.56379,-12.557078 + 6690: 42.511707,-11.858677 + 6691: 42.615875,-11.733589 + 6692: 44.50129,-11.629351 + 6693: 44.50129,-11.608502 + 6694: 45.240875,-11.650198 + 6695: 45.18879,-10.451448 + 6696: 45.03254,-10.451448 + 6697: 44.584625,-10.472297 + 6698: 44.105457,-10.472297 + 6699: 43.855457,-10.472297 + 6700: 43.542957,-10.472297 + 6701: 43.199207,-10.493145 + 6702: 42.792957,-10.524416 + 6703: 42.053375,-10.545264 + 6704: 40.397125,-8.523026 + 6705: 40.93879,-8.523026 + 6706: 41.303375,-8.502178 + 6707: 41.605457,-8.48133 + 6708: 42.417957,-8.450058 + 6709: 43.042957,-8.439634 + 6710: 43.37629,-8.418787 + 6711: 44.43879,-7.636994 + 6712: 44.042957,-7.584874 + 6713: 43.542957,-7.5640264 + 6714: 43.28254,-7.449363 + 6715: 40.68879,-7.491059 + 6716: 40.68879,-7.57445 + 6717: 40.615875,-7.7933526 + 6718: 40.511707,-8.126917 + 6719: 40.31379,-8.512602 + 6720: 39.34504,-10.5661125 + 6721: 39.334625,-10.545264 + 6722: 38.772125,-10.524416 + 6723: 36.511707,-9.502873 + 6724: 36.490875,-9.586265 + 6725: 36.542957,-10.284666 + 6726: 35.959625,-10.430601 + 6727: 35.47004,-9.554993 + 6728: 35.428375,-9.554993 + 6729: 34.93879,-9.544569 + 6730: 35.522175,-7.552371 + 6731: 35.615925,-7.740001 + 6732: 36.188843,-8.167381 + 6733: 36.553425,-8.45925 + 6734: 34.47575,-10.601477 + 6735: 33.72575,-10.580629 + 6736: 33.642418,-10.570205 + 6737: 33.527832,-11.258183 + 6738: 33.486168,-11.497932 + 6760: 36.44325,-21.45165 + 6761: 35.703667,-21.555891 + 6762: 35.662,-21.545465 + 6763: 35.609917,-21.535042 + 6764: 35.453667,-21.535042 + 6765: 35.547417,-20.534348 + 6779: 33.374958,-20.563297 + 6780: 33.395794,-20.876015 + 6781: 33.489544,-21.68908 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 1338: -16,0 - 1339: 5,-5 - 1340: 5,-5 - 1341: 4.3885875,-2.0088086 - 1342: 4.3885875,-2.0088086 - 1343: 8.576088,-4.3854594 - 1344: 8.565671,-4.3854594 - 1345: 5.5240045,-14.499866 - 1346: 13.500205,-9.502485 - 1347: 12.468955,-14.062756 - 1348: 12.479371,-13.979364 - 1349: 12.093955,-17.110626 - 1350: 12.083538,-17.110626 - 1366: 9.447098,-22.979105 - 1367: 16.2266,-23.63581 - 1368: 15.987017,-23.479454 - 1369: 16.559935,-23.990223 - 1370: 14.496352,-10.973691 - 1371: 13.923435,-11.45319 - 1372: 13.923435,-11.45319 - 1373: 11.017185,-12.379897 - 1374: 11.402602,-12.473712 - 1404: 26.742252,-18.546526 - 1405: 26.742252,-18.546526 - 1406: 26.731836,-18.546526 - 1407: 26.81517,-17.587526 - 1408: 26.81517,-17.587526 - 1409: 26.81517,-17.587526 - 1410: 31.211004,-17.837702 - 1411: 30.711004,-18.014908 - 1429: 31.498821,-11.74064 - 1430: 31.530071,-11.98039 - 1431: 32.44674,-12.042933 - 1432: 30.071955,-13.0749 - 1433: 30.071955,-13.0749 - 1434: 30.071955,-13.0749 - 1435: 30.55112,-13.596095 - 1436: 30.499037,-13.439736 - 1437: 30.499037,-13.439736 - 1438: 30.499037,-13.439736 - 1462: 15.48953,-10.572009 - 1463: 15.48953,-10.572009 - 1464: 16.677029,-11.072357 - 1465: 16.677029,-11.061933 - 1466: 16.677029,-11.030661 - 1498: 24.59572,-6.420709 - 1499: 24.585304,-6.379013 - 1500: 24.585304,-6.379013 - 1501: 26.43947,-6.420709 - 1502: 26.43947,-6.420709 - 1503: 26.43947,-6.420709 - 1504: 25.856138,-6.5145245 - 1505: 25.918638,-6.524948 - 1506: 25.918638,-6.524948 - 1507: 25.429054,-7.2650456 - 1508: 25.50197,-5.4721336 - 1509: 25.50197,-5.4721336 - 1525: 25.043638,-1.0101161 - 1526: 25.03322,-1.4166484 - 1527: 25.054054,-2.0837786 - 1528: 20.541601,-3.1157453 - 1529: 20.541601,-3.1157453 - 1550: 21.083267,-3.8037233 - 1551: 21.708267,-4.5333967 - 1552: 21.989517,-4.83569 - 1553: 24.427696,3.6332126 - 1554: 24.427696,3.6332126 - 1555: 24.47978,3.8938098 - 1556: 24.490196,4.008473 - 1557: 25.19853,3.4872773 - 1558: 25.219364,3.6957555 - 1559: 25.583946,3.4143102 - 1560: 25.656864,3.3413427 - 1595: 24.559013,9.536787 - 1596: 24.559013,9.536787 - 1597: 24.986097,8.025321 - 1598: 24.986097,8.025321 - 1599: 24.986097,8.004473 - 1600: 27.329847,9.4638195 - 1601: 27.329847,9.4638195 - 1602: 29.486097,8.650755 - 1603: 29.465263,9.505515 - 1660: 44.766743,14.115714 - 1661: 45.506325,13.167138 - 1662: 45.422993,12.510432 - 1663: 45.422993,12.406193 - 1664: 45.443825,12.228987 - 1665: 45.652157,11.342955 - 1666: 46.068825,11.363803 - 1667: 44.527157,11.43677 - 1668: 44.506325,11.43677 - 1673: 40.017536,11.603553 - 1674: 40.017536,11.603553 - 1675: 39.03837,11.541009 - 1676: 39.361286,11.520162 - 1677: 39.361286,11.530585 - 1678: 40.705036,12.500009 - 1679: 40.517536,13.146291 - 1680: 36.965454,8.611892 - 1681: 36.29597,10.185901 - 1682: 36.20222,10.133781 - 1683: 44.35847,8.789098 - 1705: 19.519005,18.030977 - 1706: 19.519005,18.030977 - 1707: 19.519005,18.156063 - 1708: 19.519005,18.166487 - 1709: 19.52942,17.572325 - 1710: 19.52942,17.551477 - 1711: 19.519005,16.873922 - 1712: 19.519005,16.717564 - 1713: 27.535105,23.426867 - 1714: 27.524689,23.478987 - 1731: 28.575302,18.422344 - 1732: 28.55447,18.422344 - 1733: 28.55447,18.130476 - 1734: 28.17947,17.744791 - 1735: 27.908636,17.348682 - 1736: 28.71072,18.391073 - 1737: 28.825302,17.796911 - 1738: 28.86697,17.36953 - 1739: 29.49197,18.370226 - 1740: 29.575302,17.942846 - 1741: 30.231552,16.577312 - 1742: 29.74197,16.629433 - 1764: 34.851067,22.594568 - 1765: 34.54898,22.073374 - 1766: 34.6219,21.427092 - 1767: 33.694817,21.281157 - 1801: 37.319817,24.547857 - 1802: 38.6844,24.308107 - 1803: 38.42398,23.828608 - 1804: 41.71565,24.71464 - 1805: 41.726067,24.777184 - 1806: 41.601067,26.549248 - 1807: 36.33352,22.486269 - 1808: 37.093937,22.048466 - 1810: 38.137127,18.035261 - 1811: 38.605877,17.607882 - 1812: 38.585045,17.107533 - 1813: 37.835045,16.763544 - 1814: 39.68921,16.899055 - 1815: 39.574627,17.253468 - 1816: 43.40796,17.47237 - 1986: 11.302576,30.552818 - 1987: 11.344243,30.730024 - 1988: 11.344243,31.042744 - 1989: 11.344243,31.33461 - 1990: 11.344243,31.636906 - 1991: 11.323409,32.39785 - 1992: 10.531743,30.709177 - 2107: 10.48212,62.632313 - 2108: 10.48212,62.632313 - 2109: 11.690453,62.694855 - 2110: 7.5654526,56.503056 - 2111: 7.5654526,56.503056 - 2112: 15.700869,56.7845 - 2113: 17.273787,53.636482 - 2114: 17.252953,53.678177 - 2115: 15.752953,54.01174 - 2116: 15.752953,54.01174 - 2117: 15.711285,54.30361 - 2118: 15.857119,54.418274 - 2119: 16.294619,54.18895 - 2170: 6.8987856,66.65414 - 2171: 7.2112856,67.83204 - 2172: 7.1487856,69.3018 - 2173: 8.73212,69.29138 - 2174: 11.20087,69.030785 - 2175: 12.273787,66.5082 - 2176: 11.252953,67.74864 - 2177: 10.54462,63.61035 - 2178: 10.35712,63.57908 - 2179: 10.086287,63.558235 - 2180: 8.91962,63.631203 - 2181: 6.9300356,63.70417 - 2182: 6.575869,64.44427 - 2183: 6.3050356,66.19548 - 2184: 12.430037,64.18367 - 2185: 12.461287,63.954346 - 2186: 12.680037,63.568657 - 2187: 13.57587,63.662476 - 2317: -21.288452,51.730522 - 2318: -22.517618,59.038124 - 2319: -18.423868,64.4794 - 2320: -19.757202,65.52179 - 2321: -19.757202,65.490524 - 2464: -39.39992,79.298546 - 2465: -38.952003,78.58972 - 2466: -38.81659,77.34927 - 2467: -34.514503,76.786385 - 2468: -34.80617,77.76623 - 2469: -34.75409,79.15261 - 2499: -37.77492,90.65961 - 2500: -37.827003,88.62065 - 2501: -37.83742,86.34309 - 2502: -36.50409,92.57707 - 2503: -36.05617,90.877975 - 2504: -35.93117,88.57429 - 2505: -36.11867,82.53251 - 2506: -36.31659,82.0772 - 2507: -37.86867,84.64148 - 2508: -37.93117,82.381714 - 2509: -37.87909,80.14316 - 2510: -37.89992,79.34226 - 2511: -35.99367,78.101204 - 2692: -20.243317,33.59158 - 2693: -17.70165,33.581154 - 2694: -16.784985,33.977264 - 2700: -19.368317,33.533634 - 2701: -19.07665,33.512787 - 2702: -18.76415,34.148643 - 2703: -18.712067,33.55448 - 2704: -18.191235,34.450935 - 3565: 26.377426,-21.83037 - 3566: 27.158676,-22.539196 - 3567: 27.231594,-22.58089 - 3568: 27.606594,-22.591314 - 3569: 27.512844,-23.102087 - 3570: 27.46076,-21.5385 - 3571: 27.419094,-21.601044 - 3572: 27.05451,-21.705282 - 3573: 26.33576,-21.997152 - 5651: 55.013897,21.486156 - 5652: 54.99306,21.006657 - 5653: 55.013897,20.464613 - 5654: 55.545147,21.475733 - 5660: 61.25257,26.426678 - 5661: 60.44007,26.426678 - 5662: 59.50257,26.447525 - 5663: 59.50257,26.447525 - 5664: 59.50257,26.447525 - 5665: 59.544235,25.34259 - 5666: 59.544235,25.34259 - 5671: 55.56507,22.528137 - 5672: 55.56507,22.528137 - 5673: 55.835903,22.517712 - 5846: 41.90307,22.833323 - 5847: 41.132236,22.781202 - 5848: 40.5489,22.729084 - 5849: 37.578064,23.052225 - 5850: 38.973896,23.0418 + 1295: -16,0 + 1296: 5,-5 + 1297: 5,-5 + 1298: 4.3885875,-2.0088086 + 1299: 4.3885875,-2.0088086 + 1300: 8.576088,-4.3854594 + 1301: 8.565671,-4.3854594 + 1302: 12.468955,-14.062756 + 1303: 12.479371,-13.979364 + 1304: 12.093955,-17.110626 + 1305: 12.083538,-17.110626 + 1311: 14.496352,-10.973691 + 1312: 11.017185,-12.379897 + 1313: 11.402602,-12.473712 + 1331: 26.742252,-18.546526 + 1332: 26.742252,-18.546526 + 1333: 26.731836,-18.546526 + 1334: 26.81517,-17.587526 + 1335: 26.81517,-17.587526 + 1336: 26.81517,-17.587526 + 1337: 31.211004,-17.837702 + 1338: 30.711004,-18.014908 + 1356: 31.498821,-11.74064 + 1357: 31.530071,-11.98039 + 1358: 32.44674,-12.042933 + 1359: 30.071955,-13.0749 + 1360: 30.071955,-13.0749 + 1361: 30.071955,-13.0749 + 1362: 30.55112,-13.596095 + 1363: 30.499037,-13.439736 + 1364: 30.499037,-13.439736 + 1365: 30.499037,-13.439736 + 1388: 15.48953,-10.572009 + 1389: 15.48953,-10.572009 + 1390: 16.677029,-11.072357 + 1391: 16.677029,-11.061933 + 1392: 16.677029,-11.030661 + 1422: 24.59572,-6.420709 + 1423: 24.585304,-6.379013 + 1424: 24.585304,-6.379013 + 1425: 26.43947,-6.420709 + 1426: 26.43947,-6.420709 + 1427: 26.43947,-6.420709 + 1428: 25.856138,-6.5145245 + 1429: 25.918638,-6.524948 + 1430: 25.918638,-6.524948 + 1431: 25.429054,-7.2650456 + 1432: 25.50197,-5.4721336 + 1433: 25.50197,-5.4721336 + 1449: 25.043638,-1.0101161 + 1450: 25.03322,-1.4166484 + 1451: 25.054054,-2.0837786 + 1452: 20.541601,-3.1157453 + 1453: 20.541601,-3.1157453 + 1474: 21.083267,-3.8037233 + 1475: 21.708267,-4.5333967 + 1476: 21.989517,-4.83569 + 1477: 24.427696,3.6332126 + 1478: 24.427696,3.6332126 + 1479: 24.47978,3.8938098 + 1480: 24.490196,4.008473 + 1481: 25.19853,3.4872773 + 1482: 25.219364,3.6957555 + 1483: 25.583946,3.4143102 + 1484: 25.656864,3.3413427 + 1519: 24.559013,9.536787 + 1520: 24.559013,9.536787 + 1521: 24.986097,8.025321 + 1522: 24.986097,8.025321 + 1523: 24.986097,8.004473 + 1524: 27.329847,9.4638195 + 1525: 27.329847,9.4638195 + 1526: 29.486097,8.650755 + 1527: 29.465263,9.505515 + 1584: 44.766743,14.115714 + 1585: 45.506325,13.167138 + 1586: 45.422993,12.510432 + 1587: 45.422993,12.406193 + 1588: 45.443825,12.228987 + 1589: 45.652157,11.342955 + 1590: 46.068825,11.363803 + 1591: 44.527157,11.43677 + 1592: 44.506325,11.43677 + 1597: 40.017536,11.603553 + 1598: 40.017536,11.603553 + 1599: 39.03837,11.541009 + 1600: 39.361286,11.520162 + 1601: 39.361286,11.530585 + 1602: 40.705036,12.500009 + 1603: 40.517536,13.146291 + 1604: 36.965454,8.611892 + 1605: 36.29597,10.185901 + 1606: 36.20222,10.133781 + 1607: 44.35847,8.789098 + 1629: 19.519005,18.030977 + 1630: 19.519005,18.030977 + 1631: 19.519005,18.156063 + 1632: 19.519005,18.166487 + 1633: 19.52942,17.572325 + 1634: 19.52942,17.551477 + 1635: 19.519005,16.873922 + 1636: 19.519005,16.717564 + 1637: 27.535105,23.426867 + 1638: 27.524689,23.478987 + 1655: 28.575302,18.422344 + 1656: 28.55447,18.422344 + 1657: 28.55447,18.130476 + 1658: 28.17947,17.744791 + 1659: 27.908636,17.348682 + 1660: 28.71072,18.391073 + 1661: 28.825302,17.796911 + 1662: 28.86697,17.36953 + 1663: 29.49197,18.370226 + 1664: 29.575302,17.942846 + 1665: 30.231552,16.577312 + 1666: 29.74197,16.629433 + 1688: 34.851067,22.594568 + 1689: 34.54898,22.073374 + 1690: 34.6219,21.427092 + 1691: 33.694817,21.281157 + 1725: 37.319817,24.547857 + 1726: 38.6844,24.308107 + 1727: 38.42398,23.828608 + 1728: 41.71565,24.71464 + 1729: 41.726067,24.777184 + 1730: 41.601067,26.549248 + 1731: 36.33352,22.486269 + 1732: 37.093937,22.048466 + 1734: 38.137127,18.035261 + 1735: 38.605877,17.607882 + 1736: 38.585045,17.107533 + 1737: 37.835045,16.763544 + 1738: 39.68921,16.899055 + 1739: 39.574627,17.253468 + 1740: 43.40796,17.47237 + 1910: 11.302576,30.552818 + 1911: 11.344243,30.730024 + 1912: 11.344243,31.042744 + 1913: 11.344243,31.33461 + 1914: 11.344243,31.636906 + 1915: 11.323409,32.39785 + 1916: 10.531743,30.709177 + 2031: 10.48212,62.632313 + 2032: 10.48212,62.632313 + 2033: 11.690453,62.694855 + 2034: 7.5654526,56.503056 + 2035: 7.5654526,56.503056 + 2036: 15.700869,56.7845 + 2037: 17.273787,53.636482 + 2038: 17.252953,53.678177 + 2039: 15.752953,54.01174 + 2040: 15.752953,54.01174 + 2041: 15.711285,54.30361 + 2042: 15.857119,54.418274 + 2043: 16.294619,54.18895 + 2094: 6.8987856,66.65414 + 2095: 7.2112856,67.83204 + 2096: 7.1487856,69.3018 + 2097: 8.73212,69.29138 + 2098: 11.20087,69.030785 + 2099: 12.273787,66.5082 + 2100: 11.252953,67.74864 + 2101: 10.54462,63.61035 + 2102: 10.35712,63.57908 + 2103: 10.086287,63.558235 + 2104: 8.91962,63.631203 + 2105: 6.9300356,63.70417 + 2106: 6.575869,64.44427 + 2107: 6.3050356,66.19548 + 2108: 12.430037,64.18367 + 2109: 12.461287,63.954346 + 2110: 12.680037,63.568657 + 2111: 13.57587,63.662476 + 2241: -21.288452,51.730522 + 2242: -22.517618,59.038124 + 2243: -18.423868,64.4794 + 2244: -19.757202,65.52179 + 2245: -19.757202,65.490524 + 2388: -39.39992,79.298546 + 2389: -38.952003,78.58972 + 2390: -38.81659,77.34927 + 2391: -34.514503,76.786385 + 2392: -34.80617,77.76623 + 2393: -34.75409,79.15261 + 2423: -37.77492,90.65961 + 2424: -37.827003,88.62065 + 2425: -37.83742,86.34309 + 2426: -36.50409,92.57707 + 2427: -36.05617,90.877975 + 2428: -35.93117,88.57429 + 2429: -36.11867,82.53251 + 2430: -36.31659,82.0772 + 2431: -37.86867,84.64148 + 2432: -37.93117,82.381714 + 2433: -37.87909,80.14316 + 2434: -37.89992,79.34226 + 2435: -35.99367,78.101204 + 2616: -20.243317,33.59158 + 2617: -17.70165,33.581154 + 2618: -16.784985,33.977264 + 2624: -19.368317,33.533634 + 2625: -19.07665,33.512787 + 2626: -18.76415,34.148643 + 2627: -18.712067,33.55448 + 2628: -18.191235,34.450935 + 3478: 26.377426,-21.83037 + 3479: 27.158676,-22.539196 + 3480: 27.231594,-22.58089 + 3481: 27.606594,-22.591314 + 3482: 27.512844,-23.102087 + 3483: 26.33576,-21.997152 + 5525: 55.013897,21.486156 + 5526: 54.99306,21.006657 + 5527: 55.013897,20.464613 + 5528: 55.545147,21.475733 + 5534: 61.25257,26.426678 + 5535: 60.44007,26.426678 + 5536: 59.50257,26.447525 + 5537: 59.50257,26.447525 + 5538: 59.50257,26.447525 + 5539: 59.544235,25.34259 + 5540: 59.544235,25.34259 + 5545: 55.56507,22.528137 + 5546: 55.56507,22.528137 + 5547: 55.835903,22.517712 + 5720: 41.90307,22.833323 + 5721: 41.132236,22.781202 + 5722: 40.5489,22.729084 + 5723: 37.578064,23.052225 + 5724: 38.973896,23.0418 - node: color: '#3AB3DAFF' id: Flowersbr1 decals: - 4700: -18.084679,31.313194 + 4602: -18.084679,31.313194 - node: color: '#C74EBDFF' id: Flowersbr1 decals: - 4704: 3.634706,17.54374 + 4606: 3.634706,17.54374 - node: color: '#FED83DFF' id: Flowersbr1 decals: - 4711: 3.020123,18.00239 - 4712: 2.957623,17.06424 + 4613: 3.020123,18.00239 + 4614: 2.957623,17.06424 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: - 3243: -31.439182,-2.3271883 - 3244: -32.376682,-2.4939709 - 3245: -34.595432,-5.131219 - 3246: -32.095432,-9.571803 - 3247: -30.741266,-9.696891 - 3248: -27.657932,-7.591261 - 3249: -27.428766,-4.651719 + 3167: -31.439182,-2.3271883 + 3168: -32.376682,-2.4939709 + 3169: -34.595432,-5.131219 + 3170: -32.095432,-9.571803 + 3171: -30.741266,-9.696891 + 3172: -27.657932,-7.591261 + 3173: -27.428766,-4.651719 - node: color: '#3AB3DAFF' id: Flowersbr2 decals: - 4703: 3.051373,18.669521 - 4717: -6.3072667,14.265329 - 4718: -6.0260167,15.067969 + 4605: 3.051373,18.669521 + 4619: -6.3072667,14.265329 + 4620: -6.0260167,15.067969 - node: color: '#5E7C16FF' id: Flowersbr2 decals: - 4708: 3.853456,15.531925 + 4610: 3.853456,15.531925 - node: color: '#3AB3DAFF' id: Flowersbr3 decals: - 4699: -19.970095,31.261078 + 4601: -19.970095,31.261078 - node: color: '#B02E26FF' id: Flowersbr3 decals: - 4709: 3.8638725,15.146239 - 4710: 3.8117895,15.855066 + 4611: 3.8638725,15.146239 + 4612: 3.8117895,15.855066 - node: color: '#FED83DFF' id: Flowersbr3 decals: - 4715: -5.8072667,18.122175 + 4617: -5.8072667,18.122175 - node: color: '#FED83DFF' id: Flowerspv1 decals: - 4716: -6.23435,16.787914 + 4618: -6.23435,16.787914 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 3227: -32.824596,-3.0881336 - 3228: -33.720432,-4.0992527 - 3229: -33.012096,-8.956793 - 3230: -29.939182,-9.780282 - 3231: -28.095432,-4.151372 - 3232: -34.012096,-7.831011 - 3233: -29.04335,-8.79001 - 3234: -27.282932,-6.236153 - 3235: -29.064182,-3.0777094 - 3236: -30.7621,-2.3688838 + 3151: -32.824596,-3.0881336 + 3152: -33.720432,-4.0992527 + 3153: -33.012096,-8.956793 + 3154: -29.939182,-9.780282 + 3155: -28.095432,-4.151372 + 3156: -34.012096,-7.831011 + 3157: -29.04335,-8.79001 + 3158: -27.282932,-6.236153 + 3159: -29.064182,-3.0777094 + 3160: -30.7621,-2.3688838 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: - 3237: -33.595432,-8.3730545 - 3238: -34.668346,-6.934555 - 3239: -34.512096,-4.505785 - 3240: -32.564182,-9.425869 - 3241: -28.178766,-7.997793 - 3242: -27.366266,-5.4960556 + 3161: -33.595432,-8.3730545 + 3162: -34.668346,-6.934555 + 3163: -34.512096,-4.505785 + 3164: -32.564182,-9.425869 + 3165: -28.178766,-7.997793 + 3166: -27.366266,-5.4960556 - node: color: '#3AB3DAFF' id: Flowerspv3 decals: - 4701: -17.115929,31.2715 - 4702: -20.147179,32.251347 + 4603: -17.115929,31.2715 + 4604: -20.147179,32.251347 - node: color: '#FED83DFF' id: Flowersy2 decals: - 4713: 3.176373,17.293566 - 4714: -6.17185,18.64337 + 4615: 3.176373,17.293566 + 4616: -6.17185,18.64337 - node: color: '#FFFFFFFF' id: Flowersy4 decals: - 3250: -34.699596,-6.2048807 - 3251: -33.345432,-3.4008505 - 3252: -29.897516,-2.3793077 - 3253: -28.54335,-3.4425461 - 3254: -27.303766,-6.9554024 - 3255: -29.35585,-9.102728 - 3256: -31.3246,-9.592652 + 3174: -34.699596,-6.2048807 + 3175: -33.345432,-3.4008505 + 3176: -29.897516,-2.3793077 + 3177: -28.54335,-3.4425461 + 3178: -27.303766,-6.9554024 + 3179: -29.35585,-9.102728 + 3180: -31.3246,-9.592652 - node: color: '#79140040' id: FullTileOverlayGreyscale decals: - 5590: 15,32 - 5591: 15,33 - 5592: 15,34 - 5593: 16,34 - 5594: 17,34 - 5595: 18,34 - 5596: 19,34 - 5597: 20,34 - 5598: 20,29 - 5599: 19,29 - 5600: 18,29 - 5601: 17,29 - 5602: 16,29 - 5603: 15,29 + 5464: 15,32 + 5465: 15,33 + 5466: 15,34 + 5467: 16,34 + 5468: 17,34 + 5469: 18,34 + 5470: 19,34 + 5471: 20,34 + 5472: 20,29 + 5473: 19,29 + 5474: 18,29 + 5475: 17,29 + 5476: 16,29 + 5477: 15,29 - node: color: '#79150041' id: FullTileOverlayGreyscale @@ -6474,358 +6376,358 @@ entities: color: '#FFFFFFFF' id: Grassc1 decals: - 3081: -32.553764,-4.4649944 - 3082: -32.595432,-4.756864 - 3083: -32.668346,-5.2259393 - 3084: -32.970432,-5.278059 - 3085: -33.449596,-5.423993 - 3086: -33.543346,-5.6845913 - 3087: -33.543346,-5.8201017 - 3088: -33.543346,-6.257906 - 3089: -33.293346,-6.5289273 - 3090: -32.991264,-6.591471 - 3091: -32.585014,-6.904188 - 3092: -32.470436,-7.394112 - 3093: -32.220432,-7.6547093 - 3094: -31.98085,-7.6547093 - 3095: -31.647516,-7.758949 - 3096: -31.585016,-8.165482 - 3097: -31.5121,-8.436502 - 3098: -31.157932,-8.572014 - 3099: -30.60585,-8.603285 - 3100: -30.335016,-8.415655 - 3101: -30.251682,-8.0195465 - 3102: -30.1996,-7.8214917 - 3103: -29.970432,-7.6547093 - 3104: -29.626682,-7.6547093 - 3105: -29.210016,-7.5504704 - 3106: -29.189182,-7.2377534 - 3107: -29.29335,-6.779102 - 3108: -29.189182,-6.622743 - 3109: -28.79335,-6.633167 - 3110: -28.335016,-6.4663844 - 3111: -28.272516,-5.861798 - 3112: -28.3871,-5.298907 - 3113: -28.6371,-5.298907 - 3114: -29.189182,-5.2155156 - 3115: -29.314182,-5.100852 - 3116: -29.35585,-4.93407 - 3117: -29.35585,-4.5588093 - 3118: -29.678766,-4.3086357 - 3119: -30.241266,-4.26694 - 3120: -30.345432,-3.7978642 - 3121: -30.335016,-3.4851475 - 3122: -30.66835,-3.4226036 - 3123: -31.032932,-3.4017563 - 3124: -31.616266,-3.433028 - 3125: -31.7621,-4.1105814 - 3126: -31.8871,-4.3190594 + 3005: -32.553764,-4.4649944 + 3006: -32.595432,-4.756864 + 3007: -32.668346,-5.2259393 + 3008: -32.970432,-5.278059 + 3009: -33.449596,-5.423993 + 3010: -33.543346,-5.6845913 + 3011: -33.543346,-5.8201017 + 3012: -33.543346,-6.257906 + 3013: -33.293346,-6.5289273 + 3014: -32.991264,-6.591471 + 3015: -32.585014,-6.904188 + 3016: -32.470436,-7.394112 + 3017: -32.220432,-7.6547093 + 3018: -31.98085,-7.6547093 + 3019: -31.647516,-7.758949 + 3020: -31.585016,-8.165482 + 3021: -31.5121,-8.436502 + 3022: -31.157932,-8.572014 + 3023: -30.60585,-8.603285 + 3024: -30.335016,-8.415655 + 3025: -30.251682,-8.0195465 + 3026: -30.1996,-7.8214917 + 3027: -29.970432,-7.6547093 + 3028: -29.626682,-7.6547093 + 3029: -29.210016,-7.5504704 + 3030: -29.189182,-7.2377534 + 3031: -29.29335,-6.779102 + 3032: -29.189182,-6.622743 + 3033: -28.79335,-6.633167 + 3034: -28.335016,-6.4663844 + 3035: -28.272516,-5.861798 + 3036: -28.3871,-5.298907 + 3037: -28.6371,-5.298907 + 3038: -29.189182,-5.2155156 + 3039: -29.314182,-5.100852 + 3040: -29.35585,-4.93407 + 3041: -29.35585,-4.5588093 + 3042: -29.678766,-4.3086357 + 3043: -30.241266,-4.26694 + 3044: -30.345432,-3.7978642 + 3045: -30.335016,-3.4851475 + 3046: -30.66835,-3.4226036 + 3047: -31.032932,-3.4017563 + 3048: -31.616266,-3.433028 + 3049: -31.7621,-4.1105814 + 3050: -31.8871,-4.3190594 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 2905: 3.0030358,18.633562 - 2906: 2.9301193,18.060247 - 2907: 2.8780358,17.340998 - 2908: 2.8988693,16.725986 - 2909: 2.8467858,16.069283 - 2910: 2.9092858,14.59951 - 5694: -2.8757942,42.03267 - 5695: -0.28204423,42.022243 - 5696: -1.3132942,43.273113 - 5697: -2.0112107,44.023632 - 5698: -0.25079423,44.73246 + 2829: 3.0030358,18.633562 + 2830: 2.9301193,18.060247 + 2831: 2.8780358,17.340998 + 2832: 2.8988693,16.725986 + 2833: 2.8467858,16.069283 + 2834: 2.9092858,14.59951 + 5568: -2.8757942,42.03267 + 5569: -0.28204423,42.022243 + 5570: -1.3132942,43.273113 + 5571: -2.0112107,44.023632 + 5572: -0.25079423,44.73246 - node: color: '#FFFFFFFF' id: Grassd2 decals: - 2911: 3.2634528,19.050518 - 2912: 3.5134525,18.445932 - 2913: 3.805119,18.00813 - 2914: 3.8780355,17.486933 - 2915: 3.773869,16.580053 - 5690: -2.9174607,44.669914 - 5691: -2.9278774,43.742188 - 5692: -1.9487107,42.47047 - 5693: -0.9591275,41.93885 + 2835: 3.2634528,19.050518 + 2836: 3.5134525,18.445932 + 2837: 3.805119,18.00813 + 2838: 3.8780355,17.486933 + 2839: 3.773869,16.580053 + 5564: -2.9174607,44.669914 + 5565: -2.9278774,43.742188 + 5566: -1.9487107,42.47047 + 5567: -0.9591275,41.93885 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 2929: -7.3489804,3.9466949 - 2930: -7.3802304,4.2177167 - 2931: -6.8698134,4.2906833 - 2932: -6.5052304,4.1343255 - 2933: -7.7135634,4.905694 - 2934: -7.4635634,4.8744226 - 2935: -7.4531465,5.2184114 - 2936: -11.16754,5.209576 - 2937: -11.584207,4.92813 - 2938: -11.646707,5.0844884 - 2939: -11.07379,4.8447385 - 2940: 2.179718,13.650739 - 2941: 1.5443015,13.609044 - 2942: 0.7943013,13.609044 - 2943: 0.30471796,13.067 - 2944: 0.17971796,12.764707 - 2945: -0.52861536,12.723012 - 2946: -1.2161155,12.806403 - 2947: -2.3411155,12.795979 - 2948: -1.882782,12.639621 - 2949: -3.3723655,13.442261 - 2950: -3.8306987,13.640315 - 2951: -4.9036155,13.702859 - 2952: -4.7161155,13.483956 - 2953: -5.174449,13.640315 - 2954: -5.695282,13.923103 - 2955: -5.757782,14.725744 - 2956: -5.861949,15.507538 - 2957: -5.8723655,19.08294 - 2958: -6.101532,18.561743 - 2959: -6.664032,17.946732 - 2960: -6.007782,17.86334 - 2961: -6.132782,17.16494 - 2962: -6.6223655,16.675016 - 2963: -5.9973655,16.675016 - 2964: -5.924449,16.12255 - 2965: -6.268199,15.434569 - 2966: -6.6223655,15.080157 - 2967: -6.039032,14.0064945 - 2968: -6.268199,13.766745 - 2969: -12.200936,18.87446 - 2970: -11.138436,18.905731 - 2971: -12.06552,18.87446 - 2972: -12.242604,19.03365 - 2973: -12.305104,17.678541 - 2974: -12.25302,15.353023 - 2975: -12.242604,16.420097 - 2976: -12.388436,14.700151 - 2977: -12.357186,13.230381 - 2978: -12.294686,12.292229 - 2979: -12.169686,14.111492 - 2980: -12.305104,9.848114 - 2981: -12.31552,9.5666685 - 2982: -12.482186,8.003083 - 2983: -12.273854,6.5333123 - 2984: -12.294686,5.6994004 - 2985: -7.3669767,17.994802 - 2986: -7.57531,17.254135 - 2987: -7.3773937,17.577276 - 2988: -7.3669767,16.607853 - 2989: -7.3461437,15.224473 - 2990: -7.3357267,14.563015 - 2991: -7.3669767,12.499519 - 2992: -7.3148937,14.4662285 - 2993: -7.3461437,12.850524 - 2994: -7.3461437,11.724742 - 2995: -7.5023937,13.767827 - 2996: -7.4607267,11.49689 - 2997: -7.48156,10.652055 - 2998: -7.48156,9.636893 - 2999: -7.48156,8.063914 - 3000: -7.5023937,9.010956 - 3001: -7.5961437,6.607763 - 3002: -7.57531,6.3758683 - 3003: -7.57531,5.8442492 - 3004: -7.5544767,5.9842057 - 3005: -7.66906,5.5150948 - 3006: -7.66906,5.3691597 - 3127: -31.501682,-2.9639518 - 3128: -31.9496,-3.151582 - 3129: -32.335014,-3.8082886 - 3130: -32.991264,-3.975071 - 3131: -33.032932,-4.360755 - 3132: -33.720432,-4.7881355 - 3133: -33.366264,-4.8089833 - 3134: -34.157932,-4.8819504 - 3135: -34.282932,-5.1321244 - 3136: -34.324596,-5.7679825 - 3137: -34.210014,-6.3100257 - 3138: -34.199596,-6.633167 - 3139: -34.272514,-7.206482 - 3140: -33.710014,-7.404536 - 3141: -33.657932,-6.956308 - 3142: -33.043346,-7.7902203 - 3143: -33.220432,-7.9778504 - 3144: -33.064182,-8.384384 - 3145: -32.4496,-8.332264 - 3146: -32.3246,-8.66583 - 3147: -31.907932,-9.332959 - 3148: -31.616266,-8.968122 - 3149: -31.1996,-9.3538065 - 3150: -30.6371,-9.3538065 - 3151: -30.23085,-8.93685 - 3152: -30.085016,-9.249568 - 3153: -29.647516,-9.1766 - 3154: -29.647516,-8.572014 - 3155: -29.29335,-8.280144 - 3156: -29.189182,-8.26972 - 3157: -28.8246,-8.186329 - 3158: -28.522516,-7.6442857 - 3159: -28.470432,-7.4358077 - 3160: -28.41835,-6.779102 - 3161: -27.98085,-7.2377534 - 3162: -27.585016,-7.2586017 - 3163: -27.5746,-6.6123195 - 3164: -27.689182,-5.8930693 - 3165: -27.657932,-5.2050915 - 3166: -27.73085,-4.7047443 - 3167: -28.29335,-4.6526246 - 3168: -28.66835,-4.423299 - 3169: -28.73085,-3.7770164 - 3170: -29.241266,-3.849984 - 3171: -29.407932,-3.6519299 - 3172: -29.689182,-3.1828544 - 3173: -29.689182,-2.7033541 - 3174: -30.1996,-2.8180172 - 3175: -30.772516,-2.7242022 - 3176: -31.41835,-2.7658978 - 3177: -32.032932,-2.6929302 - 3178: -32.3871,-3.1828544 - 3179: -35.303764,-1.4420617 - 3180: -34.939182,-1.4212139 - 3181: -34.720432,-1.4107897 - 3182: -33.720432,-1.4316378 - 3183: -33.512096,-1.4420617 - 3184: -32.876682,-1.4420617 - 3185: -32.272514,-1.4837573 - 3186: -31.428766,-1.4420617 - 3187: -31.2621,-1.4212139 - 3188: -30.470432,-1.4107897 - 3189: -30.1371,-1.4316378 - 3190: -29.3246,-1.4420617 - 3191: -28.970432,-1.4524853 - 3192: -28.5746,-1.504605 - 3193: -28.178766,-1.5254529 - 3194: -26.960016,-1.4629095 - 3195: -26.470432,-2.0362244 - 3196: -26.428766,-2.9326801 - 3197: -26.303766,-3.8395603 - 3198: -26.189182,-4.8089833 - 3199: -26.303766,-4.8923745 - 3200: -26.335016,-5.747134 - 3201: -26.335016,-6.393417 - 3202: -26.335016,-6.726982 - 3203: -26.397516,-8.290567 - 3204: -26.366266,-9.187024 - 3205: -26.397516,-10.271111 - 3206: -26.449598,-10.552556 - 3207: -27.001682,-10.688067 - 3208: -27.428766,-10.635947 - 3209: -27.91835,-10.594253 - 3210: -29.053766,-10.583828 - 3211: -29.616266,-10.6151 - 3212: -28.741266,-10.6151 - 3213: -30.9496,-10.6567955 - 3214: -32.741264,-10.646371 - 3215: -33.980846,-10.604675 - 3216: -34.439182,-10.583828 - 3217: -35.001682,-10.531708 - 3218: -35.595432,-10.490013 - 3219: -35.720432,-9.89585 - 3220: -35.710014,-9.593556 - 3221: -35.699596,-8.634558 - 3222: -35.657932,-7.196058 - 3223: -35.626682,-6.7582536 - 3224: -35.637096,-5.799254 - 3225: -35.668346,-4.6422005 - 3226: -35.730846,-3.714473 + 2853: -7.3489804,3.9466949 + 2854: -7.3802304,4.2177167 + 2855: -6.8698134,4.2906833 + 2856: -6.5052304,4.1343255 + 2857: -7.7135634,4.905694 + 2858: -7.4635634,4.8744226 + 2859: -7.4531465,5.2184114 + 2860: -11.16754,5.209576 + 2861: -11.584207,4.92813 + 2862: -11.646707,5.0844884 + 2863: -11.07379,4.8447385 + 2864: 2.179718,13.650739 + 2865: 1.5443015,13.609044 + 2866: 0.7943013,13.609044 + 2867: 0.30471796,13.067 + 2868: 0.17971796,12.764707 + 2869: -0.52861536,12.723012 + 2870: -1.2161155,12.806403 + 2871: -2.3411155,12.795979 + 2872: -1.882782,12.639621 + 2873: -3.3723655,13.442261 + 2874: -3.8306987,13.640315 + 2875: -4.9036155,13.702859 + 2876: -4.7161155,13.483956 + 2877: -5.174449,13.640315 + 2878: -5.695282,13.923103 + 2879: -5.757782,14.725744 + 2880: -5.861949,15.507538 + 2881: -5.8723655,19.08294 + 2882: -6.101532,18.561743 + 2883: -6.664032,17.946732 + 2884: -6.007782,17.86334 + 2885: -6.132782,17.16494 + 2886: -6.6223655,16.675016 + 2887: -5.9973655,16.675016 + 2888: -5.924449,16.12255 + 2889: -6.268199,15.434569 + 2890: -6.6223655,15.080157 + 2891: -6.039032,14.0064945 + 2892: -6.268199,13.766745 + 2893: -12.200936,18.87446 + 2894: -11.138436,18.905731 + 2895: -12.06552,18.87446 + 2896: -12.242604,19.03365 + 2897: -12.305104,17.678541 + 2898: -12.25302,15.353023 + 2899: -12.242604,16.420097 + 2900: -12.388436,14.700151 + 2901: -12.357186,13.230381 + 2902: -12.294686,12.292229 + 2903: -12.169686,14.111492 + 2904: -12.305104,9.848114 + 2905: -12.31552,9.5666685 + 2906: -12.482186,8.003083 + 2907: -12.273854,6.5333123 + 2908: -12.294686,5.6994004 + 2909: -7.3669767,17.994802 + 2910: -7.57531,17.254135 + 2911: -7.3773937,17.577276 + 2912: -7.3669767,16.607853 + 2913: -7.3461437,15.224473 + 2914: -7.3357267,14.563015 + 2915: -7.3669767,12.499519 + 2916: -7.3148937,14.4662285 + 2917: -7.3461437,12.850524 + 2918: -7.3461437,11.724742 + 2919: -7.5023937,13.767827 + 2920: -7.4607267,11.49689 + 2921: -7.48156,10.652055 + 2922: -7.48156,9.636893 + 2923: -7.48156,8.063914 + 2924: -7.5023937,9.010956 + 2925: -7.5961437,6.607763 + 2926: -7.57531,6.3758683 + 2927: -7.57531,5.8442492 + 2928: -7.5544767,5.9842057 + 2929: -7.66906,5.5150948 + 2930: -7.66906,5.3691597 + 3051: -31.501682,-2.9639518 + 3052: -31.9496,-3.151582 + 3053: -32.335014,-3.8082886 + 3054: -32.991264,-3.975071 + 3055: -33.032932,-4.360755 + 3056: -33.720432,-4.7881355 + 3057: -33.366264,-4.8089833 + 3058: -34.157932,-4.8819504 + 3059: -34.282932,-5.1321244 + 3060: -34.324596,-5.7679825 + 3061: -34.210014,-6.3100257 + 3062: -34.199596,-6.633167 + 3063: -34.272514,-7.206482 + 3064: -33.710014,-7.404536 + 3065: -33.657932,-6.956308 + 3066: -33.043346,-7.7902203 + 3067: -33.220432,-7.9778504 + 3068: -33.064182,-8.384384 + 3069: -32.4496,-8.332264 + 3070: -32.3246,-8.66583 + 3071: -31.907932,-9.332959 + 3072: -31.616266,-8.968122 + 3073: -31.1996,-9.3538065 + 3074: -30.6371,-9.3538065 + 3075: -30.23085,-8.93685 + 3076: -30.085016,-9.249568 + 3077: -29.647516,-9.1766 + 3078: -29.647516,-8.572014 + 3079: -29.29335,-8.280144 + 3080: -29.189182,-8.26972 + 3081: -28.8246,-8.186329 + 3082: -28.522516,-7.6442857 + 3083: -28.470432,-7.4358077 + 3084: -28.41835,-6.779102 + 3085: -27.98085,-7.2377534 + 3086: -27.585016,-7.2586017 + 3087: -27.5746,-6.6123195 + 3088: -27.689182,-5.8930693 + 3089: -27.657932,-5.2050915 + 3090: -27.73085,-4.7047443 + 3091: -28.29335,-4.6526246 + 3092: -28.66835,-4.423299 + 3093: -28.73085,-3.7770164 + 3094: -29.241266,-3.849984 + 3095: -29.407932,-3.6519299 + 3096: -29.689182,-3.1828544 + 3097: -29.689182,-2.7033541 + 3098: -30.1996,-2.8180172 + 3099: -30.772516,-2.7242022 + 3100: -31.41835,-2.7658978 + 3101: -32.032932,-2.6929302 + 3102: -32.3871,-3.1828544 + 3103: -35.303764,-1.4420617 + 3104: -34.939182,-1.4212139 + 3105: -34.720432,-1.4107897 + 3106: -33.720432,-1.4316378 + 3107: -33.512096,-1.4420617 + 3108: -32.876682,-1.4420617 + 3109: -32.272514,-1.4837573 + 3110: -31.428766,-1.4420617 + 3111: -31.2621,-1.4212139 + 3112: -30.470432,-1.4107897 + 3113: -30.1371,-1.4316378 + 3114: -29.3246,-1.4420617 + 3115: -28.970432,-1.4524853 + 3116: -28.5746,-1.504605 + 3117: -28.178766,-1.5254529 + 3118: -26.960016,-1.4629095 + 3119: -26.470432,-2.0362244 + 3120: -26.428766,-2.9326801 + 3121: -26.303766,-3.8395603 + 3122: -26.189182,-4.8089833 + 3123: -26.303766,-4.8923745 + 3124: -26.335016,-5.747134 + 3125: -26.335016,-6.393417 + 3126: -26.335016,-6.726982 + 3127: -26.397516,-8.290567 + 3128: -26.366266,-9.187024 + 3129: -26.397516,-10.271111 + 3130: -26.449598,-10.552556 + 3131: -27.001682,-10.688067 + 3132: -27.428766,-10.635947 + 3133: -27.91835,-10.594253 + 3134: -29.053766,-10.583828 + 3135: -29.616266,-10.6151 + 3136: -28.741266,-10.6151 + 3137: -30.9496,-10.6567955 + 3138: -32.741264,-10.646371 + 3139: -33.980846,-10.604675 + 3140: -34.439182,-10.583828 + 3141: -35.001682,-10.531708 + 3142: -35.595432,-10.490013 + 3143: -35.720432,-9.89585 + 3144: -35.710014,-9.593556 + 3145: -35.699596,-8.634558 + 3146: -35.657932,-7.196058 + 3147: -35.626682,-6.7582536 + 3148: -35.637096,-5.799254 + 3149: -35.668346,-4.6422005 + 3150: -35.730846,-3.714473 - node: color: '#FFFFFFFF' id: Grasse1 decals: - 5688: -3.0718172,42.863354 - 5689: -0.10306722,42.6653 - 5699: -1.3757942,44.722034 - 5700: -2.1153774,44.71161 - 5701: -0.04246074,43.48159 - 5702: -2.167461,42.022243 + 5562: -3.0718172,42.863354 + 5563: -0.10306722,42.6653 + 5573: -1.3757942,44.722034 + 5574: -2.1153774,44.71161 + 5575: -0.04246074,43.48159 + 5576: -2.167461,42.022243 - node: color: '#FFFFFFFF' id: Grasse2 decals: - 2922: 3.6718535,4.4678903 - 2923: 3.4947705,3.925847 - 2924: -3.8698132,4.718064 - 2925: -4.2968965,4.926542 - 4661: -20.249954,32.820366 - 4662: -19.822872,32.809944 - 4663: -20.302038,31.871792 - 4664: -19.760372,31.955181 - 4665: -20.281204,30.829401 - 4666: -19.656204,30.860672 - 4667: -20.197872,31.579922 - 4668: -19.520788,31.548649 - 4669: -20.343704,33.195625 - 4670: -19.624954,33.2269 - 4671: -20.291622,32.50765 - 4672: -19.697872,32.55977 - 4673: -18.239538,30.912792 - 4674: -17.697872,30.912792 - 4675: -17.229122,30.902369 - 4676: -16.687454,30.944063 - 4677: -16.843704,31.611195 - 4678: -17.510372,31.642464 - 4679: -18.031204,31.600769 - 4680: -18.395788,31.89264 - 4681: -17.979122,32.090694 - 4682: -17.218704,31.94476 - 4683: -16.770788,31.976028 - 4684: -16.802038,32.64316 - 4685: -17.499954,32.67443 - 4686: -18.270788,32.695282 - 4687: -18.312454,33.03927 - 4688: -17.510372,33.028847 - 5703: -2.198711,43.252266 + 2846: 3.6718535,4.4678903 + 2847: 3.4947705,3.925847 + 2848: -3.8698132,4.718064 + 2849: -4.2968965,4.926542 + 4563: -20.249954,32.820366 + 4564: -19.822872,32.809944 + 4565: -20.302038,31.871792 + 4566: -19.760372,31.955181 + 4567: -20.281204,30.829401 + 4568: -19.656204,30.860672 + 4569: -20.197872,31.579922 + 4570: -19.520788,31.548649 + 4571: -20.343704,33.195625 + 4572: -19.624954,33.2269 + 4573: -20.291622,32.50765 + 4574: -19.697872,32.55977 + 4575: -18.239538,30.912792 + 4576: -17.697872,30.912792 + 4577: -17.229122,30.902369 + 4578: -16.687454,30.944063 + 4579: -16.843704,31.611195 + 4580: -17.510372,31.642464 + 4581: -18.031204,31.600769 + 4582: -18.395788,31.89264 + 4583: -17.979122,32.090694 + 4584: -17.218704,31.94476 + 4585: -16.770788,31.976028 + 4586: -16.802038,32.64316 + 4587: -17.499954,32.67443 + 4588: -18.270788,32.695282 + 4589: -18.312454,33.03927 + 4590: -17.510372,33.028847 + 5577: -2.198711,43.252266 - node: cleanable: True color: '#FFFFFFFF' id: Grasse2 decals: - 4689: -16.833288,33.133083 + 4591: -16.833288,33.133083 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 2916: 3.7009525,13.890684 - 2917: 3.586369,15.099856 - 2918: 3.4613693,16.183945 - 2919: 3.2947028,17.007433 - 2920: 3.0030358,15.45427 - 2921: 4.0447025,15.318759 - 2926: -1.2656465,5.124596 - 2927: -0.651063,4.7806077 - 2928: 2.3281035,4.7389116 - 5687: -1.3530672,43.697266 + 2840: 3.7009525,13.890684 + 2841: 3.586369,15.099856 + 2842: 3.4613693,16.183945 + 2843: 3.2947028,17.007433 + 2844: 3.0030358,15.45427 + 2845: 4.0447025,15.318759 + 2850: -1.2656465,5.124596 + 2851: -0.651063,4.7806077 + 2852: 2.3281035,4.7389116 + 5561: -1.3530672,43.697266 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale decals: - 1157: -39,36 - 1171: -46,35 - 1172: -47,35 - 1173: -48,35 - 1174: -49,35 - 1175: -50,35 - 1190: -46,30 - 1191: -47,30 - 1192: -48,30 - 1193: -49,30 - 1194: -50,30 - 1215: -53,27 - 1216: -52,27 - 1217: -51,27 - 1218: -50,27 - 1219: -49,27 - 1220: -48,27 - 1221: -47,27 - 1230: -58,27 - 1231: -59,27 - 1232: -61,27 - 1233: -62,27 - 1240: -64,24 - 1241: -63,24 - 1242: -62,24 + 1114: -39,36 + 1128: -46,35 + 1129: -47,35 + 1130: -48,35 + 1131: -49,35 + 1132: -50,35 + 1147: -46,30 + 1148: -47,30 + 1149: -48,30 + 1150: -49,30 + 1151: -50,30 + 1172: -53,27 + 1173: -52,27 + 1174: -51,27 + 1175: -50,27 + 1176: -49,27 + 1177: -48,27 + 1178: -47,27 + 1187: -58,27 + 1188: -59,27 + 1189: -61,27 + 1190: -62,27 + 1197: -64,24 + 1198: -63,24 + 1199: -62,24 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -6846,33 +6748,31 @@ entities: 658: -54,20 659: -55,20 665: -60,14 - 705: -67,8 - 709: -69,12 - 718: -80,8 - 719: -79,8 - 720: -78,8 - 721: -77,8 - 6524: -49,16 - 6533: -52,16 - 6544: -55,14 - 6547: -57,17 - 6551: -57,14 - 6552: -58,14 - 6575: -63,12 - 6576: -62,12 - 6577: -60,11 - 6578: -59,11 - 6586: -68,12 - 6588: -68,8 - 6589: -70,8 - 6590: -71,8 - 6591: -72,8 - 6710: -83,5 + 694: -67,8 + 697: -69,12 + 6265: -49,16 + 6274: -52,16 + 6285: -55,14 + 6288: -57,17 + 6292: -57,14 + 6293: -58,14 + 6311: -63,12 + 6312: -62,12 + 6313: -60,11 + 6314: -59,11 + 6322: -68,12 + 6324: -68,8 + 6325: -70,8 + 6326: -71,8 + 6327: -72,8 + 6427: -83,5 + 7011: -82,10 + 7012: -83,10 - node: color: '#79140040' id: HalfTileOverlayGreyscale decals: - 5584: 24,37 + 5458: 24,37 - node: color: '#79150041' id: HalfTileOverlayGreyscale @@ -6883,12 +6783,12 @@ entities: 430: 18,39 431: 17,39 432: 16,39 - 5578: 14,38 + 5452: 14,38 - node: color: '#79150087' id: HalfTileOverlayGreyscale decals: - 734: 23,24 + 718: 23,24 - node: color: '#79150096' id: HalfTileOverlayGreyscale @@ -6898,27 +6798,35 @@ entities: 410: 18,24 411: 21,24 412: 22,24 + - node: + color: '#80C71FB4' + id: HalfTileOverlayGreyscale + decals: + 7013: -80,8 + 7014: -79,8 + 7015: -77,8 + 7016: -76,8 - node: color: '#8932B87F' id: HalfTileOverlayGreyscale decals: - 962: 9,51 - 963: 10,51 - 964: 12,51 - 977: 8,62 - 978: 9,62 - 979: 10,62 - 986: 13,57 - 987: 14,57 - 988: 15,57 - 989: 16,57 - 990: 17,57 - 991: 19,57 + 946: 9,51 + 947: 10,51 + 948: 12,51 + 961: 8,62 + 962: 9,62 + 963: 10,62 + 970: 13,57 + 971: 14,57 + 972: 15,57 + 973: 16,57 + 974: 17,57 + 975: 19,57 - node: color: '#8932B881' id: HalfTileOverlayGreyscale decals: - 5779: 6,51 + 5653: 6,51 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale @@ -6939,75 +6847,82 @@ entities: 393: -13,36 403: -15,23 404: -11,23 - 1007: 10,-10 - 1010: 12,-9 - 1011: 13,-9 - 1019: 17,-9 - 1020: 18,-9 - 1021: 19,-9 - 1025: 21,-7 - 1026: 22,-7 - 1027: 23,-7 - 1028: 24,-7 - 1252: -20,23 - 1253: -16,23 - 1254: -17,23 - 1255: -19,23 - 1256: 1,23 - 1263: -4,23 - 1266: -12,36 - 4729: -12,39 - 6281: 6,-17 - 6323: 26,-11 - 6324: 25,-11 - 6349: 17,-20 - 6350: 15,-20 - 6351: 14,-20 - 6352: 13,-20 - 6353: 12,-20 - 6356: 10,-21 - 6357: 8,-21 - 6361: 23,-21 - 6362: 24,-21 - 6363: 25,-21 - 6364: 26,-21 - 6606: 10,-15 + 1209: -20,23 + 1210: -16,23 + 1211: -17,23 + 1212: -19,23 + 1213: 1,23 + 1220: -4,23 + 1223: -12,36 + 4631: -12,39 - node: - color: '#A2DF2EBF' + color: '#A4610696' id: HalfTileOverlayGreyscale decals: - 6569: -63,3 + 6882: 10,-10 + 6883: 12,-9 + 6884: 13,-9 + 6885: 10,-15 + 6886: 6,-17 + 6887: 8,-21 + 6888: 10,-21 + 6889: 12,-20 + 6890: 13,-20 + 6891: 14,-20 + 6892: 15,-20 + 6893: 17,-20 + 6894: 23,-21 + 6895: 24,-21 + 6896: 25,-21 + 6897: 26,-21 + 6898: 17,-9 + 6899: 18,-9 + 6900: 19,-9 + 6901: 26,-11 + 6902: 25,-11 + 6903: 21,-7 + 6904: 22,-7 + 6905: 23,-7 + 6906: 24,-7 + 6907: 31,-1 + 6908: 32,-1 + 6909: 35,-4 + 6910: 37,-4 + 6911: 38,-4 + 6912: 39,-4 - node: color: '#D381C996' id: HalfTileOverlayGreyscale decals: - 1051: -53,-7 - 1052: -51,-7 - 1104: -78,-6 - 1105: -79,-6 - 1126: -66,-11 - 1138: -69,-6 - 1139: -68,-6 - 1140: -67,-6 - 1141: -65,-6 - 1142: -64,-6 - 1143: -63,-6 - 1144: -62,-6 - 5717: -61,-19 - 5718: -59,-19 - 6810: -69,-11 - 6811: -68,-11 - 6812: -67,-11 + 1008: -53,-7 + 1009: -51,-7 + 1061: -78,-6 + 1062: -79,-6 + 1083: -66,-11 + 1095: -69,-6 + 1096: -68,-6 + 1097: -67,-6 + 1098: -65,-6 + 1099: -64,-6 + 1100: -63,-6 + 1101: -62,-6 + 5591: -61,-19 + 5592: -59,-19 + 6527: -69,-11 + 6528: -68,-11 + 6529: -67,-11 + 7038: -77,-1 + 7039: -78,-1 - node: color: '#D58C18BF' id: HalfTileOverlayGreyscale decals: - 909: -53,75 - 910: -52,75 - 911: -50,75 - 918: -48,80 - 919: -47,80 - 926: -45,75 + 893: -53,75 + 894: -52,75 + 895: -50,75 + 902: -48,80 + 903: -47,80 + 910: -45,75 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale @@ -7016,31 +6931,31 @@ entities: 456: -9,-9 457: -8,-9 458: -7,-9 - 736: -17,52 - 737: -18,52 - 738: -19,52 - 739: -22,52 - 740: -23,52 - 741: -24,52 - 742: -25,52 - 743: -16,52 - 782: -32,60 - 783: -31,60 - 786: -29,59 - 787: -28,59 - 788: -27,59 - 789: -26,59 - 800: -26,74 - 801: -25,74 - 828: -22,69 - 829: -21,69 - 830: -20,69 - 837: -19,64 - 940: -43,48 - 941: -41,48 - 942: -40,48 - 943: -38,48 - 944: -37,48 + 720: -17,52 + 721: -18,52 + 722: -19,52 + 723: -22,52 + 724: -23,52 + 725: -24,52 + 726: -25,52 + 727: -16,52 + 766: -32,60 + 767: -31,60 + 770: -29,59 + 771: -28,59 + 772: -27,59 + 773: -26,59 + 784: -26,74 + 785: -25,74 + 812: -22,69 + 813: -21,69 + 814: -20,69 + 821: -19,64 + 924: -43,48 + 925: -41,48 + 926: -40,48 + 927: -38,48 + 928: -37,48 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale @@ -7067,7 +6982,12 @@ entities: 566: 43,47 567: 42,47 568: 41,47 - 5564: 33,27 + 5438: 33,27 + - node: + color: '#F9801D7F' + id: HalfTileOverlayGreyscale + decals: + 7030: -63,3 - node: color: '#F9801D81' id: HalfTileOverlayGreyscale @@ -7083,32 +7003,32 @@ entities: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 decals: - 1160: -39,32 - 1178: -50,34 - 1179: -49,34 - 1180: -48,34 - 1181: -47,34 - 1182: -46,34 - 1183: -50,29 - 1184: -49,29 - 1185: -48,29 - 1186: -47,29 - 1187: -46,29 - 1222: -47,26 - 1223: -48,26 - 1224: -49,26 - 1225: -50,26 - 1226: -51,26 - 1227: -52,26 - 1228: -53,26 - 1235: -62,26 - 1236: -60,26 - 1237: -59,26 - 1238: -58,26 - 1239: -57,26 - 1245: -64,22 - 1246: -63,22 - 1247: -62,22 + 1117: -39,32 + 1135: -50,34 + 1136: -49,34 + 1137: -48,34 + 1138: -47,34 + 1139: -46,34 + 1140: -50,29 + 1141: -49,29 + 1142: -48,29 + 1143: -47,29 + 1144: -46,29 + 1179: -47,26 + 1180: -48,26 + 1181: -49,26 + 1182: -50,26 + 1183: -51,26 + 1184: -52,26 + 1185: -53,26 + 1192: -62,26 + 1193: -60,26 + 1194: -59,26 + 1195: -58,26 + 1196: -57,26 + 1202: -64,22 + 1203: -63,22 + 1204: -62,22 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 @@ -7126,24 +7046,29 @@ entities: 646: -48,14 660: -55,18 661: -52,18 - 714: -78,7 - 715: -79,7 - 716: -80,7 - 6550: -57,16 - 6555: -58,13 - 6556: -57,13 - 6564: -50,14 - 6565: -49,14 - 6580: -59,10 - 6581: -60,10 - 6582: -62,10 - 6583: -63,10 - 6587: -68,10 - 6592: -72,7 - 6706: -83,7 - 6707: -81,7 - 6708: -77,7 - 6716: -83,3 + 702: -78,7 + 703: -79,7 + 704: -80,7 + 6291: -57,16 + 6296: -58,13 + 6297: -57,13 + 6305: -50,14 + 6306: -49,14 + 6316: -59,10 + 6317: -60,10 + 6318: -62,10 + 6319: -63,10 + 6323: -68,10 + 6328: -72,7 + 6423: -83,7 + 6424: -81,7 + 6425: -77,7 + 6433: -83,3 + 7017: -67,7 + 7018: -68,7 + 7019: -69,7 + 7020: -70,7 + 7021: -71,7 - node: color: '#79150041' id: HalfTileOverlayGreyscale180 @@ -7152,35 +7077,20 @@ entities: 414: 14,26 428: 22,26 429: 21,26 - 733: 23,26 - - node: - color: '#80C71FBF' - id: HalfTileOverlayGreyscale180 - decals: - 693: -67,7 - 694: -68,7 - 695: -69,7 - 700: -64,0 - 701: -63,0 - 706: -70,7 + 717: 23,26 - node: color: '#8932B87F' id: HalfTileOverlayGreyscale180 decals: - 969: 9,57 - 970: 8,57 - 996: 19,54 - 997: 18,54 - 998: 17,54 - 999: 16,54 - 1000: 15,54 - 1001: 14,54 - 1002: 13,54 - - node: - color: '#9FD27FC6' - id: HalfTileOverlayGreyscale180 - decals: - 6593: -71,7 + 953: 9,57 + 954: 8,57 + 980: 19,54 + 981: 18,54 + 982: 17,54 + 983: 16,54 + 984: 15,54 + 985: 14,54 + 986: 13,54 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 @@ -7196,90 +7106,103 @@ entities: 381: -13,38 382: -15,38 383: -16,38 - 1030: 25,-9 - 1262: -12,31 - 1279: -18,34 - 1280: -17,34 - 2699: -19,34 - 4730: -12,38 - 4731: -11,38 - 6283: 10,-18 - 6284: 11,-18 - 6285: 12,-18 - 6286: 13,-18 - 6292: 8,-19 - 6317: 17,-18 - 6318: 18,-18 - 6319: 20,-18 - 6321: 23,-17 - 6331: 6,-24 - 6332: 7,-24 - 6333: 8,-24 - 6337: 10,-22 - 6340: 12,-23 - 6341: 13,-23 - 6342: 14,-23 - 6343: 15,-23 - 6344: 16,-23 - 6345: 17,-23 - 6367: 26,-23 - 6371: 24,-27 - 6374: 22,-28 - 6375: 21,-28 - 6600: 10,-13 + 1219: -12,31 + 1236: -18,34 + 1237: -17,34 + 2623: -19,34 + 4632: -12,38 + 4633: -11,38 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale180 + decals: + 6850: 10,-13 + 6851: 10,-18 + 6852: 11,-18 + 6853: 12,-18 + 6854: 13,-18 + 6855: 6,-24 + 6856: 7,-24 + 6857: 8,-24 + 6858: 10,-22 + 6859: 12,-23 + 6860: 13,-23 + 6861: 14,-23 + 6862: 15,-23 + 6863: 16,-23 + 6864: 17,-23 + 6865: 21,-28 + 6866: 22,-28 + 6867: 24,-27 + 6868: 26,-23 + 6869: 18,-18 + 6870: 17,-18 + 6871: 20,-18 + 6872: 25,-9 + 6873: 23,-17 + 6874: 29,-9 + 6875: 30,-9 + 6876: 31,-9 + 6877: 32,-9 + 6878: 35,-12 + 6879: 36,-12 + 6880: 37,-12 + 6881: 38,-12 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 decals: - 1034: -48,-5 - 1035: -49,-5 - 1036: -51,-5 - 1042: -38,-5 - 1043: -39,-5 - 1044: -40,-5 - 1045: -41,-5 - 1046: -43,-5 - 1047: -44,-5 - 1048: -45,-5 - 1049: -46,-5 - 1050: -47,-5 - 1060: -51,-11 - 1064: -60,-4 - 1065: -62,-4 - 1066: -63,-4 - 1067: -64,-4 - 1068: -67,-4 - 1069: -68,-4 - 1070: -69,-4 - 1071: -70,-4 - 1072: -71,-4 - 1124: -78,-16 - 1130: -66,-9 - 1131: -67,-9 - 1132: -68,-9 - 1133: -69,-9 - 1145: -62,-9 - 1146: -63,-9 - 1147: -64,-9 - 1149: -53,-4 - 1150: -54,-4 - 1151: -55,-4 - 1152: -56,-4 - 1153: -57,-4 - 1154: -58,-4 - 1155: -59,-4 - 1268: -73,-25 - 4720: -65,-4 - 5719: -61,-23 - 5720: -60,-23 + 991: -48,-5 + 992: -49,-5 + 993: -51,-5 + 999: -38,-5 + 1000: -39,-5 + 1001: -40,-5 + 1002: -41,-5 + 1003: -43,-5 + 1004: -44,-5 + 1005: -45,-5 + 1006: -46,-5 + 1007: -47,-5 + 1017: -51,-11 + 1021: -60,-4 + 1022: -62,-4 + 1023: -63,-4 + 1024: -64,-4 + 1025: -67,-4 + 1026: -68,-4 + 1027: -69,-4 + 1028: -70,-4 + 1029: -71,-4 + 1081: -78,-16 + 1087: -66,-9 + 1088: -67,-9 + 1089: -68,-9 + 1090: -69,-9 + 1102: -62,-9 + 1103: -63,-9 + 1104: -64,-9 + 1106: -53,-4 + 1107: -54,-4 + 1108: -55,-4 + 1109: -56,-4 + 1110: -57,-4 + 1111: -58,-4 + 1112: -59,-4 + 1225: -73,-25 + 4622: -65,-4 + 5593: -61,-23 + 5594: -60,-23 + 7007: -68,-14 + 7042: -78,-4 - node: color: '#D58C18BF' id: HalfTileOverlayGreyscale180 decals: - 889: -45,72 - 902: -50,72 - 903: -52,72 - 904: -53,72 + 873: -45,72 + 886: -50,72 + 887: -52,72 + 888: -53,72 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 @@ -7291,25 +7214,25 @@ entities: 449: -9,-6 460: -10,-13 461: -9,-13 - 763: -22,67 - 764: -23,67 - 765: -24,67 - 773: -26,58 - 774: -27,58 - 775: -28,58 - 776: -29,58 - 777: -30,58 - 778: -31,58 - 779: -32,58 - 834: -19,67 - 838: -19,63 - 5741: -4,0 - 5742: -5,0 - 5743: -6,0 - 5744: -7,0 - 5745: -1,-2 - 5746: -2,-2 - 5747: 1,0 + 747: -22,67 + 748: -23,67 + 749: -24,67 + 757: -26,58 + 758: -27,58 + 759: -28,58 + 760: -29,58 + 761: -30,58 + 762: -31,58 + 763: -32,58 + 818: -19,67 + 822: -19,63 + 5615: -4,0 + 5616: -5,0 + 5617: -6,0 + 5618: -7,0 + 5619: -1,-2 + 5620: -2,-2 + 5621: 1,0 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 @@ -7335,12 +7258,18 @@ entities: 575: 41,42 576: 42,42 577: 43,42 - 5729: -23,0 - 5730: -22,0 - 5731: -21,0 - 5732: -20,0 - 5733: -19,0 - 5792: 31,17 + 5603: -23,0 + 5604: -22,0 + 5605: -21,0 + 5606: -20,0 + 5607: -19,0 + 5666: 31,17 + - node: + color: '#F9801D7F' + id: HalfTileOverlayGreyscale180 + decals: + 7028: -63,0 + 7029: -64,0 - node: color: '#F9801D81' id: HalfTileOverlayGreyscale180 @@ -7371,30 +7300,35 @@ entities: 38: -14,8 39: -14,6 40: -14,5 + - node: + color: '#1D1D21B3' + id: HalfTileOverlayGreyscale270 + decals: + 7046: -17,9 - node: color: '#1D1D21C0' id: HalfTileOverlayGreyscale270 decals: - 5704: -14,7 - 5705: -13,7 - 5706: -13,6 + 5578: -14,7 + 5579: -13,7 + 5580: -13,6 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 decals: - 1162: -40,33 - 1163: -40,35 - 1165: -33,38 - 1166: -33,37 - 1167: -33,31 - 1168: -33,30 - 1206: -53,45 - 1207: -53,43 - 1208: -53,42 - 1209: -53,41 - 1210: -53,40 - 1211: -53,39 - 1243: -65,23 + 1119: -40,33 + 1120: -40,35 + 1122: -33,38 + 1123: -33,37 + 1124: -33,31 + 1125: -33,30 + 1163: -53,45 + 1164: -53,43 + 1165: -53,42 + 1166: -53,41 + 1167: -53,40 + 1168: -53,39 + 1200: -65,23 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 @@ -7410,23 +7344,22 @@ entities: 624: -49,9 625: -49,8 626: -49,7 - 717: -84,6 - 6521: -48,18 - 6522: -48,17 - 6530: -51,18 - 6531: -51,17 - 6539: -54,18 - 6540: -54,17 - 6541: -54,16 - 6542: -54,15 - 6558: -56,12 - 6559: -56,11 - 6572: -65,9 - 6573: -65,10 - 6703: -84,10 - 6704: -84,8 - 6705: -84,9 - 6714: -84,4 + 705: -84,6 + 6262: -48,18 + 6263: -48,17 + 6271: -51,18 + 6272: -51,17 + 6280: -54,18 + 6281: -54,17 + 6282: -54,16 + 6283: -54,15 + 6299: -56,12 + 6300: -56,11 + 6308: -65,9 + 6309: -65,10 + 6421: -84,8 + 6422: -84,9 + 6431: -84,4 - node: color: '#79150041' id: HalfTileOverlayGreyscale270 @@ -7437,24 +7370,17 @@ entities: 419: 13,31 420: 13,33 421: 13,34 - 5580: 13,35 - - node: - color: '#80C71FBF' - id: HalfTileOverlayGreyscale270 - decals: - 696: -65,4 - 697: -65,3 - 698: -65,1 + 5454: 13,35 - node: color: '#8932B87F' id: HalfTileOverlayGreyscale270 decals: - 966: 10,54 - 967: 10,56 - 972: 7,58 - 973: 7,59 - 974: 7,60 - 975: 7,61 + 950: 10,54 + 951: 10,56 + 956: 7,58 + 957: 7,59 + 958: 7,60 + 959: 7,61 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 @@ -7497,83 +7423,88 @@ entities: 389: -14,28 390: -14,29 391: -14,30 - 1015: 20,-21 - 1016: 16,-12 - 1017: 16,-10 - 1023: 20,-8 - 1272: -15,32 - 1273: -15,33 - 1274: -20,37 - 1275: -20,36 - 2698: -20,35 - 4732: 6,-14 - 4733: 6,-13 - 4734: 6,-12 - 4735: 6,-11 - 4736: 6,-10 - 4737: 6,-9 - 5724: -75,-24 - 5727: -75,-23 - 6282: 5,-18 - 6293: 7,-16 - 6314: 16,-14 - 6315: 16,-16 - 6316: 16,-15 - 6329: 5,-23 - 6377: 20,-27 - 6378: 20,-26 - 6379: 20,-25 - 6380: 20,-24 - 6381: 20,-23 - 6599: 11,-14 + 1229: -15,32 + 1230: -15,33 + 1231: -20,37 + 1232: -20,36 + 2622: -20,35 + 5598: -75,-24 + 5601: -75,-23 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + decals: + 6829: 6,-9 + 6830: 6,-10 + 6831: 6,-11 + 6832: 6,-12 + 6833: 6,-13 + 6834: 6,-14 + 6835: 11,-14 + 6836: 7,-16 + 6837: 5,-18 + 6838: 5,-23 + 6839: 20,-21 + 6840: 20,-23 + 6841: 20,-24 + 6842: 20,-25 + 6843: 20,-26 + 6844: 20,-27 + 6845: 16,-16 + 6846: 16,-14 + 6847: 16,-12 + 6848: 16,-10 + 6849: 20,-8 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 1061: -53,-10 - 1062: -53,-9 - 1090: -75,-22 - 1091: -75,-21 - 1092: -75,-18 - 1093: -75,-17 - 1094: -75,-16 - 1095: -75,-15 - 1096: -75,-14 - 1097: -75,-13 - 1098: -75,-12 - 1099: -75,-10 - 1100: -75,-9 - 1101: -75,-8 - 1102: -75,-7 - 1107: -80,-7 - 1108: -80,-9 - 1109: -80,-10 - 1110: -80,-11 - 1111: -80,-12 - 1112: -80,-13 - 1113: -80,-15 - 1135: -70,-8 - 1136: -70,-7 - 4721: -75,-19 - 4722: -75,-20 - 5711: -62,-20 - 5712: -62,-21 - 5713: -62,-22 - 6813: -70,-14 + 1018: -53,-10 + 1019: -53,-9 + 1047: -75,-22 + 1048: -75,-21 + 1049: -75,-18 + 1050: -75,-17 + 1051: -75,-16 + 1052: -75,-15 + 1053: -75,-14 + 1054: -75,-13 + 1055: -75,-12 + 1056: -75,-10 + 1057: -75,-9 + 1058: -75,-8 + 1059: -75,-7 + 1064: -80,-7 + 1065: -80,-9 + 1066: -80,-10 + 1067: -80,-11 + 1068: -80,-12 + 1069: -80,-13 + 1070: -80,-15 + 1092: -70,-8 + 1093: -70,-7 + 4623: -75,-19 + 4624: -75,-20 + 5585: -62,-20 + 5586: -62,-21 + 5587: -62,-22 + 6530: -70,-14 + 7040: -79,-2 + 7041: -79,-3 - node: color: '#D58C18BF' id: HalfTileOverlayGreyscale270 decals: - 897: -49,68 - 898: -49,69 - 899: -49,70 - 900: -49,71 - 906: -54,73 - 907: -54,74 - 913: -49,76 - 914: -49,77 - 915: -49,78 - 916: -49,79 + 881: -49,68 + 882: -49,69 + 883: -49,70 + 884: -49,71 + 890: -54,73 + 891: -54,74 + 897: -49,76 + 898: -49,77 + 899: -49,78 + 900: -49,79 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 @@ -7581,61 +7512,61 @@ entities: 451: -11,-12 452: -11,-11 453: -11,-10 - 749: -21,55 - 750: -21,56 - 751: -21,57 - 752: -21,58 - 753: -21,63 - 754: -21,60 - 755: -21,62 - 756: -21,64 - 760: -21,54 - 761: -21,66 - 791: -26,64 - 792: -26,65 - 793: -26,66 - 794: -26,67 - 795: -26,68 - 796: -26,69 - 797: -26,70 - 798: -26,72 - 799: -26,73 - 803: -24,75 - 804: -24,76 - 805: -24,77 - 806: -24,79 - 807: -24,80 - 808: -24,82 - 809: -24,83 - 810: -24,85 - 811: -24,86 - 858: -38,55 - 859: -38,56 - 860: -38,57 - 861: -38,58 - 862: -38,59 - 863: -38,60 - 864: -38,61 - 865: -38,62 - 866: -38,63 - 867: -38,64 - 868: -38,65 - 869: -38,66 - 870: -38,67 - 871: -38,68 - 872: -38,69 - 1281: -33,29 - 1282: -33,27 - 5752: -3,-1 - 6717: -74,0 - 6718: -74,1 - 6719: -74,2 - 6720: -74,3 - 6721: -74,4 - 6722: -74,5 - 6820: -24,91 - 6824: -24,89 - 6895: -24,88 + 733: -21,55 + 734: -21,56 + 735: -21,57 + 736: -21,58 + 737: -21,63 + 738: -21,60 + 739: -21,62 + 740: -21,64 + 744: -21,54 + 745: -21,66 + 775: -26,64 + 776: -26,65 + 777: -26,66 + 778: -26,67 + 779: -26,68 + 780: -26,69 + 781: -26,70 + 782: -26,72 + 783: -26,73 + 787: -24,75 + 788: -24,76 + 789: -24,77 + 790: -24,79 + 791: -24,80 + 792: -24,82 + 793: -24,83 + 794: -24,85 + 795: -24,86 + 842: -38,55 + 843: -38,56 + 844: -38,57 + 845: -38,58 + 846: -38,59 + 847: -38,60 + 848: -38,61 + 849: -38,62 + 850: -38,63 + 851: -38,64 + 852: -38,65 + 853: -38,66 + 854: -38,67 + 855: -38,68 + 856: -38,69 + 1238: -33,29 + 1239: -33,27 + 5626: -3,-1 + 6434: -74,0 + 6435: -74,1 + 6436: -74,2 + 6437: -74,3 + 6438: -74,4 + 6439: -74,5 + 6535: -24,91 + 6539: -24,89 + 6610: -24,88 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 @@ -7671,8 +7602,16 @@ entities: 591: 44,27 592: 44,26 593: 44,25 - 5798: 44,22 - 5800: 36,22 + 5672: 44,22 + 5674: 36,22 + - node: + color: '#F9801D7F' + id: HalfTileOverlayGreyscale270 + decals: + 7023: -65,4 + 7024: -65,3 + 7025: -65,2 + 7026: -65,1 - node: color: '#F9801D81' id: HalfTileOverlayGreyscale270 @@ -7684,16 +7623,16 @@ entities: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 decals: - 1158: -38,35 - 1159: -38,33 - 1198: -52,39 - 1199: -52,40 - 1200: -52,41 - 1201: -52,42 - 1202: -52,43 - 1203: -52,44 - 1204: -52,45 - 1249: -61,23 + 1115: -38,35 + 1116: -38,33 + 1155: -52,39 + 1156: -52,40 + 1157: -52,41 + 1158: -52,42 + 1159: -52,43 + 1160: -52,44 + 1161: -52,45 + 1206: -61,23 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 @@ -7716,58 +7655,56 @@ entities: 650: -47,18 663: -58,12 664: -58,15 - 6192: 7,11 - 6193: 7,8 - 6194: 7,7 - 6196: 7,10 - 6526: -50,17 - 6527: -50,18 - 6535: -53,17 - 6536: -53,18 - 6545: -56,16 - 6585: -64,9 - 6701: -81,9 - 6702: -81,10 - 6715: -81,4 + 6066: 7,11 + 6067: 7,8 + 6068: 7,7 + 6070: 7,10 + 6267: -50,17 + 6268: -50,18 + 6276: -53,17 + 6277: -53,18 + 6286: -56,16 + 6321: -64,9 + 6420: -81,9 + 6432: -81,4 - node: color: '#79140040' id: HalfTileOverlayGreyscale90 decals: - 5585: 24,36 + 5459: 24,36 - node: color: '#79150041' id: HalfTileOverlayGreyscale90 decals: 423: 19,38 - 724: 23,33 - 727: 24,31 - 728: 24,30 - 729: 24,29 - 730: 24,28 - 731: 24,27 + 708: 23,33 + 711: 24,31 + 712: 24,30 + 713: 24,29 + 714: 24,28 + 715: 24,27 - node: color: '#79150096' id: HalfTileOverlayGreyscale90 decals: - 5769: 11,35 - 5770: 11,38 - 5771: 11,39 + 5643: 11,35 + 5644: 11,38 + 5645: 11,39 - node: color: '#80C71FBF' id: HalfTileOverlayGreyscale90 decals: - 703: -62,1 - 704: -62,4 + 693: -62,4 - node: color: '#8932B87F' id: HalfTileOverlayGreyscale90 decals: - 981: 12,61 - 982: 12,60 - 983: 12,59 - 984: 12,58 - 993: 20,56 - 994: 20,55 + 965: 12,61 + 966: 12,60 + 967: 12,59 + 968: 12,58 + 977: 20,56 + 978: 20,55 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 @@ -7795,83 +7732,88 @@ entities: 401: -12,25 402: -12,24 437: -13,40 - 1005: 9,-9 - 1013: 14,-10 - 1014: 14,-12 - 1260: -11,34 - 1267: -11,32 - 1276: -17,36 - 1277: -17,37 - 6327: 24,-10 - 6335: 9,-23 - 6347: 18,-21 - 6366: 27,-22 - 6369: 25,-24 - 6370: 25,-26 - 6601: 9,-14 + 1217: -11,34 + 1224: -11,32 + 1233: -17,36 + 1234: -17,37 - node: - color: '#A2DF2EBF' + color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: - 6567: -64,4 + 6913: 9,-9 + 6914: 14,-10 + 6915: 14,-12 + 6916: 9,-14 + 6917: 9,-23 + 6918: 18,-21 + 6919: 27,-22 + 6920: 25,-24 + 6921: 25,-26 + 6922: 24,-10 + 6923: 34,-2 + 6924: 34,-3 + 6925: 39,-6 + 6926: 39,-7 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 1039: -37,-4 - 1040: -37,-2 - 1041: -37,-1 - 1054: -49,-8 - 1055: -49,-9 - 1056: -49,-10 - 1057: -49,-11 - 1074: -72,-5 - 1075: -72,-6 - 1076: -72,-7 - 1077: -72,-8 - 1078: -72,-9 - 1079: -72,-10 - 1080: -72,-11 - 1081: -72,-13 - 1082: -72,-14 - 1083: -72,-15 - 1084: -72,-18 - 1085: -72,-19 - 1086: -72,-20 - 1087: -72,-21 - 1088: -72,-22 - 1089: -72,-23 - 1115: -77,-7 - 1116: -77,-8 - 1117: -77,-9 - 1118: -77,-10 - 1119: -77,-12 - 1120: -77,-13 - 1121: -77,-14 - 1122: -77,-15 - 1128: -64,-12 - 1129: -64,-13 - 5714: -58,-20 - 5715: -58,-21 - 5716: -58,-22 - 6226: -74,-28 - 6227: -74,-29 - 6228: -74,-30 - 6229: -74,-32 - 6230: -74,-33 + 996: -37,-4 + 997: -37,-2 + 998: -37,-1 + 1011: -49,-8 + 1012: -49,-9 + 1013: -49,-10 + 1014: -49,-11 + 1031: -72,-5 + 1032: -72,-6 + 1033: -72,-7 + 1034: -72,-8 + 1035: -72,-9 + 1036: -72,-10 + 1037: -72,-11 + 1038: -72,-13 + 1039: -72,-14 + 1040: -72,-15 + 1041: -72,-18 + 1042: -72,-19 + 1043: -72,-20 + 1044: -72,-21 + 1045: -72,-22 + 1046: -72,-23 + 1072: -77,-7 + 1073: -77,-8 + 1074: -77,-9 + 1075: -77,-10 + 1076: -77,-12 + 1077: -77,-13 + 1078: -77,-14 + 1079: -77,-15 + 1085: -64,-12 + 1086: -64,-13 + 5588: -58,-20 + 5589: -58,-21 + 5590: -58,-22 + 6100: -74,-28 + 6101: -74,-29 + 6102: -74,-30 + 6103: -74,-32 + 6104: -74,-33 + 7036: -76,-3 + 7037: -76,-2 - node: color: '#D58C18BF' id: HalfTileOverlayGreyscale90 decals: - 887: -43,73 - 891: -46,71 - 892: -46,70 - 893: -46,69 - 894: -46,68 - 921: -46,79 - 922: -46,78 - 923: -46,77 - 924: -46,76 + 871: -43,73 + 875: -46,71 + 876: -46,70 + 877: -46,69 + 878: -46,68 + 905: -46,79 + 906: -46,78 + 907: -46,77 + 908: -46,76 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 @@ -7882,55 +7824,55 @@ entities: 442: -14,-8 443: -14,-7 459: -6,-10 - 744: -20,55 - 745: -20,56 - 746: -20,57 - 747: -20,58 - 748: -20,59 - 757: -20,60 - 758: -20,62 - 759: -20,54 - 767: -25,66 - 768: -25,65 - 769: -25,64 - 770: -25,63 - 771: -25,59 - 812: -23,87 - 813: -23,85 - 814: -23,83 - 815: -23,82 - 816: -23,81 - 817: -23,80 - 818: -23,79 - 819: -23,78 - 820: -23,76 - 821: -23,75 - 822: -23,74 - 823: -23,73 - 824: -23,72 - 825: -23,71 - 826: -23,70 - 832: -20,66 - 841: -36,55 - 842: -36,56 - 843: -36,57 - 844: -36,58 - 845: -36,60 - 846: -36,61 - 847: -36,62 - 848: -36,63 - 849: -36,64 - 850: -36,65 - 851: -36,66 - 852: -36,67 - 853: -36,68 - 854: -36,69 - 855: -36,70 - 5753: 0,-1 - 6821: -23,91 - 6822: -23,90 - 6823: -23,89 - 6896: -23,88 + 728: -20,55 + 729: -20,56 + 730: -20,57 + 731: -20,58 + 732: -20,59 + 741: -20,60 + 742: -20,62 + 743: -20,54 + 751: -25,66 + 752: -25,65 + 753: -25,64 + 754: -25,63 + 755: -25,59 + 796: -23,87 + 797: -23,85 + 798: -23,83 + 799: -23,82 + 800: -23,81 + 801: -23,80 + 802: -23,79 + 803: -23,78 + 804: -23,76 + 805: -23,75 + 806: -23,74 + 807: -23,73 + 808: -23,72 + 809: -23,71 + 810: -23,70 + 816: -20,66 + 825: -36,55 + 826: -36,56 + 827: -36,57 + 828: -36,58 + 829: -36,60 + 830: -36,61 + 831: -36,62 + 832: -36,63 + 833: -36,64 + 834: -36,65 + 835: -36,66 + 836: -36,67 + 837: -36,68 + 838: -36,69 + 839: -36,70 + 5627: 0,-1 + 6536: -23,91 + 6537: -23,90 + 6538: -23,89 + 6611: -23,88 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale90 @@ -7972,8 +7914,18 @@ entities: 547: 46,50 548: 46,51 549: 46,52 - 5799: 42,22 - 6885: 46,23 + 5673: 42,22 + 6600: 46,23 + - node: + color: '#F9801D7F' + id: HalfTileOverlayGreyscale90 + decals: + 7027: -64,4 + - node: + color: '#F9801D80' + id: HalfTileOverlayGreyscale90 + decals: + 7035: -62,1 - node: color: '#F9801D81' id: HalfTileOverlayGreyscale90 @@ -7987,83 +7939,83 @@ entities: color: '#A46106FF' id: LoadingArea decals: - 6860: 46,-7 + 6575: 46,-7 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 6137: 22,-14 + 6011: 22,-14 - node: color: '#FFFFFFFF' id: LoadingArea decals: - 6870: 33,-10 - 6871: 34,-10 + 6585: 33,-10 + 6586: 34,-10 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 6129: 27,-12 - 6130: 27,-13 - 6131: 27,-15 - 6132: 27,-16 + 6003: 27,-12 + 6004: 27,-13 + 6005: 27,-15 + 6006: 27,-16 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: LoadingArea decals: - 6155: 19,-15 - 6156: 13,-15 + 6029: 19,-15 + 6030: 13,-15 - node: color: '#D381C996' id: MiniTileWhiteEndN decals: - 6889: -67,-15 - 6890: -64,-15 + 6604: -67,-15 + 6605: -64,-15 - node: color: '#D381C996' id: MiniTileWhiteEndS decals: - 6893: -67,-17 - 6894: -64,-17 + 6608: -67,-17 + 6609: -64,-17 - node: color: '#D381C996' id: MiniTileWhiteLineE decals: - 6817: -64,-16 - 6891: -67,-16 + 6532: -64,-16 + 6606: -67,-16 - node: color: '#D381C996' id: MiniTileWhiteLineW decals: - 6816: -67,-16 - 6892: -64,-16 + 6531: -67,-16 + 6607: -64,-16 - node: color: '#52B4E996' id: MonoOverlay decals: - 6216: -62,8 - 6217: -61,7 - 6218: -62,6 - 6219: -61,5 - 6220: -60,6 - 6221: -60,8 - 6222: -59,7 - 6223: -59,5 - 6224: -58,6 - 6225: -58,8 + 6090: -62,8 + 6091: -61,7 + 6092: -62,6 + 6093: -61,5 + 6094: -60,6 + 6095: -60,8 + 6096: -59,7 + 6097: -59,5 + 6098: -58,6 + 6099: -58,8 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: 618: -45,12 - 6523: -48,16 - 6532: -51,16 - 6543: -54,14 - 6560: -56,15 - 6562: -56,14 + 6264: -48,16 + 6273: -51,16 + 6284: -54,14 + 6301: -56,15 + 6303: -56,14 - node: color: '#79150041' id: QuarterTileOverlayGreyscale @@ -8073,7 +8025,7 @@ entities: color: '#8932B881' id: QuarterTileOverlayGreyscale decals: - 5778: 7,51 + 5652: 7,51 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale @@ -8081,22 +8033,26 @@ entities: 321: -28,7 362: -19,44 406: -14,23 - 1008: 11,-10 - 1022: 20,-9 - 1264: -3,23 - 6289: 7,-17 - 6355: 11,-21 - 6605: 11,-15 + 1221: -3,23 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + decals: + 6927: 7,-17 + 6928: 11,-21 + 6929: 11,-15 + 6930: 11,-10 + 6931: 20,-9 - node: color: '#D58C18BF' id: QuarterTileOverlayGreyscale decals: - 912: -49,75 + 896: -49,75 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: - 802: -24,74 + 786: -24,74 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale @@ -8112,89 +8068,98 @@ entities: id: QuarterTileOverlayGreyscale180 decals: 635: -46,10 - 6561: -56,15 - 6563: -51,14 - 6584: -64,10 + 6302: -56,15 + 6304: -51,14 + 6320: -64,10 - node: color: '#79150041' id: QuarterTileOverlayGreyscale180 decals: - 723: 23,34 + 707: 23,34 - node: color: '#8932B87F' id: QuarterTileOverlayGreyscale180 decals: - 1003: 12,54 + 987: 12,54 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 decals: 384: -17,38 394: -13,31 - 6322: 22,-17 - 6326: 24,-9 - 6336: 9,-22 - 6368: 25,-23 - 6372: 23,-27 - 6603: 9,-13 + 6162: 23,-27 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + decals: + 6932: 9,-13 + 6933: 9,-22 + 6934: 25,-23 + 6935: 22,-17 + 6936: 24,-9 + 6940: 23,-27 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale180 decals: - 1073: -72,-4 + 1030: -72,-4 - node: color: '#D58C18BF' id: QuarterTileOverlayGreyscale180 decals: - 890: -46,72 + 874: -46,72 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 decals: 444: -14,-6 - 766: -25,67 - 833: -20,67 - 839: -20,63 - 5748: 0,0 + 750: -25,67 + 817: -20,67 + 823: -20,63 + 5622: 0,0 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: 662: -49,18 - 6557: -56,13 + 6298: -56,13 - node: color: '#8932B87F' id: QuarterTileOverlayGreyscale270 decals: - 968: 10,57 + 952: 10,57 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale270 decals: 326: -28,14 - 1270: -14,31 - 6288: 7,-15 - 6338: 11,-22 - 6602: 11,-13 + 1227: -14,31 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + decals: + 6937: 11,-13 + 6938: 7,-15 + 6939: 11,-22 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 1059: -50,-11 - 1063: -53,-8 - 1148: -52,-4 + 1016: -50,-11 + 1020: -53,-8 + 1105: -52,-4 - node: color: '#D58C18BF' id: QuarterTileOverlayGreyscale270 decals: - 901: -49,72 + 885: -49,72 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: - 762: -21,67 - 5749: -3,0 - 6087: -33,59 + 746: -21,67 + 5623: -3,0 + 5961: -33,59 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 @@ -8206,26 +8171,26 @@ entities: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: - 6525: -50,16 - 6534: -53,16 - 6700: -81,8 - 6723: -74,5 + 6266: -50,16 + 6275: -53,16 + 6419: -81,8 + 6440: -74,5 - node: color: '#79150041' id: QuarterTileOverlayGreyscale90 decals: 424: 19,37 - 725: 23,32 + 709: 23,32 - node: color: '#8932B87F' id: QuarterTileOverlayGreyscale90 decals: - 985: 12,57 + 969: 12,57 - node: color: '#8932B881' id: QuarterTileOverlayGreyscale90 decals: - 5776: 8,51 + 5650: 8,51 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale90 @@ -8234,51 +8199,56 @@ entities: 396: -13,29 405: -12,23 438: -13,39 - 1006: 9,-10 - 1257: 0,23 - 6325: 24,-11 - 6360: 22,-21 - 6604: 9,-15 + 1214: 0,23 - node: - color: '#A2DF2EBF' + color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: - 6568: -64,3 + 6941: 9,-10 + 6942: 9,-15 + 6943: 22,-21 + 6944: 24,-11 + 6945: 34,-4 - node: color: '#D58C18BF' id: QuarterTileOverlayGreyscale90 decals: - 925: -46,75 + 909: -46,75 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: - 785: -30,59 - 827: -23,69 - 836: -20,64 - 6086: -36,59 + 769: -30,59 + 811: -23,69 + 820: -20,64 + 5960: -36,59 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 decals: 525: 46,22 + - node: + color: '#F9801D7F' + id: QuarterTileOverlayGreyscale90 + decals: + 7031: -64,3 - node: color: '#FFFFFFFF' id: Remains decals: - 4748: -26.352484,102.90319 + 4638: -26.352484,102.90319 - node: color: '#FFFFFFFF' id: Rock06 decals: - 5683: -31.249956,-6.052115 - 5684: -30.635372,-6.2188983 + 5557: -31.249956,-6.052115 + 5558: -30.635372,-6.2188983 - node: color: '#FFFFFFFF' id: Rock07 decals: - 5685: -31.156206,-6.510767 - 5686: -30.781206,-5.7810936 + 5559: -31.156206,-6.510767 + 5560: -30.781206,-5.7810936 - node: color: '#1D1D21FF' id: Rust @@ -8423,48 +8393,48 @@ entities: color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 1309: -13,2 + 1266: -13,2 - node: color: '#FFFFFFFF' id: SpaceStationSign2 decals: - 1308: -12,2 + 1265: -12,2 - node: color: '#FFFFFFFF' id: SpaceStationSign3 decals: - 4724: -11,2 + 4626: -11,2 - node: color: '#FFFFFFFF' id: SpaceStationSign4 decals: - 1304: -10,2 + 1261: -10,2 - node: color: '#FFFFFFFF' id: SpaceStationSign5 decals: - 1305: -9,2 + 1262: -9,2 - node: color: '#FFFFFFFF' id: SpaceStationSign6 decals: - 1306: -8,2 + 1263: -8,2 - node: color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 1307: -7,2 + 1264: -7,2 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: StandClear decals: 66: -49,46 - 6138: 22,-13 - 6139: 22,-15 - 7095: 67,73 - 7096: 67,72 - 7097: 67,71 + 6012: 22,-13 + 6013: 22,-15 + 6808: 67,73 + 6809: 67,72 + 6810: 67,71 - node: color: '#FFFFFFFF' id: StandClear @@ -8472,43 +8442,43 @@ entities: 64: -48,45 65: -47,45 78: -36,48 - 6151: 18,-16 - 6161: 13,-16 - 6864: 37,-5 - 6865: 39,-5 - 6879: 38,-10 + 6025: 18,-16 + 6035: 13,-16 + 6579: 37,-5 + 6580: 39,-5 + 6594: 38,-10 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: StandClear decals: 67: -46,46 - 7104: 54,-20 - 7105: 54,-24 + 6816: 54,-20 + 6817: 54,-24 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: StandClear decals: 83: -53,48 - 6152: 18,-14 - 6160: 13,-14 - 6880: 38,-8 + 6026: 18,-14 + 6034: 13,-14 + 6595: 38,-8 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: StandClear decals: 79: -46,51 - 6157: 12,-15 + 6031: 12,-15 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale decals: - 1164: -40,36 - 1176: -51,35 - 1195: -51,30 - 1214: -54,27 + 1121: -40,36 + 1133: -51,35 + 1152: -51,30 + 1171: -54,27 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale @@ -8516,20 +8486,21 @@ entities: 595: -44,8 614: -45,17 622: -49,12 - 710: -70,12 - 6520: -48,19 - 6529: -51,19 - 6538: -54,19 - 6548: -58,17 - 6553: -59,14 - 6574: -65,12 - 6709: -84,5 + 698: -70,12 + 6261: -48,19 + 6270: -51,19 + 6279: -54,19 + 6289: -58,17 + 6294: -59,14 + 6310: -65,12 + 6426: -84,5 + 7009: -84,10 - node: color: '#79150041' id: ThreeQuarterTileOverlayGreyscale decals: 433: 15,39 - 5579: 13,38 + 5453: 13,38 - node: color: '#79150096' id: ThreeQuarterTileOverlayGreyscale @@ -8539,13 +8510,13 @@ entities: color: '#8932B87F' id: ThreeQuarterTileOverlayGreyscale decals: - 976: 7,62 + 960: 7,62 - node: cleanable: True color: '#8932B881' id: ThreeQuarterTileOverlayGreyscale decals: - 4725: 7,52 + 4627: 7,52 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale @@ -8556,43 +8527,44 @@ entities: 361: -20,44 365: -19,47 392: -15,36 - 1009: 11,-9 - 1018: 16,-9 - 1024: 20,-7 - 1265: -3,24 - 6290: 5,-17 - 6328: 5,-21 - 6354: 11,-20 - 6358: 20,-20 + 1222: -3,24 - node: - color: '#A2DF2EBF' + color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale decals: - 6566: -65,5 + 6946: 11,-9 + 6947: 5,-17 + 6948: 11,-20 + 6949: 5,-21 + 6950: 20,-20 + 6951: 16,-9 + 6952: 20,-7 + 6953: 28,-7 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale decals: - 1103: -75,-6 - 1106: -80,-6 - 1125: -70,-11 - 1137: -70,-6 - 5707: -62,-19 + 1060: -75,-6 + 1063: -80,-6 + 1082: -70,-11 + 1094: -70,-6 + 5581: -62,-19 + 7043: -79,-1 - node: color: '#D58C18BF' id: ThreeQuarterTileOverlayGreyscale decals: - 908: -54,75 - 917: -49,80 + 892: -54,75 + 901: -49,80 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale decals: 454: -11,-9 - 781: -33,60 - 873: -38,71 - 939: -44,48 - 6818: -24,92 + 765: -33,60 + 857: -38,71 + 923: -44,48 + 6533: -24,92 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale @@ -8602,6 +8574,11 @@ entities: 499: 36,19 556: 39,53 569: 40,47 + - node: + color: '#F9801D7F' + id: ThreeQuarterTileOverlayGreyscale + decals: + 7022: -65,5 - node: color: '#F9801D81' id: ThreeQuarterTileOverlayGreyscale @@ -8611,11 +8588,11 @@ entities: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1170: -45,34 - 1188: -45,29 - 1197: -52,38 - 1213: -46,26 - 1248: -61,22 + 1127: -45,34 + 1145: -45,29 + 1154: -52,38 + 1170: -46,26 + 1205: -61,22 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 @@ -8624,71 +8601,77 @@ entities: 630: -46,5 641: -51,9 647: -47,14 - 707: -67,10 - 713: -76,7 - 6712: -81,3 + 695: -67,10 + 701: -76,7 + 6429: -81,3 - node: color: '#79150041' id: ThreeQuarterTileOverlayGreyscale180 decals: - 722: 24,34 - 732: 24,26 + 706: 24,34 + 716: 24,26 - node: color: '#79150096' id: ThreeQuarterTileOverlayGreyscale180 decals: - 5768: 11,34 - - node: - color: '#80C71FBF' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 702: -62,0 + 5642: 11,34 - node: color: '#8932B87F' id: ThreeQuarterTileOverlayGreyscale180 decals: - 995: 20,54 - 1004: 12,53 + 979: 20,54 + 988: 12,53 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale180 decals: 315: -26,5 333: -30,9 - 1029: 26,-9 - 1261: -11,31 - 6320: 22,-18 - 6334: 9,-24 - 6346: 18,-23 - 6373: 23,-28 + 1218: -11,31 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 6954: 9,-24 + 6955: 18,-23 + 6956: 23,-28 + 6957: 26,-9 + 6958: 39,-12 + 7005: 22,-18 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1038: -37,-5 - 1123: -77,-16 - 5709: -58,-23 + 995: -37,-5 + 1080: -77,-16 + 5583: -58,-23 + 7045: -76,-4 - node: color: '#D58C18BF' id: ThreeQuarterTileOverlayGreyscale180 decals: - 888: -43,72 - 895: -46,67 + 872: -43,72 + 879: -46,67 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale180 decals: - 772: -25,58 - 835: -18,67 - 840: -36,54 - 5750: 0,-2 + 756: -25,58 + 819: -18,67 + 824: -36,54 + 5624: 0,-2 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 decals: 484: 34,17 522: 48,21 - 5803: 42,21 + 5677: 42,21 + - node: + color: '#F9801D7F' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 7034: -62,0 - node: color: '#F9801D81' id: ThreeQuarterTileOverlayGreyscale180 @@ -8698,39 +8681,34 @@ entities: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1161: -40,32 - 1177: -51,34 - 1196: -51,29 - 1234: -63,26 - 1244: -65,22 + 1118: -40,32 + 1134: -51,34 + 1153: -51,29 + 1191: -63,26 + 1201: -65,22 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: 600: -44,3 627: -49,5 - 711: -70,10 - 712: -74,7 - 6549: -58,16 - 6554: -59,13 - 6571: -65,7 - 6713: -84,3 + 699: -70,10 + 700: -74,7 + 6290: -58,16 + 6295: -59,13 + 6307: -65,7 + 6430: -84,3 - node: color: '#79150041' id: ThreeQuarterTileOverlayGreyscale270 decals: 415: 13,26 - - node: - color: '#80C71FBF' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 699: -65,0 - node: color: '#8932B87F' id: ThreeQuarterTileOverlayGreyscale270 decals: - 965: 10,53 - 971: 7,57 + 949: 10,53 + 955: 7,57 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale270 @@ -8738,37 +8716,42 @@ entities: 318: -29,5 327: -29,14 338: -36,9 - 1271: -15,31 - 1278: -20,34 - 6287: 6,-15 - 6291: 5,-19 - 6330: 5,-24 - 6339: 11,-23 - 6376: 20,-28 + 1228: -15,31 + 1235: -20,34 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 6959: 6,-15 + 6960: 5,-19 + 6961: 5,-24 + 6962: 11,-23 + 6963: 20,-28 + 6964: 28,-9 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1037: -52,-5 - 1058: -50,-12 - 1114: -80,-16 - 1134: -70,-9 - 5708: -62,-23 + 994: -52,-5 + 1015: -50,-12 + 1071: -80,-16 + 1091: -70,-9 + 5582: -62,-23 - node: color: '#D58C18BF' id: ThreeQuarterTileOverlayGreyscale270 decals: - 896: -49,67 - 905: -54,72 + 880: -49,67 + 889: -54,72 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale270 decals: 450: -11,-13 - 780: -33,58 - 790: -26,63 - 857: -38,54 - 5751: -3,-2 + 764: -33,58 + 774: -26,63 + 841: -38,54 + 5625: -3,-2 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 @@ -8776,8 +8759,13 @@ entities: 472: 29,24 501: 36,17 574: 40,42 - 5801: 44,21 - 5802: 36,21 + 5675: 44,21 + 5676: 36,21 + - node: + color: '#F9801D7F' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 7032: -65,0 - node: color: '#F9801D81' id: ThreeQuarterTileOverlayGreyscale270 @@ -8787,48 +8775,49 @@ entities: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1156: -38,36 - 1169: -45,35 - 1189: -45,30 - 1205: -52,46 - 1212: -46,27 - 1229: -56,27 + 1113: -38,36 + 1126: -45,35 + 1146: -45,30 + 1162: -52,46 + 1169: -46,27 + 1186: -56,27 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: 611: -41,17 651: -47,20 - 708: -67,12 - 6519: -47,19 - 6528: -50,19 - 6537: -53,19 - 6546: -56,17 - 6579: -58,11 - 6711: -81,5 + 696: -67,12 + 6260: -47,19 + 6269: -50,19 + 6278: -53,19 + 6287: -56,17 + 6315: -58,11 + 6428: -81,5 + 7010: -81,10 - node: color: '#79150041' id: ThreeQuarterTileOverlayGreyscale90 decals: 434: 19,39 - 726: 24,32 + 710: 24,32 - node: color: '#79150087' id: ThreeQuarterTileOverlayGreyscale90 decals: - 735: 24,24 + 719: 24,24 - node: color: '#8932B87F' id: ThreeQuarterTileOverlayGreyscale90 decals: - 980: 12,62 - 992: 20,57 + 964: 12,62 + 976: 20,57 - node: cleanable: True color: '#8932B881' id: ThreeQuarterTileOverlayGreyscale90 decals: - 4726: 8,52 + 4628: 8,52 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale90 @@ -8838,40 +8827,40 @@ entities: 355: -30,12 371: -13,47 397: -12,29 - 1012: 14,-9 - 1258: 0,24 - 1259: -11,36 - 1269: -8,39 - 6348: 18,-20 - 6359: 22,-20 - 6365: 27,-21 + 1215: 0,24 + 1216: -11,36 + 1226: -8,39 - node: - color: '#A2DF2EBF' + color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale90 decals: - 6570: -62,3 + 6965: 14,-9 + 6966: 18,-20 + 6967: 22,-20 + 6968: 27,-21 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1053: -49,-7 - 1127: -64,-11 - 5710: -58,-19 + 1010: -49,-7 + 1084: -64,-11 + 5584: -58,-19 + 7044: -76,-1 - node: color: '#D58C18BF' id: ThreeQuarterTileOverlayGreyscale90 decals: - 920: -46,80 - 927: -43,75 + 904: -46,80 + 911: -43,75 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale90 decals: - 784: -30,60 - 831: -18,69 - 856: -36,71 - 945: -35,48 - 6819: -23,92 + 768: -30,60 + 815: -18,69 + 840: -36,71 + 929: -35,48 + 6534: -23,92 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 @@ -8882,6 +8871,11 @@ entities: 509: 43,19 523: 48,22 550: 46,53 + - node: + color: '#F9801D7F' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 7033: -62,3 - node: color: '#F9801D81' id: ThreeQuarterTileOverlayGreyscale90 @@ -8892,46 +8886,40 @@ entities: color: '#5E963FFF' id: Tunnel decals: - 6886: 43.301277,10.318158 + 6601: 43.301277,10.318158 - node: cleanable: True color: '#80B51FFF' id: Tunnel decals: - 6887: 43.270027,10.359854 + 6602: 43.270027,10.359854 - node: color: '#A46106FF' id: WarnBox decals: - 6850: 27,-5 + 6565: 27,-5 - node: color: '#1861D5FF' id: WarnBoxGreyscale decals: - 7069: 30,60 + 6784: 30,60 - node: angle: 3.141592653589793 rad color: '#1861D5FF' id: WarnBoxGreyscale decals: - 7068: 30,60 + 6783: 30,60 - node: color: '#951710FF' id: WarnBoxGreyscale decals: - 6898: 27,58 + 6613: 27,58 - node: angle: 3.141592653589793 rad color: '#951710FF' id: WarnBoxGreyscale decals: - 6897: 27,58 - - node: - angle: 1.5707963267948966 rad - color: '#D381C996' - id: WarnBoxGreyscale - decals: - 6815: -68,-14 + 6612: 27,58 - node: color: '#A46106FF' id: WarnCornerNE @@ -8939,7 +8927,7 @@ entities: 92: 27,-1 95: 22,-1 96: 24,-1 - 6884: 30,-1 + 6599: 30,-1 - node: color: '#EFB341FF' id: WarnCornerNE @@ -8958,7 +8946,7 @@ entities: 93: 21,-1 94: 23,-1 97: 26,-1 - 6881: 29,-1 + 6596: 29,-1 - node: color: '#EFB341FF' id: WarnCornerNW @@ -8976,12 +8964,12 @@ entities: decals: 106: 24,-5 107: 22,-5 - 6088: 29,-19 - 6089: 27,-19 - 6090: 25,-19 - 6133: 31,-19 - 6851: 32,-6 - 6852: 30,-6 + 5962: 29,-19 + 5963: 27,-19 + 5964: 25,-19 + 6007: 31,-19 + 6566: 32,-6 + 6567: 30,-6 - node: color: '#EFB341FF' id: WarnCornerSE @@ -8994,12 +8982,12 @@ entities: decals: 104: 21,-5 105: 23,-5 - 6091: 24,-19 - 6092: 26,-19 - 6093: 28,-19 - 6134: 30,-19 - 6853: 29,-6 - 6854: 31,-6 + 5965: 24,-19 + 5966: 26,-19 + 5967: 28,-19 + 6008: 30,-19 + 6568: 29,-6 + 6569: 31,-6 - node: color: '#EFB341FF' id: WarnCornerSW @@ -9015,43 +9003,38 @@ entities: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 6144: 25,-16 + 6018: 25,-16 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: 56: -48,49 - 6148: 25,-12 + 6022: 25,-12 - node: color: '#FFFFFFFF' id: WarnEndN decals: - 5869: -30,-19 - 5874: -29,-19 + 5743: -30,-19 + 5748: -29,-19 - node: color: '#FFFFFFFF' id: WarnEndS decals: - 5870: -30,-22 - 5875: -29,-22 + 5744: -30,-22 + 5749: -29,-22 - node: color: '#FFFFFFFF' id: WarnEndW decals: - 5871: -32,-21 - 5872: -32,-19 - 5873: -32,-22 + 5745: -32,-21 + 5746: -32,-19 + 5747: -32,-22 - node: color: '#FFFFFFFF' id: WarnFull decals: - 7093: 59,73 - 7094: 59,75 - - node: - color: '#D381C996' - id: WarnFullGreyscale - decals: - 6814: -68,-14 + 6826: 61,75 + 6827: 61,73 - node: color: '#A46106FF' id: WarnLineE @@ -9061,13 +9044,13 @@ entities: 103: 27,-2 108: 22,-4 109: 24,-4 - 6094: 29,-18 - 6095: 27,-18 - 6096: 25,-18 - 6135: 31,-18 - 6855: 30,-5 - 6856: 32,-5 - 6882: 30,-2 + 5968: 29,-18 + 5969: 27,-18 + 5970: 25,-18 + 6009: 31,-18 + 6570: 30,-5 + 6571: 32,-5 + 6597: 30,-2 - node: color: '#FFFFFFFF' id: WarnLineE @@ -9078,9 +9061,9 @@ entities: 47: -47,51 48: -47,52 49: -47,53 - 6888: 47,11 - 7084: 66,59 - 7085: 66,60 + 6603: 47,11 + 6799: 66,59 + 6800: 66,60 - node: color: '#FFEDCEFF' id: WarnLineGreyscaleN @@ -9102,18 +9085,18 @@ entities: 57: -49,49 58: -50,49 59: -51,49 - 6078: -51,-33 - 6079: -49,-33 - 6149: 24,-12 - 6150: 23,-12 - 6617: -27,-31 - 6618: -5,-31 - 6874: 38,-9 - 6875: 39,-9 - 7110: 53,-24 - 7111: 52,-24 - 7112: 52,-20 - 7113: 53,-20 + 5952: -51,-33 + 5953: -49,-33 + 6023: 24,-12 + 6024: 23,-12 + 6336: -27,-31 + 6337: -5,-31 + 6589: 38,-9 + 6590: 39,-9 + 6822: 53,-24 + 6823: 52,-24 + 6824: 52,-20 + 6825: 53,-20 - node: color: '#A46106FF' id: WarnLineS @@ -9123,23 +9106,23 @@ entities: 100: 26,-2 110: 23,-4 111: 21,-4 - 6097: 24,-18 - 6098: 26,-18 - 6099: 28,-18 - 6136: 30,-18 - 6857: 29,-5 - 6858: 31,-5 - 6883: 29,-2 + 5971: 24,-18 + 5972: 26,-18 + 5973: 28,-18 + 6010: 30,-18 + 6572: 29,-5 + 6573: 31,-5 + 6598: 29,-2 - node: color: '#FFFFFFFF' id: WarnLineS decals: 55: -48,48 - 6145: 25,-15 - 6146: 25,-14 - 6147: 25,-13 - 6615: -85,-36 - 6616: -85,-40 + 6019: 25,-15 + 6020: 25,-14 + 6021: 25,-13 + 6334: -85,-36 + 6335: -85,-40 - node: color: '#EFB341FF' id: WarnLineW @@ -9156,44 +9139,42 @@ entities: 52: -49,54 53: -50,54 54: -51,54 - 6142: 23,-16 - 6143: 24,-16 - 6382: 16,-16 - 6383: 16,-15 - 6384: 17,-15 - 6385: 17,-16 - 6386: 14,-15 - 6387: 14,-16 - 6861: 38,-5 - 6866: 37,-5 - 6867: 39,-5 - 6872: 39,-9 - 6873: 38,-9 - 7086: 58,68 - 7106: 53,-20 - 7107: 52,-20 - 7108: 53,-24 - 7109: 52,-24 + 6016: 23,-16 + 6017: 24,-16 + 6163: 17,-15 + 6164: 17,-16 + 6165: 14,-15 + 6166: 14,-16 + 6576: 38,-5 + 6581: 37,-5 + 6582: 39,-5 + 6587: 39,-9 + 6588: 38,-9 + 6801: 58,68 + 6818: 53,-20 + 6819: 52,-20 + 6820: 53,-24 + 6821: 52,-24 - node: color: '#F9801DFF' id: WoodTrimThinBox decals: - 5862: 50,21 - 5863: 50,20 - 5864: 50,19 - 5865: 51,19 - 5866: 52,19 - 5867: 52,20 - 5868: 52,21 + 5736: 50,21 + 5737: 50,20 + 5738: 50,19 + 5739: 51,19 + 5740: 52,19 + 5741: 52,20 + 5742: 52,21 - node: color: '#A05212FF' id: WoodTrimThinLineN decals: - 6619: -44,63 - 6620: -43,63 - 6621: -42,61 - 6622: -40,59 - 6623: -41,61 + 6338: -44,63 + 6339: -43,63 + 6340: -42,61 + 6341: -40,59 + 6342: -41,61 - node: color: '#F9801DFF' id: a @@ -9204,7 +9185,7 @@ entities: color: '#FED83DFF' id: arrow decals: - 6101: 6,-23 + 5975: 6,-23 - node: color: '#F9801DFF' id: b @@ -9214,30 +9195,30 @@ entities: color: '#F38BAAFF' id: bushsnowa2 decals: - 4691: -19.678429,33.233334 - 4692: -18.334679,33.243755 + 4593: -19.678429,33.233334 + 4594: -18.334679,33.243755 - node: color: '#C74EBDFF' id: bushsnowa3 decals: - 4706: 3.915956,16.574316 + 4608: 3.915956,16.574316 - node: color: '#F38BAAFF' id: bushsnowb1 decals: - 4690: -20.345095,33.316723 - 4694: -16.91801,33.285454 - 4719: -5.8489337,14.129818 + 4592: -20.345095,33.316723 + 4596: -16.91801,33.285454 + 4621: -5.8489337,14.129818 - node: color: '#C74EBDFF' id: bushsnowb3 decals: - 4707: 3.9367895,13.957914 + 4609: 3.9367895,13.957914 - node: color: '#F38BAAFF' id: bushsnowb3 decals: - 4693: -17.522179,33.285454 + 4595: -17.522179,33.285454 - node: color: '#F9801DFF' id: c @@ -9283,10 +9264,10 @@ entities: color: '#DE3A3A96' id: splatter decals: - 1250: -89.4601,16.486204 - 1251: -95.6476,25.54684 - 2063: 27.42955,44.18722 - 4126: -76.59161,11.500187 + 1207: -89.4601,16.486204 + 1208: -95.6476,25.54684 + 1987: 27.42955,44.18722 + 7008: -74.51241,13.30559 type: DecalGrid - version: 2 data: @@ -10159,8 +10140,7 @@ entities: -1,14: 0: 65535 -1,15: - 0: 4095 - 2: 61440 + 0: 65535 -8,20: 0: 65535 -8,21: @@ -10230,8 +10210,7 @@ entities: -3,17: 0: 65535 -3,18: - 0: 32767 - 2: 32768 + 0: 65535 -3,19: 0: 65527 -2,16: @@ -10239,16 +10218,13 @@ entities: -2,17: 0: 65535 -2,18: - 0: 4095 - 2: 61440 + 0: 65535 -1,16: - 0: 65527 - 2: 8 + 0: 65535 -1,17: 0: 65535 -1,18: - 0: 4095 - 2: 61440 + 0: 65535 4,12: 0: 65535 4,13: @@ -10289,12 +10265,12 @@ entities: 0: 64511 7,16: 0: 24575 - 3: 8192 - 4: 32768 + 2: 8192 + 3: 32768 7,17: 0: 65365 - 3: 34 - 4: 136 + 2: 34 + 3: 136 7,18: 0: 65263 0,12: @@ -10554,8 +10530,7 @@ entities: 14,11: 0: 65535 15,8: - 0: 55159 - 2: 8320 + 0: 63479 15,9: 0: 65501 15,10: @@ -10644,32 +10619,32 @@ entities: 0: 8191 8,16: 0: 24575 - 5: 8192 - 2: 32768 + 4: 8192 + 5: 32768 8,17: 0: 65365 - 5: 34 - 2: 136 + 4: 34 + 5: 136 8,18: 0: 65535 8,19: 0: 65535 9,16: 0: 24575 - 2: 40960 + 5: 40960 9,17: 0: 65365 - 2: 170 + 5: 170 9,18: 0: 65535 9,19: 0: 65535 10,16: 0: 24575 - 2: 40960 + 5: 40960 10,17: 0: 65365 - 2: 170 + 5: 170 10,18: 0: 65535 10,19: @@ -10871,7 +10846,7 @@ entities: -21,4: 0: 65535 -21,5: - 0: 2255 + 0: 65535 -4,20: 0: 65535 -4,21: @@ -11062,8 +11037,7 @@ entities: -2,14: 0: 65535 -2,15: - 0: 4095 - 2: 61440 + 0: 65535 -2,19: 0: 65520 -1,19: @@ -11095,16 +11069,13 @@ entities: 3,7: 0: 65535 0,17: - 0: 39321 - 2: 8738 + 0: 48059 0,19: 0: 65534 0,16: - 0: 39374 - 2: 8753 + 0: 48127 0,18: - 0: 61160 - 2: 4371 + 0: 65531 1,16: 0: 65535 1,17: @@ -11258,14 +11229,11 @@ entities: -10,23: 0: 65535 -9,23: - 0: 13107 - 2: 52416 + 0: 65523 -13,26: - 0: 51336 - 2: 14199 + 0: 65535 -13,27: - 0: 36044 - 2: 51 + 0: 36095 12,1: 0: 61440 12,2: @@ -11281,20 +11249,17 @@ entities: 14,3: 0: 57343 15,14: - 0: 65528 - 2: 7 + 0: 65535 15,15: 0: 65535 -12,25: - 0: 64716 - 2: 818 + 0: 65534 -12,26: 0: 65535 -12,27: 0: 65535 -11,24: - 0: 63628 - 2: 1536 + 0: 65164 -11,25: 0: 65535 -11,26: @@ -11310,8 +11275,7 @@ entities: -10,27: 0: 65535 -9,24: - 0: 65523 - 2: 12 + 0: 65535 -9,25: 0: 65535 -9,26: @@ -11321,42 +11285,33 @@ entities: -8,28: 0: 65535 -8,29: - 0: 4095 - 2: 61440 + 0: 65535 -7,28: - 0: 32767 - 2: 32768 + 0: 65535 -7,29: - 0: 823 - 2: 64712 + 0: 65535 -12,28: - 0: 61439 - 2: 4096 + 0: 65535 -12,29: - 0: 8 - 2: 65527 + 0: 65535 -11,28: 0: 65535 -11,29: - 0: 36095 - 2: 29440 + 0: 65535 -10,28: 0: 65535 -10,29: 0: 65535 -10,30: - 0: 15 - 2: 65520 + 0: 65535 -9,28: 0: 65535 -9,29: 0: 65535 -9,30: - 0: 7 - 2: 65528 + 0: 65535 -8,24: - 0: 15256 - 2: 1 + 0: 15257 -8,25: 0: 65527 -8,26: @@ -11372,8 +11327,7 @@ entities: -6,26: 0: 4368 -6,27: - 0: 273 - 2: 65058 + 0: 65331 8,10: 0: 65535 8,11: @@ -11383,15 +11337,13 @@ entities: 9,11: 0: 65535 -13,28: - 0: 136 - 2: 61440 + 0: 61576 16,12: 0: 55544 16,13: 0: 56797 16,14: - 0: 65528 - 2: 7 + 0: 65535 16,15: 0: 65535 17,12: @@ -11411,18 +11363,15 @@ entities: 18,15: 0: 65535 19,12: - 0: 4336 - 2: 51208 + 0: 55544 19,13: - 0: 4369 - 2: 52428 + 0: 56797 19,14: 0: 65520 19,15: 0: 65535 16,8: - 0: 53248 - 2: 240 + 0: 53488 16,9: 0: 56797 16,10: @@ -11430,8 +11379,7 @@ entities: 16,11: 0: 56797 17,8: - 0: 53248 - 2: 240 + 0: 53488 17,9: 0: 56797 17,10: @@ -11439,8 +11387,7 @@ entities: 17,11: 0: 56797 18,8: - 0: 53248 - 2: 2296 + 0: 55544 18,9: 0: 56797 18,10: @@ -11448,20 +11395,15 @@ entities: 18,11: 0: 56797 19,8: - 0: 4096 - 2: 51448 + 0: 55544 19,9: - 0: 4369 - 2: 52428 + 0: 56797 19,10: - 0: 4336 - 2: 49152 + 0: 53488 19,11: - 0: 4369 - 2: 52428 + 0: 56797 20,10: - 0: 16 - 2: 53248 + 0: 53264 20,14: 0: 65296 -23,-8: @@ -11471,8 +11413,7 @@ entities: -11,23: 0: 52428 -8,23: - 0: 36863 - 2: 4096 + 0: 40959 -7,23: 0: 65535 -6,23: @@ -11496,7 +11437,7 @@ entities: -22,4: 0: 65535 -22,5: - 0: 30591 + 0: 65535 -22,6: 0: 30583 2,16: @@ -11818,48 +11759,35 @@ entities: -1,23: 0: 35022 20,8: - 0: 8 - 2: 55536 + 0: 55544 21,8: - 0: 8891 - 2: 55360 + 0: 64251 21,9: - 0: 8738 - 2: 56797 + 0: 65535 21,10: - 0: 57890 - 2: 4096 + 0: 61986 21,11: - 0: 8750 - 2: 56785 + 0: 65535 22,8: - 0: 4369 - 2: 51432 + 0: 55801 22,9: - 0: 4369 - 2: 52428 + 0: 56797 22,10: - 0: 4369 - 2: 49152 + 0: 53521 22,11: - 0: 4369 - 2: 52428 + 0: 56797 21,15: 0: 45875 21,12: - 0: 8738 - 2: 55512 + 0: 64250 21,13: - 0: 8942 - 2: 56593 + 0: 65535 21,14: 0: 13090 22,12: - 0: 4369 - 2: 51432 + 0: 55801 22,13: - 0: 4369 - 2: 52428 + 0: 56797 22,14: 0: 4369 22,15: @@ -12013,63 +11941,51 @@ entities: 17,17: 0: 4479 17,18: - 0: 4593 - 2: 57856 + 0: 62449 18,17: 0: 17647 18,18: - 0: 254 - 2: 61440 + 0: 61694 19,17: 0: 15 19,18: - 0: 240 - 2: 61440 + 0: 61680 20,16: 0: 65535 20,17: 0: 15 20,18: - 0: 240 - 2: 61440 + 0: 61680 21,16: 0: 49147 21,17: 0: 8831 21,18: - 0: 247 - 2: 61440 + 0: 61687 22,16: 0: 4369 22,17: 0: 1 22,18: - 0: 17 - 2: 61440 + 0: 61457 16,7: 0: 4095 17,7: 0: 4095 18,7: - 0: 511 - 2: 52224 + 0: 52735 19,7: - 0: 255 - 2: 56576 + 0: 56831 20,7: - 0: 50943 - 2: 6400 + 0: 57343 21,7: - 0: 61183 - 2: 4352 + 0: 65535 21,6: 0: 65527 22,6: - 0: 4369 - 2: 49152 + 0: 53521 22,7: - 0: 4369 - 2: 52428 + 0: 56797 0,-9: 0: 14464 1,-9: @@ -12443,16 +12359,13 @@ entities: 17,5: 0: 65535 18,4: - 0: 4352 - 2: 36352 + 0: 40704 18,5: 0: 65521 19,5: - 0: 65520 - 2: 1 + 0: 65521 20,5: - 0: 65520 - 2: 8 + 0: 65528 21,5: 0: 63344 16,3: @@ -12488,14 +12401,11 @@ entities: 12,-2: 0: 30591 13,-4: - 0: 61440 - 2: 4063 + 0: 65503 13,-3: - 0: 65420 - 2: 51 + 0: 65471 13,-2: - 0: 51343 - 2: 13104 + 0: 64447 13,-1: 0: 15 14,-3: @@ -12503,8 +12413,7 @@ entities: 14,-2: 0: 36079 14,-4: - 0: 34816 - 2: 273 + 0: 35089 14,-1: 0: 8 12,-7: @@ -12514,8 +12423,7 @@ entities: 12,-5: 0: 32767 20,12: - 0: 16 - 2: 55528 + 0: 55544 20,15: 0: 65535 15,16: @@ -12531,15 +12439,13 @@ entities: 17,16: 0: 65535 17,19: - 0: 17 - 2: 2 + 0: 19 18,16: 0: 65535 19,16: 0: 65535 22,5: - 0: 4096 - 2: 57344 + 0: 61440 16,21: 0: 64648 16,20: @@ -12549,194 +12455,193 @@ entities: 18,21: 0: 61440 19,21: - 0: 12288 - 2: 49152 + 0: 61440 -14,26: - 2: 2176 + 0: 2176 -13,25: - 2: 61056 + 0: 61056 -12,24: - 2: 32768 + 0: 32768 -8,30: - 2: 65535 + 0: 65535 -8,31: - 2: 16383 + 0: 16383 -7,30: - 2: 14335 + 0: 14335 -7,31: - 2: 3 + 0: 3 -6,28: - 2: 65535 + 0: 65535 -6,29: - 2: 14335 + 0: 14335 -6,30: - 2: 1 + 0: 1 -5,28: - 2: 13105 + 0: 13105 -5,29: - 2: 19 + 0: 19 -12,30: - 2: 65535 + 0: 65535 -12,31: - 2: 61439 + 0: 61439 -11,30: - 2: 65535 + 0: 65535 -11,31: - 2: 65535 + 0: 65535 -10,31: - 2: 65535 + 0: 65535 -9,31: - 2: 65535 + 0: 65535 -5,27: - 2: 4096 + 0: 4096 -15,29: - 2: 32768 + 0: 32768 -14,29: - 2: 65532 + 0: 65532 -14,30: - 2: 36095 + 0: 36095 -14,28: - 2: 32768 + 0: 32768 -13,29: - 2: 65535 + 0: 65535 -13,30: - 2: 65535 + 0: 65535 -13,31: - 2: 2287 + 0: 2287 20,9: - 2: 56797 + 0: 56797 20,11: - 2: 56797 + 0: 56797 23,8: - 2: 4336 + 0: 4336 23,9: - 2: 4369 + 0: 4369 23,10: - 2: 4096 + 0: 4096 23,11: - 2: 4369 + 0: 4369 20,13: - 2: 56797 + 0: 56797 23,12: - 2: 4336 + 0: 4336 23,13: - 2: 4369 + 0: 4369 20,19: - 2: 8 + 0: 8 21,19: - 2: 8831 + 0: 8831 23,18: - 2: 62316 + 0: 62316 23,17: - 2: 32768 + 0: 32768 19,4: - 2: 16128 + 0: 16128 20,4: - 2: 52992 + 0: 52992 21,4: - 2: 7936 + 0: 7936 22,4: - 2: 3840 + 0: 3840 23,4: - 2: 16128 + 0: 16128 23,5: - 2: 63686 + 0: 63686 23,6: - 2: 4096 + 0: 4096 23,7: - 2: 4369 + 0: 4369 24,12: - 2: 34952 + 0: 34952 24,13: - 2: 34952 + 0: 34952 24,14: - 2: 34952 + 0: 34952 24,15: - 2: 34952 + 0: 34952 25,13: - 2: 18292 + 0: 18292 25,12: - 2: 17476 + 0: 17476 25,14: - 2: 17476 + 0: 17476 25,15: - 2: 17476 + 0: 17476 24,4: - 2: 52992 + 0: 52992 24,5: - 2: 47496 + 0: 47496 24,6: - 2: 35022 + 0: 35022 24,7: - 2: 34952 + 0: 34952 25,4: - 2: 30564 + 0: 30564 25,5: - 2: 17478 + 0: 17478 25,6: - 2: 17476 + 0: 17476 25,7: - 2: 17476 + 0: 17476 24,8: - 2: 34952 + 0: 34952 24,9: - 2: 34952 + 0: 34952 24,10: - 2: 34952 + 0: 34952 24,11: - 2: 34952 + 0: 34952 25,9: - 2: 29764 + 0: 29764 25,10: - 2: 17479 + 0: 17479 25,8: - 2: 17476 + 0: 17476 25,11: - 2: 17476 + 0: 17476 24,17: - 2: 39916 + 0: 39916 24,18: - 2: 64648 + 0: 64648 24,16: - 2: 34952 + 0: 34952 25,18: - 2: 30564 + 0: 30564 25,19: - 2: 25670 + 0: 25670 25,16: - 2: 17476 + 0: 17476 25,17: - 2: 17476 + 0: 17476 20,21: - 2: 63488 + 0: 63488 21,21: - 2: 65394 + 0: 65394 21,20: - 2: 8738 + 0: 8738 22,21: - 2: 29696 + 0: 29696 25,3: - 2: 17920 + 0: 17920 -12,32: - 2: 8 + 0: 8 -11,32: - 2: 239 + 0: 239 -10,32: - 2: 28671 + 0: 28671 -9,32: - 2: 375 + 0: 375 13,-7: - 2: 65280 + 0: 65280 13,-6: - 2: 65535 + 0: 65535 13,-5: - 2: 65535 + 0: 65535 14,-7: - 2: 30464 + 0: 30464 14,-6: - 2: 30583 + 0: 30583 14,-5: - 2: 6007 + 0: 6007 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -12768,21 +12673,6 @@ entities: - 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: @@ -12828,12 +12718,29 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 type: GridAtmosphere - id: Tortuga type: BecomesStation - type: OccluderTree - - type: Shuttle + - angularDamping: 10000 + linearDamping: 10000 + type: Shuttle - type: GridPathfinding - type: RadiationGridResistance - type: GasTileOverlay @@ -12844,6 +12751,8 @@ entities: - type: Transform - type: Map - type: PhysicsMap + - parallax: TortugaStation + type: Parallax - type: Broadphase - type: OccluderTree - type: LoadedMap @@ -12864,21 +12773,13 @@ entities: pos: 32.5,-20.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 543 components: - pos: 42.5,0.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29560 - - 29546 - - 29543 - - 29544 - - 22035 - - 22037 - - 22034 - - 29297 - type: DeviceNetwork - devices: - 29560 - 29546 @@ -12889,33 +12790,25 @@ entities: - 22034 - 29297 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice + - uid: 1821 + components: + - rot: 1.5707963267948966 rad + pos: 57.5,73.5 + parent: 33 + type: Transform + - devices: + - 29635 + type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 4070 components: - rot: 1.5707963267948966 rad pos: 25.5,17.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25783 - - 25814 - - 25785 - - 1082 - - 10816 - - 10848 - - 28410 - - 25516 - - 25779 - - 10815 - - 10814 - - 10813 - - 29543 - - 324 - - 25782 - - 25809 - - 25808 - - 21892 - - 21901 - type: DeviceNetwork - devices: - 25783 - 25814 @@ -12937,38 +12830,14 @@ entities: - 21892 - 21901 type: DeviceList - - uid: 7561 - components: - - rot: 1.5707963267948966 rad - pos: 57.5,74.5 - parent: 33 - type: Transform - - ShutdownSubscribers: - - 7560 - type: DeviceNetwork - - devices: - - 7560 - type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 7948 components: - rot: 3.141592653589793 rad pos: 36.5,56.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25773 - - 10860 - - 28418 - - 25509 - - 28681 - - 7930 - - 29745 - - 29744 - - 25924 - - 13226 - - 25001 - - 20012 - type: DeviceNetwork - devices: - 25773 - 10860 @@ -12983,29 +12852,13 @@ entities: - 25001 - 20012 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 7949 components: - pos: 53.5,33.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25775 - - 10857 - - 25774 - - 25563 - - 25798 - - 2537 - - 7141 - - 25797 - - 21731 - - 21730 - - 21764 - - 21788 - - 27860 - - 27859 - - 20002 - - 29088 - type: DeviceNetwork - devices: - 25775 - 10857 @@ -13024,23 +12877,14 @@ entities: - 20002 - 29088 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 7950 components: - rot: 3.141592653589793 rad pos: 51.5,58.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25770 - - 29745 - - 29744 - - 25775 - - 27330 - - 30294 - - 30287 - - 9914 - - 7559 - type: DeviceNetwork - devices: - 25770 - 29745 @@ -13052,6 +12896,8 @@ entities: - 9914 - 7559 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 10916 components: - rot: -1.5707963267948966 rad @@ -13075,35 +12921,13 @@ entities: - 20436 - 20439 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 16563 components: - pos: 27.5,-9.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29564 - - 632 - - 403 - - 29560 - - 29561 - - 29557 - - 874 - - 17201 - - 25861 - - 16360 - - 28402 - - 16359 - - 25855 - - 10826 - - 10830 - - 16358 - - 16357 - - 16356 - - 22102 - - 22096 - - 21593 - - 24741 - type: DeviceNetwork - devices: - 29564 - 632 @@ -13128,6 +12952,8 @@ entities: - 21593 - 24741 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 18415 components: - rot: 3.141592653589793 rad @@ -13149,36 +12975,14 @@ entities: - 24296 - 24295 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 18472 components: - rot: 1.5707963267948966 rad pos: -27.5,65.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25719 - - 10900 - - 10899 - - 25720 - - 25727 - - 25723 - - 25728 - - 25717 - - 29061 - - 29060 - - 29059 - - 29058 - - 25708 - - 10891 - - 25725 - - 25729 - - 25718 - - 25726 - - 20608 - - 24275 - - 29573 - - 29572 - type: DeviceNetwork - devices: - 25719 - 10900 @@ -13203,6 +13007,8 @@ entities: - 29573 - 29572 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 19566 components: - rot: -1.5707963267948966 rad @@ -13238,11 +13044,40 @@ entities: - 22662 - 22663 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 20136 components: - pos: -17.5,85.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice + - uid: 20865 + components: + - pos: -82.5,11.5 + parent: 33 + type: Transform + - devices: + - 28476 + - 25599 + - 25593 + - 25607 + - 25598 + - 25608 + - 28494 + - 16218 + - 20857 + - 30530 + - 3583 + - 30517 + - 30518 + - 3579 + - 30519 + - 9378 + type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 24249 components: - pos: -14.5,4.5 @@ -13276,6 +13111,8 @@ entities: - 23278 - 23279 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 24266 components: - rot: 1.5707963267948966 rad @@ -13298,6 +13135,8 @@ entities: - 22750 - 22763 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 24272 components: - rot: 1.5707963267948966 rad @@ -13317,6 +13156,8 @@ entities: - 22728 - 22730 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 24273 components: - pos: -11.5,37.5 @@ -13328,7 +13169,6 @@ entities: - 24265 - 24264 - 25884 - - 3002 - 2980 - 25877 - 10873 @@ -13336,7 +13176,10 @@ entities: - 10831 - 23185 - 23186 + - 3002 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 24671 components: - pos: -10.5,40.5 @@ -13363,6 +13206,8 @@ entities: - 28438 - 28437 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 24685 components: - rot: -1.5707963267948966 rad @@ -13396,6 +13241,8 @@ entities: - 2222 - 28396 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 24777 components: - name: burn chamber air alarm @@ -13404,12 +13251,11 @@ entities: pos: 47.5,69.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 9931 - type: DeviceNetwork - devices: - 9931 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25324 components: - rot: 3.141592653589793 rad @@ -13441,6 +13287,8 @@ entities: - 15201 - 1552 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25526 components: - rot: 1.5707963267948966 rad @@ -13458,6 +13306,8 @@ entities: - 22732 - 22727 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25528 components: - pos: -41.5,-1.5 @@ -13489,6 +13339,8 @@ entities: - 22882 - 22883 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25536 components: - pos: -37.5,-5.5 @@ -13516,6 +13368,8 @@ entities: - 5226 - 28203 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25541 components: - pos: -44.5,-28.5 @@ -13538,6 +13392,8 @@ entities: - 21319 - 21320 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25547 components: - pos: -50.5,-12.5 @@ -13555,6 +13411,8 @@ entities: - 23003 - 23002 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25550 components: - rot: 1.5707963267948966 rad @@ -13572,14 +13430,13 @@ entities: - 27545 - 27529 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25552 components: - pos: -68.5,-9.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 5421 - type: DeviceNetwork - devices: - 27547 - 27556 @@ -13593,6 +13450,8 @@ entities: - 27528 - 5421 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25568 components: - pos: -66.5,-31.5 @@ -13606,6 +13465,8 @@ entities: - 21353 - 21338 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25570 components: - pos: -80.5,-16.5 @@ -13618,15 +13479,14 @@ entities: - 21140 - 21111 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25577 components: - rot: 1.5707963267948966 rad pos: -75.5,-13.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 5421 - type: DeviceNetwork - devices: - 25559 - 10956 @@ -13652,6 +13512,8 @@ entities: - 23162 - 5421 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25586 components: - rot: -1.5707963267948966 rad @@ -13674,7 +13536,10 @@ entities: - 21110 - 21130 - 21131 + - 1751 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25588 components: - rot: 1.5707963267948966 rad @@ -13692,10 +13557,11 @@ entities: - 21207 - 21206 - 21187 - - 22430 - 21042 - 21043 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25595 components: - pos: -90.5,27.5 @@ -13717,6 +13583,8 @@ entities: - 20953 - 20949 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25622 components: - rot: 1.5707963267948966 rad @@ -13731,23 +13599,8 @@ entities: - 20820 - 20843 type: DeviceList - - uid: 25624 - components: - - pos: -78.5,9.5 - parent: 33 - type: Transform - - devices: - - 28476 - - 25599 - - 25593 - - 25629 - - 25607 - - 25598 - - 25608 - - 28494 - - 16218 - - 20857 - type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25626 components: - rot: 1.5707963267948966 rad @@ -13763,6 +13616,8 @@ entities: - 20855 - 20856 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25631 components: - rot: -1.5707963267948966 rad @@ -13774,15 +13629,9 @@ entities: - 28473 - 25616 - 28459 - - 21542 - - 16302 - - 21519 - - 21513 - - 21514 - - 21520 - - 21541 - - 21550 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25639 components: - rot: -1.5707963267948966 rad @@ -13800,6 +13649,8 @@ entities: - 21640 - 21641 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25660 components: - rot: 3.141592653589793 rad @@ -13817,6 +13668,8 @@ entities: - 20728 - 20730 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25662 components: - rot: 1.5707963267948966 rad @@ -13831,6 +13684,8 @@ entities: - 20521 - 20520 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25664 components: - pos: -58.5,28.5 @@ -13851,6 +13706,8 @@ entities: - 20521 - 20520 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25666 components: - rot: -1.5707963267948966 rad @@ -13869,6 +13726,8 @@ entities: - 20489 - 20510 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25670 components: - rot: 1.5707963267948966 rad @@ -13883,6 +13742,8 @@ entities: - 20342 - 20343 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25672 components: - rot: 1.5707963267948966 rad @@ -13917,6 +13778,8 @@ entities: - 22631 - 22620 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25679 components: - pos: -63.5,-0.5 @@ -13947,6 +13810,8 @@ entities: - 23160 - 23163 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25691 components: - pos: -25.5,42.5 @@ -13981,6 +13846,8 @@ entities: - 22525 - 22526 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25694 components: - pos: -22.5,48.5 @@ -13994,6 +13861,8 @@ entities: - 22536 - 22537 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25696 components: - rot: -1.5707963267948966 rad @@ -14013,6 +13882,8 @@ entities: - 20316 - 20313 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25701 components: - rot: 3.141592653589793 rad @@ -14033,6 +13904,8 @@ entities: - 20355 - 20354 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25705 components: - pos: -39.5,53.5 @@ -14051,6 +13924,8 @@ entities: - 20262 - 20263 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25710 components: - pos: -39.5,76.5 @@ -14070,6 +13945,8 @@ entities: - 20216 - 20200 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25712 components: - pos: -34.5,76.5 @@ -14088,6 +13965,8 @@ entities: - 24252 - 24255 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25733 components: - pos: -30.5,72.5 @@ -14102,6 +13981,8 @@ entities: - 20572 - 20561 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25735 components: - rot: 1.5707963267948966 rad @@ -14118,6 +13999,8 @@ entities: - 23813 - 23791 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25736 components: - pos: -27.5,61.5 @@ -14133,6 +14016,8 @@ entities: - 20684 - 20692 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25738 components: - pos: -16.5,65.5 @@ -14153,20 +14038,14 @@ entities: - 20708 - 20709 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25740 components: - rot: -1.5707963267948966 rad pos: -25.5,93.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25717 - - 29042 - - 18726 - - 18722 - - 20015 - - 20014 - type: DeviceNetwork - devices: - 25717 - 29042 @@ -14175,24 +14054,14 @@ entities: - 20015 - 20014 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25741 components: - rot: -1.5707963267948966 rad pos: -20.5,89.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 20037 - - 20034 - - 20059 - - 20060 - - 20107 - - 20102 - - 20106 - - 20103 - - 20105 - - 20104 - type: DeviceNetwork - devices: - 25716 - 29058 @@ -14219,6 +14088,8 @@ entities: - 20034 - 20037 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25742 components: - pos: -8.5,68.5 @@ -14237,6 +14108,8 @@ entities: - 20623 - 20646 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25745 components: - pos: -17.5,76.5 @@ -14250,6 +14123,8 @@ entities: - 20591 - 20606 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25753 components: - pos: -8.5,81.5 @@ -14267,6 +14142,8 @@ entities: - 20014 - 20015 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25755 components: - pos: 3.5,91.5 @@ -14277,6 +14154,8 @@ entities: - 19884 - 19883 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25759 components: - pos: 18.5,66.5 @@ -14295,6 +14174,8 @@ entities: - 19833 - 19722 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25761 components: - pos: 9.5,63.5 @@ -14314,6 +14195,8 @@ entities: - 19792 - 19793 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25768 components: - rot: 3.141592653589793 rad @@ -14341,6 +14224,8 @@ entities: - 22521 - 22522 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25789 components: - rot: -1.5707963267948966 rad @@ -14358,6 +14243,8 @@ entities: - 21690 - 21688 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25795 components: - rot: 1.5707963267948966 rad @@ -14387,6 +14274,8 @@ entities: - 21786 - 21785 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25802 components: - rot: 1.5707963267948966 rad @@ -14408,6 +14297,8 @@ entities: - 21806 - 24268 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25804 components: - rot: 3.141592653589793 rad @@ -14423,6 +14314,8 @@ entities: - 21827 - 21829 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25810 components: - pos: 10.5,24.5 @@ -14461,6 +14354,8 @@ entities: - 23444 - 23445 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25820 components: - pos: 20.5,38.5 @@ -14492,6 +14387,8 @@ entities: - 23459 - 23479 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25822 components: - rot: 1.5707963267948966 rad @@ -14526,6 +14423,8 @@ entities: - 22281 - 22287 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25828 components: - rot: -1.5707963267948966 rad @@ -14543,6 +14442,8 @@ entities: - 23616 - 23613 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25837 components: - rot: 1.5707963267948966 rad @@ -14583,6 +14484,8 @@ entities: - 23685 - 23658 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25841 components: - pos: -1.5,20.5 @@ -14606,6 +14509,8 @@ entities: - 23259 - 23260 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25847 components: - rot: -1.5707963267948966 rad @@ -14625,6 +14530,8 @@ entities: - 23638 - 27970 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25854 components: - pos: 11.5,-7.5 @@ -14649,6 +14556,8 @@ entities: - 23689 - 23709 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25875 components: - pos: -19.5,24.5 @@ -14686,6 +14595,8 @@ entities: - 23226 - 23227 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25886 components: - rot: 1.5707963267948966 rad @@ -14725,6 +14636,8 @@ entities: - 22803 - 22802 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25895 components: - rot: -1.5707963267948966 rad @@ -14752,6 +14665,8 @@ entities: - 12895 - 12896 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25897 components: - pos: -8.5,30.5 @@ -14766,6 +14681,8 @@ entities: - 22442 - 22458 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25899 components: - rot: 1.5707963267948966 rad @@ -14781,6 +14698,8 @@ entities: - 22459 - 22443 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25901 components: - pos: -8.5,37.5 @@ -14788,13 +14707,15 @@ entities: type: Transform - devices: - 25880 - - 3002 - 2980 - 25883 - 25891 - 22417 - 22418 + - 3002 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 26796 components: - pos: -69.5,-45.5 @@ -14808,6 +14729,8 @@ entities: - 26798 - 26799 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 27239 components: - pos: -12.5,56.5 @@ -14824,6 +14747,8 @@ entities: - 27233 - 27234 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 27551 components: - rot: -1.5707963267948966 rad @@ -14838,6 +14763,8 @@ entities: - 27543 - 27531 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28398 components: - rot: 3.141592653589793 rad @@ -14858,6 +14785,8 @@ entities: - 27175 - 27174 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28404 components: - rot: 3.141592653589793 rad @@ -14876,6 +14805,8 @@ entities: - 12435 - 12431 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28405 components: - rot: 3.141592653589793 rad @@ -14892,6 +14823,8 @@ entities: - 25033 - 25160 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28408 components: - pos: 9.5,11.5 @@ -14910,6 +14843,8 @@ entities: - 27937 - 23600 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28416 components: - rot: 1.5707963267948966 rad @@ -14943,6 +14878,8 @@ entities: - 21688 - 21690 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28421 components: - rot: 1.5707963267948966 rad @@ -14964,6 +14901,8 @@ entities: - 23554 - 23553 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28422 components: - pos: 19.5,50.5 @@ -14978,6 +14917,8 @@ entities: - 22205 - 22202 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28427 components: - rot: -1.5707963267948966 rad @@ -14997,6 +14938,8 @@ entities: - 20262 - 20263 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28449 components: - rot: -1.5707963267948966 rad @@ -15019,6 +14962,8 @@ entities: - 24668 - 22609 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28452 components: - pos: -33.5,-0.5 @@ -15032,6 +14977,8 @@ entities: - 22898 - 22899 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28454 components: - rot: -1.5707963267948966 rad @@ -15048,6 +14995,8 @@ entities: - 24309 - 24325 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28460 components: - pos: -59.5,12.5 @@ -15060,7 +15009,6 @@ entities: - 28471 - 28476 - 28472 - - 25615 - 25614 - 28473 - 25616 @@ -15072,6 +15020,8 @@ entities: - 21561 - 23929 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28463 components: - rot: 1.5707963267948966 rad @@ -15093,6 +15043,8 @@ entities: - 21588 - 21602 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28465 components: - pos: -43.5,18.5 @@ -15111,6 +15063,8 @@ entities: - 28487 - 28486 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28469 components: - pos: -67.5,13.5 @@ -15123,13 +15077,15 @@ entities: - 25613 - 28471 - 28434 - - 25499 - 24192 - 5498 - - 20779 - - 20778 + - 30529 - 5192 + - 16269 + - 14914 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28489 components: - pos: -67.5,9.5 @@ -15150,6 +15106,8 @@ entities: - 28491 - 5192 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28495 components: - rot: 3.141592653589793 rad @@ -15163,7 +15121,10 @@ entities: - 20860 - 16226 - 16220 + - 1751 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28506 components: - rot: 3.141592653589793 rad @@ -15183,6 +15144,8 @@ entities: - 5309 - 16718 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28507 components: - rot: 1.5707963267948966 rad @@ -15201,6 +15164,8 @@ entities: - 21433 - 21395 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28513 components: - rot: -1.5707963267948966 rad @@ -15217,6 +15182,8 @@ entities: - 27298 - 23067 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28519 components: - rot: 1.5707963267948966 rad @@ -15235,6 +15202,8 @@ entities: - 21357 - 21364 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28523 components: - pos: -77.5,-29.5 @@ -15253,29 +15222,14 @@ entities: - 27072 - 27071 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 29558 components: - rot: -1.5707963267948966 rad pos: 35.5,-1.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25850 - - 25846 - - 29546 - - 29564 - - 29563 - - 29562 - - 25856 - - 29561 - - 29557 - - 11900 - - 12670 - - 24678 - - 24677 - - 29239 - - 9530 - type: DeviceNetwork - devices: - 25850 - 25846 @@ -15293,29 +15247,13 @@ entities: - 29239 - 9530 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 29569 components: - pos: 38.5,12.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25846 - - 29544 - - 25782 - - 400 - - 25784 - - 324 - - 21896 - - 21899 - - 29264 - - 29307 - - 29315 - - 29273 - - 29314 - - 29272 - - 29313 - - 29271 - type: DeviceNetwork - devices: - 25846 - 29544 @@ -15334,6 +15272,8 @@ entities: - 29313 - 29271 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - proto: AirAlarmElectronics entities: - uid: 683 @@ -15348,36 +15288,57 @@ entities: - pos: 43.5,69.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 10188 components: - pos: 56.5,70.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 17048 components: - pos: -41.5,-29.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 17092 components: - pos: -86.5,-31.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 17821 components: - pos: 21.5,65.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 18188 components: - pos: 4.5,90.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice + - uid: 20770 + components: + - pos: -69.5,5.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 28260 components: - pos: -98.5,-74.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - proto: Airlock entities: - uid: 2610 @@ -15390,11 +15351,17 @@ entities: - pos: -19.5,8.5 parent: 33 type: Transform + - links: + - 27776 + type: DeviceLinkSink - uid: 4715 components: - pos: -19.5,16.5 parent: 33 type: Transform + - links: + - 30619 + type: DeviceLinkSink - uid: 6886 components: - pos: 12.5,32.5 @@ -15507,41 +15474,11 @@ entities: - pos: 12.5,29.5 parent: 33 type: Transform -- proto: AirlockBrigGlassLocked +- proto: AirlockBoxerLocked entities: - - uid: 1011 - components: - - pos: -19.5,61.5 - parent: 33 - type: Transform - - uid: 1012 - components: - - pos: -20.5,61.5 - parent: 33 - type: Transform - - uid: 5807 - components: - - pos: -19.5,65.5 - parent: 33 - type: Transform - - uid: 5808 - components: - - pos: -20.5,65.5 - parent: 33 - type: Transform - - uid: 9674 - components: - - pos: -20.5,86.5 - parent: 33 - type: Transform - - uid: 11118 - components: - - pos: 12.5,1.5 - parent: 33 - type: Transform - - uid: 11119 + - uid: 6403 components: - - pos: 14.5,1.5 + - pos: 30.5,41.5 parent: 33 type: Transform - proto: AirlockCaptainGlassLocked @@ -15648,21 +15585,23 @@ entities: - pos: -44.5,-17.5 parent: 33 type: Transform -- proto: AirlockChemistryLocked +- proto: AirlockChemistryGlassLocked entities: - - uid: 798 + - uid: 1748 components: - pos: -60.5,2.5 parent: 33 type: Transform - - uid: 3863 + - uid: 2580 components: - - pos: -55.5,8.5 + - pos: -56.5,6.5 parent: 33 type: Transform - - uid: 3927 +- proto: AirlockChemistryLocked + entities: + - uid: 3863 components: - - pos: -56.5,6.5 + - pos: -55.5,8.5 parent: 33 type: Transform - proto: AirlockChiefEngineerGlassLocked @@ -15708,6 +15647,13 @@ entities: - pos: -90.5,5.5 parent: 33 type: Transform +- proto: AirlockClownLocked + entities: + - uid: 6874 + components: + - pos: -16.5,15.5 + parent: 33 + type: Transform - proto: AirlockCommandGlassLocked entities: - uid: 1366 @@ -15925,11 +15871,6 @@ entities: - pos: 3.5,45.5 parent: 33 type: Transform - - uid: 16135 - components: - - pos: -83.5,16.5 - parent: 33 - type: Transform - uid: 16634 components: - pos: -22.5,-2.5 @@ -15945,14 +15886,14 @@ entities: - pos: -56.5,20.5 parent: 33 type: Transform - - uid: 25903 + - uid: 23955 components: - - pos: 58.5,69.5 + - pos: -83.5,20.5 parent: 33 type: Transform - - uid: 26002 + - uid: 25903 components: - - pos: 58.5,72.5 + - pos: 58.5,69.5 parent: 33 type: Transform - proto: AirlockExternalEasyPry @@ -16372,24 +16313,28 @@ entities: - pos: -100.5,-75.5 parent: 33 type: Transform -- proto: AirlockFreezerKitchenHydroLocked +- proto: AirlockFreezer entities: - - uid: 3080 + - uid: 3081 components: - - pos: -8.5,40.5 + - pos: -4.5,37.5 parent: 33 type: Transform - - uid: 3081 +- proto: AirlockFreezerHydroponicsLocked + entities: + - uid: 2666 components: - - pos: -6.5,38.5 + - pos: -8.5,40.5 parent: 33 type: Transform - - uid: 3085 + - uid: 2667 components: - - pos: -4.5,37.5 + - pos: -6.5,38.5 parent: 33 type: Transform - - uid: 3097 +- proto: AirlockFreezerKitchenHydroLocked + entities: + - uid: 1747 components: - pos: -6.5,41.5 parent: 33 @@ -16541,16 +16486,6 @@ entities: - pos: 8.5,5.5 parent: 33 type: Transform - - uid: 6403 - components: - - pos: 8.5,16.5 - parent: 33 - type: Transform - - uid: 6404 - components: - - pos: 8.5,15.5 - parent: 33 - type: Transform - uid: 6846 components: - pos: 12.5,37.5 @@ -16695,6 +16630,30 @@ entities: - pos: -5.5,35.5 parent: 33 type: Transform + - uid: 28536 + components: + - pos: -9.5,35.5 + parent: 33 + type: Transform +- proto: AirlockLawyerGlassLocked + entities: + - uid: 456 + components: + - pos: 14.5,1.5 + parent: 33 + type: Transform + - uid: 798 + components: + - pos: 12.5,1.5 + parent: 33 + type: Transform +- proto: AirlockLibraryLocked + entities: + - uid: 6089 + components: + - pos: -71.5,-33.5 + parent: 33 + type: Transform - proto: AirlockMailGlassLocked entities: - uid: 14 @@ -16714,6 +16673,11 @@ entities: type: Transform - proto: AirlockMaint entities: + - uid: 281 + components: + - pos: -63.5,-39.5 + parent: 33 + type: Transform - uid: 322 components: - pos: 18.5,18.5 @@ -16907,11 +16871,6 @@ entities: type: Transform - proto: AirlockMaintChapelLocked entities: - - uid: 2313 - components: - - pos: -63.5,-39.5 - parent: 33 - type: Transform - uid: 16694 components: - pos: -42.5,-17.5 @@ -17016,19 +16975,14 @@ entities: type: Transform - proto: AirlockMaintLocked entities: - - uid: 8763 - components: - - pos: 13.5,64.5 - parent: 33 - type: Transform - - uid: 10700 + - uid: 3125 components: - pos: 16.5,3.5 parent: 33 type: Transform - - uid: 10839 + - uid: 8763 components: - - pos: 17.5,16.5 + - pos: 13.5,64.5 parent: 33 type: Transform - uid: 13779 @@ -17053,9 +17007,16 @@ entities: - pos: 15.5,7.5 parent: 33 type: Transform - - uid: 20865 + - uid: 20800 components: - - pos: -81.5,11.5 + - pos: -82.5,13.5 + parent: 33 + type: Transform +- proto: AirlockMaintReporterLocked + entities: + - uid: 3610 + components: + - pos: 17.5,16.5 parent: 33 type: Transform - proto: AirlockMaintRnDLocked @@ -17067,9 +17028,9 @@ entities: type: Transform - proto: AirlockMaintRnDMedLocked entities: - - uid: 2815 + - uid: 2313 components: - - pos: -75.5,17.5 + - pos: -72.5,17.5 parent: 33 type: Transform - uid: 8261 @@ -17148,11 +17109,19 @@ entities: - pos: -81.5,6.5 parent: 33 type: Transform + - uid: 1763 + components: + - pos: -63.5,6.5 + parent: 33 + type: Transform - uid: 3821 components: - pos: -49.5,11.5 parent: 33 type: Transform + - links: + - 30636 + type: DeviceLinkSink - uid: 3895 components: - pos: -42.5,18.5 @@ -17178,11 +17147,6 @@ entities: - pos: -74.5,8.5 parent: 33 type: Transform - - uid: 8923 - components: - - pos: -44.5,-0.5 - parent: 33 - type: Transform - uid: 18504 components: - pos: -63.5,13.5 @@ -17205,21 +17169,39 @@ entities: - pos: -70.5,11.5 parent: 33 type: Transform - - uid: 7042 +- proto: AirlockMedicalScienceGlassLocked + entities: + - uid: 1768 components: - - pos: -49.5,3.5 + - pos: -72.5,9.5 parent: 33 type: Transform - - uid: 18530 +- proto: AirlockMimeLocked + entities: + - uid: 6404 + components: + - pos: -16.5,9.5 + parent: 33 + type: Transform +- proto: AirlockParamedicLocked + entities: + - uid: 1753 components: - pos: -60.5,13.5 parent: 33 type: Transform -- proto: AirlockMedicalScienceGlassLocked +- proto: AirlockPsychologistGlassLocked entities: - - uid: 1768 + - uid: 3927 components: - - pos: -72.5,9.5 + - pos: -44.5,-0.5 + parent: 33 + type: Transform +- proto: AirlockPsychologistLocked + entities: + - uid: 4713 + components: + - pos: -49.5,3.5 parent: 33 type: Transform - proto: AirlockQuartermasterGlassLocked @@ -17229,6 +17211,18 @@ entities: - pos: 33.5,0.5 parent: 33 type: Transform +- proto: AirlockReporterGlassLocked + entities: + - uid: 3085 + components: + - pos: 8.5,15.5 + parent: 33 + type: Transform + - uid: 3121 + components: + - pos: 8.5,16.5 + parent: 33 + type: Transform - proto: AirlockResearchDirectorGlassLocked entities: - uid: 16516 @@ -17307,6 +17301,11 @@ entities: - pos: -81.5,-17.5 parent: 33 type: Transform + - uid: 20772 + components: + - pos: -79.5,-3.5 + parent: 33 + type: Transform - uid: 28695 components: - pos: -70.5,-12.5 @@ -17502,6 +17501,33 @@ entities: - pos: -34.5,94.5 parent: 33 type: Transform +- proto: AirlockSecurityLawyerGlassLocked + entities: + - uid: 1011 + components: + - pos: -19.5,61.5 + parent: 33 + type: Transform + - uid: 1012 + components: + - pos: -20.5,61.5 + parent: 33 + type: Transform + - uid: 5807 + components: + - pos: -19.5,65.5 + parent: 33 + type: Transform + - uid: 5808 + components: + - pos: -20.5,65.5 + parent: 33 + type: Transform + - uid: 9674 + components: + - pos: -20.5,86.5 + parent: 33 + type: Transform - proto: AirlockSecurityLocked entities: - uid: 3675 @@ -17535,21 +17561,11 @@ entities: type: Transform - proto: AirlockServiceLocked entities: - - uid: 456 - components: - - pos: -71.5,-33.5 - parent: 33 - type: Transform - uid: 6358 components: - pos: -18.5,-12.5 parent: 33 type: Transform - - uid: 6874 - components: - - pos: 30.5,41.5 - parent: 33 - type: Transform - proto: AirlockTheatreLocked entities: - uid: 2416 @@ -17562,21 +17578,11 @@ entities: - pos: 2.5,16.5 parent: 33 type: Transform - - uid: 2580 - components: - - pos: -16.5,9.5 - parent: 33 - type: Transform - uid: 4700 components: - pos: -16.5,12.5 parent: 33 type: Transform - - uid: 4713 - components: - - pos: -16.5,15.5 - parent: 33 - type: Transform - uid: 6164 components: - pos: 23.5,38.5 @@ -17589,46 +17595,25 @@ entities: type: Transform - proto: AirlockVirologyGlassLocked entities: - - uid: 3574 - components: - - pos: -65.5,2.5 - parent: 33 - type: Transform - - uid: 4104 + - uid: 25628 components: - - pos: -63.5,6.5 + - pos: -77.5,9.5 parent: 33 type: Transform - proto: AirSensor entities: - - uid: 7560 - components: - - rot: 1.5707963267948966 rad - pos: 60.5,75.5 - parent: 33 - type: Transform - - ShutdownSubscribers: - - 7561 - type: DeviceNetwork - uid: 7930 components: - rot: 3.141592653589793 rad pos: 51.5,71.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 232 - - 7948 - type: DeviceNetwork - uid: 9931 components: - rot: 1.5707963267948966 rad pos: 51.5,79.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 24777 - type: DeviceNetwork - uid: 21135 components: - pos: -76.5,-18.5 @@ -17700,6 +17685,8 @@ entities: - pos: -30.5,-4.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 25538 components: - pos: -39.5,-30.5 @@ -17841,11 +17828,6 @@ entities: - pos: -63.5,2.5 parent: 33 type: Transform - - uid: 25615 - components: - - pos: -67.5,1.5 - parent: 33 - type: Transform - uid: 25616 components: - pos: -53.5,3.5 @@ -18000,10 +17982,6 @@ entities: - pos: -34.5,74.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 573 - - 18472 - type: DeviceNetwork - uid: 25709 components: - pos: -36.5,79.5 @@ -18019,55 +17997,31 @@ entities: - pos: -17.5,83.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 542 - type: DeviceNetwork - uid: 25716 components: - pos: -24.5,64.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 542 - type: DeviceNetwork - uid: 25717 components: - pos: -23.5,85.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 4439 - - 25740 - - 573 - - 18472 - type: DeviceNetwork - uid: 25718 components: - pos: -30.5,59.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 573 - - 18472 - type: DeviceNetwork - uid: 25719 components: - pos: -19.5,59.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 573 - - 18472 - type: DeviceNetwork - uid: 25720 components: - pos: -11.5,68.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 573 - - 18472 - type: DeviceNetwork - uid: 25721 components: - pos: -6.5,69.5 @@ -18083,10 +18037,6 @@ entities: - pos: -14.5,74.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 573 - - 18472 - type: DeviceNetwork - uid: 25724 components: - pos: -41.5,58.5 @@ -18097,10 +18047,6 @@ entities: - pos: -31.5,69.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 573 - - 18472 - type: DeviceNetwork - uid: 25744 components: - pos: -12.5,62.5 @@ -18116,9 +18062,6 @@ entities: - pos: -26.5,91.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 542 - type: DeviceNetwork - uid: 25757 components: - pos: 24.5,68.5 @@ -18149,10 +18092,6 @@ entities: - pos: 38.5,58.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 138 - - 7950 - type: DeviceNetwork - uid: 25771 components: - pos: 27.5,49.5 @@ -18168,30 +18107,16 @@ entities: - pos: 46.5,48.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 7948 - - 232 - type: DeviceNetwork - uid: 25774 components: - pos: 44.5,22.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 233 - - 7949 - type: DeviceNetwork - uid: 25775 components: - pos: 49.5,49.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 233 - - 7949 - - 138 - - 7950 - type: DeviceNetwork - uid: 25776 components: - pos: 45.5,19.5 @@ -18212,47 +18137,26 @@ entities: - pos: 31.5,21.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 24397 - - 4070 - type: DeviceNetwork - uid: 25782 components: - pos: 27.5,8.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 24397 - - 29569 - - 4070 - type: DeviceNetwork - uid: 25783 components: - pos: 22.5,14.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 24397 - - 4070 - type: DeviceNetwork - uid: 25784 components: - pos: 27.5,16.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25747 - - 29569 - type: DeviceNetwork - uid: 25785 components: - pos: 17.5,22.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 24397 - - 4070 - type: DeviceNetwork - uid: 25786 components: - pos: 29.5,40.5 @@ -18340,47 +18244,26 @@ entities: - pos: 39.5,2.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29559 - - 29558 - - 29569 - type: DeviceNetwork - uid: 25850 components: - pos: 45.5,0.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29559 - - 29558 - type: DeviceNetwork - uid: 25855 components: - pos: 9.5,-13.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 352 - - 16563 - type: DeviceNetwork - uid: 25856 components: - pos: 21.5,-10.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29559 - - 29558 - type: DeviceNetwork - uid: 25861 components: - pos: 22.5,-20.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 352 - - 16563 - type: DeviceNetwork - uid: 25877 components: - pos: -7.5,22.5 @@ -18507,19 +18390,11 @@ entities: - pos: 13.5,-20.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 352 - - 16563 - type: DeviceNetwork - uid: 28410 components: - pos: 36.5,41.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 24397 - - 4070 - type: DeviceNetwork - uid: 28414 components: - pos: 39.5,24.5 @@ -18531,10 +18406,6 @@ entities: pos: 24.5,56.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 7948 - - 232 - type: DeviceNetwork - uid: 28419 components: - rot: 1.5707963267948966 rad @@ -18610,56 +18481,33 @@ entities: pos: 60.5,61.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 232 - - 7948 - type: DeviceNetwork - uid: 29543 components: - pos: 46.5,10.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 366 - - 543 - - 24397 - - 4070 - type: DeviceNetwork - uid: 29557 components: - rot: 1.5707963267948966 rad pos: 34.5,-19.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29559 - - 29558 - - 352 - - 16563 - type: DeviceNetwork - uid: 29560 components: - rot: -1.5707963267948966 rad pos: 34.5,-6.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 366 - - 543 - - 352 - - 16563 - type: DeviceNetwork - uid: 29564 components: - pos: 25.5,-2.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29559 - - 29558 - - 352 - - 16563 - type: DeviceNetwork + - uid: 29635 + components: + - pos: 62.5,73.5 + parent: 33 + type: Transform - proto: AirTank entities: - uid: 19166 @@ -18808,159 +18656,205 @@ entities: entities: - uid: 296 components: + - name: mailroom/logistics breakroom APC + type: MetaData - rot: 1.5707963267948966 rad pos: 19.5,-19.5 parent: 33 type: Transform - - uid: 5353 + - uid: 4413 components: - - rot: 3.141592653589793 rad - pos: 38.5,55.5 + - name: epistemics laboratory APC + type: MetaData + - rot: -1.5707963267948966 rad + pos: -74.5,-3.5 parent: 33 type: Transform - uid: 5855 components: + - name: armory/comms room APC + type: MetaData - rot: 3.141592653589793 rad pos: -11.5,64.5 parent: 33 type: Transform - - uid: 7117 + - uid: 7103 components: - - pos: 9.5,56.5 + - name: janitorial APC + type: MetaData + - rot: 1.5707963267948966 rad + pos: 9.5,56.5 parent: 33 type: Transform - - uid: 8754 + - uid: 7947 + components: + - name: HoS APC + type: MetaData + - rot: -1.5707963267948966 rad + pos: -15.5,74.5 + parent: 33 + type: Transform + - uid: 8166 components: + - name: satelite APC + type: MetaData - rot: 3.141592653589793 rad - pos: -26.5,88.5 + pos: -98.5,-79.5 parent: 33 type: Transform - uid: 8804 components: + - name: bridge/vault backup APC + type: MetaData - pos: -41.5,37.5 parent: 33 type: Transform - uid: 10301 components: + - name: gravity generator APC + type: MetaData - rot: 1.5707963267948966 rad pos: 35.5,33.5 parent: 33 type: Transform - uid: 13326 components: + - name: North maintenance APC + type: MetaData - rot: -1.5707963267948966 rad pos: -14.5,58.5 parent: 33 type: Transform - uid: 13553 components: + - name: East maintenence APC + type: MetaData - pos: 32.5,10.5 parent: 33 type: Transform - uid: 14232 components: + - name: arcade/borg repair APC + type: MetaData - pos: 3.5,59.5 parent: 33 type: Transform - uid: 14353 components: + - name: EVA room APC + type: MetaData - pos: -21.5,48.5 parent: 33 type: Transform - uid: 14809 components: + - name: court room APC + type: MetaData - rot: 3.141592653589793 rad pos: -23.5,25.5 parent: 33 type: Transform - uid: 14875 components: + - name: CMO APC + type: MetaData - rot: 3.141592653589793 rad pos: -88.5,5.5 parent: 33 type: Transform - uid: 15227 components: + - name: arrivals APC + type: MetaData - rot: -1.5707963267948966 rad pos: -18.5,-5.5 parent: 33 type: Transform - - uid: 15611 - components: - - pos: -15.5,74.5 - parent: 33 - type: Transform - uid: 15677 components: + - name: evac APC + type: MetaData - pos: -34.5,53.5 parent: 33 type: Transform - uid: 16201 components: + - name: surgery/virology APC + type: MetaData - pos: -79.5,9.5 parent: 33 type: Transform - - uid: 16300 - components: - - rot: 1.5707963267948966 rad - pos: -70.5,2.5 - parent: 33 - type: Transform - - uid: 16521 - components: - - pos: -78.5,-4.5 - parent: 33 - type: Transform - uid: 16823 components: + - name: library APC + type: MetaData - pos: -72.5,-33.5 parent: 33 type: Transform - uid: 18163 components: + - name: chapel APC + type: MetaData - rot: -1.5707963267948966 rad pos: -40.5,-15.5 parent: 33 type: Transform - uid: 18366 components: + - name: forensic mantis APC + type: MetaData - pos: -52.5,-11.5 parent: 33 type: Transform - uid: 21139 components: + - name: epistemics blast chamber APC + type: MetaData - rot: 3.141592653589793 rad pos: -80.5,-22.5 parent: 33 type: Transform + - uid: 23941 + components: + - name: cryogenics APC + type: MetaData + - rot: 3.141592653589793 rad + pos: -67.5,-0.5 + parent: 33 + type: Transform - uid: 25451 components: + - name: dorms APC + type: MetaData - pos: -17.5,16.5 parent: 33 type: Transform - uid: 25458 components: + - name: CE APC + type: MetaData - pos: 39.5,20.5 parent: 33 type: Transform - - uid: 28113 - components: - - pos: -98.5,-79.5 - parent: 33 - type: Transform - uid: 28216 components: + - name: East central maintenance APC + type: MetaData - rot: 1.5707963267948966 rad pos: 20.5,5.5 parent: 33 type: Transform - uid: 28542 components: + - name: South maintenance APC + type: MetaData - pos: -67.5,-45.5 parent: 33 type: Transform - uid: 29345 components: + - name: cargo dock APC + type: MetaData - pos: 35.5,-12.5 parent: 33 type: Transform @@ -18982,84 +18876,122 @@ entities: entities: - uid: 4636 components: + - name: TEG/burn chamber APC + type: MetaData - rot: 1.5707963267948966 rad pos: 47.5,63.5 parent: 33 type: Transform + - uid: 5353 + components: + - name: atmospherics main APC + type: MetaData + - rot: 3.141592653589793 rad + pos: 38.5,55.5 + parent: 33 + type: Transform - uid: 6298 components: + - name: boxing ring/bar APC + type: MetaData - rot: 3.141592653589793 rad pos: 40.5,38.5 parent: 33 type: Transform - - uid: 8166 + - uid: 7117 components: + - name: detective/jail cells APC + type: MetaData - rot: 3.141592653589793 rad - pos: 42.5,51.5 + pos: -26.5,88.5 parent: 33 type: Transform - uid: 13329 components: + - name: kitchen APC + type: MetaData - rot: 3.141592653589793 rad pos: -3.5,30.5 parent: 33 type: Transform + - uid: 13403 + components: + - name: AME APC + type: MetaData + - rot: 3.141592653589793 rad + pos: 49.5,23.5 + parent: 33 + type: Transform - uid: 13978 components: + - name: engineering main hallway APC + type: MetaData - rot: 3.141592653589793 rad pos: 42.5,38.5 parent: 33 type: Transform - uid: 14251 components: + - name: security main APC + type: MetaData - pos: -15.5,61.5 parent: 33 type: Transform - uid: 14808 components: + - name: hydroponics APC + type: MetaData - pos: -11.5,40.5 parent: 33 type: Transform - uid: 14876 components: + - name: morgue/cloning APC + type: MetaData - rot: -1.5707963267948966 rad pos: -70.5,13.5 parent: 33 type: Transform - uid: 15226 components: + - name: West hallway APC + type: MetaData - rot: 1.5707963267948966 rad pos: -22.5,-5.5 parent: 33 type: Transform - uid: 15974 components: + - name: conference room/captain's quarters APC + type: MetaData - pos: -63.5,25.5 parent: 33 type: Transform - uid: 16039 components: + - name: bridge/vault APC + type: MetaData - pos: -55.5,28.5 parent: 33 type: Transform - uid: 16324 components: + - name: chemistry lab APC + type: MetaData - pos: -56.5,4.5 parent: 33 type: Transform - uid: 22814 components: + - name: HoP APC + type: MetaData - pos: -35.5,17.5 parent: 33 type: Transform - - uid: 29193 - components: - - rot: 3.141592653589793 rad - pos: 49.5,23.5 - parent: 33 - type: Transform - uid: 29346 components: + - name: salvage dock/LO office APC + type: MetaData - pos: 28.5,-5.5 parent: 33 type: Transform @@ -19067,76 +18999,103 @@ entities: entities: - uid: 13327 components: + - name: hallway main loop APC + type: MetaData - rot: 3.141592653589793 rad pos: 5.5,44.5 parent: 33 type: Transform - proto: APCSuperCapacity entities: + - uid: 4394 + components: + - name: West maintenance APC + type: MetaData + - pos: -83.5,23.5 + parent: 33 + type: Transform - uid: 4602 components: + - name: epistemics main APC + type: MetaData - pos: -69.5,-9.5 parent: 33 type: Transform - uid: 6718 components: + - name: Northeast maintenance APC + type: MetaData - rot: 3.141592653589793 rad pos: 40.5,51.5 parent: 33 type: Transform - - uid: 8183 - components: - - pos: -83.5,19.5 - parent: 33 - type: Transform - uid: 13031 components: + - name: engineering main APC + type: MetaData - rot: 1.5707963267948966 rad pos: 35.5,26.5 parent: 33 type: Transform - - uid: 13741 - components: - - pos: 26.5,-9.5 - parent: 33 - type: Transform - uid: 14363 components: + - name: North hallway APC + type: MetaData - pos: 5.5,47.5 parent: 33 type: Transform - uid: 14919 components: + - name: medical main APC + type: MetaData - rot: -1.5707963267948966 rad pos: -45.5,18.5 parent: 33 type: Transform - uid: 15629 components: + - name: warden/perma APC + type: MetaData - rot: 3.141592653589793 rad pos: -32.5,66.5 parent: 33 type: Transform - uid: 25472 components: + - name: mining shaft APC + type: MetaData - rot: -1.5707963267948966 rad pos: -38.5,94.5 parent: 33 type: Transform - uid: 27566 components: + - name: CMO/anomaly lab APC + type: MetaData - rot: 3.141592653589793 rad pos: -59.5,-23.5 parent: 33 type: Transform - uid: 28027 components: + - name: medical locker/break room APC + type: MetaData - rot: 3.141592653589793 rad pos: -62.5,9.5 parent: 33 type: Transform + - uid: 28065 + components: + - name: logistics front desk APC + type: MetaData + - rot: 3.141592653589793 rad + pos: 23.5,-17.5 + parent: 33 + type: Transform - uid: 28214 components: + - name: East hall/lawyer/reporter/tool room APC + type: MetaData - rot: 1.5707963267948966 rad pos: 20.5,8.5 parent: 33 @@ -19195,6 +19154,138 @@ entities: pos: -59.737926,-21.253729 parent: 33 type: Transform +- proto: Ashtray + entities: + - uid: 30644 + components: + - pos: 21.785421,40.49207 + parent: 33 + type: Transform + - uid: 30645 + components: + - pos: 19.306253,41.112465 + parent: 33 + type: Transform + - uid: 30646 + components: + - pos: 15.650004,34.597527 + parent: 33 + type: Transform + - uid: 30647 + components: + - pos: 18.025003,29.517328 + parent: 33 + type: Transform + - uid: 30648 + components: + - pos: 24.585476,31.706348 + parent: 33 + type: Transform + - uid: 30649 + components: + - pos: 41.631992,46.44699 + parent: 33 + type: Transform + - uid: 30650 + components: + - pos: 39.784435,17.68415 + parent: 33 + type: Transform + - uid: 30651 + components: + - pos: 42.47398,2.4524982 + parent: 33 + type: Transform + - uid: 30652 + components: + - pos: 23.79591,-24.0813 + parent: 33 + type: Transform + - uid: 30653 + components: + - pos: -17.078794,-21.356907 + parent: 33 + type: Transform + - uid: 30654 + components: + - pos: -0.703934,19.830574 + parent: 33 + type: Transform + - uid: 30655 + components: + - pos: -1.2454722,34.1124 + parent: 33 + type: Transform + - uid: 30656 + components: + - pos: -16.964224,28.31671 + parent: 33 + type: Transform + - uid: 30657 + components: + - pos: -18.196665,5.4970713 + parent: 33 + type: Transform + - uid: 30658 + components: + - pos: -13.553229,6.43438 + parent: 33 + type: Transform + - uid: 30659 + components: + - pos: 20.726538,69.19959 + parent: 33 + type: Transform + - uid: 30660 + components: + - pos: 24.580706,71.826416 + parent: 33 + type: Transform + - uid: 30661 + components: + - pos: -18.231598,88.811935 + parent: 33 + type: Transform + - uid: 30662 + components: + - pos: -28.748508,90.55744 + parent: 33 + type: Transform + - uid: 30663 + components: + - pos: -67.414665,32.75231 + parent: 33 + type: Transform + - uid: 30664 + components: + - pos: -66.78981,14.752421 + parent: 33 + type: Transform + - uid: 30665 + components: + - pos: -91.899734,-21.511005 + parent: 33 + type: Transform + - uid: 30666 + components: + - pos: -85.30027,-2.958783 + parent: 33 + type: Transform + - uid: 30667 + components: + - pos: -50.397152,41.705345 + parent: 33 + type: Transform + - uid: 30668 + components: + - pos: -50.162857,116.55469 + parent: 33 + type: Transform + - uid: 30686 + components: + - pos: 19.955727,56.55174 + parent: 33 + type: Transform - proto: AsteroidAltRock entities: - uid: 990 @@ -20385,6 +20476,16 @@ entities: - pos: -99.5,-27.5 parent: 33 type: Transform +- proto: BaseGasCondenser + entities: + - uid: 3404 + components: + - rot: 3.141592653589793 rad + pos: -55.5,0.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice - proto: Basketball entities: - uid: 8385 @@ -20411,11 +20512,18 @@ entities: - pos: -57.65657,-13.13706 parent: 33 type: Transform + - uid: 5543 + components: + - pos: -62.642666,0.82863003 + parent: 33 + type: Transform - uid: 18211 components: - pos: -90.5095,-28.06491 parent: 33 type: Transform + - enabled: False + type: CollisionWake - sleepingAllowed: False type: Physics - uid: 28328 @@ -20659,14 +20767,16 @@ entities: type: Transform - proto: BedsheetGreen entities: - - uid: 4117 + - uid: 14877 components: - - pos: -69.5,1.5 + - rot: 3.141592653589793 rad + pos: -80.5,16.5 parent: 33 type: Transform - - uid: 4119 + - uid: 20784 components: - - pos: -69.5,4.5 + - rot: 3.141592653589793 rad + pos: -77.5,16.5 parent: 33 type: Transform - proto: BedsheetHOS @@ -20853,6 +20963,42 @@ entities: - pos: 31.5,39.5 parent: 33 type: Transform +- proto: BenchParkLeft + entities: + - uid: 30552 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 33 + type: Transform + - uid: 30553 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 33 + type: Transform +- proto: BenchParkRight + entities: + - uid: 30554 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 33 + type: Transform + - uid: 30555 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,10.5 + parent: 33 + type: Transform +- proto: BenchSofaCorpCorner + entities: + - uid: 30584 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-7.5 + parent: 33 + type: Transform - proto: BenchSofaCorpLeft entities: - uid: 11357 @@ -20861,6 +21007,18 @@ entities: pos: -102.5,8.5 parent: 33 type: Transform + - uid: 30582 + components: + - pos: -9.5,-7.5 + parent: 33 + type: Transform +- proto: BenchSofaCorpMiddle + entities: + - uid: 30583 + components: + - pos: -10.5,-7.5 + parent: 33 + type: Transform - proto: BenchSofaCorpRight entities: - uid: 11094 @@ -20869,6 +21027,12 @@ entities: pos: -101.5,8.5 parent: 33 type: Transform + - uid: 30585 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-8.5 + parent: 33 + type: Transform - proto: BenchSteelLeft entities: - uid: 970 @@ -20913,6 +21077,12 @@ entities: pos: -30.5,-29.5 parent: 33 type: Transform + - uid: 6901 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-5.5 + parent: 33 + type: Transform - uid: 10539 components: - rot: 1.5707963267948966 rad @@ -20924,6 +21094,14 @@ entities: - pos: -83.5,-29.5 parent: 33 type: Transform +- proto: BenchSteelMiddle + entities: + - uid: 30581 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-5.5 + parent: 33 + type: Transform - proto: BenchSteelRight entities: - uid: 969 @@ -20979,11 +21157,17 @@ entities: - pos: -82.5,-29.5 parent: 33 type: Transform + - uid: 30580 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-5.5 + parent: 33 + type: Transform - proto: BiomassReclaimer entities: - - uid: 4369 + - uid: 4088 components: - - pos: -72.5,16.5 + - pos: -74.5,11.5 parent: 33 type: Transform - proto: BirdToyInstrument @@ -21106,7 +21290,7 @@ entities: parent: 33 type: Transform - links: - - 18121 + - 18123 type: DeviceLinkSink - uid: 18092 components: @@ -21114,7 +21298,7 @@ entities: parent: 33 type: Transform - links: - - 18121 + - 18123 type: DeviceLinkSink - uid: 25359 components: @@ -21504,191 +21688,189 @@ entities: pos: 11.452223,5.554437 parent: 33 type: Transform -- proto: Bookshelf +- proto: BookshelfFilled entities: - uid: 144 components: - - pos: 20.5,-26.5 + - pos: 20.5,-27.5 parent: 33 type: Transform - uid: 145 components: - - pos: 20.5,-27.5 + - pos: 20.5,-26.5 parent: 33 type: Transform - - uid: 3465 + - uid: 524 components: - pos: -69.5,35.5 parent: 33 type: Transform - - uid: 3547 + - uid: 525 components: - - pos: -65.5,28.5 + - pos: -64.5,28.5 parent: 33 type: Transform - - uid: 3548 + - uid: 526 components: - - pos: -64.5,28.5 + - pos: -65.5,28.5 parent: 33 type: Transform - - uid: 4796 + - uid: 527 components: - pos: -67.5,-24.5 parent: 33 type: Transform - - uid: 4797 + - uid: 3465 components: - pos: -66.5,-24.5 parent: 33 type: Transform - - uid: 4798 + - uid: 3547 components: - pos: -65.5,-24.5 parent: 33 type: Transform - - uid: 4799 + - uid: 3548 components: - pos: -64.5,-24.5 parent: 33 type: Transform - - uid: 4800 + - uid: 4069 components: - pos: -63.5,-24.5 parent: 33 type: Transform - - uid: 4802 + - uid: 4796 components: - pos: -66.5,-26.5 parent: 33 type: Transform - - uid: 4803 + - uid: 4797 components: - pos: -65.5,-26.5 parent: 33 type: Transform - - uid: 4804 + - uid: 4798 components: - pos: -64.5,-26.5 parent: 33 type: Transform - - uid: 4805 + - uid: 4799 components: - pos: -63.5,-26.5 parent: 33 type: Transform - - uid: 4807 + - uid: 4800 components: - pos: -66.5,-28.5 parent: 33 type: Transform - - uid: 4808 + - uid: 4802 components: - pos: -64.5,-28.5 parent: 33 type: Transform - - uid: 4809 + - uid: 4803 components: - pos: -65.5,-28.5 parent: 33 type: Transform - - uid: 4810 + - uid: 4804 components: - pos: -63.5,-28.5 parent: 33 type: Transform - - uid: 4811 + - uid: 4805 components: - - pos: -63.5,-30.5 + - pos: -67.5,-30.5 parent: 33 type: Transform - - uid: 4812 + - uid: 4807 components: - - pos: -64.5,-30.5 + - pos: -66.5,-30.5 parent: 33 type: Transform - - uid: 4813 + - uid: 4808 components: - pos: -65.5,-30.5 parent: 33 type: Transform - - uid: 4814 + - uid: 4809 components: - - pos: -66.5,-30.5 + - pos: -64.5,-30.5 parent: 33 type: Transform - - uid: 4815 + - uid: 4810 components: - - pos: -67.5,-30.5 + - pos: -63.5,-30.5 parent: 33 type: Transform - - uid: 5283 + - uid: 4811 components: - pos: -46.5,-14.5 parent: 33 type: Transform - - uid: 8576 + - uid: 4812 components: - pos: -34.5,7.5 parent: 33 type: Transform - - uid: 8901 + - uid: 4813 components: - pos: -21.5,24.5 parent: 33 type: Transform - - uid: 10468 + - uid: 4814 components: - - pos: -55.5,-5.5 + - pos: -53.5,-5.5 parent: 33 type: Transform - - uid: 10469 + - uid: 4815 components: - pos: -54.5,-5.5 parent: 33 type: Transform - - uid: 10470 + - uid: 5283 components: - - pos: -53.5,-5.5 + - pos: -55.5,-5.5 parent: 33 type: Transform - - uid: 17455 + - uid: 8576 components: - - pos: -101.5,10.5 + - pos: -103.5,10.5 parent: 33 type: Transform - - uid: 17456 + - uid: 8901 components: - - pos: -103.5,10.5 + - pos: -101.5,10.5 parent: 33 type: Transform - - uid: 28099 + - uid: 10468 components: - pos: -102.5,-76.5 parent: 33 type: Transform - - uid: 28100 + - uid: 10469 components: - pos: -102.5,-78.5 parent: 33 type: Transform -- proto: BookshelfFilled - entities: - - uid: 524 + - uid: 10470 components: - pos: 16.5,-2.5 parent: 33 type: Transform - - uid: 525 + - uid: 13741 components: - pos: 15.5,2.5 parent: 33 type: Transform - - uid: 526 + - uid: 13762 components: - pos: 15.5,4.5 parent: 33 type: Transform - - uid: 527 + - uid: 17455 components: - pos: 10.5,-2.5 parent: 33 @@ -21734,6 +21916,11 @@ entities: type: Transform - proto: BorgCharger entities: + - uid: 12924 + components: + - pos: -63.5,-15.5 + parent: 33 + type: Transform - uid: 13798 components: - pos: -5.5,57.5 @@ -21744,11 +21931,6 @@ entities: - pos: 20.5,17.5 parent: 33 type: Transform - - uid: 28811 - components: - - pos: -67.5,-13.5 - parent: 33 - type: Transform - uid: 29057 components: - pos: -7.5,-1.5 @@ -21776,11 +21958,6 @@ entities: - pos: -68.01196,-8.355475 parent: 33 type: Transform - - uid: 12155 - components: - - pos: -53.521,6.0229344 - parent: 33 - type: Transform - uid: 12156 components: - pos: -53.468914,1.5615022 @@ -21808,31 +21985,26 @@ entities: - type: InsideEntityStorage - proto: BoxBodyBag entities: - - uid: 4392 - components: - - pos: -78.47142,11.892249 - parent: 33 - type: Transform - uid: 11450 components: - pos: -24.506525,91.72462 parent: 33 type: Transform -- proto: BoxBottle - entities: - - uid: 4018 + - uid: 16176 components: - - pos: -40.69533,21.662159 + - pos: -71.63099,13.80046 parent: 33 type: Transform - - uid: 4641 +- proto: BoxBottle + entities: + - uid: 25316 components: - - pos: -53.427742,5.6819005 + - pos: -63.498028,-5.3249497 parent: 33 type: Transform - - uid: 25316 + - uid: 28811 components: - - pos: -63.498028,-5.3249497 + - pos: -44.38117,19.713854 parent: 33 type: Transform - proto: BoxCardboard @@ -21953,6 +22125,28 @@ entities: pos: -80.4454,20.407574 parent: 33 type: Transform +- proto: BoxCartridgeBB + entities: + - uid: 30615 + components: + - pos: -40.60564,54.738106 + parent: 33 + type: Transform + - uid: 30616 + components: + - pos: -40.532722,54.487934 + parent: 33 + type: Transform + - uid: 30617 + components: + - pos: -40.303555,54.758953 + parent: 33 + type: Transform + - uid: 30618 + components: + - pos: -40.220222,54.498356 + parent: 33 + type: Transform - proto: BoxCartridgeCap entities: - uid: 17702 @@ -22243,9 +22437,9 @@ entities: - pos: -44.51123,20.695667 parent: 33 type: Transform - - uid: 4395 + - uid: 16177 components: - - pos: -78.481834,11.047914 + - pos: -71.36015,13.602406 parent: 33 type: Transform - proto: BoxLightbulb @@ -22272,32 +22466,32 @@ entities: - pos: -78.48113,-27.284864 parent: 33 type: Transform -- proto: BoxMagazineMagnumSubMachineGun +- proto: BoxMagazinePistolPractice entities: - - uid: 12924 + - uid: 5921 components: - - pos: -3.6086452,73.68521 + - pos: -39.56803,66.63435 parent: 33 type: Transform -- proto: BoxMagazineMagnumSubMachineGunPractice +- proto: BoxMagazinePistolSubMachineGun entities: - - uid: 18596 + - uid: 3578 components: - - pos: -39.31803,66.6552 + - pos: -3.3757322,73.732475 parent: 33 type: Transform -- proto: BoxMagazineMagnumSubMachineGunRubber +- proto: BoxMagazinePistolSubMachineGunPractice entities: - - uid: 18559 + - uid: 3577 components: - - pos: -3.4211452,73.65394 + - pos: -39.31779,66.63828 parent: 33 type: Transform -- proto: BoxMagazinePistolPractice +- proto: BoxMagazinePistolSubMachineGunRubber entities: - - uid: 5921 + - uid: 3576 components: - - pos: -39.56803,66.63435 + - pos: -3.6153157,73.711624 parent: 33 type: Transform - proto: BoxMagazineShotgunBeanbag @@ -22350,11 +22544,6 @@ entities: - pos: -95.2371,-8.115266 parent: 33 type: Transform - - uid: 4351 - components: - - pos: -61.43176,1.4866538 - parent: 33 - type: Transform - uid: 11449 components: - pos: -21.475275,91.714195 @@ -22374,6 +22563,11 @@ entities: - pos: -28.725203,93.64001 parent: 33 type: Transform + - uid: 30510 + components: + - pos: -76.411674,14.457643 + parent: 33 + type: Transform - proto: BoxMRE entities: - uid: 24383 @@ -22395,11 +22589,6 @@ entities: type: Transform - proto: BoxPillCanister entities: - - uid: 12151 - components: - - pos: -53.531414,6.8047276 - parent: 33 - type: Transform - uid: 12152 components: - pos: -53.521,2.4892302 @@ -22426,16 +22615,6 @@ entities: - pos: -82.4317,3.6405475 parent: 33 type: Transform - - uid: 4307 - components: - - pos: -44.469563,19.726244 - parent: 33 - type: Transform - - uid: 4354 - components: - - pos: -61.473427,1.153089 - parent: 33 - type: Transform - uid: 18552 components: - pos: -59.425915,16.78028 @@ -22451,16 +22630,21 @@ entities: - pos: -45.46627,12.620437 parent: 33 type: Transform -- proto: BoxSyringe - entities: - - uid: 4353 + - uid: 28653 components: - - pos: -61.467667,0.76159054 + - pos: -44.34992,20.672853 parent: 33 type: Transform - - uid: 12153 + - uid: 30512 components: - - pos: -53.42725,6.408619 + - pos: -76.33875,13.38398 + parent: 33 + type: Transform +- proto: BoxSyringe + entities: + - uid: 3582 + components: + - pos: -44.5895,19.734703 parent: 33 type: Transform - uid: 12154 @@ -22468,9 +22652,9 @@ entities: - pos: -53.5835,2.0618498 parent: 33 type: Transform - - uid: 28478 + - uid: 30511 components: - - pos: -40.94144,21.704912 + - pos: -76.349174,13.9260235 parent: 33 type: Transform - proto: BoxTrashbag @@ -22492,9 +22676,9 @@ entities: - pos: -53.47177,-22.252546 parent: 33 type: Transform - - uid: 27085 + - uid: 30578 components: - - pos: -2.4892013,-9.314913 + - pos: -1.489598,-6.257612 parent: 33 type: Transform - proto: BrbSign @@ -22795,6 +22979,11 @@ entities: - pos: -5.5,60.5 parent: 33 type: Transform + - uid: 1040 + components: + - pos: -82.5,18.5 + parent: 33 + type: Transform - uid: 1237 components: - pos: -8.5,-43.5 @@ -23315,6 +23504,11 @@ entities: - pos: -42.5,58.5 parent: 33 type: Transform + - uid: 3137 + components: + - pos: -78.5,-5.5 + parent: 33 + type: Transform - uid: 3179 components: - pos: -18.5,29.5 @@ -23350,6 +23544,61 @@ entities: - pos: -56.5,56.5 parent: 33 type: Transform + - uid: 4113 + components: + - pos: -66.5,4.5 + parent: 33 + type: Transform + - uid: 4115 + components: + - pos: -65.5,4.5 + parent: 33 + type: Transform + - uid: 4116 + components: + - pos: -64.5,4.5 + parent: 33 + type: Transform + - uid: 4117 + components: + - pos: -63.5,4.5 + parent: 33 + type: Transform + - uid: 4118 + components: + - pos: -67.5,4.5 + parent: 33 + type: Transform + - uid: 4127 + components: + - pos: -67.5,-0.5 + parent: 33 + type: Transform + - uid: 4338 + components: + - pos: -67.5,1.5 + parent: 33 + type: Transform + - uid: 4345 + components: + - pos: -62.5,2.5 + parent: 33 + type: Transform + - uid: 4346 + components: + - pos: -63.5,3.5 + parent: 33 + type: Transform + - uid: 4350 + components: + - pos: -63.5,2.5 + parent: 33 + type: Transform + - uid: 4393 + components: + - pos: -83.5,20.5 + parent: 33 + type: Transform - uid: 4421 components: - pos: -25.5,65.5 @@ -23520,6 +23769,11 @@ entities: - pos: -60.5,48.5 parent: 33 type: Transform + - uid: 5867 + components: + - pos: -76.5,-5.5 + parent: 33 + type: Transform - uid: 5999 components: - pos: -7.5,59.5 @@ -23855,6 +24109,11 @@ entities: - pos: 46.5,36.5 parent: 33 type: Transform + - uid: 8754 + components: + - pos: -31.5,78.5 + parent: 33 + type: Transform - uid: 8767 components: - pos: 55.5,19.5 @@ -23915,11 +24174,6 @@ entities: - pos: 62.5,71.5 parent: 33 type: Transform - - uid: 9980 - components: - - pos: 61.5,73.5 - parent: 33 - type: Transform - uid: 9984 components: - pos: 58.5,66.5 @@ -24837,27 +25091,7 @@ entities: type: Transform - uid: 13404 components: - - pos: 42.5,51.5 - parent: 33 - type: Transform - - uid: 13405 - components: - - pos: 42.5,52.5 - parent: 33 - type: Transform - - uid: 13406 - components: - - pos: 42.5,53.5 - parent: 33 - type: Transform - - uid: 13407 - components: - - pos: 41.5,53.5 - parent: 33 - type: Transform - - uid: 13408 - components: - - pos: 43.5,53.5 + - pos: -31.5,76.5 parent: 33 type: Transform - uid: 13409 @@ -25305,16 +25539,6 @@ entities: - pos: 54.5,65.5 parent: 33 type: Transform - - uid: 13514 - components: - - pos: 61.5,72.5 - parent: 33 - type: Transform - - uid: 13515 - components: - - pos: 61.5,71.5 - parent: 33 - type: Transform - uid: 13523 components: - pos: 20.5,5.5 @@ -25515,6 +25739,11 @@ entities: - pos: 25.5,-3.5 parent: 33 type: Transform + - uid: 13681 + components: + - pos: -23.5,74.5 + parent: 33 + type: Transform - uid: 13682 components: - pos: 26.5,-7.5 @@ -27375,16 +27604,6 @@ entities: - pos: 5.5,44.5 parent: 33 type: Transform - - uid: 14360 - components: - - pos: 4.5,44.5 - parent: 33 - type: Transform - - uid: 14361 - components: - - pos: 3.5,44.5 - parent: 33 - type: Transform - uid: 14362 components: - pos: 2.5,44.5 @@ -30232,12 +30451,12 @@ entities: type: Transform - uid: 15386 components: - - pos: -22.5,75.5 + - pos: -79.5,-36.5 parent: 33 type: Transform - uid: 15387 components: - - pos: -22.5,76.5 + - pos: -79.5,-37.5 parent: 33 type: Transform - uid: 15388 @@ -32270,6 +32489,11 @@ entities: - pos: -45.5,29.5 parent: 33 type: Transform + - uid: 16135 + components: + - pos: -83.5,21.5 + parent: 33 + type: Transform - uid: 16163 components: - pos: -83.5,18.5 @@ -32295,6 +32519,11 @@ entities: - pos: -83.5,14.5 parent: 33 type: Transform + - uid: 16179 + components: + - pos: -76.5,-4.5 + parent: 33 + type: Transform - uid: 16193 components: - pos: -88.5,5.5 @@ -32505,51 +32734,6 @@ entities: - pos: -73.5,15.5 parent: 33 type: Transform - - uid: 16268 - components: - - pos: -74.5,15.5 - parent: 33 - type: Transform - - uid: 16269 - components: - - pos: -75.5,15.5 - parent: 33 - type: Transform - - uid: 16270 - components: - - pos: -76.5,15.5 - parent: 33 - type: Transform - - uid: 16271 - components: - - pos: -76.5,14.5 - parent: 33 - type: Transform - - uid: 16272 - components: - - pos: -76.5,13.5 - parent: 33 - type: Transform - - uid: 16273 - components: - - pos: -76.5,12.5 - parent: 33 - type: Transform - - uid: 16274 - components: - - pos: -76.5,11.5 - parent: 33 - type: Transform - - uid: 16275 - components: - - pos: -75.5,11.5 - parent: 33 - type: Transform - - uid: 16276 - components: - - pos: -74.5,11.5 - parent: 33 - type: Transform - uid: 16277 components: - pos: -73.5,11.5 @@ -32585,34 +32769,9 @@ entities: - pos: -54.5,-15.5 parent: 33 type: Transform - - uid: 16303 - components: - - pos: -62.5,3.5 - parent: 33 - type: Transform - - uid: 16304 - components: - - pos: -62.5,2.5 - parent: 33 - type: Transform - - uid: 16305 - components: - - pos: -63.5,2.5 - parent: 33 - type: Transform - - uid: 16306 - components: - - pos: -64.5,2.5 - parent: 33 - type: Transform - - uid: 16307 - components: - - pos: -65.5,2.5 - parent: 33 - type: Transform - uid: 16308 components: - - pos: -66.5,2.5 + - pos: -83.5,23.5 parent: 33 type: Transform - uid: 16309 @@ -32700,6 +32859,11 @@ entities: - pos: -51.5,2.5 parent: 33 type: Transform + - uid: 16340 + components: + - pos: -83.5,22.5 + parent: 33 + type: Transform - uid: 16372 components: - pos: -45.5,18.5 @@ -32825,16 +32989,6 @@ entities: - pos: -73.5,-24.5 parent: 33 type: Transform - - uid: 16522 - components: - - pos: -78.5,-4.5 - parent: 33 - type: Transform - - uid: 16523 - components: - - pos: -78.5,-3.5 - parent: 33 - type: Transform - uid: 16524 components: - pos: -77.5,-3.5 @@ -32850,11 +33004,6 @@ entities: - pos: -76.5,-2.5 parent: 33 type: Transform - - uid: 16527 - components: - - pos: -78.5,-5.5 - parent: 33 - type: Transform - uid: 16528 components: - pos: -78.5,-6.5 @@ -34940,34 +35089,9 @@ entities: - pos: 12.5,76.5 parent: 33 type: Transform - - uid: 18835 - components: - - pos: 13.5,71.5 - parent: 33 - type: Transform - - uid: 18836 - components: - - pos: 12.5,71.5 - parent: 33 - type: Transform - - uid: 18837 - components: - - pos: 11.5,71.5 - parent: 33 - type: Transform - uid: 18838 components: - - pos: 10.5,71.5 - parent: 33 - type: Transform - - uid: 18839 - components: - - pos: 9.5,71.5 - parent: 33 - type: Transform - - uid: 18840 - components: - - pos: 8.5,71.5 + - pos: 9.5,59.5 parent: 33 type: Transform - uid: 18841 @@ -35285,31 +35409,6 @@ entities: - pos: 19.5,63.5 parent: 33 type: Transform - - uid: 18906 - components: - - pos: -82.5,14.5 - parent: 33 - type: Transform - - uid: 18907 - components: - - pos: -81.5,14.5 - parent: 33 - type: Transform - - uid: 18908 - components: - - pos: -81.5,15.5 - parent: 33 - type: Transform - - uid: 18909 - components: - - pos: -81.5,16.5 - parent: 33 - type: Transform - - uid: 18910 - components: - - pos: -81.5,17.5 - parent: 33 - type: Transform - uid: 18911 components: - pos: -81.5,18.5 @@ -36260,14 +36359,9 @@ entities: - pos: -80.5,-36.5 parent: 33 type: Transform - - uid: 19108 - components: - - pos: -80.5,-37.5 - parent: 33 - type: Transform - uid: 19109 components: - - pos: -80.5,-38.5 + - pos: -31.5,75.5 parent: 33 type: Transform - uid: 19110 @@ -37140,6 +37234,11 @@ entities: - pos: 57.5,61.5 parent: 33 type: Transform + - uid: 20771 + components: + - pos: -67.5,0.5 + parent: 33 + type: Transform - uid: 21149 components: - pos: -59.5,-23.5 @@ -37170,6 +37269,11 @@ entities: - pos: -68.5,8.5 parent: 33 type: Transform + - uid: 21546 + components: + - pos: 2.5,45.5 + parent: 33 + type: Transform - uid: 21646 components: - pos: -82.5,-35.5 @@ -37345,21 +37449,6 @@ entities: - pos: -98.5,-9.5 parent: 33 type: Transform - - uid: 22804 - components: - - pos: -70.5,2.5 - parent: 33 - type: Transform - - uid: 22812 - components: - - pos: -69.5,2.5 - parent: 33 - type: Transform - - uid: 22813 - components: - - pos: -68.5,2.5 - parent: 33 - type: Transform - uid: 22818 components: - pos: -29.5,10.5 @@ -37630,6 +37719,31 @@ entities: - pos: 20.5,8.5 parent: 33 type: Transform + - uid: 24084 + components: + - pos: 9.5,72.5 + parent: 33 + type: Transform + - uid: 24085 + components: + - pos: 10.5,72.5 + parent: 33 + type: Transform + - uid: 24086 + components: + - pos: 11.5,72.5 + parent: 33 + type: Transform + - uid: 24087 + components: + - pos: 12.5,72.5 + parent: 33 + type: Transform + - uid: 24088 + components: + - pos: 13.5,72.5 + parent: 33 + type: Transform - uid: 24141 components: - pos: -90.5,-11.5 @@ -38400,6 +38514,16 @@ entities: - pos: -20.5,0.5 parent: 33 type: Transform + - uid: 26694 + components: + - pos: 45.5,46.5 + parent: 33 + type: Transform + - uid: 26757 + components: + - pos: -31.5,77.5 + parent: 33 + type: Transform - uid: 26821 components: - pos: -65.5,-46.5 @@ -39075,6 +39199,11 @@ entities: - pos: 27.5,-15.5 parent: 33 type: Transform + - uid: 27908 + components: + - pos: 45.5,47.5 + parent: 33 + type: Transform - uid: 27910 components: - pos: 26.5,-10.5 @@ -39085,11 +39214,6 @@ entities: - pos: 26.5,-11.5 parent: 33 type: Transform - - uid: 27912 - components: - - pos: 26.5,-9.5 - parent: 33 - type: Transform - uid: 27913 components: - pos: 11.5,9.5 @@ -39435,6 +39559,16 @@ entities: - pos: -38.5,-16.5 parent: 33 type: Transform + - uid: 28100 + components: + - pos: 23.5,-17.5 + parent: 33 + type: Transform + - uid: 28113 + components: + - pos: 45.5,48.5 + parent: 33 + type: Transform - uid: 28175 components: - pos: -98.5,-79.5 @@ -40790,6 +40924,11 @@ entities: - pos: 51.5,16.5 parent: 33 type: Transform + - uid: 29683 + components: + - pos: 62.5,72.5 + parent: 33 + type: Transform - uid: 30206 components: - pos: -35.5,94.5 @@ -40875,6 +41014,141 @@ entities: - pos: 55.5,-16.5 parent: 33 type: Transform + - uid: 30468 + components: + - pos: 62.5,73.5 + parent: 33 + type: Transform + - uid: 30473 + components: + - pos: 3.5,45.5 + parent: 33 + type: Transform + - uid: 30474 + components: + - pos: 4.5,45.5 + parent: 33 + type: Transform + - uid: 30475 + components: + - pos: 5.5,45.5 + parent: 33 + type: Transform + - uid: 30479 + components: + - pos: -81.5,-2.5 + parent: 33 + type: Transform + - uid: 30480 + components: + - pos: -77.5,-6.5 + parent: 33 + type: Transform + - uid: 30481 + components: + - pos: -75.5,-3.5 + parent: 33 + type: Transform + - uid: 30482 + components: + - pos: -74.5,-3.5 + parent: 33 + type: Transform + - uid: 30531 + components: + - pos: -77.5,9.5 + parent: 33 + type: Transform + - uid: 30532 + components: + - pos: -77.5,10.5 + parent: 33 + type: Transform + - uid: 30533 + components: + - pos: -77.5,11.5 + parent: 33 + type: Transform + - uid: 30534 + components: + - pos: -77.5,12.5 + parent: 33 + type: Transform + - uid: 30535 + components: + - pos: -77.5,13.5 + parent: 33 + type: Transform + - uid: 30536 + components: + - pos: -77.5,14.5 + parent: 33 + type: Transform + - uid: 30537 + components: + - pos: -78.5,14.5 + parent: 33 + type: Transform + - uid: 30538 + components: + - pos: -79.5,14.5 + parent: 33 + type: Transform + - uid: 30539 + components: + - pos: -80.5,14.5 + parent: 33 + type: Transform + - uid: 30569 + components: + - pos: -76.5,-6.5 + parent: 33 + type: Transform + - uid: 30602 + components: + - pos: 8.5,67.5 + parent: 33 + type: Transform + - uid: 30603 + components: + - pos: 8.5,68.5 + parent: 33 + type: Transform + - uid: 30604 + components: + - pos: 11.5,68.5 + parent: 33 + type: Transform + - uid: 30605 + components: + - pos: 10.5,59.5 + parent: 33 + type: Transform + - uid: 30607 + components: + - pos: -48.5,67.5 + parent: 33 + type: Transform + - uid: 30608 + components: + - pos: -53.5,75.5 + parent: 33 + type: Transform + - uid: 30609 + components: + - pos: -53.5,72.5 + parent: 33 + type: Transform + - uid: 30610 + components: + - pos: -48.5,80.5 + parent: 33 + type: Transform + - uid: 30611 + components: + - pos: -45.5,80.5 + parent: 33 + type: Transform - proto: CableApcStack entities: - uid: 8123 @@ -40887,11 +41161,6 @@ entities: - pos: -53.5141,31.590939 parent: 33 type: Transform - - uid: 9631 - components: - - pos: -66.551895,-5.291511 - parent: 33 - type: Transform - uid: 17192 components: - pos: 44.649265,1.6556664 @@ -40902,6 +41171,11 @@ entities: - pos: -0.0388633,87.54359 parent: 33 type: Transform + - uid: 20788 + components: + - pos: -66.512985,-15.572843 + parent: 33 + type: Transform - uid: 21742 components: - pos: 48.56926,57.521416 @@ -41137,6 +41411,13 @@ entities: pos: -49.877735,21.762423 parent: 33 type: Transform +- proto: CableApcStack10 + entities: + - uid: 30549 + components: + - pos: -84.41992,22.380253 + parent: 33 + type: Transform - proto: Cablecuffs entities: - uid: 28944 @@ -41161,6 +41442,11 @@ entities: - pos: -4.5,60.5 parent: 33 type: Transform + - uid: 1308 + components: + - pos: -83.5,18.5 + parent: 33 + type: Transform - uid: 1672 components: - pos: -20.5,-6.5 @@ -41191,6 +41477,26 @@ entities: - pos: 48.5,28.5 parent: 33 type: Transform + - uid: 4371 + components: + - pos: -83.5,20.5 + parent: 33 + type: Transform + - uid: 4372 + components: + - pos: -83.5,19.5 + parent: 33 + type: Transform + - uid: 4395 + components: + - pos: -83.5,21.5 + parent: 33 + type: Transform + - uid: 6952 + components: + - pos: -82.5,18.5 + parent: 33 + type: Transform - uid: 7074 components: - pos: 78.5,31.5 @@ -44911,26 +45217,6 @@ entities: - pos: -81.5,18.5 parent: 33 type: Transform - - uid: 16154 - components: - - pos: -81.5,17.5 - parent: 33 - type: Transform - - uid: 16155 - components: - - pos: -81.5,16.5 - parent: 33 - type: Transform - - uid: 16156 - components: - - pos: -81.5,15.5 - parent: 33 - type: Transform - - uid: 16157 - components: - - pos: -82.5,15.5 - parent: 33 - type: Transform - uid: 16158 components: - pos: -83.5,15.5 @@ -44946,11 +45232,6 @@ entities: - pos: -83.5,17.5 parent: 33 type: Transform - - uid: 16161 - components: - - pos: -84.5,17.5 - parent: 33 - type: Transform - uid: 16442 components: - pos: -83.5,14.5 @@ -45191,6 +45472,11 @@ entities: - pos: -21.5,-2.5 parent: 33 type: Transform + - uid: 17237 + components: + - pos: -79.5,-36.5 + parent: 33 + type: Transform - uid: 17899 components: - pos: -7.5,56.5 @@ -45401,6 +45687,21 @@ entities: - pos: 62.5,64.5 parent: 33 type: Transform + - uid: 20877 + components: + - pos: -83.5,22.5 + parent: 33 + type: Transform + - uid: 23948 + components: + - pos: -82.5,22.5 + parent: 33 + type: Transform + - uid: 23950 + components: + - pos: -81.5,22.5 + parent: 33 + type: Transform - uid: 24330 components: - pos: 63.5,33.5 @@ -46591,19 +46892,9 @@ entities: - pos: -80.5,-36.5 parent: 33 type: Transform - - uid: 26694 - components: - - pos: -80.5,-37.5 - parent: 33 - type: Transform - - uid: 26695 - components: - - pos: -80.5,-38.5 - parent: 33 - type: Transform - uid: 26696 components: - - pos: -80.5,-39.5 + - pos: -79.5,-37.5 parent: 33 type: Transform - uid: 26697 @@ -46731,6 +47022,11 @@ entities: - pos: -70.5,-47.5 parent: 33 type: Transform + - uid: 26756 + components: + - pos: -79.5,-38.5 + parent: 33 + type: Transform - uid: 26833 components: - pos: -7.5,60.5 @@ -47028,9 +47324,59 @@ entities: - pos: -52.5,-13.5 parent: 33 type: Transform - - uid: 3104 + - uid: 1772 + components: + - pos: -76.5,-3.5 + parent: 33 + type: Transform + - uid: 1785 + components: + - pos: -83.5,23.5 + parent: 33 + type: Transform + - uid: 3947 + components: + - pos: 3.5,45.5 + parent: 33 + type: Transform + - uid: 4104 + components: + - pos: -67.5,1.5 + parent: 33 + type: Transform + - uid: 4119 + components: + - pos: -77.5,-5.5 + parent: 33 + type: Transform + - uid: 4349 + components: + - pos: -67.5,-0.5 + parent: 33 + type: Transform + - uid: 4351 + components: + - pos: 4.5,45.5 + parent: 33 + type: Transform + - uid: 4353 components: - - pos: -66.5,2.5 + - pos: 2.5,45.5 + parent: 33 + type: Transform + - uid: 4364 + components: + - pos: -67.5,3.5 + parent: 33 + type: Transform + - uid: 4365 + components: + - pos: -67.5,0.5 + parent: 33 + type: Transform + - uid: 4366 + components: + - pos: -76.5,-5.5 parent: 33 type: Transform - uid: 4601 @@ -47188,11 +47534,6 @@ entities: - pos: 46.5,58.5 parent: 33 type: Transform - - uid: 7947 - components: - - pos: 44.5,52.5 - parent: 33 - type: Transform - uid: 8168 components: - pos: 11.5,53.5 @@ -47208,6 +47549,11 @@ entities: - pos: -39.5,94.5 parent: 33 type: Transform + - uid: 8183 + components: + - pos: -83.5,20.5 + parent: 33 + type: Transform - uid: 8748 components: - pos: -23.5,71.5 @@ -47418,6 +47764,11 @@ entities: - pos: -35.5,121.5 parent: 33 type: Transform + - uid: 9643 + components: + - pos: -82.5,22.5 + parent: 33 + type: Transform - uid: 9940 components: - pos: 45.5,55.5 @@ -47648,6 +47999,11 @@ entities: - pos: -39.5,95.5 parent: 33 type: Transform + - uid: 12141 + components: + - pos: -75.5,-3.5 + parent: 33 + type: Transform - uid: 12448 components: - pos: -18.5,-5.5 @@ -47948,9 +48304,19 @@ entities: - pos: 42.5,50.5 parent: 33 type: Transform - - uid: 13403 + - uid: 13405 components: - - pos: 42.5,51.5 + - pos: 44.5,49.5 + parent: 33 + type: Transform + - uid: 13406 + components: + - pos: 42.5,49.5 + parent: 33 + type: Transform + - uid: 13407 + components: + - pos: 43.5,49.5 parent: 33 type: Transform - uid: 13485 @@ -48108,16 +48474,6 @@ entities: - pos: 21.5,8.5 parent: 33 type: Transform - - uid: 13680 - components: - - pos: 24.5,-10.5 - parent: 33 - type: Transform - - uid: 13681 - components: - - pos: 25.5,-10.5 - parent: 33 - type: Transform - uid: 13707 components: - pos: 22.5,5.5 @@ -48258,11 +48614,6 @@ entities: - pos: 23.5,-12.5 parent: 33 type: Transform - - uid: 13762 - components: - - pos: 22.5,-16.5 - parent: 33 - type: Transform - uid: 13763 components: - pos: 22.5,-17.5 @@ -49033,26 +49384,6 @@ entities: - pos: -21.5,48.5 parent: 33 type: Transform - - uid: 14877 - components: - - pos: -63.5,3.5 - parent: 33 - type: Transform - - uid: 14878 - components: - - pos: -63.5,2.5 - parent: 33 - type: Transform - - uid: 14879 - components: - - pos: -65.5,2.5 - parent: 33 - type: Transform - - uid: 14880 - components: - - pos: -67.5,2.5 - parent: 33 - type: Transform - uid: 14886 components: - pos: -30.5,43.5 @@ -49193,11 +49524,6 @@ entities: - pos: -23.5,25.5 parent: 33 type: Transform - - uid: 14914 - components: - - pos: -64.5,2.5 - parent: 33 - type: Transform - uid: 14920 components: - pos: -35.5,14.5 @@ -49538,16 +49864,6 @@ entities: - pos: 2.5,44.5 parent: 33 type: Transform - - uid: 14988 - components: - - pos: 3.5,44.5 - parent: 33 - type: Transform - - uid: 14989 - components: - - pos: 4.5,44.5 - parent: 33 - type: Transform - uid: 15230 components: - pos: -20.5,-5.5 @@ -50088,11 +50404,6 @@ entities: - pos: -55.5,28.5 parent: 33 type: Transform - - uid: 16168 - components: - - pos: -84.5,17.5 - parent: 33 - type: Transform - uid: 16169 components: - pos: -83.5,17.5 @@ -50113,46 +50424,6 @@ entities: - pos: -83.5,15.5 parent: 33 type: Transform - - uid: 16173 - components: - - pos: -82.5,15.5 - parent: 33 - type: Transform - - uid: 16174 - components: - - pos: -81.5,15.5 - parent: 33 - type: Transform - - uid: 16175 - components: - - pos: -81.5,14.5 - parent: 33 - type: Transform - - uid: 16176 - components: - - pos: -81.5,13.5 - parent: 33 - type: Transform - - uid: 16177 - components: - - pos: -81.5,12.5 - parent: 33 - type: Transform - - uid: 16178 - components: - - pos: -81.5,11.5 - parent: 33 - type: Transform - - uid: 16179 - components: - - pos: -81.5,10.5 - parent: 33 - type: Transform - - uid: 16180 - components: - - pos: -81.5,9.5 - parent: 33 - type: Transform - uid: 16181 components: - pos: -81.5,8.5 @@ -50388,11 +50659,6 @@ entities: - pos: -33.5,12.5 parent: 33 type: Transform - - uid: 16301 - components: - - pos: -68.5,2.5 - parent: 33 - type: Transform - uid: 16311 components: - pos: -62.5,8.5 @@ -50458,16 +50724,6 @@ entities: - pos: -56.5,4.5 parent: 33 type: Transform - - uid: 16340 - components: - - pos: -69.5,2.5 - parent: 33 - type: Transform - - uid: 16341 - components: - - pos: -70.5,2.5 - parent: 33 - type: Transform - uid: 16342 components: - pos: -59.5,9.5 @@ -50583,11 +50839,6 @@ entities: - pos: -78.5,-6.5 parent: 33 type: Transform - - uid: 16503 - components: - - pos: -78.5,-4.5 - parent: 33 - type: Transform - uid: 16504 components: - pos: -78.5,-5.5 @@ -51293,11 +51544,6 @@ entities: - pos: -19.5,-5.5 parent: 33 type: Transform - - uid: 17237 - components: - - pos: 42.5,52.5 - parent: 33 - type: Transform - uid: 17535 components: - pos: -69.5,-35.5 @@ -51333,9 +51579,24 @@ entities: - pos: 9.5,56.5 parent: 33 type: Transform + - uid: 19108 + components: + - pos: 45.5,49.5 + parent: 33 + type: Transform - uid: 19331 components: - - pos: 41.5,52.5 + - pos: 45.5,51.5 + parent: 33 + type: Transform + - uid: 20880 + components: + - pos: -83.5,22.5 + parent: 33 + type: Transform + - uid: 20883 + components: + - pos: -67.5,2.5 parent: 33 type: Transform - uid: 21141 @@ -51373,6 +51634,11 @@ entities: - pos: -80.5,-22.5 parent: 33 type: Transform + - uid: 21513 + components: + - pos: -83.5,21.5 + parent: 33 + type: Transform - uid: 21691 components: - pos: -44.5,104.5 @@ -51453,6 +51719,16 @@ entities: - pos: -42.5,-16.5 parent: 33 type: Transform + - uid: 23951 + components: + - pos: 5.5,45.5 + parent: 33 + type: Transform + - uid: 23956 + components: + - pos: -81.5,22.5 + parent: 33 + type: Transform - uid: 24485 components: - pos: -83.5,19.5 @@ -51583,6 +51859,11 @@ entities: - pos: -41.5,100.5 parent: 33 type: Transform + - uid: 26695 + components: + - pos: 45.5,50.5 + parent: 33 + type: Transform - uid: 27214 components: - pos: 23.5,-13.5 @@ -51663,19 +51944,14 @@ entities: - pos: -59.5,-23.5 parent: 33 type: Transform - - uid: 27908 - components: - - pos: 26.5,-10.5 - parent: 33 - type: Transform - - uid: 27909 + - uid: 28028 components: - - pos: 26.5,-9.5 + - pos: -62.5,9.5 parent: 33 type: Transform - - uid: 28028 + - uid: 28099 components: - - pos: -62.5,9.5 + - pos: 23.5,-17.5 parent: 33 type: Transform - uid: 28173 @@ -51688,6 +51964,11 @@ entities: - pos: -98.5,-79.5 parent: 33 type: Transform + - uid: 28376 + components: + - pos: -76.5,-4.5 + parent: 33 + type: Transform - uid: 28544 components: - pos: -60.5,-37.5 @@ -51768,11 +52049,6 @@ entities: - pos: -67.5,-45.5 parent: 33 type: Transform - - uid: 28624 - components: - - pos: 43.5,52.5 - parent: 33 - type: Transform - uid: 28677 components: - pos: 46.5,60.5 @@ -52163,6 +52439,91 @@ entities: - pos: 49.5,23.5 parent: 33 type: Transform + - uid: 30483 + components: + - pos: -74.5,-3.5 + parent: 33 + type: Transform + - uid: 30545 + components: + - pos: -67.5,4.5 + parent: 33 + type: Transform + - uid: 30546 + components: + - pos: -66.5,4.5 + parent: 33 + type: Transform + - uid: 30547 + components: + - pos: -65.5,4.5 + parent: 33 + type: Transform + - uid: 30548 + components: + - pos: -64.5,4.5 + parent: 33 + type: Transform + - uid: 30557 + components: + - pos: -83.5,14.5 + parent: 33 + type: Transform + - uid: 30558 + components: + - pos: -83.5,13.5 + parent: 33 + type: Transform + - uid: 30559 + components: + - pos: -82.5,13.5 + parent: 33 + type: Transform + - uid: 30560 + components: + - pos: -81.5,13.5 + parent: 33 + type: Transform + - uid: 30561 + components: + - pos: -80.5,13.5 + parent: 33 + type: Transform + - uid: 30562 + components: + - pos: -79.5,13.5 + parent: 33 + type: Transform + - uid: 30563 + components: + - pos: -78.5,13.5 + parent: 33 + type: Transform + - uid: 30564 + components: + - pos: -77.5,13.5 + parent: 33 + type: Transform + - uid: 30565 + components: + - pos: -77.5,12.5 + parent: 33 + type: Transform + - uid: 30566 + components: + - pos: -77.5,11.5 + parent: 33 + type: Transform + - uid: 30567 + components: + - pos: -77.5,10.5 + parent: 33 + type: Transform + - uid: 30568 + components: + - pos: -77.5,9.5 + parent: 33 + type: Transform - proto: CableMVStack entities: - uid: 5520 @@ -52181,14 +52542,14 @@ entities: - pos: -53.472435,31.94535 parent: 33 type: Transform - - uid: 9643 + - uid: 10456 components: - - pos: -66.551895,-5.479141 + - pos: 57.55572,21.527884 parent: 33 type: Transform - - uid: 10456 + - uid: 12641 components: - - pos: 57.55572,21.527884 + - pos: -66.544235,-15.291398 parent: 33 type: Transform - uid: 17972 @@ -52204,6 +52565,16 @@ entities: pos: 39.693302,18.37058 parent: 33 type: Transform + - uid: 1765 + components: + - pos: -84.617836,22.599155 + parent: 33 + type: Transform + - uid: 4344 + components: + - pos: -84.492836,22.359406 + parent: 33 + type: Transform - uid: 17666 components: - pos: 15.666102,75.684135 @@ -52308,6 +52679,74 @@ entities: pos: -101.5,-79.5 parent: 33 type: Transform +- proto: CandleBlack + entities: + - uid: 30623 + components: + - rot: 3.141592653589793 rad + pos: -67.99853,-41.41492 + parent: 33 + type: Transform + - uid: 30624 + components: + - rot: 3.141592653589793 rad + pos: -68.00895,-40.21617 + parent: 33 + type: Transform + - uid: 30625 + components: + - rot: 3.141592653589793 rad + pos: -65.01936,-40.205746 + parent: 33 + type: Transform + - uid: 30626 + components: + - rot: 3.141592653589793 rad + pos: -65.02978,-41.41492 + parent: 33 + type: Transform +- proto: CandleBlackInfinite + entities: + - uid: 30683 + components: + - pos: -52.5,-14.5 + parent: 33 + type: Transform +- proto: CandleBlueInfinite + entities: + - uid: 30680 + components: + - pos: -50.5,-15.5 + parent: 33 + type: Transform +- proto: CandleGreenInfinite + entities: + - uid: 30681 + components: + - pos: -54.5,-15.5 + parent: 33 + type: Transform +- proto: CandleInfinite + entities: + - uid: 30682 + components: + - pos: -54.5,-17.5 + parent: 33 + type: Transform +- proto: CandlePurpleInfinite + entities: + - uid: 30679 + components: + - pos: -50.5,-17.5 + parent: 33 + type: Transform +- proto: CandleRedInfinite + entities: + - uid: 30678 + components: + - pos: -52.5,-18.5 + parent: 33 + type: Transform - proto: CannabisSeeds entities: - uid: 27399 @@ -52395,11 +52834,15 @@ entities: - pos: 39.5,69.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 10182 components: - pos: 55.5,69.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - proto: CargoPallet entities: - uid: 182 @@ -55361,6 +55804,36 @@ entities: - pos: 49.5,59.5 parent: 33 type: Transform + - uid: 1874 + components: + - pos: -66.5,4.5 + parent: 33 + type: Transform + - uid: 4124 + components: + - pos: -83.5,21.5 + parent: 33 + type: Transform + - uid: 4307 + components: + - pos: -83.5,20.5 + parent: 33 + type: Transform + - uid: 4337 + components: + - pos: -83.5,18.5 + parent: 33 + type: Transform + - uid: 4363 + components: + - pos: -68.5,1.5 + parent: 33 + type: Transform + - uid: 4392 + components: + - pos: -82.5,22.5 + parent: 33 + type: Transform - uid: 5472 components: - pos: -58.5,-13.5 @@ -55386,6 +55859,11 @@ entities: - pos: -59.5,-13.5 parent: 33 type: Transform + - uid: 5542 + components: + - pos: -65.5,4.5 + parent: 33 + type: Transform - uid: 5580 components: - rot: 1.5707963267948966 rad @@ -55852,11 +56330,26 @@ entities: - pos: 48.5,46.5 parent: 33 type: Transform + - uid: 9856 + components: + - pos: 12.5,71.5 + parent: 33 + type: Transform + - uid: 9891 + components: + - pos: 11.5,71.5 + parent: 33 + type: Transform - uid: 9933 components: - pos: 62.5,60.5 parent: 33 type: Transform + - uid: 12143 + components: + - pos: -69.5,1.5 + parent: 33 + type: Transform - uid: 13218 components: - pos: 52.5,38.5 @@ -55892,6 +56385,26 @@ entities: - pos: 52.5,34.5 parent: 33 type: Transform + - uid: 14272 + components: + - pos: -68.5,4.5 + parent: 33 + type: Transform + - uid: 14360 + components: + - pos: -68.5,2.5 + parent: 33 + type: Transform + - uid: 14361 + components: + - pos: -69.5,3.5 + parent: 33 + type: Transform + - uid: 14878 + components: + - pos: -84.5,14.5 + parent: 33 + type: Transform - uid: 15299 components: - pos: -6.5,60.5 @@ -55902,6 +56415,11 @@ entities: - pos: -7.5,57.5 parent: 33 type: Transform + - uid: 15611 + components: + - pos: -79.5,-38.5 + parent: 33 + type: Transform - uid: 15958 components: - pos: -55.5,20.5 @@ -55912,6 +56430,21 @@ entities: - pos: -56.5,20.5 parent: 33 type: Transform + - uid: 16178 + components: + - pos: -80.5,18.5 + parent: 33 + type: Transform + - uid: 16301 + components: + - pos: -83.5,22.5 + parent: 33 + type: Transform + - uid: 16307 + components: + - pos: -83.5,19.5 + parent: 33 + type: Transform - uid: 16565 components: - pos: 49.5,57.5 @@ -55942,6 +56475,31 @@ entities: - pos: -7.5,58.5 parent: 33 type: Transform + - uid: 18835 + components: + - pos: 10.5,71.5 + parent: 33 + type: Transform + - uid: 18836 + components: + - pos: 9.5,71.5 + parent: 33 + type: Transform + - uid: 18837 + components: + - pos: 8.5,71.5 + parent: 33 + type: Transform + - uid: 18839 + components: + - pos: 13.5,71.5 + parent: 33 + type: Transform + - uid: 18840 + components: + - pos: 14.5,71.5 + parent: 33 + type: Transform - uid: 19451 components: - pos: 62.5,63.5 @@ -55957,6 +56515,46 @@ entities: - pos: 58.5,60.5 parent: 33 type: Transform + - uid: 20769 + components: + - pos: -67.5,0.5 + parent: 33 + type: Transform + - uid: 20781 + components: + - pos: -67.5,4.5 + parent: 33 + type: Transform + - uid: 20866 + components: + - pos: -81.5,18.5 + parent: 33 + type: Transform + - uid: 20889 + components: + - pos: -68.5,0.5 + parent: 33 + type: Transform + - uid: 20891 + components: + - pos: -82.5,18.5 + parent: 33 + type: Transform + - uid: 21518 + components: + - pos: -83.5,14.5 + parent: 33 + type: Transform + - uid: 21541 + components: + - pos: -68.5,3.5 + parent: 33 + type: Transform + - uid: 21549 + components: + - pos: -66.5,5.5 + parent: 33 + type: Transform - uid: 23502 components: - pos: -4.5,60.5 @@ -56250,30 +56848,12 @@ entities: pos: -71.5,18.5 parent: 33 type: Transform - - uid: 23938 - components: - - rot: 1.5707963267948966 rad - pos: -72.5,18.5 - parent: 33 - type: Transform - uid: 23939 components: - rot: 1.5707963267948966 rad pos: -73.5,18.5 parent: 33 type: Transform - - uid: 23940 - components: - - rot: 1.5707963267948966 rad - pos: -74.5,18.5 - parent: 33 - type: Transform - - uid: 23941 - components: - - rot: 1.5707963267948966 rad - pos: -75.5,18.5 - parent: 33 - type: Transform - uid: 23942 components: - rot: 1.5707963267948966 rad @@ -56298,42 +56878,6 @@ entities: pos: -79.5,18.5 parent: 33 type: Transform - - uid: 23946 - components: - - rot: 1.5707963267948966 rad - pos: -80.5,18.5 - parent: 33 - type: Transform - - uid: 23947 - components: - - rot: 1.5707963267948966 rad - pos: -81.5,18.5 - parent: 33 - type: Transform - - uid: 23948 - components: - - rot: 1.5707963267948966 rad - pos: -81.5,17.5 - parent: 33 - type: Transform - - uid: 23949 - components: - - rot: 1.5707963267948966 rad - pos: -81.5,16.5 - parent: 33 - type: Transform - - uid: 23950 - components: - - rot: 1.5707963267948966 rad - pos: -81.5,15.5 - parent: 33 - type: Transform - - uid: 23951 - components: - - rot: 1.5707963267948966 rad - pos: -82.5,15.5 - parent: 33 - type: Transform - uid: 23952 components: - rot: 1.5707963267948966 rad @@ -56352,16 +56896,6 @@ entities: pos: -83.5,17.5 parent: 33 type: Transform - - uid: 23955 - components: - - pos: -83.5,14.5 - parent: 33 - type: Transform - - uid: 23956 - components: - - pos: -84.5,14.5 - parent: 33 - type: Transform - uid: 23957 components: - pos: -85.5,14.5 @@ -56992,41 +57526,6 @@ entities: - pos: 14.5,70.5 parent: 33 type: Transform - - uid: 24084 - components: - - pos: 14.5,71.5 - parent: 33 - type: Transform - - uid: 24085 - components: - - pos: 13.5,71.5 - parent: 33 - type: Transform - - uid: 24086 - components: - - pos: 12.5,71.5 - parent: 33 - type: Transform - - uid: 24087 - components: - - pos: 11.5,71.5 - parent: 33 - type: Transform - - uid: 24088 - components: - - pos: 10.5,71.5 - parent: 33 - type: Transform - - uid: 24089 - components: - - pos: 9.5,71.5 - parent: 33 - type: Transform - - uid: 24090 - components: - - pos: 8.5,71.5 - parent: 33 - type: Transform - uid: 24091 components: - pos: 7.5,71.5 @@ -57222,11 +57721,6 @@ entities: - pos: -15.5,60.5 parent: 33 type: Transform - - uid: 24776 - components: - - pos: 61.5,60.5 - parent: 33 - type: Transform - uid: 25154 components: - pos: 56.5,60.5 @@ -57422,16 +57916,6 @@ entities: - pos: -79.5,-39.5 parent: 33 type: Transform - - uid: 26756 - components: - - pos: -80.5,-39.5 - parent: 33 - type: Transform - - uid: 26757 - components: - - pos: -80.5,-38.5 - parent: 33 - type: Transform - uid: 26774 components: - pos: -87.5,-28.5 @@ -57558,6 +58042,11 @@ entities: pos: 53.5,83.5 parent: 33 type: Transform + - uid: 27243 + components: + - pos: -75.5,18.5 + parent: 33 + type: Transform - uid: 28619 components: - pos: 50.5,60.5 @@ -57583,16 +58072,31 @@ entities: - pos: 52.5,60.5 parent: 33 type: Transform + - uid: 28849 + components: + - pos: -65.5,3.5 + parent: 33 + type: Transform - uid: 30273 components: - pos: 54.5,26.5 parent: 33 type: Transform + - uid: 30570 + components: + - pos: -74.5,18.5 + parent: 33 + type: Transform + - uid: 30571 + components: + - pos: -72.5,18.5 + parent: 33 + type: Transform - proto: Cautery entities: - - uid: 4413 + - uid: 21514 components: - - pos: -85.48953,-1.7459106 + - pos: -83.414696,-0.5439108 parent: 33 type: Transform - proto: Chair @@ -57681,12 +58185,6 @@ entities: pos: -24.5,-17.5 parent: 33 type: Transform - - uid: 1785 - components: - - rot: -1.5707963267948966 rad - pos: -78.5,-0.5 - parent: 33 - type: Transform - uid: 2083 components: - pos: -4.5,-20.5 @@ -57889,12 +58387,6 @@ entities: pos: -77.5,-1.5 parent: 33 type: Transform - - uid: 4214 - components: - - rot: -1.5707963267948966 rad - pos: -77.5,-0.5 - parent: 33 - type: Transform - uid: 4288 components: - rot: 3.141592653589793 rad @@ -59394,10 +59886,16 @@ entities: pos: 7.5525303,-20.286484 parent: 33 type: Transform - - uid: 18176 + - uid: 20785 components: - - rot: -1.5707963267948966 rad - pos: -68.5,0.5 + - rot: 3.141592653589793 rad + pos: -78.50705,15.778857 + parent: 33 + type: Transform + - uid: 20787 + components: + - rot: 1.5707963267948966 rad + pos: -81.42371,15.8622465 parent: 33 type: Transform - uid: 26236 @@ -59411,12 +59909,6 @@ entities: pos: 47.342945,8.816769 parent: 33 type: Transform - - uid: 28009 - components: - - rot: -1.5707963267948966 rad - pos: -68.5,5.5 - parent: 33 - type: Transform - uid: 28338 components: - rot: 1.5707963267948966 rad @@ -60429,6 +60921,40 @@ entities: - pos: -76.40576,-14.192599 parent: 33 type: Transform +- proto: CleanerDispenser + entities: + - uid: 30573 + components: + - pos: -76.5,-22.5 + parent: 33 + type: Transform + - solutions: + tank: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 5000 + reagents: + - data: null + ReagentId: SpaceCleaner + Quantity: 2500 + type: SolutionContainerManager + - uid: 30684 + components: + - pos: 7.5,63.5 + parent: 33 + type: Transform + - solutions: + tank: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 5000 + reagents: + - data: null + ReagentId: SpaceCleaner + Quantity: 1000 + type: SolutionContainerManager - proto: CloningPod entities: - uid: 2878 @@ -60963,19 +61489,19 @@ entities: type: Transform - proto: ClosetL3VirologyFilled entities: - - uid: 12469 + - uid: 30490 components: - - pos: -64.5,5.5 + - pos: -78.5,10.5 parent: 33 type: Transform - - uid: 17493 + - uid: 30491 components: - - pos: -64.5,4.5 + - pos: -78.5,11.5 parent: 33 type: Transform - - uid: 18521 + - uid: 30492 components: - - pos: -64.5,3.5 + - pos: -76.5,10.5 parent: 33 type: Transform - proto: ClosetMaintenanceFilledRandom @@ -61120,6 +61646,11 @@ entities: - pos: -22.5,-24.5 parent: 33 type: Transform + - uid: 4354 + components: + - pos: -84.5,20.5 + parent: 33 + type: Transform - uid: 5509 components: - rot: -1.5707963267948966 rad @@ -61157,11 +61688,6 @@ entities: - pos: -81.5,-28.5 parent: 33 type: Transform - - uid: 18283 - components: - - pos: -84.5,16.5 - parent: 33 - type: Transform - uid: 18362 components: - pos: -10.5,48.5 @@ -61226,6 +61752,11 @@ entities: - pos: -21.5,-24.5 parent: 33 type: Transform + - uid: 16134 + components: + - pos: -82.5,20.5 + parent: 33 + type: Transform - uid: 17865 components: - pos: -80.5,-28.5 @@ -61236,11 +61767,6 @@ entities: - pos: -61.5,-9.5 parent: 33 type: Transform - - uid: 18271 - components: - - pos: -82.5,16.5 - parent: 33 - type: Transform - uid: 18361 components: - pos: -9.5,48.5 @@ -61322,14 +61848,6 @@ entities: - pos: -39.5,-28.5 parent: 33 type: Transform -- proto: ClothingBackpackDuffelSurgeryFilled - entities: - - uid: 25953 - components: - - rot: 3.141592653589793 rad - pos: -66.49143,-15.869123 - parent: 33 - type: Transform - proto: ClothingBeltBandolier entities: - uid: 896 @@ -61503,6 +62021,12 @@ entities: pos: 21.933115,44.472477 parent: 33 type: Transform + - uid: 30550 + components: + - rot: 1.5707963267948966 rad + pos: -84.430336,21.73397 + parent: 33 + type: Transform - proto: ClothingHandsGlovesColorYellow entities: - uid: 3254 @@ -61515,11 +62039,6 @@ entities: - pos: -54.512222,-50.67201 parent: 33 type: Transform - - uid: 18285 - components: - - pos: 29.505934,31.828293 - parent: 33 - type: Transform - uid: 24348 components: - pos: 11.858694,80.34128 @@ -61570,6 +62089,13 @@ entities: - pos: -92.454796,-22.409147 parent: 33 type: Transform +- proto: ClothingHandsGlovesFingerlessInsulated + entities: + - uid: 7561 + components: + - pos: 29.622717,31.796177 + parent: 33 + type: Transform - proto: ClothingHandsGlovesLatex entities: - uid: 1784 @@ -61578,12 +62104,6 @@ entities: pos: -83.73379,4.3493733 parent: 33 type: Transform - - uid: 20862 - components: - - rot: -1.5707963267948966 rad - pos: -82.91783,12.424355 - parent: 33 - type: Transform - proto: ClothingHandsGlovesNitrile entities: - uid: 4343 @@ -61591,9 +62111,9 @@ entities: - pos: -88.54631,3.7679894 parent: 33 type: Transform - - uid: 28068 + - uid: 30509 components: - - pos: -62.55676,3.561011 + - pos: -76.51854,12.629302 parent: 33 type: Transform - proto: ClothingHandsGlovesPowerglove @@ -61887,13 +62407,6 @@ entities: - pos: -90.74087,-18.210236 parent: 33 type: Transform -- proto: ClothingHeadHatSurgcapPurple - entities: - - uid: 28810 - components: - - pos: -66.408104,-15.316656 - parent: 33 - type: Transform - proto: ClothingHeadHatTophat entities: - uid: 24492 @@ -61992,9 +62505,10 @@ entities: type: Transform - proto: ClothingHeadHelmetTemplar entities: - - uid: 16134 + - uid: 16302 components: - - pos: -84.48363,18.542814 + - rot: -1.5707963267948966 rad + pos: -82.49063,21.550241 parent: 33 type: Transform - proto: ClothingHeadHelmetThunderdome @@ -62084,6 +62598,12 @@ entities: - pos: 4.737921,42.76588 parent: 33 type: Transform + - uid: 25343 + components: + - rot: 1.5707963267948966 rad + pos: -33.49781,71.01446 + parent: 33 + type: Transform - proto: ClothingMaskGasAtmos entities: - uid: 449 @@ -62109,12 +62629,6 @@ entities: - pos: -86.47828,16.525616 parent: 33 type: Transform - - uid: 25343 - components: - - rot: 1.5707963267948966 rad - pos: -33.59509,71.17809 - parent: 33 - type: Transform - proto: ClothingMaskGasExplorer entities: - uid: 16989 @@ -62302,9 +62816,9 @@ entities: type: Transform - proto: ClothingOuterPoncho entities: - - uid: 24466 + - uid: 20871 components: - - pos: -77.44599,-0.46176332 + - pos: -77.504105,-1.4592988 parent: 33 type: Transform - proto: ClothingOuterPonchoClassic @@ -62439,6 +62953,13 @@ entities: pos: -9.468578,-11.378504 parent: 33 type: Transform +- proto: ClothingOuterWinterWarden + entities: + - uid: 30572 + components: + - pos: -13.362274,62.664635 + parent: 33 + type: Transform - proto: ClothingShoesBling entities: - uid: 17088 @@ -62701,12 +63222,6 @@ entities: pos: 23.5,-27.5 parent: 33 type: Transform - - uid: 281 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,2.5 - parent: 33 - type: Transform - uid: 3299 components: - rot: 3.141592653589793 rad @@ -62894,8 +63409,8 @@ entities: type: Transform - uid: 8909 components: - - rot: -1.5707963267948966 rad - pos: -46.5,2.5 + - rot: 3.141592653589793 rad + pos: -47.5,1.5 parent: 33 type: Transform - uid: 8925 @@ -63034,6 +63549,13 @@ entities: pos: -45.5,28.5 parent: 33 type: Transform +- proto: ComputerCargoBounty + entities: + - uid: 28063 + components: + - pos: 26.5,-10.5 + parent: 33 + type: Transform - proto: ComputerCargoOrders entities: - uid: 13588 @@ -63047,14 +63569,6 @@ entities: pos: 16.5,-11.5 parent: 33 type: Transform -- proto: ComputerCargoShuttle - entities: - - uid: 17135 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-18.5 - parent: 33 - type: Transform - proto: ComputerCloningConsole entities: - uid: 3970 @@ -63438,6 +63952,11 @@ entities: - pos: -28.5,63.5 parent: 33 type: Transform + - uid: 4214 + components: + - pos: -79.5,16.5 + parent: 33 + type: Transform - uid: 4378 components: - pos: -69.5,14.5 @@ -63463,6 +63982,11 @@ entities: - pos: -10.5,75.5 parent: 33 type: Transform + - uid: 9631 + components: + - pos: -76.5,16.5 + parent: 33 + type: Transform - uid: 10433 components: - pos: 45.5,19.5 @@ -64304,6 +64828,35 @@ entities: - pos: 34.5,-26.5 parent: 33 type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12153 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer - proto: CrateElectrical entities: - uid: 2799 @@ -64890,6 +65443,13 @@ entities: - pos: -38.5,124.5 parent: 33 type: Transform +- proto: CrateFreezer + entities: + - uid: 30575 + components: + - pos: -92.5,-13.5 + parent: 33 + type: Transform - proto: CrateFunBoardGames entities: - uid: 26839 @@ -65361,13 +65921,6 @@ entities: - 0 - 0 type: EntityStorage -- proto: CrateNPCSecDog - entities: - - uid: 27776 - components: - - pos: -30.5,71.5 - parent: 33 - type: Transform - proto: CrateSecurityRiot entities: - uid: 27388 @@ -65715,6 +66268,22 @@ entities: pos: 61.49384,27.657747 parent: 33 type: Transform +- proto: CryoPod + entities: + - uid: 18549 + components: + - pos: -69.5,2.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice + - uid: 20765 + components: + - pos: -69.5,4.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice - proto: d6Dice entities: - uid: 1721 @@ -65929,9 +66498,9 @@ entities: type: Transform - proto: DiseaseDiagnoser entities: - - uid: 4345 + - uid: 30498 components: - - pos: -63.5,0.5 + - pos: -79.5,12.5 parent: 33 type: Transform - proto: DiseaseSwab @@ -65997,6 +66566,11 @@ entities: pos: 27.5,19.5 parent: 33 type: Transform + - uid: 10638 + components: + - pos: -71.5,12.5 + parent: 33 + type: Transform - uid: 11324 components: - rot: -1.5707963267948966 rad @@ -66242,9 +66816,10 @@ entities: pos: -81.5,7.5 parent: 33 type: Transform - - uid: 12137 + - uid: 12122 components: - - pos: -72.5,13.5 + - rot: 1.5707963267948966 rad + pos: -72.5,12.5 parent: 33 type: Transform - uid: 12167 @@ -66589,6 +67164,11 @@ entities: pos: 25.5,-7.5 parent: 33 type: Transform + - uid: 30500 + components: + - pos: -77.5,12.5 + parent: 33 + type: Transform - proto: DisposalJunction entities: - uid: 11511 @@ -66737,6 +67317,12 @@ entities: - pos: 24.5,-8.5 parent: 33 type: Transform + - uid: 10562 + components: + - rot: 1.5707963267948966 rad + pos: -77.5,7.5 + parent: 33 + type: Transform - uid: 11540 components: - rot: 1.5707963267948966 rad @@ -69392,12 +69978,6 @@ entities: pos: -78.5,7.5 parent: 33 type: Transform - - uid: 12122 - components: - - rot: -1.5707963267948966 rad - pos: -77.5,7.5 - parent: 33 - type: Transform - uid: 12123 components: - rot: -1.5707963267948966 rad @@ -69476,38 +70056,10 @@ entities: pos: -72.5,-1.5 parent: 33 type: Transform - - uid: 12140 - components: - - rot: 1.5707963267948966 rad - pos: -76.5,13.5 - parent: 33 - type: Transform - - uid: 12141 - components: - - rot: 1.5707963267948966 rad - pos: -75.5,13.5 - parent: 33 - type: Transform - - uid: 12142 - components: - - rot: 1.5707963267948966 rad - pos: -74.5,13.5 - parent: 33 - type: Transform - - uid: 12143 - components: - - rot: 1.5707963267948966 rad - pos: -73.5,13.5 - parent: 33 - type: Transform - - uid: 12144 - components: - - pos: -72.5,12.5 - parent: 33 - type: Transform - - uid: 12145 + - uid: 12137 components: - - pos: -72.5,11.5 + - rot: 3.141592653589793 rad + pos: -72.5,11.5 parent: 33 type: Transform - uid: 12146 @@ -72732,6 +73284,38 @@ entities: pos: 27.5,-7.5 parent: 33 type: Transform + - uid: 30503 + components: + - rot: 1.5707963267948966 rad + pos: -79.5,12.5 + parent: 33 + type: Transform + - uid: 30504 + components: + - rot: 1.5707963267948966 rad + pos: -78.5,12.5 + parent: 33 + type: Transform + - uid: 30505 + components: + - pos: -77.5,11.5 + parent: 33 + type: Transform + - uid: 30506 + components: + - pos: -77.5,10.5 + parent: 33 + type: Transform + - uid: 30507 + components: + - pos: -77.5,9.5 + parent: 33 + type: Transform + - uid: 30508 + components: + - pos: -77.5,8.5 + parent: 33 + type: Transform - proto: DisposalRouter entities: - uid: 9776 @@ -72748,6 +73332,12 @@ entities: pos: 6.5,-20.5 parent: 33 type: Transform + - uid: 10666 + components: + - rot: 3.141592653589793 rad + pos: -71.5,11.5 + parent: 33 + type: Transform - uid: 11076 components: - rot: -1.5707963267948966 rad @@ -72923,12 +73513,6 @@ entities: pos: -82.5,1.5 parent: 33 type: Transform - - uid: 12139 - components: - - rot: 1.5707963267948966 rad - pos: -77.5,13.5 - parent: 33 - type: Transform - uid: 12161 components: - rot: 3.141592653589793 rad @@ -72995,6 +73579,12 @@ entities: pos: 28.5,-7.5 parent: 33 type: Transform + - uid: 30501 + components: + - rot: -1.5707963267948966 rad + pos: -80.5,12.5 + parent: 33 + type: Transform - proto: DisposalTrunk entities: - uid: 2312 @@ -73049,6 +73639,12 @@ entities: - pos: 7.5,67.5 parent: 33 type: Transform + - uid: 11021 + components: + - rot: 3.141592653589793 rad + pos: -71.5,10.5 + parent: 33 + type: Transform - uid: 11509 components: - rot: -1.5707963267948966 rad @@ -73239,12 +73835,6 @@ entities: pos: -83.5,1.5 parent: 33 type: Transform - - uid: 12138 - components: - - rot: 1.5707963267948966 rad - pos: -78.5,13.5 - parent: 33 - type: Transform - uid: 12160 components: - rot: 3.141592653589793 rad @@ -73414,6 +74004,12 @@ entities: - pos: 29.5,-6.5 parent: 33 type: Transform + - uid: 30502 + components: + - rot: 1.5707963267948966 rad + pos: -81.5,12.5 + parent: 33 + type: Transform - proto: DisposalUnit entities: - uid: 1814 @@ -73461,11 +74057,6 @@ entities: - pos: 5.5,-20.5 parent: 33 type: Transform - - uid: 4393 - components: - - pos: -78.5,13.5 - parent: 33 - type: Transform - uid: 4877 components: - pos: -62.5,-36.5 @@ -73546,6 +74137,11 @@ entities: - pos: -48.5,-6.5 parent: 33 type: Transform + - uid: 10561 + components: + - pos: -71.5,10.5 + parent: 33 + type: Transform - uid: 10613 components: - pos: -99.5,6.5 @@ -73691,6 +74287,11 @@ entities: - pos: 29.5,-6.5 parent: 33 type: Transform + - uid: 30499 + components: + - pos: -81.5,12.5 + parent: 33 + type: Transform - proto: DisposalYJunction entities: - uid: 11591 @@ -73764,6 +74365,11 @@ entities: - pos: -33.5,6.5 parent: 33 type: Transform + - uid: 12155 + components: + - pos: -30.5,71.5 + parent: 33 + type: Transform - uid: 17469 components: - pos: -104.5,2.5 @@ -73950,14 +74556,14 @@ entities: type: Transform - proto: Drill entities: - - uid: 4414 + - uid: 24361 components: - - pos: -85.47912,-1.1934431 + - pos: 21.169115,-33.104107 parent: 33 type: Transform - - uid: 24361 + - uid: 30484 components: - - pos: 21.169115,-33.104107 + - pos: -85.45637,0.62356645 parent: 33 type: Transform - proto: DrinkBahamaMama @@ -74179,6 +74785,11 @@ entities: type: Transform - proto: DrinkGlass entities: + - uid: 4370 + components: + - pos: -74.58317,10.718513 + parent: 33 + type: Transform - uid: 5612 components: - pos: -50.734985,39.090374 @@ -74199,11 +74810,6 @@ entities: - pos: -50.714153,39.090374 parent: 33 type: Transform - - uid: 10666 - components: - - pos: -73.296776,16.721493 - parent: 33 - type: Transform - proto: DrinkGoldenCup entities: - uid: 3598 @@ -74318,6 +74924,22 @@ entities: - pos: -91.42837,-16.094183 parent: 33 type: Transform +- proto: DrinkMilkCarton + entities: + - uid: 6642 + components: + - flags: InContainer + type: MetaData + - parent: 6379 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 24496 + components: + - pos: -53.64551,72.814026 + parent: 33 + type: Transform - proto: DrinkMilkshake entities: - uid: 8383 @@ -74538,11 +75160,23 @@ entities: - pos: -37.053635,-10.42785 parent: 33 type: Transform +- proto: DrinkSoyMilkCarton + entities: + - uid: 8324 + components: + - pos: -0.4601727,40.600983 + parent: 33 + type: Transform - proto: DrinkSpaceUpCan entities: - - uid: 10565 + - uid: 4367 + components: + - pos: -81.69003,16.875874 + parent: 33 + type: Transform + - uid: 9335 components: - - pos: -66.475266,5.7468443 + - pos: -78.67962,16.57358 parent: 33 type: Transform - proto: DrinkTeacup @@ -75067,6 +75701,11 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight + - uid: 4121 + components: + - pos: -79.5,8.5 + parent: 33 + type: Transform - uid: 4129 components: - pos: 51.5,57.5 @@ -75208,15 +75847,6 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 4350 - components: - - rot: -1.5707963267948966 rad - pos: -61.5,1.5 - parent: 33 - type: Transform - - enabled: True - type: PointLight - - type: ActiveEmergencyLight - uid: 4423 components: - pos: -20.5,70.5 @@ -75829,6 +76459,12 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight + - uid: 21520 + components: + - rot: 1.5707963267948966 rad + pos: -74.5,13.5 + parent: 33 + type: Transform - uid: 22134 components: - rot: 3.141592653589793 rad @@ -75838,6 +76474,12 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight + - uid: 23947 + components: + - rot: 3.141592653589793 rad + pos: -62.5,0.5 + parent: 33 + type: Transform - uid: 25237 components: - rot: 3.141592653589793 rad @@ -75873,14 +76515,6 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 28376 - components: - - pos: -77.5,8.5 - parent: 33 - type: Transform - - enabled: True - type: PointLight - - type: ActiveEmergencyLight - uid: 28378 components: - rot: 3.141592653589793 rad @@ -75908,15 +76542,6 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 28381 - components: - - rot: 1.5707963267948966 rad - pos: -78.5,13.5 - parent: 33 - type: Transform - - enabled: True - type: PointLight - - type: ActiveEmergencyLight - uid: 28382 components: - rot: 1.5707963267948966 rad @@ -76097,9 +76722,9 @@ entities: type: Physics - proto: ExosuitFabricator entities: - - uid: 10341 + - uid: 9644 components: - - pos: -63.5,-15.5 + - pos: -85.5,-1.5 parent: 33 type: Transform - proto: ExplosivesSignMed @@ -76109,6 +76734,16 @@ entities: - pos: -56.5,-10.5 parent: 33 type: Transform + - uid: 25418 + components: + - pos: 61.5,69.5 + parent: 33 + type: Transform + - uid: 29213 + components: + - pos: 61.5,76.5 + parent: 33 + type: Transform - proto: ExtendedEmergencyOxygenTankFilled entities: - uid: 13050 @@ -76168,22 +76803,12 @@ entities: - pos: -70.5,-33.5 parent: 33 type: Transform - - uid: 17454 - components: - - pos: -77.5,-4.5 - parent: 33 - type: Transform - uid: 24448 components: - rot: -1.5707963267948966 rad pos: -60.5,-54.5 parent: 33 type: Transform - - uid: 25867 - components: - - pos: -75.5,9.5 - parent: 33 - type: Transform - uid: 25870 components: - pos: -35.5,-0.5 @@ -76255,6 +76880,16 @@ entities: - pos: 10.5,-7.5 parent: 33 type: Transform + - uid: 30486 + components: + - pos: -78.5,-4.5 + parent: 33 + type: Transform + - uid: 30515 + components: + - pos: -81.5,11.5 + parent: 33 + type: Transform - proto: FaxMachineBase entities: - uid: 3943 @@ -76269,6 +76904,8 @@ entities: - pos: 13.5,5.5 parent: 33 type: Transform + - name: LAwyer + type: FaxMachine - uid: 22025 components: - pos: 48.5,-6.5 @@ -76647,13 +77284,6 @@ entities: pos: 52.5,58.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25770 - - 29745 - - 29744 - - 25775 - - 27330 - type: DeviceNetwork - devices: - 25770 - 29745 @@ -76661,22 +77291,14 @@ entities: - 25775 - 27330 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 232 components: - rot: 3.141592653589793 rad pos: 35.5,56.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25773 - - 10860 - - 28418 - - 25509 - - 28681 - - 7930 - - 29745 - - 29744 - type: DeviceNetwork - devices: - 25773 - 10860 @@ -76687,21 +77309,13 @@ entities: - 29745 - 29744 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 233 components: - pos: 54.5,33.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25775 - - 10857 - - 25774 - - 25563 - - 25798 - - 2537 - - 7141 - - 25797 - type: DeviceNetwork - devices: - 25775 - 10857 @@ -76712,31 +77326,13 @@ entities: - 7141 - 25797 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 352 components: - pos: 28.5,-9.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29564 - - 632 - - 403 - - 29560 - - 29561 - - 29557 - - 874 - - 17201 - - 25861 - - 16360 - - 28402 - - 16359 - - 25855 - - 10826 - - 10830 - - 16358 - - 16357 - - 16356 - type: DeviceNetwork - devices: - 29564 - 632 @@ -76757,23 +77353,21 @@ entities: - 16357 - 16356 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 366 components: - pos: 41.5,0.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29560 - - 29546 - - 29543 - - 29544 - type: DeviceNetwork - devices: - 29560 - 29546 - 29543 - 29544 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 481 components: - rot: 1.5707963267948966 rad @@ -76799,24 +77393,14 @@ entities: - 28410 - 25513 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 542 components: - rot: -1.5707963267948966 rad pos: -20.5,88.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25716 - - 29058 - - 29059 - - 29060 - - 29061 - - 25715 - - 25731 - - 25730 - - 25752 - - 29042 - type: DeviceNetwork - devices: - 25716 - 29058 @@ -76829,32 +77413,14 @@ entities: - 25752 - 29042 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 573 components: - rot: 1.5707963267948966 rad pos: -27.5,64.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25719 - - 10900 - - 10899 - - 25720 - - 25727 - - 25723 - - 25728 - - 25717 - - 29061 - - 29060 - - 29059 - - 29058 - - 25708 - - 10891 - - 25725 - - 25729 - - 25718 - - 25726 - type: DeviceNetwork - devices: - 25719 - 10900 @@ -76875,25 +77441,27 @@ entities: - 25718 - 25726 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 1045 components: - pos: -16.5,85.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 4439 components: - rot: -1.5707963267948966 rad pos: -25.5,92.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25717 - - 29042 - type: DeviceNetwork - devices: - 25717 - 29042 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 12840 components: - pos: -28.5,62.5 @@ -76907,6 +77475,8 @@ entities: - 25703 - 28431 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 15225 components: - rot: -1.5707963267948966 rad @@ -76936,6 +77506,25 @@ entities: - 25476 - 26153 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice + - uid: 21517 + components: + - pos: -80.5,11.5 + parent: 33 + type: Transform + - devices: + - 28476 + - 25599 + - 25593 + - 25607 + - 25598 + - 25608 + - 28494 + - 30530 + type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 24154 components: - rot: 1.5707963267948966 rad @@ -76946,6 +77535,8 @@ entities: - 24250 - 24260 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 24261 components: - pos: -13.5,4.5 @@ -76977,6 +77568,8 @@ entities: - 3238 - 3257 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 24276 components: - pos: -10.5,37.5 @@ -76988,38 +77581,21 @@ entities: - 24265 - 24264 - 25884 - - 3002 - 2980 - 25877 - 10873 - 10872 - 10831 + - 3002 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 24397 components: - rot: 1.5707963267948966 rad pos: 25.5,18.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25783 - - 25814 - - 25785 - - 1082 - - 10816 - - 10848 - - 28410 - - 25516 - - 25779 - - 10815 - - 10814 - - 10813 - - 29543 - - 324 - - 25782 - - 25809 - - 25808 - type: DeviceNetwork - devices: - 25783 - 25814 @@ -77039,6 +77615,8 @@ entities: - 25809 - 25808 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 24672 components: - pos: -9.5,40.5 @@ -77059,6 +77637,8 @@ entities: - 25877 - 24263 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 24684 components: - rot: -1.5707963267948966 rad @@ -77086,6 +77666,8 @@ entities: - 24686 - 28396 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25325 components: - rot: 3.141592653589793 rad @@ -77109,6 +77691,8 @@ entities: - 28395 - 2134 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25525 components: - rot: 1.5707963267948966 rad @@ -77124,6 +77708,8 @@ entities: - 24256 - 24257 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25527 components: - rot: 1.5707963267948966 rad @@ -77139,6 +77725,8 @@ entities: - 24259 - 24258 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25529 components: - pos: -40.5,-1.5 @@ -77168,6 +77756,8 @@ entities: - 28450 - 10947 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25537 components: - pos: -36.5,-5.5 @@ -77187,6 +77777,8 @@ entities: - 28500 - 28501 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25542 components: - pos: -43.5,-28.5 @@ -77203,6 +77795,8 @@ entities: - 21649 - 25543 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25548 components: - pos: -49.5,-12.5 @@ -77216,6 +77810,8 @@ entities: - 28510 - 28511 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25551 components: - rot: 1.5707963267948966 rad @@ -77231,6 +77827,8 @@ entities: - 25559 - 27556 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25569 components: - pos: -65.5,-31.5 @@ -77242,6 +77840,8 @@ entities: - 28511 - 25495 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25571 components: - pos: -79.5,-16.5 @@ -77252,15 +77852,14 @@ entities: - 25575 - 4156 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25578 components: - rot: 1.5707963267948966 rad pos: -75.5,-14.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 5421 - type: DeviceNetwork - devices: - 25559 - 10956 @@ -77282,6 +77881,8 @@ entities: - 5039 - 5421 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25587 components: - rot: -1.5707963267948966 rad @@ -77296,7 +77897,10 @@ entities: - 21135 - 25575 - 4156 + - 1751 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25589 components: - rot: 1.5707963267948966 rad @@ -77312,6 +77916,8 @@ entities: - 21644 - 25593 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25596 components: - pos: -89.5,27.5 @@ -77321,6 +77927,8 @@ entities: - 25597 - 25594 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25623 components: - rot: 3.141592653589793 rad @@ -77331,21 +77939,8 @@ entities: - 25610 - 25598 type: DeviceList - - uid: 25625 - components: - - pos: -77.5,9.5 - parent: 33 - type: Transform - - devices: - - 28476 - - 25599 - - 25593 - - 25629 - - 25607 - - 25598 - - 25608 - - 28494 - type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25627 components: - rot: 1.5707963267948966 rad @@ -77359,6 +77954,8 @@ entities: - 28498 - 28497 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25638 components: - pos: -54.5,8.5 @@ -77377,6 +77974,8 @@ entities: - 25614 - 28459 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25640 components: - rot: -1.5707963267948966 rad @@ -77392,6 +77991,8 @@ entities: - 304 - 25621 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25661 components: - rot: 3.141592653589793 rad @@ -77407,6 +78008,8 @@ entities: - 25500 - 25593 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25663 components: - rot: 1.5707963267948966 rad @@ -77419,6 +78022,8 @@ entities: - 25659 - 25647 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25665 components: - pos: -57.5,28.5 @@ -77435,6 +78040,8 @@ entities: - 25652 - 10931 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25667 components: - rot: -1.5707963267948966 rad @@ -77445,6 +78052,8 @@ entities: - 28433 - 25656 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25669 components: - rot: -1.5707963267948966 rad @@ -77462,6 +78071,8 @@ entities: - 25655 - 10912 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25671 components: - rot: 1.5707963267948966 rad @@ -77474,6 +78085,8 @@ entities: - 25652 - 10912 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25673 components: - rot: 1.5707963267948966 rad @@ -77506,6 +78119,8 @@ entities: - 25749 - 25750 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25680 components: - pos: -62.5,-0.5 @@ -77532,6 +78147,8 @@ entities: - 10959 - 10960 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25685 components: - rot: -1.5707963267948966 rad @@ -77546,6 +78163,8 @@ entities: - 25689 - 25686 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25692 components: - pos: -24.5,42.5 @@ -77576,6 +78195,8 @@ entities: - 25682 - 25758 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25695 components: - pos: -20.5,48.5 @@ -77587,6 +78208,8 @@ entities: - 25690 - 25688 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25697 components: - rot: -1.5707963267948966 rad @@ -77604,6 +78227,8 @@ entities: - 25655 - 10908 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25702 components: - rot: 3.141592653589793 rad @@ -77622,6 +78247,8 @@ entities: - 10906 - 10907 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25706 components: - pos: -38.5,53.5 @@ -77636,6 +78263,8 @@ entities: - 25703 - 21651 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25711 components: - pos: -38.5,76.5 @@ -77645,6 +78274,8 @@ entities: - 25708 - 10897 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25713 components: - pos: -33.5,76.5 @@ -77661,6 +78292,8 @@ entities: - 25703 - 21651 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25734 components: - pos: -29.5,72.5 @@ -77671,6 +78304,8 @@ entities: - 25717 - 25729 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25739 components: - pos: -15.5,65.5 @@ -77687,6 +78322,8 @@ entities: - 10899 - 10900 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25743 components: - pos: -7.5,68.5 @@ -77697,6 +78334,8 @@ entities: - 25717 - 25727 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25746 components: - pos: -16.5,76.5 @@ -77706,14 +78345,13 @@ entities: - 25728 - 25723 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25747 components: - pos: 37.5,12.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25784 - type: DeviceNetwork - devices: - 25846 - 29544 @@ -77722,6 +78360,8 @@ entities: - 25784 - 324 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25754 components: - pos: -7.5,81.5 @@ -77733,6 +78373,8 @@ entities: - 25752 - 25505 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25756 components: - pos: 4.5,91.5 @@ -77741,6 +78383,8 @@ entities: - devices: - 17792 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25760 components: - pos: 19.5,66.5 @@ -77756,6 +78400,8 @@ entities: - 21655 - 21654 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25762 components: - pos: 10.5,63.5 @@ -77771,6 +78417,8 @@ entities: - 25508 - 25507 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25769 components: - rot: 3.141592653589793 rad @@ -77792,6 +78440,8 @@ entities: - 10886 - 10863 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25790 components: - rot: -1.5707963267948966 rad @@ -77807,6 +78457,8 @@ entities: - 10811 - 10856 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25803 components: - rot: -1.5707963267948966 rad @@ -77824,6 +78476,8 @@ entities: - 13028 - 25302 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25805 components: - rot: 3.141592653589793 rad @@ -77835,6 +78489,8 @@ entities: - 25779 - 25796 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25811 components: - pos: 11.5,24.5 @@ -77871,6 +78527,8 @@ entities: - 10853 - 10854 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25821 components: - pos: 22.5,38.5 @@ -77890,6 +78548,8 @@ entities: - 28410 - 25515 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25823 components: - rot: 1.5707963267948966 rad @@ -77918,6 +78578,8 @@ entities: - 10886 - 10863 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25829 components: - rot: -1.5707963267948966 rad @@ -77931,6 +78593,8 @@ entities: - 28401 - 25518 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25838 components: - rot: 1.5707963267948966 rad @@ -77967,6 +78631,8 @@ entities: - 2503 - 2502 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25842 components: - pos: 0.5,20.5 @@ -77984,6 +78650,8 @@ entities: - 2503 - 2502 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25848 components: - rot: -1.5707963267948966 rad @@ -77997,6 +78665,8 @@ entities: - 28401 - 25849 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25853 components: - pos: 12.5,-7.5 @@ -78019,6 +78689,8 @@ entities: - 13761 - 2940 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25876 components: - pos: -15.5,24.5 @@ -78054,6 +78726,8 @@ entities: - 10875 - 10876 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25896 components: - rot: -1.5707963267948966 rad @@ -78073,6 +78747,8 @@ entities: - 25881 - 25892 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25898 components: - pos: -6.5,30.5 @@ -78085,6 +78761,8 @@ entities: - 12796 - 11410 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25900 components: - rot: 1.5707963267948966 rad @@ -78098,6 +78776,8 @@ entities: - 4518 - 10868 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 25902 components: - rot: -1.5707963267948966 rad @@ -78106,11 +78786,13 @@ entities: type: Transform - devices: - 25880 - - 3002 - 2980 - 25883 - 25891 + - 3002 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 26797 components: - pos: -68.5,-45.5 @@ -78122,6 +78804,8 @@ entities: - 21648 - 26808 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 27240 components: - pos: -11.5,56.5 @@ -78135,6 +78819,8 @@ entities: - 21650 - 21658 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 27550 components: - rot: -1.5707963267948966 rad @@ -78145,6 +78831,8 @@ entities: - 27547 - 27558 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28397 components: - pos: -3.5,-2.5 @@ -78162,6 +78850,8 @@ entities: - 27154 - 27155 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28403 components: - pos: 10.5,-19.5 @@ -78177,6 +78867,8 @@ entities: - 25861 - 13771 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28406 components: - rot: 3.141592653589793 rad @@ -78189,6 +78881,8 @@ entities: - 25856 - 16360 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28409 components: - pos: 11.5,11.5 @@ -78201,6 +78895,8 @@ entities: - 28401 - 28407 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28417 components: - rot: 1.5707963267948966 rad @@ -78232,6 +78928,8 @@ entities: - 25511 - 25512 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28420 components: - rot: 1.5707963267948966 rad @@ -78249,6 +78947,8 @@ entities: - 28410 - 25514 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28423 components: - pos: 20.5,50.5 @@ -78261,6 +78961,8 @@ entities: - 25771 - 10818 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28425 components: - rot: -1.5707963267948966 rad @@ -78273,6 +78975,8 @@ entities: - 25699 - 28432 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28426 components: - rot: -1.5707963267948966 rad @@ -78290,6 +78994,8 @@ entities: - 25718 - 28431 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28447 components: - rot: 1.5707963267948966 rad @@ -78325,6 +79031,8 @@ entities: - 25476 - 26153 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28453 components: - pos: -32.5,-0.5 @@ -78336,6 +79044,8 @@ entities: - 28450 - 28451 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28455 components: - pos: -48.5,4.5 @@ -78347,6 +79057,8 @@ entities: - 25616 - 28456 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28461 components: - pos: -58.5,12.5 @@ -78359,12 +79071,13 @@ entities: - 28471 - 28476 - 28472 - - 25615 - 25614 - 28473 - 25616 - 25604 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28462 components: - pos: -48.5,17.5 @@ -78381,6 +79094,8 @@ entities: - 28468 - 28467 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28464 components: - rot: 3.141592653589793 rad @@ -78396,6 +79111,8 @@ entities: - 28458 - 28466 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28470 components: - pos: -66.5,13.5 @@ -78408,9 +79125,11 @@ entities: - 25613 - 28471 - 28434 - - 25499 - 5192 + - 30529 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28488 components: - rot: -1.5707963267948966 rad @@ -78423,6 +79142,8 @@ entities: - 25616 - 28459 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28490 components: - pos: -66.5,9.5 @@ -78441,6 +79162,8 @@ entities: - 10952 - 5192 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28496 components: - rot: 3.141592653589793 rad @@ -78450,7 +79173,10 @@ entities: - devices: - 25610 - 28494 + - 1751 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28505 components: - rot: 3.141592653589793 rad @@ -78464,6 +79190,8 @@ entities: - 28394 - 28504 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28508 components: - rot: 1.5707963267948966 rad @@ -78480,6 +79208,8 @@ entities: - 10949 - 10948 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28514 components: - rot: -1.5707963267948966 rad @@ -78494,6 +79224,8 @@ entities: - 10950 - 10951 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28520 components: - rot: 3.141592653589793 rad @@ -78508,6 +79240,8 @@ entities: - 25566 - 25585 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28524 components: - pos: -75.5,-29.5 @@ -78524,14 +79258,13 @@ entities: - 28522 - 12704 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 28731 components: - pos: -66.5,-9.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 5421 - type: DeviceNetwork - devices: - 27547 - 27556 @@ -78543,31 +79276,22 @@ entities: - 25554 - 5421 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - uid: 29556 components: - rot: 1.5707963267948966 rad pos: 32.5,-19.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 29559 components: - rot: -1.5707963267948966 rad pos: 35.5,-2.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25850 - - 25846 - - 29546 - - 29564 - - 29563 - - 29562 - - 25856 - - 29561 - - 29557 - - 11900 - - 12670 - type: DeviceNetwork - devices: - 25850 - 25846 @@ -78581,6 +79305,8 @@ entities: - 11900 - 12670 type: DeviceList + - joinedGrid: 33 + type: AtmosDevice - proto: FireAlarmElectronics entities: - uid: 682 @@ -78626,9 +79352,6 @@ entities: - pos: 30.5,8.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29569 - type: DeviceNetwork - uid: 5196 components: - pos: -42.5,-23.5 @@ -78729,11 +79452,6 @@ entities: - pos: -85.5,-5.5 parent: 33 type: Transform - - uid: 25499 - components: - - pos: -75.5,17.5 - parent: 33 - type: Transform - uid: 25500 components: - pos: -69.5,20.5 @@ -78779,10 +79497,6 @@ entities: - pos: 25.5,57.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 7948 - - 232 - type: DeviceNetwork - uid: 25510 components: - pos: 13.5,51.5 @@ -78818,10 +79532,6 @@ entities: - pos: 26.5,24.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 24397 - - 4070 - type: DeviceNetwork - uid: 25517 components: - pos: 18.5,18.5 @@ -78857,20 +79567,11 @@ entities: - pos: -90.5,15.5 parent: 33 type: Transform - - uid: 25629 - components: - - pos: -81.5,11.5 - parent: 33 - type: Transform - uid: 25727 components: - pos: -15.5,68.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 573 - - 18472 - type: DeviceNetwork - uid: 25767 components: - pos: -3.5,48.5 @@ -78951,22 +79652,21 @@ entities: - pos: 37.5,7.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 366 - - 543 - - 29569 - type: DeviceNetwork - uid: 29546 components: - pos: 35.5,-0.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29559 - - 29558 - - 366 - - 543 - type: DeviceNetwork + - uid: 30529 + components: + - pos: -72.5,17.5 + parent: 33 + type: Transform + - uid: 30530 + components: + - pos: -82.5,13.5 + parent: 33 + type: Transform - proto: FirelockEdge entities: - uid: 874 @@ -78975,10 +79675,6 @@ entities: pos: 31.5,-14.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 352 - - 16563 - type: DeviceNetwork - uid: 1825 components: - rot: -1.5707963267948966 rad @@ -79066,19 +79762,11 @@ entities: - pos: 33.5,-11.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29559 - - 29558 - type: DeviceNetwork - uid: 12670 components: - pos: 34.5,-11.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29559 - - 29558 - type: DeviceNetwork - uid: 12675 components: - rot: 1.5707963267948966 rad @@ -79091,10 +79779,6 @@ entities: pos: 31.5,-15.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 352 - - 16563 - type: DeviceNetwork - uid: 17792 components: - rot: 3.141592653589793 rad @@ -79201,11 +79885,6 @@ entities: - pos: 29.5,15.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 24397 - - 29569 - - 4070 - type: DeviceNetwork - uid: 328 components: - pos: -49.5,6.5 @@ -79216,28 +79895,21 @@ entities: - pos: 26.5,-5.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 352 - - 16563 - type: DeviceNetwork - uid: 632 components: - pos: 25.5,-5.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 352 - - 16563 - type: DeviceNetwork - uid: 1082 components: - pos: 25.5,23.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 24397 - - 4070 - type: DeviceNetwork + - uid: 1751 + components: + - pos: -79.5,-3.5 + parent: 33 + type: Transform - uid: 2079 components: - pos: -23.5,-26.5 @@ -79253,10 +79925,6 @@ entities: - pos: 47.5,30.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 233 - - 7949 - type: DeviceNetwork - uid: 2940 components: - pos: 6.5,-19.5 @@ -79317,21 +79985,11 @@ entities: - pos: -70.5,-12.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25552 - - 28731 - - 25578 - - 25577 - type: DeviceNetwork - uid: 7141 components: - pos: 47.5,26.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 233 - - 7949 - type: DeviceNetwork - uid: 8178 components: - pos: 9.5,-19.5 @@ -79372,37 +80030,21 @@ entities: - pos: 29.5,17.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 24397 - - 4070 - type: DeviceNetwork - uid: 10814 components: - pos: 29.5,18.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 24397 - - 4070 - type: DeviceNetwork - uid: 10815 components: - pos: 29.5,21.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 24397 - - 4070 - type: DeviceNetwork - uid: 10816 components: - pos: 25.5,22.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 24397 - - 4070 - type: DeviceNetwork - uid: 10818 components: - pos: 24.5,47.5 @@ -79413,10 +80055,6 @@ entities: - pos: 15.5,-10.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 352 - - 16563 - type: DeviceNetwork - uid: 10827 components: - pos: 4.5,0.5 @@ -79432,10 +80070,6 @@ entities: - pos: 15.5,-12.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 352 - - 16563 - type: DeviceNetwork - uid: 10831 components: - pos: -13.5,24.5 @@ -79511,10 +80145,6 @@ entities: - pos: 25.5,21.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 24397 - - 4070 - type: DeviceNetwork - uid: 10850 components: - pos: 15.5,25.5 @@ -79550,19 +80180,11 @@ entities: - pos: 50.5,40.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 233 - - 7949 - type: DeviceNetwork - uid: 10860 components: - pos: 45.5,54.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 7948 - - 232 - type: DeviceNetwork - uid: 10862 components: - pos: 6.5,24.5 @@ -79653,10 +80275,6 @@ entities: - pos: -27.5,74.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 573 - - 18472 - type: DeviceNetwork - uid: 10892 components: - pos: -13.5,49.5 @@ -79697,19 +80315,11 @@ entities: - pos: -20.5,65.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 573 - - 18472 - type: DeviceNetwork - uid: 10900 components: - pos: -19.5,65.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 573 - - 18472 - type: DeviceNetwork - uid: 10901 components: - pos: -35.5,49.5 @@ -79970,46 +80580,26 @@ entities: - pos: 15.5,-17.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 352 - - 16563 - type: DeviceNetwork - uid: 16357 components: - pos: 15.5,-16.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 352 - - 16563 - type: DeviceNetwork - uid: 16358 components: - pos: 15.5,-14.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 352 - - 16563 - type: DeviceNetwork - uid: 16359 components: - pos: 16.5,-18.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 352 - - 16563 - type: DeviceNetwork - uid: 16360 components: - pos: 21.5,-18.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 352 - - 16563 - type: DeviceNetwork - uid: 21651 components: - pos: -36.5,72.5 @@ -80115,10 +80705,6 @@ entities: - pos: 47.5,36.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 233 - - 7949 - type: DeviceNetwork - uid: 25585 components: - pos: -69.5,-31.5 @@ -80209,44 +80795,26 @@ entities: - pos: -24.5,61.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 573 - - 18472 - type: DeviceNetwork - uid: 25728 components: - pos: -18.5,71.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 573 - - 18472 - type: DeviceNetwork - uid: 25729 components: - pos: -27.5,71.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 573 - - 18472 - type: DeviceNetwork - uid: 25730 components: - pos: -20.5,77.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 542 - type: DeviceNetwork - uid: 25731 components: - pos: -20.5,84.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 542 - type: DeviceNetwork - uid: 25749 components: - pos: -29.5,37.5 @@ -80272,46 +80840,26 @@ entities: - pos: 47.5,25.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 233 - - 7949 - type: DeviceNetwork - uid: 25798 components: - pos: 47.5,31.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 233 - - 7949 - type: DeviceNetwork - uid: 25808 components: - pos: 26.5,10.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 24397 - - 4070 - type: DeviceNetwork - uid: 25809 components: - pos: 27.5,10.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 24397 - - 4070 - type: DeviceNetwork - uid: 25814 components: - pos: 24.5,12.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 24397 - - 4070 - type: DeviceNetwork - uid: 25815 components: - pos: 21.5,20.5 @@ -80392,10 +80940,6 @@ entities: - pos: 49.5,58.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 138 - - 7950 - type: DeviceNetwork - uid: 27556 components: - pos: -62.5,-13.5 @@ -80571,102 +81115,51 @@ entities: - pos: -25.5,90.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 542 - - 4439 - - 25740 - type: DeviceNetwork - uid: 29058 components: - pos: -24.5,76.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 542 - - 573 - - 18472 - type: DeviceNetwork - uid: 29059 components: - pos: -23.5,76.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 542 - - 573 - - 18472 - type: DeviceNetwork - uid: 29060 components: - pos: -22.5,76.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 542 - - 573 - - 18472 - type: DeviceNetwork - uid: 29061 components: - pos: -21.5,76.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 542 - - 573 - - 18472 - type: DeviceNetwork - uid: 29561 components: - pos: 27.5,-7.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29559 - - 29558 - - 352 - - 16563 - type: DeviceNetwork - uid: 29562 components: - pos: 28.5,-3.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29559 - - 29558 - type: DeviceNetwork - uid: 29563 components: - pos: 28.5,-2.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29559 - - 29558 - type: DeviceNetwork - uid: 29744 components: - pos: 47.5,61.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 232 - - 7948 - - 138 - - 7950 - type: DeviceNetwork - uid: 29745 components: - pos: 47.5,62.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 232 - - 7948 - - 138 - - 7950 - type: DeviceNetwork - proto: Fireplace entities: - uid: 3467 @@ -80819,6 +81312,17 @@ entities: pos: 30.596369,32.5482 parent: 33 type: Transform + - uid: 24090 + components: + - pos: 7.3755164,64.64248 + parent: 33 + type: Transform + - uid: 30606 + components: + - rot: -1.5707963267948966 rad + pos: 7.6359334,64.600784 + parent: 33 + type: Transform - proto: FloorCarpetItemBlack entities: - uid: 17983 @@ -80947,13 +81451,6 @@ entities: type: Transform - fixtures: {} type: Fixtures - - uid: 4370 - components: - - pos: -72.5,15.5 - parent: 33 - type: Transform - - fixtures: {} - type: Fixtures - uid: 6779 components: - pos: 31.5,13.5 @@ -81003,13 +81500,6 @@ entities: type: Transform - fixtures: {} type: Fixtures - - uid: 16550 - components: - - pos: -64.5,-15.5 - parent: 33 - type: Transform - - fixtures: {} - type: Fixtures - uid: 17076 components: - pos: -90.5,-30.5 @@ -81031,6 +81521,13 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 18521 + components: + - pos: -73.5,11.5 + parent: 33 + type: Transform + - fixtures: {} + type: Fixtures - uid: 19913 components: - pos: 6.5,84.5 @@ -81038,6 +81535,13 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 21515 + components: + - pos: -40.5,21.5 + parent: 33 + type: Transform + - fixtures: {} + type: Fixtures - uid: 27319 components: - pos: -4.5,43.5 @@ -81655,21 +82159,10 @@ entities: type: Transform - proto: FoodBakedCookie entities: - - uid: 28536 - components: - - pos: -66.59841,0.44638306 - parent: 33 - type: Transform - - uid: 28656 - components: - - pos: -66.50466,0.61316603 - parent: 33 - type: Transform -- proto: FoodBakedCookieOatmeal - entities: - - uid: 28849 + - uid: 20783 components: - - pos: -66.44216,0.47765523 + - rot: 3.141592653589793 rad + pos: -81.45059,16.54758 parent: 33 type: Transform - proto: FoodBakedCookieSugar @@ -81679,6 +82172,12 @@ entities: - pos: -42.80174,-11.38897 parent: 33 type: Transform + - uid: 20786 + components: + - rot: 3.141592653589793 rad + pos: -78.461006,16.641396 + parent: 33 + type: Transform - proto: FoodBakedPretzel entities: - uid: 5507 @@ -81935,22 +82434,22 @@ entities: type: Transform - proto: FoodFrozenPopsicleJumbo entities: - - uid: 28342 + - uid: 29668 components: - flags: InContainer type: MetaData - - parent: 28341 + - parent: 29666 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: FoodFrozenPopsicleOrange entities: - - uid: 28343 + - uid: 29667 components: - flags: InContainer type: MetaData - - parent: 28341 + - parent: 29666 type: Transform - canCollide: False type: Physics @@ -82104,14 +82603,15 @@ entities: - type: InsideEntityStorage - proto: FoodMealCornedbeef entities: - - uid: 4396 + - uid: 3080 components: - flags: InContainer type: MetaData - - parent: 4361 + - parent: 3006 type: Transform - canCollide: False type: Physics + - type: InsideEntityStorage - proto: FoodMealFries entities: - uid: 25574 @@ -82349,6 +82849,35 @@ entities: - pos: 20.5085,67.68694 parent: 33 type: Transform +- proto: FoodMeatCrab + entities: + - uid: 12575 + components: + - flags: InContainer + type: MetaData + - parent: 12472 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 12576 + components: + - flags: InContainer + type: MetaData + - parent: 12472 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 12577 + components: + - flags: InContainer + type: MetaData + - parent: 12472 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage - proto: FoodMeatLizardtailKebab entities: - uid: 30218 @@ -82555,26 +83084,6 @@ entities: type: Transform - proto: FoodPotato entities: - - uid: 8307 - components: - - pos: -10.558084,43.664597 - parent: 33 - type: Transform - - uid: 8308 - components: - - pos: -10.547667,43.560356 - parent: 33 - type: Transform - - uid: 8309 - components: - - pos: -10.4435005,43.53951 - parent: 33 - type: Transform - - uid: 8310 - components: - - pos: -10.401834,43.675022 - parent: 33 - type: Transform - uid: 16409 components: - pos: -26.885897,35.479492 @@ -82684,9 +83193,9 @@ entities: type: Transform - proto: FoodTinBeans entities: - - uid: 24486 + - uid: 3575 components: - - pos: -78.384155,16.366428 + - pos: -74.47474,13.758764 parent: 33 type: Transform - proto: FoodTinPeachesMaintOpen @@ -82773,6 +83282,13 @@ entities: - pos: -29.222692,93.211296 parent: 33 type: Transform +- proto: FuelDispenser + entities: + - uid: 30574 + components: + - pos: 30.5,28.5 + parent: 33 + type: Transform - proto: GalaxythistleSeeds entities: - uid: 27393 @@ -82806,6 +83322,11 @@ entities: - pos: -79.24389,21.579466 parent: 33 type: Transform + - uid: 29211 + components: + - pos: -62.49683,3.5909655 + parent: 33 + type: Transform - proto: GasCanisterBrokenBase entities: - uid: 9890 @@ -82832,6 +83353,8 @@ entities: pos: 28.5,58.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 10077 @@ -82840,11 +83363,25 @@ entities: pos: 56.5,64.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice + - uid: 18283 + components: + - rot: -1.5707963267948966 rad + pos: -66.5,0.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice + - color: '#3399FFFF' + type: AtmosPipeColor - uid: 19701 components: - pos: 54.5,69.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF9933FF' type: AtmosPipeColor - uid: 19702 @@ -82852,6 +83389,8 @@ entities: - pos: 54.5,70.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF9933FF' type: AtmosPipeColor - uid: 24337 @@ -82860,12 +83399,16 @@ entities: pos: 55.5,64.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 28605 components: - rot: 1.5707963267948966 rad pos: 57.5,64.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#CC0000FF' type: AtmosPipeColor - uid: 28736 @@ -82874,6 +83417,8 @@ entities: pos: 56.5,62.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#CC0000FF' type: AtmosPipeColor - proto: GasFilterFlipped @@ -82884,6 +83429,8 @@ entities: pos: 40.5,56.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#66FF66FF' type: AtmosPipeColor - uid: 8745 @@ -82892,6 +83439,8 @@ entities: pos: 31.5,65.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 9924 @@ -82900,6 +83449,8 @@ entities: pos: 35.5,65.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 9945 @@ -82908,6 +83459,8 @@ entities: pos: 33.5,65.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 10070 @@ -82916,12 +83469,16 @@ entities: pos: 42.5,56.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 10073 components: - rot: -1.5707963267948966 rad pos: 41.5,65.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 10074 @@ -82930,6 +83487,8 @@ entities: pos: 39.5,65.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 10323 @@ -82938,6 +83497,8 @@ entities: pos: 48.5,61.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#9933FFFF' type: AtmosPipeColor - uid: 10324 @@ -82946,6 +83507,8 @@ entities: pos: 45.5,61.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#9933FFFF' type: AtmosPipeColor - uid: 11895 @@ -82954,16 +83517,85 @@ entities: pos: 37.5,65.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor + - uid: 18176 + components: + - rot: 3.141592653589793 rad + pos: -65.5,2.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice + - color: '#3399FFFF' + type: AtmosPipeColor + - uid: 18271 + components: + - rot: 3.141592653589793 rad + pos: -65.5,1.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice + - color: '#3399FFFF' + type: AtmosPipeColor - uid: 19441 components: - rot: -1.5707963267948966 rad pos: 29.5,65.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor + - uid: 24776 + components: + - rot: 3.141592653589793 rad + pos: 59.5,71.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice + - color: '#CC0000FF' + type: AtmosPipeColor + - uid: 25925 + components: + - pos: 61.5,63.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice + - color: '#CC0000FF' + type: AtmosPipeColor + - uid: 25939 + components: + - pos: 61.5,64.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice + - uid: 28643 + components: + - rot: 3.141592653589793 rad + pos: 59.5,73.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice + - color: '#CC0000FF' + type: AtmosPipeColor + - uid: 28644 + components: + - pos: 65.5,63.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice + - color: '#99CCFFFF' + type: AtmosPipeColor - proto: GasMinerCarbonDioxide entities: - uid: 8677 @@ -82971,6 +83603,8 @@ entities: - pos: 39.5,68.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - proto: GasMinerNitrogenStationLarge entities: - uid: 8673 @@ -82978,6 +83612,8 @@ entities: - pos: 29.5,68.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - proto: GasMinerOxygenStationLarge entities: - uid: 8674 @@ -82985,13 +83621,8 @@ entities: - pos: 31.5,68.5 parent: 33 type: Transform -- proto: GasMinerPlasma - entities: - - uid: 8675 - components: - - pos: 33.5,68.5 - parent: 33 - type: Transform + - joinedGrid: 33 + type: AtmosDevice - proto: GasMinerWaterVapor entities: - uid: 8676 @@ -82999,6 +83630,8 @@ entities: - pos: 37.5,68.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - proto: GasMixer entities: - uid: 9929 @@ -83007,6 +83640,8 @@ entities: pos: 49.5,64.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#999900FF' type: AtmosPipeColor - uid: 10033 @@ -83015,12 +83650,16 @@ entities: pos: 55.5,65.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 10069 components: - rot: -1.5707963267948966 rad pos: 39.5,58.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#66FF66FF' type: AtmosPipeColor - uid: 10071 @@ -83029,6 +83668,8 @@ entities: pos: 41.5,58.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FFCC99FF' type: AtmosPipeColor - uid: 10146 @@ -83037,6 +83678,8 @@ entities: pos: 49.5,69.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#999900FF' type: AtmosPipeColor - proto: GasMixerFlipped @@ -83047,6 +83690,8 @@ entities: pos: 40.5,58.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#66FF66FF' type: AtmosPipeColor - uid: 10031 @@ -83055,18 +83700,24 @@ entities: pos: 53.5,65.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 10497 components: - rot: 1.5707963267948966 rad pos: -79.5,-20.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 19447 components: - rot: -1.5707963267948966 rad pos: 42.5,61.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#9933FFFF' type: AtmosPipeColor - uid: 20000 @@ -83075,12 +83726,16 @@ entities: pos: 50.5,70.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 25301 components: - rot: -1.5707963267948966 rad pos: 36.5,61.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#9933FFFF' type: AtmosPipeColor - uid: 25416 @@ -83089,6 +83744,8 @@ entities: pos: 40.5,61.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#9933FFFF' type: AtmosPipeColor - uid: 25417 @@ -83097,6 +83754,8 @@ entities: pos: 31.5,62.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 27644 @@ -83105,6 +83764,8 @@ entities: pos: 38.5,61.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#9933FFFF' type: AtmosPipeColor - uid: 27645 @@ -83113,6 +83774,8 @@ entities: pos: 34.5,62.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF007FFF' type: AtmosPipeColor - uid: 28694 @@ -83121,6 +83784,8 @@ entities: pos: 35.5,61.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF66FFFF' type: AtmosPipeColor - uid: 29649 @@ -83128,6 +83793,8 @@ entities: - pos: 62.5,67.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - proto: GasOutletInjector entities: - uid: 5081 @@ -83136,17 +83803,23 @@ entities: pos: -82.5,-19.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 5405 components: - rot: 1.5707963267948966 rad pos: -82.5,-20.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 8665 components: - pos: 29.5,67.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF6666FF' type: AtmosPipeColor - uid: 8666 @@ -83154,6 +83827,8 @@ entities: - pos: 31.5,67.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#33FFFFFF' type: AtmosPipeColor - uid: 8667 @@ -83161,6 +83836,8 @@ entities: - pos: 33.5,67.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF66FFFF' type: AtmosPipeColor - uid: 8668 @@ -83168,11 +83845,15 @@ entities: - pos: 35.5,67.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 8669 components: - pos: 37.5,67.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#99CCFFFF' type: AtmosPipeColor - uid: 8670 @@ -83180,6 +83861,8 @@ entities: - pos: 39.5,67.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#808080FF' type: AtmosPipeColor - uid: 8671 @@ -83187,6 +83870,8 @@ entities: - pos: 41.5,67.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FFCC99FF' type: AtmosPipeColor - uid: 10129 @@ -83194,32 +83879,42 @@ entities: - pos: 52.5,79.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 10130 components: - pos: 50.5,79.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#999900FF' type: AtmosPipeColor - - uid: 28266 - components: - - rot: 3.141592653589793 rad - pos: -100.5,-77.5 - parent: 33 - type: Transform - - uid: 29636 + - uid: 27018 components: - rot: -1.5707963267948966 rad - pos: 60.5,73.5 + pos: 62.5,75.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#9933FFFF' type: AtmosPipeColor + - uid: 28266 + components: + - rot: 3.141592653589793 rad + pos: -100.5,-77.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 29653 components: - pos: 62.5,70.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - proto: GasPassiveGate entities: - uid: 5400 @@ -83227,7 +83922,9 @@ entities: - pos: -12.5,63.5 parent: 33 type: Transform - - color: '#0335FCFF' + - joinedGrid: 33 + type: AtmosDevice + - color: '#66B2FFFF' type: AtmosPipeColor - uid: 8631 components: @@ -83235,6 +83932,8 @@ entities: pos: 46.5,65.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF9933FF' type: AtmosPipeColor - uid: 11406 @@ -83243,7 +83942,29 @@ entities: pos: -3.5,39.5 parent: 33 type: Transform - - color: '#0335FCFF' + - joinedGrid: 33 + type: AtmosDevice + - color: '#66B2FFFF' + type: AtmosPipeColor + - uid: 18559 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,2.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 20767 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,1.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice + - color: '#FF1212FF' type: AtmosPipeColor - uid: 21078 components: @@ -83251,6 +83972,8 @@ entities: pos: -80.5,-13.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24137 @@ -83259,7 +83982,9 @@ entities: pos: -89.5,-11.5 parent: 33 type: Transform - - color: '#0335FCFF' + - joinedGrid: 33 + type: AtmosDevice + - color: '#FFFF66FF' type: AtmosPipeColor - uid: 25573 components: @@ -83267,22 +83992,18 @@ entities: pos: -80.5,-7.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 28752 + - uid: 27016 components: - rot: 1.5707963267948966 rad - pos: 56.5,59.5 - parent: 33 - type: Transform - - color: '#99CCFFFF' - type: AtmosPipeColor - - uid: 29168 - components: - - rot: 3.141592653589793 rad - pos: 65.5,61.5 + pos: 58.5,59.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#99CCFFFF' type: AtmosPipeColor - proto: GasPassiveVent @@ -83293,11 +84014,15 @@ entities: pos: -82.5,-18.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 8672 components: - pos: 43.5,67.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 9043 @@ -83306,6 +84031,8 @@ entities: pos: 29.5,69.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF6666FF' type: AtmosPipeColor - uid: 9044 @@ -83314,6 +84041,8 @@ entities: pos: 31.5,69.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#33FFFFFF' type: AtmosPipeColor - uid: 9045 @@ -83322,6 +84051,8 @@ entities: pos: 33.5,69.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF66FFFF' type: AtmosPipeColor - uid: 9046 @@ -83330,12 +84061,16 @@ entities: pos: 35.5,69.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 9047 components: - rot: 1.5707963267948966 rad pos: 37.5,69.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#99CCFFFF' type: AtmosPipeColor - uid: 9048 @@ -83344,6 +84079,8 @@ entities: pos: 39.5,69.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#808080FF' type: AtmosPipeColor - uid: 9049 @@ -83352,6 +84089,8 @@ entities: pos: 41.5,69.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FFCC99FF' type: AtmosPipeColor - uid: 9050 @@ -83360,6 +84099,8 @@ entities: pos: 43.5,69.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 10094 @@ -83368,31 +84109,61 @@ entities: pos: 44.5,73.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor + - uid: 16180 + components: + - rot: 3.141592653589793 rad + pos: -90.5,-13.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice + - color: '#FFFF66FF' + type: AtmosPipeColor - uid: 25427 components: - rot: 3.141592653589793 rad pos: 57.5,57.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice + - uid: 27882 + components: + - rot: 3.141592653589793 rad + pos: 61.5,57.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice + - color: '#CC0000FF' + type: AtmosPipeColor - uid: 28267 components: - rot: 3.141592653589793 rad pos: -101.5,-81.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 28742 components: - rot: 3.141592653589793 rad pos: 56.5,57.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 29073 components: - pos: 48.5,81.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF9933FF' type: AtmosPipeColor - uid: 29074 @@ -83400,6 +84171,8 @@ entities: - pos: 49.5,81.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF9933FF' type: AtmosPipeColor - uid: 29075 @@ -83407,6 +84180,8 @@ entities: - pos: 50.5,81.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF9933FF' type: AtmosPipeColor - uid: 29076 @@ -83414,6 +84189,8 @@ entities: - pos: 51.5,81.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF9933FF' type: AtmosPipeColor - uid: 29077 @@ -83421,6 +84198,8 @@ entities: - pos: 52.5,81.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF9933FF' type: AtmosPipeColor - uid: 29078 @@ -83428,6 +84207,8 @@ entities: - pos: 53.5,81.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF9933FF' type: AtmosPipeColor - uid: 29079 @@ -83435,6 +84216,8 @@ entities: - pos: 54.5,81.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF9933FF' type: AtmosPipeColor - uid: 29176 @@ -83443,6 +84226,8 @@ entities: pos: 63.5,57.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#99CCFFFF' type: AtmosPipeColor - uid: 29640 @@ -83450,11 +84235,15 @@ entities: - pos: 64.5,70.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 29641 components: - pos: 63.5,70.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - proto: GasPipeBend entities: - uid: 1564 @@ -83487,6 +84276,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 3584 + components: + - rot: -1.5707963267948966 rad + pos: -81.5,13.5 + parent: 33 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 4297 components: - rot: -1.5707963267948966 rad @@ -83723,6 +84520,8 @@ entities: pos: -10.5,62.5 parent: 33 type: Transform + - color: '#66B2FFFF' + type: AtmosPipeColor - uid: 12897 components: - pos: -2.5,46.5 @@ -83753,6 +84552,52 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 16133 + components: + - rot: 1.5707963267948966 rad + pos: -84.5,19.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16268 + components: + - pos: -72.5,13.5 + parent: 33 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16273 + components: + - pos: -71.5,14.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16304 + components: + - rot: 1.5707963267948966 rad + pos: -83.5,18.5 + parent: 33 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16305 + components: + - rot: -1.5707963267948966 rad + pos: -84.5,14.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16523 + components: + - rot: 1.5707963267948966 rad + pos: -68.5,4.5 + parent: 33 + type: Transform + - color: '#3399FFFF' + type: AtmosPipeColor - uid: 16584 components: - rot: -1.5707963267948966 rad @@ -83769,6 +84614,22 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - uid: 17454 + components: + - rot: 3.141592653589793 rad + pos: -69.5,3.5 + parent: 33 + type: Transform + - color: '#3399FFFF' + type: AtmosPipeColor + - uid: 17798 + components: + - rot: -1.5707963267948966 rad + pos: -65.5,0.5 + parent: 33 + type: Transform + - color: '#3399FFFF' + type: AtmosPipeColor - uid: 18618 components: - rot: 3.141592653589793 rad @@ -83785,6 +84646,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - uid: 18909 + components: + - rot: 3.141592653589793 rad + pos: -69.5,1.5 + parent: 33 + type: Transform + - color: '#3399FFFF' + type: AtmosPipeColor - uid: 19287 components: - rot: 3.141592653589793 rad @@ -84172,35 +85041,19 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 20774 - components: - - rot: 3.141592653589793 rad - pos: -75.5,10.5 - parent: 33 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 20775 - components: - - rot: 3.141592653589793 rad - pos: -74.5,11.5 - parent: 33 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 20776 + - uid: 20760 components: - - pos: -71.5,11.5 + - pos: -65.5,4.5 parent: 33 type: Transform - - color: '#FF1212FF' + - color: '#3399FFFF' type: AtmosPipeColor - - uid: 20777 + - uid: 20773 components: - - pos: -72.5,10.5 + - pos: -66.5,5.5 parent: 33 type: Transform - - color: '#0335FCFF' + - color: '#3399FFFF' type: AtmosPipeColor - uid: 20813 components: @@ -84242,38 +85095,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 20871 - components: - - rot: 1.5707963267948966 rad - pos: -81.5,19.5 - parent: 33 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 20872 - components: - - rot: 1.5707963267948966 rad - pos: -80.5,18.5 - parent: 33 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 20873 - components: - - rot: -1.5707963267948966 rad - pos: -81.5,14.5 - parent: 33 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 20874 - components: - - rot: -1.5707963267948966 rad - pos: -80.5,13.5 - parent: 33 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - uid: 20958 components: - rot: 1.5707963267948966 rad @@ -85485,14 +86306,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 27882 - components: - - rot: 1.5707963267948966 rad - pos: 59.5,66.5 - parent: 33 - type: Transform - - color: '#CC0000FF' - type: AtmosPipeColor - uid: 27927 components: - rot: -1.5707963267948966 rad @@ -85545,6 +86358,13 @@ entities: pos: -100.5,-74.5 parent: 33 type: Transform + - uid: 28341 + components: + - pos: 63.5,74.5 + parent: 33 + type: Transform + - color: '#CC0000FF' + type: AtmosPipeColor - uid: 28435 components: - rot: 1.5707963267948966 rad @@ -85561,6 +86381,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 28599 + components: + - rot: -1.5707963267948966 rad + pos: 61.5,70.5 + parent: 33 + type: Transform + - color: '#CC0000FF' + type: AtmosPipeColor - uid: 28623 components: - rot: -1.5707963267948966 rad @@ -85585,14 +86413,6 @@ entities: type: Transform - color: '#9933FFFF' type: AtmosPipeColor - - uid: 28745 - components: - - rot: 3.141592653589793 rad - pos: 61.5,61.5 - parent: 33 - type: Transform - - color: '#CC0000FF' - type: AtmosPipeColor - uid: 28791 components: - rot: -1.5707963267948966 rad @@ -85856,6 +86676,14 @@ entities: type: Transform - color: '#99CCFFFF' type: AtmosPipeColor + - uid: 29168 + components: + - rot: 1.5707963267948966 rad + pos: 60.5,70.5 + parent: 33 + type: Transform + - color: '#CC0000FF' + type: AtmosPipeColor - uid: 29241 components: - rot: 3.141592653589793 rad @@ -85904,18 +86732,10 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 29635 - components: - - rot: 1.5707963267948966 rad - pos: 58.5,73.5 - parent: 33 - type: Transform - - color: '#9933FFFF' - type: AtmosPipeColor - - uid: 29655 + - uid: 29638 components: - rot: 1.5707963267948966 rad - pos: 60.5,71.5 + pos: 59.5,74.5 parent: 33 type: Transform - color: '#CC0000FF' @@ -85990,29 +86810,6 @@ entities: type: Transform - color: '#CC0000FF' type: AtmosPipeColor - - uid: 29665 - components: - - pos: 63.5,75.5 - parent: 33 - type: Transform - - color: '#CC0000FF' - type: AtmosPipeColor - - uid: 29667 - components: - - rot: -1.5707963267948966 rad - pos: 62.5,72.5 - parent: 33 - type: Transform - - color: '#CC0000FF' - type: AtmosPipeColor - - uid: 29668 - components: - - rot: 1.5707963267948966 rad - pos: 61.5,72.5 - parent: 33 - type: Transform - - color: '#CC0000FF' - type: AtmosPipeColor - uid: 29717 components: - pos: 64.5,61.5 @@ -86652,6 +87449,13 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 1762 + components: + - pos: -65.5,3.5 + parent: 33 + type: Transform + - color: '#3399FFFF' + type: AtmosPipeColor - uid: 1960 components: - pos: -25.5,-27.5 @@ -86768,6 +87572,46 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 4125 + components: + - rot: 3.141592653589793 rad + pos: -84.5,18.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4219 + components: + - rot: 1.5707963267948966 rad + pos: -82.5,19.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4368 + components: + - rot: 3.141592653589793 rad + pos: -77.5,9.5 + parent: 33 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4381 + components: + - rot: 1.5707963267948966 rad + pos: -81.5,19.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4396 + components: + - rot: 3.141592653589793 rad + pos: -84.5,15.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 5130 components: - pos: -46.5,-8.5 @@ -86959,6 +87803,30 @@ entities: pos: -81.5,-20.5 parent: 33 type: Transform + - uid: 5708 + components: + - rot: 3.141592653589793 rad + pos: 59.5,70.5 + parent: 33 + type: Transform + - color: '#CC0000FF' + type: AtmosPipeColor + - uid: 5913 + components: + - rot: -1.5707963267948966 rad + pos: -79.5,14.5 + parent: 33 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5929 + components: + - rot: -1.5707963267948966 rad + pos: -78.5,14.5 + parent: 33 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 5944 components: - rot: 1.5707963267948966 rad @@ -86967,6 +87835,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 6747 + components: + - rot: 3.141592653589793 rad + pos: -77.5,13.5 + parent: 33 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 7170 components: - rot: 1.5707963267948966 rad @@ -87031,6 +87907,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 7560 + components: + - rot: 3.141592653589793 rad + pos: 61.5,58.5 + parent: 33 + type: Transform + - color: '#CC0000FF' + type: AtmosPipeColor - uid: 7861 components: - rot: 1.5707963267948966 rad @@ -87077,6 +87961,14 @@ entities: type: Transform - color: '#FF9933FF' type: AtmosPipeColor + - uid: 7922 + components: + - rot: -1.5707963267948966 rad + pos: 61.5,75.5 + parent: 33 + type: Transform + - color: '#9933FFFF' + type: AtmosPipeColor - uid: 7940 components: - rot: 3.141592653589793 rad @@ -87117,6 +88009,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 7960 + components: + - rot: 1.5707963267948966 rad + pos: 56.5,59.5 + parent: 33 + type: Transform + - color: '#99CCFFFF' + type: AtmosPipeColor - uid: 8099 components: - rot: 1.5707963267948966 rad @@ -87921,6 +88821,13 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - uid: 10565 + components: + - pos: -72.5,12.5 + parent: 33 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 10780 components: - rot: 3.141592653589793 rad @@ -88005,6 +88912,20 @@ entities: type: Transform - color: '#FF9933FF' type: AtmosPipeColor + - uid: 12138 + components: + - pos: -72.5,11.5 + parent: 33 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12139 + components: + - pos: -72.5,10.5 + parent: 33 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 12442 components: - rot: 1.5707963267948966 rad @@ -88013,6 +88934,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - uid: 12469 + components: + - rot: -1.5707963267948966 rad + pos: -75.5,18.5 + parent: 33 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 12486 components: - rot: -1.5707963267948966 rad @@ -88037,6 +88966,13 @@ entities: type: Transform - color: '#FF9999FF' type: AtmosPipeColor + - uid: 12713 + components: + - pos: -83.5,14.5 + parent: 33 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 12797 components: - rot: -1.5707963267948966 rad @@ -88197,6 +89133,29 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - uid: 14880 + components: + - pos: -72.5,15.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14988 + components: + - rot: 1.5707963267948966 rad + pos: -82.5,13.5 + parent: 33 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14989 + components: + - rot: 3.141592653589793 rad + pos: -84.5,16.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 15029 components: - pos: -5.5,-28.5 @@ -88499,6 +89458,28 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 16155 + components: + - rot: -1.5707963267948966 rad + pos: -72.5,18.5 + parent: 33 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16174 + components: + - pos: -72.5,18.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16175 + components: + - pos: -72.5,17.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 16221 components: - rot: 3.141592653589793 rad @@ -88539,6 +89520,51 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 16270 + components: + - pos: -71.5,13.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16271 + components: + - pos: -71.5,12.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16272 + components: + - pos: -71.5,11.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16276 + components: + - rot: 3.141592653589793 rad + pos: -84.5,17.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16300 + components: + - rot: 1.5707963267948966 rad + pos: -83.5,19.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16306 + components: + - rot: 1.5707963267948966 rad + pos: -80.5,18.5 + parent: 33 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 16547 components: - rot: -1.5707963267948966 rad @@ -88555,6 +89581,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 16550 + components: + - rot: -1.5707963267948966 rad + pos: -67.5,0.5 + parent: 33 + type: Transform + - color: '#3399FFFF' + type: AtmosPipeColor - uid: 16610 components: - rot: 1.5707963267948966 rad @@ -88645,6 +89679,21 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 18520 + components: + - rot: -1.5707963267948966 rad + pos: -74.5,19.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 18545 + components: + - pos: -72.5,16.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 18720 components: - pos: -22.5,89.5 @@ -88667,6 +89716,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - uid: 18907 + components: + - rot: 3.141592653589793 rad + pos: -63.5,3.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 19214 components: - rot: -1.5707963267948966 rad @@ -94211,7 +95268,7 @@ entities: pos: -12.5,61.5 parent: 33 type: Transform - - color: '#0335FCFF' + - color: '#66B2FFFF' type: AtmosPipeColor - uid: 20650 components: @@ -94727,14 +95784,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 20745 - components: - - rot: -1.5707963267948966 rad - pos: -72.5,19.5 - parent: 33 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - uid: 20746 components: - rot: -1.5707963267948966 rad @@ -94815,14 +95864,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 20757 - components: - - rot: -1.5707963267948966 rad - pos: -72.5,18.5 - parent: 33 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - uid: 20758 components: - rot: -1.5707963267948966 rad @@ -94871,128 +95912,13 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 20765 - components: - - pos: -75.5,17.5 - parent: 33 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 20766 - components: - - pos: -75.5,16.5 - parent: 33 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 20767 - components: - - pos: -75.5,15.5 - parent: 33 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 20769 - components: - - rot: 3.141592653589793 rad - pos: -74.5,18.5 - parent: 33 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 20770 - components: - - rot: 3.141592653589793 rad - pos: -74.5,17.5 - parent: 33 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 20771 - components: - - rot: 3.141592653589793 rad - pos: -74.5,16.5 - parent: 33 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 20772 - components: - - rot: 3.141592653589793 rad - pos: -74.5,15.5 - parent: 33 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 20780 - components: - - rot: 3.141592653589793 rad - pos: -75.5,13.5 - parent: 33 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 20781 - components: - - rot: 3.141592653589793 rad - pos: -75.5,12.5 - parent: 33 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 20782 - components: - - rot: 3.141592653589793 rad - pos: -75.5,11.5 - parent: 33 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 20783 - components: - - rot: 1.5707963267948966 rad - pos: -74.5,10.5 - parent: 33 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 20784 + - uid: 20768 components: - rot: 1.5707963267948966 rad - pos: -73.5,10.5 - parent: 33 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 20785 - components: - - pos: -74.5,13.5 - parent: 33 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 20786 - components: - - pos: -74.5,12.5 - parent: 33 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 20787 - components: - - rot: -1.5707963267948966 rad - pos: -73.5,11.5 - parent: 33 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 20788 - components: - - rot: -1.5707963267948966 rad - pos: -72.5,11.5 + pos: -67.5,4.5 parent: 33 type: Transform - - color: '#FF1212FF' + - color: '#3399FFFF' type: AtmosPipeColor - uid: 20789 components: @@ -95056,14 +95982,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 20800 - components: - - rot: -1.5707963267948966 rad - pos: -77.5,8.5 - parent: 33 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - uid: 20801 components: - rot: -1.5707963267948966 rad @@ -95275,14 +96193,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 20840 - components: - - rot: 1.5707963267948966 rad - pos: -78.5,7.5 - parent: 33 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - uid: 20848 components: - pos: -77.5,6.5 @@ -95332,77 +96242,43 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 20867 - components: - - rot: 3.141592653589793 rad - pos: -82.5,0.5 - parent: 33 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 20868 - components: - - rot: 3.141592653589793 rad - pos: -82.5,1.5 - parent: 33 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 20877 + - uid: 20862 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -81.5,18.5 parent: 33 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 20878 + - uid: 20867 components: - rot: 3.141592653589793 rad - pos: -81.5,17.5 + pos: -82.5,0.5 parent: 33 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 20879 + - uid: 20868 components: - rot: 3.141592653589793 rad - pos: -81.5,16.5 + pos: -82.5,1.5 parent: 33 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 20880 + - uid: 20873 components: - - rot: 3.141592653589793 rad - pos: -81.5,15.5 + - pos: -83.5,15.5 parent: 33 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - uid: 20881 components: - - rot: 1.5707963267948966 rad - pos: -82.5,14.5 - parent: 33 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 20882 - components: - - rot: 1.5707963267948966 rad - pos: -83.5,14.5 - parent: 33 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 20883 - components: - - rot: 1.5707963267948966 rad - pos: -84.5,14.5 + - pos: -68.5,2.5 parent: 33 type: Transform - - color: '#FF1212FF' + - color: '#3399FFFF' type: AtmosPipeColor - uid: 20884 components: @@ -95444,58 +96320,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 20889 - components: - - pos: -80.5,17.5 - parent: 33 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 20890 - components: - - pos: -80.5,16.5 - parent: 33 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 20891 - components: - - pos: -80.5,15.5 - parent: 33 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 20892 - components: - - pos: -80.5,14.5 - parent: 33 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 20893 - components: - - rot: -1.5707963267948966 rad - pos: -81.5,13.5 - parent: 33 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 20894 - components: - - rot: -1.5707963267948966 rad - pos: -82.5,13.5 - parent: 33 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 20895 - components: - - rot: -1.5707963267948966 rad - pos: -83.5,13.5 - parent: 33 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - uid: 20896 components: - rot: -1.5707963267948966 rad @@ -98938,15 +99762,7 @@ entities: - uid: 21510 components: - rot: 3.141592653589793 rad - pos: -69.5,4.5 - parent: 33 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 21511 - components: - - rot: 3.141592653589793 rad - pos: -69.5,3.5 + pos: -77.5,11.5 parent: 33 type: Transform - color: '#0335FCFF' @@ -98959,22 +99775,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 21517 - components: - - rot: 3.141592653589793 rad - pos: -68.5,5.5 - parent: 33 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 21518 - components: - - rot: 3.141592653589793 rad - pos: -68.5,4.5 - parent: 33 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - uid: 21524 components: - rot: 3.141592653589793 rad @@ -98999,38 +99799,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 21532 - components: - - rot: -1.5707963267948966 rad - pos: -64.5,2.5 - parent: 33 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 21533 - components: - - rot: -1.5707963267948966 rad - pos: -65.5,2.5 - parent: 33 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 21534 - components: - - rot: -1.5707963267948966 rad - pos: -66.5,2.5 - parent: 33 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 21535 - components: - - rot: 3.141592653589793 rad - pos: -63.5,3.5 - parent: 33 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - uid: 21536 components: - rot: 3.141592653589793 rad @@ -99095,30 +99863,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 21547 - components: - - rot: 1.5707963267948966 rad - pos: -63.5,3.5 - parent: 33 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 21548 - components: - - rot: -1.5707963267948966 rad - pos: -65.5,3.5 - parent: 33 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 21549 - components: - - rot: -1.5707963267948966 rad - pos: -66.5,3.5 - parent: 33 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - uid: 21551 components: - rot: 3.141592653589793 rad @@ -109684,6 +110428,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 23940 + components: + - rot: -1.5707963267948966 rad + pos: -80.5,14.5 + parent: 33 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 24118 components: - pos: -63.5,14.5 @@ -110981,13 +111733,6 @@ entities: type: Transform - color: '#9933FFFF' type: AtmosPipeColor - - uid: 25418 - components: - - pos: 61.5,63.5 - parent: 33 - type: Transform - - color: '#CC0000FF' - type: AtmosPipeColor - uid: 25425 components: - rot: -1.5707963267948966 rad @@ -111906,6 +112651,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - uid: 27366 + components: + - rot: 1.5707963267948966 rad + pos: -82.5,18.5 + parent: 33 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 27408 components: - rot: -1.5707963267948966 rad @@ -112121,13 +112874,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 27634 - components: - - pos: 61.5,64.5 - parent: 33 - type: Transform - - color: '#CC0000FF' - type: AtmosPipeColor - uid: 27635 components: - pos: 44.5,64.5 @@ -112143,6 +112889,13 @@ entities: type: Transform - color: '#808080FF' type: AtmosPipeColor + - uid: 27666 + components: + - pos: -83.5,17.5 + parent: 33 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 27851 components: - rot: 1.5707963267948966 rad @@ -112478,6 +113231,13 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - uid: 28009 + components: + - pos: -83.5,16.5 + parent: 33 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 28188 components: - rot: 1.5707963267948966 rad @@ -112720,6 +113480,22 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 28342 + components: + - rot: 3.141592653589793 rad + pos: 59.5,72.5 + parent: 33 + type: Transform + - color: '#CC0000FF' + type: AtmosPipeColor + - uid: 28343 + components: + - rot: 3.141592653589793 rad + pos: 61.5,59.5 + parent: 33 + type: Transform + - color: '#CC0000FF' + type: AtmosPipeColor - uid: 28344 components: - rot: 3.141592653589793 rad @@ -112918,12 +113694,13 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 28599 + - uid: 28493 components: - - pos: 60.5,67.5 + - rot: 3.141592653589793 rad + pos: -77.5,10.5 parent: 33 type: Transform - - color: '#CC0000FF' + - color: '#0335FCFF' type: AtmosPipeColor - uid: 28602 components: @@ -113043,6 +113820,14 @@ entities: type: Transform - color: '#FF66FFFF' type: AtmosPipeColor + - uid: 28673 + components: + - rot: 3.141592653589793 rad + pos: 58.5,68.5 + parent: 33 + type: Transform + - color: '#9933FFFF' + type: AtmosPipeColor - uid: 28676 components: - rot: 3.141592653589793 rad @@ -113303,6 +114088,14 @@ entities: type: Transform - color: '#99CCFFFF' type: AtmosPipeColor + - uid: 28752 + components: + - rot: -1.5707963267948966 rad + pos: 60.5,74.5 + parent: 33 + type: Transform + - color: '#CC0000FF' + type: AtmosPipeColor - uid: 28753 components: - rot: 1.5707963267948966 rad @@ -113364,14 +114157,6 @@ entities: type: Transform - color: '#99CCFFFF' type: AtmosPipeColor - - uid: 28783 - components: - - rot: -1.5707963267948966 rad - pos: 58.5,59.5 - parent: 33 - type: Transform - - color: '#99CCFFFF' - type: AtmosPipeColor - uid: 28785 components: - pos: 56.5,61.5 @@ -113939,6 +114724,14 @@ entities: type: Transform - color: '#99CCFFFF' type: AtmosPipeColor + - uid: 29165 + components: + - rot: 3.141592653589793 rad + pos: 60.5,68.5 + parent: 33 + type: Transform + - color: '#CC0000FF' + type: AtmosPipeColor - uid: 29171 components: - rot: 3.141592653589793 rad @@ -114632,10 +115425,10 @@ entities: type: Transform - color: '#9933FFFF' type: AtmosPipeColor - - uid: 29637 + - uid: 29636 components: - - rot: 1.5707963267948966 rad - pos: 59.5,73.5 + - rot: -1.5707963267948966 rad + pos: 59.5,75.5 parent: 33 type: Transform - color: '#9933FFFF' @@ -114662,6 +115455,14 @@ entities: - pos: 62.5,69.5 parent: 33 type: Transform + - uid: 29655 + components: + - rot: 3.141592653589793 rad + pos: 58.5,73.5 + parent: 33 + type: Transform + - color: '#9933FFFF' + type: AtmosPipeColor - uid: 29670 components: - rot: 1.5707963267948966 rad @@ -114732,10 +115533,11 @@ entities: type: AtmosPipeColor - uid: 29679 components: - - pos: 66.5,73.5 + - rot: 3.141592653589793 rad + pos: 58.5,74.5 parent: 33 type: Transform - - color: '#CC0000FF' + - color: '#9933FFFF' type: AtmosPipeColor - uid: 29680 components: @@ -114758,13 +115560,6 @@ entities: type: Transform - color: '#CC0000FF' type: AtmosPipeColor - - uid: 29683 - components: - - pos: 64.5,73.5 - parent: 33 - type: Transform - - color: '#CC0000FF' - type: AtmosPipeColor - uid: 29684 components: - pos: 63.5,73.5 @@ -114772,46 +115567,41 @@ entities: type: Transform - color: '#CC0000FF' type: AtmosPipeColor - - uid: 29685 - components: - - pos: 63.5,74.5 - parent: 33 - type: Transform - - color: '#CC0000FF' - type: AtmosPipeColor - - uid: 29686 + - uid: 29688 components: - - pos: 62.5,74.5 + - rot: 3.141592653589793 rad + pos: 59.5,68.5 parent: 33 type: Transform - color: '#CC0000FF' type: AtmosPipeColor - - uid: 29687 + - uid: 29689 components: - - pos: 62.5,73.5 + - rot: 3.141592653589793 rad + pos: 59.5,69.5 parent: 33 type: Transform - color: '#CC0000FF' type: AtmosPipeColor - - uid: 29688 + - uid: 29690 components: - - pos: 60.5,70.5 + - rot: 3.141592653589793 rad + pos: 59.5,67.5 parent: 33 type: Transform - color: '#CC0000FF' type: AtmosPipeColor - uid: 29691 components: - - rot: 1.5707963267948966 rad + - rot: -1.5707963267948966 rad pos: 60.5,75.5 parent: 33 type: Transform - - color: '#CC0000FF' + - color: '#9933FFFF' type: AtmosPipeColor - - uid: 29692 + - uid: 29747 components: - - rot: 1.5707963267948966 rad - pos: 61.5,75.5 + - pos: 60.5,69.5 parent: 33 type: Transform - color: '#CC0000FF' @@ -115081,6 +115871,78 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 30465 + components: + - rot: -1.5707963267948966 rad + pos: 61.5,74.5 + parent: 33 + type: Transform + - color: '#CC0000FF' + type: AtmosPipeColor + - uid: 30466 + components: + - rot: -1.5707963267948966 rad + pos: 62.5,74.5 + parent: 33 + type: Transform + - color: '#CC0000FF' + type: AtmosPipeColor + - uid: 30522 + components: + - rot: 3.141592653589793 rad + pos: -79.5,14.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 30523 + components: + - rot: 3.141592653589793 rad + pos: -78.5,14.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 30524 + components: + - rot: 3.141592653589793 rad + pos: -78.5,12.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 30525 + components: + - rot: 3.141592653589793 rad + pos: -78.5,11.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 30526 + components: + - rot: 3.141592653589793 rad + pos: -78.5,10.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 30527 + components: + - rot: 3.141592653589793 rad + pos: -78.5,9.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 30528 + components: + - rot: 3.141592653589793 rad + pos: -78.5,8.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - proto: GasPipeTJunction entities: - uid: 633 @@ -115128,6 +115990,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 1764 + components: + - rot: -1.5707963267948966 rad + pos: -63.5,1.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 2009 components: - rot: -1.5707963267948966 rad @@ -115334,6 +116204,14 @@ entities: type: Transform - color: '#999900FF' type: AtmosPipeColor + - uid: 10175 + components: + - rot: 1.5707963267948966 rad + pos: 59.5,66.5 + parent: 33 + type: Transform + - color: '#CC0000FF' + type: AtmosPipeColor - uid: 10198 components: - rot: -1.5707963267948966 rad @@ -115342,6 +116220,14 @@ entities: type: Transform - color: '#FFCC99FF' type: AtmosPipeColor + - uid: 10341 + components: + - rot: -1.5707963267948966 rad + pos: -77.5,14.5 + parent: 33 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 10375 components: - rot: -1.5707963267948966 rad @@ -115443,6 +116329,21 @@ entities: type: Transform - color: '#00FFFFFF' type: AtmosPipeColor + - uid: 13514 + components: + - rot: 1.5707963267948966 rad + pos: 61.5,61.5 + parent: 33 + type: Transform + - color: '#CC0000FF' + type: AtmosPipeColor + - uid: 13515 + components: + - pos: 58.5,75.5 + parent: 33 + type: Transform + - color: '#9933FFFF' + type: AtmosPipeColor - uid: 14434 components: - rot: 3.141592653589793 rad @@ -115497,6 +116398,13 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 16154 + components: + - pos: -72.5,19.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 16219 components: - rot: -1.5707963267948966 rad @@ -115513,6 +116421,38 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 16274 + components: + - rot: 3.141592653589793 rad + pos: -77.5,8.5 + parent: 33 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16275 + components: + - rot: 3.141592653589793 rad + pos: -78.5,7.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16521 + components: + - rot: 3.141592653589793 rad + pos: -83.5,13.5 + parent: 33 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 16522 + components: + - rot: -1.5707963267948966 rad + pos: -68.5,3.5 + parent: 33 + type: Transform + - color: '#3399FFFF' + type: AtmosPipeColor - uid: 16613 components: - rot: 3.141592653589793 rad @@ -115560,6 +116500,22 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 18175 + components: + - rot: -1.5707963267948966 rad + pos: -63.5,2.5 + parent: 33 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 18285 + components: + - rot: 3.141592653589793 rad + pos: 60.5,66.5 + parent: 33 + type: Transform + - color: '#CC0000FF' + type: AtmosPipeColor - uid: 18405 components: - rot: 3.141592653589793 rad @@ -115575,6 +116531,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - uid: 18548 + components: + - rot: -1.5707963267948966 rad + pos: -68.5,1.5 + parent: 33 + type: Transform + - color: '#3399FFFF' + type: AtmosPipeColor - uid: 18723 components: - rot: 3.141592653589793 rad @@ -115897,6 +116861,8 @@ entities: pos: -12.5,62.5 parent: 33 type: Transform + - color: '#66B2FFFF' + type: AtmosPipeColor - uid: 20144 components: - rot: 1.5707963267948966 rad @@ -116329,35 +117295,21 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 20747 + - uid: 20757 components: - - pos: -74.5,19.5 + - rot: 3.141592653589793 rad + pos: -72.5,14.5 parent: 33 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 20760 - components: - - pos: -75.5,18.5 - parent: 33 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 20768 - components: - - rot: -1.5707963267948966 rad - pos: -75.5,14.5 - parent: 33 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 20773 + - uid: 20766 components: - - rot: 1.5707963267948966 rad - pos: -74.5,14.5 + - rot: 3.141592653589793 rad + pos: -68.5,0.5 parent: 33 type: Transform - - color: '#FF1212FF' + - color: '#3399FFFF' type: AtmosPipeColor - uid: 20792 components: @@ -116428,6 +117380,22 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - uid: 20890 + components: + - rot: 3.141592653589793 rad + pos: -66.5,4.5 + parent: 33 + type: Transform + - color: '#3399FFFF' + type: AtmosPipeColor + - uid: 20893 + components: + - rot: 1.5707963267948966 rad + pos: -77.5,12.5 + parent: 33 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 20911 components: - rot: -1.5707963267948966 rad @@ -116766,22 +117734,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 21512 - components: - - rot: 1.5707963267948966 rad - pos: -69.5,5.5 - parent: 33 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 21515 - components: - - rot: -1.5707963267948966 rad - pos: -68.5,3.5 - parent: 33 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - uid: 21521 components: - rot: -1.5707963267948966 rad @@ -116805,22 +117757,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 21531 - components: - - rot: -1.5707963267948966 rad - pos: -63.5,2.5 - parent: 33 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 21546 - components: - - rot: 3.141592653589793 rad - pos: -64.5,3.5 - parent: 33 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - uid: 21552 components: - rot: 3.141592653589793 rad @@ -117620,6 +118556,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 22812 + components: + - rot: 1.5707963267948966 rad + pos: -81.5,14.5 + parent: 33 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 22863 components: - rot: 1.5707963267948966 rad @@ -118301,14 +119245,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 28535 - components: - - rot: 3.141592653589793 rad - pos: 60.5,66.5 - parent: 33 - type: Transform - - color: '#CC0000FF' - type: AtmosPipeColor - uid: 28601 components: - rot: -1.5707963267948966 rad @@ -118365,21 +119301,21 @@ entities: type: Transform - color: '#99CCFFFF' type: AtmosPipeColor - - uid: 29071 + - uid: 28783 components: - - rot: 3.141592653589793 rad - pos: 49.5,80.5 + - rot: 1.5707963267948966 rad + pos: 61.5,71.5 parent: 33 type: Transform - - color: '#FF9933FF' + - color: '#CC0000FF' type: AtmosPipeColor - - uid: 29165 + - uid: 29071 components: - - rot: -1.5707963267948966 rad - pos: 65.5,63.5 + - rot: 3.141592653589793 rad + pos: 49.5,80.5 parent: 33 type: Transform - - color: '#99CCFFFF' + - color: '#FF9933FF' type: AtmosPipeColor - uid: 29166 components: @@ -118405,14 +119341,6 @@ entities: type: Transform - color: '#99CCFFFF' type: AtmosPipeColor - - uid: 29213 - components: - - rot: 1.5707963267948966 rad - pos: 58.5,68.5 - parent: 33 - type: Transform - - color: '#9933FFFF' - type: AtmosPipeColor - uid: 29242 components: - rot: -1.5707963267948966 rad @@ -118499,20 +119427,21 @@ entities: pos: 62.5,68.5 parent: 33 type: Transform - - uid: 29666 + - uid: 30520 components: - - pos: 62.5,75.5 + - rot: 3.141592653589793 rad + pos: -79.5,13.5 parent: 33 type: Transform - - color: '#CC0000FF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 29669 + - uid: 30521 components: - - rot: 3.141592653589793 rad - pos: 61.5,71.5 + - rot: -1.5707963267948966 rad + pos: -78.5,13.5 parent: 33 type: Transform - - color: '#CC0000FF' + - color: '#FF1212FF' type: AtmosPipeColor - proto: GasPort entities: @@ -118522,52 +119451,85 @@ entities: pos: -79.5,-19.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 1824 components: - rot: -1.5707963267948966 rad pos: -79.5,-18.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice + - uid: 4641 + components: + - pos: -55.5,1.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 5408 components: - rot: -1.5707963267948966 rad pos: -76.5,-20.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 5465 components: - rot: 3.141592653589793 rad pos: -79.5,-21.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice + - uid: 7444 + components: + - rot: -1.5707963267948966 rad + pos: 60.5,71.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 7916 components: - rot: -1.5707963267948966 rad pos: 43.5,56.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 7923 components: - pos: 53.5,66.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 7942 components: - rot: 3.141592653589793 rad pos: 31.5,58.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 9922 components: - pos: 42.5,57.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 9956 components: - rot: 1.5707963267948966 rad pos: 27.5,60.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 9957 @@ -118576,6 +119538,8 @@ entities: pos: 27.5,59.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 10027 @@ -118584,24 +119548,32 @@ entities: pos: 52.5,64.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 10028 components: - rot: 3.141592653589793 rad pos: 56.5,63.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 10058 components: - rot: 3.141592653589793 rad pos: 55.5,63.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 10062 components: - rot: -1.5707963267948966 rad pos: 45.5,57.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 10083 @@ -118609,23 +119581,31 @@ entities: - pos: 56.5,66.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 10145 components: - rot: 3.141592653589793 rad pos: 52.5,71.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 10150 components: - pos: 33.5,58.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 10153 components: - rot: -1.5707963267948966 rad pos: 46.5,63.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#9933FFFF' type: AtmosPipeColor - uid: 10199 @@ -118633,42 +119613,71 @@ entities: - pos: 32.5,58.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 12636 components: - rot: -1.5707963267948966 rad pos: 51.5,70.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 13227 components: - rot: -1.5707963267948966 rad pos: 46.5,64.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#9933FFFF' type: AtmosPipeColor + - uid: 18910 + components: + - rot: 1.5707963267948966 rad + pos: -68.5,5.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 19679 components: - pos: 55.5,66.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 19703 components: - rot: 1.5707963267948966 rad pos: 53.5,70.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice + - uid: 20745 + components: + - pos: -66.5,1.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 25151 components: - pos: 50.5,71.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 25907 components: - rot: 1.5707963267948966 rad pos: 43.5,57.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 25910 @@ -118677,70 +119686,101 @@ entities: pos: 53.5,69.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 28170 components: - rot: -1.5707963267948966 rad pos: -98.5,-74.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice + - uid: 28611 + components: + - rot: -1.5707963267948966 rad + pos: 60.5,73.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 28640 components: - rot: -1.5707963267948966 rad pos: 43.5,58.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 28645 components: - pos: 52.5,66.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 28672 components: - rot: 1.5707963267948966 rad pos: 29.5,60.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice + - uid: 28745 + components: + - pos: 61.5,73.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 28784 components: - pos: 59.5,61.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 29642 components: - rot: 3.141592653589793 rad pos: 64.5,67.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 29643 components: - rot: 3.141592653589793 rad pos: 63.5,67.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 29650 components: - rot: 3.141592653589793 rad pos: 62.5,66.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 29651 components: - rot: 1.5707963267948966 rad pos: 61.5,67.5 parent: 33 type: Transform - - uid: 29689 - components: - - rot: 1.5707963267948966 rad - pos: 58.5,75.5 - parent: 33 - type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 29719 components: - rot: 1.5707963267948966 rad pos: 64.5,64.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#99CCFFFF' type: AtmosPipeColor - uid: 29720 @@ -118749,6 +119789,8 @@ entities: pos: 64.5,63.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#99CCFFFF' type: AtmosPipeColor - uid: 29736 @@ -118757,8 +119799,26 @@ entities: pos: 51.5,65.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF9933FF' type: AtmosPipeColor + - uid: 30463 + components: + - rot: 1.5707963267948966 rad + pos: 60.5,64.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice + - uid: 30464 + components: + - rot: 1.5707963267948966 rad + pos: 60.5,63.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice - proto: GasPressurePump entities: - uid: 1047 @@ -118767,6 +119827,8 @@ entities: pos: 30.5,60.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 1796 @@ -118775,6 +119837,8 @@ entities: pos: 27.5,58.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 5397 @@ -118783,17 +119847,23 @@ entities: pos: -80.5,-18.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 7914 components: - rot: -1.5707963267948966 rad pos: 42.5,58.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 7941 components: - pos: 31.5,59.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 9925 @@ -118802,25 +119872,43 @@ entities: pos: 34.5,57.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#66FF66FF' type: AtmosPipeColor + - uid: 9980 + components: + - rot: 3.141592653589793 rad + pos: 65.5,61.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice + - color: '#99CCFFFF' + type: AtmosPipeColor - uid: 10075 components: - rot: 1.5707963267948966 rad pos: 53.5,64.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 10143 components: - rot: 3.141592653589793 rad pos: 52.5,72.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 11896 components: - pos: 32.5,65.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#00FFFFFF' type: AtmosPipeColor - uid: 12562 @@ -118828,6 +119916,8 @@ entities: - pos: 30.5,65.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF9999FF' type: AtmosPipeColor - uid: 13256 @@ -118835,6 +119925,8 @@ entities: - pos: 42.5,65.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FFCC99FF' type: AtmosPipeColor - uid: 13413 @@ -118842,6 +119934,8 @@ entities: - pos: 34.5,65.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF66FFFF' type: AtmosPipeColor - uid: 13418 @@ -118849,11 +119943,15 @@ entities: - pos: 36.5,65.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 13419 components: - pos: 38.5,65.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#99CCFFFF' type: AtmosPipeColor - uid: 13422 @@ -118861,6 +119959,8 @@ entities: - pos: 40.5,65.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#808080FF' type: AtmosPipeColor - uid: 25286 @@ -118868,6 +119968,8 @@ entities: - pos: 54.5,73.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF9933FF' type: AtmosPipeColor - uid: 25303 @@ -118875,51 +119977,67 @@ entities: - pos: 44.5,65.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor + - uid: 26002 + components: + - pos: 61.5,72.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice + - color: '#CC0000FF' + type: AtmosPipeColor - uid: 28262 components: - rot: -1.5707963267948966 rad pos: -99.5,-74.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 28270 components: - pos: -101.5,-78.5 parent: 33 type: Transform - - uid: 28786 + - joinedGrid: 33 + type: AtmosDevice + - uid: 28535 components: - - pos: 59.5,60.5 + - rot: 3.141592653589793 rad + pos: 60.5,67.5 parent: 33 type: Transform - - color: '#99CCFFFF' + - joinedGrid: 33 + type: AtmosDevice + - color: '#CC0000FF' type: AtmosPipeColor - - uid: 29197 + - uid: 28786 components: - - pos: 60.5,68.5 + - pos: 59.5,60.5 parent: 33 type: Transform - - color: '#CC0000FF' + - joinedGrid: 33 + type: AtmosDevice + - color: '#99CCFFFF' type: AtmosPipeColor - uid: 29646 components: - pos: 63.5,68.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 29647 components: - pos: 64.5,68.5 parent: 33 type: Transform - - uid: 29690 - components: - - rot: 1.5707963267948966 rad - pos: 59.5,75.5 - parent: 33 - type: Transform - - color: '#CC0000FF' - type: AtmosPipeColor + - joinedGrid: 33 + type: AtmosDevice - proto: GasRecycler entities: - uid: 10200 @@ -118927,6 +120045,8 @@ entities: - pos: 37.5,57.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#66FF66FF' type: AtmosPipeColor - proto: GasRecyclerMachineCircuitboard @@ -118939,32 +120059,20 @@ entities: type: Transform - proto: GasThermoMachineFreezer entities: - - uid: 3137 - components: - - pos: -0.5,41.5 - parent: 33 - type: Transform - - targetTemperature: 249.8167 - type: GasThermoMachine - - color: '#66B2FFFF' - type: AtmosPipeColor - uid: 5469 components: - pos: -77.5,-19.5 parent: 33 type: Transform - - uid: 5867 - components: - - pos: -10.5,63.5 - parent: 33 - type: Transform - - targetTemperature: 249.8167 - type: GasThermoMachine + - joinedGrid: 33 + type: AtmosDevice - uid: 10476 components: - pos: 41.5,57.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 12590 components: - pos: 27.5,65.5 @@ -118972,6 +120080,18 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - joinedGrid: 33 + type: AtmosDevice + - uid: 18173 + components: + - rot: 1.5707963267948966 rad + pos: -69.5,0.5 + parent: 33 + type: Transform + - color: '#3399FFFF' + type: AtmosPipeColor + - joinedGrid: 33 + type: AtmosDevice - uid: 19998 components: - rot: 1.5707963267948966 rad @@ -118980,6 +120100,8 @@ entities: type: Transform - color: '#999900FF' type: AtmosPipeColor + - joinedGrid: 33 + type: AtmosDevice - uid: 25988 components: - rot: 1.5707963267948966 rad @@ -118988,6 +120110,8 @@ entities: type: Transform - color: '#FF9933FF' type: AtmosPipeColor + - joinedGrid: 33 + type: AtmosDevice - uid: 29204 components: - rot: -1.5707963267948966 rad @@ -118996,13 +120120,34 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor -- proto: GasThermoMachineHeater + - joinedGrid: 33 + type: AtmosDevice +- proto: GasThermoMachineFreezerEnabled entities: - - uid: 7960 + - uid: 16527 components: - - pos: 54.5,66.5 + - pos: -0.5,41.5 + parent: 33 + type: Transform + - targetTemperature: 249.82 + type: GasThermoMachine + - color: '#66B2FFFF' + type: AtmosPipeColor + - joinedGrid: 33 + type: AtmosDevice + - uid: 20747 + components: + - pos: -10.5,63.5 parent: 33 type: Transform + - targetTemperature: 249.8167 + type: GasThermoMachine + - color: '#66B2FFFF' + type: AtmosPipeColor + - joinedGrid: 33 + type: AtmosDevice +- proto: GasThermoMachineHeater + entities: - uid: 10038 components: - pos: 35.5,58.5 @@ -119010,6 +120155,8 @@ entities: type: Transform - color: '#66FF66FF' type: AtmosPipeColor + - joinedGrid: 33 + type: AtmosDevice - uid: 10147 components: - rot: 1.5707963267948966 rad @@ -119018,20 +120165,15 @@ entities: type: Transform - color: '#999900FF' type: AtmosPipeColor + - joinedGrid: 33 + type: AtmosDevice - uid: 16594 components: - pos: -78.5,-19.5 parent: 33 type: Transform - - uid: 21571 - components: - - pos: -90.5,-9.5 - parent: 33 - type: Transform - - targetTemperature: 308.15 - type: GasThermoMachine - - color: '#FFFF66FF' - type: AtmosPipeColor + - joinedGrid: 33 + type: AtmosDevice - uid: 25986 components: - rot: 1.5707963267948966 rad @@ -119040,20 +120182,40 @@ entities: type: Transform - color: '#FF9933FF' type: AtmosPipeColor - - uid: 29638 + - joinedGrid: 33 + type: AtmosDevice + - uid: 29652 components: - - rot: -1.5707963267948966 rad - pos: 59.5,68.5 + - rot: 1.5707963267948966 rad + pos: 61.5,68.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice + - uid: 29692 + components: + - rot: 1.5707963267948966 rad + pos: 57.5,75.5 parent: 33 type: Transform - color: '#9933FFFF' type: AtmosPipeColor - - uid: 29652 + - joinedGrid: 33 + type: AtmosDevice +- proto: GasThermoMachineHeaterEnabled + entities: + - uid: 18906 components: - - rot: 1.5707963267948966 rad - pos: 61.5,68.5 + - pos: -90.5,-9.5 parent: 33 type: Transform + - targetTemperature: 310 + type: GasThermoMachine + - color: '#FFFF66FF' + type: AtmosPipeColor + - joinedGrid: 33 + type: AtmosDevice + - type: ActiveUserInterface - proto: GasValve entities: - uid: 7915 @@ -119064,6 +120226,8 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 33 + type: AtmosDevice - color: '#FFCC99FF' type: AtmosPipeColor - uid: 7959 @@ -119074,6 +120238,8 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 33 + type: AtmosDevice - color: '#FF007FFF' type: AtmosPipeColor - uid: 8703 @@ -119083,6 +120249,8 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 33 + type: AtmosDevice - color: '#00FFFFFF' type: AtmosPipeColor - uid: 9923 @@ -119093,6 +120261,8 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 33 + type: AtmosDevice - color: '#FF007FFF' type: AtmosPipeColor - uid: 10049 @@ -119103,6 +120273,8 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 33 + type: AtmosDevice - color: '#99CCFFFF' type: AtmosPipeColor - uid: 10050 @@ -119113,6 +120285,8 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 33 + type: AtmosDevice - color: '#808080FF' type: AtmosPipeColor - uid: 10051 @@ -119121,6 +120295,8 @@ entities: pos: 40.5,63.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#808080FF' type: AtmosPipeColor - uid: 10067 @@ -119131,6 +120307,8 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 33 + type: AtmosDevice - color: '#FF007FFF' type: AtmosPipeColor - uid: 10781 @@ -119139,6 +120317,8 @@ entities: pos: 45.5,71.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 12907 @@ -119147,6 +120327,8 @@ entities: pos: -1.5,40.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#66B2FFFF' type: AtmosPipeColor - uid: 13257 @@ -119154,6 +120336,8 @@ entities: - pos: 31.5,63.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF9999FF' type: AtmosPipeColor - uid: 13480 @@ -119163,6 +120347,8 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 33 + type: AtmosDevice - color: '#FF9999FF' type: AtmosPipeColor - uid: 19448 @@ -119170,6 +120356,8 @@ entities: - pos: 32.5,63.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#00FFFFFF' type: AtmosPipeColor - uid: 19993 @@ -119179,6 +120367,8 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 33 + type: AtmosDevice - color: '#FF66FFFF' type: AtmosPipeColor - uid: 20124 @@ -119187,11 +120377,17 @@ entities: pos: -11.5,62.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice + - color: '#66B2FFFF' + type: AtmosPipeColor - uid: 23885 components: - pos: -90.5,-10.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FFFF66FF' type: AtmosPipeColor - uid: 27014 @@ -119202,13 +120398,28 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor + - uid: 27634 + components: + - pos: 61.5,60.5 + parent: 33 + type: Transform + - open: False + type: GasValve + - joinedGrid: 33 + type: AtmosDevice + - color: '#CC0000FF' + type: AtmosPipeColor - uid: 27646 components: - pos: 35.5,63.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF66FFFF' type: AtmosPipeColor - uid: 28636 @@ -119217,6 +120428,8 @@ entities: pos: 38.5,63.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#99CCFFFF' type: AtmosPipeColor - uid: 28641 @@ -119225,6 +120438,8 @@ entities: pos: 42.5,63.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FFCC99FF' type: AtmosPipeColor - uid: 28642 @@ -119235,6 +120450,8 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 33 + type: AtmosDevice - color: '#FF007FFF' type: AtmosPipeColor - uid: 28698 @@ -119243,6 +120460,8 @@ entities: pos: 43.5,63.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 28732 @@ -119252,6 +120471,8 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 33 + type: AtmosDevice - color: '#9933FFFF' type: AtmosPipeColor - uid: 28733 @@ -119262,6 +120483,8 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 33 + type: AtmosDevice - color: '#9933FFFF' type: AtmosPipeColor - uid: 28746 @@ -119272,6 +120495,8 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 33 + type: AtmosDevice - color: '#CC0000FF' type: AtmosPipeColor - uid: 29175 @@ -119282,6 +120507,8 @@ entities: type: Transform - open: False type: GasValve + - joinedGrid: 33 + type: AtmosDevice - color: '#99CCFFFF' type: AtmosPipeColor - uid: 29718 @@ -119290,6 +120517,8 @@ entities: pos: 64.5,60.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#99CCFFFF' type: AtmosPipeColor - proto: GasVentPump @@ -119300,6 +120529,8 @@ entities: pos: -6.5,-29.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 1552 @@ -119308,6 +120539,8 @@ entities: pos: -24.5,-29.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 2237 @@ -119316,6 +120549,26 @@ entities: pos: -20.5,-12.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3579 + components: + - pos: -77.5,15.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3583 + components: + - pos: -81.5,15.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 5133 @@ -119324,6 +120577,8 @@ entities: pos: -45.5,-9.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 5144 @@ -119331,6 +120586,8 @@ entities: - pos: -46.5,-7.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 5151 @@ -119339,6 +120596,8 @@ entities: pos: -37.5,-15.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 5152 @@ -119347,6 +120606,8 @@ entities: pos: -41.5,-15.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 5498 @@ -119354,6 +120615,8 @@ entities: - pos: -68.5,12.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 7559 @@ -119362,9 +120625,18 @@ entities: pos: 51.5,73.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 7950 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9378 + components: + - rot: -1.5707963267948966 rad + pos: -76.5,12.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 10080 @@ -119372,6 +120644,8 @@ entities: - pos: -23.5,92.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 12431 @@ -119380,6 +120654,8 @@ entities: pos: 11.5,-22.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 12896 @@ -119388,6 +120664,8 @@ entities: pos: 0.5,42.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 12908 @@ -119395,6 +120673,8 @@ entities: - pos: -3.5,41.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#66B2FFFF' type: AtmosPipeColor - uid: 13226 @@ -119403,9 +120683,8 @@ entities: pos: 27.5,57.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 7948 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 13783 @@ -119414,6 +120693,8 @@ entities: pos: -0.5,57.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 15192 @@ -119422,6 +120703,8 @@ entities: pos: -12.5,-23.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 16226 @@ -119430,14 +120713,18 @@ entities: pos: -80.5,5.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16302 + - uid: 16269 components: - - rot: -1.5707963267948966 rad - pos: -62.5,3.5 + - rot: 1.5707963267948966 rad + pos: -73.5,13.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 16718 @@ -119446,6 +120733,18 @@ entities: pos: -45.5,-20.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 17493 + components: + - rot: 3.141592653589793 rad + pos: -64.5,3.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 18035 @@ -119454,6 +120753,8 @@ entities: pos: -46.5,-32.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 18722 @@ -119462,9 +120763,8 @@ entities: pos: -25.5,95.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25740 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 19730 @@ -119473,6 +120773,8 @@ entities: pos: 18.5,55.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 19792 @@ -119480,6 +120782,8 @@ entities: - pos: 11.5,65.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 19833 @@ -119487,6 +120791,8 @@ entities: - pos: 13.5,75.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 19884 @@ -119494,6 +120800,8 @@ entities: - pos: 3.5,88.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 19929 @@ -119501,6 +120809,8 @@ entities: - pos: -3.5,82.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 19986 @@ -119508,6 +120818,8 @@ entities: - pos: -14.5,96.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20015 @@ -119516,9 +120828,8 @@ entities: pos: -28.5,89.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25740 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20034 @@ -119526,9 +120837,8 @@ entities: - pos: -17.5,88.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25741 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20035 @@ -119537,6 +120847,8 @@ entities: pos: -17.5,82.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20059 @@ -119545,9 +120857,8 @@ entities: pos: -27.5,87.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25741 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20080 @@ -119556,6 +120867,8 @@ entities: pos: -24.5,85.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20105 @@ -119564,9 +120877,8 @@ entities: pos: -27.5,78.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25741 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20106 @@ -119575,9 +120887,8 @@ entities: pos: -27.5,81.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25741 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20107 @@ -119586,9 +120897,8 @@ entities: pos: -27.5,84.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25741 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20145 @@ -119597,6 +120907,8 @@ entities: pos: -34.5,78.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20192 @@ -119604,6 +120916,8 @@ entities: - pos: -35.5,93.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20196 @@ -119611,6 +120925,8 @@ entities: - pos: -42.5,76.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20200 @@ -119619,6 +120935,8 @@ entities: pos: -42.5,71.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20207 @@ -119626,6 +120944,8 @@ entities: - pos: -46.5,79.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20208 @@ -119633,6 +120953,8 @@ entities: - pos: -49.5,76.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20209 @@ -119641,6 +120963,8 @@ entities: pos: -49.5,71.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20263 @@ -119649,6 +120973,8 @@ entities: pos: -36.5,62.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20288 @@ -119657,6 +120983,8 @@ entities: pos: -34.5,50.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20316 @@ -119664,6 +120992,8 @@ entities: - pos: -47.5,53.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20343 @@ -119672,6 +121002,8 @@ entities: pos: -50.5,43.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20355 @@ -119680,6 +121012,8 @@ entities: pos: -47.5,44.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20439 @@ -119688,6 +121022,8 @@ entities: pos: -53.5,31.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20440 @@ -119696,6 +121032,8 @@ entities: pos: -38.5,32.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20441 @@ -119704,6 +121042,8 @@ entities: pos: -36.5,30.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20470 @@ -119711,6 +121051,8 @@ entities: - pos: -56.5,30.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20507 @@ -119719,6 +121061,8 @@ entities: pos: -55.5,35.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20508 @@ -119727,6 +121071,8 @@ entities: pos: -61.5,34.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20509 @@ -119734,6 +121080,8 @@ entities: - pos: -61.5,32.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20510 @@ -119742,6 +121090,8 @@ entities: pos: -65.5,31.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20520 @@ -119750,6 +121100,8 @@ entities: pos: -60.5,23.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20554 @@ -119758,6 +121110,8 @@ entities: pos: -33.5,71.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20561 @@ -119766,6 +121120,8 @@ entities: pos: -32.5,64.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20590 @@ -119773,6 +121129,8 @@ entities: - pos: -19.5,75.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20591 @@ -119781,6 +121139,8 @@ entities: pos: -13.5,74.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20645 @@ -119788,6 +121148,8 @@ entities: - pos: -11.5,71.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20646 @@ -119796,7 +121158,9 @@ entities: pos: -12.5,60.5 parent: 33 type: Transform - - color: '#0335FCFF' + - joinedGrid: 33 + type: AtmosDevice + - color: '#66B2FFFF' type: AtmosPipeColor - uid: 20659 components: @@ -119804,6 +121168,8 @@ entities: pos: -7.5,70.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20665 @@ -119811,6 +121177,8 @@ entities: - pos: -7.5,66.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20684 @@ -119819,6 +121187,8 @@ entities: pos: -25.5,58.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20707 @@ -119827,6 +121197,8 @@ entities: pos: -18.5,63.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20709 @@ -119835,6 +121207,8 @@ entities: pos: -18.5,57.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20728 @@ -119843,14 +121217,8 @@ entities: pos: -67.5,21.5 parent: 33 type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 20778 - components: - - rot: 1.5707963267948966 rad - pos: -76.5,14.5 - parent: 33 - type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20819 @@ -119858,6 +121226,8 @@ entities: - pos: -89.5,9.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20820 @@ -119866,6 +121236,8 @@ entities: pos: -90.5,4.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20856 @@ -119874,6 +121246,8 @@ entities: pos: -75.5,3.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20857 @@ -119881,6 +121255,8 @@ entities: - pos: -81.5,9.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20860 @@ -119889,6 +121265,8 @@ entities: pos: -81.5,-3.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20951 @@ -119896,6 +121274,8 @@ entities: - pos: -91.5,26.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20952 @@ -119904,6 +121284,8 @@ entities: pos: -87.5,20.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20953 @@ -119912,6 +121294,8 @@ entities: pos: -94.5,20.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20954 @@ -119920,6 +121304,8 @@ entities: pos: -94.5,16.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20955 @@ -119928,6 +121314,8 @@ entities: pos: -87.5,16.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 20956 @@ -119936,6 +121324,8 @@ entities: pos: -90.5,18.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21008 @@ -119944,6 +121334,8 @@ entities: pos: -104.5,2.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21009 @@ -119952,6 +121344,8 @@ entities: pos: -104.5,8.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21042 @@ -119960,6 +121354,8 @@ entities: pos: -92.5,-5.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21081 @@ -119968,6 +121364,8 @@ entities: pos: -84.5,-9.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21108 @@ -119975,6 +121373,8 @@ entities: - pos: -78.5,-5.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21109 @@ -119982,6 +121382,8 @@ entities: - pos: -76.5,-2.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21131 @@ -119989,6 +121391,8 @@ entities: - pos: -84.5,-11.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21140 @@ -119997,6 +121401,8 @@ entities: pos: -79.5,-17.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21207 @@ -120005,6 +121411,8 @@ entities: pos: -91.5,-23.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21319 @@ -120013,6 +121421,8 @@ entities: pos: -64.5,-40.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21338 @@ -120021,6 +121431,8 @@ entities: pos: -68.5,-36.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21364 @@ -120029,6 +121441,8 @@ entities: pos: -71.5,-35.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21368 @@ -120036,6 +121450,8 @@ entities: - pos: -69.5,-29.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21392 @@ -120044,6 +121460,8 @@ entities: pos: -54.5,-18.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21395 @@ -120051,6 +121469,8 @@ entities: - pos: -52.5,-10.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21456 @@ -120059,6 +121479,8 @@ entities: pos: -48.5,-31.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21486 @@ -120067,6 +121489,8 @@ entities: pos: -30.5,-20.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21497 @@ -120075,22 +121499,8 @@ entities: pos: -38.5,-28.5 parent: 33 type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 21513 - components: - - rot: -1.5707963267948966 rad - pos: -68.5,5.5 - parent: 33 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 21514 - components: - - rot: 3.141592653589793 rad - pos: -69.5,2.5 - parent: 33 - type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21522 @@ -120099,14 +121509,8 @@ entities: pos: -67.5,15.5 parent: 33 type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 21550 - components: - - rot: 1.5707963267948966 rad - pos: -67.5,3.5 - parent: 33 - type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21589 @@ -120115,6 +121519,8 @@ entities: pos: -58.5,10.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21593 @@ -120123,9 +121529,8 @@ entities: pos: 24.5,-18.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 16563 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21602 @@ -120134,6 +121539,8 @@ entities: pos: -53.5,10.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21619 @@ -120142,6 +121549,8 @@ entities: pos: -47.5,14.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21641 @@ -120150,6 +121559,8 @@ entities: pos: -46.5,11.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21690 @@ -120158,6 +121569,8 @@ entities: pos: 46.5,52.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21731 @@ -120165,9 +121578,8 @@ entities: - pos: 48.5,37.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 7949 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21764 @@ -120175,9 +121587,8 @@ entities: - pos: 48.5,32.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 7949 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21765 @@ -120186,6 +121597,8 @@ entities: pos: 46.5,21.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21786 @@ -120194,6 +121607,8 @@ entities: pos: 42.5,31.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21828 @@ -120202,6 +121617,8 @@ entities: pos: 39.5,18.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21829 @@ -120210,6 +121627,8 @@ entities: pos: 45.5,18.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21898 @@ -120218,6 +121637,8 @@ entities: pos: 22.5,12.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21899 @@ -120226,9 +121647,8 @@ entities: pos: 32.5,11.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29569 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21900 @@ -120237,6 +121657,8 @@ entities: pos: 28.5,8.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21901 @@ -120244,9 +121666,8 @@ entities: - pos: 27.5,19.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 4070 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21902 @@ -120255,6 +121676,8 @@ entities: pos: 33.5,20.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 21952 @@ -120263,6 +121686,8 @@ entities: pos: 27.5,-3.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22037 @@ -120271,9 +121696,8 @@ entities: pos: 44.5,-1.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 543 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22096 @@ -120282,9 +121706,8 @@ entities: pos: 21.5,-8.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 16563 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22202 @@ -120293,6 +121716,8 @@ entities: pos: 22.5,46.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22284 @@ -120300,6 +121725,8 @@ entities: - pos: 6.5,41.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22285 @@ -120308,6 +121735,8 @@ entities: pos: 7.5,27.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22287 @@ -120316,6 +121745,8 @@ entities: pos: 9.5,45.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22415 @@ -120324,6 +121755,8 @@ entities: pos: -17.5,46.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22416 @@ -120331,6 +121764,8 @@ entities: - pos: -7.5,42.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22417 @@ -120339,22 +121774,18 @@ entities: pos: -7.5,33.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - - uid: 22430 - components: - - rot: 3.141592653589793 rad - pos: -90.5,-13.5 - parent: 33 - type: Transform - - color: '#FFFF66FF' - type: AtmosPipeColor - uid: 22448 components: - rot: -1.5707963267948966 rad pos: -0.5,32.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22458 @@ -120363,6 +121794,8 @@ entities: pos: -5.5,27.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22459 @@ -120371,6 +121804,8 @@ entities: pos: -0.5,27.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22520 @@ -120378,6 +121813,8 @@ entities: - pos: 3.5,55.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22522 @@ -120386,6 +121823,8 @@ entities: pos: -4.5,50.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22526 @@ -120393,6 +121832,8 @@ entities: - pos: -26.5,52.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22537 @@ -120401,6 +121842,8 @@ entities: pos: -27.5,46.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22573 @@ -120409,6 +121852,8 @@ entities: pos: -23.5,39.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22631 @@ -120417,6 +121862,8 @@ entities: pos: -32.5,25.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22663 @@ -120424,6 +121871,8 @@ entities: - pos: -25.5,21.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22730 @@ -120432,6 +121881,8 @@ entities: pos: -31.5,7.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22731 @@ -120440,6 +121891,8 @@ entities: pos: -32.5,12.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22732 @@ -120447,6 +121900,8 @@ entities: - pos: -26.5,13.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22743 @@ -120454,6 +121909,8 @@ entities: - pos: -18.5,17.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22744 @@ -120462,6 +121919,8 @@ entities: pos: -17.5,14.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22747 @@ -120470,6 +121929,8 @@ entities: pos: -15.5,15.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22748 @@ -120478,6 +121939,8 @@ entities: pos: -15.5,12.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22749 @@ -120486,6 +121949,8 @@ entities: pos: -15.5,9.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22750 @@ -120494,6 +121959,8 @@ entities: pos: -18.5,7.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22802 @@ -120502,6 +121969,8 @@ entities: pos: -22.5,0.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22882 @@ -120509,6 +121978,8 @@ entities: - pos: -38.5,3.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22899 @@ -120517,6 +121988,8 @@ entities: pos: -34.5,-3.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 22942 @@ -120525,6 +121998,8 @@ entities: pos: -38.5,-7.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23003 @@ -120533,6 +122008,8 @@ entities: pos: -49.5,-21.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23027 @@ -120540,6 +122017,8 @@ entities: - pos: -52.5,-1.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23064 @@ -120548,6 +122027,8 @@ entities: pos: -77.5,-24.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23160 @@ -120555,6 +122036,8 @@ entities: - pos: -72.5,4.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23161 @@ -120563,6 +122046,8 @@ entities: pos: -72.5,-22.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23186 @@ -120570,6 +122055,8 @@ entities: - pos: -13.5,29.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23187 @@ -120577,6 +122064,8 @@ entities: - pos: -17.5,26.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23222 @@ -120585,6 +122074,8 @@ entities: pos: -2.5,18.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23223 @@ -120593,6 +122084,8 @@ entities: pos: -9.5,18.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23227 @@ -120601,6 +122094,8 @@ entities: pos: -1.5,22.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23260 @@ -120608,6 +122103,8 @@ entities: - pos: -8.5,5.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23279 @@ -120616,6 +122113,8 @@ entities: pos: 0.5,2.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23339 @@ -120624,6 +122123,8 @@ entities: pos: -12.5,-5.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23358 @@ -120632,6 +122133,8 @@ entities: pos: -13.5,-14.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23377 @@ -120640,6 +122143,8 @@ entities: pos: -22.5,-33.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23406 @@ -120647,6 +122152,8 @@ entities: - pos: -6.5,-8.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23407 @@ -120655,6 +122162,8 @@ entities: pos: -6.5,-10.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23445 @@ -120663,6 +122172,8 @@ entities: pos: 17.5,20.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23475 @@ -120670,6 +122181,8 @@ entities: - pos: 19.5,28.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23478 @@ -120678,6 +122191,8 @@ entities: pos: 10.5,31.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23479 @@ -120686,6 +122201,8 @@ entities: pos: 11.5,27.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23526 @@ -120693,6 +122210,8 @@ entities: - pos: 23.5,39.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23527 @@ -120701,6 +122220,8 @@ entities: pos: 24.5,36.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23528 @@ -120709,6 +122230,8 @@ entities: pos: 27.5,47.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23554 @@ -120717,6 +122240,8 @@ entities: pos: 30.5,39.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23615 @@ -120725,6 +122250,8 @@ entities: pos: 13.5,15.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23616 @@ -120732,6 +122259,8 @@ entities: - pos: 11.5,16.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23617 @@ -120740,6 +122269,8 @@ entities: pos: 7.5,10.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23658 @@ -120748,6 +122279,8 @@ entities: pos: 8.5,-1.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23709 @@ -120756,6 +122289,8 @@ entities: pos: 9.5,-12.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23813 @@ -120764,6 +122299,8 @@ entities: pos: -41.5,56.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 23929 @@ -120772,6 +122309,8 @@ entities: pos: -58.5,5.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24252 @@ -120780,6 +122319,8 @@ entities: pos: -33.5,74.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24268 @@ -120787,6 +122328,8 @@ entities: - pos: 40.5,25.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24275 @@ -120795,9 +122338,8 @@ entities: pos: -18.5,67.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 18472 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24296 @@ -120805,6 +122347,8 @@ entities: - pos: -52.5,4.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24308 @@ -120813,6 +122357,8 @@ entities: pos: -45.5,3.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24309 @@ -120821,6 +122367,8 @@ entities: pos: -43.5,0.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24373 @@ -120829,6 +122377,8 @@ entities: pos: -8.5,-33.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24611 @@ -120837,6 +122387,8 @@ entities: pos: -27.5,35.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24620 @@ -120844,6 +122396,8 @@ entities: - pos: -27.5,33.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24626 @@ -120851,6 +122405,8 @@ entities: - pos: -25.5,32.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24643 @@ -120858,6 +122414,8 @@ entities: - pos: -23.5,36.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24668 @@ -120866,6 +122424,8 @@ entities: pos: -25.5,27.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24677 @@ -120873,9 +122433,8 @@ entities: - pos: 32.5,4.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29558 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 24682 @@ -120884,6 +122443,8 @@ entities: pos: -90.5,-31.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 25033 @@ -120892,6 +122453,8 @@ entities: pos: 21.5,-24.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 25140 @@ -120900,6 +122463,8 @@ entities: pos: 30.5,-22.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 25150 @@ -120907,6 +122472,8 @@ entities: - pos: 24.5,74.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 25581 @@ -120915,6 +122482,8 @@ entities: pos: -74.5,-9.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 25924 @@ -120923,9 +122492,8 @@ entities: pos: 45.5,56.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 7948 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 26165 @@ -120934,6 +122502,8 @@ entities: pos: -20.5,-2.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 26799 @@ -120942,6 +122512,8 @@ entities: pos: -66.5,-48.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 27072 @@ -120950,6 +122522,8 @@ entities: pos: -78.5,-31.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 27175 @@ -120958,6 +122532,8 @@ entities: pos: -2.5,-6.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 27235 @@ -120966,6 +122542,8 @@ entities: pos: -5.5,57.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 27241 @@ -120974,6 +122552,8 @@ entities: pos: 19.5,32.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 27298 @@ -120982,6 +122562,8 @@ entities: pos: -59.5,-6.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 27543 @@ -120990,6 +122572,8 @@ entities: pos: -58.5,-24.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 27544 @@ -120998,6 +122582,8 @@ entities: pos: -57.5,-19.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 27545 @@ -121005,6 +122591,8 @@ entities: - pos: -58.5,-11.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 27546 @@ -121013,6 +122601,8 @@ entities: pos: -64.5,-14.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 27860 @@ -121021,9 +122611,8 @@ entities: pos: 51.5,21.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 7949 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 27935 @@ -121032,6 +122621,8 @@ entities: pos: 16.5,11.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 27936 @@ -121040,6 +122631,8 @@ entities: pos: 16.5,8.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 27937 @@ -121047,6 +122640,8 @@ entities: - pos: 9.5,10.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 27970 @@ -121054,6 +122649,8 @@ entities: - pos: 10.5,6.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 27971 @@ -121062,6 +122659,8 @@ entities: pos: 15.5,-1.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 27972 @@ -121070,6 +122669,8 @@ entities: pos: 11.5,-1.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 28203 @@ -121078,6 +122679,8 @@ entities: pos: -40.5,-12.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 28244 @@ -121086,6 +122689,8 @@ entities: pos: -41.5,66.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 28308 @@ -121094,6 +122699,8 @@ entities: pos: -40.5,-34.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 28438 @@ -121102,6 +122709,8 @@ entities: pos: -17.5,35.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 28486 @@ -121109,6 +122718,8 @@ entities: - pos: -42.5,20.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 28487 @@ -121117,6 +122728,8 @@ entities: pos: -41.5,15.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 28492 @@ -121125,6 +122738,8 @@ entities: pos: -67.5,7.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 28974 @@ -121133,6 +122748,8 @@ entities: pos: -22.5,95.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 29088 @@ -121141,9 +122758,8 @@ entities: pos: 56.5,19.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 7949 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 29239 @@ -121152,9 +122768,8 @@ entities: pos: 32.5,-7.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29558 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 29240 @@ -121163,6 +122778,8 @@ entities: pos: 35.5,-20.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 29264 @@ -121170,9 +122787,8 @@ entities: - pos: 34.5,14.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29569 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 29271 @@ -121181,9 +122797,8 @@ entities: pos: 45.5,9.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29569 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 29272 @@ -121191,9 +122806,8 @@ entities: - pos: 45.5,14.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29569 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 29273 @@ -121201,9 +122815,8 @@ entities: - pos: 39.5,14.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29569 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 29297 @@ -121212,9 +122825,8 @@ entities: pos: 36.5,2.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 543 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 29573 @@ -121222,9 +122834,8 @@ entities: - pos: -25.5,72.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 18472 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - uid: 30287 @@ -121233,9 +122844,8 @@ entities: pos: 48.5,60.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 7950 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#0335FCFF' type: AtmosPipeColor - proto: GasVentScrubber @@ -121246,6 +122856,8 @@ entities: pos: -5.5,-29.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 2222 @@ -121254,6 +122866,8 @@ entities: pos: -20.5,-14.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 4319 @@ -121261,6 +122875,8 @@ entities: - pos: -41.5,19.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 5226 @@ -121269,6 +122885,8 @@ entities: pos: -43.5,-12.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 5303 @@ -121277,6 +122895,8 @@ entities: pos: -38.5,-16.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 5307 @@ -121285,6 +122905,8 @@ entities: pos: -43.5,-15.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 5309 @@ -121293,6 +122915,8 @@ entities: pos: -45.5,-18.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 7206 @@ -121301,6 +122925,8 @@ entities: pos: 34.5,-22.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 9530 @@ -121309,9 +122935,8 @@ entities: pos: 35.5,-7.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29558 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 9914 @@ -121320,9 +122945,8 @@ entities: pos: 53.5,73.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 7950 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 11041 @@ -121331,6 +122955,8 @@ entities: pos: -30.5,-19.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 12344 @@ -121338,6 +122964,8 @@ entities: - pos: 14.5,11.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 12435 @@ -121346,6 +122974,8 @@ entities: pos: 11.5,-21.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 12895 @@ -121354,6 +122984,18 @@ entities: pos: -2.5,45.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14914 + components: + - rot: 1.5707963267948966 rad + pos: -73.5,14.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 15193 @@ -121362,6 +123004,8 @@ entities: pos: -18.5,-23.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 15201 @@ -121370,6 +123014,8 @@ entities: pos: -25.5,-29.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 16218 @@ -121377,6 +123023,8 @@ entities: - pos: -82.5,9.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 16220 @@ -121385,6 +123033,8 @@ entities: pos: -83.5,5.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 16687 @@ -121393,6 +123043,8 @@ entities: pos: -45.5,-8.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 18036 @@ -121401,6 +123053,18 @@ entities: pos: -43.5,-32.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 18596 + components: + - rot: 3.141592653589793 rad + pos: -63.5,0.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 18726 @@ -121408,14 +123072,15 @@ entities: - pos: -27.5,96.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25740 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - uid: 19722 components: - pos: 23.5,74.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 19744 @@ -121424,6 +123089,8 @@ entities: pos: 17.5,55.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 19793 @@ -121431,6 +123098,8 @@ entities: - pos: 12.5,65.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 19832 @@ -121438,6 +123107,8 @@ entities: - pos: 14.5,75.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 19883 @@ -121445,6 +123116,8 @@ entities: - pos: 4.5,88.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 19934 @@ -121452,6 +123125,8 @@ entities: - pos: -4.5,83.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 19985 @@ -121459,6 +123134,8 @@ entities: - pos: -13.5,96.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20002 @@ -121467,9 +123144,8 @@ entities: pos: 55.5,19.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 7949 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20012 @@ -121477,9 +123153,8 @@ entities: - pos: 41.5,55.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 7948 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20014 @@ -121488,9 +123163,8 @@ entities: pos: -28.5,93.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25740 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20036 @@ -121499,6 +123173,8 @@ entities: pos: -18.5,83.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20037 @@ -121506,9 +123182,8 @@ entities: - pos: -18.5,88.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25741 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20060 @@ -121517,9 +123192,8 @@ entities: pos: -27.5,86.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25741 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20079 @@ -121528,6 +123202,8 @@ entities: pos: -21.5,85.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20102 @@ -121536,9 +123212,8 @@ entities: pos: -27.5,83.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25741 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20103 @@ -121547,9 +123222,8 @@ entities: pos: -27.5,80.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25741 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20104 @@ -121558,9 +123232,8 @@ entities: pos: -27.5,77.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 25741 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20176 @@ -121569,6 +123242,8 @@ entities: pos: -38.5,78.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20191 @@ -121576,6 +123251,8 @@ entities: - pos: -37.5,93.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20215 @@ -121584,6 +123261,8 @@ entities: pos: -51.5,71.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20216 @@ -121592,6 +123271,8 @@ entities: pos: -44.5,71.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20217 @@ -121599,6 +123280,8 @@ entities: - pos: -44.5,76.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20218 @@ -121606,6 +123289,8 @@ entities: - pos: -51.5,76.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20219 @@ -121614,6 +123299,8 @@ entities: pos: -46.5,68.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20244 @@ -121622,6 +123309,8 @@ entities: pos: -41.5,67.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20262 @@ -121630,6 +123319,8 @@ entities: pos: -36.5,63.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20289 @@ -121638,6 +123329,8 @@ entities: pos: -36.5,51.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20313 @@ -121645,6 +123338,8 @@ entities: - pos: -46.5,53.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20342 @@ -121653,6 +123348,8 @@ entities: pos: -53.5,43.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20354 @@ -121661,6 +123358,8 @@ entities: pos: -46.5,44.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20436 @@ -121669,6 +123368,8 @@ entities: pos: -53.5,33.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20437 @@ -121676,6 +123377,8 @@ entities: - pos: -38.5,35.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20438 @@ -121684,6 +123387,8 @@ entities: pos: -36.5,29.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20460 @@ -121691,6 +123396,8 @@ entities: - pos: -55.5,34.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20461 @@ -121699,6 +123406,8 @@ entities: pos: -56.5,31.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20479 @@ -121706,6 +123415,8 @@ entities: - pos: -59.5,34.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20483 @@ -121714,6 +123425,8 @@ entities: pos: -61.5,29.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20489 @@ -121721,6 +123434,8 @@ entities: - pos: -64.5,34.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20521 @@ -121729,6 +123444,8 @@ entities: pos: -61.5,23.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20571 @@ -121736,6 +123453,8 @@ entities: - pos: -31.5,70.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20572 @@ -121744,6 +123463,8 @@ entities: pos: -31.5,64.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20605 @@ -121751,6 +123472,8 @@ entities: - pos: -17.5,75.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20606 @@ -121759,6 +123482,8 @@ entities: pos: -13.5,73.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20608 @@ -121767,9 +123492,8 @@ entities: pos: -17.5,67.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 18472 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20623 @@ -121778,6 +123502,8 @@ entities: pos: -12.5,59.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20629 @@ -121786,6 +123512,8 @@ entities: pos: -7.5,67.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20630 @@ -121794,6 +123522,8 @@ entities: pos: -11.5,66.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20631 @@ -121802,6 +123532,8 @@ entities: pos: -7.5,69.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20692 @@ -121810,6 +123542,8 @@ entities: pos: -24.5,58.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20706 @@ -121818,6 +123552,8 @@ entities: pos: -21.5,63.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20708 @@ -121826,6 +123562,8 @@ entities: pos: -21.5,57.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20730 @@ -121834,14 +123572,8 @@ entities: pos: -70.5,27.5 parent: 33 type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 20779 - components: - - rot: -1.5707963267948966 rad - pos: -73.5,14.5 - parent: 33 - type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20842 @@ -121850,6 +123582,8 @@ entities: pos: -88.5,6.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20843 @@ -121858,6 +123592,8 @@ entities: pos: -89.5,4.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20855 @@ -121866,6 +123602,8 @@ entities: pos: -78.5,3.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20859 @@ -121874,6 +123612,8 @@ entities: pos: -82.5,-3.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20946 @@ -121882,6 +123622,8 @@ entities: pos: -94.5,17.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20947 @@ -121890,6 +123632,8 @@ entities: pos: -87.5,17.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20948 @@ -121898,6 +123642,8 @@ entities: pos: -87.5,21.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20949 @@ -121906,6 +123652,8 @@ entities: pos: -94.5,21.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20950 @@ -121913,6 +123661,8 @@ entities: - pos: -90.5,26.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 20957 @@ -121921,6 +123671,8 @@ entities: pos: -91.5,19.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21006 @@ -121929,6 +123681,8 @@ entities: pos: -104.5,9.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21007 @@ -121937,6 +123691,8 @@ entities: pos: -104.5,3.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21043 @@ -121945,6 +123701,8 @@ entities: pos: -93.5,-5.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21082 @@ -121953,6 +123711,8 @@ entities: pos: -83.5,-9.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21107 @@ -121960,6 +123720,8 @@ entities: - pos: -77.5,-2.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21110 @@ -121968,6 +123730,8 @@ entities: pos: -76.5,-8.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21111 @@ -121976,6 +123740,8 @@ entities: pos: -77.5,-18.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21130 @@ -121984,6 +123750,8 @@ entities: pos: -81.5,-14.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21187 @@ -121992,6 +123760,8 @@ entities: pos: -89.5,-19.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21206 @@ -122000,6 +123770,8 @@ entities: pos: -90.5,-22.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21320 @@ -122008,6 +123780,8 @@ entities: pos: -64.5,-39.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21353 @@ -122016,6 +123790,8 @@ entities: pos: -67.5,-32.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21357 @@ -122024,6 +123800,8 @@ entities: pos: -71.5,-34.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21358 @@ -122031,6 +123809,8 @@ entities: - pos: -68.5,-29.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21433 @@ -122038,6 +123818,8 @@ entities: - pos: -51.5,-10.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21434 @@ -122046,6 +123828,8 @@ entities: pos: -50.5,-19.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21457 @@ -122054,6 +123838,8 @@ entities: pos: -49.5,-31.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21473 @@ -122062,6 +123848,8 @@ entities: pos: -41.5,-34.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21496 @@ -122070,38 +123858,8 @@ entities: pos: -37.5,-28.5 parent: 33 type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 21519 - components: - - rot: 1.5707963267948966 rad - pos: -69.5,3.5 - parent: 33 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 21520 - components: - - rot: 3.141592653589793 rad - pos: -68.5,2.5 - parent: 33 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 21541 - components: - - rot: 1.5707963267948966 rad - pos: -67.5,2.5 - parent: 33 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 21542 - components: - - rot: 3.141592653589793 rad - pos: -63.5,1.5 - parent: 33 - type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21561 @@ -122110,6 +123868,8 @@ entities: pos: -59.5,5.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21562 @@ -122118,6 +123878,8 @@ entities: pos: -21.5,32.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21588 @@ -122126,6 +123888,8 @@ entities: pos: -52.5,10.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21618 @@ -122133,6 +123897,8 @@ entities: - pos: -43.5,17.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21640 @@ -122141,6 +123907,8 @@ entities: pos: -46.5,10.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21688 @@ -122148,6 +123916,8 @@ entities: - pos: 44.5,53.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21730 @@ -122156,9 +123926,8 @@ entities: pos: 48.5,35.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 7949 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21785 @@ -122167,6 +123936,8 @@ entities: pos: 42.5,32.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21787 @@ -122175,6 +123946,8 @@ entities: pos: 46.5,22.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21788 @@ -122183,9 +123956,8 @@ entities: pos: 48.5,24.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 7949 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21806 @@ -122193,6 +123965,8 @@ entities: - pos: 37.5,25.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21826 @@ -122201,6 +123975,8 @@ entities: pos: 36.5,17.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21827 @@ -122209,6 +123985,8 @@ entities: pos: 45.5,17.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21892 @@ -122216,9 +123994,8 @@ entities: - pos: 26.5,19.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 4070 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21893 @@ -122227,6 +124004,8 @@ entities: pos: 22.5,13.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21894 @@ -122235,6 +124014,8 @@ entities: pos: 25.5,8.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21896 @@ -122242,9 +124023,8 @@ entities: - pos: 32.5,14.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29569 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21903 @@ -122252,6 +124032,8 @@ entities: - pos: 31.5,23.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 21951 @@ -122260,6 +124042,8 @@ entities: pos: 24.5,-2.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22034 @@ -122267,9 +124051,8 @@ entities: - pos: 40.5,2.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 543 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22035 @@ -122278,9 +124061,8 @@ entities: pos: 44.5,-0.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 543 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22102 @@ -122289,9 +124071,8 @@ entities: pos: 21.5,-7.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 16563 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22204 @@ -122300,6 +124081,8 @@ entities: pos: 26.5,49.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22205 @@ -122308,6 +124091,8 @@ entities: pos: 23.5,48.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22281 @@ -122316,6 +124101,8 @@ entities: pos: 9.5,46.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22283 @@ -122323,6 +124110,8 @@ entities: - pos: 7.5,41.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22286 @@ -122331,6 +124120,8 @@ entities: pos: 7.5,28.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22386 @@ -122339,6 +124130,8 @@ entities: pos: -15.5,46.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22387 @@ -122346,6 +124139,8 @@ entities: - pos: -8.5,42.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22390 @@ -122353,6 +124148,8 @@ entities: - pos: -4.5,40.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22418 @@ -122361,6 +124158,8 @@ entities: pos: -7.5,35.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22442 @@ -122369,6 +124168,8 @@ entities: pos: -5.5,29.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22443 @@ -122377,6 +124178,8 @@ entities: pos: -2.5,29.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22445 @@ -122385,6 +124188,8 @@ entities: pos: -3.5,31.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22521 @@ -122392,6 +124197,8 @@ entities: - pos: -3.5,50.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22525 @@ -122399,6 +124206,8 @@ entities: - pos: -25.5,50.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22536 @@ -122407,6 +124216,8 @@ entities: pos: -24.5,46.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22572 @@ -122415,6 +124226,8 @@ entities: pos: -23.5,40.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22608 @@ -122423,6 +124236,8 @@ entities: pos: -27.5,27.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22609 @@ -122431,6 +124246,8 @@ entities: pos: -23.5,26.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22620 @@ -122439,6 +124256,8 @@ entities: pos: -32.5,26.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22662 @@ -122447,6 +124266,8 @@ entities: pos: -25.5,18.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22727 @@ -122455,6 +124276,8 @@ entities: pos: -26.5,8.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22728 @@ -122463,6 +124286,8 @@ entities: pos: -30.5,7.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22729 @@ -122470,6 +124295,8 @@ entities: - pos: -30.5,10.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22759 @@ -122478,6 +124305,8 @@ entities: pos: -17.5,13.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22760 @@ -122486,6 +124315,8 @@ entities: pos: -13.5,11.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22761 @@ -122493,6 +124324,8 @@ entities: - pos: -14.5,15.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22762 @@ -122501,6 +124334,8 @@ entities: pos: -14.5,9.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22763 @@ -122509,6 +124344,8 @@ entities: pos: -19.5,7.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22764 @@ -122516,6 +124353,8 @@ entities: - pos: -19.5,17.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22803 @@ -122524,6 +124363,8 @@ entities: pos: -21.5,0.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22883 @@ -122532,6 +124373,8 @@ entities: pos: -39.5,1.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22898 @@ -122540,6 +124383,8 @@ entities: pos: -34.5,-1.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 22967 @@ -122548,6 +124393,8 @@ entities: pos: -46.5,-6.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23002 @@ -122556,6 +124403,8 @@ entities: pos: -51.5,-21.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23026 @@ -122563,6 +124412,8 @@ entities: - pos: -51.5,-1.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23063 @@ -122571,6 +124422,8 @@ entities: pos: -77.5,-23.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23067 @@ -122579,6 +124432,8 @@ entities: pos: -66.5,-6.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23162 @@ -122587,6 +124442,8 @@ entities: pos: -73.5,-22.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23163 @@ -122594,6 +124451,8 @@ entities: - pos: -73.5,4.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23184 @@ -122601,6 +124460,8 @@ entities: - pos: -16.5,26.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23185 @@ -122608,6 +124469,8 @@ entities: - pos: -12.5,29.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23220 @@ -122616,6 +124479,8 @@ entities: pos: -8.5,18.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23221 @@ -122624,6 +124489,8 @@ entities: pos: -1.5,18.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23226 @@ -122632,6 +124499,8 @@ entities: pos: -0.5,21.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23259 @@ -122639,6 +124508,8 @@ entities: - pos: -9.5,5.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23278 @@ -122647,6 +124518,8 @@ entities: pos: 0.5,1.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23287 @@ -122654,6 +124527,8 @@ entities: - pos: -12.5,-1.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23291 @@ -122662,6 +124537,8 @@ entities: pos: -17.5,-14.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23364 @@ -122670,6 +124547,8 @@ entities: pos: -21.5,-33.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23408 @@ -122678,6 +124557,8 @@ entities: pos: -10.5,-11.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23409 @@ -122686,6 +124567,8 @@ entities: pos: -7.5,-11.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23444 @@ -122694,6 +124577,8 @@ entities: pos: 15.5,20.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23458 @@ -122702,6 +124587,8 @@ entities: pos: 16.5,28.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23459 @@ -122710,6 +124597,8 @@ entities: pos: 11.5,29.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23460 @@ -122718,6 +124607,8 @@ entities: pos: 10.5,32.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23466 @@ -122726,6 +124617,8 @@ entities: pos: 16.5,32.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23519 @@ -122733,6 +124626,8 @@ entities: - pos: 14.5,37.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23520 @@ -122740,6 +124635,8 @@ entities: - pos: 22.5,39.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23553 @@ -122748,6 +124645,8 @@ entities: pos: 29.5,39.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23600 @@ -122755,6 +124654,8 @@ entities: - pos: 12.5,10.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23607 @@ -122763,6 +124664,8 @@ entities: pos: 13.5,10.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23612 @@ -122771,6 +124674,8 @@ entities: pos: 7.5,11.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23613 @@ -122779,6 +124684,8 @@ entities: pos: 10.5,15.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23614 @@ -122787,6 +124694,8 @@ entities: pos: 13.5,16.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23638 @@ -122794,6 +124703,8 @@ entities: - pos: 11.5,6.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23685 @@ -122802,6 +124713,8 @@ entities: pos: 8.5,-0.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23689 @@ -122810,6 +124723,8 @@ entities: pos: 9.5,-14.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 23791 @@ -122818,6 +124733,8 @@ entities: pos: -41.5,55.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24116 @@ -122825,6 +124742,8 @@ entities: - pos: -63.5,15.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24117 @@ -122832,6 +124751,8 @@ entities: - pos: -60.5,12.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24192 @@ -122839,6 +124760,8 @@ entities: - pos: -67.5,12.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24255 @@ -122846,6 +124769,8 @@ entities: - pos: -32.5,74.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24295 @@ -122854,6 +124779,8 @@ entities: pos: -56.5,2.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24324 @@ -122862,6 +124789,8 @@ entities: pos: -47.5,0.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24325 @@ -122870,6 +124799,8 @@ entities: pos: -43.5,-0.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24343 @@ -122878,6 +124809,8 @@ entities: pos: -52.5,16.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24346 @@ -122886,6 +124819,8 @@ entities: pos: -9.5,-33.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24614 @@ -122894,6 +124829,8 @@ entities: pos: -27.5,36.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24644 @@ -122901,6 +124838,8 @@ entities: - pos: -24.5,35.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24678 @@ -122908,9 +124847,8 @@ entities: - pos: 33.5,4.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29558 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24683 @@ -122919,6 +124857,8 @@ entities: pos: -90.5,-29.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 24741 @@ -122927,9 +124867,8 @@ entities: pos: 31.5,-17.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 16563 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 25001 @@ -122937,9 +124876,8 @@ entities: - pos: 26.5,62.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 7948 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 25160 @@ -122948,6 +124886,8 @@ entities: pos: 22.5,-24.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 25167 @@ -122956,6 +124896,8 @@ entities: pos: 29.5,-21.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 25532 @@ -122964,6 +124906,8 @@ entities: pos: -38.5,-6.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 25580 @@ -122972,6 +124916,8 @@ entities: pos: -74.5,-8.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 25993 @@ -122979,6 +124925,8 @@ entities: - pos: -22.5,92.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 26164 @@ -122987,6 +124935,8 @@ entities: pos: -19.5,-2.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 26798 @@ -122995,6 +124945,8 @@ entities: pos: -65.5,-48.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 27071 @@ -123003,6 +124955,8 @@ entities: pos: -79.5,-30.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 27136 @@ -123011,6 +124965,8 @@ entities: pos: 2.5,54.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 27174 @@ -123019,6 +124975,8 @@ entities: pos: -1.5,-6.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 27233 @@ -123027,6 +124985,8 @@ entities: pos: -3.5,56.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 27234 @@ -123035,6 +124995,8 @@ entities: pos: -0.5,56.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 27528 @@ -123043,6 +125005,8 @@ entities: pos: -65.5,-14.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 27529 @@ -123051,6 +125015,8 @@ entities: pos: -60.5,-14.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 27530 @@ -123059,6 +125025,8 @@ entities: pos: -60.5,-19.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 27531 @@ -123067,6 +125035,8 @@ entities: pos: -58.5,-25.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 27859 @@ -123075,9 +125045,8 @@ entities: pos: 51.5,20.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 7949 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 27958 @@ -123086,6 +125055,8 @@ entities: pos: 12.5,-1.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 27959 @@ -123094,6 +125065,8 @@ entities: pos: 14.5,-1.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 28268 @@ -123101,12 +125074,16 @@ entities: - pos: -101.5,-77.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 28437 components: - rot: 3.141592653589793 rad pos: -18.5,35.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 28491 @@ -123114,6 +125091,8 @@ entities: - pos: -66.5,8.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 28982 @@ -123121,6 +125100,8 @@ entities: - pos: -19.5,98.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 29307 @@ -123128,9 +125109,8 @@ entities: - pos: 35.5,14.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29569 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 29313 @@ -123139,9 +125119,8 @@ entities: pos: 44.5,9.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29569 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 29314 @@ -123149,9 +125128,8 @@ entities: - pos: 44.5,14.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29569 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 29315 @@ -123159,9 +125137,8 @@ entities: - pos: 38.5,14.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 29569 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 29572 @@ -123170,9 +125147,8 @@ entities: pos: -26.5,72.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 18472 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - uid: 30294 @@ -123180,9 +125156,36 @@ entities: - pos: 66.5,64.5 parent: 33 type: Transform - - ShutdownSubscribers: - - 7950 - type: DeviceNetwork + - joinedGrid: 33 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 30517 + components: + - pos: -79.5,15.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 30518 + components: + - pos: -78.5,15.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 30519 + components: + - rot: 1.5707963267948966 rad + pos: -80.5,13.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#FF1212FF' type: AtmosPipeColor - proto: GasVolumePump @@ -123193,25 +125196,43 @@ entities: pos: -80.5,-20.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 5322 components: - rot: -1.5707963267948966 rad pos: -80.5,-19.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 10035 components: - rot: 1.5707963267948966 rad pos: 38.5,56.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#66FF66FF' type: AtmosPipeColor + - uid: 20882 + components: + - rot: 1.5707963267948966 rad + pos: -67.5,5.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice + - color: '#3399FFFF' + type: AtmosPipeColor - uid: 25911 components: - pos: 59.5,65.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#CC0000FF' type: AtmosPipeColor - uid: 29174 @@ -123220,6 +125241,8 @@ entities: pos: 65.5,65.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#99CCFFFF' type: AtmosPipeColor - proto: Gauze @@ -125239,11 +127262,6 @@ entities: - pos: -50.5,-5.5 parent: 33 type: Transform - - uid: 3958 - components: - - pos: -65.5,3.5 - parent: 33 - type: Transform - uid: 3960 components: - pos: -67.5,6.5 @@ -125344,21 +127362,6 @@ entities: - pos: -66.5,-20.5 parent: 33 type: Transform - - uid: 4124 - components: - - pos: -65.5,1.5 - parent: 33 - type: Transform - - uid: 4125 - components: - - pos: -65.5,5.5 - parent: 33 - type: Transform - - uid: 4127 - components: - - pos: -65.5,0.5 - parent: 33 - type: Transform - uid: 4130 components: - pos: 14.5,40.5 @@ -125414,11 +127417,6 @@ entities: - pos: -79.5,-2.5 parent: 33 type: Transform - - uid: 4193 - components: - - pos: -79.5,-3.5 - parent: 33 - type: Transform - uid: 4227 components: - pos: -74.5,7.5 @@ -127599,6 +129597,11 @@ entities: - pos: 15.5,-23.5 parent: 33 type: Transform + - uid: 12144 + components: + - pos: -60.5,1.5 + parent: 33 + type: Transform - uid: 12245 components: - pos: -43.5,-23.5 @@ -128204,11 +130207,6 @@ entities: - pos: -64.5,6.5 parent: 33 type: Transform - - uid: 18520 - components: - - pos: -65.5,4.5 - parent: 33 - type: Transform - uid: 18566 components: - pos: -1.5,74.5 @@ -129309,6 +131307,11 @@ entities: - pos: -85.5,-40.5 parent: 33 type: Transform + - uid: 25615 + components: + - pos: -78.5,9.5 + parent: 33 + type: Transform - uid: 25813 components: - pos: 63.5,58.5 @@ -129329,11 +131332,6 @@ entities: - pos: 62.5,76.5 parent: 33 type: Transform - - uid: 25939 - components: - - pos: 60.5,76.5 - parent: 33 - type: Transform - uid: 25974 components: - pos: 52.5,8.5 @@ -129894,11 +131892,6 @@ entities: - pos: 61.5,58.5 parent: 33 type: Transform - - uid: 27018 - components: - - pos: 61.5,76.5 - parent: 33 - type: Transform - uid: 27019 components: - pos: 64.5,76.5 @@ -130159,11 +132152,6 @@ entities: - pos: 60.5,58.5 parent: 33 type: Transform - - uid: 28643 - components: - - pos: 61.5,69.5 - parent: 33 - type: Transform - uid: 28647 components: - pos: 63.5,69.5 @@ -130314,6 +132302,11 @@ entities: - pos: -61.5,42.5 parent: 33 type: Transform + - uid: 29693 + components: + - pos: 59.5,69.5 + parent: 33 + type: Transform - uid: 29748 components: - pos: 58.5,32.5 @@ -130649,6 +132642,11 @@ entities: - pos: -32.5,97.5 parent: 33 type: Transform + - uid: 30513 + components: + - pos: -76.5,9.5 + parent: 33 + type: Transform - proto: GrilleBroken entities: - uid: 5569 @@ -131130,16 +133128,16 @@ entities: - pos: -4.5,73.5 parent: 33 type: Transform -- proto: GunSafeSubMachineGunVector +- proto: GunSafeSubMachineGunDrozd entities: - - uid: 1040 + - uid: 20774 components: - - pos: -1.5,73.5 + - pos: -2.5,73.5 parent: 33 type: Transform - - uid: 12923 + - uid: 20775 components: - - pos: -2.5,73.5 + - pos: -1.5,73.5 parent: 33 type: Transform - proto: Handcuffs @@ -131168,6 +133166,12 @@ entities: - pos: -60.405083,17.614191 parent: 33 type: Transform + - uid: 30597 + components: + - rot: -1.5707963267948966 rad + pos: -3.5142176,-9.350319 + parent: 33 + type: Transform - proto: HandheldGPSBasic entities: - uid: 17254 @@ -131202,6 +133206,13 @@ entities: - pos: -78.53555,21.67328 parent: 33 type: Transform +- proto: HandheldHealthAnalyzerUnpowered + entities: + - uid: 30589 + components: + - pos: -3.4998999,-9.443278 + parent: 33 + type: Transform - proto: HandheldStationMap entities: - uid: 13399 @@ -131252,6 +133263,11 @@ entities: - pos: 5.50253,-23.351112 parent: 33 type: Transform + - uid: 21542 + components: + - pos: -62.21558,0.6201524 + parent: 33 + type: Transform - uid: 25947 components: - pos: -69.38098,-8.392448 @@ -131330,6 +133346,8 @@ entities: - pos: 72.5,59.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#99CCFFFF' type: AtmosPipeColor - uid: 29155 @@ -131337,20 +133355,17 @@ entities: - pos: 72.5,60.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#99CCFFFF' type: AtmosPipeColor - - uid: 29693 - components: - - pos: 62.5,73.5 - parent: 33 - type: Transform - - color: '#CC0000FF' - type: AtmosPipeColor - uid: 29694 components: - pos: 64.5,73.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#CC0000FF' type: AtmosPipeColor - uid: 29695 @@ -131358,6 +133373,8 @@ entities: - pos: 66.5,73.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - color: '#CC0000FF' type: AtmosPipeColor - proto: HelicopterInstrument @@ -131419,6 +133436,11 @@ entities: pos: -13.18077,65.627235 parent: 33 type: Transform + - uid: 30595 + components: + - pos: -4.485892,-5.4350595 + parent: 33 + type: Transform - proto: HospitalCurtains entities: - uid: 1715 @@ -131937,6 +133959,13 @@ entities: pos: 38.65136,15.618501 parent: 33 type: Transform +- proto: Igniter + entities: + - uid: 30601 + components: + - pos: 61.229034,70.27375 + parent: 33 + type: Transform - proto: InflatableDoor entities: - uid: 325 @@ -132073,6 +134102,77 @@ entities: pos: 7.5,61.5 parent: 33 type: Transform +- proto: JanitorServiceLight + entities: + - uid: 9290 + components: + - pos: -23.5,52.5 + parent: 33 + type: Transform + - links: + - 30643 + type: DeviceLinkSink + - uid: 12578 + components: + - pos: -15.5,23.5 + parent: 33 + type: Transform + - links: + - 30641 + - 30640 + type: DeviceLinkSink + - uid: 30628 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,37.5 + parent: 33 + type: Transform + - links: + - 30642 + type: DeviceLinkSink + - uid: 30629 + components: + - pos: 14.5,24.5 + parent: 33 + type: Transform + - links: + - 12151 + type: DeviceLinkSink + - uid: 30630 + components: + - pos: 28.5,22.5 + parent: 33 + type: Transform + - links: + - 30639 + type: DeviceLinkSink + - uid: 30631 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-7.5 + parent: 33 + type: Transform + - links: + - 30637 + type: DeviceLinkSink + - uid: 30632 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,8.5 + parent: 33 + type: Transform + - links: + - 30634 + type: DeviceLinkSink + - uid: 30633 + components: + - rot: 3.141592653589793 rad + pos: -58.5,-3.5 + parent: 33 + type: Transform + - links: + - 30635 + type: DeviceLinkSink - proto: JetpackBlueFilled entities: - uid: 8832 @@ -132143,20 +134243,20 @@ entities: pos: -53.55491,29.596045 parent: 33 type: Transform - - uid: 18548 + - uid: 20777 components: - flags: InContainer type: MetaData - - parent: 1874 + - parent: 20776 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - - uid: 18549 + - uid: 20779 components: - flags: InContainer type: MetaData - - parent: 18545 + - parent: 20778 type: Transform - canCollide: False type: Physics @@ -132178,6 +134278,28 @@ entities: - pos: -14.332015,13.934563 parent: 33 type: Transform +- proto: Jug + entities: + - uid: 30685 + components: + - name: jug (Ammonia) + type: MetaData + - pos: 7.3784237,58.221817 + parent: 33 + type: Transform + - solutions: + beaker: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 200 + reagents: + - data: null + ReagentId: Ammonia + Quantity: 150 + type: SolutionContainerManager + - currentLabel: Ammonia + type: Label - proto: Katana entities: - uid: 18115 @@ -132808,6 +134930,11 @@ entities: type: Transform - canCollide: False type: Physics + - uid: 2815 + components: + - pos: -61.475998,0.81820637 + parent: 33 + type: Transform - uid: 4465 components: - pos: -48.494488,-16.20944 @@ -132836,6 +134963,11 @@ entities: - pos: -19.312672,-15.403852 parent: 33 type: Transform + - uid: 21548 + components: + - pos: -61.663498,0.6305761 + parent: 33 + type: Transform - uid: 24658 components: - flags: InContainer @@ -133009,6 +135141,12 @@ entities: pos: -13.566036,99.6132 parent: 33 type: Transform + - uid: 30598 + components: + - rot: 3.141592653589793 rad + pos: -67.64195,32.712227 + parent: 33 + type: Transform - proto: LightPostSmall entities: - uid: 4478 @@ -133133,6 +135271,13 @@ entities: - pos: -13.5,47.5 parent: 33 type: Transform +- proto: LockerBrigmedicFilledHardsuit + entities: + - uid: 30576 + components: + - pos: -1.5,-7.5 + parent: 33 + type: Transform - proto: LockerCaptainFilledHardsuit entities: - uid: 25788 @@ -133171,6 +135316,13 @@ entities: - pos: -86.5,3.5 parent: 33 type: Transform +- proto: LockerClown + entities: + - uid: 30476 + components: + - pos: -15.639005,17.090338 + parent: 33 + type: Transform - proto: LockerDetectiveFilled entities: - uid: 11455 @@ -133346,29 +135498,6 @@ entities: - 0 - 0 type: EntityStorage - - uid: 3404 - components: - - pos: -60.5,32.5 - parent: 33 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 9.117112 - - 34.29771 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 6379 components: - pos: -19.5,-13.5 @@ -133505,7 +135634,9 @@ entities: occludes: True ent: null type: ContainerContainer - - uid: 28341 +- proto: LockerFreezerBase + entities: + - uid: 29666 components: - pos: -46.5,-29.5 parent: 33 @@ -133515,8 +135646,45 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 29667 + - 29668 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerFreezerVaultFilled + entities: + - uid: 12472 + components: + - pos: -60.5,32.5 + parent: 33 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1477 + moles: + - 2.4753592 + - 9.312066 - 0 - 0 - 0 @@ -133533,8 +135701,9 @@ entities: showEnts: False occludes: True ents: - - 28342 - - 28343 + - 12575 + - 12576 + - 12577 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -133596,35 +135765,78 @@ entities: - pos: -61.5,7.5 parent: 33 type: Transform -- proto: LockerParamedicFilled +- proto: LockerMime entities: - - uid: 1874 + - uid: 28478 components: - - pos: -61.5,15.5 + - pos: -15.649422,5.5676346 + parent: 33 + type: Transform +- proto: LockerParamedicFilledHardsuit + entities: + - uid: 20776 + components: + - pos: -61.5,14.5 parent: 33 type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 18548 + - 20777 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null type: ContainerContainer - - uid: 18545 + - uid: 20778 components: - - pos: -61.5,14.5 + - pos: -61.5,15.5 parent: 33 type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 18549 + - 20779 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -133884,11 +136096,6 @@ entities: occludes: True ent: null type: ContainerContainer - - uid: 27102 - components: - - pos: -1.5,-9.5 - parent: 33 - type: Transform - uid: 27108 components: - pos: -1.5,-8.5 @@ -133921,9 +136128,9 @@ entities: - pos: -56.5,18.5 parent: 33 type: Transform -- proto: LockerWardenFilled +- proto: LockerWardenFilledHardsuit entities: - - uid: 3610 + - uid: 8062 components: - pos: -33.5,63.5 parent: 33 @@ -134031,6 +136238,20 @@ entities: - pos: -83.5,-7.5 parent: 33 type: Transform +- proto: MachineCentrifuge + entities: + - uid: 16168 + components: + - pos: -53.5,6.5 + parent: 33 + type: Transform +- proto: MachineElectrolysisUnit + entities: + - uid: 17135 + components: + - pos: -53.5,5.5 + parent: 33 + type: Transform - proto: MachineFrame entities: - uid: 11302 @@ -134260,6 +136481,11 @@ entities: type: Transform - proto: MaintenancePlantSpawner entities: + - uid: 3104 + components: + - pos: -73.5,16.5 + parent: 33 + type: Transform - uid: 24689 components: - pos: -2.5,-42.5 @@ -134295,11 +136521,6 @@ entities: - pos: -95.5,24.5 parent: 33 type: Transform - - uid: 27243 - components: - - pos: -77.5,16.5 - parent: 33 - type: Transform - uid: 27288 components: - pos: -6.5,87.5 @@ -134500,6 +136721,22 @@ entities: - pos: 16.695374,-0.5075888 parent: 33 type: Transform + - uid: 30627 + components: + - pos: -64.35723,-38.589264 + parent: 33 + type: Transform +- proto: MaterialBones1 + entities: + - uid: 12153 + components: + - flags: InContainer + type: MetaData + - parent: 17253 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage - proto: MaterialCardboard entities: - uid: 28529 @@ -134760,11 +136997,6 @@ entities: - pos: -49.5,19.5 parent: 33 type: Transform - - uid: 4122 - components: - - pos: -69.5,1.5 - parent: 33 - type: Transform - uid: 4252 components: - pos: -46.5,19.5 @@ -134790,9 +137022,14 @@ entities: - pos: 16.5,8.5 parent: 33 type: Transform - - uid: 18175 + - uid: 14879 components: - - pos: -69.5,4.5 + - pos: -77.5,16.5 + parent: 33 + type: Transform + - uid: 21519 + components: + - pos: -80.5,16.5 parent: 33 type: Transform - proto: MedicalScanner @@ -134829,6 +137066,11 @@ entities: - pos: 31.543758,-8.253108 parent: 33 type: Transform + - uid: 30587 + components: + - pos: -1.5016906,-9.305323 + parent: 33 + type: Transform - proto: MedkitBruteFilled entities: - uid: 4309 @@ -134853,6 +137095,11 @@ entities: - pos: 11.943804,8.577556 parent: 33 type: Transform + - uid: 30588 + components: + - pos: -1.4704406,-9.440834 + parent: 33 + type: Transform - proto: MedkitCombatFilled entities: - uid: 4311 @@ -135126,8 +137373,20 @@ entities: - pos: -76.43787,-23.169811 parent: 33 type: Transform +- proto: MopBucketFull + entities: + - uid: 3911 + components: + - pos: -40.78742,21.746517 + parent: 33 + type: Transform - proto: MopItem entities: + - uid: 3574 + components: + - pos: -40.50617,21.51719 + parent: 33 + type: Transform - uid: 8227 components: - pos: 12.442439,62.53967 @@ -135145,19 +137404,19 @@ entities: type: Transform - proto: Morgue entities: - - uid: 4357 + - uid: 3006 components: - rot: 1.5707963267948966 rad - pos: -74.5,11.5 + pos: -74.5,15.5 parent: 33 type: Transform - air: volume: 200 immutable: False - temperature: 293.1496 + temperature: 293.1497 moles: - - 9.117112 - - 34.29771 + - 2.4753592 + - 9.312066 - 0 - 0 - 0 @@ -135169,377 +137428,243 @@ entities: - 0 - 0 type: EntityStorage - - uid: 4358 + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3080 + type: ContainerContainer + - uid: 12142 components: - - rot: 1.5707963267948966 rad - pos: -74.5,13.5 + - rot: -1.5707963267948966 rad + pos: -71.5,16.5 parent: 33 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 9.117112 - - 34.29771 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 4359 + - uid: 12714 components: - rot: 1.5707963267948966 rad - pos: -74.5,15.5 + pos: -74.5,16.5 parent: 33 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 9.117112 - - 34.29771 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 4360 + - uid: 16156 components: - - rot: 1.5707963267948966 rad - pos: -76.5,11.5 + - rot: -1.5707963267948966 rad + pos: -71.5,15.5 parent: 33 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 9.117112 - - 34.29771 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 4361 + - uid: 16157 components: - - rot: 1.5707963267948966 rad - pos: -76.5,13.5 + - rot: -1.5707963267948966 rad + pos: -71.5,14.5 parent: 33 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 9.117112 - - 34.29771 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 4396 - morgue_tray: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 4362 + - uid: 21533 components: - rot: 1.5707963267948966 rad - pos: -76.5,15.5 + pos: -74.5,14.5 parent: 33 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 9.117112 - - 34.29771 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - proto: MountainRock entities: - uid: 29882 components: - - rot: 3.141592653589793 rad - pos: -38.5,129.5 + - pos: -38.5,129.5 parent: 33 type: Transform - uid: 29883 components: - - rot: 3.141592653589793 rad - pos: -52.5,115.5 + - pos: -52.5,115.5 parent: 33 type: Transform - uid: 29884 components: - - rot: 3.141592653589793 rad - pos: -51.5,115.5 + - pos: -51.5,115.5 parent: 33 type: Transform - uid: 29885 components: - - rot: 3.141592653589793 rad - pos: -50.5,115.5 + - pos: -50.5,115.5 parent: 33 type: Transform - uid: 29886 components: - - rot: 3.141592653589793 rad - pos: -52.5,116.5 + - pos: -52.5,116.5 parent: 33 type: Transform - uid: 29887 components: - - rot: 3.141592653589793 rad - pos: -52.5,117.5 + - pos: -52.5,117.5 parent: 33 type: Transform - uid: 29888 components: - - rot: 3.141592653589793 rad - pos: -52.5,118.5 + - pos: -52.5,118.5 parent: 33 type: Transform - uid: 29889 components: - - rot: 3.141592653589793 rad - pos: -53.5,118.5 + - pos: -53.5,118.5 parent: 33 type: Transform - uid: 29890 components: - - rot: 3.141592653589793 rad - pos: -52.5,119.5 + - pos: -52.5,119.5 parent: 33 type: Transform - uid: 29891 components: - - rot: 3.141592653589793 rad - pos: -51.5,119.5 + - pos: -51.5,119.5 parent: 33 type: Transform - uid: 29892 components: - - rot: 3.141592653589793 rad - pos: -51.5,120.5 + - pos: -51.5,120.5 parent: 33 type: Transform - uid: 29893 components: - - rot: 3.141592653589793 rad - pos: -51.5,121.5 + - pos: -51.5,121.5 parent: 33 type: Transform - uid: 29894 components: - - rot: 3.141592653589793 rad - pos: -51.5,122.5 + - pos: -51.5,122.5 parent: 33 type: Transform - uid: 29895 components: - - rot: 3.141592653589793 rad - pos: -50.5,122.5 + - pos: -50.5,122.5 parent: 33 type: Transform - uid: 29896 components: - - rot: 3.141592653589793 rad - pos: -49.5,122.5 + - pos: -49.5,122.5 parent: 33 type: Transform - uid: 29897 components: - - rot: 3.141592653589793 rad - pos: -49.5,123.5 + - pos: -49.5,123.5 parent: 33 type: Transform - uid: 29898 components: - - rot: 3.141592653589793 rad - pos: -48.5,123.5 + - pos: -48.5,123.5 parent: 33 type: Transform - uid: 29899 components: - - rot: 3.141592653589793 rad - pos: -47.5,123.5 + - pos: -47.5,123.5 parent: 33 type: Transform - uid: 29900 components: - - rot: 3.141592653589793 rad - pos: -47.5,124.5 + - pos: -47.5,124.5 parent: 33 type: Transform - uid: 29901 components: - - rot: 3.141592653589793 rad - pos: -47.5,124.5 + - pos: -47.5,124.5 parent: 33 type: Transform - uid: 29902 components: - - rot: 3.141592653589793 rad - pos: -47.5,125.5 + - pos: -47.5,125.5 parent: 33 type: Transform - uid: 29903 components: - - rot: 3.141592653589793 rad - pos: -46.5,125.5 + - pos: -46.5,125.5 parent: 33 type: Transform - uid: 29904 components: - - rot: 3.141592653589793 rad - pos: -46.5,126.5 + - pos: -46.5,126.5 parent: 33 type: Transform - uid: 29905 components: - - rot: 3.141592653589793 rad - pos: -45.5,126.5 + - pos: -45.5,126.5 parent: 33 type: Transform - uid: 29906 components: - - rot: 3.141592653589793 rad - pos: -44.5,126.5 + - pos: -44.5,126.5 parent: 33 type: Transform - uid: 29907 components: - - rot: 3.141592653589793 rad - pos: -43.5,126.5 + - pos: -43.5,126.5 parent: 33 type: Transform - uid: 29908 components: - - rot: 3.141592653589793 rad - pos: -43.5,127.5 + - pos: -43.5,127.5 parent: 33 type: Transform - uid: 29909 components: - - rot: 3.141592653589793 rad - pos: -43.5,128.5 + - pos: -43.5,128.5 parent: 33 type: Transform - uid: 29910 components: - - rot: 3.141592653589793 rad - pos: -42.5,128.5 + - pos: -42.5,128.5 parent: 33 type: Transform - uid: 29911 components: - - rot: 3.141592653589793 rad - pos: -41.5,128.5 + - pos: -41.5,128.5 parent: 33 type: Transform - uid: 29912 components: - - rot: 3.141592653589793 rad - pos: -40.5,128.5 + - pos: -40.5,128.5 parent: 33 type: Transform - uid: 29913 components: - - rot: 3.141592653589793 rad - pos: -39.5,128.5 + - pos: -39.5,128.5 parent: 33 type: Transform - uid: 29914 components: - - rot: 3.141592653589793 rad - pos: -39.5,129.5 + - pos: -39.5,129.5 parent: 33 type: Transform - uid: 29915 components: - - rot: 3.141592653589793 rad - pos: -37.5,129.5 + - pos: -37.5,129.5 parent: 33 type: Transform - uid: 29916 components: - - rot: 3.141592653589793 rad - pos: -37.5,128.5 + - pos: -37.5,128.5 parent: 33 type: Transform - uid: 29917 components: - - rot: 3.141592653589793 rad - pos: -36.5,128.5 + - pos: -36.5,128.5 parent: 33 type: Transform - uid: 29918 components: - - rot: 3.141592653589793 rad - pos: -35.5,128.5 + - pos: -35.5,128.5 parent: 33 type: Transform - uid: 29919 components: - - rot: 3.141592653589793 rad - pos: -34.5,128.5 + - pos: -34.5,128.5 parent: 33 type: Transform - uid: 29920 components: - - rot: 3.141592653589793 rad - pos: -34.5,127.5 + - pos: -34.5,127.5 parent: 33 type: Transform - uid: 29921 components: - - rot: 3.141592653589793 rad - pos: -33.5,127.5 + - pos: -33.5,127.5 parent: 33 type: Transform - uid: 29922 @@ -136175,51 +138300,71 @@ entities: - pos: -20.5,47.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 6015 components: - pos: 3.5,64.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 8694 components: - pos: 29.5,69.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 10183 components: - pos: 56.5,73.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 10184 components: - pos: 55.5,73.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 10345 components: - pos: -87.5,-2.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 18214 components: - pos: -70.5,-38.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 18250 components: - pos: -35.5,26.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 18297 components: - pos: 9.5,81.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 18365 components: - pos: 3.5,31.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - proto: NitrogenTankFilled entities: - uid: 4201 @@ -136269,6 +138414,8 @@ entities: - pos: 41.5,69.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - proto: NitrousOxideTankFilled entities: - uid: 6322 @@ -136281,6 +138428,20 @@ entities: - pos: -17.546343,95.55564 parent: 33 type: Transform +- proto: NoticeBoard + entities: + - uid: 20840 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,30.5 + parent: 33 + type: Transform + - uid: 30477 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,8.5 + parent: 33 + type: Transform - proto: NuclearBombUnanchored entities: - uid: 3378 @@ -136361,11 +138522,6 @@ entities: - pos: -82.5,-0.5 parent: 33 type: Transform - - uid: 9644 - components: - - pos: -64.5,-15.5 - parent: 33 - type: Transform - proto: Oracle entities: - uid: 1911 @@ -136449,76 +138605,106 @@ entities: - pos: 31.5,-10.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 3237 components: - pos: -20.5,46.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 8693 components: - pos: 31.5,69.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 10185 components: - pos: 56.5,72.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 10186 components: - pos: 55.5,72.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 11461 components: - pos: -15.5,89.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 17956 components: - pos: -16.5,55.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 18208 components: - pos: -36.5,-25.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 18225 components: - pos: -87.5,-0.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 18249 components: - pos: -34.5,26.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 18270 components: - pos: 15.5,-4.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 18292 components: - pos: 38.5,42.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 18364 components: - pos: 1.5,31.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 28092 components: - pos: -97.5,-30.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 29713 components: - pos: 69.5,66.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - proto: OxygenTankFilled entities: - uid: 4187 @@ -144617,6 +146803,13 @@ entities: type: SolutionContainerManager - canCollide: False type: Physics +- proto: PillAmbuzolPlus + entities: + - uid: 10975 + components: + - pos: -88.414276,26.518557 + parent: 33 + type: Transform - proto: PillCanister entities: - uid: 8327 @@ -144648,13 +146841,6 @@ entities: - pos: -88.351776,26.622795 parent: 33 type: Transform -- proto: PillAmbuzolPlus - entities: - - uid: 10975 - components: - - pos: -88.414276,26.518557 - parent: 33 - type: Transform - proto: PillSpaceDrugs entities: - uid: 5326 @@ -144736,21 +146922,20 @@ entities: type: Transform - proto: PlasmaCanister entities: - - uid: 8692 - components: - - pos: 33.5,69.5 - parent: 33 - type: Transform - uid: 29710 components: - pos: 52.5,66.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 29711 components: - pos: 69.5,64.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - proto: PlasmaReinforcedWindowDirectional entities: - uid: 211 @@ -144804,16 +146989,16 @@ entities: pos: -57.5,-7.5 parent: 33 type: Transform - - uid: 5708 + - uid: 6698 components: - rot: 1.5707963267948966 rad - pos: 59.5,75.5 + pos: 61.5,75.5 parent: 33 type: Transform - - uid: 6093 + - uid: 6953 components: - rot: 1.5707963267948966 rad - pos: 59.5,73.5 + pos: 61.5,73.5 parent: 33 type: Transform - uid: 12609 @@ -144889,6 +147074,24 @@ entities: pos: -58.5,-5.5 parent: 33 type: Transform + - uid: 29197 + components: + - rot: 1.5707963267948966 rad + pos: 61.5,72.5 + parent: 33 + type: Transform + - uid: 29665 + components: + - rot: 1.5707963267948966 rad + pos: 61.5,71.5 + parent: 33 + type: Transform + - uid: 29751 + components: + - rot: 1.5707963267948966 rad + pos: 61.5,70.5 + parent: 33 + type: Transform - proto: PlasmaTank entities: - uid: 29214 @@ -144898,9 +147101,9 @@ entities: type: Transform - proto: PlasmaTankFilled entities: - - uid: 29212 + - uid: 30600 components: - - pos: -43.5326,39.58181 + - pos: -44.652573,38.39818 parent: 33 type: Transform - proto: PlasticBanana @@ -145168,9 +147371,9 @@ entities: - pos: -72.5,-40.5 parent: 33 type: Transform - - uid: 29211 + - uid: 30556 components: - - pos: -82.5,12.5 + - pos: -94.5,24.5 parent: 33 type: Transform - proto: PortableGeneratorPacman @@ -145539,9 +147742,10 @@ entities: type: Transform - proto: PosterLegitFruitBowl entities: - - uid: 9335 + - uid: 30472 components: - - pos: -11.5,30.5 + - rot: 3.141592653589793 rad + pos: -10.5,30.5 parent: 33 type: Transform - proto: PosterLegitFuckAround @@ -145748,18 +147952,16 @@ entities: type: Transform - proto: PosterLegitSafetyMothMeth entities: - - uid: 25628 + - uid: 20874 components: - - rot: 3.141592653589793 rad - pos: -79.5,12.5 + - pos: -71.5,17.5 parent: 33 type: Transform - proto: PosterLegitSafetyMothPoisoning entities: - - uid: 28493 + - uid: 20780 components: - - rot: 3.141592653589793 rad - pos: -78.5,17.5 + - pos: -73.5,17.5 parent: 33 type: Transform - proto: PosterLegitSafetyReport @@ -145936,6 +148138,11 @@ entities: - pos: -55.5,48.5 parent: 33 type: Transform + - uid: 30586 + components: + - pos: -8.5,-7.5 + parent: 33 + type: Transform - proto: PottedPlantRandom entities: - uid: 1639 @@ -146426,12 +148633,6 @@ entities: pos: -51.5,-8.5 parent: 33 type: Transform - - uid: 5929 - components: - - rot: 1.5707963267948966 rad - pos: -78.5,14.5 - parent: 33 - type: Transform - uid: 5955 components: - pos: -36.5,98.5 @@ -146454,12 +148655,6 @@ entities: pos: -69.5,23.5 parent: 33 type: Transform - - uid: 6747 - components: - - rot: 1.5707963267948966 rad - pos: -80.5,-3.5 - parent: 33 - type: Transform - uid: 6758 components: - pos: 44.5,-6.5 @@ -146518,6 +148713,12 @@ entities: pos: -26.5,-28.5 parent: 33 type: Transform + - uid: 21531 + components: + - rot: 1.5707963267948966 rad + pos: -74.5,12.5 + parent: 33 + type: Transform - uid: 24170 components: - pos: -67.5,-8.5 @@ -146633,6 +148834,16 @@ entities: pos: 38.5,25.5 parent: 33 type: Transform + - uid: 30485 + components: + - pos: -80.5,0.5 + parent: 33 + type: Transform + - uid: 30596 + components: + - pos: -9.5,-12.5 + parent: 33 + type: Transform - proto: Poweredlight entities: - uid: 459 @@ -146866,6 +149077,17 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 8675 + components: + - pos: -52.5,7.5 + parent: 33 + type: Transform + - uid: 8692 + components: + - rot: 3.141592653589793 rad + pos: -52.5,0.5 + parent: 33 + type: Transform - uid: 8697 components: - rot: -1.5707963267948966 rad @@ -147248,13 +149470,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 12468 - components: - - pos: -53.5,7.5 - parent: 33 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 12470 components: - rot: -1.5707963267948966 rad @@ -147263,14 +149478,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 12472 - components: - - rot: 3.141592653589793 rad - pos: -53.5,0.5 - parent: 33 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 12475 components: - rot: 1.5707963267948966 rad @@ -147947,14 +150154,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 12652 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,1.5 - parent: 33 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 12654 components: - pos: 11.5,19.5 @@ -148740,6 +150939,11 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 20872 + components: + - pos: -58.5,3.5 + parent: 33 + type: Transform - uid: 22953 components: - rot: 3.141592653589793 rad @@ -149048,12 +151252,6 @@ entities: pos: 66.5,59.5 parent: 33 type: Transform - - uid: 30260 - components: - - rot: 1.5707963267948966 rad - pos: 58.5,74.5 - parent: 33 - type: Transform - uid: 30261 components: - rot: -1.5707963267948966 rad @@ -149066,6 +151264,27 @@ entities: pos: 48.5,63.5 parent: 33 type: Transform + - uid: 30471 + components: + - pos: 58.5,75.5 + parent: 33 + type: Transform + - uid: 30540 + components: + - pos: -77.5,16.5 + parent: 33 + type: Transform + - uid: 30541 + components: + - pos: -80.5,16.5 + parent: 33 + type: Transform + - uid: 30542 + components: + - rot: -1.5707963267948966 rad + pos: -76.5,10.5 + parent: 33 + type: Transform - proto: PoweredLightBlueInterior entities: - uid: 273 @@ -149382,29 +151601,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 12575 - components: - - rot: 3.141592653589793 rad - pos: -52.5,-19.5 - parent: 33 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 12576 - components: - - pos: -52.5,-12.5 - parent: 33 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 12577 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-19.5 - parent: 33 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 12640 components: - pos: -73.5,16.5 @@ -149412,22 +151608,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 12641 - components: - - rot: 1.5707963267948966 rad - pos: -78.5,16.5 - parent: 33 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 12642 - components: - - rot: 1.5707963267948966 rad - pos: -78.5,10.5 - parent: 33 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 12643 components: - rot: 3.141592653589793 rad @@ -149552,13 +151732,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 12578 - components: - - pos: -49.5,-13.5 - parent: 33 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 12775 components: - rot: 1.5707963267948966 rad @@ -149605,6 +151778,11 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 13680 + components: + - pos: -31.5,79.5 + parent: 33 + type: Transform - uid: 18563 components: - rot: -1.5707963267948966 rad @@ -149618,37 +151796,6 @@ entities: - pos: 49.5,81.5 parent: 33 type: Transform - - uid: 27596 - components: - - pos: -54.5,-13.5 - parent: 33 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 27597 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-15.5 - parent: 33 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 27598 - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-15.5 - parent: 33 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 27599 - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-18.5 - parent: 33 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 27608 components: - rot: 1.5707963267948966 rad @@ -149763,6 +151910,9 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - links: + - 30638 + type: DeviceLinkSink - uid: 1916 components: - pos: 30.5,52.5 @@ -149879,6 +152029,12 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 4332 + components: + - rot: 1.5707963267948966 rad + pos: -84.5,21.5 + parent: 33 + type: Transform - uid: 4678 components: - rot: 3.141592653589793 rad @@ -150367,18 +152523,6 @@ entities: - pos: -80.5,-38.5 parent: 33 type: Transform - - uid: 12713 - components: - - rot: -1.5707963267948966 rad - pos: -83.5,18.5 - parent: 33 - type: Transform - - uid: 12714 - components: - - rot: -1.5707963267948966 rad - pos: -80.5,12.5 - parent: 33 - type: Transform - uid: 12744 components: - rot: 1.5707963267948966 rad @@ -150443,6 +152587,12 @@ entities: - pos: -18.5,93.5 parent: 33 type: Transform + - uid: 30543 + components: + - rot: 3.141592653589793 rad + pos: -83.5,12.5 + parent: 33 + type: Transform - proto: PoweredSmallLightMaintenanceRed entities: - uid: 1132 @@ -150556,12 +152706,6 @@ entities: - pos: -88.5,-0.5 parent: 33 type: Transform - - uid: 12716 - components: - - rot: 3.141592653589793 rad - pos: -69.5,18.5 - parent: 33 - type: Transform - uid: 12738 components: - pos: -58.5,24.5 @@ -150626,6 +152770,12 @@ entities: pos: -94.5,6.5 parent: 33 type: Transform + - uid: 20879 + components: + - rot: 3.141592653589793 rad + pos: -69.5,18.5 + parent: 33 + type: Transform - uid: 26813 components: - rot: 1.5707963267948966 rad @@ -150655,6 +152805,11 @@ entities: pos: -22.5,97.5 parent: 33 type: Transform + - uid: 30544 + components: + - pos: -72.5,19.5 + parent: 33 + type: Transform - proto: PresentRandom entities: - uid: 2958 @@ -150674,6 +152829,13 @@ entities: - pos: -65.5,-8.5 parent: 33 type: Transform +- proto: PsychBed + entities: + - uid: 12468 + components: + - pos: -47.5,3.5 + parent: 33 + type: Transform - proto: Puddle entities: - uid: 30252 @@ -150961,6 +153123,11 @@ entities: - pos: -40.5,19.5 parent: 33 type: Transform + - uid: 4359 + components: + - pos: -82.5,21.5 + parent: 33 + type: Transform - uid: 4607 components: - pos: -66.5,-8.5 @@ -151067,6 +153234,11 @@ entities: pos: -28.5,66.5 parent: 33 type: Transform + - uid: 7042 + components: + - pos: -1.5,-9.5 + parent: 33 + type: Transform - uid: 8091 components: - pos: 24.5,19.5 @@ -151331,11 +153503,6 @@ entities: - pos: -19.5,-6.5 parent: 33 type: Transform - - uid: 16133 - components: - - pos: -84.5,18.5 - parent: 33 - type: Transform - uid: 16361 components: - pos: 13.5,-19.5 @@ -151591,11 +153758,6 @@ entities: - pos: -89.5,-9.5 parent: 33 type: Transform - - uid: 25008 - components: - - pos: -2.5,-9.5 - parent: 33 - type: Transform - uid: 25311 components: - pos: -34.5,79.5 @@ -151688,6 +153850,11 @@ entities: - pos: -63.5,-16.5 parent: 33 type: Transform + - uid: 29686 + components: + - pos: -61.5,-22.5 + parent: 33 + type: Transform - uid: 29712 components: - rot: 1.5707963267948966 rad @@ -151730,6 +153897,17 @@ entities: pos: -38.5,122.5 parent: 33 type: Transform + - uid: 30577 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 33 + type: Transform + - uid: 30594 + components: + - pos: -4.5,-5.5 + parent: 33 + type: Transform - proto: RadioHandheld entities: - uid: 1261 @@ -153131,6 +155309,33 @@ entities: - pos: -56.5,-4.5 parent: 33 type: Transform +- proto: RandomProduce + entities: + - uid: 8307 + components: + - pos: -10.5,43.5 + parent: 33 + type: Transform + - uid: 8308 + components: + - pos: -9.5,44.5 + parent: 33 + type: Transform + - uid: 8309 + components: + - pos: -9.5,44.5 + parent: 33 + type: Transform + - uid: 8310 + components: + - pos: -10.5,43.5 + parent: 33 + type: Transform + - uid: 30599 + components: + - pos: -10.5,41.5 + parent: 33 + type: Transform - proto: RandomRockSpawner entities: - uid: 129 @@ -155621,29 +157826,6 @@ entities: pos: -19.333506,-14.257223 parent: 33 type: Transform -- proto: ReagentContainerMilk - entities: - - uid: 6642 - components: - - flags: InContainer - type: MetaData - - parent: 6379 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 24496 - components: - - pos: -53.64551,72.814026 - parent: 33 - type: Transform -- proto: ReagentContainerMilkSoy - entities: - - uid: 8324 - components: - - pos: -0.4601727,40.600983 - parent: 33 - type: Transform - proto: ReagentContainerOliveoil entities: - uid: 6667 @@ -155697,10 +157879,9 @@ entities: type: Transform - proto: Recycler entities: - - uid: 9856 + - uid: 24089 components: - - rot: 3.141592653589793 rad - pos: 12.5,66.5 + - pos: 12.5,66.5 parent: 33 type: Transform - links: @@ -156415,11 +158596,6 @@ entities: - pos: 62.5,69.5 parent: 33 type: Transform - - uid: 7444 - components: - - pos: 61.5,69.5 - parent: 33 - type: Transform - uid: 7453 components: - pos: 64.5,76.5 @@ -156625,16 +158801,6 @@ entities: - pos: 62.5,76.5 parent: 33 type: Transform - - uid: 25919 - components: - - pos: 61.5,76.5 - parent: 33 - type: Transform - - uid: 25925 - components: - - pos: 60.5,76.5 - parent: 33 - type: Transform - uid: 25994 components: - pos: 60.5,69.5 @@ -156705,6 +158871,11 @@ entities: - pos: -4.5,64.5 parent: 33 type: Transform + - uid: 29687 + components: + - pos: 59.5,69.5 + parent: 33 + type: Transform - proto: ReinforcedWindow entities: - uid: 16 @@ -157602,16 +159773,6 @@ entities: - pos: -56.5,5.5 parent: 33 type: Transform - - uid: 3947 - components: - - pos: -65.5,3.5 - parent: 33 - type: Transform - - uid: 3959 - components: - - pos: -65.5,5.5 - parent: 33 - type: Transform - uid: 3972 components: - pos: -71.5,6.5 @@ -157662,16 +159823,6 @@ entities: - pos: -69.5,-4.5 parent: 33 type: Transform - - uid: 4115 - components: - - pos: -65.5,0.5 - parent: 33 - type: Transform - - uid: 4121 - components: - - pos: -65.5,1.5 - parent: 33 - type: Transform - uid: 4242 components: - pos: 11.5,-23.5 @@ -158077,6 +160228,11 @@ entities: - pos: -11.5,61.5 parent: 33 type: Transform + - uid: 6093 + components: + - pos: 53.5,67.5 + parent: 33 + type: Transform - uid: 6136 components: - pos: -20.5,87.5 @@ -158592,11 +160748,6 @@ entities: - pos: 47.5,60.5 parent: 33 type: Transform - - uid: 10175 - components: - - pos: 53.5,67.5 - parent: 33 - type: Transform - uid: 10176 components: - pos: 54.5,67.5 @@ -159332,11 +161483,6 @@ entities: - pos: 25.5,68.5 parent: 33 type: Transform - - uid: 17798 - components: - - pos: -65.5,4.5 - parent: 33 - type: Transform - uid: 17842 components: - pos: -85.5,-36.5 @@ -159607,6 +161753,16 @@ entities: - pos: -87.5,-38.5 parent: 33 type: Transform + - uid: 21550 + components: + - pos: -67.5,6.5 + parent: 33 + type: Transform + - uid: 21571 + components: + - pos: -69.5,6.5 + parent: 33 + type: Transform - uid: 22008 components: - pos: 37.5,-26.5 @@ -159627,6 +161783,16 @@ entities: - pos: -46.5,13.5 parent: 33 type: Transform + - uid: 22430 + components: + - pos: -68.5,6.5 + parent: 33 + type: Transform + - uid: 22804 + components: + - pos: -66.5,6.5 + parent: 33 + type: Transform - uid: 22935 components: - pos: -33.5,-24.5 @@ -160082,6 +162248,11 @@ entities: - pos: 45.5,72.5 parent: 33 type: Transform + - uid: 28723 + components: + - pos: -60.5,1.5 + parent: 33 + type: Transform - uid: 28764 components: - pos: 69.5,63.5 @@ -160187,6 +162358,16 @@ entities: - pos: 53.5,-25.5 parent: 33 type: Transform + - uid: 30514 + components: + - pos: -78.5,9.5 + parent: 33 + type: Transform + - uid: 30516 + components: + - pos: -76.5,9.5 + parent: 33 + type: Transform - proto: RemoteSignaller entities: - uid: 27714 @@ -160197,14 +162378,16 @@ entities: type: Transform - proto: ResearchAndDevelopmentServer entities: - - uid: 1821 + - uid: 23054 components: - - pos: -61.5,-22.5 + - pos: -57.5,-5.5 parent: 33 type: Transform - - uid: 23054 +- proto: ResearchAndDevelopmentServerMachineCircuitboard + entities: + - uid: 30260 components: - - pos: -57.5,-5.5 + - pos: -61.48651,-22.374655 parent: 33 type: Transform - proto: ResearchComputerCircuitboard @@ -160434,9 +162617,9 @@ entities: type: Transform - proto: Saw entities: - - uid: 4394 + - uid: 21532 components: - - pos: -78.513084,15.530192 + - pos: -74.4539,13.102057 parent: 33 type: Transform - proto: SawAdvanced @@ -160479,6 +162662,48 @@ entities: - pos: -29.5,-21.5 parent: 33 type: Transform +- proto: Screen + entities: + - uid: 30670 + components: + - pos: -54.5,49.5 + parent: 33 + type: Transform + - uid: 30671 + components: + - pos: -50.5,37.5 + parent: 33 + type: Transform + - uid: 30672 + components: + - pos: -69.5,-0.5 + parent: 33 + type: Transform + - uid: 30673 + components: + - pos: -30.5,17.5 + parent: 33 + type: Transform + - uid: 30674 + components: + - pos: -16.5,4.5 + parent: 33 + type: Transform + - uid: 30675 + components: + - pos: 13.5,-7.5 + parent: 33 + type: Transform + - uid: 30676 + components: + - pos: 25.5,20.5 + parent: 33 + type: Transform + - uid: 30677 + components: + - pos: -19.5,48.5 + parent: 33 + type: Transform - proto: Screwdriver entities: - uid: 1441 @@ -160934,6 +163159,11 @@ entities: - pos: -53.49413,0.78387624 parent: 33 type: Transform + - uid: 29212 + components: + - pos: -43.527573,39.534386 + parent: 33 + type: Transform - proto: SheetPlasteel entities: - uid: 2147 @@ -161596,7 +163826,7 @@ entities: parent: 33 type: Transform - links: - - 25470 + - 18121 type: DeviceLinkSink - uid: 25464 components: @@ -161604,7 +163834,7 @@ entities: parent: 33 type: Transform - links: - - 25470 + - 18121 type: DeviceLinkSink - uid: 25465 components: @@ -161612,7 +163842,7 @@ entities: parent: 33 type: Transform - links: - - 25470 + - 18121 type: DeviceLinkSink - uid: 25466 components: @@ -161620,7 +163850,7 @@ entities: parent: 33 type: Transform - links: - - 25470 + - 18121 type: DeviceLinkSink - uid: 25467 components: @@ -161638,6 +163868,38 @@ entities: - links: - 27353 type: DeviceLinkSink + - uid: 25470 + components: + - pos: -28.5,10.5 + parent: 33 + type: Transform + - links: + - 8530 + type: DeviceLinkSink + - uid: 27597 + components: + - pos: -28.5,9.5 + parent: 33 + type: Transform + - links: + - 8530 + type: DeviceLinkSink + - uid: 27598 + components: + - pos: -28.5,11.5 + parent: 33 + type: Transform + - links: + - 8530 + type: DeviceLinkSink + - uid: 27599 + components: + - pos: -28.5,12.5 + parent: 33 + type: Transform + - links: + - 8530 + type: DeviceLinkSink - proto: ShuttersRadiation entities: - uid: 695 @@ -161729,6 +163991,7 @@ entities: type: Transform - links: - 18123 + - 30620 type: DeviceLinkSink - uid: 18097 components: @@ -161737,6 +164000,7 @@ entities: type: Transform - links: - 18123 + - 30620 type: DeviceLinkSink - uid: 18098 components: @@ -161745,6 +164009,7 @@ entities: type: Transform - links: - 18123 + - 30620 type: DeviceLinkSink - proto: ShuttersWindow entities: @@ -161869,6 +164134,170 @@ entities: - pos: 27.5,10.5 parent: 33 type: Transform + - links: + - 30621 + type: DeviceLinkSink +- proto: SignalButtonDirectional + entities: + - uid: 12151 + components: + - desc: > + Activate button to alert janitors their service is needed. + name: janitorial service button + type: MetaData + - pos: 11.5,30.5 + parent: 33 + type: Transform + - linkedPorts: + 30629: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 27776 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,7.5 + parent: 33 + type: Transform + - linkedPorts: + 4702: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 30619 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,17.5 + parent: 33 + type: Transform + - linkedPorts: + 4715: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 30634 + components: + - desc: > + Activate button to alert janitors their service is needed. + name: janitorial service button + type: MetaData + - pos: -43.5,18.5 + parent: 33 + type: Transform + - linkedPorts: + 30632: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 30635 + components: + - desc: > + Activate button to alert janitors their service is needed. + name: janitorial service button + type: MetaData + - pos: -61.5,-4.5 + parent: 33 + type: Transform + - linkedPorts: + 30633: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 30636 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,10.5 + parent: 33 + type: Transform + - linkedPorts: + 3821: + - Pressed: Open + type: DeviceLinkSource + - uid: 30637 + components: + - desc: > + Activate button to alert janitors their service is needed. + name: janitorial service button + type: MetaData + - rot: 3.141592653589793 rad + pos: 19.5,-18.5 + parent: 33 + type: Transform + - linkedPorts: + 30631: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 30638 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,17.5 + parent: 33 + type: Transform + - linkedPorts: + 1077: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 30639 + components: + - desc: > + Activate button to alert janitors their service is needed. + name: janitorial service button + type: MetaData + - rot: 1.5707963267948966 rad + pos: 29.5,23.5 + parent: 33 + type: Transform + - linkedPorts: + 30630: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 30640 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,33.5 + parent: 33 + type: Transform + - linkedPorts: + 12578: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 30641 + components: + - desc: > + Activate button to alert janitors their service is needed. + name: janitorial service button + type: MetaData + - rot: -1.5707963267948966 rad + pos: -14.5,29.5 + parent: 33 + type: Transform + - linkedPorts: + 12578: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 30642 + components: + - desc: > + Activate button to alert janitors their service is needed. + name: janitorial service button + type: MetaData + - rot: 3.141592653589793 rad + pos: -51.5,25.5 + parent: 33 + type: Transform + - linkedPorts: + 30628: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 30643 + components: + - desc: > + Activate button to alert janitors their service is needed. + name: janitorial service button + type: MetaData + - rot: 3.141592653589793 rad + pos: -17.5,65.5 + parent: 33 + type: Transform + - linkedPorts: + 9290: + - Pressed: Toggle + type: DeviceLinkSource - proto: SignalSwitchDirectional entities: - uid: 415 @@ -161902,11 +164331,13 @@ entities: type: Transform - linkedPorts: 23756: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 22009: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle type: DeviceLinkSource - uid: 838 components: @@ -161915,8 +164346,9 @@ entities: type: Transform - linkedPorts: 17949: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle type: DeviceLinkSource - uid: 1800 components: @@ -161926,8 +164358,9 @@ entities: type: Transform - linkedPorts: 5398: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle type: DeviceLinkSource - uid: 2428 components: @@ -161937,8 +164370,9 @@ entities: type: Transform - linkedPorts: 5398: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle type: DeviceLinkSource - uid: 3270 components: @@ -161976,44 +164410,57 @@ entities: type: SignalSwitch - linkedPorts: 9295: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 9294: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 9293: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 10929: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 10928: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 307: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 10930: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 10820: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 10819: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 10821: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 10824: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 10822: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 10823: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle type: DeviceLinkSource - uid: 3444 components: @@ -162022,8 +164469,9 @@ entities: type: Transform - linkedPorts: 3452: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle type: DeviceLinkSource - uid: 3881 components: @@ -162033,8 +164481,7 @@ entities: type: Transform - linkedPorts: 13030: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 4182 components: @@ -162043,11 +164490,13 @@ entities: type: Transform - linkedPorts: 244: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 862: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle type: DeviceLinkSource - uid: 5211 components: @@ -162056,8 +164505,7 @@ entities: type: Transform - linkedPorts: 1486: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 5504 components: @@ -162069,8 +164517,9 @@ entities: type: SignalSwitch - linkedPorts: 10675: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle type: DeviceLinkSource - uid: 8530 components: @@ -162082,14 +164531,33 @@ entities: type: SignalSwitch - linkedPorts: 8527: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 8528: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 8529: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle + 27599: + - On: Toggle + - Off: Toggle + - Status: Toggle + 27598: + - On: Toggle + - Off: Toggle + - Status: Toggle + 25470: + - On: Toggle + - Off: Toggle + - Status: Toggle + 27597: + - On: Toggle + - Off: Toggle + - Status: Toggle type: DeviceLinkSource - uid: 8907 components: @@ -162101,20 +164569,25 @@ entities: type: SignalSwitch - linkedPorts: 8904: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 8903: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 8902: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 8905: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 8906: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle type: DeviceLinkSource - uid: 9296 components: @@ -162124,8 +164597,7 @@ entities: type: Transform - linkedPorts: 12707: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 10402 components: @@ -162135,8 +164607,7 @@ entities: type: Transform - linkedPorts: 12971: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 10403 components: @@ -162146,8 +164617,7 @@ entities: type: Transform - linkedPorts: 10294: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 10404 components: @@ -162159,17 +164629,13 @@ entities: type: Transform - linkedPorts: 12502: - - On: On - - Off: Off + - Status: Toggle 12501: - - On: On - - Off: Off + - Status: Toggle 12504: - - On: On - - Off: Off + - Status: Toggle 12503: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 10405 components: @@ -162179,8 +164645,7 @@ entities: type: Transform - linkedPorts: 12731: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 10406 components: @@ -162190,17 +164655,13 @@ entities: type: Transform - linkedPorts: 18513: - - On: On - - Off: Off + - Status: Toggle 18512: - - On: On - - Off: Off + - Status: Toggle 18518: - - On: On - - Off: Off + - Status: Toggle 18517: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 10408 components: @@ -162209,8 +164670,7 @@ entities: type: Transform - linkedPorts: 12574: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 11207 components: @@ -162219,8 +164679,9 @@ entities: type: Transform - linkedPorts: 2124: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle type: DeviceLinkSource - uid: 12420 components: @@ -162230,8 +164691,7 @@ entities: type: Transform - linkedPorts: 12705: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 12423 components: @@ -162241,8 +164701,7 @@ entities: type: Transform - linkedPorts: 12706: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 12428 components: @@ -162252,8 +164711,7 @@ entities: type: Transform - linkedPorts: 3880: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 12451 components: @@ -162263,8 +164721,7 @@ entities: type: Transform - linkedPorts: 12598: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 12465 components: @@ -162274,8 +164731,7 @@ entities: type: Transform - linkedPorts: 12632: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 12478 components: @@ -162284,8 +164740,7 @@ entities: type: Transform - linkedPorts: 12698: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 12485 components: @@ -162295,8 +164750,7 @@ entities: type: Transform - linkedPorts: 12702: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 12487 components: @@ -162305,8 +164759,7 @@ entities: type: Transform - linkedPorts: 12701: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 12509 components: @@ -162316,8 +164769,7 @@ entities: type: Transform - linkedPorts: 12800: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 12526 components: @@ -162326,8 +164778,7 @@ entities: type: Transform - linkedPorts: 12839: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 12547 components: @@ -162336,8 +164787,7 @@ entities: type: Transform - linkedPorts: 12544: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 12712 components: @@ -162347,8 +164797,7 @@ entities: type: Transform - linkedPorts: 17472: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 12847 components: @@ -162358,8 +164807,7 @@ entities: type: Transform - linkedPorts: 27552: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 13565 components: @@ -162395,8 +164843,7 @@ entities: type: Transform - linkedPorts: 13577: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 15092 components: @@ -162405,11 +164852,13 @@ entities: type: Transform - linkedPorts: 11254: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 11147: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle type: DeviceLinkSource - uid: 15196 components: @@ -162418,11 +164867,13 @@ entities: type: Transform - linkedPorts: 5702: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 11288: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle type: DeviceLinkSource - uid: 17948 components: @@ -162431,24 +164882,32 @@ entities: type: Transform - linkedPorts: 17950: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle type: DeviceLinkSource - uid: 18121 components: - - name: blast door signal switch - type: MetaData - - rot: -1.5707963267948966 rad - pos: -56.5,-53.5 + - pos: -28.5,72.5 parent: 33 type: Transform - linkedPorts: - 18092: - - On: Open - - Off: Close - 18091: - - On: Open - - Off: Close + 25463: + - On: Toggle + - Off: Toggle + - Status: Toggle + 25464: + - On: Toggle + - Off: Toggle + - Status: Toggle + 25465: + - On: Toggle + - Off: Toggle + - Status: Toggle + 25466: + - On: Toggle + - Off: Toggle + - Status: Toggle type: DeviceLinkSource - uid: 18122 components: @@ -162460,23 +164919,29 @@ entities: type: Transform - linkedPorts: 18095: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 18094: - - On: Open - - Off: Close + - Off: Toggle + - Status: Toggle + - On: Toggle 18093: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 18090: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 18100: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 18099: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle type: DeviceLinkSource - uid: 18123 components: @@ -162498,6 +164963,14 @@ entities: 18098: - On: Open - Off: Close + 18091: + - On: Toggle + - Off: Toggle + - Status: Toggle + 18092: + - On: Toggle + - Off: Toggle + - Status: Toggle type: DeviceLinkSource - uid: 24147 components: @@ -162507,11 +164980,13 @@ entities: type: Transform - linkedPorts: 5534: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 695: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle type: DeviceLinkSource - uid: 24223 components: @@ -162521,33 +164996,13 @@ entities: type: Transform - linkedPorts: 5533: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 5535: - - On: Open - - Off: Close - type: DeviceLinkSource - - uid: 25470 - components: - - rot: 3.141592653589793 rad - pos: -28.5,65.5 - parent: 33 - type: Transform - - state: True - type: SignalSwitch - - linkedPorts: - 25466: - - On: Open - - Off: Close - 25465: - - On: Open - - Off: Close - 25464: - - On: Open - - Off: Close - 25463: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle type: DeviceLinkSource - uid: 26895 components: @@ -162557,8 +165012,9 @@ entities: type: Transform - linkedPorts: 26127: - - On: On - - Off: Off + - On: Toggle + - Off: Toggle + - Status: Toggle type: DeviceLinkSource - uid: 27313 components: @@ -162568,17 +165024,21 @@ entities: type: Transform - linkedPorts: 927: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 928: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 926: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 925: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle type: DeviceLinkSource - uid: 27317 components: @@ -162636,23 +165096,29 @@ entities: type: Transform - linkedPorts: 25461: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 25467: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 25468: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 25462: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 25457: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 25456: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle type: DeviceLinkSource - uid: 28185 components: @@ -162661,8 +165127,7 @@ entities: type: Transform - linkedPorts: 28184: - - On: On - - Off: Off + - Status: Toggle type: DeviceLinkSource - uid: 28276 components: @@ -162695,14 +165160,17 @@ entities: type: Transform - linkedPorts: 4623: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 19698: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 7953: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle type: DeviceLinkSource - uid: 29125 components: @@ -162711,14 +165179,17 @@ entities: type: Transform - linkedPorts: 10017: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 26885: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 10018: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle type: DeviceLinkSource - uid: 29222 components: @@ -162734,8 +165205,9 @@ entities: - On: Forward - Off: Off 25522: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 609: - On: Forward - Off: Off @@ -162752,8 +165224,9 @@ entities: - On: Forward - Off: Off 25359: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 21971: - On: Forward - Off: Off @@ -162772,8 +165245,9 @@ entities: - On: Forward - Off: Off 25359: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 21971: - On: Forward - Off: Off @@ -162790,8 +165264,9 @@ entities: - On: Forward - Off: Off 25522: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 609: - On: Forward - Off: Off @@ -162816,11 +165291,13 @@ entities: - On: Forward - Off: Off 1303: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 16412: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 29228: - On: Forward - Off: Off @@ -162835,14 +165312,17 @@ entities: type: Transform - linkedPorts: 25433: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 28606: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 25434: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle type: DeviceLinkSource - uid: 29704 components: @@ -162852,14 +165332,17 @@ entities: type: Transform - linkedPorts: 29700: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 29701: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 29702: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle type: DeviceLinkSource - uid: 30407 components: @@ -162869,11 +165352,45 @@ entities: type: Transform - linkedPorts: 16397: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle 22006: - - On: Open - - Off: Close + - On: Toggle + - Off: Toggle + - Status: Toggle + type: DeviceLinkSource + - uid: 30620 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,-53.5 + parent: 33 + type: Transform + - linkedPorts: + 18098: + - On: Toggle + - Off: Toggle + - Status: Toggle + 18097: + - On: Toggle + - Off: Toggle + - Status: Toggle + 18096: + - On: Toggle + - Off: Toggle + - Status: Toggle + type: DeviceLinkSource + - uid: 30621 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,9.5 + parent: 33 + type: Transform + - linkedPorts: + 17245: + - On: Toggle + - Off: Toggle + - Status: Toggle type: DeviceLinkSource - proto: SignAnomaly entities: @@ -162932,16 +165449,9 @@ entities: type: Transform - proto: SignBiohazardMed entities: - - uid: 6952 - components: - - rot: 1.5707963267948966 rad - pos: -65.5,3.5 - parent: 33 - type: Transform - - uid: 24178 + - uid: 20892 components: - - rot: 1.5707963267948966 rad - pos: -65.5,1.5 + - pos: -82.5,14.5 parent: 33 type: Transform - proto: SignBlankMed @@ -163028,6 +165538,20 @@ entities: - pos: -29.5,32.5 parent: 33 type: Transform +- proto: SignCryogenics + entities: + - uid: 28656 + components: + - pos: -65.5,6.5 + parent: 33 + type: Transform +- proto: SignCryogenicsMed + entities: + - uid: 28810 + components: + - pos: -60.5,3.5 + parent: 33 + type: Transform - proto: SignDangerMed entities: - uid: 10745 @@ -163091,6 +165615,13 @@ entities: pos: -11.457759,4.1734133 parent: 33 type: Transform +- proto: SignDirectionalCryo + entities: + - uid: 30357 + components: + - pos: -65.5,9.5 + parent: 33 + type: Transform - proto: SignDirectionalEng entities: - uid: 302 @@ -163564,18 +166095,6 @@ entities: - pos: 55.5,78.5 parent: 33 type: Transform - - uid: 29747 - components: - - rot: 3.141592653589793 rad - pos: 59.5,69.5 - parent: 33 - type: Transform - - uid: 29751 - components: - - rot: 1.5707963267948966 rad - pos: 59.5,72.5 - parent: 33 - type: Transform - proto: SignGravity entities: - uid: 24205 @@ -163814,14 +166333,9 @@ entities: type: Transform - proto: SignRobo entities: - - uid: 27666 - components: - - pos: -62.5,-15.5 - parent: 33 - type: Transform - - uid: 28653 + - uid: 12642 components: - - pos: -67.5,-9.5 + - pos: -77.5,-4.5 parent: 33 type: Transform - proto: SignScience @@ -164148,9 +166662,9 @@ entities: type: Transform - proto: SignVirology entities: - - uid: 24227 + - uid: 12652 components: - - pos: -65.5,6.5 + - pos: -75.5,9.5 parent: 33 type: Transform - proto: SignXenobio2 @@ -164393,6 +166907,15 @@ entities: - pos: 3.5,79.5 parent: 33 type: Transform +- proto: SmartFridge + entities: + - uid: 3920 + components: + - flags: SessionSpecific + type: MetaData + - pos: -50.5,5.5 + parent: 33 + type: Transform - proto: SMESBasic entities: - uid: 7357 @@ -164453,6 +166976,8 @@ entities: type: Transform - uid: 28144 components: + - name: satelite SMES + type: MetaData - pos: -100.5,-79.5 parent: 33 type: Transform @@ -166028,12 +168553,6 @@ entities: - pos: 92.5,43.5 parent: 33 type: Transform - - uid: 9891 - components: - - rot: 3.141592653589793 rad - pos: 7.5,64.5 - parent: 33 - type: Transform - uid: 17963 components: - pos: 31.5,29.5 @@ -166293,6 +168812,14 @@ entities: pos: 12.311935,78.58198 parent: 33 type: Transform +- proto: SpareIdCabinetFilled + entities: + - uid: 28624 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,28.5 + parent: 33 + type: Transform - proto: SpawnMobAlexander entities: - uid: 27368 @@ -166435,9 +168962,9 @@ entities: type: Transform - proto: SpawnMobPossumMorty entities: - - uid: 4381 + - uid: 20895 components: - - pos: -76.5,14.5 + - pos: -72.5,14.5 parent: 33 type: Transform - proto: SpawnMobRaccoonMorticia @@ -166447,6 +168974,13 @@ entities: - pos: 23.5,-4.5 parent: 33 type: Transform +- proto: SpawnMobSecDogLaika + entities: + - uid: 27596 + components: + - pos: -30.5,71.5 + parent: 33 + type: Transform - proto: SpawnMobSlothPaperwork entities: - uid: 4960 @@ -166563,6 +169097,28 @@ entities: - pos: 29.5,39.5 parent: 33 type: Transform +- proto: SpawnPointBrigmedic + entities: + - uid: 30590 + components: + - pos: -2.5,-7.5 + parent: 33 + type: Transform + - uid: 30591 + components: + - pos: -10.5,-7.5 + parent: 33 + type: Transform + - uid: 30592 + components: + - pos: -8.5,-11.5 + parent: 33 + type: Transform + - uid: 30593 + components: + - pos: -11.5,-12.5 + parent: 33 + type: Transform - proto: SpawnPointCaptain entities: - uid: 10331 @@ -167463,6 +170019,21 @@ entities: - pos: -14.5,67.5 parent: 33 type: Transform +- proto: SpawnVehicleWheelchair + entities: + - uid: 30478 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,9.5 + parent: 33 + type: Transform +- proto: SpawnVehicleWheelchairFolded + entities: + - uid: 28381 + components: + - pos: -41.5,19.5 + parent: 33 + type: Transform - proto: SpawnVendingMachineRestockFoodDrink entities: - uid: 20649 @@ -167579,6 +170150,11 @@ entities: - pos: -58.5,13.5 parent: 33 type: Transform + - uid: 10700 + components: + - pos: -2.5,-9.5 + parent: 33 + type: Transform - proto: StationMap entities: - uid: 3765 @@ -167931,81 +170507,113 @@ entities: - pos: -79.5,-18.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 8691 components: - pos: 35.5,69.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 10179 components: - pos: 56.5,68.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 10180 components: - pos: 55.5,68.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 10181 components: - pos: 56.5,69.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 10202 components: - pos: 46.5,56.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 10203 components: - pos: 46.5,57.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 11033 components: - pos: -30.5,-21.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 18164 components: - pos: -57.5,-35.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 18215 components: - pos: -71.5,-38.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 18251 components: - pos: -43.5,26.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 18269 components: - pos: 11.5,-5.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 18328 components: - pos: 2.5,76.5 parent: 33 type: Transform - - uid: 20866 - components: - - pos: -80.5,12.5 - parent: 33 - type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 29715 components: - pos: 68.5,68.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 29716 components: - pos: 69.5,68.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice + - uid: 30551 + components: + - pos: -65.5,5.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice - proto: StrangePill entities: - uid: 18544 @@ -168034,6 +170642,13 @@ entities: type: Transform - proto: SubstationBasic entities: + - uid: 4357 + components: + - name: Medical substation + type: MetaData + - pos: -81.5,22.5 + parent: 33 + type: Transform - uid: 5101 components: - name: Epistemics substation @@ -168076,13 +170691,6 @@ entities: - pos: -40.5,95.5 parent: 33 type: Transform - - uid: 11021 - components: - - name: Medical substation - type: MetaData - - pos: -84.5,17.5 - parent: 33 - type: Transform - uid: 13395 components: - name: Engineering Main substation @@ -168141,6 +170749,8 @@ entities: type: Transform - uid: 28145 components: + - name: satelite substation + type: MetaData - pos: -99.5,-79.5 parent: 33 type: Transform @@ -169146,6 +171756,17 @@ entities: nameSet: True id: Psychologist's Office type: SurveillanceCamera + - uid: 23946 + components: + - rot: 1.5707963267948966 rad + pos: -76.5,13.5 + parent: 33 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Virology + type: SurveillanceCamera - uid: 25630 components: - rot: -1.5707963267948966 rad @@ -169165,7 +171786,7 @@ entities: - setupAvailableNetworks: - SurveillanceCameraMedical nameSet: True - id: Virology + id: Cryogenics type: SurveillanceCamera - proto: SurveillanceCameraRouterCommand entities: @@ -169733,60 +172354,60 @@ entities: - SurveillanceCameraService id: Kitchen 3 type: SurveillanceCamera - - uid: 28063 + - uid: 28064 components: - - pos: 23.5,-16.5 + - rot: 3.141592653589793 rad + pos: 23.5,-20.5 parent: 33 type: Transform - setupAvailableNetworks: - SurveillanceCameraService nameSet: True - id: Cargo + id: Cargo Break Room type: SurveillanceCamera - - uid: 28064 +- proto: SurveillanceCameraSupply + entities: + - uid: 23785 components: - - rot: 3.141592653589793 rad - pos: 23.5,-20.5 + - pos: 24.5,-4.5 parent: 33 type: Transform - setupAvailableNetworks: - - SurveillanceCameraService + - SurveillanceCameraSupply nameSet: True - id: Cargo Break Room + id: Cargo Warehouse type: SurveillanceCamera - - uid: 28065 + - uid: 23787 components: - rot: 3.141592653589793 rad - pos: 10.5,-20.5 + pos: 29.5,-10.5 parent: 33 type: Transform - setupAvailableNetworks: - - SurveillanceCameraService + - SurveillanceCameraSupply nameSet: True - id: Mailroom + id: Cargo 2 type: SurveillanceCamera -- proto: SurveillanceCameraSupply - entities: - - uid: 23785 + - uid: 27909 components: - - pos: 24.5,-4.5 + - pos: 23.5,-16.5 parent: 33 type: Transform - setupAvailableNetworks: - SurveillanceCameraSupply nameSet: True - id: Cargo Warehouse + id: Cargo type: SurveillanceCamera - - uid: 23787 + - uid: 27912 components: - rot: 3.141592653589793 rad - pos: 29.5,-10.5 + pos: 10.5,-20.5 parent: 33 type: Transform - setupAvailableNetworks: - SurveillanceCameraSupply nameSet: True - id: Cargo 2 + id: Mailroom type: SurveillanceCamera - uid: 29581 components: @@ -170201,6 +172822,11 @@ entities: pos: -69.5,7.5 parent: 33 type: Transform + - uid: 3958 + components: + - pos: -74.5,12.5 + parent: 33 + type: Transform - uid: 3978 components: - pos: -40.5,15.5 @@ -170241,11 +172867,6 @@ entities: - pos: -85.5,-2.5 parent: 33 type: Transform - - uid: 4219 - components: - - pos: -85.5,-1.5 - parent: 33 - type: Transform - uid: 4220 components: - pos: -85.5,-0.5 @@ -170296,51 +172917,6 @@ entities: - pos: -41.5,21.5 parent: 33 type: Transform - - uid: 4332 - components: - - pos: -40.5,21.5 - parent: 33 - type: Transform - - uid: 4363 - components: - - pos: -78.5,16.5 - parent: 33 - type: Transform - - uid: 4364 - components: - - pos: -78.5,15.5 - parent: 33 - type: Transform - - uid: 4365 - components: - - pos: -78.5,14.5 - parent: 33 - type: Transform - - uid: 4366 - components: - - pos: -78.5,10.5 - parent: 33 - type: Transform - - uid: 4367 - components: - - pos: -78.5,11.5 - parent: 33 - type: Transform - - uid: 4368 - components: - - pos: -78.5,12.5 - parent: 33 - type: Transform - - uid: 4371 - components: - - pos: -73.5,16.5 - parent: 33 - type: Transform - - uid: 4372 - components: - - pos: -71.5,16.5 - parent: 33 - type: Transform - uid: 4951 components: - pos: -78.5,21.5 @@ -170351,12 +172927,6 @@ entities: - pos: -82.5,3.5 parent: 33 type: Transform - - uid: 5913 - components: - - rot: 1.5707963267948966 rad - pos: -80.5,-3.5 - parent: 33 - type: Transform - uid: 5958 components: - rot: 3.141592653589793 rad @@ -170590,6 +173160,11 @@ entities: - pos: -54.5,9.5 parent: 33 type: Transform + - uid: 12140 + components: + - pos: -74.5,10.5 + parent: 33 + type: Transform - uid: 12250 components: - pos: -39.5,-19.5 @@ -170666,6 +173241,11 @@ entities: pos: -26.5,35.5 parent: 33 type: Transform + - uid: 16161 + components: + - pos: -74.5,13.5 + parent: 33 + type: Transform - uid: 16998 components: - pos: -19.5,37.5 @@ -170838,6 +173418,11 @@ entities: pos: -3.5,84.5 parent: 33 type: Transform + - uid: 18530 + components: + - pos: -71.5,13.5 + parent: 33 + type: Transform - uid: 18533 components: - pos: -59.5,16.5 @@ -171243,12 +173828,22 @@ entities: - pos: -49.5,6.5 parent: 33 type: Transform + - uid: 4123 + components: + - pos: -84.5,22.5 + parent: 33 + type: Transform - uid: 4175 components: - rot: 3.141592653589793 rad pos: -74.5,4.5 parent: 33 type: Transform + - uid: 4358 + components: + - pos: -84.5,21.5 + parent: 33 + type: Transform - uid: 4497 components: - pos: -65.5,-4.5 @@ -171346,6 +173941,11 @@ entities: - pos: 47.5,9.5 parent: 33 type: Transform + - uid: 28667 + components: + - pos: -80.5,0.5 + parent: 33 + type: Transform - uid: 29551 components: - rot: -1.5707963267948966 rad @@ -171752,16 +174352,6 @@ entities: - pos: -29.5,0.5 parent: 33 type: Transform - - uid: 10561 - components: - - pos: -66.5,0.5 - parent: 33 - type: Transform - - uid: 10562 - components: - - pos: -66.5,5.5 - parent: 33 - type: Transform - uid: 10777 components: - pos: 13.5,41.5 @@ -171974,11 +174564,6 @@ entities: - pos: -33.5,71.5 parent: 33 type: Transform - - uid: 1308 - components: - - pos: -9.5,35.5 - parent: 33 - type: Transform - uid: 1487 components: - pos: -19.5,-3.5 @@ -172166,11 +174751,6 @@ entities: - pos: -61.5,0.5 parent: 33 type: Transform - - uid: 4349 - components: - - pos: -61.5,1.5 - parent: 33 - type: Transform - uid: 4544 components: - pos: -48.5,36.5 @@ -172480,6 +175060,11 @@ entities: pos: -78.5,5.5 parent: 33 type: Transform + - uid: 21547 + components: + - pos: -62.5,0.5 + parent: 33 + type: Transform - uid: 25288 components: - pos: 54.5,21.5 @@ -172571,6 +175156,21 @@ entities: - pos: 48.5,29.5 parent: 33 type: Transform + - uid: 30494 + components: + - pos: -76.5,12.5 + parent: 33 + type: Transform + - uid: 30495 + components: + - pos: -76.5,13.5 + parent: 33 + type: Transform + - uid: 30496 + components: + - pos: -76.5,14.5 + parent: 33 + type: Transform - proto: TableReinforcedGlass entities: - uid: 861 @@ -172610,11 +175210,6 @@ entities: - pos: -59.5,1.5 parent: 33 type: Transform - - uid: 4123 - components: - - pos: -69.5,5.5 - parent: 33 - type: Transform - uid: 4408 components: - pos: -83.5,-2.5 @@ -172689,6 +175284,11 @@ entities: pos: 0.5,57.5 parent: 33 type: Transform + - uid: 8923 + components: + - pos: -3.5,-9.5 + parent: 33 + type: Transform - uid: 9185 components: - pos: -60.5,22.5 @@ -172791,9 +175391,16 @@ entities: - pos: -64.5,-38.5 parent: 33 type: Transform - - uid: 18173 + - uid: 21511 components: - - pos: -69.5,0.5 + - rot: 1.5707963267948966 rad + pos: -78.5,16.5 + parent: 33 + type: Transform + - uid: 24486 + components: + - rot: 1.5707963267948966 rad + pos: -81.5,16.5 parent: 33 type: Transform - uid: 27075 @@ -173821,6 +176428,8 @@ entities: pos: 62.5,65.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - proto: TegCirculator entities: - uid: 25424 @@ -173996,26 +176605,6 @@ entities: type: ContainerContainer - proto: TintedWindow entities: - - uid: 3911 - components: - - pos: -67.5,6.5 - parent: 33 - type: Transform - - uid: 3912 - components: - - pos: -69.5,6.5 - parent: 33 - type: Transform - - uid: 3962 - components: - - pos: -68.5,6.5 - parent: 33 - type: Transform - - uid: 3963 - components: - - pos: -66.5,6.5 - parent: 33 - type: Transform - uid: 5187 components: - pos: -39.5,-5.5 @@ -174538,6 +177127,13 @@ entities: - pos: -44.393032,105.957924 parent: 33 type: Transform +- proto: TrainingBomb + entities: + - uid: 30669 + components: + - pos: -31.5,78.5 + parent: 33 + type: Transform - proto: TrashBananaPeel entities: - uid: 1773 @@ -174575,18 +177171,16 @@ entities: - pos: 11.5,68.5 parent: 33 type: Transform - - nextSignalLeft: True - type: TwoWayLever - linkedPorts: - 9856: + 9793: - Left: Forward - Right: Reverse - Middle: Off - 9793: + 9769: - Left: Forward - Right: Reverse - Middle: Off - 9769: + 10193: - Left: Forward - Right: Reverse - Middle: Off @@ -174618,7 +177212,7 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - 10193: + 24089: - Left: Forward - Right: Reverse - Middle: Off @@ -174745,6 +177339,16 @@ entities: - pos: -78.5,-47.5 parent: 33 type: Transform + - uid: 20894 + components: + - pos: -65.5,-16.5 + parent: 33 + type: Transform + - uid: 23938 + components: + - pos: -64.5,-16.5 + parent: 33 + type: Transform - proto: UniformPrinter entities: - uid: 8396 @@ -174832,9 +177436,9 @@ entities: type: Physics - proto: Vaccinator entities: - - uid: 4346 + - uid: 30497 components: - - pos: -62.5,0.5 + - pos: -80.5,12.5 parent: 33 type: Transform - proto: VehicleJanicartDestroyed @@ -175036,6 +177640,11 @@ entities: - pos: 14.5,12.5 parent: 33 type: Transform + - uid: 20782 + components: + - pos: -61.5,3.5 + parent: 33 + type: Transform - proto: VendingMachineCigs entities: - uid: 2406 @@ -175149,6 +177758,15 @@ entities: - pos: 0.5,24.5 parent: 33 type: Transform +- proto: VendingMachineCourierDrobe + entities: + - uid: 8154 + components: + - flags: SessionSpecific + type: MetaData + - pos: 7.5,-23.5 + parent: 33 + type: Transform - proto: VendingMachineDinnerware entities: - uid: 2021 @@ -175205,11 +177823,9 @@ entities: - pos: 4.5,36.5 parent: 33 type: Transform - - uid: 27095 + - uid: 30579 components: - - flags: SessionSpecific - type: MetaData - - pos: -3.5,-9.5 + - pos: -1.5,-5.5 parent: 33 type: Transform - proto: VendingMachineEngiDrobe @@ -175296,15 +177912,6 @@ entities: - pos: 14.5,4.5 parent: 33 type: Transform -- proto: VendingMachineMailDrobe - entities: - - uid: 8154 - components: - - flags: SessionSpecific - type: MetaData - - pos: 7.5,-23.5 - parent: 33 - type: Transform - proto: VendingMachineMedical entities: - uid: 4264 @@ -175384,16 +177991,16 @@ entities: type: Transform - proto: VendingMachineRoboDrobe entities: - - uid: 28723 + - uid: 21535 components: - - pos: -63.5,-10.5 + - pos: -76.5,-0.5 parent: 33 type: Transform - proto: VendingMachineRobotics entities: - - uid: 28667 + - uid: 4414 components: - - pos: -63.5,-11.5 + - pos: -77.5,-0.5 parent: 33 type: Transform - proto: VendingMachineSalvage @@ -175455,15 +178062,6 @@ entities: - pos: -50.5,46.5 parent: 33 type: Transform -- proto: VendingMachineSmartFridge - entities: - - uid: 3920 - components: - - flags: SessionSpecific - type: MetaData - - pos: -50.5,5.5 - parent: 33 - type: Transform - proto: VendingMachineSovietSoda entities: - uid: 8603 @@ -175541,22 +178139,25 @@ entities: - pos: -3.5,19.5 parent: 33 type: Transform +- proto: VendingMachineVendomat + entities: + - uid: 22813 + components: + - pos: -63.5,-10.5 + parent: 33 + type: Transform - proto: VendingMachineViroDrobe entities: - - uid: 4088 + - uid: 30493 components: - - flags: SessionSpecific - type: MetaData - - pos: -61.5,3.5 + - pos: -76.5,11.5 parent: 33 type: Transform - proto: VendingMachineWallMedical entities: - - uid: 9290 + - uid: 30622 components: - - flags: SessionSpecific - type: MetaData - - pos: -50.5,37.5 + - pos: -53.5,37.5 parent: 33 type: Transform - proto: VendingMachineYouTool @@ -180200,11 +182801,26 @@ entities: - pos: -62.5,13.5 parent: 33 type: Transform + - uid: 3912 + components: + - pos: 3.5,44.5 + parent: 33 + type: Transform - uid: 3916 components: - pos: -56.5,4.5 parent: 33 type: Transform + - uid: 3962 + components: + - pos: -75.5,16.5 + parent: 33 + type: Transform + - uid: 3963 + components: + - pos: -75.5,13.5 + parent: 33 + type: Transform - uid: 3964 components: - pos: -44.5,4.5 @@ -180282,12 +182898,12 @@ entities: type: Transform - uid: 3999 components: - - pos: -70.5,1.5 + - pos: -75.5,15.5 parent: 33 type: Transform - uid: 4000 components: - - pos: -70.5,2.5 + - pos: -75.5,12.5 parent: 33 type: Transform - uid: 4001 @@ -180315,6 +182931,11 @@ entities: - pos: -58.5,4.5 parent: 33 type: Transform + - uid: 4018 + components: + - pos: -75.5,11.5 + parent: 33 + type: Transform - uid: 4019 components: - pos: -60.5,3.5 @@ -180322,7 +182943,7 @@ entities: type: Transform - uid: 4021 components: - - pos: -60.5,1.5 + - pos: -75.5,10.5 parent: 33 type: Transform - uid: 4022 @@ -180425,6 +183046,11 @@ entities: - pos: -62.5,6.5 parent: 33 type: Transform + - uid: 4122 + components: + - pos: -81.5,23.5 + parent: 33 + type: Transform - uid: 4126 components: - pos: -60.5,4.5 @@ -180510,6 +183136,16 @@ entities: - pos: -79.5,0.5 parent: 33 type: Transform + - uid: 4193 + components: + - pos: -70.5,2.5 + parent: 33 + type: Transform + - uid: 4195 + components: + - pos: -70.5,1.5 + parent: 33 + type: Transform - uid: 4198 components: - pos: -78.5,0.5 @@ -180565,6 +183201,21 @@ entities: - pos: 28.5,-25.5 parent: 33 type: Transform + - uid: 4336 + components: + - pos: -80.5,23.5 + parent: 33 + type: Transform + - uid: 4362 + components: + - pos: -81.5,11.5 + parent: 33 + type: Transform + - uid: 4369 + components: + - pos: -74.5,17.5 + parent: 33 + type: Transform - uid: 4424 components: - pos: -56.5,-18.5 @@ -181350,16 +184001,6 @@ entities: - pos: -82.5,17.5 parent: 33 type: Transform - - uid: 5542 - components: - - pos: -82.5,18.5 - parent: 33 - type: Transform - - uid: 5543 - components: - - pos: -82.5,19.5 - parent: 33 - type: Transform - uid: 5576 components: - pos: -58.5,51.5 @@ -182025,11 +184666,6 @@ entities: - pos: 29.5,-23.5 parent: 33 type: Transform - - uid: 6698 - components: - - pos: 59.5,72.5 - parent: 33 - type: Transform - uid: 6710 components: - pos: -17.5,91.5 @@ -182200,12 +184836,6 @@ entities: - pos: -55.5,-23.5 parent: 33 type: Transform - - uid: 6953 - components: - - rot: 1.5707963267948966 rad - pos: 59.5,71.5 - parent: 33 - type: Transform - uid: 6955 components: - pos: 39.5,28.5 @@ -182368,8 +184998,7 @@ entities: type: Transform - uid: 7010 components: - - rot: 1.5707963267948966 rad - pos: 68.5,69.5 + - pos: 68.5,69.5 parent: 33 type: Transform - uid: 7012 @@ -182502,11 +185131,6 @@ entities: - pos: 43.5,51.5 parent: 33 type: Transform - - uid: 7103 - components: - - pos: 42.5,51.5 - parent: 33 - type: Transform - uid: 7104 components: - pos: 41.5,51.5 @@ -182957,34 +185581,24 @@ entities: - pos: 70.5,65.5 parent: 33 type: Transform - - uid: 7922 - components: - - rot: 1.5707963267948966 rad - pos: 59.5,70.5 - parent: 33 - type: Transform - uid: 7926 components: - - rot: -1.5707963267948966 rad - pos: 62.5,22.5 + - pos: 62.5,22.5 parent: 33 type: Transform - uid: 7927 components: - - rot: -1.5707963267948966 rad - pos: 60.5,22.5 + - pos: 60.5,22.5 parent: 33 type: Transform - uid: 7928 components: - - rot: -1.5707963267948966 rad - pos: 59.5,22.5 + - pos: 59.5,22.5 parent: 33 type: Transform - uid: 7955 components: - - rot: -1.5707963267948966 rad - pos: 59.5,28.5 + - pos: 59.5,28.5 parent: 33 type: Transform - uid: 7958 @@ -183372,6 +185986,11 @@ entities: - pos: -53.5,-23.5 parent: 33 type: Transform + - uid: 9377 + components: + - pos: -82.5,12.5 + parent: 33 + type: Transform - uid: 9410 components: - pos: -18.5,91.5 @@ -184087,11 +186706,6 @@ entities: - pos: -85.5,16.5 parent: 33 type: Transform - - uid: 10638 - components: - - pos: -84.5,16.5 - parent: 33 - type: Transform - uid: 10651 components: - pos: -87.5,27.5 @@ -184507,6 +187121,11 @@ entities: - pos: 13.5,7.5 parent: 33 type: Transform + - uid: 12145 + components: + - pos: -83.5,23.5 + parent: 33 + type: Transform - uid: 12391 components: - pos: -10.5,-41.5 @@ -184594,8 +187213,7 @@ entities: type: Transform - uid: 12651 components: - - rot: -1.5707963267948966 rad - pos: 62.5,28.5 + - pos: 62.5,28.5 parent: 33 type: Transform - uid: 12708 @@ -184683,6 +187301,11 @@ entities: - pos: -70.5,10.5 parent: 33 type: Transform + - uid: 13408 + components: + - pos: 42.5,51.5 + parent: 33 + type: Transform - uid: 13517 components: - pos: 20.5,8.5 @@ -184748,11 +187371,6 @@ entities: - pos: -20.5,45.5 parent: 33 type: Transform - - uid: 14272 - components: - - pos: 3.5,44.5 - parent: 33 - type: Transform - uid: 14274 components: - pos: 3.5,47.5 @@ -184793,6 +187411,16 @@ entities: - pos: -68.5,13.5 parent: 33 type: Transform + - uid: 16303 + components: + - pos: -82.5,23.5 + parent: 33 + type: Transform + - uid: 16341 + components: + - pos: -81.5,17.5 + parent: 33 + type: Transform - uid: 16381 components: - pos: -22.5,-13.5 @@ -184818,6 +187446,11 @@ entities: - pos: -89.5,-8.5 parent: 33 type: Transform + - uid: 16503 + components: + - pos: -80.5,17.5 + parent: 33 + type: Transform - uid: 16562 components: - pos: -28.5,98.5 @@ -184835,14 +187468,12 @@ entities: type: Transform - uid: 16595 components: - - rot: -1.5707963267948966 rad - pos: 62.5,27.5 + - pos: 62.5,27.5 parent: 33 type: Transform - uid: 16596 components: - - rot: -1.5707963267948966 rad - pos: 62.5,26.5 + - pos: 62.5,26.5 parent: 33 type: Transform - uid: 16608 @@ -184852,8 +187483,7 @@ entities: type: Transform - uid: 16619 components: - - rot: -1.5707963267948966 rad - pos: 62.5,25.5 + - pos: 62.5,25.5 parent: 33 type: Transform - uid: 16632 @@ -184938,8 +187568,7 @@ entities: type: Transform - uid: 17103 components: - - rot: -1.5707963267948966 rad - pos: 62.5,24.5 + - pos: 62.5,24.5 parent: 33 type: Transform - uid: 17104 @@ -185029,8 +187658,7 @@ entities: type: Transform - uid: 17121 components: - - rot: -1.5707963267948966 rad - pos: 62.5,23.5 + - pos: 62.5,23.5 parent: 33 type: Transform - uid: 17204 @@ -185050,8 +187678,7 @@ entities: type: Transform - uid: 17234 components: - - rot: -1.5707963267948966 rad - pos: 61.5,22.5 + - pos: 61.5,22.5 parent: 33 type: Transform - uid: 17262 @@ -186149,6 +188776,11 @@ entities: - pos: 38.5,-12.5 parent: 33 type: Transform + - uid: 18908 + components: + - pos: -75.5,14.5 + parent: 33 + type: Transform - uid: 19300 components: - pos: -54.5,58.5 @@ -186156,8 +188788,7 @@ entities: type: Transform - uid: 19392 components: - - rot: -1.5707963267948966 rad - pos: 60.5,28.5 + - pos: 60.5,28.5 parent: 33 type: Transform - uid: 19457 @@ -186180,6 +188811,21 @@ entities: - pos: -80.5,11.5 parent: 33 type: Transform + - uid: 20878 + components: + - pos: -82.5,15.5 + parent: 33 + type: Transform + - uid: 21512 + components: + - pos: -82.5,14.5 + parent: 33 + type: Transform + - uid: 21534 + components: + - pos: -75.5,17.5 + parent: 33 + type: Transform - uid: 21921 components: - pos: 32.5,-12.5 @@ -186300,6 +188946,11 @@ entities: - pos: -67.5,-51.5 parent: 33 type: Transform + - uid: 23949 + components: + - pos: -84.5,20.5 + parent: 33 + type: Transform - uid: 24138 components: - pos: -89.5,-12.5 @@ -186310,11 +188961,26 @@ entities: - pos: -90.5,-12.5 parent: 33 type: Transform + - uid: 24178 + components: + - pos: -78.5,17.5 + parent: 33 + type: Transform + - uid: 24227 + components: + - pos: -77.5,17.5 + parent: 33 + type: Transform - uid: 24405 components: - pos: -81.5,-41.5 parent: 33 type: Transform + - uid: 24466 + components: + - pos: -76.5,17.5 + parent: 33 + type: Transform - uid: 24508 components: - pos: 31.5,16.5 @@ -186395,11 +189061,31 @@ entities: - pos: -86.5,-32.5 parent: 33 type: Transform + - uid: 25624 + components: + - pos: -84.5,23.5 + parent: 33 + type: Transform + - uid: 25625 + components: + - pos: -75.5,9.5 + parent: 33 + type: Transform + - uid: 25629 + components: + - pos: -79.5,9.5 + parent: 33 + type: Transform - uid: 25781 components: - pos: 54.5,-17.5 parent: 33 type: Transform + - uid: 25867 + components: + - pos: -79.5,10.5 + parent: 33 + type: Transform - uid: 25905 components: - pos: 47.5,78.5 @@ -186425,6 +189111,11 @@ entities: - pos: 59.5,76.5 parent: 33 type: Transform + - uid: 25953 + components: + - pos: -79.5,11.5 + parent: 33 + type: Transform - uid: 25969 components: - pos: 58.5,-18.5 @@ -186625,12 +189316,6 @@ entities: - pos: 58.5,20.5 parent: 33 type: Transform - - uid: 27016 - components: - - rot: 1.5707963267948966 rad - pos: 57.5,75.5 - parent: 33 - type: Transform - uid: 27043 components: - pos: 58.5,17.5 @@ -186691,16 +189376,6 @@ entities: - pos: 48.5,15.5 parent: 33 type: Transform - - uid: 27320 - components: - - pos: -84.5,19.5 - parent: 33 - type: Transform - - uid: 27366 - components: - - pos: -83.5,19.5 - parent: 33 - type: Transform - uid: 27385 components: - pos: 0.5,66.5 @@ -186821,6 +189496,11 @@ entities: - pos: 49.5,21.5 parent: 33 type: Transform + - uid: 28068 + components: + - pos: -79.5,17.5 + parent: 33 + type: Transform - uid: 28095 components: - pos: -101.5,-73.5 @@ -186978,8 +189658,7 @@ entities: type: Transform - uid: 28620 components: - - rot: -1.5707963267948966 rad - pos: 61.5,28.5 + - pos: 61.5,28.5 parent: 33 type: Transform - uid: 28633 @@ -186987,11 +189666,6 @@ entities: - pos: 44.5,72.5 parent: 33 type: Transform - - uid: 28644 - components: - - pos: 59.5,69.5 - parent: 33 - type: Transform - uid: 28650 components: - pos: 66.5,58.5 @@ -187207,6 +189881,21 @@ entities: - pos: 52.5,-24.5 parent: 33 type: Transform + - uid: 29637 + components: + - pos: 61.5,76.5 + parent: 33 + type: Transform + - uid: 29669 + components: + - pos: 61.5,69.5 + parent: 33 + type: Transform + - uid: 29685 + components: + - pos: 60.5,76.5 + parent: 33 + type: Transform - uid: 29696 components: - pos: 69.5,69.5 @@ -187257,6 +189946,16 @@ entities: - pos: -31.5,96.5 parent: 33 type: Transform + - uid: 30469 + components: + - pos: 56.5,75.5 + parent: 33 + type: Transform + - uid: 30470 + components: + - pos: 56.5,76.5 + parent: 33 + type: Transform - proto: WallSolid entities: - uid: 21 @@ -188659,36 +191358,11 @@ entities: - pos: 29.5,0.5 parent: 33 type: Transform - - uid: 1747 - components: - - pos: -78.5,17.5 - parent: 33 - type: Transform - - uid: 1748 - components: - - pos: -77.5,17.5 - parent: 33 - type: Transform - - uid: 1749 - components: - - pos: -76.5,17.5 - parent: 33 - type: Transform - - uid: 1751 - components: - - pos: -74.5,17.5 - parent: 33 - type: Transform - uid: 1752 components: - pos: -73.5,17.5 parent: 33 type: Transform - - uid: 1753 - components: - - pos: -72.5,17.5 - parent: 33 - type: Transform - uid: 1754 components: - pos: -71.5,17.5 @@ -188719,26 +191393,6 @@ entities: - pos: -66.5,17.5 parent: 33 type: Transform - - uid: 1762 - components: - - pos: -78.5,9.5 - parent: 33 - type: Transform - - uid: 1763 - components: - - pos: -77.5,9.5 - parent: 33 - type: Transform - - uid: 1764 - components: - - pos: -76.5,9.5 - parent: 33 - type: Transform - - uid: 1765 - components: - - pos: -75.5,9.5 - parent: 33 - type: Transform - uid: 1766 components: - pos: -74.5,9.5 @@ -188759,11 +191413,6 @@ entities: - pos: -61.5,13.5 parent: 33 type: Transform - - uid: 1772 - components: - - pos: -79.5,9.5 - parent: 33 - type: Transform - uid: 1789 components: - pos: 20.5,-4.5 @@ -189674,46 +192323,6 @@ entities: - pos: 4.5,59.5 parent: 33 type: Transform - - uid: 3575 - components: - - pos: -79.5,10.5 - parent: 33 - type: Transform - - uid: 3576 - components: - - pos: -79.5,11.5 - parent: 33 - type: Transform - - uid: 3577 - components: - - pos: -79.5,12.5 - parent: 33 - type: Transform - - uid: 3578 - components: - - pos: -79.5,13.5 - parent: 33 - type: Transform - - uid: 3579 - components: - - pos: -79.5,14.5 - parent: 33 - type: Transform - - uid: 3582 - components: - - pos: -79.5,15.5 - parent: 33 - type: Transform - - uid: 3583 - components: - - pos: -79.5,16.5 - parent: 33 - type: Transform - - uid: 3584 - components: - - pos: -79.5,17.5 - parent: 33 - type: Transform - uid: 3587 components: - pos: -13.5,48.5 @@ -189824,11 +192433,6 @@ entities: - pos: 25.5,-9.5 parent: 33 type: Transform - - uid: 4069 - components: - - pos: 26.5,-9.5 - parent: 33 - type: Transform - uid: 4071 components: - pos: -47.5,-10.5 @@ -189849,6 +192453,11 @@ entities: - pos: -70.5,-4.5 parent: 33 type: Transform + - uid: 4120 + components: + - pos: -78.5,-4.5 + parent: 33 + type: Transform - uid: 4128 components: - pos: -75.5,-25.5 @@ -190434,11 +193043,6 @@ entities: - pos: -77.5,-4.5 parent: 33 type: Transform - - uid: 5108 - components: - - pos: -78.5,-4.5 - parent: 33 - type: Transform - uid: 5109 components: - pos: -75.5,-8.5 @@ -192304,6 +194908,11 @@ entities: - pos: 33.5,-24.5 parent: 33 type: Transform + - uid: 17456 + components: + - pos: 26.5,-9.5 + parent: 33 + type: Transform - uid: 17783 components: - pos: 16.5,66.5 @@ -193159,11 +195768,6 @@ entities: - pos: -21.5,36.5 parent: 33 type: Transform - - uid: 9378 - components: - - pos: -15.5,6.5 - parent: 33 - type: Transform - proto: WardrobeBotanistFilled entities: - uid: 3195 @@ -193308,6 +195912,13 @@ entities: - pos: -28.5,77.5 parent: 33 type: Transform +- proto: WardrobeRoboticsFilled + entities: + - uid: 5108 + components: + - pos: -78.5,-0.5 + parent: 33 + type: Transform - proto: WardrobeScienceFilled entities: - uid: 4616 @@ -193327,13 +195938,6 @@ entities: - pos: -29.5,57.5 parent: 33 type: Transform -- proto: WardrobeWhiteFilled - entities: - - uid: 9377 - components: - - pos: -15.5,5.5 - parent: 33 - type: Transform - proto: WardrobeYellowFilled entities: - uid: 24353 @@ -193698,6 +196302,13 @@ entities: type: WarpPoint - proto: WarpPointBombing entities: + - uid: 3097 + components: + - pos: -72.5,13.5 + parent: 33 + type: Transform + - location: Morgue + type: WarpPoint - uid: 29584 components: - pos: -59.5,-12.5 @@ -193726,13 +196337,6 @@ entities: type: Transform - location: Interrogation Room type: WarpPoint - - uid: 30357 - components: - - pos: -75.5,13.5 - parent: 33 - type: Transform - - location: Morgue - type: WarpPoint - proto: WaterCooler entities: - uid: 635 @@ -193882,26 +196486,36 @@ entities: - pos: 37.5,69.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 10187 components: - pos: 56.5,71.5 parent: 33 type: Transform - - uid: 28673 - components: - - pos: 58.5,75.5 - parent: 33 - type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 29714 components: - pos: 68.5,64.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice - uid: 29721 components: - pos: 64.5,64.5 parent: 33 type: Transform + - joinedGrid: 33 + type: AtmosDevice + - uid: 30467 + components: + - pos: 61.5,73.5 + parent: 33 + type: Transform + - joinedGrid: 33 + type: AtmosDevice - proto: WeaponCapacitorRecharger entities: - uid: 141 @@ -194065,6 +196679,26 @@ entities: pos: -0.5032538,69.58407 parent: 33 type: Transform +- proto: WeaponRifleBB + entities: + - uid: 30612 + components: + - rot: 1.5707963267948966 rad + pos: -42.657722,54.602596 + parent: 33 + type: Transform + - uid: 30613 + components: + - rot: 1.5707963267948966 rad + pos: -42.501472,54.498356 + parent: 33 + type: Transform + - uid: 30614 + components: + - rot: 1.5707963267948966 rad + pos: -43.470222,54.52963 + parent: 33 + type: Transform - proto: WeaponRifleLecter entities: - uid: 9784 @@ -194459,6 +197093,20 @@ entities: pos: -15.5,34.5 parent: 33 type: Transform +- proto: WindoorKitchenHydroponicsLocked + entities: + - uid: 27095 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,43.5 + parent: 33 + type: Transform + - uid: 27102 + components: + - rot: 3.141592653589793 rad + pos: -1.5,41.5 + parent: 33 + type: Transform - proto: WindoorSecure entities: - uid: 649 @@ -194558,16 +197206,16 @@ entities: - pos: -68.5,9.5 parent: 33 type: Transform - - uid: 4522 + - uid: 4361 components: - rot: 3.141592653589793 rad - pos: -65.5,-4.5 + pos: -83.5,12.5 parent: 33 type: Transform - - uid: 6089 + - uid: 4522 components: - rot: 3.141592653589793 rad - pos: 32.5,44.5 + pos: -65.5,-4.5 parent: 33 type: Transform - uid: 6411 @@ -194582,17 +197230,6 @@ entities: pos: 13.5,16.5 parent: 33 type: Transform - - uid: 6901 - components: - - pos: 28.5,50.5 - parent: 33 - type: Transform - - uid: 8062 - components: - - rot: 3.141592653589793 rad - pos: 25.5,51.5 - parent: 33 - type: Transform - uid: 9868 components: - rot: 3.141592653589793 rad @@ -194697,22 +197334,6 @@ entities: pos: -0.5,67.5 parent: 33 type: Transform -- proto: WindoorSecureAtmosphericsLocked - entities: - - uid: 28611 - components: - - rot: 1.5707963267948966 rad - pos: 59.5,74.5 - parent: 33 - type: Transform -- proto: WindoorSecureBrigLocked - entities: - - uid: 2920 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,30.5 - parent: 33 - type: Transform - proto: WindoorSecureCargoLocked entities: - uid: 85 @@ -194751,18 +197372,6 @@ entities: type: Transform - proto: WindoorSecureCommandLocked entities: - - uid: 2666 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,11.5 - parent: 33 - type: Transform - - uid: 2667 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,10.5 - parent: 33 - type: Transform - uid: 4440 components: - rot: 3.141592653589793 rad @@ -194806,6 +197415,12 @@ entities: - pos: -20.5,-0.5 parent: 33 type: Transform + - uid: 25919 + components: + - rot: 1.5707963267948966 rad + pos: 61.5,74.5 + parent: 33 + type: Transform - proto: WindoorSecureExternalLocked entities: - uid: 23823 @@ -194814,36 +197429,32 @@ entities: pos: -98.5,-31.5 parent: 33 type: Transform -- proto: WindoorSecureKitchenLocked +- proto: WindoorSecureHeadOfPersonnelLocked entities: - - uid: 2715 + - uid: 25008 components: - - rot: 3.141592653589793 rad - pos: -1.5,25.5 + - rot: -1.5707963267948966 rad + pos: -28.5,11.5 parent: 33 type: Transform - - uid: 2981 + - uid: 27085 components: - - rot: 1.5707963267948966 rad - pos: -9.5,33.5 + - rot: -1.5707963267948966 rad + pos: -28.5,10.5 parent: 33 type: Transform - - uid: 3006 +- proto: WindoorSecureKitchenLocked + entities: + - uid: 2715 components: - - rot: 1.5707963267948966 rad - pos: -9.5,35.5 + - rot: 3.141592653589793 rad + pos: -1.5,25.5 parent: 33 type: Transform - - uid: 3121 + - uid: 2981 components: - rot: 1.5707963267948966 rad - pos: -3.5,43.5 - parent: 33 - type: Transform - - uid: 3125 - components: - - rot: 3.141592653589793 rad - pos: -1.5,41.5 + pos: -9.5,33.5 parent: 33 type: Transform - uid: 4540 @@ -194878,16 +197489,22 @@ entities: pos: -68.5,9.5 parent: 33 type: Transform - - uid: 4336 + - uid: 4360 components: - - rot: -1.5707963267948966 rad - pos: -67.5,1.5 + - rot: 3.141592653589793 rad + pos: -77.5,14.5 parent: 33 type: Transform - - uid: 4344 + - uid: 25499 components: - - rot: -1.5707963267948966 rad - pos: -67.5,4.5 + - rot: 3.141592653589793 rad + pos: -80.5,14.5 + parent: 33 + type: Transform + - uid: 30489 + components: + - rot: 3.141592653589793 rad + pos: -77.5,11.5 parent: 33 type: Transform - proto: WindoorSecureScienceLocked @@ -194921,6 +197538,14 @@ entities: pos: -58.5,-6.5 parent: 33 type: Transform +- proto: WindoorSecureSecurityLawyerLocked + entities: + - uid: 2920 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,30.5 + parent: 33 + type: Transform - proto: WindoorSecureSecurityLocked entities: - uid: 28 @@ -195091,6 +197716,23 @@ entities: pos: -2.5,16.5 parent: 33 type: Transform + - uid: 10839 + components: + - rot: 3.141592653589793 rad + pos: 32.5,44.5 + parent: 33 + type: Transform + - uid: 11118 + components: + - pos: 28.5,50.5 + parent: 33 + type: Transform + - uid: 11119 + components: + - rot: 3.141592653589793 rad + pos: 25.5,51.5 + parent: 33 + type: Transform - proto: Window entities: - uid: 166 @@ -195388,11 +198030,6 @@ entities: - pos: -79.5,-2.5 parent: 33 type: Transform - - uid: 4195 - components: - - pos: -79.5,-3.5 - parent: 33 - type: Transform - uid: 4196 components: - pos: -79.5,-1.5 @@ -196179,20 +198816,6 @@ entities: pos: -78.5,-34.5 parent: 33 type: Transform -- proto: WindowFrostedDirectional - entities: - - uid: 4113 - components: - - rot: 3.141592653589793 rad - pos: -68.5,2.5 - parent: 33 - type: Transform - - uid: 4120 - components: - - rot: 3.141592653589793 rad - pos: -69.5,2.5 - parent: 33 - type: Transform - proto: WindowReinforcedDirectional entities: - uid: 75 @@ -196650,16 +199273,10 @@ entities: pos: -40.5,13.5 parent: 33 type: Transform - - uid: 4116 - components: - - rot: -1.5707963267948966 rad - pos: -67.5,2.5 - parent: 33 - type: Transform - - uid: 4118 + - uid: 3959 components: - - rot: -1.5707963267948966 rad - pos: -67.5,0.5 + - rot: 3.141592653589793 rad + pos: -76.5,14.5 parent: 33 type: Transform - uid: 4202 @@ -196668,18 +199285,6 @@ entities: pos: -76.5,2.5 parent: 33 type: Transform - - uid: 4337 - components: - - rot: -1.5707963267948966 rad - pos: -67.5,5.5 - parent: 33 - type: Transform - - uid: 4338 - components: - - rot: -1.5707963267948966 rad - pos: -67.5,3.5 - parent: 33 - type: Transform - uid: 4339 components: - rot: 3.141592653589793 rad @@ -197279,6 +199884,12 @@ entities: - pos: -24.5,91.5 parent: 33 type: Transform + - uid: 12923 + components: + - rot: 3.141592653589793 rad + pos: -79.5,14.5 + parent: 33 + type: Transform - uid: 12968 components: - rot: 1.5707963267948966 rad @@ -197290,6 +199901,12 @@ entities: - pos: 16.5,11.5 parent: 33 type: Transform + - uid: 16173 + components: + - rot: 3.141592653589793 rad + pos: -81.5,14.5 + parent: 33 + type: Transform - uid: 16564 components: - rot: 1.5707963267948966 rad @@ -197384,6 +200001,12 @@ entities: pos: 0.5,-8.5 parent: 33 type: Transform + - uid: 27320 + components: + - rot: 3.141592653589793 rad + pos: -78.5,14.5 + parent: 33 + type: Transform - uid: 27460 components: - rot: 3.141592653589793 rad @@ -197412,6 +200035,18 @@ entities: - pos: -21.5,70.5 parent: 33 type: Transform + - uid: 30487 + components: + - rot: 3.141592653589793 rad + pos: -78.5,11.5 + parent: 33 + type: Transform + - uid: 30488 + components: + - rot: 3.141592653589793 rad + pos: -76.5,11.5 + parent: 33 + type: Transform - proto: WindowTintedDirectional entities: - uid: 799 @@ -197450,6 +200085,12 @@ entities: pos: 0.5,44.5 parent: 33 type: Transform + - uid: 1749 + components: + - rot: 1.5707963267948966 rad + pos: -79.5,16.5 + parent: 33 + type: Transform - uid: 2433 components: - rot: 1.5707963267948966 rad @@ -197517,6 +200158,12 @@ entities: pos: 49.5,17.5 parent: 33 type: Transform + - uid: 12716 + components: + - rot: 1.5707963267948966 rad + pos: -79.5,15.5 + parent: 33 + type: Transform - uid: 12999 components: - rot: -1.5707963267948966 rad diff --git a/Resources/Migrations/deltaMigrations.yml b/Resources/Migrations/deltaMigrations.yml new file mode 100644 index 0000000000..3efa662b64 --- /dev/null +++ b/Resources/Migrations/deltaMigrations.yml @@ -0,0 +1,85 @@ +# 2023-09-29 +PosterContrabandSMSyndie: PosterContrabandSafetyMothSyndie +PosterLegitSMPoisoning: PosterLegitSafetyMothPoisoning +PosterLegitSMBoH: PosterLegitSafetyMothBoH +PosterLegitSMHardhats: PosterLegitSafetyMothHardhat +PosterLegitSMFires: PosterLegitSafetyMothFires +PosterLegitSMPiping: PosterLegitSafetyMothPiping +PosterLegitSMMeth: PosterLegitSafetyMothMeth +PosterLegitSMEpi: PosterLegitSafetyMothEpi +PosterLegitSMPills: PosterLegitSafetyMothPills +PosterLegitSMAnomalies: PosterLegitSafetyMothDelam +PosterLegitSMGlimmer: PosterLegitSafetyMothGlimmer +EngineeringTechFab: Autolathe +EngineeringTechFabCircuitboard: AutolatheMachineCircuitboard +ScienceTechFab: Protolathe +ScienceTechFabCircuitboard: ProtolatheMachineCircuitboard +ServiceTechFab: Autolathe +ServiceTechFabCircuitboard: AutolatheMachineCircuitboard + +# 2023-10-05 +FoodMothTomatoSauce: null +LockerEpistemicsFilled: LockerScienceFilled +LockerMystagogueFilled: LockerResearchDirectorFilled +LockerEpistemics: LockerScientist +LockerMystagogue: LockerResearchDirector +HyperlinkBookAlerts: BookRandom +HyperlinkBookAtmos: BookAtmosDistro +HyperlinkBookBartending: BookBartendersManual +HyperlinkBookBotany: BookLeafLoversSecret +HyperlinkBookChemistry: BookChemicalCompendium +HyperlinkBookCooking: BookChefGaming +HyperlinkBookGlimmer: BookScientistsGuidebook +HyperlinkBookHacking: BookEngineersHandbook +HyperlinkBookMedical: BookMedicalReferenceBook +HyperlinkBookPower: BookEngineersHandbook +HyperlinkBookProcedure: BookRandom +HyperlinkBookShuttle: BookRandom +HyperlinkBookSpaceLaw: BookSecurity +HyperlinkBookSupernanny: BookHowToSurvive +SpawnPointCataloguer: SpawnPointLibrarian +SpawnPointCyborg: SpawnPointBorg +SpawnPointMedicalCyborg: null +SpawnPointEpistemologist: SpawnPointScientist +SpawnPointMystagogue: SpawnPointResearchDirector +SpawnPointSalvageTechnician: SpawnPointSalvageSpecialist +SpawnPointValet: SpawnPointServiceWorker +VendingMachineEpiDrobe: VendingMachineSciDrobe +PlushieMoffRandom: PlushieMothRandom +PlushieMoffbar: PlushieMothBartender +PlushieMoffsician: PlushieMothMusician +PlushieMoff: PlushieMoth +ArachneWeb: SpiderWeb +PowerCellBluespace: PowerCellHigh +CrateMedicalDefib: CrateMedical +WeaponShotgunEnforcerNonLethal: WeaponShotgunEnforcerRubber + +# 2023-10-06 +FoodMealTaco: FoodMealSoftTaco +FoodTinBeansOpen: FoodTinBeans +FoodBreadMoldy: FoodBreadMoldySlice +FoodMeatPatty: FoodMeatMeatball +ClothingHeadHoodMystic: ClothingHeadHoodMysta + +# 2023-11-07 +VendingMachineMailDrobe: VendingMachineCourierDrobe + +#Delta V temporary changes. Remove When items are added. +MetempsychoticMachine: CloningPod +MetempsychoticMachineCircuitboard: CloningPodMachineCircuitboard +ComputerShipyard: ComputerBroken +ShipyardComputerCircuitboard: null +SpawnMobGolemCult: null +ShogiBoard: CheckerBoard + +# 2023-11-21 +AirlockBrigLocked: AirlockSecurityLawyerLocked +AirlockBrigGlassLocked: AirlockSecurityLawyerGlassLocked +WindoorSecureBrigLocked: WindoorSecureSecurityLawyerLocked + +#Delta V Optional: Remove "#" for specific maps. +#AsteroidRock: AsteroidAltRock +#AsteroidRockMining: AsteroidAltRockMining + +# 2023-12-16 +PlushieLizardMirrored: PlushieLizard diff --git a/Resources/Migrations/migration.yml b/Resources/Migrations/migration.yml new file mode 100644 index 0000000000..17b397ce6d --- /dev/null +++ b/Resources/Migrations/migration.yml @@ -0,0 +1,104 @@ +# This is a basic dictionary that maps old entity prototype ids to new ids. This only works for entity prototypes, and +# is intended to allow maps to load without having to manually edit them. An empty or "null" string results in the +# entity getting deleted. + +# e.g., you can swap all walls with windows and delete all tables by adding lines like: +# +# Window: WallSolid +# WallSolid: Window +# Table: null + +# 2023-07-03 +ClothingHeadHelmetHelmet: ClothingHeadHelmetBasic +ClothingHeadHelmetHelmetOld: ClothingHeadHelmetBasic + +# 2023-07-04 +# Bulletproof armor is almost statistically identical to kevlar, however, before this kevlar armor was the closest thing there was to "basic" armor. It makes the most sense to replace it with this. +ClothingOuterVestKevlar: ClothingOuterArmorBasic + +# 2023-07-10 +Intercom: IntercomCommon + +# 2023-07-12 +ToyAssistant: ToyFigurinePassenger + +# 2023-07-20 +ForensicGloves: ClothingHandsGlovesForensic + +# 2023-07-24 +ClothingEyesGlassesBeer: ClothingEyesHudBeer + +# 2023-08-01 +lantern: Lantern +lanternextrabright: LanternFlash + +# 2023-08-04 +BoxMagazineLightRifleHighVelocity: BoxMagazineLightRifle +BoxMagazineMagnumSubMachineGunHighVelocity: BoxMagazineMagnumSubMachineGun +BoxMagazinePistolCaselessRifleHighVelocity: BoxMagazinePistolCaselessRifle +BoxMagazinePistolHighCapacityHighVelocity: BoxMagazinePistolHighCapacity +BoxMagazinePistolHighVelocity: BoxMagazinePistol +BoxMagazinePistolSubMachineGunHighVelocity: BoxMagazinePistolSubMachineGun +BoxMagazineRifleHighVelocity: BoxMagazineRifle +BulletCaselessRifleHighVelocity: BulletCaselessRifle +BulletLightRifleHighVelocity: BulletLightRifle +BulletMagnumHighVelocity: BulletMagnum +BulletPistolHighVelocity: BulletPistol +BulletRifleHighVelocity: BulletRifle +CartridgeCaselessRifleHighVelocity: CartridgeCaselessRifle +CartridgeLightRifleHighVelocity: CartridgeLightRifle +CartridgeMagnumHighVelocity: CartridgeMagnum +CartridgePistolHighVelocity: CartridgePistol +CartridgeRifleHighVelocity: CartridgeRifle +MagazineBoxCaselessRifleHighVelocity: MagazineBoxCaselessRifle +MagazineBoxLightRifleHighVelocity: MagazineBoxLightRifle +MagazineBoxMagnumHighVelocity: MagazineBoxMagnum +MagazineBoxPistolHighVelocity: MagazineBoxPistol +MagazineBoxRifleHighVelocity: MagazineBoxRifle +MagazineCaselessRifleHighVelocity: MagazineCaselessRifle +MagazineCaselessRifleShortHighVelocity: MagazineCaselessRifleShort +MagazineLightRifleHighVelocity: MagazineLightRifle +MagazineMagnumSubMachineGunHighVelocity: MagazineMagnumSubMachineGun +MagazinePistolCaselessRifleHighVelocity: MagazinePistolCaselessRifle +MagazinePistolHighCapacityHighVelocity: MagazinePistolHighCapacity +MagazinePistolHighVelocity: MagazinePistol +MagazinePistolSubMachineGunHighVelocity: MagazinePistolSubMachineGun +MagazineRifleHighVelocity: MagazineRifle +SpeedLoaderMagnumHighVelocity: SpeedLoaderMagnum +SpeedLoaderPistolHighVelocity: SpeedLoaderPistol +# +# 2023-08-07 +#If the name is anything to go off of, these are presumably just CEV-Eris versions of the snow rock (which we already have.) +#They are practically never used in this way however, so they're migrated to the basic rock type. +#MountainRock: AsteroidRock #DeltaV +#MountainRockMining: AsteroidRockMining #DeltaV + +# 2023-08-08 +#WindowTintedDirectional: WindowFrostedDirectional # DeltaV + +# 2023-08-10 +SyringeSpaceacillin: null + +# 2023-08-13 +AirlockPainter: SprayPainter + +# 2023-08-19 +GeneratorPlasma: PortableGeneratorPacman +GeneratorUranium: PortableGeneratorSuperPacman +GeneratorPlasmaMachineCircuitboard: PortableGeneratorPacmanMachineCircuitboard +GeneratorUraniumMachineCircuitboard: PortableGeneratorSuperPacmanMachineCircuitboard + +# 2023-12-12 +#No this is not the CMO hardsuit, their prototype IDs were just confusingly similar +ClothingOuterHardsuitMedic: ClothingOuterHardsuitSyndieMedic + +# 2023-12-13 +VendingMachineSmartFridge: SmartFridge + +# 2023-12-18 +ReagentContainerMilk: DrinkMilkCarton +ReagentContainerMilkSoy: DrinkSoyMilkCarton +ReagentContainerMilkOat: DrinkOatMilkCarton + +# 2023-12-20 +MiasmaCanister: AmmoniaCanister diff --git a/Resources/Prototypes/Accents/full_replacements.yml b/Resources/Prototypes/Accents/full_replacements.yml index 5c5fc8bd09..d3eb629701 100644 --- a/Resources/Prototypes/Accents/full_replacements.yml +++ b/Resources/Prototypes/Accents/full_replacements.yml @@ -27,10 +27,19 @@ - accent-words-mouse-2 - accent-words-mouse-3 - accent-words-mouse-4 - - accent-words-mouse-5 - - accent-words-mouse-6 + - accent-words-mouse-5 + - accent-words-mouse-6 - accent-words-mouse-7 +#- type: accent +# id: mothroach +# fullReplacements: +# - accent-words-mothroach-1 +# - accent-words-mouse-1 +# - accent-words-mouse-2 +# - accent-words-mouse-3 +# - accent-words-mouse-4 + - type: accent id: mumble fullReplacements: @@ -68,6 +77,24 @@ - accent-words-zombie-9 - accent-words-zombie-10 +- type: accent + id: zombieMoth + fullReplacements: + - accent-words-zombie-moth-1 + - accent-words-zombie-moth-2 + - accent-words-zombie-moth-3 + - accent-words-zombie-moth-4 + - accent-words-zombie-moth-5 + - accent-words-zombie-moth-6 + - accent-words-zombie-1 + - accent-words-zombie-2 + - accent-words-zombie-4 + - accent-words-zombie-5 + - accent-words-zombie-6 + - accent-words-zombie-8 + - accent-words-zombie-9 + - accent-words-zombie-10 + - type: accent id: genericAggressive fullReplacements: diff --git a/Resources/Prototypes/Access/medical.yml b/Resources/Prototypes/Access/medical.yml index 89bef3e516..d4b84d89c0 100644 --- a/Resources/Prototypes/Access/medical.yml +++ b/Resources/Prototypes/Access/medical.yml @@ -9,7 +9,7 @@ - type: accessLevel id: Chemistry name: id-card-access-level-chemistry - + - type: accessLevel id: Paramedic name: id-card-access-level-paramedic @@ -21,3 +21,4 @@ - Medical - Chemistry - Paramedic # DeltaV - Add Paramedic access + - Psychologist # DeltaV - Add Psychologist access diff --git a/Resources/Prototypes/Access/misc.yml b/Resources/Prototypes/Access/misc.yml index 496c09860d..65bc5697db 100644 --- a/Resources/Prototypes/Access/misc.yml +++ b/Resources/Prototypes/Access/misc.yml @@ -12,7 +12,8 @@ - Security - Detective - Armory - - Brig + #- Brig #Delta V Removed + - Lawyer - Engineering - Medical - Quartermaster @@ -34,3 +35,11 @@ - Orders # DeltaV - Orders, see Resources/Prototypes/DeltaV/Access/cargo.yml - Mantis # DeltaV - Psionic Mantis, see Resources/Prototypes/DeltaV/Access/epistemics.yml - Paramedic # DeltaV - Add Paramedic access + - Psychologist # DeltaV - Add Psychologist access + - Boxer # DeltaV - Add Boxer access + - Clown # DeltaV - Add Clown access + - Library # DeltaV - Add Library access + - Mime # DeltaV - Add Mime access + - Musician # DeltaV - Add Musician access + - Reporter # DeltaV - Add Reporter access + - Zookeeper # DeltaV - Add Zookeeper access diff --git a/Resources/Prototypes/Access/security.yml b/Resources/Prototypes/Access/security.yml index ec832bc761..c0af95d674 100644 --- a/Resources/Prototypes/Access/security.yml +++ b/Resources/Prototypes/Access/security.yml @@ -10,9 +10,10 @@ id: Armory name: id-card-access-level-armory -- type: accessLevel - id: Brig - name: id-card-access-level-brig +# Delta V: Removes Brig access because redundant +#- type: accessLevel +# id: Brig +# name: id-card-access-level-brig - type: accessLevel id: Detective @@ -24,7 +25,7 @@ - HeadOfSecurity - Security - Armory - - Brig + #- Brig #Delta V removed - Detective - type: accessGroup @@ -32,4 +33,4 @@ tags: - Security - Armory - - Brig + # Brig #Delta V removed diff --git a/Resources/Prototypes/Access/service.yml b/Resources/Prototypes/Access/service.yml index 492e7a9092..b8a553dd8e 100644 --- a/Resources/Prototypes/Access/service.yml +++ b/Resources/Prototypes/Access/service.yml @@ -26,6 +26,10 @@ id: Chapel name: id-card-access-level-chapel +- type: accessLevel + id: Lawyer + name: id-card-access-level-lawyer + - type: accessGroup id: Service tags: @@ -37,3 +41,11 @@ - Janitor - Theatre - Chapel + - Lawyer + - Boxer # DeltaV - Add Boxer access + - Clown # DeltaV - Add Clown access + - Library # DeltaV - Add Library access + - Mime # DeltaV - Add Mime access + - Musician # DeltaV - Add Musician access + - Reporter # DeltaV - Add Reporter access + - Zookeeper # DeltaV - Add Zookeeper access diff --git a/Resources/Prototypes/Actions/types.yml b/Resources/Prototypes/Actions/types.yml index 295a8d8e02..8575a921b3 100644 --- a/Resources/Prototypes/Actions/types.yml +++ b/Resources/Prototypes/Actions/types.yml @@ -61,6 +61,22 @@ state: explosive event: !type:ActivateImplantEvent +- type: entity + id: ActionActivateDeathAcidifier + name: Activate Death-Acidifier + description: Activates your death-acidifier, completely melting you and your equipment + noSpawn: true + components: + - type: InstantAction + checkCanInteract: false + itemIconStyle: BigAction + priority: -20 + icon: + sprite: Objects/Magic/magicactions.rsi + state: gib + event: !type:ActivateImplantEvent + + - type: entity id: ActionActivateFreedomImplant name: Break Free diff --git a/Resources/Prototypes/Alerts/alerts.yml b/Resources/Prototypes/Alerts/alerts.yml index e71a8ed381..bc3137b07f 100644 --- a/Resources/Prototypes/Alerts/alerts.yml +++ b/Resources/Prototypes/Alerts/alerts.yml @@ -197,6 +197,24 @@ minSeverity: 0 maxSeverity: 4 +- type: alert + id: BorgCrit + category: Health + icons: + - sprite: /Textures/Interface/Alerts/borg_critical.rsi + state: critical + name: alerts-crit-name + description: alerts-crit-desc + +- type: alert + id: BorgDead + category: Health + icons: + - sprite: /Textures/Interface/Alerts/borg_dead.rsi + state: dead + name: alerts-dead-name + description: alerts-dead-desc + - type: alert id: BorgBattery category: Battery diff --git a/Resources/Prototypes/Atmospherics/gases.yml b/Resources/Prototypes/Atmospherics/gases.yml index 8c944332ab..38dc5892a1 100644 --- a/Resources/Prototypes/Atmospherics/gases.yml +++ b/Resources/Prototypes/Atmospherics/gases.yml @@ -6,7 +6,6 @@ molarMass: 32 color: 2887E8 reagent: Oxygen - pricePerMole: 0 - type: gas id: 1 @@ -16,7 +15,6 @@ molarMass: 28 color: DA1010 reagent: Nitrogen - pricePerMole: 0 - type: gas id: 2 @@ -26,7 +24,6 @@ molarMass: 44 color: 4e4e4e reagent: CarbonDioxide - pricePerMole: 0 - type: gas id: 3 @@ -38,7 +35,6 @@ gasOverlayState: plasma color: FF3300 reagent: Plasma - pricePerMole: 0 - type: gas id: 4 @@ -50,7 +46,6 @@ gasOverlayState: tritium color: 13FF4B reagent: Tritium - pricePerMole: 5 - type: gas id: 5 @@ -62,11 +57,10 @@ gasOverlayState: water_vapor color: bffffd reagent: Water - pricePerMole: 0 - type: gas id: 6 - name: gases-miasma + name: gases-ammonia specificHeat: 20 heatCapacityRatio: 1.4 molarMass: 44 @@ -75,7 +69,7 @@ gasMolesVisible: 2 gasVisbilityFactor: 3.5 color: 56941E - reagent: Miasma + reagent: Ammonia pricePerMole: 0.15 - type: gas @@ -86,7 +80,6 @@ molarMass: 44 color: 2887E8 reagent: NitrousOxide - pricePerMole: 2.5 - type: gas id: 8 @@ -99,4 +92,4 @@ gasMolesVisible: 0.6 color: 3a758c reagent: Frezon - pricePerMole: 7.5 + pricePerMole: 0.3 diff --git a/Resources/Prototypes/Atmospherics/reactions.yml b/Resources/Prototypes/Atmospherics/reactions.yml index a01bf80f31..d226c81f6c 100644 --- a/Resources/Prototypes/Atmospherics/reactions.yml +++ b/Resources/Prototypes/Atmospherics/reactions.yml @@ -1,4 +1,4 @@ -- type: gasReaction +- type: gasReaction id: PlasmaFire priority: -2 minimumTemperature: 373.149 # Same as Atmospherics.FireMinimumTemperatureToExist @@ -34,7 +34,7 @@ - 0 # plasma - 0 # tritium - 0 # vapor - - 0 # miasma + - 0 # ammonia - 0 # n2o - 0.01 # frezon effects: @@ -51,16 +51,33 @@ - 0 # plasma - 0.01 # tritium - 0 # vapor - - 0 # miasma + - 0 # ammonia - 0 # n2o - 0 # frezon effects: - !type:FrezonProductionReaction {} - type: gasReaction - id: MiasmicSubsumation + id: AmmoniaOxygenReaction + priority: 2 + minimumTemperature: 323.149 + minimumRequirements: + - 0.01 # oxygen + - 0 # nitrogen + - 0 # carbon dioxide + - 0 # plasma + - 0 # tritium + - 0 # vapor + - 0.01 # ammonia + - 0 # n2o + - 0 # frezon + effects: + - !type:AmmoniaOxygenReaction {} + +- type: gasReaction + id: N2ODecomposition priority: 0 - maximumTemperature: 5066.25 + minimumTemperature: 850 minimumRequirements: - 0 # oxygen - 0 # nitrogen @@ -68,11 +85,11 @@ - 0 # plasma - 0 # tritium - 0 # vapor - - 0.01 # miasma - - 0 # n2o - - 0.01 # frezon + - 0 # ammonia + - 0.01 # n2o + - 0 # frezon effects: - - !type:MiasmicSubsumationReaction {} + - !type:N2ODecompositionReaction {} #- type: gasReaction # id: WaterVaporPuddle diff --git a/Resources/Prototypes/Atmospherics/thresholds.yml b/Resources/Prototypes/Atmospherics/thresholds.yml index b93174a39a..462a0c8942 100644 --- a/Resources/Prototypes/Atmospherics/thresholds.yml +++ b/Resources/Prototypes/Atmospherics/thresholds.yml @@ -54,7 +54,7 @@ threshold: 0.5 - type: alarmThreshold - id: stationMiasma + id: stationAmmonia upperBound: !type:AlarmThresholdSetting threshold: 0.05 upperWarnAround: !type:AlarmThresholdSetting diff --git a/Resources/Prototypes/Body/Organs/Animal/animal.yml b/Resources/Prototypes/Body/Organs/Animal/animal.yml index 083d596152..358fc74bca 100644 --- a/Resources/Prototypes/Body/Organs/Animal/animal.yml +++ b/Resources/Prototypes/Body/Organs/Animal/animal.yml @@ -81,6 +81,17 @@ - id: Food - id: Drink +- type: entity + id: OrganMouseStomach + parent: OrganAnimalStomach + name: stomach + noSpawn: true + components: + - type: SolutionContainerManager + solutions: + stomach: + maxVol: 30 + - type: entity id: OrganAnimalLiver parent: BaseAnimalOrgan diff --git a/Resources/Prototypes/Body/Organs/Animal/bloodsucker.yml b/Resources/Prototypes/Body/Organs/Animal/bloodsucker.yml new file mode 100644 index 0000000000..8a1afc37bb --- /dev/null +++ b/Resources/Prototypes/Body/Organs/Animal/bloodsucker.yml @@ -0,0 +1,26 @@ +- type: entity + id: OrganBloodsuckerStomach + parent: OrganAnimalStomach + name: stomach + noSpawn: true + components: + - type: Metabolizer + metabolizerTypes: [ Bloodsucker ] + +- type: entity + id: OrganBloodsuckerLiver + parent: OrganAnimalLiver + name: liver + noSpawn: true + components: + - type: Metabolizer + metabolizerTypes: [ Bloodsucker ] + +- type: entity + id: OrganBloodsuckerHeart + parent: OrganAnimalHeart + name: heart + noSpawn: true + components: + - type: Metabolizer + metabolizerTypes: [ Bloodsucker ] diff --git a/Resources/Prototypes/Body/Organs/arachnid.yml b/Resources/Prototypes/Body/Organs/arachnid.yml index b4eb11b623..ee2f16bfea 100644 --- a/Resources/Prototypes/Body/Organs/arachnid.yml +++ b/Resources/Prototypes/Body/Organs/arachnid.yml @@ -94,7 +94,7 @@ - type: Metabolizer updateFrequency: 1.5 maxReagents: 2 - metabolizerTypes: [Animal] + metabolizerTypes: [Arachnid] groups: - id: Medicine - id: Poison diff --git a/Resources/Prototypes/Body/Organs/reptilian.yml b/Resources/Prototypes/Body/Organs/reptilian.yml index b2233a9207..01c0fe9658 100644 --- a/Resources/Prototypes/Body/Organs/reptilian.yml +++ b/Resources/Prototypes/Body/Organs/reptilian.yml @@ -9,6 +9,7 @@ - Fruit - Meat - Pill + - Crayon - type: SolutionContainerManager solutions: stomach: diff --git a/Resources/Prototypes/Body/Parts/arachnid.yml b/Resources/Prototypes/Body/Parts/arachnid.yml index 9c95d1d15a..d275bd91c6 100644 --- a/Resources/Prototypes/Body/Parts/arachnid.yml +++ b/Resources/Prototypes/Body/Parts/arachnid.yml @@ -11,7 +11,7 @@ reagents: - ReagentId: Fat Quantity: 3 - - ReagentId: SpiderBlood + - ReagentId: CopperBlood Quantity: 10 - type: entity @@ -27,7 +27,7 @@ reagents: - ReagentId: Fat Quantity: 10 - - ReagentId: SpiderBlood + - ReagentId: CopperBlood Quantity: 20 - type: entity @@ -43,7 +43,7 @@ reagents: - ReagentId: Fat Quantity: 5 - - ReagentId: SpiderBlood + - ReagentId: CopperBlood Quantity: 10 - type: entity diff --git a/Resources/Prototypes/Body/Parts/base.yml b/Resources/Prototypes/Body/Parts/base.yml index e293d8845d..a27059f59f 100644 --- a/Resources/Prototypes/Body/Parts/base.yml +++ b/Resources/Prototypes/Body/Parts/base.yml @@ -23,6 +23,7 @@ id: BaseTorso name: "torso" parent: BasePart + abstract: true components: - type: BodyPart partType: Torso @@ -31,6 +32,7 @@ id: BaseHead name: "head" parent: BasePart + abstract: true components: - type: BodyPart partType: Head @@ -45,6 +47,7 @@ id: BaseLeftArm name: "left arm" parent: BasePart + abstract: true components: - type: BodyPart partType: Arm @@ -54,6 +57,7 @@ id: BaseRightArm name: "right arm" parent: BasePart + abstract: true components: - type: BodyPart partType: Arm @@ -63,6 +67,7 @@ id: BaseLeftHand name: "left hand" parent: BasePart + abstract: true components: - type: BodyPart partType: Hand @@ -72,6 +77,7 @@ id: BaseRightHand name: "right hand" parent: BasePart + abstract: true components: - type: BodyPart partType: Hand @@ -81,6 +87,7 @@ id: BaseLeftLeg name: "left leg" parent: BasePart + abstract: true components: - type: BodyPart partType: Leg @@ -91,6 +98,7 @@ id: BaseRightLeg name: "right leg" parent: BasePart + abstract: true components: - type: BodyPart partType: Leg @@ -101,6 +109,7 @@ id: BaseLeftFoot name: "left foot" parent: BasePart + abstract: true components: - type: BodyPart partType: Foot @@ -110,6 +119,7 @@ id: BaseRightFoot name: "right foot" parent: BasePart + abstract: true components: - type: BodyPart partType: Foot diff --git a/Resources/Prototypes/Body/Parts/rat.yml b/Resources/Prototypes/Body/Parts/rat.yml index ad8eecf3df..6a66eecc48 100644 --- a/Resources/Prototypes/Body/Parts/rat.yml +++ b/Resources/Prototypes/Body/Parts/rat.yml @@ -13,3 +13,8 @@ - type: Tag tags: - Trash + # TODO get a proper rat king & servant torso sprite. + # currently their torso is just a small dead rat.... + - type: Sprite + sprite: Mobs/Animals/mouse.rsi + state: splat-0 diff --git a/Resources/Prototypes/Body/Parts/silicon.yml b/Resources/Prototypes/Body/Parts/silicon.yml index 7c80e62418..24d88276cc 100644 --- a/Resources/Prototypes/Body/Parts/silicon.yml +++ b/Resources/Prototypes/Body/Parts/silicon.yml @@ -22,6 +22,9 @@ - type: PhysicalComposition materialComposition: Steel: 25 + - type: GuideHelp + guides: + - Cyborgs - type: entity id: BaseBorgArmLeft diff --git a/Resources/Prototypes/Body/Parts/slime.yml b/Resources/Prototypes/Body/Parts/slime.yml index c11d723950..4b0e94b008 100644 --- a/Resources/Prototypes/Body/Parts/slime.yml +++ b/Resources/Prototypes/Body/Parts/slime.yml @@ -1,7 +1,7 @@ # TODO BODY: Part damage - type: entity id: PartSlime - parent: [BaseItem, PartBase] + parent: [BaseItem, BasePart] name: "slime body part" abstract: true diff --git a/Resources/Prototypes/Body/Prototypes/Animal/animal.yml b/Resources/Prototypes/Body/Prototypes/Animal/animal.yml index aeea15df6d..a8c81f9eb6 100644 --- a/Resources/Prototypes/Body/Prototypes/Animal/animal.yml +++ b/Resources/Prototypes/Body/Prototypes/Animal/animal.yml @@ -19,3 +19,25 @@ - feet feet: part: FeetAnimal + +- type: body + id: Mouse + name: "mouse" + root: torso + slots: + torso: + part: TorsoAnimal + connections: + - legs + organs: + lungs: OrganAnimalLungs + stomach: OrganMouseStomach + liver: OrganAnimalLiver + heart: OrganAnimalHeart + kidneys: OrganAnimalKidneys + legs: + part: LegsAnimal + connections: + - feet + feet: + part: FeetAnimal \ No newline at end of file diff --git a/Resources/Prototypes/Body/Prototypes/Animal/bloodsucker.yml b/Resources/Prototypes/Body/Prototypes/Animal/bloodsucker.yml new file mode 100644 index 0000000000..dd8750714e --- /dev/null +++ b/Resources/Prototypes/Body/Prototypes/Animal/bloodsucker.yml @@ -0,0 +1,21 @@ +- type: body + id: Bloodsucker + name: "bloodsucker" + root: torso + slots: + torso: + part: TorsoAnimal + connections: + - legs + organs: + lungs: OrganAnimalLungs + stomach: OrganBloodsuckerStomach + liver: OrganBloodsuckerLiver + heart: OrganBloodsuckerHeart + kidneys: OrganAnimalKidneys + legs: + part: LegsAnimal + connections: + - feet + feet: + part: FeetAnimal diff --git a/Resources/Prototypes/Body/Prototypes/Animal/hemocyanin.yml b/Resources/Prototypes/Body/Prototypes/Animal/hemocyanin.yml new file mode 100644 index 0000000000..b29edadc80 --- /dev/null +++ b/Resources/Prototypes/Body/Prototypes/Animal/hemocyanin.yml @@ -0,0 +1,21 @@ +- type: body + id: AnimalHemocyanin + name: "hemocyanin" + root: torso + slots: + torso: + part: TorsoAnimal + connections: + - legs + organs: + lungs: OrganAnimalLungs + stomach: OrganAnimalStomach + liver: OrganAnimalLiver + heart: OrganArachnidHeart + kidneys: OrganAnimalKidneys + legs: + part: LegsAnimal + connections: + - feet + feet: + part: FeetAnimal diff --git a/Resources/Prototypes/Body/Prototypes/Specific/mothroach.yml b/Resources/Prototypes/Body/Prototypes/Specific/mothroach.yml new file mode 100644 index 0000000000..ef5df769de --- /dev/null +++ b/Resources/Prototypes/Body/Prototypes/Specific/mothroach.yml @@ -0,0 +1,13 @@ +- type: body + id: Mothroach + name: "mothroach" + root: torso + slots: + torso: + part: TorsoAnimal + organs: + lungs: OrganAnimalLungs + stomach: OrganMothStomach + liver: OrganAnimalLiver + heart: OrganAnimalHeart + kidneys: OrganAnimalKidneys diff --git a/Resources/Prototypes/Body/Prototypes/a_ghost.yml b/Resources/Prototypes/Body/Prototypes/a_ghost.yml index 0a2c585f96..09784c3ef5 100644 --- a/Resources/Prototypes/Body/Prototypes/a_ghost.yml +++ b/Resources/Prototypes/Body/Prototypes/a_ghost.yml @@ -6,8 +6,8 @@ torso: part: TorsoHuman connections: - - left_arm - right_arm + - left_arm right_arm: part: RightArmHuman connections: diff --git a/Resources/Prototypes/Body/Prototypes/arachnid.yml b/Resources/Prototypes/Body/Prototypes/arachnid.yml index 0c57d3a199..97af67933c 100644 --- a/Resources/Prototypes/Body/Prototypes/arachnid.yml +++ b/Resources/Prototypes/Body/Prototypes/arachnid.yml @@ -19,10 +19,10 @@ liver: OrganArachnidLiver kidneys: OrganArachnidKidneys connections: - - left arm - right arm - - left leg + - left arm - right leg + - left leg right arm: part: RightArmArachnid connections: diff --git a/Resources/Prototypes/Body/Prototypes/diona.yml b/Resources/Prototypes/Body/Prototypes/diona.yml index 4be2138a99..f364d0f800 100644 --- a/Resources/Prototypes/Body/Prototypes/diona.yml +++ b/Resources/Prototypes/Body/Prototypes/diona.yml @@ -13,10 +13,10 @@ torso: part: TorsoDiona connections: - - left arm - right arm - - left leg + - left arm - right leg + - left leg organs: stomach: OrganDionaStomach right arm: diff --git a/Resources/Prototypes/Body/Prototypes/dwarf.yml b/Resources/Prototypes/Body/Prototypes/dwarf.yml index b04b124ede..592492688b 100644 --- a/Resources/Prototypes/Body/Prototypes/dwarf.yml +++ b/Resources/Prototypes/Body/Prototypes/dwarf.yml @@ -13,10 +13,10 @@ torso: part: TorsoHuman connections: - - left arm - right arm - - left leg + - left arm - right leg + - left leg organs: heart: OrganDwarfHeart lungs: OrganHumanLungs diff --git a/Resources/Prototypes/Body/Prototypes/human.yml b/Resources/Prototypes/Body/Prototypes/human.yml index 76d46abcc5..94c77a27d7 100644 --- a/Resources/Prototypes/Body/Prototypes/human.yml +++ b/Resources/Prototypes/Body/Prototypes/human.yml @@ -13,10 +13,10 @@ torso: part: TorsoHuman connections: - - left_arm - right_arm - - left_leg + - left_arm - right_leg + - left_leg organs: heart: OrganHumanHeart lungs: OrganHumanLungs diff --git a/Resources/Prototypes/Body/Prototypes/moth.yml b/Resources/Prototypes/Body/Prototypes/moth.yml index 0715f19a85..7ebeda7fef 100644 --- a/Resources/Prototypes/Body/Prototypes/moth.yml +++ b/Resources/Prototypes/Body/Prototypes/moth.yml @@ -19,10 +19,10 @@ liver: OrganAnimalLiver kidneys: OrganHumanKidneys connections: - - left arm - right arm - - left leg + - left arm - right leg + - left leg right arm: part: RightArmMoth connections: diff --git a/Resources/Prototypes/Body/Prototypes/reptilian.yml b/Resources/Prototypes/Body/Prototypes/reptilian.yml index 0e35effd56..1e9ebd54a4 100644 --- a/Resources/Prototypes/Body/Prototypes/reptilian.yml +++ b/Resources/Prototypes/Body/Prototypes/reptilian.yml @@ -19,10 +19,10 @@ liver: OrganAnimalLiver kidneys: OrganHumanKidneys connections: - - left arm - right arm - - left leg + - left arm - right leg + - left leg right arm: part: RightArmReptilian connections: diff --git a/Resources/Prototypes/Body/Prototypes/skeleton.yml b/Resources/Prototypes/Body/Prototypes/skeleton.yml index e608186369..16d0836561 100644 --- a/Resources/Prototypes/Body/Prototypes/skeleton.yml +++ b/Resources/Prototypes/Body/Prototypes/skeleton.yml @@ -10,10 +10,10 @@ torso: part: TorsoSkeleton connections: - - left arm - right arm - - left leg + - left arm - right leg + - left leg right arm: part: RightArmSkeleton connections: diff --git a/Resources/Prototypes/Body/Prototypes/slime.yml b/Resources/Prototypes/Body/Prototypes/slime.yml index c9d746879b..b57c5eceb4 100644 --- a/Resources/Prototypes/Body/Prototypes/slime.yml +++ b/Resources/Prototypes/Body/Prototypes/slime.yml @@ -10,10 +10,10 @@ torso: part: TorsoSlime connections: - - left arm - right arm - - left leg + - left arm - right leg + - left leg organs: core: SentientSlimeCore lungs: OrganSlimeLungs diff --git a/Resources/Prototypes/Body/Prototypes/vox.yml b/Resources/Prototypes/Body/Prototypes/vox.yml index f81f452fe1..2a1f6d9dca 100644 --- a/Resources/Prototypes/Body/Prototypes/vox.yml +++ b/Resources/Prototypes/Body/Prototypes/vox.yml @@ -13,10 +13,10 @@ torso: part: TorsoVox connections: - - left arm - right arm - - left leg + - left arm - right leg + - left leg organs: heart: OrganHumanHeart lungs: OrganVoxLungs diff --git a/Resources/Prototypes/Catalog/Bounties/bounties.yml b/Resources/Prototypes/Catalog/Bounties/bounties.yml index b428e6a264..1e2fd783db 100644 --- a/Resources/Prototypes/Catalog/Bounties/bounties.yml +++ b/Resources/Prototypes/Catalog/Bounties/bounties.yml @@ -328,7 +328,7 @@ description: bounty-description-percussion entries: - name: bounty-item-percussion - amount: 3 + amount: 4 whitelist: tags: - PercussionInstrument @@ -467,3 +467,102 @@ whitelist: tags: - Trash + +- type: cargoBounty + id: BountyAnomalyCore + reward: 10000 + description: bounty-description-anomaly-core + entries: + - name: bounty-item-anomaly-core + amount: 1 + whitelist: + components: + - AnomalyCore + +- type: cargoBounty + id: BountyBorgModule + reward: 3500 + description: bounty-description-borg-module + entries: + - name: bounty-item-borg-module + amount: 3 + whitelist: + components: + - BorgModule + +- type: cargoBounty + id: BountyArtifactFragment + reward: 32500 + description: bounty-description-artifact-fragment + entries: + - name: bounty-item-artifact-fragment + amount: 7 + whitelist: + tags: + - ArtifactFragment + +- type: cargoBounty + id: BountyOrgans + reward: 3500 + description: bounty-description-organs + entries: + - name: bounty-item-organs + amount: 8 + whitelist: + components: + - Organ + +- type: cargoBounty + id: BountyLabeler + reward: 6660 + description: bounty-description-labeler + entries: + - name: bounty-item-labeler + amount: 5 + whitelist: + components: + - HandLabeler + +- type: cargoBounty + id: BountyWarmCloth + reward: 6000 + description: bounty-description-warm-cloth + entries: + - name: bounty-item-warm-cloth + amount: 8 + whitelist: + components: + - TemperatureProtection + +- type: cargoBounty + id: BountyBattery + reward: 24500 + description: bounty-description-battery + entries: + - name: bounty-item-battery + amount: 15 + whitelist: + components: + - Battery + +- type: cargoBounty + id: BountyLaserGun + reward: 28500 + description: bounty-description-lasergun + entries: + - name: bounty-lasergun + amount: 6 + whitelist: + components: + - HitscanBatteryAmmoProvider + +- type: cargoBounty + id: BountyFood + reward: 9500 + description: bounty-description-food + entries: + - name: bounty-food + amount: 30 + whitelist: + tags: + - Meat \ No newline at end of file diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_armory.yml b/Resources/Prototypes/Catalog/Cargo/cargo_armory.yml index f8f5253b23..399181b4fa 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_armory.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_armory.yml @@ -41,7 +41,7 @@ - type: cargoProduct id: ArmoryLaser icon: - sprite: Objects/Weapons/Guns/Battery/laser_retro.rsi + sprite: Objects/Weapons/Guns/Battery/laser_gun.rsi state: icon product: CrateArmoryLaser cost: 4800 diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_atmospherics.yml b/Resources/Prototypes/Catalog/Cargo/cargo_atmospherics.yml index aad858db2d..a8446659b9 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_atmospherics.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_atmospherics.yml @@ -90,17 +90,17 @@ # category: Atmospherics # group: market -#- type: cargoProduct -# name: "plasma canister" -# id: AtmosphericsPlasma -# description: "Plasma canister" -# icon: -# sprite: Structures/Storage/canister.rsi -# state: orange -# product: PlasmaCanister -# cost: 8500 -# category: Atmospherics -# group: market +- type: cargoProduct + name: "plasma canister" + id: AtmosphericsPlasma + description: "Plasma canister" + icon: + sprite: Structures/Storage/canister.rsi + state: orange + product: PlasmaCanister + cost: 8500 + category: Atmospherics + group: market #- type: cargoProduct # name: "tritium canister" diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_engineering.yml b/Resources/Prototypes/Catalog/Cargo/cargo_engineering.yml index 14d5f81e13..5a801e50ab 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_engineering.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_engineering.yml @@ -87,3 +87,23 @@ cost: 5000 category: Engineering group: market + +- type: cargoProduct + id: EngineeringRCDAmmo + icon: + sprite: Objects/Tools/rcd.rsi + state: icon + product: CrateRCDAmmo + cost: 2500 + category: Engineering + group: market + +- type: cargoProduct + id: EngineeringRCD + icon: + sprite: Objects/Tools/rcd.rsi + state: ammo + product: CrateRCD + cost: 800 + category: Engineering + group: market diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml b/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml index e114545b9d..44741a47e0 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml @@ -187,7 +187,7 @@ cost: 4000 category: Fun group: market - + - type: cargoProduct id: FunDartsSet icon: @@ -196,4 +196,14 @@ product: CrateFunDartsSet cost: 900 category: Fun - group: market \ No newline at end of file + group: market + +#- type: cargoProduct +# id: FunCrateGambling +# icon: +# sprite: Objects/Economy/cash.rsi +# state: cash_1000000 +# product: CrateCargoGambling +# cost: 10000 +# category: Fun +# group: market diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_livestock.yml b/Resources/Prototypes/Catalog/Cargo/cargo_livestock.yml index d82e4d8d26..3133c0206e 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_livestock.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_livestock.yml @@ -68,6 +68,16 @@ category: Livestock group: market +- type: cargoProduct + id: LivestockPupCorgi + icon: + sprite: Mobs/Pets/corgi.rsi + state: puppy + product: CrateNPCPuppyCorgi + cost: 1200 + category: Livestock + group: market + - type: cargoProduct id: LivestockCow icon: @@ -197,3 +207,13 @@ cost: 2800 category: Livestock group: market + +- type: cargoProduct + id: LivestockMothroach + icon: + sprite: Mobs/Animals/mothroach.rsi + state: mothroach + product: CrateNPCMothroach + cost: 5000 + category: Livestock + group: market diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_materials.yml b/Resources/Prototypes/Catalog/Cargo/cargo_materials.yml index 98dc8671de..bebc3fc307 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_materials.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_materials.yml @@ -68,6 +68,16 @@ category: Materials group: market +- type: cargoProduct + id: PaperMaterial + icon: + sprite: Objects/Materials/Sheets/other.rsi + state: paper_3 + product: CrateMaterialPaper + cost: 1000 + category: Materials + group: market + - type: cargoProduct id: MaterialFuelTank icon: @@ -86,4 +96,4 @@ product: WaterTankFull cost: 1000 category: Materials - group: market \ No newline at end of file + group: market diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_medical.yml b/Resources/Prototypes/Catalog/Cargo/cargo_medical.yml index 16498a5a75..01a7192b35 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_medical.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_medical.yml @@ -18,6 +18,16 @@ category: Medical group: market +- type: cargoProduct + id: MedicalChemistryVials + icon: + sprite: Objects/Specific/Chemistry/vial.rsi + state: vial + product: CrateChemistryVials + cost: 1000 + category: Medical + group: market + - type: cargoProduct id: EmergencyBurnKit icon: diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_service.yml b/Resources/Prototypes/Catalog/Cargo/cargo_service.yml index 0ddf41a464..ab9e1c3235 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_service.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_service.yml @@ -137,3 +137,23 @@ cost: 2000 category: Service group: market + +- type: cargoProduct + id: ServiceAnimalCarrier + icon: + sprite: Objects/Storage/petcarrier.rsi + state: icon + product: PetCarrier + cost: 500 + category: Service + group: market + +- type: cargoProduct + id: JanitorExplosive + icon: + sprite: Clothing/Head/Helmets/janitor_bombsuit.rsi + state: icon + product: CrateJanitorExplosive + cost: 1000 + category: Service + group: market diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml b/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml index 8dee172c47..c252541dab 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml @@ -33,7 +33,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockClothesFilled - cost: 6500 #DeltaV + cost: 6625 #DeltaV category: Service group: market @@ -164,7 +164,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockSeedsFilled - cost: 3250 + cost: 3375 category: Hydroponics group: market diff --git a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/backpack.yml b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/backpack.yml index 8d7a5d27ad..4cf4d2caea 100644 --- a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/backpack.yml +++ b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/backpack.yml @@ -285,8 +285,7 @@ - id: trayScanner - id: RCD - id: RCDAmmo - - id: RCDAmmo - - id: RCDAmmo + amount: 2 - id: CableMVStack - id: CableHVStack - id: CableApcStack @@ -330,7 +329,7 @@ - id: ToolDebug # spanish army knife - id: WelderExperimental - id: Hypospray - - id: MicroBombImplanter # crew will try to steal their amazing hardsuits + - id: DeathAcidifierImplanter # crew will try to steal their amazing hardsuits - id: FreedomImplanter # Cargo diff --git a/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml b/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml index c97082e351..1c08c569af 100644 --- a/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml +++ b/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml @@ -4,31 +4,31 @@ name: surgical duffel bag description: "A large duffel bag for holding extra medical supplies - this one seems to be designed for holding surgical tools." components: - - type: StorageFill - contents: - - id: Hemostat - - id: Saw - - id: Drill - - id: Cautery - - id: Retractor - - id: Scalpel + - type: StorageFill + contents: + - id: Hemostat + - id: Saw + - id: Drill + - id: Cautery + - id: Retractor + - id: Scalpel - type: entity id: ClothingBackpackDuffelCBURNFilled parent: ClothingBackpackDuffelCBURN suffix: Filled components: - - type: StorageFill - contents: - - id: BoxSurvivalEngineering - - id: WeaponShotgunDoubleBarreled - - id: BoxShotgunIncendiary - amount: 2 - - id: GrenadeFlashBang - amount: 2 - - id: PillAmbuzolPlus - - id: PillAmbuzol - amount: 4 + - type: StorageFill + contents: + - id: BoxSurvivalEngineering + - id: WeaponShotgunDoubleBarreled + - id: BoxShotgunIncendiary + amount: 2 + - id: GrenadeFlashBang + amount: 2 + - id: PillAmbuzolPlus + - id: PillAmbuzol + amount: 4 - type: entity parent: ClothingBackpackDuffelSyndicateMedicalBundle @@ -36,14 +36,16 @@ name: syndicate surgical duffel bag description: A large duffel bag containing a full suite of surgical tools. components: - - type: StorageFill - contents: - - id: Hemostat - - id: SawAdvanced - - id: Drill - - id: Cautery - - id: Retractor - - id: ScalpelAdvanced + - type: StorageFill + contents: + - id: Hemostat + - id: SawAdvanced + - id: Drill + - id: Cautery + - id: Retractor + - id: ScalpelAdvanced + - id: ClothingHandsGlovesNitrile + - id: EmergencyRollerBedSpawnFolded - type: entity parent: ClothingBackpackDuffelSyndicateBundle @@ -51,12 +53,12 @@ name: Bulldog bundle description: "Lean and mean: Contains the popular Bulldog Shotgun, a 12g beanbag drum and 3 12g buckshot drums." #, and a pair of Thermal Imaging Goggles. components: - - type: StorageFill - contents: - - id: WeaponShotgunBulldog - - id: MagazineShotgun - - id: MagazineShotgun - - id: MagazineShotgunBeanbag + - type: StorageFill + contents: + - id: WeaponShotgunBulldog + - id: MagazineShotgun + - id: MagazineShotgun + - id: MagazineShotgunBeanbag # - id: ThermalImagingGoggles - type: entity @@ -65,11 +67,11 @@ name: C-20r bundle description: "Old faithful: The classic C-20r Submachine Gun, bundled with three magazines." #, and a Suppressor. components: - - type: StorageFill - contents: - - id: WeaponSubMachineGunC20r - - id: MagazinePistolSubMachineGun - amount: 2 + - type: StorageFill + contents: + - id: WeaponSubMachineGunC20r + - id: MagazinePistolSubMachineGun + amount: 2 # - id: SMGSuppressor - type: entity @@ -78,11 +80,11 @@ name: Python bundle description: "Go loud and proud with a fully loaded Magnum Python, bundled with two speed loaders." components: - - type: StorageFill - contents: - - id: WeaponRevolverPythonAP - - id: SpeedLoaderMagnumAP - amount: 2 + - type: StorageFill + contents: + - id: WeaponRevolverPythonAP + - id: SpeedLoaderMagnumAP + amount: 2 - type: entity parent: ClothingBackpackDuffelSyndicateBundle @@ -90,10 +92,10 @@ name: L6 Saw bundle description: "More dakka: The iconic L6 lightmachinegun, bundled with 2 box magazines." components: - - type: StorageFill - contents: - - id: WeaponLightMachineGunL6 - - id: MagazineLightRifleBox + - type: StorageFill + contents: + - id: WeaponLightMachineGunL6 + - id: MagazineLightRifleBox - type: entity parent: ClothingBackpackDuffelSyndicateBundle @@ -101,13 +103,13 @@ name: China-Lake bundle description: "An old China-Lake grenade launcher bundled with 11 rounds of various destruction capability." components: - - type: StorageFill - contents: - - id: WeaponLauncherChinaLake - - id: GrenadeBlast - amount: 4 - - id: GrenadeFrag - amount: 4 + - type: StorageFill + contents: + - id: WeaponLauncherChinaLake + - id: GrenadeBlast + amount: 4 + - id: GrenadeFrag + amount: 4 - type: entity parent: ClothingBackpackDuffelSyndicateBundle @@ -115,17 +117,17 @@ name: M-90gl bundle description: "A versatile battle rifle with an attached grenade launcher, bundled with 3 magazines and 6 grenades of various capabilities." components: - - type: StorageFill - contents: - - id: WeaponRifleM90GrenadeLauncher - - id: MagazineRifle - amount: 2 - - id: GrenadeBlast - amount: 2 - - id: GrenadeFlash - amount: 2 - - id: GrenadeFrag - amount: 2 + - type: StorageFill + contents: + - id: WeaponRifleM90GrenadeLauncher + - id: MagazineRifle + amount: 2 + - id: GrenadeBlast + amount: 2 + - id: GrenadeFlash + amount: 2 + - id: GrenadeFrag + amount: 2 - type: entity parent: ClothingBackpackDuffelSyndicateAmmo @@ -133,14 +135,14 @@ name: ammo bundle description: "Reloading! Contains 4 magazines for the C-20r, 4 drums for the Bulldog, and 2 ammo boxes for the L6 SAW." components: - - type: StorageFill - contents: - - id: MagazinePistolSubMachineGun - amount: 4 - - id: MagazineShotgun - amount: 4 - - id: MagazineLightRifleBox - amount: 2 + - type: StorageFill + contents: + - id: MagazinePistolSubMachineGun + amount: 4 + - id: MagazineShotgun + amount: 4 + - id: MagazineLightRifleBox + amount: 2 - type: entity parent: ClothingBackpackDuffel @@ -149,36 +151,36 @@ description: "Contains a full CentCom Official uniform set, headset and clipboard included. Encryption keys and ID access are not included." suffix: DO NOT MAP components: - - type: Tag - tags: [] # ignore "WhitelistChameleon" tag - - type: StorageFill - contents: - - id: ClothingHeadHatCentcom - - id: ClothingEyesGlassesSunglasses - - id: ClothingUniformJumpsuitCentcomOfficial - - id: ClothingShoesBootsJack - - id: ClothingHandsGlovesColorBlack - - id: ClothingHeadsetAltCentComFake - - id: ClothingOuterArmorBasic - - id: Paper - - id: Pen - - id: CentcomPDAFake + - type: Tag + tags: [] # ignore "WhitelistChameleon" tag + - type: StorageFill + contents: + - id: ClothingHeadHatCentcom + - id: ClothingEyesGlassesSunglasses + - id: ClothingUniformJumpsuitCentcomOfficial + - id: ClothingShoesBootsJack + - id: ClothingHandsGlovesColorBlack + - id: ClothingHeadsetAltCentComFake + - id: ClothingOuterArmorBasic + - id: Paper + - id: Pen + - id: CentcomPDAFake - type: entity parent: ClothingBackpackDuffelClown id: ClothingBackpackDuffelSyndicateCostumeClown suffix: syndicate components: - - type: Tag - tags: [] # ignore "WhitelistChameleon" tag - - type: StorageFill - contents: - - id: ClothingUniformJumpsuitClown - - id: ClothingShoesClown - - id: ClothingMaskClown - - id: BikeHorn - - id: ClownPDA - - id: ClothingHeadsetService + - type: Tag + tags: [] # ignore "WhitelistChameleon" tag + - type: StorageFill + contents: + - id: ClothingUniformJumpsuitClown + - id: ClothingShoesClown + - id: ClothingMaskClown + - id: BikeHorn + - id: ClownPDA + - id: ClothingHeadsetService - type: entity parent: ClothingBackpackDuffelSyndicateBundle @@ -186,11 +188,11 @@ name: carp suit duffel bag description: Contains a carp suit and some friends to play with. components: - - type: StorageFill - contents: - - id: ClothingOuterSuitCarp - - id: PlushieCarp - amount: 6 + - type: StorageFill + contents: + - id: ClothingOuterSuitCarp + - id: PlushieCarp + amount: 6 - type: entity parent: ClothingBackpackDuffelSyndicateBundle @@ -198,22 +200,22 @@ name: syndicate pyjama duffel bag description: Contains 3 pairs of syndicate pyjamas and 3 plushies for the ultimate sleepover. components: - - type: StorageFill - contents: - - id: ClothingUniformJumpsuitPyjamaSyndicateRed - - id: ClothingUniformJumpsuitPyjamaSyndicateBlack - - id: ClothingUniformJumpsuitPyjamaSyndicatePink - - id: ClothingHeadPyjamaSyndicateRed - - id: ClothingHeadPyjamaSyndicateBlack - - id: ClothingHeadPyjamaSyndicatePink - - id: ClothingShoesSlippers - amount: 3 - - id: BedsheetSyndie - amount: 3 - - id: PlushieCarp - - id: PlushieNuke - - id: PlushieLizard - - id: PlushieSharkBlue + - type: StorageFill + contents: + - id: ClothingUniformJumpsuitPyjamaSyndicateRed + - id: ClothingUniformJumpsuitPyjamaSyndicateBlack + - id: ClothingUniformJumpsuitPyjamaSyndicatePink + - id: ClothingHeadPyjamaSyndicateRed + - id: ClothingHeadPyjamaSyndicateBlack + - id: ClothingHeadPyjamaSyndicatePink + - id: ClothingShoesSlippers + amount: 3 + - id: BedsheetSyndie + amount: 3 + - id: PlushieCarp + - id: PlushieNuke + - id: PlushieLizard + - id: PlushieSharkBlue - type: entity parent: ClothingBackpackDuffelSyndicateBundle @@ -221,27 +223,27 @@ name: syndicate C-4 bundle description: "Contains a lot of C-4 charges." components: - - type: StorageFill - contents: - - id: C4 - amount: 8 + - type: StorageFill + contents: + - id: C4 + amount: 8 - type: entity parent: ClothingBackpackChameleon id: ClothingBackpackChameleonFill suffix: Fill, Chameleon components: - - type: StorageFill - contents: - - id: ClothingUniformJumpsuitChameleon - - id: ClothingOuterChameleon - - id: ClothingNeckChameleon - - id: ClothingMaskGasChameleon - - id: ClothingHeadHatChameleon - - id: ClothingHandsChameleon - - id: ClothingEyesChameleon - - id: ClothingHeadsetChameleon - - id: ClothingShoesChameleon + - type: StorageFill + contents: + - id: ClothingUniformJumpsuitChameleon + - id: ClothingOuterChameleon + - id: ClothingNeckChameleon + - id: ClothingMaskGasChameleon + - id: ClothingHeadHatChameleon + - id: ClothingHandsChameleon + - id: ClothingEyesChameleon + - id: ClothingHeadsetChameleon + - id: ClothingShoesChameleon - type: entity parent: ClothingBackpackDuffelSyndicateBundle @@ -249,12 +251,13 @@ name: syndicate EVA bundle description: "Contains the Syndicate approved EVA suit." components: - - type: StorageFill - contents: - - id: ClothingHeadHelmetSyndicate - - id: ClothingOuterHardsuitSyndicate - - id: ClothingMaskGasSyndicate - - id: DoubleEmergencyOxygenTankFilled + - type: StorageFill + contents: + - id: ClothingHeadHelmetSyndicate + - id: ClothingOuterHardsuitSyndicate + - id: ClothingMaskGasSyndicate + - id: DoubleEmergencyOxygenTankFilled + - id: DoubleEmergencyNitrogenTankFilled - type: entity parent: ClothingBackpackDuffelSyndicateBundle @@ -262,11 +265,11 @@ name: syndicate hardsuit bundle description: "Contains the Syndicate's signature blood red hardsuit." components: - - type: StorageFill - contents: - - id: ClothingOuterHardsuitSyndie - - id: ClothingMaskGasSyndicate - - id: ClothingHandsGlovesCombat + - type: StorageFill + contents: + - id: ClothingOuterHardsuitSyndie + - id: ClothingMaskGasSyndicate + - id: ClothingHandsGlovesCombat - type: entity parent: ClothingBackpackDuffelSyndicateBundle @@ -274,26 +277,26 @@ name: syndicate zombie bundle description: "An all-in-one kit for unleashing the undead upon a station." components: - - type: StorageFill - contents: - - id: SyringeRomerol - - id: WeaponRevolverPython - - id: MagazineBoxMagnumIncendiary - - id: PillAmbuzolPlus - - id: PillAmbuzol - amount: 3 + - type: StorageFill + contents: + - id: SyringeRomerol + - id: WeaponRevolverPython + - id: MagazineBoxMagnumIncendiary + - id: PillAmbuzolPlus + - id: PillAmbuzol + amount: 3 - type: entity parent: ClothingBackpackDuffelSyndicateBundle id: ClothingBackpackDuffelSyndicateOperative name: operative duffelbag components: - - type: StorageFill - contents: - - id: BoxSurvivalSyndicate - - id: WeaponPistolViper - - id: PinpointerNuclear - - id: MicroBombImplanter + - type: StorageFill + contents: + - id: BoxSurvivalSyndicate + - id: WeaponPistolViper + - id: PinpointerSyndicateNuclear + - id: DeathAcidifierImplanter - type: entity @@ -302,18 +305,18 @@ name: operative medic duffelbag description: A large duffel bag for holding extra medical supplies. components: - - type: StorageFill - contents: - - id: BoxSurvivalSyndicate - - id: SawAdvanced - - id: Cautery - - id: CombatKnife - - id: WeaponPistolViper - - id: PinpointerNuclear - - id: HandheldHealthAnalyzer - - id: CombatMedipen - - id: MicroBombImplanter - - id: SyndiHypo + - type: StorageFill + contents: + - id: SyndiHypo + - id: BoxSurvivalSyndicate + - id: SawAdvanced + - id: Cautery + - id: CombatKnife + - id: WeaponPistolViper + - id: PinpointerSyndicateNuclear + - id: HandheldHealthAnalyzer + - id: CombatMedipen + - id: DeathAcidifierImplanter - type: entity parent: ClothingBackpackDuffelSyndicateMedicalBundle @@ -321,12 +324,12 @@ name: medical bundle description: "All you need to get your comrades back in the fight." components: - - type: StorageFill - contents: - - id: MedkitCombatFilled - - id: Defibrillator - - id: CombatMedipen - amount: 3 - - id: ClothingHandsGlovesLatex - - id: SyringeTranexamicAcid - - id: SyringeHyronalin + - type: StorageFill + contents: + - id: MedkitCombatFilled + - id: Defibrillator + - id: CombatMedipen + amount: 3 + - id: ClothingHandsGlovesNitrile + - id: SyringeTranexamicAcid + - id: SyringeHyronalin diff --git a/Resources/Prototypes/Catalog/Fills/Books/lore.yml b/Resources/Prototypes/Catalog/Fills/Books/lore.yml index 0fd712d42f..1ef46e2b3d 100644 --- a/Resources/Prototypes/Catalog/Fills/Books/lore.yml +++ b/Resources/Prototypes/Catalog/Fills/Books/lore.yml @@ -105,6 +105,16 @@ - type: Paper content: book-text-fishing +- type: entity + parent: BookFishing + id: BookFishops + name: Fishops Advanced User Manual, first edition + suffix: library salvage + description: Legends say the second edition was lost to time. + components: + - type: Paper + content: book-text-fishops + - type: entity parent: BookBase id: BookDetective diff --git a/Resources/Prototypes/Catalog/Fills/Boxes/general.yml b/Resources/Prototypes/Catalog/Fills/Boxes/general.yml index d40159de1a..4443986643 100644 --- a/Resources/Prototypes/Catalog/Fills/Boxes/general.yml +++ b/Resources/Prototypes/Catalog/Fills/Boxes/general.yml @@ -427,6 +427,58 @@ - type: RadiationBlockingContainer resistance: 2 +- type: entity + name: candle box + parent: BoxCardboard + id: BoxCandle + components: + - type: Item + size: 30 + - type: Sprite + layers: + - state: box + - state: candle + - type: Storage + capacity: 30 + - type: StorageFill + contents: + - id: Candle + amount: 3 + - id: CandleBlue + amount: 3 + - id: CandleRed + amount: 3 + - id: CandleGreen + amount: 3 + - id: CandlePurple + amount: 3 + +- type: entity + name: small candle box + parent: BoxCardboard + id: BoxCandleSmall + components: + - type: Item + size: 30 + - type: Sprite + layers: + - state: box + - state: candle + - type: Storage + capacity: 25 + - type: StorageFill + contents: + - id: CandleSmall + amount: 5 + - id: CandleBlueSmall + amount: 5 + - id: CandleRedSmall + amount: 5 + - id: CandleGreenSmall + amount: 5 + - id: CandlePurpleSmall + amount: 5 + - type: entity name: darts box parent: BoxCardboard diff --git a/Resources/Prototypes/Catalog/Fills/Boxes/medical.yml b/Resources/Prototypes/Catalog/Fills/Boxes/medical.yml index 41ee064ce0..ff1bed3728 100644 --- a/Resources/Prototypes/Catalog/Fills/Boxes/medical.yml +++ b/Resources/Prototypes/Catalog/Fills/Boxes/medical.yml @@ -123,3 +123,22 @@ whitelist: tags: - BodyBag + +- type: entity + name: vial box + parent: BoxCardboard + id: BoxVial + description: A box full of vials. + components: + - type: Storage + capacity: 12 + #grid: + #- 0,0,2,1 + - type: StorageFill + contents: + - id: BaseChemistryEmptyVial + amount: 6 + - type: Sprite + layers: + - state: box + - state: vials diff --git a/Resources/Prototypes/Catalog/Fills/Boxes/security.yml b/Resources/Prototypes/Catalog/Fills/Boxes/security.yml index 027aaf19f6..a98b9eea64 100644 --- a/Resources/Prototypes/Catalog/Fills/Boxes/security.yml +++ b/Resources/Prototypes/Catalog/Fills/Boxes/security.yml @@ -4,6 +4,10 @@ id: BoxHandcuff description: A box full of handcuffs. components: + - type: Storage + whitelist: + components: + - Handcuff - type: StorageFill contents: - id: Handcuffs diff --git a/Resources/Prototypes/Catalog/Fills/Boxes/syndicate.yml b/Resources/Prototypes/Catalog/Fills/Boxes/syndicate.yml index a6c3ca0d6a..3ff3536fef 100644 --- a/Resources/Prototypes/Catalog/Fills/Boxes/syndicate.yml +++ b/Resources/Prototypes/Catalog/Fills/Boxes/syndicate.yml @@ -10,3 +10,23 @@ amount: 3 - id: EmpImplanter amount: 1 + +- type: entity + parent: BoxVial + id: ChemicalSynthesisKit + name: chemical synthesis kit + description: A starter kit for the aspiring chemist, includes toxin and vestine for all your criminal needs! + components: + - type: Storage + capacity: 30 + - type: StorageFill + contents: + - id: Beaker + amount: 2 + - id: Dropper + # It would be cool to have special "syndicate" chemical analysis goggles + - id: ClothingEyesGlassesChemical + - id: VestineChemistryVial + amount: 2 + - id: BaseChemistryEmptyVial + - id: SyringeStimulants diff --git a/Resources/Prototypes/Catalog/Fills/Crates/cargo.yml b/Resources/Prototypes/Catalog/Fills/Crates/cargo.yml index a5dc8e53c6..d028d20b24 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/cargo.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/cargo.yml @@ -5,3 +5,285 @@ - type: StorageFill contents: - id: ClothingOuterHardsuitLuxury + +- type: entity + id: CrateCargoGambling + name: the grand lottery $$$ + description: A box containing treasure beyond your greatest imaginations! + parent: CratePrivateSecure + components: + #never make a storage fill this large + - type: StorageFill + contents: + - id: SpaceCash1000000 + prob: 0.001 + orGroup: Money + - id: SpaceCash10000 + prob: 0.01 + orGroup: Money + - id: SpaceCash5000 + prob: 0.1 + orGroup: Money + - id: SpaceCash2500 + prob: 0.4 + orGroup: Money + - id: SpaceCash500 + prob: 0.3 + orGroup: Money + - id: SpaceCash100 + prob: 0.1 + orGroup: Money + - id: SpaceCash10 + prob: 0.05 + orGroup: Money + - id: SpaceCash + prob: 0.01 + orGroup: Money + #junk + - id: CigaretteSpent + prob: 0.1 + orGroup: Junk + - id: FoodBowlBigTrash + prob: 0.1 + orGroup: Junk + - id: FoodFrozenPopsicleTrash + prob: 0.1 + orGroup: Junk + - id: FoodCornTrash + prob: 0.1 + orGroup: Junk + - id: TrashBananaPeel + prob: 0.1 + orGroup: Junk + - id: TrashBananaPeelExplosive + prob: 0.001 + orGroup: Junk + - id: FoodTinBeansTrash + prob: 0.1 + orGroup: Junk + - id: TrashBakedBananaPeel + prob: 0.1 + orGroup: Junk + - id: TrashMimanaPeel + prob: 0.1 + orGroup: Junk + - id: TrashBananiumPeel + prob: 0.1 + orGroup: Junk + #canisters + - id: AirCanister + prob: 0.01 + orGroup: Canister + - id: AmmoniaCanister + prob: 0.01 + orGroup: Canister + - id: CarbonDioxideCanister + prob: 0.01 + orGroup: Canister + - id: FrezonCanister + prob: 0.001 + orGroup: Canister + - id: NitrogenCanister + prob: 0.01 + orGroup: Canister + - id: NitrousOxideCanister + prob: 0.01 + orGroup: Canister + - id: OxygenCanister + prob: 0.01 + orGroup: Canister + - id: PlasmaCanister + prob: 0.01 + orGroup: Canister + - id: TritiumCanister + prob: 0.01 + orGroup: Canister + - id: WaterVaporCanister + prob: 0.01 + orGroup: Canister + #weapons + - id: WeaponPulseCarbine + prob: 0.001 + orGroup: Weapons + - id: WeaponRifleAk + prob: 0.001 + orGroup: Weapons + - id: WeaponLauncherPirateCannon + prob: 0.001 + orGroup: Weapons + - id: WeaponPistolCHIMP + prob: 0.01 + orGroup: Weapons + - id: WeaponSniperMosin + prob: 0.01 + orGroup: Weapons + - id: WeaponMakeshiftLaser + prob: 0.01 + orGroup: Weapons + - id: Sledgehammer + prob: 0.01 + orGroup: Weapons + - id: WeaponMeleeToolboxRobust + prob: 0.01 + orGroup: Weapons + - id: ThrowingStar + prob: 0.01 + orGroup: Weapons + - id: WeaponLaserGun + prob: 0.01 + orGroup: Weapons + #clothing + - id: ClothingUniformJumpsuitFamilyGuy + prob: 0.05 + orGroup: Clothes + - id: ClothingOuterHardsuitCBURN + prob: 0.01 + orGroup: Clothes + - id: ClothingBackpackERTClown + prob: 0.01 + orGroup: Clothes + - id: ClothingNeckCloakAdmin + prob: 0.01 + orGroup: Clothes + - id: ClothingOuterFlannelBlue + prob: 0.01 + orGroup: Clothes + - id: ClothingHeadHelmetBone + prob: 0.01 + orGroup: Clothes + - id: ClothingOuterSuitCarp + prob: 0.01 + orGroup: Clothes + - id: ClothingHeadHatCatEars + prob: 0.01 + orGroup: Clothes + - id: ClothingOuterArmorReflective + prob: 0.01 + orGroup: Clothes + - id: ClothingUniformJumpskirtSyndieFormalDress + prob: 0.01 + orGroup: Clothes + #swag + - id: ClothingNeckBling + prob: 0.01 + orGroup: Swag + - id: ClothingShoesBling + prob: 0.01 + orGroup: Swag + - id: IngotGold1 + prob: 0.01 + orGroup: Swag + - id: IngotGold + prob: 0.01 + orGroup: Swag + - id: GoldOre1 + prob: 0.01 + orGroup: Swag + - id: GoldOre + prob: 0.01 + orGroup: Swag + - id: DrinkGoldenCup + prob: 0.01 + orGroup: Swag + - id: ToolboxGoldFilled + prob: 0.01 + orGroup: Swag + - id: ClothingEyesGlassesGar + prob: 0.01 + orGroup: Swag + - id: ClothingHeadHatChameleon + prob: 0.01 + orGroup: Swag + #plushies + - id: PlushieRGBee + prob: 0.01 + orGroup: Plushies + - id: PlushieGhost + prob: 0.01 + orGroup: Plushies + - id: PlushieHampter + prob: 0.01 + orGroup: Plushies + - id: PlushieGhostRevenant + prob: 0.01 + orGroup: Plushies + - id: PlushiePenguin + prob: 0.01 + orGroup: Plushies + - id: PlushieLizard + prob: 0.01 + orGroup: Plushies + - id: PlushieRouny + prob: 0.01 + orGroup: Plushies + - id: PlushieLamp + prob: 0.01 + orGroup: Plushies + - id: PlushieSharkBlue + prob: 0.01 + orGroup: Plushies + - id: PlushieMoth + prob: 0.01 + orGroup: Plushies + #useful + - id: AmeJar + prob: 0.01 + orGroup: Useful + - id: Omnitool + prob: 0.01 + orGroup: Useful + - id: SoapOmega + prob: 0.01 + orGroup: Useful + - id: ClothingEyesGlassesMeson + prob: 0.01 + orGroup: Useful + - id: MechVim + prob: 0.01 + orGroup: Useful + - id: Chainsaw + prob: 0.01 + orGroup: Useful + - id: Crowbar + prob: 0.01 + orGroup: Useful + - id: WelderIndustrial + prob: 0.01 + orGroup: Useful + - id: HydroponicsToolHatchet + prob: 0.01 + orGroup: Useful + - id: ToyAmongPequeno + prob: 0.01 + orGroup: Useful + #notuseful + - id: LidSalami + prob: 0.01 + orGroup: NotUseful + - id: MobHamsterHamlet + prob: 0.01 + orGroup: NotUseful + - id: MobLaserRaptor + prob: 0.01 + orGroup: NotUseful + - id: DrinkNothing + prob: 0.01 + orGroup: NotUseful + - id: FoodOatmeal + prob: 0.01 + orGroup: NotUseful + - id: FoodDonutChaos + prob: 0.01 + orGroup: NotUseful + - id: RagItem + prob: 0.01 + orGroup: NotUseful + - id: ClothingHandsGlovesColorYellowBudget + prob: 0.01 + orGroup: NotUseful + - id: CartridgeCap + prob: 0.01 + orGroup: NotUseful + - id: EncryptionKeyCommon + prob: 0.01 + orGroup: NotUseful diff --git a/Resources/Prototypes/Catalog/Fills/Crates/engineering.yml b/Resources/Prototypes/Catalog/Fills/Crates/engineering.yml index b8e0714328..c0982e035b 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/engineering.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/engineering.yml @@ -127,3 +127,20 @@ amount: 2 - id: ClothingOuterHardsuitEVA amount: 2 + +- type: entity + id: CrateRCDAmmo + parent: CrateEngineering + components: + - type: StorageFill + contents: + - id: RCDAmmo + amount: 3 + +- type: entity + id: CrateRCD + parent: CrateEngineeringSecure + components: + - type: StorageFill + contents: + - id: RCD diff --git a/Resources/Prototypes/Catalog/Fills/Crates/food.yml b/Resources/Prototypes/Catalog/Fills/Crates/food.yml index 3a36a1d6b6..1cfc89f26c 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/food.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/food.yml @@ -48,9 +48,9 @@ amount: 3 - id: ReagentContainerRice amount: 3 - - id: ReagentContainerMilk + - id: DrinkMilkCarton amount: 4 - - id: ReagentContainerMilkSoy + - id: DrinkSoyMilkCarton amount: 2 - id: ReagentContainerSugar amount: 2 diff --git a/Resources/Prototypes/Catalog/Fills/Crates/fun.yml b/Resources/Prototypes/Catalog/Fills/Crates/fun.yml index 9c5853d49e..59c7e94caf 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/fun.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/fun.yml @@ -26,6 +26,7 @@ - id: PlushieMoth - id: PlushieMothRandom # Nyanotrasen - Random Moth Plushies amount: 2 + - id: PlushiePenguin - type: entity id: CrateFunInstrumentsVariety @@ -131,7 +132,6 @@ - type: StorageFill contents: - id: CrayonBox - - id: CrayonWhite - type: entity id: CrateFunBoardGames @@ -198,6 +198,14 @@ - id: DrinkLean amount: 4 - id: KnifePlastic + - id: ClothingHeadHatPartyRed + amount: 2 + - id: ClothingHeadHatPartyYellow + amount: 2 + - id: ClothingHeadHatPartyGreen + amount: 2 + - id: ClothingHeadHatPartyBlue + amount: 2 - type: entity id: CrateFunWaterGuns @@ -271,6 +279,7 @@ - id: ClothingShoesClownLarge - id: ClothingHeadHatMagician - id: BeachBall + - id: ClothingShoesSkates - type: entity id: CrateFunBikeHornImplants @@ -304,7 +313,7 @@ - id: TargetDarts amount: 1 - id: BoxDarts - amount: 1 + amount: 2 - id: BoxDarts amount: 1 prob: 0.05 diff --git a/Resources/Prototypes/Catalog/Fills/Crates/materials.yml b/Resources/Prototypes/Catalog/Fills/Crates/materials.yml index fd49ec339c..dc73a5106a 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/materials.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/materials.yml @@ -70,6 +70,15 @@ - id: MaterialCardboard amount: 2 +- type: entity + id: CrateMaterialPaper + parent: CrateGenericSteel + components: + - type: StorageFill + contents: + - id: SheetPaper + amount: 3 + #- type: entity # id: CrateMaterialHFuelTank # name: fueltank crate diff --git a/Resources/Prototypes/Catalog/Fills/Crates/medical.yml b/Resources/Prototypes/Catalog/Fills/Crates/medical.yml index 17b9115001..20d7f7a1e4 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/medical.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/medical.yml @@ -28,6 +28,14 @@ - id: BoxBottle amount: 2 +- type: entity + id: CrateChemistryVials + parent: CrateMedical + components: + - type: StorageFill + contents: + - id: BoxVial + - type: entity id: CrateMindShieldImplants parent: CrateMedical diff --git a/Resources/Prototypes/Catalog/Fills/Crates/npc.yml b/Resources/Prototypes/Catalog/Fills/Crates/npc.yml index 8dc0104bbb..b88b82d7d4 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/npc.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/npc.yml @@ -31,6 +31,9 @@ - id: MobCatCaracal prob: 0.5 orGroup: MobCat + - id: MobCatKitten + prob: 0.25 + orGroup: MobCat - id: MobBingus prob: 0.005 orGroup: MobCat @@ -74,6 +77,14 @@ contents: - id: MobCorgi +- type: entity + id: CrateNPCPuppyCorgi + parent: CrateLivestock + components: + - type: StorageFill + contents: + - id: MobCorgiPuppy + - type: entity id: CrateNPCCow parent: CrateLivestock @@ -192,3 +203,12 @@ - type: StorageFill contents: - id: MobKangaroo + +- type: entity + id: CrateNPCMothroach + parent: CrateLivestock + components: + - type: StorageFill + contents: + - id: MobMothroach + amount: 4 diff --git a/Resources/Prototypes/Catalog/Fills/Crates/security.yml b/Resources/Prototypes/Catalog/Fills/Crates/security.yml index b5f5518664..1501816c86 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/security.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/security.yml @@ -86,4 +86,16 @@ - id: ClothingMaskSterile amount: 2 +- type: entity + id: CrateSecurityTrackingMindshieldImplants + name: Implanter Crate + parent: CrateSecgear + components: + - type: StorageFill + contents: + - id: MindShieldImplanter + amount: 4 + - id: TrackingImplanter + amount: 4 + # Cosmetic Crates diff --git a/Resources/Prototypes/Catalog/Fills/Crates/service.yml b/Resources/Prototypes/Catalog/Fills/Crates/service.yml index 2b7c5db0f7..a1cb914a1a 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/service.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/service.yml @@ -74,7 +74,9 @@ - id: ClothingMaskMime - id: ClothingShoesClown - id: ClothingUniformJumpskirtJanimaid + - id: ClothingNeckCloakVoid - id: RevolverCapGun + - id: BarberScissors - type: entity id: CrateServiceCustomSmokable @@ -174,6 +176,13 @@ components: - type: StorageFill contents: + # Creatures + - id: MobCockroach + prob: 0.05 + - id: MobMothroach + prob: 0.03 + - id: MobMouse + prob: 0.05 # Food Packaging - id: FoodPacketBoritosTrash prob: 0.1 @@ -228,15 +237,20 @@ prob: 0.15 - id: LightBulbBroken prob: 0.15 - - id: CableApcStack10 - prob: 0.15 - id: MobMouseDead prob: 0.1 - - id: RagItem - prob: 0.1 - - id: FoodKebabSkewer - prob: 0.1 - id: Syringe prob: 0.1 - id: ShardGlassPlasma prob: 0.1 + +- type: entity + id: CrateJanitorExplosive + parent: ClosetJanitorBomb + components: + - type: StorageFill + contents: + - id: ClothingOuterSuitJanitorBomb + amount: 1 + - id: ClothingHeadHelmetJanitorBombSuit + amount: 1 diff --git a/Resources/Prototypes/Catalog/Fills/Items/belt.yml b/Resources/Prototypes/Catalog/Fills/Items/belt.yml index f784768925..2b193fd61b 100644 --- a/Resources/Prototypes/Catalog/Fills/Items/belt.yml +++ b/Resources/Prototypes/Catalog/Fills/Items/belt.yml @@ -49,7 +49,7 @@ - type: StorageFill contents: - id: GrenadeFlashBang - - id: GrenadeFlashBang + - id: TearGasGrenade - id: Stunbaton - id: Handcuffs - id: Handcuffs @@ -85,20 +85,18 @@ - type: entity id: ClothingBeltParamedicFilled - parent: ClothingBeltMedical - suffix: Filled + parent: ClothingBeltMedical #in the future, make this a seperate prototype so it can have a unique, darker sprite + name: EMT belt + suffix: Paramedic,Filled components: - type: StorageFill contents: - id: Brutepack - amount: 1 - id: Ointment - amount: 1 - id: Bloodpack - amount: 1 - id: Gauze - id: EmergencyMedipen #You never know what people are going to latejoin into - amount: 6 + amount: 3 - type: entity id: ClothingBeltPlantFilled @@ -116,9 +114,10 @@ parent: ClothingBeltSheath suffix: Filled components: - - type: StorageFill - contents: - - id: CaptainSabre + - type: ContainerFill + containers: + item: + - CaptainSabre - type: entity id: ClothingBeltMilitaryWebbingGrenadeFilled diff --git a/Resources/Prototypes/Catalog/Fills/Items/firstaidkits.yml b/Resources/Prototypes/Catalog/Fills/Items/firstaidkits.yml index 8cc7d6b6d4..faa8535ab4 100644 --- a/Resources/Prototypes/Catalog/Fills/Items/firstaidkits.yml +++ b/Resources/Prototypes/Catalog/Fills/Items/firstaidkits.yml @@ -12,8 +12,7 @@ - id: Ointment amount: 2 - id: Gauze - - id: PillTricordrazine - amount: 5 + - id: PillCanisterTricordrazine # see https://github.com/tgstation/blob/master/code/game/objects/items/storage/firstaid.dm for example contents - type: entity @@ -28,10 +27,8 @@ - id: Ointment amount: 2 - id: SyringeSigynate - - id: PillKelotane - amount: 5 - - id: PillDermaline - amount: 5 + - id: PillCanisterKelotane + - id: PillCanisterDermaline - type: entity id: MedkitBruteFilled @@ -45,10 +42,9 @@ - id: Gauze - id: Bloodpack - id: SyringeTranexamicAcid - - id: PillIron - amount: 5 - - id: PillBicaridine - amount: 5 + - id: PillCanisterIron + - id: PillCanisterCopper + - id: PillCanisterBicaridine - type: entity id: MedkitToxinFilled @@ -60,10 +56,8 @@ - id: SyringeIpecac - id: SyringeEthylredoxrazine - id: AntiPoisonMedipen - - id: PillDylovene - amount: 5 - - id: PillCharcoal - amount: 3 + - id: PillCanisterDylovene + - id: PillCanisterCharcoal - type: entity id: MedkitOxygenFilled @@ -76,8 +70,7 @@ - id: EmergencyOxygenTankFilled - id: EmergencyMedipen - id: SyringeInaprovaline - - id: PillDexalin - amount: 7 + - id: PillCanisterDexalin - type: entity id: MedkitRadiationFilled @@ -92,8 +85,7 @@ amount: 1 - id: EmergencyMedipen amount: 1 - - id: PillHyronalin - amount: 5 + - id: PillCanisterHyronalin - type: entity id: MedkitAdvancedFilled @@ -120,11 +112,9 @@ - id: MedicatedSuture - id: RegenerativeMesh - id: SyringeEphedrine - - id: SyringeSaline - id: BruteAutoInjector - id: BurnAutoInjector - id: EmergencyMedipen - - id: Bloodpack - type: entity id: StimkitFilled diff --git a/Resources/Prototypes/Catalog/Fills/Items/gas_tanks.yml b/Resources/Prototypes/Catalog/Fills/Items/gas_tanks.yml index e013fb3710..8614319bf2 100644 --- a/Resources/Prototypes/Catalog/Fills/Items/gas_tanks.yml +++ b/Resources/Prototypes/Catalog/Fills/Items/gas_tanks.yml @@ -54,6 +54,21 @@ - 0.270782035 # oxygen temperature: 293.15 +- type: entity + id: EmergencyNitrogenTankFilled + parent: EmergencyNitrogenTank + suffix: Filled + components: + - type: GasTank + outputPressure: 21.3 + air: + # 9 minutes + volume: 1.5 + moles: + - 0 # oxygen + - 0.615413715 #nitrogen + temperature: 293.15 + - type: entity id: ExtendedEmergencyOxygenTankFilled parent: ExtendedEmergencyOxygenTank @@ -68,6 +83,22 @@ - 0.615413715 # oxygen temperature: 293.15 +- type: entity + id: ExtendedEmergencyNitrogenTankFilled + parent: ExtendedEmergencyNitrogenTank + suffix: Filled + components: + - type: GasTank + outputPressure: 21.3 + air: + # 9 minutes + volume: 1.5 + moles: + - 0 # oxygen + - 0.615413715 # nitrogen + temperature: 293.15 + + - type: entity id: DoubleEmergencyOxygenTankFilled parent: DoubleEmergencyOxygenTank @@ -82,6 +113,21 @@ - 1.025689525 # oxygen temperature: 293.15 +- type: entity + id: DoubleEmergencyNitrogenTankFilled + parent: DoubleEmergencyNitrogenTank + suffix: Filled + components: + - type: GasTank + outputPressure: 21.3 + air: + # 15 minutes + volume: 2.5 + moles: + - 0 # oxygen + - 1.025689525 # nitrogen + temperature: 293.15 + - type: entity id: AirTankFilled parent: AirTank @@ -105,7 +151,6 @@ name: nitrogen tank components: - type: GasTank - outputPressure: 21.3 air: # 31 minutes volume: 5 @@ -137,7 +182,7 @@ - 0 # plasma - 0 # tritium - 0 # water vapor - - 0 # miasma + - 0 # ammonia - 0.615413715 # 30% N2O # 2.051379050 total temperature: 293.15 diff --git a/Resources/Prototypes/Catalog/Fills/Items/misc.yml b/Resources/Prototypes/Catalog/Fills/Items/misc.yml index 8f58df7ce5..543cd604a2 100644 --- a/Resources/Prototypes/Catalog/Fills/Items/misc.yml +++ b/Resources/Prototypes/Catalog/Fills/Items/misc.yml @@ -3,16 +3,18 @@ parent: ClothingShoesBootsCombat suffix: Filled components: - - type: StorageFill - contents: - - id: CombatKnife + - type: ContainerFill + containers: + item: + - CombatKnife - type: entity id: ClothingShoesBootsMercFilled parent: ClothingShoesBootsMerc suffix: Filled components: - - type: StorageFill - contents: - - id: KukriKnife + - type: ContainerFill + containers: + item: + - KukriKnife diff --git a/Resources/Prototypes/Catalog/Fills/Items/toolboxes.yml b/Resources/Prototypes/Catalog/Fills/Items/toolboxes.yml index 234481af8d..25ec0dca86 100644 --- a/Resources/Prototypes/Catalog/Fills/Items/toolboxes.yml +++ b/Resources/Prototypes/Catalog/Fills/Items/toolboxes.yml @@ -43,7 +43,7 @@ - type: entity id: ToolboxElectricalTurretFilled name: electrical toolbox - suffix: Filled + suffix: Syndicate, Turret, Filled parent: ToolboxElectricalTurret components: - type: StorageFill @@ -61,6 +61,27 @@ - id: CableHVStack10 orGroup: GlovesOrWires +- type: entity + id: ToolboxArtisticFilled + name: artistic toolbox + suffix: Filled + parent: ToolboxArtistic + components: + - type: StorageFill + contents: + - id: CrayonBox + - id: Paper + amount: 3 + - id: Pen + - id: MysteryFigureBox + prob: 0.5 + - id: MysteryFigureBox + prob: 0.5 + - id: BookRandom + amount: 2 + - id: CrayonMime + - id: CrayonRainbow + - type: entity id: ToolboxMechanicalFilled name: mechanical toolbox diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/cargo.yml b/Resources/Prototypes/Catalog/Fills/Lockers/cargo.yml index 293e746112..f11f6b5e39 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/cargo.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/cargo.yml @@ -16,6 +16,7 @@ - id: SurvivalKnife - id: HandheldGPSBasic - id: RadioHandheld + - id: ClothingShoesBootsWinterMiner #Delta V: Add departmental winter boots - id: OreBag prob: 0.5 - id: Flare @@ -38,6 +39,7 @@ - id: SurvivalKnife - id: HandheldGPSBasic - id: RadioHandheld + - id: ClothingShoesBootsWinterMiner #Delta V: Add departmental winter boots - id: OreBag prob: 0.5 - id: Flare diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml b/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml index 468692fd62..8c6e703168 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml @@ -90,6 +90,8 @@ - id: MedkitOxygenFilled - id: HolofanProjector - id: DoorRemoteFirefight + - id: RCD + - id: RCDAmmo - type: entity id: LockerAtmosphericsFilled @@ -105,6 +107,8 @@ - id: MedkitOxygenFilled - id: HolofanProjector - id: DoorRemoteFirefight + - id: RCD + - id: RCDAmmo - type: entity id: LockerEngineerFilledHardsuit @@ -119,6 +123,8 @@ - id: OxygenTankFilled - id: NitrogenTankFilled - id: ClothingShoesBootsMag + - id: RCD + - id: RCDAmmo - type: entity id: LockerEngineerFilled @@ -130,6 +136,8 @@ - id: ClothingHandsGlovesColorYellow - id: ClothingMaskGas - id: trayScanner + - id: RCD + - id: RCDAmmo - type: entity id: ClosetRadiationSuitFilled diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index 5a0b90101c..53242f549b 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -24,6 +24,8 @@ - id: BoxEncryptionKeyCargo - id: SpaceCashLuckyBill # DeltaV - LO steal objective, see Resources/Prototypes/DeltaV/Entities/Objects/Misc/first_bill.yml - id: BoxPDACargo # Delta-V + - id: QuartermasterIDCard # Delta-V + - id: ClothingShoesBootsWinterLogisticsOfficer #Delta V: Add departmental winter boots - type: entity id: LockerCaptainFilledHardsuit @@ -35,10 +37,10 @@ - id: ClothingOuterArmorCaptainCarapace - id: NukeDisk - id: PinpointerNuclear - - id: CaptainIDCard +# - id: CaptainIDCard # DeltaV - Replaced by the spare ID system - id: ClothingHeadHatCaptain - id: ClothingHandsGlovesInspection # DeltaV - ClothingHandsGlovesCaptain replaced in favour of inspection gloves - - id: ClothingHandsGlovesCaptain + - id: ClothingNeckCloakCap - id: ClothingOuterHardsuitCap - id: ClothingMaskGasCaptain - id: WeaponDisabler @@ -62,6 +64,7 @@ - id: ClothingHeadHatBeretCap # Nyanotrasen - Captain's Beret - id: ClothingShoesLeather # DeltaV - add fancy shoes for HoP and cap - id: ClothingShoesMiscWhite # DeltaV - add fancy shoes for HoP and cap + - id: ClothingShoesBootsWinterCap #Delta V: Add departmental winter boots - type: entity id: LockerCaptainFilled @@ -98,6 +101,7 @@ - id: ClothingHeadHatBeretCap # Nyanotrasen - Captain's Beret - id: ClothingShoesLeather # DeltaV - add fancy shoes for HoP and cap - id: ClothingShoesMiscWhite # DeltaV - add fancy shoes for HoP and cap + - id: ClothingShoesBootsWinterCap #Delta V: Add departmental winter boots - type: entity id: LockerHeadOfPersonnelFilled @@ -115,6 +119,7 @@ - id: BoxHeadset - id: IDComputerCircuitboard - id: WeaponDisabler + - id: ClothingOuterCoatHoPArmored # DeltaV - id: ClothingOuterWinterHoP - id: ClothingOuterArmorDuraVest # DeltaV - replaced HoP's armoured coat with a standard stabproof, pending HoPcoat resprite - id: ClothingOuterCoatHoPFormal # DeltaV - formal jacket @@ -137,7 +142,7 @@ - id: ClothingUniformJumpsuitBoatswain # DeltaV - Add turtleneck for HoP. - id: ClothingShoesBootsLaceup # DeltaV - add fancy shoes for HoP and cap - id: ClothingShoesMiscWhite # DeltaV - add fancy shoes for HoP and cap - - id: ClothingOuterHardsuitHoP # Parkstation-HoPSuit + - id: ClothingShoesBootsWinterHeadOfPersonel #Delta V: Add departmental winter boots - type: entity id: LockerChiefEngineerFilledHardsuit @@ -167,6 +172,10 @@ - id: BoxEncryptionKeyEngineering - id: AccessConfigurator - id: BoxPDAEngineering # Delta-V + - id: CEIDCard # Delta-V + - id: ClothingShoesBootsWinterChiefEngineer #Delta V: Add departmental winter boots + - id: RCD + - id: RCDAmmo - type: entity id: LockerChiefEngineerFilled @@ -190,6 +199,10 @@ - id: BoxEncryptionKeyEngineering - id: AccessConfigurator - id: BoxPDAEngineering # Delta-V + - id: CEIDCard # Delta-V + - id: ClothingShoesBootsWinterChiefEngineer #Delta V: Add departmental winter boots + - id: RCD + - id: RCDAmmo - type: entity id: LockerChiefMedicalOfficerFilledHardsuit @@ -216,6 +229,8 @@ - id: BoxEncryptionKeyMedical - id: BoxPDAMedical # Delta-V - id: ClothingBeltMilitaryWebbingCMO # DeltaV - add webbing for CMO. ON THIS STATION, IT'S DRIP OR [die], CAPTAIN! + - id: CMOIDCard # Delta-V + - id: ClothingShoesBootsWinterChiefMedicalOfficer #Delta V: Add departmental winter boots - type: entity id: LockerChiefMedicalOfficerFilled @@ -241,6 +256,8 @@ - id: BoxEncryptionKeyMedical - id: BoxPDAMedical # Delta-V - id: ClothingBeltMilitaryWebbingCMO # DeltaV - add webbing for CMO. ON THIS STATION, IT'S DRIP OR [die], CAPTAIN! + - id: CMOIDCard # Delta-V + - id: ClothingShoesBootsWinterChiefMedicalOfficer #Delta V: Add departmental winter boots - type: entity id: LockerResearchDirectorFilledHardsuit @@ -264,6 +281,8 @@ - id: ClothingHeadsetAltScience - id: BoxEncryptionKeyScience - id: BoxPDAScience # Delta-V + - id: RDIDCard # Delta-V + - id: ClothingShoesBootsWinterMystagogue #Delta V: Add departmental winter boots - type: entity id: LockerResearchDirectorFilled @@ -286,6 +305,8 @@ - id: ClothingHeadsetAltScience - id: BoxEncryptionKeyScience - id: BoxPDAScience # Delta-V + - id: RDIDCard # Delta-V + - id: ClothingShoesBootsWinterMystagogue #Delta V: Add departmental winter boots - type: entity id: LockerHeadOfSecurityFilledHardsuit @@ -306,7 +327,7 @@ - id: ClothingMaskGasSwat - id: ClothingBeltSecurityFilled - id: ClothingHeadsetAltSecurity - - id: ClothingEyesGlassesSecurity + - id: ClothingEyesGlassesSunglasses - id: ClothingShoesBootsJack - id: CigarGoldCase prob: 0.50 @@ -320,6 +341,9 @@ - id: HoloprojectorSecurity - id: BookSecretDocuments - id: BoxPDASecurity # Delta-V + - id: WeaponEnergyGunMultiphase # DeltaV - HoS Energy Gun + - id: HoSIDCard # Delta-V + - id: ClothingShoesBootsWinterHeadOfSecurity #Delta V: Add departmental winter boots - type: entity id: LockerHeadOfSecurityFilled @@ -338,7 +362,7 @@ - id: ClothingUniformJumpsuitHoSAlt - id: ClothingBeltSecurityFilled - id: ClothingHeadsetAltSecurity - - id: ClothingEyesGlassesSecurity + - id: ClothingEyesGlassesSunglasses - id: ClothingShoesBootsJack - id: CigarGoldCase prob: 0.50 @@ -351,3 +375,22 @@ - id: HoloprojectorSecurity - id: BookSecretDocuments - id: BoxPDASecurity # Delta-V + - id: WeaponEnergyGunMultiphase # DeltaV - HoS Energy Gun + - id: HoSIDCard # Delta-V + - id: ClothingShoesBootsWinterHeadOfSecurity #Delta V: Add departmental winter boots + +- type: entity + id: LockerFreezerVaultFilled + suffix: Vault, Locked + parent: LockerFreezerBase + components: + - type: AccessReader + access: [ [ "Command" ] ] + - type: StorageFill + contents: + - id: WeaponRevolverDeckard + - id: ClothingOuterHardsuitBasic + - id: JetpackBlue + - id: SpaceCash1000 + - id: BeachBall + - id: BikeHorn diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/medical.yml b/Resources/Prototypes/Catalog/Fills/Lockers/medical.yml index 66eaee35a3..a2b8bd928a 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/medical.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/medical.yml @@ -156,6 +156,7 @@ prob: 0.3 - id: BoxPillCanister - id: BoxBottle + - id: BoxVial - id: ChemBag - id: ClothingHandsGlovesLatex - id: ClothingHeadsetMedical @@ -178,6 +179,7 @@ - id: ClothingHandsGlovesLatex - id: ClothingHeadsetMedical - id: ClothingMaskSterile + - id: ClothingShoesBootsWinterParamedic #Delta V: Add departmental winter boots - id: MedkitFilled prob: 0.3 @@ -192,11 +194,13 @@ - id: ClothingOuterHardsuitVoidParamed - id: ClothingOuterCoatParamedicWB - id: ClothingHeadHatParamedicsoft + - id: ClothingOuterWinterPara - id: ClothingUniformJumpsuitParamedic - id: ClothingUniformJumpskirtParamedic - id: ClothingEyesHudMedical - id: ClothingHandsGlovesLatex - id: ClothingHeadsetMedical - id: ClothingMaskSterile + - id: ClothingShoesBootsWinterParamedic #Delta V: Add departmental winter boots - id: MedkitFilled prob: 0.3 diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml b/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml index 72c04044c2..946ce45954 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml @@ -11,6 +11,7 @@ - id: ClothingUniformJumpsuitOperative - id: ClothingUniformJumpskirtOperative - id: ClothingHeadsetAltSyndicate + - id: ClothingEyesHudSyndicate - type: entity id: ClosetEmergencyFilledRandom @@ -27,6 +28,12 @@ - id: OxygenTankFilled prob: 0.20 orGroup: EmergencyTankOrRegularTank + - id: EmergencyNitrogenTankFilled + prob: 0.80 + orGroup: EmergencyNitrogenOrRegularNitrogen + - id: NitrogenTankFilled + prob: 0.20 + orGroup: EmergencyNitrogenOrRegularNitrogen - id: ToolboxEmergencyFilled prob: 0.4 - id: MedkitOxygenFilled @@ -51,6 +58,12 @@ - id: OxygenTankFilled prob: 0.20 orGroup: EmergencyTankOrRegularTank + - id: NitrogenTankFilled + prob: 0.80 + orGroup: EmergencyNitrogenOrRegularNitrogen + - id: EmergencyNitrogenTankFilled + prob: 0.20 + orGroup: EmergencyNitrogenOrRegularNitrogen - id: ToolboxEmergencyFilled prob: 0.4 - id: MedkitOxygenFilled @@ -71,6 +84,7 @@ - id: ClothingHeadHelmetFire - id: ClothingMaskGas - id: YellowOxygenTankFilled + - id: NitrogenTankFilled - id: FireExtinguisher prob: 0.25 - type: entity @@ -84,6 +98,7 @@ - id: ClothingHeadHelmetFire - id: ClothingMaskGas - id: YellowOxygenTankFilled + - id: NitrogenTankFilled - id: FireExtinguisher prob: 0.25 - type: entity @@ -115,6 +130,8 @@ prob: 0.2 - id: PlushieSnake prob: 0.2 + - id: ClothingShoesSkates + prob: 0.1 - id: ClothingHandsGlovesColorYellow prob: 0.05 - id: ClothingHandsGlovesFingerlessInsulated @@ -135,6 +152,8 @@ prob: 0.20 - id: DrinkSpaceLube prob: 0.20 + - id: BarberScissors + prob: 0.05 # Syndicate loot - id: null prob: 0.95 diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml index 3a6c83800e..5847b2a05b 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml @@ -12,7 +12,7 @@ - id: ClothingHeadHatBeretWarden - id: ClothingBeltSecurityFilled - id: Flash - - id: ClothingEyesGlassesSecurity + - id: ClothingEyesGlassesSunglasses - id: ClothingHeadsetAltSecurity - id: ClothingHandsGlovesCombat - id: ClothingShoesBootsJack @@ -24,6 +24,7 @@ - id: HoloprojectorSecurity - id: ClothingEyesHudSecurity - id: BoxPDAPrisoner # Delta-V + - id: ClothingShoesBootsWinterWarden #Delta V: Add departmental winter boots - type: entity id: LockerWardenFilled @@ -39,7 +40,7 @@ - id: ClothingHeadHatBeretWarden - id: ClothingBeltSecurityFilled - id: Flash - - id: ClothingEyesGlassesSecurity + - id: ClothingEyesGlassesSunglasses - id: ClothingHeadsetAltSecurity - id: ClothingHandsGlovesCombat - id: ClothingShoesBootsJack @@ -50,6 +51,7 @@ - id: HoloprojectorSecurity - id: ClothingEyesHudSecurity - id: BoxPDAPrisoner # Delta-V + - id: ClothingShoesBootsWinterWarden #Delta V: Add departmental winter boots - type: entity id: LockerSecurityFilled @@ -84,7 +86,7 @@ - id: ClothingBeltSecurityFilled - id: Flash prob: 0.5 - - id: ClothingEyesGlassesSecurity + - id: ClothingEyesGlassesSunglasses - id: ClothingHeadsetSecurity - id: ClothingHandsGlovesColorBlack - id: ClothingShoesBootsJack @@ -111,6 +113,7 @@ - id: ClothingUniformJumpskirtBrigmedic ## - id: ClothingUniformJumpskirtOfLife # DeltaV - nah ## prob: 0.1 + - id: HandheldGPSBasic # Delta V - added it for tracking the implant tracker pop up. - id: MedkitFilled - id: MedkitCombatFilled prob: 0.6 @@ -143,6 +146,7 @@ - id: ClothingOuterHardsuitCombatCorpsman - id: ClothingUniformJumpsuitBrigmedic - id: ClothingUniformJumpskirtBrigmedic + - id: HandheldGPSBasic # Added GPS because I just think it should be there tbh. - id: MedkitFilled - id: MedkitCombatFilled prob: 0.6 diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/service.yml b/Resources/Prototypes/Catalog/Fills/Lockers/service.yml index e75303c8d7..b66e08ae36 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/service.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/service.yml @@ -42,12 +42,14 @@ - id: ReagentContainerSugar - id: FoodCondimentPacketSalt amount: 3 + - id: FoodCondimentPacketPepper + amount: 3 - id: FoodCondimentBottleEnzyme # really, milk should go in the fridge. Unfortunately saltern only has freezers. # yes, I'm using this as an excuse to not have to do extra work. - - id: ReagentContainerMilk + - id: DrinkMilkCarton amount: 2 - - id: ReagentContainerMilkSoy + - id: DrinkSoyMilkCarton - type: entity id: ClosetJanitorFilled @@ -124,3 +126,13 @@ prob: 0.5 - id: NettleSeeds prob: 0.7 + +- type: entity + id: ClosetJanitorBombFilled + parent: ClosetJanitorBomb + suffix: Filled + components: + - type: StorageFill + contents: + - id: ClothingHeadHelmetJanitorBombSuit + - id: ClothingOuterSuitJanitorBomb diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/wardrobe_job.yml b/Resources/Prototypes/Catalog/Fills/Lockers/wardrobe_job.yml index db81b4577d..ee5748329a 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/wardrobe_job.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/wardrobe_job.yml @@ -158,7 +158,7 @@ - id: ClothingUniformJumpsuitSec - id: ClothingBackpackSecurity - id: ClothingShoesBootsJack - - id: ClothingEyesGlassesSecurity + - id: ClothingEyesGlassesSunglasses - id: ClothingHeadHelmetBasic - id: ClothingOuterArmorPlateCarrier # DeltaV - ClothingOuterArmorBasic replaced in favour of plate carrier and stabproof vest - id: ClothingOuterArmorDuraVest diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/atmosdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/atmosdrobe.yml index 72864ba851..f2cc7e8a54 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/atmosdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/atmosdrobe.yml @@ -13,3 +13,4 @@ ClothingOuterSuitFire: 2 ClothingOuterWinterAtmos: 2 ClothingNeckScarfStripedLightBlue: 3 + ClothingShoesBootsWinterAtmos: 2 #Delta V: Add departmental winter boots diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/bardrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/bardrobe.yml index 539a0a68fe..23b05838de 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/bardrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/bardrobe.yml @@ -14,5 +14,5 @@ ClothingOuterArmorDuraVest: 2 # DeltaV - ClothingOuterArmorBasicSlim replaced in favour of stabproof vest ClothingOuterVest: 2 ClothingBeltBandolier: 2 - ClothingEyesGlassesSunglasses: 2 - + ClothingEyesGlassesCosmeticSunglasses: 2 + diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cargodrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cargodrobe.yml index 927eaae5e4..d1e80ba0c8 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cargodrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cargodrobe.yml @@ -14,3 +14,4 @@ ClothingOuterWinterCargo: 2 ClothingOuterWinterMiner: 2 ClothingNeckScarfStripedBrown: 3 + ClothingShoesBootsWinterCargo: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/centdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/centdrobe.yml index b0e14e720c..fae4730f14 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/centdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/centdrobe.yml @@ -7,11 +7,13 @@ ClothingEyesGlassesSunglasses: 3 ClothingUniformJumpsuitCentcomOfficer: 3 ClothingUniformJumpsuitCentcomOfficial: 3 + ClothingUniformJumpsuitCentcomAgent: 3 ClothingUniformJumpsuitCentcomFormal: 3 ClothingUniformJumpskirtCentcomFormalDress: 3 ClothingHeadHatCentcom: 3 + ClothingHeadHatCentcomcap: 3 ClothingMaskGasCentcom: 3 ClothingHeadsetCentCom: 3 ClothingOuterWinterCentcom: 3 ClothingNeckScarfStripedCentcom: 3 - + ClothingShoesBootsWinterCentCom: 2 #Delta V: Add departmental winter boots diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chapel.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chapel.yml index bd342ba86b..60498f2e47 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chapel.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chapel.yml @@ -16,6 +16,9 @@ ClothingOuterPlagueSuit: 1 ClothingMaskPlague: 1 #ClothingHeadsetService: 2 # Delta-V - Chaplain is no longer service dept + BoxCandle: 2 + BoxCandleSmall: 2 + Urn: 5 emaggedInventory: ClothingOuterArmorCult: 1 ClothingHeadHelmetCult: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chefdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chefdrobe.yml index da5ce32d21..941b1af350 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chefdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chefdrobe.yml @@ -10,3 +10,4 @@ ClothingUniformJumpskirtChef: 2 ClothingHeadHatChef: 2 ClothingShoesColorBlack: 2 + ClothingShoesBootsWinterChef: 2 #Delta V: Add departmental winter boots diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chefvend.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chefvend.yml index ab6ac3295c..f76b640ec7 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chefvend.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chefvend.yml @@ -14,8 +14,8 @@ ReagentContainerOliveoil: 2 MonkeyCubeBox: 1 FoodContainerEgg: 1 - ReagentContainerMilk: 2 - ReagentContainerMilkSoy: 1 + DrinkMilkCarton: 2 + DrinkSoyMilkCarton: 1 FoodButter: 4 FoodCheese: 1 FoodMeat: 6 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chemdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chemdrobe.yml index d028c55cab..c5d9e726ad 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chemdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chemdrobe.yml @@ -13,3 +13,4 @@ ClothingHandsGlovesLatex: 2 ClothingHeadsetMedical: 2 ClothingOuterWinterChem: 2 + ClothingShoesBootsWinterChem: 2 #Delta V: Add departmental winter boots diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chemvend.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chemvend.yml index a191b6c4ee..28ed80627f 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chemvend.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chemvend.yml @@ -30,3 +30,34 @@ EpinephrineChemistryBottle: 6 NapalmChemistryBottle: 6 UltravasculineChemistryBottle: 6 + +- type: vendingMachineInventory + id: ChemVendInventorySyndicate + startingInventory: + Jug: 4 + JugAluminium: 2 + JugCarbon: 2 + JugChlorine: 2 + JugCopper: 2 + JugEthanol: 2 + JugFluorine: 2 + JugHydrogen: 2 + JugIodine: 2 + JugIron: 2 + JugLithium: 2 + JugMercury: 2 + JugNitrogen: 2 + JugOxygen: 2 + JugPhosphorus: 2 + JugPotassium: 2 + JugRadium: 2 + JugSilicon: 2 + JugSodium: 2 + JugSugar: 2 + JugSulfur: 2 + JugWeldingFuel: 1 + emaggedInventory: + PaxChemistryBottle: 3 + MuteToxinChemistryBottle: 3 + LeadChemistryBottle: 2 + ToxinChemistryBottle: 1 \ No newline at end of file diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml index b998f568a9..82e6fe4246 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml @@ -31,6 +31,8 @@ ClothingUniformJumpskirtColorPink: 2 ClothingUniformJumpsuitColorDarkBlue: 2 ClothingUniformJumpskirtColorDarkBlue: 2 + ClothingUniformJumpsuitColorDarkGreen: 2 + ClothingUniformJumpskirtColorDarkGreen: 2 ClothingUniformJumpsuitColorTeal: 2 ClothingUniformJumpskirtColorTeal: 2 ClothingUniformJumpsuitHawaiBlack: 2 @@ -83,6 +85,8 @@ ClothingHeadRastaHat: 2 ClothingBeltStorageWaistbag: 3 ClothingEyesGlasses: 6 + ClothingEyesGlassesCosmeticSunglasses: 6 + ClothingHandsGlovesColorBlack: 4 contrabandInventory: ClothingUniformJumpsuitTacticool: 1 ClothingUniformJumpskirtTacticool: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/coffee.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/coffee.yml index acb15b217c..2d65fa1f71 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/coffee.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/coffee.yml @@ -5,5 +5,6 @@ DrinkCafeLatte: 5 DrinkTeacup: 5 DrinkGreenTea: 5 + DrinkHotCoco: 5 emaggedInventory: DrinkNothing: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/engidrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/engidrobe.yml index 03a39c979b..5d732def49 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/engidrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/engidrobe.yml @@ -15,3 +15,4 @@ ClothingHeadsetEngineering: 3 ClothingOuterWinterEngi: 2 ClothingNeckScarfStripedOrange: 3 + ClothingShoesBootsWinterEngi: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/engivend.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/engivend.yml index 4b28bd8ff2..c91eb1ef2e 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/engivend.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/engivend.yml @@ -7,5 +7,4 @@ NetworkConfigurator: 5 PowerCellMedium: 5 ClothingHandsGlovesColorYellow: 6 - InflatableWallStack1: 24 - InflatableDoorStack1: 8 + BoxInflatable: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/genedrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/genedrobe.yml index 84a5f9a79b..a6926f8c4f 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/genedrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/genedrobe.yml @@ -9,3 +9,4 @@ ClothingBackpackGenetics: 2 ClothingBackpackSatchelGenetics: 2 ClothingBackpackDuffelGenetics: 2 + ClothingShoesBootsWinterGenetics: 2 #Delta V: Add departmental winter boots diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/hydrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/hydrobe.yml index 5e1833f0b5..ce19440df1 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/hydrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/hydrobe.yml @@ -8,6 +8,8 @@ ClothingUniformOveralls: 3 ClothingUniformJumpsuitHydroponics: 3 ClothingUniformJumpskirtHydroponics: 3 + ClothingNeckScarfStripedGreen: 3 ClothingHeadBandBotany: 3 ClothingHeadsetService: 2 ClothingOuterWinterHydro: 2 + ClothingShoesBootsWinterHydro: 2 #Delta V: Add departmental winter boots diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/janidrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/janidrobe.yml index 4c7415aa0a..a1c15cf9b0 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/janidrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/janidrobe.yml @@ -3,13 +3,18 @@ startingInventory: ClothingUniformJumpsuitJanitor: 2 ClothingUniformJumpskirtJanitor: 2 + ClothingHandsGlovesJanitor: 2 ClothingShoesColorBlack: 2 ClothingHeadHatPurplesoft: 2 ClothingBeltJanitor: 2 ClothingHeadsetService: 2 ClothingOuterWinterJani: 2 ClothingNeckScarfStripedPurple: 3 - - emaggedInventory: - ClothingUniformJumpskirtJanimaid: 2 + ClothingShoesBootsWinterJani: 2 #Delta V: Add departmental winter boots + ClothingUniformJumpskirtJanimaid: 2 # Delta V: the maiden outfits no longer require emagging. ClothingUniformJumpskirtJanimaidmini: 1 + + emaggedInventory: # Delta V: tactical maid outfit set is now the emagg reward. + ClothingHandsTacticalMaidGloves: 1 + ClothingUniformJumpskirtTacticalMaid: 1 + ClothingHeadHatTacticalMaidHeadband: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/medidrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/medidrobe.yml index 7e0772107b..4d5bbdc610 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/medidrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/medidrobe.yml @@ -4,23 +4,19 @@ ClothingBackpackDuffelMedical: 4 ClothingBackpackMedical: 4 ClothingBackpackSatchelMedical: 4 - ClothingUniformJumpsuitParamedic: 4 - ClothingUniformJumpskirtParamedic: 4 + ClothingUniformJumpsuitMedicalDoctor: 4 + ClothingUniformJumpskirtMedicalDoctor: 4 ClothingHeadNurseHat: 4 ClothingOuterCoatLab: 4 ClothingShoesColorWhite: 4 ClothingHandsGlovesLatex: 4 ClothingHeadsetMedical: 4 ClothingOuterWinterMed: 2 - ClothingOuterWinterPara: 2 - ClothingOuterCoatParamedicWB: 2 - ClothingHeadHatParamedicsoft: 2 - ClothingHeadHelmetVoidParamed: 1 - ClothingOuterHardsuitVoidParamed: 1 ClothingOuterHospitalGown: 5 UniformScrubsColorGreen: 4 UniformScrubsColorBlue: 4 UniformScrubsColorPurple: 4 + ClothingShoesBootsWinterMed: 2 contrabandInventory: #DeltaV UniformScrubsColorCybersun: 1 #DeltaV ClothingHeadHatSurgcapCybersun: 1 #DeltaV diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/robodrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/robodrobe.yml index 05166705fa..71474cae5c 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/robodrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/robodrobe.yml @@ -10,4 +10,4 @@ ClothingHeadBandSkull: 2 ClothingHeadsetRobotics: 2 ClothingOuterWinterRobo: 2 - ClothingHandsGlovesInsulatedFingers: 2 + ClothingShoesBootsWinterRobo: 2 #Delta V: Add departmental winter boots diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/scidrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/scidrobe.yml index 10d9c8cb19..c4608af34e 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/scidrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/scidrobe.yml @@ -15,3 +15,4 @@ ClothingOuterWinterSci: 2 ClothingNeckScarfStripedPurple: 3 ClothingHeadTinfoil: 2 # Nyanotrasen - Tinfoil hats for Epistemics + ClothingShoesBootsWinterSci: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml index b2044179f2..c9faefa139 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml @@ -3,6 +3,9 @@ startingInventory: Handcuffs: 8 GrenadeFlashBang: 4 + TearGasGrenade: 4 + ClusterBangFull: 2 + GrenadeStinger: 4 Flash: 5 FlashlightSeclite: 5 ClothingEyesGlassesSunglasses: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml index 212aaf02c5..039ab50b3c 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml @@ -21,5 +21,7 @@ ClothingOuterCoatGreatcoat: 2 # DeltaV - added greatcoats to SecDrobe. Surplus, reminds the officers of the good times. ## ClothingOuterArmorBasic: 2 # DeltaV - moved body armour from SecDrobe to SecTech ## ClothingOuterArmorBasicSlim: 2 + ClothingNeckScarfStripedRed: 3 ClothingEyesBlindfold: 1 ClothingShoesBootsCombat: 1 + ClothingShoesBootsWinterSec: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/seeds.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/seeds.yml index c48100f4ec..05e3ae0eb0 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/seeds.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/seeds.yml @@ -35,5 +35,6 @@ CocoaSeeds: 3 BerrySeeds: 5 PeaSeeds: 5 + CottonSeeds: 5 emaggedInventory: FlyAmanitaSeeds: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/syndiedrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/syndiedrobe.yml index d5480638ef..8e1f6a1c3a 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/syndiedrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/syndiedrobe.yml @@ -14,6 +14,8 @@ ClothingUniformJumpskirtOperative: 5 ClothingNeckScarfStripedSyndieGreen: 2 ClothingNeckScarfStripedSyndieRed: 2 + ClothingShoesBootsWinterSyndicate: 2 + emaggedInventory: ClothingOuterCoatSyndieCapArmored: 1 ClothingOuterWinterSyndieCapArmored: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml index 6349001b47..badf45fa93 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml @@ -14,6 +14,8 @@ ClothingOuterCardborg: 2 ClothingHeadHatSombrero: 2 ClothingOuterPonchoClassic: 2 + ClothingUniformJumpsuitKilt: 3 # DeltaV - SCOTTTTLANDDDDD FURREVERRRRR!! + ClothingEyesEyepatch: 2 # Delta-V Yarrr ClothingHeadHatPwig: 2 ClothingOuterRobesJudge: 2 ClothingOuterPoncho: 2 @@ -24,7 +26,7 @@ ClothingOuterSuitChicken: 2 ClothingHeadHatChickenhead: 2 ClothingOuterSuitMonkey: 2 - ClothingHeadHatPumpkin: 4 # Extra pumpkins for the season + ClothingHeadHatPumpkin: 2 ClothingHeadHatShrineMaidenWig: 2 ClothingOuterSuitShrineMaiden: 2 Gohei: 2 @@ -73,6 +75,8 @@ ClothingCostumeNaota: 1 # Nyano - Clothing addition ClothingUniformJumpsuitSober: 1 # DeltaV - Clothing addition ClothingOuterSuitCarp: 2 # DeltaV - Move carp suit out of syndicate uplink into the AutoDrobe + ClothingShoesBootsWinterClown: 2 #Delta V: Add departmental winter boots + ClothingShoesBootsWinterMime: 2 #Delta V: Add departmental winter boots emaggedInventory: ClothingShoesBling: 1 ClothingOuterDogi: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/virodrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/virodrobe.yml index b9144167a1..a5965ad4de 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/virodrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/virodrobe.yml @@ -10,3 +10,4 @@ ClothingBackpackVirology: 2 ClothingBackpackSatchelVirology: 2 ClothingBackpackDuffelVirology: 2 + ClothingShoesBootsWinterViro: 2 #Delta V: Add departmental winter boots diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index 90c94502ed..a4f3f23ed0 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -65,16 +65,6 @@ categories: - UplinkWeapons -- type: listing - id: UplinkFireAxeFlaming - name: uplink-fire-axe-flaming-name - description: uplink-fire-axe-flaming-desc - productEntity: FireAxeFlaming - cost: - Telecrystal: 10 - categories: - - UplinkWeapons - - type: listing id: UplinkGlovesNorthStar name: uplink-gloves-north-star-name @@ -85,22 +75,6 @@ categories: - UplinkWeapons -- type: listing - id: UplinkEswordDouble - name: uplink-esword-double-name - description: uplink-esword-double-desc - icon: { sprite: /Textures/Objects/Weapons/Melee/e_sword_double.rsi, state: icon } - productEntity: EnergySwordDouble - cost: - Telecrystal: 16 # DeltaV - Originally 20 but no one bought it due to it's high cost. - categories: - - UplinkWeapons - conditions: - - !type:StoreWhitelistCondition - blacklist: - tags: - - NukeOpsUplink - - type: listing id: UplinkDisposableTurret name: uplink-disposable-turret-name @@ -138,6 +112,16 @@ categories: - UplinkExplosives +- type: listing + id: UplinkSmokeGrenade + name: uplink-smoke-grenade-name + description: uplink-smoke-grenade-desc + productEntity: SmokeGrenade + cost: + Telecrystal: 1 + categories: + - UplinkExplosives + - type: listing id: UplinkSyndieMiniBomb name: uplink-mini-bomb-name @@ -250,6 +234,36 @@ - UplinkExplosives restockTime: 30 +- type: listing + id: UplinkClusterGrenade + name: uplink-cluster-grenade-name + description: uplink-cluster-grenade-desc + productEntity: ClusterGrenade + cost: + Telecrystal: 8 + categories: + - UplinkExplosives + +- type: listing + id: UplinkGrenadeShrapnel + name: uplink-shrapnel-grenade-name + description: uplink-shrapnel-grenade-desc + productEntity: GrenadeShrapnel + cost: + Telecrystal: 4 + categories: + - UplinkExplosives + +- type: listing + id: UplinkGrenadeIncendiary + name: uplink-incendiary-grenade-name + description: uplink-incendiary-grenade-desc + productEntity: GrenadeIncendiary + cost: + Telecrystal: 4 + categories: + - UplinkExplosives + # Ammo - type: listing @@ -501,6 +515,17 @@ categories: - UplinkUtility +- type: listing + id: UplinkHypoDart + name: uplink-hypodart-name + description: uplink-hypodart-desc + icon: { sprite: /Textures/Objects/Fun/Darts/dart_red.rsi, state: icon } + productEntity: HypoDartBox + cost: + Telecrystal: 2 + categories: + - UplinkUtility + # Implants - type: listing @@ -552,6 +577,26 @@ categories: - UplinkImplants +- type: listing + id: UplinkMicroBombImplanter + name: uplink-micro-bomb-implanter-name + description: uplink-micro-bomb-implanter-desc + icon: { sprite: /Textures/Actions/Implants/implants.rsi, state: explosive } + productEntity: MicroBombImplanter + cost: + Telecrystal: 2 + categories: + - UplinkImplants + conditions: + - !type:StoreWhitelistCondition + whitelist: + tags: + - NukeOpsUplink + - !type:BuyerWhitelistCondition + blacklist: + components: + - SurplusBundle + - type: listing id: UplinkMacroBombImplanter name: uplink-macro-bomb-implanter-name @@ -572,6 +617,17 @@ components: - SurplusBundle +- type: listing + id: UplinkDeathAcidifierImplanter + name: uplink-death-acidifier-implant-name + description: uplink-death-acidifier-implant-desc + icon: { sprite: /Textures/Objects/Magic/magicactions.rsi, state: gib } + productEntity: DeathAcidifierImplanter + cost: + Telecrystal: 2 + categories: + - UplinkImplants + - type: listing id: UplinkUplinkImplanter # uplink uplink real name: uplink-uplink-implanter-name @@ -638,6 +694,17 @@ components: - SurplusBundle +- type: listing + id: UplinkChemistryKitBundle + name: uplink-chemistry-kit-name + description: uplink-chemistry-kit-desc + icon: { sprite: /Textures/Objects/Storage/boxicons.rsi, state: vials } + productEntity: ChemicalSynthesisKit + cost: + Telecrystal: 4 + categories: + - UplinkBundles + - type: listing id: UplinkMedsBundle name: uplink-meds-bundle-name @@ -849,18 +916,31 @@ - Botanist - type: listing - id: uplinkRiggedBoxingGloves + id: uplinkRiggedBoxingGlovesPassenger name: uplink-rigged-boxing-gloves-name description: uplink-rigged-boxing-gloves-desc productEntity: ClothingHandsGlovesBoxingRigged cost: - Telecrystal: 5 + Telecrystal: 8 categories: - UplinkJob conditions: - !type:BuyerJobCondition whitelist: - Passenger + +- type: listing + id: uplinkRiggedBoxingGlovesBoxer + name: uplink-rigged-boxing-gloves-name + description: uplink-rigged-boxing-gloves-desc + productEntity: ClothingHandsGlovesBoxingRigged + cost: + Telecrystal: 5 + categories: + - UplinkJob + conditions: + - !type:BuyerJobCondition + whitelist: - Boxer - type: listing @@ -925,6 +1005,20 @@ whitelist: - Clown +- type: listing + id: UplinkClusterBananaPeel + name: uplink-cluster-banana-peel-name + description: uplink-cluster-banana-peel-desc + productEntity: ClusterBananaPeel + cost: + Telecrystal: 6 + categories: + - UplinkJob + conditions: + - !type:BuyerJobCondition + whitelist: + - Clown + - type: listing id: UplinkHoloclownKit name: uplink-holoclown-kit-name @@ -1156,6 +1250,16 @@ categories: - UplinkMisc +- type: listing + id: UplinkSlipocalypseClusterSoap + name: uplink-slipocalypse-clustersoap-name + description: uplink-slipocalypse-clustersoap-desc + productEntity: SlipocalypseClusterSoap + cost: + Telecrystal: 3 + categories: + - UplinkMisc + - type: listing id: UplinkUltrabrightLantern name: uplink-ultrabright-lantern-name @@ -1182,7 +1286,7 @@ description: uplink-nocturine-chemistry-bottle-desc productEntity: NocturineChemistryBottle cost: - Telecrystal: 5 + Telecrystal: 6 categories: - UplinkMisc diff --git a/Resources/Prototypes/Chemistry/metabolizer_types.yml b/Resources/Prototypes/Chemistry/metabolizer_types.yml index a3507977ad..259387b6d5 100644 --- a/Resources/Prototypes/Chemistry/metabolizer_types.yml +++ b/Resources/Prototypes/Chemistry/metabolizer_types.yml @@ -5,6 +5,10 @@ id: Animal name: animal +- type: metabolizerType + id: Bloodsucker + name: bloodsucker + - type: metabolizerType id: Dragon name: dragon @@ -36,3 +40,7 @@ - type: metabolizerType id: Moth name: moth + +- type: metabolizerType + id: Arachnid + name: arachnid diff --git a/Resources/Prototypes/Chemistry/mixing_types.yml b/Resources/Prototypes/Chemistry/mixing_types.yml new file mode 100644 index 0000000000..dbf14c19c1 --- /dev/null +++ b/Resources/Prototypes/Chemistry/mixing_types.yml @@ -0,0 +1,20 @@ +- type: mixingCategory + id: Centrifuge + verbText: mixing-verb-centrifuge + icon: + sprite: Structures/Machines/Medical/centrifuge.rsi + state: base + +- type: mixingCategory + id: Electrolysis + verbText: mixing-verb-electrolysis + icon: + sprite: Structures/Machines/Medical/electrolysis.rsi + state: base + +- type: mixingCategory + id: Holy + verbText: mixing-verb-holy + icon: + sprite: Objects/Specific/Chapel/bible.rsi + state: icon diff --git a/Resources/Prototypes/Corvax/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Corvax/Entities/Objects/Misc/paper.yml new file mode 100644 index 0000000000..57fb6eefc1 --- /dev/null +++ b/Resources/Prototypes/Corvax/Entities/Objects/Misc/paper.yml @@ -0,0 +1,11 @@ +- type: entity + parent: Paper + id: StationGoalPaper + name: station goal centcomm message + description: 'It looks like you have a lot of work to do.' + components: + - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedName: stamp-component-stamped-name-centcom + stampedColor: "#bb3232" diff --git a/Resources/Prototypes/Corvax/Objectives/goals.yml b/Resources/Prototypes/Corvax/Objectives/goals.yml new file mode 100644 index 0000000000..d36f82894e --- /dev/null +++ b/Resources/Prototypes/Corvax/Objectives/goals.yml @@ -0,0 +1,84 @@ +- type: stationGoal + id: Area + +- type: stationGoal + id: Artifacts + +- type: stationGoal + id: BureaucraticError + +- type: stationGoal + id: Combat + +- type: stationGoal + id: Labor + +- type: stationGoal + id: Lectures + +- type: stationGoal + id: Museum + +- type: stationGoal + id: Shuttle + +- type: stationGoal + id: Singularity + +- type: stationGoal + id: SolarPanels + +- type: stationGoal + id: Storage + +- type: stationGoal + id: Xeno + +- type: stationGoal + id: Zoo + + + +- type: weightedRandom + id: StationGoals + weights: + StationGoalDepartment: 1 + StationGoalPower: 1 + StationGoalStation: 1 + + +- type: weightedRandom + id: StationGoalDepartment + weights: + StationGoalScience: 1 + StationGoalSecurity: 1 + + +- type: weightedRandom + id: StationGoalPower + weights: + Singularity: 1 + SolarPanels: 1 + +- type: weightedRandom + id: StationGoalScience + weights: + Anomalies: 1 + Artifacts: 1 + Xeno: 1 + +- type: weightedRandom + id: StationGoalSecurity + weights: + Combat: 1 + +- type: weightedRandom + id: StationGoalStation + weights: + Area: 1 + BureaucraticError: 1 + Labor: 1 + Lectures: 1 + Museum: 1 + Shuttle: 1 + Zoo: 1 diff --git a/Resources/Prototypes/Damage/containers.yml b/Resources/Prototypes/Damage/containers.yml index 8b70bc2e5b..87168b4818 100644 --- a/Resources/Prototypes/Damage/containers.yml +++ b/Resources/Prototypes/Damage/containers.yml @@ -14,7 +14,23 @@ supportedTypes: - Heat - Shock - - Structural # this probably should be in separate container + +- type: damageContainer + id: StructuralInorganic + supportedGroups: + - Brute + supportedTypes: + - Heat + - Shock + - Structural + +- type: damageContainer + id: Silicon + supportedGroups: + - Brute + supportedTypes: + - Heat + - Shock - type: damageContainer id: Shield diff --git a/Resources/Prototypes/Damage/modifier_sets.yml b/Resources/Prototypes/Damage/modifier_sets.yml index dcd152a051..26904bc276 100644 --- a/Resources/Prototypes/Damage/modifier_sets.yml +++ b/Resources/Prototypes/Damage/modifier_sets.yml @@ -9,6 +9,28 @@ Blunt: 5 Heat: 5 +- type: damageModifierSet + id: StructuralMetallicStrong + coefficients: + Shock: 1.2 + flatReductions: + Blunt: 25 + Slash: 25 + Piercing: 25 + Heat: 25 + Structural: 40 + +- type: damageModifierSet + id: StructuralMetallic + coefficients: + Shock: 1.2 + flatReductions: + Blunt: 10 + Slash: 10 + Piercing: 10 + Heat: 10 + Structural: 20 + - type: damageModifierSet id: PerforatedMetallic coefficients: @@ -64,22 +86,25 @@ Heat: 0.8 Shock: 0 #glass is an insulator! flatReductions: - Blunt: 5 Slash: 5 + Piercing: 5 + Heat: 5 + Structural: 10 - type: damageModifierSet id: RGlass coefficients: - Blunt: 1.0 + Blunt: 0.5 Slash: 0.3 Piercing: 0.6 Heat: 0.5 Shock: 0 flatReductions: Blunt: 5 - Slash: 7 + Slash: 5 Piercing: 5 Heat: 5 + Structural: 12.5 - type: damageModifierSet id: Wood @@ -95,9 +120,9 @@ id: Web # Very flammable, can be easily hacked and slashed, but shooting or hitting it is another story. coefficients: Blunt: 0.7 - Slash: 2.0 + Slash: 1.4 Piercing: 0.7 - Heat: 3.0 + Heat: 2.0 - type: damageModifierSet id: Slime @@ -125,7 +150,6 @@ id: Scale # Skin tougher, bones weaker, strong stomachs, cold-blooded (kindof) coefficients: Cold: 1.3 - Heat: 0.7 - type: damageModifierSet id: Diona @@ -198,3 +222,30 @@ Cellular: 0.0 Radiation: 0.2 Caustic: 0.0 + +- type: damageModifierSet + id: Cockroach + coefficients: + Blunt: 1.0 + Slash: 1.0 + Piercing: 1.0 + Cold: 1.0 + Poison: 1.0 + Cellular: 1.0 + Radiation: 0.0 # hehe funny cockroach immune to rads + Caustic: 1.0 + +# Massive heat damage, presumably to kill with lasers +- type: damageModifierSet + id: LivingLight + coefficients: + Blunt: 0.8 + Slash: 0.8 + Piercing: 0.7 + Shock: 0.0 + Cold: 0.0 + Poison: 0.0 + Radiation: 0.0 + Cellular: 0.0 + Heat: 2.5 + Caustic: 0.0 diff --git a/Resources/Prototypes/Datasets/Names/Operation_prefix.yml b/Resources/Prototypes/Datasets/Names/Operation_prefix.yml new file mode 100644 index 0000000000..f9696d71cc --- /dev/null +++ b/Resources/Prototypes/Datasets/Names/Operation_prefix.yml @@ -0,0 +1,105 @@ +- type: dataset + id: operationPrefix + values: + - Ancient + - Angry + - Arachnid + - Atomic + - Benevolent + - Black + - Blessed + - Bloody + - Blue + - Blunt + - Boiling + - Bright + - Burning + - Clean + - Clown + - Cold + - Cursed + - Dark + - Dead + - Deep + - Derelict + - Desert + - Devil's + - Diamond + - Dismal + - Dwarven + - Eastern + - Endless + - Enemy + - Evil + - Exciting + - Explosive + - Extreme + - Fall + - Fresh + - Glorious + - God's + - Gold + - Green + - Grey + - Happy + - Holy + - Hot + - Human + - Illegal + - Impressive + - Iron + - Large + - Lizard + - Lovely + - Lucky + - Magical + - Monkey + - Moth + - Northern + - Nuclear + - Orange + - Outlaw + - Painful + - Phantasmagoric + - Plasma + - Plastic + - Purple + - Red + - Rival + - Robotic + - Robust + - Sad + - Secret + - Shadow + - Sick + - Silver + - Simian + - Skeleton + - Slime + - Southern + - Space + - Spring + - Stealth + - Steel + - Strange + - Summer + - Suspicious + - Tasty + - The + - Traitorous + - Turbo + - Unclean + - Unholy + - Unusual + - Vengeful + - Venomous + - Violent + - War + - Warm + - Weird + - Western + - Wet + - White + - Wild + - Winter + - Yellow diff --git a/Resources/Prototypes/Datasets/Names/Operation_suffix.yml b/Resources/Prototypes/Datasets/Names/Operation_suffix.yml new file mode 100644 index 0000000000..ecc9243908 --- /dev/null +++ b/Resources/Prototypes/Datasets/Names/Operation_suffix.yml @@ -0,0 +1,105 @@ +- type: dataset + id: operationSuffix + values: + - Abyss + - Action + - Annihilation + - Bag + - Bee + - Blast + - Bomb + - Bones + - Botanist + - Cannon + - Captain + - Chef + - City + - Clown + - Coccoon + - Crypt + - Curse + - Darkness + - Daze + - Death + - Den + - Destruction + - Disease + - Dungeon + - Dust + - End + - Energy + - Engine + - Engineer + - Fire + - Fruit + - Galaxy + - Garden + - Gentleman + - Glove + - Guitar + - Heart + - Hole + - Ice + - Janitor + - Justice + - Lady + - Legend + - Life + - Light + - Lighthouse + - Lung + - Mace + - Machine + - Maniac + - Market + - Meatgrinder + - Mime + - Money + - Monkey + - Moon + - Musician + - Offspring + - Organ + - Overdrive + - Pancreas + - Passenger + - Piano + - Pistol + - Pit + - Plains + - Planet + - Pool + - Power + - Puppy + - Rainbow + - Retribution + - Revengeance + - Rifle + - Rubble + - Sandwich + - Scientist + - Secret + - Security + - Shadows + - Shuttle + - Siren + - Soul + - Spell + - Spider + - Spire + - Staff + - Star + - Station + - Storm + - Stranger + - Strike + - Sun + - Sword + - Team + - Tide + - Tomb + - Toolbox + - Trumpet + - Vermin + - Wizard + - Wood diff --git a/Resources/Prototypes/Datasets/Names/borg.yml b/Resources/Prototypes/Datasets/Names/borg.yml index 6d98cd42c7..8b8181eec9 100644 --- a/Resources/Prototypes/Datasets/Names/borg.yml +++ b/Resources/Prototypes/Datasets/Names/borg.yml @@ -16,3 +16,26 @@ - Toaster - Head of Robots - EVA 1 + - Mr. Robist + - Junk + - R2-PO + - C-3-D2 + - Robby + - Robobot + - Fixer + - Sonny + - Autobot + - Whitley + - Keller + - Xenos + - Echo + - Vector + - B-0-RG + - Megabyte + - Butt-Bot + - Deceptiborg + - Le Borgue + - Beepers + - Cute-Bot + - Makeshifter + - Twin diff --git a/Resources/Prototypes/Datasets/Names/military.yml b/Resources/Prototypes/Datasets/Names/military.yml index 4d06fa4977..329a452333 100644 --- a/Resources/Prototypes/Datasets/Names/military.yml +++ b/Resources/Prototypes/Datasets/Names/military.yml @@ -11,4 +11,50 @@ values: - Corporal - Sergeant - - Specialist \ No newline at end of file + - Specialist + +- type: dataset + id: NamesLastMilitary + values: + - Agena + - Andromeda + - Antares + - Aquarius + - Beid + - Betelgeuse + - Canopus + - Capricorn + - Celaeno + - Centaur + - Chameleon + - Chau + - Cygnus + - Deneb + - Dragon + - Electra + - Fomalhaut + - Ginan + - Hercules + - Labr + - Leonis + - Matar + - Microscopium + - Nihal + - Ophiuchus + - Oculus + - Orion + - Perseus + - Phoenix + - Procyon + - Regulus + - Rigel + - Sargas + - Schedar + - Shaula + - Sirius + - Tabit + - Taurus + - Ukdah + - Vega + - Yildun + - Zosma diff --git a/Resources/Prototypes/Datasets/Names/mouse_death_commando.yml b/Resources/Prototypes/Datasets/Names/mouse_death_commando.yml new file mode 100644 index 0000000000..d15a2d1fb2 --- /dev/null +++ b/Resources/Prototypes/Datasets/Names/mouse_death_commando.yml @@ -0,0 +1,43 @@ +- type: dataset + id: names_mouse_death_commando + values: + - Operator Blue Cheese + - Operator AMERICAN CHEESE + - Operator Fromage + - Operator Asiago + - Operator Brie + - Operator Camembert + - Operator Cheddar + - Operator Cotija + - Operator Curd + - Operator Chevré + - Operator Halloumi + - Operator Cottage Cheese + - Operator Cream Cheese + - Operator Swiss Cheese + - Operator Wensleydale + - Operator Rocamadour + - Operator Feta + - Operator Mozzarella + - Operator Gorgonzola + - Operator Grilled Cheese + - Operator Gouda + - Operator Gruyere + - Operator Comté Cheese + - Operator Jarlsberg + - Operator Reblochon + - Operator Raclette + - Operator Tomme de Bruyère + - Operator Goat Cheese + - Operator Manchego + - Operator Ewenique + - Operator Monterey Jack + - Operator Muenster + - Operator Parmesan + - Operator Pepper Jack + - Operator Provolone + - Operator String Cheese + - Operator La Vache Qui Rit + - Operator Mascarpone + - Operator Ricotta + - Operator Vacherin \ No newline at end of file diff --git a/Resources/Prototypes/Datasets/Names/regalrat.yml b/Resources/Prototypes/Datasets/Names/regalrat.yml index 99f78a8696..e69c056843 100644 --- a/Resources/Prototypes/Datasets/Names/regalrat.yml +++ b/Resources/Prototypes/Datasets/Names/regalrat.yml @@ -2,7 +2,7 @@ id: RegalRatNameKingdom values: - Plague - - Miasma + - Ammonia - Maintenance - Trash - Garbage @@ -36,4 +36,4 @@ - Mayor - Boss - Prophet - - Cheese \ No newline at end of file + - Cheese diff --git a/Resources/Prototypes/Datasets/tips.yml b/Resources/Prototypes/Datasets/tips.yml index 38e6395c23..3c98fbde86 100644 --- a/Resources/Prototypes/Datasets/tips.yml +++ b/Resources/Prototypes/Datasets/tips.yml @@ -1,4 +1,4 @@ -- type: dataset +- type: dataset id: Tips values: - "If you're on fire, you can click the alert on the right of your screen to stop, drop, and roll." @@ -139,3 +139,5 @@ - "Glimmer wisps will only attack you if they detect you are psionic, or you aggravate them by damaging them or dragging away a body they are trying to drain." - "Bibles, holy water, and the anti-psychic knife can deal holy damage, which has strong effects against some creatures." - "Ectoplasm is used in the recipe for normality crystals." + # DeltaV - Specific tips below + - "As a Security Officer, if you're not sure how to determine the severity of a crime or the appropriate punishment, take a look at the Crime Assist application in your PDA!" diff --git a/Resources/Prototypes/DeltaV/Accents/word_replacements.yml b/Resources/Prototypes/DeltaV/Accents/word_replacements.yml new file mode 100644 index 0000000000..2e6a52bbee --- /dev/null +++ b/Resources/Prototypes/DeltaV/Accents/word_replacements.yml @@ -0,0 +1,166 @@ +- type: accent + id: scottish + wordReplacements: + accent-scottish-words-1: accent-scottish-words-replace-1 + accent-scottish-words-2: accent-scottish-words-replace-2 + accent-scottish-words-3: accent-scottish-words-replace-3 + accent-scottish-words-4: accent-scottish-words-replace-4 + accent-scottish-words-5: accent-scottish-words-replace-5 + accent-scottish-words-6: accent-scottish-words-replace-6 + accent-scottish-words-7: accent-scottish-words-replace-7 + accent-scottish-words-8: accent-scottish-words-replace-8 + accent-scottish-words-9: accent-scottish-words-replace-9 + accent-scottish-words-10: accent-scottish-words-replace-10 + accent-scottish-words-11: accent-scottish-words-replace-11 + accent-scottish-words-12: accent-scottish-words-replace-12 + accent-scottish-words-13: accent-scottish-words-replace-13 + accent-scottish-words-14: accent-scottish-words-replace-14 + accent-scottish-words-15: accent-scottish-words-replace-15 + accent-scottish-words-16: accent-scottish-words-replace-16 + accent-scottish-words-17: accent-scottish-words-replace-17 + accent-scottish-words-18: accent-scottish-words-replace-18 + accent-scottish-words-19: accent-scottish-words-replace-19 + accent-scottish-words-20: accent-scottish-words-replace-20 + accent-scottish-words-21: accent-scottish-words-replace-21 + accent-scottish-words-22: accent-scottish-words-replace-22 + accent-scottish-words-23: accent-scottish-words-replace-23 + accent-scottish-words-24: accent-scottish-words-replace-24 + accent-scottish-words-25: accent-scottish-words-replace-25 + accent-scottish-words-26: accent-scottish-words-replace-26 + accent-scottish-words-27: accent-scottish-words-replace-27 + accent-scottish-words-28: accent-scottish-words-replace-28 + accent-scottish-words-29: accent-scottish-words-replace-29 + accent-scottish-words-30: accent-scottish-words-replace-30 + accent-scottish-words-31: accent-scottish-words-replace-31 + accent-scottish-words-32: accent-scottish-words-replace-32 + accent-scottish-words-33: accent-scottish-words-replace-33 + accent-scottish-words-34: accent-scottish-words-replace-34 + accent-scottish-words-35: accent-scottish-words-replace-35 + accent-scottish-words-36: accent-scottish-words-replace-36 + accent-scottish-words-37: accent-scottish-words-replace-37 + accent-scottish-words-38: accent-scottish-words-replace-38 + accent-scottish-words-39: accent-scottish-words-replace-39 + accent-scottish-words-40: accent-scottish-words-replace-40 + accent-scottish-words-41: accent-scottish-words-replace-41 + accent-scottish-words-42: accent-scottish-words-replace-42 + accent-scottish-words-43: accent-scottish-words-replace-43 + accent-scottish-words-44: accent-scottish-words-replace-44 + accent-scottish-words-45: accent-scottish-words-replace-45 + accent-scottish-words-46: accent-scottish-words-replace-46 + accent-scottish-words-47: accent-scottish-words-replace-47 + accent-scottish-words-48: accent-scottish-words-replace-48 + accent-scottish-words-49: accent-scottish-words-replace-49 + accent-scottish-words-50: accent-scottish-words-replace-50 + accent-scottish-words-51: accent-scottish-words-replace-51 + accent-scottish-words-52: accent-scottish-words-replace-52 + accent-scottish-words-53: accent-scottish-words-replace-53 + accent-scottish-words-54: accent-scottish-words-replace-54 + accent-scottish-words-55: accent-scottish-words-replace-55 + accent-scottish-words-56: accent-scottish-words-replace-56 + accent-scottish-words-57: accent-scottish-words-replace-57 + accent-scottish-words-58: accent-scottish-words-replace-58 + accent-scottish-words-59: accent-scottish-words-replace-59 + accent-scottish-words-60: accent-scottish-words-replace-60 + accent-scottish-words-61: accent-scottish-words-replace-61 + accent-scottish-words-62: accent-scottish-words-replace-62 + accent-scottish-words-63: accent-scottish-words-replace-63 + accent-scottish-words-64: accent-scottish-words-replace-64 + accent-scottish-words-65: accent-scottish-words-replace-65 + accent-scottish-words-66: accent-scottish-words-replace-66 + accent-scottish-words-67: accent-scottish-words-replace-67 + accent-scottish-words-68: accent-scottish-words-replace-68 + accent-scottish-words-69: accent-scottish-words-replace-69 + accent-scottish-words-70: accent-scottish-words-replace-70 + accent-scottish-words-71: accent-scottish-words-replace-71 + accent-scottish-words-72: accent-scottish-words-replace-72 + accent-scottish-words-73: accent-scottish-words-replace-73 + accent-scottish-words-74: accent-scottish-words-replace-74 + accent-scottish-words-75: accent-scottish-words-replace-75 + accent-scottish-words-76: accent-scottish-words-replace-76 + accent-scottish-words-77: accent-scottish-words-replace-77 + accent-scottish-words-78: accent-scottish-words-replace-78 + accent-scottish-words-79: accent-scottish-words-replace-79 + accent-scottish-words-80: accent-scottish-words-replace-80 + accent-scottish-words-81: accent-scottish-words-replace-81 + accent-scottish-words-82: accent-scottish-words-replace-82 + accent-scottish-words-83: accent-scottish-words-replace-83 + accent-scottish-words-84: accent-scottish-words-replace-84 + accent-scottish-words-85: accent-scottish-words-replace-85 + accent-scottish-words-86: accent-scottish-words-replace-86 + accent-scottish-words-87: accent-scottish-words-replace-87 + accent-scottish-words-88: accent-scottish-words-replace-88 + accent-scottish-words-89: accent-scottish-words-replace-89 + accent-scottish-words-90: accent-scottish-words-replace-90 + accent-scottish-words-91: accent-scottish-words-replace-91 + accent-scottish-words-92: accent-scottish-words-replace-92 + accent-scottish-words-93: accent-scottish-words-replace-93 + accent-scottish-words-94: accent-scottish-words-replace-94 + accent-scottish-words-95: accent-scottish-words-replace-95 + accent-scottish-words-96: accent-scottish-words-replace-96 + accent-scottish-words-97: accent-scottish-words-replace-97 + accent-scottish-words-98: accent-scottish-words-replace-98 + accent-scottish-words-99: accent-scottish-words-replace-99 + accent-scottish-words-100: accent-scottish-words-replace-100 + accent-scottish-words-101: accent-scottish-words-replace-101 + accent-scottish-words-102: accent-scottish-words-replace-102 + accent-scottish-words-103: accent-scottish-words-replace-103 + accent-scottish-words-104: accent-scottish-words-replace-104 + accent-scottish-words-105: accent-scottish-words-replace-105 + accent-scottish-words-106: accent-scottish-words-replace-106 + accent-scottish-words-107: accent-scottish-words-replace-107 + accent-scottish-words-108: accent-scottish-words-replace-108 + accent-scottish-words-109: accent-scottish-words-replace-109 + accent-scottish-words-110: accent-scottish-words-replace-110 + accent-scottish-words-111: accent-scottish-words-replace-111 + accent-scottish-words-112: accent-scottish-words-replace-112 + accent-scottish-words-113: accent-scottish-words-replace-113 + accent-scottish-words-114: accent-scottish-words-replace-114 + accent-scottish-words-115: accent-scottish-words-replace-115 + accent-scottish-words-116: accent-scottish-words-replace-116 + accent-scottish-words-117: accent-scottish-words-replace-117 + accent-scottish-words-118: accent-scottish-words-replace-118 + accent-scottish-words-119: accent-scottish-words-replace-119 + accent-scottish-words-120: accent-scottish-words-replace-120 + accent-scottish-words-121: accent-scottish-words-replace-121 + accent-scottish-words-122: accent-scottish-words-replace-122 + accent-scottish-words-123: accent-scottish-words-replace-123 + accent-scottish-words-124: accent-scottish-words-replace-124 + accent-scottish-words-125: accent-scottish-words-replace-125 + accent-scottish-words-126: accent-scottish-words-replace-126 + accent-scottish-words-127: accent-scottish-words-replace-127 + accent-scottish-words-128: accent-scottish-words-replace-128 + accent-scottish-words-129: accent-scottish-words-replace-129 + accent-scottish-words-130: accent-scottish-words-replace-130 + accent-scottish-words-131: accent-scottish-words-replace-131 + accent-scottish-words-132: accent-scottish-words-replace-132 + accent-scottish-words-133: accent-scottish-words-replace-133 + accent-scottish-words-134: accent-scottish-words-replace-134 + accent-scottish-words-135: accent-scottish-words-replace-135 + accent-scottish-words-136: accent-scottish-words-replace-136 + accent-scottish-words-137: accent-scottish-words-replace-137 + accent-scottish-words-138: accent-scottish-words-replace-138 + accent-scottish-words-139: accent-scottish-words-replace-139 + accent-scottish-words-140: accent-scottish-words-replace-140 + accent-scottish-words-141: accent-scottish-words-replace-141 + accent-scottish-words-142: accent-scottish-words-replace-142 + accent-scottish-words-143: accent-scottish-words-replace-143 + accent-scottish-words-144: accent-scottish-words-replace-144 + accent-scottish-words-145: accent-scottish-words-replace-145 + accent-scottish-words-146: accent-scottish-words-replace-146 + accent-scottish-words-147: accent-scottish-words-replace-147 + accent-scottish-words-148: accent-scottish-words-replace-148 + accent-scottish-words-149: accent-scottish-words-replace-149 + accent-scottish-words-150: accent-scottish-words-replace-150 + accent-scottish-words-151: accent-scottish-words-replace-151 + accent-scottish-words-152: accent-scottish-words-replace-152 + accent-scottish-words-153: accent-scottish-words-replace-153 + accent-scottish-words-154: accent-scottish-words-replace-154 + accent-scottish-words-155: accent-scottish-words-replace-155 + accent-scottish-words-156: accent-scottish-words-replace-156 + accent-scottish-words-157: accent-scottish-words-replace-157 + accent-scottish-words-158: accent-scottish-words-replace-158 + accent-scottish-words-159: accent-scottish-words-replace-159 + accent-scottish-words-160: accent-scottish-words-replace-160 + accent-scottish-words-161: accent-scottish-words-replace-161 + accent-scottish-words-162: accent-scottish-words-replace-162 + accent-scottish-words-163: accent-scottish-words-replace-163 \ No newline at end of file diff --git a/Resources/Prototypes/DeltaV/Access/cargo.yml b/Resources/Prototypes/DeltaV/Access/cargo.yml index a70f3afe4d..72ba1da785 100644 --- a/Resources/Prototypes/DeltaV/Access/cargo.yml +++ b/Resources/Prototypes/DeltaV/Access/cargo.yml @@ -1,7 +1,3 @@ - type: accessLevel id: Orders name: id-card-access-level-orders # Custom access level that allows the approval of orders - -- type: accessLevel - id: Mantis - name: id-card-access-level-mantis # Custom access level for the Mantis so they can have their own locker and maybe doors diff --git a/Resources/Prototypes/DeltaV/Access/epistemics.yml b/Resources/Prototypes/DeltaV/Access/epistemics.yml new file mode 100644 index 0000000000..8ccee35e70 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Access/epistemics.yml @@ -0,0 +1,3 @@ +- type: accessLevel + id: Mantis + name: id-card-access-level-mantis # Custom access level for the Mantis so they can have their own locker and maybe doors diff --git a/Resources/Prototypes/DeltaV/Access/medical.yml b/Resources/Prototypes/DeltaV/Access/medical.yml new file mode 100644 index 0000000000..326f602210 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Access/medical.yml @@ -0,0 +1,3 @@ +- type: accessLevel + id: Psychologist + name: id-card-access-level-psychologist diff --git a/Resources/Prototypes/DeltaV/Access/mics.yml b/Resources/Prototypes/DeltaV/Access/mics.yml new file mode 100644 index 0000000000..dc2930e738 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Access/mics.yml @@ -0,0 +1,44 @@ +- type: accessGroup + id: AllAccessBorg + tags: +# - EmergencyShuttleRepealAll +# - Captain +# - HeadOfPersonnel +# - ChiefEngineer +# - ChiefMedicalOfficer +# - HeadOfSecurity +# - ResearchDirector + - Command + - Security + - Detective +# - Armory + - Lawyer + - Engineering + - Medical +# - Quartermaster + - Salvage + - Cargo + - Research + - Service + - Maintenance + - External + - Janitor + - Theatre + - Bar + - Chemistry + - Kitchen + - Chapel + - Hydroponics + - Atmospherics + - Mail +# - Orders + - Mantis + - Paramedic + - Psychologist + - Boxer + - Clown + - Library + - Mime + - Musician + - Reporter + - Zookeeper diff --git a/Resources/Prototypes/DeltaV/Access/misc.yml b/Resources/Prototypes/DeltaV/Access/misc.yml new file mode 100644 index 0000000000..e4b6e5137d --- /dev/null +++ b/Resources/Prototypes/DeltaV/Access/misc.yml @@ -0,0 +1,3 @@ +- type: accessLevel + id: DV-SpareSafe + name: id-card-access-level-unused diff --git a/Resources/Prototypes/DeltaV/Access/service.yml b/Resources/Prototypes/DeltaV/Access/service.yml new file mode 100644 index 0000000000..9416a165fe --- /dev/null +++ b/Resources/Prototypes/DeltaV/Access/service.yml @@ -0,0 +1,27 @@ +- type: accessLevel + id: Boxer + name: id-card-access-level-boxer + +- type: accessLevel + id: Clown + name: id-card-access-level-clown + +- type: accessLevel + id: Library + name: id-card-access-level-library + +- type: accessLevel + id: Mime + name: id-card-access-level-mime + +- type: accessLevel + id: Musician + name: id-card-access-level-musician + +- type: accessLevel + id: Reporter + name: id-card-access-level-reporter + +- type: accessLevel + id: Zookeeper + name: id-card-access-level-zookeeper diff --git a/Resources/Prototypes/DeltaV/Body/Organs/harpy.yml b/Resources/Prototypes/DeltaV/Body/Organs/harpy.yml new file mode 100644 index 0000000000..2d47ecd352 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Body/Organs/harpy.yml @@ -0,0 +1,34 @@ +- type: entity + id: OrganHarpyLungs + parent: BaseHumanOrgan + name: lungs + description: "An advanced pair of avian lungs. Filters oxygen by way of moving air constantly through air sacs." + components: + - type: Sprite + layers: + - state: lung-l + - state: lung-r + - type: Lung + - type: Metabolizer + updateFrequency: 2.0 + removeEmpty: true + solutionOnBody: false + solution: "Lung" + metabolizerTypes: [ Human ] + groups: + - id: Gas + rateModifier: 200.0 + - type: SolutionContainerManager + solutions: + organ: + reagents: + - ReagentId: Nutriment + Quantity: 10 + Lung: + maxVol: 100.0 + canReact: false + food: + maxVol: 5 + reagents: + - ReagentId: UncookedAnimalProteins + Quantity: 5 diff --git a/Resources/Prototypes/DeltaV/Body/Prototypes/harpy.yml b/Resources/Prototypes/DeltaV/Body/Prototypes/harpy.yml index c5bba3da27..65073a778f 100644 --- a/Resources/Prototypes/DeltaV/Body/Prototypes/harpy.yml +++ b/Resources/Prototypes/DeltaV/Body/Prototypes/harpy.yml @@ -19,7 +19,7 @@ - right leg organs: heart: OrganHumanHeart - lungs: OrganHumanLungs + lungs: OrganHarpyLungs stomach: OrganHumanStomach liver: OrganHumanLiver kidneys: OrganHumanKidneys diff --git a/Resources/Prototypes/DeltaV/Catalog/Cargo/cargo_armory.yml b/Resources/Prototypes/DeltaV/Catalog/Cargo/cargo_armory.yml index 4d2214da8c..1dae88730c 100644 --- a/Resources/Prototypes/DeltaV/Catalog/Cargo/cargo_armory.yml +++ b/Resources/Prototypes/DeltaV/Catalog/Cargo/cargo_armory.yml @@ -27,3 +27,23 @@ cost: 10000 category: Armory group: market + +- type: cargoProduct + id: ArmoryEnergyGun + icon: + sprite: DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi + state: icon + product: CrateArmoryEnergyGun + cost: 5500 + category: Armory + group: market + +- type: cargoProduct + id: ArmoryEnergyGunMini + icon: + sprite: DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi + state: icon + product: CrateArmoryEnergyGunMini + cost: 3500 + category: Armory + group: market diff --git a/Resources/Prototypes/DeltaV/Catalog/Cargo/cargo_fun.yml b/Resources/Prototypes/DeltaV/Catalog/Cargo/cargo_fun.yml new file mode 100644 index 0000000000..d994967a2a --- /dev/null +++ b/Resources/Prototypes/DeltaV/Catalog/Cargo/cargo_fun.yml @@ -0,0 +1,9 @@ +- type: cargoProduct + id: CrateFunBBGun + icon: + sprite: Objects/Weapons/Guns/Pistols/water_pistol.rsi + state: display + product: CrateFunBBGun + cost: 1000 + category: Fun + group: market diff --git a/Resources/Prototypes/DeltaV/Catalog/Fills/Crates/armory.yml b/Resources/Prototypes/DeltaV/Catalog/Fills/Crates/armory.yml index a66a6b268a..a321cdf059 100644 --- a/Resources/Prototypes/DeltaV/Catalog/Fills/Crates/armory.yml +++ b/Resources/Prototypes/DeltaV/Catalog/Fills/Crates/armory.yml @@ -30,3 +30,21 @@ amount: 2 - id: BoxLethalshot amount: 3 + +- type: entity + id: CrateArmoryEnergyGun + parent: CrateWeaponSecure + components: + - type: StorageFill + contents: + - id: WeaponEnergyGun + amount: 3 + +- type: entity + id: CrateArmoryEnergyGunMini + parent: CrateWeaponSecure + components: + - type: StorageFill + contents: + - id: WeaponEnergyGunMini + amount: 3 diff --git a/Resources/Prototypes/DeltaV/Catalog/Fills/Crates/fun.yml b/Resources/Prototypes/DeltaV/Catalog/Fills/Crates/fun.yml new file mode 100644 index 0000000000..45e371ac63 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Catalog/Fills/Crates/fun.yml @@ -0,0 +1,10 @@ +- type: entity + id: CrateFunBBGun + parent: CrateGenericSteel + components: + - type: StorageFill + contents: + - id: WeaponRifleBB + amount: 1 + - id: BoxCartridgeBB + amount: 2 diff --git a/Resources/Prototypes/DeltaV/Catalog/Fills/Lockers/security.yml b/Resources/Prototypes/DeltaV/Catalog/Fills/Lockers/security.yml index 9c31dfa4df..50ba7cc6a6 100644 --- a/Resources/Prototypes/DeltaV/Catalog/Fills/Lockers/security.yml +++ b/Resources/Prototypes/DeltaV/Catalog/Fills/Lockers/security.yml @@ -45,4 +45,23 @@ amount: 2 - id: MagazineShotgun amount: 4 - \ No newline at end of file + +- type: entity + parent: GunSafe + id: GunSafeEnergyGun + name: energy gun safe + components: + - type: StorageFill + contents: + - id: WeaponEnergyGun + amount: 3 + +- type: entity + parent: GunSafe + id: GunSafeEnergyGunMini + name: miniature energy gun safe + components: + - type: StorageFill + contents: + - id: WeaponEnergyGunMini + amount: 3 diff --git a/Resources/Prototypes/DeltaV/Catalog/uplink_catalog.yml b/Resources/Prototypes/DeltaV/Catalog/uplink_catalog.yml index a32f57beed..a9798ce212 100644 --- a/Resources/Prototypes/DeltaV/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/DeltaV/Catalog/uplink_catalog.yml @@ -1,3 +1,14 @@ +- type: listing + id: Mouse Operative Reinforcement + name: uplink-reinforcement-radio-nukie-mouse-name + description: uplink-reinforcement-radio-nukie-mouse-desc + productEntity: ReinforcementRadioSyndicateNukieMouse + icon: { sprite: DeltaV/Objects/Devices/communication.rsi, state: cheese-radio } + cost: + Telecrystal: 3 + categories: + - UplinkUtility + #- type: listing # id: UplinkCyborgBeaconSyndicate # name: uplink-borg-beacon-name @@ -17,3 +28,21 @@ # blacklist: # components: # - SurplusBundle + +- type: listing + id: UplinkBionicSyrinxImplanter + name: uplink-bionic-syrinx-implanter-name + description: uplink-bionic-syrinx-implanter-desc + productEntity: BionicSyrinxImplanter + cost: + Telecrystal: 2 + categories: + - UplinkImplants + conditions: + - !type:BuyerSpeciesCondition + whitelist: + - Harpy + - !type:BuyerWhitelistCondition + blacklist: + components: + - SurplusBundle \ No newline at end of file diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/backpacks.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/backpacks.yml index f72a115c20..37b4a65d98 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/backpacks.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/backpacks.yml @@ -9,4 +9,8 @@ - id: EmergencyRollerBedSpawnFolded - id: BodyBag_Folded - id: Portafib - - id: Flash + # - id: Flash + - id: BruteAutoInjector + amount: 2 + - id: BurnAutoInjector + amount: 2 diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/duffelbag.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/duffelbag.yml index 3288b1617d..2ab94da0a4 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/duffelbag.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/duffelbag.yml @@ -9,4 +9,8 @@ - id: EmergencyRollerBedSpawnFolded - id: BodyBag_Folded - id: Portafib - - id: Flash + # - id: Flash + - id: BruteAutoInjector + amount: 2 + - id: BurnAutoInjector + amount: 2 diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/satchel.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/satchel.yml index cc6855c7c2..d2d081da46 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/satchel.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/satchel.yml @@ -9,4 +9,8 @@ - id: EmergencyRollerBedSpawnFolded - id: BodyBag_Folded - id: Portafib - - id: Flash + # - id: Flash + - id: BruteAutoInjector + amount: 2 + - id: BurnAutoInjector + amount: 2 diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Ears/headset_alt.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Ears/headset_alt.yml deleted file mode 100644 index 969caa6786..0000000000 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Ears/headset_alt.yml +++ /dev/null @@ -1,15 +0,0 @@ -- type: entity - parent: ClothingHeadsetAlt - id: ClothingHeadsetAltService - name: head of personnel's over-ear headset - components: - - type: ContainerFill - containers: - key_slots: - - EncryptionKeyService - - EncryptionKeyCommand - - EncryptionKeyCommon - - type: Sprite - sprite: DeltaV/Clothing/Ears/Headsets/service.rsi - - type: Clothing - sprite: DeltaV/Clothing/Ears/Headsets/service.rsi diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Ears/headsets.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Ears/headsets.yml index f63b6e4ce0..25c7252987 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Ears/headsets.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Ears/headsets.yml @@ -10,3 +10,32 @@ - EncryptionKeyService - EncryptionKeyCommand - EncryptionKeyCommon + +- type: entity + parent: ClothingHeadsetAlt + id: ClothingHeadsetAltService + name: head of personnel's over-ear headset + components: + - type: ContainerFill + containers: + key_slots: + - EncryptionKeyService + - EncryptionKeyCommand + - EncryptionKeyCommon + - type: Sprite + sprite: DeltaV/Clothing/Ears/Headsets/service.rsi + - type: Clothing + sprite: DeltaV/Clothing/Ears/Headsets/service.rsi + +- type: entity + parent: ClothingHeadsetAltSyndicate + id: ClothingHeadsetAltSyndicateListening + name: blood-red over-ear interception headset + description: An advanced, modular syndicate interception intercom that fits over the head. + components: + - type: ContainerFill + containers: + key_slots: + - EncryptionKeySyndie + - EncryptionKeyStationMaster + diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml index 1c5cef39af..22167ae038 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml @@ -192,3 +192,21 @@ sprite: DeltaV/Clothing/Head/Hats/beret_corpsman.rsi - type: Clothing sprite: DeltaV/Clothing/Head/Hats/beret_corpsman.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatStrawHat + name: straw hat + description: A fancy hat for hot days! Not recommended to wear near fires. + components: + - type: Sprite + sprite: DeltaV/Clothing/Head/Hats/straw_hat.rsi + - type: Clothing + sprite: DeltaV/Clothing/Head/Hats/straw_hat.rsi + - type: Construction + graph: StrawHat + node: strawhat + - type: Tag + tags: + - HamsterWearable + diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Shoes/winter-boots.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Shoes/winter-boots.yml new file mode 100644 index 0000000000..e4e1d31f89 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Shoes/winter-boots.yml @@ -0,0 +1,209 @@ +- type: entity + parent: ClothingShoesBaseWinterBoots + id: ClothingShoesBootsWinterAtmos + name: atmospherics winter boots + components: + - type: Sprite + sprite: DeltaV/Clothing/Shoes/Boots/winterbootsatmos.rsi + - type: Clothing + sprite: DeltaV/Clothing/Shoes/Boots/winterbootsatmos.rsi + +- type: entity + parent: ClothingShoesBaseWinterBoots + id: ClothingShoesBootsWinterCap + name: captain's winter boots + components: + - type: Sprite + sprite: DeltaV/Clothing/Shoes/Boots/winterbootscap.rsi + - type: Clothing + sprite: DeltaV/Clothing/Shoes/Boots/winterbootscap.rsi + +- type: entity + parent: ClothingShoesBaseWinterBoots + id: ClothingShoesBootsWinterChiefEngineer + name: CE's winter boots + components: + - type: Sprite + sprite: DeltaV/Clothing/Shoes/Boots/winterbootsce.rsi + - type: Clothing + sprite: DeltaV/Clothing/Shoes/Boots/winterbootsce.rsi + +- type: entity + parent: ClothingShoesBaseWinterBoots + id: ClothingShoesBootsWinterCentCom + name: Centcom winter boots + components: + - type: Sprite + sprite: DeltaV/Clothing/Shoes/Boots/winterbootscentcom.rsi + - type: Clothing + sprite: DeltaV/Clothing/Shoes/Boots/winterbootscentcom.rsi + +- type: entity + parent: ClothingShoesBaseWinterBoots + id: ClothingShoesBootsWinterChef + name: chef winter boots + components: + - type: Sprite + sprite: DeltaV/Clothing/Shoes/Boots/winterbootschef.rsi + - type: Clothing + sprite: DeltaV/Clothing/Shoes/Boots/winterbootschef.rsi + +- type: entity + parent: ClothingShoesBaseWinterBoots + id: ClothingShoesBootsWinterChem + name: chemist winter boots + components: + - type: Sprite + sprite: DeltaV/Clothing/Shoes/Boots/winterbootschem.rsi + - type: Clothing + sprite: DeltaV/Clothing/Shoes/Boots/winterbootschem.rsi + +- type: entity + parent: ClothingShoesBaseWinterBoots + id: ClothingShoesBootsWinterClown + name: clown winter boots + components: + - type: Sprite + sprite: DeltaV/Clothing/Shoes/Boots/winterbootsclown.rsi + - type: Clothing + sprite: DeltaV/Clothing/Shoes/Boots/winterbootsclown.rsi + +- type: entity + parent: ClothingShoesBaseWinterBoots + id: ClothingShoesBootsWinterChiefMedicalOfficer + name: CMO winter boots + components: + - type: Sprite + sprite: DeltaV/Clothing/Shoes/Boots/winterbootscmo.rsi + - type: Clothing + sprite: DeltaV/Clothing/Shoes/Boots/winterbootscmo.rsi + +- type: entity + parent: ClothingShoesBaseWinterBoots + id: ClothingShoesBootsWinterGenetics + name: genetics winter boots + components: + - type: Sprite + sprite: DeltaV/Clothing/Shoes/Boots/winterbootsgen.rsi + - type: Clothing + sprite: DeltaV/Clothing/Shoes/Boots/winterbootsgen.rsi + +- type: entity + parent: ClothingShoesBaseWinterBoots + id: ClothingShoesBootsWinterHeadOfPersonel + name: HoP's winter boots + components: + - type: Sprite + sprite: DeltaV/Clothing/Shoes/Boots/winterbootshop.rsi + - type: Clothing + sprite: DeltaV/Clothing/Shoes/Boots/winterbootshop.rsi + +- type: entity + parent: ClothingShoesBaseWinterBoots + id: ClothingShoesBootsWinterHeadOfSecurity + name: HoS's winter boots + components: + - type: Sprite + sprite: DeltaV/Clothing/Shoes/Boots/winterbootshos.rsi + - type: Clothing + sprite: DeltaV/Clothing/Shoes/Boots/winterbootshos.rsi + +- type: entity + parent: ClothingShoesBaseWinterBoots + id: ClothingShoesBootsWinterHydro + name: Botanist winter boots + components: + - type: Sprite + sprite: DeltaV/Clothing/Shoes/Boots/winterbootshydro.rsi + - type: Clothing + sprite: DeltaV/Clothing/Shoes/Boots/winterbootshydro.rsi + +- type: entity + parent: ClothingShoesBaseWinterBoots + id: ClothingShoesBootsWinterJani + name: custodial winter boots + components: + - type: Sprite + sprite: DeltaV/Clothing/Shoes/Boots/winterbootsjani.rsi + - type: Clothing + sprite: DeltaV/Clothing/Shoes/Boots/winterbootsjani.rsi + +- type: entity + parent: ClothingShoesBaseWinterBoots + id: ClothingShoesBootsWinterMime + name: mime winter boots + components: + - type: Sprite + sprite: DeltaV/Clothing/Shoes/Boots/winterbootsmime.rsi + - type: Clothing + sprite: DeltaV/Clothing/Shoes/Boots/winterbootsmime.rsi + +- type: entity + parent: ClothingShoesBaseWinterBoots + id: ClothingShoesBootsWinterMiner + name: miner winter boots + components: + - type: Sprite + sprite: DeltaV/Clothing/Shoes/Boots/winterbootsminer.rsi + - type: Clothing + sprite: DeltaV/Clothing/Shoes/Boots/winterbootsminer.rsi + +- type: entity + parent: ClothingShoesBaseWinterBoots + id: ClothingShoesBootsWinterParamedic + name: paramedic winter boots + components: + - type: Sprite + sprite: DeltaV/Clothing/Shoes/Boots/winterbootsparamed.rsi + - type: Clothing + sprite: DeltaV/Clothing/Shoes/Boots/winterbootsparamed.rsi + +- type: entity + parent: ClothingShoesBaseWinterBoots + id: ClothingShoesBootsWinterLogisticsOfficer + name: LO's winter boots + components: + - type: Sprite + sprite: DeltaV/Clothing/Shoes/Boots/winterbootsqm.rsi + - type: Clothing + sprite: DeltaV/Clothing/Shoes/Boots/winterbootsqm.rsi + +- type: entity + parent: ClothingShoesBaseWinterBoots + id: ClothingShoesBootsWinterMystagogue + name: Mystagogue's winter boots + components: + - type: Sprite + sprite: DeltaV/Clothing/Shoes/Boots/winterbootsrd.rsi + - type: Clothing + sprite: DeltaV/Clothing/Shoes/Boots/winterbootsrd.rsi + +- type: entity + parent: ClothingShoesBaseWinterBoots + id: ClothingShoesBootsWinterRobo + name: robotics winter boots + components: + - type: Sprite + sprite: DeltaV/Clothing/Shoes/Boots/winterbootsrobo.rsi + - type: Clothing + sprite: DeltaV/Clothing/Shoes/Boots/winterbootsrobo.rsi + +- type: entity + parent: ClothingShoesBaseWinterBoots + id: ClothingShoesBootsWinterViro + name: virology winter boots + components: + - type: Sprite + sprite: DeltaV/Clothing/Shoes/Boots/winterbootsviro.rsi + - type: Clothing + sprite: DeltaV/Clothing/Shoes/Boots/winterbootsviro.rsi + +- type: entity + parent: ClothingShoesBaseWinterBoots + id: ClothingShoesBootsWinterWarden + name: Warden's winter boots + components: + - type: Sprite + sprite: DeltaV/Clothing/Shoes/Boots/winterbootswarden.rsi + - type: Clothing + sprite: DeltaV/Clothing/Shoes/Boots/winterbootswarden.rsi diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Uniforms/jumpsuits.yml index 5d7f045e77..f5497646d6 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Uniforms/jumpsuits.yml @@ -232,3 +232,14 @@ sprite: DeltaV/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi - type: Clothing sprite: DeltaV/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitKilt + name: kilt + description: A fine bit o' garb for the lad an' lasses. + components: + - type: Sprite + sprite: DeltaV/Clothing/Uniforms/Jumpsuit/kilt.rsi + - type: Clothing + sprite: DeltaV/Clothing/Uniforms/Jumpsuit/kilt.rsi \ No newline at end of file diff --git a/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/Random/miningrock.yml b/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/Random/miningrock.yml index f91ce77f9e..f4aef8284b 100644 --- a/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/Random/miningrock.yml +++ b/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/Random/miningrock.yml @@ -31,7 +31,7 @@ layers: - state: red - sprite: Structures/Decoration/crystal.rsi - state: crystal_green + state: crystal_grey - type: RandomSpawner prototypes: - CrystalGreen diff --git a/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/ghost_roles.yml b/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/ghost_roles.yml index e1f06b82ec..b43f50890c 100644 --- a/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/ghost_roles.yml +++ b/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/ghost_roles.yml @@ -15,3 +15,33 @@ - state: green - sprite: Mobs/Species/Human/parts.rsi state: full + +- type: entity # Part of PirateRadioSpawn + noSpawn: true + id: SpawnPointGhostSyndicateListener + name: ghost role spawn point + suffix: syndicate listener + parent: MarkerBase + components: + - type: GhostRole + name: ghost-role-information-listeningop-name + description: ghost-role-information-listeningop-description + rules: ghost-role-information-listeningop-rules + requirements: # Worth considering these numbers for the goal of making sure someone willing to MRP takes this. + - !type:OverallPlaytimeRequirement + time: 259200 # 72 hours + - !type:DepartmentTimeRequirement + department: Security + time: 40000 # 11.5 hours + - !type:DepartmentTimeRequirement + department: Civilian + time: 72000 # 20 hours + - !type:WhitelistRequirement + - type: GhostRoleMobSpawner + prototype: MobHumanSyndicateListener + - type: Sprite + sprite: Markers/jobs.rsi + layers: + - state: green + - sprite: Structures/Wallmounts/signs.rsi + state: radiation \ No newline at end of file diff --git a/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/mobs.yml b/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/mobs.yml index b8e8c9fb26..1b6654fd3b 100644 --- a/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/mobs.yml +++ b/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/mobs.yml @@ -23,3 +23,16 @@ - type: ConditionalSpawner prototypes: - MobSecDogLaika + +- type: entity + name: Syndicate Guard Spawner + id: SpawnMobRadioGuard + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobRadioGuard diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/felinid.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/felinid.yml new file mode 100644 index 0000000000..1d386dd936 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/felinid.yml @@ -0,0 +1,20 @@ +- type: marking + id: FelinidFluffyTailRings + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Felinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi + state: Felinid_fluffy_tail_full + - sprite: DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi + state: felinid_fluffy_tail_rings + +- type: marking + id: FelinidFluffyTail + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Felinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi + state: Felinid_fluffy_tail_full + diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/hair.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/hair.yml index eff21afe08..51cba35429 100644 --- a/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/hair.yml +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/hair.yml @@ -69,3 +69,27 @@ sprites: - sprite: DeltaV/Mobs/Customization/hair.rsi state: classic_crewcut + +- type: marking + id: HumanHairClassicLong + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: DeltaV/Mobs/Customization/hair.rsi + state: classic_long + +- type: marking + id: HumanHairClassicLong2 + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: DeltaV/Mobs/Customization/hair.rsi + state: classic_long2 + +- type: marking + id: HumanHairClassicLong3 + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: DeltaV/Mobs/Customization/hair.rsi + state: classic_long3 diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/animals.yml index 15a30f4c02..5975ecb0da 100644 --- a/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/animals.yml @@ -120,10 +120,11 @@ damage: 22 - type: MeleeWeapon hidden: true + altDisarm: false soundHit: path: /Audio/Effects/bite.ogg angle: 0 - attackRate: 0.75 + attackRate: 1 damage: types: Slash: 10 @@ -168,6 +169,7 @@ - type: Bloodstream bloodMaxVolume: 300 # BIG DOG. MUCH BLOOD :3 - type: Puller + needsHands: false - type: MobPrice price: 400 - type: Tag diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/nukiemouse.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/nukiemouse.yml new file mode 100644 index 0000000000..96950317c1 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/nukiemouse.yml @@ -0,0 +1,166 @@ +- type: entity + name: nuclear operative mouse + parent: [ SimpleMobBase, MobCombat ] + id: MobNukieMouse + description: A Nuclear Operative... MOUSE?! + suffix: syndicate + components: + - type: GhostRole + makeSentient: true + allowSpeech: true + allowMovement: true + name: ghost-role-information-nukie-mouse-name + description: ghost-role-information-nukie-mouse-description + - type: GhostTakeoverAvailable + - type: RandomMetadata + nameSegments: [names_mouse_death_commando] + - type: NpcFactionMember + factions: + - Syndicate + - type: Speech + speechVerb: SmallMob + speechSounds: Squeak + - type: PointLight + radius: 1.5 + energy: 2.3 + offset: 0, -1 + color: green + - type: Sprite + drawdepth: SmallMobs + sprite: DeltaV/Mobs/Animals/nukiemouse.rsi + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + state: mouse + - type: Physics + bodyType: KinematicController + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.2 + density: 30 #Bulky by mouse standards... + mask: + - SmallMobMask + layer: + - SmallMobLayer + - type: MobState + - type: Deathgasp + - type: MobStateActions + actions: + Critical: + - ActionCritSuccumb + - ActionCritFakeDeath + - ActionCritLastWords + - type: MobThresholds + thresholds: + 0: Alive + 40: Critical + 60: Dead + - type: MovementSpeedModifier + baseWalkSpeed : 3 + baseSprintSpeed : 4.9 + - type: Reactive + groups: + Flammable: [Touch] + Extinguish: [Touch] + - type: InventorySlots + - type: UserInterface + interfaces: + - key: enum.StrippingUiKey.Key + type: StrippableBoundUserInterface + - type: DamageStateVisuals + states: + Alive: + Base: mouse + Critical: + Base: dead + Dead: + Base: splat + - type: Food + - type: Hunger + baseDecayRate: 0.1 + - type: Extractable + grindableSolutionName: food + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: Nutriment + Quantity: 10 + - ReagentId: Blood + Quantity: 55 + - ReagentId: Fat + Quantity: 5 + - type: Butcherable + spawned: + - id: FoodMeat + amount: 1 + - type: ReplacementAccent + accent: mouse + - type: Tag + tags: + - VimPilot + - Trash + - Mouse + - Meat + - FootstepSound + - Radio + - type: Puller + needsHands: False + - type: NoSlip + - type: Respirator #It just works? + minSaturation: 5.0 + - type: Temperature + heatDamageThreshold: 423 + coldDamageThreshold: 0 + - type: PressureImmunity + - type: Insulated + - type: Barotrauma + damage: + types: + Blunt: 0.1 + - type: Vocal + sounds: + Male: Mouse + Female: Mouse + Unsexed: Mouse + wilhelmProbability: 0.01 + - type: CombatMode + - type: MeleeWeapon + soundHit: + path: /Audio/Effects/bite.ogg + angle: 0 + animation: WeaponArcBite + damage: + types: + Slash: 5 + Piercing: 3 + Structural: 1.5 + - type: Body + prototype: Rat + requiredLegs: 1 # TODO: More than 1 leg + - type: Bloodstream + bloodMaxVolume: 60 + - type: CanEscapeInventory + BaseResistTime: 3 + - type: MobPrice + price: 250 # Their suits, while tiny, go for quite a bit on the market + - type: IntrinsicRadioReceiver + - type: IntrinsicRadioTransmitter + channels: + - Syndicate + - type: ActiveRadio + channels: + - Syndicate + # make the player a traitor once its taken + - type: AutoTraitor + giveUplink: false + giveObjectives: false + - type: InteractionPopup + successChance: 0.6 + interactSuccessString: petting-success-nukie-mouse + interactFailureString: petting-failure-nukie-mouse + interactSuccessSpawn: EffectHearts + interactSuccessSound: + path: /Audio/Animals/mouse_squeak.ogg \ No newline at end of file diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/pets.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/pets.yml index 5f94728999..2d1a1d72c4 100644 --- a/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/pets.yml +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/pets.yml @@ -31,6 +31,10 @@ allowMovement: true name: "Laika" description: "Security's resident she-dog. Badger the officers for headpats and nip at the heels of violent offenders." + requirements: + - !type:DepartmentTimeRequirement + department: Security + time: 14400 # DeltaV - 4 hours - type: GhostTakeoverAvailable - type: InteractionPopup successChance: 1 @@ -48,3 +52,4 @@ tags: - CannotSuicide - VimPilot + - DoorBumpOpener diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/salvage.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/salvage.yml new file mode 100644 index 0000000000..070ff60647 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/salvage.yml @@ -0,0 +1,44 @@ +- type: entity + name: Syndicate Guard + parent: BaseMobHuman + id: MobRadioGuard + components: + - type: NpcFactionMember + factions: + - Syndicate + - type: MindContainer + showExamineInfo: False + - type: Loadout + prototypes: + - RadioGuardGear + - type: InputMover + - type: MobMover + - type: HTN + rootTask: + task: SimpleHumanoidHostileCompound + - type: Respirator #Mobs can't turn on internals by themselves, so we have to simulate them having it on + damage: + types: + Asphyxiation: 0 + damageRecovery: + types: + Asphyxiation: -1.0 + - type: Gun #Mobs currently cannot bolt a gun, so we have to simulate them firing it + fireRate: 2 + soundGunshot: /Audio/Weapons/Guns/Gunshots/pistol.ogg + useKey: false + selectedMode: SemiAuto + availableModes: + - SemiAuto + - type: CombatMode + - type: BasicEntityAmmoProvider + proto: CartridgePistol + capacity: 10 + count: 10 + - type: RechargeBasicEntityAmmo + rechargeCooldown: 1 + rechargeSound: + path: /Audio/Weapons/Guns/MagIn/bullet_insert.ogg + - type: AutoImplant + implants: + - DeathAcidifierImplant diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Player/harpy.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Player/harpy.yml index dd7a921aa9..1f4eb696c6 100644 --- a/Resources/Prototypes/DeltaV/Entities/Mobs/Player/harpy.yml +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Player/harpy.yml @@ -17,12 +17,6 @@ - type: MobMover - type: InputMover - type: Respirator - damage: - types: - Asphyxiation: 1.15 - damageRecovery: - types: - Asphyxiation: -1.15 - type: Alerts - type: Actions - type: Eye diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Player/human.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Player/human.yml new file mode 100644 index 0000000000..d539c58496 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Player/human.yml @@ -0,0 +1,17 @@ +- type: entity # Delta-V : Part of a mid-round PirateRadioSpawn + noSpawn: true + parent: MobHumanSyndicateAgent + id: MobHumanSyndicateListener + name: Syndicate Listener + components: + - type: Loadout + prototypes: [SyndicateListenerGear] + - type: NpcFactionMember + factions: + - Syndicate + - type: AutoTraitor + giveUplink: false + giveObjectives: false + - type: AutoImplant + implants: + - DeathAcidifierImplant diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Player/humanoid.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Player/humanoid.yml new file mode 100644 index 0000000000..9e12dc31c4 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Player/humanoid.yml @@ -0,0 +1,15 @@ +- type: entity # Delta-V part of PirateRadioSpawn + id: RandomHumanoidSpawnerListener + name: Syndicate Listener + components: + - type: Sprite + sprite: Mobs/Species/Human/parts.rsi + state: full + - type: RandomHumanoidSpawner + settings: SyndicateListener + +- type: randomHumanoidSettings + id: SyndicateListener + components: + - type: Loadout + prototypes: [SyndicateListenerGear] \ No newline at end of file diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Species/harpy.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/harpy.yml index c2a2304a04..7548add496 100644 --- a/Resources/Prototypes/DeltaV/Entities/Mobs/Species/harpy.yml +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/harpy.yml @@ -76,7 +76,10 @@ - map: [ "enum.HumanoidVisualLayers.HeadTop" ] - map: [ "mask" ] - map: [ "head" ] - + - map: [ "singingLayer" ] + sprite: DeltaV/Effects/harpysinger.rsi + state: singing_music_notes + visible: false - type: HumanoidAppearance species: Harpy - type: Fixtures @@ -84,8 +87,8 @@ fix1: shape: !type:PhysShapeCircle - radius: 0.28 - density: 140 + radius: 0.32 + density: 90 restitution: 0.0 mask: - MobMask @@ -97,12 +100,11 @@ damageModifierSet: Harpy - type: MeleeWeapon soundHit: - collection: Punch + collection: AlienClaw animation: WeaponArcClaw damage: types: - Blunt: 1 - Slash: 5 + Piercing: 5 - type: Speech speechSounds: Alto - type: Vocal @@ -110,7 +112,16 @@ Male: SoundsHarpy Female: SoundsHarpy Unsexed: SoundsHarpy - + - type: GenericVisualizer + visuals: + enum.HarpyVisualLayers.Singing: + singingLayer: + False: {visible: false} + True: {visible: true} + - type: MovementSpeedModifier + baseWalkSpeed: 2.5 + baseSprintSpeed: 5.0 + - type: entity save: false name: Urist McHands @@ -175,3 +186,14 @@ icon: DeltaV/Interface/Actions/harpy_sing.png event: !type:OpenUiActionEvent key: enum.InstrumentUiKey.Key + +- type: entity + id: ActionSyrinxChangeVoiceMask + name: Set name + description: Change the name others hear to something else. + noSpawn: true + components: + - type: InstantAction + icon: DeltaV/Interface/Actions/harpy_syrinx.png + itemIconStyle: BigAction + event: !type:VoiceMaskSetNameEvent diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Species/vulpkanin.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/vulpkanin.yml index c529053017..daa4d70551 100644 --- a/Resources/Prototypes/DeltaV/Entities/Mobs/Species/vulpkanin.yml +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/vulpkanin.yml @@ -9,7 +9,7 @@ species: Vulpkanin - type: Hunger - type: Carriable # Carrying system from nyanotrasen. - - type: Inventory # Allows vulps to wear properly shaped helmets and shite + - type: Inventory # Allows vulps to wear properly shaped helmets speciesId: vulpkanin - type: Thirst - type: Icon diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml new file mode 100644 index 0000000000..1f97d030dc --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml @@ -0,0 +1,21 @@ +- type: entity + parent: ReinforcementRadioSyndicate + id: ReinforcementRadioSyndicateNukieMouse + name: suspicious moldy cheese + description: Moldy cheese with a little worm sticking out of it and a... blinking antenna? Might attract an odd mouse. + components: + - type: Sprite + sprite: DeltaV/Objects/Devices/communication.rsi + layers: + - state: cheese-radio + - type: GhostRole + name: ghost-role-information-nukie-mouse-name + description: ghost-role-information-nukie-mouse-description + rules: ghost-role-information-nukie-mouse-rules + - type: GhostRoleMobSpawner + prototype: MobNukieMouse + - type: EmitSoundOnUse + sound: /Audio/Animals/mouse_squeak.ogg + - type: ItemCooldown + - type: UseDelay + delay: 300 \ No newline at end of file diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Devices/cartridges.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Devices/cartridges.yml new file mode 100644 index 0000000000..e3d5e9d213 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Devices/cartridges.yml @@ -0,0 +1,20 @@ +- type: entity + parent: BaseItem + id: CrimeAssistCartridge + name: crime assist cartridge + description: A cartridge that helps identify crimes and see appropriate punishment. + components: + - type: Sprite + sprite: DeltaV/Objects/Devices/cartridge.rsi + state: cart-cri + - type: Icon + sprite: DeltaV/Objects/Devices/cartridge.rsi + state: cart-cri + - type: UIFragment + ui: !type:CrimeAssistUi + - type: Cartridge + programName: crime-assist-program-name + icon: + sprite: DeltaV/Icons/cri.rsi + state: cri + - type: CrimeAssistCartridge diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Devices/pda.yml index fc8812dc83..6a73f727b6 100644 --- a/Resources/Prototypes/DeltaV/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Devices/pda.yml @@ -16,6 +16,12 @@ map: [ "enum.PdaVisualLayers.IdLight" ] shader: "unshaded" visible: false + - type: CartridgeLoader # DeltaV - Crime Assist + preinstalled: + - CrewManifestCartridge + - NotekeeperCartridge + - NewsReadCartridge + - CrimeAssistCartridge - type: Pda id: BrigmedicIDCard state: pda-corpsman diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Fun/toy_guns.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Fun/toy_guns.yml new file mode 100644 index 0000000000..b5077d4a95 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Fun/toy_guns.yml @@ -0,0 +1,42 @@ +- type: entity + name: BB Gun + parent: BaseItem + id: WeaponRifleBB + description: The classic Red Ryder BB gun. Don't shoot your eye out. + components: + - type: Sprite + netsync: false + size: 50 + sprite: DeltaV/Objects/Weapons/Guns/Rifles/bbgun.rsi + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - type: Clothing + sprite: DeltaV/Objects/Weapons/Guns/Rifles/bbgun.rsi ## + quickEquip: false + slots: + - Back + - suitStorage + - type: AmmoCounter + - type: Gun + selectedMode: SemiAuto + availableModes: + - SemiAuto + fireRate: 2 + soundGunshot: + path: /Audio/Weapons/click.ogg + - type: BallisticAmmoProvider + cycleable: false + proto: BulletBB + whitelist: + tags: + - BulletBB + soundInsert: + path: /Audio/Weapons/drawbow2.ogg #here + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - type: Appearance + - type: StaticPrice + price: 275 diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Misc/implanters.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Misc/implanters.yml new file mode 100644 index 0000000000..9849642f93 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Misc/implanters.yml @@ -0,0 +1,7 @@ +- type: entity + id: BionicSyrinxImplanter + name: bionic syrinx implanter + parent: BaseImplantOnlyImplanterSyndi + components: + - type: Implanter + implant: BionicSyrinxImplant diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Misc/paperslips.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Misc/paperslips.yml new file mode 100644 index 0000000000..fedd7087a4 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Misc/paperslips.yml @@ -0,0 +1,186 @@ +# Biscuits for the slips +- type: entity + parent: BaseItem + id: PaperBiscuit + name: biscuit card + description: A biscuit card. On the back, 'DO NOT DIGEST' is printed in large lettering. + components: + - type: Sprite + sprite: DeltaV/Objects/Misc/biscuits.rsi + layers: + - state: biscuit + - state: biscuit_paper + map: [ "biscuit_paper" ] + visible: false + - state: biscuit_top + map: [ "enum.BiscuitVisualLayers.Top" ] + - type: Item + size: 5 + - type: Tag + tags: + - Document + - type: Appearance + - type: Damageable + damageModifierSet: Wood + - type: Biscuit + - type: BiscuitVisuals + - type: ItemSlots + slots: + PaperSlip: + name: Slip + whitelist: + tags: + - PaperSlip + locked: true + - type: ContainerContainer + containers: + PaperSlip: !type:ContainerSlot {} + - type: ItemMapper + sprite: DeltaV/Objects/Misc/biscuits.rsi + mapLayers: + biscuit_paper: + whitelist: + components: + - Paper + spriteLayers: + - biscuit_paper + +- type: entity + parent: PaperBiscuit + id: PaperBiscuitFilled + suffix: Filled + components: + - type: ItemSlots + slots: + PaperSlip: + startingItem: PaperSlip + name: Slip + whitelist: + tags: + - PaperSlip + locked: true + +- type: entity + parent: PaperBiscuit + id: PaperBiscuitCorporate + name: confidential biscuit card + description: A confidential biscuit card. The tasteful blue color and NT logo on the front makes it look a little like a chocolate bar. + components: + - type: Sprite + sprite: DeltaV/Objects/Misc/biscuits.rsi + layers: + - state: biscuit_secret + map: [ "enum.BiscuitVisualLayers.Base" ] + - state: biscuit_paper_corp + map: [ "biscuit_paper" ] + visible: false + - state: biscuit_secret_top + map: [ "enum.BiscuitVisualLayers.Top" ] + visible: true + +- type: entity + parent: PaperBiscuitCorporate + id: PaperBiscuitCorporateFilled + suffix: Filled + components: + - type: ItemSlots + slots: + PaperSlip: + startingItem: PaperSlipCorporate + name: Slip + whitelist: + tags: + - PaperSlip + locked: true + +- type: entity + parent: PaperBiscuitCorporate + id: PaperBiscuitCorporateSpareID + name: emergency access biscuit + components: + - type: ItemSlots + slots: + PaperSlip: + startingItem: PaperSlipSpareID + name: Slip + whitelist: + tags: + - PaperSlip + locked: true + +# Paper slips +- type: entity + parent: BaseItem + id: PaperSlip + name: paper slip + description: A little slip of paper left over after a larger piece was cut. Whoa. + components: + - type: Sprite + sprite: DeltaV/Objects/Misc/biscuits.rsi + layers: + - state: slip + - state: slip_words + map: [ "enum.PaperVisualLayers.Writing" ] + visible: false + - type: Paper + - type: ActivatableUI + key: enum.PaperUiKey.Key + closeOnHandDeselect: false + - type: UserInterface + interfaces: + - key: enum.PaperUiKey.Key + type: PaperBoundUserInterface + - type: Item + size: 1 + - type: Tag + tags: + - Document + - PaperSlip + - type: Appearance + - type: PaperVisuals + - type: Damageable + damageModifierSet: Wood + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 15 + behaviors: + - !type:SpawnEntitiesBehavior + spawn: + Ash: + min: 1 + max: 1 + - !type:DoActsBehavior + acts: [ "Destruction" ] + +- type: entity + parent: PaperSlip + id: PaperSlipCorporate + name: corporate plastic card + description: A plastic card for confidential corporate matters. + components: + - type: Paper + canEdit: false + - type: Sprite + layers: + - state: corpslip + - state: corpslip_words + map: [ "enum.PaperVisualLayers.Writing" ] + visible: false + - type: PaperVisuals + backgroundImagePath: "/Textures/DeltaV/Interface/Paper/paper_background_corpcard.svg.96dpi.png" + contentMargin: 70.0, 16.0, 70.0, 16.0 + maxWritableArea: 400.0, 600.0 + + +- type: entity + parent: PaperSlipCorporate + id: PaperSlipSpareID + suffix: SpareID + name: emergency access card + description: A plastic card for confidential corporate matters. It has a magnetic strip on the back. + components: + - type: Access + tags: + - DV-SpareSafe diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Misc/subdermal_implants.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Misc/subdermal_implants.yml new file mode 100644 index 0000000000..93a9641f7b --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Misc/subdermal_implants.yml @@ -0,0 +1,17 @@ +- type: entity + parent: BaseSubdermalImplant + id: BionicSyrinxImplant + name: bionic syrinx implant + description: This implant lets a harpy adjust their voice to whoever they can think of. + noSpawn: true + components: + - type: SubdermalImplant + implantAction: ActionSyrinxChangeVoiceMask + whitelist: + components: + - HarpySinger + - type: VoiceMasker + - type: Tag + tags: + - SubdermalImplant + - BionicSyrinxImplant diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Specific/Command/safe.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Specific/Command/safe.yml new file mode 100644 index 0000000000..17321ef59e --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Specific/Command/safe.yml @@ -0,0 +1,36 @@ +- type: entity + parent: FireAxeCabinet + id: SpareIdCabinet + name: spare id cabinet + description: There is a small label that reads "For emergency use only". + components: + - type: Sprite + sprite: DeltaV/Structures/Wallmounts/idcard_cabinet.rsi + layers: + - state: cabinet + - state: card + map: ["enum.ItemCabinetVisualLayers.ContainsItem"] + visible: true + - state: glass + map: ["enum.ItemCabinetVisualLayers.Door"] + - type: ItemCabinet + cabinetSlot: + ejectOnInteract: true + whitelist: + components: + - IdCard + - type: AccessReader + access: [["DV-SpareSafe"]] + +- type: entity + id: SpareIdCabinetFilled + parent: [SpareIdCabinet,FireAxeCabinetFilled] + suffix: Filled + components: + - type: ItemCabinet + cabinetSlot: + startingItem: CaptainIDCard + ejectOnInteract: true + whitelist: + components: + - IdCard diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Ammunition/Boxes/toy_guns.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Ammunition/Boxes/toy_guns.yml new file mode 100644 index 0000000000..e5a401edd8 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Ammunition/Boxes/toy_guns.yml @@ -0,0 +1,17 @@ +- type: entity + parent: BoxDonkSoftBase + id: BoxCartridgeBB + name: box of BBs + components: + - type: SpeedLoader + - type: BallisticAmmoProvider + whitelist: + tags: + - BulletBB + proto: BulletBB + - type: Sprite + sprite: DeltaV/Objects/Weapons/Guns/Ammunition/Boxes/bbgun.rsi + layers: + - state: bbbox + - type: StaticPrice + price: 25 diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml new file mode 100644 index 0000000000..923bfac502 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -0,0 +1,259 @@ +- type: entity + name: energy gun + parent: BaseWeaponBattery + id: WeaponEnergyGun + description: "A basic hybrid energy gun with two settings: disable and kill." + components: + - type: Sprite + sprite: DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mode-disabler + shader: unshaded + map: [ "Firemode" ] + - state: mag-unshaded-4 + map: ["enum.GunVisualLayers.MagUnshaded"] + shader: unshaded + - type: Clothing + sprite: DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi + - type: Gun + soundGunshot: + path: /Audio/DeltaV/Weapons/Guns/Gunshots/laser.ogg + soundEmpty: + path: /Audio/DeltaV/Weapons/Guns/Empty/dry_fire.ogg + - type: Battery + maxCharge: 2000 + startingCharge: 2000 + - type: ProjectileBatteryAmmoProvider + proto: BulletDisabler + fireCost: 100 + - type: EnergyGun + fireModes: + - proto: BulletDisabler + fireCost: 100 + name: disable + state: disabler + - proto: BulletEnergyGunLaser + fireCost: 200 + name: kill + state: lethal + - type: MagazineVisuals + magState: mag + steps: 5 + zeroVisible: true + - type: Appearance + - type: GenericVisualizer + visuals: + enum.EnergyGunFireModeVisuals.State: + Firemode: + Disabler: { state: mode-disabler } + Lethal: { state: mode-lethal } + Special: { state: mode-stun } # Unused + +- type: entity + name: x-01 multiphase energy gun + parent: BaseWeaponBatterySmall + id: WeaponEnergyGunMultiphase + description: This is an expensive, modern recreation of an antique laser gun. This gun has several unique firemodes, but lacks the ability to recharge over time. + components: + - type: Sprite + sprite: DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mode-disabler + shader: unshaded + map: [ "Firemode" ] + - state: mag-unshaded-4 + map: ["enum.GunVisualLayers.MagUnshaded"] + shader: unshaded + - type: Clothing + sprite: DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi + - type: Gun + soundGunshot: + path: /Audio/DeltaV/Weapons/Guns/Gunshots/laser.ogg + soundEmpty: + path: /Audio/DeltaV/Weapons/Guns/Empty/dry_fire.ogg + - type: Battery + maxCharge: 2000 + startingCharge: 2000 + - type: ProjectileBatteryAmmoProvider + proto: BulletDisabler + fireCost: 100 + - type: EnergyGun + fireModes: + - proto: BulletDisabler + fireCost: 100 + name: disable + state: disabler + - proto: BulletEnergyGunLaser + fireCost: 200 + name: lethal + state: lethal + # - proto: BulletEnergyGunIon + # fireCost: 500 + # name: ion + # state: special + - type: MagazineVisuals + magState: mag + steps: 5 + zeroVisible: true + - type: Appearance + - type: GenericVisualizer + visuals: + enum.EnergyGunFireModeVisuals.State: + Firemode: + Disabler: { state: mode-disabler } + Lethal: { state: mode-lethal } + Special: { state: mode-ion } + - type: Tag + tags: + - HighRiskItem + - Sidearm + - type: StaticPrice + price: 750 + +- type: entity + name: miniature energy gun + parent: BaseWeaponBatterySmall + id: WeaponEnergyGunMini + description: A light version of the Energy gun with a smaller capacity. + components: + - type: Sprite + sprite: DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mode-disabler + shader: unshaded + map: [ "Firemode" ] + - type: Clothing + sprite: DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi + - type: Gun + soundGunshot: + path: /Audio/DeltaV/Weapons/Guns/Gunshots/laser.ogg + soundEmpty: + path: /Audio/DeltaV/Weapons/Guns/Empty/dry_fire.ogg + - type: Battery + maxCharge: 1000 + startingCharge: 1000 + - type: ProjectileBatteryAmmoProvider + proto: BulletDisabler + fireCost: 100 + - type: EnergyGun + fireModes: + - proto: BulletDisabler + fireCost: 100 + name: disable + state: disabler + - proto: BulletEnergyGunLaser + fireCost: 200 + name: kill + state: lethal + - type: MagazineVisuals + magState: mag + steps: 5 + zeroVisible: true + - type: Appearance + - type: GenericVisualizer + visuals: + enum.EnergyGunFireModeVisuals.State: + Firemode: + Disabler: { state: mode-disabler } + Lethal: { state: mode-lethal } + Special: { state: mode-stun } # Unused + +- type: entity + name: PDW-9 Energy Pistol + parent: BaseWeaponBatterySmall + id: WeaponEnergyGunPistol + description: A military grade sidearm, used by many militia forces throughout the local sector. + components: + - type: Sprite + sprite: DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mode-disabler + shader: unshaded + map: [ "Firemode" ] + - state: mag-unshaded-4 + map: ["enum.GunVisualLayers.MagUnshaded"] + shader: unshaded + - type: Clothing + sprite: DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi + - type: Gun + soundGunshot: + path: /Audio/DeltaV/Weapons/Guns/Gunshots/laser.ogg + soundEmpty: + path: /Audio/DeltaV/Weapons/Guns/Empty/dry_fire.ogg + - type: Battery + maxCharge: 1600 + startingCharge: 1600 + - type: ProjectileBatteryAmmoProvider + proto: BulletDisabler + fireCost: 100 + - type: EnergyGun + fireModes: + - proto: BulletDisabler + fireCost: 100 + name: disable + state: disabler + - proto: BulletEnergyGunLaser + fireCost: 200 + name: lethal + state: lethal + - type: MagazineVisuals + magState: mag + steps: 5 + zeroVisible: true + - type: Appearance + - type: GenericVisualizer + visuals: + enum.EnergyGunFireModeVisuals.State: + Firemode: + Disabler: { state: mode-disabler } + Lethal: { state: mode-lethal } + - type: Tag + tags: + - Sidearm + - type: StaticPrice + price: 750 + +- type: entity + name: IK-60 laser carbine + parent: BaseWeaponBattery + id: WeaponGunLaserCarbineAutomatic + description: "A 20 round semi-automatic laser carbine." + components: + - type: Sprite + sprite: DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-unshaded-4 + map: ["enum.GunVisualLayers.MagUnshaded"] + shader: unshaded + - type: Clothing + sprite: DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi + - type: Gun + soundGunshot: + path: /Audio/DeltaV/Weapons/Guns/Gunshots/laser.ogg + soundEmpty: + path: /Audio/DeltaV/Weapons/Guns/Empty/dry_fire.ogg + selectedMode: SemiAuto + fireRate: 3 + availableModes: + - SemiAuto + - type: Battery + maxCharge: 4000 + startingCharge: 4000 + - type: ProjectileBatteryAmmoProvider + proto: BulletEnergyGunLaser + fireCost: 200 + - type: MagazineVisuals + magState: mag + steps: 5 + zeroVisible: true + - type: Appearance \ No newline at end of file diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Projectiles/impacts.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Projectiles/impacts.yml new file mode 100644 index 0000000000..936ac9856e --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Projectiles/impacts.yml @@ -0,0 +1,18 @@ +- type: entity + id: BulletImpactEffectRedDisabler + noSpawn: true + components: + - type: TimedDespawn + lifetime: 0.2 + - type: Sprite + drawdepth: Effects + layers: + - shader: unshaded + map: ["enum.EffectLayers.Unshaded"] + sprite: Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi + state: impact_laser_greyscale + color: red + - type: EffectVisuals + - type: Tag + tags: + - HideContextMenu diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Projectiles/toy_projectiles.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Projectiles/toy_projectiles.yml new file mode 100644 index 0000000000..1f8f91a1d1 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Projectiles/toy_projectiles.yml @@ -0,0 +1,69 @@ +- type: entity + id: BulletBB + description: Don't shoot your eye out. + name: BB + parent: BaseItem + components: + - type: Item + size: 1 + - type: Reflective + - type: Appearance + - type: FlyBySound + - type: Sprite + sprite: DeltaV/Objects/Weapons/Guns/Ammunition/Boxes/bbgun.rsi + layers: + - state: bbbullet + - type: Tag + tags: + - BulletBB + - Trash + - type: Physics + bodyType: Dynamic + linearDamping: 0.1 + angularDamping: 0.1 + - type: Fixtures + fixtures: + fix1: + shape: !type:PhysShapeCircle + radius: 0.01 + density: 1 + mask: + - ItemMask + restitution: 0.3 #bounce + friction: 0.2 + projectile: + shape: + !type:PhysShapeAabb + bounds: "-0.15,-0.15,0.15,0.15" + hard: false + mask: + - Impassable + - BulletImpassable + fly-by: &flybyfixture + shape: !type:PhysShapeCircle + radius: 1.5 + layer: + - Impassable + - MidImpassable + - HighImpassable + - LowImpassable + hard: False + - type: TileFrictionModifier + modifier: 0.01 + - type: Projectile + impactEffect: BulletImpactEffect + deleteOnCollide: false + onlyCollideWhenShot: true + damage: + types: + Blunt: 1 + soundHit: + path: /Audio/Weapons/Guns/Hits/bullet_hit.ogg + - type: Ammo + muzzleFlash: null + - type: PhysicalComposition + materialComposition: + Steel: 1 + - type: SpaceGarbage + #- type: StaticPrice + # price: 0.05 diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml index 9a116c350c..e18a0939c5 100644 --- a/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml @@ -37,9 +37,9 @@ suffix: Beanbag components: - type: Sprite - sprite: Objects/Weapons/Guns/Shotguns/pump.rsi + sprite: DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi # Delta-V - type: Clothing - sprite: Objects/Weapons/Guns/Shotguns/pump.rsi + sprite: DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi # Delta-V - type: BallisticAmmoProvider capacity: 4 proto: ShellShotgunBeanbag diff --git a/Resources/Prototypes/DeltaV/Entities/Structures/Doors/Windoors/windoor.yml b/Resources/Prototypes/DeltaV/Entities/Structures/Doors/Windoors/windoor.yml index 09945a184c..d27a8d8e70 100644 --- a/Resources/Prototypes/DeltaV/Entities/Structures/Doors/Windoors/windoor.yml +++ b/Resources/Prototypes/DeltaV/Entities/Structures/Doors/Windoors/windoor.yml @@ -13,3 +13,11 @@ components: - type: AccessReader access: [["Mail"]] + +- type: entity + parent: WindoorSecure + id: WindoorSecureParamedicLocked + suffix: Paramedic, Locked + components: + - type: AccessReader + access: [["Paramedic"]] diff --git a/Resources/Prototypes/DeltaV/Entities/Structures/Machines/syndicate_monitor_server.yml b/Resources/Prototypes/DeltaV/Entities/Structures/Machines/syndicate_monitor_server.yml new file mode 100644 index 0000000000..bcf2de3ae0 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Structures/Machines/syndicate_monitor_server.yml @@ -0,0 +1,63 @@ +- type: entity # This is *meant* to make use of the concept that StationLimitedNetwork doesn't allow recievers to reciever across two different grids, however this uh, doesn't seem to be relevant. The Pirate Radio shuttle can still recieve across grids.... + id: SyndicateMonitoringServer + parent: BaseMachinePowered + name: suspicious crew monitoring server + description: Receives and relays the status of all active suit sensors. + components: + - type: Sprite + sprite: Structures/Machines/server.rsi + layers: + - state: server + - state: variant-crew + - type: Construction + graph: Machine + node: machine + containers: + - machine_board + - machine_parts + - type: Machine + board: CrewMonitoringServerMachineCircuitboard + - type: ContainerContainer + containers: + machine_board: !type:Container + machine_parts: !type:Container + - type: CrewMonitoringServer + - type: DeviceNetwork + deviceNetId: Wireless + transmitFrequencyId: CrewMonitor + receiveFrequencyId: SuitSensor + autoConnect: false + - type: WirelessNetworkConnection + range: 2000 + #- type: StationLimitedNetwork + - type: ApcPowerReceiver + powerLoad: 200 + priority: Low + - type: ExtensionCableReceiver + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 600 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 300 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/metalbreak.ogg + - !type:SpawnEntitiesBehavior + spawn: + SheetSteel1: + min: 1 + max: 2 + - type: AmbientSound + volume: -5 # Hacked so it's louder? + range: 5 + sound: + path: /Audio/Ambience/Objects/server_fans.ogg diff --git a/Resources/Prototypes/DeltaV/GameRules/events.yml b/Resources/Prototypes/DeltaV/GameRules/events.yml index 382251b2a9..a88e5296cb 100644 --- a/Resources/Prototypes/DeltaV/GameRules/events.yml +++ b/Resources/Prototypes/DeltaV/GameRules/events.yml @@ -45,3 +45,16 @@ entries: - id: MobMothroach prob: 0.05 + +- type: entity # Delta-V : Midround Syndie Listening Station Spawn + id: PirateRadioSpawn + parent: BaseGameRule + noSpawn: true + components: + - type: StationEvent + earliestStart: 20 + weight: 5 + minimumPlayers: 25 + maxOccurrences: 1 + duration: 1 + - type: PirateRadioSpawnRule diff --git a/Resources/Prototypes/DeltaV/InventoryTemplates/secdog_inventory_template.yml b/Resources/Prototypes/DeltaV/InventoryTemplates/secdog_inventory_template.yml index f53f586dfe..fb237cf578 100644 --- a/Resources/Prototypes/DeltaV/InventoryTemplates/secdog_inventory_template.yml +++ b/Resources/Prototypes/DeltaV/InventoryTemplates/secdog_inventory_template.yml @@ -43,3 +43,21 @@ strippingWindowPos: 1,4 displayName: Vest stripHidden: false + + - name: id + slotTexture: id + slotFlags: IDCARD + slotGroup: SecondHotbar + stripTime: 6 + uiWindowPos: 2,1 + strippingWindowPos: 2,4 + displayName: ID + + - name: ears + slotTexture: ears + slotFlags: EARS + slotGroup: MainHotbar + stripTime: 4.5 + uiWindowPos: 1,2 + strippingWindowPos: 1,2 + displayName: Ears \ No newline at end of file diff --git a/Resources/Prototypes/DeltaV/Objectives/traitor.yml b/Resources/Prototypes/DeltaV/Objectives/traitor.yml index a73f7896e2..ddd006d36e 100644 --- a/Resources/Prototypes/DeltaV/Objectives/traitor.yml +++ b/Resources/Prototypes/DeltaV/Objectives/traitor.yml @@ -19,3 +19,16 @@ - type: StealCondition prototype: BookIanDossier # owner: job-name-hop + +- type: entity # Head of Security steal objective. + noSpawn: true + parent: BaseTraitorStealObjective + id: HoSGunStealObjective + components: + - type: Objective + difficulty: 3 # HoS will mostly be using the gun to stop you from stealing it + - type: NotJobRequirement + job: HeadOfSecurity + - type: StealCondition + prototype: WeaponEnergyGunMultiphase + owner: job-name-hos diff --git a/Resources/Prototypes/DeltaV/Recipes/Crafting/Graphs/strawhat.yml b/Resources/Prototypes/DeltaV/Recipes/Crafting/Graphs/strawhat.yml new file mode 100644 index 0000000000..7203a4fdfb --- /dev/null +++ b/Resources/Prototypes/DeltaV/Recipes/Crafting/Graphs/strawhat.yml @@ -0,0 +1,31 @@ +- type: constructionGraph + id: StrawHat + start: start + graph: + - node: start + edges: + - to: strawhat + steps: + - tag: Wheat + name: Wheat Bushel + icon: + sprite: Objects/Specific/Hydroponics/wheat.rsi + state: produce + - tag: Wheat + name: Wheat Bushel + icon: + sprite: Objects/Specific/Hydroponics/wheat.rsi + state: produce + - tag: Wheat + name: Wheat Bushel + icon: + sprite: Objects/Specific/Hydroponics/wheat.rsi + state: produce + - tag: Wheat + name: Wheat Bushel + icon: + sprite: Objects/Specific/Hydroponics/wheat.rsi + state: produce + doAfter: 10 + - node: strawhat + entity: ClothingHeadHatStrawHat diff --git a/Resources/Prototypes/DeltaV/Recipes/Crafting/improvised.yml b/Resources/Prototypes/DeltaV/Recipes/Crafting/improvised.yml new file mode 100644 index 0000000000..e01a510653 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Recipes/Crafting/improvised.yml @@ -0,0 +1,12 @@ +- type: construction + name: straw hat + id: strawHat + graph: StrawHat + startNode: start + targetNode: strawhat + category: construction-category-clothing + description: A fancy hat for hot days! Not recommended to wear near fires. + icon: + sprite: DeltaV/Clothing/Head/Hats/straw_hat.rsi + state: icon + objectType: Item diff --git a/Resources/Prototypes/DeltaV/Recipes/Lathes/clothing.yml b/Resources/Prototypes/DeltaV/Recipes/Lathes/clothing.yml index 9a196f2684..b0b469d05c 100644 --- a/Resources/Prototypes/DeltaV/Recipes/Lathes/clothing.yml +++ b/Resources/Prototypes/DeltaV/Recipes/Lathes/clothing.yml @@ -14,20 +14,6 @@ materials: Cloth: 300 -- type: latheRecipe - id: ClothingUniformJumpsuitHoSBlue - result: ClothingUniformJumpsuitHoSBlue - completetime: 4 - materials: - Cloth: 300 - -- type: latheRecipe - id: ClothingUniformJumpsuitHoSGrey - result: ClothingUniformJumpsuitHoSGrey - completetime: 4 - materials: - Cloth: 300 - - type: latheRecipe id: ClothingUniformJumpsuitWardenBlue result: ClothingUniformJumpsuitWardenBlue diff --git a/Resources/Prototypes/DeltaV/Recipes/Lathes/security.yml b/Resources/Prototypes/DeltaV/Recipes/Lathes/security.yml index 0beb2e93a2..4d1157eb52 100644 --- a/Resources/Prototypes/DeltaV/Recipes/Lathes/security.yml +++ b/Resources/Prototypes/DeltaV/Recipes/Lathes/security.yml @@ -68,3 +68,43 @@ materials: Steel: 500 Plastic: 1000 + +- type: latheRecipe + id: WeaponEnergyGun + result: WeaponEnergyGun + completetime: 8 + materials: + Steel: 2000 + Glass: 800 + Plastic: 500 + +- type: latheRecipe + id: WeaponEnergyGunMini + result: WeaponEnergyGunMini + completetime: 4 + materials: #Half of Energy Gun Recipe + Steel: 1000 + Glass: 400 + Plastic: 250 + +- type: latheRecipe + id: WeaponEnergyGunPistol + result: WeaponEnergyGunPistol + completetime: 10 + materials: + Steel: 1500 + Glass: 600 + Plastic: 400 + Gold: 150 + +- type: latheRecipe + id: WeaponGunLaserCarbineAutomatic + result: WeaponGunLaserCarbineAutomatic + completetime: 15 + materials: + Steel: 2000 + Glass: 1000 + Plastic: 500 + Gold: 250 + Silver: 100 + Plasma: 500 \ No newline at end of file diff --git a/Resources/Prototypes/DeltaV/Research/arsenal.yml b/Resources/Prototypes/DeltaV/Research/arsenal.yml index 23006e3723..82cbde7ed7 100644 --- a/Resources/Prototypes/DeltaV/Research/arsenal.yml +++ b/Resources/Prototypes/DeltaV/Research/arsenal.yml @@ -13,3 +13,42 @@ - CartridgeSpecialHoly # DeltaV - .38 Special revolver, Holy ammo - CartridgeSpecialMindbreaker # DeltaV - .38 Special revolver, Mindbreaker ammo - ShellSoulbreaker # Nyanotrasen - Soulbreaker shotgun ammo + +- type: technology + id: EnergyGuns + name: research-technology-energy-gun + icon: + sprite: DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi + state: icon + discipline: Arsenal + tier: 1 + cost: 7500 + recipeUnlocks: + - WeaponEnergyGun + - WeaponEnergyGunMini + +- type: technology + id: EnergyGunsAdvanced + name: research-technology-energy-gun-advance + icon: + sprite: DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi + state: icon + discipline: Arsenal + tier: 2 + cost: 7500 + recipeUnlocks: + - WeaponEnergyGunPistol + +- type: technology + id: Advanced Laser Manipulation + name: research-technology-advance-laser + icon: + sprite: DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi + state: icon + discipline: Arsenal + tier: 2 + cost: 12500 + recipeUnlocks: + - WeaponGunLaserCarbineAutomatic + + diff --git a/Resources/Prototypes/DeltaV/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/DeltaV/Roles/Jobs/Fun/misc_startinggear.yml index 72830e0d85..0ee34c282f 100644 --- a/Resources/Prototypes/DeltaV/Roles/Jobs/Fun/misc_startinggear.yml +++ b/Resources/Prototypes/DeltaV/Roles/Jobs/Fun/misc_startinggear.yml @@ -7,6 +7,7 @@ id: MobSecDogLaikaGear equipment: eyes: ClothingEyesGlassesSecurity + id: SecDogIDCard #Oldstation Roles @@ -20,8 +21,8 @@ pocket1: Brutepack pocket2: GlowstickBase belt: ClothingBeltMedical - - + + - type: startingGear id: OldstationGuard equipment: @@ -30,7 +31,7 @@ id: SecurityIDCard pocket1: Flash pocket2: GlowstickBase - + - type: startingGear id: OldstationEngi equipment: @@ -42,7 +43,7 @@ pocket1: EmergencyOxygenTankFilled pocket2: GlowstickBase belt: ClothingBeltUtility - + - type: startingGear id: OldstationScientist equipment: @@ -51,3 +52,15 @@ id: ResearchIDCard pocket1: Pen pocket2: GlowstickBase + +#Syndicate Pirate Radio Listener +- type: startingGear + id: SyndicateListenerGear + equipment: + jumpsuit: ClothingUniformJumpsuitPyjamaSyndicateBlack + head: ClothingHeadPyjamaSyndicateBlack + ears: ClothingHeadsetAltSyndicateListening + gloves: ClothingHandsGlovesCombat + shoes: ClothingShoesSlippers + id: SyndiPDA + innerClothingSkirt: ClothingUniformJumpsuitPyjamaSyndicatePink \ No newline at end of file diff --git a/Resources/Prototypes/DeltaV/Roles/Jobs/NPC/syndicateNPCs.yml b/Resources/Prototypes/DeltaV/Roles/Jobs/NPC/syndicateNPCs.yml new file mode 100644 index 0000000000..1541589442 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Roles/Jobs/NPC/syndicateNPCs.yml @@ -0,0 +1,12 @@ +- type: startingGear + id: RadioGuardGear + equipment: + jumpsuit: ClothingUniformJumpsuitLawyerBlack + shoes: ClothingShoesBootsLaceup + id: SyndicateIDCard + ears: ClothingHeadsetAltSyndicate + mask: ClothingMaskGasSyndicate + eyes: ClothingEyesHudSyndicate + gloves: ClothingHandsGlovesCombat + outerClothing: ClothingOuterArmorPlateCarrier + pocket1: WeaponPistolViper diff --git a/Resources/Prototypes/DeltaV/Roles/Jobs/Security/brigmedic.yml b/Resources/Prototypes/DeltaV/Roles/Jobs/Security/brigmedic.yml index 6188014665..b2fef23c64 100644 --- a/Resources/Prototypes/DeltaV/Roles/Jobs/Security/brigmedic.yml +++ b/Resources/Prototypes/DeltaV/Roles/Jobs/Security/brigmedic.yml @@ -17,9 +17,11 @@ access: - Medical - Security - - Brig + #- Brig #Delta V: Removed brig access - Maintenance - External + extendedAccess: + - Chemistry special: - !type:AddImplantSpecial implants: [ MindShieldImplant ] diff --git a/Resources/Prototypes/DeltaV/Traits/neutral.yml b/Resources/Prototypes/DeltaV/Traits/neutral.yml new file mode 100644 index 0000000000..79a6771a36 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Traits/neutral.yml @@ -0,0 +1,7 @@ +- type: trait + id: ScottishAccent + name: trait-scottish-accent-name + description: trait-scottish-accent-desc + traitGear: BagpipeInstrument + components: + - type: ScottishAccent \ No newline at end of file diff --git a/Resources/Prototypes/DeltaV/Voice/speech_emote_sounds.yml b/Resources/Prototypes/DeltaV/Voice/speech_emote_sounds.yml index 2c44d34297..ce8fd7a3b5 100644 --- a/Resources/Prototypes/DeltaV/Voice/speech_emote_sounds.yml +++ b/Resources/Prototypes/DeltaV/Voice/speech_emote_sounds.yml @@ -74,6 +74,8 @@ collection: MaleCry Whistle: collection: Whistles + Sigh: + collection: MaleSigh Growl: collection: VulpkaninGrowls Snarl: @@ -100,6 +102,8 @@ collection: FemaleCry Whistle: collection: Whistles + Sigh: + collection: FemaleSigh Growl: collection: VulpkaninGrowls Snarl: diff --git a/Resources/Prototypes/DeltaV/Voice/speech_verbs.yml b/Resources/Prototypes/DeltaV/Voice/speech_verbs.yml index 246b988379..01288498fe 100644 --- a/Resources/Prototypes/DeltaV/Voice/speech_verbs.yml +++ b/Resources/Prototypes/DeltaV/Voice/speech_verbs.yml @@ -5,3 +5,11 @@ - chat-speech-verb-vulpkanin-2 - chat-speech-verb-vulpkanin-3 - chat-speech-verb-vulpkanin-4 + +- type: speechVerb + id: Felinid + speechVerbStrings: + - chat-speech-verb-felinid-1 + - chat-speech-verb-felinid-2 + - chat-speech-verb-felinid-3 + - chat-speech-verb-felinid-4 diff --git a/Resources/Prototypes/DeltaV/cartridges/crimeassistflow.yml b/Resources/Prototypes/DeltaV/cartridges/crimeassistflow.yml new file mode 100644 index 0000000000..2d746efbe1 --- /dev/null +++ b/Resources/Prototypes/DeltaV/cartridges/crimeassistflow.yml @@ -0,0 +1,349 @@ +- type: crimeAssistPage + id: "mainmenu" + locKey: "crime-assist-mainmenu" + onStart: "questionIsItTerrorism" + +- type: crimeAssistPage + id: "questionIsItTerrorism" + locKey: "crime-assist-question-isitterrorism" + onYes: "resultTerrorism" + onNo: "questionWasSomeoneAttacked" + +- type: crimeAssistPage + id: "questionWasSomeoneAttacked" + locKey: "crime-assist-question-wassomeoneattacked" + onYes: "questionWasItSophont" + onNo: "questionForcedMindbreakerToxin" + +- type: crimeAssistPage + id: "questionWasItSophont" + locKey: "crime-assist-question-wasitsophont" + onYes: "questionDidVictimDie" + onNo: "resultAnimalCruelty" + +- type: crimeAssistPage + id: "questionDidVictimDie" + locKey: "crime-assist-question-didvictimdie" + onYes: "questionIsVictimRemovedFromBody" + onNo: "resultAssault" + +- type: crimeAssistPage + id: "questionIsVictimRemovedFromBody" + locKey: "crime-assist-question-isvictimremovedfrombody" + onYes: "resultDecorporealisation" + onNo: "questionWasDeathIntentional" + +- type: crimeAssistPage + id: "questionWasDeathIntentional" + locKey: "crime-assist-question-wasdeathintentional" + onYes: "resultMurder" + onNo: "resultManslaughter" + +- type: crimeAssistPage + id: "questionForcedMindbreakerToxin" + locKey: "crime-assist-question-forcedmindbreakertoxin" + onYes: "resultMindbreaking" + onNo: "questionHadRestrictedItem" + +- type: crimeAssistPage + id: "questionHadRestrictedItem" + locKey: "crime-assist-question-hadillicititem" + onYes: "questionWasItAPerson" + onNo: "questionWasSuspectInARestrictedLocation" + +- type: crimeAssistPage + id: "questionWasItAPerson" + locKey: "crime-assist-question-wasitaperson" + onYes: "resultKidnapping" + onNo: "questionWasSuspectSelling" + +- type: crimeAssistPage + id: "questionWasSuspectSelling" + locKey: "crime-assist-question-wassuspectselling" + onYes: "resultBlackMarketeering" + onNo: "questionWasSuspectSeenTaking" + +- type: crimeAssistPage + id: "questionWasSuspectSeenTaking" + locKey: "crime-assist-question-wassuspectseentaking" + onYes: "questionIsItemExtremelyDangerous" + onNo: "resultPossession" + +- type: crimeAssistPage + id: "questionIsItemExtremelyDangerous" + locKey: "crime-assist-question-isitemextremelydangerous" + onYes: "resultGrandTheft" + onNo: "resultTheft" + +- type: crimeAssistPage + id: "questionWasSuspectInARestrictedLocation" + locKey: "crime-assist-question-wassuspectinarestrictedlocation" + onYes: "questionWasEntranceLocked" + onNo: "questionDidSuspectBreakSomething" + +- type: crimeAssistPage + id: "questionWasEntranceLocked" + locKey: "crime-assist-question-wasentrancelocked" + onYes: "resultBreakingAndEntering" + onNo: "resultTrespass" + +- type: crimeAssistPage + id: "questionDidSuspectBreakSomething" + locKey: "crime-assist-question-didsuspectbreaksomething" + onYes: "questionWereThereManySuspects" + onNo: "questionWasCrimeSexualInNature" + +- type: crimeAssistPage + id: "questionWereThereManySuspects" + locKey: "crime-assist-question-weretheremanysuspects" + onYes: "resultRioting" + onNo: "questionWasDamageSmall" + +- type: crimeAssistPage + id: "questionWasDamageSmall" + locKey: "crime-assist-question-wasdamagesmall" + onYes: "resultVandalism" + onNo: "questionWasDestroyedItemImportantToStation" + +- type: crimeAssistPage + id: "questionWasDestroyedItemImportantToStation" + locKey: "crime-assist-question-wasdestroyeditemimportanttostation" + onYes: "questionIsLargePartOfStationDestroyed" + onNo: "resultEndangerment" + +- type: crimeAssistPage + id: "questionIsLargePartOfStationDestroyed" + locKey: "crime-assist-question-islargepartofstationdestroyed" + onYes: "resultGrandSabotage" + onNo: "resultSabotage" + +- type: crimeAssistPage + id: "questionWasCrimeSexualInNature" + locKey: "crime-assist-question-wascrimesexualinnature" + onYes: "resultSexualHarassment" + onNo: "questionWasSuspectANuisance" + +- type: crimeAssistPage + id: "questionWasSuspectANuisance" + locKey: "crime-assist-question-wassuspectanuisance" + onYes: "questionFalselyReportingToSecurity" + onNo: "resultInnocent" + +- type: crimeAssistPage + id: "questionFalselyReportingToSecurity" + locKey: "crime-assist-question-falselyreportingtosecurity" + onYes: "resultPerjuryOrFalseReport" + onNo: "questionHappenInCourt" + +- type: crimeAssistPage + id: "questionHappenInCourt" + locKey: "crime-assist-question-happenincourt" + onYes: "resultContemptOfCourt" + onNo: "questionDuringActiveInvestigation" + +- type: crimeAssistPage + id: "questionDuringActiveInvestigation" + locKey: "crime-assist-question-duringactiveinvestigation" + onYes: "resultObstructionOfJustice" + onNo: "questionToCommandStaff" + +- type: crimeAssistPage + id: "questionToCommandStaff" + locKey: "crime-assist-question-tocommandstaff" + onYes: "resultSedition" + onNo: "questionWasItCommandItself" + +- type: crimeAssistPage + id: "questionWasItCommandItself" + locKey: "crime-assist-question-wasitcommanditself" + onYes: "resultAbuseOfPower" + onNo: "resultHooliganism" + +- type: crimeAssistPage + id: "resultInnocent" + locKeyTitle: "crime-assist-crime-innocent" + locKeyDescription: "crime-assist-crimedetail-innocent" + locKeySeverity: "crime-assist-crimetype-innocent" + locKeyPunishment: "crime-assist-crimepunishment-innocent" + +- type: crimeAssistPage + id: "resultAnimalCruelty" + locKeyTitle: "crime-assist-crime-animalcruelty" + locKeyDescription: "crime-assist-crimedetail-animalcruelty" + locKeySeverity: "crime-assist-crimetype-misdemeanour" + locKeyPunishment: "crime-assist-crimepunishment-animalcruelty" + +- type: crimeAssistPage + id: "resultTheft" + locKeyTitle: "crime-assist-crime-theft" + locKeyDescription: "crime-assist-crimedetail-theft" + locKeySeverity: "crime-assist-crimetype-misdemeanour" + locKeyPunishment: "crime-assist-crimepunishment-theft" + +- type: crimeAssistPage + id: "resultTrespass" + locKeyTitle: "crime-assist-crime-trespass" + locKeyDescription: "crime-assist-crimedetail-trespass" + locKeySeverity: "crime-assist-crimetype-misdemeanour" + locKeyPunishment: "crime-assist-crimepunishment-trespass" + +- type: crimeAssistPage + id: "resultVandalism" + locKeyTitle: "crime-assist-crime-vandalism" + locKeyDescription: "crime-assist-crimedetail-vandalism" + locKeySeverity: "crime-assist-crimetype-misdemeanour" + locKeyPunishment: "crime-assist-crimepunishment-vandalism" + +- type: crimeAssistPage + id: "resultHooliganism" + locKeyTitle: "crime-assist-crime-hooliganism" + locKeyDescription: "crime-assist-crimedetail-hooliganism" + locKeySeverity: "crime-assist-crimetype-misdemeanour" + locKeyPunishment: "crime-assist-crimepunishment-hooliganism" + +- type: crimeAssistPage + id: "resultManslaughter" + locKeyTitle: "crime-assist-crime-manslaughter" + locKeyDescription: "crime-assist-crimedetail-manslaughter" + locKeySeverity: "crime-assist-crimetype-felony" + locKeyPunishment: "crime-assist-crimepunishment-manslaughter" + +- type: crimeAssistPage + id: "resultGrandTheft" + locKeyTitle: "crime-assist-crime-grandtheft" + locKeyDescription: "crime-assist-crimedetail-grandtheft" + locKeySeverity: "crime-assist-crimetype-felony" + locKeyPunishment: "crime-assist-crimepunishment-grandtheft" + +- type: crimeAssistPage + id: "resultSabotage" + locKeyTitle: "crime-assist-crime-sabotage" + locKeyDescription: "crime-assist-crimedetail-sabotage" + locKeySeverity: "crime-assist-crimetype-felony" + locKeyPunishment: "crime-assist-crimepunishment-sabotage" + +- type: crimeAssistPage + id: "resultMindbreaking" + locKeyTitle: "crime-assist-crime-mindbreaking" + locKeyDescription: "crime-assist-crimedetail-mindbreaking" + locKeySeverity: "crime-assist-crimetype-felony" + locKeyPunishment: "crime-assist-crimepunishment-mindbreaking" + +- type: crimeAssistPage + id: "resultAssault" + locKeyTitle: "crime-assist-crime-assault" + locKeyDescription: "crime-assist-crimedetail-assault" + locKeySeverity: "crime-assist-crimetype-felony" + locKeyPunishment: "crime-assist-crimepunishment-assault" + +- type: crimeAssistPage + id: "resultAbuseOfPower" + locKeyTitle: "crime-assist-crime-abuseofpower" + locKeyDescription: "crime-assist-crimedetail-abuseofpower" + locKeySeverity: "crime-assist-crimetype-felony" + locKeyPunishment: "crime-assist-crimepunishment-abuseofpower" + +- type: crimeAssistPage + id: "resultPossession" + locKeyTitle: "crime-assist-crime-possession" + locKeyDescription: "crime-assist-crimedetail-possession" + locKeySeverity: "crime-assist-crimetype-felony" + locKeyPunishment: "crime-assist-crimepunishment-possession" + +- type: crimeAssistPage + id: "resultEndangerment" + locKeyTitle: "crime-assist-crime-endangerment" + locKeyDescription: "crime-assist-crimedetail-endangerment" + locKeySeverity: "crime-assist-crimetype-felony" + locKeyPunishment: "crime-assist-crimepunishment-endangerment" + +- type: crimeAssistPage + id: "resultBreakingAndEntering" + locKeyTitle: "crime-assist-crime-breakingandentering" + locKeyDescription: "crime-assist-crimedetail-breakingandentering" + locKeySeverity: "crime-assist-crimetype-felony" + locKeyPunishment: "crime-assist-crimepunishment-breakingandentering" + +- type: crimeAssistPage + id: "resultRioting" + locKeyTitle: "crime-assist-crime-rioting" + locKeyDescription: "crime-assist-crimedetail-rioting" + locKeySeverity: "crime-assist-crimetype-felony" + locKeyPunishment: "crime-assist-crimepunishment-rioting" + +- type: crimeAssistPage + id: "resultContemptOfCourt" + locKeyTitle: "crime-assist-crime-contemptofcourt" + locKeyDescription: "crime-assist-crimedetail-contemptofcourt" + locKeySeverity: "crime-assist-crimetype-felony" + locKeyPunishment: "crime-assist-crimepunishment-contemptofcourt" + +- type: crimeAssistPage + id: "resultBlackMarketeering" + locKeyTitle: "crime-assist-crime-blackmarketeering" + locKeyDescription: "crime-assist-crimedetail-blackmarketeering" + locKeySeverity: "crime-assist-crimetype-felony" + locKeyPunishment: "crime-assist-crimepunishment-blackmarketeering" + +- type: crimeAssistPage + id: "resultPerjuryOrFalseReport" + locKeyTitle: "crime-assist-crime-perjuryfalsereport" + locKeyDescription: "crime-assist-crimedetail-perjuryfalsereport" + locKeySeverity: "crime-assist-crimetype-felony" + locKeyPunishment: "crime-assist-crimepunishment-perjuryfalsereport" + +- type: crimeAssistPage + id: "resultObstructionOfJustice" + locKeyTitle: "crime-assist-crime-obstructionofjustice" + locKeyDescription: "crime-assist-crimedetail-obstructionofjustice" + locKeySeverity: "crime-assist-crimetype-felony" + locKeyPunishment: "crime-assist-crimepunishment-obstructionofjustice" + +- type: crimeAssistPage + id: "resultMurder" + locKeyTitle: "crime-assist-crime-murder" + locKeyDescription: "crime-assist-crimedetail-murder" + locKeySeverity: "crime-assist-crimetype-capital" + locKeyPunishment: "crime-assist-crimepunishment-murder" + +- type: crimeAssistPage + id: "resultTerrorism" + locKeyTitle: "crime-assist-crime-terrorism" + locKeyDescription: "crime-assist-crimedetail-terrorism" + locKeySeverity: "crime-assist-crimetype-capital" + locKeyPunishment: "crime-assist-crimepunishment-terrorism" + +- type: crimeAssistPage + id: "resultGrandSabotage" + locKeyTitle: "crime-assist-crime-grandsabotage" + locKeyDescription: "crime-assist-crimedetail-grandsabotage" + locKeySeverity: "crime-assist-crimetype-capital" + locKeyPunishment: "crime-assist-crimepunishment-grandsabotage" + +- type: crimeAssistPage + id: "resultDecorporealisation" + locKeyTitle: "crime-assist-crime-decorporealisation" + locKeyDescription: "crime-assist-crimedetail-decorporealisation" + locKeySeverity: "crime-assist-crimetype-capital" + locKeyPunishment: "crime-assist-crimepunishment-decorporealisation" + +- type: crimeAssistPage + id: "resultKidnapping" + locKeyTitle: "crime-assist-crime-kidnapping" + locKeyDescription: "crime-assist-crimedetail-kidnapping" + locKeySeverity: "crime-assist-crimetype-capital" + locKeyPunishment: "crime-assist-crimepunishment-kidnapping" + +- type: crimeAssistPage + id: "resultSedition" + locKeyTitle: "crime-assist-crime-sedition" + locKeyDescription: "crime-assist-crimedetail-sedition" + locKeySeverity: "crime-assist-crimetype-capital" + locKeyPunishment: "crime-assist-crimepunishment-sedition" + +- type: crimeAssistPage + id: "resultSexualHarassment" + locKeyTitle: "crime-assist-crime-sexualharassment" + locKeyDescription: "crime-assist-crimedetail-sexualharassment" + locKeySeverity: "crime-assist-crimetype-capital" + locKeyPunishment: "crime-assist-crimepunishment-sexualharassment" diff --git a/Resources/Prototypes/DeltaV/tags.yml b/Resources/Prototypes/DeltaV/tags.yml index 7b09bfd3dc..d636db0146 100644 --- a/Resources/Prototypes/DeltaV/tags.yml +++ b/Resources/Prototypes/DeltaV/tags.yml @@ -3,6 +3,9 @@ - type: Tag id: BeltSlotNotBelt #not a 'belt' +- type: Tag + id: BulletBB + - type: Tag id: CartridgeSpecial # For the .38 special ammo and revolver @@ -26,3 +29,12 @@ - type: Tag id: PreventLabel + +- type: Tag + id: BionicSyrinxImplant + +- type: Tag + id: Wheat + +- type: Tag + id: PaperSlip diff --git a/Resources/Prototypes/Device/devicenet_frequencies.yml b/Resources/Prototypes/Device/devicenet_frequencies.yml index 0667cd0170..db48d117e0 100644 --- a/Resources/Prototypes/Device/devicenet_frequencies.yml +++ b/Resources/Prototypes/Device/devicenet_frequencies.yml @@ -1,3 +1,13 @@ +- type: deviceFrequency + id: ShuttleTimer + name: device-frequency-prototype-name-shuttle-timer + frequency: 2450 + +- type: deviceFrequency + id: ArrivalsShuttleTimer + name: device-frequency-prototype-name-arrivals-shuttle-timer + frequency: 2451 + - type: deviceFrequency id: SurveillanceCamera name: device-frequency-prototype-name-surveillance-camera diff --git a/Resources/Prototypes/DeviceLinking/source_ports.yml b/Resources/Prototypes/DeviceLinking/source_ports.yml index 73e96978a7..18b9b831e6 100644 --- a/Resources/Prototypes/DeviceLinking/source_ports.yml +++ b/Resources/Prototypes/DeviceLinking/source_ports.yml @@ -114,3 +114,38 @@ name: signal-port-name-air-normal description: signal-port-description-air-normal defaultLinks: [ DoorBolt ] + +- type: sourcePort + id: Decaying + name: signal-port-name-decaying + description: signal-port-description-decaying + +- type: sourcePort + id: Stabilize + name: signal-port-name-stabilize + description: signal-port-description-stabilize + +- type: sourcePort + id: Growing + name: signal-port-name-growing + description: signal-port-description-growing + +- type: sourcePort + id: Pulse + name: signal-port-name-pulse + description: signal-port-description-pulse + +- type: sourcePort + id: Supercritical + name: signal-port-name-supercrit + description: signal-port-description-supercrit + +- type: sourcePort + id: PowerCharging + name: signal-port-name-power-charging + description: signal-port-description-power-charging + +- type: sourcePort + id: PowerDischarging + name: signal-port-name-power-discharging + description: signal-port-description-power-discharging diff --git a/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml b/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml index 50d14cf2ba..eca5fd7d0d 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml @@ -1,5 +1,5 @@ - type: entity - parent: Clothing + parent: [Clothing, ContentsExplosionResistanceBase] id: ClothingBackpack name: backpack description: You wear this on your back and put items into it. @@ -26,6 +26,8 @@ # to prevent bag open/honk spam - type: UseDelay delay: 0.5 + - type: ExplosionResistance + damageCoefficient: 0.9 - type: entity parent: ClothingBackpack diff --git a/Resources/Prototypes/Entities/Clothing/Back/duffel.yml b/Resources/Prototypes/Entities/Clothing/Back/duffel.yml index 683dfd9250..f307b56a82 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/duffel.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/duffel.yml @@ -11,6 +11,7 @@ - type: ClothingSpeedModifier walkModifier: 1 sprintModifier: 0.9 + - type: HeldSpeedModifier - type: entity parent: ClothingBackpackDuffel @@ -164,6 +165,8 @@ sprite: Clothing/Back/Duffels/syndicate.rsi - type: Storage capacity: 131 + - type: ExplosionResistance + damageCoefficient: 0.1 - type: entity parent: ClothingBackpackDuffelSyndicate @@ -232,6 +235,7 @@ capacity: 9999 - type: ClothingSpeedModifier sprintModifier: 1 # makes its stats identical to other variants of bag of holding + - type: HeldSpeedModifier - type: entity parent: ClothingBackpackDuffel @@ -244,3 +248,4 @@ - type: ClothingSpeedModifier walkModifier: 1 sprintModifier: 1 + - type: HeldSpeedModifier \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Clothing/Belt/base_clothingbelt.yml b/Resources/Prototypes/Entities/Clothing/Belt/base_clothingbelt.yml index b37d3fd974..ffea87de89 100644 --- a/Resources/Prototypes/Entities/Clothing/Belt/base_clothingbelt.yml +++ b/Resources/Prototypes/Entities/Clothing/Belt/base_clothingbelt.yml @@ -31,3 +31,17 @@ interfaces: - key: enum.StorageUiKey.Key type: StorageBoundUserInterface + +- type: entity + abstract: true + parent: ClothingBeltBase + id: ClothingBeltAmmoProviderBase + components: + - type: BallisticAmmoProvider + mayTransfer: true + - type: Item + size: Ginormous + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + diff --git a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml index fa1a5e951f..6f80cf4f26 100644 --- a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml +++ b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml @@ -29,6 +29,7 @@ - HolofanProjector - Multitool - AppraisalTool + - JawsOfLife components: - SprayPainter - NetworkConfigurator @@ -57,6 +58,10 @@ whitelist: tags: - CrowbarRed + jaws: + whitelist: + tags: + - JawsOfLife screwdriver_nuke: whitelist: tags: @@ -169,6 +174,7 @@ components: - Stunbaton - FlashOnTrigger + - SmokeOnTrigger - Flash - Handcuff - RangedMagazine @@ -183,6 +189,10 @@ whitelist: components: - Stunbaton + tear_gas_grenade: + whitelist: + components: + - SmokeOnTrigger sprite: Clothing/Belt/belt_overlay.rsi - type: Appearance @@ -363,9 +373,12 @@ - Taser - SecBeltEquip - Radio + - Sidearm + - MagazinePistol components: - Stunbaton - FlashOnTrigger + - SmokeOnTrigger - Flash - Handcuff - type: ItemMapper @@ -378,11 +391,15 @@ whitelist: components: - Stunbaton + tear_gas_grenade: + whitelist: + components: + - SmokeOnTrigger sprite: Clothing/Belt/belt_overlay.rsi - type: Appearance - type: entity - parent: ClothingBeltStorageBase + parent: [ClothingBeltBase, ClothingSlotBase] id: ClothingBeltSheath name: sabre sheath description: An ornate sheath designed to hold an officer's blade. @@ -392,11 +409,15 @@ state: sheath - type: Clothing sprite: Clothing/Belt/sheath.rsi - - type: Storage - capacity: 15 - whitelist: - tags: - - CaptainSabre + - type: ItemSlots + slots: + item: + name: Sabre + insertVerbText: sheath-insert-verb + ejectVerbText: sheath-eject-verb + whitelist: + tags: + - CaptainSabre - type: ItemMapper mapLayers: sheath-sabre: @@ -404,11 +425,11 @@ tags: - CaptainSabre - type: Appearance - + # Belts without visualizers - type: entity - parent: ClothingBeltStorageBase + parent: ClothingBeltAmmoProviderBase id: ClothingBeltBandolier name: bandolier description: A bandolier for holding shotgun ammunition. @@ -419,11 +440,11 @@ sprite: Clothing/Belt/bandolier.rsi - type: Item size: 60 - - type: Storage - capacity: 60 + - type: BallisticAmmoProvider whitelist: tags: - ShellShotgun + capacity: 14 - type: entity parent: ClothingBeltBase @@ -507,7 +528,7 @@ sprite: Clothing/Belt/salvagewebbing.rsi - type: entity - parent: ClothingBeltStorageBase + parent: [ClothingBeltStorageBase, ContentsExplosionResistanceBase] id: ClothingBeltMilitaryWebbing name: chest rig description: A set of tactical webbing worn by Syndicate boarding parties. @@ -516,9 +537,11 @@ sprite: Clothing/Belt/militarywebbing.rsi - type: Clothing sprite: Clothing/Belt/militarywebbing.rsi + - type: ExplosionResistance + damageCoefficient: 0.5 - type: entity - parent: ClothingBeltStorageBase + parent: ClothingBeltMilitaryWebbing id: ClothingBeltMilitaryWebbingMed name: medical chest rig description: A set of tactical webbing worn by Gorlex Marauder medic operatives. diff --git a/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml b/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml index be67ff84b0..9b1f6c24a9 100644 --- a/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml +++ b/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml @@ -272,3 +272,17 @@ - type: Clothing sprite: Clothing/Ears/Headsets/service.rsi +- type: entity + parent: ClothingHeadset + id: ClothingHeadsetFreelance + name: freelancer headset + description: This is used by a roaming group of freelancers + components: + - type: ContainerFill + containers: + key_slots: + - EncryptionKeyFreelance + - type: Sprite + sprite: Clothing/Ears/Headsets/freelance.rsi + - type: Clothing + sprite: Clothing/Ears/Headsets/freelance.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml b/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml index 034653089c..3b2ffc9d24 100644 --- a/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml +++ b/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml @@ -146,3 +146,20 @@ sprite: Clothing/Ears/Headsets/syndicate.rsi - type: Clothing sprite: Clothing/Ears/Headsets/syndicate.rsi + +- type: entity + parent: ClothingHeadsetAlt + id: ClothingHeadsetAltFreelancer + name: freelancer's over-ear headset + components: + - type: Headset + - type: EncryptionKeyHolder + keySlots: 5 + - type: ContainerFill + containers: + key_slots: + - EncryptionKeyFreelance + - type: Sprite + sprite: Clothing/Ears/Headsets/freelance.rsi + - type: Clothing + sprite: Clothing/Ears/Headsets/freelance.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml index e21c90f1f3..e29aae6b19 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml @@ -83,6 +83,20 @@ - HamsterWearable - WhitelistChameleon - GlassesNearsight # SimpleStation14 NearsightedTrait + +- type: entity + parent: ClothingEyesBase + id: ClothingEyesGlassesJensen + name: jensen glasses + description: A pair of yellow tinted folding glasses. You never asked for these. + components: + - type: Sprite + sprite: Clothing/Eyes/Glasses/jensen.rsi + - type: Clothing + sprite: Clothing/Eyes/Glasses/jensen.rsi + - type: Tag + tags: + - WhitelistChameleon - type: entity parent: ClothingEyesBase @@ -115,28 +129,33 @@ - type: entity parent: ClothingEyesBase - id: ClothingEyesGlassesSunglasses + id: ClothingEyesGlassesCosmeticSunglasses name: sun glasses - description: Useful both for security and cargonia. + description: A pair of black sunglasses. components: - type: Sprite sprite: Clothing/Eyes/Glasses/sunglasses.rsi - type: Clothing sprite: Clothing/Eyes/Glasses/sunglasses.rsi - - type: FlashImmunity - - type: EyeProtection - protectionTime: 5 - type: Tag tags: - HamsterWearable - WhitelistChameleon - SecDogWearable # DeltaV - let Laika wear sunglasses +- type: entity + parent: ClothingEyesGlassesCosmeticSunglasses + id: ClothingEyesGlassesSunglasses + components: + - type: FlashImmunity + - type: EyeProtection + protectionTime: 5 + - type: entity parent: ClothingEyesBase id: ClothingEyesGlassesSecurity - name: security sunglasses - description: Strangely ancient technology used to help provide rudimentary eye cover. Enhanced shielding blocks many flashes. Often worn by budget security officers. + name: security glasses + description: Upgraded sunglasses that provide flash immunity and a security HUD. components: - type: Sprite sprite: Clothing/Eyes/Glasses/secglasses.rsi @@ -153,6 +172,7 @@ - type: GuideHelp guides: - Security + - type: ShowSecurityIcons - type: entity parent: ClothingEyesBase diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml b/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml index 9fba00a35e..051df2348f 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml @@ -62,6 +62,7 @@ - type: Clothing sprite: Clothing/Eyes/Hud/beergoggles.rsi - type: ShowThirstIcons + - type: SolutionScanner - type: entity parent: ClothingEyesBase @@ -148,6 +149,7 @@ - type: Clothing sprite: Clothing/Eyes/Hud/medsecengi.rsi - type: ShowSecurityIcons + - type: ShowSyndicateIcons - type: entity parent: ClothingEyesBase @@ -162,3 +164,18 @@ - type: ShowSecurityIcons - type: ShowHungerIcons - type: ShowThirstIcons + - type: ShowSyndicateIcons + +- type: entity + parent: ClothingEyesBase + id: ClothingEyesHudSyndicate + name: syndicate visor + description: The syndicate's professional head-up display, designed for better detection of humanoids and their subsequent elimination. + components: + - type: Sprite + sprite: Clothing/Eyes/Hud/synd.rsi + - type: Clothing + sprite: Clothing/Eyes/Hud/synd.rsi + - type: ShowSyndicateIcons + - type: ShowSecurityIcons + diff --git a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml index ddecf376e7..dc1c4fcf48 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml @@ -108,6 +108,25 @@ fiberColor: fibers-regal-blue - type: FingerprintMask +- type: entity + parent: ClothingHandsBase + id: ClothingHandsGlovesHop + name: papercut-proof gloves + description: Perfect for dealing with paperwork and matters with bureaucracy. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/hop.rsi + - type: Clothing + sprite: Clothing/Hands/Gloves/hop.rsi + - type: Fiber + fiberMaterial: fibers-durathread + fiberColor: fibers-black + - type: Armor + modifiers: + coefficients: + Slash: 0.95 + - type: FingerprintMask + #### Medical - type: entity parent: ClothingHandsBase @@ -130,9 +149,9 @@ description: High-quality nitrile gloves. Expensive medical PPE. components: - type: Sprite - sprite: Clothing/Hands/Gloves/Color/blue.rsi + sprite: Clothing/Hands/Gloves/nitrile.rsi - type: Clothing - sprite: Clothing/Hands/Gloves/Color/blue.rsi + sprite: Clothing/Hands/Gloves/nitrile.rsi - type: Fiber fiberMaterial: fibers-nitrile - type: FingerprintMask @@ -213,8 +232,6 @@ stripTimeReduction: 1 stealthy: true - type: NinjaGloves - # not actually electrified, just used to make stun ability work - - type: Electrified - type: entity parent: ClothingHandsGlovesColorBlack @@ -374,3 +391,19 @@ - type: GuideHelp guides: - DNA + +# TODO Make lubed items not slip in hands +- type: entity + parent: ClothingHandsBase + id: ClothingHandsGlovesJanitor + name: rubber gloves + description: High-quality rubber gloves, squeaky to do some cleaning! + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/janitor.rsi + - type: Clothing + sprite: Clothing/Hands/Gloves/janitor.rsi + - type: Fiber + fiberMaterial: fibers-rubber + fiberColor: fibers-yellow + - type: FingerprintMask diff --git a/Resources/Prototypes/Entities/Clothing/Hands/specific.yml b/Resources/Prototypes/Entities/Clothing/Hands/specific.yml index 87a0961569..3837c0ab60 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/specific.yml @@ -21,3 +21,12 @@ interfaces: - key: enum.ChameleonUiKey.Key type: ChameleonBoundUserInterface + +- type: entity + parent: ClothingHandsChameleon + id: ClothingHandsChameleonThief + suffix: Chameleon, Thieving + components: + - type: Thieving + stripTimeReduction: 2 + stealthy: true \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml index 5e2de35955..86043f50f7 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml @@ -5,6 +5,7 @@ name: EVA helmet description: An old-but-gold helmet designed for extravehicular activites. Infamous for making security officers paranoid. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Helmets/eva.rsi - type: Clothing @@ -21,6 +22,7 @@ name: EVA helmet description: An old-but-gold helmet designed for extravehicular activites. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Helmets/eva_large.rsi - type: Clothing @@ -33,6 +35,7 @@ name: syndicate EVA helmet description: A simple, stylish EVA helmet. Designed for maximum humble space-badassery. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Helmets/eva_syndicate.rsi - type: Clothing @@ -45,6 +48,7 @@ name: cosmonaut helmet description: Ancient design, but advanced manufacturing. #Description here originally started with " A deceptively well armored space helmet." Potentially had armor values in SS13 that weren't brought over? components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Helmets/cosmonaut.rsi - type: Clothing @@ -57,6 +61,7 @@ name: Paramedic Void Helmet description: A void helmet made for paramedics. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Helmets/paramedhelm.rsi - type: Clothing @@ -77,6 +82,7 @@ name: NTSRA void helmet description: An ancient space helmet, designed by the NTSRA branch of CentCom. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Helmets/ancientvoidsuit.rsi - type: Clothing diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml index d509d52726..9c7216b729 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml @@ -1,17 +1,18 @@ #When adding new hardsuits, please try to keep the organization consistent with hardsuit.yml (if possible.) -#For now, since locational damage is not a thing, all "combat" hardsuits (with the exception of the deathsquad hardsuit) have the equvilent of a helmet in terms of armor. This is so people don't need to wear both regular, on-station helmets and hardsuits to get full protection. -#Generally, unless you're adding something like caustic damage, you should probably avoid messing with armor outside of the above scenario. +#For now, since locational damage is not a thing, all "combat" hardsuits (with the exception of the deathsquad hardsuit) have the equvilent of a helmet in terms of armor. +#This is so people don't need to wear both regular, on-station helmets and hardsuits to get full protection. +#Generally, unless you're adding something like caustic damage, you should probably avoid messing with armor here outside of the above scenario. #CREW HARDSUITS #Standard Hardsuit - type: entity parent: ClothingHeadHardsuitBase id: ClothingHeadHelmetHardsuitBasic - noSpawn: true name: basic hardsuit helmet description: A basic-looking hardsuit helmet that provides minor protection against most sources of damage. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/basic.rsi - type: Clothing @@ -21,10 +22,10 @@ - type: entity parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitAtmos - noSpawn: true name: atmos hardsuit helmet description: A special hardsuit helmet designed for working in low-pressure, high thermal environments. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/atmospherics.rsi layers: @@ -61,10 +62,10 @@ - type: entity parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitEngineering - noSpawn: true name: engineering hardsuit helmet description: An engineering hardsuit helmet designed for working in low-pressure, high radioactive environments. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/engineering.rsi - type: Clothing @@ -79,10 +80,10 @@ - type: entity parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitSpatio - noSpawn: true name: spationaut hardsuit helmet description: A sturdy helmet designed for complex industrial operations in space. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/spatiohelm.rsi layers: @@ -114,10 +115,10 @@ - type: entity parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitSalvage - noSpawn: true name: salvage hardsuit helmet description: A special helmet designed for work in a hazardous, low pressure environment. Has reinforced plating for wildlife encounters and dual floodlights. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/salvage.rsi - type: Clothing @@ -133,10 +134,10 @@ - type: entity parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitSecurity - noSpawn: true name: security hardsuit helmet description: Armored hardsuit helmet for security needs. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/security.rsi - type: Clothing @@ -158,10 +159,10 @@ - type: entity parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitBrigmedic - noSpawn: true name: corpsman hardsuit helmet # DeltaV - rename brigmedic to corpsman description: The lightweight helmet of the corpsman hardsuit. Protects against viruses, and clowns. # Delta V - rename brigmedic to corpsman components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/brigmedic.rsi - type: Clothing @@ -185,10 +186,10 @@ - type: entity parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitWarden - noSpawn: true name: warden's hardsuit helmet description: A modified riot helmet. Oddly comfortable. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/security-warden.rsi - type: Clothing @@ -208,12 +209,12 @@ #Captain's Hardsuit - type: entity - parent: ClothingHeadHardsuitBase + parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitCap - noSpawn: true name: captain's hardsuit helmet description: Special hardsuit helmet, made for the captain of the station. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/capspace.rsi - type: Clothing @@ -226,10 +227,10 @@ - type: entity parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitEngineeringWhite - noSpawn: true name: chief engineer's hardsuit helmet description: Special hardsuit helmet, made for the chief engineer of the station. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/engineering-white.rsi - type: Clothing @@ -244,10 +245,10 @@ - type: entity parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitMedical - noSpawn: true name: chief medical officer's hardsuit helmet description: Lightweight medical hardsuit helmet that doesn't restrict your head movements. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/medical.rsi - type: Clothing @@ -262,10 +263,10 @@ - type: entity parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitRd - noSpawn: true name: experimental research hardsuit helmet description: Lightweight hardsuit helmet that doesn't restrict your head movements. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/rd.rsi - type: Clothing @@ -280,10 +281,10 @@ - type: entity parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitSecurityRed - noSpawn: true name: head of security's hardsuit helmet description: Security hardsuit helmet with the latest top secret NT-HUD software. Belongs to the HoS. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/security-red.rsi - type: Clothing @@ -305,10 +306,10 @@ - type: entity parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitLuxury #DO NOT MAP - https://github.com/space-wizards/space-station-14/pull/19738#issuecomment-1703486738 - noSpawn: true name: luxury mining hardsuit helmet description: A refurbished mining hardsuit helmet, fitted with satin cushioning and an extra (non-functioning) antenna, because you're that extra. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/luxury.rsi - type: Clothing @@ -325,10 +326,10 @@ - type: entity parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitSyndie - noSpawn: true name: blood-red hardsuit helmet description: A heavily armored helmet designed for work in special operations. Property of Gorlex Marauders. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/syndicate.rsi - type: Clothing @@ -350,10 +351,10 @@ - type: entity parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitSyndieMedic - noSpawn: true name: blood-red medic hardsuit helmet description: An advanced red hardsuit helmet specifically designed for field medic operations. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/syndiemedic.rsi - type: Clothing @@ -375,10 +376,10 @@ - type: entity parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitSyndieElite - noSpawn: true name: syndicate elite helmet description: An elite version of the blood-red hardsuit's helmet, with improved armor and fireproofing. Property of Gorlex Marauders. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/syndieelite.rsi - type: Clothing @@ -402,10 +403,10 @@ - type: entity parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitSyndieCommander - noSpawn: true name: syndicate commander helmet description: A bulked up version of the blood-red hardsuit's helmet, purpose-built for the commander of a syndicate operative squad. Has significantly improved armor for those deadly front-lines firefights. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/syndiecommander.rsi - type: Clothing @@ -427,10 +428,10 @@ - type: entity parent: ClothingHeadHardsuitBase id: ClothingHeadHelmetHardsuitCybersun - noSpawn: true name: cybersun juggernaut helmet description: Made of compressed red matter, this helmet was designed in the Tau chromosphere facility. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/cybersun.rsi - type: Clothing @@ -450,10 +451,10 @@ - type: entity parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitWizard - noSpawn: true name: wizard hardsuit helmet description: A bizarre gem-encrusted helmet that radiates magical energies. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/wizard.rsi - type: Clothing @@ -475,10 +476,10 @@ - type: entity parent: ClothingHeadHardsuitBase id: ClothingHeadHelmetHardsuitLing - noSpawn: true name: organic space helmet description: A spaceworthy biomass of pressure and temperature resistant tissue. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/lingspacehelmet.rsi - type: Clothing @@ -491,11 +492,11 @@ - type: entity parent: ClothingHeadHardsuitBase id: ClothingHeadHelmetHardsuitPirateEVA - noSpawn: true name: deep space EVA helmet suffix: Pirate description: A deep space EVA helmet, very heavy but provides good protection. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/pirateeva.rsi - type: Clothing @@ -508,11 +509,11 @@ - type: entity parent: ClothingHeadHardsuitBase id: ClothingHeadHelmetHardsuitPirateCap - noSpawn: true name: pirate captain's hardsuit helmet suffix: Pirate description: A special hardsuit helmet, made for the captain of a pirate ship. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/piratecaptainhelm.rsi - type: Clothing @@ -526,10 +527,10 @@ - type: entity parent: ClothingHeadHelmetHardsuitSyndieCommander id: ClothingHeadHelmetHardsuitERTLeader - noSpawn: true name: ERT leader hardsuit helmet description: A special hardsuit helmet worn by members of an emergency response team. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi - type: Clothing @@ -548,9 +549,10 @@ - type: entity parent: ClothingHeadHelmetHardsuitSyndie id: ClothingHeadHelmetHardsuitERTEngineer - noSpawn: true name: ERT engineer hardsuit helmet + description: A special hardsuit helmet worn by members of an emergency response team. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi - type: Clothing @@ -569,9 +571,10 @@ - type: entity parent: ClothingHeadHelmetHardsuitSyndieElite id: ClothingHeadHelmetHardsuitERTMedical - noSpawn: true name: ERT medic hardsuit helmet + description: A special hardsuit helmet worn by members of an emergency response team. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi - type: Clothing @@ -583,9 +586,10 @@ - type: entity parent: ClothingHeadHelmetHardsuitSyndie id: ClothingHeadHelmetHardsuitERTSecurity - noSpawn: true name: ERT security hardsuit helmet + description: A special hardsuit helmet worn by members of an emergency response team. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi - type: Clothing @@ -604,9 +608,10 @@ - type: entity parent: ClothingHeadHelmetHardsuitSyndie id: ClothingHeadHelmetHardsuitERTJanitor - noSpawn: true name: ERT janitor hardsuit helmet + description: A special hardsuit helmet worn by members of an emergency response team. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi - type: Clothing @@ -618,10 +623,10 @@ - type: entity parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetCBURN - noSpawn: true name: CBURN exosuit helmet description: A pressure resistant and fireproof hood worn by special cleanup units. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/cburn.rsi layers: @@ -657,10 +662,10 @@ - type: entity parent: ClothingHeadHardsuitBase id: ClothingHeadHelmetHardsuitDeathsquad - noSpawn: true name: deathsquad hardsuit helmet description: A robust helmet for special operations. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/deathsquad.rsi - type: Clothing @@ -683,10 +688,10 @@ - type: entity parent: ClothingHeadHelmetHardsuitSecurity id: ClothingHeadHelmetHardsuitClown - noSpawn: true name: clown hardsuit helmet description: A clown hardsuit helmet. components: + - type: BreathMask - type: Sprite sprite: Clothing/Head/Hardsuits/clown.rsi - type: Clothing diff --git a/Resources/Prototypes/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/Entities/Clothing/Head/hats.yml index 44f32ccd10..19929b9888 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hats.yml @@ -111,6 +111,17 @@ - type: Clothing sprite: DeltaV/Clothing/Head/Hats/beret_warden.rsi # DeltaV - resprite +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatBeretSeniorPhysician + name: physician beret + description: Donning the colours of medical and chemistry, physicians are the pride of this department! + components: + - type: Sprite + sprite: Clothing/Head/Hats/beret_physician.rsi + - type: Clothing + sprite: Clothing/Head/Hats/beret_physician.rsi + - type: entity parent: ClothingHeadBase id: ClothingHeadHatBeretBrigmedic @@ -795,6 +806,22 @@ - WhitelistChameleon - HamsterWearable +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatCentcomcap + name: CentCom cap + description: An extravagant, fancy Central Commander cap. + components: + - type: Sprite + sprite: Clothing/Head/Hats/comcap.rsi + - type: Clothing + sprite: Clothing/Head/Hats/comcap.rsi + - type: Tag + tags: + - ClothMade + - WhitelistChameleon + - HamsterWearable + - type: entity parent: ClothingHeadBase id: ClothingHeadHatGladiator @@ -805,3 +832,49 @@ sprite: Clothing/Head/Hats/gladiator.rsi - type: Clothing sprite: Clothing/Head/Hats/gladiator.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatPartyRed + name: red party hat + description: Spread a joy! + components: + - type: Sprite + sprite: Clothing/Head/Hats/party_red.rsi + - type: Clothing + sprite: Clothing/Head/Hats/party_red.rsi + - type: Tag + tags: + - DroneUsable + - WhitelistChameleon + - HamsterWearable + +- type: entity + parent: ClothingHeadHatPartyRed + id: ClothingHeadHatPartyYellow + name: yellow party hat + components: + - type: Sprite + sprite: Clothing/Head/Hats/party_yellow.rsi + - type: Clothing + sprite: Clothing/Head/Hats/party_yellow.rsi + +- type: entity + parent: ClothingHeadHatPartyRed + id: ClothingHeadHatPartyGreen + name: green party hat + components: + - type: Sprite + sprite: Clothing/Head/Hats/party_green.rsi + - type: Clothing + sprite: Clothing/Head/Hats/party_green.rsi + +- type: entity + parent: ClothingHeadHatPartyRed + id: ClothingHeadHatPartyBlue + name: blue party hat + components: + - type: Sprite + sprite: Clothing/Head/Hats/party_blue.rsi + - type: Clothing + sprite: Clothing/Head/Hats/party_blue.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml index f337ad9df7..72abbd5f72 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml @@ -111,6 +111,22 @@ Slash: 0.95 Piercing: 0.95 +#Janitorial Bombsuit Helmet +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHelmetJanitorBombSuit + name: janitorial bombsuit helmet + description: A heavy helmet designed to withstand explosions formed from reactions between chemicals. + suffix: DO NOT MAP + components: + - type: Sprite + sprite: Clothing/Head/Helmets/janitor_bombsuit.rsi + - type: Clothing + sprite: Clothing/Head/Helmets/janitor_bombsuit.rsi + - type: IngestionBlocker + - type: ExplosionResistance + damageCoefficient: 0.9 + #Cult Helmet - type: entity parent: ClothingHeadBase @@ -351,3 +367,14 @@ - type: Construction graph: BoneHelmet node: helmet + +- type: entity + parent: ClothingHeadHelmetBasic + id: ClothingHeadHelmetPodWars + name: ironclad II helmet + description: An ironclad II helmet, a relic of the pod wars. + components: + - type: Sprite + sprite: Clothing/Head/Helmets/podwars_helmet.rsi + - type: Clothing + sprite: Clothing/Head/Helmets/podwars_helmet.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Head/welding.yml b/Resources/Prototypes/Entities/Clothing/Head/welding.yml index 582e1f0d50..39d3eb8506 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/welding.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/welding.yml @@ -14,6 +14,10 @@ Glass: 100 - type: StaticPrice price: 50 + - type: Tag + tags: + - DroneUsable + - WhitelistChameleon - type: entity parent: WeldingMaskBase @@ -27,6 +31,7 @@ sprite: Clothing/Head/Welding/welding.rsi - type: Tag tags: + - DroneUsable - HamsterWearable - WhitelistChameleon diff --git a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml index 4909d6e393..556de93737 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml @@ -198,6 +198,19 @@ - HamsterWearable - WhitelistChameleon +- type: entity + parent: ClothingMaskClown + id: ClothingMaskClownBanana + name: banana clown wig and mask + components: + - type: Sprite + sprite: Clothing/Mask/clown_banana.rsi + - type: Clothing + sprite: Clothing/Mask/clown_banana.rsi + - type: Construction + graph: BananaClownMask + node: mask + - type: entity parent: ClothingMaskBase id: ClothingMaskJoy diff --git a/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml b/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml index 2111ac6302..d5ee9c1f5a 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml @@ -159,3 +159,14 @@ toggleable-clothing: !type:ContainerSlot {} - type: TypingIndicatorClothing proto: moth + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckCloakVoid + name: void cloak + description: A cloak of darkness. For those who have gone to the dark side of the force. + components: + - type: Sprite + sprite: Clothing/Neck/Cloaks/void.rsi + - type: TypingIndicatorClothing + proto: alien \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml index a20addcce2..fdaee45ccc 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml @@ -227,6 +227,10 @@ Piercing: 0.6 Heat: 0.5 Caustic: 0.9 + - type: ClothingSpeedModifier + walkModifier: 1.0 + sprintModifier: 1.0 + - type: HeldSpeedModifier - type: ExplosionResistance damageCoefficient: 0.65 - type: GroupExamine @@ -252,6 +256,7 @@ - type: ClothingSpeedModifier walkModifier: 0.7 sprintModifier: 0.65 + - type: HeldSpeedModifier - type: ExplosionResistance damageCoefficient: 0.5 - type: GroupExamine @@ -274,9 +279,29 @@ Piercing: 0.4 - type: ClothingSpeedModifier walkModifier: 0.8 + - type: HeldSpeedModifier - type: ExplosionResistance damageCoefficient: 0.4 - type: GroupExamine - type: Construction graph: BoneArmor node: armor + +- type: entity + parent: ClothingOuterBaseLarge + id: ClothingOuterArmorPodWars + name: ironclad II armor + description: A repurposed suit of ironclad II armor, a relic of the pod wars. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Armor/podwars_armor.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Armor/podwars_armor.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.5 + Slash: 0.5 + Piercing: 0.6 + Heat: 0.5 + - type: GroupExamine diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml index f92592f65e..a1c2de0c87 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml @@ -22,6 +22,7 @@ - type: ClothingSpeedModifier walkModifier: 0.9 sprintModifier: 0.9 + - type: HeldSpeedModifier - type: entity abstract: true @@ -71,6 +72,7 @@ - type: ClothingSpeedModifier walkModifier: 0.4 sprintModifier: 0.6 + - type: HeldSpeedModifier - type: Item size: 121 - type: Armor @@ -106,6 +108,7 @@ - type: ClothingSpeedModifier walkModifier: 0.8 sprintModifier: 0.8 + - type: HeldSpeedModifier - type: Item size: 80 diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml index e72418048f..b179e0820a 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml @@ -193,6 +193,22 @@ coefficients: Caustic: 0.75 +- type: entity + parent: ClothingOuterStorageBase + id: ClothingOuterCoatRD + name: research director lab coat + description: Woven with top of the line technology, this labcoat helps protect against radiation in similar way to the experimental hardsuit. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Coats/rd_coat.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Coats/rd_coat.rsi + - type: Armor + modifiers: + coefficients: + Caustic: 0.75 + Radiation: 0.9 + - type: entity parent: ClothingOuterStorageBase id: ClothingOuterCoatPirate diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml index 6374701533..2c63551483 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml @@ -24,6 +24,7 @@ - type: ClothingSpeedModifier walkModifier: 0.80 sprintModifier: 0.80 + - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitBasic @@ -57,6 +58,7 @@ - type: ClothingSpeedModifier walkModifier: 0.7 sprintModifier: 0.7 + - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitAtmos - type: ReverseEngineering # Nyano @@ -95,6 +97,7 @@ - type: ClothingSpeedModifier walkModifier: 0.7 sprintModifier: 0.7 + - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitEngineering @@ -123,6 +126,7 @@ - type: ClothingSpeedModifier walkModifier: 0.9 sprintModifier: 0.8 + - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitSpatio @@ -153,6 +157,7 @@ - type: ClothingSpeedModifier walkModifier: 0.75 sprintModifier: 0.75 + - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitSalvage @@ -182,6 +187,7 @@ - type: ClothingSpeedModifier walkModifier: 0.75 sprintModifier: 0.75 + - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitSecurity @@ -208,6 +214,7 @@ - type: ClothingSpeedModifier walkModifier: 0.65 sprintModifier: 0.65 + - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitBrigmedic @@ -237,6 +244,7 @@ - type: ClothingSpeedModifier walkModifier: 0.7 sprintModifier: 0.7 + - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitWarden @@ -261,13 +269,14 @@ coefficients: Blunt: 0.8 Slash: 0.8 - Piercing: 0.8 + Piercing: 0.6 Heat: 0.5 Radiation: 0.5 Caustic: 0.6 - type: ClothingSpeedModifier walkModifier: 0.8 sprintModifier: 0.8 + - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitCap @@ -299,6 +308,7 @@ - type: ClothingSpeedModifier walkModifier: 0.75 sprintModifier: 0.8 + - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitEngineeringWhite @@ -323,6 +333,7 @@ - type: ClothingSpeedModifier walkModifier: 0.9 sprintModifier: 0.95 + - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitMedical @@ -354,6 +365,7 @@ - type: ClothingSpeedModifier walkModifier: 0.75 sprintModifier: 0.75 + - type: HeldSpeedModifier - type: Item size: 50 - type: Tag @@ -392,6 +404,7 @@ - type: ClothingSpeedModifier walkModifier: 0.8 sprintModifier: 0.8 + - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitSecurityRed @@ -422,6 +435,7 @@ - type: ClothingSpeedModifier walkModifier: 0.85 sprintModifier: 0.9 + - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitLuxury @@ -454,6 +468,7 @@ - type: ClothingSpeedModifier walkModifier: 0.9 sprintModifier: 0.9 + - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitSyndie - type: ReverseEngineering # Nyano @@ -465,7 +480,7 @@ # Syndicate Medic Hardsuit - type: entity parent: ClothingOuterHardsuitSyndie - id: ClothingOuterHardsuitMedic + id: ClothingOuterHardsuitSyndieMedic name: blood-red medic hardsuit description: A heavily armored and agile advanced hardsuit specifically designed for field medic operations. components: @@ -506,6 +521,7 @@ - type: ClothingSpeedModifier walkModifier: 1.0 sprintModifier: 1.0 + - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitSyndieElite @@ -537,6 +553,7 @@ - type: ClothingSpeedModifier walkModifier: 1.0 sprintModifier: 1.0 + - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitSyndieCommander @@ -568,6 +585,7 @@ - type: ClothingSpeedModifier walkModifier: 0.9 sprintModifier: 0.65 + - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitCybersun @@ -599,6 +617,7 @@ - type: ClothingSpeedModifier walkModifier: 0.8 sprintModifier: 0.8 + - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitWizard @@ -628,6 +647,7 @@ - type: ClothingSpeedModifier walkModifier: 0.8 sprintModifier: 0.8 + - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitLing @@ -657,8 +677,11 @@ - type: ClothingSpeedModifier walkModifier: 0.6 sprintModifier: 0.6 + - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitPirateEVA + - type: StaticPrice + price: 0 #Pirate Captain Hardsuit - type: entity @@ -687,9 +710,11 @@ - type: ClothingSpeedModifier walkModifier: 0.8 sprintModifier: 0.8 + - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitPirateCap - + - type: StaticPrice + price: 0 #CENTCOMM / ERT HARDSUITS #ERT Leader Hardsuit @@ -722,7 +747,7 @@ #ERT Medic Hardsuit - type: entity - parent: ClothingOuterHardsuitMedic + parent: ClothingOuterHardsuitSyndieMedic id: ClothingOuterHardsuitERTMedical name: ERT medic's hardsuit description: A protective hardsuit worn by the medics of an emergency response team. @@ -792,6 +817,7 @@ - type: ClothingSpeedModifier walkModifier: 1.0 sprintModifier: 1.0 + - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitDeathsquad @@ -827,6 +853,7 @@ - type: ClothingSpeedModifier walkModifier: 1.0 sprintModifier: 1.0 + - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetCBURN @@ -836,7 +863,7 @@ parent: ClothingOuterHardsuitBase id: ClothingOuterHardsuitClown name: clown hardsuit - description: A custom made clown hardsuit. + description: A custom-made clown hardsuit. components: - type: Sprite sprite: Clothing/OuterClothing/Hardsuits/clown.rsi @@ -860,5 +887,6 @@ # - type: Construction # DeltaV - Prevent clowns from making the hardsuit # graph: ClownHardsuit # node: clownHardsuit + - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitClown diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml index 3d0adacf7e..e46db13bd2 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml @@ -44,6 +44,7 @@ - type: ClothingSpeedModifier walkModifier: 0.5 sprintModifier: 0.5 + - type: HeldSpeedModifier - type: TemperatureProtection coefficient: 0.5 - type: ToggleableClothing @@ -83,6 +84,7 @@ - type: ClothingSpeedModifier walkModifier: 0.85 sprintModifier: 0.85 + - type: HeldSpeedModifier #Paramedic Voidsuit #Despite having resistances and looking like one, this is two-piece and parents off the EVA suit so it goes here. @@ -102,6 +104,7 @@ - type: ClothingSpeedModifier walkModifier: 0.9 sprintModifier: 0.9 + - type: HeldSpeedModifier - type: TemperatureProtection coefficient: 0.1 - type: Armor diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml index 16bef8c7b2..c1a19fd3a0 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml @@ -23,6 +23,28 @@ - Hardsuit - WhitelistChameleon +- type: entity + parent: ClothingOuterBaseLarge + id: ClothingOuterSuitJanitorBomb + name: janitorial bomb suit + description: A heavy helmet designed to withstand explosions formed from reactions between chemicals. + suffix: DO NOT MAP + components: + - type: Sprite + sprite: Clothing/OuterClothing/Suits/janitor_bombsuit.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Suits/janitor_bombsuit.rsi + - type: ClothingSpeedModifier + walkModifier: 0.8 + sprintModifier: 0.8 + - type: ExplosionResistance + damageCoefficient: 0.15 + - type: GroupExamine + - type: Tag + tags: + - Hardsuit + - WhitelistChameleon + - type: entity parent: ClothingOuterBaseLarge id: ClothingOuterSuitFire @@ -46,6 +68,7 @@ - type: ClothingSpeedModifier walkModifier: 0.8 sprintModifier: 0.7 + - type: HeldSpeedModifier - type: GroupExamine - type: entity @@ -72,6 +95,7 @@ - type: ClothingSpeedModifier walkModifier: 0.8 sprintModifier: 0.8 + - type: HeldSpeedModifier - type: GroupExamine - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/base_clothingshoes.yml b/Resources/Prototypes/Entities/Clothing/Shoes/base_clothingshoes.yml index c829dc5d44..d0f4800205 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/base_clothingshoes.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/base_clothingshoes.yml @@ -33,18 +33,27 @@ - id: MaterialCloth1 amount: 1 +# stuff common to all military boots - type: entity abstract: true - parent: ClothingShoesBase - id: ClothingShoesStorageBase + parent: [ClothingShoesBase, ClothingSlotBase] + id: ClothingShoesMilitaryBase + components: + - type: Matchbox + - type: ItemSlots + slots: + item: + name: clothing-military-boots-sidearm + whitelist: + tags: + - Knife + - Sidearm + +- type: entity + abstract: true + parent: ClothingShoesBaseButcherable + id: ClothingShoesBaseWinterBoots + description: Fluffy boots to help survive even the coldest of winters. components: - - type: Storage - capacity: 10 - - type: ContainerContainer - containers: - storagebase: !type:Container - ents: [] - - type: UserInterface - interfaces: - - key: enum.StorageUiKey.Key - type: StorageBoundUserInterface + - type: TemperatureProtection + coefficient: 0.2 diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml b/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml index 912e4d8594..262e1bd331 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml @@ -11,7 +11,7 @@ - type: Matchbox - type: entity - parent: ClothingShoesStorageBase + parent: ClothingShoesMilitaryBase id: ClothingShoesBootsJack name: jackboots description: Nanotrasen-issue Security combat boots for combat scenarios or combat situations. All combat, all the time. @@ -20,12 +20,6 @@ sprite: Clothing/Shoes/Boots/jackboots.rsi - type: Clothing sprite: Clothing/Shoes/Boots/jackboots.rsi - - type: Matchbox - - type: Storage - whitelist: - tags: - - Knife - - Sidearm - type: entity parent: ClothingShoesBaseButcherable @@ -51,7 +45,7 @@ sprite: Clothing/Shoes/Boots/performer.rsi - type: entity - parent: ClothingShoesStorageBase + parent: ClothingShoesMilitaryBase id: ClothingShoesBootsCombat name: combat boots description: Robust combat boots for combat scenarios or combat situations. All combat, all the time. @@ -60,15 +54,24 @@ sprite: Clothing/Shoes/Boots/combatboots.rsi - type: Clothing sprite: Clothing/Shoes/Boots/combatboots.rsi - - type: Matchbox - - type: Storage - whitelist: - tags: - - Knife - - Sidearm - type: entity - parent: ClothingShoesStorageBase + parent: ClothingShoesMilitaryBase + id: ClothingShoesHighheelBoots + name: high-heeled boots + description: Snazy boots for when you want to be stylish, yet prepared. + components: + - type: MeleeWeapon + damage: + types: + Piercing: 6 + - type: Sprite + sprite: Clothing/Shoes/Boots/highheelboots.rsi + - type: Clothing + sprite: Clothing/Shoes/Boots/highheelboots.rsi + +- type: entity + parent: ClothingShoesMilitaryBase id: ClothingShoesBootsMerc name: mercenary boots description: Boots that have gone through many conflicts and that have proven their combat reliability. @@ -77,12 +80,6 @@ sprite: Clothing/Shoes/Boots/mercboots.rsi - type: Clothing sprite: Clothing/Shoes/Boots/mercboots.rsi - - type: Matchbox - - type: Storage - whitelist: - tags: - - Knife - - Sidearm - type: entity parent: ClothingShoesBaseButcherable @@ -96,14 +93,98 @@ sprite: Clothing/Shoes/Boots/laceups.rsi - type: entity - parent: ClothingShoesBaseButcherable + parent: ClothingShoesBaseWinterBoots id: ClothingShoesBootsWinter name: winter boots - description: Fluffy boots to help survive even the coldest of winters. components: - type: Sprite sprite: Clothing/Shoes/Boots/winterboots.rsi - type: Clothing sprite: Clothing/Shoes/Boots/winterboots.rsi - - type: TemperatureProtection - coefficient: 0.05 + +- type: entity + parent: ClothingShoesBaseWinterBoots + id: ClothingShoesBootsWinterCargo + name: logistics winter boots #Delta V: Rename Logistics + components: + - type: Sprite + sprite: Clothing/Shoes/Boots/winterbootscargo.rsi + - type: Clothing + sprite: Clothing/Shoes/Boots/winterbootscargo.rsi + +- type: entity + parent: ClothingShoesBaseWinterBoots + id: ClothingShoesBootsWinterEngi + name: engineering winter boots + components: + - type: Sprite + sprite: Clothing/Shoes/Boots/winterbootsengi.rsi + - type: Clothing + sprite: Clothing/Shoes/Boots/winterbootsengi.rsi + +- type: entity + parent: ClothingShoesBaseWinterBoots + id: ClothingShoesBootsWinterMed + name: medical winter boots + components: + - type: Sprite + sprite: Clothing/Shoes/Boots/winterbootsmed.rsi + - type: Clothing + sprite: Clothing/Shoes/Boots/winterbootsmed.rsi + +- type: entity + parent: ClothingShoesBaseWinterBoots + id: ClothingShoesBootsWinterSci + name: science winter boots + components: + - type: Sprite + sprite: Clothing/Shoes/Boots/winterbootssci.rsi + - type: Clothing + sprite: Clothing/Shoes/Boots/winterbootssci.rsi + +- type: entity + parent: ClothingShoesBaseWinterBoots + id: ClothingShoesBootsWinterSec + name: security winter boots + components: + - type: Sprite + sprite: Clothing/Shoes/Boots/winterbootssec.rsi + - type: Clothing + sprite: Clothing/Shoes/Boots/winterbootssec.rsi + +- type: entity + parent: ClothingShoesBaseWinterBoots + id: ClothingShoesBootsWinterSyndicate + name: syndicate's winter boots + description: Durable heavy boots, looks like merch from "Syndieland" + components: + - type: Sprite + sprite: Clothing/Shoes/Boots/winterbootssyndicate.rsi + - type: Clothing + sprite: Clothing/Shoes/Boots/winterbootssyndicate.rsi + +- type: entity + parent: ClothingShoesBaseWinterBoots + id: ClothingShoesBootsWinterWeb + name: web winter boots + description: Boots made out of dense webbing to help survive even the coldest of winters. + components: + - type: Sprite + sprite: Clothing/Shoes/Boots/winterbootsweb.rsi + - type: Clothing + sprite: Clothing/Shoes/Boots/winterbootsweb.rsi + - type: FlavorProfile + flavors: + - cobwebs + ignoreReagents: + - Fiber + - type: SolutionContainerManager + solutions: # 6 (3 (fiber count of web) * 2 (to craft)) + 4 (magical crafting bonus) + food: + maxVol: 10 + reagents: + - ReagentId: Fiber + Quantity: 10 + - type: Construction + graph: WebObjects + node: boots diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml b/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml index e531e212e9..ee1708caef 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml @@ -69,3 +69,64 @@ sprite: Clothing/Shoes/Misc/damedaneshoes.rsi - type: Clothing sprite: Clothing/Shoes/Misc/damedaneshoes.rsi + +- type: entity + parent: ClothingShoesBase + id: ClothingShoesSnakeskinBoots + name: snakeskin boots + description: Boots made of high-class snakeskin, everyone around you will be jealous. + components: + - type: Sprite + sprite: Clothing/Shoes/Misc/snakeskin.rsi + - type: Clothing + sprite: Clothing/Shoes/Misc/snakeskin.rsi + - type: NoSlip + +- type: entity + parent: [ClothingShoesBase, PowerCellSlotSmallItem] + id: ClothingShoesBootsSpeed + name: speed boots + description: High-tech boots woven with quantum fibers, able to convert electricity into pure speed! + components: + - type: Sprite + sprite: Clothing/Shoes/Boots/speedboots.rsi + layers: + - state: icon + map: [ "enum.ToggleVisuals.Layer" ] + - type: Clothing + sprite: Clothing/Shoes/Boots/speedboots.rsi + - type: ToggleClothingSpeed + toggleAction: ActionToggleSpeedBoots + - type: ClothingSpeedModifier + walkModifier: 1.5 + sprintModifier: 1.5 + enabled: false + - type: Appearance + - type: GenericVisualizer + visuals: + enum.ToggleVisuals.Toggled: + enum.ToggleVisuals.Layer: + True: {state: icon-on} + False: {state: icon} + - type: StaticPrice + price: 500 + - type: PowerCellDraw + drawRate: 4 + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + - type: Tag + tags: [] + +- type: entity + id: ActionToggleSpeedBoots + name: Toggle Speed Boots + description: Toggles the speed boots on and off. + noSpawn: true + components: + - type: InstantAction + itemIconStyle: NoItem + event: !type:ToggleClothingSpeedEvent + icon: { sprite: Clothing/Shoes/Boots/speedboots.rsi, state: icon } + iconOn: { sprite: Clothing/Shoes/Boots/speedboots.rsi, state: icon-on } diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml index 7b864e806e..b440fac084 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml @@ -28,6 +28,26 @@ - ClownShoes - WhitelistChameleon +- type: entity + parent: ClothingShoesClown + id: ClothingShoesClownBanana + name: banana clown shoes + description: "When humor and footwear combine into new levels of absurdity." + components: + - type: Sprite + sprite: Clothing/Shoes/Specific/clown_banana.rsi + - type: Clothing + sprite: Clothing/Shoes/Specific/clown_banana.rsi + - type: FootstepModifier + footstepSoundCollection: + collection: FootstepSlip + - type: Construction + graph: BananaClownShoes + node: shoes + - type: Skates + minimumSpeed: 20 + acceleration: 5 + - type: entity parent: ClothingShoesBaseButcherable id: ClothingShoesBling @@ -47,6 +67,7 @@ energy: 2 color: "#FFD800" netsync: false + - type: entity parent: ClothingShoesBaseButcherable id: ClothingShoesCult @@ -186,3 +207,28 @@ - type: ClothingSpeedModifier walkModifier: 0.85 sprintModifier: 0.8 + +- type: entity + parent: ClothingShoesBaseButcherable + id: ClothingShoesSkates + name: roller skates + description: "Get your skates on!" + components: + - type: Sprite + sprite: Clothing/Shoes/Specific/skates.rsi + - type: Clothing + sprite: Clothing/Shoes/Specific/skates.rsi + clothingVisuals: + shoes: + - state: equipped-FEET + offset: "0, -0.04" + - type: Item + size: 10 + sprite: Clothing/Shoes/Specific/skates.rsi + - type: ClothingSpeedModifier + walkModifier: 1.1 + sprintModifier: 1.1 + - type: Skates + - type: FootstepModifier + footstepSoundCollection: + collection: FootstepSkates diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml index 582f0848f7..9a8c1c2a5c 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml @@ -49,9 +49,9 @@ description: A yellow turtleneck designed specifically for work in conditions of the engineering department. components: - type: Sprite - sprite: Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi + sprite: Clothing/Uniforms/Jumpskirt/ce_turtle.rsi - type: Clothing - sprite: Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi + sprite: Clothing/Uniforms/Jumpskirt/ce_turtle.rsi - type: entity parent: ClothingUniformSkirtBase diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml index d08ac7eeb0..1eb0761cc5 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml @@ -108,9 +108,9 @@ description: A yellow turtleneck designed specifically for work in conditions of the engineering department. components: - type: Sprite - sprite: Clothing/Uniforms/Jumpsuit/ceturtle.rsi + sprite: Clothing/Uniforms/Jumpsuit/ce_turtle.rsi - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/ceturtle.rsi + sprite: Clothing/Uniforms/Jumpsuit/ce_turtle.rsi - type: entity parent: ClothingUniformBase @@ -123,6 +123,17 @@ - type: Clothing sprite: Clothing/Uniforms/Jumpsuit/chaplain.rsi +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitCentcomAgent + name: CentCom agent's jumpsuit + description: A suit worn by CentCom's legal team. Smells of burnt coffee. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/centcom_agent.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/centcom_agent.rsi + - type: entity parent: ClothingUniformBase id: ClothingUniformJumpsuitCentcomOfficial @@ -200,6 +211,27 @@ - type: Clothing sprite: Clothing/Uniforms/Jumpsuit/clown.rsi femaleMask: UniformTop + - type: Tag + tags: + - ClownSuit + +- type: entity + parent: ClothingUniformJumpsuitClown + id: ClothingUniformJumpsuitClownBanana + name: banana clown suit + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/clown_banana.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/clown_banana.rsi + femaleMask: UniformTop + - type: Construction + graph: BananaClownJumpsuit + node: jumpsuit + - type: Armor + modifiers: + coefficients: + Radiation: 0.8 - type: entity parent: ClothingUniformBase @@ -1405,3 +1437,14 @@ - state: equipped-INNERCLOTHING-jumpsuit - state: equipped-INNERCLOTHING-shirt color: "#b30000" + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitFamilyGuy + name: familiar garbs + description: Makes you remember the time you did something funny. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/familiar_garbs.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/familiar_garbs.rsi \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Clothing/base_clothing.yml b/Resources/Prototypes/Entities/Clothing/base_clothing.yml index 60a94fe291..a4de5d453f 100644 --- a/Resources/Prototypes/Entities/Clothing/base_clothing.yml +++ b/Resources/Prototypes/Entities/Clothing/base_clothing.yml @@ -16,3 +16,27 @@ components: - type: Geiger attachedToSuit: true + +# for clothing that has a single item slot to insert and alt click out. +# inheritors add a whitelisted slot named item +- type: entity + abstract: true + id: ClothingSlotBase + components: + - type: ItemSlots + - type: ContainerContainer + containers: + item: !type:ContainerSlot + +# a piece of clothing that has explosion resistance *for its contents*, not the wearer +- type: entity + abstract: true + id: ContentsExplosionResistanceBase + components: + - type: ExplosionResistance + worn: false # only apply to the clothing itself and items inside, not the wearer + examine: explosion-resistance-contents-coefficient-value + # to show explosion resistance examine + - type: GroupExamine + - type: Armor + modifiers: {} diff --git a/Resources/Prototypes/Entities/Effects/acidifer.yml b/Resources/Prototypes/Entities/Effects/acidifer.yml new file mode 100644 index 0000000000..bc2fc3c4c3 --- /dev/null +++ b/Resources/Prototypes/Entities/Effects/acidifer.yml @@ -0,0 +1,26 @@ +- type: entity + id: Acidifier + name: acid + description: Melts you into a puddle of yuck! + components: + - type: Transform + anchored: True + - type: InteractionOutline + - type: Physics + bodyType: Static + - type: Sprite + sprite: /Textures/Effects/acidifier.rsi + state: acid + - type: Fixtures + fixtures: + portalFixture: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.48,0.25,0.48" + mask: + - FullTileMask + layer: + - WallLayer + hard: false + - type: TimedDespawn + lifetime: 2.4 diff --git a/Resources/Prototypes/Entities/Effects/puddle.yml b/Resources/Prototypes/Entities/Effects/puddle.yml index 090533acb8..2ddde99ebb 100644 --- a/Resources/Prototypes/Entities/Effects/puddle.yml +++ b/Resources/Prototypes/Entities/Effects/puddle.yml @@ -11,10 +11,12 @@ - type: entity id: PuddleSmear parent: PuddleTemporary + suffix: Smear - type: entity id: PuddleVomit parent: PuddleTemporary + suffix: Vomit components: - type: SolutionContainerManager solutions: @@ -29,6 +31,7 @@ - type: entity id: PuddleEgg parent: PuddleTemporary + suffix: Egg components: - type: SolutionContainerManager solutions: @@ -41,6 +44,7 @@ - type: entity id: PuddleTomato parent: PuddleTemporary + suffix: Tomato components: - type: SolutionContainerManager solutions: @@ -55,6 +59,7 @@ - type: entity id: PuddleWatermelon parent: PuddleTemporary + suffix: Watermelon components: - type: SolutionContainerManager solutions: @@ -69,6 +74,7 @@ - type: entity id: PuddleFlour parent: PuddleTemporary + suffix: Flour components: - type: SolutionContainerManager solutions: @@ -156,3 +162,4 @@ - type: ExaminableSolution solution: puddle - type: BadDrink + - type: IgnoresFingerprints \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Effects/rcd.yml b/Resources/Prototypes/Entities/Effects/rcd.yml new file mode 100644 index 0000000000..adc6aa593c --- /dev/null +++ b/Resources/Prototypes/Entities/Effects/rcd.yml @@ -0,0 +1,16 @@ +- type: entity + id: EffectRCDConstruction + noSpawn: true + components: + - type: Transform + anchored: True + - type: Sprite + drawdepth: Effects + sprite: /Textures/Effects/rcd.rsi + state: construct + - type: TimedDespawn + lifetime: 3.2 + - type: Tag + tags: + - HideContextMenu + - type: AnimationPlayer diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Conditional/timed.yml b/Resources/Prototypes/Entities/Markers/Spawners/Conditional/timed.yml index fe5ee0544e..26d4e3f1d2 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Conditional/timed.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Conditional/timed.yml @@ -65,3 +65,17 @@ minimumEntitiesSpawned: 1 maximumEntitiesSpawned: 1 +- type: entity + name: Cockroach Timed Spawner + id: CockroachTimedSpawner + parent: MouseTimedSpawner + components: + - type: Sprite + layers: + - state: blue + - sprite: Mobs/Animals/cockroach.rsi + state: cockroach_icon + - state: timed + - type: TimedSpawner + prototypes: + - MobCockroach diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_bottles.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_bottles.yml index 819320a80f..8db39e4cc9 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_bottles.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_bottles.yml @@ -31,6 +31,7 @@ - DrinkWineBottleFull - DrinkBeerBottleFull - DrinkAleBottleFull + - DrinkChampagneBottleFull chance: 0.8 offset: 0.0 #rare diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_glass.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_glass.yml index 236d36fc88..deaf9cd49d 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_glass.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_glass.yml @@ -91,6 +91,8 @@ - DrinkWineGlass - DrinkShakeBlue - DrinkShakeWhite + - DrinkTheMartinez + - DrinkMoonshineGlass chance: 0.8 offset: 0.0 #rare diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_soda.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_soda.yml new file mode 100644 index 0000000000..751fc08554 --- /dev/null +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_soda.yml @@ -0,0 +1,47 @@ +- type: entity + id: RandomDrinkSoda + name: random soda spawner + parent: MarkerBase + placement: + mode: AlignTileAny + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Consumable/Drinks/dr_gibb.rsi + state: icon + - type: RandomSpawner + prototypes: + - DrinkColaBottleFull + - DrinkSpaceMountainWindBottleFull + - DrinkSpaceUpBottleFull + - DrinkWaterBottleFull + - DrinkColaCan + - DrinkIcedTeaCan + - DrinkLemonLimeCan + - DrinkGrapeCan + - DrinkRootBeerCan + - DrinkSodaWaterCan + - DrinkSpaceMountainWindCan + - DrinkSpaceUpCan + - DrinkStarkistCan + - DrinkTonicWaterCan + - DrinkFourteenLokoCan + - DrinkChangelingStingCan + - DrinkDrGibbCan + - DrinkEnergyDrinkCan + - DrinkShamblersJuiceCan + - DrinkPwrGameCan + - DrinkHotCoco + - DrinkHotCoffee + - DrinkCafeLatte + - DrinkTeacup + - DrinkGreenTea + - DrinkWaterCup + chance: 0.8 + offset: 0.0 + #rare + rarePrototypes: + - DrinkNukieCan + - DrinkLean + rareChance: 0.01 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_baked_single.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_baked_single.yml index 24a2cef61f..99093b2557 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_baked_single.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_baked_single.yml @@ -25,6 +25,9 @@ - FoodBreadJellySlice - FoodBreadFrenchToast - FoodBreadTwoSlice + - FoodBreadVolcanicSlice + - FoodBreadTofuSlice + - FoodBreadBaguetteSlice - FoodCakeBlueberrySlice - FoodCakePlainSlice - FoodCakeCarrotSlice @@ -70,6 +73,8 @@ - FoodTartGrape - FoodTartCoco - FoodBakedBrownie + - FoodPieBananaCreamSlice + - FoodTartMimeSlice chance: 0.8 offset: 0.0 #rare diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_meal.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_meal.yml index 53b7cadadf..fd4b98fcc3 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_meal.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_meal.yml @@ -36,6 +36,9 @@ - FoodNoodlesChowmein - FoodNoodlesSpesslaw - FoodNoodlesMeatball + - FoodNoodlesBoiled + - FoodNoodles + - FoodNoodlesButter - FoodMealHappyHonkClown - FoodSoupPea - FoodSaladHerb @@ -46,6 +49,7 @@ - FoodSaladCaesar - FoodSaladColeslaw - FoodSaladKimchi + - FoodSaladWatermelonFruitBowl - FoodRiceBoiled - FoodRiceEgg - FoodRicePork @@ -61,6 +65,7 @@ - FoodSoupMiso - FoodSoupMushroom - FoodSoupBeet + - FoodSoupBeetRed - FoodSoupPotato - FoodSoupOnion - FoodSoupBisque @@ -89,6 +94,9 @@ - FoodMothFleetSalad # Nyanotrasen - Moth Recipes - FoodMothCottonSalad # Nyanotrasen - Moth Recipes - FoodMothKachumbariSalad # Nyanotrasen - Moth Recipes + - FoodMealSoftTaco + - FoodMealCornInButter + - FoodSoupStew chance: 0.8 offset: 0.0 #rare @@ -112,4 +120,5 @@ - FoodSoupEyeball - FoodSoupElectron - FoodMothBakedCheesePlatter # Nyanotrasen - Moth Recipes + - FoodNoodlesCopy rareChance: 0.05 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 new file mode 100644 index 0000000000..6edf341e10 --- /dev/null +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_produce.yml @@ -0,0 +1,62 @@ +- type: entity + id: RandomProduce + name: random produce spawner + parent: MarkerBase + placement: + mode: AlignTileAny + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Specific/Hydroponics/onion_red.rsi + state: produce + - type: RandomSpawner + prototypes: + - WheatBushel + - OatBushel + - Sugarcane + - Nettle + - FoodBanana + - FoodCarrot + - FoodCabbage + - FoodGarlic + - FoodLemon + - FoodLime + - FoodOrange + - FoodPineapple + - FoodPotato + - FoodTomato + - FoodEggplant + - FoodApple + - FoodCocoaPod + - FoodCorn + - FoodOnion + - FoodOnionRed + - FoodMushroom + - FoodChili + - FoodChilly + - FoodAloe + - FoodPoppy + - FoodLingzhi + - FoodAmbrosiaVulgaris + - RiceBushel + - FoodSoybeans + - FoodKoibean + - FoodWatermelon + - FoodGrape + - FoodBerries + - FoodBungo + - FoodPeaPod + - FoodPumpkin + - CottonBol + chance: 0.8 + offset: 0.0 + #rare + rarePrototypes: + - FoodBlueTomato + - FoodBloodTomato + - FoodAmbrosiaDeus + - FoodGalaxythistle + - FoodFlyAmanita + - DeathNettle + rareChance: 0.01 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_single.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_single.yml index 026f0a3e12..4453d865ae 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_single.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_single.yml @@ -52,6 +52,15 @@ - FoodMothPizzaFiveCheeseSlice # Nyanotrasen - Moth Recipes - FoodMothPizzaPestoSlice # Nyanotrasen - Moth Recipes - FoodMothPizzaCottonSlice # Nyanotrasen - Moth Recipes + - FoodBakedDumplings + - FoodBakedChevreChaud + - FoodBakedNugget + - FoodTacoBeef + - FoodTacoChicken + - FoodTacoFish + - FoodTacoBeefSupreme + - FoodTacoChickenSupreme + - FoodMealGrilledCheese # Delta V chance: 0.8 offset: 0.0 #rare @@ -74,4 +83,5 @@ - FoodMeatRatdoubleKebab - FoodPizzaArnoldSlice - FoodPizzaCorncobSlice # Nyanotrasen - Corncob Pizza + - FoodTacoRat rareChance: 0.05 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_snacks.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_snacks.yml index d184e8ea0c..f14f6f1349 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_snacks.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_snacks.yml @@ -14,29 +14,6 @@ - type: RandomSpawner #small item prototypes: - - DrinkColaBottleFull - - DrinkSpaceMountainWindBottleFull - - DrinkSpaceUpBottleFull - - DrinkWaterBottleFull - - DrinkColaCan - - DrinkIcedTeaCan - - DrinkLemonLimeCan - - DrinkGrapeCan - - DrinkRootBeerCan - - DrinkSodaWaterCan - - DrinkSpaceMountainWindCan - - DrinkSpaceUpCan - - DrinkStarkistCan - - DrinkTonicWaterCan - - DrinkFourteenLokoCan - - DrinkChangelingStingCan - - DrinkDrGibbCan - - DrinkEnergyDrinkCan - - DrinkHotCoco - - DrinkHotCoffee - - DrinkTeacup - - DrinkLean - - DrinkWaterCup - FoodSnackBoritos - FoodSnackCheesie - FoodSnackChips @@ -52,5 +29,24 @@ - FoodSnackCookieFortune - FoodSnackNutribrick - FoodSnackMREBrownie + - FoodFrozenSandwich + - FoodFrozenSandwichStrawberry + - FoodFrozenFreezy + - FoodFrozenSundae + - FoodFrozenCornuto + - FoodFrozenPopsicleOrange + - FoodFrozenPopsicleBerry + - FoodFrozenPopsicleJumbo + - FoodFrozenSnowcone + - FoodFrozenSnowconeBerry + - FoodFrozenSnowconeFruit + - FoodFrozenSnowconeClown + - FoodFrozenSnowconeMime + - FoodFrozenSnowconeRainbow + - FoodSnackPistachios + - FoodSnackSemki + - FoodPSB # Delta V + - FoodLollipop # Delta V + - FoodGumball # Delta V chance: 0.8 offset: 0.0 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/anomaly.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/anomaly.yml index 043bf707b4..3b5d33ee06 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/anomaly.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/anomaly.yml @@ -19,3 +19,4 @@ - AnomalyRock - AnomalyLiquid chance: 1 + offset: 0.15 # not to put it higher. The anomaly sychnronizer looks for anomalies within this radius, and if the radius is higher, the anomaly can be attracted from a neighboring tile. diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/asteroidcrab.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/asteroidcrab.yml index 07820e91cd..190ee079e4 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/asteroidcrab.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/asteroidcrab.yml @@ -6,8 +6,8 @@ - type: Sprite layers: - state: red - - sprite: Structures/Decoration/crystal.rsi - state: crystal_cyan + - sprite: Structures/Walls/rock.rsi + state: rock_asteroid_ore - type: RandomSpawner prototypes: - AsteroidRockCrab diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/crystal.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/crystal.yml index c90f2d0bf6..84adf28e2d 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/crystal.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/crystal.yml @@ -8,7 +8,7 @@ layers: - state: red - sprite: Structures/Decoration/crystal.rsi - state: crystal_cyan + state: crystal_grey - type: RandomSpawner prototypes: - CrystalGreen @@ -16,4 +16,5 @@ - CrystalOrange - CrystalBlue - CrystalCyan + - CrystalGrey chance: 0.7 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml index 4938b6cf98..3a51c92835 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml @@ -11,6 +11,7 @@ state: icon-super - type: RandomSpawner rarePrototypes: + - ClothingUniformJumpsuitFamilyGuy - CigarGold - ClothingNeckCloakHerald - ClothingHeadHelmetTemplar @@ -18,6 +19,7 @@ - ClothingNeckCloakAdmin - ClothingNeckCloakBoat # DeltaV - adds boat cloak to maints spawner. Makes more sense than admin cloak o.o - ClothingNeckCloakMoth + - ClothingNeckCloakVoid - ClothingNeckCloakGoliathCloak - ToySkeleton - Basketball @@ -96,6 +98,7 @@ - ClothingNeckTieRed - ClothingOuterCoatGentle - ClothingOuterCoatJensen + - ClothingEyesGlassesJensen - ClothingOuterCoatLab - ClothingOuterCoatPirate - ClothingOuterHoodieBlack @@ -105,6 +108,7 @@ - ClothingOuterFlannelGreen - ClothingOuterVestHazard - ClothingShoesBootsJack + - ClothingShoesHighheelBoots - ClothingShoesBootsLaceup - ClothingShoesLeather - ClothingShoesBootsSalvage @@ -140,7 +144,9 @@ - YellowOxygenTankFilled - DoubleEmergencyOxygenTankFilled - ToolboxEmergencyFilled + - ToolboxArtisticFilled - NitrogenTankFilled + - DoubleEmergencyNitrogenTankFilled - ToolboxElectricalFilled - ToolboxMechanicalFilled - ClothingBeltUtility @@ -184,6 +190,7 @@ - CableHVStack10 - CableMVStack10 - CableApcStack10 + - PetCarrier chance: 0.6 offset: 0.0 @@ -212,6 +219,8 @@ - FlashlightLantern - YellowOxygenTankFilled - DoubleEmergencyOxygenTankFilled + - NitrogenTankFilled + - DoubleEmergencyNitrogenTankFilled - Lighter - Matchbox - Crowbar diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/pottedplants.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/pottedplants.yml index 36b646a3e3..a61af1467b 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/pottedplants.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/pottedplants.yml @@ -35,6 +35,7 @@ - PottedPlant22 - PottedPlant23 - PottedPlant24 + - PottedPlant26 chance: 1 - type: entity @@ -46,12 +47,12 @@ layers: - state: red - sprite: Structures/Furniture/potted_plants.rsi - state: plant-26 + state: plant-27 - type: RandomSpawner offset: 0 prototypes: - - PottedPlant26 - PottedPlant27 - PottedPlant28 - PottedPlant29 + - PottedPlant30 chance: 1 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/salvage.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/salvage.yml index a933a7ecbb..71f09021ce 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/salvage.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/salvage.yml @@ -147,6 +147,9 @@ - sprite: Mobs/Aliens/Carps/space.rsi state: icon - type: RandomSpawner + rarePrototypes: + - MobSharkSalvage + rareChance: 0.2 prototypes: - MobCarpSalvage - MobCarpSalvage @@ -196,6 +199,9 @@ suffix: 75 components: - type: RandomSpawner + rarePrototypes: + - MobSharkSalvage + rareChance: 0.2 prototypes: - MobCarpSalvage - MobCarpSalvage @@ -232,6 +238,22 @@ - type: Sprite layers: - state: green + - state: spacespider + sprite: Mobs/Animals/spacespider.rsi - type: ConditionalSpawner prototypes: - MobSpiderSpaceSalvage + +- type: entity + name: Salvage Space Cobra Spawner + id: SpawnMobCobraSalvage + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - state: spacecobra + sprite: Mobs/Animals/spacecobra.rsi + - type: ConditionalSpawner + prototypes: + - MobCobraSpaceSalvage diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/soap.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/soap.yml index e06a2108d8..d3283522b2 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/soap.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/soap.yml @@ -7,7 +7,7 @@ layers: - state: red - sprite: Objects/Specific/Janitorial/soap.rsi - state: soap + state: soap-4 - type: RandomSpawner prototypes: - Soap diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/techboard.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/techboard.yml new file mode 100644 index 0000000000..76527cdf5a --- /dev/null +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/techboard.yml @@ -0,0 +1,44 @@ +- type: entity + id: RandomBoard + name: random board spawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: red + - sprite: Objects/Misc/module.rsi + state: boris + - type: RandomSpawner + prototypes: + - AirAlarmElectronics + - FireAlarmElectronics + - DoorElectronics + - FirelockElectronics + - IntercomElectronics + - APCElectronics + - SignalTimerElectronics + - APECircuitboard + - SMESMachineCircuitboard + - SubstationMachineCircuitboard + - TelecomServerCircuitboard + - PortableGeneratorPacmanMachineCircuitboard # Delta V - Add additional boards + - CellRechargerCircuitboard # Delta V - Add additional boards + - BorgChargerCircuitboard # Delta V - Add additional boards + - WeaponCapacitorRechargerCircuitboard # Delta V - Add additional boards + - StationMapCircuitboard # Delta V - Add additional boards + - DeepFryerMachineCircuitboard # Delta V - Add additional boards + chance: 0.95 + rarePrototypes: + - CommsComputerCircuitboard + #- ShuttleConsoleCircuitboard # Delta V - Remove shuttle boards + - ComputerMassMediaCircuitboard + - AutolatheMachineCircuitboard + - ProtolatheMachineCircuitboard + - SalvageMagnetMachineCircuitboard + - PortableGeneratorSuperPacmanMachineCircuitboard # Delta V - Add additional boards + - PortableGeneratorJrPacmanMachineCircuitboard # Delta V - Add additional boards + - MedicalTechFabCircuitboard # Delta V - Add additional boards + - ResearchAndDevelopmentServerMachineCircuitboard # Delta V - Add additional boards + - UniformPrinterMachineCircuitboard # Delta V - Add additional boards + - ArtifactAnalyzerMachineCircuitboard # Delta V - Add additional boards + rareChance: 0.05 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/toy.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/toy.yml index a5c170bd80..da76abb9f6 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/toy.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/toy.yml @@ -137,5 +137,6 @@ - ToyFigurineRatServant - ToyFigurineMouse - ToyFigurineHamlet + - ToyFigurineThief chance: 0.90 offset: 0.2 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/trash.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/trash.yml index 4806755a11..d19164e4fa 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/trash.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/trash.yml @@ -32,6 +32,7 @@ - FoodPacketSemkiTrash - FoodPacketSusTrash - FoodPacketSyndiTrash + - BrokenBottle chance: 0.5 offset: 0.2 placement: diff --git a/Resources/Prototypes/Entities/Markers/Spawners/corpses.yml b/Resources/Prototypes/Entities/Markers/Spawners/corpses.yml index 4fb7ef0eaf..3d337b3976 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/corpses.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/corpses.yml @@ -80,6 +80,7 @@ name: Random Security Corpse Spawner id: RandomSecurityCorpseSpawner parent: SalvageHumanCorpseSpawner + noSpawn: true # DeltaV - Prevent security corpses from being mapped in components: - type: Sprite layers: @@ -87,7 +88,7 @@ - state: green - type: ConditionalSpawner prototypes: - - MobRandomSecurityCorpse + - MobRandomServiceCorpse # DeltaV - Prevent Security corpses from spawning and instead spawn Service corpses - type: entity name: Random Command Corpse Spawner diff --git a/Resources/Prototypes/Entities/Markers/Spawners/mobs.yml b/Resources/Prototypes/Entities/Markers/Spawners/mobs.yml index 3bc1b637ff..eecf395bb1 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/mobs.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/mobs.yml @@ -17,6 +17,21 @@ - MobMouse1 - MobMouse2 +- type: entity + name: Cockroach Spawner + id: SpawnMobCockroach + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Mobs/Animals/cockroach.rsi + state: cockroach_icon + - state: ai + - type: ConditionalSpawner + prototypes: + - MobCockroach + - type: entity name: HoP Corgi Spawner id: SpawnMobCorgi @@ -31,6 +46,7 @@ - MobCorgiIan - MobCorgiIanOld - MobCorgiLisa + - MobCorgiIanPup - type: entity name: Possum Morty Spawner @@ -123,7 +139,7 @@ - type: ConditionalSpawner prototypes: - MobCatFloppa - + - type: entity name: Bingus Spawner id: SpawnMobCatBingus @@ -149,6 +165,19 @@ - type: ConditionalSpawner prototypes: - MobCatSpace + +- type: entity + name: Kitten Spawner + id: SpawnMobCatKitten + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobCatKitten - type: entity name: Cat Spawner @@ -180,6 +209,7 @@ - MobCat - MobCatCalico - MobCatCaracal + - MobCatKitten rarePrototypes: - MobCatSpace rareChance: 0.05 @@ -292,6 +322,20 @@ prototypes: - MobCarpHolo +- type: entity + name: Space Sharkminnow Spawner + id: SpawnMobShark + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - state: icon + sprite: Mobs/Aliens/Carps/sharkminnow.rsi + - type: ConditionalSpawner + prototypes: + - MobShark + - type: entity name: Hamster Hamlet Spawner id: SpawnMobHamsterHamlet @@ -328,7 +372,8 @@ - type: Sprite layers: - state: green - - state: ai + - state: shiva + sprite: Mobs/Pets/shiva.rsi - type: ConditionalSpawner prototypes: - MobSpiderShiva @@ -383,11 +428,26 @@ - type: Sprite layers: - state: green - - state: ai + - state: spacespider + sprite: Mobs/Animals/spacespider.rsi - type: ConditionalSpawner prototypes: - MobSpiderSpace +- type: entity + name: Space Cobra Spawner + id: SpawnMobSpaceCobra + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - state: spacecobra + sprite: Mobs/Animals/spacecobra.rsi + - type: ConditionalSpawner + prototypes: + - MobCobraSpace + - type: entity name: Slimes Spawner Blue id: SpawnMobAdultSlimesBlue @@ -714,10 +774,53 @@ - type: Sprite layers: - state: green - - state: quartzcrab + - state: quartz_crab sprite: Mobs/Elemental/orecrab.rsi - type: RandomSpawner prototypes: - MobUraniumCrab - MobIronCrab - MobQuartzCrab + - MobSilverCrab + +- type: entity + name: luminous person spawner + id: SpawnMobLuminousPerson + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - state: luminous_person + sprite: Mobs/Elemental/living_light/luminous_person.rsi + - type: ConditionalSpawner + prototypes: + - MobLuminousPerson + +- type: entity + name: luminous object spawner + id: SpawnMobLuminousObject + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - state: luminous_object + sprite: Mobs/Elemental/living_light/luminous_object.rsi + - type: ConditionalSpawner + prototypes: + - MobLuminousObject + +- type: entity + name: luminous entity spawner + id: SpawnMobLuminousEntity + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - state: luminous_entity + sprite: Mobs/Elemental/living_light/luminous_entity.rsi + - type: ConditionalSpawner + prototypes: + - MobLuminousEntity diff --git a/Resources/Prototypes/Entities/Markers/Spawners/vehicles.yml b/Resources/Prototypes/Entities/Markers/Spawners/vehicles.yml index f5538f20b4..ee73528920 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/vehicles.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/vehicles.yml @@ -53,3 +53,31 @@ - type: ConditionalSpawner prototypes: - VehicleSkeletonMotorcycle + +- type: entity + name: Wheelchair Spawner + id: SpawnVehicleWheelchair + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Vehicles/wheelchair.rsi + state: vehicle + - type: ConditionalSpawner + prototypes: + - VehicleWheelchair + +- type: entity + name: Wheelchair [Folded] Spawner + id: SpawnVehicleWheelchairFolded + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Vehicles/wheelchair.rsi + state: vehicle_folded + - type: ConditionalSpawner + prototypes: + - VehicleWheelchairFolded \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Mobs/Corpses/corpses.yml b/Resources/Prototypes/Entities/Mobs/Corpses/corpses.yml index 8c245be89f..89ab3376c6 100644 --- a/Resources/Prototypes/Entities/Mobs/Corpses/corpses.yml +++ b/Resources/Prototypes/Entities/Mobs/Corpses/corpses.yml @@ -68,6 +68,7 @@ parent: SalvageHumanCorpse id: MobRandomSecurityCorpse suffix: Dead, Security + noSpawn: true # DeltaV - Prevent security corpses from being mapped in components: - type: Loadout prototypes: @@ -75,8 +76,6 @@ - SecurityOfficerGear - DetectiveGear - WardenGear - - PrisonGuardGear # Nyanotrasen - PrisonGuard, see Resources/Prototypes/Nyanotrasen/Roles/Jobs/Security/prisonguard.yml - - CorpsmanGear # DeltaV - Corpsman, see Resources/Prototypes/DeltaV/Roles/Jobs/Security/brigmedic.yml - type: entity parent: SalvageHumanCorpse diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/gauze.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/gauze.yml new file mode 100644 index 0000000000..c674a05d2e --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/gauze.yml @@ -0,0 +1,295 @@ +- type: marking + id: GauzeLefteyePatch + bodyPart: Eyes + markingCategory: Head + speciesRestriction: [Moth, Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Harpy, Vulpkanin] # Delta V - Felinid, Oni, Harpy, Vulpkanin + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_lefteye_2 + +- type: marking + id: GauzeLefteyeTape + bodyPart: Eyes + markingCategory: Head + speciesRestriction: [Moth, Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Harpy, Vulpkanin] # Delta V - Felinid, Oni, Harpy, Vulpkanin + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_lefteye_1 + +- type: marking + id: GauzeRighteyePatch + bodyPart: Eyes + markingCategory: Head + speciesRestriction: [Moth, Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Harpy, Vulpkanin] # Delta V - Felinid, Oni, Harpy, Vulpkanin + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_righteye_2 + +- type: marking + id: GauzeRighteyeTape + bodyPart: Eyes + markingCategory: Head + speciesRestriction: [Moth, Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Harpy, Vulpkanin] # Delta V - Felinid, Oni, Harpy, Vulpkanin + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_righteye_1 + +- type: marking + id: GauzeBlindfold + bodyPart: Eyes + markingCategory: Head + speciesRestriction: [Moth, Dwarf, Human, Arachnid] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_blindfold + +- type: marking + id: GauzeShoulder + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Moth, Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Harpy, Vulpkanin] # Delta V - Felinid, Oni, Harpy, Vulpkanin + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_shoulder + +- type: marking + id: GauzeStomach + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Moth, Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Harpy, Vulpkanin] # Delta V - Felinid, Oni, Harpy, Vulpkanin + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_abdomen + +- type: marking + id: GauzeUpperArmRight + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Moth, Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_upperarm_r + +- type: marking + id: GauzeLowerArmRight + bodyPart: RArm, RHand + markingCategory: Arms + speciesRestriction: [Moth, Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_lowerarm_r + +- type: marking + id: GauzeLeftArm + bodyPart: LArm, LHand + markingCategory: Arms + speciesRestriction: [Moth, Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_leftarm + +- type: marking + id: GauzeLowerLegLeft + bodyPart: LFoot + markingCategory: Legs + speciesRestriction: [Moth, Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_lowerleg_l + +- type: marking + id: GauzeUpperLegLeft + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Moth, Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_upperleg_l + +- type: marking + id: GauzeUpperLegRight + bodyPart: RLeg + markingCategory: Legs + speciesRestriction: [Moth, Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_upperleg_r + +- type: marking + id: GauzeLowerLegRight + bodyPart: RFoot + markingCategory: Legs + speciesRestriction: [Moth, Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_lowerleg_r + +- type: marking + id: GauzeBoxerWrapRight + bodyPart: RHand + markingCategory: Arms + speciesRestriction: [Moth, Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Harpy, Vulpkanin] # Delta V - Felinid, Oni, Harpy, Vulpkanin + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_boxerwrap_r + +- type: marking + id: GauzeBoxerWrapLeft + bodyPart: LHand + markingCategory: Arms + speciesRestriction: [Moth, Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Harpy, Vulpkanin] # Delta V - Felinid, Oni, Harpy, Vulpkanin + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_boxerwrap_l + +# Lizard Specific Markings +- type: marking + id: GauzeLizardLefteyePatch + bodyPart: Eyes + markingCategory: Head + speciesRestriction: [Reptilian] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_lizardlefteye + +- type: marking + id: GauzeLizardRighteyePatch + bodyPart: Eyes + markingCategory: Head + speciesRestriction: [Reptilian] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_lizardrighteye + +- type: marking + id: GauzeLizardFootRight + bodyPart: RFoot + markingCategory: Legs + speciesRestriction: [Reptilian] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_lizardfoot_r + +- type: marking + id: GauzeLizardFootLeft + bodyPart: LFoot + markingCategory: Legs + speciesRestriction: [Reptilian] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_lizardfoot_l + +- type: marking + id: GauzeLizardBlindfold + bodyPart: Eyes + markingCategory: Head + speciesRestriction: [Reptilian] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_lizardblindfold + diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml index 14e51a8406..f6c04ada3c 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml @@ -285,6 +285,13 @@ sprites: - sprite: Mobs/Customization/human_hair.rsi state: classicbigafro +- type: marking + id: HumanHairClassicBusiness + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: classicbusiness - type: marking id: HumanHairClassicCia bodyPart: Hair @@ -292,6 +299,13 @@ sprites: - sprite: Mobs/Customization/human_hair.rsi state: classiccia +- type: marking + id: HumanHairClassicCornrows2 + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: classiccornrows2 - type: marking id: HumanHairClassicFloorlengthBedhead bodyPart: Hair @@ -1279,3 +1293,10 @@ sprites: - sprite: Mobs/Customization/human_hair.rsi state: wisp +- type: marking + id: HumanHairUneven + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: uneven diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/reptilian.yml index a5a8a7c548..ed5e545ac8 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/reptilian.yml @@ -280,3 +280,12 @@ sprites: - sprite: Mobs/Customization/reptilian_parts.rsi state: horns_floppy_kobold_ears + +- type: marking + id: LizardChestUnderbelly + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Reptilian] + sprites: + - sprite: Mobs/Customization/reptilian_parts.rsi + state: body_underbelly diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/scars.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/scars.yml new file mode 100644 index 0000000000..2468b2c534 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/scars.yml @@ -0,0 +1,49 @@ +- type: marking + id: ScarEyeRight + bodyPart: Head + markingCategory: Head + speciesRestriction: [Human, Dwarf, Felinid, Oni] # Delta V - Felinid, Oni + coloring: + default: + type: + !type:TattooColoring + fallbackColor: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/scars.rsi + state: scar_eye_right + +- type: marking + id: ScarEyeLeft + bodyPart: Head + markingCategory: Head + speciesRestriction: [Human, Dwarf, Felinid, Oni] # Delta V - Felinid, Oni + coloring: + default: + type: + !type:TattooColoring + fallbackColor: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/scars.rsi + state: scar_eye_left + +- type: marking + id: ScarTopSurgeryShort + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Human] + sexRestriction: [Male] + followSkinColor: true + sprites: + - sprite: Mobs/Customization/scars.rsi + state: scar_top_surgery_short + +- type: marking + id: ScarTopSurgeryLong + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Human] + sexRestriction: [Male] + followSkinColor: true + sprites: + - sprite: Mobs/Customization/scars.rsi + state: scar_top_surgery_long diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml index 69a1925b31..a8b46afe98 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml @@ -1,4 +1,5 @@ - type: entity + parent: BaseMob id: BaseBorgChassis name: cyborg description: A man-machine hybrid that assists in station activity. They love being asked to state their laws over and over. @@ -8,22 +9,16 @@ - type: Reactive groups: Acidic: [Touch] - - type: Input - context: "human" - - type: InputMover - type: DamageOnHighSpeedImpact damage: types: Blunt: 5 soundHit: path: /Audio/Effects/hit_kick.ogg - - type: Clickable - type: CombatMode + - type: NoSlip - type: StaticPrice price: 1250 - - type: InteractionOutline - - type: Physics - bodyType: KinematicController - type: Fixtures fixtures: fix1: @@ -40,18 +35,24 @@ baseSprintSpeed : 4.5 - type: Sprite sprite: Mobs/Silicon/chassis.rsi - noRot: true - drawdepth: Mobs + - type: RotationVisuals + horizontalRotation: 90 - type: MobState allowedStates: - Alive + - Critical + - Dead - type: MobThresholds thresholds: 0: Alive - 100: Dead + 100: Critical + 200: Dead stateAlertDict: Alive: BorgHealth + Critical: BorgCrit + Dead: BorgDead showOverlays: false + allowRevives: true - type: HealthExaminable examinableTypes: - Blunt @@ -66,6 +67,8 @@ type: SiliconLawBoundUserInterface - key: enum.BorgUiKey.Key type: BorgBoundUserInterface + - key: enum.StrippingUiKey.Key + type: StrippableBoundUserInterface - type: ActivatableUI key: enum.BorgUiKey.Key - type: SiliconLawBound @@ -73,16 +76,23 @@ stunTime: 5 emagLaws: SyndicateStatic - type: IonStormTarget + - type: Strippable + - type: InventorySlots + - type: Inventory + templateId: borg - type: Hands showInHands: false - type: IntrinsicRadioReceiver - type: IntrinsicRadioTransmitter channels: - Binary + - Common + - Science - type: ActiveRadio channels: - Binary - Common + - Science - type: ZombieImmune - type: Repairable doAfterDelay: 10 @@ -109,20 +119,18 @@ slots: cell_slot: name: power-cell-slot-component-slot-name-default - - type: DoAfter - - type: Eye - type: Body - type: StatusEffects allowed: - Stun - KnockedDown - SlowedDown - - type: Actions - type: TypingIndicator proto: robot - type: Speech speechVerb: Robotic speechSounds: Pai + - type: UnblockableSpeech - type: Construction graph: Cyborg containers: @@ -130,12 +138,12 @@ - cell_slot - type: Flashable - type: Damageable - damageContainer: Inorganic + damageContainer: Silicon - type: Destructible thresholds: - trigger: !type:DamageTrigger - damage: 50 + damage: 75 behaviors: - !type:PlaySoundBehavior sound: @@ -144,14 +152,16 @@ volume: 5 - trigger: !type:DamageTrigger - damage: 100 + damage: 300 behaviors: - !type:PlaySoundBehavior - sound: /Audio/Effects/metalbreak.ogg + sound: + path: /Audio/Effects/metalbreak.ogg - !type:EmptyContainersBehaviour containers: - borg_brain - borg_module + - cell_slot - !type:DoActsBehavior acts: [ "Destruction" ] - type: HandheldLight @@ -185,14 +195,15 @@ - type: Pullable - type: Puller needsHands: false - - type: Examiner - - type: Appearance - type: StandingState - - type: Alerts - type: Tag tags: - ShoesRequiredStepTriggerImmune - DoorBumpOpener + - type: Emoting + - type: GuideHelp + guides: + - Cyborgs - type: entity id: BaseBorgChassisNT @@ -205,4 +216,10 @@ - type: Access enabled: false groups: - - AllAccess + - AllAccessBorg + - type: Lock + locked: true + - type: ActivatableUIRequiresLock + - type: AccessReader + access: [["Command"], ["Research"]] + - type: ShowSecurityIcons diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml index 548657f137..7a0c00130c 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml @@ -14,7 +14,7 @@ map: ["light"] visible: false - type: BorgChassis - maxModules: 5 + maxModules: 6 moduleWhitelist: tags: - BorgModuleGeneric @@ -42,7 +42,7 @@ map: ["light"] visible: false - type: BorgChassis - maxModules: 3 + maxModules: 4 moduleWhitelist: tags: - BorgModuleGeneric @@ -51,6 +51,22 @@ noMindState: miner_e_r - type: Construction node: mining + - type: IntrinsicRadioTransmitter + channels: + - Supply + - Binary + - Common + - Science + - type: ActiveRadio + channels: + - Supply + - Binary + - Common + - Science + - type: AccessReader + access: [["Cargo"], ["Salvage"], ["Command"], ["Research"]] + - type: Inventory + templateId: borgTall - type: entity id: BorgChassisEngineer @@ -69,7 +85,7 @@ map: ["light"] visible: false - type: BorgChassis - maxModules: 3 + maxModules: 4 moduleWhitelist: tags: - BorgModuleGeneric @@ -78,6 +94,22 @@ noMindState: engineer_e_r - type: Construction node: engineer + - type: IntrinsicRadioTransmitter + channels: + - Engineering + - Binary + - Common + - Science + - type: ActiveRadio + channels: + - Engineering + - Binary + - Common + - Science + - type: AccessReader + access: [["Engineering"], ["Command"], ["Research"]] + - type: Inventory + templateId: borgShort - type: entity id: BorgChassisJanitor @@ -96,7 +128,7 @@ map: ["light"] visible: false - type: BorgChassis - maxModules: 3 + maxModules: 4 moduleWhitelist: tags: - BorgModuleGeneric @@ -105,6 +137,22 @@ noMindState: janitor_e_r - type: Construction node: janitor + - type: IntrinsicRadioTransmitter + channels: + - Service + - Binary + - Common + - Science + - type: ActiveRadio + channels: + - Service + - Binary + - Common + - Science + - type: AccessReader + access: [["Service"], ["Command"], ["Research"]] + - type: Inventory + templateId: borgShort - type: entity id: BorgChassisMedical @@ -123,7 +171,7 @@ map: ["light"] visible: false - type: BorgChassis - maxModules: 3 + maxModules: 4 moduleWhitelist: tags: - BorgModuleGeneric @@ -132,7 +180,27 @@ noMindState: medical_e_r - type: Construction node: medical + - type: IntrinsicRadioTransmitter + channels: + - Medical + - Binary + - Common + - Science + - type: ActiveRadio + channels: + - Medical + - Binary + - Common + - Science + - type: AccessReader + access: [["Medical"], ["Command"], ["Research"]] + - type: ContainerFill + containers: + borg_module: + - BorgModuleTreatment - type: FabricateCandy # Nyanotrasen - The medical cyborg can generate candies filled with medicine. + - type: Inventory + templateId: borgDutch - type: entity id: BorgChassisService @@ -151,7 +219,7 @@ map: ["light"] visible: false - type: BorgChassis - maxModules: 3 + maxModules: 4 moduleWhitelist: tags: - BorgModuleGeneric @@ -160,4 +228,19 @@ noMindState: service_e_r - type: Construction node: service - + - type: IntrinsicRadioTransmitter + channels: + - Service + - Binary + - Common + - Science + - type: ActiveRadio + channels: + - Service + - Binary + - Common + - Science + - type: AccessReader + access: [["Service"], ["Command"], ["Research"]] + - type: Inventory + templateId: borgTall diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 1669da7a57..2034997421 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -107,6 +107,7 @@ - type: Tag tags: - Bee + - Trash - type: Bloodstream bloodMaxVolume: 0.1 - type: MobPrice @@ -131,6 +132,8 @@ reagents: - ReagentId: GroundBee Quantity: 5 + - type: ZombieImmune + - type: entity name: bee @@ -157,6 +160,7 @@ - SimpleHostile - type: Bloodstream bloodMaxVolume: 0.1 + - type: ZombieImmune - type: entity @@ -246,6 +250,213 @@ - type: TimedDespawn #delete the egg after the chicken spawns lifetime: 21 +- type: entity # TODO: figure out how to make these guys gib when stepped on + name: cockroach + parent: SimpleMobBase + id: MobCockroach + description: This station is just crawling with bugs. + components: + - type: Sprite + drawdepth: SmallMobs + sprite: Mobs/Animals/cockroach.rsi + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + state: cockroach + - type: Item + size: 2 + - type: HTN + rootTask: + task: MouseCompound + - type: Physics + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.2 + density: 100 + mask: + - SmallMobMask + layer: + - SmallMobLayer + - type: MobState + - type: MobThresholds + thresholds: + 0: Alive + 1: Dead + - type: MovementSpeedModifier + baseWalkSpeed : 5 + baseSprintSpeed : 5 + - type: DamageStateVisuals + states: + Alive: + Base: cockroach + Dead: + Base: cockroach_dead + - type: Food + - type: Hunger + baseDecayRate: 0.25 + - type: Extractable + grindableSolutionName: food + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: Slime + Quantity: 5 + - type: Butcherable + spawned: + - id: FoodMeatSlime + - type: Damageable + damageContainer: Biological + damageModifierSet: Cockroach + - type: Bloodstream + bloodReagent: Slime + bloodMaxVolume: 20 + - type: Tag + tags: + - Trash + - VimPilot + - type: Destructible + thresholds: + - trigger: + !type:DamageTypeTrigger + damageType: Blunt + damage: 10 + behaviors: + - !type:GibBehavior { } + - type: NonSpreaderZombie + +- type: entity + name: glockroach + parent: MobCockroach + suffix: Admeme + id: MobGlockroach + description: This station is just crawling with bu- OH GOD THAT COCKROACH HAS A GUN!!! + components: + - type: Sprite + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + state: glockroach + - type: Gun + fireRate: 2 + useKey: false + selectedMode: SemiAuto + availableModes: + - SemiAuto + soundGunshot: /Audio/Weapons/Guns/Gunshots/pistol.ogg + - type: BallisticAmmoProvider + proto: CartridgeCaselessRifle + capacity: 500 + - type: CombatMode + - type: HTN + rootTask: + task: GlockroachCompound + - type: NpcFactionMember + factions: + - SimpleHostile + - type: Butcherable + spawned: + - id: FoodMeatSlime + +- type: entity + name: mothroach + parent: MobCockroach + id: MobMothroach + description: This is the adorable by-product of multiple attempts at genetically mixing mothpeople with cockroaches. + components: + - type: GhostRole + makeSentient: true + allowSpeech: true + allowMovement: true + whitelistRequired: false + name: ghost-role-information-mothroach-name + description: ghost-role-information-mothroach-description + - type: GhostTakeoverAvailable + - type: Speech + speechVerb: Moth + speechSounds: Chitter # Delta-V - Eep! + - type: MothAccent + - type: Sprite + sprite: Mobs/Animals/mothroach.rsi + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + state: mothroach + - type: Item + size: 15 + - type: Clothing + quickEquip: false + sprite: Mobs/Animals/mothroach.rsi + equippedPrefix: 0 + slots: + - HEAD + - type: Appearance + - type: DamageStateVisuals + states: + Alive: + Base: mothroach + Critical: + Base: mothroach_dead + Dead: + Base: mothroach_dead + - type: MobThresholds + thresholds: + 0: Alive + 25: Critical + 45: Dead + - type: MovementSpeedModifier + baseWalkSpeed : 2.5 + baseSprintSpeed : 4 + weightlessAcceleration: 1.5 + weightlessFriction: 1 + weightlessModifier: 1 + - type: Damageable + damageContainer: Biological + damageModifierSet: Moth + - type: Respirator + damage: + types: + Asphyxiation: 0.5 + damageRecovery: + types: + Asphyxiation: -0.5 + - type: CombatMode + - type: Butcherable + spawned: + - id: FoodMeatRat + amount: 2 + - id: HideMothroach # Gotta make the plushies + amount: 1 + prob: 0.5 + - type: Extractable + grindableSolutionName: food + - type: ReplacementAccent + accent: mothroach + - type: ZombieAccentOverride + accent: zombieMoth + - type: Vocal + sounds: + Male: UnisexMoth + Female: UnisexMoth + Unsexed: UnisexMoth + wilhelmProbability: 0.001 + - type: MobPrice + price: 150 + - type: Tag + tags: + - Trash + - CannotSuicide + - DoorBumpOpener # DeltaV - After all, why not? Why shouldn't they be able to open doors? + - VimPilot + - type: CanEscapeInventory + - type: NpcFactionMember + factions: + - Mouse + - type: Body + prototype: Mothroach + - type: TypingIndicator + proto: moth + - type: entity name: mallard duck #Quack parent: SimpleMobBase @@ -538,12 +749,15 @@ interactSuccessSpawn: EffectHearts - type: Bloodstream bloodMaxVolume: 50 + bloodReagent: CopperBlood - type: Tag tags: - VimPilot - type: HTN rootTask: task: RuminantCompound + - type: Body + prototype: AnimalHemocyanin - type: entity name: goat @@ -570,6 +784,8 @@ - MobLayer - type: Tag tags: + # let moths eat wool directly + - ClothMade - DoorBumpOpener - Goat - type: Reproductive @@ -595,11 +811,19 @@ reagents: - ReagentId: MilkGoat Quantity: 30 + wool: + maxVol: 250 - type: Udder reagentId: MilkGoat targetSolution: udder quantity: 25 updateRate: 20 + - type: Wooly + - type: Food + solution: wool + requiresSpecialDigestion: true + # Wooly prevents eating wool deleting the goat so its fine + requireDead: false - type: Butcherable spawned: - id: FoodMeat @@ -876,9 +1100,9 @@ sprite: Objects/Misc/handcuffs.rsi state: body-overlay-2 visible: false - - map: [ "id" ] - map: [ "ears" ] - map: [ "outerClothing" ] + - map: [ "id" ] - map: [ "mask" ] - map: [ "head" ] - map: [ "clownedon" ] @@ -909,6 +1133,7 @@ amount: 3 - type: MonkeyAccent - type: Puller + needsHands: false - type: CanHostGuardian - type: NPCRetaliation attackMemoryLength: 10 @@ -952,6 +1177,8 @@ id: MobMouse description: Squeak! components: + - type: Body + prototype: Mouse - type: GhostRole makeSentient: true allowSpeech: true @@ -1020,6 +1247,12 @@ Base: splat-0 - type: Food - type: Hunger + thresholds: + Overfed: 35 + Okay: 25 + Peckish: 15 + Starving: 10 + Dead: 0 baseDecayRate: 0.5 # I'm very hungry! Give me. The cheese. - type: Extractable grindableSolutionName: food @@ -1070,6 +1303,8 @@ needsHands: true - type: FelinidFood # Nyanotrasen - Felinid, ability to eat mice, see Content.Server/Nyanotrasen/Abilities/Felinid/FelinidSystem.cs - type: BadFood + - type: NonSpreaderZombie + - type: PreventSpiller - type: entity parent: MobMouse @@ -1506,8 +1741,8 @@ sprite: Objects/Misc/handcuffs.rsi state: body-overlay-2 visible: false - - map: [ "id" ] - map: [ "outerClothing" ] + - map: [ "id" ] - map: [ "mask" ] - map: [ "head" ] - map: [ "clownedon" ] @@ -1645,6 +1880,8 @@ - id: FoodMeatSpider amount: 2 - type: CombatMode + - type: Body + prototype: AnimalHemocyanin - type: MobThresholds thresholds: 0: Alive @@ -1682,9 +1919,13 @@ - type: IgnoreSpiderWeb - type: Bloodstream bloodMaxVolume: 150 - bloodReagent: SpiderBlood + bloodReagent: CopperBlood - type: Speech speechVerb: Arachnid + - type: Tag + tags: + - DoorBumpOpener + - FootstepSound - type: entity name: tarantula @@ -1735,10 +1976,6 @@ 180: Dead - type: Spider webPrototype: SpiderWebClown - - type: Tag - tags: - - DoorBumpOpener - - FootstepSound - type: MeleeWeapon angle: 0 animation: WeaponArcBite @@ -1809,6 +2046,25 @@ tags: - VimPilot +- type: entity + name: possum + parent: MobPossum + suffix: Old sprite + id: MobPossumOld + components: + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Animals/possum_old.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: possum_old + - type: DamageStateVisuals + states: + Alive: + Base: possum_old + Dead: + Base: possum_dead_old + - type: entity name: raccoon parent: SimpleMobBase @@ -2070,6 +2326,8 @@ states: Alive: Base: puppy + Critical: + Base: puppy_dead Dead: Base: puppy_dead - type: Grammar @@ -2128,6 +2386,10 @@ interactSuccessSpawn: EffectHearts interactSuccessSound: path: /Audio/Animals/cat_meow.ogg + - type: MeleeWeapon + damage: + types: + Piercing: 5 - type: Grammar attributes: gender: epicene @@ -2202,6 +2464,39 @@ Dead: Base: caracal_dead +- type: entity + name: kitten + parent: MobCat + id: MobCatKitten + description: Small and fluffy. + components: + - type: Sprite + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + state: kitten + - type: DamageStateVisuals + states: + Alive: + Base: kitten + Critical: + Base: kitten_dead + Dead: + Base: kitten_dead + - type: Butcherable + spawned: + - id: FoodMeat + amount: 1 + - type: MobPrice + price: 100 + - type: MeleeWeapon + damage: + types: + Piercing: 3 + - type: MobThresholds + thresholds: + 0: Alive + 25: Dead + - type: entity name: sloth parent: SimpleMobBase @@ -2449,6 +2744,7 @@ BaseResistTime: 3 - type: MobPrice price: 60 + - type: NonSpreaderZombie - type: entity name: pig diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml b/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml index 611887ab41..af344ac7eb 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml @@ -74,6 +74,11 @@ accent: genericAggressive - type: Speech speechVerb: LargeMob + - type: InteractionPopup + interactSuccessString: petting-success-carp + interactFailureString: petting-failure-carp + interactFailureSound: + path: /Audio/Effects/bite.ogg - type: entity parent: BaseMobCarp @@ -187,3 +192,69 @@ damage: types: Slash: 6 + +- type: entity + name: sharkminnow + parent: BaseMobCarp + id: MobShark + description: A dangerous shark from the blackness of endless space, who loves to drink blood. + components: + - type: Sprite + sprite: Mobs/Aliens/Carps/sharkminnow.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: alive + - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] + state: mouth + shader: unshaded + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.40 + density: 100 + mask: + - FlyingMobMask + layer: + - FlyingMobLayer + - type: MobThresholds + thresholds: + 0: Alive + 180: Dead + - type: Stamina + critThreshold: 150 + - type: DamageStateVisuals + states: + Alive: + Base: alive + BaseUnshaded: mouth + Dead: + Base: dead + BaseUnshaded: dead_mouth + - type: Body + prototype: Bloodsucker + requiredLegs: 1 + - type: Butcherable + spawned: + - id: FoodMeatFish + amount: 4 + - type: MeleeWeapon + damage: + types: + Slash: 12 + Bloodloss: 5 + +- type: entity + id: MobSharkSalvage + parent: MobShark + suffix: "Salvage Ruleset" + components: + - type: GhostRole + prob: 0.2 + name: ghost-role-information-salvage-shark-name + allowMovement: true + allowSpeech: true + description: ghost-role-information-salvage-shark-description + - type: GhostTakeoverAvailable + - type: SalvageMobRestrictions diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml b/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml index 8ab65c340e..483659f1c1 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml @@ -1,5 +1,4 @@ - type: entity - save: false abstract: true id: MobElementalBase components: @@ -76,27 +75,38 @@ - type: ZombieImmune - type: entity + abstract: true + id: MobOreCrab + name: ore crab parent: [ MobElementalBase, MobCombat ] - id: MobQuartzCrab - name: quartz crab - description: An ore crab made from quartz. components: - type: Sprite sprite: Mobs/Elemental/orecrab.rsi - state: quartzcrab + state: uranium_crab - type: HTN rootTask: task: SimpleHostileCompound - type: MeleeWeapon + hidden: true soundHit: path: /Audio/Weapons/Xeno/alien_claw_flesh3.ogg damage: types: - Piercing: 12 - - type: CombatMode + Blunt: 6 + - type: MovementSpeedModifier + baseWalkSpeed : 2 + baseSprintSpeed : 2.5 - type: NpcFactionMember factions: - SimpleHostile + +- type: entity + parent: MobOreCrab + id: MobQuartzCrab + description: An ore crab made from Quartz. + components: + - type: Sprite + state: quartz_crab - type: Destructible thresholds: - trigger: @@ -115,30 +125,19 @@ acts: [ "Destruction" ] - type: entity - parent: [ MobElementalBase, MobCombat ] + parent: MobOreCrab id: MobIronCrab - name: ore crab description: An ore crab made from iron. components: - type: Sprite - sprite: Mobs/Elemental/orecrab.rsi - state: ironcrab - - type: HTN - rootTask: - task: SimpleHostileCompound + state: iron_crab - type: MeleeWeapon - soundHit: - path: /Audio/Weapons/Xeno/alien_claw_flesh3.ogg damage: types: - Blunt: 8 - - type: CombatMode + Blunt: 5 - type: MovementSpeedModifier baseWalkSpeed : 1.5 baseSprintSpeed : 2 - - type: NpcFactionMember - factions: - - SimpleHostile - type: Destructible thresholds: - trigger: @@ -157,30 +156,16 @@ acts: [ "Destruction" ] - type: entity - parent: [ MobElementalBase, MobCombat ] + parent: MobOreCrab id: MobUraniumCrab - name: ore crab description: An ore crab made from uranium. components: - - type: Sprite - sprite: Mobs/Elemental/orecrab.rsi - state: uraniumcrab - - type: HTN - rootTask: - task: IdleCompound - - type: MeleeWeapon - soundHit: - path: /Audio/Weapons/Xeno/alien_claw_flesh3.ogg - damage: - types: - Blunt: 8 - - type: CombatMode - - type: MovementSpeedModifier - baseWalkSpeed : 2 - baseSprintSpeed : 2.5 + - type: FactionException + - type: NPCRetaliation + attackMemoryLength: 10 - type: NpcFactionMember factions: - - SimpleHostile + - SimpleNeutral - type: RadiationSource intensity: 2 slope: 0.3 @@ -196,8 +181,8 @@ - !type:SpawnEntitiesBehavior spawn: UraniumOre1: - min: 8 - max: 10 + min: 3 + max: 6 - !type:DoActsBehavior acts: [ "Destruction" ] - type: PointLight @@ -205,6 +190,35 @@ energy: 3 color: "#06DF24" +- type: entity + parent: MobOreCrab + id: MobSilverCrab + name: ore crab + description: An ore crab made from silver. + components: + - type: Sprite + state: silver_crab + - type: MeleeWeapon + damage: + types: + Blunt: 5 + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 70 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: GlassBreak + - !type:SpawnEntitiesBehavior + spawn: + SilverOre1: + min: 4 + max: 6 + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: entity name: Reagent slime id: ReagentSlime diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/human.yml b/Resources/Prototypes/Entities/Mobs/NPCs/human.yml index c50074bc31..b79e29b430 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/human.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/human.yml @@ -64,6 +64,7 @@ Asphyxiation: 76 Slash: 56 Blunt: 19 + Radiation: 1984 # DV: Unrevivable due to prolonged exposure to space. - type: Inventory templateId: corpse diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/living_light.yml b/Resources/Prototypes/Entities/Mobs/NPCs/living_light.yml new file mode 100644 index 0000000000..0e8b220c64 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/NPCs/living_light.yml @@ -0,0 +1,211 @@ +- type: entity + id: MobLivingLight + parent: [ BaseMob, MobCombat ] + abstract: true + name: luminous person + description: A blinding figure of pure light, seemingly intangible. + components: + - type: HTN + rootTask: + task: SimpleRangedHostileCompound + blackboard: + NavClimb: !type:Bool + true + NavSmash: !type:Bool + true + - type: NpcFactionMember + factions: + - SimpleHostile + - type: MovementIgnoreGravity + - type: MovementSpeedModifier + baseWalkSpeed: 5.5 + baseSprintSpeed: 5.5 + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Elemental/living_light/luminous_person.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: luminous_person + - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] + state: glow + shader: unshaded + - type: MobState + - type: MobThresholds + thresholds: + 0: Alive + 100: Dead + - type: DamageStateVisuals + states: + Alive: + Base: luminous_person + BaseUnshaded: glow + Dead: + Base: dead + BaseUnshaded: dead_glow + - type: StatusEffects + allowed: + - Stun + - Corporeal + - Electrocution + - StaminaModifier + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 60 + mask: + - MobMask + layer: + - Opaque + - type: Damageable + damageContainer: Inorganic + damageModifierSet: LivingLight + - type: PassiveDamage + allowedStates: + - Alive + damageCap: 20 + damage: + types: + Heat: -0.2 + - type: NoSlip + - type: ZombieImmune + - type: NameIdentifier + group: GenericNumber + - type: GhostTakeoverAvailable + - type: PointLight + color: "#e4de6c" + radius: 8 + softness: 2 + energy: 5 + - type: FootstepModifier + footstepSoundCollection: + collection: FootstepBells + - type: Speech + speechVerb: Ghost + - type: Tag + tags: + - FootstepSound + - DoorBumpOpener + - type: Destructible + thresholds: + - trigger: + !type:DamageTypeTrigger + damageType: Heat + damage: 150 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + +- type: entity + id: MobLuminousPerson + parent: MobLivingLight + components: + - type: MeleeWeapon + damage: + types: + Heat: 16 + animation: WeaponArcFist + - type: StaminaDamageOnHit + damage: 16 + +- type: entity + id: MobLuminousObject + parent: MobLivingLight + name: luminous object + description: A small glowing object that causes burns on the skin with its glow. + components: + - type: Sprite + sprite: Mobs/Elemental/living_light/luminous_object.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: luminous_object + - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] + state: glow + shader: unshaded + - type: MobThresholds + thresholds: + 0: Alive + 50: Dead + - type: DamageStateVisuals + states: + Alive: + Base: luminous_object + BaseUnshaded: glow + Dead: + Base: dead + BaseUnshaded: dead_glow + - type: MeleeWeapon + damage: + types: + Heat: 8 + - type: Destructible + thresholds: + - trigger: + !type:DamageTypeTrigger + damageType: Heat + damage: 80 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + +- type: entity + id: MobLuminousEntity + parent: MobLivingLight + name: luminous entity + description: A blinding translucent entity, the bright eye seems dangerous and scalding. + components: + - type: Sprite + sprite: Mobs/Elemental/living_light/luminous_entity.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: luminous_entity + - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] + state: glow + shader: unshaded + - type: MobThresholds + thresholds: + 0: Alive + 60: Dead + - type: DamageStateVisuals + states: + Alive: + Base: luminous_entity + BaseUnshaded: glow + Dead: + Base: dead + BaseUnshaded: dead_glow + - type: MeleeWeapon + damage: + types: + Heat: 5 + - type: HitscanBatteryAmmoProvider + proto: Pulse + fireCost: 140 + - type: Battery + maxCharge: 1000 + startingCharge: 1000 + - type: BatterySelfRecharger + autoRecharge: true + autoRechargeRate: 50 + - type: Gun + fireRate: 0.3 + useKey: false + showExamineText: false + selectedMode: SemiAuto + availableModes: + - SemiAuto + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/laser3.ogg + soundEmpty: + path: /Audio/Items/lighter_off.ogg + - type: Destructible + thresholds: + - trigger: + !type:DamageTypeTrigger + damageType: Heat + damage: 100 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml index 5d05b8a62d..eed313b86a 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml @@ -83,6 +83,22 @@ proper: true gender: female +- type: entity + name: Puppy Ian + parent: MobCorgiPuppy + id: MobCorgiIanPup + description: Favourite puppy corgi. Awww. + components: + - type: Grammar + attributes: + proper: true + gender: male + - type: Butcherable # A puppy? You monster... + spawned: + - id: FoodMeatCorgi + amount: 2 + - id: MaterialHideCorgi + - type: entity name: Runtime parent: MobCat @@ -405,6 +421,48 @@ - CannotSuicide - VimPilot +- type: entity + name: Morty + parent: MobPossumMorty + id: MobPossumMortyOld + suffix: Old sprite + components: + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Animals/possum_old.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: possum_old + - type: DamageStateVisuals + states: + Alive: + Base: possum_old + Dead: + Base: possum_dead_old + +- type: entity + name: Poppy # the Safety Possum + parent: MobPossumMorty + id: MobPossumPoppy + description: It's an opossum, a small scavenging marsupial. It's wearing appropriate personal protective equipment. + components: + - type: Grammar + attributes: + proper: true + gender: female + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Animals/possum.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: poppy + - type: DamageStateVisuals + states: + Alive: + Base: poppy + Dead: + Base: poppy_dead + - type: entity name: Morticia parent: MobRaccoon @@ -693,6 +751,7 @@ - type: GhostRole name: ghost-role-information-smile-name description: ghost-role-information-smile-description + rules: ghost-role-information-smile-rules - type: Grammar attributes: proper: true @@ -719,6 +778,7 @@ amount: 3 - id: DrinkTequilaBottleFull amount: 1 + - type: Flashable - type: Tag tags: - CannotSuicide diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml b/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml index 24c6bca4de..87d6cd54ba 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml @@ -291,7 +291,7 @@ - type: entity id: ActionRatKingDomain name: Rat King's Domain - description: Spend some hunger to release a cloud of miasma into the air. + description: Spend some hunger to release a cloud of ammonia into the air. noSpawn: true components: - type: InstantAction diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml b/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml index db739cc312..28355bb459 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml @@ -62,6 +62,17 @@ rules: ghost-role-information-revenant-rules - type: GhostTakeoverAvailable - type: Revenant + malfunctionWhitelist: + components: + # emag lockers open + - EntityStorage + # emag doors open + - Airlock + # troll medical to help get kills + - StasisBed + - EmaggableMedibot + # borg become killer + - EmagSiliconLaw - type: PointLight color: MediumPurple radius: 2 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml index aaeeaf0bf6..5b1d6d60dc 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml @@ -10,16 +10,6 @@ - type: Clickable - type: Damageable damageContainer: Inorganic - - type: Bloodstream - bloodReagent: Oil - bloodlossDamage: - types: - Bloodloss: - 1 - bloodlossHealDamage: - types: - Bloodloss: - -1 - type: InteractionOutline - type: Fixtures fixtures: @@ -56,11 +46,10 @@ - Piercing - Heat - Shock + locPrefix: silicon - type: MovedByPressure - type: Physics bodyType: KinematicController # Same for all inheritors - - type: DrawableSolution - solution: bloodstream - type: StatusEffects allowed: - Stun @@ -86,6 +75,9 @@ thresholds: 0: Alive 120: Dead + stateAlertDict: + Alive: BorgHealth + showOverlays: false - type: Stamina critThreshold: 120 - type: Destructible @@ -173,6 +165,9 @@ node: bot - type: Storage capacity: 250 + - type: Access + groups: + - Cargo - type: UserInterface interfaces: - key: enum.StorageUiKey.Key @@ -317,13 +312,25 @@ description: No substitute for a doctor, but better than nothing. components: - type: Medibot + treatments: + Alive: + reagent: Tricordrazine + quantity: 30 + minDamage: 0 + maxDamage: 50 + Critical: + reagent: Inaprovaline + quantity: 15 - type: EmaggableMedibot - # when you are fine, medibot will help you go sleep - standardMed: ChloralHydrate - standardMedAmount: 15 - # when you are crit, medibot will help you have fun - emergencyMed: SpaceDrugs - emergencyMedAmount: 25 + replacements: + # when you are fine, medibot will help you go sleep + Alive: + reagent: ChloralHydrate + quantity: 15 + # when you are crit, medibot will help you have fun + Critical: + reagent: SpaceDrugs + quantity: 25 - type: Sprite sprite: Mobs/Silicon/Bots/medibot.rsi state: medibot diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml b/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml index e828cddd1f..edf89e30b4 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml @@ -105,5 +105,5 @@ price: 150 - type: FloatingVisuals - type: Puller - needsHands: false + needsHands: True diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/space.yml b/Resources/Prototypes/Entities/Mobs/NPCs/space.yml index 234dbbc103..9138b893a6 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/space.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/space.yml @@ -250,16 +250,16 @@ damage: types: Piercing: 6 - Poison: 2 + Poison: 4 - type: SolutionContainerManager solutions: melee: reagents: - ReagentId: ChloralHydrate - Quantity: 60 + Quantity: 80 - type: MeleeChemicalInjector solution: melee - transferAmount: 3 + transferAmount: 4 - type: ReplacementAccent accent: xeno - type: InteractionPopup @@ -287,3 +287,105 @@ description: ghost-role-information-salvage-spider-description rules: deltav-ghost-role-information-salvageantag-rules #DeltaV - type: SalvageMobRestrictions + +- type: entity + name: space cobra + id: MobCobraSpaceNPC # Delta V : remove ghosttakeover comps + parent: MobSpaceBasic + description: Long fangs and a glowing hood, and the alluring look begs to come closer. + components: + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Animals/spacecobra.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: spacecobra + - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] + state: glow + shader: unshaded + - type: FootstepModifier + footstepSoundCollection: + collection: FootstepSnake + - type: MobThresholds + thresholds: + 0: Alive + 100: Dead + - type: Stamina + critThreshold: 150 + - type: DamageStateVisuals + states: + Alive: + Base: spacecobra + BaseUnshaded: glow + Dead: + Base: dead_spacecobra + - type: Butcherable + spawned: + - id: FoodMeatSnake + amount: 2 + - id: UraniumOre1 + amount: 1 + - id: ClothingShoesSnakeskinBoots + amount: 1 + prob: 0.3 + - type: Bloodstream + bloodMaxVolume: 200 + bloodReagent: Cryoxadone + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.40 + density: 120 + mask: + - MobMask + layer: + - MobLayer + - type: MeleeWeapon + hidden: true + soundHit: + path: /Audio/Effects/bite.ogg + angle: 0 + animation: WeaponArcBite + damage: + types: + Piercing: 6 + Poison: 4 + - type: SolutionContainerManager + solutions: + melee: + reagents: + - ReagentId: NorepinephricAcid + Quantity: 90 + - type: MeleeChemicalInjector + solution: melee + transferAmount: 6 + - type: ReplacementAccent + accent: xeno + - type: InteractionPopup + successChance: 0.2 + interactSuccessString: petting-success-snake + interactFailureString: petting-failure-generic + - type: PointLight + radius: 1.1 + energy: 1.5 + color: "#4faffb" + # Moved to Nyanotrasen\Entities\Mobs\NPCs\space.yml + - type: Stealth + enabledOnDeath: false + maxVisibility: 1.2 + - type: StealthOnMove + passiveVisibilityRate: -0.25 + movementVisibilityRate: 0.25 + +- type: entity + id: MobCobraSpaceSalvage + parent: MobCobraSpace + suffix: "Salvage Ruleset" + components: + - type: GhostRole + prob: 0.25 + name: ghost-role-information-salvage-cobra-name + description: ghost-role-information-salvage-cobra-description + - type: SalvageMobRestrictions diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/spacetick.yml b/Resources/Prototypes/Entities/Mobs/NPCs/spacetick.yml index 0249aa30af..c5d5b589a7 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/spacetick.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/spacetick.yml @@ -84,6 +84,7 @@ accent: genericAggressive - type: Speech speechVerb: SmallMob + - type: NonSpreaderZombie - type: entity id: MobTickSalvage diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml index d962a267fe..740277a0d9 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml @@ -420,7 +420,14 @@ - MobMask layer: - MobLayer - + - type: FootstepModifier + footstepSoundCollection: + collection: FootstepSnake + - type: Tag + tags: + - DoorBumpOpener + - FootstepSound + - type: entity name: space adder parent: MobPurpleSnake diff --git a/Resources/Prototypes/Entities/Mobs/Player/human.yml b/Resources/Prototypes/Entities/Mobs/Player/human.yml index 8c2e6d3dbc..9359ef4caa 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/human.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/human.yml @@ -82,7 +82,7 @@ rule: Ninja - type: AutoImplant implants: - - MicroBombImplant + - DeathAcidifierImplant - type: RandomMetadata nameSegments: - names_ninja_title diff --git a/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml b/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml index a1470ebc7c..fedc42fb50 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml @@ -13,7 +13,7 @@ - type: RandomMetadata nameSegments: - NamesFirstMilitaryLeader - - names_last + - NamesLastMilitary - type: RandomHumanoidSpawner settings: DeathSquad @@ -31,7 +31,7 @@ - type: RandomMetadata nameSegments: - NamesFirstMilitaryLeader - - names_last + - NamesLastMilitary ## ERT Leader @@ -47,7 +47,7 @@ - type: RandomMetadata nameSegments: - NamesFirstMilitaryLeader - - names_last + - NamesLastMilitary - type: RandomHumanoidSpawner settings: ERTLeader @@ -65,7 +65,7 @@ - type: RandomMetadata nameSegments: - NamesFirstMilitaryLeader - - names_last + - NamesLastMilitary - type: entity id: RandomHumanoidSpawnerERTLeaderEVA @@ -125,7 +125,7 @@ - type: RandomMetadata nameSegments: - NamesFirstMilitary - - names_last + - NamesLastMilitary - type: RandomHumanoidSpawner settings: ERTJanitor @@ -141,7 +141,7 @@ - type: RandomMetadata nameSegments: - NamesFirstMilitary - - names_last + - NamesLastMilitary - type: Loadout prototypes: [ ERTJanitorGear ] @@ -183,7 +183,7 @@ - type: RandomMetadata nameSegments: - NamesFirstMilitary - - names_last + - NamesLastMilitary - type: RandomHumanoidSpawner settings: ERTEngineer @@ -199,7 +199,7 @@ - type: RandomMetadata nameSegments: - NamesFirstMilitary - - names_last + - NamesLastMilitary - type: Loadout prototypes: [ ERTEngineerGear ] @@ -241,7 +241,7 @@ - type: RandomMetadata nameSegments: - NamesFirstMilitary - - names_last + - NamesLastMilitary - type: RandomHumanoidSpawner settings: ERTSecurity @@ -257,7 +257,7 @@ - type: RandomMetadata nameSegments: - NamesFirstMilitary - - names_last + - NamesLastMilitary - type: Loadout prototypes: [ ERTSecurityGear ] @@ -319,7 +319,7 @@ - type: RandomMetadata nameSegments: - NamesFirstMilitary - - names_last + - NamesLastMilitary - type: RandomHumanoidSpawner settings: ERTMedical @@ -335,7 +335,7 @@ - type: RandomMetadata nameSegments: - NamesFirstMilitary - - names_last + - NamesLastMilitary - type: Loadout prototypes: [ ERTMedicalGear ] @@ -389,7 +389,7 @@ - type: RandomMetadata nameSegments: - NamesFirstMilitary - - names_last + - NamesLastMilitary ## Central Command - type: entity diff --git a/Resources/Prototypes/Entities/Mobs/Player/narsie.yml b/Resources/Prototypes/Entities/Mobs/Player/narsie.yml new file mode 100644 index 0000000000..7030572cf4 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Player/narsie.yml @@ -0,0 +1,99 @@ +- type: entity + abstract: true + id: MobNarsieBase + name: Nar'Sie + description: Your mind begins to bubble and ooze as it tries to comprehend what it sees. + components: + - type: Sprite + sprite: Mobs/Demons/narsie.rsi + drawdepth: Ghosts + scale: 2.0,2.0 + layers: + - state: narsie + shader: unshaded + +# spawn animation, spawns actual narsie when it ends +- type: entity + parent: MobNarsieBase + id: MobNarsieSpawn + suffix: Spawn + components: + - type: Sprite + layers: + - state: spawn + shader: unshaded + # spawn animation lasts 3.5 seconds + - type: TimedDespawn + lifetime: 3.5 + - type: SpawnOnDespawn + prototype: MobNarsie + +- type: entity + parent: [MobNarsieBase, BaseMob] + id: MobNarsie + components: + - type: AnnounceOnSpawn + message: narsie-has-risen + sender: narsie-has-risen-sender + sound: + path: /Audio/Misc/narsie_rises.ogg + color: red + - type: CargoSellBlacklist + # big nar'sie needs to see the universe + - type: ContentEye + maxZoom: 2.0,2.0 + - type: Fixtures + fixtures: + EventHorizonCollider: + shape: + !type:PhysShapeCircle + radius: 5 + hard: false + restitution: 0.8 + density: 99999 + mask: + - AllMask + layer: + - AllMask + EventHorizonConsumer: + shape: + !type:PhysShapeCircle + radius: 5 + hard: false + mask: + - AllMask + layer: + - AllMask + - type: Input + context: "ghost" + - type: MovementIgnoreGravity + # narnar hears all + - type: IntrinsicRadioReceiver + - type: ActiveRadio + channels: + - Binary + - Common + - Command + - CentCom + - Engineering + - Medical + - Science + - Security + - Service + - Supply + - Syndicate + globalReceive: true + - type: Physics + bodyType: Dynamic + bodyStatus: InAir + - type: CanMoveInAir + # singulose components + - type: EventHorizon + radius: 5 + canBreachContainment: true + - type: GravityWell + baseRadialAcceleration: 6 + maxRange: 8 + - type: WarpPoint + follow: true + location: Nar'Sie diff --git a/Resources/Prototypes/Entities/Mobs/Player/observer.yml b/Resources/Prototypes/Entities/Mobs/Player/observer.yml index c7cac426a4..114c3fa747 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/observer.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/observer.yml @@ -39,18 +39,7 @@ - type: MovementIgnoreGravity - type: IntrinsicRadioReceiver - type: ActiveRadio - channels: - - Binary - - Common - - Command - - CentCom - - Engineering - - Medical - - Science - - Security - - Service - - Supply - - Syndicate + receiveAllChannels: true globalReceive: true - type: Physics bodyType: KinematicController diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index f104d399c8..91255ac7b3 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -248,7 +248,7 @@ - type: ContainerFill containers: borg_brain: - - MMIFilled + - PositronicBrain borg_module: - BorgModuleTool - type: ItemSlots diff --git a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml index 0039f93d1a..7f2f972015 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml @@ -18,30 +18,36 @@ # Bloodloss: 0.5 - type: Carriable # Carrying system from nyanotrasen. - type: Thirst - baseDecayRate: 0.0125 # Read comment in hunger - # Damage (Self) - - type: Bloodstream - bloodReagent: SpiderBlood # would be cool if they had to drink copper instead of iron but that might just be more bloat to deal with. - # Damage (Others) - - type: MeleeWeapon - animation: WeaponArcClaw - soundHit: - collection: AlienClaw - damage: - types: # Realisically this is more like 5 slash - Slash: 4 - # Fun - type: Sericulture action: ActionSericulture - productionLength: 3 + productionLength: 2 entityProduced: MaterialWebSilk1 - hungerCost: 9 # Should total to 12 total silk on full hunger + hungerCost: 4 # Should total to 25 total silk on full hunger + - type: Tag + tags: + - CanPilot + - FootstepSound + - DoorBumpOpener + - SpiderCraft - type: Perishable - type: Butcherable butcheringType: Spike spawned: - id: FoodMeatSpider amount: 5 + - type: Inventory + templateId: arachnid + # Damage (Self) + - type: Bloodstream + bloodReagent: CopperBlood + # Damage (Others) + - type: MeleeWeapon + animation: WeaponArcClaw + soundHit: + collection: AlienClaw + damage: + types: + Slash: 5 # Visual & Audio - type: DamageVisuals damageOverlayGroups: @@ -83,18 +89,18 @@ - map: ["enum.HumanoidVisualLayers.RFoot"] - map: ["enum.HumanoidVisualLayers.LHand"] - map: ["enum.HumanoidVisualLayers.RHand"] - - map: [ "id" ] - map: [ "gloves" ] - map: [ "shoes" ] - map: [ "ears" ] - map: [ "outerClothing" ] - map: [ "eyes" ] - map: [ "belt" ] + - map: [ "id" ] - map: [ "enum.HumanoidVisualLayers.Tail" ] # Mentioned in moth code: This needs renaming lol. - map: [ "neck" ] - map: [ "back" ] - map: [ "enum.HumanoidVisualLayers.FacialHair" ] - - map: [ "enum.HumanoidVisualLayers.Hair" ] + - map: [ "enum.HumanoidVisualLayers.Hair" ] # Do these need to be here? (arachnid hair arachnid hair) - map: [ "enum.HumanoidVisualLayers.HeadSide" ] - map: [ "enum.HumanoidVisualLayers.HeadTop" ] - map: [ "mask" ] diff --git a/Resources/Prototypes/Entities/Mobs/Species/base.yml b/Resources/Prototypes/Entities/Mobs/Species/base.yml index 02b9e7f4c0..5d905314e1 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/base.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/base.yml @@ -32,13 +32,13 @@ - map: ["enum.HumanoidVisualLayers.RFoot"] - map: ["enum.HumanoidVisualLayers.LHand"] - map: ["enum.HumanoidVisualLayers.RHand"] - - map: [ "id" ] - map: [ "gloves" ] - map: [ "shoes" ] - map: [ "ears" ] - map: [ "outerClothing" ] - map: [ "eyes" ] - map: [ "belt" ] + - map: [ "id" ] - map: [ "neck" ] - map: [ "back" ] - map: [ "enum.HumanoidVisualLayers.FacialHair" ] @@ -299,6 +299,8 @@ damageRecovery: types: Asphyxiation: -1.0 + - type: FireVisuals + alternateState: Standing - type: entity save: false @@ -343,13 +345,13 @@ sprite: Objects/Misc/handcuffs.rsi state: body-overlay-2 visible: false - - map: [ "id" ] - map: [ "gloves" ] - map: [ "shoes" ] - map: [ "ears" ] - map: [ "outerClothing" ] - map: [ "eyes" ] - map: [ "belt" ] + - map: [ "id" ] - map: [ "neck" ] - map: [ "back" ] - map: [ "enum.HumanoidVisualLayers.FacialHair" ] diff --git a/Resources/Prototypes/Entities/Mobs/Species/moth.yml b/Resources/Prototypes/Entities/Mobs/Species/moth.yml index d4662da709..ac3619a620 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/moth.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/moth.yml @@ -23,6 +23,8 @@ - type: Damageable damageContainer: Biological damageModifierSet: Moth + - type: ZombieAccentOverride + accent: zombieMoth - type: Speech speechVerb: Moth - type: TypingIndicator @@ -33,6 +35,7 @@ spawned: - id: FoodMeat amount: 5 + - type: MothAccent - type: Vocal sounds: Male: UnisexMoth @@ -89,13 +92,13 @@ sprite: Objects/Misc/handcuffs.rsi state: body-overlay-2 visible: false - - map: [ "id" ] - map: [ "gloves" ] - map: [ "shoes" ] - map: [ "ears" ] - map: [ "outerClothing" ] - map: [ "eyes" ] - map: [ "belt" ] + - map: [ "id" ] - map: [ "enum.HumanoidVisualLayers.Tail" ] #in the utopian future we should probably have a wings enum inserted here so everyhting doesn't break - map: [ "neck" ] - map: [ "back" ] diff --git a/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml b/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml index 5e0071c7a5..28ea5b030f 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml @@ -47,6 +47,7 @@ 80: 0.7 - type: Speech speechVerb: Skeleton + - type: ZombieImmune - type: Vocal sounds: Male: Skeleton @@ -81,11 +82,11 @@ methods: [ Touch ] effects: # TODO: when magic is around - make a milk transformation to a skeleton monster - !type:HealthChange - scaled: true + scaleByQuantity: true damage: groups: - Burn: -1 # healing obviously up to discussion - Brute: -1 # these groups are the only 2 possible ways to damage a skeleton + Burn: -2 # healing obviously up to discussion + Brute: -1.5 # these groups are the only 2 possible ways to damage a skeleton - !type:PopupMessage type: Local visualType: Large @@ -99,6 +100,8 @@ visualType: Large messages: [ "skeleton-sprayed-by-oat-milk-popup" ] probability: 0.5 + - type: FireVisuals + alternateState: Standing - type: entity parent: BaseSpeciesDummy diff --git a/Resources/Prototypes/Entities/Mobs/Species/vox.yml b/Resources/Prototypes/Entities/Mobs/Species/vox.yml index b6c5edf751..c1ee7744c8 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/vox.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/vox.yml @@ -60,13 +60,13 @@ sprite: Objects/Misc/handcuffs.rsi state: body-overlay-2 visible: false - - map: [ "id" ] - map: [ "gloves" ] - map: [ "shoes" ] - map: [ "ears" ] - map: [ "outerClothing" ] - map: [ "eyes" ] - map: [ "belt" ] + - map: [ "id" ] - map: [ "neck" ] - map: [ "back" ] - map: [ "enum.HumanoidVisualLayers.FacialHair" ] diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks-cartons.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks-cartons.yml new file mode 100644 index 0000000000..a329d6272e --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks-cartons.yml @@ -0,0 +1,142 @@ +- type: entity + parent: DrinkBase + id: DrinkCartonBaseFull + abstract: true + components: + - type: Openable + sound: + collection: bottleOpenSounds #Could use a new sound someday ¯\_(ツ)_/¯ + - type: SolutionContainerManager + solutions: + drink: + maxVol: 50 + - type: Sprite + state: icon + - type: MeleeWeapon + soundNoDamage: + path: "/Audio/Effects/Fluids/splat.ogg" + damage: + types: + Blunt: 0 + - type: Damageable + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 20 + behaviors: + - !type:SpillBehavior { } + - !type:DoActsBehavior + acts: [ "Destruction" ] + #In future maybe add generic plastic scrap trash/debris + - type: TrashOnSolutionEmpty + solution: drink + +- type: entity + parent: DrinkCartonBaseFull + id: DrinkJuiceLimeCarton + name: lime juice + description: Sweet-sour goodness. + components: + - type: SolutionContainerManager + solutions: + drink: + reagents: + - ReagentId: JuiceLime + Quantity: 50 + - type: Sprite + sprite: Objects/Consumable/Drinks/limejuice.rsi + +- type: entity + parent: DrinkCartonBaseFull + id: DrinkJuiceOrangeCarton + name: orange juice + description: Full of vitamins and deliciousness! + components: + - type: SolutionContainerManager + solutions: + drink: + reagents: + - ReagentId: JuiceOrange + Quantity: 50 + - type: Sprite + sprite: Objects/Consumable/Drinks/orangejuice.rsi + +- type: entity + parent: DrinkCartonBaseFull + id: DrinkJuiceTomatoCarton + name: tomato juice + description: Well, at least it LOOKS like tomato juice. You can't tell with all that redness. + components: + - type: SolutionContainerManager + solutions: + drink: + reagents: + - ReagentId: JuiceTomato + Quantity: 50 + - type: Sprite + sprite: Objects/Consumable/Drinks/tomatojuice.rsi + +- type: entity + parent: DrinkCartonBaseFull + id: DrinkCreamCarton + name: Milk Cream + description: It's cream. Made from milk. What else did you think you'd find in there? + components: + - type: SolutionContainerManager + solutions: + drink: + reagents: + - ReagentId: Cream + Quantity: 50 + - type: Sprite + sprite: Objects/Consumable/Drinks/cream.rsi + +- type: entity + parent: DrinkCartonBaseFull + id: DrinkMilkCarton + name: milk + description: An opaque white liquid produced by the mammary glands of mammals. + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 100 + reagents: + - ReagentId: Milk + Quantity: 100 + - type: Sprite + sprite: Objects/Consumable/Drinks/milk.rsi + +- type: entity + parent: DrinkCartonBaseFull + id: DrinkSoyMilkCarton + name: soy milk + description: White and nutritious soy goodness! + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 100 + reagents: + - ReagentId: MilkSoy + Quantity: 100 + - type: Sprite + sprite: Objects/Consumable/Drinks/soymilk.rsi + +- type: entity + parent: DrinkCartonBaseFull + id: DrinkOatMilkCarton + name: oat milk + description: It's oat milk. Tan and nutritious goodness! + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 100 + reagents: + - ReagentId: MilkOat + Quantity: 100 + - type: Sprite + sprite: Objects/Consumable/Drinks/oatmilk.rsi diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml index 598cf16d0d..9f81d2e5df 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml @@ -1,5 +1,6 @@ # TODO: Find remaining cans and move to drinks_cans # TODO: Find empty containers (e.g. mug, pitcher) and move to their own yml +# When adding new drinks also add to random spawner located in Resources\Prototypes\Entities\Markers\Spawners\Random\Food_Drinks\drinks_glass.yml - type: entity parent: BaseItem id: DrinkBase @@ -507,6 +508,13 @@ - type: Drink - type: Sprite sprite: Objects/Consumable/Drinks/chocolateglass.rsi + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: HotCocoa + Quantity: 30 - type: entity parent: DrinkGlassBase @@ -1847,6 +1855,22 @@ - type: Sprite sprite: Objects/Consumable/Drinks/tequillasunriseglass.rsi +- type: entity + parent: DrinkGlassBase + id: DrinkTheMartinez + name: The Martinez glass + description: The edgerunner legend. Remembered by a drink, Forgotten by a drunk. + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: TheMartinez + Quantity: 30 + - type: Sprite + sprite: Objects/Consumable/Drinks/the_martinez.rsi + - type: entity parent: DrinkGlassBase id: DrinkThreeMileIslandGlass @@ -2172,16 +2196,16 @@ - type: entity parent: DrinkGlassBase - id: DrinkTheMartinez - name: The Martinez glass - description: The edgerunner legend. Remembered by a drink, Forgotten by a drunk. + id: DrinkBloodGlass + name: blood glass + description: Drink like a vampire! components: - type: SolutionContainerManager solutions: drink: maxVol: 30 reagents: - - ReagentId: TheMartinez + - ReagentId: Blood Quantity: 30 - type: Sprite - sprite: Objects/Consumable/Drinks/the_martinez.rsi + sprite: Objects/Consumable/Drinks/bloodglass.rsi diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml index 2fa487fa2c..8a116b0b23 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml @@ -1,3 +1,4 @@ +# When adding new drinks also add to random spawner located in Resources\Prototypes\Entities\Markers\Spawners\Random\Food_Drinks\drinks_bottles.yml - type: entity parent: DrinkBase id: DrinkBottleBaseFull @@ -43,7 +44,7 @@ qualities: - Rolling speed: 0.75 # not as good as a rolling pin but does the job - - type: TrashOnEmpty + - type: TrashOnSolutionEmpty solution: drink - type: entity @@ -91,6 +92,21 @@ - type: Sprite sprite: Objects/Consumable/Drinks/bottleofnothing.rsi +- type: entity + parent: DrinkBottleBaseFull + id: DrinkChampagneBottleFull + name: champagne bottle + description: Only people devoid of imagination can't find an excuse for champagne. + components: + - type: SolutionContainerManager + solutions: + drink: + reagents: + - ReagentId: Champagne + Quantity: 100 + - type: Sprite + sprite: Objects/Consumable/Drinks/champagnebottle.rsi + - type: entity parent: DrinkBottleBaseFull id: DrinkCognacBottleFull @@ -386,21 +402,6 @@ - type: Sprite sprite: Objects/Consumable/Drinks/alebottle.rsi -- type: entity - parent: DrinkBottleBaseFull - id: DrinkChampagneBottleFull - name: champagne bottle - description: Only people devoid of imagination can't find an excuse for champagne. - components: - - type: SolutionContainerManager - solutions: - drink: - reagents: - - ReagentId: Champagne - Quantity: 100 - - type: Sprite - sprite: Objects/Consumable/Drinks/champagnebottle.rsi - - type: entity parent: DrinkBottleBaseFull id: DrinkWaterBottleFull @@ -417,106 +418,3 @@ - type: Drink - type: Sprite sprite: Objects/Consumable/Drinks/waterbottle.rsi - -# Cartons, TODO: this needs to be moved elsewhere eventually, since cartons shouldnt smash into glass shards - -- type: entity - parent: DrinkBottleBaseFull - id: DrinkJuiceLimeCarton - name: lime juice - description: Sweet-sour goodness. - components: - - type: SolutionContainerManager - solutions: - drink: - maxVol: 50 - reagents: - - ReagentId: JuiceLime - Quantity: 50 - - type: Drink - - type: Sprite - sprite: Objects/Consumable/Drinks/limejuice.rsi - -- type: entity - parent: DrinkBottleBaseFull - id: DrinkJuiceOrangeCarton - name: orange juice - description: Full of vitamins and deliciousness! - components: - - type: SolutionContainerManager - solutions: - drink: - maxVol: 50 - reagents: - - ReagentId: JuiceOrange - Quantity: 50 - - type: Drink - - type: Sprite - sprite: Objects/Consumable/Drinks/orangejuice.rsi - -- type: entity - parent: DrinkBottleBaseFull - id: DrinkJuiceTomatoCarton - name: tomato juice - description: Well, at least it LOOKS like tomato juice. You can't tell with all that redness. - components: - - type: SolutionContainerManager - solutions: - drink: - maxVol: 50 - reagents: - - ReagentId: JuiceTomato - Quantity: 50 - - type: Drink - - type: Sprite - sprite: Objects/Consumable/Drinks/tomatojuice.rsi - -- type: entity - parent: DrinkBottleBaseFull - id: DrinkCreamCarton - name: Milk Cream - description: It's cream. Made from milk. What else did you think you'd find in there? - components: - - type: SolutionContainerManager - solutions: - drink: - maxVol: 50 - reagents: - - ReagentId: Cream - Quantity: 50 - - type: Drink - - type: Sprite - sprite: Objects/Consumable/Drinks/cream.rsi - -- type: entity - parent: DrinkBottleBaseFull - id: DrinkMilkCarton - name: milk - description: An opaque white liquid produced by the mammary glands of mammals. - components: - - type: SolutionContainerManager - solutions: - drink: - maxVol: 100 - reagents: - - ReagentId: Milk - Quantity: 100 - - type: Sprite - sprite: Objects/Consumable/Drinks/milk.rsi - -- type: entity - parent: DrinkBottleBaseFull - id: DrinkSoyMilkCarton - name: soy milk - description: White and nutritious soy goodness! - components: - - type: SolutionContainerManager - solutions: - drink: - maxVol: 100 - reagents: - - ReagentId: MilkSoy - Quantity: 100 - - type: Drink - - type: Sprite - sprite: Objects/Consumable/Drinks/soymilk.rsi diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml index 118b242136..7afb21fe97 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml @@ -1,3 +1,4 @@ +# When adding new drinks also add to random spawner located in Resources\Prototypes\Entities\Markers\Spawners\Random\Food_Drinks\drinks_soda.yml - type: entity parent: BaseItem id: DrinkCanBaseFull @@ -54,11 +55,14 @@ speed: 0.25 # its small so takes longer to roll the entire dough flat - type: ItemCooldown - type: SpaceGarbage - - type: TrashOnEmpty + - type: TrashOnSolutionEmpty solution: drink - type: PhysicalComposition materialComposition: Steel: 50 #reduce, reuse, recycle + - type: Tag + tags: + - DrinkCan - type: entity parent: DrinkCanBaseFull @@ -76,12 +80,38 @@ - type: Tag tags: - Cola + - DrinkCan - Recyclable - type: Sprite sprite: Objects/Consumable/Drinks/cola.rsi - type: Item sprite: Objects/Consumable/Drinks/cola.rsi +# created when taking apart an ied +- type: entity + parent: DrinkColaCan + id: DrinkColaCanEmpty + suffix: empty + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + - type: Openable + opened: true + - type: Sprite + sprite: Objects/Consumable/Drinks/cola.rsi + layers: + - state: icon_open + - type: Item + sprite: Objects/Consumable/Drinks/cola.rsi + - type: Tag + tags: + - Cola + - DrinkCan + - Recyclable + - Trash + - type: entity parent: DrinkCanBaseFull id: DrinkIcedTeaCan @@ -317,6 +347,7 @@ Quantity: 5 - type: Tag tags: + - DrinkCan - Recyclable - type: Sprite sprite: Objects/Consumable/Drinks/robustnukie.rsi diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml index 34c4fafaf2..5332260ae1 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml @@ -1,4 +1,5 @@ # Empty drink containers; different from bottles in that these are intended to be spawned empty +# When adding new drinks also add to random spawner located in Resources\Prototypes\Entities\Markers\Spawners\Random\Food_Drinks\drinks_soda.yml - type: entity parent: BaseItem id: DrinkBaseCup @@ -178,8 +179,24 @@ name: Hot chocolate description: A heated drink consisting melted chocolate and heated milk. components: + - type: SolutionContainerManager + solutions: + drink: + reagents: + - ReagentId: HotCocoa + Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/hot_coco.rsi + layers: + - state: icon-0 + - map: ["enum.SolutionContainerLayers.Fill"] + state: icon-4 + - type: Appearance + - type: SolutionContainerVisuals + maxFillLevels: 4 + fillBaseName: icon- + - type: TrashOnSolutionEmpty + solution: drink - type: entity parent: DrinkBaseCup @@ -203,7 +220,7 @@ - type: SolutionContainerVisuals maxFillLevels: 4 fillBaseName: icon- - - type: TrashOnEmpty + - type: TrashOnSolutionEmpty solution: drink - type: entity @@ -221,7 +238,7 @@ - type: Sprite sprite: Objects/Consumable/Drinks/cafe_latte.rsi - type: Appearance - - type: TrashOnEmpty + - type: TrashOnSolutionEmpty solution: drink - type: entity @@ -246,7 +263,7 @@ - type: SolutionContainerVisuals maxFillLevels: 4 fillBaseName: icon- - - type: TrashOnEmpty + - type: TrashOnSolutionEmpty solution: drink - type: entity @@ -271,7 +288,7 @@ - type: SolutionContainerVisuals maxFillLevels: 4 fillBaseName: icon- - - type: TrashOnEmpty + - type: TrashOnSolutionEmpty solution: drink - type: entity @@ -291,7 +308,7 @@ state: icon - type: Item sprite: Objects/Consumable/Drinks/lean.rsi - - type: TrashOnEmpty + - type: TrashOnSolutionEmpty solution: drink - type: entity @@ -300,12 +317,6 @@ name: water cup description: A paper water cup. components: - - type: SolutionContainerManager - solutions: - drink: - reagents: - - ReagentId: Water - Quantity: 20 - type: Drink - type: Sprite sprite: Objects/Consumable/Drinks/water_cup.rsi @@ -317,5 +328,8 @@ - type: SolutionContainerVisuals maxFillLevels: 1 fillBaseName: icon- - - type: TrashOnEmpty + - type: Tag + tags: + - Trash + - type: TrashOnSolutionEmpty solution: drink diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_flasks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_flasks.yml index c3d51b9d7e..cc8aba31e9 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_flasks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_flasks.yml @@ -31,7 +31,7 @@ reagents: - ReagentId: Water Quantity: 50 - - type: TrashOnEmpty + - type: TrashOnSolutionEmpty solution: drink - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_fun.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_fun.yml index 5e8f0a729c..4637732f88 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_fun.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_fun.yml @@ -32,6 +32,8 @@ - type: Tag tags: - DrinkSpaceGlue + - type: TrashOnSolutionEmpty + solution: drink - type: entity parent: DrinkBase @@ -64,3 +66,5 @@ maxFillLevels: 6 fillBaseName: fill - type: Lube + - type: TrashOnSolutionEmpty + solution: drink \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_special.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_special.yml index 48f612702b..d63a4c6ac9 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_special.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_special.yml @@ -70,6 +70,27 @@ - type: Drink - type: Sprite sprite: Objects/Consumable/Drinks/jar.rsi + layers: + - state: icon + map: [ "enum.SolutionContainerLayers.Base" ] + - state: fill1 + map: [ "enum.SolutionContainerLayers.Fill" ] + visible: false + - state: icon-front + map: [ "enum.SolutionContainerLayers.Overlay" ] + - type: Appearance + - type: SolutionContainerManager + solutions: + drink: + maxVol: 50 + - type: SolutionContainerVisuals + maxFillLevels: 9 + fillBaseName: fill + metamorphic: true + metamorphicDefaultSprite: + sprite: Objects/Consumable/Drinks/jar.rsi + state: icon + - type: TransformableContainer - type: entity parent: DrinkGlassBase diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/trash_drinks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/trash_drinks.yml index ec0edc145f..99aa925c44 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/trash_drinks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/trash_drinks.yml @@ -11,7 +11,7 @@ - type: SolutionContainerManager solutions: drink: - maxVol: 50 + maxVol: 100 - type: SolutionTransfer canChangeTransferAmount: true maxTransferAmount: 5 @@ -72,6 +72,56 @@ Glass: 100 - type: SpaceGarbage +- type: entity + name: base empty carton + id: DrinkCartonBaseEmpty + parent: BaseItem + abstract: true + description: An empty carton. + components: + - type: Sprite + state: icon + - type: SolutionContainerManager + solutions: + drink: + maxVol: 50 + - type: SolutionTransfer + canChangeTransferAmount: true + maxTransferAmount: 5 + - type: Drink + - type: Spillable + solution: drink + - type: FitsInDispenser + solution: drink + - type: DrawableSolution + solution: drink + - type: RefillableSolution + solution: drink + - type: DrainableSolution + solution: drink + - type: UserInterface + interfaces: + - key: enum.TransferAmountUiKey.Key + type: TransferAmountBoundUserInterface + - type: Damageable + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 20 + behaviors: + - !type:SpillBehavior { } + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: Tag + tags: + - Trash + - type: PhysicalComposition + materialComposition: + Cardboard: 20 + - type: SpaceGarbage + # Containers - type: entity name: jailbreaker verte bottle @@ -98,6 +148,10 @@ components: - type: Sprite sprite: Objects/Consumable/TrashDrinks/alebottle_empty.rsi + - type: SolutionContainerManager + solutions: + drink: + maxVol: 50 - type: entity @@ -107,6 +161,10 @@ components: - type: Sprite sprite: Objects/Consumable/TrashDrinks/beer_empty.rsi + - type: SolutionContainerManager + solutions: + drink: + maxVol: 50 - type: entity @@ -225,3 +283,76 @@ - type: Sprite sprite: Objects/Consumable/TrashDrinks/winebottle_empty.rsi + +- type: entity + name: lime juice carton + parent: DrinkCartonBaseEmpty + id: DrinkCartonLime + components: + - type: Sprite + sprite: Objects/Consumable/Drinks/limejuice.rsi + + +- type: entity + name: orange juice carton + parent: DrinkCartonBaseEmpty + id: DrinkCartonOrange + components: + - type: Sprite + sprite: Objects/Consumable/Drinks/orangejuice.rsi + + +- type: entity + name: tomato juice carton + parent: DrinkCartonBaseEmpty + id: DrinkCartonTomato + components: + - type: Sprite + sprite: Objects/Consumable/Drinks/tomatojuice.rsi + + +- type: entity + name: Milk Cream carton + parent: DrinkCartonBaseEmpty + id: DrinkCartonCream + components: + - type: Sprite + sprite: Objects/Consumable/Drinks/cream.rsi + + +- type: entity + name: milk carton + parent: DrinkCartonBaseEmpty + id: DrinkCartonMilk + components: + - type: Sprite + sprite: Objects/Consumable/Drinks/milk.rsi + - type: SolutionContainerManager + solutions: + drink: + maxVol: 100 + + +- type: entity + name: soy milk carton + parent: DrinkCartonBaseEmpty + id: DrinkCartonSoyMilk + components: + - type: Sprite + sprite: Objects/Consumable/Drinks/soymilk.rsi + - type: SolutionContainerManager + solutions: + drink: + maxVol: 100 + +- type: entity + name: oat milk carton + parent: DrinkCartonBaseEmpty + id: DrinkCartonOatMilk + components: + - type: Sprite + sprite: Objects/Consumable/Drinks/oatmilk.rsi + - type: SolutionContainerManager + solutions: + drink: + maxVol: 100 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml index 68480db171..5c6da9a117 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml @@ -1,3 +1,4 @@ +# When adding new food also add to random spawner located in Resources\Prototypes\Entities\Markers\Spawners\Random\Food_Drinks\food_baked_whole.yml & food_baked_single.yml # Base - type: entity @@ -437,14 +438,12 @@ - type: SolutionContainerManager solutions: food: - maxVol: 60 + maxVol: 45 reagents: - ReagentId: Nutriment Quantity: 30 - ReagentId: Vitamin Quantity: 5 - - ReagentId: Toxin - Quantity: 15 - type: Tag tags: - Meat @@ -468,14 +467,12 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 12 reagents: - ReagentId: Nutriment Quantity: 6 - ReagentId: Vitamin Quantity: 1.2 - - ReagentId: Toxin - Quantity: 3 - type: Tag tags: - Meat @@ -777,3 +774,64 @@ - ReagentId: Wine Quantity: 5 # Tastes like decaying fungus. + +- type: entity + name: bread dog + id: MobBreadDog + parent: FoodBreadSausage + description: It's a bread. It's a dog. It's a... breaddog? + components: + - type: Sprite + noRot: true + drawdepth: Mobs + sprite: Mobs/Pets/breaddog.rsi + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + state: base + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 50 + mask: + - MobMask + layer: + - MobLayer + - type: RotationVisuals + defaultRotation: 0 + horizontalRotation: 0 + - type: Item + size: 100 # Did I randomly decide this? Yes. Yes I did. + - type: GhostRole + prob: 1 + name: ghost-role-information-BreadDog-name + allowMovement: true + description: ghost-role-information-BreadDog-description + rules: ghost-role-information-BreadDog-rules + - type: GhostTakeoverAvailable + - type: BarkAccent + - type: Speech + speechSounds: Dog + speechVerb: SmallMob + - type: MovementSpeedModifier + baseWalkSpeed : 5 + baseSprintSpeed : 3 + - type: Tag + tags: + - VimPilot + - DoorBumpOpener + - type: CanEscapeInventory + baseResistTime: 2 + - type: Puller + needsHands: false + - type: Examiner + - type: CombatMode + - type: MeleeWeapon + soundHit: + path: /Audio/Animals/dog_bark1.ogg + hidden: true + damage: + groups: + Brute: 1 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml index 09f5ce27ff..1345ad0f11 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml @@ -1,3 +1,4 @@ +# When adding new food also add to random spawner located in Resources\Prototypes\Entities\Markers\Spawners\Random\Food_Drinks\food_baked_whole.yml & food_baked_single.yml # Base - type: entity @@ -244,6 +245,62 @@ state: lemon-slice # Tastes like sweetness, cake, lemons. +- type: entity + name: lemoon cake + parent: FoodCakeBase + id: FoodCakeLemoon + description: A cake that represents the moon of earth + components: + - type: Sprite + state: lemoon + - type: FlavorProfile + flavors: + - lemoon + - berry + - type: SliceableFood + slice: FoodCakeLemoonSlice + - type: SolutionContainerManager + solutions: + food: + maxVol: 30 + reagents: + - ReagentId: Nutriment + Quantity: 15 + - ReagentId: Vitamin + Quantity: 5 + - ReagentId: Milk + Quantity: 5 + - type: Tag + tags: + - Fruit + +- type: entity + name: shard of lemoon cake + parent: FoodCakeSliceBase + id: FoodCakeLemoonSlice + description: A shard of moon, has the smell of milk. + components: + - type: Sprite + state: lemoon-slice + - type: FlavorProfile + flavors: + - lemoon + - berry + - type: SolutionContainerManager + solutions: + food: + maxVol: 15 + reagents: + - ReagentId: Nutriment + Quantity: 3 + - ReagentId: Vitamin + Quantity: 1 + - ReagentId: Milk + Quantity: 1 + - type: Tag + tags: + - Fruit + - type: entity name: chocolate cake parent: FoodCakeBase @@ -549,6 +606,72 @@ Quantity: 3 # Tastes like sweetness, cake, jam. +- type: entity + name: cak + id: MobCatCake + parent: FoodCakeBase + description: It's a cake. It's a cat. It's a cak. + components: + - type: Sprite + noRot: true + drawdepth: Mobs + sprite: Mobs/Pets/cat.rsi + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + state: cak + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 50 + mask: + - MobMask + layer: + - MobLayer + - type: RotationVisuals + defaultRotation: 0 + horizontalRotation: 0 + - type: Item + size: 100 # Did I randomly decide this? Yes. Yes I did. + - type: Clothing + quickEquip: false + sprite: Mobs/Pets/cat.rsi + equippedPrefix: cak + slots: + - HEAD + - type: GhostRole + prob: 1 + name: ghost-role-information-Cak-name + allowMovement: true + description: ghost-role-information-Cak-description + rules: ghost-role-information-Cak-rules + - type: GhostTakeoverAvailable + - type: OwOAccent + - type: Speech + speechSounds: Cat + speechVerb: SmallMob + - type: MovementSpeedModifier + baseWalkSpeed : 5 + baseSprintSpeed : 3 + - type: Tag + tags: + - VimPilot + - DoorBumpOpener + - type: CanEscapeInventory + baseResistTime: 2 + - type: Puller + needsHands: false + - type: Examiner + - type: CombatMode + - type: MeleeWeapon + soundHit: + path: /Audio/Animals/cat_hiss.ogg + hidden: true + damage: + groups: + Brute: 1 # Suppermatter # I can't figure out where to put this. It kind of acts like a cake I guess? diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml index 54fc4d6553..180f176543 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml @@ -1,3 +1,4 @@ +# When adding new food also add to the appropriate random spawner located in Resources\Prototypes\Entities\Markers\Spawners\Random\Food_Drinks\ # Base - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml index 4ec0434f0e..b03be2fea4 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml @@ -1,3 +1,4 @@ +# When adding new food also add to random spawner located in Resources\Prototypes\Entities\Markers\Spawners\Random\Food_Drinks\food_baked_whole.yml & food_baked_single.yml # Base - type: entity @@ -66,9 +67,9 @@ slice: FoodPieAppleSlice - type: Tag tags: - - Fruit - - Pie - + - Fruit + - Pie + - type: entity name: slice of apple pie parent: FoodPieSliceBase @@ -85,7 +86,7 @@ color: orange - type: Tag tags: - - Fruit + - Fruit - Pie # Tastes like pie, apple. @@ -153,8 +154,24 @@ path: /Audio/Weapons/Guns/Empty/empty.ogg - type: Tag tags: - - Fruit + - Fruit - Pie + - type: SliceableFood + slice: FoodPieBananaCreamSlice + +- type: entity + name: slice of banana cream pie + parent: FoodPieSliceBase + id: FoodPieBananaCreamSlice + description: Just like back home, on clown planet! HONK! + components: + - type: FlavorProfile + flavors: + - sweet + - banana + - creamy + - type: Sprite + state: bananapie-slice # Tastes like pie, cream, banana. - type: entity @@ -176,7 +193,7 @@ slice: FoodPieClafoutisSlice - type: Tag tags: - - Fruit + - Fruit - Pie - type: entity @@ -195,7 +212,7 @@ color: pink - type: Tag tags: - - Fruit + - Fruit - Pie # Tastes like pie, blackberries. @@ -216,7 +233,7 @@ slice: FoodPieCherrySlice - type: Tag tags: - - Fruit + - Fruit - Pie - type: entity @@ -234,7 +251,7 @@ color: red - type: Tag tags: - - Fruit + - Fruit - Pie # Tastes like pie, cherries. @@ -348,6 +365,37 @@ color: blue # Tastes like pie, mint. +- type: entity + name: mime tart + parent: FoodPieBase + id: FoodTartMime + description: "\" \"" + components: + - type: FlavorProfile + flavors: + - nothing + - type: Sprite + state: mime + - type: Item + heldPrefix: mime + - type: SliceableFood + slice: FoodTartMimeSlice + +- type: entity + name: slice of mime tart + parent: FoodPieSliceBase + id: FoodTartMimeSlice + components: + - type: FlavorProfile + flavors: + - nothing + - type: Sprite + layers: + - state: mimetart-slice + - type: Item + heldPrefix: mime +# Tastes like nothing. + # No Slice - type: entity @@ -402,23 +450,10 @@ state: grape - type: Tag tags: - - Fruit + - Fruit - Pie # Tastes like tart, grape. -- type: entity - name: mime tart - parent: FoodPieBase - id: FoodTartMime - description: "\" \"" - components: - - type: FlavorProfile - flavors: - - nothing - - type: Sprite - state: mime -# Tastes like nothing. - - type: entity name: golden apple streusel tart parent: FoodPieBase @@ -432,7 +467,7 @@ state: gapple - type: Tag tags: - - Fruit + - Fruit - Pie # Tastes like tart, apple, expensive metal. diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml index 1f6a307f4e..9af171f4fb 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml @@ -1,3 +1,4 @@ +# When adding new food also add to random spawner located in Resources\Prototypes\Entities\Markers\Spawners\Random\Food_Drinks\food_meal.yml & food_single.yml # Base - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml index 03118bbf28..69e96e2981 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml @@ -13,7 +13,7 @@ sprite: Objects/Consumable/Food/condiments.rsi - type: Icon sprite: Objects/Consumable/Food/condiments.rsi - - type: TrashOnEmpty + - type: TrashOnSolutionEmpty solution: food - type: SpaceGarbage - type: StaticPrice diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/plate.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/plate.yml index e54167aa3e..9e0bd89184 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/plate.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/plate.yml @@ -34,6 +34,8 @@ - !type:PlaySoundBehavior sound: collection: GlassBreak + params: + volume: -8 - !type:SpawnEntitiesBehavior spawn: FoodPlateTrash: @@ -84,6 +86,8 @@ - !type:PlaySoundBehavior sound: collection: GlassBreak + params: + volume: -8 - !type:SpawnEntitiesBehavior spawn: FoodPlateSmallTrash: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml index 59cfc0ba16..94cba00a5f 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml @@ -1,3 +1,4 @@ +# When adding new food also add to random spawner located in Resources\Prototypes\Entities\Markers\Spawners\Random\Food_Drinks\food_single.yml # Bun - type: entity @@ -353,7 +354,7 @@ - Meat - type: entity - name: corgi burger #curger... + name: corger #not curger parent: FoodBurgerBase id: FoodBurgerCorgi description: The Head of Personnel's favorite! diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/egg.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/egg.yml index 4f6d10d98f..82070d420d 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/egg.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/egg.yml @@ -56,6 +56,16 @@ # Wow double-yolk you're so lucky! - !type:DoActsBehavior acts: [ "Destruction" ] + # all below are for egg cooking/exploding + - type: AtmosExposed + - type: Temperature + currentTemperature: 290 + - type: InternalTemperature + # ~1mm shell and ~1cm of albumen + thickness: 0.011 + area: 0.04 + # conductivity of egg shell based on a paper from Romanoff and Romanoff (1949) + conductivity: 0.456 # Splat - type: entity @@ -91,7 +101,6 @@ name: egg components: - type: Sprite - sprite: Objects/Consumable/Food/egg.rsi layers: - state: icon map: [ "enum.DamageStateVisualLayers.Base" ] @@ -101,3 +110,30 @@ icon: "" - enum.DamageStateVisualLayers.Base: white: "" + - type: Construction + graph: Egg + node: start + +- type: entity + parent: FoodEggBase + id: FoodEggBoiled + name: boiled egg + description: A delicious hardboiled egg. + components: + - type: Sprite + layers: + - state: icon + map: [ "enum.DamageStateVisualLayers.Base" ] + - type: SolutionContainerManager + solutions: + food: + maxVol: 6 + reagents: + - ReagentId: EggCooked + Quantity: 6 + - type: Temperature + # preserve temperature from the boiling step + currentTemperature: 344 + - type: Construction + graph: Egg + node: boiled diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/frozen.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/frozen.yml index d48dd88c39..4418eb42c0 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/frozen.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/frozen.yml @@ -1,3 +1,4 @@ +# When adding new food also add to random spawner located in Resources\Prototypes\Entities\Markers\Spawners\Random\Food_Drinks\food_snack.yml # Base - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml index 166a73e43e..8657b64b42 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml @@ -32,7 +32,7 @@ damageContainer: Inorganic - type: Spillable solution: food - - type: TrashOnEmpty + - type: TrashOnSolutionEmpty solution: food - type: entity @@ -203,56 +203,6 @@ - ReagentId: Sugar Quantity: 20 -# Milk - -- type: entity - parent: ReagentPacketBase - id: ReagentContainerMilk - name: milk - description: It's milk. White and nutritious goodness! - components: - - type: Sprite - state: milk - - type: SolutionContainerManager - solutions: - food: - maxVol: 50 # at least enough for one cheese - reagents: - - ReagentId: Milk - Quantity: 50 - -- type: entity - parent: ReagentPacketBase - id: ReagentContainerMilkSoy - name: soy milk - description: It's soy milk. White and nutritious goodness! - components: - - type: Sprite - state: milk-soy - - type: SolutionContainerManager - solutions: - food: - maxVol: 50 - reagents: - - ReagentId: MilkSoy - Quantity: 50 - -- type: entity - parent: ReagentPacketBase - id: ReagentContainerMilkOat - name: oat milk - description: It's oat milk. Tan and nutritious goodness! - components: - - type: Sprite - state: milk-oat - - type: SolutionContainerManager - solutions: - food: - maxVol: 50 - reagents: - - ReagentId: MilkOat - Quantity: 50 - # Misc - type: entity @@ -282,10 +232,10 @@ - type: SolutionContainerManager solutions: food: - maxVol: 20 + maxVol: 50 # you always need more mayo reagents: - ReagentId: Mayo - Quantity: 20 + Quantity: 50 # - type: entity # parent: ReagentPacketBase diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/meals.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/meals.yml index cb79f9b3a3..b2fffe6888 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/meals.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/meals.yml @@ -1,3 +1,4 @@ +# When adding new food also add to random spawner located in Resources\Prototypes\Entities\Markers\Spawners\Random\Food_Drinks\food_meal.yml # A bunch of different meals. This stuff doesn't come off their plates because # it's assembled on them. Or they just don't have plates. @@ -227,6 +228,7 @@ - spicy - type: Sprite state: cubancarp +# Delta-V: Removed the toxin and changed the description. - type: SolutionContainerManager solutions: food: @@ -234,7 +236,7 @@ reagents: - ReagentId: Nutriment Quantity: 6 - - ReagentId: CarpoToxin + - ReagentId: Protein Quantity: 3 - type: Tag tags: @@ -504,13 +506,14 @@ name: Sashimi parent: FoodMealBase id: FoodMealSashimi - description: Its taste can only be described as "Exotic". The poisoning though? That's pretty common. + description: Its taste can only be described as "Exotic". components: - type: FlavorProfile flavors: - fishy - type: Sprite state: sashimi +# Delta-V: Removed the toxin and changed the description. - type: SolutionContainerManager solutions: food: @@ -518,8 +521,8 @@ reagents: - ReagentId: Nutriment Quantity: 6 - - ReagentId: CarpoToxin - Quantity: 15 + - ReagentId: Protein + Quantity: 6 - type: Tag tags: - Meat @@ -581,22 +584,6 @@ tags: - Fruit -- type: entity - name: soft taco - parent: FoodMealBase - id: FoodMealSoftTaco - description: Take a bite! - components: - - type: FlavorProfile - flavors: - - cheesy - - tomato - - meaty - - onion - - type: Sprite - state: softtaco - - - type: entity name: corn in butter parent: FoodMealBase diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml index 32b03e4996..35a141df65 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml @@ -62,7 +62,7 @@ - type: Perishable # raw meat rots in 5 minutes, get it into the freezer fast rotAfter: 300 - # don't want meat giving off miasma only bodies + # don't want meat giving off ammonia only bodies molsPerSecondPerUnitMass: 0 - type: RotInto entity: FoodMeatRotten @@ -229,7 +229,7 @@ Quantity: 9 - type: SliceableFood count: 3 - slice: FoodMeatPenguinCutletSlice + slice: FoodMeatPenguinCutlet - type: Construction graph: PenguinSteak node: start @@ -507,6 +507,26 @@ - ReagentId: UncookedAnimalProteins Quantity: 1 +- type: entity + name: raw snake meat + parent: FoodMeatBase + id: FoodMeatSnake + description: A long piece of snake meat, hopefully not poisonous. + components: + - type: Tag + tags: + - Raw + - type: Sprite + state: snake + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: UncookedAnimalProteins + Quantity: 10 + - ReagentId: Toxin + Quantity: 2 + - type: entity name: raw xeno meat # not raw since acid kills bacteria or something, same as xeno diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/noodles.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/noodles.yml index 2fb16c7846..d8817ab86d 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/noodles.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/noodles.yml @@ -1,3 +1,4 @@ +# When adding new food also add to random spawner located in Resources\Prototypes\Entities\Markers\Spawners\Random\Food_Drinks\food_meal.yml # Base - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml index efe6167bde..d372d896bf 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml @@ -1,3 +1,4 @@ +# When adding new food also add to random spawner located in Resources\Prototypes\Entities\Markers\Spawners\Random\Food_Drinks\food_produce.yml # For produce that can't be immediately eaten - type: entity @@ -51,6 +52,9 @@ Quantity: 10 - type: Produce seedId: wheat + - type: Tag # Delta V straw hat + tags: + - Wheat # End of Delta V straw hat - type: entity name: oat bushel @@ -171,8 +175,8 @@ - type: MeleeWeapon damage: types: - Heat: 6 - Caustic: 6 + Heat: 7.5 + Caustic: 7.5 - type: SolutionContainerManager solutions: food: @@ -293,6 +297,7 @@ tags: - Recyclable - Trash + - BananaPeel - type: SolutionContainerManager solutions: food: @@ -304,6 +309,28 @@ grindableSolutionName: food - type: SpaceGarbage +- type: entity + name: baked banana peel + parent: TrashBananaPeel + id: TrashBakedBananaPeel + components: + - type: Sprite + sprite: Objects/Specific/Hydroponics/banana.rsi + state: baked-peel + - type: Item + sprite: Objects/Specific/Hydroponics/banana.rsi + heldPrefix: baked-peel + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: PulpedBananaPeel + Quantity: 1 + - ReagentId: Bananadine + Quantity: 1 + - ReagentId: Carbon + Quantity: 2 + - type: entity name: mimana peel parent: TrashBananaPeel @@ -448,6 +475,37 @@ - Lemon - Fruit +- type: entity + name: lemoon + parent: FoodProduceBase + id: FoodLemoon + description: People says Moon is made out of cheese, but Moon is actually made out of milk and laurel! + components: + - type: FlavorProfile + flavors: + - lemoon + - type: SolutionContainerManager + solutions: + food: + maxVol: 18 + reagents: + - ReagentId: Vitamin + Quantity: 4 + - ReagentId: Milk + Quantity: 16 + - type: Sprite + sprite: Objects/Specific/Hydroponics/lemoon.rsi + - type: Produce + seedId: lemoon + - type: Extractable + juiceSolution: + reagents: + - ReagentId: Sake #the best drink while watching moon + Quantity: 10 + - type: Tag + tags: + - Fruit + - type: entity name: lime parent: FoodLemon @@ -623,12 +681,12 @@ - type: SolutionContainerManager solutions: food: - maxVol: 19 + maxVol: 24 reagents: - ReagentId: Nutriment Quantity: 5 - ReagentId: SpaceLube - Quantity: 10 + Quantity: 15 - ReagentId: Vitamin Quantity: 4 - type: Sprite @@ -1188,10 +1246,10 @@ - type: SolutionContainerManager solutions: food: - maxVol: 22 + maxVol: 20 reagents: - ReagentId: Omnizine - Quantity: 5 + Quantity: 3 - ReagentId: SpaceDrugs Quantity: 5 - ReagentId: Nutriment @@ -1344,19 +1402,19 @@ - type: SolutionContainerManager solutions: food: - maxVol: 9 + maxVol: 7 reagents: - ReagentId: Nutriment Quantity: 5 - ReagentId: CarpoToxin - Quantity: 4 + Quantity: 2 - type: Produce seedId: koibean - type: Extractable juiceSolution: reagents: - ReagentId: CarpoToxin - Quantity: 4 + Quantity: 2 - type: entity name: watermelon @@ -1635,4 +1693,32 @@ - id: PumpkinSeeds - type: Tag tags: - - Fruit \ No newline at end of file + - Fruit + +- type: entity + name: cotton boll + description: Moth people's favorite snack, and just as fluffy as them. + id: CottonBol + parent: FoodProduceBase + components: + - type: Sprite + sprite: Objects/Specific/Hydroponics/cotton.rsi + - type: FlavorProfile + flavors: + - cotton + - type: Food + requiresSpecialDigestion: true + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: Fiber + Quantity: 10 + - type: Log + spawnedPrototype: MaterialCotton1 + spawnCount: 2 + - type: Produce + seedId: cotton + - type: Tag + tags: + - ClothMade diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/skewer.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/skewer.yml index 0b32de1ce5..07e85d3fe2 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/skewer.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/skewer.yml @@ -1,3 +1,4 @@ +# When adding new food also add to random spawner located in Resources\Prototypes\Entities\Markers\Spawners\Random\Food_Drinks\food_single.yml # Base - type: entity @@ -105,7 +106,7 @@ - type: entity name: rat kebab - parent: FoodSkewerBase + parent: FoodMeatKebab id: FoodMeatRatKebab description: Not so delicious rat meat, on a stick. components: @@ -124,7 +125,7 @@ - type: entity name: double rat kebab - parent: FoodSkewerBase + parent: FoodMeatKebab id: FoodMeatRatdoubleKebab description: A double serving of not so delicious rat meat, on a stick. components: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml index 83de4069d3..051e4c9174 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml @@ -1,3 +1,4 @@ +# When adding new food also add to random spawner located in Resources\Prototypes\Entities\Markers\Spawners\Random\Food_Drinks\food_snack.yml # Base - type: entity @@ -445,6 +446,7 @@ parent: BaseItem id: FoodPacketTrash description: This is rubbish. + abstract: true components: - type: Sprite sprite: Objects/Consumable/Food/snacks.rsi diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml index fa87c5a5a0..0dca39ea48 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml @@ -1,3 +1,5 @@ +# When adding new food also add to random spawner located in Resources\Prototypes\Entities\Markers\Spawners\Random\Food_Drinks\food_meal.yml + - type: entity parent: FoodBase id: FoodBowlBase @@ -46,6 +48,8 @@ - !type:PlaySoundBehavior sound: collection: GlassBreak + params: + volume: -8 - !type:SpillBehavior { } - !type:SpawnEntitiesBehavior spawn: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/taco.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/taco.yml index 385f52b543..72d20624a4 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/taco.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/taco.yml @@ -1,3 +1,5 @@ +# When adding new food also add to random spawner located in Resources\Prototypes\Entities\Markers\Spawners\Random\Food_Drinks\food_single.yml + - type: entity name: taco shell parent: FoodMealBase @@ -42,6 +44,9 @@ Quantity: 4 - type: Item sprite: Objects/Consumable/Food/taco.rsi + - type: Tag + tags: + - Meat - type: entity name: beef taco @@ -143,3 +148,20 @@ - ReagentId: Vitamin Quantity: 6 +- type: entity + name: soft taco + parent: FoodMealBase + id: FoodMealSoftTaco + description: Take a bite! + components: + - type: FlavorProfile + flavors: + - cheesy + - tomato + - meaty + - onion + - type: Sprite + state: softtaco + - type: Tag + tags: + - Meat diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/cigarette.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/cigarette.yml index 09ac79b141..82eacd703b 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/cigarette.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/cigarette.yml @@ -59,6 +59,11 @@ solutions: smokable: maxVol: 20 + - type: Tag + tags: + - Cigarette + - Trash + - Burnt - type: entity id: CigaretteSyndicate diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigars/cigar.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigars/cigar.yml index 4ed5912fc5..f9d490ebd3 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigars/cigar.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigars/cigar.yml @@ -34,6 +34,11 @@ solutions: smokable: maxVol: 20 + - type: Tag + tags: + - Cigar + - Trash + - Burnt - type: entity id: CigarGold diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Pipes/pipe.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Pipes/pipe.yml index 21017465bc..a1371829f9 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Pipes/pipe.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Pipes/pipe.yml @@ -22,6 +22,7 @@ id: SmokingPipeFilledTobacco parent: SmokingPipe name: pipe + suffix: Tobacco description: Just like grandpappy used to smoke. components: - type: ContainerContainer @@ -44,6 +45,7 @@ id: SmokingPipeFilledCannabis parent: SmokingPipe name: pipe + suffix: Cannabis description: Just like grandpappy used to smoke. components: - type: ContainerContainer diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/base_smokeables.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/base_smokeables.yml index 00c39be6fb..6ecadc67ff 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/base_smokeables.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/base_smokeables.yml @@ -61,7 +61,7 @@ - type: SolutionContainerManager solutions: smokable: - maxVol: 20 + maxVol: 30 - type: entity parent: BaseItem diff --git a/Resources/Prototypes/Entities/Objects/Decoration/ashtray.yml b/Resources/Prototypes/Entities/Objects/Decoration/ashtray.yml new file mode 100644 index 0000000000..a1367b6f3d --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Decoration/ashtray.yml @@ -0,0 +1,28 @@ +- type: entity + id: Ashtray + parent: BaseItem + name: ashtray + description: Proven by scientists to improve the smoking experience by 37%! + components: + - type: Sprite + sprite: Objects/Decoration/ashtray.rsi + layers: + - state: icon-0 + map: ["enum.StorageFillLayers.Fill"] + - type: Item + size: 10 + - type: StaticPrice + price: 1 + - type: Storage + capacity: 10 + whitelist: + tags: + - Burnt + - type: ContainerContainer + containers: + storagebase: !type:Container + - type: StorageFillVisualizer + fillBaseName: icon + maxFillLevels: 10 + - type: Appearance + - type: Dumpable diff --git a/Resources/Prototypes/Entities/Objects/Decoration/flora.yml b/Resources/Prototypes/Entities/Objects/Decoration/flora.yml index 97368a21bd..920824970e 100644 --- a/Resources/Prototypes/Entities/Objects/Decoration/flora.yml +++ b/Resources/Prototypes/Entities/Objects/Decoration/flora.yml @@ -208,7 +208,7 @@ - type: Sprite sprite: Objects/Decoration/Flora/flora_stalagmite.rsi state: stalagmite5 - + - type: entity parent: FloraStalagmite1 id: FloraStalagmite6 @@ -414,7 +414,7 @@ fix1: shape: !type:PhysShapeAabb - bounds: "-0.8,-1.5,0.8,-0.8" + bounds: "-0.5,0,0.5,0.75" density: 4500 layer: - WallLayer @@ -422,12 +422,15 @@ spawnEntries: - id: PresentRandom orGroup: present - - id: PresentRandomUnsafe - prob: 0.5 - orGroup: present - - id: PresentRandomInsane - prob: 0.2 + - id: PresentRandomCash + prob: 0.20 orGroup: present +# - id: PresentRandomUnsafe # DeltaV - Disabled until we get a list of actually safe items. +# prob: 0.25 +# orGroup: present +# - id: PresentRandomInsane +# prob: 0.10 +# orGroup: present receivedPopup: christmas-tree-got-gift deniedPopup: christmas-tree-no-gift requiredHoliday: FestiveSeason @@ -456,28 +459,28 @@ components: - type: Sprite state: tree02 - + - type: entity parent: ShadowTree01 id: ShadowTree03 components: - type: Sprite state: tree03 - + - type: entity parent: ShadowTree01 id: ShadowTree04 components: - type: Sprite state: tree04 - + - type: entity parent: ShadowTree01 id: ShadowTree05 components: - type: Sprite state: tree05 - + - type: entity parent: ShadowTree01 id: ShadowTree06 diff --git a/Resources/Prototypes/Entities/Objects/Decoration/present.yml b/Resources/Prototypes/Entities/Objects/Decoration/present.yml index 478e5d8401..1655468fc5 100644 --- a/Resources/Prototypes/Entities/Objects/Decoration/present.yml +++ b/Resources/Prototypes/Entities/Objects/Decoration/present.yml @@ -340,6 +340,8 @@ orGroup: GiftPool - id: Ash orGroup: GiftPool + - id: Coal1 + orGroup: GiftPool - id: MiningDrill orGroup: GiftPool - id: CowToolboxFilled @@ -374,6 +376,56 @@ sound: path: /Audio/Effects/unwrap.ogg +- type: entity + id: PresentRandomAsh + parent: [PresentBase, BaseItem] + suffix: Filled Ash + components: + - type: SpawnItemsOnUse + items: + - id: PresentTrash + - id: Ash # No coal yet! + orGroup: GiftPool + sound: + path: /Audio/Effects/unwrap.ogg + +- type: entity + id: PresentRandomCash + parent: [PresentBase, BaseItem] + suffix: Filled Cash + components: + - type: SpawnItemsOnUse + items: + - id: PresentTrash + - id: SpaceCash + prob: .01 + orGroup: GiftPool + - id: SpaceCash10 + prob: .1 + orGroup: GiftPool + - id: SpaceCash100 + prob: .5 + orGroup: GiftPool + - id: SpaceCash500 + orGroup: GiftPool + - id: SpaceCash1000 + prob: .01 + orGroup: GiftPool + - id: SpaceCash2500 + prob: .004 + orGroup: GiftPool + - id: SpaceCash5000 + prob: .002 + orGroup: GiftPool + - id: SpaceCash10000 + prob: .001 + orGroup: GiftPool + - id: SpaceCash1000000 + prob: .000001 + orGroup: GiftPool + sound: + path: /Audio/Effects/unwrap.ogg + - type: entity id: PresentTrash noSpawn: true diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml index b9cfd6f864..a7862a3959 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml @@ -245,6 +245,22 @@ recipes: - TraversalDistorterMachineCircuitboard +- type: entity + id: ArtifactCrusherMachineCircuitboard + parent: BaseMachineCircuitboard + name: artifact crusher machine board + description: A machine printed circuit board for an artifact crusher. + components: + - type: Sprite + state: science + - type: MachineBoard + prototype: MachineArtifactCrusher + requirements: + Manipulator: 2 + materialRequirements: + Glass: 1 + Steel: 5 + - type: entity parent: BaseMachineCircuitboard id: AnomalyVesselCircuitboard @@ -256,7 +272,7 @@ - type: MachineBoard prototype: MachineAnomalyVessel requirements: - Capacitor: 5 + Capacitor: 3 materialRequirements: Cable: 1 PlasmaGlass: 10 @@ -265,6 +281,39 @@ recipes: - AnomalyVesselCircuitboard +- type: entity + parent: BaseMachineCircuitboard + id: AnomalyVesselExperimentalCircuitboard + name: experimental anomaly vessel machine board + description: A machine printed circuit board for an experimental anomaly vessel. + components: + - type: Sprite + state: science + - type: MachineBoard + prototype: MachineAnomalyVesselExperimental + requirements: + Capacitor: 3 + materialRequirements: + Cable: 5 + PlasmaGlass: 15 + MetalRod: 4 + +- type: entity + parent: BaseMachineCircuitboard + id: AnomalySynchronizerCircuitboard + name: anomaly synchronizer machine board + description: A machine printed circuit board for an anomaly synchronizer. + components: + - type: Sprite + state: science + - type: MachineBoard + prototype: MachineAnomalySynchronizer + requirements: + Manipulator: 2 + Capacitor: 5 + materialRequirements: + PlasmaGlass: 25 + - type: entity parent: BaseMachineCircuitboard id: APECircuitboard @@ -329,6 +378,21 @@ deconstructionTarget: null node: heater +- type: entity + id: CondenserMachineCircuitBoard + parent: BaseMachineCircuitboard + name: condenser machine board + description: A machine printed circuit board for a condenser. + components: + - type: Sprite + state: engineering + - type: MachineBoard + prototype: BaseGasCondenser + requirements: + MatterBin: 1 + materialRequirements: + Glass: 1 + - type: entity id: PortableScrubberMachineCircuitBoard parent: BaseMachineCircuitboard @@ -840,22 +904,45 @@ prototype: StasisBed requirements: Capacitor: 1 + Manipulator: 1 materialRequirements: Cable: 3 - tagRequirements: - Pipe: - Amount: 1 - DefaultPrototype: GasPipeStraight - ExamineName: Pipe - Cryobeaker: - Amount: 2 - DefaultPrototype: CryostasisBeaker - ExamineName: Cryostasis Beaker + Steel: 2 - type: ReverseEngineering # Nyano difficulty: 3 recipes: - StasisBedMachineCircuitboard +- type: entity + id: ElectrolysisUnitMachineCircuitboard + parent: BaseMachineCircuitboard + name: electrolysis unit machine board + description: A machine printed circuit board for an electrolysis unit. + components: + - type: Sprite + state: medical + - type: MachineBoard + prototype: MachineElectrolysisUnit + requirements: + Capacitor: 2 + materialRequirements: + Cable: 1 + +- type: entity + id: CentrifugeMachineCircuitboard + parent: BaseMachineCircuitboard + name: centrifuge machine board + description: A machine printed circuit board for a centrifuge. + components: + - type: Sprite + state: medical + - type: MachineBoard + prototype: MachineCentrifuge + requirements: + Manipulator: 1 + materialRequirements: + Steel: 1 + - type: entity id: MaterialReclaimerMachineCircuitboard parent: BaseMachineCircuitboard @@ -1071,6 +1158,7 @@ Capacitor: 2 materialRequirements: Steel: 5 + Bluespace: 2 #DeltaV Bluespace Exists - type: entity id: SodaDispenserMachineCircuitboard diff --git a/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml b/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml index e960c8316e..1c8a14dc76 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml @@ -232,3 +232,18 @@ layers: - state: crypt_silver - state: rd_label + +- type: entity + parent: EncryptionKey + id: EncryptionKeyFreelance + name: freelancer encryption key + description: An encryption key used by freelancers, who may or may not have an affiliation. It looks like its worn out. + components: + - type: EncryptionKey + channels: + - Freelance + defaultChannel: Freelance + - type: Sprite + layers: + - state: crypt_rusted + - state: pirate_label diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index b3ffa3e129..970562b826 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -100,6 +100,15 @@ - DoorBumpOpener - type: Input context: "human" + +- type: entity + parent: BasePDA + id: BaseMedicalPDA + components: + - type: HealthAnalyzer + scanDelay: 1 + scanningEndSound: + path: "/Audio/Items/Medical/healthscanner.ogg" - type: entity parent: BasePDA @@ -129,7 +138,7 @@ state: pda-interntech - type: entity - parent: BasePDA + parent: BaseMedicalPDA id: MedicalInternPDA name: medical intern PDA description: Why isn't it white? Has a built-in health analyzer. @@ -142,10 +151,6 @@ accentVColor: "#447987" - type: Icon state: pda-internmed - - type: HealthAnalyzer - scanDelay: 1 - scanningEndSound: - path: "/Audio/Items/Medical/healthscanner.ogg" - type: GuideHelp guides: - Medical Doctor @@ -164,6 +169,12 @@ accentVColor: "#A32D26" - type: Icon state: pda-interncadet + - type: CartridgeLoader # DeltaV - Crime Assist + preinstalled: + - CrewManifestCartridge + - NotekeeperCartridge + - NewsReadCartridge + - CrimeAssistCartridge - type: entity parent: BasePDA @@ -279,7 +290,7 @@ - type: Pda id: MimeIDCard state: pda-mime - idSlot: + idSlot: # rewrite without sound because mime name: ID Card whitelist: components: @@ -292,7 +303,7 @@ - type: entity name: chaplain PDA - parent: BasePDA + parent: SciencePDA # DeltaV - Chaplain is part of episetmics id: ChaplainPDA description: God's chosen PDA. components: @@ -385,6 +396,12 @@ - type: Pda id: LibrarianIDCard state: pda-library + penSlot: + startingItem: LuxuryPen + priority: -1 + whitelist: + tags: + - Write - type: PdaBorderColor borderColor: "#858585" - type: Icon @@ -399,10 +416,22 @@ - type: Pda id: LawyerIDCard state: pda-lawyer + penSlot: + startingItem: LuxuryPen + priority: -1 + whitelist: + tags: + - Write - type: PdaBorderColor borderColor: "#6f6192" - type: Icon state: pda-lawyer + - type: CartridgeLoader # DeltaV - Crime Assist + preinstalled: + - CrewManifestCartridge + - NotekeeperCartridge + - NewsReadCartridge + - CrimeAssistCartridge - type: entity parent: BasePDA @@ -490,7 +519,7 @@ state: pda-engineer - type: entity - parent: BasePDA + parent: BaseMedicalPDA id: CMOPDA name: chief medical officer PDA description: Extraordinarily shiny and sterile. Has a built-in health analyzer. @@ -504,13 +533,9 @@ accentVColor: "#447987" - type: Icon state: pda-cmo - - type: HealthAnalyzer - scanDelay: 1 - scanningEndSound: - path: "/Audio/Items/Medical/healthscanner.ogg" - type: entity - parent: BasePDA + parent: BaseMedicalPDA id: MedicalPDA name: medical PDA description: Shiny and sterile. Has a built-in health analyzer. @@ -523,16 +548,12 @@ accentVColor: "#447987" - type: Icon state: pda-medical - - type: HealthAnalyzer - scanDelay: 1 - scanningEndSound: - path: "/Audio/Items/Medical/healthscanner.ogg" - type: GuideHelp guides: - Medical Doctor - type: entity - parent: BasePDA + parent: BaseMedicalPDA id: ParamedicPDA name: paramedic PDA description: Shiny and sterile. Has a built-in rapid health analyzer. @@ -545,13 +566,9 @@ accentVColor: "#2a4b5b" - type: Icon state: pda-paramedic - - type: HealthAnalyzer - scanDelay: 1 - scanningEndSound: - path: "/Audio/Items/Medical/healthscanner.ogg" - + - type: entity - parent: BasePDA + parent: BaseMedicalPDA id: ChemistryPDA name: chemistry PDA description: It has a few discolored blotches here and there. @@ -564,10 +581,6 @@ accentVColor: "#B34200" - type: Icon state: pda-chemistry - - type: HealthAnalyzer - scanDelay: 1 - scanningEndSound: - path: "/Audio/Items/Medical/healthscanner.ogg" - type: entity parent: BasePDA @@ -626,6 +639,12 @@ accentHColor: "#447987" - type: Icon state: pda-hos + - type: CartridgeLoader # DeltaV - Crime Assist + preinstalled: + - CrewManifestCartridge + - NotekeeperCartridge + - NewsReadCartridge + - CrimeAssistCartridge - type: entity parent: BasePDA @@ -641,6 +660,12 @@ accentVColor: "#949137" - type: Icon state: pda-warden + - type: CartridgeLoader # DeltaV - Crime Assist + preinstalled: + - CrewManifestCartridge + - NotekeeperCartridge + - NewsReadCartridge + - CrimeAssistCartridge - type: entity parent: BasePDA @@ -655,6 +680,12 @@ borderColor: "#A32D26" - type: Icon state: pda-security + - type: CartridgeLoader # DeltaV - Crime Assist + preinstalled: + - CrewManifestCartridge + - NotekeeperCartridge + - NewsReadCartridge + - CrimeAssistCartridge - type: entity parent: BasePDA @@ -769,6 +800,7 @@ parent: BasePDA id: ERTLeaderPDA name: ERT PDA + suffix: Leader description: Red for firepower. components: - type: Pda @@ -781,6 +813,47 @@ - type: Icon state: pda-ert +- type: entity + parent: ERTLeaderPDA + id: ERTChaplainPDA + name: ERT PDA + suffix: Chaplain + components: + - type: Pda + id: ERTChaplainIDCard + +- type: entity + parent: ERTLeaderPDA + id: ERTEngineerPDA + suffix: Engineer + components: + - type: Pda + id: ERTEngineerIDCard + +- type: entity + parent: ERTLeaderPDA + id: ERTJanitorPDA + suffix: Janitor + components: + - type: Pda + id: ERTJanitorIDCard + +- type: entity + parent: ERTLeaderPDA + id: ERTMedicPDA + suffix: Medic + components: + - type: Pda + id: ERTMedicIDCard + +- type: entity + parent: ERTLeaderPDA + id: ERTSecurityPDA + suffix: Security + components: + - type: Pda + id: ERTSecurityIDCard + - type: entity parent: ERTLeaderPDA id: CBURNPDA @@ -789,7 +862,6 @@ components: - type: Pda id: CBURNIDcard - state: pda-ert - type: PdaBorderColor borderColor: "#A32D26" accentHColor: "#447987" @@ -819,6 +891,12 @@ - type: Pda id: ReporterIDCard state: pda-reporter + penSlot: + startingItem: LuxuryPen + priority: -1 + whitelist: + tags: + - Write - type: PdaBorderColor borderColor: "#3f3f74" - type: Icon @@ -866,9 +944,15 @@ borderColor: "#774705" - type: Icon state: pda-detective + - type: CartridgeLoader # DeltaV - Crime Assist + preinstalled: + - CrewManifestCartridge + - NotekeeperCartridge + - NewsReadCartridge + - CrimeAssistCartridge - type: entity - parent: BasePDA + parent: BaseMedicalPDA id: BrigmedicPDA name: brigmedic PDA description: I wonder whose pulse is on the screen? I hope he doesnt stop... PDA has a built-in health analyzer. @@ -882,10 +966,12 @@ accentVColor: "#d7d7d0" - type: Icon state: pda-brigmedic - - type: HealthAnalyzer - scanDelay: 1 - scanningEndSound: - path: "/Audio/Items/Medical/healthscanner.ogg" + - type: CartridgeLoader # DeltaV - Crime Assist + preinstalled: + - CrewManifestCartridge + - NotekeeperCartridge + - NewsReadCartridge + - CrimeAssistCartridge - type: entity parent: ClownPDA @@ -942,7 +1028,7 @@ state: pda-seniorresearcher - type: entity - parent: BasePDA + parent: BaseMedicalPDA id: SeniorPhysicianPDA name: senior physician PDA description: Smells faintly like iron and chemicals. Has a built-in health analyzer. @@ -956,10 +1042,6 @@ accentVColor: "#B34200" - type: Icon state: pda-seniorphysician - - type: HealthAnalyzer - scanDelay: 1 - scanningEndSound: - path: "/Audio/Items/Medical/healthscanner.ogg" - type: entity parent: BasePDA @@ -975,3 +1057,47 @@ accentVColor: "#DFDFDF" - type: Icon state: pda-seniorofficer + - type: CartridgeLoader # DeltaV - Crime Assist + preinstalled: + - CrewManifestCartridge + - NotekeeperCartridge + - NewsReadCartridge + - CrimeAssistCartridge + +- type: entity + parent: SyndiPDA + id: PiratePDA + name: pirate PDA + description: Yargh! + components: + - type: Pda + id: PirateIDCard + state: pda-pirate + - type: Icon + state: pda-pirate + +- type: entity + parent: BaseMedicalPDA + id: SyndiAgentPDA + name: syndicate agent PDA + description: For those days when healing normal syndicates aren't enough, try healing nuclear operatives instead! + components: + - type: Pda + id: SyndicateIDCard + state: pda-syndi-agent + - type: PdaBorderColor + borderColor: "#891417" + - type: Icon + state: pda-syndi-agent + - type: CartridgeLoader + uiKey: enum.PdaUiKey.Key + preinstalled: + - NotekeeperCartridge + cartridgeSlot: + priority: -1 + name: Cartridge + ejectSound: /Audio/Machines/id_swipe.ogg + insertSound: /Audio/Weapons/Guns/MagIn/batrifle_magin.ogg + whitelist: + components: + - Cartridge diff --git a/Resources/Prototypes/Entities/Objects/Devices/pinpointer.yml b/Resources/Prototypes/Entities/Objects/Devices/pinpointer.yml index 92e882571b..7038eef2ea 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pinpointer.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pinpointer.yml @@ -1,6 +1,6 @@ - type: entity name: pinpointer - description: A handheld tracking device. While typically far more capable, this one has been configured to lock onto certain signals. + description: A handheld tracking device. While typically far more capable, this one has been configured to lock onto certain signals. Keep upright to retain accuracy. parent: BaseItem id: PinpointerBase abstract: true @@ -17,6 +17,9 @@ map: ["enum.PinpointerLayers.Screen"] shader: unshaded visible: false + - type: Icon + sprite: Objects/Devices/pinpointer.rsi + state: pinpointer - type: Item sprite: Objects/Devices/pinpointer.rsi - type: Pinpointer @@ -45,21 +48,39 @@ component: NukeDisk targetName: nuclear authentication disk +- type: entity + name: syndicate pinpointer + description: Produced specifically for nuclear operative missions, get that disk! + id: PinpointerSyndicateNuclear + parent: PinpointerBase + components: + - type: Icon + state: pinpointer-syndicate + - type: Pinpointer + component: NukeDisk + targetName: nuclear authentication disk + - type: entity name: universal pinpointer - description: A handheld tracking device that locks onto any physical entity while off. + description: A handheld tracking device. While typically far more capable, this one has been configured to lock onto certain signals. Keep upright to retain accuracy. id: PinpointerUniversal parent: PinpointerBase components: - - type: Pinpointer - updateTargetName: true - canRetarget: true + - type: Icon + state: pinpointer-way + - type: Pinpointer + updateTargetName: true + canRetarget: true - type: entity parent: PinpointerBase + name: station pinpointer + description: A handheld tracking device that leads to the direction of any nearby station. id: PinpointerStation suffix: Station components: + - type: Icon + state: pinpointer-station - type: Pinpointer component: BecomesStation targetName: the station diff --git a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_misc.yml b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_misc.yml index 15581cbd8d..dc56c89f69 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_misc.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_misc.yml @@ -62,6 +62,19 @@ verb: prayer-verbs-call verbImage: null +- type: entity + parent: PhoneInstrument + id: PhoneInstrumentSyndicate + name: blood-red phone + description: For evil people to call their friends. + components: + - type: Sprite + sprite: Objects/Fun/Instruments/blood_red_phone.rsi + state: icon + - type: Prayable + sentMessage: prayer-popup-notify-syndicate-sent + notifiactionPrefix: prayer-chat-notify-syndicate + - type: entity parent: BaseHandheldInstrument id: HelicopterInstrument diff --git a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_percussion.yml b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_percussion.yml index 1ab803c5e2..ddf1ec413f 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_percussion.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_percussion.yml @@ -108,6 +108,9 @@ - type: Sprite sprite: Objects/Fun/Instruments/woodblock.rsi state: icon + - type: Tag + tags: + - PercussionInstrument - type: entity parent: BaseHandheldInstrument diff --git a/Resources/Prototypes/Entities/Objects/Fun/crayons.yml b/Resources/Prototypes/Entities/Objects/Fun/crayons.yml index 3ed188bd8e..cf03c9733e 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/crayons.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/crayons.yml @@ -235,10 +235,10 @@ sprite: Objects/Fun/crayons.rsi state: box - type: Storage - capacity: 7 + capacity: 8 - type: Item sprite: Objects/Fun/crayons.rsi - size: 7 + size: 8 heldPrefix: box - type: StorageFill contents: @@ -249,6 +249,7 @@ - id: CrayonBlue - id: CrayonPurple - id: CrayonBlack + - id: CrayonWhite - type: ItemMapper mapLayers: black_box: @@ -279,4 +280,8 @@ whitelist: tags: - CrayonYellow + white_box: + whitelist: + tags: + - CrayonWhite - type: Appearance diff --git a/Resources/Prototypes/Entities/Objects/Fun/darts.yml b/Resources/Prototypes/Entities/Objects/Fun/darts.yml index bd4163d974..617c20eb9b 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/darts.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/darts.yml @@ -114,6 +114,21 @@ - type: Item sprite: Objects/Fun/Darts/dart_yellow.rsi +- type: entity + parent: Dart + id: HypoDart + suffix: HypoDart + components: + - type: SolutionContainerManager + solutions: + melee: + maxVol: 7 + - type: SolutionInjectOnCollide + transferAmount: 7 + blockSlots: NONE + - type: SolutionTransfer + maxTransferAmount: 7 + - type: entity name: dartboard id: TargetDarts @@ -174,3 +189,19 @@ path: /Audio/Effects/tree_fell.ogg - !type:DoActsBehavior acts: [ "Destruction" ] + +- type: entity + parent: BaseItem + id: HypoDartBox + name: hypodart box + suffix: HypoDart + description: A small box containing an hypodart. Packaging disintegrates when opened, leaving no evidence behind. + components: + - type: Sprite + sprite: Objects/Fun/Darts/dartbox.rsi + state: icon + - type: SpawnItemsOnUse + items: + - id: HypoDart + sound: + path: /Audio/Effects/unwrap.ogg \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Fun/dice.yml b/Resources/Prototypes/Entities/Objects/Fun/dice.yml index 6903a0bcac..e84e78b6eb 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/dice.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/dice.yml @@ -61,9 +61,10 @@ components: - type: Dice sides: 10 - currentValue: 10 + offset: 1 + currentValue: 0 - type: Sprite - state: d10_10 + state: d10_0 - type: entity parent: BaseDice diff --git a/Resources/Prototypes/Entities/Objects/Fun/figurines.yml b/Resources/Prototypes/Entities/Objects/Fun/figurines.yml index c491ef264b..ef4f08d7fc 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/figurines.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/figurines.yml @@ -455,3 +455,12 @@ components: - type: Sprite state: skeletonprize + +- type: entity + parent: BaseFigurine + id: ToyFigurineThief + name: thief character figure + description: Hiding in the shadows... + components: + - type: Sprite + state: thiefcharacter diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index bdd26d79dc..1c4fbff3d7 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -533,13 +533,13 @@ path: /Audio/Machines/Nuke/nuke_alarm.ogg params: volume: -5 - maxdistance: 10 + maxDistance: 10 - type: EmitSoundOnActivate sound: path: /Audio/Machines/Nuke/nuke_alarm.ogg params: volume: -5 - maxdistance: 10 + maxDistance: 10 - type: entity parent: BasePlushie @@ -821,6 +821,7 @@ modifier: 0.001 - type: entity + parent: BaseItem id: ToySword name: toy sword description: New Sandy-Cat plastic sword! Comes with realistic sound and full color! Looks almost like the real thing! @@ -830,7 +831,7 @@ colorOptions: - DodgerBlue - type: Sprite - sprite: Objects/Weapons/Melee/e_sword.rsi + sprite: Objects/Fun/toy_sword.rsi layers: - state: e_sword - state: e_sword_blade @@ -840,7 +841,7 @@ map: [ "blade" ] - type: Item size: 5 - sprite: Objects/Weapons/Melee/e_sword.rsi + sprite: Objects/Fun/toy_sword.rsi - type: UseDelay delay: 1.0 - type: PointLight @@ -1067,6 +1068,8 @@ reagents: - ReagentId: SpaceGlue Quantity: 100 + - type: TrashOnSolutionEmpty + solution: drink - type: entity parent: BasePlushie @@ -1091,3 +1094,12 @@ - type: Construction # DeltaV - Mothroach hide craft, see Prototypes/Nyanotrasen/Recipes/Crafting/Graphs/fun/mothplushie.yml graph: MothPlushie node: plush + +- type: entity + parent: BasePlushie + id: PlushiePenguin + name: penguin plushie + description: I use arch btw! + components: + - type: Sprite + state: plushie_penguin diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml index 2c1a8e628d..0cdeae4e6d 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml @@ -36,6 +36,8 @@ - !type:PlaySoundBehavior sound: collection: GlassBreak + params: + volume: -4 - !type:SpawnEntitiesBehavior spawn: ShardGlass: @@ -72,6 +74,14 @@ - type: Construction graph: Glass node: SheetGlass + - type: Extractable + grindableSolutionName: glass + - type: SolutionContainerManager + solutions: + glass: + reagents: + - ReagentId: Silicon + Quantity: 10 - type: entity parent: SheetGlass @@ -155,6 +165,8 @@ - !type:PlaySoundBehavior sound: collection: GlassBreak + params: + volume: -4 - !type:SpawnEntitiesBehavior spawn: ShardGlassReinforced: @@ -176,6 +188,18 @@ count: 1 - type: Item size: 1 + - type: Extractable + grindableSolutionName: rglass + - type: SolutionContainerManager + solutions: + rglass: + reagents: + - ReagentId: Silicon + Quantity: 10 + - ReagentId: Iron + Quantity: 4.5 + - ReagentId: Carbon + Quantity: 0.5 - type: entity parent: SheetGlassBase @@ -220,6 +244,8 @@ - !type:PlaySoundBehavior sound: collection: GlassBreak + params: + volume: -4 - !type:SpawnEntitiesBehavior spawn: ShardGlassPlasma: @@ -241,6 +267,16 @@ count: 1 - type: Item size: 1 + - type: Extractable + grindableSolutionName: pglass + - type: SolutionContainerManager + solutions: + pglass: + reagents: + - ReagentId: Silicon + Quantity: 10 + - ReagentId: Plasma + Quantity: 10 - type: entity parent: SheetPGlass @@ -269,6 +305,20 @@ - type: Construction graph: Glass node: SheetRPGlass + - type: Extractable + grindableSolutionName: rpglass + - type: SolutionContainerManager + solutions: + rpglass: + reagents: + - ReagentId: Silicon + Quantity: 10 + - ReagentId: Plasma + Quantity: 10 + - ReagentId: Iron + Quantity: 4.5 + - ReagentId: Carbon + Quantity: 0.5 - type: entity parent: SheetRPGlass @@ -326,6 +376,8 @@ - !type:PlaySoundBehavior sound: collection: GlassBreak + params: + volume: -4 - !type:SpawnEntitiesBehavior spawn: ShardGlassUranium: @@ -333,6 +385,16 @@ max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] + - type: Extractable + grindableSolutionName: uglass + - type: SolutionContainerManager + solutions: + uglass: + reagents: + - ReagentId: Silicon + Quantity: 10 + - ReagentId: Uranium + Quantity: 10 - type: entity parent: SheetUGlass @@ -374,7 +436,20 @@ - type: Construction graph: Glass node: SheetRUGlass - + - type: Extractable + grindableSolutionName: ruglass + - type: SolutionContainerManager + solutions: + ruglass: + reagents: + - ReagentId: Silicon + Quantity: 10 + - ReagentId: Uranium + Quantity: 10 + - ReagentId: Iron + Quantity: 4.5 + - ReagentId: Carbon + Quantity: 0.5 - type: entity parent: SheetRUGlass id: SheetRUGlass1 diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml index 69b7f83ddb..8559b77e3a 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml @@ -63,11 +63,9 @@ steel: reagents: - ReagentId: Iron - Quantity: 22 + Quantity: 9 - ReagentId: Carbon - Quantity: 2.5 - - ReagentId: Lead - Quantity: 0.5 + Quantity: 1 - type: entity parent: SheetSteel @@ -133,6 +131,18 @@ - type: Item heldPrefix: plasteel - type: Appearance + - type: Extractable + grindableSolutionName: plasteel + - type: SolutionContainerManager + solutions: + plasteel: + reagents: + - ReagentId: Plasma + Quantity: 10 + - ReagentId: Iron + Quantity: 9 + - ReagentId: Carbon + Quantity: 1 - type: entity parent: SheetPlasteel diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml index 3cb6f027a9..21c7c505a5 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml @@ -37,6 +37,10 @@ - paper - paper_2 - paper_3 + - type: Material + - type: PhysicalComposition + materialComposition: + Paper: 100 - type: Sprite state: paper_3 layers: @@ -45,6 +49,15 @@ - type: Item heldPrefix: paper - type: Appearance + - type: Extractable + grindableSolutionName: paper + - type: SolutionContainerManager + solutions: + paper: + reagents: + - ReagentId: Cellulose + Quantity: 3 + - type: entity parent: SheetPaper @@ -140,6 +153,16 @@ heldPrefix: plastic size: 30 - type: Appearance + - type: Extractable + grindableSolutionName: plastic + - type: SolutionContainerManager + solutions: + plastic: + reagents: + - ReagentId: Oil + Quantity: 5 + - ReagentId: Phosphorus + Quantity: 5 - type: entity parent: SheetPlastic @@ -202,7 +225,9 @@ food: reagents: - ReagentId: Uranium - Quantity: 10 + Quantity: 8 + - ReagentId: Radium + Quantity: 2 - type: entity parent: SheetUranium @@ -244,7 +269,16 @@ - type: Item sprite: Objects/Materials/Sheets/meaterial.rsi heldPrefix: meat - - type: Appearance + - type: Extractable + grindableSolutionName: meatsheet + - type: SolutionContainerManager + solutions: + meatsheet: + reagents: + - ReagentId: Protein + Quantity: 7 + - ReagentId: Fat + Quantity: 3 - type: entity parent: MaterialSheetMeat diff --git a/Resources/Prototypes/Entities/Objects/Materials/crystal_shard.yml b/Resources/Prototypes/Entities/Objects/Materials/crystal_shard.yml new file mode 100644 index 0000000000..797cee6b4f --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Materials/crystal_shard.yml @@ -0,0 +1,138 @@ +- type: entity + abstract: true + parent: BaseItem + id: ShardCrystalBase + name: crystal shard + description: A small piece of crystal. + components: + - type: Sharp + - type: Sprite + layers: + - sprite: Objects/Materials/Shards/crystal.rsi + state: shard1 + map: [ "enum.DamageStateVisualLayers.Base" ] + - type: RandomSprite + available: + - enum.DamageStateVisualLayers.Base: + shard1: "" + - enum.DamageStateVisualLayers.Base: + shard2: "" + - enum.DamageStateVisualLayers.Base: + shard3: "" + - type: SpaceGarbage + - type: ItemCooldown + - type: MeleeWeapon + attackRate: 1.5 + damage: + types: + Slash: 3.5 + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Glass + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: StaticPrice + price: 50 + +- type: entity + parent: ShardCrystalBase + id: ShardCrystalCyan + name: cyan crystal shard + description: A small piece of crystal. + components: + - type: Sprite + color: "#47f8ff" + - type: PointLight + radius: 2 + energy: 2.5 + color: "#47f8ff" + - type: Tag + tags: + - Trash + - CrystalCyan + +- type: entity + parent: ShardCrystalBase + name: blue crystal shard + id: ShardCrystalBlue + components: + - type: Sprite + color: "#39a1ff" + - type: PointLight + radius: 2 + energy: 2.5 + color: "#39a1ff" + - type: Tag + tags: + - Trash + - CrystalBlue + +- type: entity + parent: ShardCrystalBase + id: ShardCrystalOrange + name: orange crystal shard + components: + - type: Sprite + color: "#ff8227" + - type: PointLight + radius: 2 + energy: 2.5 + color: "#ff8227" + - type: Tag + tags: + - Trash + - CrystalOrange + +- type: entity + parent: ShardCrystalBase + id: ShardCrystalPink + name: pink crystal shard + components: + - type: Sprite + color: "#ff66cc" + - type: PointLight + radius: 2 + energy: 2.5 + color: "#ff66cc" + - type: Tag + tags: + - Trash + - CrystalPink + +- type: entity + parent: ShardCrystalBase + id: ShardCrystalGreen + name: green crystal shard + components: + - type: Sprite + color: "#52ff39" + - type: PointLight + radius: 2 + energy: 2.5 + color: "#52ff39" + - type: Tag + tags: + - Trash + - CrystalGreen + +- type: entity + parent: ShardCrystalBase + id: ShardCrystalRed + name: red crystal shard + components: + - type: Sprite + color: "#fb4747" + - type: PointLight + radius: 2 + energy: 2.5 + color: "#fb4747" + - type: Tag + tags: + - Trash + - CrystalRed diff --git a/Resources/Prototypes/Entities/Objects/Materials/ingots.yml b/Resources/Prototypes/Entities/Objects/Materials/ingots.yml index 61aefee332..eef2b8ce00 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/ingots.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/ingots.yml @@ -51,7 +51,15 @@ - type: Item heldPrefix: gold - type: Appearance - + - type: Extractable + grindableSolutionName: gold + - type: SolutionContainerManager + solutions: + gold: + reagents: + - ReagentId: Gold + Quantity: 10 + - type: entity parent: IngotGold id: IngotGold1 @@ -90,6 +98,14 @@ - type: Item heldPrefix: silver - type: Appearance + - type: Extractable + grindableSolutionName: gold + - type: SolutionContainerManager + solutions: + gold: + reagents: + - ReagentId: Silver + Quantity: 10 - type: entity parent: IngotSilver diff --git a/Resources/Prototypes/Entities/Objects/Materials/materials.yml b/Resources/Prototypes/Entities/Objects/Materials/materials.yml index 7386eaee4d..1c0e8a2ae9 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/materials.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/materials.yml @@ -49,6 +49,14 @@ - type: Appearance - type: Item size: 30 + - type: Extractable + grindableSolutionName: cardboard + - type: SolutionContainerManager + solutions: + cardboard: + reagents: + - ReagentId: Cellulose + Quantity: 6 - type: entity parent: MaterialCardboard @@ -211,6 +219,13 @@ count: 1 - type: Item size: 1 + - type: SolutionContainerManager + solutions: + food: + maxVol: 5 + reagents: #Hell if I know what durathread is made out of. + - ReagentId: Fiber + Quantity: 6 - type: entity parent: MaterialBase @@ -237,6 +252,19 @@ - type: Appearance - type: Item heldPrefix: wood + - type: Tag + tags: + - Wooden + - DroneUsable + - RawMaterial + - type: Extractable + grindableSolutionName: wood + - type: SolutionContainerManager + solutions: + wood: + reagents: + - ReagentId: Cellulose + Quantity: 10 - type: entity parent: MaterialWoodPlank @@ -353,6 +381,14 @@ - type: Item heldPrefix: diamond size: 60 + - type: Extractable + grindableSolutionName: diamond + - type: SolutionContainerManager + solutions: + diamond: + reagents: + - ReagentId: Carbon + Quantity: 20 - type: entity parent: MaterialDiamond @@ -394,6 +430,11 @@ reagents: - ReagentId: Fiber Quantity: 5 + - type: Extractable + juiceSolution: + reagents: + - ReagentId: Fiber + Quantity: 3 - type: Tag tags: - ClothMade @@ -502,6 +543,11 @@ - cobwebs ignoreReagents: - Fiber + - type: Extractable + juiceSolution: + reagents: + - ReagentId: Fiber + Quantity: 3 - type: SolutionContainerManager solutions: food: diff --git a/Resources/Prototypes/Entities/Objects/Materials/ore.yml b/Resources/Prototypes/Entities/Objects/Materials/ore.yml index f27d1b770e..619857424d 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/ore.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/ore.yml @@ -210,3 +210,44 @@ count: 1 - type: Item size: 2 + +- type: entity + parent: OreBase + id: Coal + name: coal + suffix: Full + components: + - type: Stack + stackType: Coal + - type: Sprite + state: coal + - type: Material + - type: Extractable + grindableSolutionName: coal + - type: SolutionContainerManager + solutions: + coal: + reagents: + - ReagentId: Carbon + Quantity: 8.4 + - ReagentId: Ammonia + Quantity: 0.8 + - ReagentId: Hydrogen + Quantity: 0.5 + - ReagentId: Sulfur + Quantity: 0.2 + - ReagentId: Mercury + Quantity: 0.1 + - type: PhysicalComposition + materialComposition: + Coal: 500 + +- type: entity + parent: Coal + id: Coal1 + suffix: Single + components: + - type: Stack + count: 1 + - type: Item + size: 2 diff --git a/Resources/Prototypes/Entities/Objects/Materials/parts.yml b/Resources/Prototypes/Entities/Objects/Materials/parts.yml index e75704c2a4..5792fec1d9 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/parts.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/parts.yml @@ -29,6 +29,9 @@ name: metal rods suffix: Full components: + - type: PhysicalComposition + materialComposition: + Steel: 50 #Half of a regular steel sheet to reflect the crafting recipe - type: Stack stackType: MetalRod baseLayer: base @@ -58,6 +61,16 @@ price: 0 - type: StackPrice price: 5 + - type: Extractable + grindableSolutionName: rod + - type: SolutionContainerManager + solutions: + rod: + reagents: + - ReagentId: Iron + Quantity: 4.5 + - ReagentId: Carbon + Quantity: 0.5 - type: entity parent: PartRodMetal diff --git a/Resources/Prototypes/Entities/Objects/Materials/shards.yml b/Resources/Prototypes/Entities/Objects/Materials/shards.yml index affd08edb1..1d92d4f4cb 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/shards.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/shards.yml @@ -100,6 +100,14 @@ tags: - GlassShard - Trash + - type: Extractable + grindableSolutionName: shardglass + - type: SolutionContainerManager + solutions: + shardglass: + reagents: + - ReagentId: Silicon + Quantity: 5 #Half of the value of regular glass. TECHNICALLY, welding a single shard of glass gives you the full thing back with just 1 sheet, but that is stupid so I am making it half. - type: entity parent: ShardBase @@ -121,6 +129,14 @@ tags: - ReinforcedGlassShard - Trash + - type: Extractable + grindableSolutionName: shardrglass + - type: SolutionContainerManager + solutions: + shardrglass: + reagents: + - ReagentId: Silicon + Quantity: 5 #I don't care enough to divide all of the reinforced glass materials by 2 because reinforced glass shards are due for removal anyways. - type: entity parent: ShardBase @@ -142,6 +158,16 @@ tags: - PlasmaGlassShard - Trash + - type: Extractable + grindableSolutionName: shardpglass + - type: SolutionContainerManager + solutions: + shardpglass: + reagents: + - ReagentId: Silicon + Quantity: 5 + - ReagentId: Plasma + Quantity: 5 - type: entity parent: ShardBase @@ -164,4 +190,13 @@ tags: - UraniumGlassShard - Trash - + - type: Extractable + grindableSolutionName: sharduglass + - type: SolutionContainerManager + solutions: + sharduglass: + reagents: + - ReagentId: Silicon + Quantity: 5 + - ReagentId: Uranium + Quantity: 5 diff --git a/Resources/Prototypes/Entities/Objects/Misc/candles.yml b/Resources/Prototypes/Entities/Objects/Misc/candles.yml new file mode 100644 index 0000000000..d86b20caf6 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Misc/candles.yml @@ -0,0 +1,487 @@ +- type: entity + name: candle + parent: BaseItem + id: Candle + description: A thin wick threaded through fat. + components: + - type: Sprite + noRot: true + sprite: Objects/Misc/candles.rsi + layers: + - state: candle-big + color: "#decb8e" + - type: Item + size: 2 + - type: Appearance + - type: Reactive + groups: + Flammable: [ Touch ] + Extinguish: [ Touch ] + - type: ExtinguishOnInteract + extinguishAttemptSound: + path: /Audio/Items/candle_blowing.ogg + params: + variation: 0.05 + volume: 10 + - type: UseDelay + - type: Flammable + fireSpread: false + canResistFire: false + alwaysCombustible: true + canExtinguish: true + firestacksOnIgnite: 3.0 + firestackFade: -0.01 + damage: + types: + Heat: 0.1 + - type: FireVisuals + sprite: Objects/Misc/candles.rsi + normalState: fire-big + - type: ToggleableLightVisuals + spriteLayer: null + inhandVisuals: + left: + - state: inhand-left-flame + shader: unshaded + right: + - state: inhand-right-flame + shader: unshaded + - type: Damageable + damageModifierSet: Wood + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + +- type: entity + name: red candle + parent: Candle + id: CandleRed + components: + - type: Sprite + layers: + - state: candle-big + color: "#a12349" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#a12349" + - state: inhand-left-flame + right: + - state: inhand-right + color: "#a12349" + +- type: entity + name: blue candle + parent: Candle + id: CandleBlue + components: + - type: Sprite + layers: + - state: candle-big + color: "#425d7d" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#425d7d" + right: + - state: inhand-right + color: "#425d7d" + +- type: entity + name: black candle + parent: Candle + id: CandleBlack + components: + - type: Sprite + layers: + - state: candle-big + color: "#1b1724" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#1b1724" + right: + - state: inhand-right + color: "#1b1724" + +- type: entity + name: green candle + parent: Candle + id: CandleGreen + components: + - type: Sprite + layers: + - state: candle-big + color: "#5d997e" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#5d997e" + right: + - state: inhand-right + color: "#5d997e" + +- type: entity + name: purple candle + parent: Candle + id: CandlePurple + components: + - type: Sprite + layers: + - state: candle-big + color: "#984aa1" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#984aa1" + right: + - state: inhand-right + color: "#984aa1" + + +- type: entity + name: small candle + parent: Candle + id: CandleSmall + components: + - type: Item + size: 1 + - type: Sprite + layers: + - state: candle-small + color: "#e2ca90" + - type: FireVisuals + normalState: fire-small + - type: Flammable + firestacksOnIgnite: 2.0 + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 60 + behaviors: + - !type:SpawnEntitiesBehavior + - !type:DoActsBehavior + acts: [ "Destruction" ] + +- type: entity + name: small red candle + parent: CandleSmall + id: CandleRedSmall + components: + - type: Sprite + layers: + - state: candle-small + color: "#a12349" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#a12349" + right: + - state: inhand-right + color: "#a12349" + +- type: entity + name: small blue candle + parent: CandleSmall + id: CandleBlueSmall + components: + - type: Sprite + layers: + - state: candle-small + color: "#425d7d" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#425d7d" + right: + - state: inhand-right + color: "#425d7d" + +- type: entity + name: small black candle + parent: CandleSmall + id: CandleBlackSmall + components: + - type: Sprite + layers: + - state: candle-small + color: "#1b1724" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#1b1724" + right: + - state: inhand-right + color: "#1b1724" + +- type: entity + name: small green candle + parent: CandleSmall + id: CandleGreenSmall + components: + - type: Sprite + layers: + - state: candle-small + color: "#5d997e" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#5d997e" + right: + - state: inhand-right + color: "#5d997e" + +- type: entity + name: small purple candle + parent: CandleSmall + id: CandlePurpleSmall + components: + - type: Sprite + layers: + - state: candle-small + color: "#984aa1" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#984aa1" + right: + - state: inhand-right + color: "#984aa1" + +#Purely decorative candles for mappers. Do not have any functionality. + +- type: entity + name: magic candle + description: It's either magic or high tech, but this candle never goes out. On the other hand, its flame is quite cold. + parent: BaseItem + suffix: Decorative + id: CandleInfinite + components: + - type: Sprite + noRot: true + sprite: Objects/Misc/candles.rsi + layers: + - state: candle-big + color: "#decb8e" + - state: fire-big + shader: unshaded + - type: PointLight + color: "#e39c40" + radius: 2.5 + power: 10 + +- type: entity + name: magic red candle + parent: CandleInfinite + id: CandleRedInfinite + components: + - type: Sprite + layers: + - state: candle-big + color: "#a12349" + - state: fire-big + shader: unshaded + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#a12349" + right: + - state: inhand-right + color: "#a12349" + +- type: entity + name: magic blue candle + parent: CandleInfinite + id: CandleBlueInfinite + components: + - type: Sprite + layers: + - state: candle-big + color: "#425d7d" + - state: fire-big + shader: unshaded + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#425d7d" + right: + - state: inhand-right + color: "#425d7d" + +- type: entity + name: magic black candle + parent: CandleInfinite + id: CandleBlackInfinite + components: + - type: Sprite + layers: + - state: candle-big + color: "#1b1724" + - state: fire-big + shader: unshaded + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#1b1724" + right: + - state: inhand-right + color: "#1b1724" + +- type: entity + name: magic green candle + parent: CandleInfinite + id: CandleGreenInfinite + components: + - type: Sprite + layers: + - state: candle-big + color: "#5d997e" + - state: fire-big + shader: unshaded + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#5d997e" + right: + - state: inhand-right + color: "#5d997e" + +- type: entity + name: magic purple candle + parent: CandleInfinite + id: CandlePurpleInfinite + components: + - type: Sprite + layers: + - state: candle-big + color: "#984aa1" + - state: fire-big + shader: unshaded + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#984aa1" + right: + - state: inhand-right + color: "#984aa1" + +- type: entity + name: small magic red candle + parent: CandleInfinite + id: CandleRedSmallInfinite + components: + - type: Sprite + layers: + - state: candle-small + color: "#a12349" + - state: fire-small + shader: unshaded + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#a12349" + right: + - state: inhand-right + color: "#a12349" + +- type: entity + name: small magic blue candle + parent: CandleInfinite + id: CandleBlueSmallInfinite + components: + - type: Sprite + layers: + - state: candle-small + color: "#425d7d" + - state: fire-small + shader: unshaded + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#425d7d" + right: + - state: inhand-right + color: "#425d7d" + +- type: entity + name: small magic black candle + parent: CandleInfinite + id: CandleBlackSmallInfinite + components: + - type: Sprite + layers: + - state: candle-small + color: "#1b1724" + - state: fire-small + shader: unshaded + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#1b1724" + right: + - state: inhand-right + color: "#1b1724" + +- type: entity + name: small magic green candle + parent: CandleInfinite + id: CandleGreenSmallInfinite + components: + - type: Sprite + layers: + - state: candle-small + color: "#5d997e" + - state: fire-small + shader: unshaded + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#5d997e" + right: + - state: inhand-right + color: "#5d997e" + +- type: entity + name: small magic purple candle + parent: CandleInfinite + id: CandlePurpleSmallInfinite + components: + - type: Sprite + layers: + - state: candle-small + color: "#984aa1" + - state: fire-small + shader: unshaded + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#984aa1" + right: + - state: inhand-right + color: "#984aa1" diff --git a/Resources/Prototypes/Entities/Objects/Misc/candy_bowl.yml b/Resources/Prototypes/Entities/Objects/Misc/candy_bowl.yml index 94b459e00a..843b402a6c 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/candy_bowl.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/candy_bowl.yml @@ -39,6 +39,8 @@ - !type:PlaySoundBehavior sound: collection: GlassBreak + params: + volume: -4 - !type:SpawnEntitiesBehavior spawn: ShardGlass: diff --git a/Resources/Prototypes/Entities/Objects/Misc/handy_flags.yml b/Resources/Prototypes/Entities/Objects/Misc/handy_flags.yml new file mode 100644 index 0000000000..42ebf32f3c --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Misc/handy_flags.yml @@ -0,0 +1,59 @@ +- type: entity + parent: BaseItem + id: BlankHandyFlag + name: blank handheld flag + description: "Some piece of white cloth wound on a stick." + components: + - type: Sprite + sprite: Objects/Misc/Handy_Flags/blank_handy_flag.rsi + state: icon + - type: Item + sprite: Objects/Misc/Handy_Flags/blank_handy_flag.rsi + +- type: entity + parent: BaseItem + id: NTHandyFlag + name: Nanotrasen handheld flag + description: "Glory to NT! Wait, they really made a handheld flag for a corporation?" + components: + - type: Sprite + sprite: Objects/Misc/Handy_Flags/NT_handy_flag.rsi + state: icon + - type: Item + sprite: Objects/Misc/Handy_Flags/NT_handy_flag.rsi + +- type: entity + parent: BaseItem + id: SyndieHandyFlag + name: Syndicate handheld flag + description: "For truly rebellious patriots. Death to NT!" + components: + - type: Sprite + sprite: Objects/Misc/Handy_Flags/syndie_handy_flag.rsi + state: icon + - type: Item + sprite: Objects/Misc/Handy_Flags/syndie_handy_flag.rsi + +- type: entity + parent: BaseItem + id: LGBTQHandyFlag + name: LGBTQ handheld flag + description: "The be gay do crime handy flag." + components: + - type: Sprite + sprite: Objects/Misc/Handy_Flags/lgbtq_handy_flag.rsi + state: icon + - type: Item + sprite: Objects/Misc/Handy_Flags/lgbtq_handy_flag.rsi + +- type: entity + parent: BaseItem + id: PirateHandyFlag + name: Pirate handheld flag + description: "Holding it in your hands, show these carp that you're not kidding." + components: + - type: Sprite + sprite: Objects/Misc/Handy_Flags/pirate_handy_flag.rsi + state: icon + - type: Item + sprite: Objects/Misc/Handy_Flags/pirate_handy_flag.rsi diff --git a/Resources/Prototypes/Entities/Objects/Misc/ice_crust.yml b/Resources/Prototypes/Entities/Objects/Misc/ice_crust.yml new file mode 100644 index 0000000000..ad1f876675 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Misc/ice_crust.yml @@ -0,0 +1,54 @@ +- type: entity + id: IceCrust + name: ice crust + description: It's cold and slippery. + placement: + mode: SnapgridCenter + snap: + - Wall + components: + - type: MeleeSound + soundGroups: + Brute: + path: + "/Audio/Weapons/slash.ogg" + - type: Sprite + sprite: Objects/Misc/ice_crust.rsi + layers: + - state: ice + drawdepth: FloorObjects + color: "#ffffff44" + - type: Clickable + - type: Transform + anchored: true + - type: Tag + tags: [ Ice ] + - type: Physics + - type: Fixtures + fixtures: + fix1: + hard: false + density: 7 + shape: + !type:PhysShapeAabb + bounds: "-0.4,-0.4,0.4,0.4" + layer: + - MidImpassable + - type: Damageable + damageModifierSet: Wood + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 10 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: Temperature + heatDamage: + types: + Heat: 5 + coldDamage: {} + ColdDamageThreshold: 0 + - type: FrictionContacts + \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml index 87218d8f0c..a13a9d28d3 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml @@ -3,7 +3,7 @@ id: IDCardStandard name: identification card description: A card necessary to access various areas aboard the station. - noSpawn: true + abstract: true components: - type: Sprite sprite: Objects/Misc/id_cards.rsi @@ -19,6 +19,7 @@ - type: Tag tags: - DoorBumpOpener + - WhitelistChameleon #IDs with layers @@ -216,8 +217,10 @@ components: - type: Sprite layers: - - state: default + - state: silver - state: idquartermaster + - type: Item + heldPrefix: silver - type: PresetIdCard job: Quartermaster @@ -307,6 +310,19 @@ job: Bartender name: Pun Pun +- type: entity # DeltaV - Security dog Laika ID card + parent: IDCardStandard + id: SecDogIDCard + name: Security Dog ID card + components: + - type: Sprite + layers: + - state: default + - state: idsecurityofficer + - type: PresetIdCard + job: SecurityOfficer + name: Laika + - type: entity parent: IDCardStandard id: ChefIDCard @@ -458,15 +474,79 @@ - type: entity parent: CentcomIDCard id: ERTLeaderIDCard - name: ERT ID card + name: ERT leader ID card components: - type: Sprite layers: - state: gold - - state: ert_commander # we have the sprites but don't need individual ID entities for now. + - state: ert_commander + - type: IdCard + jobTitle: ERT Company Commander - type: Item heldPrefix: gold +- type: entity + parent: ERTLeaderIDCard + id: ERTChaplainIDCard + name: ERT Chaplain ID card + components: + - type: Sprite + layers: + - state: gold + - state: ert_chaplain # we have the sprite for the id but dont have chaplain ERT equipment for now. + - type: IdCard + jobTitle: ERT Soul Officer + - type: Item + heldPrefix: blue + +- type: entity + parent: ERTChaplainIDCard + id: ERTEngineerIDCard + name: ERT Engineer ID card + components: + - type: Sprite + layers: + - state: gold + - state: ert_engineer + - type: IdCard + jobTitle: ERT Field Engineer + +- type: entity + parent: ERTChaplainIDCard + id: ERTJanitorIDCard + name: ERT Janitor ID card + components: + - type: Sprite + layers: + - state: gold + - state: ert_janitor + - type: IdCard + jobTitle: ERT Custodian + +- type: entity + parent: ERTChaplainIDCard + id: ERTMedicIDCard + name: ERT Medic ID card + components: + - type: Sprite + layers: + - state: gold + - state: ert_medic + - type: IdCard + jobTitle: ERT Medical Doctor + +- type: entity + parent: ERTChaplainIDCard + id: ERTSecurityIDCard + name: ERT Security ID card + components: + - type: Sprite + layers: + - state: gold + - state: ert_security + - type: IdCard + jobTitle: ERT Field Officer + - type: entity parent: IDCardStandard id: CentcomIDCardSyndie @@ -587,10 +667,18 @@ - type: ActivatableUI key: enum.AgentIDCardUiKey.Key inHandsOnly: true + - type: Tag + tags: + - DoorBumpOpener + - type: ChameleonClothing + slot: [idcard] + default: PassengerIDCard - type: UserInterface interfaces: - key: enum.AgentIDCardUiKey.Key type: AgentIDCardBoundUserInterface + - key: enum.ChameleonUiKey.Key + type: ChameleonBoundUserInterface - type: entity name: passenger ID card @@ -629,6 +717,19 @@ - NuclearOperative - SyndicateAgent +- type: entity + parent: IDCardStandard + id: PirateIDCard + name: pirate ID card + components: + - type: Sprite + layers: + - state: pirate + - type: Access + tags: + - NuclearOperative + - SyndicateAgent + - type: entity parent: IDCardStandard id: PsychologistIDCard @@ -693,14 +794,15 @@ parent: CentcomIDCard id: CBURNIDcard name: CBURN ID card + suffix: CBURN components: - type: Sprite layers: - - state: gold - - state: idcentcom + - state: centcom - type: Item - heldPrefix: gold - + heldPrefix: blue + - type: IdCard + jobTitle: Centcom Quarantine Officer - type: entity parent: IDCardStandard diff --git a/Resources/Prototypes/Entities/Objects/Misc/implanters.yml b/Resources/Prototypes/Entities/Objects/Misc/implanters.yml index 0ca029a120..ce323261e8 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/implanters.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/implanters.yml @@ -222,6 +222,14 @@ - type: Implanter implant: DeathRattleImplant +- type: entity + id: DeathAcidifierImplanter + name: death acidifier implanter + parent: BaseImplantOnlyImplanterSyndi + components: + - type: Implanter + implant: DeathAcidifierImplant + # Security and Command implanters - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Entities/Objects/Misc/paper.yml index 5cac11dc53..59cee2ea1d 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/paper.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/paper.yml @@ -249,16 +249,39 @@ - type: PhysicalComposition materialComposition: Steel: 25 + - type: EmbeddableProjectile + offset: 0.3,0.0 + removalTime: 0.0 + - type: ThrowingAngle + angle: 315 + - type: DamageOtherOnHit + damage: + types: + Piercing: 3 + +#TODO: I want the luxury pen to write a cool font like Merriweather in the future. + +- type: entity + name: luxury pen + parent: Pen + id: LuxuryPen + description: A fancy and expensive pen that you only deserve to own if you're qualified to handle vast amounts of paperwork. + components: + - type: Sprite + state: luxury_pen + - type: Item + heldPrefix: luxury_pen - type: entity name: Cybersun pen - parent: BaseItem + parent: Pen id: CyberPen description: A high-tech pen straight from Cybersun's legal department, capable of refracting hard-light at impossible angles through its diamond tip in order to write. components: - type: Tag tags: - Write + - WriteIgnoreStamps - Pickaxe - type: Sprite sprite: Objects/Misc/bureaucracy.rsi @@ -269,6 +292,10 @@ damage: types: Piercing: 15 + - type: DamageOtherOnHit + damage: + types: + Piercing: 15 - type: Tool qualities: - Screwing @@ -334,6 +361,7 @@ # white: "#e6e6e6" # grey: "#999999" # black: "#3f3f3f" +# green: "#43bc38" - type: Item sprite: Objects/Misc/bureaucracy.rsi size: 5 @@ -436,6 +464,31 @@ color: "#3f3f3f" - state: folder-base +- type: entity + id: BoxFolderGreen + parent: BoxFolderBase + suffix: Green + components: + - type: Sprite + sprite: Objects/Misc/bureaucracy.rsi + layers: + - state: folder-colormap + color: "#43bc38" + - state: folder-base + +- type: entity + id: BoxFolderCentCom + name: centcom folder + parent: BoxFolderBase + suffix: DO NOT MAP + description: CentCom's miserable little pile of secrets! + components: + - type: Sprite + sprite: Objects/Misc/bureaucracy.rsi + layers: + - state: folder-centcom + - state: folder-base + - type: entity id: BoxFolderClipboard parent: BoxFolderBase @@ -494,6 +547,31 @@ types: Blunt: 6 +- type: entity + id: BoxFolderCentComClipboard + parent: BoxFolderClipboard + name: centcom clipboard + description: A luxurious clipboard upholstered with green velvet. Often seen carried by CentCom officials, seldom seen actually used. + components: + - type: Sprite + sprite: Objects/Misc/cc-clipboard.rsi + layers: + - state: clipboard + - state: clipboard_paper + map: ["clipboard_paper"] + visible: false + - state: clipboard_pen + map: ["clipboard_pen"] + visible: false + - state: clipboard_over + - type: Item + sprite: Objects/Misc/cc-clipboard.rsi + size: 10 + - type: Clothing + slots: [belt] + quickEquip: false + sprite: Objects/Misc/cc-clipboard.rsi + - type: entity id: BoxFolderQmClipboard parent: BoxFolderBase @@ -580,7 +658,7 @@ path: /Audio/Items/Stamp/thick_stamp_sub.ogg params: volume: -2 - maxdistance: 5 + maxDistance: 5 - type: Sprite sprite: Objects/Misc/bureaucracy.rsi state: stamp-mime @@ -600,7 +678,7 @@ path: /Audio/Items/Stamp/automatic_stamp.ogg params: volume: -2 - maxdistance: 5 + maxDistance: 5 - type: entity name: captain's rubber stamp diff --git a/Resources/Prototypes/Entities/Objects/Misc/pet_carrier.yml b/Resources/Prototypes/Entities/Objects/Misc/pet_carrier.yml new file mode 100644 index 0000000000..6427cc81eb --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Misc/pet_carrier.yml @@ -0,0 +1,66 @@ +- type: entity + id: PetCarrier + name: big pet carrier + description: Allows large animals to be carried comfortably. + parent: BaseStructureDynamic + components: + - type: Sprite + noRot: true + drawdepth: Objects + sprite: Objects/Storage/petcarrier.rsi + layers: + - state: pet_carrier_base + map: ["enum.StorageVisualLayers.Base"] + - state: pet_carrier_door + map: ["enum.StorageVisualLayers.Door"] + - state: welded + visible: false + map: ["enum.WeldableLayers.BaseWelded"] + - type: Icon + sprite: Objects/Storage/petcarrier.rsi + state: icon + - type: InteractionOutline + - type: Physics + - type: MultiHandedItem + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.45 + density: 25 + mask: + - SmallMobMask + layer: + - MachineLayer + - type: EntityStorage + capacity: 1 + airtight: false + itemCanStoreMobs: true + - type: Weldable + - type: ResistLocker + - type: PlaceableSurface + isPlaceable: false + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Wood + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 50 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Appearance + - type: EntityStorageVisuals + stateDoorOpen: pet_carrier_open + stateDoorClosed: pet_carrier_door + - type: ContainerContainer + containers: + entity_storage: !type:Container + paper_label: !type:ContainerSlot + - type: ItemSlots + - type: Item + size: 9999 + sprite: Objects/Storage/petcarrier.rsi diff --git a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml index bc7a3a38ad..7b5989166c 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml @@ -1,15 +1,14 @@ - type: entity - parent: BaseItem id: BaseSubdermalImplant name: implant description: A microscopic chip that's injected under the skin. abstract: true components: - - type: SubdermalImplant - - type: Tag - tags: - - SubdermalImplant - - HideContextMenu + - type: SubdermalImplant + - type: Tag + tags: + - SubdermalImplant + - HideContextMenu #Fun implants @@ -118,8 +117,6 @@ whitelist: components: - Hands # no use giving a mouse a storage implant, but a monkey is another story... - - type: Item - size: 9999 - type: Storage capacity: 20 #10-20 should be more than enough for this - type: ContainerContainer @@ -259,6 +256,30 @@ - HideContextMenu - MacroBomb +- type: entity + parent: BaseSubdermalImplant + id: DeathAcidifierImplant + name: death-acidifier implant + description: This implant melts the user and their equipment upon death. + noSpawn: true + components: + - type: SubdermalImplant + permanent: true + implantAction: ActionActivateDeathAcidifier + - type: TriggerOnMobstateChange + mobState: + - Dead + - type: TriggerImplantAction + - type: GibOnTrigger + deleteItems: true + - type: SpawnOnTrigger + proto: Acidifier + - type: Tag + tags: + - SubdermalImplant + - HideContextMenu + - DeathAcidifier + - type: entity parent: BaseSubdermalImplant id: DeathRattleImplant diff --git a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml index 6b5e17a211..e6b0d4ce40 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml @@ -23,7 +23,7 @@ thresholds: - trigger: !type:DamageTrigger - damage: 40 + damage: 30 behaviors: - !type:DoActsBehavior acts: [ "Destruction" ] @@ -32,7 +32,10 @@ damage: 20 behaviors: - !type:PlaySoundBehavior - sound: /Audio/Effects/metalbreak.ogg + sound: + path: /Audio/Effects/metalbreak.ogg + params: + volume: -8 - !type:DoActsBehavior acts: [ "Destruction" ] - type: DamageOnLand @@ -289,6 +292,70 @@ - type: Stack stackType: FloorTileBlue +- type: entity + name: lime tile + parent: FloorTileItemBase + id: FloorTileItemLime + components: + - type: Sprite + state: lime + - type: Item + heldPrefix: steel + - type: FloorTile + outputs: + - Plating + - FloorSteelLime + - type: Stack + stackType: FloorTileLime + +- type: entity + name: mining tile + parent: FloorTileItemBase + id: FloorTileItemMining + components: + - type: Sprite + state: mining + - type: Item + heldPrefix: mining + - type: FloorTile + outputs: + - Plating + - FloorMining + - type: Stack + stackType: FloorTileMining + +- type: entity + name: dark mining tile + parent: FloorTileItemBase + id: FloorTileItemMiningDark + components: + - type: Sprite + state: miningdark + - type: Item + heldPrefix: miningdark + - type: FloorTile + outputs: + - Plating + - FloorMiningDark + - type: Stack + stackType: FloorTileMiningDark + +- type: entity + name: light mining tile + parent: FloorTileItemBase + id: FloorTileItemMiningLight + components: + - type: Sprite + state: mininglight + - type: Item + heldPrefix: mininglight + - type: FloorTile + outputs: + - Plating + - FloorMiningLight + - type: Stack + stackType: FloorTileMiningLight + # Departamental - type: entity name: freezer tile @@ -875,3 +942,39 @@ - type: Construction graph: WebObjects node: tile + +# Faux science tiles + +- type: entity + id: FloorTileItemAstroGrass + parent: FloorTileItemBase + name: astro-grass + description: Fake grass that covers up wires and even comes with realistic NanoTrimmings! + components: + - type: Sprite + state: astrograss + - type: Item + heldPrefix: grass + - type: FloorTile + outputs: + - Plating + - FloorAstroGrass + - type: Stack + stackType: FloorTileAstroGrass + +- type: entity + id: FloorTileItemAstroIce + parent: FloorTileItemBase + name: astro-ice + description: Fake ice that's as slippery as the real thing, while being easily removable! + components: + - type: Sprite + state: astroice + - type: Item + heldPrefix: snow + - type: FloorTile + outputs: + - Plating + - FloorAstroIce + - type: Stack + stackType: FloorTileAstroIce diff --git a/Resources/Prototypes/Entities/Objects/Misc/torch.yml b/Resources/Prototypes/Entities/Objects/Misc/torch.yml index f408d0d289..3ee1a7a4cd 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/torch.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/torch.yml @@ -76,4 +76,4 @@ endValue: 1.0 - type: Tag tags: - - Torch \ No newline at end of file + - Torch diff --git a/Resources/Prototypes/Entities/Objects/Power/lights.yml b/Resources/Prototypes/Entities/Objects/Power/lights.yml index 17b7ec179e..e399c66262 100644 --- a/Resources/Prototypes/Entities/Objects/Power/lights.yml +++ b/Resources/Prototypes/Entities/Objects/Power/lights.yml @@ -39,6 +39,8 @@ - !type:PlaySoundBehavior sound: collection: GlassBreak + params: + volume: -8 - !type:DoActsBehavior acts: [ "Breakage" ] - trigger: @@ -48,6 +50,8 @@ - !type:PlaySoundBehavior sound: collection: GlassBreak + params: + volume: -8 - !type:SpawnEntitiesBehavior spawn: ShardGlass: @@ -73,6 +77,37 @@ sprite: Objects/Power/light_tube.rsi - type: LightBulb bulb: Tube + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: #excess damage (nuke?). avoid computational cost of spawning entities. + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 5 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: GlassBreak + - !type:DoActsBehavior + acts: [ "Breakage" ] + - trigger: + !type:DamageTrigger + damage: 10 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: GlassBreak + - !type:SpawnEntitiesBehavior + spawn: + ShardGlass: + min: 1 + max: 1 + - !type:DoActsBehavior + acts: [ "Destruction" ] # Lighting color values gathered from # https://andi-siess.de/rgb-to-color-temperature/ @@ -101,6 +136,19 @@ startingState: Broken bulb: Bulb +- type: entity + parent: BaseLightbulb + name: service light bulb + id: ServiceLightBulb + description: A low-brightness green lightbulb used in janitorial service lights. + components: + - type: LightBulb + bulb: Bulb + color: "#CCFF60" + lightEnergy: 1.0 + lightRadius: 2 + lightSoftness: 3 + - type: entity parent: BaseLightTube name: fluorescent light tube @@ -165,3 +213,100 @@ lightSoftness: 0.5 BurningTemperature: 350 PowerUse: 100 + +- type: entity + parent: BaseLightTube + name: cyan crystal light tube + description: A high power high energy bulb which has a small colored crystal inside. + id: LightTubeCrystalCyan + components: + - type: LightBulb + color: "#47f8ff" + lightEnergy: 3 + lightRadius: 8 + lightSoftness: 0.5 + BurningTemperature: 350 + PowerUse: 60 + - type: Construction + graph: CyanLight + node: icon + +- type: entity + parent: LightTubeCrystalCyan + name: blue crystal light tube + id: LightTubeCrystalBlue + components: + - type: LightBulb + color: "#39a1ff" + lightEnergy: 3 + lightRadius: 8 + lightSoftness: 0.5 + BurningTemperature: 350 + PowerUse: 60 + - type: Construction + graph: BlueLight + node: icon + +- type: entity + parent: LightTubeCrystalCyan + name: pink crystal light tube + id: LightTubeCrystalPink + components: + - type: LightBulb + color: "#ff66cc" + lightEnergy: 3 + lightRadius: 8 + lightSoftness: 0.5 + BurningTemperature: 350 + PowerUse: 60 + - type: Construction + graph: PinkLight + node: icon + +- type: entity + parent: LightTubeCrystalCyan + name: orange crystal light tube + id: LightTubeCrystalOrange + components: + - type: LightBulb + color: "#ff8227" + lightEnergy: 3 + lightRadius: 8 + lightSoftness: 0.5 + BurningTemperature: 350 + PowerUse: 60 + - type: Construction + graph: OrangeLight + node: icon + +- type: entity + parent: LightTubeCrystalCyan + name: red crystal light tube + id: LightTubeCrystalRed + components: + - type: LightBulb + color: "#fb4747" + lightEnergy: 3 + lightRadius: 8 + lightSoftness: 0.5 + BurningTemperature: 350 + PowerUse: 60 + - type: Construction + graph: RedLight + node: icon + +- type: entity + parent: LightTubeCrystalCyan + name: green crystal light tube + id: LightTubeCrystalGreen + components: + - type: LightBulb + color: "#52ff39" + lightEnergy: 3 + lightRadius: 8 + lightSoftness: 0.5 + BurningTemperature: 350 + PowerUse: 60 + - type: Construction + graph: GreenLight + node: icon diff --git a/Resources/Prototypes/Entities/Objects/Power/powercells.yml b/Resources/Prototypes/Entities/Objects/Power/powercells.yml index 4ed3e207c5..01680dec3a 100644 --- a/Resources/Prototypes/Entities/Objects/Power/powercells.yml +++ b/Resources/Prototypes/Entities/Objects/Power/powercells.yml @@ -208,25 +208,41 @@ startingCharge: 0 - type: entity - name: small microreactor cell - description: A rechargeable standardized microreactor cell. Intended for low-power devices, it slowly recharges by itself. + parent: BasePowerCell id: PowerCellMicroreactor + name: microreactor power cell + description: A rechargeable standardized microreactor cell. Has lower capacity but slowly recharges by itself. suffix: Full - parent: BasePowerCell components: - - type: Sprite - layers: - - map: [ "enum.PowerCellVisualLayers.Base" ] - state: microreactor - - map: [ "enum.PowerCellVisualLayers.Unshaded" ] - state: o2 - shader: unshaded - - type: Battery - maxCharge: 50 - startingCharge: 50 - - type: BatterySelfRecharger - autoRecharge: true - autoRechargeRate: 0.16667 #takes about 5 minutes to charge itself back to full + - type: Sprite + layers: + - map: [ "enum.PowerCellVisualLayers.Base" ] + state: microreactor + - map: [ "enum.PowerCellVisualLayers.Unshaded" ] + state: o2 + shader: unshaded + - type: Battery + maxCharge: 720 + startingCharge: 720 + - type: BatterySelfRecharger + autoRecharge: true + autoRechargeRate: 12 # takes 1 minute to charge itself back to full + +- type: entity + parent: PowerCellMicroreactor + id: PowerCellMicroreactorPrinted + suffix: Empty + components: + - type: Sprite + layers: + - map: [ "enum.PowerCellVisualLayers.Base" ] + state: microreactor + - map: [ "enum.PowerCellVisualLayers.Unshaded" ] + state: o2 + shader: unshaded + visible: false + - type: Battery + startingCharge: 0 - type: entity name: antique power cell prototype diff --git a/Resources/Prototypes/Entities/Objects/Shields/shields.yml b/Resources/Prototypes/Entities/Objects/Shields/shields.yml index 8afe40bfe7..311f5b35b5 100644 --- a/Resources/Prototypes/Entities/Objects/Shields/shields.yml +++ b/Resources/Prototypes/Entities/Objects/Shields/shields.yml @@ -222,6 +222,59 @@ min: 1 max: 2 +- type: entity + name: web shield + parent: BaseShield + id: WebShield + description: A stringy shield. It's weak, and doesn't seem to do well against heat. + components: + - type: Sprite + sprite: Objects/Weapons/Melee/web-shield.rsi + state: icon + - type: Item + sprite: Objects/Weapons/Melee/web-shield.rsi + heldPrefix: icon + - type: Blocking + passiveBlockModifier: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Piercing: 0.95 + activeBlockModifier: + coefficients: + Blunt: 0.85 + Slash: 0.85 + Piercing: 0.85 + flatReductions: + Blunt: 0.5 + Slash: 0.5 + Piercing: 0.5 + - type: Construction + graph: WebObjects + node: shield + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 40 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 20 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:SpawnEntitiesBehavior + spawn: + MaterialWebSilk: + min: 1 + max: 1 + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/woodhit.ogg + #Magic/Cult Shields (give these to wizard for now) - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml b/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml index 662234ff12..798ecc2789 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml @@ -77,13 +77,9 @@ respawnTime: 300 - type: Sprite sprite: Objects/Specific/Chapel/necronomicon.rsi - state: icon - type: Item size: 15 sprite: Objects/Specific/Chapel/necronomicon.rsi - - type: Clothing - slots: - - Belt - type: entity id: ActionBibleSummon diff --git a/Resources/Prototypes/Entities/Objects/Specific/Chapel/urn.yml b/Resources/Prototypes/Entities/Objects/Specific/Chapel/urn.yml new file mode 100644 index 0000000000..e378ffedd4 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Specific/Chapel/urn.yml @@ -0,0 +1,20 @@ +- type: entity + name: Urn + description: Store the Dead smart and Compact since 2300 + parent: BaseStorageItem + id: Urn + components: + - type: Storage + capacity: 5 # Me when +# grid: +# - 0,0,0,1 +# - type: UserInterface +# interfaces: +# - key: enum.StorageUiKey.Key +# type: StorageBoundUserInterface + - type: Sprite + sprite: Objects/Specific/Chapel/chaplainurn.rsi + state: icon + - type: Item + size: 20 + sprite: Objects/Specific/Chapel/chaplainurn.rsi diff --git a/Resources/Prototypes/Entities/Objects/Specific/Chemistry/chem_bag.yml b/Resources/Prototypes/Entities/Objects/Specific/Chemistry/chem_bag.yml index 8be5fecb4f..97067c79d5 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Chemistry/chem_bag.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Chemistry/chem_bag.yml @@ -22,6 +22,7 @@ components: - Pill tags: + - Document - PillCanister - Bottle - Syringe diff --git a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml index 32697c256c..18500328c6 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml @@ -92,6 +92,16 @@ - type: Sprite sprite: Objects/Specific/Hydroponics/lemon.rsi +- type: entity + parent: SeedBase + name: packet of lemoon seeds + id: LemoonSeeds + components: + - type: Seed + seedId: lemoon + - type: Sprite + sprite: Objects/Specific/Hydroponics/lemoon.rsi + - type: entity parent: SeedBase name: packet of lime seeds @@ -519,3 +529,13 @@ seedId: pumpkin - type: Sprite sprite: Objects/Specific/Hydroponics/pumpkin.rsi + +- type: entity + parent: SeedBase + name: packet of cotton seeds + id: CottonSeeds + components: + - type: Seed + seedId: cotton + - type: Sprite + sprite: Objects/Specific/Hydroponics/cotton.rsi diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml index 333c17b217..917012017c 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml @@ -295,6 +295,49 @@ tags: - Mop insertOnInteract: false # or it conflicts with bucket logic + priority: 9 # Higher than bucket slot + plunger_slot: + name: Plunger + whitelist: + tags: + - Plunger + priority: 8 + wetfloorsign_slot4: + name: WetFloorSign + whitelist: + tags: + - WetFloorSign + priority: 7 + wetfloorsign_slot3: + name: WetFloorSign + whitelist: + tags: + - WetFloorSign + priority: 7 + wetfloorsign_slot2: + name: WetFloorSign + whitelist: + tags: + - WetFloorSign + priority: 7 + wetfloorsign_slot1: + name: WetFloorSign + whitelist: + tags: + - WetFloorSign + priority: 7 + lightreplacer_slot: + name: LightReplacer + whitelist: + tags: + - LightReplacer + priority: 6 + spraybottle_slot: + name: Spray + whitelist: + tags: + - Spray + insertOnInteract: false # or it conflicts with bucket logic priority: 5 # Higher than bucket slot bucket_slot: name: Bucket @@ -428,6 +471,13 @@ mop_slot: !type:ContainerSlot {} trashbag_slot: !type:ContainerSlot {} bucket_slot: !type:ContainerSlot {} + plunger_slot: !type:ContainerSlot {} + wetfloorsign_slot4: !type:ContainerSlot {} + wetfloorsign_slot3: !type:ContainerSlot {} + wetfloorsign_slot2: !type:ContainerSlot {} + wetfloorsign_slot1: !type:ContainerSlot {} + lightreplacer_slot: !type:ContainerSlot {} + spraybottle_slot: !type:ContainerSlot {} - type: GuideHelp guides: - Janitorial @@ -561,3 +611,6 @@ tags: - DroneUsable - Mop + - type: CleansForensics + - type: Fiber + fiberColor: fibers-white diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml index 336a2a963f..e6f989f84a 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml @@ -9,7 +9,14 @@ - Soap - type: Sprite sprite: Objects/Specific/Janitorial/soap.rsi - state: soap + layers: + - state: soap-4 + map: ["enum.SolutionContainerLayers.Fill"] + - type: SolutionContainerVisuals + maxFillLevels: 4 + fillBaseName: soap- + changeColor: false + - type: Appearance - type: Item sprite: Objects/Specific/Janitorial/soap.rsi - type: Slippery @@ -37,6 +44,34 @@ density: 10 mask: - ItemMask + - type: SolutionContainerManager + solutions: + soap: + maxVol: 50 + reagents: + - ReagentId: SoapReagent + Quantity: 50 + - type: SolutionTransfer + transferAmount: 10 + minTransferAmount: 1 + maxTransferAmount: 25 + canReceive: false + canChangeTransferAmount: true + - type: DrainableSolution + solution: soap + - type: DeleteOnSolutionEmpty + solution: soap + - type: FlavorProfile + flavors: + - clean + - type: Food + solution: soap + - type: BadFood + - type: CleansForensics + - type: Residue + residueAdjective: residue-slippery + residueColor: residue-green + - type: entity name: soap @@ -45,9 +80,23 @@ description: A Nanotrasen brand bar of soap. Smells of plasma. components: - type: Sprite - state: nt + layers: + - state: nt-4 + map: ["enum.SolutionContainerLayers.Fill"] + - type: SolutionContainerVisuals + fillBaseName: nt- - type: Item heldPrefix: nt + - type: SolutionContainerManager + solutions: + soap: + maxVol: 100 + reagents: + - ReagentId: SoapReagent + Quantity: 100 + - type: Residue + residueAdjective: residue-slippery + residueColor: residue-grey - type: entity name: soap @@ -56,9 +105,16 @@ description: A deluxe Waffle Co. brand bar of soap. Smells of condoms. components: - type: Sprite - state: deluxe + layers: + - state: deluxe-4 + map: ["enum.SolutionContainerLayers.Fill"] + - type: SolutionContainerVisuals + fillBaseName: deluxe- - type: Item heldPrefix: deluxe + - type: Residue + residueAdjective: residue-slippery + residueColor: residue-brown - type: entity name: soap @@ -67,12 +123,65 @@ description: An untrustworthy bar of soap. Smells of fear. components: - type: Sprite - state: syndie + layers: + - state: syndie-4 + map: ["enum.SolutionContainerLayers.Fill"] + - type: SolutionContainerVisuals + fillBaseName: syndie- + - type: Slippery + paralyzeTime: 5 + launchForwardsMultiplier: 2.5 + - type: Item + heldPrefix: syndie + - type: FlavorProfile + flavors: + - clean + - punishment + - type: CleansForensics + cleanDelay: 8.0 + - type: Residue + residueAdjective: residue-slippery + residueColor: residue-red + +- type: entity + name: soaplet + id: SoapletSyndie + noSpawn: true + parent: Soap + description: A tiny piece of syndicate soap. + components: + - type: Sprite + layers: + - state: syndie-soaplet - type: Slippery paralyzeTime: 5 launchForwardsMultiplier: 2.5 + - type: StepTrigger + intersectRatio: 0.04 - type: Item heldPrefix: syndie + - type: Fixtures + fixtures: + slips: + shape: + !type:PhysShapeAabb + bounds: "-0.08,-0.06,0.08,0.06" + layer: + - SlipLayer + hard: false + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.08,-0.06,0.08,0.06" + density: 1 + mask: + - ItemMask + - type: DeleteOnTrigger + - type: EmitSoundOnTrigger + sound: + path: "/Audio/Effects/Fluids/splat.ogg" + params: + volume: -20 - type: entity name: soap @@ -81,9 +190,23 @@ description: A homemade bar of soap. Smells of... well.... components: - type: Sprite - state: gibs + layers: + - state: gibs-4 + map: ["enum.SolutionContainerLayers.Fill"] + - type: SolutionContainerVisuals + fillBaseName: gibs- + - type: Slippery + paralyzeTime: 2 + - type: StepTrigger - type: Item heldPrefix: gibs + - type: FlavorProfile + flavors: + - clean + - meaty + - type: Residue + residueAdjective: residue-slippery + residueColor: residue-red - type: entity name: omega soap @@ -92,9 +215,23 @@ description: The most advanced soap known to mankind. Smells of bluespace. components: - type: Sprite - state: omega + layers: + - state: omega-4 + map: ["enum.SolutionContainerLayers.Fill"] + - type: SolutionContainerVisuals + fillBaseName: omega- - type: Slippery paralyzeTime: 7 launchForwardsMultiplier: 3 - type: Item heldPrefix: omega + - type: SolutionContainerManager + solutions: + soap: + maxVol: 240 #In the Greek alphabet, Omega is the 24th letter + reagents: + - ReagentId: SoapReagent + Quantity: 240 + - type: Residue + residueAdjective: residue-slippery + residueColor: residue-blue \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml index f88dc4f6b2..ed55afea1d 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml @@ -30,7 +30,7 @@ sprayVelocity: 2 spraySound: path: /Audio/Effects/spray2.ogg - - type: TrashOnEmpty + - type: TrashOnSolutionEmpty solution: spray - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Specific/Kitchen/foodcarts.yml b/Resources/Prototypes/Entities/Objects/Specific/Kitchen/foodcarts.yml index 22faf499f1..7438336d93 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Kitchen/foodcarts.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Kitchen/foodcarts.yml @@ -47,10 +47,10 @@ - key: enum.StorageUiKey.Key type: StorageBoundUserInterface - type: Storage - capacity: 30 + capacity: 100 #20 burgers #Delta V - type: TileFrictionModifier - modifier: 0.4 # makes it slide - + modifier: 0.4 # makes it slide + # Add this if freezing/heating container/objects thermodynamics becomes a thing #- type: PowerCellSlot @@ -63,7 +63,7 @@ # cell_slot: # name: power-cell-slot-component-slot-name-default # startingItem: PowerCellMedium - + - type: entity name: Hot Food Cart id: FoodCartHot @@ -73,11 +73,11 @@ - type: Sprite netSync: false noRot: true - sprite: Objects/Specific/Kitchen/food_carts.rsi + sprite: Objects/Specific/Kitchen/food_carts.rsi layers: - state: stand-food - type: Storage - blacklist: + blacklist: tags: - Coldsauce - Hotsauce @@ -100,7 +100,7 @@ whitelist: tags: - Hotsauce - priority: 5 + priority: 5 bbqsauce_slot: name: BBQ Sauce insertSound: /Audio/Items/bottle_clunk.ogg @@ -108,7 +108,7 @@ whitelist: tags: - BBQsauce - priority: 4 + priority: 4 ketchup_slot: name: Ketchup insertSound: /Audio/Items/bottle_clunk.ogg @@ -116,7 +116,7 @@ whitelist: tags: - Ketchup - priority: 3 + priority: 3 - type: ItemMapper mapLayers: cart_hotsauce: @@ -154,9 +154,10 @@ - type: Sprite netSync: false noRot: true - sprite: Objects/Specific/Kitchen/food_carts.rsi + sprite: Objects/Specific/Kitchen/food_carts.rsi layers: - state: stand-ice - type: ContainerContainer containers: storagebase: !type:Container + - type: AntiRottingContainer diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml index 5eab64e73a..637d0b56ca 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml @@ -6,18 +6,29 @@ - type: MobMover - type: Mech - type: MechAir - - type: MechAirFilter + - type: AirFilter # everything except oxygen and nitrogen gases: - - 2 - - 3 - - 4 - - 5 - - 6 - - 7 - - 8 - #- 9 TODO: fusion - - type: MechAirIntake + - CarbonDioxide + - Plasma + - Tritium + - WaterVapor + - Ammonia + - NitrousOxide + - Frezon + #- Helium3 TODO: fusion + # remove everything except oxygen to maintain oxygen ratio + overflowGases: + - Nitrogen + - CarbonDioxide + - Plasma + - Tritium + - WaterVapor + - Ammonia + - NitrousOxide + - Frezon + #- Helium3 TODO: fusion + - type: AirIntake # for intake and filter to work - type: AtmosDevice requireAnchored: false diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/handheld_crew_monitor.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/handheld_crew_monitor.yml index 6eaea1ee0e..eec97d7373 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/handheld_crew_monitor.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/handheld_crew_monitor.yml @@ -42,4 +42,29 @@ - type: ItemSlots slots: cell_slot: - name: power-cell-slot-component-slot-name-default \ No newline at end of file + name: power-cell-slot-component-slot-name-default + +- type: entity + id: SpyCrewMonitor + name: Spy Monitor + description: A spy device capable of connecting to crew monitoring servers. + parent: HandheldCrewMonitor + components: + - type: Sprite + sprite: Objects/Tools/spy_device.rsi + state: icon + - type: Item + sprite: Objects/Tools/spy_device.rsi + - type: PowerCellDraw + useRate: 40 #Should be weaker than the original + +- type: entity + id: SpyCrewMonitorEmpty + parent: SpyCrewMonitor + suffix: Empty + components: + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml index 5083ae4a44..cf7d0c5cc5 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml @@ -338,6 +338,17 @@ - ReagentId: Dexalin Quantity: 10 + +- type: entity + parent: PillCanister + id: PillCanisterDexalin + suffix: Dexalin, 7 + components: + - type: StorageFill + contents: + - id: PillDexalin + amount: 7 + - type: entity name: dylovene pill (10u) parent: Pill @@ -351,6 +362,16 @@ - ReagentId: Dylovene Quantity: 10 +- type: entity + parent: PillCanister + id: PillCanisterDylovene + suffix: Dylovene, 5 + components: + - type: StorageFill + contents: + - id: PillDylovene + amount: 5 + - type: entity name: hyronalin pill (10u) parent: Pill @@ -364,6 +385,16 @@ - ReagentId: Hyronalin Quantity: 10 +- type: entity + parent: PillCanister + id: PillCanisterHyronalin + suffix: Hyronalin, 5 + components: + - type: StorageFill + contents: + - id: PillHyronalin + amount: 5 + - type: entity name: iron pill (10u) parent: Pill @@ -377,6 +408,39 @@ - ReagentId: Iron Quantity: 10 +- type: entity + name: copper pill (10u) + parent: Pill + id: PillCopper + components: + - type: SolutionContainerManager + solutions: + food: + maxVol: 20 + reagents: + - ReagentId: Copper + Quantity: 10 + +- type: entity + parent: PillCanister + id: PillCanisterIron + suffix: Iron, 5 + components: + - type: StorageFill + contents: + - id: PillIron + amount: 5 + +- type: entity + parent: PillCanister + id: PillCanisterCopper + suffix: Copper, 5 + components: + - type: StorageFill + contents: + - id: PillCopper + amount: 5 + - type: entity name: kelotane pill (10u) parent: Pill @@ -390,6 +454,16 @@ - ReagentId: Kelotane Quantity: 10 +- type: entity + parent: PillCanister + id: PillCanisterKelotane + suffix: Kelotane, 5 + components: + - type: StorageFill + contents: + - id: PillKelotane + amount: 5 + - type: entity name: dermaline pill (10u) parent: Pill @@ -403,6 +477,16 @@ - ReagentId: Dermaline Quantity: 10 +- type: entity + parent: PillCanister + id: PillCanisterDermaline + suffix: Dermaline, 5 + components: + - type: StorageFill + contents: + - id: PillDermaline + amount: 5 + - type: entity name: space drugs parent: Pill @@ -429,6 +513,16 @@ - ReagentId: Tricordrazine Quantity: 10 +- type: entity + parent: PillCanister + id: PillCanisterTricordrazine + suffix: Tricordrazine, 5 + components: + - type: StorageFill + contents: + - id: PillTricordrazine + amount: 5 + - type: entity name: bicaridine pill (10u) parent: Pill @@ -442,6 +536,16 @@ - ReagentId: Bicaridine Quantity: 10 +- type: entity + parent: PillCanister + id: PillCanisterBicaridine + suffix: Bicaridine, 5 + components: + - type: StorageFill + contents: + - id: PillBicaridine + amount: 5 + - type: entity name: charcoal pill (10u) parent: Pill @@ -458,6 +562,16 @@ - ReagentId: Charcoal Quantity: 10 +- type: entity + parent: PillCanister + id: PillCanisterCharcoal + suffix: Charcoal, 3 + components: + - type: StorageFill + contents: + - id: PillCharcoal + amount: 3 + - type: entity name: romerol pill parent: Pill @@ -667,3 +781,16 @@ reagents: - ReagentId: Romerol Quantity: 15 + +- type: entity + name: stimulants syringe + parent: BaseSyringe + id: SyringeStimulants + components: + - type: SolutionContainerManager + solutions: + injector: + maxVol: 15 + reagents: + - ReagentId: Stimulants + Quantity: 15 diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml index dccbbc7328..4bb9a5ae09 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml @@ -97,7 +97,7 @@ - type: Sprite sprite: Objects/Specific/Medical/medipen.rsi layers: - - state: medipen + - state: firstaid map: ["enum.SolutionContainerLayers.Fill"] - type: Item sprite: Objects/Specific/Medical/medipen.rsi @@ -115,7 +115,7 @@ - type: SolutionContainerVisuals maxFillLevels: 1 changeColor: false - emptySpriteName: medipen_empty + emptySpriteName: firstaid_empty - type: Tag tags: - Trash @@ -125,15 +125,24 @@ - type: SpaceGarbage - type: StaticPrice price: 75 # These are limited supply items. - - type: TrashOnEmpty + - type: TrashOnSolutionEmpty solution: pen - type: entity name: emergency medipen parent: ChemicalMedipen id: EmergencyMedipen - description: A rapid and safe way to stabilize patients in critical condition for personnel without advanced medical knowledge. Beware, as it's easy to overdose on epinephrine and tranexmic acid. + description: A rapid and safe way to stabilize patients in critical condition for personnel without advanced medical knowledge. Beware, as it's easy to overdose on epinephrine and tranexamic acid. components: + - type: Sprite + sprite: Objects/Specific/Medical/medipen.rsi + layers: + - state: medipen + map: ["enum.SolutionContainerLayers.Fill"] + - type: SolutionContainerVisuals + maxFillLevels: 1 + changeColor: false + emptySpriteName: medipen_empty - type: SolutionContainerManager solutions: pen: @@ -157,6 +166,10 @@ layers: - state: penacid map: ["enum.SolutionContainerLayers.Fill"] + - type: SolutionContainerVisuals + maxFillLevels: 1 + changeColor: false + emptySpriteName: penacid_empty - type: SolutionContainerManager solutions: pen: @@ -180,6 +193,10 @@ layers: - state: bicpen map: ["enum.SolutionContainerLayers.Fill"] + - type: SolutionContainerVisuals + maxFillLevels: 1 + changeColor: false + emptySpriteName: bicpen_empty - type: Hypospray solutionName: pen transferAmount: 20 @@ -206,6 +223,10 @@ layers: - state: dermpen map: ["enum.SolutionContainerLayers.Fill"] + - type: SolutionContainerVisuals + maxFillLevels: 1 + changeColor: false + emptySpriteName: dermpen_empty - type: Hypospray solutionName: pen transferAmount: 20 @@ -225,13 +246,17 @@ name: rad auto-injector parent: ChemicalMedipen id: RadAutoInjector - description: A rapid dose of anti-radiation. Contains arithrazine and bicardine. + description: A rapid dose of anti-radiation. Contains arithrazine and bicaridine. components: - type: Sprite sprite: Objects/Specific/Medical/medipen.rsi layers: - state: arithpen map: ["enum.SolutionContainerLayers.Fill"] + - type: SolutionContainerVisuals + maxFillLevels: 1 + changeColor: false + emptySpriteName: arithpen_empty - type: Hypospray solutionName: pen transferAmount: 20 @@ -290,7 +315,6 @@ - state: stimpen map: ["enum.SolutionContainerLayers.Fill"] - type: Item - sprite: Objects/Specific/Medical/medipen.rsi size: 10 - type: SolutionContainerManager solutions: @@ -299,6 +323,10 @@ reagents: - ReagentId: Stimulants Quantity: 30 + - type: SolutionContainerVisuals + maxFillLevels: 1 + changeColor: false + emptySpriteName: stimpen_empty - type: Hypospray solutionName: pen transferAmount: 30 @@ -316,10 +344,9 @@ - type: Sprite sprite: Objects/Specific/Medical/medipen.rsi layers: - - state: stimpen + - state: microstimpen map: ["enum.SolutionContainerLayers.Fill"] - type: Item - sprite: Objects/Specific/Medical/medipen.rsi size: 5 - type: SolutionContainerManager solutions: @@ -328,6 +355,10 @@ reagents: - ReagentId: Stimulants Quantity: 15 + - type: SolutionContainerVisuals + maxFillLevels: 1 + changeColor: false + emptySpriteName: microstimpen_empty - type: StaticPrice price: 100 - type: Tag @@ -345,8 +376,11 @@ - state: morphen map: ["enum.SolutionContainerLayers.Fill"] - type: Item - sprite: Objects/Specific/Medical/medipen.rsi size: 5 + - type: SolutionContainerVisuals + maxFillLevels: 1 + changeColor: false + emptySpriteName: morphen_empty - type: SolutionContainerManager solutions: pen: diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml index 733411cdbe..17c5a54c8f 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml @@ -144,6 +144,8 @@ Quantity: 5 - ReagentId: SpaceLube Quantity: 5 + - ReagentId: Ectoplasm # DeltaV - for normality crystals + Quantity: 30 # DeltaV - type: GuideHelp guides: - MinorAntagonists diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/randompill.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/randompill.yml index fcd738f0db..48571da927 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/randompill.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/randompill.yml @@ -36,11 +36,16 @@ - NorepinephricAcid - Pax - Tricordrazine + - SodiumPolyacrylate + - Fresium - quantity: 20 weight: 5 reagents: - SpaceDrugs - - Toxin + - quantity: 10 + weight: 5 + reagents: + - Amatoxin - type: entity name: strange pill diff --git a/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml b/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml index 9c580ede66..7e1c5b3a7b 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml @@ -54,7 +54,7 @@ beepSound: path: "/Audio/Items/locator_beep.ogg" params: - maxdistance: 1 + maxDistance: 1 volume: -8 - type: entity @@ -107,4 +107,4 @@ - type: ItemSlots slots: cell_slot: - name: power-cell-slot-component-slot-name-default \ No newline at end of file + name: power-cell-slot-component-slot-name-default diff --git a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml index 5bb71ec04e..3755edd60b 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml @@ -13,6 +13,9 @@ - type: Tag tags: - BorgModuleGeneric + - type: GuideHelp + guides: + - Cyborgs - type: entity id: BaseProviderBorgModule @@ -152,6 +155,8 @@ - Wrench - Screwdriver - Wirecutter + - Multitool + - Welder # cargo modules - type: entity @@ -179,7 +184,9 @@ - type: ItemBorgModule items: - MiningDrill + - Shovel - OreBag + - Crowbar - type: entity id: BorgModuleGrapplingGun @@ -193,6 +200,7 @@ - type: ItemBorgModule items: - WeaponGrapplingGun + - WeaponCrusherDagger # engineering modules - type: entity @@ -222,6 +230,9 @@ - type: ItemBorgModule items: - GasAnalyzer + - trayScanner + - Crowbar + - Wrench - type: entity id: BorgModuleConstruction @@ -264,6 +275,8 @@ - type: ItemBorgModule items: - LightReplacer + - Crowbar + - Screwdriver - type: entity id: BorgModuleCleaning @@ -278,20 +291,22 @@ items: - MopItem - Bucket - - Holoprojector + - TrashBag - type: entity - id: BorgModuleTrashCollection + id: BorgModuleAdvancedCleaning parent: [ BaseBorgModuleJanitor, BaseProviderBorgModule ] - name: trash collection cyborg module + name: advanced cleaning cyborg module components: - type: Sprite layers: - state: janitor - - state: icon-trash-bag + - state: icon-mop-adv - type: ItemBorgModule items: - - TrashBag + - AdvMopItem + - Holoprojector + - SprayBottleSpaceCleaner # medical modules - type: entity @@ -324,6 +339,7 @@ - Gauze10Lingering - Bloodpack10Lingering - Syringe + - Dropper - type: entity id: BorgModuleDefibrillator @@ -385,9 +401,9 @@ # service modules - type: entity - id: BorgModuleLiteracy + id: BorgModuleService parent: [ BaseBorgModuleService, BaseProviderBorgModule ] - name: literacy cyborg module + name: service cyborg module components: - type: Sprite layers: @@ -397,6 +413,10 @@ items: - Pen - BooksBag + - HandLabeler + - Lighter + - DrinkShaker + - Syringe - type: entity id: BorgModuleMusique @@ -410,6 +430,8 @@ - type: ItemBorgModule items: - SynthesizerInstrument + - ElectricGuitarInstrument + - SaxophoneInstrument - type: entity id: BorgModuleGardening @@ -455,3 +477,4 @@ items: - BikeHorn - ClownRecorder + - BikeHornInstrument diff --git a/Resources/Prototypes/Entities/Objects/Specific/Robotics/endoskeleton.yml b/Resources/Prototypes/Entities/Objects/Specific/Robotics/endoskeleton.yml index c0b1407e61..98f953f682 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Robotics/endoskeleton.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Robotics/endoskeleton.yml @@ -222,4 +222,4 @@ - type: Pullable - type: GuideHelp guides: - - Robotics + - Cyborgs diff --git a/Resources/Prototypes/Entities/Objects/Specific/Robotics/mmi.yml b/Resources/Prototypes/Entities/Objects/Specific/Robotics/mmi.yml index b4e69b3780..10f2d7adf1 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Robotics/mmi.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Robotics/mmi.yml @@ -45,6 +45,9 @@ containers: brain_slot: !type:ContainerSlot - type: Appearance + - type: GuideHelp + guides: + - Cyborgs - type: entity parent: MMI @@ -116,4 +119,7 @@ base: Off: { state: posibrain } Searching: { state: posibrain-searching } - On: { state: posibrain-occupied } \ No newline at end of file + On: { state: posibrain-occupied } + - type: GuideHelp + guides: + - Cyborgs diff --git a/Resources/Prototypes/Entities/Objects/Specific/Salvage/ore_bag_holding.yml b/Resources/Prototypes/Entities/Objects/Specific/Salvage/ore_bag_holding.yml new file mode 100644 index 0000000000..a772a475e2 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Specific/Salvage/ore_bag_holding.yml @@ -0,0 +1,15 @@ +- type: entity + name: ore bag of holding + id: OreBagOfHolding + parent: OreBag + description: A robust bag of holding for salvage billionaires and rich miners alike to carry large amounts of ore. Magnetises any nearby ores when attached to a belt. + components: + - type: MagnetPickup + range: 2 + - type: Sprite + sprite: Objects/Specific/Mining/ore_bag_holding.rsi + state: icon + - type: Clothing + sprite: Objects/Specific/Mining/ore_bag_holding.rsi + - type: Storage + capacity: 9999 diff --git a/Resources/Prototypes/Entities/Objects/Specific/Service/barber.yml b/Resources/Prototypes/Entities/Objects/Specific/Service/barber.yml new file mode 100644 index 0000000000..3f47ad6916 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Specific/Service/barber.yml @@ -0,0 +1,29 @@ +- type: entity + id: BarberScissors + name: barber scissors + description: is able to reshape the hairstyle of any crew cut to your liking. + parent: BaseItem + components: + - type: Sprite + sprite: Objects/Tools/scissors.rsi + state: icon + - type: MagicMirror + addSlotTime: 20 + removeSlotTime: 20 + selectSlotTime: 20 + changeSlotTime: 20 + - type: ActivatableUI + key: enum.MagicMirrorUiKey.Key + closeOnHandDeselect: true + - type: UserInterface + interfaces: + - key: enum.MagicMirrorUiKey.Key + type: MagicMirrorBoundUserInterface + - type: MeleeWeapon + wideAnimationRotation: -90 + attackRate: 1 + damage: + types: + Piercing: 6 + soundHit: + path: "/Audio/Weapons/bladeslice.ogg" diff --git a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/item_artifacts.yml b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/item_artifacts.yml index bcb2d32cf9..78c5e41a1f 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/item_artifacts.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/item_artifacts.yml @@ -178,6 +178,8 @@ - enum.ArtifactsVisualLayers.Base: wizardball6: "" - type: Appearance + - type: Item + size: 150 - type: Tag tags: - ArtifactFragment @@ -187,7 +189,19 @@ - ReagentId: Artifexium Quantity: 10 - type: StaticPrice - price: 250 + price: 0 + - type: Stack + stackType: ArtifactFragment - type: GuideHelp guides: - Xenoarchaeology + +- type: entity + parent: ArtifactFragment + id: ArtifactFragment1 + suffix: Single + components: + - type: Stack + count: 1 + - type: Item + size: 5 diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml b/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml index 0e679c7096..067ee57417 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml @@ -392,3 +392,18 @@ reagents: - ReagentId: PlantBGone Quantity: 200 + +- type: entity + parent: Jug + name: jug (welding fuel) + id: JugWeldingFuel + noSpawn: true + components: + - type: Label + currentLabel: welding fuel + - type: SolutionContainerManager + solutions: + beaker: + reagents: + - ReagentId: WeldingFuel + Quantity: 200 diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml index da1a15e238..430cede7bc 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml @@ -56,7 +56,7 @@ damage: types: Blunt: 0 - - type: TrashOnEmpty + - type: TrashOnSolutionEmpty solution: drink - type: StaticPrice price: 0 @@ -79,6 +79,8 @@ - !type:PlaySoundBehavior sound: collection: GlassBreak + params: + volume: -4 - !type:SpillBehavior { } - !type:SpawnEntitiesBehavior spawn: @@ -90,12 +92,10 @@ acts: [ "Destruction" ] - type: entity - name: bottle parent: BaseChemistryEmptyBottle id: ChemistryEmptyBottle01 - type: entity - name: bottle parent: BaseChemistryEmptyBottle id: ChemistryEmptyBottle02 components: @@ -106,11 +106,9 @@ map: ["enum.SolutionContainerLayers.Fill"] visible: false - type: SolutionContainerVisuals - maxFillLevels: 6 fillBaseName: bottle-2- - type: entity - name: bottle parent: BaseChemistryEmptyBottle id: ChemistryEmptyBottle03 components: @@ -121,11 +119,9 @@ map: ["enum.SolutionContainerLayers.Fill"] visible: false - type: SolutionContainerVisuals - maxFillLevels: 6 fillBaseName: bottle-3- - type: entity - name: bottle parent: BaseChemistryEmptyBottle id: ChemistryEmptyBottle04 components: @@ -136,13 +132,21 @@ map: ["enum.SolutionContainerLayers.Fill"] visible: false - type: SolutionContainerVisuals - maxFillLevels: 6 fillBaseName: bottle-4- +- type: entity + parent: BaseChemistryEmptyBottle + id: BaseChemistryBottleFilled + abstract: true + components: + - type: Tag + tags: + - Bottle + - type: entity id: EpinephrineChemistryBottle name: epinephrine bottle - parent: BaseChemistryEmptyBottle + parent: BaseChemistryBottleFilled components: - type: SolutionContainerManager solutions: @@ -151,15 +155,12 @@ reagents: - ReagentId: Epinephrine Quantity: 30 - - type: Tag - tags: - - Bottle - type: entity id: RobustHarvestChemistryBottle name: robust harvest bottle description: This will increase the potency of your plants. - parent: BaseChemistryEmptyBottle + parent: BaseChemistryBottleFilled components: - type: SolutionContainerManager solutions: @@ -168,15 +169,12 @@ reagents: - ReagentId: RobustHarvest Quantity: 30 - - type: Tag - tags: - - Bottle - type: entity id: EZNutrientChemistryBottle name: ez nutrient bottle description: This will provide some nutrition to your plants. - parent: BaseChemistryEmptyBottle + parent: BaseChemistryBottleFilled components: - type: SolutionContainerManager solutions: @@ -185,15 +183,12 @@ reagents: - ReagentId: EZNutrient Quantity: 30 - - type: Tag - tags: - - Bottle - type: entity id: Left4ZedChemistryBottle name: left-4-zed bottle description: This will increase the effectiveness of mutagen. - parent: BaseChemistryEmptyBottle + parent: BaseChemistryBottleFilled components: - type: SolutionContainerManager solutions: @@ -202,15 +197,12 @@ reagents: - ReagentId: Left4Zed Quantity: 30 - - type: Tag - tags: - - Bottle - type: entity id: UnstableMutagenChemistryBottle name: unstable mutagen bottle description: This will cause rapid mutations in your plants. - parent: BaseChemistryEmptyBottle + parent: BaseChemistryBottleFilled components: - type: SolutionContainerManager solutions: @@ -219,15 +211,12 @@ reagents: - ReagentId: UnstableMutagen Quantity: 30 - - type: Tag - tags: - - Bottle - type: entity id: NocturineChemistryBottle name: nocturine bottle description: This will make someone fall down almost immediately. Hard to overdose on. - parent: BaseChemistryEmptyBottle + parent: BaseChemistryBottleFilled components: - type: SolutionContainerManager solutions: @@ -236,14 +225,11 @@ reagents: - ReagentId: Nocturine Quantity: 30 - - type: Tag - tags: - - Bottle - type: entity id: EphedrineChemistryBottle name: ephedrine bottle - parent: BaseChemistryEmptyBottle + parent: BaseChemistryBottleFilled components: - type: SolutionContainerManager solutions: @@ -252,14 +238,11 @@ reagents: - ReagentId: Ephedrine Quantity: 30 - - type: Tag - tags: - - Bottle - type: entity id: OmnizineChemistryBottle name: omnizine bottle - parent: BaseChemistryEmptyBottle + parent: BaseChemistryBottleFilled components: - type: SolutionContainerManager solutions: @@ -268,12 +251,9 @@ reagents: - ReagentId: Omnizine Quantity: 30 - - type: Tag - tags: - - Bottle - type: entity - parent: BaseChemistryEmptyBottle + parent: BaseChemistryBottleFilled id: CognizineChemistryBottle name: cognizine bottle components: @@ -284,14 +264,50 @@ reagents: - ReagentId: Cognizine Quantity: 30 - - type: Tag - tags: - - Bottle + +- type: entity + id: PaxChemistryBottle + name: pax bottle + parent: BaseChemistryBottleFilled + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Pax + Quantity: 30 + +- type: entity + id: MuteToxinChemistryBottle + name: mute toxin bottle + parent: BaseChemistryBottleFilled + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: MuteToxin + Quantity: 30 + +- type: entity + id: LeadChemistryBottle + name: lead bottle + parent: BaseChemistryBottleFilled + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Lead + Quantity: 30 - type: entity id: ToxinChemistryBottle name: toxin bottle - parent: BaseChemistryEmptyBottle + parent: BaseChemistryBottleFilled components: - type: SolutionContainerManager solutions: @@ -300,6 +316,3 @@ reagents: - ReagentId: Toxin Quantity: 30 - - type: Tag - tags: - - Bottle diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml new file mode 100644 index 0000000000..cb48446071 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml @@ -0,0 +1,108 @@ +# TODO: Have a seperate lid state that can be popped on and off (not as a seperate item) that changes whether the vial can be spilled or not + +- type: entity + name: vial + parent: BaseItem + id: BaseChemistryEmptyVial + description: A small vial. + components: + - type: Tag + tags: + - Trash + - type: PhysicalComposition + materialComposition: + Glass: 25 + - type: FitsInDispenser + solution: beaker + - type: SpaceGarbage + - type: Sprite + sprite: Objects/Specific/Chemistry/vial.rsi + layers: + - state: vial-1 + - state: vial-1-1 + map: ["enum.SolutionContainerLayers.Fill"] + visible: false + - type: Appearance + - type: SolutionContainerVisuals + maxFillLevels: 6 + fillBaseName: vial-1- + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + canMix: true + - type: RefillableSolution + solution: drink + - type: DrainableSolution + solution: drink + - type: ExaminableSolution + solution: drink + - type: DrawableSolution + solution: drink + - type: SolutionTransfer + maxTransferAmount: 30 + canChangeTransferAmount: true + - type: UserInterface + interfaces: + - key: enum.TransferAmountUiKey.Key + type: TransferAmountBoundUserInterface + - type: Item + size: 2 + sprite: Objects/Specific/Chemistry/vial.rsi + - type: MeleeWeapon + soundNoDamage: + path: "/Audio/Effects/Fluids/splat.ogg" + damage: + types: + Blunt: 0 + - type: TrashOnSolutionEmpty + solution: drink + - type: StaticPrice + price: 100 + - type: DamageOnLand + damage: + types: + Blunt: 5 + - type: DamageOtherOnHit + damage: + types: + Blunt: 2 + - type: Damageable + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 15 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: GlassBreak + params: + volume: -4 + - !type:SpillBehavior { } + - !type:SpawnEntitiesBehavior + spawn: + ShardGlass: + min: 0 + max: 1 + transferForensics: true + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: Spillable + solution: drink + +- type: entity + id: VestineChemistryVial + name: vestine vial + parent: BaseChemistryEmptyVial + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Vestine + Quantity: 30 + - type: Tag + tags: [] diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml index bf323067ac..7938b81a42 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml @@ -62,6 +62,8 @@ - !type:PlaySoundBehavior sound: collection: GlassBreak + params: + volume: -4 - !type:SpillBehavior solution: beaker - !type:SpawnEntitiesBehavior @@ -330,7 +332,7 @@ solution: injector - type: Spillable solution: injector - - type: TrashOnEmpty + - type: TrashOnSolutionEmpty solution: injector - type: Appearance - type: SolutionContainerVisuals @@ -383,6 +385,38 @@ - Syringe - Trash +- type: entity + id: SyringeCryostasis + parent: BaseSyringe + name: cryostasis syringe + description: A syringe used to contain chemicals or solutions without reactions. + components: + - type: Sprite + layers: + - state: syringe1 + map: ["enum.SolutionContainerLayers.Fill"] + visible: false + - state: cryo_base0 + map: ["enum.SolutionContainerLayers.Base"] + - type: Icon + sprite: Objects/Specific/Chemistry/syringe.rsi + state: cryo_base0 + - type: SolutionContainerManager + solutions: + injector: + maxVol: 10 + canReact: false + - type: Injector + injectOnly: false + minTransferAmount: 5 + maxTransferAmount: 10 + transferAmount: 10 + - type: Tag + tags: + - Syringe + - Trash + + - type: entity name: pill parent: BaseItem diff --git a/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml b/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml index 77abaee485..54a32b5638 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml @@ -22,7 +22,8 @@ - Armory - Atmospherics - Bar - - Brig + #- Brig #Delta V: Removed Brig Access + - Boxer #Delta V: Add Boxer Access - Detective - Captain - Cargo @@ -30,6 +31,7 @@ - Chemistry - ChiefEngineer - ChiefMedicalOfficer + - Clown #Delta V: Add Clown Access - Command - Engineering - External @@ -38,16 +40,23 @@ - Hydroponics - Janitor - Kitchen + - Lawyer + - Library #Delta V: Add Library Access - Maintenance - Medical + - Mime #Delta V: Add Mime Access + - Musician #Delta V: Add Musician Access - Paramedic # Delta V - adds Paramedic access + - Psychologist #Delta V: Add Psychologist Access - Quartermaster + - Reporter #Delta V: Add Reporter Access - Research - ResearchDirector - Salvage - Security - Service - Theatre + - Zookeeper #Delta V: Add Zookeeper Access privilegedIdSlot: name: id-card-console-privileged-id ejectSound: /Audio/Machines/id_swipe.ogg @@ -63,12 +72,12 @@ - type: UserInterface interfaces: - key: enum.AccessOverriderUiKey.Key - type: AccessOverriderBoundUserInterface - - type: ActivatableUI + type: AccessOverriderBoundUserInterface + - type: ActivatableUI key: enum.AccessOverriderUiKey.Key - requireHands: true - closeOnHandDeselect: false - singleUser: true + requireHands: true + closeOnHandDeselect: false + singleUser: true - type: ItemSlots - type: ContainerContainer containers: diff --git a/Resources/Prototypes/Entities/Objects/Tools/appraisal.yml b/Resources/Prototypes/Entities/Objects/Tools/appraisal.yml index 72369ce44b..c56f66b291 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/appraisal.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/appraisal.yml @@ -20,6 +20,7 @@ - type: Tag tags: - AppraisalTool + - Sidearm - type: GuideHelp guides: - Cargo diff --git a/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml b/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml index e73d80f83b..24c78cac13 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml @@ -4,7 +4,7 @@ - type: entity id: CableStack - noSpawn: true + abstract: true parent: BaseItem name: cable stack suffix: Full @@ -52,6 +52,18 @@ cablePrototypeID: CableHV blockingWireType: HighVoltage - type: Appearance + - type: Extractable + grindableSolutionName: hvcable + - type: SolutionContainerManager + solutions: + hvcable: + reagents: + - ReagentId: Iron + Quantity: 3 + - ReagentId: Copper + Quantity: 2 + - ReagentId: Carbon #steel-reinforced + Quantity: 1 - type: entity parent: CableHVStack @@ -111,6 +123,16 @@ cablePrototypeID: CableMV blockingWireType: MediumVoltage - type: Appearance + - type: Extractable + grindableSolutionName: mvcable + - type: SolutionContainerManager + solutions: + mvcable: + reagents: + - ReagentId: Iron + Quantity: 3 + - ReagentId: Copper + Quantity: 2 - type: entity parent: CableMVStack @@ -169,6 +191,16 @@ cablePrototypeID: CableApcExtension blockingWireType: Apc - type: Appearance + - type: Extractable + grindableSolutionName: lvcable + - type: SolutionContainerManager + solutions: + lvcable: + reagents: + - ReagentId: Iron + Quantity: 3 + - ReagentId: Copper + Quantity: 2 - type: entity parent: CableApcStack diff --git a/Resources/Prototypes/Entities/Objects/Tools/flashlights.yml b/Resources/Prototypes/Entities/Objects/Tools/flashlights.yml index c43ffc830c..d6a11e0a8d 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/flashlights.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/flashlights.yml @@ -103,6 +103,7 @@ damage: types: Blunt: 10 + bluntStaminaDamageFactor: 2.0 # DeltaV - seclite is now a viable nonlethal takedown tool against unarmoured targets. - type: Item sprite: Objects/Tools/seclite.rsi - type: PointLight diff --git a/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml b/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml index 09d9945213..42cd3114ab 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml @@ -103,7 +103,6 @@ size: 10 sprite: Objects/Tanks/emergency.rsi - type: GasTank - outputPressure: 21.3 air: volume: 0.66 temperature: 293.15 @@ -121,6 +120,19 @@ materialComposition: Steel: 100 +- type: entity + parent: EmergencyOxygenTank + id: EmergencyNitrogenTank + name: emergency nitrogen tank + description: An easily portable tank for emergencies. Contains very little nitrogen, rated for survival use only. + components: + - type: Sprite + sprite: Objects/Tanks/emergency_red.rsi + - type: Item + sprite: Objects/Tanks/emergency_red.rsi + - type: Clothing + sprite: Objects/Tanks/emergency_red.rsi + - type: entity parent: EmergencyOxygenTank id: ExtendedEmergencyOxygenTank @@ -128,16 +140,28 @@ description: An emergency tank with extended capacity. Technically rated for prolonged use. components: - type: Sprite - sprite: Objects/Tanks/emergency_yellow.rsi + sprite: Objects/Tanks/emergency_extended.rsi - type: Item - sprite: Objects/Tanks/emergency_yellow.rsi + sprite: Objects/Tanks/emergency_extended.rsi - type: GasTank - outputPressure: 21.3 air: volume: 1.5 temperature: 293.15 - type: Clothing - sprite: Objects/Tanks/emergency_yellow.rsi + sprite: Objects/Tanks/emergency_extended.rsi + +- type: entity + parent: ExtendedEmergencyOxygenTank + id: ExtendedEmergencyNitrogenTank + name: extended-capacity emergency nitrogen tank + description: An emergency tank with extended capacity. Technically rated for prolonged use. + components: + - type: Sprite + sprite: Objects/Tanks/emergency_extended_red.rsi + - type: Item + sprite: Objects/Tanks/emergency_extended_red.rsi + - type: Clothing + sprite: Objects/Tanks/emergency_extended_red.rsi - type: entity parent: ExtendedEmergencyOxygenTank @@ -150,7 +174,6 @@ - type: Item sprite: Objects/Tanks/emergency_double.rsi - type: GasTank - outputPressure: 21.3 air: volume: 2.5 temperature: 293.15 @@ -162,21 +185,27 @@ types: Blunt: 7.5 +- type: entity + parent: DoubleEmergencyOxygenTank + id: DoubleEmergencyNitrogenTank + name: double emergency nitrogen tank + description: A high-grade dual-tank emergency life support container. It holds a decent amount of nitrogen for its small size. + components: + - type: Sprite + sprite: Objects/Tanks/emergency_double_red.rsi + - type: Item + sprite: Objects/Tanks/emergency_double_red.rsi + - type: Clothing + sprite: Objects/Tanks/emergency_double_red.rsi + - type: entity parent: GasTankRoundBase id: AirTank name: air tank description: Mixed anyone? components: - - type: Sprite - sprite: Objects/Tanks/generic.rsi - type: GasTank outputPressure: 101.3 - air: - volume: 5 - temperature: 293.15 - - type: Clothing - sprite: Objects/Tanks/generic.rsi - type: entity parent: GasTankRoundBase @@ -190,9 +219,6 @@ sprite: Objects/Tanks/anesthetic.rsi - type: GasTank outputPressure: 30.4 - air: - volume: 5 - temperature: 293.15 - type: Clothing sprite: Objects/Tanks/anesthetic.rsi @@ -209,8 +235,5 @@ sprite: Objects/Tanks/plasma.rsi - type: GasTank outputPressure: 101.3 - air: - volume: 5 - temperature: 293.15 - type: Clothing sprite: Objects/Tanks/plasma.rsi diff --git a/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml b/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml index d57a34c88f..12e20324d3 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml @@ -158,6 +158,7 @@ sprite: Objects/Tanks/Jetpacks/captain.rsi slots: - Back + - SuitStorage - type: Item sprite: Objects/Tanks/Jetpacks/captain.rsi size: 30 @@ -198,6 +199,7 @@ slots: - Back - suitStorage + - Belt - type: GasTank outputPressure: 42.6 air: @@ -273,6 +275,7 @@ slots: - Back - suitStorage + - Belt # Filled void - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Tools/light_replacer.yml b/Resources/Prototypes/Entities/Objects/Tools/light_replacer.yml index 442e939d42..d834d1ab52 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/light_replacer.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/light_replacer.yml @@ -17,6 +17,7 @@ amount: 5 - type: Tag tags: + - LightReplacer - DroneUsable - type: StaticPrice price: 100 diff --git a/Resources/Prototypes/Entities/Objects/Tools/tools.yml b/Resources/Prototypes/Entities/Objects/Tools/tools.yml index 40a3cd74f6..54a40ab4a8 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/tools.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/tools.yml @@ -147,7 +147,6 @@ damage: types: Blunt: 8 - Structural: 3 - type: Tool qualities: - Prying @@ -332,7 +331,7 @@ attackRate: 1.5 damage: types: - Piercing: 8 + Piercing: 10 soundHit: path: "/Audio/Items/drill_hit.ogg" @@ -517,6 +516,13 @@ Wood: 50 - type: StaticPrice price: 25 + # Delta V: Adds tool quality for digging + - type: Tool + qualities: + - Digging + useSound: + path: /Audio/Nyanotrasen/Items/shovel_dig.ogg + - type: EarthDigging - type: entity parent: BaseItem diff --git a/Resources/Prototypes/Entities/Objects/Vehicles/buckleable.yml b/Resources/Prototypes/Entities/Objects/Vehicles/buckleable.yml index 4a8fa0da5c..4f245c3f09 100644 --- a/Resources/Prototypes/Entities/Objects/Vehicles/buckleable.yml +++ b/Resources/Prototypes/Entities/Objects/Vehicles/buckleable.yml @@ -451,6 +451,8 @@ - MobMask layer: - TableLayer + - type: StaticPrice + price: 70 - type: entity parent: VehicleWheelchair diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Bombs/funny.yml b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/funny.yml index c33c1f92c5..d23ebc74f7 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Bombs/funny.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/funny.yml @@ -83,11 +83,23 @@ - type: ExplodeOnTrigger - type: Explosive explosionType: Default - maxIntensity: 2 - totalIntensity: 10 + maxIntensity: 3.4 + intensitySlope: 3 + totalIntensity: 20 canCreateVacuum: false - type: DeleteOnTrigger - type: AnimationPlayer + - type: Damageable + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 10 + behaviors: + - !type:TriggerBehavior + - !type:DoActsBehavior + acts: ["Destruction"] - type: entity parent: BaseItem diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Bombs/ied.yml b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/ied.yml new file mode 100644 index 0000000000..14906c7c2d --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/ied.yml @@ -0,0 +1,106 @@ +# ied crafted from random stuff +# ideally it would be dynamic and work by actually sparking the solution but that doesnt exist yet :( +# with that you could make napalm ied instead of welding fuel with no additional complexity +- type: entity + parent: BaseItem + id: ImprovisedExplosive + name: improvised explosive device + description: A weak, improvised incendiary device. + components: + - type: Sprite + sprite: Objects/Weapons/Bombs/ied.rsi + layers: + - state: base + map: ["enum.TriggerVisualLayers.Base"] + - state: fuel + - state: wires + - type: Item + sprite: Objects/Consumable/Drinks/cola.rsi + - type: OnUseTimerTrigger + delay: 5 + examinable: false + initialBeepDelay: 0 + beepSound: + path: /Audio/Weapons/Guns/MagOut/pistol_magout.ogg + volume: 1 + - type: RandomTimerTrigger + min: 0 + max: 60 + - type: Explosive # Weak explosion in a very small radius. Doesn't break underplating. + explosionType: Default + totalIntensity: 20 + intensitySlope: 5 + maxIntensity: 3 + canCreateVacuum: false + - type: ExplodeOnTrigger + - type: Appearance + - type: AnimationPlayer + - type: TimerTriggerVisuals + unprimedSprite: base + - type: Damageable + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 50 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - !type:ExplodeBehavior + - type: Construction + graph: ImprovisedExplosive + node: ied + +# has igniter but no fuel or wires +- type: entity + parent: DrinkColaCanEmpty + id: ImprovisedExplosiveEmpty + name: improvised explosive device + suffix: empty + description: A weak, improvised incendiary device. This one has no fuel. + components: + - type: Sprite + sprite: Objects/Weapons/Bombs/ied.rsi + layers: + - state: base + map: ["enum.OpenableVisuals.Layer"] + # bad dog + - type: GenericVisualizer + visuals: + enum.OpenableVisuals.Opened: + enum.OpenableVisuals.Layer: + True: {state: "base"} + False: {state: "base"} + - type: Construction + graph: ImprovisedExplosive + node: empty + defaultTarget: ied + - type: Tag + tags: + - Trash + # no DrinkCan, prevent using it to make another ied + +- type: entity + parent: ImprovisedExplosiveEmpty + id: ImprovisedExplosiveFuel + suffix: fuel + description: A weak, improvised incendiary device. This one is missing wires. + components: + - type: Sprite + layers: + - state: base + map: ["enum.OpenableVisuals.Layer"] + - state: fuel + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: WeldingFuel + Quantity: 30 + - type: Construction + node: fuel + defaultTarget: ied + - type: Tag + tags: [] diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.yml index 1c8fbc26e1..6052f589f9 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.yml @@ -103,3 +103,17 @@ - state: mag-1 map: ["enum.GunVisualLayers.Mag"] - state: incendiary + +- type: entity + parent: BaseMagazineBoxLightRifle + id: MagazineBoxLightRifleUranium + name: ammunition box (.30 rifle uranium) + components: + - type: BallisticAmmoProvider + proto: CartridgeLightRifleUranium + - type: Sprite + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-1 + map: ["enum.GunVisualLayers.Mag"] \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml index 5a9a850e9c..50e79f0f8e 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml @@ -82,3 +82,17 @@ - state: mag-1 map: ["enum.GunVisualLayers.Mag"] - state: incendiary + +- type: entity + id: MagazineBoxMagnumUranium + parent: BaseMagazineBoxMagnum + name: ammunition box (.45 magnum uranium) + components: + - type: BallisticAmmoProvider + proto: CartridgeMagnumUranium + - type: Sprite + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-1 + map: ["enum.GunVisualLayers.Mag"] \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/pistol.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/pistol.yml index a9a78f399a..1aa4b34c24 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/pistol.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/pistol.yml @@ -83,3 +83,18 @@ - state: mag-1 map: ["enum.GunVisualLayers.Mag"] - state: incendiary + +- type: entity + id: MagazineBoxPistolUranium + parent: BaseMagazineBoxPistol + name: ammunition box (.35 auto uranium) + components: + - type: BallisticAmmoProvider + proto: CartridgePistolUranium + - type: Sprite + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-1 + map: ["enum.GunVisualLayers.Mag"] + diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/rifle.yml index 3725ad91af..d0bd96d31d 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/rifle.yml @@ -123,3 +123,18 @@ - state: mag-1 map: ["enum.GunVisualLayers.Mag"] - state: incendiary + +- type: entity + id: MagazineBoxRifleUranium + parent: BaseMagazineBoxRifle + name: ammunition box (.20 rifle uranium) + components: + - type: BallisticAmmoProvider + proto: CartridgeRifleUranium + - type: Sprite + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-1 + map: ["enum.GunVisualLayers.Mag"] + diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/light_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/light_rifle.yml index c595ea141e..f12811939a 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/light_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/light_rifle.yml @@ -51,3 +51,12 @@ components: - type: CartridgeAmmo proto: BulletLightRifleIncendiary + +- type: entity + id: CartridgeLightRifleUranium + name: cartridge (.30 rifle uranium) + parent: BaseCartridgeLightRifle + components: + - type: CartridgeAmmo + proto: BulletLightRifleUranium + diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml index e0fb98f0ab..d233f42d5e 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml @@ -59,3 +59,11 @@ components: - type: CartridgeAmmo proto: BulletMagnumAP + +- type: entity + id: CartridgeMagnumUranium + name: cartridge (.45 magnum uranium) + parent: BaseCartridgeMagnum + components: + - type: CartridgeAmmo + proto: BulletMagnumUranium diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/pistol.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/pistol.yml index 828251ade7..80a6720cb2 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/pistol.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/pistol.yml @@ -51,3 +51,11 @@ components: - type: CartridgeAmmo proto: BulletPistolIncendiary + +- type: entity + id: CartridgePistolUranium + name: cartridge (.35 auto uranium) + parent: BaseCartridgePistol + components: + - type: CartridgeAmmo + proto: BulletPistolUranium diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/rifle.yml index 4a6229ea2a..d70d863f22 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/rifle.yml @@ -51,3 +51,11 @@ components: - type: CartridgeAmmo proto: BulletRifleIncendiary + +- type: entity + id: CartridgeRifleUranium + name: cartridge (.20 rifle uranium) + parent: BaseCartridgeRifle + components: + - type: CartridgeAmmo + proto: BulletRifleUranium \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/shotgun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/shotgun.yml index 21780fefb6..1b3a4203cd 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/shotgun.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/shotgun.yml @@ -148,4 +148,21 @@ spread: 45 #deadly if you can get up close... otherwise, good luck doing any kind of real damage proto: PelletShotgunImprovised - type: SpentAmmoVisuals - state: "improvised" \ No newline at end of file + state: "improvised" + +- type: entity + id: ShellShotgunUranium + name: uranium shotgun shell + parent: BaseShellShotgun + components: + - type: Sprite + layers: + - state: depleted-uranium + map: [ "enum.AmmoVisualLayers.Base" ] + - type: CartridgeAmmo + count: 5 + spread: 6 + proto: PelletShotgunUranium + - type: SpentAmmoVisuals + state: "depleted-uranium" + diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/grenade.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/grenade.yml new file mode 100644 index 0000000000..511cf76df9 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/grenade.yml @@ -0,0 +1,58 @@ +- type: entity + id: PelletClusterRubber + name: pellet (ball, Rubber) + noSpawn: true + parent: BaseBullet + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi + state: buckshot + - type: Projectile + deleteOnCollide: false + canPenetrate: true + damage: + types: + Blunt: 4 + - type: StaminaDamageOnCollide + damage: 55 + - type: TimedDespawn + lifetime: 0.25 + +- type: entity + id: PelletClusterLethal + name: pellet (ball, Lethal) + noSpawn: true + parent: BaseBullet + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi + state: buckshot + - type: Projectile + deleteOnCollide: false + canPenetrate: true + damage: + types: + Piercing: 45 + - type: TimedDespawn + lifetime: 0.25 + +- type: entity + id: PelletClusterIncendiary + name: pellet (ball, incendiary) + noSpawn: true + parent: BaseBulletIncendiary + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi + state: buckshot-flare + - type: Projectile + deleteOnCollide: false + canPenetrate: true + damage: + groups: + Burn: 4 + - type: IgniteOnCollide + fireStacks: 3 + count: 10 + - type: TimedDespawn + lifetime: 0.25 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/light_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/light_rifle.yml index 6350b77094..7167bd6170 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/light_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/light_rifle.yml @@ -42,3 +42,15 @@ types: Blunt: 3 Heat: 16 + +- type: entity + id: BulletLightRifleUranium + parent: BaseBullet + name: bullet (.20 rifle uranium) + noSpawn: true + components: + - type: Projectile + damage: + types: + Radiation: 9 + Piercing: 10 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml index 8b30bfe182..445d2ad668 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml @@ -56,3 +56,15 @@ types: Piercing: 26 # 20% decrease ignoreResistances: true + +- type: entity + id: BulletMagnumUranium + name: bullet (.45 magnum uranium) + parent: BaseBullet + noSpawn: true + components: + - type: Projectile + damage: + types: + Radiation: 15 + Piercing: 20 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/pistol.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/pistol.yml index 0e6c08c3df..79a2f7f99d 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/pistol.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/pistol.yml @@ -42,3 +42,15 @@ types: Blunt: 2 Heat: 14 + +- type: entity + id: BulletPistolUranium + parent: BaseBullet + name: bullet (.35 auto uranium) + noSpawn: true + components: + - type: Projectile + damage: + types: + Radiation: 6 + Piercing: 10 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/rifle.yml index 768fec3c42..99049b9b34 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/rifle.yml @@ -42,4 +42,16 @@ types: Blunt: 2 Heat: 15 + +- type: entity + id: BulletRifleUranium + parent: BaseBullet + name: bullet (0.20 rifle uranium) + noSpawn: true + components: + - type: Projectile + damage: + types: + Radiation: 7 + Piercing: 8 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml index 887295b4b1..474b7371f2 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml @@ -75,7 +75,7 @@ id: PelletShotgunImprovised name: improvised pellet noSpawn: true - parent: BaseBullet + parent: BaseBullet components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi @@ -135,6 +135,9 @@ - ItemMask restitution: 0.3 friction: 0.2 + - type: Tag + tags: + - PelletShotgunFlare - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi state: buckshot-flare @@ -157,3 +160,18 @@ color: "#FF8080" radius: 15.0 energy: 9.0 + +- type: entity + id: PelletShotgunUranium + name: pellet (.50 uranium) + noSpawn: true + parent: BaseBullet + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi + state: depleted-uranium + - type: Projectile + damage: + types: + Radiation: 3 + Piercing: 5 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml index b94191ef02..a97e538aa5 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml @@ -641,6 +641,11 @@ - state: grenade - type: FlashOnTrigger range: 7 + - type: SpawnOnTrigger + proto: GrenadeFlashEffect + - type: ActiveTimerTrigger + timeRemaining: 0.3 + - type: DeleteOnTrigger # This is supposed to spawn shrapnel and stuff so uhh... TODO? - type: entity @@ -791,3 +796,48 @@ - Impassable - HighImpassable - type: GrapplingProjectile + +# DeltaV projectiles +# For whatever magical reasons, I cannot put those in the DeltaV folders without having errors. + +# Because Hitscan lasers aren't fun to shoot in my opinion, we give the HoS pistol a special lethal laser that moves +- type: entity + name: energy bolt + id: BulletEnergyGunLaser + parent: BaseBullet + noSpawn: true + components: + - type: Reflective + reflective: + - Energy + - type: FlyBySound + sound: + collection: EnergyMiss + params: + volume: 5 + - type: Sprite + sprite: Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi + layers: + - state: omnilaser_greyscale + shader: unshaded + color: red + - type: Ammo + - type: Physics + - type: Fixtures + fixtures: + projectile: + shape: + !type:PhysShapeAabb + bounds: "-0.2,-0.2,0.2,0.2" + hard: false + mask: + - Opaque + fly-by: *flybyfixture + - type: Projectile + impactEffect: BulletImpactEffectRedDisabler + damage: + types: + Heat: 20 # Slightly more damage than the 17heat from the Captain's Hitscan lasgun + soundHit: + collection: MeatLaserImpact + soundForce: true diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml index 114573c087..fdec321687 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml @@ -186,3 +186,28 @@ steps: 1 zeroVisible: true - type: Appearance + +- type: entity + name: Lecter + parent: WeaponRifleLecter + id: WeaponRifleLecterRubber + suffix: Non-lethal + components: + - type: ItemSlots + slots: + gun_magazine: + name: Magazine + startingItem: MagazineRifleRubber + insertSound: /Audio/Weapons/Guns/MagIn/ltrifle_magin.ogg + ejectSound: /Audio/Weapons/Guns/MagOut/ltrifle_magout.ogg + priority: 2 + whitelist: + tags: + - MagazineRifle + gun_chamber: + name: Chamber + startingItem: CartridgeRifleRubber + priority: 1 + whitelist: + tags: + - CartridgeRifle diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml index 4bee243d57..a95eec59e6 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml @@ -7,13 +7,13 @@ components: - type: Sprite layers: - - state: icon - map: [ "enum.GunVisualLayers.Base" ] + - state: icon + map: [ "enum.GunVisualLayers.Base" ] - type: Item # If you update this also update the bulldog's size. size: 30 - type: Clothing - sprite: Objects/Weapons/Guns/Shotguns/db_shotgun.rsi + sprite: DeltaV/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi # Delta-V quickEquip: false slots: - Back @@ -106,7 +106,7 @@ description: An immortal classic. Uses .50 shotgun shells. components: - type: Sprite - sprite: Objects/Weapons/Guns/Shotguns/db_shotgun.rsi + sprite: DeltaV/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi # Delta-V - type: Gun fireRate: 2 - type: BallisticAmmoProvider @@ -130,25 +130,19 @@ name: Enforcer parent: BaseWeaponShotgun id: WeaponShotgunEnforcer - description: A next-generation Frozen Star shotgun. Uses .50 shotgun shells. + description: A premium combat shotgun based on the Kammerer design, featuring an upgraded clip capacity. .50 shotgun shells. components: - type: Sprite - sprite: Objects/Weapons/Guns/Shotguns/enforcer.rsi + sprite: DeltaV/Objects/Weapons/Guns/Shotguns/enforcer.rsi # Delta-V - type: Clothing - sprite: Objects/Weapons/Guns/Shotguns/enforcer.rsi + sprite: DeltaV/Objects/Weapons/Guns/Shotguns/enforcer.rsi # Delta-V - type: BallisticAmmoProvider - type: entity - name: Enforcer - parent: BaseWeaponShotgun + parent: WeaponShotgunEnforcer id: WeaponShotgunEnforcerRubber - description: A next-generation Frozen Star shotgun. Uses .50 shotgun shells. suffix: Non-Lethal components: - - type: Sprite - sprite: Objects/Weapons/Guns/Shotguns/enforcer.rsi - - type: Clothing - sprite: Objects/Weapons/Guns/Shotguns/enforcer.rsi - type: BallisticAmmoProvider proto: ShellShotgunBeanbag @@ -159,11 +153,14 @@ description: When an old Remington design meets modern materials, this is the result. A favourite weapon of militia forces throughout many worlds. Uses .50 shotgun shells. components: - type: Sprite - sprite: Objects/Weapons/Guns/Shotguns/pump.rsi + sprite: DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi # Delta-V - type: Clothing - sprite: Objects/Weapons/Guns/Shotguns/pump.rsi + sprite: DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi # Delta-V - type: BallisticAmmoProvider capacity: 4 + - type: Tag + tags: + - WeaponShotgunKammerer - type: entity name: sawn-off shotgun @@ -172,9 +169,9 @@ description: Groovy! Uses .50 shotgun shells. components: - type: Sprite - sprite: Objects/Weapons/Guns/Shotguns/sawn.rsi + sprite: DeltaV/Objects/Weapons/Guns/Shotguns/sawn.rsi # Delta-V - type: Clothing - sprite: Objects/Weapons/Guns/Shotguns/sawn.rsi + sprite: DeltaV/Objects/Weapons/Guns/Shotguns/sawn.rsi # Delta-V - type: Item size: 10 - type: Gun @@ -220,6 +217,8 @@ graph: ShotgunSawn node: shotgunsawn deconstructionTarget: null + - type: StaticPrice + price: 0 - type: entity name: blunderbuss @@ -234,6 +233,8 @@ fireRate: 2 - type: BallisticAmmoProvider capacity: 1 + - type: StaticPrice + price: 0 - type: entity name: improvised shotgun @@ -242,9 +243,9 @@ description: A shitty, hand-made shotgun that uses .50 shotgun shells. It can only hold one round in the chamber. components: - type: Sprite - sprite: Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi + sprite: DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi # Delta-V - type: Clothing - sprite: Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi + sprite: DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi # Delta-V - type: Item size: 75 - type: Gun @@ -256,7 +257,7 @@ graph: ImprovisedShotgunGraph node: shotgun - type: StaticPrice - price: 400 + price: 20 - type: entity name: improvised shotgun diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml index 68c494b888..ccec3c4d68 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml @@ -100,3 +100,5 @@ - CartridgeAntiMateriel capacity: 1 proto: CartridgeAntiMateriel + - type: StaticPrice + price: 0 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/flare_gun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/flare_gun.yml index d41346380c..d457793035 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/flare_gun.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/flare_gun.yml @@ -17,8 +17,13 @@ selectedMode: SemiAuto availableModes: - SemiAuto + compatibleAmmo: + - PelletShotgunFlare soundGunshot: path: /Audio/Weapons/Guns/Gunshots/flaregun.ogg + damageOnWrongAmmo: + types: + Blunt: 6.0 - type: BallisticAmmoProvider whitelist: tags: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml index c1fc668d59..d33f5ce38d 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml @@ -12,11 +12,13 @@ damage: types: Blunt: 10 + Structural: 5 - type: Wieldable - type: IncreaseDamageOnWield damage: types: - Blunt: 8 + Blunt: 5 + Structural: 10 - type: Item size: 80 - type: Tool diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/chainsaw.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/chainsaw.yml index 13f5191c10..7bd199f352 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/chainsaw.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/chainsaw.yml @@ -27,9 +27,8 @@ - type: IncreaseDamageOnWield damage: types: - Slash: 5 - Blunt: 5 - Structural: 20 + Slash: 10 + Structural: 10 - type: Item size: 50 sprite: Objects/Weapons/Melee/chainsaw.rsi diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/cult.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/cult.yml index 661ee379b2..89c67ca6bc 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/cult.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/cult.yml @@ -37,7 +37,7 @@ attackRate: 0.75 damage: types: - Slash: 33 + Slash: 16 - type: Item size: 20 - type: Clothing @@ -65,15 +65,15 @@ damage: types: Blunt: 10 - Slash: 20 - Structural: 3 + Slash: 10 + Structural: 5 - type: Wieldable - type: IncreaseDamageOnWield damage: types: - Blunt: 4 - Slash: 12 - Structural: 30 + Blunt: 5 + Slash: 5 + Structural: 10 - type: Item size: 150 - type: Clothing diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml index 2d0bd0fa8e..b9f9251201 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml @@ -9,7 +9,7 @@ types: Slash: 15 Heat: 15 - Structural: 4 + Structural: 20 Blunt: -4.5 litDisarmMalus: 0.6 - type: Sprite @@ -31,7 +31,7 @@ Blunt: 4.5 - type: Item size: 5 - sprite: Objects/Weapons/Melee/e_sword.rsi + sprite: DeltaV/Objects/Weapons/Melee/e_sword.rsi # Delta-V - type: UseDelay delay: 1.0 - type: PointLight @@ -66,8 +66,8 @@ secret: true litDamageBonus: types: - Slash: 9 - Heat: 9 + Slash: 10 + Heat: 10 Blunt: -1 litDisarmMalus: 0.4 activateSound: !type:SoundPathSpecifier @@ -146,10 +146,10 @@ - type: EnergySword secret: true litDamageBonus: - types: # DeltaV - modified e-cutlass to be superior to e-sword - Heat: 17 - Structural: 8.5 - Blunt: -6 + types: + Slash: 10 + Heat: 12 + Blunt: -1 litDisarmMalus: 0.6 - type: Sprite sprite: DeltaV/Objects/Weapons/Melee/e_cutlass.rsi # DeltaV @@ -169,7 +169,16 @@ Blunt: 6 - type: Item size: 5 - sprite: DeltaV/Objects/Weapons/Melee/e_cutlass.rsi #DeltaV + sprite: Objects/Weapons/Melee/e_cutlass.rsi + - type: ToggleableLightVisuals + spriteLayer: blade + inhandVisuals: + left: + - state: inhand-left-blade + shader: unshaded + right: + - state: inhand-right-blade + shader: unshaded - type: entity name: Double Bladed Energy Sword @@ -181,9 +190,9 @@ - type: EnergySword litDamageBonus: types: - Slash: 17 - Heat: 17 - Structural: 20 + Slash: 12 + Heat: 12 + Structural: 15 Blunt: -4.5 litDisarmMalus: 0.7 - type: MeleeWeapon @@ -206,7 +215,7 @@ map: [ "blade" ] - type: Item size: 10 - sprite: Objects/Weapons/Melee/e_sword_double.rsi + sprite: Objects/Weapons/Melee/e_sword_double-inhands.rsi - type: Reflect enabled: true reflectProb: .80 #DeltaV: 80% Energy Reflection but no ballistics. @@ -215,3 +224,12 @@ - Energy #DeltaV: 80% Energy Reflection but no ballistics. - type: UseDelay delay: 1 + - type: ToggleableLightVisuals + spriteLayer: blade + inhandVisuals: + left: + - state: inhand-left-blade + shader: unshaded + right: + - state: inhand-right-blade + shader: unshaded diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/fireaxe.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/fireaxe.yml index 1a634e42fb..0daa9443d3 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/fireaxe.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/fireaxe.yml @@ -19,15 +19,14 @@ types: # axes are kinda like sharp hammers, you know? Blunt: 5 - Slash: 13 - Structural: 7 + Slash: 10 + Structural: 10 - type: Wieldable - type: IncreaseDamageOnWield damage: types: - Blunt: 2.5 - Slash: 10.5 - Structural: 60 + Slash: 10 + Structural: 40 - type: Item size: 150 - type: Clothing @@ -43,6 +42,8 @@ - type: Prying - type: UseDelay delay: 1 + - type: IgniteOnMeleeHit + fireStacks: -4 - type: entity id: FireAxeFlaming diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/gohei.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/gohei.yml index 9e673da49d..d2bae62422 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/gohei.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/gohei.yml @@ -11,7 +11,7 @@ wideAnimationRotation: -150 damage: types: - Blunt: 3 #You'd be better off punching people + Blunt: 0 - type: Item size: 12 sprite: Objects/Weapons/Melee/gohei.rsi diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml index bbd18927e1..3f18e2cf50 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml @@ -15,7 +15,7 @@ wideAnimationRotation: -135 damage: types: - Slash: 12 + Slash: 10 soundHit: path: /Audio/Weapons/bladeslice.ogg - type: Sprite @@ -64,7 +64,7 @@ attackRate: 1.5 damage: types: - Slash: 10 + Slash: 13 - type: Item size: 10 sprite: Objects/Weapons/Melee/cleaver.rsi @@ -89,6 +89,12 @@ - type: MeleeWeapon wideAnimationRotation: -135 attackRate: 1.5 + damage: + types: + Slash: 12 + - type: EmbeddableProjectile + sound: /Audio/Weapons/star_hit.ogg + - type: DamageOtherOnHit damage: types: Slash: 10 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml index f3bb0ceec9..af9a958717 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml @@ -1,8 +1,8 @@ - type: entity - name: crusher + abstract: true parent: BaseItem id: BaseWeaponCrusher # Crusher? But I... - abstract: true + name: crusher description: An early design of the proto-kinetic accelerator. components: - type: Sharp @@ -13,7 +13,6 @@ radius: 4 - type: entity - name: crusher parent: BaseWeaponCrusher id: WeaponCrusher components: @@ -55,6 +54,7 @@ types: Blunt: 2.5 Slash: 2.5 + Structural: 10 - type: GunRequiresWield - type: Item size: 150 @@ -65,9 +65,9 @@ - type: Prying - type: entity - name: crusher dagger parent: BaseWeaponCrusher id: WeaponCrusherDagger + name: crusher dagger description: A scaled down version of a proto-kinetic crusher, usually used in a last ditch scenario. components: - type: Sprite @@ -78,7 +78,7 @@ attackRate: 1.5 damage: types: - Slash: 6.5 + Slash: 12 - type: Item size: 10 - type: Tag @@ -87,29 +87,23 @@ # Like a crusher... but better - type: entity - name: crusher glaive parent: WeaponCrusher id: WeaponCrusherGlaive + name: crusher glaive description: An early design of the proto-kinetic accelerator, in glaive form. components: - - type: Tag - tags: - - Pickaxe - - type: UseDelayOnShoot + - type: Sprite + sprite: Objects/Weapons/Melee/crusher_glaive.rsi - type: UseDelay delay: 1.9 - - type: Gun - fireRate: 1 - - type: RechargeBasicEntityAmmo - rechargeCooldown: 0.5 - type: LeechOnMarker leech: groups: Brute: -15 - - type: Sprite - sprite: Objects/Weapons/Melee/crusher_glaive.rsi - type: MeleeWeapon - wideAnimationRotation: -135 attackRate: 1.25 - type: Item size: 150 + - type: Tag + tags: + - Pickaxe diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml index 4af405d2c2..9e5830b9a0 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml @@ -16,15 +16,13 @@ damage: groups: Brute: 5 - types: - Structural: 10 - type: Wieldable - type: IncreaseDamageOnWield damage: groups: Brute: 10 types: - Structural: 10 + Structural: 25 - type: Item size: 80 sprite: Objects/Weapons/Melee/pickaxe.rsi @@ -50,7 +48,7 @@ groups: Brute: 10 types: - Structural: 10 + Structural: 20 - type: ReverseEngineering # Nyano difficulty: 2 recipes: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sledgehammer.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sledgehammer.yml index 8a3754c035..b8703f5ae0 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sledgehammer.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sledgehammer.yml @@ -10,13 +10,13 @@ - type: MeleeWeapon damage: types: - Blunt: 14 - Structural: 15 + Blunt: 10 + Structural: 10 - type: Wieldable - type: IncreaseDamageOnWield damage: types: Blunt: 10 - Structural: 60 + Structural: 10 - type: Item size: 80 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml index d34d29d5eb..a6b70ff9b6 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml @@ -93,6 +93,8 @@ - !type:PlaySoundBehavior sound: collection: GlassBreak + params: + volume: -4 - !type:SpawnEntitiesBehavior spawn: PartRodMetal1: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml index bc676f2f09..01cf611550 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml @@ -45,7 +45,7 @@ wideAnimationRotation: -135 damage: types: - Slash: 25 + Slash: 15 soundHit: path: /Audio/Weapons/bladeslice.ogg - type: Item @@ -101,7 +101,7 @@ wideAnimationRotation: -135 damage: types: - Slash: 20 + Slash: 15 soundHit: path: /Audio/Weapons/bladeslice.ogg - type: Item @@ -124,7 +124,7 @@ attackRate: 0.75 damage: types: - Slash: 33 + Slash: 20 soundHit: path: /Audio/Weapons/bladeslice.ogg - type: Item diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml index f7d0a0e5df..43ed06a3ea 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml @@ -11,16 +11,233 @@ - type: ClusterGrenadeVisuals state: base - type: ClusterGrenade + - type: OnUseTimerTrigger + delay: 3.5 - type: ContainerContainer containers: - cluster-flash: !type:Container + cluster-payload: !type:Container - type: entity - parent: ClusterBang + parent: GrenadeBase id: ClusterBangFull + name: ClusterBang + description: Launches three flashbangs after the timer runs out. suffix: Full components: - type: Sprite - state: base-3 + sprite: Objects/Weapons/Grenades/clusterbang.rsi + layers: + - state: icon + map: ["enum.TriggerVisualLayers.Base"] - type: ClusterGrenade fillPrototype: GrenadeFlashBang + distance: 7 + velocity: 7 + - type: TimerTriggerVisuals + primingSound: + path: /Audio/Effects/countdown.ogg + - type: GenericVisualizer + visuals: + enum.Trigger.TriggerVisuals.VisualState: + enum.ConstructionVisuals.Layer: + Primed: { state: primed } + Unprimed: { state: icon } + - type: EmitSoundOnTrigger + sound: + path: "/Audio/Machines/door_lock_off.ogg" + - type: ContainerContainer + containers: + cluster-payload: !type:Container + +- type: entity + parent: GrenadeBase + id: ClusterGrenade + name: clustergrenade + description: Why use one grenade when you can use three at once! + components: + - type: Sprite + sprite: Objects/Weapons/Grenades/clusterbomb.rsi + layers: + - state: icon + map: ["enum.TriggerVisualLayers.Base"] + - type: ClusterGrenade + fillPrototype: ExGrenade + velocity: 3.5 + distance: 5 + - type: OnUseTimerTrigger + beepSound: + path: "/Audio/Effects/beep1.ogg" + params: + volume: 5 + initialBeepDelay: 0 + beepInterval: 0.5 + - type: EmitSoundOnTrigger + sound: + path: "/Audio/Machines/door_lock_off.ogg" + - type: ContainerContainer + containers: + cluster-payload: !type:Container + +- type: entity + parent: BaseItem + id: ClusterBananaPeel + name: cluster banana peel + description: Splits into 6 explosive banana peels after throwing, guaranteed fun! + components: + - type: Sprite + sprite: Objects/Specific/Hydroponics/banana.rsi + state: produce + - type: Appearance + - type: ClusterGrenade + fillPrototype: TrashBananaPeelExplosive + maxGrenadesCount: 6 + baseTriggerDelay: 20 + - type: DamageOnLand + damage: + types: + Blunt: 10 + - type: Damageable + damageContainer: Inorganic + - type: EmitSoundOnTrigger + sound: + path: "/Audio/Items/bikehorn.ogg" + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 10 + behaviors: + - !type:TriggerBehavior + - !type:DoActsBehavior + acts: ["Destruction"] + - type: ContainerContainer + containers: + cluster-payload: !type:Container + +- type: entity + parent: GrenadeBase + id: GrenadeStinger + name: stinger grenade + description: Nothing to see here, please disperse. + components: + - type: Sprite + sprite: Objects/Weapons/Grenades/stingergrenade.rsi + layers: + - state: icon + map: ["enum.TriggerVisualLayers.Base"] + - type: ClusterGrenade + fillPrototype: PelletClusterRubber + maxGrenadesCount: 30 + grenadeType: enum.GrenadeType.Shoot + - type: FlashOnTrigger + range: 7 + - type: EmitSoundOnTrigger + sound: + path: "/Audio/Effects/flash_bang.ogg" + - type: SpawnOnTrigger + proto: GrenadeFlashEffect + - type: TimerTriggerVisuals + primingSound: + path: /Audio/Effects/countdown.ogg + - type: ContainerContainer + containers: + cluster-payload: !type:Container + +- type: entity + parent: GrenadeBase + id: GrenadeIncendiary + name: incendiary grenade + description: Guaranteed to light up the mood. + components: + - type: Sprite + sprite: Objects/Weapons/Grenades/pyrogrenade.rsi + layers: + - state: icon + map: ["enum.TriggerVisualLayers.Base"] + - type: ClusterGrenade + fillPrototype: PelletClusterIncendiary + maxGrenadesCount: 15 + grenadeType: enum.GrenadeType.Shoot + - type: OnUseTimerTrigger + beepSound: + path: "/Audio/Effects/beep1.ogg" + params: + volume: 5 + initialBeepDelay: 0 + beepInterval: 2 + - type: EmitSoundOnTrigger + sound: + path: "/Audio/Weapons/Guns/Gunshots/batrifle.ogg" + - type: ContainerContainer + containers: + cluster-payload: !type:Container + +- type: entity + parent: GrenadeBase + id: GrenadeShrapnel + name: shrapnel grenade + description: Releases a deadly spray of shrapnel that causes severe bleeding. + components: + - type: Sprite + sprite: Objects/Weapons/Grenades/shrapnelgrenade.rsi + layers: + - state: icon + map: ["enum.TriggerVisualLayers.Base"] + - type: ClusterGrenade + fillPrototype: PelletClusterLethal + maxGrenadesCount: 30 + grenadeType: enum.GrenadeType.Shoot + - type: OnUseTimerTrigger + beepSound: + path: "/Audio/Effects/beep1.ogg" + params: + volume: 5 + initialBeepDelay: 0 + beepInterval: 2 + - type: EmitSoundOnTrigger + sound: + path: "/Audio/Weapons/Guns/Gunshots/batrifle.ogg" + - type: ContainerContainer + containers: + cluster-payload: !type:Container + +- type: entity + parent: SoapSyndie + id: SlipocalypseClusterSoap + name: slipocalypse clustersoap + description: Spreads small pieces of syndicate soap over an area upon landing on the floor. + components: + - type: Sprite + sprite: Objects/Specific/Janitorial/soap.rsi + layers: + - state: syndie-4 + - type: Appearance + - type: ClusterGrenade + fillPrototype: SoapletSyndie + maxGrenadesCount: 30 + grenadeTriggerIntervalMax: 0 + grenadeTriggerIntervalMin: 0 + baseTriggerDelay: 60 + randomSpread: true + velocity: 3 + - type: DamageOnLand + damage: + types: + Blunt: 10 + - type: EmitSoundOnTrigger + sound: + path: "/Audio/Effects/flash_bang.ogg" + - type: Damageable + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 10 + behaviors: + - !type:TriggerBehavior + - !type:DoActsBehavior + acts: ["Destruction"] + - type: ContainerContainer + containers: + cluster-payload: !type:Container diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml index 9f18b94d2c..0f749e72a0 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml @@ -29,7 +29,12 @@ acts: ["Destruction"] - type: Appearance - type: AnimationPlayer - - type: TimerTriggerVisuals + - type: GenericVisualizer + visuals: + enum.Trigger.TriggerVisuals.VisualState: + enum.ConstructionVisuals.Layer: + Primed: { state: primed } + Unprimed: { state: icon } - type: entity name: explosive grenade @@ -340,3 +345,34 @@ - type: TimerTriggerVisuals primingSound: path: /Audio/Effects/hallelujah.ogg + +- type: entity + parent: GrenadeBase + id: SmokeGrenade + name: smoke grenade + description: A tactical grenade that releases a large, long-lasting cloud of smoke when used. + components: + - type: Sprite + sprite: Objects/Weapons/Grenades/smoke.rsi + - type: SmokeOnTrigger + duration: 30 + spreadAmount: 50 + - type: SoundOnTrigger + sound: /Audio/Effects/smoke.ogg + - type: DeleteOnTrigger + +- type: entity + parent: SmokeGrenade + id: TearGasGrenade + name: tear gas grenade + description: A riot control tear gas grenade. Causes irritation, pain and makes you cry your eyes out. + components: + - type: Sprite + sprite: Objects/Weapons/Grenades/tear_gas.rsi + - type: SmokeOnTrigger + duration: 10 + spreadAmount: 30 + solution: + reagents: + - ReagentId: TearGas + Quantity: 50 diff --git a/Resources/Prototypes/Entities/Stations/base.yml b/Resources/Prototypes/Entities/Stations/base.yml index ae84ceac65..856a37029d 100644 --- a/Resources/Prototypes/Entities/Stations/base.yml +++ b/Resources/Prototypes/Entities/Stations/base.yml @@ -32,6 +32,13 @@ components: - type: StationArrivals +- type: entity + id: BaseStationGateway + abstract: true + components: + - type: GatewayGenerator + + - type: entity id: BaseStationShuttles abstract: true diff --git a/Resources/Prototypes/Entities/Stations/nanotrasen.yml b/Resources/Prototypes/Entities/Stations/nanotrasen.yml index f87beb566d..66bcc245ff 100644 --- a/Resources/Prototypes/Entities/Stations/nanotrasen.yml +++ b/Resources/Prototypes/Entities/Stations/nanotrasen.yml @@ -14,6 +14,7 @@ - BaseStationJobsSpawning - BaseStationRecords - BaseStationArrivals + - BaseStationGateway - BaseStationShuttles - BaseStationCentcomm - BaseStationEvacuation diff --git a/Resources/Prototypes/Entities/Structures/Decoration/crystals.yml b/Resources/Prototypes/Entities/Structures/Decoration/crystals.yml index 4afe06c8a5..9bee6a0d4d 100644 --- a/Resources/Prototypes/Entities/Structures/Decoration/crystals.yml +++ b/Resources/Prototypes/Entities/Structures/Decoration/crystals.yml @@ -1,17 +1,24 @@ - type: entity id: CrystalGreen parent: BaseStructure - name: green crystal - description: It's a shiny green crystal. + suffix: green + name: crystal + description: A crystaline solid. components: - type: Sprite sprite: Structures/Decoration/crystal.rsi - state: crystal_green + state: crystal_grey + color: "#52ff39" noRot: true - type: Reflect reflectProb: 0.5 reflects: - Energy + spread: 75 + - type: Anchorable + delay: 2 + - type: Physics + bodyType: Static - type: Fixtures fixtures: fix1: @@ -29,89 +36,162 @@ - type: PointLight radius: 3 energy: 3 - color: "#06DF24" + color: "#52ff39" - type: Damageable damageContainer: Inorganic - damageModifierSet: Metallic + damageModifierSet: Glass - type: Destructible thresholds: - trigger: !type:DamageTrigger damage: 50 behaviors: - - !type:DoActsBehavior - acts: [ "Destruction" ] - !type:PlaySoundBehavior sound: collection: GlassBreak + - !type:SpawnEntitiesBehavior + spawn: + ShardCrystalGreen: + min: 1 + max: 1 + - !type:DoActsBehavior + acts: [ "Destruction" ] - type: entity id: CrystalPink parent: CrystalGreen - name: pink crystal - description: It's a shiny pink crystal. + suffix: pink components: - type: Sprite - sprite: Structures/Decoration/crystal.rsi - state: crystal_pink + color: "#ff66cc" - type: PointLight radius: 3 energy: 3 - color: "#DF06DC" + color: "#ff66cc" + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 50 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:PlaySoundBehavior + sound: + collection: GlassBreak + - !type:SpawnEntitiesBehavior + spawn: + ShardCrystalPink: + min: 1 + max: 1 - type: entity id: CrystalGrey parent: CrystalGreen - name: grey crystal - description: It's a shiny grey crystal. + suffix: red components: - type: Sprite - sprite: Structures/Decoration/crystal.rsi state: crystal_grey + color: "#fb4747" - type: PointLight - radius: 3 - energy: 3 - color: "#C1B0C1" + color: "#fb4747" + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 50 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:PlaySoundBehavior + sound: + collection: GlassBreak + - !type:SpawnEntitiesBehavior + spawn: + ShardCrystalRed: + min: 1 + max: 2 - type: entity id: CrystalOrange parent: CrystalGreen - name: orange crystal - description: It's a shiny orange crystal. + suffix: orange components: - type: Sprite - sprite: Structures/Decoration/crystal.rsi - state: crystal_orange + color: "#ff8227" - type: PointLight radius: 3 energy: 3 - color: "#E8820F" + color: "#ff8227" + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 50 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:PlaySoundBehavior + sound: + collection: GlassBreak + - !type:SpawnEntitiesBehavior + spawn: + ShardCrystalOrange: + min: 1 + max: 2 - type: entity id: CrystalBlue parent: CrystalGreen - name: blue crystal - description: It's a shiny blue crystal. + suffix: blue components: - type: Sprite - sprite: Structures/Decoration/crystal.rsi - state: crystal_blue + color: "#39a1ff" - type: PointLight radius: 3 energy: 3 - color: "#1843D4" + color: "#39a1ff" + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 50 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:PlaySoundBehavior + sound: + collection: GlassBreak + - !type:SpawnEntitiesBehavior + spawn: + ShardCrystalBlue: + min: 1 + max: 2 - type: entity id: CrystalCyan parent: CrystalGreen - name: cyan crystal - description: It's a shiny cyan crystal. + suffix: cyan components: - type: Sprite - sprite: Structures/Decoration/crystal.rsi - state: crystal_cyan + color: "#47f8ff" - type: PointLight radius: 3 energy: 3 - color: "#18C9D4" - + color: "#47f8ff" + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 50 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: GlassBreak + - !type:SpawnEntitiesBehavior + spawn: + ShardCrystalCyan: + min: 1 + max: 2 + - !type:DoActsBehavior + acts: [ "Destruction" ] diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml index 87866c85ba..a3b76be1ad 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml @@ -7,6 +7,14 @@ - type: AccessReader access: [["Service"]] +- type: entity + parent: Airlock + id: AirlockLawyerLocked + suffix: Lawyer, Locked + components: + - type: AccessReader + access: [["Lawyer"]] + - type: entity parent: Airlock id: AirlockTheatreLocked @@ -127,6 +135,14 @@ - type: AccessReader access: [["Kitchen"], ["Hydroponics"]] +- type: entity + parent: AirlockFreezer + id: AirlockFreezerHydroponicsLocked + suffix: Hydroponics, Locked + components: + - type: AccessReader + access: [["Hydroponics"]] + - type: entity parent: AirlockEngineering id: AirlockEngineeringLocked @@ -159,6 +175,14 @@ - type: AccessReader access: [["Salvage"]] +- type: entity + parent: AirlockMining + id: AirlockMiningLocked + suffix: Mining(Salvage), Locked + components: + - type: AccessReader + access: [["Salvage"]] + - type: entity parent: AirlockMedical id: AirlockMedicalLocked @@ -293,13 +317,24 @@ - type: Wires layoutId: AirlockSecurity +#Delta V: Removed Brig Access +#- type: entity +# parent: AirlockSecurity +# id: AirlockBrigLocked +# suffix: Brig, Locked +# components: +# - type: AccessReader +# access: [["Brig"]] +# - type: Wires +# layoutId: AirlockSecurity + - type: entity parent: AirlockSecurity - id: AirlockBrigLocked - suffix: Brig, Locked + id: AirlockSecurityLawyerLocked + suffix: Security/Lawyer, Locked components: - type: AccessReader - access: [["Brig"]] + access: [["Security"], ["Lawyer"]] - type: Wires layoutId: AirlockSecurity @@ -329,6 +364,80 @@ - type: AccessReader access: [["External"]] +#Delta V: Add Airlocks +- type: entity + parent: Airlock + id: AirlockBoxerLocked + suffix: Boxer, Locked + components: + - type: AccessReader + access: [["Boxer"]] + +- type: entity + parent: Airlock + id: AirlockClownLocked + suffix: Clown, Locked + components: + - type: AccessReader + access: [["Clown"]] + +- type: entity + parent: Airlock + id: AirlockMimeLocked + suffix: Mime, Locked + components: + - type: AccessReader + access: [["Mime"]] + +- type: entity + parent: Airlock + id: AirlockMusicianLocked + suffix: Musician, Locked + components: + - type: AccessReader + access: [["Musician"]] + +- type: entity + parent: Airlock + id: AirlockReporterLocked + suffix: Reporter, Locked + components: + - type: AccessReader + access: [["Reporter"]] + +- type: entity + parent: Airlock + id: AirlockLibraryLocked + suffix: Library, Locked + components: + - type: AccessReader + access: [["Library"]] + +- type: entity + parent: Airlock + id: AirlockZookeeperLocked + suffix: Zookeeper, Locked + components: + - type: AccessReader + access: [["Zookeeper"]] + +- type: entity + parent: AirlockExternal + id: AirlockExternalSalvageLocked + suffix: External, Salvage, Locked + components: + - type: AccessReader + access: [["Salvage"]] + +- type: entity + parent: AirlockMedical + id: AirlockPsychologistLocked + suffix: Psychologist, Locked + components: + - type: AccessReader + access: [["Psychologist"]] +#End of Delta V + # Glass Airlocks - type: entity parent: AirlockGlass @@ -338,6 +447,14 @@ - type: AccessReader access: [["Service"]] +- type: entity + parent: AirlockGlass + id: AirlockLawyerGlassLocked + suffix: Lawyer, Locked + components: + - type: AccessReader + access: [["Lawyer"]] + - type: entity parent: AirlockGlass id: AirlockBarGlassLocked @@ -450,6 +567,22 @@ - type: AccessReader access: [["Salvage"]] +- type: entity + parent: AirlockMiningGlass + id: AirlockMiningGlassLocked + suffix: Mining(Salvage), Locked + components: + - type: AccessReader + access: [["Salvage"]] + +- type: entity + parent: AirlockChemistryGlass + id: AirlockChemistryGlassLocked + suffix: Chemistry, Locked + components: + - type: AccessReader + access: [["Chemistry"]] + - type: entity parent: AirlockMedicalGlass id: AirlockMedicalGlassLocked @@ -570,13 +703,22 @@ - type: AccessReader access: [["Detective"]] +#Delta V: Removed Brig Access +#- type: entity +# parent: AirlockSecurityGlass +# id: AirlockBrigGlassLocked +# suffix: Brig, Locked +# components: +# - type: AccessReader +# access: [["Brig"]] + - type: entity parent: AirlockSecurityGlass - id: AirlockBrigGlassLocked - suffix: Brig, Locked + id: AirlockSecurityLawyerGlassLocked + suffix: Security/Lawyer, Locked components: - type: AccessReader - access: [["Brig"]] + access: [["Security"], ["Lawyer"]] - type: entity parent: AirlockSecurityGlass @@ -610,6 +752,80 @@ - type: AccessReader access: [["NuclearOperative"]] +#Delta V: Add Airlocks +- type: entity + parent: AirlockGlass + id: AirlockBoxerGlassLocked + suffix: Boxer, Locked + components: + - type: AccessReader + access: [["Boxer"]] + +- type: entity + parent: AirlockGlass + id: AirlockClownGlassLocked + suffix: Clown, Locked + components: + - type: AccessReader + access: [["Clown"]] + +- type: entity + parent: AirlockGlass + id: AirlockMimeGlassLocked + suffix: Mime, Locked + components: + - type: AccessReader + access: [["Mime"]] + +- type: entity + parent: AirlockGlass + id: AirlockMusicianGlassLocked + suffix: Musician, Locked + components: + - type: AccessReader + access: [["Musician"]] + +- type: entity + parent: AirlockGlass + id: AirlockReporterGlassLocked + suffix: Reporter, Locked + components: + - type: AccessReader + access: [["Reporter"]] + +- type: entity + parent: AirlockGlass + id: AirlockLibraryGlassLocked + suffix: Library, Locked + components: + - type: AccessReader + access: [["Library"]] + +- type: entity + parent: AirlockGlass + id: AirlockZookeeperGlassLocked + suffix: Zookeeper, Locked + components: + - type: AccessReader + access: [["Zookeeper"]] + +- type: entity + parent: AirlockExternalGlass + id: AirlockExternalGlassSalvageLocked + suffix: External, Glass, Salvage, Locked + components: + - type: AccessReader + access: [["Salvage"]] + +- type: entity + parent: AirlockMedicalGlass + id: AirlockPsychologistGlassLocked + suffix: Psychologist, Locked + components: + - type: AccessReader + access: [["Psychologist"]] +#End of Delta V + # Maintenance Hatches - type: entity parent: AirlockMaint @@ -707,6 +923,22 @@ - type: AccessReader access: [["Janitor"]] +- type: entity + parent: AirlockMaint + id: AirlockMaintLawyerLocked + suffix: Lawyer, Locked + components: + - type: AccessReader + access: [["Lawyer"]] + +- type: entity + parent: AirlockMaint + id: AirlockMaintServiceLocked + suffix: Service, Locked + components: + - type: AccessReader + access: [["Service"]] + - type: entity parent: AirlockMaint id: AirlockMaintTheatreLocked @@ -795,6 +1027,120 @@ - type: AccessReader access: [["Captain"]] +- type: entity + parent: AirlockMaint + id: AirlockMaintChiefEngineerLocked + suffix: ChiefEngineer, Locked + components: + - type: AccessReader + access: [["ChiefEngineer"]] + +- type: entity + parent: AirlockMaint + id: AirlockMaintChiefMedicalOfficerLocked + suffix: ChiefMedicalOfficer, Locked + components: + - type: AccessReader + access: [["ChiefMedicalOfficer"]] + +- type: entity + parent: AirlockMaint + id: AirlockMaintHeadOfSecurityLocked + suffix: HeadOfSecurity, Locked + components: + - type: AccessReader + access: [["HeadOfSecurity"]] + +- type: entity + parent: AirlockMaint + id: AirlockMaintResearchDirectorLocked + suffix: ResearchDirector, Locked + components: + - type: AccessReader + access: [["ResearchDirector"]] + +- type: entity + parent: AirlockMaint + id: AirlockMaintArmoryLocked + suffix: Armory, Locked + components: + - type: AccessReader + access: [["Armory"]] + +#Delta V: Add Airlocks +- type: entity + parent: AirlockMaint + id: AirlockMaintBoxerLocked + suffix: Boxer, Locked + components: + - type: AccessReader + access: [["Boxer"]] + +- type: entity + parent: AirlockMaint + id: AirlockMaintClownLocked + suffix: Clown, Locked + components: + - type: AccessReader + access: [["Clown"]] + +- type: entity + parent: AirlockMaint + id: AirlockMaintMimeLocked + suffix: Mime, Locked + components: + - type: AccessReader + access: [["Mime"]] + +- type: entity + parent: AirlockMaint + id: AirlockMaintMusicianLocked + suffix: Musician, Locked + components: + - type: AccessReader + access: [["Musician"]] + +- type: entity + parent: AirlockMaint + id: AirlockMaintReporterLocked + suffix: Reporter, Locked + components: + - type: AccessReader + access: [["Reporter"]] + +- type: entity + parent: AirlockMaint + id: AirlockMaintLibraryLocked + suffix: Library, Locked + components: + - type: AccessReader + access: [["Library"]] + +- type: entity + parent: AirlockMaint + id: AirlockMaintZookeeperLocked + suffix: Zookeeper, Locked + components: + - type: AccessReader + access: [["Zookeeper"]] + +- type: entity + parent: AirlockMaint + id: AirlockMaintPsychologistLocked + suffix: Psychologist, Locked + components: + - type: AccessReader + access: [["Psychologist"]] + +- type: entity + parent: AirlockMaint + id: AirlockMaintSecurityLawyerLocked + suffix: Security/Lawyer, Locked + components: + - type: AccessReader + access: [["Security"], ["Lawyer"]] +#End of Delta V + - type: entity parent: AirlockSyndicate id: AirlockSyndicateLocked @@ -821,7 +1167,7 @@ access: [["External"]] - type: entity - parent: AirlockShuttle + parent: AirlockShuttleSyndicate id: AirlockExternalShuttleSyndicateLocked suffix: External, Docking, Syndicate, Locked components: @@ -829,7 +1175,7 @@ access: [["SyndicateAgent"]] - type: entity - parent: AirlockShuttle + parent: AirlockShuttleSyndicate id: AirlockExternalShuttleNukeopLocked suffix: External, Docking, Nukeop, Locked components: @@ -844,6 +1190,22 @@ - type: AccessReader access: [["External"]] +- type: entity + parent: AirlockGlassShuttleSyndicate + id: AirlockExternalGlassShuttleSyndicateLocked + suffix: Syndicate, Locked, Glass + components: + - type: AccessReader + access: [["SyndicateAgent"]] + +- type: entity + parent: AirlockGlassShuttleSyndicate + id: AirlockExternalGlassShuttleNukeopLocked + suffix: Nukeop, Locked, Glass + components: + - type: AccessReader + access: [["NuclearOperative"]] + - type: entity parent: AirlockGlassShuttle id: AirlockExternalGlassShuttleEmergencyLocked diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml index aa3deaf3a3..0a7ec93196 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml @@ -96,6 +96,14 @@ - type: Sprite sprite: Structures/Doors/Airlocks/Standard/syndicate.rsi +- type: entity + parent: Airlock + id: AirlockMining + suffix: Mining(Salvage) + components: + - type: Sprite + sprite: Structures/Doors/Airlocks/Standard/mining.rsi + # Glass - type: entity @@ -180,6 +188,16 @@ - type: PaintableAirlock group: Glass +- type: entity + parent: AirlockGlass + id: AirlockChemistryGlass + suffix: Chemistry + components: + - type: Sprite + sprite: Structures/Doors/Airlocks/Glass/medical.rsi + - type: PaintableAirlock + group: Glass + - type: entity parent: AirlockGlass id: AirlockMedicalGlass @@ -241,3 +259,11 @@ sprite: Structures/Doors/Airlocks/Glass/syndicate.rsi - type: PaintableAirlock group: Glass + +- type: entity + parent: AirlockGlass + id: AirlockMiningGlass + suffix: Mining(Salvage) + components: + - type: Sprite + sprite: Structures/Doors/Airlocks/Glass/mining.rsi diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml index a6ca726967..d6dc74efd0 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml @@ -107,8 +107,8 @@ resistance: 3 - type: Occluder - type: Damageable - damageContainer: Inorganic - damageModifierSet: Metallic + damageContainer: StructuralInorganic + damageModifierSet: StrongMetallic - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/external.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/external.yml index 233e020193..5e2eb5689f 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/external.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/external.yml @@ -2,10 +2,9 @@ parent: Airlock id: AirlockExternal suffix: External - description: It opens, it closes, it might crush you, and there might be only space behind it. Has to be manually activated. + description: It opens, it closes, it might crush you, and there might be only space behind it. components: - type: Door - bumpOpen: false crushDamage: types: Blunt: 15 diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml index b560e8cd10..2ed1c60d37 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml @@ -58,6 +58,7 @@ time: 10 - type: Airlock - type: DoorBolt + - type: AccessReader - type: Appearance - type: WiresVisuals - type: ApcPowerReceiver @@ -81,8 +82,8 @@ fixVacuum: true - type: Occluder - type: Damageable - damageContainer: Inorganic - damageModifierSet: Metallic + damageContainer: StructuralInorganic + damageModifierSet: StrongMetallic - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml index aa14d74838..8c5aa49b8e 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml @@ -45,7 +45,6 @@ - type: Wires layoutId: Docking - type: Door - bumpOpen: false closeTimeTwo: 0.4 openTimeTwo: 0.4 crushDamage: @@ -120,3 +119,47 @@ - type: Construction graph: AirlockShuttle node: assembly + +- type: entity + id: AirlockGlassShuttleSyndicate + parent: AirlockShuttle + name: external airlock + suffix: Glass, Docking + description: Necessary for connecting two space craft together. + components: + - type: Docking + - type: Sprite + sprite: Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi + snapCardinals: false + layers: + - state: closed + map: ["enum.DoorVisualLayers.Base"] + - state: closed_unlit + shader: unshaded + map: ["enum.DoorVisualLayers.BaseUnlit"] + - state: welded + map: ["enum.WeldableLayers.BaseWelded"] + - state: bolted_unlit + shader: unshaded + map: ["enum.DoorVisualLayers.BaseBolted"] + - state: emergency_unlit + shader: unshaded + map: ["enum.DoorVisualLayers.BaseEmergencyAccess"] + - state: panel_open + map: ["enum.WiresVisualLayers.MaintenancePanel"] + - type: Occluder + enabled: false + - type: PaintableAirlock + group: ShuttleGlass + - type: Door + occludes: false + +- type: entity + parent: AirlockShuttle + id: AirlockShuttleSyndicate + suffix: Docking + name: external airlock + description: Necessary for connecting two space craft together. + components: + - type: Sprite + sprite: Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi diff --git a/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml b/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml index 9605b7edec..cafaea3a22 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml @@ -54,6 +54,12 @@ key: walls mode: NoSprite - type: Occluder + - type: ContainerFill + containers: + battery-container: [ PowerCellMedium ] + - type: ContainerContainer + containers: + battery-container: !type:Container - type: entity id: BaseSecretDoorAssembly diff --git a/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml b/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml index 37ad6e3aed..1673ccd0cb 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml @@ -25,7 +25,7 @@ - type: RadiationBlocker resistance: 8 - type: Damageable - damageContainer: Inorganic + damageContainer: StructuralInorganic damageModifierSet: StrongMetallic - type: entity diff --git a/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml b/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml index e4b9e574c7..876e4d0ef4 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml @@ -62,8 +62,8 @@ - type: RadiationBlocker resistance: 2 - type: Damageable - damageContainer: Inorganic - damageModifierSet: Metallic + damageContainer: StructuralInorganic + damageModifierSet: StrongMetallic - type: Destructible thresholds: - trigger: @@ -139,6 +139,8 @@ node: ShuttersRadiation containers: - board + - type: RadiationBlocker + resistance: 4 - type: entity id: ShuttersRadiationOpen @@ -172,6 +174,8 @@ node: ShuttersWindow containers: - board + - type: RadiationBlocker + resistance: 1 - type: entity id: ShuttersWindowOpen diff --git a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml index cdaba14d52..30d75d5cda 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml @@ -17,7 +17,7 @@ fix1: shape: !type:PhysShapeAabb - bounds: "-0.49,-0.39,0.49,-0.36" + bounds: "-0.49,-0.49,0.49,-0.36" density: 1500 mask: - TabletopMachineMask diff --git a/Resources/Prototypes/Entities/Structures/Doors/Windoors/windoor.yml b/Resources/Prototypes/Entities/Structures/Doors/Windoors/windoor.yml index cee7e6d2a7..f855133257 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Windoors/windoor.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Windoors/windoor.yml @@ -103,13 +103,14 @@ - type: AccessReader access: [["Armory"]] -- type: entity - parent: WindoorSecureSecurityLocked - id: WindoorSecureBrigLocked - suffix: Brig, Locked - components: - - type: AccessReader - access: [["Brig"]] +#Delta V: Removed Brig Access +#- type: entity +# parent: WindoorSecureSecurityLocked +# id: WindoorSecureBrigLocked +# suffix: Brig, Locked +# components: +# - type: AccessReader +# access: [["Brig"]] - type: entity parent: WindoorSecure @@ -175,6 +176,14 @@ - type: AccessReader access: [["Kitchen"]] +- type: entity + parent: WindoorSecureSecurityLocked + id: WindoorSecureSecurityLawyerLocked + suffix: Security/Lawyer, Locked + components: + - type: AccessReader + access: [["Security"], ["Lawyer"]] + - type: entity parent: WindoorSecure id: WindoorSecureMedicalLocked @@ -222,11 +231,3 @@ components: - type: AccessReader access: [["Atmospherics"]] - -- type: entity - parent: WindoorSecure - id: WindoorSecureParamedicLocked - suffix: Paramedic, Locked - components: - - type: AccessReader - access: [["Paramedic"]] diff --git a/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml b/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml index 5036ab83c8..5c42e7cf32 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml @@ -42,6 +42,8 @@ - !type:PlaySoundBehavior sound: path: /Audio/Effects/metalbreak.ogg + params: + volume: -6 - !type:SpawnEntitiesBehavior spawn: PartRodMetal1: @@ -140,6 +142,8 @@ - !type:PlaySoundBehavior sound: path: /Audio/Effects/metalbreak.ogg + params: + volume: -6 - !type:SpawnEntitiesBehavior spawn: SheetSteel1: @@ -179,6 +183,8 @@ - !type:PlaySoundBehavior sound: path: /Audio/Effects/metalbreak.ogg + params: + volume: -6 - !type:SpawnEntitiesBehavior spawn: SheetSteel1: @@ -215,6 +221,8 @@ - !type:PlaySoundBehavior sound: path: /Audio/Effects/metalbreak.ogg + params: + volume: -6 - !type:SpawnEntitiesBehavior spawn: SheetSteel1: @@ -601,6 +609,8 @@ - !type:PlaySoundBehavior sound: path: /Audio/Effects/metalbreak.ogg + params: + volume: -6 - !type:SpawnEntitiesBehavior spawn: SheetSteel1: diff --git a/Resources/Prototypes/Entities/Structures/Furniture/beds.yml b/Resources/Prototypes/Entities/Structures/Furniture/beds.yml index 83e043334c..3f0234a089 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/beds.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/beds.yml @@ -153,3 +153,29 @@ - type: Construction graph: WebStructures node: bed + +- type: entity + parent: Bed + id: PsychBed + name: psychologist bed + description: An upholstered bed for the psychological care of patients. + components: + - type: Sprite + state: psychbed + - type: HealOnBuckle + damage: + types: + Cold: -0.5 + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 75 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - !type:SpawnEntitiesBehavior + spawn: + MaterialWoodPlank: + min: 2 + max: 2 diff --git a/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml b/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml index aaff4e1e28..b1684bb3c3 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml @@ -66,6 +66,15 @@ graph: Seat node: chair +- type: entity + name: chair + id: ChairGreyscale + parent: Chair + suffix: White + components: + - type: Sprite + state: chair-greyscale + - type: entity name: stool id: Stool diff --git a/Resources/Prototypes/Entities/Structures/Furniture/potted_plants.yml b/Resources/Prototypes/Entities/Structures/Furniture/potted_plants.yml index 98f5a001da..72a445a8a4 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/potted_plants.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/potted_plants.yml @@ -235,34 +235,42 @@ - type: Sprite state: plant-25 -#these are all the plastic plants. They inherit from the first one because they don't have -#enough differences to warrant getting a unique abstract prototype. It's just the name and description. - type: entity id: PottedPlant26 parent: PottedPlantBase - name: plastic potted plant - description: A fake, cheap looking, plastic tree. Perfect for people who kill every plant they touch. + description: Is it just me, or is it blinking? components: - type: Sprite state: plant-26 +#these are all the plastic plants. They inherit from the first one because they don't have +#enough differences to warrant getting a unique abstract prototype. It's just the name and description. - type: entity id: PottedPlant27 - parent: PottedPlant26 + parent: PottedPlantBase + name: plastic potted plant + description: A fake, cheap looking, plastic tree. Perfect for people who kill every plant they touch. components: - type: Sprite state: plant-27 - type: entity id: PottedPlant28 - parent: PottedPlant26 + parent: PottedPlant27 components: - type: Sprite state: plant-28 - type: entity id: PottedPlant29 - parent: PottedPlant26 + parent: PottedPlant27 components: - type: Sprite state: plant-29 + +- type: entity + id: PottedPlant30 + parent: PottedPlant27 + components: + - type: Sprite + state: plant-30 \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml index ac8d2c5417..a146e9ddcf 100644 --- a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml +++ b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml @@ -303,11 +303,11 @@ components: - type: PointLight enabled: false - radius: 10 - energy: 2.5 - offset: "0, 0.2" + radius: 5 + energy: 0.6 + offset: "0, 0.4" color: "#FF4020" - mask: /Textures/Effects/LightMasks/cone.png + mask: /Textures/Effects/LightMasks/double_cone.png - type: ApcPowerReceiver - type: ExtensionCableReceiver - type: Battery @@ -315,6 +315,7 @@ startingCharge: 0 - type: EmergencyLight - type: RotatingLight + speed: 40 - type: Sprite sprite: Structures/Wallmounts/Lighting/emergency_light.rsi layers: @@ -329,12 +330,6 @@ shader: "unshaded" visible: false - type: Appearance - - type: AmbientSound - sound: - path: /Audio/Ambience/Objects/alarm.ogg - volume: -12 - range: 5 - enabled: false placement: mode: SnapgridCenter snap: diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml index db24b59f02..1dd191833e 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity abstract: true id: ArcadeBase description: An arcade cabinet. @@ -87,6 +87,7 @@ - PlushieHampter - ToyRenault # DeltaV Toy, see Resources/Prototypes/DeltaV/Entities/Objects/Fun/toys.yml - ToySiobhan # DeltaV Toy, see Resources/Prototypes/DeltaV/Entities/Objects/Fun/toys.yml + - PlushiePenguin - type: WiresPanel - type: Wires layoutId: Arcade diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml index d9a1564bb6..e046349e17 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml @@ -374,6 +374,9 @@ state: rd_key - type: ResearchClient - type: ResearchConsole + - type: ActiveRadio + channels: + - Science - type: TechnologyDatabase - type: ActivatableUI key: enum.ResearchConsoleUiKey.Key diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/frame.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/frame.yml index 70a4d7e3da..b1804e6b7b 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/frame.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/frame.yml @@ -91,6 +91,8 @@ - !type:PlaySoundBehavior sound: path: /Audio/Effects/metalbreak.ogg + params: + volume: -6 - !type:SpawnEntitiesBehavior spawn: SheetSteel1: diff --git a/Resources/Prototypes/Entities/Structures/Machines/Medical/chemistry_machines.yml b/Resources/Prototypes/Entities/Structures/Machines/Medical/chemistry_machines.yml new file mode 100644 index 0000000000..6a46064ac4 --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Machines/Medical/chemistry_machines.yml @@ -0,0 +1,119 @@ +- type: entity + id: BaseTabletopChemicalMachine + parent: [ BaseMachinePowered, ConstructibleMachine ] + abstract: true + components: + - type: Transform + anchored: true + - type: SolutionContainerMixer + - type: ReactionMixer + - type: Sprite + drawdepth: SmallObjects + snapCardinals: true + - type: Appearance + - type: Physics + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.17,0,0.20,0.4" + mask: + - TabletopMachineMask + layer: + - TabletopMachineLayer + - type: ItemSlots + slots: + mixer: + whitelist: + components: + - FitsInDispenser + - type: Machine + - type: Wires + layoutId: chem + - type: WiresPanel + - type: WiresVisuals + - type: ContainerContainer + containers: + mixer: !type:ContainerSlot + machine_board: !type:Container + machine_parts: !type:Container + +- type: entity + id: MachineElectrolysisUnit + parent: BaseTabletopChemicalMachine + name: electrolysis unit + description: The latest in medicinal electrocution technology. + components: + - type: SolutionContainerMixer + mixDuration: 5 + mixingSound: + path: /Audio/Machines/buzz_loop.ogg + params: + volume: -5 + - type: ReactionMixer + reactionTypes: + - Electrolysis + - type: Sprite + sprite: Structures/Machines/Medical/electrolysis.rsi + offset: "0.0,0.4" + layers: + - state: base + - state: panel + map: ["enum.WiresVisualLayers.MaintenancePanel"] + visible: false + - state: unshaded + map: ["enum.PowerDeviceVisualLayers.Powered"] + shader: unshaded + - type: GenericVisualizer + visuals: + enum.SolutionContainerMixerVisuals.Mixing: + enum.PowerDeviceVisualLayers.Powered: + True: {state: "spinning"} + False: {state: "unshaded"} + enum.PowerDeviceVisuals.Powered: + enum.PowerDeviceVisualLayers.Powered: + True: { visible: True } + False: { visible: False } + - type: Machine + board: ElectrolysisUnitMachineCircuitboard + +- type: entity + id: MachineCentrifuge + parent: BaseTabletopChemicalMachine + name: tabletop centrifuge + description: Around and around it goes... + components: + - type: SolutionContainerMixer + mixDuration: 10 + mixingSound: + path: /Audio/Machines/spinning.ogg + params: + volume: -4 + - type: ReactionMixer + reactionTypes: + - Centrifuge + - type: Sprite + sprite: Structures/Machines/Medical/centrifuge.rsi + offset: "0.0,0.4" + layers: + - state: base + map: ["beyblade"] + - state: panel + map: ["enum.WiresVisualLayers.MaintenancePanel"] + visible: false + - state: unshaded + map: ["enum.PowerDeviceVisualLayers.Powered"] + shader: unshaded + - type: GenericVisualizer + visuals: + enum.SolutionContainerMixerVisuals.Mixing: + beyblade: + True: {state: "base-spinning"} + False: {state: "base"} + enum.PowerDeviceVisuals.Powered: + enum.PowerDeviceVisualLayers.Powered: + True: { visible: True } + False: { visible: False } + - type: Machine + board: CentrifugeMachineCircuitboard diff --git a/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml b/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml index dc2b5c6678..3fad77648f 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml @@ -2,7 +2,7 @@ id: MachineAnomalyVessel parent: [ BaseMachinePowered, ConstructibleMachine ] name: anomaly vessel - description: A container able to harness a scan of an anomaly and turn it into research points. + description: A container able to harness a scan of an anomaly and turn it into research data. components: - type: Sprite noRot: true @@ -77,12 +77,6 @@ canCreateVacuum: false - type: Destructible thresholds: - - trigger: - !type:DamageTrigger - damage: 300 - behaviors: - - !type:DoActsBehavior - acts: [ "Destruction" ] - trigger: !type:DamageTrigger damage: 150 @@ -97,6 +91,32 @@ guides: - ScannersAndVessels +- type: entity + id: MachineAnomalyVesselExperimental + parent: MachineAnomalyVessel + name: experimental anomaly vessel + description: An advanced anomaly vessel capable of greater research potential at the cost of increased volatility and low-level radioactive decay into the environment. + components: + - type: Sprite + sprite: Structures/Machines/Anomaly/adv_anomaly_vessel.rsi + offset: 0,0.5 + drawdepth: Mobs + - type: SpriteFade + - type: AnomalyVessel + pointMultiplier: 2 + - type: RadiationSource + intensity: 0.75 + slope: 0.1 + enabled: false + - type: Machine + board: AnomalyVesselExperimentalCircuitboard + - type: Explosive + explosionType: Default + maxIntensity: 50 + intensitySlope: 7.5 + totalIntensity: 500 + canCreateVacuum: true + - type: entity id: MachineAPE parent: [ BaseMachinePowered, ConstructibleMachine ] diff --git a/Resources/Prototypes/Entities/Structures/Machines/anomaly_sync.yml b/Resources/Prototypes/Entities/Structures/Machines/anomaly_sync.yml new file mode 100644 index 0000000000..d37cc714e2 --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Machines/anomaly_sync.yml @@ -0,0 +1,75 @@ +- type: entity + id: MachineAnomalySynchronizer + parent: [ BaseMachinePowered, ConstructibleMachine ] + name: anomaly synchronizer + description: A sophisticated device that reads changes in anomalous waves, and converts them into energy signals. + components: + - type: AnomalySynchronizer + - type: Machine + board: AnomalySynchronizerCircuitboard + - type: DeviceNetwork + deviceNetId: Wireless + - type: WirelessNetworkConnection + range: 300 + - type: DeviceNetworkRequiresPower + - type: DeviceLinkSource + ports: + - Decaying + - Stabilize + - Growing + - Pulse + - Supercritical + - type: Sprite + noRot: true + sprite: Structures/Machines/anomaly_sync.rsi + layers: + - state: base + - state: energy + shader: unshaded + map: ["enum.PowerDeviceVisualLayers.Powered"] + - type: AmbientSound + enabled: false + sound: + path: /Audio/Machines/scan_loop.ogg + range: 5 + volume: -8 + - 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 + anchored: true + noRot: false + - type: ApcPowerReceiver + powerLoad: 15000 + needsPower: true + - type: UpgradePowerDraw + powerDrawMultiplier: 0.80 + scaling: Exponential + - type: ItemPlacer + whitelist: + components: + - Anomaly + - type: DeviceList + - type: PointLight + radius: 1.8 + energy: 1.6 + color: "#b53ca1" + - type: LitOnPowered + - type: Appearance + - type: GenericVisualizer + visuals: + enum.PowerDeviceVisuals.Powered: + enum.PowerDeviceVisualLayers.Powered: + True: { visible: true } + False: { visible: false } diff --git a/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml b/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml index d1cc01ea40..4dd8ccdbbb 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml @@ -133,3 +133,81 @@ enum.PowerDeviceVisualLayers.Powered: True: { visible: true } False: { visible: false } + +- type: entity + id: MachineArtifactCrusher + parent: [ ConstructibleMachine, BaseMachinePowered ] + name: artifact crusher + description: Best not to let your fingers get stuck... + components: + - type: ArtifactCrusher + crushingWhitelist: + components: + - Artifact + crushingDamage: + types: + Blunt: 10 + - type: Machine + board: ArtifactCrusherMachineCircuitboard + - type: Wires + boardName: wires-board-name-crusher + layoutId: Crusher + - type: WiresPanel + - type: Sprite + sprite: Structures/Machines/artifact_crusher.rsi + offset: 0,0.5 + noRot: true + layers: + - state: base + map: ["enum.StorageVisualLayers.Base"] + - state: door-closed + map: ["enum.StorageVisualLayers.Door"] + - state: piston + map: ["pistonlayer"] + - state: glass + - state: lights + map: ["enum.PowerDeviceVisualLayers.Powered"] + shader: unshaded + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.45 + density: 50 + mask: + - HighImpassable + layer: + - HighImpassable + - type: EntityStorage + capacity: 1 + whitelist: + components: + - Artifact + - type: Appearance + - type: GenericVisualizer + visuals: + enum.ArtifactCrusherVisuals.Crushing: + pistonlayer: + True: {state: piston-push} + False: {state: piston} + enum.PowerDeviceVisuals.Powered: + enum.PowerDeviceVisualLayers.Powered: + True: { visible: true } + False: { visible: false } + - type: EntityStorageVisuals + stateDoorClosed: door-closed + openDrawDepth: 0 + closedDrawDepth: 4 + - type: Construction + containers: + - machine_board + - machine_parts + - entity_storage + - output_container + - type: ContainerContainer + containers: + machine_board: !type:Container + machine_parts: !type:Container + entity_storage: !type:Container + output_container: !type:Container diff --git a/Resources/Prototypes/Entities/Structures/Machines/cloning_machine.yml b/Resources/Prototypes/Entities/Structures/Machines/cloning_machine.yml index 0cc9f71e55..6067149c8a 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/cloning_machine.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/cloning_machine.yml @@ -20,17 +20,6 @@ map: ["base"] - type: Physics bodyType: Static - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.5,0.25,0.5" - density: 190 - mask: - - MachineMask - layer: - - MachineLayer - type: Construction graph: Machine node: machine diff --git a/Resources/Prototypes/Entities/Structures/Machines/fatextractor.yml b/Resources/Prototypes/Entities/Structures/Machines/fatextractor.yml index d574b286c4..33186f0a1d 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/fatextractor.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/fatextractor.yml @@ -9,7 +9,7 @@ path: /Audio/Machines/microwave_loop.ogg params: loop: true - maxdistance: 5 + maxDistance: 5 - type: Sprite sprite: Structures/Machines/fat_sucker.rsi snapCardinals: true diff --git a/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml b/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml index 89e1e695eb..cb885d7967 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml @@ -43,6 +43,9 @@ whitelist: components: - Paper + blacklist: + tags: + - PaperSlip # DeltaV - Prevent the faxing of paper slips. - type: GenericVisualizer visuals: enum.PowerDeviceVisuals.Powered: @@ -99,9 +102,10 @@ - type: entity parent: FaxMachineBase id: FaxMachineCaptain - name: captain long range fax machine + name: command long range fax machine # Parkstation-Oligarchy suffix: NukeCodes components: - type: FaxMachine - name: "Captain's Office" + name: "Command" # Parkstation-Oligarchy receiveNukeCodes: true + receiveStationGoal: true # Corvax-StationGoal diff --git a/Resources/Prototypes/Entities/Structures/Machines/gateway.yml b/Resources/Prototypes/Entities/Structures/Machines/gateway.yml index a729b00d14..b6ad9db356 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/gateway.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/gateway.yml @@ -50,20 +50,8 @@ components: - type: ActivatableUI key: enum.GatewayUiKey.Key - - type: ActivatableUIRequiresPower - type: UserInterface interfaces: - key: enum.GatewayUiKey.Key type: GatewayBoundUserInterface - - type: ApcPowerReceiver - powerLoad: 3000 - - type: ExtensionCableReceiver - type: Gateway - -- type: entity - parent: BaseGateway - id: GatewayDestination - suffix: Destination - components: - - type: GatewayDestination - name: Unknown diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index e259d6f7a2..65492628e3 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -106,6 +106,8 @@ - Beaker - Syringe - LightTube + - SodiumLightTube + - ExteriorLightTube - LightBulb - Bucket - FoodPlate @@ -170,6 +172,15 @@ - MagazineBoxMagnumIncendiary - MagazineBoxLightRifleIncendiary - MagazineBoxRifleIncendiary + - ShellShotgunUranium + - CartridgePistolUranium + - CartridgeMagnumUranium + - CartridgeLightRifleUranium + - CartridgeRifleUranium + - MagazineBoxPistolUranium + - MagazineBoxMagnumUranium + - MagazineBoxLightRifleUranium + - MagazineBoxRifleUranium - type: entity id: Protolathe @@ -210,8 +221,6 @@ - AnomalyScanner - AnomalyLocator - AnomalyLocatorWide - - RCD - - RCDAmmo - HandheldCrewMonitor - Scalpel - Retractor @@ -222,6 +231,7 @@ - Beaker - LargeBeaker - CryostasisBeaker + - SyringeCryostasis - Dropper - Syringe - Implanter @@ -251,17 +261,20 @@ - VoiceTrigger - Igniter - PowerCellMedium + - PowerCellMicroreactor - PowerCellHigh - WeaponPistolCHIMP - SynthesizerInstrument - RPED - ClothingShoesBootsMag + - ClothingShoesBootsSpeed - NodeScanner - HolofanProjector - BluespaceBeaker - SyringeBluespace - WeaponCrusher - WeaponCrusherDagger + - WeaponCrusherGlaive #- WeaponForceGun - WeaponProtoKineticAccelerator #- WeaponTetherGun @@ -273,6 +286,9 @@ - JawsOfLife - ClothingEyesGlassesChemical - CoreSilver # Nyanotrasen - Silver Golem core + - FauxTileAstroGrass + - FauxTileAstroIce + - OreBagOfHolding - type: EmagLatheRecipes emagDynamicRecipes: - ExplosivePayload @@ -280,7 +296,10 @@ - WeaponAdvancedLaser - WeaponLaserCannon - WeaponXrayCannon - - WeaponTaser + - WeaponEnergyGun # DeltaV - Energy Gun + - WeaponEnergyGunMini # DeltaV - Miniature Energy Gun + - WeaponEnergyGunPistol # DeltaV - PDW-9 Energy Pistol + - WeaponGunLaserCarbineAutomatic # DeltaV - IK-60 Laser Carbine - type: entity id: CircuitImprinter @@ -305,6 +324,10 @@ producingSound: /Audio/Machines/circuitprinter.ogg idleState: icon runningState: building + staticRecipes: + - ElectrolysisUnitMachineCircuitboard + - CentrifugeMachineCircuitboard + - CondenserMachineCircuitBoard dynamicRecipes: - ThermomachineFreezerMachineCircuitBoard - PortableScrubberMachineCircuitBoard @@ -368,9 +391,12 @@ - AnalysisComputerCircuitboard - ExosuitFabricatorMachineCircuitboard - AnomalyVesselCircuitboard + - AnomalyVesselExperimentalCircuitboard + - AnomalySynchronizerCircuitboard - APECircuitboard - ArtifactAnalyzerMachineCircuitboard - TraversalDistorterMachineCircuitboard + - ArtifactCrusherMachineCircuitboard - BoozeDispenserMachineCircuitboard - SodaDispenserMachineCircuitboard - TelecomServerCircuitboard @@ -427,6 +453,9 @@ - BorgModuleTool - BorgModuleAppraisal - BorgModuleConstruction + - BorgModuleService + - BorgModuleTreatment + - BorgModuleCleaning - CyborgEndoskeleton - LeftArmBorg - RightArmBorg @@ -465,8 +494,7 @@ dynamicRecipes: - ProximitySensor - BorgModuleLightReplacer - - BorgModuleCleaning - - BorgModuleTrashCollection + - BorgModuleAdvancedCleaning - BorgModuleMining #- BorgModuleGrapplingGun - BorgModuleGasAnalyzer @@ -477,10 +505,8 @@ - BorgModuleGardening - BorgModuleHarvesting - BorgModuleMusique - - BorgModuleLiteracy - BorgModuleClowning - BorgModuleDiagnosis - - BorgModuleTreatment - BorgModuleDefibrillator - BorgModuleAdvancedTreatment - RipleyHarness @@ -549,7 +575,6 @@ - Zipties - Stunbaton - ForensicPad - - ClothingEyesGlassesSecurity - RiotShield - ShellShotgun - ShellShotgunFlare @@ -571,6 +596,13 @@ - TargetHuman - TargetSyndicate - TargetClown + - MagazineBoxLightRiflePractice + - MagazineBoxMagnumPractice + - MagazineBoxPistolPractice + - MagazineBoxRiflePractice + - ShellShotgunPractice + - WeaponLaserCarbinePractice + - WeaponDisablerPractice dynamicRecipes: - CartridgeSpecialRubber # DeltaV - .38 Special revolver - EncryptionKeySyndie # Nyano @@ -579,10 +611,15 @@ - CartridgeMagnumIncendiary - CartridgePistolIncendiary - CartridgeRifleIncendiary + - CartridgeLightRifleUranium + - CartridgeMagnumUranium + - CartridgePistolUranium + - CartridgeRifleUranium - CartridgeLightRifleRubber - CartridgeMagnumRubber - CartridgePistolRubber - CartridgeRifleRubber + - ClothingEyesGlassesSecurity - ExplosivePayload - FlashPayload - HoloprojectorSecurity @@ -597,13 +634,17 @@ - MagazineBoxMagnumPractice - MagazineBoxPistolPractice - MagazineBoxRiflePractice + - MagazineBoxLightRifleUranium + - MagazineBoxMagnumUranium + - MagazineBoxPistolUranium + - MagazineBoxRifleUranium - MagazineBoxLightRifleRubber - MagazineBoxMagnumRubber - MagazineBoxPistolRubber - MagazineBoxRifleRubber - ShellShotgunBeanbag - ShellShotgunIncendiary - - ShellShotgunPractice + - ShellShotgunUranium - Signaller - SignalTrigger - TelescopicShield @@ -611,15 +652,17 @@ - Truncheon - VoiceTrigger - WeaponAdvancedLaser - - WeaponDisablerPractice - WeaponLaserCannon - WeaponLaserCarbine - WeaponLaserCarbinePractice - - WeaponTaser - ClothingHeadHelmetInsulated # Nyanotrasen - Insulative headgear - ClothingHeadCage # Nyanotrasen - Insulative headgear - ShockCollar # Nyanotrasen - Shock Collar - WeaponXrayCannon + - WeaponEnergyGun #DeltaV - Energy Gun + - WeaponEnergyGunMini #DeltaV - Energy Gun but miniature + - WeaponEnergyGunPistol #DeltaV - Energy Gun Mini but with the power of a normal energy gun + - WeaponGunLaserCarbineAutomatic #DeltaV - New Laser Projectiles with a 20 round carbine - type: MaterialStorage whitelist: tags: @@ -734,6 +777,7 @@ - ClothingEyesHudMedical # Nyano - ChemicalPayload # Nyano - Jug + - SyringeCryostasis - type: Machine board: MedicalTechFabCircuitboard @@ -764,6 +808,8 @@ - ClothingUniformJumpskirtBartender - ClothingUniformJumpsuitCaptain - ClothingUniformJumpskirtCaptain + - ClothingUniformJumpsuitCapFormal + - ClothingUniformJumpskirtCapFormalDress - ClothingUniformJumpsuitCargo - ClothingUniformJumpskirtCargo - ClothingUniformJumpsuitSalvageSpecialist @@ -792,8 +838,14 @@ - ClothingUniformJumpskirtHoSBlue # DeltaV - alternate sec uniforms - ClothingUniformJumpsuitHoSGrey # DeltaV - alternate sec uniforms - ClothingUniformJumpskirtHoSGrey # DeltaV - alternate sec uniforms + - ClothingUniformJumpsuitHosFormal + - ClothingUniformJumpskirtHosFormal - ClothingUniformJumpsuitHoSAlt - ClothingUniformJumpskirtHoSAlt + - ClothingUniformJumpsuitHoSBlue + - ClothingUniformJumpsuitHoSGrey + - ClothingUniformJumpsuitHoSParadeMale + - ClothingUniformJumpskirtHoSParadeMale - ClothingUniformJumpsuitHydroponics - ClothingUniformJumpskirtHydroponics - ClothingUniformJumpsuitJanitor @@ -871,6 +923,23 @@ - ClothingOuterWinterSci - ClothingOuterWinterRobo - ClothingOuterWinterSec + - type: EmagLatheRecipes + emagStaticRecipes: + - ClothingUniformJumpsuitCentcomAgent + - ClothingUniformJumpsuitCentcomFormal + - ClothingUniformJumpskirtCentcomFormalDress + - ClothingUniformJumpsuitCentcomOfficer + - ClothingUniformJumpsuitCentcomOfficial + - ClothingUniformJumpsuitOperative + - ClothingUniformJumpskirtOperative + - ClothingUniformJumpsuitSyndieFormal + - ClothingUniformJumpskirtSyndieFormalDress + - ClothingUniformJumpsuitPyjamaSyndicateBlack + - ClothingUniformJumpsuitPyjamaSyndicatePink + - ClothingUniformJumpsuitPyjamaSyndicateRed + - ClothingOuterWinterCentcom + - ClothingOuterWinterSyndie + - ClothingOuterWinterSyndieCap - type: MaterialStorage whitelist: tags: @@ -943,9 +1012,11 @@ whitelist: tags: - Raw + - Wooden - type: Lathe idleState: base_machine runningState: base_machine_processing canEjectStoredMaterials: false staticRecipes: - MaterialSheetMeat + - SheetPaper diff --git a/Resources/Prototypes/Entities/Structures/Machines/material_reclaimer.yml b/Resources/Prototypes/Entities/Structures/Machines/material_reclaimer.yml index b7886b7ca5..699c3491f1 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/material_reclaimer.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/material_reclaimer.yml @@ -81,7 +81,7 @@ path: /Audio/Ambience/Objects/crushing.ogg params: volume: 5 - maxdistance: 5 + maxDistance: 5 loop: true - type: MaterialStorage insertOnInteract: false diff --git a/Resources/Prototypes/Entities/Structures/Machines/medical_scanner.yml b/Resources/Prototypes/Entities/Structures/Machines/medical_scanner.yml index c8d233f04c..3cadb180c9 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/medical_scanner.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/medical_scanner.yml @@ -39,17 +39,6 @@ Yellow: {state: "maint_unlit"} - type: Physics bodyType: Static - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.5,0.25,0.5" - density: 190 - mask: - - MachineMask - layer: - - MachineLayer - type: Construction graph: Machine node: machine diff --git a/Resources/Prototypes/Entities/Structures/Machines/microwave.yml b/Resources/Prototypes/Entities/Structures/Machines/microwave.yml index 48ac7c3393..586b4b0af0 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/microwave.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/microwave.yml @@ -33,6 +33,14 @@ False: { visible: false } - type: ActivatableUI key: enum.MicrowaveUiKey.Key + - type: DeviceLinkSink + ports: + - On + - type: DeviceNetwork + deviceNetId: Wireless + receiveFrequencyId: BasicDevice + - type: WirelessNetworkConnection + range: 200 - type: UserInterface interfaces: - key: enum.MicrowaveUiKey.Key @@ -83,6 +91,9 @@ microwave_entity_container: !type:Container machine_board: !type:Container machine_parts: !type:Container + - type: EmptyOnMachineDeconstruct + containers: + - microwave_entity_container - type: GuideHelp guides: - Chef diff --git a/Resources/Prototypes/Entities/Structures/Machines/research.yml b/Resources/Prototypes/Entities/Structures/Machines/research.yml index d042e9d104..f5003b1712 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/research.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/research.yml @@ -8,6 +8,7 @@ sprite: Structures/Machines/server.rsi layers: - state: server + - state: variant-research - state: server_o map: ["enum.WiresVisualLayers.MaintenancePanel"] - type: ResearchServer diff --git a/Resources/Prototypes/Entities/Structures/Machines/salvage.yml b/Resources/Prototypes/Entities/Structures/Machines/salvage.yml index 1673f980ff..2e33e59f82 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/salvage.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/salvage.yml @@ -78,7 +78,7 @@ - type: weightedRandomEntity id: RandomAsteroidPool weights: - AsteroidSalvageSmall: 3 + AsteroidSalvageSmall: 0 #Delta V: remove chance for small chunks AsteroidSalvageMedium: 7 AsteroidSalvageLarge: 5 AsteroidSalvageHuge: 3 diff --git a/Resources/Prototypes/Entities/Structures/Machines/smartfridge.yml b/Resources/Prototypes/Entities/Structures/Machines/smartfridge.yml new file mode 100644 index 0000000000..95ce0b9d92 --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Machines/smartfridge.yml @@ -0,0 +1,94 @@ +- type: entity + parent: BaseStructureDynamic + id: SmartFridge + name: SmartFridge + description: A refrigerated storage unit for keeping items cold and fresh. + components: + - type: Advertise + pack: SmartFridgeAds + - type: Speech + - type: Appearance + - type: Sprite + sprite: Structures/Machines/smartfridge.rsi + snapCardinals: true + layers: + - state: smartfridge + map: ["enum.StorageVisualLayers.Base"] + - state: smartfridge_door + map: ["enum.StorageVisualLayers.Door"] + shader: unshaded + - type: EntityStorageVisuals + stateBaseClosed: smartfridge + stateDoorOpen: smartfridge_open + stateDoorClosed: smartfridge_door + - type: PointLight + radius: 1.5 + energy: 1.6 + color: "#9dc5c9" + - type: EntityStorage + isCollidableWhenOpen: true + closeSound: + path: /Audio/Machines/windoor_open.ogg + params: + volume: -3 + openSound: + path: /Audio/Machines/windoor_open.ogg + params: + volume: -3 + - type: ContainerContainer + containers: + entity_storage: !type:Container + - type: UseDelay + delay: 1 + - type: AntiRottingContainer + - type: ResistLocker + - type: Physics + bodyType: Static + - type: Transform + noRot: true + anchored: True + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.45" + mask: + - MachineMask + layer: + - MachineLayer + density: 200 + - type: Anchorable + delay: 2 + - type: InteractionOutline + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:DoActsBehavior + acts: ["Breakage"] + - trigger: + !type:DamageTrigger + damage: 200 + behaviors: + - !type:SpawnEntitiesBehavior + spawn: + SheetSteel1: + min: 1 + max: 1 + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/metalbreak.ogg + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Metallic + - type: DamageOnHighSpeedImpact + damage: + types: + Blunt: 5 + soundHit: + path: /Audio/Effects/bang.ogg diff --git a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml index 92d831f57e..eba97f7fb7 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml @@ -891,37 +891,6 @@ - type: AccessReader access: [["Hydroponics"]] -- type: entity - parent: VendingMachine - id: VendingMachineSmartFridge - name: SmartFridge - description: A refrigerated storage unit for keeping items cold and fresh. - components: - - type: VendingMachine - pack: SmartFridgeInventory - offState: off - brokenState: broken - normalState: normal-unshaded - denyState: deny-unshaded - loopDeny: false - - type: Advertise - pack: SmartFridgeAds - - type: Speech - - type: Sprite - sprite: Structures/Machines/VendingMachines/smartfridge.rsi - layers: - - state: off - map: ["enum.VendingMachineVisualLayers.Base"] - - state: off - map: ["enum.VendingMachineVisualLayers.BaseUnshaded"] - shader: unshaded - - state: panel - map: ["enum.WiresVisualLayers.MaintenancePanel"] - - type: PointLight - radius: 1.5 - energy: 1.6 - color: "#9dc5c9" - - type: entity parent: VendingMachine id: VendingMachineSnack @@ -1454,7 +1423,7 @@ - state: panel map: ["enum.WiresVisualLayers.MaintenancePanel"] - type: AccessReader - access: [["Brig"]] + access: [["Lawyer"]] - type: entity parent: VendingMachine @@ -2003,7 +1972,7 @@ brokenState: broken normalState: normal denyState: deny - ejectDelay: 3 + ejectDelay: 2 - type: Sprite sprite: Structures/Machines/VendingMachines/chemvend.rsi layers: @@ -2018,3 +1987,20 @@ - type: GuideHelp guides: - Chemicals + +- type: entity + parent: VendingMachineChemicals + id: VendingMachineChemicalsSyndicate + name: SyndieJuice + description: Not made with freshly squeezed syndies I hope. + components: + - type: VendingMachine + pack: ChemVendInventorySyndicate + offState: off + brokenState: broken + normalState: normal + denyState: deny + ejectDelay: 2 + - type: AccessReader + access: [["SyndicateAgent"]] + diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/miners.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/miners.yml index 9db1eee927..61c04130bb 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/miners.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/miners.yml @@ -131,14 +131,14 @@ spawnGas: WaterVapor - type: entity - name: Miasma gas miner + name: Ammonia gas miner parent: GasMinerBase - id: GasMinerMiasma + id: GasMinerAmmonia placement: mode: SnapgridCenter components: - type: GasMiner - spawnGas: Miasma + spawnGas: Ammonia - type: entity name: Nitrous Oxide gas miner diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml index 132da2f1a8..c31a607eae 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml @@ -21,12 +21,29 @@ - type: Rotatable - type: Destructible thresholds: - - trigger: + - trigger: # for nukes !type:DamageTrigger - damage: 100 + damage: 200 behaviors: - !type:DoActsBehavior acts: ["Destruction"] + - trigger: # regular damage trigger (replace with broken pipe) + !type:DamageTrigger + damage: 100 + behaviors: + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/metalbreak.ogg + params: + volume: -8 + - !type:SpawnEntitiesBehavior + spawn: + GasPipeBroken: + min: 1 + max: 1 + offset: 0 + - !type:DoActsBehavior + acts: ["Breakage"] - type: Sprite sprite: Structures/Piping/Atmospherics/pipe.rsi drawdepth: ThinPipe @@ -149,3 +166,28 @@ - type: Construction graph: GasPipe node: fourway + +- type: entity + id: GasPipeBroken + parent: GasPipeBase + name: broken pipe + description: It used to hold gas. + components: + - type: Sprite + sprite: Structures/Piping/Atmospherics/pipe.rsi + drawdepth: ThinPipe + state: pipeBroken + layers: + - state: pipeBroken + map: [ "enum.PipeVisualLayers.Pipe" ] + - type: Construction + graph: GasPipe + node: broken + - type: Destructible + thresholds: # override parent to avoid recursive destruction + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml index 1d08bd8c6e..83fe7d206e 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml @@ -50,7 +50,7 @@ Plasma: danger # everything below is usually bad Tritium: danger WaterVapor: stationWaterVapor - Miasma: stationMiasma + Ammonia: stationAmmonia NitrousOxide: stationNO Frezon: danger - type: Tag @@ -141,7 +141,7 @@ Plasma: danger # everything below is usually bad Tritium: danger WaterVapor: stationWaterVapor - Miasma: stationMiasma + Ammonia: stationAmmonia NitrousOxide: stationNO Frezon: danger - type: Tag @@ -291,7 +291,7 @@ True: { state: freezerOn } False: { state: freezerOff } - type: GasThermoMachine - coefficientOfPerformance: -64 + coefficientOfPerformance: -3.9 - type: ApcPowerReceiver powerDisabled: true #starts off - type: Machine @@ -334,7 +334,7 @@ True: { state: heaterOn } False: { state: heaterOff } - type: GasThermoMachine - coefficientOfPerformance: 32 + coefficientOfPerformance: 0.95 - type: ApcPowerReceiver powerDisabled: true #starts off - type: Machine @@ -351,3 +351,89 @@ enabled: true - type: ApcPowerReceiver powerDisabled: false + +- type: entity + parent: [ BaseMachinePowered, ConstructibleMachine ] + id: BaseGasCondenser + name: condenser + description: Condenses gases into liquids. Now we just need some plumbing. + placement: + mode: SnapgridCenter + components: + - type: Sprite + sprite: Structures/Piping/Atmospherics/condenser.rsi + snapCardinals: true + granularLayersRendering: true + layers: + - state: off + map: [ "enum.PowerDeviceVisualLayers.Powered" ] + - state: panel + map: ["enum.WiresVisualLayers.MaintenancePanel"] + - state: pipe + map: [ "enum.PipeVisualLayers.Pipe" ] + renderingStrategy: Default + - state: fill-1 + map: ["enum.SolutionContainerLayers.Fill"] + visible: false + - state: trans + - type: GenericVisualizer + visuals: + enum.PowerDeviceVisuals.Powered: + enum.PowerDeviceVisualLayers.Powered: + True: { state: on } + False: { state: off } + - type: SolutionContainerVisuals + maxFillLevels: 7 + fillBaseName: fill- + - type: Appearance + - type: PipeColorVisuals + - type: Rotatable + - type: GasCondenser + - type: AtmosPipeColor + - type: AtmosDevice + - type: ApcPowerReceiver + powerLoad: 10000 + - type: Machine + board: CondenserMachineCircuitBoard + - type: WiresPanel + - type: Wires + boardName: wires-board-name-condenser + layoutId: Condenser + - type: WiresVisuals + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 200 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:SpillBehavior + solution: tank + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/metalbreak.ogg + - type: NodeContainer + nodes: + pipe: + !type:PipeNode + nodeGroupID: Pipe + pipeDirection: South + - type: Transform + noRot: false + - type: SolutionContainerManager + solutions: + tank: + maxVol: 400 + canMix: true + - type: DrainableSolution + solution: tank + - type: ExaminableSolution + solution: tank + - type: PowerSwitch diff --git a/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml b/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml index 9e3780a6da..d4b7c1d3c9 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml @@ -426,3 +426,63 @@ - type: Construction graph: DisposalPipe node: bend + +- type: entity + parent: DisposalJunction + id: DisposalSignalRouter + name: disposal signal router + description: A signal-controlled three-way router. + components: + - type: Sprite + drawdepth: ThickPipe + layers: + - map: [ "pipe" ] + state: signal-router-free + - type: DisposalTube + containerId: DisposalSignalRouter + - type: DisposalSignalRouter + - type: DeviceLinkSink + ports: + - On + - Off + - Toggle + - type: DeviceNetwork + deviceNetId: Wireless + receiveFrequencyId: BasicDevice + - type: WirelessNetworkConnection + range: 200 + - type: ContainerContainer + containers: + DisposalSignalRouter: !type:Container + - type: GenericVisualizer + visuals: + enum.DisposalTubeVisuals.VisualState: + pipe: + Free: { state: signal-router-free } + Anchored: { state: signal-router } + - type: Flippable + mirrorEntity: DisposalSignalRouterFlipped + - type: Construction + graph: DisposalPipe + node: signal_router + +- type: entity + parent: DisposalSignalRouter + id: DisposalSignalRouterFlipped + suffix: flipped + components: + - type: Sprite + layers: + - map: [ "pipe" ] + state: signal-router-flipped-free + - type: DisposalJunction + degrees: + - 0 + - 90 + - 180 + - type: GenericVisualizer + visuals: + enum.DisposalTubeVisuals.VisualState: + pipe: + Free: { state: signal-router-flipped-free } + Anchored: { state: signal-router-flipped } diff --git a/Resources/Prototypes/Entities/Structures/Piping/Disposal/units.yml b/Resources/Prototypes/Entities/Structures/Piping/Disposal/units.yml index 40fb09f7ef..2fcc18e1b3 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Disposal/units.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Disposal/units.yml @@ -56,6 +56,8 @@ - !type:PlaySoundBehavior sound: path: /Audio/Effects/metalbreak.ogg + params: + volume: -6 - !type:SpawnEntitiesBehavior spawn: SheetSteel1: diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/collector.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/collector.yml index d83e8b21fe..acd1b80fb4 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/collector.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/collector.yml @@ -55,7 +55,7 @@ radiationReactiveGases: - reactantPrototype: Plasma powerGenerationEfficiency: 1 - reactantBreakdownRate: 0.0002 + reactantBreakdownRate: 0.0001 # Note that this doesn't matter too much (see next comment) # However it does act as a cap on power receivable via the collector. - type: Battery diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml index 090a015d97..723a1480de 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml @@ -57,7 +57,6 @@ # It fires processing on behalf of its connected circulators. - type: AtmosDevice - type: TegGenerator - powerFactor: 0.025 - type: DeviceNetwork deviceNetId: AtmosDevices diff --git a/Resources/Prototypes/Entities/Structures/Specific/anomalies.yml b/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml similarity index 89% rename from Resources/Prototypes/Entities/Structures/Specific/anomalies.yml rename to Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml index f3a220306c..113ef6c554 100644 --- a/Resources/Prototypes/Entities/Structures/Specific/anomalies.yml +++ b/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml @@ -56,6 +56,9 @@ parent: BaseAnomaly suffix: Pyroclastic components: + - type: Anomaly + corePrototype: AnomalyCorePyroclastic + coreInertPrototype: AnomalyCorePyroclasticInert - type: Sprite layers: - state: anom1 @@ -84,6 +87,9 @@ parent: BaseAnomaly suffix: Gravity components: + - type: Anomaly + corePrototype: AnomalyCoreGravity + coreInertPrototype: AnomalyCoreGravityInert - type: Sprite layers: - state: anom2 @@ -105,6 +111,9 @@ parent: BaseAnomaly suffix: Electricity components: + - type: Anomaly + corePrototype: AnomalyCoreElectricity + coreInertPrototype: AnomalyCoreElectricityInert - type: Sprite layers: - state: anom3 @@ -125,6 +134,9 @@ parent: BaseAnomaly suffix: Flesh components: + - type: Anomaly + corePrototype: AnomalyCoreFlesh + coreInertPrototype: AnomalyCoreFleshInert - type: Sprite layers: - state: anom5 @@ -189,6 +201,8 @@ - WallLayer hard: false - type: Anomaly + corePrototype: AnomalyCoreBluespace + coreInertPrototype: AnomalyCoreBluespaceInert pulseSound: collection: RadiationPulse params: @@ -217,6 +231,8 @@ color: "#befaff" castShadows: false - type: Anomaly + corePrototype: AnomalyCoreIce + coreInertPrototype: AnomalyCoreIceInert anomalyContactDamage: types: Cold: 10 @@ -228,6 +244,13 @@ - type: ProjectileAnomaly projectilePrototype: ProjectileIcicle targetNonSentientChance: 0.1 + - type: EntitySpawnAnomaly + spawns: + - IceCrust + maxSpawnAmount: 17 + spawnOnPulse: false + spawnOnSuperCritical: false + spawnOnStabilityChanged: true - type: TempAffectingAnomaly tempChangePerSecond: -25 hotspotExposeTemperature: -1000 @@ -241,6 +264,9 @@ parent: BaseAnomaly suffix: Rock components: + - type: Anomaly + corePrototype: AnomalyCoreRock + coreInertPrototype: AnomalyCoreRockInert - type: Sprite layers: - state: anom6 @@ -292,6 +318,8 @@ color: "#bbbbbb" - type: BadFood - type: Anomaly + corePrototype: AnomalyCoreLiquid + coreInertPrototype: AnomalyCoreLiquidInert anomalyContactDamage: types: Slash: 1 diff --git a/Resources/Prototypes/Entities/Structures/Specific/Anomaly/cores.yml b/Resources/Prototypes/Entities/Structures/Specific/Anomaly/cores.yml new file mode 100644 index 0000000000..c98b81a116 --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Specific/Anomaly/cores.yml @@ -0,0 +1,251 @@ +- type: entity + parent: BaseItem + id: BaseAnomalyCore + abstract: true + name: anomaly core + description: The core of a destroyed incomprehensible object. + components: + - type: Sprite + sprite: Structures/Specific/Anomalies/Cores/gravity_core.rsi + layers: + - state: core + - state: pulse + map: ["decay"] + - type: Appearance + - type: GenericVisualizer + visuals: + enum.AnomalyCoreVisuals.Decaying: + decay: + True: { visible: true } + False: { visible: false } + - type: Item + size: 10 + - type: ItemCooldown + - type: EmitSoundOnUse #placeholder for future unical mechanic + sound: + collection: RadiationPulse + - type: UseDelay + delay: 2 + - type: AnomalyCore + timeToDecay: 600 + startPrice: 10000 + endPrice: 200 + +- type: entity + parent: BaseAnomalyCore + id: AnomalyCorePyroclastic + suffix: Pyroclastic + components: + - type: Sprite + sprite: Structures/Specific/Anomalies/Cores/pyro_core.rsi + - type: PointLight + radius: 1.5 + energy: 1.5 + color: "#fca3c0" + castShadows: false + +- type: entity + parent: BaseAnomalyCore + id: AnomalyCoreGravity + suffix: Gravity + components: + - type: Sprite + sprite: Structures/Specific/Anomalies/Cores/gravity_core.rsi + - type: PointLight + radius: 1.5 + energy: 10 + color: "#1e070e" + castShadows: false + +- type: entity + parent: BaseAnomalyCore + id: AnomalyCoreIce + suffix: Ice + components: + - type: Sprite + sprite: Structures/Specific/Anomalies/Cores/ice_core.rsi + - type: PointLight + radius: 1.5 + energy: 1.5 + color: "#befaff" + castShadows: false + +- type: entity + parent: BaseAnomalyCore + id: AnomalyCoreFlesh + suffix: Flesh + components: + - type: Sprite + sprite: Structures/Specific/Anomalies/Cores/flesh_core.rsi + - type: PointLight + radius: 1.5 + energy: 3.5 + color: "#cb5b7e" + castShadows: false + +- type: entity + parent: BaseAnomalyCore + id: AnomalyCoreRock + suffix: Rock + components: + - type: Sprite + sprite: Structures/Specific/Anomalies/Cores/rock_core.rsi + - type: PointLight + radius: 1.5 + energy: 3.5 + color: "#5ca8cb" + castShadows: false + +- type: entity + parent: BaseAnomalyCore + id: AnomalyCoreLiquid + suffix: Liquid + components: + - type: Sprite + sprite: Structures/Specific/Anomalies/Cores/liquid_core.rsi + - type: PointLight + radius: 1.5 + energy: 3.5 + color: "#ffffff" + castShadows: false + +- type: entity + parent: BaseAnomalyCore + id: AnomalyCoreBluespace + suffix: Bluespace + components: + - type: Sprite + sprite: Structures/Specific/Anomalies/Cores/bluespace_core.rsi + - type: PointLight + radius: 1.5 + energy: 3.5 + color: "#00ccff" + castShadows: false + +- type: entity + parent: BaseAnomalyCore + id: AnomalyCoreElectricity + suffix: Electricity + components: + - type: Sprite + sprite: Structures/Specific/Anomalies/Cores/electric_core.rsi + - type: PointLight + radius: 1.5 + energy: 2.0 + color: "#ffffaa" + castShadows: false + - type: Electrified + +# Inert cores + +- type: entity + parent: BaseAnomalyCore + id: BaseAnomalyInertCore + abstract: true + components: + - type: AnomalyCore + timeToDecay: 1 #decay very fast + +- type: entity + parent: BaseAnomalyInertCore + id: AnomalyCorePyroclasticInert + suffix: Pyroclastic, Inert + components: + - type: Sprite + sprite: Structures/Specific/Anomalies/Cores/pyro_core.rsi + - type: PointLight + radius: 1.5 + energy: 1.5 + color: "#fca3c0" + castShadows: false + +- type: entity + parent: BaseAnomalyInertCore + id: AnomalyCoreGravityInert + suffix: Gravity, Inert + components: + - type: Sprite + sprite: Structures/Specific/Anomalies/Cores/gravity_core.rsi + - type: PointLight + radius: 1.5 + energy: 10 + color: "#1e070e" + castShadows: false + +- type: entity + parent: BaseAnomalyInertCore + id: AnomalyCoreIceInert + suffix: Ice, Inert + components: + - type: Sprite + sprite: Structures/Specific/Anomalies/Cores/ice_core.rsi + - type: PointLight + radius: 1.5 + energy: 1.5 + color: "#befaff" + castShadows: false + +- type: entity + parent: BaseAnomalyInertCore + id: AnomalyCoreFleshInert + suffix: Flesh, Inert + components: + - type: Sprite + sprite: Structures/Specific/Anomalies/Cores/flesh_core.rsi + - type: PointLight + radius: 1.5 + energy: 3.5 + color: "#cb5b7e" + castShadows: false + +- type: entity + parent: BaseAnomalyInertCore + id: AnomalyCoreRockInert + suffix: Rock, Inert + components: + - type: Sprite + sprite: Structures/Specific/Anomalies/Cores/rock_core.rsi + - type: PointLight + radius: 1.5 + energy: 3.5 + color: "#5ca8cb" + castShadows: false + +- type: entity + parent: BaseAnomalyInertCore + id: AnomalyCoreLiquidInert + suffix: Liquid, Inert + components: + - type: Sprite + sprite: Structures/Specific/Anomalies/Cores/liquid_core.rsi + - type: PointLight + radius: 1.5 + energy: 3.5 + color: "#ffffff" + castShadows: false + +- type: entity + parent: BaseAnomalyInertCore + id: AnomalyCoreBluespaceInert + suffix: Bluespace, Inert + components: + - type: Sprite + sprite: Structures/Specific/Anomalies/Cores/bluespace_core.rsi + - type: PointLight + radius: 1.5 + energy: 3.5 + color: "#00ccff" + castShadows: false + +- type: entity + parent: BaseAnomalyInertCore + id: AnomalyCoreElectricityInert + suffix: Electricity, Inert + components: + - type: Sprite + sprite: Structures/Specific/Anomalies/Cores/electric_core.rsi + - type: PointLight + radius: 1.5 + energy: 2.0 + color: "#ffffaa" + castShadows: false \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/sensor.yml b/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/sensor.yml index 6fa085646a..f70da759f5 100644 --- a/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/sensor.yml +++ b/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/sensor.yml @@ -55,7 +55,7 @@ Plasma: danger # everything below is usually bad Tritium: danger WaterVapor: stationWaterVapor - Miasma: stationMiasma + Ammonia: stationAmmonia NitrousOxide: stationNO Frezon: danger - type: Tag diff --git a/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml b/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml index ee726083b6..b10945bca1 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml @@ -80,7 +80,7 @@ joinSystem: true - type: ContainerContainer containers: - GasCanisterTankHolder: !type:ContainerSlot {} + tank_slot: !type:ContainerSlot {} - type: NodeContainer nodes: port: @@ -88,8 +88,14 @@ nodeGroupID: Pipe rotationsEnabled: false volume: 1 + - type: ItemSlots - type: GasPortable - type: GasCanister + gasTankSlot: + name: Gas Tank + whitelist: + components: + - GasTank - type: StaticPrice price: 1000 - type: AccessReader @@ -114,7 +120,7 @@ - 0 # Plasma - 0 # Tritium - 0 # Water vapor - - 0 # Miasma + - 0 # Ammonia - 0 # N2O - 0 # Frezon temperature: 293.15 @@ -469,7 +475,7 @@ - type: entity parent: GasCanister - id: MiasmaCanister + id: AmmoniaCanister components: - type: Sprite layers: @@ -484,7 +490,7 @@ - 0 # Plasma - 0 # Tritium - 0 # Water vapor - - 1871.71051 # Miasma + - 1871.71051 # Ammonia temperature: 293.15 - type: Destructible thresholds: @@ -503,7 +509,7 @@ path: /Audio/Effects/metalbreak.ogg - !type:SpawnEntitiesBehavior spawn: - MiasmaCanisterBroken: + AmmoniaCanisterBroken: min: 1 max: 1 - !type:DoActsBehavior @@ -529,7 +535,7 @@ - 0 # Plasma - 0 # Tritium - 0 # Water vapor - - 0 # Miasma + - 0 # Ammonia - 1871.71051 # N2O temperature: 293.15 - type: Destructible @@ -572,8 +578,8 @@ - 0 # CO2 - 0 # Plasma - 0 # Tritium - - 0 # Water vapor - - 0 # Miasma + - 0 # Water vapor + - 0 # Ammonia - 0 # N2O - 1871.71051 # Frezon temperature: 293.15 @@ -724,7 +730,7 @@ - type: entity parent: GasCanisterBrokenBase - id: MiasmaCanisterBroken + id: AmmoniaCanisterBroken noSpawn: true components: - type: Sprite diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/base_structurelockers.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/base_structurelockers.yml index 8dac19d80d..34f4db1ede 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/base_structurelockers.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/base_structurelockers.yml @@ -36,6 +36,8 @@ - !type:PlaySoundBehavior sound: path: /Audio/Effects/metalbreak.ogg + params: + volume: -6 - !type:SpawnEntitiesBehavior spawn: SheetSteel1: @@ -48,8 +50,8 @@ abstract: true components: - type: Damageable - damageContainer: Inorganic - damageModifierSet: StrongMetallic + damageContainer: StructuralInorganic + damageModifierSet: StructuralMetallic - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml index 7f145b984d..59603028c2 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml @@ -21,7 +21,7 @@ # Cargo - type: entity id: LockerQuarterMaster - parent: LockerBase + parent: LockerBaseSecure name: logistics officer's locker # DeltaV - Logistics Department replacing Cargo components: - type: Appearance @@ -156,7 +156,7 @@ stateDoorOpen: freezer_open stateDoorClosed: freezer_door - type: ExplosionResistance - resistance: 0.90 + damageCoefficient: 0.01 - type: AntiRottingContainer - type: entity @@ -407,3 +407,45 @@ actOnClose: false destroyAfterUses: 2 destroyType: DeleteComponent + +# Clown +- type: entity + id: LockerClown + name: clown locker + parent: LockerBaseSecure + components: + - type: Appearance + - type: AccessReader + access: [["Theatre"]] + - type: EntityStorageVisuals + stateBaseClosed: clown + stateDoorOpen: clown_open + stateDoorClosed: clown_door + +# Mime +- type: entity + id: LockerMime + name: mime locker + parent: LockerBaseSecure + components: + - type: Appearance + - type: AccessReader + access: [["Theatre"]] + - type: EntityStorageVisuals + stateBaseClosed: mime + stateDoorOpen: mime_open + stateDoorClosed: mime_door + +# Representative +- type: entity + id: LockerRepresentative + name: representative locker + parent: LockerBaseSecure + components: + - type: Appearance + - type: AccessReader + access: [["Command"]] + - type: EntityStorageVisuals + stateBaseClosed: hop + stateDoorOpen: hop_open + stateDoorClosed: representative_door diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml index 5edad73e33..935fedc219 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml @@ -56,8 +56,8 @@ placeCentered: true isPlaceable: false - type: Damageable - damageContainer: Inorganic - damageModifierSet: Metallic + damageContainer: StructuralInorganic + damageModifierSet: StructuralMetallic - type: Destructible thresholds: - trigger: @@ -75,6 +75,8 @@ - !type:PlaySoundBehavior sound: path: /Audio/Effects/metalbreak.ogg + params: + volume: -6 - !type:SpawnEntitiesBehavior spawn: SheetSteel1: @@ -86,6 +88,17 @@ stateDoorOpen: generic_open stateDoorClosed: generic_door +# steel closet base (that can be constructed/deconstructed) +- type: entity + id: ClosetSteelBase + parent: ClosetBase + components: + - type: Construction + graph: ClosetSteel + node: done + containers: + - entity_storage + #Wall Closet - type: entity id: BaseWallCloset @@ -148,6 +161,8 @@ - !type:PlaySoundBehavior sound: path: /Audio/Effects/metalbreak.ogg + params: + volume: -6 - !type:SpawnEntitiesBehavior spawn: SheetSteel1: @@ -254,6 +269,8 @@ - !type:PlaySoundBehavior sound: path: /Audio/Effects/metalbreak.ogg + params: + volume: -6 - !type:SpawnEntitiesBehavior spawn: SheetSteel1: diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml index c8136546ee..d5d74c973a 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml @@ -2,7 +2,7 @@ - type: entity id: ClosetTool name: tool closet - parent: ClosetBase + parent: ClosetSteelBase description: It's a storage unit for tools. components: - type: Appearance @@ -15,7 +15,7 @@ - type: entity id: ClosetRadiationSuit name: radiation suit closet - parent: ClosetBase + parent: ClosetSteelBase description: "More comfortable than radiation poisioning." components: - type: Appearance @@ -28,7 +28,7 @@ - type: entity id: ClosetEmergency name: emergency closet - parent: ClosetBase + parent: ClosetSteelBase description: It's a storage unit for emergency breath masks and O2 tanks. components: - type: Appearance @@ -41,7 +41,7 @@ - type: entity id: ClosetFire name: fire-safety closet - parent: ClosetBase + parent: ClosetSteelBase description: It's a storage unit for fire-fighting supplies. components: - type: Appearance @@ -54,7 +54,7 @@ - type: entity id: ClosetBomb name: EOD closet - parent: ClosetBase + parent: ClosetSteelBase description: It's a storage unit for explosion-protective suits. components: - type: Appearance @@ -63,12 +63,26 @@ stateDoorOpen: bomb_open stateDoorClosed: bomb_door +# Janitorial bomb suit closet +- type: entity + id: ClosetJanitorBomb + name: janitorial bomb suit closet + parent: ClosetBase + description: It's a storage unit for janitorial explosion-protective suits. + suffix: DO NOT MAP + components: + - type: Appearance + - type: EntityStorageVisuals + stateBaseClosed: janitor_bomb + stateDoorOpen: janitor_bomb_open + stateDoorClosed: janitor_bomb_door + # Biohazard # Base level 3 bio hazard closet - type: entity id: ClosetL3 - parent: ClosetBase + parent: ClosetSteelBase name: level 3 biohazard gear closet description: It's a storage unit for level 3 biohazard gear. components: @@ -115,7 +129,7 @@ - type: entity id: ClosetMaintenance name: maintenance closet - parent: ClosetBase + parent: ClosetSteelBase description: It's a storage unit. components: - type: Appearance diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/cursed.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/cursed.yml index 35fd16bac4..39912d5deb 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/cursed.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/cursed.yml @@ -1,6 +1,6 @@ - type: entity id: ClosetCursed - parent: ClosetBase + parent: ClosetSteelBase name: closet suffix: cursed description: A standard-issue Nanotrasen storage unit. @@ -8,4 +8,4 @@ - type: CursedEntityStorage - type: EntityStorage closeSound: - path: /Audio/Effects/teleport_arrival.ogg \ No newline at end of file + path: /Audio/Effects/teleport_arrival.ogg diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml index bf8003255f..8b0f4c26e0 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml @@ -38,7 +38,7 @@ - type: PlaceableSurface isPlaceable: false # defaults to closed. - type: Damageable - damageContainer: Inorganic + damageContainer: StructuralInorganic damageModifierSet: Metallic - type: Destructible thresholds: @@ -101,8 +101,8 @@ map: ["enum.StorageVisualLayers.Lock"] shader: unshaded - type: Damageable - damageContainer: Inorganic - damageModifierSet: StrongMetallic + damageContainer: StructuralInorganic + damageModifierSet: StructuralMetallic - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml index 2c6c5db010..05e41eb788 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml @@ -299,8 +299,7 @@ name: livestock crate components: - type: EntityStorage - air: - volume: 800 + airtight: false - type: Sprite sprite: Structures/Storage/Crates/livestock.rsi layers: @@ -559,3 +558,14 @@ sprite: Structures/Storage/Crates/trashcart_jani.rsi - type: AccessReader access: [["Janitor"]] + +- type: entity + parent: CrateBaseWeldable + id: InvisibleCrate + suffix: Stealth + components: + - type: Stealth + hadOutline: true + - type: StealthOnMove + passiveVisibilityRate: -0.10 + movementVisibilityRate: 0.10 diff --git a/Resources/Prototypes/Entities/Structures/Storage/Tanks/tanks.yml b/Resources/Prototypes/Entities/Structures/Storage/Tanks/tanks.yml index 5f3b841565..15504fe0d7 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Tanks/tanks.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Tanks/tanks.yml @@ -127,6 +127,27 @@ reagents: - ReagentId: Water Quantity: 500 + - type: ContainerContainer + containers: + bin-container: !type:Container + - type: Bin + initialContents: + - DrinkWaterCup + - DrinkWaterCup + - DrinkWaterCup + - DrinkWaterCup + - DrinkWaterCup + - DrinkWaterCup + - DrinkWaterCup + - DrinkWaterCup + - DrinkWaterCup + - DrinkWaterCup + whitelist: + requireAll: true + components: + - FitsInDispenser + tags: + - Trash - type: entity parent: StorageTank @@ -178,3 +199,4 @@ fillBaseName: watertank-2- - type: ExaminableSolution solution: tank + diff --git a/Resources/Prototypes/Entities/Structures/Storage/storage.yml b/Resources/Prototypes/Entities/Structures/Storage/storage.yml index c8723ffefa..2069fb1e3f 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/storage.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/storage.yml @@ -48,6 +48,8 @@ - !type:PlaySoundBehavior sound: path: /Audio/Effects/metalbreak.ogg + params: + volume: -6 - !type:SpawnEntitiesBehavior spawn: SheetSteel1: diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/flags.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/flags.yml new file mode 100644 index 0000000000..96204c3450 --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/flags.yml @@ -0,0 +1,55 @@ +- type: entity + parent: BaseSign + id: BaseFlag + abstract: true + components: + - type: WallMount + arc: 360 + - type: Sprite + drawdepth: WallTops + sprite: Structures/Wallmounts/flags.rsi + +- type: entity + parent: BaseFlag + id: BlankFlag + name: blank flag + description: "Some piece of white cloth. Definitely not the flag of France." + components: + - type: Sprite + state: blank_flag + +- type: entity + parent: BaseFlag + id: NTFlag + name: Nanotrasen flag + description: "Glory to NT! Wait, they really made a flag for a corporation?" + components: + - type: Sprite + state: NT_flag + +- type: entity + parent: BaseFlag + id: SyndieFlag + name: Syndicate flag + description: "Smells bloody. Death to NT!" + components: + - type: Sprite + state: syndie_flag + +- type: entity + parent: BaseFlag + id: LGBTQFlag + name: LGBTQ flag + description: "Be gay do crime flag" + components: + - type: Sprite + state: lgbtq_flag + +- type: entity + parent: BaseFlag + id: PirateFlag + name: Pirate flag + description: "Raise the jolly roger, scallywags!" + components: + - type: Sprite + state: pirate_flag \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml index 3e91daaa39..ad3997fe6d 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml @@ -103,6 +103,8 @@ - !type:PlaySoundBehavior sound: path: /Audio/Effects/metalbreak.ogg + params: + volume: -4 - type: entity id: AirAlarmAssembly diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/extinguisher_cabinet.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/extinguisher_cabinet.yml index 44e1ff4add..ca2b381142 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/extinguisher_cabinet.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/extinguisher_cabinet.yml @@ -55,6 +55,8 @@ - !type:PlaySoundBehavior sound: path: /Audio/Effects/metalbreak.ogg + params: + volume: -4 placement: mode: SnapgridCenter diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/fire_alarm.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/fire_alarm.yml index 7e0635edc8..d8830477f4 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/fire_alarm.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/fire_alarm.yml @@ -42,8 +42,6 @@ - type: Clickable - type: InteractionOutline - type: FireAlarm - - type: AccessReader - access: [ [ "Atmospherics" ] ] - type: ContainerFill containers: board: [ FireAlarmElectronics ] @@ -102,6 +100,8 @@ - !type:PlaySoundBehavior sound: path: /Audio/Effects/metalbreak.ogg + params: + volume: -4 placement: mode: SnapgridCenter snap: diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/fireaxe_cabinet.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/fireaxe_cabinet.yml index fea1161bdb..1e78eb501f 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/fireaxe_cabinet.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/fireaxe_cabinet.yml @@ -3,6 +3,9 @@ name: fire axe cabinet description: There is a small label that reads "For Emergency use only" along with details for safe use of the axe. As if. components: + - type: Damageable # adding destructible causes the entity inside to be deleted when the cabinet is destroyed :( + damageContainer: Inorganic + damageModifierSet: Glass - type: MeleeSound soundGroups: Brute: diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml index 53a2a13ff8..2ead5f6082 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml @@ -82,6 +82,8 @@ - !type:PlaySoundBehavior sound: path: /Audio/Effects/metalbreak.ogg + params: + volume: -4 - type: GenericVisualizer visuals: enum.PowerDeviceVisuals.Powered: diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/noticeboard.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/noticeboard.yml new file mode 100644 index 0000000000..773e1d04e1 --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/noticeboard.yml @@ -0,0 +1,53 @@ +- type: entity + id: NoticeBoard + name: notice board + description: Is there a job for a witcher? + components: + - type: WallMount + - type: Sprite + sprite: Structures/Wallmounts/noticeboard.rsi + layers: + - state: noticeboard + - state: notice-0 + - map: ["enum.StorageFillLayers.Fill"] + - type: StorageFillVisualizer + maxFillLevels: 6 + fillBaseName: notice + - type: Appearance + - type: InteractionOutline + - type: Clickable + - type: Transform + anchored: true + - type: Damageable + damageModifierSet: Wood + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 30 + behaviors: + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/woodhit.ogg + - !type:SpawnEntitiesBehavior + spawn: + MaterialWoodPlank: + min: 1 + max: 2 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Storage + capacity: 10 + whitelist: + tags: + - Folder + - Document + - Write + - type: UserInterface + interfaces: + - key: enum.StorageUiKey.Key + type: StorageBoundUserInterface + - type: ContainerContainer + containers: + storagebase: !type:Container diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/screen.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/screen.yml new file mode 100644 index 0000000000..c0f1b56b0d --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/screen.yml @@ -0,0 +1,41 @@ +- type: entity + id: Screen + name: screen + description: Displays text or time. + components: + - type: Transform + anchored: true + - type: WallMount + arc: 360 + - type: InteractionOutline + - type: Appearance + - type: Rotatable + - type: TextScreenVisuals + textOffset: 0,3 + timerOffset: 0,-4 + rows: 2 + - type: Sprite + drawdepth: WallMountedItems + sprite: Structures/Wallmounts/screen.rsi + state: screen + noRot: true + - type: Construction + graph: Timer + node: screen + - type: ApcPowerReceiver + powerLoad: 100 + - type: Electrified + enabled: false + usesApcPower: true + - type: ExtensionCableReceiver + - type: ShuttleTimer + - type: DeviceNetwork + receiveFrequencyId: ShuttleTimer + +- type: entity + id: ArrivalsShuttleTimer + parent: Screen + name: arrivals screen + components: + - type: DeviceNetwork + receiveFrequencyId: ArrivalsShuttleTimer diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/service_light.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/service_light.yml new file mode 100644 index 0000000000..80b92b94fd --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/service_light.yml @@ -0,0 +1,25 @@ +- type: entity + parent: Poweredlight + id: JanitorServiceLight + name: janitorial service light + description: A wall-mounted janitorial sign. If the light is blinking, a janitor's service is required. + components: + - type: Sprite + sprite: Structures/Wallmounts/service_light.rsi + drawdepth: WallMountedItems + layers: + - state: off + map: ["enum.PoweredLightLayers.Base"] + state: off + - type: PointLight + radius: 1 + energy: 1 + softness: 1 + enabled: false + - type: PoweredLight + bulb: Bulb + on: false + hasLampOnSpawn: ServiceLightBulb + damage: + types: + Heat: 5 diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/shotgun_cabinet.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/shotgun_cabinet.yml new file mode 100644 index 0000000000..2f52d5c290 --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/shotgun_cabinet.yml @@ -0,0 +1,47 @@ +- type: entity + parent: FireAxeCabinet + id: ShotGunCabinet + name: shotgun cabinet + description: There is a small label that reads "For Emergency use only" along with details for safe use of the shotgun. As if. + components: + - type: Sprite + sprite: DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi # Delta-V + layers: + - state: cabinet + - state: shotgun + map: ["enum.ItemCabinetVisualLayers.ContainsItem"] + visible: true + - state: glass + map: ["enum.ItemCabinetVisualLayers.Door"] + - type: ItemCabinet + cabinetSlot: + ejectOnInteract: true + whitelist: + tags: + - WeaponShotgunKammerer + - type: AccessReader + access: [["Security"], ["Command"]] + +- type: entity + id: ShotGunCabinetOpen + parent: [ShotGunCabinet, FireAxeCabinetOpen] + suffix: Open + +- type: entity + id: ShotGunCabinetFilled + parent: [ShotGunCabinet,FireAxeCabinetFilled] + suffix: Filled + components: + - type: ItemCabinet + cabinetSlot: + startingItem: WeaponShotgunKammerer + ejectOnInteract: true + whitelist: + tags: + - WeaponShotgunKammerer + +- type: entity + id: ShotGunCabinetFilledOpen + parent: [ShotGunCabinetFilled,FireAxeCabinetFilledOpen] + suffix: Filled, Open + diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/surveillance_camera.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/surveillance_camera.yml index 988f4556c8..007573043a 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/surveillance_camera.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/surveillance_camera.yml @@ -64,6 +64,8 @@ - !type:PlaySoundBehavior sound: path: /Audio/Effects/metalbreak.ogg + params: + volume: -8 placement: mode: SnapgridCenter snap: diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml index 86ac24169a..d000993aea 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml @@ -92,6 +92,8 @@ - !type:PlaySoundBehavior sound: path: /Audio/Effects/metalbreak.ogg + params: + volume: -8 - type: entity id: ApcNetSwitch diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml index f880a85d9e..c0e40d3b75 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml @@ -51,10 +51,14 @@ - type: SignalTimer canEditLabel: true - type: TextScreenVisuals + color: FloralWhite + textOffset: 0,8 + timerOffset: 0,8 + textLength: 5 - type: Sprite drawdepth: WallMountedItems - sprite: Structures/Wallmounts/textscreen.rsi - state: textscreen + sprite: Structures/Wallmounts/signalscreen.rsi + state: signalscreen noRot: true - type: Construction graph: Timer @@ -88,8 +92,8 @@ anchored: true - type: Sprite drawdepth: WallMountedItems - sprite: Structures/Wallmounts/textscreen.rsi - state: textscreen + sprite: Structures/Wallmounts/signalscreen.rsi + state: signalscreen - type: Construction graph: Timer node: frame diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/walldispenser.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/walldispenser.yml new file mode 100644 index 0000000000..3a1e0d3d98 --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/walldispenser.yml @@ -0,0 +1,81 @@ +- type: entity + id: CleanerDispenser + name: space cleaner dispenser + description: Wallmount reagent dispenser. + placement: + mode: SnapgridCenter + snap: + - Wallmount + components: + - type: WallMount + arc: 180 + - type: Sprite + sprite: Structures/Storage/tanks.rsi + state: cleanerdispenser + - type: Appearance + - type: InteractionOutline + - type: Clickable + - type: Transform + anchored: true + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Metallic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 50 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTypeTrigger + damageType: Heat + damage: 5 + behaviors: + - !type:SolutionExplosionBehavior + solution: tank + - trigger: + !type:DamageTypeTrigger + damageType: Piercing + damage: 5 + behaviors: + - !type:SolutionExplosionBehavior + solution: tank + - trigger: + !type:DamageTrigger + damage: 10 + behaviors: + - !type:SpillBehavior + solution: tank + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/metalbreak.ogg + - !type:DoActsBehavior + acts: ["Destruction"] + - type: SolutionContainerManager + solutions: + tank: + reagents: + - ReagentId: SpaceCleaner + Quantity: 5000 + - type: DrainableSolution + solution: tank + - type: ReagentTank + - type: ExaminableSolution + solution: tank + +- type: entity + parent: CleanerDispenser + id: FuelDispenser + name: fuel dispenser + components: + - type: Sprite + sprite: Structures/Storage/tanks.rsi + state: fueldispenser + - type: SolutionContainerManager + solutions: + tank: + reagents: + - ReagentId: WeldingFuel + Quantity: 1000 diff --git a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml index ac12dc2717..091daade43 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml @@ -7,6 +7,8 @@ suffix: Low Ore Yield description: A rocky asteroid. components: + - type: PlacementReplacement + key: walls - type: SoundOnGather - type: Gatherable whitelist: @@ -29,7 +31,7 @@ - map: [ "enum.EdgeLayer.West" ] state: rock_asteroid_west - type: Damageable - damageContainer: Inorganic + damageContainer: StructuralInorganic damageModifierSet: Metallic - type: Destructible thresholds: @@ -55,6 +57,8 @@ - type: OreVein oreChance: 0.2 oreRarityPrototypeId: RandomOreDistributionStandard + - type: RadiationBlocker + resistance: 2 - type: entity id: AsteroidRockMining @@ -196,8 +200,32 @@ state: rock_north - map: [ "enum.EdgeLayer.West" ] state: rock_west + - type: RadiationBlocker + resistance: 2 # Ore veins +- type: entity + id: WallRockCoal + parent: WallRock + description: An ore vein rich with coal. + suffix: Coal + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreCoal + - type: Sprite + layers: + - state: rock + - map: [ "enum.EdgeLayer.South" ] + state: rock_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_west + - state: rock_coal + - type: entity id: WallRockGold parent: WallRock @@ -395,6 +423,28 @@ - map: [ "enum.EdgeLayer.West" ] state: rock_wall_west +- type: entity + id: WallRockBasaltCoal + parent: WallRockBasalt + description: An ore vein rich with coal. + suffix: Coal + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreCoal + - type: Sprite + layers: + - state: rock_wall + - map: [ "enum.EdgeLayer.South" ] + state: rock_wall_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_wall_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_wall_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_wall_west + - state: rock_coal + - type: entity id: WallRockBasaltGold parent: WallRockBasalt @@ -591,6 +641,28 @@ - map: [ "enum.EdgeLayer.West" ] state: rock_snow_west +- type: entity + id: WallRockSnowCoal + parent: WallRockSnow + description: An ore vein rich with coal. + suffix: Coal + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreCoal + - type: Sprite + layers: + - state: rock_snow + - map: [ "enum.EdgeLayer.South" ] + state: rock_snow_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_snow_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_snow_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_snow_west + - state: rock_coal + - type: entity id: WallRockSnowGold parent: WallRockSnow @@ -788,6 +860,28 @@ - map: [ "enum.EdgeLayer.West" ] state: rock_sand_west +- type: entity + id: WallRockSandCoal + parent: WallRockSand + description: An ore vein rich with coal. + suffix: Coal + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreCoal + - type: Sprite + layers: + - state: rock_sand + - map: [ "enum.EdgeLayer.South" ] + state: rock_sand_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_sand_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_sand_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_sand_west + - state: rock_coal + - type: entity id: WallRockSandGold parent: WallRockSand @@ -984,6 +1078,28 @@ - map: [ "enum.EdgeLayer.West" ] state: rock_chromite_west +- type: entity + id: WallRockChromiteCoal + parent: WallRockChromite + description: An ore vein rich with coal. + suffix: Coal + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreCoal + - type: Sprite + layers: + - state: rock_chromite + - map: [ "enum.EdgeLayer.South" ] + state: rock_chromite_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_chromite_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_chromite_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_chromite_west + - state: rock_coal + - type: entity id: WallRockChromiteGold parent: WallRockChromite @@ -1180,6 +1296,28 @@ - map: [ "enum.EdgeLayer.West" ] state: rock_andesite_west +- type: entity + id: WallRockAndesiteCoal + parent: WallRockAndesite + description: An ore vein rich with coal. + suffix: Coal + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreCoal + - type: Sprite + layers: + - state: rock_andesite + - map: [ "enum.EdgeLayer.South" ] + state: rock_andesite_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_andesite_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_andesite_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_andesite_west + - state: rock_coal + - type: entity id: WallRockAndesiteGold parent: WallRockAndesite diff --git a/Resources/Prototypes/Entities/Structures/Walls/grille.yml b/Resources/Prototypes/Entities/Structures/Walls/grille.yml index 267a06d24f..1d9e0b3a5c 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/grille.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/grille.yml @@ -124,3 +124,38 @@ node: start - !type:DoActsBehavior acts: ["Destruction"] + +- type: entity + id: GrilleDiagonal + parent: Grille + name: diagonal grille + components: + - type: Sprite + drawdepth: Walls + sprite: Structures/Walls/grille.rsi + layers: + - state: grille_diagonal + - state: electrified_diagonal + sprite: Effects/electricity.rsi + map: ["enum.ElectrifiedLayers.Powered"] + shader: unshaded + visible: false + - type: Icon + sprite: Structures/Walls/grille.rsi + state: grille_diagonal + - type: Fixtures + fixtures: + fix1: + shape: + !type:PolygonShape + vertices: + - "-0.5,-0.5" + - "0.5,0.5" + - "0.5,-0.5" + mask: + - FullTileMask + layer: + - WallLayer + - type: Construction + graph: GrilleDiagonal + node: grilleDiagonal \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Walls/railing.yml b/Resources/Prototypes/Entities/Structures/Walls/railing.yml index b083771ea9..87a89dfc57 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/railing.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/railing.yml @@ -44,6 +44,8 @@ - !type:PlaySoundBehavior sound: path: /Audio/Effects/metalbreak.ogg + params: + volume: -6 - !type:SpawnEntitiesBehavior spawn: PartRodMetal1: @@ -111,6 +113,8 @@ - !type:PlaySoundBehavior sound: path: /Audio/Effects/metalbreak.ogg + params: + volume: -6 - !type:SpawnEntitiesBehavior spawn: PartRodMetal1: @@ -169,6 +173,8 @@ - !type:PlaySoundBehavior sound: path: /Audio/Effects/metalbreak.ogg + params: + volume: -6 - !type:SpawnEntitiesBehavior spawn: PartRodMetal1: @@ -242,6 +248,8 @@ - !type:PlaySoundBehavior sound: path: /Audio/Effects/metalbreak.ogg + params: + volume: -6 - !type:SpawnEntitiesBehavior spawn: PartRodMetal1: diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml index b6d0f77738..06fd8ba696 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml @@ -28,8 +28,8 @@ - type: PlacementReplacement key: walls - type: Damageable - damageContainer: Inorganic - damageModifierSet: MetallicStructure #Nyano + damageContainer: StructuralInorganic + damageModifierSet: StructuralMetallic - type: Physics bodyType: Static - type: Fixtures @@ -382,6 +382,8 @@ - type: IconSmooth key: walls base: plasma + - type: RadiationBlocker + resistance: 5 - type: entity parent: BaseWall @@ -500,14 +502,14 @@ - type: Construction graph: Girder node: reinforcedWall - - type: Damageable #Nyano component addition - damageContainer: Inorganic - damageModifierSet: StrongMetallic + - type: Damageable + damageContainer: StructuralInorganic + damageModifierSet: StructuralMetallicStrong - type: Destructible thresholds: - trigger: !type:DamageTrigger - damage: 1000 #excess damage (nuke?). avoid computational cost of spawning entities. #was 1200 + damage: 600 behaviors: - !type:PlaySoundBehavior #Nyano sound: @@ -516,7 +518,7 @@ acts: ["Destruction"] - trigger: !type:DamageTrigger - damage: 500 #was 600 + damage: 400 behaviors: - !type:ChangeConstructionNodeBehavior node: girder @@ -558,6 +560,9 @@ sprite: Structures/Walls/riveted.rsi - type: Icon sprite: Structures/Walls/riveted.rsi + - type: Damageable + damageContainer: StructuralInorganic + damageModifierSet: StructuralMetallicStrong - type: Destructible thresholds: - trigger: @@ -677,7 +682,7 @@ state: state0 - type: Damageable damageContainer: Inorganic - damageModifierSet: StrongMetallic #Nyano + damageModifierSet: StructuralMetallic - type: Physics bodyType: Static - type: Reflect @@ -728,6 +733,9 @@ acts: ["Destruction"] destroySound: path: /Audio/Effects/metalbreak.ogg + - type: Construction + graph: Girder + node: diagonalshuttleWall - type: entity parent: WallReinforced #Nyano, basically Reinforced Wall (shuttle variant) @@ -791,13 +799,13 @@ thresholds: - trigger: !type:DamageTrigger - damage: 600 + damage: 400 behaviors: - !type:DoActsBehavior acts: ["Destruction"] - trigger: !type:DamageTrigger - damage: 300 + damage: 200 behaviors: - !type:PlaySoundBehavior sound: @@ -909,6 +917,8 @@ - type: IconSmooth key: walls base: uranium + - type: RadiationBlocker + resistance: 6 - type: entity parent: BaseWall @@ -982,6 +992,9 @@ MaterialWebSilk: min: 1 max: 1 + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/woodhit.ogg - type: IconSmooth key: walls base: wall diff --git a/Resources/Prototypes/Entities/Structures/Windows/mining.yml b/Resources/Prototypes/Entities/Structures/Windows/mining.yml new file mode 100644 index 0000000000..286cb895da --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Windows/mining.yml @@ -0,0 +1,90 @@ +- type: entity + id: MiningWindow + name: mining window + parent: Window + components: + - type: Sprite + drawdepth: WallTops + sprite: Structures/Windows/mining.rsi + - type: Icon + sprite: Structures/Windows/mining.rsi + - type: Repairable + fuelCost: 15 + doAfterDelay: 3 + - type: Damageable + damageContainer: StructuralInorganic + damageModifierSet: RGlass + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 200 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: GlassBreak + - !type:SpawnEntitiesBehavior + spawn: + ShardGlassReinforced: + min: 1 + max: 2 + PartRodMetal: + min: 1 + max: 2 + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: IconSmooth + base: mwindow + - type: Appearance + - type: DamageVisuals + thresholds: [4, 8, 12] + damageDivisor: 36 + trackAllDamage: true + damageOverlay: + sprite: Structures/Windows/cracks.rsi + - type: StaticPrice + price: 100 + +- type: entity + parent: ShuttleWindow + id: MiningWindowDiagonal + name: diagonal mining window + suffix: diagonal + placement: + mode: SnapgridCenter + snap: + - Window + components: + - type: Sprite + drawdepth: WallTops + sprite: Structures/Windows/mining_diagonal.rsi + state: state0 + - type: IconSmooth + mode: Diagonal + key: windows + base: state + - type: Icon + sprite: Structures/Windows/mining_diagonal.rsi + state: state0 + - type: Fixtures + fixtures: + fix1: + shape: + !type:PolygonShape + vertices: + - "-0.5,-0.5" + - "0.5,0.5" + - "0.5,-0.5" + mask: + - FullTileMask + layer: + - GlassLayer + - type: DamageVisuals + damageOverlay: + sprite: Structures/Windows/cracks_diagonal.rsi diff --git a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml index a0f091133a..4e128c46e1 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml @@ -9,13 +9,19 @@ - type: Icon sprite: Structures/Windows/plasma_window.rsi - type: Damageable - damageContainer: Inorganic + damageContainer: StructuralInorganic damageModifierSet: RGlass - type: Destructible thresholds: - trigger: !type:DamageTrigger - damage: 200 + damage: 120 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 60 behaviors: - !type:PlaySoundBehavior sound: @@ -63,6 +69,13 @@ - type: Construction graph: WindowDirectional node: plasmaWindowDirectional + - type: Appearance + - type: DamageVisuals + thresholds: [4, 8, 12] + damageDivisor: 12 + trackAllDamage: true + damageOverlay: + sprite: Structures/Windows/cracks_directional.rsi - type: Destructible thresholds: - trigger: @@ -81,3 +94,44 @@ acts: [ "Destruction" ] - type: StaticPrice price: 30 + +- type: entity + parent: PlasmaWindow + id: PlasmaWindowDiagonal + name: diagonal plasma window + suffix: diagonal + placement: + mode: SnapgridCenter + snap: + - Window + components: + - type: Sprite + drawdepth: WallTops + sprite: Structures/Windows/plasma_diagonal.rsi + state: state0 + - type: IconSmooth + mode: Diagonal + key: windows + base: state + - type: Icon + sprite: Structures/Windows/plasma_diagonal.rsi + state: state0 + - type: Fixtures + fixtures: + fix1: + shape: + !type:PolygonShape + vertices: + - "-0.5,-0.5" + - "0.5,0.5" + - "0.5,-0.5" + mask: + - FullTileMask + layer: + - GlassLayer + - type: DamageVisuals + damageOverlay: + sprite: Structures/Windows/cracks_diagonal.rsi + - type: Construction + graph: WindowDiagonal + node: plasmaWindowDiagonal diff --git a/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml b/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml index 9e59143e99..a4d423acfe 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml @@ -12,19 +12,19 @@ fuelCost: 10 doAfterDelay: 2 - type: Damageable - damageContainer: Inorganic + damageContainer: StructuralInorganic damageModifierSet: RGlass - type: Destructible thresholds: - trigger: !type:DamageTrigger - damage: 300 #excess damage (nuke?). Avoid computational cost of spawning entities. + damage: 150 behaviors: - !type:DoActsBehavior acts: [ "Destruction" ] - trigger: !type:DamageTrigger - damage: 150 + damage: 75 behaviors: - !type:PlaySoundBehavior sound: @@ -87,6 +87,13 @@ - type: Construction graph: WindowDirectional node: windowReinforcedDirectional + - type: Appearance + - type: DamageVisuals + thresholds: [4, 8, 12] + damageDivisor: 10 + trackAllDamage: true + damageOverlay: + sprite: Structures/Windows/cracks_directional.rsi - type: Damageable damageModifierSet: RGlass - type: Destructible @@ -107,3 +114,44 @@ acts: [ "Destruction" ] - type: StaticPrice price: 22 + +- type: entity + parent: ReinforcedWindow + id: ReinforcedWindowDiagonal + name: reinforced window diagonal + suffix: diagonal + placement: + mode: SnapgridCenter + snap: + - Window + components: + - type: Sprite + drawdepth: WallTops + sprite: Structures/Windows/reinforced_window_diagonal.rsi + state: state0 + - type: IconSmooth + mode: Diagonal + key: windows + base: state + - type: Icon + sprite: Structures/Windows/reinforced_window_diagonal.rsi + state: state0 + - type: Fixtures + fixtures: + fix1: + shape: + !type:PolygonShape + vertices: + - "-0.5,-0.5" + - "0.5,0.5" + - "0.5,-0.5" + mask: + - FullTileMask + layer: + - GlassLayer + - type: DamageVisuals + damageOverlay: + sprite: Structures/Windows/cracks_diagonal.rsi + - type: Construction + graph: WindowDiagonal + node: reinforcedWindowDiagonal diff --git a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml index 62ddbbe8eb..97f77b8d8f 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml @@ -9,7 +9,7 @@ - type: Icon sprite: Structures/Windows/reinforced_plasma_window.rsi - type: Damageable - damageContainer: Inorganic + damageContainer: StructuralInorganic damageModifierSet: RGlass - type: RadiationBlocker resistance: 4 @@ -17,13 +17,13 @@ thresholds: - trigger: !type:DamageTrigger - damage: 1000 + damage: 200 behaviors: #excess damage, don't spawn entities. - !type:DoActsBehavior acts: [ "Destruction" ] - trigger: !type:DamageTrigger - damage: 600 + damage: 100 behaviors: - !type:PlaySoundBehavior sound: @@ -72,6 +72,13 @@ - type: Construction graph: WindowDirectional node: plasmaReinforcedWindowDirectional + - type: Appearance + - type: DamageVisuals + thresholds: [4, 8, 12] + damageDivisor: 36 + trackAllDamage: true + damageOverlay: + sprite: Structures/Windows/cracks_directional.rsi - type: Destructible thresholds: - trigger: @@ -99,3 +106,44 @@ acts: [ "Destruction" ] - type: StaticPrice price: 66 + +- type: entity + parent: ReinforcedPlasmaWindow + id: ReinforcedPlasmaWindowDiagonal + name: diagonal reinforced plasma window + suffix: diagonal + placement: + mode: SnapgridCenter + snap: + - Window + components: + - type: Sprite + drawdepth: WallTops + sprite: Structures/Windows/reinforced_plasma_diagonal.rsi + state: state0 + - type: IconSmooth + mode: Diagonal + key: windows + base: state + - type: Icon + sprite: Structures/Windows/reinforced_plasma_diagonal.rsi + state: state0 + - type: Fixtures + fixtures: + fix1: + shape: + !type:PolygonShape + vertices: + - "-0.5,-0.5" + - "0.5,0.5" + - "0.5,-0.5" + mask: + - FullTileMask + layer: + - GlassLayer + - type: DamageVisuals + damageOverlay: + sprite: Structures/Windows/cracks_diagonal.rsi + - type: Construction + graph: WindowDiagonal + node: reinforcedPlasmaWindowDiagonal diff --git a/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml b/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml index c32a648419..00aeade04c 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml @@ -9,19 +9,19 @@ - type: Icon sprite: Structures/Windows/reinforced_uranium_window.rsi - type: Damageable - damageContainer: Inorganic + damageContainer: StructuralInorganic damageModifierSet: RGlass - type: Destructible thresholds: - trigger: !type:DamageTrigger - damage: 1500 - behaviors: #excess damage, don't spawn entities. + damage: 200 + behaviors: - !type:DoActsBehavior acts: [ "Destruction" ] - trigger: !type:DamageTrigger - damage: 850 + damage: 100 behaviors: - !type:PlaySoundBehavior sound: @@ -52,3 +52,44 @@ price: 140 - type: RadiationBlocker resistance: 5 + +- type: entity + parent: ReinforcedUraniumWindow + id: ReinforcedUraniumWindowDiagonal + name: diagonal reinforced uranium window + suffix: diagonal + placement: + mode: SnapgridCenter + snap: + - Window + components: + - type: Sprite + drawdepth: WallTops + sprite: Structures/Windows/reinforced_uranium_diagonal.rsi + state: state0 + - type: IconSmooth + mode: Diagonal + key: windows + base: state + - type: Icon + sprite: Structures/Windows/reinforced_uranium_diagonal.rsi + state: state0 + - type: Fixtures + fixtures: + fix1: + shape: + !type:PolygonShape + vertices: + - "-0.5,-0.5" + - "0.5,0.5" + - "0.5,-0.5" + mask: + - FullTileMask + layer: + - GlassLayer + - type: DamageVisuals + damageOverlay: + sprite: Structures/Windows/cracks_diagonal.rsi + - type: Construction + graph: WindowDiagonal + node: reinforcedUraniumWindowDiagonal diff --git a/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml b/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml index 7535ba0d39..eaae84de47 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml @@ -9,7 +9,7 @@ - type: Icon sprite: Structures/Windows/shuttle_window.rsi - type: Damageable - damageContainer: Inorganic + damageContainer: StructuralInorganic damageModifierSet: RGlass - type: Destructible thresholds: @@ -47,3 +47,41 @@ sprite: Structures/Windows/cracks.rsi - type: StaticPrice price: 75 + +- type: entity + parent: ShuttleWindow + id: ShuttleWindowDiagonal + name: diagonal shuttle window + suffix: diagonal + placement: + mode: SnapgridCenter + snap: + - Window + components: + - type: Sprite + drawdepth: WallTops + sprite: Structures/Windows/shuttle_window_diagonal.rsi + state: state0 + - type: IconSmooth + mode: Diagonal + key: windows + base: state + - type: Icon + sprite: Structures/Windows/shuttle_window_diagonal.rsi + state: state0 + - type: Fixtures + fixtures: + fix1: + shape: + !type:PolygonShape + vertices: + - "-0.5,-0.5" + - "0.5,0.5" + - "0.5,-0.5" + mask: + - FullTileMask + layer: + - GlassLayer + - type: DamageVisuals + damageOverlay: + sprite: Structures/Windows/cracks_diagonal.rsi diff --git a/Resources/Prototypes/Entities/Structures/Windows/uranium.yml b/Resources/Prototypes/Entities/Structures/Windows/uranium.yml index 0728f80c43..b4801e3a28 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/uranium.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/uranium.yml @@ -10,13 +10,19 @@ sprite: Structures/Windows/uranium_window.rsi state: full - type: Damageable - damageContainer: Inorganic + damageContainer: StructuralInorganic damageModifierSet: RGlass - type: Destructible thresholds: - trigger: !type:DamageTrigger - damage: 400 + damage: 100 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 50 behaviors: - !type:PlaySoundBehavior sound: @@ -44,3 +50,44 @@ price: 80 - type: RadiationBlocker resistance: 3 + +- type: entity + parent: UraniumWindow + id: UraniumWindowDiagonal + name: diagonal uranium window + suffix: diagonal + placement: + mode: SnapgridCenter + snap: + - Window + components: + - type: Sprite + drawdepth: WallTops + sprite: Structures/Windows/uranium_window_diagonal.rsi + state: state0 + - type: IconSmooth + mode: Diagonal + key: windows + base: state + - type: Icon + sprite: Structures/Windows/uranium_window_diagonal.rsi + state: state0 + - type: Fixtures + fixtures: + fix1: + shape: + !type:PolygonShape + vertices: + - "-0.5,-0.5" + - "0.5,0.5" + - "0.5,-0.5" + mask: + - FullTileMask + layer: + - GlassLayer + - type: DamageVisuals + damageOverlay: + sprite: Structures/Windows/cracks_diagonal.rsi + - type: Construction + graph: WindowDiagonal + node: uraniumWindowDiagonal diff --git a/Resources/Prototypes/Entities/Structures/Windows/window.yml b/Resources/Prototypes/Entities/Structures/Windows/window.yml index 93f9fa1493..fa54237082 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/window.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/window.yml @@ -38,7 +38,7 @@ layer: - GlassLayer - type: Damageable - damageContainer: Inorganic + damageContainer: StructuralInorganic damageModifierSet: Glass - type: ExaminableDamage messages: WindowMessages @@ -47,7 +47,7 @@ thresholds: - trigger: !type:DamageTrigger - damage: 150 #excess damage (nuke?). avoid computational cost of spawning entities. + damage: 100 behaviors: - !type:DoActsBehavior acts: [ "Destruction" ] @@ -167,6 +167,13 @@ - type: Construction graph: WindowDirectional node: windowDirectional + - type: Appearance + - type: DamageVisuals + thresholds: [4, 8, 12] + damageDivisor: 2 + trackAllDamage: true + damageOverlay: + sprite: Structures/Windows/cracks_directional.rsi - type: StaticPrice price: 10 @@ -186,3 +193,44 @@ - type: Icon sprite: Structures/Windows/directional.rsi state: frosted_window + +- type: entity + parent: Window + id: WindowDiagonal + name: window diagonal + suffix: diagonal + placement: + mode: SnapgridCenter + snap: + - Window + components: + - type: Sprite + drawdepth: WallTops + sprite: Structures/Windows/window_diagonal.rsi + state: state0 + - type: IconSmooth + mode: Diagonal + key: windows + base: state + - type: Icon + sprite: Structures/Windows/window_diagonal.rsi + state: state0 + - type: Fixtures + fixtures: + fix1: + shape: + !type:PolygonShape + vertices: + - "-0.5,-0.5" + - "0.5,0.5" + - "0.5,-0.5" + mask: + - FullTileMask + layer: + - GlassLayer + - type: DamageVisuals + damageOverlay: + sprite: Structures/Windows/cracks_diagonal.rsi + - type: Construction + graph: WindowDiagonal + node: windowDiagonal diff --git a/Resources/Prototypes/Entities/Structures/barricades.yml b/Resources/Prototypes/Entities/Structures/barricades.yml index 8cdd1c4786..050498cdaa 100644 --- a/Resources/Prototypes/Entities/Structures/barricades.yml +++ b/Resources/Prototypes/Entities/Structures/barricades.yml @@ -28,7 +28,7 @@ - WallLayer - type: Damageable damageModifierSet: Wood - damageContainer: Inorganic + damageContainer: StructuralInorganic - type: Destructible thresholds: - trigger: @@ -43,7 +43,7 @@ - !type:DoActsBehavior acts: [ "Destruction" ] - type: AtmosExposed - + #Regular Barricade - type: entity id: Barricade @@ -108,4 +108,4 @@ - type: Appearance - type: FireVisuals sprite: Effects/fire.rsi - normalState: 1 \ No newline at end of file + normalState: 1 diff --git a/Resources/Prototypes/Entities/Structures/conveyor.yml b/Resources/Prototypes/Entities/Structures/conveyor.yml index fe641fddfd..4dc879b0f6 100644 --- a/Resources/Prototypes/Entities/Structures/conveyor.yml +++ b/Resources/Prototypes/Entities/Structures/conveyor.yml @@ -32,6 +32,7 @@ - Impassable - MidImpassable - LowImpassable + - DoorPassable hard: False - type: Conveyor - type: DeviceLinkSink diff --git a/Resources/Prototypes/Entities/Structures/gates.yml b/Resources/Prototypes/Entities/Structures/gates.yml index 8e5b1595c8..8fccb39b71 100644 --- a/Resources/Prototypes/Entities/Structures/gates.yml +++ b/Resources/Prototypes/Entities/Structures/gates.yml @@ -25,6 +25,8 @@ - state: or map: [ "enum.LogicGateLayers.Gate" ] - type: LogicGate + - type: UseDelay + delay: 0.5 - type: DeviceLinkSink ports: - InputA @@ -66,3 +68,46 @@ - type: Construction graph: LogicGate node: edge_detector + +- type: entity + parent: BaseLogicItem + id: PowerSensor + name: power sensor + description: Generates signals in response to powernet changes. Can be cycled between cable voltages. + components: + - type: Sprite + state: power_sensor + - type: PowerSensor + - type: PowerSwitchable + examineText: power-sensor-voltage-examine + switchText: power-sensor-voltage-switch + cables: + - voltage: HV + node: hv + - voltage: MV + node: mv + - voltage: LV + node: lv + - type: UseDelay + delay: 1 + - type: NodeContainer + examinable: true + nodes: + hv: + !type:CableDeviceNode + nodeGroupID: HVPower + mv: + !type:CableDeviceNode + nodeGroupID: MVPower + enabled: false + lv: + !type:CableDeviceNode + nodeGroupID: Apc + enabled: false + - type: DeviceLinkSource + ports: + - PowerCharging + - PowerDischarging + - type: Construction + graph: LogicGate + node: power_sensor diff --git a/Resources/Prototypes/Entities/Structures/meat_spike.yml b/Resources/Prototypes/Entities/Structures/meat_spike.yml index 182ec09c8e..a312fcb835 100644 --- a/Resources/Prototypes/Entities/Structures/meat_spike.yml +++ b/Resources/Prototypes/Entities/Structures/meat_spike.yml @@ -32,6 +32,8 @@ - !type:PlaySoundBehavior sound: path: /Audio/Effects/metalbreak.ogg + params: + volume: -4 - !type:SpawnEntitiesBehavior spawn: SheetSteel1: diff --git a/Resources/Prototypes/Entities/Structures/plastic_flaps.yml b/Resources/Prototypes/Entities/Structures/plastic_flaps.yml index 1f2aaa216f..8c53daf3b6 100644 --- a/Resources/Prototypes/Entities/Structures/plastic_flaps.yml +++ b/Resources/Prototypes/Entities/Structures/plastic_flaps.yml @@ -27,7 +27,7 @@ layer: - MidImpassable - type: Damageable - damageContainer: Inorganic + damageContainer: StructuralInorganic damageModifierSet: Metallic - type: Destructible thresholds: diff --git a/Resources/Prototypes/Entities/Tiles/shadow_basalt.yml b/Resources/Prototypes/Entities/Tiles/shadow_basalt.yml index e5835239cf..0c8670dcbb 100644 --- a/Resources/Prototypes/Entities/Tiles/shadow_basalt.yml +++ b/Resources/Prototypes/Entities/Tiles/shadow_basalt.yml @@ -22,7 +22,7 @@ - type: entity id: ShadowBasaltTwo - parent: BasaltOne + parent: ShadowBasaltOne placement: mode: SnapgridCenter components: @@ -33,7 +33,7 @@ - type: entity id: ShadowBasaltThree - parent: BasaltOne + parent: ShadowBasaltOne placement: mode: SnapgridCenter components: @@ -44,7 +44,7 @@ - type: entity id: ShadowBasaltFour - parent: BasaltOne + parent: ShadowBasaltOne placement: mode: SnapgridCenter components: @@ -55,7 +55,7 @@ - type: entity id: ShadowBasaltFive - parent: BasaltOne + parent: ShadowBasaltOne placement: mode: SnapgridCenter components: @@ -80,4 +80,4 @@ - 0: basalt4: "" - 0: - basalt5: "" \ No newline at end of file + basalt5: "" diff --git a/Resources/Prototypes/Entities/World/Debris/asteroids.yml b/Resources/Prototypes/Entities/World/Debris/asteroids.yml index f662953edb..6cb0c35ef5 100644 --- a/Resources/Prototypes/Entities/World/Debris/asteroids.yml +++ b/Resources/Prototypes/Entities/World/Debris/asteroids.yml @@ -17,6 +17,9 @@ - id: WallRock prob: 0.5 orGroup: rock + - id: WallRockCoal + prob: 0.15 + orGroup: rock - id: WallRockTin prob: 0.15 orGroup: rock diff --git a/Resources/Prototypes/Flavors/flavors.yml b/Resources/Prototypes/Flavors/flavors.yml index ba8f2c3476..07ec78cca0 100644 --- a/Resources/Prototypes/Flavors/flavors.yml +++ b/Resources/Prototypes/Flavors/flavors.yml @@ -169,6 +169,11 @@ flavorType: Base description: flavor-base-syrupy +- type: flavor + id: clean + flavorType: Base + description: flavor-base-clean + - type: flavor id: nothing flavorType: Complex @@ -224,6 +229,11 @@ flavorType: Complex description: flavor-complex-egg +- type: flavor + id: raw-egg + flavorType: Complex + description: flavor-complex-raw-egg + - type: flavor id: bacon flavorType: Complex @@ -299,6 +309,11 @@ flavorType: Complex description: flavor-complex-peas +- type: flavor + id: lemoon + flavorType: Complex + description: flavor-complex-lemoon + - type: flavor id: pineapple flavorType: Complex @@ -838,7 +853,7 @@ id: spaceshroomcooked flavorType: Complex description: flavor-complex-spaceshroom-cooked - + - type: flavor id: lostfriendship flavorType: Complex @@ -847,4 +862,9 @@ - type: flavor id: pumpkin flavorType: Complex - description: flavor-complex-pumpkin \ No newline at end of file + description: flavor-complex-pumpkin + +- type: flavor + id: punishment + flavorType: Complex + description: flavor-complex-punishment diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index 371b2e2a4c..57e83b6af5 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -86,9 +86,9 @@ noSpawn: true components: - type: StationEvent - weight: 5 # DeltaV - was 10 + weight: 3 # DeltaV - was 10 duration: 1 - earliestStart: 30 + earliestStart: 45 # DeltaV - was 30 reoccurrenceDelay: 60 minimumPlayers: 40 - type: NinjaSpawnRule @@ -128,7 +128,7 @@ endAnnouncement: station-event-gas-leak-end-announcement earliestStart: 10 minimumPlayers: 5 - weight: 5 + weight: 10 startDelay: 20 - type: GasLeakRule @@ -186,6 +186,21 @@ - id: SpawnPointGhostRatKing prob: 0.005 +- type: entity + id: CockroachMigration + parent: BaseGameRule + noSpawn: true + components: + - type: StationEvent + weight: 5 + duration: 50 + - type: VentCrittersRule + entries: + - id: MobCockroach + prob: 0.03 + - id: MobMothroach + prob: 0.008 + - type: entity id: PowerGridCheck parent: BaseGameRule @@ -336,7 +351,7 @@ noSpawn: true components: - type: StationEvent - earliestStart: 50 + earliestStart: 90 # DeltaV - was 50 weight: 2.5 # DeltaV - was 5 duration: 1 - type: ZombieRule @@ -352,8 +367,8 @@ noSpawn: true components: - type: StationEvent - earliestStart: 45 - weight: 5 + earliestStart: 60 # DeltaV - was 45 + weight: 3 # DeltaV - was 5 minimumPlayers: 10 reoccurrenceDelay: 30 duration: 1 diff --git a/Resources/Prototypes/GameRules/roundstart.yml b/Resources/Prototypes/GameRules/roundstart.yml index a0fc66bb81..a254fb022e 100644 --- a/Resources/Prototypes/GameRules/roundstart.yml +++ b/Resources/Prototypes/GameRules/roundstart.yml @@ -81,6 +81,8 @@ noSpawn: true components: - type: RevolutionaryRule + maxHeadRevs: 2 # DeltaV + playersPerHeadRev: 30 # DeltaV - need highpop readied up for multiple headrevs - type: entity id: Sandbox diff --git a/Resources/Prototypes/Guidebook/medical.yml b/Resources/Prototypes/Guidebook/medical.yml index 5d2927efa1..9ea2398a7c 100644 --- a/Resources/Prototypes/Guidebook/medical.yml +++ b/Resources/Prototypes/Guidebook/medical.yml @@ -30,6 +30,7 @@ children: - Medicine - Botanicals + - AdvancedBrute - type: guideEntry id: Medicine @@ -42,3 +43,8 @@ name: guide-entry-botanicals text: "/ServerInfo/Guidebook/Medical/Botanicals.xml" filterEnabled: True + +- type: guideEntry + id: AdvancedBrute + name: guide-entry-brute + text: "/ServerInfo/Guidebook/Medical/AdvancedBrute.xml" \ No newline at end of file diff --git a/Resources/Prototypes/Guidebook/science.yml b/Resources/Prototypes/Guidebook/science.yml index 4fed3bd3b9..c73b666f68 100644 --- a/Resources/Prototypes/Guidebook/science.yml +++ b/Resources/Prototypes/Guidebook/science.yml @@ -8,6 +8,8 @@ - Xenoarchaeology - Robotics - MachineUpgrading + - Psionics # Nyanotrasen - Psionics guidebook + # - AltarsGolemancy # When it's added # Nyanotrasen - Golemancy guidebook - ReverseEngineering # Nyanotrasen - Reverse Engineering guidebook - type: guideEntry @@ -46,6 +48,8 @@ id: Robotics name: guide-entry-robotics text: "/ServerInfo/Guidebook/Science/Robotics.xml" + children: + - Cyborgs - type: guideEntry id: ArtifactReports @@ -61,3 +65,8 @@ id: MachineUpgrading name: guide-entry-machine-upgrading text: "/ServerInfo/Guidebook/Science/MachineUpgrading.xml" + +- type: guideEntry + id: Cyborgs + name: guide-entry-cyborgs + text: "/ServerInfo/Guidebook/Science/Cyborgs.xml" diff --git a/Resources/Prototypes/Guidebook/ss14.yml b/Resources/Prototypes/Guidebook/ss14.yml index 9d4cd4bce4..dfe072b3e0 100644 --- a/Resources/Prototypes/Guidebook/ss14.yml +++ b/Resources/Prototypes/Guidebook/ss14.yml @@ -9,8 +9,16 @@ - Chemicals - Antagonists - Writing + - Glossary - type: guideEntry id: Writing name: guide-entry-writing text: "/ServerInfo/Guidebook/Writing.xml" + +- type: guideEntry + id: Glossary + name: guide-entry-glossary + text: "/ServerInfo/Guidebook/Glossary.xml" + + diff --git a/Resources/Prototypes/Hydroponics/mutations.yml b/Resources/Prototypes/Hydroponics/mutations.yml new file mode 100644 index 0000000000..dd37e0cda0 --- /dev/null +++ b/Resources/Prototypes/Hydroponics/mutations.yml @@ -0,0 +1,114 @@ +- type: weightedRandomFillSolution + id: RandomPickBotanyReagent + fills: + - quantity: 5 + weight: 0.5 + reagents: + - Omnizine + - Nocturine + - Barozine + - Lexorin + - Honk + - BuzzochloricBees + - Stimulants + - quantity: 5 + weight: 1 + reagents: + - Cognizine + - Toxin + - Leporazine + - Epinephrine + - CarpoToxin + - SulfuricAcid + - Licoxide + - Napalm + - ChlorineTrifluoride + - Radium + - Gold + - Uranium + - Phosphorus + - AtomicBomb + - Neurotoxin + - ChangelingSting + - CogChamp + - quantity: 5 + weight: 2 + reagents: + - Desoxyephedrine + - ChloralHydrate + - Ipecac + - Hyronalin + - Pax + - Cryoxadone + - Ethylredoxrazine + - Dylovene + - Histamine + - Blood + - WeldingFuel + - Mercury + - Silver + - Phenol + - Ultravasculine + - Carbon + - THC + - Nicotine + - DoctorsDelight + - IceCream + - Cola + - Diphenhydramine + - Iron + - quantity: 10 + weight: 3 + reagents: + - Bicaridine + - Dermaline + - Ephedrine + - NorepinephricAcid + - Tricordrazine + - Saline + - PulpedBananaPeel + - Cryptobiolin + - EZNutrient + - Ammonia + - RobustHarvest + - SpaceLube + - Theobromine + - Allicin + - Acetone + - Ash + - SodiumCarbonate + - SpaceDrugs + - MuteToxin + - JuiceBerryPoison + - Pilk + - Posca + - Ethanol + - FourteenLoko + - LemonLime + - Enzyme + - Vinegar + - Potassium + - Fluorine + - Aluminium + - quantity: 10 + weight: 3.5 + reagents: + - Vitamin + - Kelotane + - Inaprovaline + - Oil + - Slime + - Fiber + - Water + - Sugar + - Cream + - SodaWater + - Ice + - JuiceCarrot + - JuicePotato + - Protein + - Flour + - Soysauce + - TableSalt + - Chlorine + - Mercury \ No newline at end of file diff --git a/Resources/Prototypes/Hydroponics/seeds.yml b/Resources/Prototypes/Hydroponics/seeds.yml index 20d3f2d853..818ecbb3ca 100644 --- a/Resources/Prototypes/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Hydroponics/seeds.yml @@ -141,6 +141,8 @@ packetPrototype: LemonSeeds productPrototypes: - FoodLemon + mutationPrototypes: + - lemoon harvestRepeat: Repeat lifespan: 55 maturation: 6 @@ -158,6 +160,32 @@ Max: 4 PotencyDivisor: 25 +- type: seed + id: lemoon + name: seeds-lemoon-name + noun: seeds-noun-seeds + displayName: seeds-lemoon-display-name + plantRsi: Objects/Specific/Hydroponics/lemoon.rsi + packetPrototype: LemoonSeeds + productPrototypes: + - FoodLemoon + harvestRepeat: Repeat + lifespan: 90 + maturation: 8 + production: 6 + yield: 4 + potency: 1 + idealLight: 8 + chemicals: + Vitamin: + Min: 1 + Max: 4 + PotencyDivisor: 25 + Milk: + Min: 8 + Max: 20 + PotencyDivisor: 5 + - type: seed id: lime name: seeds-lime-name @@ -399,8 +427,8 @@ Max: 5 PotencyDivisor: 20 SpaceLube: - Min: 1 - Max: 10 + Min: 5 + Max: 15 PotencyDivisor: 10 Vitamin: Min: 1 @@ -569,11 +597,11 @@ Nutriment: Min: 1 Max: 10 + PotencyDivisor: 20 + Cornmeal: + Min: 5 + Max: 15 PotencyDivisor: 10 - Vitamin: - Min: 1 - Max: 4 - PotencyDivisor: 25 - type: seed id: onion @@ -1000,8 +1028,8 @@ PotencyDivisor: 10 Omnizine: # Don't kill me Min: 1 - Max: 5 - PotencyDivisor: 20 + Max: 3 + PotencyDivisor: 35 SpaceDrugs: Min: 1 Max: 5 @@ -1136,8 +1164,8 @@ chemicals: Nutriment: Min: 1 - Max: 3 - PotencyDivisor: 25 + Max: 2 + PotencyDivisor: 50 - type: seed id: koibean @@ -1357,3 +1385,27 @@ Min: 1 Max: 5 PotencyDivisor: 20 + +- type: seed + id: cotton + name: seeds-cotton-name + noun: seeds-noun-seeds + displayName: seeds-cotton-display-name + plantRsi: Objects/Specific/Hydroponics/cotton.rsi + packetPrototype: CottonSeeds + productPrototypes: + - CottonBol + lifespan: 25 + maturation: 8 + production: 3 + yield: 3 + potency: 5 + idealLight: 8 + growthStages: 3 + waterConsumption: 0.60 + chemicals: + Fiber: + Min: 5 + Max: 10 + PotencyDivisor: 20 + diff --git a/Resources/Prototypes/InventoryTemplates/arachnid_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/arachnid_inventory_template.yml new file mode 100644 index 0000000000..b41fc3a0ef --- /dev/null +++ b/Resources/Prototypes/InventoryTemplates/arachnid_inventory_template.yml @@ -0,0 +1,134 @@ +- type: inventoryTemplate + id: arachnid + slots: + - name: shoes + slotTexture: shoes + slotFlags: FEET + stripTime: 3 + uiWindowPos: 1,3 + strippingWindowPos: 1,3 + displayName: Shoes + - name: jumpsuit + slotTexture: uniform + slotFlags: INNERCLOTHING + stripTime: 6 + uiWindowPos: 0,2 + strippingWindowPos: 0,2 + displayName: Jumpsuit + - name: gloves + slotTexture: gloves + slotFlags: GLOVES + uiWindowPos: 2,2 + strippingWindowPos: 2,2 + displayName: Gloves + - name: neck + slotTexture: neck + slotFlags: NECK + uiWindowPos: 0,1 + strippingWindowPos: 0,1 + displayName: Neck + - name: mask + slotTexture: mask + slotFlags: MASK + uiWindowPos: 1,1 + strippingWindowPos: 1,1 + displayName: Mask + - name: eyes + slotTexture: glasses + slotFlags: EYES + stripTime: 3 + uiWindowPos: 0,0 + strippingWindowPos: 0,0 + displayName: Eyes + - name: ears + slotTexture: ears + slotFlags: EARS + stripTime: 3 + uiWindowPos: 2,0 + strippingWindowPos: 2,0 + displayName: Ears + - name: head + slotTexture: head + slotFlags: HEAD + uiWindowPos: 1,0 + strippingWindowPos: 1,0 + displayName: Head + - name: suitstorage + slotTexture: suit_storage + slotFlags: SUITSTORAGE + stripTime: 3 + uiWindowPos: 2,0 + strippingWindowPos: 2,5 + dependsOn: outerClothing + displayName: Suit Storage + - name: id + slotTexture: id + slotFlags: IDCARD + slotGroup: SecondHotbar + stripTime: 6 + uiWindowPos: 2,1 + strippingWindowPos: 2,4 + dependsOn: jumpsuit + displayName: ID + - name: belt + slotTexture: belt + slotFlags: BELT + slotGroup: SecondHotbar + stripTime: 6 + uiWindowPos: 3,1 + strippingWindowPos: 2,3 + displayName: Belt + - name: back + slotTexture: back + slotFlags: BACK + slotGroup: SecondHotbar + stripTime: 6 + uiWindowPos: 3,0 + strippingWindowPos: 0,3 + displayName: Back + + - name: pocket4 + slotTexture: web + slotFlags: POCKET + slotGroup: MainHotbar + stripTime: 3 + uiWindowPos: 2,4 + strippingWindowPos: 1,5 + displayName: Pocket 4 + - name: pocket3 + slotTexture: web + slotFlags: POCKET + slotGroup: MainHotbar + stripTime: 3 + uiWindowPos: 0,4 + strippingWindowPos: 0,5 + displayName: Pocket 3 + + - name: outerClothing + slotTexture: suit + slotFlags: OUTERCLOTHING + slotGroup: SecondHotbar + stripTime: 6 + uiWindowPos: 1,2 + strippingWindowPos: 1,2 + displayName: Suit + - name: pocket1 + slotTexture: pocket + slotFlags: POCKET + slotGroup: MainHotbar + stripTime: 3 + uiWindowPos: 0,3 + strippingWindowPos: 0,4 + dependsOn: jumpsuit + displayName: Pocket 1 + stripHidden: true + - name: pocket2 + slotTexture: pocket + slotFlags: POCKET + slotGroup: MainHotbar + stripTime: 3 + uiWindowPos: 2,3 + strippingWindowPos: 1,4 + dependsOn: jumpsuit + displayName: Pocket 2 + stripHidden: true diff --git a/Resources/Prototypes/InventoryTemplates/borg.yml b/Resources/Prototypes/InventoryTemplates/borg.yml new file mode 100644 index 0000000000..9d7a3dddbd --- /dev/null +++ b/Resources/Prototypes/InventoryTemplates/borg.yml @@ -0,0 +1,47 @@ +- type: inventoryTemplate + id: borg + slots: + - name: head + slotTexture: head + slotFlags: HEAD + slotGroup: MainHotbar + uiWindowPos: 0,0 + strippingWindowPos: 0,0 + displayName: Head + offset: 0, -0.09375 + +- type: inventoryTemplate + id: borgShort + slots: + - name: head + slotTexture: head + slotFlags: HEAD + slotGroup: MainHotbar + uiWindowPos: 0,0 + strippingWindowPos: 0,0 + displayName: Head + offset: 0, -0.1875 + +- type: inventoryTemplate + id: borgTall + slots: + - name: head + slotTexture: head + slotFlags: HEAD + slotGroup: MainHotbar + uiWindowPos: 0,0 + strippingWindowPos: 0,0 + displayName: Head + +# taller than tall +- type: inventoryTemplate + id: borgDutch + slots: + - name: head + slotTexture: head + slotFlags: HEAD + slotGroup: MainHotbar + uiWindowPos: 0,0 + strippingWindowPos: 0,0 + displayName: Head + offset: 0, 0.09375 diff --git a/Resources/Prototypes/Magic/projectile_spells.yml b/Resources/Prototypes/Magic/projectile_spells.yml index 8d7b2ffff0..196472fe7b 100644 --- a/Resources/Prototypes/Magic/projectile_spells.yml +++ b/Resources/Prototypes/Magic/projectile_spells.yml @@ -5,7 +5,34 @@ noSpawn: true components: - type: WorldTargetAction - useDelay: 30 + useDelay: 15 + itemIconStyle: BigAction + checkCanAccess: false + range: 60 + sound: !type:SoundPathSpecifier + path: /Audio/Magic/fireball.ogg + icon: + sprite: Objects/Magic/magicactions.rsi + state: fireball + event: !type:ProjectileSpellEvent + prototype: ProjectileFireball + posData: !type:TargetCasterPos + speech: action-speech-spell-fireball + - type: ActionUpgrade + effectedLevels: + 2: ActionFireballII + +- type: entity + id: ActionFireballII + parent: ActionFireball + name: Fireball II + description: Fire three explosive fireball towards the clicked location. + noSpawn: true + components: + - type: WorldTargetAction + useDelay: 5 + charges: 3 + renewCharges: true itemIconStyle: BigAction checkCanAccess: false range: 60 diff --git a/Resources/Prototypes/Maps/Pools/default.yml b/Resources/Prototypes/Maps/Pools/default.yml index c9df732ef5..0d792a4664 100644 --- a/Resources/Prototypes/Maps/Pools/default.yml +++ b/Resources/Prototypes/Maps/Pools/default.yml @@ -20,4 +20,6 @@ - Asterisk - Edge - Pebble + - Shoukou - Tortuga + - TheHive diff --git a/Resources/Prototypes/Maps/arena.yml b/Resources/Prototypes/Maps/arena.yml index 1d37ca0d35..38a6565161 100644 --- a/Resources/Prototypes/Maps/arena.yml +++ b/Resources/Prototypes/Maps/arena.yml @@ -40,7 +40,7 @@ Detective: [ 1, 1 ] Gladiator: [ 0, 2 ] HeadOfSecurity: [ 1, 1 ] - #Prisoner: [ 1, 2 ] + Prisoner: [ 1, 2 ] PrisonGuard: [ 1, 1 ] SecurityOfficer: [ 5, 7 ] SecurityCadet: [ 1, 2 ] diff --git a/Resources/Prototypes/Maps/asterisk.yml b/Resources/Prototypes/Maps/asterisk.yml index bccacc3c30..be02655388 100644 --- a/Resources/Prototypes/Maps/asterisk.yml +++ b/Resources/Prototypes/Maps/asterisk.yml @@ -3,7 +3,7 @@ mapName: 'Asterisk' mapPath: /Maps/asterisk.yml minPlayers: 0 - maxPlayers: 55 + maxPlayers: 60 stations: Asterisk: stationProto: StandardNanotrasenStation @@ -56,6 +56,7 @@ Brigmedic: [ 1, 1 ] SecurityOfficer: [ 2, 3 ] SecurityCadet: [ 1, 3 ] + Prisoner: [ 1, 2 ] # :^) #supply Quartermaster: [ 1, 1 ] MailCarrier: [ 1, 2 ] diff --git a/Resources/Prototypes/Maps/edge.yml b/Resources/Prototypes/Maps/edge.yml index b49de32366..5b515b93cd 100644 --- a/Resources/Prototypes/Maps/edge.yml +++ b/Resources/Prototypes/Maps/edge.yml @@ -57,7 +57,7 @@ Detective: [ 1, 1 ] SecurityOfficer: [ 2, 4 ] SecurityCadet: [ 1, 4 ] - #Prisoner: [ 1, 3 ] until it's fixed + Prisoner: [ 2, 3 ] #supply Quartermaster: [ 1, 1 ] MailCarrier: [ 1, 2 ] diff --git a/Resources/Prototypes/Maps/hive.yml b/Resources/Prototypes/Maps/hive.yml new file mode 100644 index 0000000000..2d5b27734d --- /dev/null +++ b/Resources/Prototypes/Maps/hive.yml @@ -0,0 +1,72 @@ +- type: gameMap + id: TheHive + mapName: 'The Hive' + mapPath: /Maps/hive.yml + minPlayers: 30 + maxPlayers: 80 + stations: + TheHive: + stationProto: StandardNanotrasenStation + components: + - type: StationNameSetup + mapNameTemplate: 'The Hive' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: 'TG' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/NTES_Seal.yml + - type: StationJobs + overflowJobs: + - Passenger + availableJobs: + #civilian + Passenger: [ -1, -1 ] + Librarian: [ 1, 1 ] + #command + Captain: [ 1, 1 ] + #engineering + AtmosphericTechnician: [ 1, 2 ] + ChiefEngineer: [ 1, 1 ] + StationEngineer: [ 3, 4 ] + TechnicalAssistant: [ 2, 3 ] + #medical + Chemist: [ 2, 2 ] + ChiefMedicalOfficer: [ 1, 1 ] + MedicalDoctor: [ 3, 5 ] + MedicalIntern: [ 1, 3 ] + Paramedic: [ 1, 2 ] + Psychologist: [ 1, 1 ] + #security + Brigmedic: [ 1, 1 ] + Detective: [ 1, 1 ] + HeadOfSecurity: [ 1, 1 ] + Prisoner: [ 2, 3 ] + PrisonGuard: [ 1, 1 ] + SecurityOfficer: [ 4, 6 ] + SecurityCadet: [ 1, 2 ] + Warden: [ 1, 1 ] + #service + Bartender: [ 2, 2 ] + Botanist: [ 2, 3 ] + Boxer: [ 2, 2 ] + Chef: [ 2, 3 ] + Clown: [ 1, 2 ] + HeadOfPersonnel: [ 1, 1 ] + Janitor: [ 2, 3 ] + Lawyer: [ 2, 2 ] + Mime: [ 1, 2 ] + Musician: [ 1, 3 ] + Reporter: [ 1, 2 ] + ServiceWorker: [ 2, 4 ] + #science + Borg: [ 2, 3 ] + Chaplain: [ 1, 1 ] + ForensicMantis: [ 1, 1 ] + ResearchAssistant: [ 2, 3 ] + ResearchDirector: [ 1, 1 ] + Scientist: [ 3, 5 ] + #supply + Quartermaster: [ 1, 1 ] + CargoTechnician: [ 2, 3 ] + SalvageSpecialist: [ 2, 3 ] + MailCarrier: [ 2, 2 ] diff --git a/Resources/Prototypes/Maps/salvage.yml b/Resources/Prototypes/Maps/salvage.yml index f76250dd37..a798aa565f 100644 --- a/Resources/Prototypes/Maps/salvage.yml +++ b/Resources/Prototypes/Maps/salvage.yml @@ -5,119 +5,268 @@ # "Small"-class maps - Max size square: 7x7, indicated size: 3.5 -- type: salvageMap - id: Small1 - name: "Small / Engineering Storage 1" - mapPath: /Maps/Salvage/small-1.yml +# Delta V: Remove small maps +#- type: salvageMap +# id: Small1 +# name: "Small / Engineering Storage 1" +# mapPath: /Maps/Salvage/small-1.yml -- type: salvageMap - id: Small2 - name: "Small / Gaming Nook 1" - mapPath: /Maps/Salvage/small-2.yml +#- type: salvageMap +# id: Small2 +# name: "Small / Gaming Nook 1" +# mapPath: /Maps/Salvage/small-2.yml -- type: salvageMap - id: Small-ship-1 - name: "Small / Ship 1 (Pill)" - mapPath: /Maps/Salvage/small-ship-1.yml +#- type: salvageMap +# id: Small-ship-1 +# name: "Small / Ship 1 (Pill)" +# mapPath: /Maps/Salvage/small-ship-1.yml -- type: salvageMap - id: Small3 - name: "Small / Laundromat 1" - mapPath: /Maps/Salvage/small-3.yml +#- type: salvageMap +# id: Small3 +# name: "Small / Laundromat 1" +# mapPath: /Maps/Salvage/small-3.yml -- type: salvageMap - id: SmallAISurveyDrone - name: "Small / AI Survey Drone" - mapPath: /Maps/Salvage/small-ai-survey-drone.yml +#- type: salvageMap +# id: SmallAISurveyDrone +# name: "Small / AI Survey Drone" +# mapPath: /Maps/Salvage/small-ai-survey-drone.yml -- type: salvageMap - id: Small4 - name: "Small / Bar Salvage" - mapPath: /Maps/Salvage/small-4.yml +#- type: salvageMap +# id: Small4 +# name: "Small / Bar Salvage" +# mapPath: /Maps/Salvage/small-4.yml # Small - Asteroids -- type: salvageMap - id: SmallA1 - name: "Small / Asteroid 1 Plasmafire" - mapPath: /Maps/Salvage/small-a-1.yml +#- type: salvageMap +# id: SmallA1 +# name: "Small / Asteroid 1 Plasmafire" +# mapPath: /Maps/Salvage/small-a-1.yml # "Medium"-class maps - Max size square: 15x15, indicated size: 7.5 - type: salvageMap id: Medium1 name: "Medium / Plasma-Trapped Cache 1" - mapPath: /Maps/Salvage/medium-1.yml + mapPath: /Maps/Salvage/DeltaV/DV-medium-01.yml #DeltaV: DV salvage map Location - type: salvageMap id: MediumVault1 name: "Medium / Vault 1" - mapPath: /Maps/Salvage/medium-vault-1.yml + mapPath: /Maps/Salvage/DeltaV/DV-med-vault-01.yml #DeltaV: DV salvage map Location - type: salvageMap id: MediumOrchestra name: "Medium / Silent Orchestra" - mapPath: /Maps/Salvage/medium-silent-orchestra.yml + mapPath: /Maps/Salvage/DeltaV/DV-med-silent-orchestra.yml #DeltaV: DV salvage map Location - type: salvageMap id: MediumLibraryWreck name: "Medium / Abandoned Library" - mapPath: /Maps/Salvage/medium-library.yml + mapPath: /Maps/Salvage/DeltaV/DV-med-library.yml #DeltaV: DV salvage map Location - type: salvageMap id: MediumCargoWreck name: "Medium / Cargo Department Wreck" - mapPath: /Maps/Salvage/cargo-1.yml + mapPath: /Maps/Salvage/DeltaV/DV-cargo-01.yml #DeltaV: DV salvage map Location - type: salvageMap id: MediumPirateWreck name: "Medium / Pirate Barge Fragment" - mapPath: /Maps/Salvage/medium-pirate.yml + mapPath: /Maps/Salvage/DeltaV/DV-med-pirate.yml #DeltaV: DV salvage map Location - type: salvageMap id: TickColony name: "Space Tick colony" - mapPath: /Maps/Salvage/tick-colony.yml + mapPath: /Maps/Salvage/DeltaV/DV-tick-colony.yml #DeltaV: DV salvage map Location - type: salvageMap id: CargoDock name: "Asteroid Cargo Dock" - mapPath: /Maps/Salvage/medium-dock.yml + mapPath: /Maps/Salvage/DeltaV/DV-med-dock.yml #DeltaV: DV salvage map Location - type: salvageMap id: SpaceWaffleHome name: "Waffle Home" - mapPath: /Maps/Salvage/wh-salvage.yml + mapPath: /Maps/Salvage/DeltaV/DV-wh-salvage.yml #DeltaV: DV salvage map Location - type: salvageMap id: MediumShuttleWreck name: "Medium / Ruined Emergency Shuttle" - mapPath: /Maps/Salvage/medium-ruined-emergency-shuttle.yml + mapPath: /Maps/Salvage/DeltaV/DV-med-ruined-emergency-shuttle.yml #DeltaV: DV salvage map Location - type: salvageMap id: mediumPetHospital name: "Medium / Pet and Bear Hospital" - mapPath: /Maps/Salvage/medium-pet-hospital.yml + mapPath: /Maps/Salvage/DeltaV/DV-med-pet-hospital.yml #DeltaV: DV salvage map Location - type: salvageMap id: MediumCrashedShuttle name: "Crashed Shuttle" - mapPath: /Maps/Salvage/medium-crashed-shuttle.yml + mapPath: /Maps/Salvage/DeltaV/DV-med-crashed-shuttle.yml #DeltaV: DV salvage map Location + +- type: salvageMap + id: EngineeringChunk + name: "Engineering Department Chunk" + mapPath: /Maps/Salvage/engineering-chunk.yml # """Large""" maps -- type: salvageMap - id: StationStation - name: "StationStation" - mapPath: /Maps/Salvage/stationstation.yml +#- type: salvageMap #DeltaV: Remove non-salvage testing map from pool +# id: StationStation +# name: "StationStation" +# mapPath: /Maps/Salvage/stationstation.yml - type: salvageMap id: AsteroidBase name: "Asteroid Base" - mapPath: /Maps/Salvage/asteroid-base.yml + mapPath: /Maps/Salvage/DeltaV/DV-asteroid-base.yml #DeltaV: DV salvage map Location - type: salvageMap id: RuinCargoBase name: "Ruined Cargo Storage" - mapPath: /Maps/Salvage/ruin-cargo-salvage.yml + mapPath: /Maps/Salvage/DeltaV/DV-ruin-cargo-salvage.yml #DeltaV: DV salvage map Location + +- type: salvageMap + id: SecurityChunk + name: "Security Department Chunk" + mapPath: /Maps/Salvage/DeltaV/DV-security-chunk.yml #DeltaV: DV salvage map Location + + + #Nyano Maps + #Medium + +- type: salvageMap + id: AnimalFarm + name: "Animal Farm" + mapPath: /Maps/Salvage/DeltaV/DV-animalfarm.yml + +- type: salvageMap + id: MediumChunk01 + name: "Medium Station Chunk" + mapPath: /Maps/Salvage/DeltaV/DV-med-chunk-01.yml + +- type: salvageMap + id: MediumMiningOutpost01 + name: "Medium Mining Outpost" + mapPath: /Maps/Salvage/DeltaV/DV-mining-outpost-01.yml + +- type: salvageMap + id: AtlasPerma + name: "Atlas Perma" + mapPath: /Maps/Salvage/DeltaV/DV-atlas-perma.yml + +- type: salvageMap + id: AtlasCells + name: "Atlas Jail Cells" + mapPath: /Maps/Salvage/DeltaV/DV-atlas-jailcells.yml + +- type: salvageMap + id: AtlasSalvage + name: "Atlas Salvage Dept." + mapPath: /Maps/Salvage/DeltaV/DV-atlas-salvage.yml + +- type: salvageMap + id: AtlasAtmos + name: "Atlas Atmospherics" + mapPath: /Maps/Salvage/DeltaV/DV-atlas-atmos.yml + +- type: salvageMap + id: AtlasCargo + name: "Atlas Cargo Dept." + mapPath: /Maps/Salvage/DeltaV/DV-atlas-cargo.yml + +- type: salvageMap + id: ServiceChunk + name: "Medium Service Chunk" + mapPath: /Maps/Salvage/DeltaV/DV-med-service-chunk-01.yml + +# Large +- type: salvageMap + id: ResearchPost + name: "Reasearch Post" + mapPath: /Maps/Salvage/DeltaV/DV-research-outpost-01.yml +- type: salvageMap + id: LargeEngineerChunk + name: "Engineer Outpost Chunk" + mapPath: /Maps/Salvage/DeltaV/DV-large-engineer-chunk.yml + +- type: salvageMap + id: AtlasConferenceRoom + name: "Atlas Conference Room" + mapPath: /Maps/Salvage/DeltaV/DV-atlas-conference-room.yml + +- type: salvageMap + id: AtlasDorms + name: "Atlas Dorms" + mapPath: /Maps/Salvage/DeltaV/DV-atlas-dorms.yml + +- type: salvageMap + id: AtlasEpistemics + name: "Atlas Epistemics Dept." + mapPath: /Maps/Salvage/DeltaV/DV-atlas-epi.yml + +- type: salvageMap + id: AtlasMedbay + name: "Atlas Medbay" + mapPath: /Maps/Salvage/DeltaV/DV-atlas-medical.yml + +- type: salvageMap + id: AtlasService + name: "Atlas Service Area" + mapPath: /Maps/Salvage/DeltaV/DV-atlas-salvage.yml + +# Asteroids + +- type: salvageMap + id: LargeAsteroid_1 + name: "30x30 Medical Asteroid" + mapPath: /Maps/Salvage/DeltaV/DV-asteroid-large-01.yml + +- type: salvageMap + id: LargeAsteroid_2 + name: "30x30 Botanical Asteroid" + mapPath: /Maps/Salvage/DeltaV/DV-asteroid-large-02.yml + +- type: salvageMap + id: LargeAsteroid_3 + name: "30x30 Artifact Asteroid" + mapPath: /Maps/Salvage/DeltaV/DV-asteroid-large-03.yml + +#Delta V Maps +#Medium + +- type: salvageMap + id: AsteroidSyndiHideout + name: "Asteroid Syndicate Hideout" + mapPath: /Maps/Salvage/DeltaV/DV-syndi-hideout.yml + +#Large + +- type: salvageMap + id: AsteroidChemlab + name: "Asteroid Mining Chemlab" + mapPath: /Maps/Salvage/DeltaV/DV-asteroid-mining-chemlab.yml + +- type: salvageMap + id: LaundromatChunk + name: "Laundromat Chunk" + mapPath: /Maps/Salvage/DeltaV/DV-laundromat-chunk.yml + +# Asteroids + +- type: salvageMap + id: AsteroidTickNest + name: "Tick Nest" + mapPath: /Maps/Salvage/DeltaV/DV-tick-nest.yml + +- type: salvageMap + id: AsteroidMiningMed1 + name: "Medium Asteroid Mining 1" + mapPath: /Maps/Salvage/DeltaV/DV-large-asteroid-mining-01.yml + +- type: salvageMap + id: AsteroidMiningLarge1 + name: "Large Asteroid Mining 1" + mapPath: /Maps/Salvage/DeltaV/DV-med-asteroid-mining-01.yml diff --git a/Resources/Prototypes/Maps/shoukou.yml b/Resources/Prototypes/Maps/shoukou.yml new file mode 100644 index 0000000000..c9f331a376 --- /dev/null +++ b/Resources/Prototypes/Maps/shoukou.yml @@ -0,0 +1,68 @@ +- type: gameMap + id: Shoukou + mapName: 'Shōkō' + mapPath: /Maps/shoukou.yml + minPlayers: 0 + maxPlayers: 60 + stations: + Shoukou: + stationProto: StandardNanotrasenStation + components: + - type: StationNameSetup + mapNameTemplate: '{0} Shōkō "Little Port" {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency_box.yml + - type: StationJobs + overflowJobs: + - Passenger + availableJobs: + #Service + Passenger: [ -1, -1 ] + ServiceWorker: [ 1, 2] + Reporter: [ 0, 1 ] + Lawyer: [ 1, 1 ] + Bartender: [ 1, 2 ] + Botanist: [ 1, 2 ] + MartialArtist: [ 2, 3 ] + Chef: [ 1, 2 ] + Clown: [ 1, 1 ] + Janitor: [ 1, 2 ] + Musician: [ 1, 1] + Mime: [ 1, 1 ] + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + #Engineering + ChiefEngineer: [ 1, 1 ] + StationEngineer: [ 2, 5 ] + TechnicalAssistant: [ 2, 3 ] + AtmosphericTechnician: [ 1, 2 ] + #Medical + ChiefMedicalOfficer: [ 1, 1 ] + Paramedic: [ 1, 2 ] + MedicalDoctor: [ 3, 3 ] + Chemist: [ 1, 2 ] + MedicalIntern: [ 2, 3 ] + #Security + HeadOfSecurity: [ 1, 1 ] + SecurityOfficer: [ 2, 4 ] + Detective: [ 1, 1 ] + Warden: [ 1, 1 ] + SecurityCadet: [ 1, 3 ] + Brigmedic: [ 1, 1 ] + Prisoner: [ 2, 2 ] + #Science + ResearchDirector: [ 1, 1 ] + Scientist: [ 2, 4 ] + ResearchAssistant: [ 2, 3 ] + Chaplain: [ 1, 1 ] + ForensicMantis: [ 1, 1 ] + Borg: [ 2, 2 ] + #Logistics + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 2, 4 ] + MailCarrier: [ 1, 2 ] + CargoTechnician: [ 2, 3 ] + diff --git a/Resources/Prototypes/Maps/tortuga.yml b/Resources/Prototypes/Maps/tortuga.yml index 3961573644..82e6309f49 100644 --- a/Resources/Prototypes/Maps/tortuga.yml +++ b/Resources/Prototypes/Maps/tortuga.yml @@ -36,9 +36,10 @@ Paramedic: [ 1, 2 ] Psychologist: [ 1, 1 ] #security + Brigmedic: [ 1, 1 ] Detective: [ 1, 1 ] HeadOfSecurity: [ 1, 1 ] - # Prisoner: [ 2, 3 ] until it's fixed + Prisoner: [ 2, 3 ] PrisonGuard: [ 1, 1 ] SecurityOfficer: [ 6, 9 ] SecurityCadet: [ 1, 1 ] diff --git a/Resources/Prototypes/NPCs/medibot.yml b/Resources/Prototypes/NPCs/medibot.yml index 91aae781a7..c0853984ee 100644 --- a/Resources/Prototypes/NPCs/medibot.yml +++ b/Resources/Prototypes/NPCs/medibot.yml @@ -21,6 +21,7 @@ - !type:HTNPrimitiveTask operator: !type:SpeakOperator speech: medibot-start-inject + hidden: true - !type:HTNPrimitiveTask operator: !type:MoveToOperator diff --git a/Resources/Prototypes/NPCs/mob.yml b/Resources/Prototypes/NPCs/mob.yml index 5b25f85a79..740f7ca576 100644 --- a/Resources/Prototypes/NPCs/mob.yml +++ b/Resources/Prototypes/NPCs/mob.yml @@ -29,6 +29,19 @@ - !type:HTNCompoundTask task: IdleCompound +- type: htnCompound + id: GlockroachCompound + branches: + - tasks: + - !type:HTNCompoundTask + task: InnateRangedCombatCompound + - tasks: + - !type:HTNCompoundTask + task: FoodCompound + - tasks: + - !type:HTNCompoundTask + task: IdleCompound + - type: htnCompound id: RuminantCompound branches: diff --git a/Resources/Prototypes/Nyanotrasen/Damage/modifier_sets.yml b/Resources/Prototypes/Nyanotrasen/Damage/modifier_sets.yml index ddca42d425..ce313f73b9 100644 --- a/Resources/Prototypes/Nyanotrasen/Damage/modifier_sets.yml +++ b/Resources/Prototypes/Nyanotrasen/Damage/modifier_sets.yml @@ -48,3 +48,14 @@ Piercing: 0.5 Heat: 1.5 Holy: 3.0 + +- type: damageModifierSet + id: ShockAbsorber + coefficients: + Blunt: 0.7 + Slash: 0.5 + Piercing: 0.7 + Shock: 0 + flatReductions: + Blunt: 5 + Heat: 5 diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Body/Parts/spider.yml b/Resources/Prototypes/Nyanotrasen/Entities/Body/Parts/spider.yml new file mode 100644 index 0000000000..a900f7524e --- /dev/null +++ b/Resources/Prototypes/Nyanotrasen/Entities/Body/Parts/spider.yml @@ -0,0 +1,61 @@ +- type: entity + id: PartSpider + parent: BaseItem + name: "spider body part" + abstract: true + components: + - type: Damageable + damageContainer: Biological + - type: BodyPart + - type: ContainerContainer + containers: + bodypart: !type:Container + ents: [] + - type: StaticPrice + price: 100 + - type: Tag + tags: + - Trash + - type: Extractable + juiceSolution: + reagents: + - ReagentId: Fat + Quantity: 3 + - ReagentId: DemonsBlood + Quantity: 10 + +- type: entity + id: RightLegSpider + name: "right spider leg" + parent: PartSpider + components: + - type: Sprite + sprite: Objects/Consumable/Food/meat.rsi + state: spiderleg + - type: Icon + sprite: Objects/Consumable/Food/meat.rsi + state: spiderleg + - type: BodyPart + partType: Leg + symmetry: Right + - type: MovementBodyPart #should actual spiders get a seperate part from arachne? + walkSpeed : 2.7 + sprintSpeed : 5 + +- type: entity + id: LeftLegSpider + name: "left spider leg" + parent: PartSpider + components: + - type: Sprite + sprite: Objects/Consumable/Food/meat.rsi + state: spiderleg + - type: Icon + sprite: Objects/Consumable/Food/meat.rsi + state: spiderleg + - type: BodyPart + partType: Leg + symmetry: Left + - type: MovementBodyPart #should actual spiders get a seperate part from arachne? + walkSpeed : 2.7 + sprintSpeed : 5 diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/Nyanotrasen/Entities/Clothing/Head/hardsuit-helmets.yml index b2d0403ba3..6c96d3a56d 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Clothing/Head/hardsuit-helmets.yml @@ -11,9 +11,9 @@ destroyOnFry: false - type: ClothingGrantPsionicPower power: MetapsionicPower - #- type: GuideHelp - #guides: - #- Psionics + - type: GuideHelp + guides: + - Psionics - type: entity parent: ClothingHeadHelmetHardsuitSyndie diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/Nyanotrasen/Entities/Clothing/Head/hats.yml index 22ab630b9b..8278114d26 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Clothing/Head/hats.yml @@ -74,9 +74,9 @@ - type: Construction graph: TinfoilHat node: tinfoilhat -# - type: GuideHelp -# guides: -# - Psionics + - type: GuideHelp + guides: + - Psionics - type: entity parent: ClothingHeadBase diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/animals.yml b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/animals.yml index 93a1265531..0a84109a98 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/animals.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/animals.yml @@ -23,6 +23,7 @@ - MobParrot - MobPenguin - MobPossum + - MobPossumOld - MobRaccoon - MobFox - MobArcticFox @@ -38,10 +39,13 @@ - MobGiantSpiderAngry - MobCorgi - MobCorgiNarsi + - MobCorgiPuppy - MobCrab - MobCatSpace + - MobCatKitten - MobSloth - MobFerret + - MobFerretWhite - MobLizard - MobSlug - MobFrog diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/boardgames.yml b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/boardgames.yml index b0a6501deb..d2d39938b5 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/boardgames.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/boardgames.yml @@ -14,6 +14,27 @@ - CheckerBoard - ChessBoard - ParchisBoard - # - ShogiBoard + - BattlemapBoardSpawner + # - ShogiBoard # Needs to be ported from Nyano + chance: 1 + offset: 0.0 + +- type: entity + name: Battlemap Board Spawner + id: BattlemapBoardSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: red + - sprite: Objects/Fun/Tabletop/Battlemaps/grassbm.rsi + state: icon + - type: RandomSpawner + prototypes: + - GrassBattlemap + - MoonBattlemap + - SandBattlemap + - SnowBattlemap + - ShipBattlemap chance: 1 offset: 0.0 diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/books.yml b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/books.yml index 4188a8dd76..28340ead40 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/books.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/books.yml @@ -2,10 +2,13 @@ parent: MarkerBase id: RandomBook name: random book spawner + placement: + mode: PlaceFree # want to be able to free place books for stacks, etc. components: + - type: Transform + anchored: false - type: Sprite layers: - - state: red - sprite: Objects/Misc/books.rsi state: book6 - type: RandomSpawner @@ -70,6 +73,7 @@ - BookBotanicalTextbook - BookGnominomicon - BookFishing + - BookFishops # DeltaV - fishops book - BookDetective - BookSalvageEpistemics1 # Nyanotrasen - Epistemic Lore Book rareChance: 0.25 diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/boxes.yml b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/boxes.yml index 8241e16013..a75f31cf0f 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/boxes.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/boxes.yml @@ -32,6 +32,10 @@ - BoxLatexGloves - BoxBodyBag - BoxBeaker + - BoxVial + - BoxCandle + - BoxCandleSmall + - BoxDarts chance: 0.7 rarePrototypes: - BoxHugHealing @@ -39,9 +43,12 @@ - BoxNitrileGloves - BoxMouthSwab - BoxHandcuff + - BoxHeadset - BoxFlashbang - BoxZiptie - PresentRandom + - BoxHolyWater + - MysteryFigureBox rareChance: 0.05 @@ -91,6 +98,8 @@ - BoxMagazineCaselessRifleRubber - BoxMagazinePistolCaselessRiflePractice - BoxMagazineCaselessRifleRubber + - BoxMagazineUniversalMagnumPractice + - BoxMagazineUniversalMagnumRubber chance: 0.15 rarePrototypes: - BoxMagazinePistolCaselessRifle @@ -109,4 +118,7 @@ - BoxShotgunIncendiary - BoxMagazineRifle - BoxMagazineCaselessRifleRubber + - BoxShellSoulbreaker + - BoxMagazineUniversalMagnum + - BoxSpeedLoaderLightRifle rareChance: 0.015 diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/devices.yml b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/devices.yml index 9b93e8aca3..b5495c9757 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/devices.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/devices.yml @@ -21,10 +21,12 @@ - SeedExtractorMachineCircuitboard - SMESMachineCircuitboard - SubstationMachineCircuitboard + - PortableGeneratorJrPacmanMachineCircuitboard - PortableGeneratorPacmanMachineCircuitboard - PortableGeneratorSuperPacmanMachineCircuitboard - ReagentGrinderMachineCircuitboard - OreProcessorMachineCircuitboard + - MaterialReclaimerMachineCircuitboard - MicrowaveMachineCircuitboard - SurveillanceWirelessCameraMovableCircuitboard - PowerComputerCircuitboard @@ -56,6 +58,19 @@ - EmitterCircuitboard - SurveillanceCameraWirelessRouterCircuitboard - SurveillanceWirelessCameraMonitorCircuitboard + - SurveillanceWirelessCameraAnchoredCircuitboard + - NotekeeperCartridge + - NewsReadCartridge + - GeigerCounter + - Holoprojector + - HolofanProjector + - StationMapCircuitboard + - AnomalyVesselCircuitboard + - CellRechargerCircuitboard + - BorgChargerCircuitboard + - HotplateMachineCircuitboard + - ElectricGrillMachineCircuitboard + - FatExtractorMachineCircuitboard chance: 0.8 rarePrototypes: - TraversalDistorterMachineCircuitboard @@ -69,4 +84,27 @@ - CryoPodMachineCircuitboard - BodyScannerComputerCircuitboard - CloningConsoleComputerCircuitboard + - CrewManifestCartridge + - NetProbeCartridge + - HandTeleporter + - HoloprojectorSecurity + - HoloprojectorEngineering + - HandheldStationMap + - ComputerMassMediaCircuitboard + - SensorConsoleCircuitboard + - AmmoTechFabCircuitboard + - ArtifactCrusherMachineCircuitboard + - AnomalyVesselExperimentalCircuitboard + - CondenserMachineCircuitBoard + - CrewMonitoringServerMachineCircuitboard + - WeaponCapacitorRechargerCircuitboard + - ElectrolysisUnitMachineCircuitboard + - CentrifugeMachineCircuitboard + - SheetifierMachineCircuitboard + - TelecomServerCircuitboard + - MiniGravityGeneratorCircuitboard + - Portafib + - ShockCollar + - GlimmerMonitorCartridge + - PotatoAIChip rareChance: 0.25 diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/hats.yml b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/hats.yml index 361518caed..b9def15132 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/hats.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/hats.yml @@ -39,6 +39,9 @@ - ClothingHeadHatWeldingMaskFlame - ClothingHeadHatWeldingMaskFlameBlue - ClothingHeadHatWeldingMaskPainted + - ClothingHeadCage + - ClothingHeadHelmetKendoMen + - ClothingHeadBandMerc rareChance: 0.03 prototypes: - ClothingHeadHatAnimalCat @@ -93,5 +96,7 @@ - ClothingHeadHatWelding - ClothingHeadHatFlatBlack - ClothingHeadHatFlatBrown + - ClothingHeadTinfoil + - ClothingHeadHatStrawHat chance: 0.5 offset: 0.2 diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/mobs.yml b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/mobs.yml index 8e6abe48e3..bd13b24182 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/mobs.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/mobs.yml @@ -15,6 +15,9 @@ - MobCarpMagic - MobCarpHolo - MobCarpRainbow + rarePrototypes: + - MobShark + rareChance: 0.05 - type: entity name: NPC Snake Spawner @@ -30,7 +33,10 @@ - type: RandomSpawner prototypes: - MobPurpleSnake + - MobSpiderSpaceNPC + rarePrototypes: - MobSmallPurpleSnake + rareChance: 0.2 - type: entity name: Salvage Snake Spawner @@ -46,6 +52,7 @@ - type: RandomSpawner prototypes: - MobPurpleSnakeGhost + - MobCobraSpaceSalvage chance: 0.75 rarePrototypes: - MobSmallPurpleSnakeGhost @@ -65,6 +72,7 @@ - type: RandomSpawner prototypes: - MobPurpleSnakeGhost + - MobCobraSpaceSalvage chance: 0.25 rarePrototypes: - MobSmallPurpleSnakeGhost diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/randomitems.yml b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/randomitems.yml index 7741c472b6..91e40a8e60 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/randomitems.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/randomitems.yml @@ -35,10 +35,14 @@ - ShardGlass - ShardGlassReinforced - ShardGlassPlasma + - ShardGlassUranium - MaterialCloth1 - MaterialDurathread1 - MaterialWoodPlank1 - - MaterialCotton + - MaterialCotton1 + - MaterialCardboard1 + - MaterialWebSilk1 + - MaterialBones1 - SheetPlastic1 - SheetSteel1 - SheetGlass1 @@ -61,6 +65,8 @@ - ColoredLightTubeFrostyBlue - ColoredLightTubeBlackLight - LightBulbMaintenanceRed + - LightBulbBroken + - LightTubeBroken - PowerCellPotato - PowerCellSmallPrinted - ChemistryEmptyBottle03 @@ -114,6 +120,23 @@ - ClothingShoesTourist - ClothingUnderSocksBee - ClothingUnderSocksCoder + - CarvedPumpkinSmall + - CarvedPumpkinLarge + - DartBlue + - DartPurple + - DartYellow + - CandleRed + - CandleBlue + - CandleBlack + - CandleGreen + - CandlePurple + - BlankHandyFlag + - LGBTQHandyFlag + - PirateHandyFlag + - Fork + - Spoon + - KnifePlastic + - FishLabeler chance: 0.75 rarePrototypes: - CigCartonGreen @@ -127,19 +150,27 @@ - SmokingPipeFilledCannabis - DiceBag - PersonalAI + - PotatoAI - PartRodMetal - IngotSilver1 - CigarGold - IngotGold1 - GoldOre1 + - SilverOre1 - SteelOre1 - PlasmaOre1 - SpaceQuartz1 - UraniumOre1 + - BananiumOre1 - SheetUranium1 - SheetPlasma1 - SheetPlasteel1 - SheetPGlass1 + - SheetUGlass1 + - MaterialSheetMeat1 + - MaterialBiomass1 + - MaterialBananium1 + - MaterialBluespace1 - Cablecuffs - Zipties - MonkeyCubeBox @@ -148,6 +179,7 @@ - PowerCellMediumPrinted - WoodenBuckler - MakeshiftShield + - WebShield - DehydratedSpaceCarp - RobustHarvestChemistryBottle - UnstableMutagenChemistryBottle @@ -158,6 +190,7 @@ - Brutepack - Gauze - AloeCream + - StrangePill # Pills/Syringes??? - Medkit - MedkitBurn @@ -192,4 +225,8 @@ - ClothingHandsGlovesNitrile - ClothingOuterStraightjacket - ClothingShoesGaloshes + - HypoDart + - MrChips + - MrDips + - ProximitySensor rareChance: 0.05 diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/seeds.yml b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/seeds.yml index f486658d43..9f183dcefb 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/seeds.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/seeds.yml @@ -44,6 +44,10 @@ - GrapeSeeds - CocoaSeeds - BerrySeeds + - BungoSeeds + - PeaSeeds + - PumpkinSeeds + - CottonSeeds chance: 0.95 offset: 0.0 rarePrototypes: @@ -56,4 +60,8 @@ - BloodTomatoSeeds - BlueTomatoSeeds - ChillySeeds + - MimanaSeeds + - LemoonSeeds + - SteelcapSeeds + - KoibeanSeeds rareChance: 0.05 diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/mobs.yml b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/mobs.yml index b434618b9e..41402d426e 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/mobs.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/mobs.yml @@ -6,7 +6,7 @@ - type: Sprite layers: - state: green - - sprite: Nyanotrasen/Mobs/Animals/mothroach.rsi + - sprite: Mobs/Animals/mothroach.rsi state: mothroach - state: ai - type: ConditionalSpawner diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/animals.yml index 3dc39b72d5..ee2166d60e 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/animals.yml @@ -9,130 +9,3 @@ layers: - map: ["enum.DamageStateVisualLayers.Base"] state: ferret - -- type: entity - name: mothroach - parent: SimpleMobBase - id: MobMothroach - description: This is the adorable by-product of multiple attempts at genetically mixing mothpeople with cockroaches. - components: - - type: GhostRole - makeSentient: true - allowSpeech: true - allowMovement: true - whitelistRequired: false - name: ghost-role-information-mothroach-name - description: ghost-role-information-mothroach-description - - type: GhostTakeoverAvailable - - type: Speech - speechSounds: Chitter - speechVerb: SmallMob - - type: Sprite - drawdepth: SmallMobs - sprite: Nyanotrasen/Mobs/Animals/mothroach.rsi - layers: - - map: ["enum.DamageStateVisualLayers.Base"] - state: mothroach - - type: Item - size: 15 - - type: Clothing - quickEquip: false - sprite: Nyanotrasen/Mobs/Animals/mothroach.rsi - equippedPrefix: 0 - slots: - - HEAD - - type: NpcFactionMember - factions: - - Mouse - - type: HTN - rootTask: - task: MouseCompound - - type: Physics - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeCircle - radius: 0.3 - density: 150 - mask: - - SmallMobMask - layer: - - SmallMobLayer - - type: MobState - - type: Deathgasp - - type: MobStateActions - actions: - Critical: - - ActionCritSuccumb - - ActionCritFakeDeath - - ActionCritLastWords - - type: MobThresholds - thresholds: - 0: Alive - 25: Critical - 50: Dead - - type: MovementSpeedModifier - baseWalkSpeed : 5 - baseSprintSpeed : 5 - - type: DamageStateVisuals - states: - Alive: - Base: mothroach - Critical: - Base: mothroach_sleep #replace whenever they can actually rest/sleep - Dead: - Base: mothroach_dead - - type: Food - - type: Hunger - - type: Extractable - grindableSolutionName: food - - type: SolutionContainerManager - solutions: - food: - reagents: - - ReagentId: UncookedAnimalProteins - Quantity: 5 - - type: Butcherable - spawned: - - id: FoodMeatRat - amount: 2 - - id: HideMothroach # Gotta make the plushies - amount: 1 - prob: 0.5 - - type: ReplacementAccent - accent: mothroach - - type: Tag - tags: - - Trash - - CannotSuicide - - DoorBumpOpener - - type: Respirator - damage: - types: - Asphyxiation: 0.5 - damageRecovery: - types: - Asphyxiation: -0.5 - - type: Barotrauma - damage: - types: - Blunt: 0.1 - - type: Vocal - sounds: - Male: Mothroach - Female: Mothroach - Unsexed: Mothroach - wilhelmProbability: 0.001 - - type: Damageable - damageContainer: Biological - damageModifierSet: Moth - - type: CombatMode - combatToggleAction: ActionCombatModeToggleOff - - type: Bloodstream - bloodMaxVolume: 70 - - type: CanEscapeInventory - - type: MobPrice - price: 60 - - type: Puller - needsHands: true diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/space.yml b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/space.yml index a5a7eed10c..8180326332 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/space.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/space.yml @@ -31,3 +31,13 @@ prob: 0.30 name: ghost-role-information-space-spider-name description: ghost-role-information-space-spider-description + +- type: entity + name: space cobra + id: MobCobraSpace + parent: MobCobraSpaceNPC + components: + - type: GhostRole + prob: 0.25 + name: ghost-role-information-space-cobra-name + description: ghost-role-information-space-cobra-description diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Player/felinid.yml b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Player/felinid.yml index 84e653ab1d..bd6c39db6f 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Player/felinid.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Player/felinid.yml @@ -14,6 +14,8 @@ showExamineInfo: true - type: Input context: "human" + - type: Speech + speechVerb: Felinid - type: MobMover - type: InputMover - type: Respirator @@ -33,3 +35,4 @@ factions: - NanoTrasen - type: PotentialPsionic + diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Species/felinid.yml b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Species/felinid.yml index 35c1bc73a0..9d2ca19e3d 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Species/felinid.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Species/felinid.yml @@ -31,8 +31,8 @@ animation: WeaponArcClaw damage: types: - Blunt: 1 - Slash: 5 + Slash: 4 + Piercing: 1 # - type: DiseaseCarrier # naturalImmunities: # - OwOnavirus diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Drinks/drinks_cups.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Drinks/drinks_cups.yml index 5dbe313ced..10ad6d4be0 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Drinks/drinks_cups.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Drinks/drinks_cups.yml @@ -13,5 +13,5 @@ - type: Sprite sprite: Nyanotrasen/Objects/Consumable/Drinks/sakecup.rsi state: icon - - type: TrashOnEmpty + - type: TrashOnSolutionEmpty solution: drink \ No newline at end of file diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/meals.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/meals.yml index 613b989d63..624689a7ed 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/meals.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/meals.yml @@ -236,3 +236,30 @@ tags: - ClothMade # Mothic Food #Tastes like pasta, cornbread and cheese + +- type: entity + name: fish and chips + parent: FoodMealBase + id: FoodMealFishChips + description: A dish that consists of fried fish and potatoes. + components: + - type: FlavorProfile + flavors: + - fishy + - batter + - type: Sprite + state: fishandchips + - type: SolutionContainerManager + solutions: + food: + maxVol: 15 + reagents: + - ReagentId: Nutriment + Quantity: 4 + - ReagentId: Protein + Quantity: 3 + - type: Tag + tags: + - Meat +# Tastes like fish and batter. + diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/pda.yml index dc09034e4a..763e71f737 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/pda.yml @@ -32,6 +32,12 @@ accentVColor: "#DFDFDF" - type: Icon state: pda-security + - type: CartridgeLoader # DeltaV - Crime Assist + preinstalled: + - CrewManifestCartridge + - NotekeeperCartridge + - NewsReadCartridge + - CrimeAssistCartridge - type: entity parent: BasePDA diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/shock_collar.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/shock_collar.yml index 396db81819..35cdcae658 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/shock_collar.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/shock_collar.yml @@ -2,13 +2,15 @@ parent: ClothingNeckBase id: ShockCollar name: shock collar - description: Shocking. Placeholder sprite. + description: Shocking. # DeltaV: sprite is fine components: - type: Sprite sprite: Nyanotrasen/Clothing/Neck/Misc/shock.rsi - type: Clothing sprite: Nyanotrasen/Clothing/Neck/Misc/shock.rsi - type: ShockCollar + - type: UseDelay + delay: 3 # DeltaV: prevent clocks instakilling people - type: TriggerOnSignal - type: DeviceNetwork deviceNetId: Wireless diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Misc/tiles.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Misc/tiles.yml new file mode 100644 index 0000000000..0ab386f96d --- /dev/null +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Misc/tiles.yml @@ -0,0 +1,63 @@ +- type: entity + name: dark grass tile + parent: FloorTileItemBase + id: FloorTileItemGrassDark + components: + - type: Sprite + sprite: /Textures/Nyanotrasen/Objects/Tiles/tiles.rsi + state: grassdark + - type: Item + heldPrefix: grassdark + - type: FloorTile + outputs: + - FloorGrassDark + - type: Stack + stackType: FloorTileGrassDark + +- type: entity + name: light grass tile + parent: FloorTileItemBase + id: FloorTileItemGrassLight + components: + - type: Sprite + sprite: /Textures/Nyanotrasen/Objects/Tiles/tiles.rsi + state: grasslight + - type: Item + heldPrefix: grasslight + - type: FloorTile + outputs: + - FloorGrassLight + - type: Stack + stackType: FloorTileGrassLight + +- type: entity + name: dirt tile + parent: FloorTileItemBase + id: FloorTileItemDirt + components: + - type: Sprite + sprite: /Textures/Nyanotrasen/Objects/Tiles/tiles.rsi + state: dirt + - type: Item + heldPrefix: dirt + - type: FloorTile + outputs: + - FloorDirt + - type: Stack + stackType: FloorTileDirt + +- type: entity + name: bedrock tile + parent: FloorTileItemBase + id: FloorTileItemBedrock + components: + - type: Sprite + sprite: /Textures/Nyanotrasen/Objects/Tiles/tiles.rsi + state: bedrock + - type: Item + heldPrefix: bedrock + - type: FloorTile + outputs: + - FloorBedrock + - type: Stack + stackType: FloorTileBedrock diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/base_mail.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/base_mail.yml index 406126f992..f3e9a20b5f 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/base_mail.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/base_mail.yml @@ -92,10 +92,6 @@ damage: types: Blunt: 10 - - type: DamageOtherOnHit - damage: - types: - Blunt: 5 # This empty parcel is allowed to exist and evade the tests for the admin # mailto command. diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/mail.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/mail.yml index efc26f80b6..e0761b7d40 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/mail.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/mail.yml @@ -111,6 +111,8 @@ prob: 0.10 - id: BookGnominomicon prob: 0.2 + - id: BookFishops # DeltaV - fishops book + prob: 0.2 - id: BookSalvageEpistemics1 prob: 0.025 diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Research/crystals.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Research/crystals.yml new file mode 100644 index 0000000000..b4d3ca1abf --- /dev/null +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Research/crystals.yml @@ -0,0 +1,36 @@ +- type: entity + parent: BaseItem + id: CrystalNormality + name: normality crystal + description: It looks... normal. Placeholder sprite. + components: + - type: Sprite + sprite: Nyanotrasen/Objects/Materials/materials.rsi + state: bluespace + color: gray + - type: Tag + tags: + - NormalityCrystal + +# - type: entity +# parent: BaseItem +# id: CrystalSoul +# name: soul crystal +# description: Contains a soul. Placeholder sprite. +# components: +# - type: Sprite +# sprite: Nyanotrasen/Objects/Materials/materials.rsi +# state: bluespace +# color: purple +# - type: Speech +# - type: Psionic +# - type: SoulCrystal +# - type: SolutionContainerManager +# solutions: +# ectoplasm: +# maxvol: 50 +# reagents: +# - ReagentId: Ectoplasm +# Quantity: 50 +# - type: Extractable +# grindableSolutionName: ectoplasm diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Weapons/Guns/Projectiles/shotgun.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Weapons/Guns/Projectiles/shotgun.yml index 662c7d454b..a3fcc86116 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Weapons/Guns/Projectiles/shotgun.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Weapons/Guns/Projectiles/shotgun.yml @@ -24,6 +24,6 @@ blockSlots: NONE #tranquillizer darts shouldn't be blocked by a mask - type: InjectableSolution solution: ammo -# - type: GuideHelp -# guides: -# - Psionics + - type: GuideHelp + guides: + - Psionics diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Weapons/Melee/breaching_hammer.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Weapons/Melee/breaching_hammer.yml index 4ef38ec8e9..d28d2b5594 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Weapons/Melee/breaching_hammer.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Weapons/Melee/breaching_hammer.yml @@ -35,6 +35,10 @@ - Prying speed: 0.8 - type: Prying + pryPowered: !type:Bool + true + force: !type:Bool + true useSound: /Audio/Items/jaws_pry.ogg - type: ToolForcePowered - type: Clothing diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/vending_machines.yml index 300a3e22fb..7b80180526 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/vending_machines.yml @@ -48,7 +48,7 @@ - state: panel map: ["enum.WiresVisualLayers.MaintenancePanel"] - type: AccessReader - access: [["Service"]] + access: [["Boxer"]] - type: entity parent: VendingMachine @@ -72,7 +72,7 @@ map: ["enum.WiresVisualLayers.MaintenancePanel"] - type: WiresVisuals - type: AccessReader - access: [["Service"]] + access: [["Reporter"]] - type: entity parent: VendingMachine diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/glimmer_prober.yml b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/glimmer_prober.yml index 5a4d24caf9..e157f8b7ff 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/glimmer_prober.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/glimmer_prober.yml @@ -6,9 +6,9 @@ components: - type: Psionic - type: GlimmerSource - #- type: Construction #Files are in place, but are commented out - #graph: GlimmerDevices - #node: glimmerProber + - type: Construction + graph: GlimmerDevices + node: glimmerProber - type: ResearchPointSource pointspersecond: 20 active: true @@ -59,30 +59,30 @@ - type: PowerSwitch - type: Damageable damageContainer: Inorganic -# damageModifierSet: ShockAbsorber + damageModifierSet: ShockAbsorber - type: CargoSellBlacklist -# - type: GuideHelp -# guides: -# - Psionics + - type: GuideHelp + guides: + - Psionics - type: AmbientSound range: 6 volume: -6 sound: /Audio/Nyanotrasen/Ambience/Objects/prober_hum_low.ogg - type: AmbientOnPowered - # - type: GlimmerSound - # glimmerTier: - # Minimal: - # path: /Audio/Ambience/Objects/prober_hum_low.ogg - # Low: - # path: /Audio/Ambience/Objects/prober_hum_low.ogg - # Moderate: - # path: /Audio/Ambience/Objects/prober_hum_moderate.ogg - # High: - # path: /Audio/Ambience/Objects/prober_hum_high.ogg - # Dangerous: - # path: /Audio/Ambience/Objects/prober_hum_dangerous.ogg - # Critical: - # path: /Audio/Ambience/Objects/prober_hum_dangerous.ogg + - type: GlimmerSound + glimmerTier: + Minimal: + path: /Audio/Nyanotrasen/Ambience/Objects/prober_hum_low.ogg + Low: + path: /Audio/Nyanotrasen/Ambience/Objects/prober_hum_low.ogg + Moderate: + path: /Audio/Nyanotrasen/Ambience/Objects/prober_hum_moderate.ogg + High: + path: /Audio/Nyanotrasen/Ambience/Objects/prober_hum_high.ogg + Dangerous: + path: /Audio/Nyanotrasen/Ambience/Objects/prober_hum_dangerous.ogg + Critical: + path: /Audio/Nyanotrasen/Ambience/Objects/prober_hum_dangerous.ogg - type: entity parent: BaseMachinePowered @@ -93,9 +93,9 @@ - type: Psionic - type: GlimmerSource addToGlimmer: false - #- type: Construction #Files are in place, but commented out - #graph: GlimmerDevices - #node: glimmerDrain + - type: Construction + graph: GlimmerDevices + node: glimmerDrain - type: Sprite sprite: DeltaV/Structures/Machines/glimmer_machines.rsi # DeltaV reskin noRot: true @@ -114,9 +114,9 @@ False: {visible: false} - type: PowerSwitch - type: CargoSellBlacklist -# - type: GuideHelp -# guides: -# - Psionics + - type: GuideHelp + guides: + - Psionics - type: NpcFactionMember factions: - PsionicInterloper # :^) @@ -149,9 +149,9 @@ - type: Anchorable - type: Rotatable - type: Pullable -# - type: Construction #Files are in place, but commented out - #graph: GlimmerDevices - #node: frame + - type: Construction #Files are in place, but commented out + graph: GlimmerDevices + node: frame - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/sophicscribe.yml b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/sophicscribe.yml index 0c67579339..ae85cd25e0 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/sophicscribe.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/sophicscribe.yml @@ -34,6 +34,6 @@ gender: female proper: true - type: SpriteFade - #- type: GuideHelp # For whenever someones readds this - # guides: - # - Psionics + - type: GuideHelp + guides: + - Psionics diff --git a/Resources/Prototypes/Nyanotrasen/Guidebook/epistemics.yml b/Resources/Prototypes/Nyanotrasen/Guidebook/epistemics.yml index 1e2ace9a28..77b180d6ea 100644 --- a/Resources/Prototypes/Nyanotrasen/Guidebook/epistemics.yml +++ b/Resources/Prototypes/Nyanotrasen/Guidebook/epistemics.yml @@ -1,3 +1,13 @@ +- type: guideEntry + id: Psionics + name: guide-entry-psionics + text: "/ServerInfo/Nyanotrasen/Guidebook/Epistemics/Psionics.xml" + +# - type: guideEntry # When it's added +# id: AltarsGolemancy +# name: guide-entry-altars-golemancy +# text: "/ServerInfo/Nyanotrasen/Guidebook/Epistemics/Altar.xml" + - type: guideEntry id: ReverseEngineering name: guide-entry-reverse-engineering diff --git a/Resources/Prototypes/Nyanotrasen/Reagents/Consumable/Drink/lean.yml b/Resources/Prototypes/Nyanotrasen/Reagents/Consumable/Drink/lean.yml index 7a61a57f19..c37c3e91d5 100644 --- a/Resources/Prototypes/Nyanotrasen/Reagents/Consumable/Drink/lean.yml +++ b/Resources/Prototypes/Nyanotrasen/Reagents/Consumable/Drink/lean.yml @@ -1,9 +1,9 @@ - type: reagent id: Lean - name: lean + name: reagent-name-lean parent: BaseAlcohol - desc: A disgusting mixture of soda, booze, and cough syrup. - physicalDesc: strong-smelling + desc: reagent-desc-lean + physicalDesc: reagent-physical-desc-strong-smelling color: "#9400D3" metamorphicSprite: sprite: Objects/Consumable/Drinks/lean.rsi diff --git a/Resources/Prototypes/Nyanotrasen/Reagents/Materials/materials.yml b/Resources/Prototypes/Nyanotrasen/Reagents/Materials/materials.yml index e33394e09b..9146f29713 100644 --- a/Resources/Prototypes/Nyanotrasen/Reagents/Materials/materials.yml +++ b/Resources/Prototypes/Nyanotrasen/Reagents/Materials/materials.yml @@ -1,6 +1,7 @@ - type: material id: Bluespace name: bluespace + unit: materials-unit-crystal icon: /Textures/Nyanotrasen/Objects/Materials/materials.rsi/bluespace.png color: "#53a9ff" stackEntity: MaterialBluespace diff --git a/Resources/Prototypes/Nyanotrasen/Recipes/Construction/Graphs/structures/glimmerdevices.yml b/Resources/Prototypes/Nyanotrasen/Recipes/Construction/Graphs/structures/glimmerdevices.yml index c9b06bca9e..328d78f388 100644 --- a/Resources/Prototypes/Nyanotrasen/Recipes/Construction/Graphs/structures/glimmerdevices.yml +++ b/Resources/Prototypes/Nyanotrasen/Recipes/Construction/Graphs/structures/glimmerdevices.yml @@ -1,73 +1,70 @@ -##I'm commenting all of this out because it's bascially all stuff we don't have yet. -##Remove these two top lines when you uncomment them. -# - type: constructionGraph -# id: GlimmerDevices -# start: start -# graph: -# - node: start -# edges: -# - to: frame -# completed: -# - !type:SetAnchor -# value: false -# steps: -# - material: Plasteel -# amount: 5 -# doAfter: 8 -# - material: Cable -# amount: 5 +- type: constructionGraph + id: GlimmerDevices + start: start + graph: + - node: start + edges: + - to: frame + completed: + - !type:SetAnchor + value: false + steps: + - material: Plasteel + amount: 5 + - material: Cable + amount: 5 + doAfter: 8 + - node: frame + entity: GlimmerDeviceFrame + edges: + - to: glimmerProber + conditions: + - !type:EntityAnchored {} + steps: + - material: Bluespace + amount: 5 + doAfter: 10 + - tool: Welding + doAfter: 5 + - to: glimmerDrain + conditions: + - !type:EntityAnchored {} + steps: + - tag: NormalityCrystal # DeltaV - Temporarily makes Drain only need 1 Crystal until Golemnization is implemented otherwise it's just imposible to craft + icon: + sprite: Nyanotrasen/Objects/Materials/materials.rsi + state: bluespace + name: a normality crystal + doAfter: 1 + # - tag: NormalityCrystal + # icon: + # sprite: Nyanotrasen/Objects/Materials/materials.rsi + # state: bluespace + # name: a normality crystal + # doAfter: 1 + # - tag: NormalityCrystal + # icon: + # sprite: Nyanotrasen/Objects/Materials/materials.rsi + # state: bluespace + # name: a normality crystal + # doAfter: 1 + # - tag: NormalityCrystal + # icon: + # sprite: Nyanotrasen/Objects/Materials/materials.rsi + # state: bluespace + # name: a normality crystal + # doAfter: 1 + # - tag: NormalityCrystal + # icon: + # sprite: Nyanotrasen/Objects/Materials/materials.rsi + # state: bluespace + # name: a normality crystal + # doAfter: 1 + - tool: Welding + doAfter: 5 -# - node: frame -# entity: GlimmerDeviceFrame -# edges: -# - to: glimmerProber -# conditions: -# - !type:EntityAnchored {} -# steps: -# - material: Bluespace -# amount: 5 -# doAfter: 10 -# - tool: Welding -# doAfter: 5 -# - to: glimmerDrain -# conditions: -# - !type:EntityAnchored {} -# steps: -# - tag: NormalityCrystal -# icon: -# sprite: Nyanotrasen/Objects/Materials/materials.rsi -# state: bluespace -# name: a normality crystal -# doAfter: 1 -# - tag: NormalityCrystal -# icon: -# sprite: Nyanotrasen/Objects/Materials/materials.rsi -# state: bluespace -# name: a normality crystal -# doAfter: 1 -# - tag: NormalityCrystal -# icon: -# sprite: Nyanotrasen/Objects/Materials/materials.rsi -# state: bluespace -# name: a normality crystal -# doAfter: 1 -# - tag: NormalityCrystal -# icon: -# sprite: Nyanotrasen/Objects/Materials/materials.rsi -# state: bluespace -# name: a normality crystal -# doAfter: 1 -# - tag: NormalityCrystal -# icon: -# sprite: Nyanotrasen/Objects/Materials/materials.rsi -# state: bluespace -# name: a normality crystal -# doAfter: 1 -# - tool: Welding -# doAfter: 5 + - node: glimmerProber + entity: GlimmerProber -# - node: glimmerProber -# entity: GlimmerProber - -# - node: glimmerDrain -# entity: GlimmerDrain + - node: glimmerDrain + entity: GlimmerDrain diff --git a/Resources/Prototypes/Nyanotrasen/Recipes/Construction/machines.yml b/Resources/Prototypes/Nyanotrasen/Recipes/Construction/machines.yml index 6bdf4ea935..10c264a295 100644 --- a/Resources/Prototypes/Nyanotrasen/Recipes/Construction/machines.yml +++ b/Resources/Prototypes/Nyanotrasen/Recipes/Construction/machines.yml @@ -1,36 +1,36 @@ -# - type: construction -# id: GlimmerProber -# name: glimmer prober -# description: Increases glimmer and research points. -# graph: GlimmerDevices -# startNode: start -# targetNode: glimmerProber -# category: construction-category-machines -# icon: -# sprite: Nyanotrasen/Structures/Machines/glimmer_machines.rsi -# state: base -# objectType: Structure -# placementMode: SnapgridCenter -# canBuildInImpassable: false -# conditions: -# - !type:TileNotBlocked +- type: construction + id: GlimmerProber + name: glimmer prober + description: Increases glimmer and research points. + graph: GlimmerDevices + startNode: start + targetNode: glimmerProber + category: construction-category-machines + icon: + sprite: Nyanotrasen/Structures/Machines/glimmer_machines.rsi + state: base + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: false + conditions: + - !type:TileNotBlocked -# - type: construction -# id: GlimmerDrain -# name: glimmer drain -# description: Decreases glimmer. -# graph: GlimmerDevices -# startNode: start -# targetNode: glimmerDrain -# category: construction-category-machines -# icon: -# sprite: Nyanotrasen/Structures/Machines/glimmer_machines.rsi -# state: base -# objectType: Structure -# placementMode: SnapgridCenter -# canBuildInImpassable: false -# conditions: -# - !type:TileNotBlocked +- type: construction + id: GlimmerDrain + name: glimmer drain + description: Decreases glimmer. + graph: GlimmerDevices + startNode: start + targetNode: glimmerDrain + category: construction-category-machines + icon: + sprite: Nyanotrasen/Structures/Machines/glimmer_machines.rsi + state: base + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: false + conditions: + - !type:TileNotBlocked # - type: construction # id: Golem diff --git a/Resources/Prototypes/Nyanotrasen/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Nyanotrasen/Recipes/Cooking/meal_recipes.yml index a8b9d41deb..51777e2f59 100644 --- a/Resources/Prototypes/Nyanotrasen/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Nyanotrasen/Recipes/Cooking/meal_recipes.yml @@ -198,6 +198,16 @@ solids: FoodDonkpocket: 1 #macncheese donk +- type: microwaveMealRecipe + id: RecipeFishChips + name: fish and chips recipe + result: FoodMealFishChips + time: 15 + solids: + FoodDough: 1 + FoodPotato: 1 + FoodMeatFish: 1 + # Soups and stews - type: microwaveMealRecipe diff --git a/Resources/Prototypes/Nyanotrasen/Recipes/Reactions/psionic.yml b/Resources/Prototypes/Nyanotrasen/Recipes/Reactions/psionic.yml index 39669c2192..304c9b686a 100644 --- a/Resources/Prototypes/Nyanotrasen/Recipes/Reactions/psionic.yml +++ b/Resources/Prototypes/Nyanotrasen/Recipes/Reactions/psionic.yml @@ -1,4 +1,4 @@ -#- type: reaction +# - type: reaction # id: LotophagoiOil # reactants: # SpaceDrugs: @@ -11,25 +11,25 @@ # products: # LotophagoiOil: 1 -#- type: reaction -# id: CreateNormalityCrystal -# impact: Low -# quantized: true -# minTemp: 400 -# reactants: -# Ash: -# amount: 10 -# Water: -# amount: 10 -# Blood: -# amount: 10 -# Ectoplasm: -# amount: 10 -# Plasma: -# amount: 10 -# catalyst: true -# effects: -# - !type:CreateEntityReactionEffect -# entity: CrystalNormality -# - !type:ChangeGlimmerReactionEffect -# count: -10 +- type: reaction + id: CreateNormalityCrystal + impact: Low + quantized: true + minTemp: 400 + reactants: + Ash: + amount: 5 # DeltaV - Change from 10 to 5 to fit the guidebook recipe + Water: + amount: 5 # DeltaV - Change from 10 to 5 to fit the guidebook recipe + Blood: + amount: 5 # DeltaV - Change from 10 to 5 to fit the guidebook recipe + Ectoplasm: + amount: 5 # DeltaV - Make Normality Crystals need only 5 Ectoplasm, was 10. + Plasma: + amount: 5 # DeltaV - Change from 10 to 5 to fit the guidebook recipe + catalyst: true + effects: + - !type:CreateEntityReactionEffect + entity: CrystalNormality + - !type:ChangeGlimmerReactionEffect + count: -10 diff --git a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Security/prisonguard.yml b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Security/prisonguard.yml index 8aa8e2a3be..1c9fe29876 100644 --- a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Security/prisonguard.yml +++ b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Security/prisonguard.yml @@ -6,8 +6,11 @@ requirements: - !type:OverallPlaytimeRequirement time: 18000 + - !type:DepartmentTimeRequirement + department: Security + time: 14400 startingGear: PrisonGuardGear -# alwaysUseSpawner: true + alwaysUseSpawner: true canBeAntag: false icon: "JobIconPrisonGuard" supervisors: job-supervisors-warden @@ -15,8 +18,12 @@ # whitelistRequired: true access: - Security - - Brig + #- Brig #Delta V: Removed brig access - Maintenance + special: + - !type:AddImplantSpecial + implants: [ MindShieldImplant ] + - type: startingGear id: PrisonGuardGear diff --git a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/gladiator.yml b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/gladiator.yml index 4f3e07af3c..9edfbd254e 100644 --- a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/gladiator.yml +++ b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/gladiator.yml @@ -4,7 +4,7 @@ description: job-description-gladiator playTimeTracker: JobGladiator startingGear: NyanoGladiatorGear -# alwaysUseSpawner: true + alwaysUseSpawner: true canBeAntag: false icon: "JobIconGladiator" supervisors: job-supervisors-security @@ -13,6 +13,7 @@ requirements: - !type:OverallPlaytimeRequirement time: 3600 + - !type:WhitelistRequirement special: - !type:AddComponentSpecial components: diff --git a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/prisoner.yml b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/prisoner.yml index 06d23707d8..b89530fe5e 100644 --- a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/prisoner.yml +++ b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/prisoner.yml @@ -4,7 +4,7 @@ description: job-description-prisoner playTimeTracker: JobPrisoner startingGear: PrisonerGear -# alwaysUseSpawner: true + alwaysUseSpawner: true canBeAntag: false # whitelistRequired: true icon: "JobIconPrisoner" @@ -12,6 +12,7 @@ requirements: - !type:OverallPlaytimeRequirement time: 3600 + - !type:WhitelistRequirement - type: startingGear id: PrisonerGear diff --git a/Resources/Prototypes/Nyanotrasen/Stacks/floor_tile_stacks.yml b/Resources/Prototypes/Nyanotrasen/Stacks/floor_tile_stacks.yml new file mode 100644 index 0000000000..d472b3054b --- /dev/null +++ b/Resources/Prototypes/Nyanotrasen/Stacks/floor_tile_stacks.yml @@ -0,0 +1,23 @@ +- type: stack + id: FloorTileGrassDark + name: dark grass floor tile + spawn: FloorTileItemGrassDark + maxCount: 30 + +- type: stack + id: FloorTileGrassLight + name: light grass floor tile + spawn: FloorTileItemGrassLight + maxCount: 30 + +- type: stack + id: FloorTileDirt + name: dirt floor tile + spawn: FloorTileItemDirt + maxCount: 30 + +- type: stack + id: FloorTileBedrock + name: bedrock floor tile + spawn: FloorTileItemBedrock + maxCount: 30 diff --git a/Resources/Prototypes/Nyanotrasen/Tiles/floors.yml b/Resources/Prototypes/Nyanotrasen/Tiles/floors.yml new file mode 100644 index 0000000000..d537e0bdb3 --- /dev/null +++ b/Resources/Prototypes/Nyanotrasen/Tiles/floors.yml @@ -0,0 +1,20 @@ +- type: tile + id: FloorBedrock + name: tiles-bedrock-floor + sprite: /Textures/Nyanotrasen/Tiles/bedrock.png + variants: 4 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + baseTurf: Space + isSubfloor: true + #canCrowbar: true # Come back + # Maybe if there's ever some way to combine grids or prevent overly simple spacing. + # canShovel: true + footstepSounds: + collection: FootstepAsteroid + itemDrop: FloorTileItemBedrock # Delta V + heatCapacity: 10000 + weather: true diff --git a/Resources/Prototypes/Nyanotrasen/Voice/speech_emote_sounds.yml b/Resources/Prototypes/Nyanotrasen/Voice/speech_emote_sounds.yml index 3dcc68250d..aa88242795 100644 --- a/Resources/Prototypes/Nyanotrasen/Voice/speech_emote_sounds.yml +++ b/Resources/Prototypes/Nyanotrasen/Voice/speech_emote_sounds.yml @@ -26,6 +26,8 @@ collection: FelinidGrowls Purr: collection: FelinidPurrs + Sigh: + collection: MaleSigh - type: emoteSounds id: FemaleFelinid @@ -54,6 +56,8 @@ collection: FelinidGrowls Purr: collection: FelinidPurrs + Sigh: + collection: FemaleSigh # mobs - type: emoteSounds diff --git a/Resources/Prototypes/Nyanotrasen/Voice/speech_emotes.yml b/Resources/Prototypes/Nyanotrasen/Voice/speech_emotes.yml index 46f1e4a5c7..697a925d89 100644 --- a/Resources/Prototypes/Nyanotrasen/Voice/speech_emotes.yml +++ b/Resources/Prototypes/Nyanotrasen/Voice/speech_emotes.yml @@ -18,6 +18,7 @@ - meow. - meow! - meows. + - meows~ - meows! - meowing. - meowed. @@ -27,6 +28,12 @@ - nya. - nyas. - nyas! + - mraow. + - mraow! + - mraow~ + - mraows. + - mraows! + - mraows~ - type: emote id: Mew @@ -35,8 +42,10 @@ chatTriggers: - mew. - mew! + - mew~ - mews. - mews! + - mews~ - mewing. - mewed. @@ -58,6 +67,7 @@ chatTriggers: - purr. - purrs. + - purrs~ - purrs! - purring. - purred. diff --git a/Resources/Prototypes/Nyanotrasen/tags.yml b/Resources/Prototypes/Nyanotrasen/tags.yml index 54d1774c2f..54f39b7b6e 100644 --- a/Resources/Prototypes/Nyanotrasen/tags.yml +++ b/Resources/Prototypes/Nyanotrasen/tags.yml @@ -9,4 +9,6 @@ - type: Tag id: BluespaceCrystal - \ No newline at end of file + +- type: Tag + id: NormalityCrystal diff --git a/Resources/Prototypes/Nyanotrasen/tool_qualities.yml b/Resources/Prototypes/Nyanotrasen/tool_qualities.yml new file mode 100644 index 0000000000..6780b2ee21 --- /dev/null +++ b/Resources/Prototypes/Nyanotrasen/tool_qualities.yml @@ -0,0 +1,6 @@ +- type: tool + id: Digging + name: tool-quality-digging-name + toolName: tool-quality-digging-tool-name + spawn: Shovel + icon: { sprite: Objects/Tools/shovel.rsi, state: icon } diff --git a/Resources/Prototypes/Objectives/objectiveGroups.yml b/Resources/Prototypes/Objectives/objectiveGroups.yml index f9536ed2a7..edb3dfb40d 100644 --- a/Resources/Prototypes/Objectives/objectiveGroups.yml +++ b/Resources/Prototypes/Objectives/objectiveGroups.yml @@ -24,6 +24,7 @@ SecretDocumentsStealObjective: 0.5 LOLuckyBillStealObjective: 0.5 # DeltaV - LO steal objective, see Resources/Prototypes/DeltaV/Objectives/traitor.yml HoPBookIanDossierStealObjective: 1 # DeltaV - HoP steal objective, see Resources/Prototypes/DeltaV/Objectives/traitor.yml + HoSGunStealObjective: 0.5 - type: weightedRandom id: TraitorObjectiveGroupKill diff --git a/Resources/Prototypes/Objectives/traitor.yml b/Resources/Prototypes/Objectives/traitor.yml index 6253fc3d4c..ab0191fd44 100644 --- a/Resources/Prototypes/Objectives/traitor.yml +++ b/Resources/Prototypes/Objectives/traitor.yml @@ -64,19 +64,19 @@ # - StealCondition # - type: DieCondition -- type: entity - noSpawn: true - parent: [BaseTraitorObjective, BaseLivingObjective] - id: HijackShuttleObjective - name: Hijack emergency shuttle - description: Leave on the shuttle free and clear of the loyal Nanotrasen crew on board. Use ANY methods available to you. Syndicate agents, Nanotrasen enemies, and handcuffed hostages may remain alive on the shuttle. Ignore assistance from anyone other than a support agent. - components: - - type: Objective - difficulty: 5 # insane, default config max difficulty - icon: - sprite: Objects/Tools/emag.rsi - state: icon - - type: HijackShuttleCondition +#- type: entity +# noSpawn: true +# parent: [BaseTraitorObjective, BaseLivingObjective] +# id: HijackShuttleObjective +# name: Hijack emergency shuttle +# description: Leave on the shuttle free and clear of the loyal Nanotrasen crew on board. Use ANY methods available to you. Syndicate agents, Nanotrasen enemies, and handcuffed hostages may remain alive on the shuttle. Ignore assistance from anyone other than a support agent. +# components: +# - type: Objective +# difficulty: 5 # insane, default config max difficulty +# icon: +# sprite: Objects/Tools/emag.rsi +# state: icon +# - type: HijackShuttleCondition # kill diff --git a/Resources/Prototypes/Polymorphs/polymorph.yml b/Resources/Prototypes/Polymorphs/polymorph.yml index c710d83cec..8593c2194d 100644 --- a/Resources/Prototypes/Polymorphs/polymorph.yml +++ b/Resources/Prototypes/Polymorphs/polymorph.yml @@ -136,3 +136,14 @@ revertOnDeath: true revertOnCrit: true duration: 20 + +- type: polymorph + id: ArtifactLuminous + entity: MobLuminousPerson + forced: true + transferName: true + transferHumanoidAppearance: true + inventory: None + revertOnDeath: true + revertOnCrit: true + duration: 20 diff --git a/Resources/Prototypes/Procedural/biome_markers.yml b/Resources/Prototypes/Procedural/biome_markers.yml index f1bc60a069..e70b46e6c5 100644 --- a/Resources/Prototypes/Procedural/biome_markers.yml +++ b/Resources/Prototypes/Procedural/biome_markers.yml @@ -1,31 +1,35 @@ - type: biomeMarkerLayer id: Lizards - proto: MobLizard - groupCount: 5 + prototype: MobLizard + minGroupSize: 3 + maxGroupSize: 5 - type: biomeMarkerLayer id: WatchersLavaland - proto: MobWatcherLavaland - groupCount: 3 + prototype: MobWatcherLavaland + minGroupSize: 3 + maxGroupSize: 3 - type: biomeMarkerLayer id: WatchersIcewing - proto: MobWatcherIcewing - groupCount: 3 + prototype: MobWatcherIcewing + minGroupSize: 3 + maxGroupSize: 3 - type: biomeMarkerLayer id: WatchersMagmawing - proto: MobWatcherMagmawing - groupCount: 3 + prototype: MobWatcherMagmawing + minGroupSize: 3 + maxGroupSize: 3 # TODO: Needs to be more robust - type: biomeMarkerLayer id: Xenos - proto: MobXeno + prototype: MobXeno - type: biomeMarkerLayer id: Carps - proto: MobCarpDungeon + prototype: MobCarpDungeon #- type: biomeMarkerLayer diff --git a/Resources/Prototypes/Procedural/biome_ore_templates.yml b/Resources/Prototypes/Procedural/biome_ore_templates.yml index 1d4bc062d3..517d52de8a 100644 --- a/Resources/Prototypes/Procedural/biome_ore_templates.yml +++ b/Resources/Prototypes/Procedural/biome_ore_templates.yml @@ -1,217 +1,123 @@ # Low value - type: biomeMarkerLayer id: OreTin - proto: WallRockTin - entityMask: WallRock + entityMask: + WallRock: WallRockTin + WallRockBasalt: WallRockBasaltTin + WallRockChromite: WallRockChromiteTin + WallRockSand: WallRockSandTin + WallRockSnow: WallRockSnowTin maxCount: 30 - groupCount: 10 + minGroupSize: 10 + maxGroupSize: 20 radius: 4 - type: biomeMarkerLayer id: OreQuartz - proto: WallRockQuartz - entityMask: WallRock + entityMask: + WallRock: WallRockQuartz + WallRockBasalt: WallRockBasaltQuartz + WallRockChromite: WallRockChromiteQuartz + WallRockSnow: WallRockSnowQuartz maxCount: 30 - groupCount: 10 + minGroupSize: 10 + maxGroupSize: 20 + radius: 4 + +- type: biomeMarkerLayer + id: OreCoal + entityMask: + WallRock: WallRockCoal + WallRockBasalt: WallRockBasaltCoal + WallRockChromite: WallRockChromiteCoal + WallRockSand: WallRockSandCoal + WallRockSnow: WallRockSnowCoal + maxCount: 30 + minGroupSize: 10 + maxGroupSize: 20 radius: 4 # Medium value # Gold - type: biomeMarkerLayer id: OreGold - proto: WallRockGold - entityMask: WallRock + entityMask: + WallRock: WallRockGold + WallRockBasalt: WallRockBasaltGold + WallRockChromite: WallRockChromiteGold + WallRockSand: WallRockSandGold + WallRockSnow: WallRockSnowGold maxCount: 30 - groupCount: 5 + minGroupSize: 5 + maxGroupSize: 10 radius: 4 # Silver - type: biomeMarkerLayer id: OreSilver - proto: WallRockSilver - entityMask: WallRock + entityMask: + WallRock: WallRockSilver + WallRockBasalt: WallRockBasaltSilver + WallRockChromite: WallRockChromiteSilver + WallRockSand: WallRockSandSilver + WallRockSnow: WallRockSnowSilver maxCount: 30 - groupCount: 5 + minGroupSize: 5 + maxGroupSize: 10 radius: 4 # High value # Plasma - type: biomeMarkerLayer id: OrePlasma - proto: WallRockPlasma - entityMask: WallRock + entityMask: + WallRock: WallRockPlasma + WallRockBasalt: WallRockBasaltPlasma + WallRockChromite: WallRockChromitePlasma + WallRockSand: WallRockSandPlasma + WallRockSnow: WallRockSnowPlasma maxCount: 12 - groupCount: 5 + minGroupSize: 5 + maxGroupSize: 10 radius: 4 # Uranium - type: biomeMarkerLayer id: OreUranium - proto: WallRockUranium - entityMask: WallRock + entityMask: + WallRock: WallRockUranium + WallRockBasalt: WallRockBasaltUranium + WallRockChromite: WallRockChromiteUranium + WallRockSand: WallRockSandUranium + WallRockSnow: WallRockSnowUranium maxCount: 12 - groupCount: 5 + minGroupSize: 5 + maxGroupSize: 10 radius: 4 - type: biomeMarkerLayer id: OreBananium - proto: WallRockBananium - entityMask: WallRock + entityMask: + WallRock: WallRockBananium + WallRockBasalt: WallRockBasaltBananium + WallRockChromite: WallRockChromiteBananium + WallRockSand: WallRockSandBananium + WallRockSnow: WallRockSnowBananium maxCount: 12 - groupCount: 5 + minGroupSize: 5 + maxGroupSize: 10 radius: 4 # Artifact Fragment - type: biomeMarkerLayer id: OreArtifactFragment - proto: WallRockArtifactFragment - entityMask: WallRock - maxCount: 6 - groupCount: 1 - radius: 4 - -# Basalt variant -# Low value -- type: biomeMarkerLayer - id: BasaltOreTin - proto: WallRockBasaltTin - entityMask: WallRockBasalt - maxCount: 30 - groupCount: 10 - radius: 4 - -- type: biomeMarkerLayer - id: BasaltOreQuartz - proto: WallRockBasaltQuartz - entityMask: WallRockBasalt - maxCount: 30 - groupCount: 10 - radius: 4 - -# Medium value -# Gold -- type: biomeMarkerLayer - id: BasaltOreGold - proto: WallRockBasaltGold - entityMask: WallRockBasalt - maxCount: 30 - groupCount: 5 - radius: 4 - -# Silver -- type: biomeMarkerLayer - id: BasaltOreSilver - proto: WallRockBasaltSilver - entityMask: WallRockBasalt - maxCount: 30 - groupCount: 5 - radius: 4 - -# High value -# Plasma -- type: biomeMarkerLayer - id: BasaltOrePlasma - proto: WallRockBasaltPlasma - entityMask: WallRockBasalt - maxCount: 12 - groupCount: 5 - radius: 4 - -# Uranium -- type: biomeMarkerLayer - id: BasaltOreUranium - proto: WallRockBasaltUranium - entityMask: WallRockBasalt - maxCount: 12 - groupCount: 5 - radius: 4 - -- type: biomeMarkerLayer - id: BasaltOreBananium - proto: WallRockBasaltBananium - entityMask: WallRockBasalt - maxCount: 12 - groupCount: 5 - radius: 4 - -# Artifact Fragment -- type: biomeMarkerLayer - id: BasaltOreArtifactFragment - proto: WallRockBasaltArtifactFragment - entityMask: WallRockBasalt - maxCount: 6 - groupCount: 1 - radius: 4 - -# Snow variant -# Low value -- type: biomeMarkerLayer - id: SnowOreTin - proto: WallRockSnowTin - entityMask: WallRockSnow - maxCount: 30 - groupCount: 10 - radius: 4 - -- type: biomeMarkerLayer - id: SnowOreQuartz - proto: WallRockSnowQuartz - entityMask: WallRockSnow - maxCount: 30 - groupCount: 10 - radius: 4 - -# Medium value -# Gold -- type: biomeMarkerLayer - id: SnowOreGold - proto: WallRockSnowGold - entityMask: WallRockSnow - maxCount: 30 - groupCount: 5 - radius: 4 - -# Silver -- type: biomeMarkerLayer - id: SnowOreSilver - proto: WallRockSnowSilver - entityMask: WallRockSnow - maxCount: 30 - groupCount: 5 - radius: 4 - -# High value -# Plasma -- type: biomeMarkerLayer - id: SnowOrePlasma - proto: WallRockSnowPlasma - entityMask: WallRockSnow - maxCount: 12 - groupCount: 5 - radius: 4 - -# Uranium -- type: biomeMarkerLayer - id: SnowOreUranium - proto: WallRockSnowUranium - entityMask: WallRockSnow - maxCount: 12 - groupCount: 5 - radius: 4 - -- type: biomeMarkerLayer - id: SnowOreBananium - proto: WallRockSnowBananium - entityMask: WallRockSnow - maxCount: 12 - groupCount: 5 - radius: 4 - -# Artifact Fragment -- type: biomeMarkerLayer - id: SnowOreArtifactFragment - proto: WallRockSnowArtifactFragment - entityMask: WallRockSnow + entityMask: + WallRock: WallRockArtifactFragment + WallRockBasalt: WallRockBasaltArtifactFragment + WallRockChromite: WallRockChromiteArtifactFragment + WallRockSand: WallRockSandArtifactFragment + WallRockSnow: WallRockSnowArtifactFragment maxCount: 6 - groupCount: 1 + minGroupSize: 1 + maxGroupSize: 2 radius: 4 diff --git a/Resources/Prototypes/Procedural/biome_templates.yml b/Resources/Prototypes/Procedural/biome_templates.yml index cfd543d76e..9f0a4222e2 100644 --- a/Resources/Prototypes/Procedural/biome_templates.yml +++ b/Resources/Prototypes/Procedural/biome_templates.yml @@ -13,7 +13,6 @@ fractalType: FBm octaves: 2 lacunarity: 2 - gain: 0.5 - !type:BiomeMetaLayer template: Grasslands threshold: 0 @@ -23,7 +22,6 @@ fractalType: FBm octaves: 2 lacunarity: 2 - gain: 0.5 - !type:BiomeMetaLayer template: Snow threshold: 0.5 @@ -33,7 +31,6 @@ fractalType: FBm octaves: 2 lacunarity: 2 - gain: 0.5 # Desert # TODO: Water in desert @@ -47,7 +44,7 @@ frequency: 2 noiseType: OpenSimplex2 allowedTiles: - - FloorLowDesert + - FloorAsteroidSand entities: - FloraRockSolid01 - FloraRockSolid02 @@ -62,13 +59,12 @@ fractalType: FBm octaves: 5 lacunarity: 2 - gain: 1 cellularDistanceFunction: Euclidean cellularReturnType: Distance2 allowedTiles: - - FloorLowDesert + - FloorAsteroidSand entities: - - AsteroidRock + - WallRockSand - !type:BiomeDummyLayer id: Loot # Fill layer @@ -76,14 +72,14 @@ threshold: -1 variants: - 0 - tile: FloorLowDesert + tile: FloorAsteroidSand - !type:BiomeTileLayer - threshold: 0.6 - tile: FloorLowDesert + threshold: 0.80 noise: - seed: 0 - noiseType: Cellular - frequency: 0.1 + seed: 1 + noiseType: OpenSimplex2 + frequency: 2 + tile: FloorAsteroidSand # Grass - type: biomeTemplate @@ -129,7 +125,6 @@ fractalType: FBm octaves: 5 lacunarity: 2 - gain: 1 cellularDistanceFunction: Euclidean cellularReturnType: Distance2 decals: @@ -174,7 +169,6 @@ lacunarity: 2 fractalType: FBm octaves: 5 - gain: 1 cellularDistanceFunction: Euclidean cellularReturnType: Distance2 entities: @@ -229,7 +223,6 @@ lacunarity: 2 fractalType: FBm octaves: 5 - gain: 1 cellularDistanceFunction: Euclidean cellularReturnType: Distance2 @@ -305,25 +298,10 @@ lacunarity: 2 fractalType: FBm octaves: 5 - gain: 1 cellularDistanceFunction: Euclidean cellularReturnType: Distance2 entities: - WallRockBasalt - # chasm time - - !type:BiomeEntityLayer - allowedTiles: - - FloorBasalt - threshold: 0.6 - noise: - seed: 3 - frequency: 0.02 - fractalType: FBm - octaves: 5 - lacunarity: 2 - gain: 0.4 - entities: - - FloorChasmEntity - !type:BiomeDummyLayer id: Loot # Fill basalt @@ -370,7 +348,6 @@ fractalType: FBm octaves: 5 lacunarity: 2 - gain: 1 cellularDistanceFunction: Euclidean cellularReturnType: Distance2 decals: @@ -436,7 +413,6 @@ lacunarity: 2 fractalType: FBm octaves: 5 - gain: 1 cellularDistanceFunction: Euclidean cellularReturnType: Distance2 entities: @@ -452,9 +428,23 @@ lacunarity: 2 fractalType: FBm octaves: 5 - gain: 1 cellularDistanceFunction: Euclidean cellularReturnType: Distance2 + # Liquid plasma rivers. Ice moon baby + - !type:BiomeEntityLayer + allowedTiles: + - FloorSnow + - FloorIce + threshold: 0.95 + noise: + seed: 3 + noiseType: OpenSimplex2 + frequency: 0.003 + lacunarity: 1.50 + fractalType: Ridged + octaves: 1 + entities: + - FloorLiquidPlasmaEntity - !type:BiomeDummyLayer id: Loot - !type:BiomeTileLayer @@ -464,30 +454,101 @@ seed: 0 frequency: 0.02 fractalType: None - # Liquid plasma rivers. Ice moon baby + +# Shadow -> Derived from lava +- type: biomeTemplate + id: Shadow + layers: - !type:BiomeEntityLayer - allowedTiles: - - FloorSnow - - FloorIce - threshold: 0.95 + threshold: 0.70 noise: + frequency: 1 seed: 3 + allowedTiles: + - FloorChromite + entities: + - ShadowBasaltOne + - ShadowBasaltTwo + - ShadowBasaltThree + - ShadowBasaltFour + - ShadowBasaltFive + - !type:BiomeEntityLayer + threshold: 0.97 + noise: + frequency: 1 + seed: 2 + allowedTiles: + - FloorChromite + entities: + - CrystalPink + - !type:BiomeEntityLayer + threshold: 0.97 + noise: + seed: 1 noiseType: OpenSimplex2 - frequency: 0.003 - lacunarity: 1.50 + frequency: 1 + allowedTiles: + - FloorChromite + entities: + - ShadowTree01 + - ShadowTree02 + - ShadowTree03 + - ShadowTree04 + - ShadowTree05 + - ShadowTree06 + # Rock formations + - !type:BiomeEntityLayer + threshold: -0.2 + invert: true + noise: + seed: 0 + noiseType: Perlin fractalType: Ridged octaves: 1 + frequency: 0.1 + gain: 0 + allowedTiles: + - FloorChromite entities: - - FloorLiquidPlasmaEntity + - WallRockChromite + # chasm time + - !type:BiomeEntityLayer + allowedTiles: + - FloorChromite + threshold: 0.2 + noise: + seed: 3 + frequency: 0.1 + fractalType: FBm + octaves: 5 + lacunarity: 2 + gain: 0.4 + entities: + - FloorChromiteChasm + - !type:BiomeDummyLayer + id: Loot + # Fill chromite + - !type:BiomeTileLayer + threshold: -1 + variants: + - 0 + tile: FloorChromite + - !type:BiomeTileLayer + threshold: 0.25 + noise: + seed: 1 + noiseType: OpenSimplex2 + frequency: 2 + tile: FloorChromite # Caves - type: biomeTemplate id: Caves layers: - !type:BiomeEntityLayer - threshold: 0.8 + threshold: 0.85 noise: - seed: 0 + seed: 2 noiseType: OpenSimplex2 fractalType: PingPong allowedTiles: @@ -498,6 +559,21 @@ - CrystalOrange - CrystalBlue - CrystalCyan + - !type:BiomeEntityLayer + threshold: 0.95 + noise: + seed: 1 + noiseType: OpenSimplex2 + frequency: 1 + allowedTiles: + - FloorAsteroidSand + entities: + - FloraStalagmite1 + - FloraStalagmite2 + - FloraStalagmite3 + - FloraStalagmite4 + - FloraStalagmite5 + - FloraStalagmite6 - !type:BiomeEntityLayer threshold: -0.5 invert: true @@ -507,7 +583,7 @@ fractalType: Ridged octaves: 1 frequency: 0.1 - gain: 0 + gain: 0.5 allowedTiles: - FloorAsteroidSand entities: @@ -517,3 +593,12 @@ - !type:BiomeTileLayer threshold: -1.0 tile: FloorAsteroidSand + variants: + - 0 + - !type:BiomeTileLayer + threshold: 0.5 + noise: + seed: 1 + noiseType: OpenSimplex2 + frequency: 2 + tile: FloorAsteroidSand diff --git a/Resources/Prototypes/Procedural/salvage_loot.yml b/Resources/Prototypes/Procedural/salvage_loot.yml index 54870943b2..8c3b2c697f 100644 --- a/Resources/Prototypes/Procedural/salvage_loot.yml +++ b/Resources/Prototypes/Procedural/salvage_loot.yml @@ -123,22 +123,21 @@ guaranteed: true loots: - !type:BiomeMarkerLoot - proto: - Caves: OreTin - Grasslands: OreTin - Lava: BasaltOreTin - Snow: SnowOreTin + proto: OreTin + +- type: salvageLoot + id: OreCoal + guaranteed: true + loots: + - !type:BiomeMarkerLoot + proto: OreCoal - type: salvageLoot id: OreQuartz guaranteed: true loots: - !type:BiomeMarkerLoot - proto: - Caves: OreQuartz - Grasslands: OreQuartz - Lava: BasaltOreQuartz - Snow: SnowOreQuartz + proto: OreQuartz # - Medium value - type: salvageLoot @@ -146,22 +145,14 @@ guaranteed: true loots: - !type:BiomeMarkerLoot - proto: - Caves: OreGold - Grasslands: OreGold - Lava: BasaltOreGold - Snow: SnowOreGold + proto: OreGold - type: salvageLoot id: OreSilver guaranteed: true loots: - !type:BiomeMarkerLoot - proto: - Caves: OreSilver - Grasslands: OreSilver - Lava: BasaltOreSilver - Snow: SnowOreSilver + proto: OreSilver # - High value - type: salvageLoot @@ -169,41 +160,25 @@ guaranteed: true loots: - !type:BiomeMarkerLoot - proto: - Caves: OrePlasma - Grasslands: OrePlasma - Lava: BasaltOrePlasma - Snow: SnowOrePlasma + proto: OrePlasma - type: salvageLoot id: OreUranium guaranteed: true loots: - !type:BiomeMarkerLoot - proto: - Caves: OreUranium - Grasslands: OreUranium - Lava: BasaltOreUranium - Snow: SnowOreUranium + proto: OreUranium - type: salvageLoot id: OreBananium guaranteed: true loots: - !type:BiomeMarkerLoot - proto: - Caves: OreBananium - Grasslands: OreBananium - Lava: BasaltOreBananium - Snow: SnowOreBananium + proto: OreBananium - type: salvageLoot id: OreArtifactFragment guaranteed: true loots: - !type:BiomeMarkerLoot - proto: - Caves: OreArtifactFragment - Grasslands: OreArtifactFragment - Lava: BasaltOreArtifactFragment - Snow: SnowOreArtifactFragment + proto: OreArtifactFragment diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml b/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml index 71c0bb1a96..1a59dbe684 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml @@ -1254,6 +1254,18 @@ reagent: Ethanol amount: 0.15 +- type: reagent + id: TheMartinez + name: reagent-name-the-martinez + parent: BaseAlcohol + desc: reagent-desc-the-martinez + physicalDesc: reagent-physical-desc-vibrant + flavor: themartinez + color: "#75b1f0" + metamorphicSprite: + sprite: Objects/Consumable/Drinks/the_martinez.rsi + state: icon + - type: reagent id: ThreeMileIsland name: reagent-name-three-mile-island @@ -1369,6 +1381,23 @@ reagent: Ethanol amount: 0.07 +- type: reagent + id: WhiteGilgamesh + name: reagent-name-white-gilgamesh + parent: BaseDrink + desc: reagent-desc-white-gilgamesh + physicalDesc: reagent-physical-desc-creamy + flavor: white-gilgamesh + color: "#e5d27e" + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 1 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.15 + - type: reagent id: WhiteRussian name: reagent-name-white-russian diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml b/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml index 3baa6bbf2d..299126ade8 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml @@ -16,6 +16,24 @@ reagent: Theobromine amount: 0.05 +- type: reagent + id: HotCocoa + name: reagent-name-hot-cocoa + parent: BaseDrink + desc: reagent-desc-hot-cocoa + physicalDesc: reagent-physical-desc-aromatic + flavor: chocolate + color: "#664300" + recognizable: true + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + - !type:AdjustReagent + reagent: Theobromine + amount: 0.05 + - type: reagent id: Cream name: reagent-name-cream @@ -406,29 +424,3 @@ metamorphicSprite: sprite: Objects/Consumable/Drinks/rewriter.rsi state: icon - -- type: reagent - id: TheMartinez - name: reagent-name-the-martinez - parent: BaseDrink - desc: reagent-desc-the-martinez - physicalDesc: reagent-physical-desc-vibrant - flavor: themartinez - color: "#75b1f0" - metamorphicSprite: - sprite: Objects/Consumable/Drinks/the_martinez.rsi - state: icon - -- type: reagent - id: WhiteGilgamesh - name: reagent-name-white-gilgamesh - parent: BaseDrink - desc: reagent-desc-white-gilgamesh - physicalDesc: reagent-physical-desc-creamy - flavor: white-gilgamesh - color: "#e5d27e" - metabolisms: - Drink: - effects: - - !type:SatiateThirst - factor: 1 \ No newline at end of file diff --git a/Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml b/Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml index dfa8524064..84d00fa0c1 100644 --- a/Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml +++ b/Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml @@ -65,10 +65,26 @@ - type: reagent id: Egg + name: reagent-name-raw-egg + group: Foods + desc: reagent-desc-raw-egg + physicalDesc: reagent-physical-desc-mucus-like + flavor: raw-egg + color: white + recognizable: true + metabolisms: + Food: + effects: + - !type:AdjustReagent + reagent: UncookedAnimalProteins + amount: 0.5 + +- type: reagent + id: EggCooked name: reagent-name-egg group: Foods desc: reagent-desc-egg - physicalDesc: reagent-physical-desc-mucus-like + physicalDesc: reagent-physical-desc-fluffy flavor: egg color: white recognizable: true @@ -77,7 +93,7 @@ effects: - !type:AdjustReagent reagent: Protein - amount: 0.5 + amount: 1 - type: reagent id: Blackpepper diff --git a/Resources/Prototypes/Reagents/Materials/materials.yml b/Resources/Prototypes/Reagents/Materials/materials.yml index e9a0cad37d..7d7d3ae905 100644 --- a/Resources/Prototypes/Reagents/Materials/materials.yml +++ b/Resources/Prototypes/Reagents/Materials/materials.yml @@ -34,6 +34,14 @@ color: "#8291a1" price: 0.15 # 1-1 mix of plastic and cloth. +- type: material + id: Paper + stackEntity: SheetPaper1 + name: materials-paper + icon: { sprite: Objects/Materials/Sheets/other.rsi, state: paper } + color: "#d9d9d9" + price: 0.05 #same as wood + - type: material id: Plasma stackEntity: SheetPlasma1 @@ -98,4 +106,12 @@ unit: materials-unit-piece icon: { sprite: Objects/Materials/materials.rsi, state: bones } color: "#896f5e" - price: 0 \ No newline at end of file + price: 0 + +- type: material + id: Coal + name: materials-coal + unit: materials-unit-piece + icon: { sprite: Objects/Materials/ore.rsi, state: coal } + color: "#404040" + price: 0 diff --git a/Resources/Prototypes/Reagents/biological.yml b/Resources/Prototypes/Reagents/biological.yml index f24f68cde4..afe1023edf 100644 --- a/Resources/Prototypes/Reagents/biological.yml +++ b/Resources/Prototypes/Reagents/biological.yml @@ -1,22 +1,43 @@ -- type: reagent +- type: reagent id: Blood name: reagent-name-blood group: Biological desc: reagent-desc-blood flavor: metallic color: "#800000" + metamorphicSprite: + sprite: Objects/Consumable/Drinks/bloodglass.rsi + state: icon recognizable: true physicalDesc: reagent-physical-desc-ferrous slippery: false metabolisms: Drink: - # Quenching! effects: - !type:SatiateThirst factor: 1.5 + conditions: + - !type:OrganType + type: Human + shouldHave: false + Food: + effects: + - !type:AdjustReagent + reagent: UncookedAnimalProteins + amount: 0.5 + Medicine: + effects: + - !type:HealthChange + conditions: + - !type:OrganType + type: Bloodsucker + damage: + groups: + Brute: -4 + Burn: -2 plantMetabolism: - - !type:PlantAdjustWater - amount: 0.5 + - !type:PlantAdjustWater + amount: 0.5 - type: reagent id: Slime @@ -39,24 +60,16 @@ factor: 1.5 - type: reagent - id: SpiderBlood - name: reagent-name-spider-blood + parent: Blood + id: CopperBlood + name: reagent-name-hemocyanin-blood group: Biological - desc: reagent-desc-spider-blood + desc: reagent-desc-hemocyanin-blood flavor: metallic color: "#162581" recognizable: true physicalDesc: reagent-physical-desc-ferrous slippery: false - metabolisms: - Drink: - # Quenching! - effects: - - !type:SatiateThirst - factor: 1.5 - plantMetabolism: - - !type:PlantAdjustWater - amount: 0.5 - type: reagent id: ZombieBlood diff --git a/Resources/Prototypes/Reagents/botany.yml b/Resources/Prototypes/Reagents/botany.yml index 4929dc1cec..f6c55cf394 100644 --- a/Resources/Prototypes/Reagents/botany.yml +++ b/Resources/Prototypes/Reagents/botany.yml @@ -202,6 +202,52 @@ damage: types: Caustic: 1 + Gas: + effects: + - !type:HealthChange + conditions: + - !type:OrganType + type: Rat + shouldHave: false + - !type:ReagentThreshold + reagent: Ammonia + min: 1 + ignoreResistances: true + damage: + types: + Poison: 0.25 + - !type:ChemVomit + probability: 0.12 + conditions: + - !type:OrganType + type: Rat + shouldHave: false + - !type:ReagentThreshold + reagent: Ammonia + min: 0.8 + - !type:PopupMessage + type: Local + visualType: Medium + messages: [ "ammonia-smell" ] + probability: 0.1 + conditions: + - !type:ReagentThreshold + reagent: Ammonia + min: 0.25 + - !type:HealthChange + conditions: + - !type:OrganType + type: Rat + - !type:ReagentThreshold + reagent: Ammonia + min: 1 + scaleByQuantity: true + ignoreResistances: true + damage: + groups: + Brute: -5 + Burn: -5 + - type: reagent id: Diethylamine diff --git a/Resources/Prototypes/Reagents/chemicals.yml b/Resources/Prototypes/Reagents/chemicals.yml index 814d9c5c29..01cffa3e99 100644 --- a/Resources/Prototypes/Reagents/chemicals.yml +++ b/Resources/Prototypes/Reagents/chemicals.yml @@ -80,3 +80,31 @@ conditions: - !type:ReagentThreshold min: 5 + +- type: reagent + id: SodiumPolyacrylate + name: reagent-name-sodium-polyacrylate + desc: reagent-desc-sodium-polyacrylate + flavor: bitter + physicalDesc: reagent-physical-desc-grainy + color: "#F0F0F0" + metabolisms: + Poison: + effects: + - !type:SatiateThirst + factor: -5 # This is basically industrial dessicant + - !type:PopupMessage + visualType: MediumCaution + type: Local + messages: [ "generic-reagent-effect-parched" ] + probability: 0.1 + +- type: reagent + id: Cellulose + name: reagent-name-cellulose + group: Biological + desc: reagent-desc-cellulose + flavor: bitter + color: "#E6E6DA" + physicalDesc: reagent-physical-desc-crystalline + slippery: false diff --git a/Resources/Prototypes/Reagents/cleaning.yml b/Resources/Prototypes/Reagents/cleaning.yml index c1f8c2b352..b70a7af0fa 100644 --- a/Resources/Prototypes/Reagents/cleaning.yml +++ b/Resources/Prototypes/Reagents/cleaning.yml @@ -38,6 +38,62 @@ - !type:CleanTileReaction {} - !type:CleanDecalsReaction {} +- type: reagent + id: SoapReagent + name: reagent-name-soap + desc: reagent-desc-soap + physicalDesc: reagent-physical-desc-soapy + flavor: clean + color: "#c8dfc9" + recognizable: true + boilingPoint: 100.0 + meltingPoint: 60.0 + metabolisms: + Food: + effects: + - !type:ChemVomit + conditions: + - !type:ReagentThreshold + min: 6 + probability: 0.20 + Drink: + effects: + - !type:ChemVomit + conditions: + - !type:ReagentThreshold + min: 6 + probability: 0.20 + +- type: reagent + id: SoapyWater + parent: Water + name: reagent-name-soapy-water + desc: reagent-desc-soapy-water + physicalDesc: reagent-physical-desc-soapy + flavor: clean + color: "#9ec8dc" + recognizable: true + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 3 + - !type:ChemVomit + conditions: + - !type:ReagentThreshold + min: 6 + probability: 0.10 + thirstAmount: -5.0 + hungerAmount: -5.0 + plantMetabolism: + - !type:PlantAdjustWater + amount: .8 + tileReactions: + - !type:CleanDecalsReaction + cleanCost: 5 + - !type:ExtinguishTileReaction { } + - !type:SpillIfPuddlePresentTileReaction { } + - type: reagent id: SpaceLube name: reagent-name-space-lube diff --git a/Resources/Prototypes/Reagents/elements.yml b/Resources/Prototypes/Reagents/elements.yml index 00c283ddb9..5c6528a43f 100644 --- a/Resources/Prototypes/Reagents/elements.yml +++ b/Resources/Prototypes/Reagents/elements.yml @@ -62,9 +62,21 @@ metabolismRate: 0.1 effects: - !type:HealthChange + conditions: + - !type:OrganType + type: Arachnid + shouldHave: false damage: types: Poison: 0.1 + Medicine: + effects: + - !type:ModifyBloodLevel + condition: + - !type:OrganType + type: Arachnid + shouldHave: true + amount: 4 - type: reagent id: Fluorine @@ -137,9 +149,24 @@ boilingPoint: 2862.0 meltingPoint: 1538.0 metabolisms: + Poison: + metabolismRate: 0.1 + effects: + - !type:HealthChange + conditions: + - !type:OrganType + type: Arachnid + shouldHave: true + damage: + types: + Poison: 0.1 Medicine: effects: - !type:ModifyBloodLevel + condition: + - !type:OrganType + type: Arachnid + shouldHave: false amount: 4 - type: reagent @@ -167,7 +194,7 @@ emote: Laugh probability: 0.05 - # TODO: cause confusion and some brain damage + # TODO: cause some brain damage when woundmed, and generally reduce the stutter/scrambledaccent unless high doses - type: reagent id: Mercury @@ -186,6 +213,9 @@ damage: types: Poison: 1 + - !type:GenericStatusEffect + key: Stutter + component: ScrambledAccent - type: reagent id: Potassium diff --git a/Resources/Prototypes/Reagents/fun.yml b/Resources/Prototypes/Reagents/fun.yml index b90b0e8032..d22e2213ac 100644 --- a/Resources/Prototypes/Reagents/fun.yml +++ b/Resources/Prototypes/Reagents/fun.yml @@ -1,4 +1,4 @@ -- type: reagent +- type: reagent id: Carpetium name: reagent-name-carpetium group: Special @@ -165,4 +165,136 @@ Poison: effects: - !type:Electrocute - probability: 0.5 + probability: 0.35 + +- type: reagent + id: Razorium + name: reagent-name-razorium + group: Toxins + slippery: true + desc: reagent-desc-razorium + physicalDesc: reagent-physical-desc-reflective + flavor: sharp + color: "#e3fffb" + reactiveEffects: + Acidic: + methods: [ Touch ] + effects: + - !type:HealthChange + scaleByQuantity: true + ignoreResistances: false + damage: + types: + Slash: 0.5 + - !type:Emote + emote: Scream + probability: 0.7 + metabolisms: + Poison: + metabolismRate : 3.00 + effects: + - !type:HealthChange + damage: + types: + Slash : 9 + - !type:PopupMessage + type: Local + visualType: LargeCaution + messages: [ "generic-reagent-effect-slicing-insides"] + probability: 0.33 + - !type:Emote + emote: Scream + probability: 0.3 + +- type: reagent + id: Fresium + name: reagent-name-fresium + group: Toxins + slippery: true + desc: reagent-desc-fresium + physicalDesc: reagent-physical-desc-frosty + flavor: cold + color: "#b3f1ff" + boilingPoint: 50.0 + meltingPoint: 45.0 + tileReactions: + - !type:CreateEntityTileReaction + entity: IceCrust + maxOnTileWhitelist: + tags: [ Ice ] + - !type:ExtinguishTileReaction { } + reactiveEffects: + Acidic: + methods: [ Touch ] + effects: + - !type:HealthChange + scaleByQuantity: true + ignoreResistances: false + damage: + types: + Cold: 0.05 + - !type:AdjustTemperature + conditions: + - !type:Temperature + min: 160.15 + amount: -30000 + Extinguish: + methods: [ Touch ] + effects: + - !type:ExtinguishReaction # cold + metabolisms: + Poison: + metabolismRate : 0.45 + effects: + - !type:HealthChange + damage: + types: + Cold: 0.01 # slightly nips directly, other cold damage comes from the temp change + Burn: -3 # ghetto burn chem. i don't think anyone would use this intentionally but it's funny + - !type:PopupMessage + conditions: + - !type:ReagentThreshold + reagent: Fresium + max: 35 + type: Local + visualType: LargeCaution + messages: [ "fresium-effect-freeze-insides"] + probability: 0.05 + - !type:PopupMessage + conditions: + - !type:ReagentThreshold + reagent: Fresium + max: 35 + type: Local + visualType: LargeCaution + messages: [ "fresium-effect-slow"] + probability: 0.2 + - !type:AdjustTemperature + conditions: + - !type:Temperature + min: 160.15 # not quite enough for cryo, but can speed it up if you wanna take the risk + amount: -10000 + - !type:MovespeedModifier + conditions: + - !type:ReagentThreshold + reagent: Fresium + max: 40 # slows when less than 40 + walkSpeedModifier: 0.6 + sprintSpeedModifier: 0.6 + - !type:MovespeedModifier + conditions: + - !type:ReagentThreshold + reagent: Fresium + min: 40 # your legs stop working when above 40 + walkSpeedModifier: 0.00 + sprintSpeedModifier: 0.00 + - !type:PopupMessage + conditions: + - !type:ReagentThreshold + reagent: Fresium + min: 40 + type: Local + visualType: LargeCaution + messages: [ "fresium-effect-frozen"] + probability: 0.4 + diff --git a/Resources/Prototypes/Reagents/gases.yml b/Resources/Prototypes/Reagents/gases.yml index 50e744a8ac..54bdbf3a40 100644 --- a/Resources/Prototypes/Reagents/gases.yml +++ b/Resources/Prototypes/Reagents/gases.yml @@ -1,4 +1,4 @@ -- type: reagent +- type: reagent id: Oxygen name: reagent-name-oxygen desc: reagent-desc-oxygen @@ -188,62 +188,6 @@ NitrousOxide: 1.0 Nitrogen: -1.0 -- type: reagent - id: Miasma - name: reagent-name-miasma - desc: reagent-desc-miasma - physicalDesc: reagent-physical-desc-gaseous - flavor: bitter - color: "#56941E" - boilingPoint: -195.8 - meltingPoint: -210.0 - metabolisms: - Gas: - effects: - - !type:HealthChange - conditions: - - !type:OrganType - type: Rat - shouldHave: false - - !type:ReagentThreshold - reagent: Miasma - min: 1 - ignoreResistances: true - damage: - types: - Poison: 0.25 - - !type:ChemVomit - probability: 0.12 - conditions: - - !type:OrganType - type: Rat - shouldHave: false - - !type:ReagentThreshold - reagent: Miasma - min: 0.8 - - !type:PopupMessage - type: Local - visualType: Medium - messages: [ "miasma-smell" ] - probability: 0.1 - conditions: - - !type:ReagentThreshold - reagent: Miasma - min: 0.25 - - !type:HealthChange - conditions: - - !type:OrganType - type: Rat - - !type:ReagentThreshold - reagent: Miasma - min: 1 - scaleByQuantity: true - ignoreResistances: true - damage: - Groups: - Brute: -5 - Burn: -5 - - type: reagent id: NitrousOxide name: reagent-name-nitrous-oxide @@ -346,7 +290,7 @@ ignoreResistances: true damage: types: - Cellular: 0.01 + Cellular: 0.5 - !type:GenericStatusEffect conditions: - !type:ReagentThreshold @@ -355,9 +299,10 @@ key: SeeingRainbows component: SeeingRainbows type: Add - time: 5 + time: 500 refresh: false - !type:Drunk + boozePower: 500 conditions: - !type:ReagentThreshold reagent: Frezon diff --git a/Resources/Prototypes/Reagents/medicine.yml b/Resources/Prototypes/Reagents/medicine.yml index cae0b2af01..fae996bc6e 100644 --- a/Resources/Prototypes/Reagents/medicine.yml +++ b/Resources/Prototypes/Reagents/medicine.yml @@ -22,6 +22,9 @@ key: PsionicsDisabled #Nyano - Summary: disables psinoics from being used by the wearer. component: PsionicsDisabled #Nyano - Summary: see above. type: Add + - !type:Drunk + slurSpeech: false + boozePower: 20 - type: reagent id: Dylovene @@ -62,8 +65,6 @@ - !type:ReagentThreshold min: 20 probability: 0.02 - Alcohol: - effects: - !type:Drunk conditions: - !type:ReagentThreshold @@ -110,7 +111,7 @@ effects: - !type:GenericStatusEffect key: Drunk - time: 2.0 + time: 6.0 type: Remove - !type:HealthChange damage: @@ -167,8 +168,6 @@ conditions: - !type:ReagentThreshold min: 15 - Alcohol: - effects: - !type:Drunk - type: reagent @@ -192,7 +191,7 @@ conditions: - !type:Temperature # this is a little arbitrary but they gotta be pretty cold - max: 150.0 + max: 213.0 damage: # todo scale with temp like SS13 groups: @@ -215,7 +214,7 @@ - !type:HealthChange conditions: - !type:Temperature - max: 150.0 + max: 213.0 damage: types: Cellular: -2 @@ -296,9 +295,9 @@ - !type:AdjustReagent conditions: - !type:ReagentThreshold - reagent: Lexorin + reagent: HeartbreakerToxin min: 1 - reagent: Lexorin + reagent: HeartbreakerToxin amount: -3 - !type:HealthChange conditions: @@ -345,12 +344,12 @@ Asphyxiation: 1 Poison: 1 - !type:AdjustReagent - reagent: Lexorin + reagent: HeartbreakerToxin amount: -2 - !type:AdjustReagent conditions: - !type:ReagentThreshold - reagent: Lexorin + reagent: min: 1 reagent: Epinephrine amount: -1 @@ -358,7 +357,7 @@ probability: 0.1 conditions: - !type:ReagentThreshold - reagent: Lexorin + reagent: HeartbreakerToxin min: 1 reagent: Histamine amount: 4 @@ -412,6 +411,9 @@ Medicine: effects: - !type:ChemVomit + conditions: + - !type:ReagentThreshold + min: 4 probability: 0.3 - type: reagent @@ -499,6 +501,9 @@ visualType: Medium messages: [ "leporazine-effect-temperature-adjusting" ] probability: 0.2 + - !type:AdjustReagent + reagent: Fresium + amount: -5 - type: reagent id: Barozine @@ -939,3 +944,73 @@ - !type:ReagentThreshold min: 30 probability: 0.02 + +- type: reagent + id: Lacerinol + name: reagent-name-lacerinol + group: Medicine + desc: reagent-desc-lacerinol + physicalDesc: reagent-physical-desc-viscous + flavor: syrupy + color: "#283332" + metabolisms: + Medicine: + effects: + - !type:HealthChange + damage: + types: + Slash: -3 + - !type:HealthChange + conditions: + - !type:ReagentThreshold + min: 12 + damage: + types: + Cold: 3 + +- type: reagent + id: Puncturase + name: reagent-name-puncturase + group: Medicine + desc: reagent-desc-puncturase + physicalDesc: reagent-physical-desc-fizzy + flavor: fizzy + color: "#b9bf93" + metabolisms: + Medicine: + effects: + - !type:HealthChange + damage: + types: + Piercing: -4 + Blunt: 0.1 + - !type:HealthChange + conditions: + - !type:ReagentThreshold + min: 11 + damage: + types: + Blunt: 5 + +- type: reagent + id: Bruizine + name: reagent-name-bruizine + group: Medicine + desc: reagent-desc-bruizine + physicalDesc: reagent-physical-desc-mucus-like + flavor: sour + color: "#ff3636" + metabolisms: + Medicine: + effects: + - !type:HealthChange + damage: + types: + Blunt: -3.5 + - !type:HealthChange + conditions: + - !type:ReagentThreshold + min: 10.5 + damage: + types: + Poison: 4 diff --git a/Resources/Prototypes/Reagents/narcotics.yml b/Resources/Prototypes/Reagents/narcotics.yml index 5ab4e79927..5578763387 100644 --- a/Resources/Prototypes/Reagents/narcotics.yml +++ b/Resources/Prototypes/Reagents/narcotics.yml @@ -255,6 +255,24 @@ reagent: SpaceDrugs min: 15 +- type: reagent + id: Bananadine + name: reagent-name-bananadine + group: Narcotics + desc: reagent-desc-bananadine + physicalDesc: reagent-physical-desc-powdery + flavor: bitter + color: "#ffff00" + metabolisms: + Narcotic: + effects: + - !type:GenericStatusEffect + key: SeeingRainbows + component: SeeingRainbows + type: Add + time: 5 + refresh: false + # Probably replace this one with sleeping chem when putting someone in a comatose state is easier - type: reagent id: Nocturine @@ -337,3 +355,49 @@ conditions: - !type:ReagentThreshold min: 20 + +- type: reagent + id: TearGas + name: reagent-name-tear-gas + group: Narcotics + desc: reagent-desc-tear-gas + physicalDesc: reagent-physical-desc-milky + flavor: salty + color: "#96a8b5" + boilingPoint: 255.0 + meltingPoint: 36.0 + metabolisms: + Narcotic: + effects: + - !type:PopupMessage + type: Local + probability: 0.08 + messages: + - generic-reagent-effect-burning-eyes + - generic-reagent-effect-burning-eyes-a-bit + - generic-reagent-effect-tearing-up + - norepinephricacid-effect-eyelids + - norepinephricacid-effect-eyes-itch + - norepinephricacid-effect-vision-fade + - norepinephricacid-effect-vision-fail + - !type:PopupMessage + type: Local + visualType: MediumCaution + probability: 0.03 + messages: + - norepinephricacid-effect-eye-disconnect + - norepinephricacid-effect-eye-pain + - norepinephricacid-effect-darkness + - norepinephricacid-effect-blindness + conditions: + - !type:ReagentThreshold + min: 15 + - !type:Emote + emote: Scream + probability: 0.08 + - !type:GenericStatusEffect + key: TemporaryBlindness + component: TemporaryBlindness + conditions: + - !type:ReagentThreshold + min: 20 diff --git a/Resources/Prototypes/Reagents/toxins.yml b/Resources/Prototypes/Reagents/toxins.yml index 41e83a7c71..2b7a0aa0d4 100644 --- a/Resources/Prototypes/Reagents/toxins.yml +++ b/Resources/Prototypes/Reagents/toxins.yml @@ -63,7 +63,7 @@ conditions: - !type:ReagentThreshold reagent: ChloralHydrate - min: 15 + min: 10 key: ForcedSleep component: ForcedSleeping refresh: false @@ -285,7 +285,7 @@ - !type:HealthChange damage: types: - Asphyxiation: 2 + Asphyxiation: 5 plantMetabolism: - !type:PlantAdjustToxins amount: 10 @@ -303,7 +303,7 @@ - !type:HealthChange damage: groups: - Airloss: 7 + Airloss: 10 - type: reagent id: MindbreakerToxin @@ -454,19 +454,34 @@ flavor: bitter color: "#FFFFE5" metabolisms: - Poison: + Food: effects: + - !type:PopupMessage + conditions: + - !type:OrganType + type: Human + reagent: Protein + type: Local + visualType: MediumCaution + messages: [ "generic-reagent-effect-sick" ] + probability: 0.5 + - !type:ChemVomit + probability: 0.1 + conditions: + - !type:OrganType + type: Human - !type:HealthChange conditions: - !type:OrganType type: Human damage: types: - Poison: 2 + Poison: 1 - !type:AdjustReagent conditions: - !type:OrganType - type: Animal + type: Human + shouldHave: false reagent: Protein amount: 0.5 @@ -533,7 +548,7 @@ damage: types: Poison: 0.06 - + - type: reagent id: Lead @@ -566,3 +581,41 @@ damage: types: Poison: 1.8 + +- type: reagent + id: Vestine + name: reagent-name-vestine + group: Toxins + desc: reagent-desc-vestine + physicalDesc: reagent-physical-desc-shiny + flavor: medicine + color: "#435166" + metabolisms: + Poison: + effects: + - !type:Jitter + conditions: + - !type:ReagentThreshold + min: 5 + - !type:MovespeedModifier + walkSpeedModifier: 0.8 + sprintSpeedModifier: 0.8 + - !type:HealthChange + damage: + groups: + Airloss: 2 + +- type: reagent + id: Tazinide + name: reagent-name-tazinide + group: Toxins + desc: reagent-desc-tazinide + physicalDesc: reagent-physical-desc-metallic + flavor: shocking + color: "#FDD023" + metabolisms: + Poison: + effects: + - !type:Electrocute + probability: 0.8 + diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/clothing/clown_banana.yml b/Resources/Prototypes/Recipes/Construction/Graphs/clothing/clown_banana.yml new file mode 100644 index 0000000000..190293f9d1 --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/clothing/clown_banana.yml @@ -0,0 +1,113 @@ +- type: constructionGraph + id: BananaClownJumpsuit + start: start + graph: + - node: start + edges: + - to: jumpsuit + steps: + - tag: BananaPeel + name: A Banana Peel + icon: + sprite: Objects/Specific/Hydroponics/banana.rsi + state: peel + doAfter: 1 + - tag: BananaPeel + name: A Banana Peel + icon: + sprite: Objects/Specific/Hydroponics/banana.rsi + state: peel + doAfter: 1 + - tag: BananaPeel + name: A Banana Peel + icon: + sprite: Objects/Specific/Hydroponics/banana.rsi + state: peel + doAfter: 1 + - material: Bananium + amount: 1 + doAfter: 1 + - tag: ClownSuit + name: A Clown Suit + icon: + sprite: Clothing/Uniforms/Jumpsuit/clown.rsi + state: icon + doAfter: 1 + - node: jumpsuit + entity: ClothingUniformJumpsuitClownBanana + +- type: constructionGraph + id: BananaClownShoes + start: start + graph: + - node: start + edges: + - to: shoes + steps: + - tag: BananaPeel + name: A Banana Peel + icon: + sprite: Objects/Specific/Hydroponics/banana.rsi + state: peel + doAfter: 1 + - tag: BananaPeel + name: A Banana Peel + icon: + sprite: Objects/Specific/Hydroponics/banana.rsi + state: peel + doAfter: 1 + - tag: BananaPeel + name: A Banana Peel + icon: + sprite: Objects/Specific/Hydroponics/banana.rsi + state: peel + doAfter: 1 + - material: Bananium + amount: 1 + doAfter: 1 + - tag: ClownShoes + name: Clown Shoes + icon: + sprite: Clothing/Shoes/Specific/clown.rsi + state: icon + doAfter: 1 + - node: shoes + entity: ClothingShoesClownBanana + +- type: constructionGraph + id: BananaClownMask + start: start + graph: + - node: start + edges: + - to: mask + steps: + - tag: BananaPeel + name: A Banana Peel + icon: + sprite: Objects/Specific/Hydroponics/banana.rsi + state: peel + doAfter: 1 + - tag: BananaPeel + name: A Banana Peel + icon: + sprite: Objects/Specific/Hydroponics/banana.rsi + state: peel + doAfter: 1 + - tag: BananaPeel + name: A Banana Peel + icon: + sprite: Objects/Specific/Hydroponics/banana.rsi + state: peel + doAfter: 1 + - material: Bananium + amount: 1 + doAfter: 1 + - tag: ClownMask + name: A Clown Mask + icon: + sprite: Clothing/Mask/clown.rsi + state: icon + doAfter: 1 + - node: mask + entity: ClothingMaskClownBanana diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/food/egg.yml b/Resources/Prototypes/Recipes/Construction/Graphs/food/egg.yml new file mode 100644 index 0000000000..f5eea53bcc --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/food/egg.yml @@ -0,0 +1,22 @@ +# egg explodes when heated!!! +- type: constructionGraph + id: Egg + start: start + graph: + - node: start + edges: + - to: boiled + steps: + - minTemperature: 344 + - node: boiled + entity: FoodEggBoiled + edges: + - to: explode + completed: + - !type:DamageEntity + damage: + Blunt: 10 + steps: + # egg explodes some time after the water in it boils and increases pressure, guessing ~110C + - minTemperature: 383 + - node: explode diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/machines/cyborg.yml b/Resources/Prototypes/Recipes/Construction/Graphs/machines/cyborg.yml index e9bf26a571..6f65937c96 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/machines/cyborg.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/machines/cyborg.yml @@ -1,4 +1,4 @@ -- type: constructionGraph +- type: constructionGraph id: Cyborg start: start graph: @@ -22,13 +22,6 @@ - assemblyId: generic guideString: borg-construction-guide-string - - component: PowerCell - name: power cell - store: cell_slot - icon: - sprite: Objects/Power/power_cells.rsi - state: small - - material: Cable amount: 1 doAfter: 1 @@ -43,26 +36,19 @@ - component: Flash name: second flash - store: part-contaiener + store: part-container icon: sprite: Objects/Weapons/Melee/flash.rsi state: flash - tool: Screwing doAfter: 0.5 - + - to: engineer steps: - assemblyId: engineer guideString: borg-construction-guide-string - - component: PowerCell - name: power cell - store: cell_slot - icon: - sprite: Objects/Power/power_cells.rsi - state: small - - material: Cable amount: 1 doAfter: 1 @@ -90,13 +76,6 @@ - assemblyId: janitor guideString: borg-construction-guide-string - - component: PowerCell - name: power cell - store: cell_slot - icon: - sprite: Objects/Power/power_cells.rsi - state: small - - material: Cable amount: 1 doAfter: 1 @@ -124,13 +103,6 @@ - assemblyId: medical guideString: borg-construction-guide-string - - component: PowerCell - name: power cell - store: cell_slot - icon: - sprite: Objects/Power/power_cells.rsi - state: small - - material: Cable amount: 1 doAfter: 1 @@ -158,13 +130,6 @@ - assemblyId: mining guideString: borg-construction-guide-string - - component: PowerCell - name: power cell - store: cell_slot - icon: - sprite: Objects/Power/power_cells.rsi - state: small - - material: Cable amount: 1 doAfter: 1 @@ -192,13 +157,6 @@ - assemblyId: service guideString: borg-construction-guide-string - - component: PowerCell - name: power cell - store: cell_slot - icon: - sprite: Objects/Power/power_cells.rsi - state: small - - material: Cable amount: 1 doAfter: 1 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/airlock.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/airlock.yml index 4ddeb38519..3cd22bbfc7 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/airlock.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/airlock.yml @@ -81,7 +81,9 @@ conditions: - !type:EntityAnchored {} completed: - - !type:EmptyAllContainers {} + - !type:EmptyAllContainers + pickup: true + emptyAtUser: true steps: - tool: Prying doAfter: 5 @@ -102,7 +104,9 @@ conditions: - !type:EntityAnchored {} completed: - - !type:EmptyAllContainers {} + - !type:EmptyAllContainers + pickup: true + emptyAtUser: true - !type:SpawnPrototype prototype: SheetRGlass1 amount: 1 @@ -134,7 +138,7 @@ steps: - tool: Prying doAfter: 2 - + - to: medSecurityUnfinished conditions: - !type:WirePanel {} @@ -142,7 +146,7 @@ - material: Steel amount: 2 doAfter: 2 - + - to: highSecurityUnfinished conditions: - !type:WirePanel {} @@ -150,7 +154,7 @@ - material: Plasteel amount: 2 doAfter: 2 - + ## Standard airlock - node: airlock entity: Airlock @@ -169,11 +173,13 @@ - !type:WirePanel {} - !type:AllWiresCut completed: - - !type:EmptyAllContainers {} + - !type:EmptyAllContainers + pickup: true + emptyAtUser: true steps: - tool: Prying doAfter: 5 - + - to: medSecurityUnfinished conditions: - !type:WirePanel {} @@ -181,7 +187,7 @@ - material: Steel amount: 2 doAfter: 2 - + - to: highSecurityUnfinished conditions: - !type:WirePanel {} @@ -196,7 +202,7 @@ - !type:SetWiresPanelSecurity wiresAccessible: true weldingAllowed: true - edges: + edges: - to: medSecurityUnfinished conditions: - !type:WirePanel {} @@ -204,7 +210,7 @@ - material: Steel amount: 2 doAfter: 2 - + - to: highSecurityUnfinished conditions: - !type:WirePanel {} @@ -221,7 +227,7 @@ wiresAccessible: false weldingAllowed: false edges: - - to: glassAirlock + - to: glassAirlock completed: - !type:GivePrototype prototype: SheetSteel1 @@ -233,8 +239,8 @@ steps: - tool: Prying doAfter: 4 - - - to: airlock + + - to: airlock completed: - !type:GivePrototype prototype: SheetSteel1 @@ -246,8 +252,8 @@ steps: - tool: Prying doAfter: 4 - - - to: highSecDoor + + - to: highSecDoor completed: - !type:GivePrototype prototype: SheetSteel1 @@ -259,14 +265,14 @@ steps: - tool: Prying doAfter: 4 - - - to: medSecurity - conditions: + + - to: medSecurity + conditions: - !type:WirePanel {} steps: - tool: Welding doAfter: 3 - + - node: medSecurity actions: - !type:SetWiresPanelSecurity @@ -274,7 +280,7 @@ wiresAccessible: false weldingAllowed: false edges: - - to: medSecurityUnfinished + - to: medSecurityUnfinished conditions: - !type:WirePanel {} steps: @@ -289,7 +295,7 @@ wiresAccessible: false weldingAllowed: false edges: - - to: glassAirlock + - to: glassAirlock completed: - !type:GivePrototype prototype: SheetPlasteel1 @@ -301,8 +307,8 @@ steps: - tool: Prying doAfter: 4 - - - to: airlock + + - to: airlock completed: - !type:GivePrototype prototype: SheetPlasteel1 @@ -314,8 +320,8 @@ steps: - tool: Prying doAfter: 4 - - - to: highSecDoor + + - to: highSecDoor completed: - !type:GivePrototype prototype: SheetPlasteel1 @@ -327,14 +333,14 @@ steps: - tool: Prying doAfter: 4 - - - to: highSecurity - conditions: + + - to: highSecurity + conditions: - !type:WirePanel {} steps: - tool: Welding doAfter: 5 - + - node: highSecurity actions: - !type:SetWiresPanelSecurity @@ -348,16 +354,16 @@ steps: - tool: Welding doAfter: 15 - + - to: maxSecurity conditions: - !type:WirePanel {} - steps: + steps: - material: MetalRod amount: 2 doAfter: 1 -## Max security level door: an electric grill is added +## Max security level door: an electric grill is added - node: maxSecurity actions: - !type:SetWiresPanelSecurity @@ -365,27 +371,27 @@ wiresAccessible: false weldingAllowed: true edges: - - to: highSecurity + - to: highSecurity completed: - !type:AttemptElectrocute - !type:GivePrototype prototype: PartRodMetal1 amount: 2 - conditions: + conditions: - !type:WirePanel {} steps: - tool: Cutting - doAfter: 0.5 + doAfter: 0.5 - to: superMaxSecurityUnfinished conditions: - !type:WirePanel {} - steps: + steps: - material: Plasteel amount: 2 doAfter: 2 -## Super max security level door: an additional layer of plasteel is added +## Super max security level door: an additional layer of plasteel is added - node: superMaxSecurityUnfinished actions: - !type:SetWiresPanelSecurity @@ -393,7 +399,7 @@ wiresAccessible: false weldingAllowed: false edges: - - to: maxSecurity + - to: maxSecurity completed: - !type:GivePrototype prototype: SheetPlasteel1 @@ -403,25 +409,25 @@ steps: - tool: Prying doAfter: 4 - - - to: superMaxSecurity - conditions: + + - to: superMaxSecurity + conditions: - !type:WirePanel {} steps: - tool: Welding doAfter: 5 - + - node: superMaxSecurity actions: - !type:SetWiresPanelSecurity examine: wires-panel-component-on-examine-security-level7 - wiresAccessible: false + wiresAccessible: false weldingAllowed: false edges: - - to: superMaxSecurityUnfinished + - to: superMaxSecurityUnfinished conditions: - !type:WirePanel {} steps: - tool: Welding - doAfter: 15 - + doAfter: 15 + diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/firelock.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/firelock.yml index 9d5b2945a6..0dbf26794d 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/firelock.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/firelock.yml @@ -80,7 +80,9 @@ doAfter: 0.25 - to: frame2 completed: - - !type:EmptyAllContainers {} + - !type:EmptyAllContainers + pickup: true + emptyAtUser: true conditions: - !type:EntityAnchored anchored: true diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/grille_diagonal.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/grille_diagonal.yml new file mode 100644 index 0000000000..3f1bad5d34 --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/grille_diagonal.yml @@ -0,0 +1,29 @@ +- type: constructionGraph + id: GrilleDiagonal + start: start + graph: + - node: start + edges: + - to: grilleDiagonal + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: MetalRod + amount: 2 + doAfter: 1 + + - node: grilleDiagonal + entity: GrilleDiagonal + edges: + - to: start + completed: + - !type:AdminLog + message: "A grille was cut" + - !type:SpawnPrototype + prototype: PartRodMetal1 + amount: 2 + - !type:DeleteEntity + steps: + - tool: Cutting + doAfter: 0.25 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/secretdoor.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/secretdoor.yml index 8acaa5f505..2c5a0db2b8 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/secretdoor.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/secretdoor.yml @@ -12,7 +12,6 @@ - material: Steel amount: 4 doAfter: 4 - - material: MetalRod amount: 4 doAfter: 4 @@ -80,7 +79,9 @@ - !type:EntityAnchored {} - !type:DoorWelded {} completed: - - !type:EmptyAllContainers {} + - !type:EmptyAllContainers + pickup: true + emptyAtUser: true steps: - tool: Prying doAfter: 5 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/shuttle.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/shuttle.yml index dc05edd8fb..457fbfede5 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/shuttle.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/shuttle.yml @@ -54,7 +54,9 @@ doAfter: 2.5 - to: assembly completed: - - !type:EmptyAllContainers {} + - !type:EmptyAllContainers + pickup: true + emptyAtUser: true steps: - tool: Prying doAfter: 1 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/windoor.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/windoor.yml index a991884acb..9e19196c6c 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/windoor.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/windoor.yml @@ -113,7 +113,9 @@ - !type:WirePanel {} - !type:AllWiresCut completed: - - !type:EmptyAllContainers {} + - !type:EmptyAllContainers + pickup: true + emptyAtUser: true steps: - tool: Anchoring doAfter: 1 @@ -213,7 +215,9 @@ container: board - !type:AllWiresCut completed: - - !type:EmptyAllContainers {} + - !type:EmptyAllContainers + pickup: true + emptyAtUser: true steps: - tool: Anchoring doAfter: 4 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/window_diagonal.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/window_diagonal.yml new file mode 100644 index 0000000000..1a11695212 --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/window_diagonal.yml @@ -0,0 +1,163 @@ +- type: constructionGraph + id: WindowDiagonal + start: start + graph: + - node: start + edges: + - to: plasmaWindowDiagonal + steps: + - material: PlasmaGlass + amount: 2 + doAfter: 2 + + - to: reinforcedWindowDiagonal + steps: + - material: ReinforcedGlass + amount: 2 + doAfter: 2 + + - to: reinforcedPlasmaWindowDiagonal + steps: + - material: ReinforcedPlasmaGlass + amount: 2 + doAfter: 3 + + - to: uraniumWindowDiagonal + steps: + - material: UraniumGlass + amount: 2 + doAfter: 2 + + - to: reinforcedUraniumWindowDiagonal + steps: + - material: ReinforcedUraniumGlass + amount: 2 + doAfter: 3 + + - to: windowDiagonal + steps: + - material: Glass + amount: 2 + doAfter: 3 + + - node: windowDiagonal + entity: WindowDiagonal + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetGlass1 + amount: 2 + - !type:DeleteEntity {} + steps: + - tool: Screwing + doAfter: 1 + - tool: Anchoring + doAfter: 2 + + - node: reinforcedWindowDiagonal + entity: ReinforcedWindowDiagonal + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetRGlass1 + amount: 2 + - !type:DeleteEntity {} + steps: + - tool: Welding + doAfter: 5 + - tool: Screwing + doAfter: 1 + - tool: Prying + doAfter: 2 + - tool: Welding + doAfter: 5 + - tool: Screwing + doAfter: 1 + - tool: Anchoring + doAfter: 2 + + - node: plasmaWindowDiagonal + entity: PlasmaWindowDiagonal + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetPGlass1 + amount: 2 + - !type:DeleteEntity {} + steps: + - tool: Screwing + doAfter: 2 + - tool: Prying + doAfter: 3 + - tool: Screwing + doAfter: 2 + - tool: Anchoring + doAfter: 3 + + - node: reinforcedPlasmaWindowDiagonal + entity: ReinforcedPlasmaWindowDiagonal + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetRPGlass1 + amount: 2 + - !type:DeleteEntity {} + steps: + - tool: Welding + doAfter: 5 + - tool: Screwing + doAfter: 2 + - tool: Prying + doAfter: 3 + - tool: Welding + doAfter: 5 + - tool: Screwing + doAfter: 2 + - tool: Anchoring + doAfter: 3 + + - node: uraniumWindowDiagonal + entity: UraniumWindowDiagonal + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetUGlass1 + amount: 2 + - !type:DeleteEntity {} + steps: + - tool: Screwing + doAfter: 2 + - tool: Prying + doAfter: 3 + - tool: Screwing + doAfter: 2 + - tool: Anchoring + doAfter: 3 + + - node: reinforcedUraniumWindowDiagonal + entity: ReinforcedUraniumWindowDiagonal + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetRUGlass1 + amount: 2 + - !type:DeleteEntity {} + steps: + - tool: Welding + doAfter: 5 + - tool: Screwing + doAfter: 2 + - tool: Prying + doAfter: 3 + - tool: Welding + doAfter: 5 + - tool: Screwing + doAfter: 2 + - tool: Anchoring + doAfter: 3 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/tools/logic_gate.yml b/Resources/Prototypes/Recipes/Construction/Graphs/tools/logic_gate.yml index cf620eaaca..6e64f061eb 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/tools/logic_gate.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/tools/logic_gate.yml @@ -20,7 +20,22 @@ - material: Cable amount: 2 doAfter: 1 + - to: power_sensor + steps: + - material: Steel + amount: 3 + doAfter: 1 + - material: Cable + amount: 2 + doAfter: 1 + - tag: Multitool + icon: + sprite: Objects/Tools/multitool.rsi + state: icon + name: a multitool - node: logic_gate entity: LogicGate - node: edge_detector entity: EdgeDetector + - node: power_sensor + entity: PowerSensor diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/air_alarms.yml b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/air_alarms.yml index ca5cb5f108..5aee750b9a 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/air_alarms.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/air_alarms.yml @@ -70,7 +70,9 @@ - !type:ContainerNotEmpty container: board completed: - - !type:EmptyAllContainers {} + - !type:EmptyAllContainers + pickup: true + emptyAtUser: true steps: - tool: Prying doAfter: 1 @@ -147,7 +149,9 @@ - !type:ContainerNotEmpty container: board completed: - - !type:EmptyAllContainers {} + - !type:EmptyAllContainers + pickup: true + emptyAtUser: true steps: - tool: Prying doAfter: 1 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/atmos_pipes.yml b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/atmos_pipes.yml index 6c8439ff4e..771c63ebd5 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/atmos_pipes.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/atmos_pipes.yml @@ -113,3 +113,19 @@ steps: - tool: Welding doAfter: 1 + + - node: broken + entity: GasPipeBroken + edges: + - to: start + conditions: + - !type:EntityAnchored + anchored: false + completed: + - !type:SpawnPrototype + prototype: SheetSteel1 + amount: 1 + - !type:DeleteEntity + steps: + - tool: Welding + doAfter: 1 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/disposal_pipes.yml b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/disposal_pipes.yml index b626105532..1b3aa3105b 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/disposal_pipes.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/disposal_pipes.yml @@ -51,6 +51,23 @@ - material: Steel amount: 2 doAfter: 1 + # DisposalSignalRouter + - to: signal_router + steps: + - material: Steel + amount: 2 + doAfter: 1 + - material: Cable + amount: 1 + doAfter: 1 + - to: signal_router_flipped + steps: + - material: Steel + amount: 2 + doAfter: 1 + - material: Cable + amount: 1 + doAfter: 1 - node: broken entity: DisposalPipeBroken edges: @@ -187,4 +204,33 @@ - !type:DeleteEntity steps: - tool: Welding - doAfter: 1 \ No newline at end of file + doAfter: 1 + # DisposalRouter + - node: signal_router + entity: DisposalSignalRouter + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetSteel1 + amount: 2 + - !type:SpawnPrototype + prototype: CableApcStack1 + - !type:DeleteEntity + steps: + - tool: Welding + doAfter: 1 + - node: signal_router_flipped + entity: DisposalSignalRouterFlipped + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetSteel1 + amount: 2 + - !type:SpawnPrototype + prototype: CableApcStack1 + - !type:DeleteEntity + steps: + - tool: Welding + doAfter: 1 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/intercom.yml b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/intercom.yml index 8da7a2a032..2247860f89 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/intercom.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/intercom.yml @@ -66,7 +66,9 @@ - !type:ContainerNotEmpty container: board completed: - - !type:EmptyAllContainers {} + - !type:EmptyAllContainers + pickup: true + emptyAtUser: true steps: - tool: Prying doAfter: 1 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/lighting.yml b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/lighting.yml new file mode 100644 index 0000000000..378feb1cf8 --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/lighting.yml @@ -0,0 +1,120 @@ +- type: constructionGraph + id: CyanLight + start: start + graph: + - node: start + edges: + - to: icon + steps: + - material: Glass + amount: 1 + doAfter: 1 + - tag: CrystalCyan + name: cyan crystal shard + icon: + sprite: Objects/Materials/Shards/crystal.rsi + state: shard1 + color: #52ff39 + doAfter: 1 + - node: icon + entity: LightTubeCrystalCyan + +- type: constructionGraph + id: BlueLight + start: start + graph: + - node: start + edges: + - to: icon + steps: + - material: Glass + amount: 2 + doAfter: 1 + - tag: CrystalBlue + name: blue crystal shard + icon: + sprite: Objects/Materials/Shards/crystal.rsi + state: shard1 + doAfter: 1 + - node: icon + entity: LightTubeCrystalBlue + +- type: constructionGraph + id: PinkLight + start: start + graph: + - node: start + edges: + - to: icon + steps: + - material: Glass + amount: 2 + doAfter: 1 + - tag: CrystalPink + name: pink crystal shard + icon: + sprite: Objects/Materials/Shards/crystal.rsi + state: shard1 + doAfter: 1 + - node: icon + entity: LightTubeCrystalPink + +- type: constructionGraph + id: OrangeLight + start: start + graph: + - node: start + edges: + - to: icon + steps: + - material: Glass + amount: 2 + doAfter: 1 + - tag: CrystalOrange + name: orange crystal shard + icon: + sprite: Objects/Materials/Shards/crystal.rsi + state: shard1 + doAfter: 1 + - node: icon + entity: LightTubeCrystalOrange + +- type: constructionGraph + id: RedLight + start: start + graph: + - node: start + edges: + - to: icon + steps: + - material: Glass + amount: 2 + doAfter: 1 + - tag: CrystalRed + name: red crystal shard + icon: + sprite: Objects/Materials/Shards/crystal.rsi + state: shard1 + doAfter: 1 + - node: icon + entity: LightTubeCrystalRed + +- type: constructionGraph + id: GreenLight + start: start + graph: + - node: start + edges: + - to: icon + steps: + - material: Glass + amount: 2 + doAfter: 1 + - tag: CrystalGreen + name: green crystal shard + icon: + sprite: Objects/Materials/Shards/crystal.rsi + state: shard1 + doAfter: 1 + - node: icon + entity: LightTubeCrystalGreen diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/station_maps.yml b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/station_maps.yml index 43a111ec7f..eb826a0f98 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/station_maps.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/station_maps.yml @@ -70,7 +70,9 @@ - !type:ContainerNotEmpty container: board completed: - - !type:EmptyAllContainers {} + - !type:EmptyAllContainers + pickup: true + emptyAtUser: true steps: - tool: Prying doAfter: 1 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/timer.yml b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/timer.yml index 6c5def7c4c..0d400a848d 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/timer.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/timer.yml @@ -84,7 +84,9 @@ - !type:ContainerNotEmpty container: board completed: - - !type:EmptyAllContainers {} + - !type:EmptyAllContainers + pickup: true + emptyAtUser: true - node: screenElectronics edges: @@ -101,7 +103,9 @@ - !type:ContainerNotEmpty container: board completed: - - !type:EmptyAllContainers {} + - !type:EmptyAllContainers + pickup: true + emptyAtUser: true - node: brigElectronics edges: @@ -118,7 +122,9 @@ - !type:ContainerNotEmpty container: board completed: - - !type:EmptyAllContainers {} + - !type:EmptyAllContainers + pickup: true + emptyAtUser: true - node: screenGlass entity: TimerFrame diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/wallmount_generator.yml b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/wallmount_generator.yml index 3df8d9c818..24d928cc40 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/wallmount_generator.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/wallmount_generator.yml @@ -84,7 +84,9 @@ - !type:ContainerNotEmpty container: board completed: - - !type:EmptyAllContainers {} + - !type:EmptyAllContainers + pickup: true + emptyAtUser: true steps: - tool: Prying doAfter: 1 @@ -98,7 +100,9 @@ - !type:ContainerNotEmpty container: board completed: - - !type:EmptyAllContainers {} + - !type:EmptyAllContainers + pickup: true + emptyAtUser: true steps: - tool: Prying doAfter: 1 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/wallmount_substation.yml b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/wallmount_substation.yml index 78a1a34c6a..381871f94a 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/wallmount_substation.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/wallmount_substation.yml @@ -68,7 +68,9 @@ - !type:ContainerNotEmpty container: board completed: - - !type:EmptyAllContainers {} + - !type:EmptyAllContainers + pickup: true + emptyAtUser: true steps: - tool: Prying doAfter: 1 diff --git a/Resources/Prototypes/Recipes/Construction/clothing.yml b/Resources/Prototypes/Recipes/Construction/clothing.yml index a94a3652de..5af668693b 100644 --- a/Resources/Prototypes/Recipes/Construction/clothing.yml +++ b/Resources/Prototypes/Recipes/Construction/clothing.yml @@ -30,3 +30,36 @@ description: Helmet made of bones. icon: { sprite: Clothing/Head/Helmets/bone_helmet.rsi, state: icon } objectType: Item + +- type: construction + name: banana clown mask + id: BananaClownMask + graph: BananaClownMask + startNode: start + targetNode: mask + category: construction-category-clothing + description: A clown mask upgraded with banana peels. + icon: { sprite: Clothing/Mask/clown_banana.rsi, state: icon } + objectType: Item + +- type: construction + name: banana clown suit + id: BananaClownJumpsuit + graph: BananaClownJumpsuit + startNode: start + targetNode: jumpsuit + category: construction-category-clothing + description: A clown suit upgraded with banana peels. + icon: { sprite: Clothing/Uniforms/Jumpsuit/clown_banana.rsi, state: icon } + objectType: Item + +- type: construction + name: banana clown shoes + id: BananaClownShoes + graph: BananaClownShoes + startNode: start + targetNode: shoes + category: construction-category-clothing + description: A pair of clown shoes upgraded with banana peels. + icon: { sprite: Clothing/Shoes/Specific/clown_banana.rsi, state: icon } + objectType: Item \ No newline at end of file diff --git a/Resources/Prototypes/Recipes/Construction/lighting.yml b/Resources/Prototypes/Recipes/Construction/lighting.yml new file mode 100644 index 0000000000..0533f70f1a --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/lighting.yml @@ -0,0 +1,65 @@ +- type: construction + name: cyan light tube + id: CyanLight + graph: CyanLight + startNode: start + targetNode: icon + category: construction-category-utilities + description: A high powered light tube containing a cyan crystal + icon: { sprite: Objects/Power/light_tube.rsi, state: normal } + objectType: Item + +- type: construction + name: blue light tube + id: BlueLight + graph: BlueLight + startNode: start + targetNode: icon + category: construction-category-utilities + description: A high powered light tube containing a blue crystal + icon: { sprite: Objects/Power/light_tube.rsi, state: normal } + objectType: Item + +- type: construction + name: pink light tube + id: PinkLight + graph: PinkLight + startNode: start + targetNode: icon + category: construction-category-utilities + description: A high powered light tube containing a pink crystal + icon: { sprite: Objects/Power/light_tube.rsi, state: normal } + objectType: Item + +- type: construction + name: orange light tube + id: OrangeLight + graph: OrangeLight + startNode: start + targetNode: icon + category: construction-category-utilities + description: A high powered light tube containing an orange crystal + icon: { sprite: Objects/Power/light_tube.rsi, state: normal } + objectType: Item + +- type: construction + name: red light tube + id: RedLight + graph: RedLight + startNode: start + targetNode: icon + category: construction-category-utilities + description: A high powered light tube containing a red crystal + icon: { sprite: Objects/Power/light_tube.rsi, state: normal } + objectType: Item + +- type: construction + name: green light tube + id: GreenLight + graph: GreenLight + startNode: start + targetNode: icon + category: construction-category-utilities + description: A high powered light tube containing a green crystal + icon: { sprite: Objects/Power/light_tube.rsi, state: normal } + objectType: Item diff --git a/Resources/Prototypes/Recipes/Construction/structures.yml b/Resources/Prototypes/Recipes/Construction/structures.yml index d1b711ec0a..20343111a0 100644 --- a/Resources/Prototypes/Recipes/Construction/structures.yml +++ b/Resources/Prototypes/Recipes/Construction/structures.yml @@ -232,6 +232,23 @@ placementMode: SnapgridCenter canRotate: false +- type: construction + name: diagonal grille + id: GrilleDiagonal + graph: GrilleDiagonal + startNode: start + targetNode: grilleDiagonal + category: construction-category-structures + description: A flimsy framework of iron rods. + conditions: + - !type:TileNotBlocked + failIfSpace: false + icon: + sprite: Structures/Walls/grille.rsi + state: grille_diagonal + objectType: Structure + placementMode: SnapgridCenter + - type: construction name: window id: Window @@ -251,6 +268,24 @@ placementMode: SnapgridCenter canRotate: false +- type: construction + name: diagonal window + id: WindowDiagonal + graph: WindowDiagonal + startNode: start + targetNode: windowDiagonal + category: construction-category-structures + description: Clear. + canBuildInImpassable: true + conditions: + - !type:EmptyOrWindowValidInTile + - !type:NoWindowsInTile + icon: + sprite: Structures/Windows/window_diagonal.rsi + state: state1 + objectType: Structure + placementMode: SnapgridCenter + - type: construction name: reinforced window id: ReinforcedWindow @@ -270,6 +305,24 @@ placementMode: SnapgridCenter canRotate: false +- type: construction + name: diagonal reinforced window + id: ReinforcedWindowDiagonal + graph: WindowDiagonal + startNode: start + targetNode: reinforcedWindowDiagonal + category: construction-category-structures + description: Clear but tough. + canBuildInImpassable: true + conditions: + - !type:EmptyOrWindowValidInTile + - !type:NoWindowsInTile + icon: + sprite: Structures/Windows/reinforced_window_diagonal.rsi + state: state1 + objectType: Structure + placementMode: SnapgridCenter + - type: construction name: tinted window id: TintedWindow @@ -327,6 +380,42 @@ placementMode: SnapgridCenter canRotate: false +- type: construction + name: diagonal plasma window + id: PlasmaWindowDiagonal + graph: WindowDiagonal + startNode: start + targetNode: plasmaWindowDiagonal + category: construction-category-structures + canBuildInImpassable: true + description: Clear and even tougher, with a purple tint. + conditions: + - !type:EmptyOrWindowValidInTile + - !type:NoWindowsInTile + icon: + sprite: Structures/Windows/plasma_diagonal.rsi + state: state1 + objectType: Structure + placementMode: SnapgridCenter + +- type: construction + name: diagonal reinforced plasma window + id: ReinforcedPlasmaWindowDiagonal + graph: WindowDiagonal + startNode: start + targetNode: reinforcedPlasmaWindowDiagonal + category: construction-category-structures + canBuildInImpassable: true + description: Fire resistant and even tougher, with a purple tint. + conditions: + - !type:EmptyOrWindowValidInTile + - !type:NoWindowsInTile + icon: + sprite: Structures/Windows/reinforced_plasma_diagonal.rsi + state: state1 + objectType: Structure + placementMode: SnapgridCenter + - type: construction name: directional window id: WindowDirectional @@ -437,6 +526,42 @@ placementMode: SnapgridCenter canRotate: false +- type: construction + name: diagonal uranium window + id: UraniumWindowDiagonal + graph: WindowDiagonal + startNode: start + targetNode: uraniumWindowDiagonal + category: construction-category-structures + canBuildInImpassable: true + description: Clear and much tougher than regular glass, with added RadAbsorb to protect you from deadly radiation. + conditions: + - !type:EmptyOrWindowValidInTile + - !type:NoWindowsInTile + icon: + sprite: Structures/Windows/uranium_window_diagonal.rsi + state: state1 + objectType: Structure + placementMode: SnapgridCenter + +- type: construction + name: diagonal reinforced uranium window + id: ReinforcedUraniumWindowDiagonal + graph: WindowDiagonal + startNode: start + targetNode: reinforcedUraniumWindowDiagonal + category: construction-category-structures + canBuildInImpassable: true + description: Clear and much tougher than regular glass, with added RadAbsorb to protect you from deadly radiation. + conditions: + - !type:EmptyOrWindowValidInTile + - !type:NoWindowsInTile + icon: + sprite: Structures/Windows/reinforced_uranium_diagonal.rsi + state: state1 + objectType: Structure + placementMode: SnapgridCenter + - type: construction name: firelock id: Firelock diff --git a/Resources/Prototypes/Recipes/Construction/tools.yml b/Resources/Prototypes/Recipes/Construction/tools.yml index cfa968b6ec..a6d9e33f4c 100644 --- a/Resources/Prototypes/Recipes/Construction/tools.yml +++ b/Resources/Prototypes/Recipes/Construction/tools.yml @@ -30,3 +30,14 @@ description: An edge detector for signals. icon: { sprite: Objects/Devices/gates.rsi, state: edge_detector } objectType: Item + +- type: construction + name: power sensor + id: PowerSensor + graph: LogicGate + startNode: start + targetNode: power_sensor + category: construction-category-tools + description: A power network checking device for signals. + icon: { sprite: Objects/Devices/gates.rsi, state: power_sensor } + objectType: Item diff --git a/Resources/Prototypes/Recipes/Construction/utilities.yml b/Resources/Prototypes/Recipes/Construction/utilities.yml index d1dac1d1b0..bdb0c814a4 100644 --- a/Resources/Prototypes/Recipes/Construction/utilities.yml +++ b/Resources/Prototypes/Recipes/Construction/utilities.yml @@ -242,6 +242,37 @@ state: conpipe-j2s mirror: DisposalRouter +- type: construction + name: disposal signal router + description: A signal-controlled three-way router. + id: DisposalSignalRouter + graph: DisposalPipe + startNode: start + targetNode: signal_router + category: construction-category-utilities + placementMode: SnapgridCenter + canBuildInImpassable: false + icon: + sprite: Structures/Piping/disposal.rsi + state: signal-router-free + mirror: DisposalSignalRouterFlipped + +- type: construction + hide: true + name: disposal signal router + description: A signal-controlled three-way router. + id: DisposalSignalRouterFlipped + graph: DisposalPipe + startNode: start + targetNode: signal_router_flipped + category: construction-category-utilities + placementMode: SnapgridCenter + canBuildInImpassable: false + icon: + sprite: Structures/Piping/disposal.rsi + state: signal-router-flipped-free + mirror: DisposalSignalRouter + - type: construction name: disposal junction description: A three-way junction. The arrow indicates where items exit. @@ -446,7 +477,7 @@ conditions: - !type:TileNotBlocked {} - !type:NoUnstackableInTile - + - type: construction name: passive vent description: Unpowered vent that equalises gases on both sides. @@ -468,7 +499,7 @@ conditions: - !type:TileNotBlocked {} - !type:NoUnstackableInTile - + - type: construction name: air scrubber description: Sucks gas into connected pipes. @@ -490,7 +521,7 @@ conditions: - !type:TileNotBlocked {} - !type:NoUnstackableInTile - + - type: construction name: air injector description: Injects air into the atmosphere. @@ -512,7 +543,7 @@ conditions: - !type:TileNotBlocked {} - !type:NoUnstackableInTile - + # ATMOS BINARY - type: construction name: gas pump @@ -821,8 +852,8 @@ category: construction-category-utilities description: "A wallmounted timer for sending timed signals to things. This one has a screen for displaying text." icon: - sprite: Structures/Wallmounts/textscreen.rsi - state: textscreen + sprite: Structures/Wallmounts/signalscreen.rsi + state: signalscreen objectType: Structure canRotate: false placementMode: SnapgridCenter @@ -839,8 +870,8 @@ category: construction-category-utilities description: "A wallmounted timer for sending timed signals to things. This one has a screen for displaying text and requires security access to use." icon: - sprite: Structures/Wallmounts/textscreen.rsi - state: textscreen + sprite: Structures/Wallmounts/signalscreen.rsi + state: signalscreen objectType: Structure canRotate: false placementMode: SnapgridCenter diff --git a/Resources/Prototypes/Recipes/Construction/web.yml b/Resources/Prototypes/Recipes/Construction/web.yml index 2d61ac1515..9a0d832d01 100644 --- a/Resources/Prototypes/Recipes/Construction/web.yml +++ b/Resources/Prototypes/Recipes/Construction/web.yml @@ -13,6 +13,9 @@ placementMode: SnapgridCenter canRotate: false canBuildInImpassable: false + entityWhitelist: + tags: + - SpiderCraft conditions: - !type:TileNotBlocked @@ -31,6 +34,9 @@ placementMode: SnapgridCenter canRotate: false canBuildInImpassable: false + entityWhitelist: + tags: + - SpiderCraft conditions: - !type:TileNotBlocked @@ -49,6 +55,9 @@ placementMode: SnapgridCenter canRotate: false canBuildInImpassable: false + entityWhitelist: + tags: + - SpiderCraft conditions: - !type:TileNotBlocked @@ -66,6 +75,9 @@ objectType: Structure placementMode: SnapgridCenter canBuildInImpassable: false + entityWhitelist: + tags: + - SpiderCraft - type: construction name: web crate @@ -82,6 +94,9 @@ placementMode: SnapgridCenter canRotate: false canBuildInImpassable: false + entityWhitelist: + tags: + - SpiderCraft - type: construction name: web door @@ -97,5 +112,8 @@ objectType: Structure placementMode: SnapgridCenter canBuildInImpassable: false + entityWhitelist: + tags: + - SpiderCraft conditions: - !type:TileNotBlocked diff --git a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml index 92ec105246..10fb7b3aef 100644 --- a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml @@ -1137,6 +1137,16 @@ FoodCakePlain: 1 FoodLemon: 3 +- type: microwaveMealRecipe + id: RecipeLemoonCake + name: lemoon cake recipe + result: FoodCakeLemoon + time: 5 + solids: + FoodCakePlain: 1 + FoodLemoon: 2 + FoodBerries: 1 #dark colouring + - type: microwaveMealRecipe id: RecipeOrangeCake name: orange cake recipe @@ -1259,6 +1269,31 @@ solids: FoodCakePlain: 1 +- type: microwaveMealRecipe + id: RecipeCatCake + name: cat cake recipe + result: MobCatCake + time: 15 + reagents: + Milk: 15 + Cognizine: 5 + solids: + FoodCakePlain: 1 + FoodSnackRaisins: 1 + OrganAnimalHeart: 1 + +- type: microwaveMealRecipe + id: RecipeBreadDog + name: bread dog recipe + result: MobBreadDog + time: 15 + reagents: + Cognizine: 5 + solids: + FoodBreadSausage: 1 + OrganAnimalHeart: 1 + FoodSpaceshroomCooked: 1 + - type: microwaveMealRecipe id: RecipeGrapeTart name: grape tart recipe @@ -1600,6 +1635,14 @@ Sigynate: 50 Dermaline: 50 +- type: microwaveMealRecipe + id: RecipeTrashBakedBananaPeel + name: baked banana peel recipe + result: TrashBakedBananaPeel + time: 5 + solids: + TrashBananaPeel: 1 + # Suppermatter - type: microwaveMealRecipe id: RecipeSuppermatter diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/artifact.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/artifact.yml index 9095cb68a1..a0961a1669 100644 --- a/Resources/Prototypes/Recipes/Crafting/Graphs/artifact.yml +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/artifact.yml @@ -2,31 +2,12 @@ id: Artifact start: start graph: - - node: start - edges: - - to: done - steps: - - tag: ArtifactFragment - name: artifact fragment - icon: - sprite: Objects/Specific/Xenoarchaeology/artifact_fragments.rsi - state: ancientball1 - - tag: ArtifactFragment - name: artifact fragment - icon: - sprite: Objects/Specific/Xenoarchaeology/artifact_fragments.rsi - state: ancientball2 - - tag: ArtifactFragment - name: artifact fragment - icon: - sprite: Objects/Specific/Xenoarchaeology/artifact_fragments.rsi - state: ancientball3 - - tag: ArtifactFragment - name: artifact fragment - icon: - sprite: Objects/Specific/Xenoarchaeology/artifact_fragments.rsi - state: ancientball4 - doAfter: 5 - - - node: done - entity: VariedXenoArtifactItem + - node: start + edges: + - to: done + steps: + - material: ArtifactFragment + amount: 4 + doAfter: 5 + - node: done + entity: VariedXenoArtifactItem diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/cotton.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/cotton.yml new file mode 100644 index 0000000000..dcf0ae4be7 --- /dev/null +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/cotton.yml @@ -0,0 +1,13 @@ +- type: constructionGraph + id: CottonObjects + start: start + graph: + - node: start + edges: + - to: cottoncloth + steps: + - material: Cotton + amount: 4 + doAfter: 3 + - node: cottoncloth + entity: MaterialCloth1 diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/ied.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/ied.yml new file mode 100644 index 0000000000..bdf06e558f --- /dev/null +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/ied.yml @@ -0,0 +1,75 @@ +- type: constructionGraph + id: ImprovisedExplosive + start: start + graph: + - node: start + edges: + - to: empty + steps: + - tag: DrinkCan + name: an empty can + icon: + sprite: Objects/Consumable/Drinks/cola.rsi + state: icon_open + doAfter: 1 + - tag: Igniter + name: an igniter + icon: + sprite: Objects/Devices/igniter.rsi + state: icon + doAfter: 1 + - node: empty + entity: ImprovisedExplosiveEmpty + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: DrinkColaCanEmpty + - !type:SpawnPrototype + prototype: Igniter + - !type:DeleteEntity {} + steps: + - tool: Prying + doAfter: 1 + - to: fuel + conditions: + - !type:MinSolution + solution: drink + reagent: + ReagentId: WeldingFuel + quantity: 30 + steps: + - tool: Screwing + doAfter: 1 + - node: fuel + entity: ImprovisedExplosiveFuel + edges: + - to: empty + conditions: + - !type:SolutionEmpty + solution: drink + steps: + - tool: Screwing + doAfter: 1 + - to: ied + conditions: # no dumping out 29u of the fuel then adding wires :) + - !type:MinSolution + solution: drink + reagent: + ReagentId: WeldingFuel + quantity: 30 + steps: + - material: Cable + amount: 5 + doAfter: 2 + - node: ied + entity: ImprovisedExplosive + edges: + - to: fuel + completed: + - !type:SpawnPrototype + prototype: CableApcStack1 + amount: 5 + steps: + - tool: Cutting + doAfter: 2 diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml new file mode 100644 index 0000000000..5b0cc1f9a2 --- /dev/null +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml @@ -0,0 +1,27 @@ +- type: constructionGraph + id: ClosetSteel + start: start + graph: + - node: start + edges: + - to: done + steps: + - material: Steel + amount: 4 + doAfter: 5 + - node: done + entity: ClosetSteelBase + edges: + - to: start + steps: + - tool: Screwing + doAfter: 5 + conditions: + - !type:StorageWelded + welded: false + completed: + - !type:SpawnPrototype + prototype: SheetSteel1 + amount: 4 + - !type:EmptyAllContainers + - !type:DeleteEntity diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/web.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/web.yml index 2bde191cdb..7c17cbc080 100644 --- a/Resources/Prototypes/Recipes/Crafting/Graphs/web.yml +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/web.yml @@ -36,6 +36,18 @@ amount: 4 doAfter: 6 + - to: shield + steps: + - material: WebSilk + amount: 12 + doAfter: 6 + + - to: boots + steps: + - material: WebSilk + amount: 2 + doAfter: 4 + # Deconstruction - node: tile entity: FloorTileItemWeb @@ -51,3 +63,9 @@ - node: cloth entity: MaterialCloth1 + + - node: shield + entity: WebShield + + - node: boots + entity: ClothingShoesBootsWinterWeb diff --git a/Resources/Prototypes/Recipes/Crafting/improvised.yml b/Resources/Prototypes/Recipes/Crafting/improvised.yml index 2f3b34db2b..9fb10b741d 100644 --- a/Resources/Prototypes/Recipes/Crafting/improvised.yml +++ b/Resources/Prototypes/Recipes/Crafting/improvised.yml @@ -162,3 +162,29 @@ icon: sprite: Objects/Misc/rifle_stock.rsi state: icon + +- type: construction + name: improvised explosive device + id: improvisedexplosive + graph: ImprovisedExplosive + startNode: start + targetNode: ied + category: construction-category-weapons + objectType: Item + description: A weak, improvised incendiary device. + icon: + sprite: Objects/Weapons/Bombs/ied.rsi + state: icon + +- type: construction + name: cotton woven cloth + id: CottonWovenCloth + graph: CottonObjects + startNode: start + targetNode: cottoncloth + category: construction-category-misc + description: "A homemade piece of cotton cloth, it feels coarse." + icon: + sprite: Objects/Materials/materials.rsi + state: cloth_3 + objectType: Item diff --git a/Resources/Prototypes/Recipes/Crafting/tallbox.yml b/Resources/Prototypes/Recipes/Crafting/tallbox.yml new file mode 100644 index 0000000000..09469093f7 --- /dev/null +++ b/Resources/Prototypes/Recipes/Crafting/tallbox.yml @@ -0,0 +1,10 @@ +- type: construction + id: ClosetSteel + name: closet + graph: ClosetSteel + startNode: start + targetNode: done + category: construction-category-storage + description: A tall steel box that cannot be locked. + icon: { sprite: Structures/Storage/closet.rsi, state: generic_icon } + objectType: Structure diff --git a/Resources/Prototypes/Recipes/Crafting/web.yml b/Resources/Prototypes/Recipes/Crafting/web.yml index 0cd8b22c0a..5fe9d1b85a 100644 --- a/Resources/Prototypes/Recipes/Crafting/web.yml +++ b/Resources/Prototypes/Recipes/Crafting/web.yml @@ -6,6 +6,9 @@ targetNode: tile category: construction-category-tiles description: "Nice and smooth." + entityWhitelist: + tags: + - SpiderCraft icon: sprite: Objects/Tiles/web.rsi state: icon @@ -19,6 +22,9 @@ targetNode: coat category: construction-category-clothing description: "Surprisingly warm and durable." + entityWhitelist: + tags: + - SpiderCraft icon: sprite: Clothing/OuterClothing/WinterCoats/coatweb.rsi state: icon @@ -32,6 +38,9 @@ targetNode: jumpsuit category: construction-category-clothing description: "At least it's something." + entityWhitelist: + tags: + - SpiderCraft icon: sprite: Clothing/Uniforms/Jumpsuit/web.rsi state: icon @@ -45,6 +54,9 @@ targetNode: jumpskirt category: construction-category-clothing description: "At least it's something." + entityWhitelist: + tags: + - SpiderCraft icon: sprite: Clothing/Uniforms/Jumpskirt/web.rsi state: icon @@ -58,7 +70,42 @@ targetNode: cloth category: construction-category-materials description: "Feels just like cloth, strangely enough." + entityWhitelist: + tags: + - SpiderCraft icon: sprite: Objects/Materials/materials.rsi state: cloth_3 objectType: Item + +- type: construction + name: web shield + id: WebShield + graph: WebObjects + startNode: start + targetNode: shield + category: construction-category-clothing + description: "It's thick enough to handle a few blows, but probably not heat." + entityWhitelist: + tags: + - SpiderCraft + icon: + sprite: Objects/Weapons/Melee/web-shield.rsi + state: icon + objectType: Item + +- type: construction + name: web winter boots + id: ClothingShoesBootsWinterWeb + graph: WebObjects + startNode: start + targetNode: boots + category: construction-category-clothing + description: "Tightly woven web should protect against the cold" + entityWhitelist: + tags: + - SpiderCraft + icon: + sprite: Clothing/Shoes/Boots/winterbootsweb.rsi + state: icon + objectType: Item diff --git a/Resources/Prototypes/Recipes/Lathes/chemistry.yml b/Resources/Prototypes/Recipes/Lathes/chemistry.yml index f82d66ec15..3a54bfe1b3 100644 --- a/Resources/Prototypes/Recipes/Lathes/chemistry.yml +++ b/Resources/Prototypes/Recipes/Lathes/chemistry.yml @@ -20,6 +20,14 @@ Steel: 250 Plastic: 50 +- type: latheRecipe + id: SyringeCryostasis + result: SyringeCryostasis + completetime: 2 + materials: + Steel: 200 + Plastic: 50 + - type: latheRecipe id: Dropper result: Dropper @@ -41,21 +49,23 @@ result: BluespaceBeaker completetime: 2 materials: - Steel: 500 - Plastic: 500 - Plasma: 150 + Steel: 200 #Cheaper Due to Needing Bluespace + Plastic: 200 + Plasma: 50 Silver: 50 + Bluespace: 100 #DeltaV: Bluespace - type: latheRecipe id: SyringeBluespace result: SyringeBluespace completetime: 2 materials: - Steel: 100 - Plastic: 150 - Glass: 250 - Plasma: 100 - Silver: 50 + Steel: 100 #Cheaper Due to Needing Bluespace + Plastic: 100 + Glass: 200 + Plasma: 50 + Bluespace: 100 #DeltaV: Bluespace + #Silver: 50 - type: latheRecipe id: PillCanister diff --git a/Resources/Prototypes/Recipes/Lathes/clothing.yml b/Resources/Prototypes/Recipes/Lathes/clothing.yml index 328b557460..942970a7d6 100644 --- a/Resources/Prototypes/Recipes/Lathes/clothing.yml +++ b/Resources/Prototypes/Recipes/Lathes/clothing.yml @@ -36,6 +36,23 @@ Cloth: 300 Durathread: 100 +- type: latheRecipe + id: ClothingUniformJumpsuitCapFormal + result: ClothingUniformJumpsuitCapFormal + completetime: 4 + materials: + Cloth: 300 + Durathread: 100 + + +- type: latheRecipe + id: ClothingUniformJumpskirtCapFormalDress + result: ClothingUniformJumpskirtCapFormalDress + completetime: 4 + materials: + Cloth: 300 + Durathread: 100 + - type: latheRecipe id: ClothingUniformJumpskirtCaptain result: ClothingUniformJumpskirtCaptain @@ -65,6 +82,46 @@ materials: Cloth: 500 #It's armored but I don't want to include durathread for a non-head +- type: latheRecipe + id: ClothingUniformJumpsuitCentcomAgent + result: ClothingUniformJumpsuitCentcomAgent + completetime: 4 + materials: + Cloth: 300 + Durathread: 100 + +- type: latheRecipe + id: ClothingUniformJumpsuitCentcomFormal + result: ClothingUniformJumpsuitCentcomFormal + completetime: 4 + materials: + Cloth: 300 + Durathread: 100 + +- type: latheRecipe + id: ClothingUniformJumpskirtCentcomFormalDress + result: ClothingUniformJumpskirtCentcomFormalDress + completetime: 4 + materials: + Cloth: 300 + Durathread: 100 + +- type: latheRecipe + id: ClothingUniformJumpsuitCentcomOfficer + result: ClothingUniformJumpsuitCentcomOfficer + completetime: 4 + materials: + Cloth: 300 + Durathread: 100 + +- type: latheRecipe + id: ClothingUniformJumpsuitCentcomOfficial + result: ClothingUniformJumpsuitCentcomOfficial + completetime: 4 + materials: + Cloth: 300 + Durathread: 100 + - type: latheRecipe id: ClothingUniformJumpsuitChiefEngineer result: ClothingUniformJumpsuitChiefEngineer @@ -220,6 +277,38 @@ Cloth: 300 Durathread: 100 +- type: latheRecipe + id: ClothingUniformJumpsuitHosFormal + result: ClothingUniformJumpsuitHosFormal + completetime: 4 + materials: + Cloth: 300 + Durathread: 100 + +- type: latheRecipe + id: ClothingUniformJumpskirtHosFormal + result: ClothingUniformJumpskirtHosFormal + completetime: 4 + materials: + Cloth: 300 + Durathread: 100 + +- type: latheRecipe + id: ClothingUniformJumpsuitHoSParadeMale + result: ClothingUniformJumpsuitHoSParadeMale + completetime: 5 + materials: + Cloth: 300 + Durathread: 100 + +- type: latheRecipe + id: ClothingUniformJumpskirtHoSParadeMale + result: ClothingUniformJumpskirtHoSParadeMale + completetime: 5 + materials: + Cloth: 300 + Durathread: 100 + - type: latheRecipe id: ClothingUniformJumpsuitHoSAlt result: ClothingUniformJumpsuitHoSAlt @@ -228,6 +317,22 @@ Cloth: 300 Durathread: 100 +- type: latheRecipe + id: ClothingUniformJumpsuitHoSBlue + result: ClothingUniformJumpsuitHoSBlue + completetime: 4 + materials: + Cloth: 300 + Durathread: 100 + +- type: latheRecipe + id: ClothingUniformJumpsuitHoSGrey + result: ClothingUniformJumpsuitHoSGrey + completetime: 4 + materials: + Cloth: 300 + Durathread: 100 + - type: latheRecipe id: ClothingUniformJumpskirtHoSAlt result: ClothingUniformJumpskirtHoSAlt @@ -320,6 +425,20 @@ materials: Cloth: 300 +- type: latheRecipe + id: ClothingUniformJumpsuitOperative + result: ClothingUniformJumpsuitOperative + completetime: 4 + materials: + Cloth: 300 + +- type: latheRecipe + id: ClothingUniformJumpskirtOperative + result: ClothingUniformJumpskirtOperative + completetime: 4 + materials: + Cloth: 300 + - type: latheRecipe id: ClothingUniformJumpsuitParamedic result: ClothingUniformJumpsuitParamedic @@ -434,6 +553,41 @@ materials: Cloth: 300 +- type: latheRecipe + id: ClothingUniformJumpsuitSyndieFormal + result: ClothingUniformJumpsuitSyndieFormal + completetime: 4 + materials: + Cloth: 300 + +- type: latheRecipe + id: ClothingUniformJumpskirtSyndieFormalDress + result: ClothingUniformJumpskirtSyndieFormalDress + completetime: 4 + materials: + Cloth: 300 + +- type: latheRecipe + id: ClothingUniformJumpsuitPyjamaSyndicateBlack + result: ClothingUniformJumpsuitPyjamaSyndicateBlack + completetime: 4 + materials: + Cloth: 300 + +- type: latheRecipe + id: ClothingUniformJumpsuitPyjamaSyndicatePink + result: ClothingUniformJumpsuitPyjamaSyndicatePink + completetime: 4 + materials: + Cloth: 300 + +- type: latheRecipe + id: ClothingUniformJumpsuitPyjamaSyndicateRed + result: ClothingUniformJumpsuitPyjamaSyndicateRed + completetime: 4 + materials: + Cloth: 300 + - type: latheRecipe id: ClothingUniformJumpsuitWarden result: ClothingUniformJumpsuitWarden @@ -464,6 +618,14 @@ Cloth: 300 Durathread: 300 +- type: latheRecipe + id: ClothingOuterWinterCentcom + result: ClothingOuterWinterCentcom + completetime: 3.2 + materials: + Cloth: 300 + Durathread: 300 + - type: latheRecipe id: ClothingOuterWinterCMO result: ClothingOuterWinterCMO @@ -700,3 +862,17 @@ completetime: 3.2 materials: Cloth: 500 + +- type: latheRecipe + id: ClothingOuterWinterSyndie + result: ClothingOuterWinterSyndie + completetime: 3.2 + materials: + Cloth: 500 + +- type: latheRecipe + id: ClothingOuterWinterSyndieCap + result: ClothingOuterWinterSyndieCap + completetime: 3.2 + materials: + Cloth: 500 diff --git a/Resources/Prototypes/Recipes/Lathes/devices.yml b/Resources/Prototypes/Recipes/Lathes/devices.yml index 004861017c..3bb3d54c10 100644 --- a/Resources/Prototypes/Recipes/Lathes/devices.yml +++ b/Resources/Prototypes/Recipes/Lathes/devices.yml @@ -108,8 +108,9 @@ materials: Steel: 2000 Silver: 750 - Plasma: 1500 + Plasma: 1250 #Higher Plasma due to it needing less bluespace Uranium: 150 + Bluespace: 300 #DeltaV: Bluespace Exists - type: latheRecipe id: ClothingBackpackSatchelHolding @@ -118,8 +119,9 @@ materials: Steel: 2000 Silver: 750 - Plasma: 1500 + Plasma: 1250 #Higher Plasma due to it needing less bluespace Uranium: 150 + Bluespace: 300 #DeltaV: Bluespace Exists - type: latheRecipe id: ClothingBackpackDuffelHolding @@ -128,8 +130,19 @@ materials: Steel: 2000 Silver: 750 - Plasma: 1500 + Plasma: 1250 #Higher Plasma due to it needing less bluespace Uranium: 150 + Bluespace: 300 #DeltaV: Bluespace Exists + +- type: latheRecipe + id: OreBagOfHolding + result: OreBagOfHolding + completetime: 5 + materials: + Steel: 2000 + Silver: 750 + Plasma: 1000 #DeltaV: Bluespace Exists so less plasma used, no uranium + Bluespace: 200 #DeltaV: Bluespace Exists - type: latheRecipe id: WeaponCrusher @@ -149,6 +162,15 @@ Glass: 250 Plastic: 50 +- type: latheRecipe + id: WeaponCrusherGlaive + result: WeaponCrusherGlaive + completetime: 5 + materials: + Steel: 1500 + Glass: 250 + Silver: 250 + #- type: latheRecipe #DeltaV - LRP # id: WeaponForceGun # result: WeaponForceGun diff --git a/Resources/Prototypes/Recipes/Lathes/electronics.yml b/Resources/Prototypes/Recipes/Lathes/electronics.yml index bc54c78ca1..7a92402428 100644 --- a/Resources/Prototypes/Recipes/Lathes/electronics.yml +++ b/Resources/Prototypes/Recipes/Lathes/electronics.yml @@ -104,6 +104,14 @@ Glass: 900 Gold: 50 +- type: latheRecipe + id: CondenserMachineCircuitBoard + result: CondenserMachineCircuitBoard + completetime: 4 + materials: + Steel: 100 + Glass: 900 + - type: latheRecipe id: PortableScrubberMachineCircuitBoard result: PortableScrubberMachineCircuitBoard @@ -240,6 +248,15 @@ Glass: 900 Gold: 100 +- type: latheRecipe + id: ArtifactCrusherMachineCircuitboard + result: ArtifactCrusherMachineCircuitboard + completetime: 4 + materials: + Steel: 100 + Glass: 900 + Gold: 100 + - type: latheRecipe id: AnomalyVesselCircuitboard result: AnomalyVesselCircuitboard @@ -248,6 +265,25 @@ Steel: 100 Glass: 900 +- type: latheRecipe + id: AnomalyVesselExperimentalCircuitboard + result: AnomalyVesselExperimentalCircuitboard + completetime: 4 + materials: + Steel: 100 + Glass: 900 + Gold: 100 + +- type: latheRecipe + id: AnomalySynchronizerCircuitboard + result: AnomalySynchronizerCircuitboard + completetime: 4 + materials: + Steel: 500 + Glass: 700 + Gold: 200 + Silver: 100 + - type: latheRecipe id: APECircuitboard result: APECircuitboard @@ -324,6 +360,22 @@ Glass: 900 Gold: 100 +- type: latheRecipe + id: ElectrolysisUnitMachineCircuitboard + result: ElectrolysisUnitMachineCircuitboard + completetime: 4 + materials: + Steel: 100 + Glass: 900 + +- type: latheRecipe + id: CentrifugeMachineCircuitboard + result: CentrifugeMachineCircuitboard + completetime: 4 + materials: + Steel: 100 + Glass: 900 + - type: latheRecipe id: MaterialReclaimerMachineCircuitboard result: MaterialReclaimerMachineCircuitboard @@ -685,4 +737,4 @@ materials: Steel: 100 Glass: 900 - Gold: 100 + Gold: 100 diff --git a/Resources/Prototypes/Recipes/Lathes/misc.yml b/Resources/Prototypes/Recipes/Lathes/misc.yml index 5aff63ed92..b8c0fcd95f 100644 --- a/Resources/Prototypes/Recipes/Lathes/misc.yml +++ b/Resources/Prototypes/Recipes/Lathes/misc.yml @@ -6,6 +6,22 @@ Steel: 50 Glass: 50 +- type: latheRecipe + id: SodiumLightTube + result: SodiumLightTube + completetime: 2 + materials: + Steel: 50 + Glass: 50 + +- type: latheRecipe + id: ExteriorLightTube + result: ExteriorLightTube + completetime: 2 + materials: + Steel: 50 + Glass: 50 + - type: latheRecipe id: LightBulb result: LightBulb @@ -85,6 +101,15 @@ Steel: 1000 Plastic: 500 +- type: latheRecipe + id: ClothingShoesBootsSpeed + result: ClothingShoesBootsSpeed + completetime: 2 + materials: + Steel: 1500 + Plastic: 1000 + Silver: 500 + - type: latheRecipe id: ModularReceiver result: ModularReceiver @@ -92,3 +117,17 @@ materials: Steel: 750 Plastic: 100 + +- type: latheRecipe + id: FauxTileAstroGrass + result: FloorTileItemAstroGrass + completetime: 1 + materials: + Plastic: 100 + +- type: latheRecipe + id: FauxTileAstroIce + result: FloorTileItemAstroIce + completetime: 1 + materials: + Plastic: 100 diff --git a/Resources/Prototypes/Recipes/Lathes/powercells.yml b/Resources/Prototypes/Recipes/Lathes/powercells.yml index b7d9281093..2982c070be 100644 --- a/Resources/Prototypes/Recipes/Lathes/powercells.yml +++ b/Resources/Prototypes/Recipes/Lathes/powercells.yml @@ -25,3 +25,13 @@ Glass: 400 Plastic: 200 Gold: 50 + +- type: latheRecipe + id: PowerCellMicroreactor + result: PowerCellMicroreactorPrinted + completetime: 10 + materials: + Steel: 500 + Glass: 400 + Uranium: 200 + Gold: 100 diff --git a/Resources/Prototypes/Recipes/Lathes/robotics.yml b/Resources/Prototypes/Recipes/Lathes/robotics.yml index 0339898f5b..93a19d4368 100644 --- a/Resources/Prototypes/Recipes/Lathes/robotics.yml +++ b/Resources/Prototypes/Recipes/Lathes/robotics.yml @@ -27,366 +27,359 @@ result: LeftArmBorg completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: RightArmBorg result: RightArmBorg completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: LeftLegBorg result: LeftLegBorg completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: RightLegBorg result: RightLegBorg completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: LightHeadBorg result: LightHeadBorg completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: TorsoBorg result: TorsoBorg completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: LeftArmBorgEngineer result: LeftArmBorgEngineer completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: RightArmBorgEngineer result: RightArmBorgEngineer completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: LeftLegBorgEngineer result: LeftLegBorgEngineer completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: RightLegBorgEngineer result: RightLegBorgEngineer completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: HeadBorgEngineer result: HeadBorgEngineer completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: TorsoBorgEngineer result: TorsoBorgEngineer completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: LeftArmBorgMedical result: LeftArmBorgMedical completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: RightArmBorgMedical result: RightArmBorgMedical completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: LeftLegBorgMedical result: LeftLegBorgMedical completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: RightLegBorgMedical result: RightLegBorgMedical completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: HeadBorgMedical result: HeadBorgMedical completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: TorsoBorgMedical result: TorsoBorgMedical completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: LeftArmBorgMining result: LeftArmBorgMining completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: RightArmBorgMining result: RightArmBorgMining completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: LeftLegBorgMining result: LeftLegBorgMining completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: RightLegBorgMining result: RightLegBorgMining completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: HeadBorgMining result: HeadBorgMining completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: TorsoBorgMining result: TorsoBorgMining completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: LeftArmBorgService result: LeftArmBorgService completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: RightArmBorgService result: RightArmBorgService completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: LeftLegBorgService result: LeftLegBorgService completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: RightLegBorgService result: RightLegBorgService completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: HeadBorgService result: HeadBorgService completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: TorsoBorgService result: TorsoBorgService completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: LeftLegBorgJanitor result: LeftLegBorgJanitor completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: RightLegBorgJanitor result: RightLegBorgJanitor completetime: 2 materials: - Steel: 500 - Glass: 150 + Steel: 250 + Glass: 100 - type: latheRecipe id: HeadBorgJanitor result: HeadBorgJanitor completetime: 4 materials: - Steel: 1000 - Glass: 300 + Steel: 500 + Glass: 200 - type: latheRecipe id: TorsoBorgJanitor result: TorsoBorgJanitor completetime: 4 materials: - Steel: 1000 - Glass: 300 + Steel: 500 + Glass: 200 - type: latheRecipe id: MMI result: MMI - completetime: 5 + completetime: 3 icon: sprite: Objects/Specific/Robotics/mmi.rsi state: mmi_off materials: - Steel: 1500 - Glass: 750 - Plastic: 250 - Gold: 250 - Silver: 250 + Steel: 1000 + Glass: 200 + Plastic: 500 + Gold: 200 - type: latheRecipe id: PositronicBrain result: PositronicBrain - completetime: 5 + completetime: 3 materials: - Steel: 1000 + Steel: 500 Plastic: 500 - Silver: 500 - Plasma: 1500 + Gold: 100 + Silver: 100 + Plasma: 1000 - type: latheRecipe id: BorgModuleCable result: BorgModuleCable completetime: 3 materials: - Steel: 500 - Glass: 750 + Steel: 250 + Glass: 250 Plastic: 250 - Gold: 50 - type: latheRecipe id: BorgModuleFireExtinguisher result: BorgModuleFireExtinguisher completetime: 3 materials: - Steel: 500 - Glass: 750 + Steel: 250 + Glass: 250 Plastic: 250 - Gold: 50 - type: latheRecipe id: BorgModuleGPS result: BorgModuleGPS completetime: 3 materials: - Steel: 500 - Glass: 750 + Steel: 250 + Glass: 250 Plastic: 250 - Gold: 50 - type: latheRecipe id: BorgModuleRadiationDetection result: BorgModuleRadiationDetection completetime: 3 materials: - Steel: 500 - Glass: 750 + Steel: 250 + Glass: 250 Plastic: 250 - Gold: 50 - type: latheRecipe id: BorgModuleTool result: BorgModuleTool completetime: 3 materials: - Steel: 500 - Glass: 750 + Steel: 250 + Glass: 250 Plastic: 250 - Gold: 50 - type: latheRecipe id: BorgModuleAppraisal result: BorgModuleAppraisal completetime: 3 materials: - Steel: 500 - Glass: 750 + Steel: 250 + Glass: 250 Plastic: 250 - Gold: 50 - type: latheRecipe id: BorgModuleMining result: BorgModuleMining completetime: 3 materials: - Steel: 500 - Glass: 750 + Steel: 250 + Glass: 250 Plastic: 250 - Gold: 50 #- type: latheRecipe # id: BorgModuleGrapplingGun @@ -394,7 +387,7 @@ # completetime: 3 # materials: # Steel: 500 -# Glass: 750 +# Glass: 500 # Plastic: 250 # Gold: 50 @@ -404,7 +397,7 @@ completetime: 3 materials: Steel: 500 - Glass: 750 + Glass: 500 Plastic: 250 Gold: 50 @@ -414,19 +407,17 @@ completetime: 3 materials: Steel: 500 - Glass: 750 + Glass: 500 Plastic: 250 - Gold: 50 - type: latheRecipe id: BorgModuleGasAnalyzer result: BorgModuleGasAnalyzer completetime: 3 materials: - Steel: 500 - Glass: 750 + Steel: 250 + Glass: 250 Plastic: 250 - Gold: 50 - type: latheRecipe id: BorgModuleRCD @@ -434,7 +425,7 @@ completetime: 3 materials: Steel: 500 - Glass: 750 + Glass: 500 Plastic: 250 Gold: 50 @@ -443,28 +434,26 @@ result: BorgModuleLightReplacer completetime: 3 materials: - Steel: 500 - Glass: 750 + Steel: 250 + Glass: 250 Plastic: 250 - Gold: 50 - type: latheRecipe id: BorgModuleCleaning result: BorgModuleCleaning completetime: 3 materials: - Steel: 500 - Glass: 750 + Steel: 250 + Glass: 250 Plastic: 250 - Gold: 50 - type: latheRecipe - id: BorgModuleTrashCollection - result: BorgModuleTrashCollection + id: BorgModuleAdvancedCleaning + result: BorgModuleAdvancedCleaning completetime: 3 materials: - Steel: 500 - Glass: 750 + Steel: 250 + Glass: 250 Plastic: 250 Gold: 50 @@ -473,20 +462,18 @@ result: BorgModuleDiagnosis completetime: 3 materials: - Steel: 500 - Glass: 750 + Steel: 250 + Glass: 250 Plastic: 250 - Gold: 50 - type: latheRecipe id: BorgModuleTreatment result: BorgModuleTreatment completetime: 3 materials: - Steel: 500 - Glass: 750 + Steel: 250 + Glass: 250 Plastic: 250 - Gold: 50 - type: latheRecipe id: BorgModuleAdvancedTreatment @@ -494,7 +481,7 @@ completetime: 3 materials: Steel: 500 - Glass: 750 + Glass: 500 Plastic: 250 Gold: 50 @@ -504,7 +491,7 @@ completetime: 3 materials: Steel: 500 - Glass: 750 + Glass: 500 Plastic: 250 Gold: 50 @@ -513,67 +500,60 @@ result: BorgModuleArtifact completetime: 3 materials: - Steel: 500 - Glass: 750 + Steel: 250 + Glass: 250 Plastic: 250 - Gold: 50 - type: latheRecipe id: BorgModuleAnomaly result: BorgModuleAnomaly completetime: 3 materials: - Steel: 500 - Glass: 750 + Steel: 250 + Glass: 250 Plastic: 250 - Gold: 50 - type: latheRecipe - id: BorgModuleLiteracy - result: BorgModuleLiteracy + id: BorgModuleService + result: BorgModuleService completetime: 3 materials: - Steel: 500 - Glass: 750 + Steel: 250 + Glass: 250 Plastic: 250 - Gold: 50 - type: latheRecipe id: BorgModuleMusique result: BorgModuleMusique completetime: 3 materials: - Steel: 500 - Glass: 750 + Steel: 250 + Glass: 250 Plastic: 250 - Gold: 50 - type: latheRecipe id: BorgModuleGardening result: BorgModuleGardening completetime: 3 materials: - Steel: 500 - Glass: 750 + Steel: 250 + Glass: 250 Plastic: 250 - Gold: 50 - type: latheRecipe id: BorgModuleHarvesting result: BorgModuleHarvesting completetime: 3 materials: - Steel: 500 - Glass: 750 + Steel: 250 + Glass: 250 Plastic: 250 - Gold: 50 - type: latheRecipe id: BorgModuleClowning result: BorgModuleClowning completetime: 3 materials: - Steel: 500 - Glass: 750 + Steel: 250 + Glass: 250 Plastic: 250 - Gold: 50 diff --git a/Resources/Prototypes/Recipes/Lathes/security.yml b/Resources/Prototypes/Recipes/Lathes/security.yml index ee29b4261a..73a751775f 100644 --- a/Resources/Prototypes/Recipes/Lathes/security.yml +++ b/Resources/Prototypes/Recipes/Lathes/security.yml @@ -65,16 +65,6 @@ Plastic: 250 Gold: 100 -- type: latheRecipe - id: WeaponTaser - result: WeaponTaser - completetime: 5 - materials: - Steel: 700 - Plastic: 300 - Gold: 250 - Silver: 500 - - type: latheRecipe id: ForensicPad result: ForensicPad @@ -89,7 +79,7 @@ materials: Steel: 300 Glass: 200 - + - type: latheRecipe id: ClothingEyesHudSecurity result: ClothingEyesHudSecurity @@ -465,3 +455,75 @@ Steel: 500 Glass: 100 Plastic: 200 + +- type: latheRecipe + id: ShellShotgunUranium + result: ShellShotgunUranium + completetime: 2 + materials: + Plastic: 15 + Uranium: 10 + +- type: latheRecipe + id: CartridgePistolUranium + result: CartridgePistolUranium + completetime: 2 + materials: + Plastic: 5 + Uranium: 10 + +- type: latheRecipe + id: CartridgeMagnumUranium + result: CartridgeMagnumUranium + completetime: 2 + materials: + Plastic: 20 + Uranium: 10 + +- type: latheRecipe + id: CartridgeLightRifleUranium + result: CartridgeLightRifleUranium + completetime: 2 + materials: + Plastic: 20 + Uranium: 10 + +- type: latheRecipe + id: CartridgeRifleUranium + result: CartridgeRifleUranium + completetime: 2 + materials: + Plastic: 15 + Uranium: 10 + +- type: latheRecipe + id: MagazineBoxPistolUranium + result: MagazineBoxPistolUranium + completetime: 5 + materials: + Plastic: 650 + Uranium: 65 + +- type: latheRecipe + id: MagazineBoxMagnumUranium + result: MagazineBoxMagnumUranium + completetime: 5 + materials: + Plastic: 1250 + Uranium: 125 + +- type: latheRecipe + id: MagazineBoxLightRifleUranium + result: MagazineBoxLightRifleUranium + completetime: 5 + materials: + Plastic: 1800 + Uranium: 180 + +- type: latheRecipe + id: MagazineBoxRifleUranium + result: MagazineBoxRifleUranium + completetime: 5 + materials: + Plastic: 950 + Uranium: 95 diff --git a/Resources/Prototypes/Recipes/Lathes/sheet.yml b/Resources/Prototypes/Recipes/Lathes/sheet.yml index cbfc0ca452..cb31c55dda 100644 --- a/Resources/Prototypes/Recipes/Lathes/sheet.yml +++ b/Resources/Prototypes/Recipes/Lathes/sheet.yml @@ -12,6 +12,7 @@ completetime: 2 materials: Steel: 3000 + Coal: 1000 - type: latheRecipe id: SheetGlass1 @@ -75,14 +76,14 @@ completetime: 2 materials: Uranium: 3000 - + - type: latheRecipe id: IngotGold30 result: IngotGold completetime: 2 materials: Gold: 3000 - + - type: latheRecipe id: IngotSilver30 result: IngotSilver @@ -96,7 +97,7 @@ completetime: 2 materials: Bananium: 3000 - + - type: latheRecipe id: SheetUranium1 result: SheetUranium1 @@ -139,3 +140,10 @@ completetime: 6.4 materials: Meaterial: 200 + +- type: latheRecipe + id: SheetPaper + result: SheetPaper1 + completetime: 1 + materials: + Wood: 50 diff --git a/Resources/Prototypes/Recipes/Reactions/biological.yml b/Resources/Prototypes/Recipes/Reactions/biological.yml new file mode 100644 index 0000000000..b126a23abe --- /dev/null +++ b/Resources/Prototypes/Recipes/Reactions/biological.yml @@ -0,0 +1,50 @@ +- type: reaction + id: BloodBreakdown + requiredMixerCategories: + - Centrifuge + reactants: + Blood: + amount: 20 + products: + Water: 11 + Iron: 0.5 + Sugar: 2 + CarbonDioxide: 3 + Protein: 4 + +- type: reaction + id: SlimeBloodBreakdown + requiredMixerCategories: + - Centrifuge + reactants: + Slime: + amount: 5 + products: + Water: 4 + Nitrogen: 1 + +- type: reaction + id: CopperBloodBreakdown + requiredMixerCategories: + - Centrifuge + reactants: + CopperBlood: + amount: 20 + products: + Water: 11 + Copper: 0.5 + Sugar: 2 + CarbonDioxide: 3 + Protein: 4 + +- type: reaction + id: ZombieBloodBreakdown + requiredMixerCategories: + - Centrifuge + reactants: + ZombieBlood: + amount: 4 + products: + Mold: 2 + Protein: 1 + Toxin: 1 diff --git a/Resources/Prototypes/Recipes/Reactions/chemicals.yml b/Resources/Prototypes/Recipes/Reactions/chemicals.yml index 3aba1c613c..54d67ebc67 100644 --- a/Resources/Prototypes/Recipes/Reactions/chemicals.yml +++ b/Resources/Prototypes/Recipes/Reactions/chemicals.yml @@ -8,6 +8,17 @@ products: Ammonia: 4 +- type: reaction + id: CelluloseBreakdown + requiredMixerCategories: + - Electrolysis + reactants: + Cellulose: + amount: 3 + products: + Sugar: 2 + Carbon: 1 + - type: reaction id: Diethylamine reactants: @@ -20,6 +31,8 @@ - type: reaction id: Phenol + minTemp: 325 + maxTemp: 480 reactants: Oxygen: amount: 1 @@ -102,10 +115,10 @@ effects: - !type:ExplosionReactionEffect explosionType: Default - maxIntensity: 5 + maxIntensity: 100 intensityPerUnit: 0.5 # 50+50 reagent for maximum explosion - intensitySlope: .5 - maxTotalIntensity: 30 + intensitySlope: 4 + maxTotalIntensity: 100 - type: reaction id: Smoke @@ -197,6 +210,7 @@ - type: reaction id: TableSalt + minTemp: 370 reactants: Chlorine: amount: 1 @@ -205,6 +219,17 @@ products: TableSalt: 2 +- type: reaction + id: TableSaltBreakdown + requiredMixerCategories: + - Electrolysis + reactants: + TableSalt: + amount: 2 + products: + Chlorine: 1 + Sodium: 1 + - type: reaction id: Thermite impact: Medium @@ -271,6 +296,20 @@ products: Desoxyephedrine: 4 #I kinda remember having to heat this up, and if you heated it up too much, it went boom, I can't remember the specific values tho. +- type: reaction + id: Stimulants + impact: Medium + minTemp: 370 + reactants: + Ephedrine: + amount: 1 + Vestine: + amount: 1 + Oxygen: + amount: 2 + products: + Stimulants: 2 + - type: reaction id: Ephedrine impact: Medium @@ -289,13 +328,14 @@ - type: reaction id: MuteToxin impact: Medium + minTemp: 370 reactants: Uranium: - amount: 2 - Water: - amount: 1 - Carbon: amount: 1 + Vestine: + amount: 2 + SpaceGlue: + amount: 2 products: MuteToxin: 2 @@ -386,3 +426,38 @@ amount: 1 products: SodiumCarbonate: 4 + +- type: reaction + id: SodiumPolyacrylate + impact: Medium + reactants: + Oxygen: + amount: 2 + Sodium: + amount: 1 + Nitrogen: + amount: 1 + products: + SodiumPolyacrylate: 4 + +- type: reaction + id: Nocturine + impact: High + reactants: + Impedrezene: + amount: 2 + Vestine: + amount: 1 + products: + Nocturine: 1 + +- type: reaction + id: Tazinide + impact: Medium + reactants: + Licoxide: + amount: 1 + Vestine: + amount: 1 + products: + Tazinide: 1 diff --git a/Resources/Prototypes/Recipes/Reactions/cleaning.yml b/Resources/Prototypes/Recipes/Reactions/cleaning.yml index 1c68aeb2e3..b8cda27a8b 100644 --- a/Resources/Prototypes/Recipes/Reactions/cleaning.yml +++ b/Resources/Prototypes/Recipes/Reactions/cleaning.yml @@ -20,6 +20,16 @@ products: SpaceCleaner: 2 +- type: reaction + id: SoapyWater + reactants: + Water: + amount: 3 + SoapReagent: + amount: 1 + products: + SoapyWater: 4 + - type: reaction id: SpaceLube impact: Medium diff --git a/Resources/Prototypes/Recipes/Reactions/drinks.yml b/Resources/Prototypes/Recipes/Reactions/drinks.yml index 1084135bb0..0ad0661623 100644 --- a/Resources/Prototypes/Recipes/Reactions/drinks.yml +++ b/Resources/Prototypes/Recipes/Reactions/drinks.yml @@ -260,6 +260,18 @@ products: ErikaSurprise: 6 +- type: reaction + id: EthanolBreakdown + requiredMixerCategories: + - Electrolysis + reactants: + Ethanol: + amount: 9 + products: + Hydrogen: 6 + Carbon: 2 + Oxygen: 1 + - type: reaction id: FourteenLoko reactants: @@ -354,6 +366,17 @@ products: Hooch: 3 +- type: reaction + id: HotCocoa + minTemp: 350 + reactants: + Water: + amount: 1 + CocoaPowder: + amount: 1 + products: + HotCocoa: 2 + - type: reaction id: IceCream reactants: @@ -870,6 +893,17 @@ products: TheMartinez: 6 +- type: reaction + id: WaterBreakdown + requiredMixerCategories: + - Electrolysis + reactants: + Water: + amount: 3 + products: + Hydrogen: 2 + Oxygen: 1 + - type: reaction id: WhiteGilgamesh reactants: diff --git a/Resources/Prototypes/Recipes/Reactions/food.yml b/Resources/Prototypes/Recipes/Reactions/food.yml index c7f4038db0..9760acc6e4 100644 --- a/Resources/Prototypes/Recipes/Reactions/food.yml +++ b/Resources/Prototypes/Recipes/Reactions/food.yml @@ -153,6 +153,39 @@ - !type:CreateEntityReactionEffect entity: FoodTofu +- type: reaction + id: CreateMeatball + impact: Low + quantized: true + conserveEnergy: false + reactants: + UncookedAnimalProteins: + amount: 5 + Flour: + amount: 5 + Egg: + amount: 6 + effects: + - !type:CreateEntityReactionEffect + entity: FoodMeatMeatball + +# Parkstation-ChocolateMilk - That's not how you make a chocolate bar.. +# - type: reaction +# id: CreateChocolate +# impact: Low +# quantized: true +# conserveEnergy: false +# reactants: +# CocoaPowder: +# amount: 4 +# Milk: +# amount: 2 +# Sugar: +# amount: 2 +# effects: +# - !type:CreateEntityReactionEffect +# entity: FoodSnackChocolateBar + # Condiments - type: reaction @@ -267,33 +300,24 @@ Vinaigrette: 3 - type: reaction - id: CreateMeatball - impact: Low - quantized: true - conserveEnergy: false + id: BananaBreakdown + requiredMixerCategories: + - Centrifuge reactants: - UncookedAnimalProteins: - amount: 5 - Flour: - amount: 5 - Egg: - amount: 6 - effects: - - !type:CreateEntityReactionEffect - entity: FoodMeatMeatball + JuiceBanana: + amount: 10 + products: + Sugar: 9 + Potassium: 1 - type: reaction - id: CreateChocolate - impact: Low - quantized: true - conserveEnergy: false + id: SugarBreakdown + minTemp: 520 reactants: - CocoaPowder: - amount: 4 - Milk: - amount: 2 Sugar: - amount: 2 - effects: - - !type:CreateEntityReactionEffect - entity: FoodSnackChocolateBar + amount: 4 + products: + Carbon: 1 + Oxygen: 1 + Hydrogen: 2 + diff --git a/Resources/Prototypes/Recipes/Reactions/fun.yml b/Resources/Prototypes/Recipes/Reactions/fun.yml index 0f139c0048..35ec500590 100644 --- a/Resources/Prototypes/Recipes/Reactions/fun.yml +++ b/Resources/Prototypes/Recipes/Reactions/fun.yml @@ -1,4 +1,4 @@ -- type: reaction +- type: reaction id: Carpetium reactants: SpaceDrugs: @@ -107,3 +107,56 @@ effects: - !type:CreateEntityReactionEffect entity: SheetPlastic1 + +- type: reaction + id: FlashFreezeIce + quantized: true + reactants: + Fresium: + amount: 1 + Water: + amount: 1 + effects: + - !type:CreateGas + gas: Frezon + products: + Ice: 5 + +- type: reaction + id: Fresium + priority: 20 + maxTemp: 300 + reactants: + Frezon: + amount: 3 + Plasma: + amount: 1 + catalyst: true + Nitrogen: + amount: 2 + Cryoxadone: + amount: 0.22 + TableSalt: + amount: 0.08 + Water: + amount: 1.5 + effects: + - !type:CreateGas + gas: Nitrogen + products: + Fresium: 5 + +- type: reaction + id: FiberBreakdown + requiredMixerCategories: + - Centrifuge + reactants: + Fiber: + amount: 5 + Water: + amount: 10 + catalyst: true + products: + Carbon: 3 + Sugar: 2 + diff --git a/Resources/Prototypes/Recipes/Reactions/gas.yml b/Resources/Prototypes/Recipes/Reactions/gas.yml new file mode 100644 index 0000000000..9cc6db1b64 --- /dev/null +++ b/Resources/Prototypes/Recipes/Reactions/gas.yml @@ -0,0 +1,21 @@ +- type: reaction + id: CarbonDioxideBreakdown + requiredMixerCategories: + - Electrolysis + reactants: + CarbonDioxide: + amount: 3 + products: + Carbon: 1 + Oxygen: 2 + +- type: reaction + id: NitrousOxideBreakdown + requiredMixerCategories: + - Electrolysis + reactants: + NitrousOxide: + amount: 3 + products: + Nitrogen: 2 + Oxygen: 1 diff --git a/Resources/Prototypes/Recipes/Reactions/medicine.yml b/Resources/Prototypes/Recipes/Reactions/medicine.yml index b13855b3c6..4862f082f4 100644 --- a/Resources/Prototypes/Recipes/Reactions/medicine.yml +++ b/Resources/Prototypes/Recipes/Reactions/medicine.yml @@ -284,6 +284,8 @@ amount: 1 Plasma: amount: 1 + Vestine: + amount: 1 products: Lexorin: 2 @@ -396,3 +398,106 @@ amount: 1 products: Saline: 5 + +- type: reaction + id: Lacerinol + impact: Medium + minTemp: 335 + reactants: + Bicaridine: # Bicaridine is a conflicting brute medication and if mixed incorrectly will make Razorium. This is intended. + amount: 1 + Water: + amount: 1 + products: + Lacerinol: 2 + +- type: reaction + id: Puncturase + impact: Medium + minTemp: 325 + reactants: + Bicaridine: # Bicaridine is a conflicting brute medication and if mixed incorrectly will make Razorium. This is intended. + amount: 1 + Carbon: + amount: 1 + products: + Puncturase: 2 + +- type: reaction + id: Bruizine + impact: Medium + reactants: + Bicaridine: # Bicaridine is a conflicting brute medication and if mixed incorrectly will make Razorium. This is intended. + amount: 1 + Lithium: + amount: 0.9 + Sugar: + amount: 1 + products: + Bruizine: 2 + +- type: reaction + id: BicarLacerinol # mixing any two brute medications will make Razorium + impact: Medium + reactants: + Lacerinol: + amount: 1 + Bicaridine: + amount: 1 + products: + Razorium: 1 + +- type: reaction + id: BicarPuncturase # mixing any two brute medications will make Razorium + impact: Medium + reactants: + Puncturase: + amount: 1 + Bicaridine: + amount: 1 + products: + Razorium: 1 + +- type: reaction + id: BicarBruizine # mixing any two brute medications will make Razorium + impact: Medium + reactants: + Bruizine: + amount: 1 + Bicaridine: + amount: 1 + products: + Razorium: 1 + +- type: reaction + id: BruizineLacerinol # mixing any two brute medications will make Razorium + impact: Medium + reactants: + Lacerinol: + amount: 1 + Bruizine: + amount: 1 + products: + Razorium: 1 + +- type: reaction + id: BruizinePuncturase # mixing any two brute medications will make Razorium + impact: Medium + reactants: + Puncturase: + amount: 1 + Bruizine: + amount: 1 + products: + Razorium: 1 + +- type: reaction + id: PuncturaseLacerinol # mixing any two brute medications will make Razorium + impact: Medium + reactants: + Lacerinol: + amount: 1 + Puncturase: + amount: 1 + products: + Razorium: 1 diff --git a/Resources/Prototypes/Recipes/Reactions/pyrotechnic.yml b/Resources/Prototypes/Recipes/Reactions/pyrotechnic.yml index bc793660e0..b0f71b4c68 100644 --- a/Resources/Prototypes/Recipes/Reactions/pyrotechnic.yml +++ b/Resources/Prototypes/Recipes/Reactions/pyrotechnic.yml @@ -41,13 +41,34 @@ # TODO solution temperature!! - !type:ExplosionReactionEffect explosionType: Default # 15 damage per intensity. - maxIntensity: 1 # at most 15 damage per tile. - intensityPerUnit: 3 # 12 total input reagent units reach max total intensity - intensitySlope: 0.5 - maxTotalIntensity: 9 + maxIntensity: 200 + intensityPerUnit: 5 + intensitySlope: 5 + maxTotalIntensity: 200 - !type:PopupMessage messages: [ "clf3-explosion" ] type: Pvs visualType: LargeCaution products: ChlorineTrifluoride: 4 + +- type: reaction + id: Ash + minTemp: 520 + reactants: + Oil: + amount: 1 + products: + Ash: 1 + +- type: reaction + id: WeldingFuelBreakdown + requiredMixerCategories: + - Centrifuge + reactants: + WeldingFuel: + amount: 10 + products: + Ethanol: 5 + Hydrogen: 3 + Sulfur: 2 diff --git a/Resources/Prototypes/Recipes/Reactions/single_reagent.yml b/Resources/Prototypes/Recipes/Reactions/single_reagent.yml index cd15576d29..5a40435471 100644 --- a/Resources/Prototypes/Recipes/Reactions/single_reagent.yml +++ b/Resources/Prototypes/Recipes/Reactions/single_reagent.yml @@ -8,6 +8,16 @@ products: Protein: 0.5 +- type: reaction + id: EggCooking + impact: Low + minTemp: 344 + reactants: + Egg: + amount: 0.5 + products: + EggCooked: 0.5 + - type: reaction id: BloodToWine impact: Low diff --git a/Resources/Prototypes/Research/arsenal.yml b/Resources/Prototypes/Research/arsenal.yml index 235f2ac7b1..1df1b174e0 100644 --- a/Resources/Prototypes/Research/arsenal.yml +++ b/Resources/Prototypes/Research/arsenal.yml @@ -14,6 +14,8 @@ # These are roundstart but not replenishable for salvage - WeaponCrusher - WeaponCrusherDagger + # This is not roundstart since its a direct upgrade + - WeaponCrusherGlaive - type: technology id: DraconicMunitions @@ -88,22 +90,24 @@ - MagazineBoxRifleRubber - type: technology - id: PracticeAmmunition - name: research-technology-practice-ammunition + id: UraniumMunitions + name: research-technology-uranium-munitions icon: - sprite: Objects/Weapons/Guns/Ammunition/Casings/shotgun_shell.rsi - state: practice + sprite: Objects/Materials/Sheets/other.rsi + state: uranium discipline: Arsenal tier: 1 - cost: 2000 + cost: 7500 recipeUnlocks: - - ShellShotgunPractice - - MagazineBoxPistolPractice - - MagazineBoxMagnumPractice - - MagazineBoxLightRiflePractice - - MagazineBoxRiflePractice - - WeaponLaserCarbinePractice - - WeaponDisablerPractice + - ShellShotgunUranium + - CartridgePistolUranium + - CartridgeMagnumUranium + - CartridgeLightRifleUranium + - CartridgeRifleUranium + - MagazineBoxPistolUranium + - MagazineBoxMagnumUranium + - MagazineBoxLightRifleUranium + - MagazineBoxRifleUranium # Tier 2 @@ -141,24 +145,13 @@ tier: 2 cost: 8000 recipeUnlocks: + - ClothingEyesGlassesSecurity - Truncheon - TelescopicShield - HoloprojectorSecurity # Tier 3 -- type: technology - id: HandheldElectricalPropulsion - name: research-technology-handheld-electrical-propulsion - icon: - sprite: Objects/Weapons/Guns/Battery/taser.rsi - state: icon - discipline: Arsenal - tier: 3 - cost: 15000 - recipeUnlocks: - - WeaponTaser - - type: technology id: PortableMicrofusionWeaponry name: research-technology-portable-microfusion-weaponry diff --git a/Resources/Prototypes/Research/biochemical.yml b/Resources/Prototypes/Research/biochemical.yml index a3b9090fe6..7dcbcea4a0 100644 --- a/Resources/Prototypes/Research/biochemical.yml +++ b/Resources/Prototypes/Research/biochemical.yml @@ -46,6 +46,7 @@ recipeUnlocks: - CryostasisBeaker - StasisBedMachineCircuitboard + - SyringeCryostasis - type: technology id: MechanizedTreatment @@ -58,7 +59,6 @@ cost: 7500 recipeUnlocks: - BorgModuleDiagnosis - - BorgModuleTreatment - BorgModuleDefibrillator - type: technology diff --git a/Resources/Prototypes/Research/civilianservices.yml b/Resources/Prototypes/Research/civilianservices.yml index df16de1d34..3adfe0f48a 100644 --- a/Resources/Prototypes/Research/civilianservices.yml +++ b/Resources/Prototypes/Research/civilianservices.yml @@ -111,13 +111,25 @@ - ComputerTelevisionCircuitboard - SynthesizerInstrument - BorgModuleMusique - - BorgModuleLiteracy - BorgModuleClowning - DawInstrumentMachineCircuitboard - MassMediaCircuitboard # Tier 2 +- type: technology + id: FauxAstroTiles + name: research-technology-faux-astro-tiles + icon: + sprite: Objects/Tiles/tile.rsi + state: astroice + discipline: CivilianServices + tier: 2 + cost: 5000 + recipeUnlocks: + - FauxTileAstroGrass + - FauxTileAstroIce + - type: technology id: RoboticCleanliness name: research-technology-robotic-cleanliness @@ -129,8 +141,7 @@ cost: 5000 recipeUnlocks: - BorgModuleLightReplacer - - BorgModuleCleaning - - BorgModuleTrashCollection + - BorgModuleAdvancedCleaning - type: technology id: AdvancedCleaning @@ -158,7 +169,6 @@ cost: 5000 recipeUnlocks: - FatExtractorMachineCircuitboard - - SheetifierMachineCircuitboard - type: technology id: HONKMech @@ -206,3 +216,15 @@ cost: 15000 recipeUnlocks: - CargoTelepadMachineCircuitboard + +- type: technology + id: QuantumFiberWeaving + name: research-technology-quantum-fiber-weaving + icon: + sprite: Clothing/Shoes/Boots/speedboots.rsi + state: icon + discipline: CivilianServices + tier: 3 + cost: 10000 + recipeUnlocks: + - ClothingShoesBootsSpeed diff --git a/Resources/Prototypes/Research/experimental.yml b/Resources/Prototypes/Research/experimental.yml index da4a9ead72..1533c26eab 100644 --- a/Resources/Prototypes/Research/experimental.yml +++ b/Resources/Prototypes/Research/experimental.yml @@ -97,18 +97,21 @@ cost: 5000 recipeUnlocks: - TraversalDistorterMachineCircuitboard + - ArtifactCrusherMachineCircuitboard - type: technology - id: MobileAnomalyTech - name: research-technology-mobile-anomaly-tech + id: AdvancedAnomalyResearch + name: research-technology-advanced-anomaly-research icon: - sprite: Objects/Weapons/Guns/Revolvers/chimp.rsi + sprite: Structures/Machines/anomaly_sync.rsi state: base discipline: Experimental tier: 2 cost: 10000 recipeUnlocks: - WeaponPistolCHIMP + - AnomalySynchronizerCircuitboard + - AnomalyVesselExperimentalCircuitboard technologyPrerequisites: - BasicAnomalousResearch diff --git a/Resources/Prototypes/Research/industrial.yml b/Resources/Prototypes/Research/industrial.yml index e94678fa55..70f461a8f2 100644 --- a/Resources/Prototypes/Research/industrial.yml +++ b/Resources/Prototypes/Research/industrial.yml @@ -1,4 +1,4 @@ -# Tier 1 +# Tier 1 - type: technology id: SalvageEquipment @@ -14,6 +14,7 @@ - BorgModuleMining - OreProcessorMachineCircuitboard - SalvageExpeditionsComputerCircuitboard # DeltaV + - OreBagOfHolding - type: technology id: AdvancedPowercells @@ -55,6 +56,7 @@ - AutolatheMachineCircuitboard - CircuitImprinterMachineCircuitboard - MaterialReclaimerMachineCircuitboard + - SheetifierMachineCircuitboard - type: technology id: PowerGeneration @@ -88,6 +90,25 @@ - ThermomachineFreezerMachineCircuitBoard - GasRecyclerMachineCircuitboard +- type: technology + id: RipleyAPLU + name: research-technology-ripley-aplu + icon: + sprite: Objects/Specific/Mech/mecha.rsi + state: ripley + discipline: Industrial + tier: 1 + cost: 7500 + recipeUnlocks: + - RipleyHarness + - RipleyLArm + - RipleyRArm + - RipleyLLeg + - RipleyRLeg + - RipleyCentralElectronics + - RipleyPeripheralsElectronics + - MechEquipmentGrabber + # Tier 2 #- type: technology @@ -103,20 +124,6 @@ # - WeaponGrapplingGun # - BorgModuleGrapplingGun -- type: technology - id: RapidConstruction - name: research-technology-rapid-construction - icon: - sprite: Objects/Tools/rcd.rsi - state: icon - discipline: Industrial - tier: 2 - cost: 10000 - recipeUnlocks: - - RCD - - RCDAmmo - - BorgModuleRCD - - type: technology id: Shuttlecraft name: research-technology-shuttlecraft @@ -133,25 +140,6 @@ - GyroscopeMachineCircuitboard - MiniGravityGeneratorCircuitboard -- type: technology - id: RipleyAPLU - name: research-technology-ripley-aplu - icon: - sprite: Objects/Specific/Mech/mecha.rsi - state: ripley - discipline: Industrial - tier: 2 - cost: 7500 - recipeUnlocks: - - RipleyHarness - - RipleyLArm - - RipleyRArm - - RipleyLLeg - - RipleyRLeg - - RipleyCentralElectronics - - RipleyPeripheralsElectronics - - MechEquipmentGrabber - - type: technology id: AdvancedAtmospherics name: research-technology-advanced-atmospherics @@ -193,6 +181,7 @@ - PowerDrill - JawsOfLife - BorgModuleAdvancedTool + - BorgModuleRCD # Tier 3 @@ -209,3 +198,17 @@ - ClothingBackpackHolding - ClothingBackpackSatchelHolding - ClothingBackpackDuffelHolding + +- type: technology + id: PortableFission + name: research-technology-portable-fission + icon: + sprite: Objects/Power/power_cells.rsi + state: microreactor + discipline: Industrial + tier: 3 + cost: 10000 + recipeUnlocks: + - PowerCellMicroreactor + technologyPrerequisites: + - SuperPowercells diff --git a/Resources/Prototypes/Roles/Antags/pirate.yml b/Resources/Prototypes/Roles/Antags/pirate.yml index 59290acd04..729d8c27e9 100644 --- a/Resources/Prototypes/Roles/Antags/pirate.yml +++ b/Resources/Prototypes/Roles/Antags/pirate.yml @@ -5,7 +5,7 @@ back: ClothingBackpackPirateFilled head: ClothingHeadBandBlack shoes: ClothingShoesBootsLaceup - id: PassengerPDA + id: PiratePDA belt: ClothingBeltUtility pocket1: AppraisalTool innerClothingSkirt: ClothingUniformJumpsuitPirate @@ -19,7 +19,7 @@ back: ClothingBackpackPirateFilled head: ClothingHeadHatPirate shoes: ClothingShoesBootsLaceup - id: PassengerPDA + id: PiratePDA belt: ClothingBeltUtility pocket1: AppraisalTool pocket2: EnergyCutlass @@ -35,7 +35,7 @@ back: ClothingBackpackPirateFilled head: ClothingHeadHatPirateTricord shoes: ClothingShoesBootsLaceup - id: PassengerPDA + id: PiratePDA belt: ClothingBeltUtility pocket1: AppraisalTool outerClothing: ClothingOuterCoatGentle diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml b/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml index a0d3c60566..f79a30e5fd 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml @@ -10,7 +10,6 @@ access: - Cargo - Maintenance - - External extendedAccess: - Salvage - Orders # DeltaV - Orders, see Resources/Prototypes/DeltaV/Access/cargo.yml diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml index 7c7b06a1b3..d9375d75ae 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml @@ -30,9 +30,9 @@ - Mail # Nyanotrasen - MailCarrier, see Resources/Prototypes/Nyanotrasen/Roles/Jobs/Cargo/mail-carrier.yml - Quartermaster - Maintenance - - External - Command - Orders # DeltaV - Orders, see Resources/Prototypes/DeltaV/Access/cargo.yml + - External # DeltaV - for promoting salvage specialists special: - !type:AddImplantSpecial implants: [ MindShieldImplant ] diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/clown.yml b/Resources/Prototypes/Roles/Jobs/Civilian/clown.yml index 94685b7060..49e3cc91a7 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/clown.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/clown.yml @@ -12,6 +12,7 @@ access: - Theatre - Maintenance + - Clown # DeltaV - Add Clown access special: - !type:AddComponentSpecial components: @@ -22,10 +23,11 @@ Piercing: 4 groups: Burn: 3 - - type: SleepEmitSound - snore: /Audio/Voice/Misc/silly_snore.ogg - interval: 10 - chance: 1.0 +# DeltaV - Commenting out the clown snore sound because I am not fond of it (it makes me itchy and feral). By "I", I mean Leonardo_DaBepis. +# - type: SleepEmitSound +# snore: /Audio/Voice/Misc/silly_snore.ogg +# interval: 10 +# chance: 1.0 - !type:AddImplantSpecial implants: [ SadTromboneImplant ] diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml b/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml index c19b30bc6f..bf11532ddb 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml @@ -7,8 +7,8 @@ icon: "JobIconJanitor" supervisors: job-supervisors-hop access: + - Service - Janitor - - Service # DeltaV - quite honestly the most noble service occupation - Maintenance special: - !type:GiveItemOnHolidaySpecial @@ -23,6 +23,7 @@ shoes: ClothingShoesGaloshes head: ClothingHeadHatPurplesoft id: JanitorPDA + gloves: ClothingHandsGlovesJanitor ears: ClothingHeadsetService belt: ClothingBeltJanitorFilled innerClothingSkirt: ClothingUniformJumpskirtJanitor @@ -35,6 +36,7 @@ jumpsuit: ClothingUniformJumpskirtJanimaid back: ClothingBackpackFilled id: JanitorPDA + gloves: ClothingHandsGlovesJanitor head: ClothingHeadHatCatEars ears: ClothingHeadsetService belt: ClothingBeltJanitorFilled diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml b/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml index 4c49e6d3a7..cd1dce5ac0 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml @@ -15,7 +15,8 @@ supervisors: job-supervisors-hop access: - Service - - Brig + - Lawyer + #- Brig #Delta V: Removed Brig Access - Maintenance - type: startingGear diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml b/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml index 4f425f4527..536c8635d1 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml @@ -12,6 +12,7 @@ access: - Service - Maintenance + - Library # DeltaV - Add Library access - type: startingGear id: LibrarianGear diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml b/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml index 31007c6a2d..cfb8d5d61c 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml @@ -12,10 +12,11 @@ access: - Theatre - Maintenance + - Mime # DeltaV - Add Mime access special: - !type:AddComponentSpecial components: - - type: Psionic # Nyano - Summary: Makes the mime psionic. + - type: Psionic # Nyano - Summary: Makes the mime psionic. - type: MimePowers - type: startingGear diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/musician.yml b/Resources/Prototypes/Roles/Jobs/Civilian/musician.yml index cb43e727b7..e6c04a0a54 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/musician.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/musician.yml @@ -12,6 +12,7 @@ access: - Maintenance # TODO Remove maint access for all gimmick jobs once access work is completed - Theatre + - Musician # DeltaV - Add Musician access special: - !type:GiveItemOnHolidaySpecial holiday: MikuDay @@ -22,7 +23,7 @@ equipment: jumpsuit: ClothingUniformJumpsuitMusician back: ClothingBackpackMusicianFilled - eyes: ClothingEyesGlassesSunglasses + eyes: ClothingEyesGlassesCosmeticSunglasses shoes: ClothingShoesBootsLaceup id: MusicianPDA ears: ClothingHeadsetService diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml b/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml index f68980e23b..c21fafbdaa 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml @@ -14,19 +14,19 @@ access: - Service - Maintenance - - Bar - - Kitchen extendedAccess: - Hydroponics + - Bar # DeltaV - moved to extended access + - Kitchen # DeltaV - moved to extended access - type: startingGear id: ServiceWorkerGear equipment: - jumpsuit: ClothingUniformJumpsuitBartender + jumpsuit: ClothingUniformJumpsuitColorDarkGreen # DeltaV back: ClothingBackpackFilled shoes: ClothingShoesColorBlack id: ServiceWorkerPDA ears: ClothingHeadsetService - innerClothingSkirt: ClothingUniformJumpskirtBartender + innerClothingSkirt: ClothingUniformJumpskirtColorDarkGreen # DeltaV satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled diff --git a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml index 1bc81ee88d..3a50f20320 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml @@ -47,10 +47,18 @@ # - Detective # - Salvage # - Security # NoooOoOo!! My HoPcurity!1 -# - Brig +# - Brig # Lawyer access # Delta V: Removed + - Lawyer # - Cargo # - Atmospherics # - Medical + - Boxer # DeltaV - Add Boxer access + - Clown # DeltaV - Add Clown access + - Library # DeltaV - Add Library access + - Mime # DeltaV - Add Mime access + - Musician # DeltaV - Add Musician access + - Reporter # DeltaV - Add Reporter access + - Zookeeper # DeltaV - Add Zookeeper access special: - !type:AddImplantSpecial implants: [ MindShieldImplant ] @@ -71,6 +79,7 @@ head: ClothingHeadHatHopcap id: HoPPDA ears: ClothingHeadsetHoP # DeltaV - HoP is now a service role, replaces their all channels headset. + gloves: ClothingHandsGlovesHop belt: BoxFolderClipboard innerClothingSkirt: ClothingUniformJumpskirtHoP satchel: ClothingBackpackSatchelHOPFilled diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml b/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml index fe05e2dcd3..9f9889fdae 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml @@ -23,7 +23,6 @@ - type: startingGear id: TechnicalAssistantGear equipment: - head: ClothingHeadHatWelding jumpsuit: ClothingUniformJumpsuitColorYellow back: ClothingBackpackEngineeringFilled shoes: ClothingShoesBootsWork diff --git a/Resources/Prototypes/Roles/Jobs/Fun/emergencyresponseteam.yml b/Resources/Prototypes/Roles/Jobs/Fun/emergencyresponseteam.yml index 2be50b2e4b..d2c59f5829 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/emergencyresponseteam.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/emergencyresponseteam.yml @@ -88,7 +88,7 @@ eyes: ClothingEyesGlassesMeson gloves: ClothingHandsGlovesCombat outerClothing: ClothingOuterArmorBasicSlim - id: ERTLeaderPDA + id: ERTEngineerPDA ears: ClothingHeadsetAltCentCom belt: ClothingBeltChiefEngineerFilled pocket1: Flare @@ -105,7 +105,7 @@ gloves: ClothingHandsGlovesCombat outerClothing: ClothingOuterHardsuitERTEngineer suitstorage: AirTankFilled - id: ERTLeaderPDA + id: ERTEngineerPDA ears: ClothingHeadsetAltCentCom belt: ClothingBeltChiefEngineerFilled pocket1: Flare @@ -135,7 +135,7 @@ eyes: ClothingEyesGlassesSecurity gloves: ClothingHandsGlovesCombat outerClothing: ClothingOuterArmorBasicSlim - id: ERTLeaderPDA + id: ERTSecurityPDA ears: ClothingHeadsetAltCentCom belt: ClothingBeltSecurityFilled pocket1: WeaponPistolMk58Nonlethal @@ -152,7 +152,7 @@ gloves: ClothingHandsGlovesCombat outerClothing: ClothingOuterHardsuitERTSecurity suitstorage: AirTankFilled - id: ERTLeaderPDA + id: ERTSecurityPDA ears: ClothingHeadsetAltCentCom belt: ClothingBeltSecurityFilled pocket1: WeaponPistolMk58Nonlethal @@ -169,7 +169,7 @@ gloves: ClothingHandsGlovesCombat outerClothing: ClothingOuterHardsuitERTSecurity suitstorage: WeaponRifleLecter - id: ERTLeaderPDA + id: ERTSecurityPDA ears: ClothingHeadsetAltCentCom belt: ClothingBeltSecurityFilled pocket1: MagazineRifle @@ -201,7 +201,7 @@ eyes: ClothingEyesHudMedical gloves: ClothingHandsGlovesNitrile outerClothing: ClothingOuterArmorBasicSlim - id: ERTLeaderPDA + id: ERTMedicPDA ears: ClothingHeadsetAltCentCom belt: ClothingBeltMedicalFilled pocket1: HandheldHealthAnalyzer @@ -218,7 +218,7 @@ gloves: ClothingHandsGlovesNitrile outerClothing: ClothingOuterHardsuitERTMedical suitstorage: AirTankFilled - id: ERTLeaderPDA + id: ERTMedicPDA ears: ClothingHeadsetAltCentCom belt: ClothingBeltMedicalFilled pocket1: HandheldHealthAnalyzer @@ -247,7 +247,7 @@ head: ClothingHeadHelmetERTJanitor gloves: ClothingHandsGlovesColorPurple outerClothing: ClothingOuterArmorBasicSlim - id: ERTLeaderPDA + id: ERTJanitorPDA ears: ClothingHeadsetAltCentCom belt: ClothingBeltJanitorFilled pocket1: Flare @@ -262,7 +262,7 @@ gloves: ClothingHandsGlovesColorPurple outerClothing: ClothingOuterHardsuitERTJanitor suitstorage: AirTankFilled - id: ERTLeaderPDA + id: ERTJanitorPDA ears: ClothingHeadsetAltCentCom belt: ClothingBeltJanitorFilled pocket1: Flare diff --git a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml index 59c049b8a9..26c7f69ea2 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml @@ -48,7 +48,7 @@ jumpsuit: ClothingUniformJumpsuitDeathSquad back: ClothingBackpackDeathSquadFilled mask: ClothingMaskGasDeathSquad - eyes: ClothingEyesGlassesSecurity + eyes: ClothingEyesHudSecurity ears: ClothingHeadsetAltCentCom gloves: ClothingHandsGlovesCombat outerClothing: ClothingOuterHardsuitDeathsquad @@ -91,7 +91,7 @@ gloves: ClothingHandsGlovesCombat shoes: ClothingShoesBootsCombatFilled pocket1: BaseUplinkRadio40TC - id: AgentIDCard + id: SyndiPDA innerClothingSkirt: ClothingUniformJumpsuitOperative satchel: ClothingBackpackDuffelSyndicateOperative duffelbag: ClothingBackpackDuffelSyndicateOperative @@ -103,13 +103,12 @@ jumpsuit: ClothingUniformJumpsuitOperative back: ClothingBackpackDuffelSyndicateOperative mask: ClothingMaskGasSyndicate - # eyes: Night Vision Goggles whenever they're made - eyes: ClothingEyesGlassesMeson + eyes: ClothingEyesHudSyndicate ears: ClothingHeadsetAltSyndicate gloves: ClothingHandsGlovesCombat outerClothing: ClothingOuterHardsuitSyndie shoes: ClothingShoesBootsCombatFilled - id: NukieAgentIDCard + id: SyndiPDA pocket1: DoubleEmergencyOxygenTankFilled pocket2: BaseUplinkRadio40TC belt: ClothingBeltMilitaryWebbing @@ -124,8 +123,7 @@ jumpsuit: ClothingUniformJumpsuitOperative back: ClothingBackpackDuffelSyndicateOperative mask: ClothingMaskGasSyndicate - # eyes: Night Vision Goggles whenever they're made - eyes: ClothingEyesGlassesMeson + eyes: ClothingEyesHudSyndicate ears: ClothingHeadsetAltSyndicate gloves: ClothingHandsGlovesCombat outerClothing: ClothingOuterHardsuitSyndieCommander @@ -147,12 +145,12 @@ jumpsuit: ClothingUniformJumpsuitOperative back: ClothingBackpackDuffelSyndicateOperativeMedic mask: ClothingMaskGasSyndicate - eyes: ClothingEyesHudMedical + eyes: ClothingEyesHudSyndicate ears: ClothingHeadsetAltSyndicate gloves: ClothingHandsGlovesCombat - outerClothing: ClothingOuterHardsuitMedic + outerClothing: ClothingOuterHardsuitSyndieMedic shoes: ClothingShoesBootsMagSyndie - id: SyndiPDA + id: SyndiAgentPDA pocket1: DoubleEmergencyOxygenTankFilled pocket2: BaseUplinkRadio40TC belt: ClothingBeltMilitaryWebbingMedFilled @@ -349,3 +347,11 @@ back: SpearBone head: ClothingHeadHelmetBone shoes: ClothingShoesCult + +#Banana Clown +- type: startingGear + id: BananaClown + equipment: + shoes: ClothingShoesClownBanana + jumpsuit: ClothingUniformJumpsuitClownBanana + mask: ClothingMaskClownBanana diff --git a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml index 8c91ae7d09..44a7dd50ad 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml @@ -31,6 +31,8 @@ - Chemistry - ChiefMedicalOfficer - Paramedic # DeltaV - Add Paramedic access + - External # DeltaV - Paramedics need this access + - Psychologist # DeltaV - Add Psychologist access special: - !type:AddImplantSpecial implants: [ MindShieldImplant ] diff --git a/Resources/Prototypes/Roles/Jobs/Medical/senior_physician.yml b/Resources/Prototypes/Roles/Jobs/Medical/senior_physician.yml index 1b11d4cc7e..03473cc7cb 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/senior_physician.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/senior_physician.yml @@ -25,6 +25,7 @@ - type: startingGear id: SeniorPhysicianGear equipment: + head: ClothingHeadHatBeretSeniorPhysician jumpsuit: ClothingUniformJumpsuitSeniorPhysician back: ClothingBackpackMedicalFilled shoes: ClothingShoesColorBlack diff --git a/Resources/Prototypes/Roles/Jobs/Security/detective.yml b/Resources/Prototypes/Roles/Jobs/Security/detective.yml index b6fb2bad02..feef023b45 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/detective.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/detective.yml @@ -13,7 +13,7 @@ canBeAntag: false access: - Security - - Brig + #- Brig # Delta V: Removed - Maintenance - Service - Detective diff --git a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml index e7ecb4ac80..7ad80c7741 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml @@ -25,7 +25,7 @@ access: - HeadOfSecurity - Command - - Brig + #- Brig # Delta V: Removed - Security - Armory - Maintenance @@ -50,7 +50,7 @@ back: ClothingBackpackHOSFilled shoes: ClothingShoesBootsCombatFilled outerClothing: ClothingOuterCoatHoSTrench - eyes: ClothingEyesGlassesSecurity + eyes: ClothingEyesGlassesSunglasses head: ClothingHeadHatBeretHoS id: HoSPDA gloves: ClothingHandsGlovesCombat diff --git a/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml b/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml index a99245f027..7e7cd67c4a 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml @@ -16,7 +16,7 @@ canBeAntag: false access: - Security - - Brig + #- Brig # Delta V: Removed - Maintenance special: - !type:AddImplantSpecial diff --git a/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml b/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml index c2b2d519b3..7866b9dbaa 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml @@ -13,7 +13,7 @@ canBeAntag: false access: - Security - - Brig + #- Brig # Delta V: Removed - Maintenance - Service - External @@ -27,7 +27,7 @@ jumpsuit: ClothingUniformJumpsuitSec back: ClothingBackpackSecurityFilled shoes: ClothingShoesBootsCombatFilled - eyes: ClothingEyesGlassesSecurity + eyes: ClothingEyesGlassesSunglasses head: ClothingHeadHelmetBasic outerClothing: ClothingOuterArmorPlateCarrier # DeltaV - ClothingOuterArmorBasic replaced in favour of plate carrier id: SecurityPDA diff --git a/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml b/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml index 6425458b6a..99167b8cd4 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml @@ -23,7 +23,7 @@ canBeAntag: false access: - Security - - Brig + #- Brig # Delta V: Removed - Maintenance - Service - External @@ -38,7 +38,7 @@ back: ClothingBackpackSecurityFilled shoes: ClothingShoesBootsCombatFilled eyes: ClothingEyesGlassesSecurity - head: ClothingHeadHatBeret + head: ClothingHeadHatBeretSecurity outerClothing: ClothingOuterArmorPlateCarrier # DeltaV - ClothingOuterArmorBasic replaced in favour of plate carrier id: SeniorOfficerPDA ears: ClothingHeadsetSecurity diff --git a/Resources/Prototypes/Roles/Jobs/Security/warden.yml b/Resources/Prototypes/Roles/Jobs/Security/warden.yml index 8daf1f5146..c351967ad8 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/warden.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/warden.yml @@ -10,19 +10,16 @@ - !type:DepartmentTimeRequirement # DeltaV - Security time requirement department: Security time: 36000 # 10 hours -# - !type:RoleTimeRequirement # DeltaV - Prisoner time requirement #uncomment these lines when the role doesn't spawn in arrivals -# role: JobPrisoner -# time: 3600 # 1 hour startingGear: WardenGear icon: "JobIconWarden" supervisors: job-supervisors-hos canBeAntag: false access: - Security + #- Brig # Delta V: Removed - Armory - Maintenance - Service - - Brig - External - Detective special: @@ -36,7 +33,7 @@ jumpsuit: ClothingUniformJumpsuitWarden back: ClothingBackpackSecurityFilled shoes: ClothingShoesBootsCombatFilled - eyes: ClothingEyesGlassesSecurity + eyes: ClothingEyesGlassesSunglasses outerClothing: ClothingOuterCoatWarden id: WardenPDA ears: ClothingHeadsetSecurity diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml index 65f47017bf..ea2faf1446 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml @@ -10,8 +10,9 @@ icon: "JobIconBoxer" supervisors: job-supervisors-hop access: - - Service - Maintenance + - Theatre # DeltaV - Add Theatre access + - Boxer # DeltaV - Add Boxer access special: # Nyanotrasen - BoxerComponent, see Content.Server/Nyanotrasen/Abilities/Boxer/Boxer/BoxerComponent.cs - !type:AddComponentSpecial components: diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml index a53188dfe5..19d53a92c4 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml @@ -15,6 +15,7 @@ access: - Medical - Maintenance + - Psychologist # DeltaV - Add Psychologist access extendedAccess: - Chemistry diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/reporter.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/reporter.yml index 1b95145c6b..6f7093f3ae 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/reporter.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/reporter.yml @@ -12,6 +12,8 @@ access: - Service - Maintenance + - Theatre # DeltaV - Add Theatre access + - Reporter # DeltaV - Add Reporter access - type: startingGear id: ReporterGear diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml index f76c602385..04d1051333 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml @@ -12,6 +12,7 @@ access: - Service - Maintenance + - Zookeeper # DeltaV - Add Zookeeper access - type: startingGear id: ZookeeperGear diff --git a/Resources/Prototypes/Shaders/shaders.yml b/Resources/Prototypes/Shaders/shaders.yml index 7e165e47c1..700ad32536 100644 --- a/Resources/Prototypes/Shaders/shaders.yml +++ b/Resources/Prototypes/Shaders/shaders.yml @@ -8,6 +8,11 @@ kind: source path: "/Textures/Shaders/gradient_circle_mask.swsl" +- type: shader + id: WorldGradientCircle + kind: source + path: "/Textures/Shaders/world_gradient_circle.swsl" + - type: shader id: ColoredScreenBorder kind: source @@ -76,7 +81,7 @@ id: PaperStamp kind: source path: "/Textures/Shaders/paperstamp.swsl" - + # Simple horizontal cut - type: shader id: HorizontalCut diff --git a/Resources/Prototypes/SimpleStation14/Traits/disabilities.yml b/Resources/Prototypes/SimpleStation14/Traits/disabilities.yml index f321ec26e2..25aa23a5af 100644 --- a/Resources/Prototypes/SimpleStation14/Traits/disabilities.yml +++ b/Resources/Prototypes/SimpleStation14/Traits/disabilities.yml @@ -5,4 +5,7 @@ traitGear: ClothingEyesGlasses components: - type: Nearsighted + whitelist: # Delta V fix to borgs spawning with it. + components: + - Blindable diff --git a/Resources/Prototypes/SoundCollections/announcements.yml b/Resources/Prototypes/SoundCollections/announcements.yml index cb90b2282c..b3336f9cf8 100644 --- a/Resources/Prototypes/SoundCollections/announcements.yml +++ b/Resources/Prototypes/SoundCollections/announcements.yml @@ -4,3 +4,25 @@ - /Audio/Announcements/RoundEnd/apc_destroyed.ogg - /Audio/Announcements/RoundEnd/disappointed.ogg - /Audio/Announcements/RoundEnd/notevenpaidforthis.ogg + # Nyano/DeltaV sounds + - /Audio/Announcements/RoundEnd/anyone_around.ogg + - /Audio/Announcements/RoundEnd/bravery_firepower.ogg + - /Audio/Announcements/RoundEnd/data_mining_algorithms.ogg + - /Audio/Announcements/RoundEnd/easy_route.ogg + - /Audio/Announcements/RoundEnd/good_business.ogg + - /Audio/Announcements/RoundEnd/hidden_discipline.ogg + - /Audio/Announcements/RoundEnd/i_need_a_computer.ogg + - /Audio/Announcements/RoundEnd/never_trust_a_traitor.ogg + - /Audio/Announcements/RoundEnd/order_to_chaos.ogg + - /Audio/Announcements/RoundEnd/out_an_airlock.ogg + - /Audio/Announcements/RoundEnd/pacts_with_demons.ogg + - /Audio/Announcements/RoundEnd/quarterly_gains.ogg + - /Audio/Announcements/RoundEnd/safescience.ogg + - /Audio/Announcements/RoundEnd/secher_nbiw.ogg + - /Audio/Announcements/RoundEnd/see_you_in_space.ogg + - /Audio/Announcements/RoundEnd/ship_wanted.ogg + - /Audio/Announcements/RoundEnd/smart_universe.ogg + - /Audio/Announcements/RoundEnd/stoned.ogg # Steve wuz heer B^) + - /Audio/Announcements/RoundEnd/susguyeatscrew.ogg + - /Audio/Announcements/RoundEnd/this_drink.ogg + - /Audio/Announcements/RoundEnd/truth_imagination.ogg diff --git a/Resources/Prototypes/SoundCollections/explosion.yml b/Resources/Prototypes/SoundCollections/explosion.yml index e208c9d854..afc4869aec 100644 --- a/Resources/Prototypes/SoundCollections/explosion.yml +++ b/Resources/Prototypes/SoundCollections/explosion.yml @@ -1,5 +1,5 @@ - type: soundCollection - id: explosion + id: Explosion files: - /Audio/Effects/explosion1.ogg - /Audio/Effects/explosion2.ogg @@ -7,3 +7,20 @@ - /Audio/Effects/explosion4.ogg - /Audio/Effects/explosion5.ogg - /Audio/Effects/explosion6.ogg + +- type: soundCollection + id: ExplosionSmall + files: + - /Audio/Effects/explosion_small1.ogg + - /Audio/Effects/explosion_small2.ogg + - /Audio/Effects/explosion_small3.ogg + +- type: soundCollection + id: ExplosionFar + files: + - /Audio/Effects/explosionfar.ogg + +- type: soundCollection + id: ExplosionSmallFar + files: + - /Audio/Effects/explosionsmallfar.ogg diff --git a/Resources/Prototypes/SoundCollections/footsteps.yml b/Resources/Prototypes/SoundCollections/footsteps.yml index 00f723b054..e5b7210262 100644 --- a/Resources/Prototypes/SoundCollections/footsteps.yml +++ b/Resources/Prototypes/SoundCollections/footsteps.yml @@ -72,6 +72,11 @@ - /Audio/Effects/Footsteps/jesterstep1.ogg - /Audio/Effects/Footsteps/jesterstep2.ogg +- type: soundCollection + id: FootstepSkates + files: + - /Audio/Items/Toys/skates.ogg + - type: soundCollection id: FootstepDuck files: @@ -153,3 +158,24 @@ files: - /Audio/Effects/Footsteps/clownspiderstep1.ogg - /Audio/Effects/Footsteps/clownspiderstep2.ogg + +- type: soundCollection + id: FootstepSnake + files: + - /Audio/Effects/Footsteps/snake1.ogg + - /Audio/Effects/Footsteps/snake2.ogg + - /Audio/Effects/Footsteps/snake3.ogg + +- type: soundCollection + id: FootstepBells + files: + - /Audio/Effects/Footsteps/bells1.ogg + - /Audio/Effects/Footsteps/bells2.ogg + - /Audio/Effects/Footsteps/bells3.ogg + - /Audio/Effects/Footsteps/bells4.ogg + - /Audio/Effects/Footsteps/bells5.ogg + +- type: soundCollection + id: FootstepSlip + files: + - /Audio/Effects/slip.ogg diff --git a/Resources/Prototypes/Stacks/Materials/ore.yml b/Resources/Prototypes/Stacks/Materials/ore.yml index 268c6b9a46..087786ded8 100644 --- a/Resources/Prototypes/Stacks/Materials/ore.yml +++ b/Resources/Prototypes/Stacks/Materials/ore.yml @@ -54,3 +54,11 @@ spawn: BananiumOre1 maxCount: 30 itemSize: 2 + +- type: stack + id: Coal + name: coal + icon: { sprite: /Textures/Objects/Materials/ore.rsi, state: coal } + spawn: Coal1 + maxCount: 30 + itemSize: 2 diff --git a/Resources/Prototypes/Stacks/floor_tile_stacks.yml b/Resources/Prototypes/Stacks/floor_tile_stacks.yml index 34065fa53f..5a46982374 100644 --- a/Resources/Prototypes/Stacks/floor_tile_stacks.yml +++ b/Resources/Prototypes/Stacks/floor_tile_stacks.yml @@ -96,6 +96,13 @@ maxCount: 30 itemSize: 5 +- type: stack + id: FloorTileLime + name: lime tile + spawn: FloorTileItemLime + maxCount: 30 + itemSize: 5 + - type: stack id: FloorTileDirty name: dirty tile @@ -271,6 +278,27 @@ maxCount: 30 itemSize: 5 +- type: stack + id: FloorTileMining + name: mining floor tile + spawn: FloorTileItemMining + maxCount: 30 + itemSize: 5 + +- type: stack + id: FloorTileMiningDark + name: dark mining floor tile + spawn: FloorTileItemMiningDark + maxCount: 30 + itemSize: 5 + +- type: stack + id: FloorTileMiningLight + name: light mining floor tile + spawn: FloorTileItemMiningLight + maxCount: 30 + itemSize: 5 + - type: stack id: FloorTileBar name: item bar floor tile @@ -396,3 +424,18 @@ spawn: FloorTileItemWeb maxCount: 30 itemSize: 5 + +# Faux science tiles +- type: stack + id: FloorTileAstroGrass + name: astro-grass floor + spawn: FloorTileItemAstroGrass + maxCount: 30 + itemSize: 5 + +- type: stack + id: FloorTileAstroIce + name: astro-ice floor + spawn: FloorTileItemAstroIce + maxCount: 30 + itemSize: 5 diff --git a/Resources/Prototypes/Stacks/science_stacks.yml b/Resources/Prototypes/Stacks/science_stacks.yml new file mode 100644 index 0000000000..010a5dc659 --- /dev/null +++ b/Resources/Prototypes/Stacks/science_stacks.yml @@ -0,0 +1,6 @@ +- type: stack + id: ArtifactFragment + name: artifact fragment + spawn: ArtifactFragment1 + maxCount: 30 + itemSize: 5 \ No newline at end of file diff --git a/Resources/Prototypes/StatusIcon/antag.yml b/Resources/Prototypes/StatusIcon/antag.yml index 564d29a35b..a3fb072722 100644 --- a/Resources/Prototypes/StatusIcon/antag.yml +++ b/Resources/Prototypes/StatusIcon/antag.yml @@ -18,3 +18,19 @@ icon: sprite: Interface/Misc/job_icons.rsi state: HeadRevolutionary + +- type: statusIcon + id: MindShieldIcon + priority: 2 + locationPreference: Right + icon: + sprite: Interface/Misc/job_icons.rsi + state: MindShield + +- type: statusIcon + id: SyndicateFaction + priority: 0 + locationPreference: Left + icon: + sprite: Interface/Misc/job_icons.rsi + state: Syndicate diff --git a/Resources/Prototypes/Tiles/floors.yml b/Resources/Prototypes/Tiles/floors.yml index 226e10c74b..3b7ca9b661 100644 --- a/Resources/Prototypes/Tiles/floors.yml +++ b/Resources/Prototypes/Tiles/floors.yml @@ -684,6 +684,60 @@ itemDrop: FloorTileItemBlue heatCapacity: 10000 +- type: tile + id: FloorSteelLime + name: tiles-lime-floor + sprite: /Textures/Tiles/lime.png + variants: 4 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + baseTurf: Plating + isSubfloor: false + canCrowbar: true + footstepSounds: + collection: FootstepFloor + itemDrop: FloorTileItemLime + heatCapacity: 10000 + +- type: tile + id: FloorMining + name: tiles-mining-tile + sprite: /Textures/Tiles/mining_floor.png + baseTurf: Plating + isSubfloor: false + canCrowbar: true + footstepSounds: + collection: FootstepTile + itemDrop: FloorTileItemMining + heatCapacity: 10000 + +- type: tile + id: FloorMiningDark + name: tiles-mining-dark-tile + sprite: /Textures/Tiles/mining_floor_dark.png + baseTurf: Plating + isSubfloor: false + canCrowbar: true + footstepSounds: + collection: FootstepTile + itemDrop: FloorTileItemMiningDark + heatCapacity: 10000 + +- type: tile + id: FloorMiningLight + name: tiles-mining-light-tile + sprite: /Textures/Tiles/mining_floor_light.png + baseTurf: Plating + isSubfloor: false + canCrowbar: true + footstepSounds: + collection: FootstepTile + itemDrop: FloorTileItemMiningLight + heatCapacity: 10000 + # Departamental - type: tile id: FloorFreezer @@ -787,6 +841,42 @@ itemDrop: FloorTileItemLaundry heatCapacity: 10000 +- type: tile + id: FloorSteelDamaged + name: tiles-steel-floor + sprite: /Textures/Tiles/steel_damaged.png + variants: 5 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + baseTurf: Plating + isSubfloor: false + canCrowbar: true + footstepSounds: + collection: FootstepFloor + itemDrop: FloorTileItemSteel #This should probably be made null when it becomes possible to make it such, in SS13 prying destroyed tiles wouldn't give you anything. + heatCapacity: 10000 + +- type: tile + id: FloorSteelBurnt + name: tiles-steel-floor + sprite: /Textures/Tiles/steel_burnt.png + variants: 2 + placementVariants: + - 1.0 + - 1.0 + baseTurf: Plating + isSubfloor: false + canCrowbar: true + footstepSounds: + collection: FootstepFloor + itemDrop: FloorTileItemSteel #Same case as FloorSteelDamaged, make it null when possible + heatCapacity: 10000 + + # Concrete - type: tile id: FloorConcrete @@ -1266,8 +1356,8 @@ name: tiles-planet-grass-floor sprite: /Textures/Tiles/grass.png baseTurf: FloorDirt - isSubfloor: true - canCrowbar: false + #canCrowbar: false # Come back + canShovel: true # Delta V footstepSounds: collection: FootstepGrass itemDrop: FloorTileItemGrass @@ -1279,8 +1369,8 @@ name: tiles-jungle-grass-floor sprite: /Textures/Tiles/grassjungle.png baseTurf: FloorDirt - isSubfloor: true - canCrowbar: false + #canCrowbar: false # Come back + canShovel: true # Delta V footstepSounds: collection: FootstepGrass itemDrop: FloorTileItemGrassJungle @@ -1298,10 +1388,11 @@ - 1.0 - 1.0 baseTurf: FloorDirt - isSubfloor: true - canCrowbar: false + #canCrowbar: false # Come back + canShovel: true # Delta V footstepSounds: collection: FootstepGrass + itemDrop: FloorTileItemGrassDark # Delta V heatCapacity: 10000 weather: true @@ -1316,10 +1407,11 @@ - 1.0 - 1.0 baseTurf: FloorDirt - isSubfloor: true - canCrowbar: false + #canCrowbar: false # Come back + canShovel: true # Delta V footstepSounds: collection: FootstepGrass + itemDrop: FloorTileItemGrassLight heatCapacity: 10000 weather: true @@ -1333,13 +1425,14 @@ - 1.0 - 1.0 - 1.0 - baseTurf: Plating - isSubfloor: true - canCrowbar: false + baseTurf: FloorBedrock # Delta V + #canCrowbar: false # Come back + canShovel: true # Delta V footstepSounds: collection: FootstepAsteroid + itemDrop: FloorTileItemDirt # Delta V heatCapacity: 10000 - weather: true + weather: True # Asteroid @@ -1680,3 +1773,49 @@ footstepSounds: collection: FootstepHull itemDrop: FloorTileItemReinforced #same case as FloorHull + +# Faux sci tiles + +# Grass +- type: tile + id: FloorAstroGrass + name: tiles-astro-grass + sprite: /Textures/Tiles/Planet/Grass/grass.png + variants: 4 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + edgeSpritePriority: 1 + edgeSprites: + SouthEast: /Textures/Tiles/Planet/Grass/single_edge.png + NorthEast: /Textures/Tiles/Planet/Grass/single_edge.png + NorthWest: /Textures/Tiles/Planet/Grass/single_edge.png + SouthWest: /Textures/Tiles/Planet/Grass/single_edge.png + South: /Textures/Tiles/Planet/Grass/double_edge.png + East: /Textures/Tiles/Planet/Grass/double_edge.png + North: /Textures/Tiles/Planet/Grass/double_edge.png + West: /Textures/Tiles/Planet/Grass/double_edge.png + baseTurf: Plating + isSubfloor: false + canCrowbar: true + footstepSounds: + collection: FootstepGrass + itemDrop: FloorTileItemAstroGrass + heatCapacity: 10000 + +# Ice +- type: tile + id: FloorAstroIce + name: tiles-astro-ice + sprite: /Textures/Tiles/Planet/Snow/ice.png + baseTurf: Plating + isSubfloor: false + canCrowbar: true + friction: 0.05 + heatCapacity: 10000 + mobFriction: 0.5 + mobFrictionNoInput: 0.05 + mobAcceleration: 2 + itemDrop: FloorTileItemAstroIce diff --git a/Resources/Prototypes/Tiles/planet.yml b/Resources/Prototypes/Tiles/planet.yml index c5095eb5d0..1452a7a66e 100644 --- a/Resources/Prototypes/Tiles/planet.yml +++ b/Resources/Prototypes/Tiles/planet.yml @@ -121,8 +121,10 @@ East: /Textures/Tiles/Planet/Snow/snow_double_edge_east.png North: /Textures/Tiles/Planet/Snow/snow_double_edge_north.png West: /Textures/Tiles/Planet/Snow/snow_double_edge_west.png - isSubfloor: true - canCrowbar: false + baseTurf: FloorDirt + itemDrop: FloorTileItemSnow # Delta V + canCrowbar: false # Come back + canShovel: true # Delta V footstepSounds: collection: FootstepSnow heatCapacity: 10000 diff --git a/Resources/Prototypes/Tiles/plating.yml b/Resources/Prototypes/Tiles/plating.yml index ee15c11157..7cf841eec0 100644 --- a/Resources/Prototypes/Tiles/plating.yml +++ b/Resources/Prototypes/Tiles/plating.yml @@ -10,6 +10,35 @@ friction: 0.3 heatCapacity: 10000 +- type: tile + id: PlatingDamaged + name: tiles-plating + sprite: /Textures/Tiles/plating_damaged.png + variants: 3 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + baseTurf: Lattice + isSubfloor: true + canAxe: true + footstepSounds: + collection: FootstepPlating + friction: 0.3 + heatCapacity: 10000 + +- type: tile + id: PlatingBurnt + name: tiles-plating + sprite: /Textures/Tiles/plating_burnt.png + baseTurf: Lattice + isSubfloor: true + canAxe: true + footstepSounds: + collection: FootstepPlating + friction: 0.3 + heatCapacity: 10000 + - type: tile id: PlatingAsteroid name: tiles-asteroid-plating diff --git a/Resources/Prototypes/Traits/neutral.yml b/Resources/Prototypes/Traits/neutral.yml index dd837f32b9..8fa2ede30b 100644 --- a/Resources/Prototypes/Traits/neutral.yml +++ b/Resources/Prototypes/Traits/neutral.yml @@ -20,5 +20,6 @@ - type: Accentless removes: - type: LizardAccent + - type: MothAccent - type: ReplacementAccent accent: dwarf diff --git a/Resources/Prototypes/Voice/speech_emote_sounds.yml b/Resources/Prototypes/Voice/speech_emote_sounds.yml index 3cbb0665b8..e37f9c24c9 100644 --- a/Resources/Prototypes/Voice/speech_emote_sounds.yml +++ b/Resources/Prototypes/Voice/speech_emote_sounds.yml @@ -218,7 +218,7 @@ collection: Whistles params: variation: 0.125 - pitchscale: 0.75 + pitch: 0.75 - type: emoteSounds id: FemaleDwarf @@ -253,7 +253,7 @@ collection: Whistles params: variation: 0.125 - pitchscale: 0.75 + pitch: 0.75 - type: emoteSounds id: UnisexMoth diff --git a/Resources/Prototypes/Voice/speech_sounds.yml b/Resources/Prototypes/Voice/speech_sounds.yml index d59e3189da..abe6a83102 100644 --- a/Resources/Prototypes/Voice/speech_sounds.yml +++ b/Resources/Prototypes/Voice/speech_sounds.yml @@ -96,3 +96,21 @@ path: /Audio/Voice/Talk/arachnid_ask.ogg exclaimSound: path: /Audio/Voice/Talk/arachnid_exclaim.ogg + +- type: speechSounds + id: Cat + saySound: + path: /Audio/Animals/cat_meow2.ogg + askSound: + path: /Audio/Animals/cat_meow.ogg + exclaimSound: + path: /Audio/Animals/cat_meow.ogg + +- type: speechSounds + id: Dog + saySound: + path: /Audio/Animals/dog_bark1.ogg + askSound: + path: /Audio/Animals/dog_bark3.ogg + exclaimSound: + path: /Audio/Animals/dog_bark2.ogg \ No newline at end of file diff --git a/Resources/Prototypes/XenoArch/Effects/normal_effects.yml b/Resources/Prototypes/XenoArch/Effects/normal_effects.yml index 040f688403..40fb951b5d 100644 --- a/Resources/Prototypes/XenoArch/Effects/normal_effects.yml +++ b/Resources/Prototypes/XenoArch/Effects/normal_effects.yml @@ -346,7 +346,7 @@ - CarbonDioxide - Plasma - Tritium - - Miasma + - Ammonia - NitrousOxide - Frezon @@ -357,20 +357,20 @@ components: - type: RandomTeleportArtifact -#- type: artifactEffect -# id: EffectFoamGood -# targetDepth: 2 -# effectHint: artifact-effect-hint-biochemical -# components: -# - type: FoamArtifact -# reagents: -# - Dermaline -# - Arithrazine -# - Bicaridine -# - Inaprovaline -# - Kelotane -# - Dexalin -# - Omnizine +- type: artifactEffect + id: EffectFoamGood + targetDepth: 2 + effectHint: artifact-effect-hint-biochemical + components: + - type: FoamArtifact + reagents: + - Dermaline + - Arithrazine + - Bicaridine + - Inaprovaline + - Kelotane + - Dexalin + - Omnizine - type: artifactEffect id: EffectChemicalPuddleRare @@ -420,6 +420,14 @@ - type: PolyArtifact polymorphPrototypeName: ArtifactLizard +- type: artifactEffect + id: EffectPolyLuminous + targetDepth: 3 + effectHint: artifact-effect-hint-polymorph + components: + - type: PolyArtifact + polymorphPrototypeName: ArtifactLuminous + - type: artifactEffect id: EffectHealAll targetDepth: 3 @@ -488,26 +496,26 @@ prob: 0.5 maxAmount: 3 -#- type: artifactEffect -# id: EffectFoamDangerous -# targetDepth: 3 -# effectHint: artifact-effect-hint-biochemical -# components: -# - type: FoamArtifact -# minFoamAmount: 20 -# maxFoamAmount: 30 -# reagents: -# - Tritium -# - Plasma -# - SulfuricAcid -# - SpaceDrugs -# - Nocturine -# - MuteToxin -# - Napalm -# - CarpoToxin -# - ChloralHydrate -# - Mold -# - Amatoxin +- type: artifactEffect + id: EffectFoamDangerous + targetDepth: 3 + effectHint: artifact-effect-hint-biochemical + components: + - type: FoamArtifact + minFoamAmount: 20 + maxFoamAmount: 30 + reagents: + - Tritium + - Plasma + - SulfuricAcid + - SpaceDrugs + - Nocturine + - MuteToxin + - Napalm + - CarpoToxin + - ChloralHydrate + - Mold + - Amatoxin - type: artifactEffect id: EffectIgnite @@ -553,6 +561,26 @@ intensitySlope: 2.5 maxIntensity: 50 +- type: artifactEffect + id: EffectMagnet + targetDepth: 1 + effectHint: artifact-effect-hint-magnet + components: + - type: GravityWell + maxRange: 3 + baseRadialAcceleration: 1 + baseTangentialAcceleration: 3 + +- type: artifactEffect + id: EffectAntiMagnet + targetDepth: 1 + effectHint: artifact-effect-hint-magnet + components: + - type: GravityWell + maxRange: 3 + baseRadialAcceleration: -1 + baseTangentialAcceleration: -3 + - type: artifactEffect id: EffectSingulo targetDepth: 10 diff --git a/Resources/Prototypes/audio.yml b/Resources/Prototypes/audio.yml index ecbb5884d1..57ba9a3fa4 100644 --- a/Resources/Prototypes/audio.yml +++ b/Resources/Prototypes/audio.yml @@ -156,6 +156,7 @@ - /Audio/Ambience/ambiruin5.ogg - /Audio/Ambience/ambiruin6.ogg - /Audio/Ambience/ambiruin7.ogg + - /Audio/Ambience/voyage_neverending.ogg - type: soundCollection id: AmbienceRuins @@ -203,14 +204,13 @@ rules: - !type:AlwaysTrueRule -# TODO: Need to make sure no grids nearby - type: rules id: InSpace rules: - !type:InSpaceRule - !type:GridInRangeRule inverted: true - range: 10 + range: 1 # TODO - type: rules diff --git a/Resources/Prototypes/explosion.yml b/Resources/Prototypes/explosion.yml index 6af2b4a398..ff0c78d86e 100644 --- a/Resources/Prototypes/explosion.yml +++ b/Resources/Prototypes/explosion.yml @@ -93,7 +93,7 @@ Heat: 12 Blunt: 12 Piercing: 12 - Structural: 40 + Structural: 30 tileBreakChance: [ 0, 0.5, 1 ] tileBreakIntensity: [ 1, 5, 10 ] tileBreakRerollReduction: 3 @@ -109,7 +109,7 @@ Heat: 15 Blunt: 15 Piercing: 6 - Structural: 15 + Structural: 40 tileBreakChance: [ 0.75, 0.95, 1 ] tileBreakIntensity: [ 1, 10, 15 ] tileBreakRerollReduction: 30 diff --git a/Resources/Prototypes/hud.yml b/Resources/Prototypes/hud.yml index dd4ba5a172..d88bebe6c7 100644 --- a/Resources/Prototypes/hud.yml +++ b/Resources/Prototypes/hud.yml @@ -4,11 +4,31 @@ path: Default - type: hudTheme - id: SS14ModernizedTheme - name: ui-options-hud-theme-modernized - path: Modernized + id: SS14PlasmafireTheme + name: ui-options-hud-theme-plasmafire + path: Plasmafire + +- type: hudTheme + id: SS14SlimecoreTheme + name: ui-options-hud-theme-slimecore + path: Slimecore + +- type: hudTheme + id: SS14ClockworkTheme + name: ui-options-hud-theme-clockwork + path: Clockwork + +- type: hudTheme + id: SS14RetroTheme + name: ui-options-hud-theme-retro + path: Retro + +- type: hudTheme + id: SS14MinimalistTheme + name: ui-options-hud-theme-minimalist + path: Minimalist - type: hudTheme - id: SS14ClassicTheme - name: ui-options-hud-theme-classic - path: Classic + id: SS14ErisTheme + name: ui-options-hud-theme-eris + path: Eris diff --git a/Resources/Prototypes/ore.yml b/Resources/Prototypes/ore.yml index c8411940a4..c4c81e99cb 100644 --- a/Resources/Prototypes/ore.yml +++ b/Resources/Prototypes/ore.yml @@ -14,6 +14,10 @@ id: OreSpaceQuartz oreEntity: SpaceQuartz1 +- type: ore + id: OreCoal + oreEntity: Coal1 + # Medium yields - type: ore id: OreGold @@ -44,13 +48,17 @@ id: OreIronCrab oreEntity: MobIronCrab +- type: ore + id: OreSilverCrab + oreEntity: MobSilverCrab + - type: ore id: OreUraniumCrab oreEntity: MobUraniumCrab - type: ore id: OreArtifactFragment - oreEntity: ArtifactFragment + oreEntity: ArtifactFragment1 minOreYield: 2 maxOreYield: 4 @@ -58,6 +66,7 @@ id: RandomOreDistributionStandard weights: OreSteel: 10 + OreCoal: 10 OreSpaceQuartz: 8 OreGold: 2 OrePlasma: 4 @@ -71,4 +80,5 @@ weights: OreQuartzCrab: 5 OreIronCrab: 5 - OreUraniumCrab: 3 + OreUraniumCrab: 2 + OreSilverCrab: 3 diff --git a/Resources/Prototypes/radio_channels.yml b/Resources/Prototypes/radio_channels.yml index 232fd41772..48cc0872a1 100644 --- a/Resources/Prototypes/radio_channels.yml +++ b/Resources/Prototypes/radio_channels.yml @@ -86,3 +86,12 @@ color: "#2ed2fd" # long range since otherwise it'd defeat the point of a handheld radio independent of telecomms longRange: true + +- type: radioChannel + id: Freelance + name: chat-radio-freelance + keycode: 'f' + frequency: 1984 + color: "#f6ce64" + # long range since otherwise it'd defeat the point of a handheld radio independent of telecomms + longRange: true diff --git a/Resources/Prototypes/secret_weights.yml b/Resources/Prototypes/secret_weights.yml index a3a1732ed3..7822a8c3ad 100644 --- a/Resources/Prototypes/secret_weights.yml +++ b/Resources/Prototypes/secret_weights.yml @@ -1,10 +1,10 @@ - type: weightedRandom id: Secret weights: - Survival: 0.45 - Nukeops: 0.10 - Zombie: 0.05 - Revolutionary: 0.05 + Survival: 0.40 + Nukeops: 0.12 + Zombie: 0.03 + Revolutionary: 0.10 Traitor: 0.35 #Pirates: 0.15 #ahoy me bucko diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 8a120d7bf0..145d65e15a 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -31,6 +31,9 @@ - type: Tag id: Balloon +- type: Tag + id: BananaPeel + - type: Tag id: BaseballBat @@ -196,6 +199,9 @@ - type: Tag id: BoxHug +- type: Tag + id: Burnt + - type: Tag id: BrassInstrument @@ -234,7 +240,7 @@ - type: Tag id: CanPilot - + - type: Tag id: CannonRestrict @@ -311,6 +317,9 @@ - type: Tag id: ClownShoes +- type: Tag + id: ClownSuit + - type: Tag id: CluwneHorn @@ -359,6 +368,24 @@ - type: Tag id: Cryobeaker +- type: Tag + id: CrystalCyan + +- type: Tag + id: CrystalBlue + +- type: Tag + id: CrystalPink + +- type: Tag + id: CrystalGreen + +- type: Tag + id: CrystalOrange + +- type: Tag + id: CrystalRed + - type: Tag id: ConveyorAssembly @@ -374,6 +401,9 @@ - type: Tag id: CubanCarp +- type: Tag + id: DeathAcidifier + - type: Tag id: Debug @@ -407,6 +437,9 @@ - type: Tag id: Donut +- type: Tag + id: DrinkCan + - type: Tag id: DrinkSpaceGlue @@ -602,6 +635,9 @@ - type: Tag id: Hotsauce +- type: Tag + id: Ice + - type: Tag id: Igniter @@ -644,6 +680,9 @@ - type: Tag id: Lemon +- type: Tag + id: LightReplacer + - type: Tag id: Lime @@ -915,6 +954,9 @@ - type: Tag id: ShellShotgun +- type: Tag + id: PelletShotgunFlare + - type: Tag id: Shiv @@ -969,6 +1011,9 @@ - type: Tag id: SpeedLoaderRifle +- type: Tag + id: SpiderCraft + - type: Tag id: SpreaderIgnore @@ -1062,6 +1107,9 @@ - type: Tag id: WeaponPistolCHIMPUpgradeKit +- type: Tag + id: WeaponShotgunKammerer + - type: Tag id: Window @@ -1089,6 +1137,9 @@ - type: Tag id: Write +- type: Tag + id: WriteIgnoreStamps + - type: Tag id: RifleStock @@ -1097,3 +1148,6 @@ - type: Tag id: MindShield + +- type: Tag + id: boots \ No newline at end of file diff --git a/Resources/Prototypes/themes.yml b/Resources/Prototypes/themes.yml index 30a6ec3591..2de265ff77 100644 --- a/Resources/Prototypes/themes.yml +++ b/Resources/Prototypes/themes.yml @@ -13,8 +13,64 @@ dangerousRedFore: "#BB3232" disabledFore: "#5A5A5A" - type: uiTheme - id: SS14ClassicTheme - path: /Textures/Interface/Classic/ + id: SS14PlasmafireTheme + path: /Textures/Interface/Plasmafire/ + colors: + whiteText: "#FFF5EE" + slotSelectedGold: "#FFF5EE" + slotColor: "#FFF5EE" + slotOutline: "#FFF5EE" + slotText: "#FFF5EE" + nanoGold: "#FFF5EE" + goodGreenFore: "#FFF5EE" + concerningOrangeFore: "#FFF5EE" + dangerousRedFore: "#FFF5EE" + disabledFore: "#FFF5EE" +- type: uiTheme + id: SS14SlimecoreTheme + path: /Textures/Interface/Slimecore/ + colors: + whiteText: "#FFF5EE" + slotSelectedGold: "#FFF5EE" + slotColor: "#FFF5EE" + slotOutline: "#FFF5EE" + slotText: "#FFF5EE" + nanoGold: "#FFF5EE" + goodGreenFore: "#FFF5EE" + concerningOrangeFore: "#FFF5EE" + dangerousRedFore: "#FFF5EE" + disabledFore: "#FFF5EE" +- type: uiTheme + id: SS14ClockworkTheme + path: /Textures/Interface/Clockwork/ + colors: + whiteText: "#FFF5EE" + slotSelectedGold: "#FFF5EE" + slotColor: "#FFF5EE" + slotOutline: "#FFF5EE" + slotText: "#FFF5EE" + nanoGold: "#FFF5EE" + goodGreenFore: "#FFF5EE" + concerningOrangeFore: "#FFF5EE" + dangerousRedFore: "#FFF5EE" + disabledFore: "#FFF5EE" +- type: uiTheme + id: SS14RetroTheme + path: /Textures/Interface/Retro/ + colors: + whiteText: "#FFF5EE" + slotSelectedGold: "#FFF5EE" + slotColor: "#FFF5EE" + slotOutline: "#FFF5EE" + slotText: "#FFF5EE" + nanoGold: "#FFF5EE" + goodGreenFore: "#FFF5EE" + concerningOrangeFore: "#FFF5EE" + dangerousRedFore: "#FFF5EE" + disabledFore: "#FFF5EE" +- type: uiTheme + id: SS14MinimalistTheme + path: /Textures/Interface/Minimalist/ colors: whiteText: "#FFF5EE" slotSelectedGold: "#e6b812" @@ -27,8 +83,8 @@ dangerousRedFore: "#BB3232" disabledFore: "#5A5A5A" - type: uiTheme - id: SS14ModernizedTheme - path: /Textures/Interface/Modernized/ + id: SS14ErisTheme + path: /Textures/Interface/Eris/ colors: whiteText: "#FFF5EE" slotSelectedGold: "#e6b812" @@ -39,4 +95,4 @@ goodGreenFore: "#31843E" concerningOrangeFore: "#A5762F" dangerousRedFore: "#BB3232" - disabledFore: "#5A5A5A" + disabledFore: "#5A5A5A" \ No newline at end of file diff --git a/Resources/Prototypes/threats.yml b/Resources/Prototypes/threats.yml index cb20ce19d9..ba4a2f4e43 100644 --- a/Resources/Prototypes/threats.yml +++ b/Resources/Prototypes/threats.yml @@ -8,7 +8,7 @@ - type: ninjaHackingThreat id: Dragon announcement: terror-dragon - rule: Dragon + rule: DragonSpawn - type: ninjaHackingThreat id: Revenant diff --git a/Resources/ServerInfo/Guidebook/Antagonist/MinorAntagonists.xml b/Resources/ServerInfo/Guidebook/Antagonist/MinorAntagonists.xml index 4fc9d6c152..64802c235a 100644 --- a/Resources/ServerInfo/Guidebook/Antagonist/MinorAntagonists.xml +++ b/Resources/ServerInfo/Guidebook/Antagonist/MinorAntagonists.xml @@ -2,7 +2,7 @@ # Minor Antagonists Most if not all Minor Antagonists are ghost-controlled roles that gives dead people new ways to cause chaos around the station. They are spawned by random events. - + # Revenant @@ -42,7 +42,7 @@ - Raise an Army of [color=#a4885c]Rat Servants[/color]. - - Conjure a cloud of miasma. + - Conjure a cloud of ammonia. # Space Dragon @@ -53,9 +53,9 @@ A Space Dragon is a giant dragon that creates space carp rifts and eat the crew. ## Abilities - + - Devour critical or dead victims. - + diff --git a/Resources/ServerInfo/Guidebook/Antagonist/Nuclear Operatives.xml b/Resources/ServerInfo/Guidebook/Antagonist/Nuclear Operatives.xml index 767156452c..f3ced7eeda 100644 --- a/Resources/ServerInfo/Guidebook/Antagonist/Nuclear Operatives.xml +++ b/Resources/ServerInfo/Guidebook/Antagonist/Nuclear Operatives.xml @@ -13,9 +13,9 @@ - - The [color=#a4885c]Nukie Agent[/color] wears the black elite hardsuit, and can act as a combat medic for the mission. + - The [color=#a4885c]Nukie Agent[/color] wears the blood-red medic hardsuit, and can act as a combat medic for the mission. - + - Regular [color=#a4885c]Nuclear Operatives[/color], who have the normal blood red hardsuit. diff --git a/Resources/ServerInfo/Guidebook/Antagonist/Traitors.xml b/Resources/ServerInfo/Guidebook/Antagonist/Traitors.xml index dc8e870b03..45d41631c2 100644 --- a/Resources/ServerInfo/Guidebook/Antagonist/Traitors.xml +++ b/Resources/ServerInfo/Guidebook/Antagonist/Traitors.xml @@ -70,6 +70,10 @@ + - Steal the Head of Security's [color=#a4885c]X-01 MultiPhase Energy Gun[/color]. + + + - Steal the Chief Engineer's [color=#a4885c]Advanced Magboots[/color]. diff --git a/Resources/ServerInfo/Guidebook/Cargo/Salvage.xml b/Resources/ServerInfo/Guidebook/Cargo/Salvage.xml index 1189af4905..f931825766 100644 --- a/Resources/ServerInfo/Guidebook/Cargo/Salvage.xml +++ b/Resources/ServerInfo/Guidebook/Cargo/Salvage.xml @@ -28,7 +28,7 @@ Jetpacks will be needed to move thoughout space, since without floors and gravit Internals will be important, given all species need to breathe, and space doesnt have any gases. Your mask is used to connect the gas tank to your mouth to breath, while the gas tanks hold consumable gases and can be refilled at gas canisters. All species breathe oxygen (blue + yellow tanks) except slimes, which need nitrogen (red tanks) - + diff --git a/Resources/ServerInfo/Guidebook/Engineering/Singularity.xml b/Resources/ServerInfo/Guidebook/Engineering/Singularity.xml index 5ebcd0d7d6..aa9c92ab5e 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Singularity.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Singularity.xml @@ -57,7 +57,7 @@ Continous radiation exposure will gradually convert the stored plasma into triti The Particle Accelerator (PA) is a multi-tile structure that launches accelerated particles from its emitters. Its emitters should always face the gravitational singularity generator. -Some stations already have an unfinished PA. To complete, first ensure there is HV cable beneath the PA power box, anchor all parts, then add LV cable to each part. +Some stations already have an unfinished PA. To complete, first ensure there is MV cable beneath the PA power box, anchor all parts, then add LV cable to each part. diff --git a/Resources/ServerInfo/Guidebook/Glossary.xml b/Resources/ServerInfo/Guidebook/Glossary.xml new file mode 100644 index 0000000000..d93b7c4042 --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Glossary.xml @@ -0,0 +1,146 @@ + +# Glossary + +This page contains most slang terms you might encounter on the station and throughout the community ! + +# In-Character Slang + +These are terms you might encounter in-game. + +## AOS +Arrest on sight. + +## Atmos +Short for Atmospherics. + +## Atmosian +A term for Atmospheric Technicians, or generally anyone who spends most of their time or is particularly skilled with Atmospherics. + +## Braindead +Refers to a user who has disconnected from the game. Disconnected users may still reconnect to the server and assume control of their character again. + +## Brig +The main area of the security department. This is where prisoners are brought and held for their punishment. The Warden is in charge of the brig's smooth operation. + +## Cap +Short for Captain. + +## Cargonia +Reference to cargo declaring independance. Against the rules. + +## CentCom/Central Command +An administrative agency which oversees the Nanotrasen space station you inhabit. + +## CE +Short for Chief Engineer, the head of the Engineering Department. + +## CMO +Short for Chief Medical Officer, the head of the Medical Department. + +## Crit/Critical +Refers to the health state at which you fall unconscious and unable to move. While in critical, your health slowly decays until you die, unless you happen to get outside assistance. + +## ERT +An Emergency Response Team. These may be dispatched by Central Command for a number of purposes. + +## HoP +Short for Head of Personnel, head of the Service Department. + +## HoS +Short for Head of Security. + +## Insuls +Short for Insulated Gloves. These are the yellow gloves most often worn by Engineers. They are offer complete protection from getting electrocuted from shocked things. Vastily more effective than their budget variety. + +## KOS +Kill on sight. Someone has commited such a serious crime that they are deemed not even worth arresting. + +## Perma +Short for Permanent Brig. This is for the most serious crime and means that a prisoner will never be released. Most stations have a dedicated, seperate area of security for the permanent brig. + +## RD +Short for Research Director, the head of the Science Department. + +## QM +Short for Quartermaster, the head of the Cargo department. + +## Greytide/Greyshirt/Tider/Assistant +Typically utilized to refer to a Passenger due to the color of their standard uniform, though this may be used to negatively refer to other crew members (not only passengers) who act unruly or commit various minor crimes. + +## God +An IC term representing a Server Administrator. CentCom is also sometimes used in this manner. + +## Nukie +A slang/shorthand term of a Nuclear Operative. May sometimes also appear as "Nuke Op". + +## Newkie +A portmanteau of "New" and "Nukie" used to refer to an inexperienced player in the role of a Nuclear Operative. + +## Shift +In-Character way to refer to rounds. + +## Singulo +A shortening of the Singularity Engine. A Singulo can create infinite power for the station but is very dangerous. + +## Singuloose +A Singularity that has grownth too much and breached it's containment. It will rip through the station causing massive damage. + +## SSD +Short for Sudden Sleep Disorder or Space Sleep Disorder. This is an in-character way to refer to a player who has disconnected and is no longer responding. + +## Syndie/Syndi/Syndicate +A catch-all reference to anyone employed by the Syndicate. This ranges from (suspected) Syndicate Agents to Nuclear Operatives. + +## Flukie +A portmanteau of "Fluke" and "Nukie" used to (usually derogatorily) refer to a team of Nuclear Operatives who fail their objective. May also appear as "Fluke Ops". + +## Nanotrasen/NT +Nanotrasen is the company which owns the space station you inhabit. + +## Spess +An intentional mis-spelling of "Space", sometimes used as a portmanteau of "space" and "mess". May also appear in words such as "Spessmen". + +## Spacing +An event which causes an area to lose air pressure, i.e. a hull breach. + +## TC +A telecrystal, which is a currency used by Syndicate Agents to purchase restricted contraband such as weapons and other illegal equipment. + +## Wardenloose +A joke term referencing a Singuloose. A wardenloose is when the Warden is seen outside of the brig. + +# Out-Of-Character Slang + +These are terms you should only be using in OOC chat or outside the game. + +## Admeme +An event hosted or caused by an admin. + +## AHelp/Admin Help +A relay used to report rulebreaking behavior or other issues to administrators. + +## Antag +Short for Antagonists, which are specifically picked individuals designed to drive the round into chaos. + +## Bwoink +The noise made when an admin-help is received. Pray this isn't a ban. + +## Upstream +The baseline version of the game. Any changes to Upstream will "flow" down to all other forks of the game. All official Wizard's Den servers work off of Upstream. + +## LRP +Low Roleplay. Servers marked LRP typically have relaxed roleplaying rules. + +## MRP +Medium Roleplay. Servers marked MRP usually have a decent basis of roleplaying rules and generally require players to act as their character would realistically in a given situation. Less leeway is afforded to behavior such as openly defying Security or your boss. + +## HRP +High Roleplay. Servers marked HRP generally have extensive rules on what is and is not constituted while playing a character. You are generally required to act as your character would, have a character backstory, and follow protocol on the station. Some HRP servers may create their own lore or settings to further facilitate the type of server they wish to host. + +##Self-Antag +A term for a player who engages in antagonist-like activity without actually being an antagonist. This encompasses a wide variety of behavior, but is typically used to describe annoying behavior or actions which are greatly detrimental to other players for no purpose. Self-antagonism is a bannable offense. Sometimes used in IC. DO NOT DO THIS. + +## Validhunting +A player who hunts down "valids", as in people that are valid to kill, even though this person isn't security. + + diff --git a/Resources/ServerInfo/Guidebook/Medical/AdvancedBrute.xml b/Resources/ServerInfo/Guidebook/Medical/AdvancedBrute.xml new file mode 100644 index 0000000000..186799b85e --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Medical/AdvancedBrute.xml @@ -0,0 +1,28 @@ + + + # Specialized Brute Chemicals + + Nanotrasen's greatest scientists have synthesized three more specific brute chemicals! Each one heals a specific damage subtype. + + + + + + # Razorium + + [color=red]USE CAUTION[/color] when using the aforementioned specialized brute chemicals. Should one mix together with a different type of brute chemical, the resulting mixture will create a dangerous chemical known as Razorium! + + To avoid this, make sure the patient is done metabolizing one brute medication before giving them another. Keep an eye on the rate their health is changing. + + [bold]Some examples of mixtures that create Razorium are as follows:[/bold] + + Bicaridine and Puncturase + + Puncturase and Lacerinol + + Bruizine and Bicaridine + + Lacerinol and Bruizine + + Please note that [bold]any[/bold] combination of these 4 chemicals will likely mix and create Razorium! Be careful when creating these chemicals, as they contain Bicaridine. Any leftover Bicaridine will likely mix to create Razorium! + diff --git a/Resources/ServerInfo/Guidebook/Science/Cyborgs.xml b/Resources/ServerInfo/Guidebook/Science/Cyborgs.xml new file mode 100644 index 0000000000..2b8defb070 --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Science/Cyborgs.xml @@ -0,0 +1,66 @@ + + # Cyborgs + Cyborgs are man-machine hybrids, purpose-built by the [textlink="robotics" link="Robotics"] division of science for various duties across the station. Bound by strictly-followed [color=cyan]silicon laws[/color], they serve the crew unconditionally. [italic](Most of the time.)[italic] + + ## Basic Components + + + + + All cyborgs are built on an endoskeleton, which can be crafted at an [color=#a4885c]Exosuit Fabricator[/color]. Further assembly steps can be followed by [color=#a4885c]examining[/color] the endoskeleton. Once built, further upgrades like additional tools and a longer battery life can be unlocked with modules or improved power cells. + + Newly built cyborgs need a [color=#a4885c]brain[/color] able to interface with the electronic body. There are two main types, both of which are able to speak independently, should the chassis be decommissioned, exchanged, or otherwise suffer an unscheduled disassembly. + - The [color=#a4885c]Man-Machine Interface[/color] or MMI for short, is an apparatus able to facilitate communication between a biological brain and electronic components, enabling those suffering from major workplace accidents to continue serving their crew, long after their body is gone. + - The [color=#a4885c]Positronic Brain[/color] is an entirely artificial brain, capable of spontaneous neural activity. The time for the synthetic neurons to descramble can wildly vary, but they allow for the creation of cyborgs without having to extract a brain from a crew member. + + + + + Both brains can be fabricated without requiring any additional research. + + ## Chassis + While all cyborgs share the same endoskeleton, not all share the same chassis. The chassis determines what modules the cyborg can have, along with the [color=#a4885c]departmental radio channel[/color] they correspond to. By default, they will always have access to [color=#D381C9]Science[/color] and [color=green]station-wide[/color] frequencies, along with having [color=#a4885c]all-access[/color]. + + + + + + + + + + [italic]Examples of various cyborg chassis[/italic] + + If you wish to change the chassis of an already existing cyborg, you have to construct a whole new one, limbs and frame included. The brain, power cell and modules [italic](if it can fit in the new chassis,)[/italic] can be carried over from the old chassis, if desired. + + ## Modules + + + + A cyborg isn't able to do much without [color=#a4885c]modules[/color]. These printed circuit boards are specific to cyborgs and grant additional functionality to them. They are printed at the [color=#a4885c]Exosuit Fabricator[/color]. + + [color=#a4885c]Generic[/color] modules add versatility. They can be fitted into any chassis, granting useful tools such as crowbars, GPS, and the ability to interact with cables. [bold]The generic borg chassis can fit up to 6 modules in total.[/bold] + + + + + + + [italic]Examples of generic modules[/italic] + + + For more specific needs, [color=#a4885c]specialized[/color] modules are available, granting capabilities like scanning anomalies, constructing walls, reviving crew mates, or cleaning a space lube spill. These modules are typically colored with the same palette as the department [italic](or occupation)[/italic] they relate to. These modules [italic](with exception to [color=#D381C9]science[/color] modules, which can fit any chassis,)[/italic] can only be fitted in their associated borg chassis. [bold]The specialized borg chassis, being the engineering, janitorial, service, medical, and mining chassis, can fit up to 4 modules.[/bold] + + + + + + + + + + [italic]Examples of specialized modules. Note the housing and circuit board colors. + + Additional modules with advanced or novel capabilities can be acquired through new [textlink="technologies" link="Technologies"] researched by scientists. + + diff --git a/Resources/ServerInfo/Guidebook/Science/Robotics.xml b/Resources/ServerInfo/Guidebook/Science/Robotics.xml index 124831aea2..43e3293785 100644 --- a/Resources/ServerInfo/Guidebook/Science/Robotics.xml +++ b/Resources/ServerInfo/Guidebook/Science/Robotics.xml @@ -7,7 +7,7 @@ The [color=#a4885c]Exosuit Fabricator[/color] is where you'll be printing out most of the parts for your creations, such as: - - Bot limbs + - [textlink="Cyborg" link="Cyborgs"] limbs - Mech parts and equipment - Proximity sensors diff --git a/Resources/ServerInfo/Guidebook/Service/Botany.xml b/Resources/ServerInfo/Guidebook/Service/Botany.xml index b96e10c91c..7db8912d22 100644 --- a/Resources/ServerInfo/Guidebook/Service/Botany.xml +++ b/Resources/ServerInfo/Guidebook/Service/Botany.xml @@ -1,4 +1,45 @@ +# Botany +As a botanist, it is your job to grow enough food to stop the chef from seeking "alternative sources". Grow lots of wheat, and when you get tired of that, grow weed. Make weed smoothies and spike drinks with nettles. Just keep growing plants, and you'll do great! + +## Starting your shift +First identify the machines around you that you will be using. Coordinate with the Chef to see if they want anything specific to be grown, otherwise grow wheat and bananas and whatever else you feel like growing. You may also grow plants for Chemistry (Medbay), the Bartender, or to sell by Cargo. + + +# Tools +There are many tools that can be used to keep your crops healthy and growing. The Hydroponics Tray is where you will spend most of your time as a botanist. + +## Hydroponics Tray + + + +It's a hydroponics tray, it grows plants with water. First fill the tray with water, then add seeds. +Hydroponics tray lights indicate different things depending on color and position: +- [color=red]Red Light, Left[/color]: Dead plant that needs re-planting. Use a spade to remove the plant. +- [color=orange]Flashing Orange Light, Center[/color]: The environment is sub-optimal. Check what is affecting the plant by Shift Clicking on it. It is likely weeds but it could be undesirable pressure or lack of oxygen. If weeds, use a mini hoe or spray 1 time with weed spray. Be warned, however, that overuse of weed killers can lead to unhealthy plants, possibly killing them. +- [color=#0336ff]Blue Light, Right[/color]: Needs water. Use bucket on the water tank and fill the tray. +- [color=green]Green Light, Left[/color]: Ready for harvest. Left click to harvest. +- [color=yellow]Yellow Light, Right[/color]: Needs nutrients. Use any fruit and put it into the soil or get EZ nutrients from chemistry. + +The lifecycle of a hydroponics tray is the following: +- [color=lightgreen]Empty[/color]: no water, seed or nutrients +- [color=lightgreen]Hydrated[/color]: you've added water to it (e.g. from a bottle or bucket). +- [color=lightgreen]Ready for planting[/color]: you've added water and nutrients to it (i.e. fertilizer). +- [color=lightgreen]Planted[/color]: you've added a seed to it +- [color=lightgreen]Ready for Harvest[/color]: you've waited for the plant to grow +- [color=lightgreen]Sampled[/color]: you've taken a sample (seed) +- [color=lightgreen]Harvested[/color]: you've picked ready plants. Some plants will then grow again. Others will die and need replanting. +- [color=lightgreen]Unhealthy[/color]: You've sampled too many seeds or sprayed it with deadly chemicals. The plant isn't coping too well. It'll continue to grow. Health can be restored by fertilizers or you can cut your losses and extract a seed (plant clippers) and replant. +- [color=lightgreen]Old / Wilted[/color]: the plant has matured and will soon die. It will still be harvestable and you can extract seeds but only for a short duration. Extract the seed and then pluck it out / chop it down. +- [color=lightgreen]Dead[/color]: the plant has been harvested and ceased growing. It should be plucked out / chopped down. No seeds can be extracted. + +## Seed Extractor + + + +It extracts seeds. Insert crop, receive seeds. + + # Plant Genetics Like all other forms of life known to NanoTrasen, plants pass traits to offspring in their genes. By manipulating plant genetics, botanists can produce plant varieties with desirable mutations that increase plant health and yield. diff --git a/Resources/ServerInfo/Guidebook/Service/Chef.xml b/Resources/ServerInfo/Guidebook/Service/Chef.xml index 65a413059c..7d077ca269 100644 --- a/Resources/ServerInfo/Guidebook/Service/Chef.xml +++ b/Resources/ServerInfo/Guidebook/Service/Chef.xml @@ -58,7 +58,7 @@ Alt-Click on a Cow with a container in your hand. (Beakers, Buckets, Milk Jugs, - + ## How to Butcher: In most cases, you should be able to use a knife directly on a creature that's dead. It's best to do this in the freezer, as the results are... messy. diff --git a/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml b/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml index 338cbea408..9c007463e0 100644 --- a/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml +++ b/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml @@ -10,13 +10,16 @@ WARNING: This is not an automatically generated list, things here may become out - Dough = 15 Flour, 10 Water - Cornmeal Dough = 1 Egg (6u), 10 Milk, 15 Cornmeal -- Tofu = 5 Enzyme, 30 Soy Milk +- Tortila Dough = 15 Cornmeal, 10 Water +- Tofu = 5 Enzyme (Catalyst), 30 Soy Milk - Pie Dough = 2 Eggs (12u), 15 Flour, 5 Table Salt - Cake Batter = 2 Eggs(12u), 15 flour, 5 Sugar - Vegan Cake Batter = 15 Soy Milk, 15 Flour, 5 Sugar -- Butter = 30 Milk, 5 Table Salt -- Cheese Wheel = 5 Enzyme, 40 Milk +- Butter = 30 Milk, 5 Table Salt (Catalyst) +- Cheese Wheel = 5 Enzyme (Catalyst), 40 Milk +- Chèvre Log = 5 Enzyme (Catalyst), 10 Goat Milk - Meatball = 1 Egg (6u), 5 Flour, 5 Uncooked Animal Proteins +- Chocolate = 6 Cocoa Powder, 2 Milk, 2 Sugar - Uncooked Animal Protein: Grind Raw Meat @@ -26,12 +29,15 @@ WARNING: This is not an automatically generated list, things here may become out + + + ## Secondary Products @@ -41,6 +47,9 @@ WARNING: This is not an automatically generated list, things here may become out - Cutlet: Slice Raw Meat - Cheese Wedge: Slice Cheese Wheel - Flat Dough: Use a rolling pin or a round object (fire extinguisher, soda can, bottle) on Dough. +- Tortilla Dough Slice: cut Tortilla Dough +- Flat Tortilla Dough: Use a rolling pin or a round object (fire extinguisher, soda can, bottle) on Tortilla Dough Slice +- Taco Shell: Microwave Flat Tortilla Dough for 5 Seconds ## Food Examples @@ -51,6 +60,7 @@ WARNING: This is not an automatically generated list, things here may become out - Margherita Pizza: Microwave 1 Flat Dough, 1 Cheese Wedge, and 4 Tomatoes for 30 Seconds - Cake: 1 Cake Batter for 15 Seconds - Apple Pie: 1 Pie Dough, 3 Apples, and 1 Pie Tin for 15 Seconds +- Beef Taco: Microwave 1 Taco Shell, 1 Raw Meat Cutlet, 1 Cheese Wedge for 10 Seconds @@ -62,6 +72,7 @@ WARNING: This is not an automatically generated list, things here may become out + diff --git a/Resources/ServerInfo/Nyanotrasen/Guidebook/Epistemics/Altar.xml b/Resources/ServerInfo/Nyanotrasen/Guidebook/Epistemics/Altar.xml new file mode 100644 index 0000000000..c3b211d296 --- /dev/null +++ b/Resources/ServerInfo/Nyanotrasen/Guidebook/Epistemics/Altar.xml @@ -0,0 +1,22 @@ + +# Altars and Golemancy +## Altars + +The chapel has a [color=#a4885c]sacrificial altar[/color]. To use it, a psionic humanoid must be placed on it, and someone with either psionics or clerical training must initiate the sacrifice. +It appears in the context menu on the altar, which can be opened with the right mouse button by default. + + +Once sacrificed, the psionic humanoid's soul is trapped inside a [color=#a4885c]soul crystal[/color]. This is not the end for them; they can still talk both vocally and telepathically, and this form is much harder to destroy. + + +10% of the time, the altar will spawn a powerful psionic item along with the soul crystal. This chance increases to 50% if the sacrifice was performed by someone with clerical training, such as the [color=#a4885c]chaplain[/color] or [color=#a4885c]mystagogue[/color]. + +## Golemancy + + + + +Soul crystals can be installed into [color=#a4885c]golems[/color] to give the soul a new body. Golems are bound to serve their master. As constructs, they do not need to eat, drink, or breathe. +Note that for wood golems, if plants are planted on top of their head, the plants will still need those things. + + diff --git a/Resources/ServerInfo/Nyanotrasen/Guidebook/Epistemics/Psionics.xml b/Resources/ServerInfo/Nyanotrasen/Guidebook/Epistemics/Psionics.xml new file mode 100644 index 0000000000..2911dae155 --- /dev/null +++ b/Resources/ServerInfo/Nyanotrasen/Guidebook/Epistemics/Psionics.xml @@ -0,0 +1,73 @@ + +# Psionics +[color=#a4885c]Psionics[/color] are mental abilities that interface with the [color=#a4885c]noösphere[/color]. Humans have limited access to the noösphere's full potential, allowing some to find ways to command it. +The abilities originate from distorting a noöspheric imprint into a specific shape, a bit like a lock and key. This means that humans can only have a single ability at a time. +An imprint shaped for metapsionics will not work for invisibility, and vice versa. + + +Many other creatures are much more in tune with it than humans, allowing them to access more powerful psionics like [color=#a4885c]kineses[/color]. + +## Telepathy +All psionic entities have a shared telepathic communication channel. It's anonymized, so you never know who you are talking to. Statistically, it probably is not human. + +## Glimmer +[color=#a4885c]Glimmer[/color] is a more colloquial term for [color=#a4885c]noöspheric pressure[/color], measured in [color=#a4885c]milli-Psi (mΨ)[/color]. The noösphere can be considered analogous to an atmosphere. In a localized area, everything will equalize towards a certain pressure that's based off of the total energy in the system. +Note that unlike atmospheres, areas of noopsheric pressure do not operate by physical contigiousness, but mental. This means that areas with intertwined destinies will experience the same latent glimmer regardless of physical separation. + + +The [color=#a4885c]sophic scribe[/color] tracks glimmer. + + + + + + +Epistemics can build devices to interact with glimmer. These are usually the main determiners of where glimmer is going. +[color=#a4885c]Glimmer probers[/color] will increase glimmer, but directly generate research points without further input. [color=#a4885c]Glimmer drains[/color] simply drain glimmer at the cost of electricity. + +Use of psionics will increase glimmer, as will [color=#a4885c]noöspheric storms[/color]. + +## Discharges +Glimmer will occasionally discharge if it's above 100 mΨ, causing a wide range of effects based on just how high it is. The most common is giving all entities with psionic potential a small seizure, +which is something most people working on stations with an Epistemics department have grown used to. + +## Acquiring Psionics + + +Psionics can be acquired in a number of ways. The oracle will sometimes dispense a strange liquid called [color=#a4885c]lotophagoi oil[/color], which at high glimmer levels is guaranteed to give psionics. + +Random discharges may give you psionics as the seizure knocks your noöspheric imprint into just the right shape. + +[color=#a4885c]Space drugs[/color] are an easier to acquire but much weaker alternative to lotophagoi oil. + +## Psionic Insulation + + + + + +[color=#a4885c]Insulative clothing[/color] and [color=#a4885c]cryptobiolin[/color] will render you immune to psionics, but prevent you from using any you have. + + +Security has a more forcible option for insulative clothing. + +## Handling Glimmer Emergencies + +Probers should be turned off before glimmer exceeds 500 mΨ. + + +Glimmer drains are quite effective at draining glimmer, taking it out as fast as a prober can put it in. + + +Sacrificing psychics will reduce glimmer instantly by a decent amount. + + +Metabolizing 20u or more of [color=#a4885c]mindbreaker[/color] will remove psionics from a person, meaning they will not generate any more glimmer. + + +[color=#a4885c]Soulbreaker[/color] shells will remove psionics from psychics they hit. + + +[color=#a4885c]Ectoplasm[/color], combined in a beaker with equal parts water, ash, blood, and plasma, will produce a normality crystal when heated enough. [color=#fcdf03]Use a hot plate for this.[/color] + + diff --git a/Resources/Textures/Clothing/Belt/belt_overlay.rsi/meta.json b/Resources/Textures/Clothing/Belt/belt_overlay.rsi/meta.json index b8464e4243..18b282d9df 100644 --- a/Resources/Textures/Clothing/Belt/belt_overlay.rsi/meta.json +++ b/Resources/Textures/Clothing/Belt/belt_overlay.rsi/meta.json @@ -97,6 +97,9 @@ { "name": "stunbaton" }, + { + "name": "tear_gas_grenade" + }, { "name": "wrench" }, diff --git a/Resources/Textures/Clothing/Belt/belt_overlay.rsi/tear_gas_grenade.png b/Resources/Textures/Clothing/Belt/belt_overlay.rsi/tear_gas_grenade.png new file mode 100644 index 0000000000..c9fc876cd6 Binary files /dev/null and b/Resources/Textures/Clothing/Belt/belt_overlay.rsi/tear_gas_grenade.png differ diff --git a/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/alt-equipped-EARS.png b/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/alt-equipped-EARS.png new file mode 100644 index 0000000000..3393125534 Binary files /dev/null and b/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/alt-equipped-EARS.png differ diff --git a/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/equipped-EARS.png b/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/equipped-EARS.png new file mode 100644 index 0000000000..30188f5e38 Binary files /dev/null and b/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/equipped-EARS.png differ diff --git a/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/icon.png b/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/icon.png new file mode 100644 index 0000000000..0ff3f2c989 Binary files /dev/null and b/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/icon_alt.png b/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/icon_alt.png new file mode 100644 index 0000000000..d3be4bc497 Binary files /dev/null and b/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/icon_alt.png differ diff --git a/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/meta.json b/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/meta.json new file mode 100644 index 0000000000..5567eaaf37 --- /dev/null +++ b/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprite modified by PursuitInAshes (Github) for SS14, original sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/f8f4aeda930fcd0805ca4cc76d9bc9412a5b3428", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon_alt" + }, + { + "name": "equipped-EARS", + "directions": 4 + }, + { + "name": "alt-equipped-EARS", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Eyes/Glasses/jensen.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Glasses/jensen.rsi/equipped-EYES.png new file mode 100644 index 0000000000..eae77b40e5 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/jensen.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/jensen.rsi/icon.png b/Resources/Textures/Clothing/Eyes/Glasses/jensen.rsi/icon.png new file mode 100644 index 0000000000..d3834690b3 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/jensen.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/jensen.rsi/inhand-left.png b/Resources/Textures/Clothing/Eyes/Glasses/jensen.rsi/inhand-left.png new file mode 100644 index 0000000000..67f0c9cf7f Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/jensen.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/jensen.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Glasses/jensen.rsi/inhand-right.png new file mode 100644 index 0000000000..418ac42dd3 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/jensen.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/jensen.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Glasses/jensen.rsi/meta.json new file mode 100644 index 0000000000..3c7d2352cc --- /dev/null +++ b/Resources/Textures/Clothing/Eyes/Glasses/jensen.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprited by MACMAN2003", + "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/Eyes/Hud/synd.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Hud/synd.rsi/equipped-EYES.png new file mode 100644 index 0000000000..9128dd01f6 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Hud/synd.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/Clothing/Eyes/Hud/synd.rsi/icon.png b/Resources/Textures/Clothing/Eyes/Hud/synd.rsi/icon.png new file mode 100644 index 0000000000..02dc6cc067 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Hud/synd.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Eyes/Hud/synd.rsi/inhand-left.png b/Resources/Textures/Clothing/Eyes/Hud/synd.rsi/inhand-left.png new file mode 100644 index 0000000000..ebd7858dab Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Hud/synd.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Eyes/Hud/synd.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Hud/synd.rsi/inhand-right.png new file mode 100644 index 0000000000..53535a1de7 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Hud/synd.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Eyes/Hud/synd.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Hud/synd.rsi/meta.json new file mode 100644 index 0000000000..e3bc1a2940 --- /dev/null +++ b/Resources/Textures/Clothing/Eyes/Hud/synd.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by IntegerTempest", + "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/Hands/Gloves/captain.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/equipped-HAND.png index 76c034d634..0a03d27619 100644 Binary files a/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/equipped-HAND.png and b/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/equipped-HAND.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/icon.png index a2b60b0551..d7dbdbe152 100644 Binary files a/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/icon.png and b/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/inhand-left.png index e06e2748e9..1e397d6bab 100644 Binary files a/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/inhand-left.png and b/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/inhand-right.png index 0a50f7e642..d7c09087df 100644 Binary files a/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/inhand-right.png and b/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/hop.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/hop.rsi/equipped-HAND.png new file mode 100644 index 0000000000..91950ada70 Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/hop.rsi/equipped-HAND.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/hop.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/hop.rsi/icon.png new file mode 100644 index 0000000000..d636dc2d2e Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/hop.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/hop.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/hop.rsi/inhand-left.png new file mode 100644 index 0000000000..50f6b0bf38 Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/hop.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/hop.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/hop.rsi/inhand-right.png new file mode 100644 index 0000000000..7944703534 Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/hop.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/hop.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/hop.rsi/meta.json new file mode 100644 index 0000000000..c79b379182 --- /dev/null +++ b/Resources/Textures/Clothing/Hands/Gloves/hop.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Drawn by Ubaser", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/equipped-HAND.png new file mode 100644 index 0000000000..914ead60ec Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/equipped-HAND.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/icon.png new file mode 100644 index 0000000000..2330f3d39a Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/inhand-left.png new file mode 100644 index 0000000000..21fe32a5c5 Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/inhand-right.png new file mode 100644 index 0000000000..98bf0b33b5 Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/meta.json new file mode 100644 index 0000000000..14008ae27b --- /dev/null +++ b/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Drawn by Ubaser.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Hands/Gloves/nitrile.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/nitrile.rsi/equipped-HAND.png new file mode 100644 index 0000000000..52874cf947 Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/nitrile.rsi/equipped-HAND.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/nitrile.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/nitrile.rsi/icon.png new file mode 100644 index 0000000000..506066aa7e Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/nitrile.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/nitrile.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/nitrile.rsi/inhand-left.png new file mode 100644 index 0000000000..ee69fc8b33 Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/nitrile.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/nitrile.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/nitrile.rsi/inhand-right.png new file mode 100644 index 0000000000..0ea62041f0 Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/nitrile.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/nitrile.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/nitrile.rsi/meta.json new file mode 100644 index 0000000000..88e3ebd509 --- /dev/null +++ b/Resources/Textures/Clothing/Hands/Gloves/nitrile.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/meta.json index 2c29e1db67..fe9f38cad4 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/meta.json @@ -36,6 +36,14 @@ { "name": "on-inhand-right", "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..96a6860b61 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..34a731b4d6 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/meta.json index 2c29e1db67..fe9f38cad4 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/meta.json @@ -36,6 +36,14 @@ { "name": "on-inhand-right", "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..431c0794d0 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..f349642f76 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/meta.json index 2c29e1db67..fe9f38cad4 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/meta.json @@ -36,6 +36,14 @@ { "name": "on-inhand-right", "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..2c3913a127 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..3a88455d2d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/meta.json index 2c29e1db67..fe9f38cad4 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/meta.json @@ -36,6 +36,14 @@ { "name": "on-inhand-right", "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..5baf8b13d6 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..2d3145ae71 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/meta.json index 2c29e1db67..fe9f38cad4 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/meta.json @@ -36,6 +36,14 @@ { "name": "on-inhand-right", "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..0dc4920539 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..85a5df6c3a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-vulpkanin.png new file mode 100644 index 0000000000..04d0a81524 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/meta.json index 1faf3aa6d0..b0b6e0a2b0 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -54,6 +54,10 @@ { "name": "inhand-right-light", "directions": 4 + }, + { + "name": "equipped-head-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..a00e2ce75f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/meta.json index 120d4d7723..8762076627 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/basic.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/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/equipped-HELMET.png deleted file mode 100644 index 7f66343e42..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/icon-flash.png new file mode 100644 index 0000000000..05f8fa3cb3 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/icon.png index 7c7421bd3d..cee0d6f029 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/inhand-left.png deleted file mode 100644 index 1aaf0e08f1..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/inhand-right.png deleted file mode 100644 index 5179cfb413..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/meta.json index a470e00944..ac71856cd7 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/capspace.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, modified by Emisse for SS14", "size": { "x": 32, "y": 32 @@ -11,15 +11,30 @@ "name": "icon" }, { - "name": "equipped-HELMET", + "name": "icon-flash" + }, + { + "name": "off-equipped-HELMET", + "directions": 4 + }, + { + "name": "off-inhand-left", + "directions": 4 + }, + { + "name": "off-inhand-right", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", "directions": 4 }, { - "name": "inhand-left", + "name": "on-inhand-left", "directions": 4 }, { - "name": "inhand-right", + "name": "on-inhand-right", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET.png new file mode 100644 index 0000000000..7079528ae6 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-inhand-left.png new file mode 100644 index 0000000000..5216ba5dd9 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-inhand-right.png new file mode 100644 index 0000000000..2ffe013c12 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..6f4caecb98 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-inhand-left.png new file mode 100644 index 0000000000..6a5d075d80 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-inhand-right.png new file mode 100644 index 0000000000..25796fc014 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/cybersun.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/cybersun.rsi/equipped-HELMET.png index d67b95fdff..6815576fb6 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/cybersun.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/cybersun.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..3a48de05d6 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/meta.json index a470e00944..83e8e1a788 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.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 | vulpkanin versions taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13/commit/091d9ec00f186052b87bd65125e896f78faefe38 and edited by Floofers", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/meta.json index 7bea2d1a86..4dae2c687d 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.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 | vulpkanin versions taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -36,6 +36,14 @@ { "name": "on-inhand-right", "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..f6da4a5615 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..ee912af170 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/meta.json index 7bea2d1a86..4dae2c687d 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/engineering.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 | vulpkanin versions taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -36,6 +36,14 @@ { "name": "on-inhand-right", "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..110bf0cdbd Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..dc92fca2f6 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/meta.json index 7bea2d1a86..d168108fdf 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/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", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -36,6 +36,14 @@ { "name": "on-inhand-right", "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..471bdb6e3a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..f7edf7fc2e Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/meta.json index 7bea2d1a86..4dae2c687d 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/rd.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 | vulpkanin versions taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -36,6 +36,14 @@ { "name": "on-inhand-right", "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..f063e6e28e Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..debc649e10 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/meta.json index 7bea2d1a86..d168108fdf 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/salvage.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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -36,6 +36,14 @@ { "name": "on-inhand-right", "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..8a26351824 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..fd306c94c5 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/meta.json index 7bea2d1a86..40c5c72b11 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/security-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 | vulpkanin versions taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13/commit/091d9ec00f186052b87bd65125e896f78faefe38 and edited by Floofers", "size": { "x": 32, "y": 32 @@ -36,6 +36,14 @@ { "name": "on-inhand-right", "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..9c2d9c505a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..5815f63369 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon-flash.png index 1e843dce4b..c711b3b330 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon-flash.png and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon.png index a191340e76..ce766f6f6e 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/meta.json index d77d41281c..14121523ca 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by Alekshhh for SS14", + "copyright": "sprite made by Gtheglorious based on the sprite made by Alekshhh for SS14 | vulpkanin versions made by Floofers", "size": { "x": 32, "y": 32 @@ -20,6 +20,14 @@ { "name": "on-equipped-HELMET", "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..2fa6eef37b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET.png index 47044b0629..853f2d1868 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..b0b5d950fb Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET.png index 5cb57f76ff..26398a6b41 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon-flash.png index 01aa88c9cc..84f1b0ad31 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon-flash.png and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon.png index b1d12d771b..3301c0a0ab 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/meta.json index 7bea2d1a86..abe1535014 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/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": "Sprite made by Gtheglorious based on the sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, | vulpkanin versions taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13/commit/091d9ec00f186052b87bd65125e896f78faefe38 and edited by Floofers", "size": { "x": 32, "y": 32 @@ -36,6 +36,14 @@ { "name": "on-inhand-right", "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..4cda5d072d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET.png index 4abb1d3c74..2c953f28dd 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..9f6f205895 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET.png index bb9318f95f..b2dfdc5d08 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-vulpkanin.png new file mode 100644 index 0000000000..64b43450f4 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/meta.json index 663b0129d5..35a6a87bfd 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Original by Emisse, modified by EmoGarbage404", + "copyright": "Original by Emisse, modified by EmoGarbage404 | vulpkanin version made by Floofers", "size": { "x": 32, @@ -55,6 +55,10 @@ { "name": "inhand-right-light", "directions": 4 + }, + { + "name": "equipped-head-vulpkanin", + "directions": 4 } ] } \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/meta.json index 7bea2d1a86..d168108fdf 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/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/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -36,6 +36,14 @@ { "name": "on-inhand-right", "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..221f9b0200 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..3b256eff87 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beret_physician.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/beret_physician.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..4746355124 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/beret_physician.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beret_physician.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/beret_physician.rsi/icon.png new file mode 100644 index 0000000000..2a32fed12e Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/beret_physician.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beret_physician.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/beret_physician.rsi/inhand-left.png new file mode 100644 index 0000000000..a1742a0d64 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/beret_physician.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beret_physician.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/beret_physician.rsi/inhand-right.png new file mode 100644 index 0000000000..8b75523c98 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/beret_physician.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beret_physician.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/beret_physician.rsi/meta.json new file mode 100644 index 0000000000..563409ca4a --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/beret_physician.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprited by Hülle#2562 (Discord), redrawn by Ubaser", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hats/capcap.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/capcap.rsi/equipped-HELMET.png index 7616a5d8e1..831b7780eb 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/capcap.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hats/capcap.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/capcap.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/capcap.rsi/icon.png index b2a2f4ef4b..bbc380f6ad 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/capcap.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hats/capcap.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/capcap.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/capcap.rsi/meta.json index 9c0583a7c5..b21b92751c 100644 --- a/Resources/Textures/Clothing/Head/Hats/capcap.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/capcap.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/0671297bb1c1b31d5885f2768aecbe9dc51d39e7 , edited by Skarletto (github)", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/0671297bb1c1b31d5885f2768aecbe9dc51d39e7 , edited by Skarletto (github), edited by Emisse for ss14", "size": { "x": 32, "y": 32 @@ -19,4 +19,4 @@ "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Clothing/Head/Hats/captain.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/captain.rsi/equipped-HELMET.png index 9cb857e9f4..19048d7d1a 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/captain.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hats/captain.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/captain.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/captain.rsi/icon.png index 6cc73037aa..c025248263 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/captain.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hats/captain.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/captain.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/captain.rsi/inhand-left.png index 8684787c2d..32a9300b28 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/captain.rsi/inhand-left.png and b/Resources/Textures/Clothing/Head/Hats/captain.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/captain.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/captain.rsi/inhand-right.png index 00813d1a11..b59da29a4b 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/captain.rsi/inhand-right.png and b/Resources/Textures/Clothing/Head/Hats/captain.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/captain.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/captain.rsi/meta.json index 2bfe92b12e..ae83b3a1d4 100644 --- a/Resources/Textures/Clothing/Head/Hats/captain.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/captain.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/69842/commits/d8138946b0ed06fced522729ac8eaa0596864329 edited by Skarletto (github)", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/69842/commits/d8138946b0ed06fced522729ac8eaa0596864329 edited by Skarletto (github), edited by Emisse for ss14", "size": { "x": 32, "y": 32 @@ -27,4 +27,4 @@ "name": "icon" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Clothing/Head/Hats/comcap.rsi/equipped-HELMET-hamster.png b/Resources/Textures/Clothing/Head/Hats/comcap.rsi/equipped-HELMET-hamster.png new file mode 100644 index 0000000000..db7cfcbd45 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/comcap.rsi/equipped-HELMET-hamster.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/comcap.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/comcap.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..938f217de7 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/comcap.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/comcap.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/comcap.rsi/icon.png new file mode 100644 index 0000000000..5372dd3cc0 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/comcap.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/comcap.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/comcap.rsi/meta.json new file mode 100644 index 0000000000..cf06e9bdd1 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/comcap.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/0671297bb1c1b31d5885f2768aecbe9dc51d39e7 , edited by Skarletto (github), Greenified by MACMAN2003", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET-hamster", + "directions": 4 + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/Hats/party_blue.rsi/equipped-HELMET-hamster.png b/Resources/Textures/Clothing/Head/Hats/party_blue.rsi/equipped-HELMET-hamster.png new file mode 100644 index 0000000000..7349b6d703 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/party_blue.rsi/equipped-HELMET-hamster.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/party_blue.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/party_blue.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..14ec91ea0b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/party_blue.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/party_blue.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/party_blue.rsi/icon.png new file mode 100644 index 0000000000..13aec621ed Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/party_blue.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/party_blue.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/party_blue.rsi/meta.json new file mode 100644 index 0000000000..b63910b85c --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/party_blue.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by netwy(583844759429316618)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET-hamster", + "directions": 4 + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hats/party_green.rsi/equipped-HELMET-hamster.png b/Resources/Textures/Clothing/Head/Hats/party_green.rsi/equipped-HELMET-hamster.png new file mode 100644 index 0000000000..18360c5976 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/party_green.rsi/equipped-HELMET-hamster.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/party_green.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/party_green.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..e4eca43177 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/party_green.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/party_green.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/party_green.rsi/icon.png new file mode 100644 index 0000000000..33a0d6099f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/party_green.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/party_green.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/party_green.rsi/meta.json new file mode 100644 index 0000000000..b63910b85c --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/party_green.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by netwy(583844759429316618)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET-hamster", + "directions": 4 + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hats/party_red.rsi/equipped-HELMET-hamster.png b/Resources/Textures/Clothing/Head/Hats/party_red.rsi/equipped-HELMET-hamster.png new file mode 100644 index 0000000000..bbd542dfe0 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/party_red.rsi/equipped-HELMET-hamster.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/party_red.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/party_red.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..d957d7bf07 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/party_red.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/party_red.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/party_red.rsi/icon.png new file mode 100644 index 0000000000..c3eb89478c Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/party_red.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/party_red.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/party_red.rsi/meta.json new file mode 100644 index 0000000000..b63910b85c --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/party_red.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by netwy(583844759429316618)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET-hamster", + "directions": 4 + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hats/party_yellow.rsi/equipped-HELMET-hamster.png b/Resources/Textures/Clothing/Head/Hats/party_yellow.rsi/equipped-HELMET-hamster.png new file mode 100644 index 0000000000..9adc4fc432 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/party_yellow.rsi/equipped-HELMET-hamster.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/party_yellow.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/party_yellow.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..684c82cbc4 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/party_yellow.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/party_yellow.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/party_yellow.rsi/icon.png new file mode 100644 index 0000000000..8cfa34f413 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/party_yellow.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/party_yellow.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/party_yellow.rsi/meta.json new file mode 100644 index 0000000000..b63910b85c --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/party_yellow.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by netwy(583844759429316618)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET-hamster", + "directions": 4 + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Helmets/ancientvoidsuit.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Helmets/ancientvoidsuit.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..16c2c48bfc Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/ancientvoidsuit.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/ancientvoidsuit.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/ancientvoidsuit.rsi/meta.json index ce6a86ea76..3b63122f2f 100644 --- a/Resources/Textures/Clothing/Head/Helmets/ancientvoidsuit.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/ancientvoidsuit.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/tree/fb2d71495bfe81446159ef528534193d09dd8d34, sprite repaletted by Flareguy for space-station-14", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/tree/fb2d71495bfe81446159ef528534193d09dd8d34, sprite repaletted by Flareguy for space-station-14 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..b7625492dd Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/meta.json index 2e66e1d835..3c406ff57c 100644 --- a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprite edited by Flareguy for SS14, original unedited sprite can be found in https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a", + "copyright": "Sprite edited by Flareguy for SS14, original unedited sprite can be found in https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d modified by Floofers", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..c4e6351d9d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/meta.json index 2e66e1d835..3c406ff57c 100644 --- a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprite edited by Flareguy for SS14, original unedited sprite can be found in https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a", + "copyright": "Sprite edited by Flareguy for SS14, original unedited sprite can be found in https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d modified by Floofers", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..669368c2bb Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/meta.json index 2e66e1d835..3c406ff57c 100644 --- a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprite edited by Flareguy for SS14, original unedited sprite can be found in https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a", + "copyright": "Sprite edited by Flareguy for SS14, original unedited sprite can be found in https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d modified by Floofers", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..be3734842f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/meta.json index a470e00944..4427c7fb51 100644 --- a/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/ihvoid.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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Helmets/janitor_bombsuit.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/janitor_bombsuit.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..ba2968b971 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/janitor_bombsuit.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/janitor_bombsuit.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/janitor_bombsuit.rsi/icon.png new file mode 100644 index 0000000000..e9160d70cc Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/janitor_bombsuit.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/janitor_bombsuit.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/janitor_bombsuit.rsi/inhand-left.png new file mode 100644 index 0000000000..dcf6038fd2 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/janitor_bombsuit.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/janitor_bombsuit.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/janitor_bombsuit.rsi/inhand-right.png new file mode 100644 index 0000000000..2a58318396 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/janitor_bombsuit.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/janitor_bombsuit.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/janitor_bombsuit.rsi/meta.json new file mode 100644 index 0000000000..2b96cd082c --- /dev/null +++ b/Resources/Textures/Clothing/Head/Helmets/janitor_bombsuit.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/a75dee2e6d236612dbd403dd5f8687ca930c01f1, edited by Ubaser", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Helmets/podwars_helmet.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/podwars_helmet.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..33215f839e Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/podwars_helmet.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/podwars_helmet.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/podwars_helmet.rsi/icon.png new file mode 100644 index 0000000000..8cb59275c7 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/podwars_helmet.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/podwars_helmet.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/podwars_helmet.rsi/inhand-left.png new file mode 100644 index 0000000000..5f67fc5219 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/podwars_helmet.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/podwars_helmet.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/podwars_helmet.rsi/inhand-right.png new file mode 100644 index 0000000000..48e23f9e4e Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/podwars_helmet.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/podwars_helmet.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/podwars_helmet.rsi/meta.json new file mode 100644 index 0000000000..eedfec73a9 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Helmets/podwars_helmet.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by patogrone (ss14 discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "direction": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..f10c9173ff Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/meta.json index 5463bcbfd2..61c8ce163c 100644 --- a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradise https://github.com/ParadiseSS13/Paradise/tree/master/icons (unknown commit)", + "copyright": "Taken from paradise https://github.com/ParadiseSS13/Paradise/tree/master/icons (unknown commit) | vulpkanin version made by Floofers", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..00ba0d43cd Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/equipped-HELMET-vulpkanin.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..4427c7fb51 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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..c63759a064 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/equipped-HELMET-vulpkanin.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..4427c7fb51 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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..5a06dac6f9 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/equipped-HELMET-vulpkanin.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..4427c7fb51 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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..c9c0d6c90e Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/equipped-HELMET-vulpkanin.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..4427c7fb51 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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..17a9bfdbd3 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/equipped-HELMET-vulpkanin.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..4427c7fb51 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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..be2125f535 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET-vulpkanin.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..e830cae282 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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..43e99670fd Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/equipped-HELMET-vulpkanin.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..4427c7fb51 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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hoods/rad.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hoods/rad.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..5f7368e432 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/rad.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/rad.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/rad.rsi/meta.json index 920a78a535..702e66d8a3 100644 --- a/Resources/Textures/Clothing/Head/Hoods/rad.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hoods/rad.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/discordia-space/CEV-Eris/commit/760f0be7af33a31f5a08a3291864e91539d0ebb7", + "copyright": "Taken from tgstation at commit https://github.com/discordia-space/CEV-Eris/commit/760f0be7af33a31f5a08a3291864e91539d0ebb7 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -13,6 +13,10 @@ { "name": "equipped-HELMET", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..4c6ce58ca3 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/equipped-HELMET-vulpkanin.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..39eb54f44c 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 tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, icon by лазік#7305 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -36,6 +36,14 @@ { "name": "up-inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "up-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/up-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/up-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..d6c8799127 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/up-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..cab90cf170 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/equipped-HELMET-vulpkanin.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..39eb54f44c 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 tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, icon by лазік#7305 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -36,6 +36,14 @@ { "name": "up-inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "up-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/up-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/up-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..b6749f9860 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/up-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..46e451b3c9 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/equipped-HELMET-vulpkanin.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..39eb54f44c 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 tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, icon by лазік#7305 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -36,6 +36,14 @@ { "name": "up-inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "up-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/up-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/up-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..34296974d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/up-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/welding.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/welding.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..701775a222 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/welding.rsi/equipped-HELMET-vulpkanin.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..3a84e3148e 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 tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -44,6 +44,14 @@ { "name": "up-inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "up-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Welding/welding.rsi/up-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/welding.rsi/up-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..39c534f564 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/welding.rsi/up-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/breath.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/breath.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..d317cba50e Binary files /dev/null and b/Resources/Textures/Clothing/Mask/breath.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/breath.rsi/meta.json b/Resources/Textures/Clothing/Mask/breath.rsi/meta.json index a5350e8999..f854b187ff 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. equipped-MASK-secdog modified from equipped-MASK-dog by TJohnson.", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-MASK-secdog modified from equipped-MASK-dog by TJohnson. | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -69,6 +69,14 @@ { "name": "equipped-MASK-kangaroo", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "up-equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/breath.rsi/up-equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/breath.rsi/up-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..d8ae1134fb Binary files /dev/null and b/Resources/Textures/Clothing/Mask/breath.rsi/up-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/clown.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/clown.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..38ea9a62c8 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/clown.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/clown.rsi/meta.json b/Resources/Textures/Clothing/Mask/clown.rsi/meta.json index 61285267df..e0c34b6bf3 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", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -25,6 +25,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/clown_banana.rsi/equipped-MASK-hamster.png b/Resources/Textures/Clothing/Mask/clown_banana.rsi/equipped-MASK-hamster.png new file mode 100644 index 0000000000..455b22e99e Binary files /dev/null and b/Resources/Textures/Clothing/Mask/clown_banana.rsi/equipped-MASK-hamster.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_banana.rsi/equipped-MASK.png b/Resources/Textures/Clothing/Mask/clown_banana.rsi/equipped-MASK.png new file mode 100644 index 0000000000..cd12ea0214 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/clown_banana.rsi/equipped-MASK.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_banana.rsi/icon.png b/Resources/Textures/Clothing/Mask/clown_banana.rsi/icon.png new file mode 100644 index 0000000000..923beb0ceb Binary files /dev/null and b/Resources/Textures/Clothing/Mask/clown_banana.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_banana.rsi/inhand-left.png b/Resources/Textures/Clothing/Mask/clown_banana.rsi/inhand-left.png new file mode 100644 index 0000000000..2136e54995 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/clown_banana.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_banana.rsi/inhand-right.png b/Resources/Textures/Clothing/Mask/clown_banana.rsi/inhand-right.png new file mode 100644 index 0000000000..2ef4b94da3 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/clown_banana.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_banana.rsi/meta.json b/Resources/Textures/Clothing/Mask/clown_banana.rsi/meta.json new file mode 100644 index 0000000000..bde7a52908 --- /dev/null +++ b/Resources/Textures/Clothing/Mask/clown_banana.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by KREKS (ss14 discord) for ss14.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-MASK", + "directions": 4 + }, + { + "name": "equipped-MASK-hamster", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Mask/cluwne.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/cluwne.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..070974034f Binary files /dev/null and b/Resources/Textures/Clothing/Mask/cluwne.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/cluwne.rsi/meta.json b/Resources/Textures/Clothing/Mask/cluwne.rsi/meta.json index 96e7181a21..47f05831e6 100644 --- a/Resources/Textures/Clothing/Mask/cluwne.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/cluwne.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (github) for ss14", + "copyright": "Made by brainfood1183 (github) for ss14 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -13,6 +13,10 @@ { "name": "equipped-MASK", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/ert.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/ert.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..488c0387a7 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/ert.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/ert.rsi/meta.json b/Resources/Textures/Clothing/Mask/ert.rsi/meta.json index c46db45e2a..1044faad0f 100644 --- a/Resources/Textures/Clothing/Mask/ert.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/ert.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by Nimfar11 (GitHub) for Space Station 14", + "copyright": "Made by Nimfar11 (GitHub) for Space Station 14 | vulpkanin version made by Floofers", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/gas.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/gas.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..fba0ec9b2b Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gas.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/gas.rsi/meta.json b/Resources/Textures/Clothing/Mask/gas.rsi/meta.json index 61285267df..e0c34b6bf3 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", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -25,6 +25,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/gasatmos.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/gasatmos.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..141a7cc981 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gasatmos.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/gasatmos.rsi/meta.json b/Resources/Textures/Clothing/Mask/gasatmos.rsi/meta.json index 2e57ae2151..88b0205a80 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", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/gascaptain.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/gascaptain.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..d13d3212c0 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gascaptain.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/gascaptain.rsi/equipped-MASK.png b/Resources/Textures/Clothing/Mask/gascaptain.rsi/equipped-MASK.png index d19f0936e8..397d7e6eb1 100644 Binary files a/Resources/Textures/Clothing/Mask/gascaptain.rsi/equipped-MASK.png and b/Resources/Textures/Clothing/Mask/gascaptain.rsi/equipped-MASK.png differ diff --git a/Resources/Textures/Clothing/Mask/gascaptain.rsi/icon.png b/Resources/Textures/Clothing/Mask/gascaptain.rsi/icon.png index ee566db54f..98bf7228dc 100644 Binary files a/Resources/Textures/Clothing/Mask/gascaptain.rsi/icon.png and b/Resources/Textures/Clothing/Mask/gascaptain.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Mask/gascaptain.rsi/meta.json b/Resources/Textures/Clothing/Mask/gascaptain.rsi/meta.json index 2e57ae2151..c2fdec87e2 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", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, edited by Emisse for ss14 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/gascentcom.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/gascentcom.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..9d85ba2f06 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gascentcom.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/gascentcom.rsi/meta.json b/Resources/Textures/Clothing/Mask/gascentcom.rsi/meta.json index 2e57ae2151..88b0205a80 100644 --- a/Resources/Textures/Clothing/Mask/gascentcom.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gascentcom.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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/gasexplorer.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/gasexplorer.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..91da2da7c7 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gasexplorer.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/gasexplorer.rsi/meta.json b/Resources/Textures/Clothing/Mask/gasexplorer.rsi/meta.json index ff664dffd4..4df8afe2cb 100644 --- a/Resources/Textures/Clothing/Mask/gasexplorer.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gasexplorer.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 | vulpkanin version edited by Floofers", "size": { "x": 32, "y": 32 @@ -25,6 +25,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/gassecurity.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/gassecurity.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..b9395a9026 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gassecurity.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/gassecurity.rsi/meta.json b/Resources/Textures/Clothing/Mask/gassecurity.rsi/meta.json index ff664dffd4..2c31518709 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", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -25,6 +25,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/gassyndicate.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/gassyndicate.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..a7c913dc1e Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gassyndicate.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/gassyndicate.rsi/meta.json b/Resources/Textures/Clothing/Mask/gassyndicate.rsi/meta.json index c5a4ced120..e655ee74e4 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", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -27,6 +27,16 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "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-vulpkanin.png b/Resources/Textures/Clothing/Mask/italian_moustache.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..9bde35f041 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/italian_moustache.rsi/equipped-MASK-vulpkanin.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..9621b18fe9 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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/medical.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/medical.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..687ac3aed3 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/medical.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/medical.rsi/meta.json b/Resources/Textures/Clothing/Mask/medical.rsi/meta.json index ce7886d06c..accb21053d 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", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -63,6 +63,14 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "up-equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/medical.rsi/up-equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/medical.rsi/up-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..99c3205640 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/medical.rsi/up-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..d317cba50e Binary files /dev/null and b/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/meta.json b/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/meta.json index 9a2ea46c4c..f57d9f0466 100644 --- a/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprited by LinkUyx#6557", + "copyright": "Sprited by LinkUyx#6557 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -53,6 +53,14 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "up-equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/up-equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/up-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..d8ae1134fb Binary files /dev/null and b/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/up-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/merc.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/merc.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..cdcebb8231 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/merc.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/merc.rsi/meta.json b/Resources/Textures/Clothing/Mask/merc.rsi/meta.json index 0fe84a690d..521eccdc11 100644 --- a/Resources/Textures/Clothing/Mask/merc.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/merc.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "modified sprite from Jackal298 based on the sprite from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "modified sprite from Jackal298 based on the sprite from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e | vulpkanin version edited by Floofers", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/mime.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/mime.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..cf3d8629a3 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/mime.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/mime.rsi/meta.json b/Resources/Textures/Clothing/Mask/mime.rsi/meta.json index a6a6833671..e8866a81c7 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", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -17,6 +17,10 @@ { "name": "equipped-MASK-hamster", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/muzzle.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/muzzle.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..8de17b9d3a Binary files /dev/null and b/Resources/Textures/Clothing/Mask/muzzle.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/muzzle.rsi/meta.json b/Resources/Textures/Clothing/Mask/muzzle.rsi/meta.json index a1e3d6e733..d8db67ac44 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", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e | vulpkanin version taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13/commit/091d9ec00f186052b87bd65125e896f78faefe38", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 - } + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + } ] } \ No newline at end of file diff --git a/Resources/Textures/Clothing/Mask/ninja.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/ninja.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..95d236c98b Binary files /dev/null and b/Resources/Textures/Clothing/Mask/ninja.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json b/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json index be28392cdb..da51268a11 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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..528fa82fc8 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/meta.json b/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/meta.json index 93af52132f..430a8b5076 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", + "copyright": "Taken from TGstation github https://github.com/tgstation/tgstation/commit/e89db4dd4f42377b0adafb06806a763314a89034 | vulpkanin version taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13/commit/091d9ec00f186052b87bd65125e896f78faefe38", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } \ No newline at end of file diff --git a/Resources/Textures/Clothing/Mask/sadmime.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/sadmime.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..da36b18523 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/sadmime.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/sadmime.rsi/meta.json b/Resources/Textures/Clothing/Mask/sadmime.rsi/meta.json index 32b7b1acf3..314f4c8f4f 100644 --- a/Resources/Textures/Clothing/Mask/sadmime.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/sadmime.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/harmonyn/-tg-station/blob/11043a07f6136d3d196b0378c31deb3dc1a9532f/icons/obj/clothing/masks.dmi", + "copyright": "Taken from tgstation at commit https://github.com/harmonyn/-tg-station/blob/11043a07f6136d3d196b0378c31deb3dc1a9532f/icons/obj/clothing/masks.dmi | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -13,6 +13,10 @@ { "name": "equipped-MASK", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/scaredmime.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/scaredmime.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..c0dda91a72 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/scaredmime.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/scaredmime.rsi/meta.json b/Resources/Textures/Clothing/Mask/scaredmime.rsi/meta.json index 32b7b1acf3..578339cf3d 100644 --- a/Resources/Textures/Clothing/Mask/scaredmime.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/scaredmime.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/harmonyn/-tg-station/blob/11043a07f6136d3d196b0378c31deb3dc1a9532f/icons/obj/clothing/masks.dmi", + "copyright": "Taken from tgstation at commit https://github.com/harmonyn/-tg-station/blob/11043a07f6136d3d196b0378c31deb3dc1a9532f/icons/obj/clothing/masks.dmi | vulpkanin version taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13/commit/091d9ec00f186052b87bd65125e896f78faefe38 edited by Floofers", "size": { "x": 32, "y": 32 @@ -13,6 +13,10 @@ { "name": "equipped-MASK", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/sexyclown.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/sexyclown.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..a326b5db4a Binary files /dev/null and b/Resources/Textures/Clothing/Mask/sexyclown.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/sexyclown.rsi/meta.json b/Resources/Textures/Clothing/Mask/sexyclown.rsi/meta.json index ca8bcd1bc1..182ca0ebba 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", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/blob/ed466a4c67828b44ddb9d9550366be5c2d745955/icons/obj/clothing/masks.dmi | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -13,6 +13,10 @@ { "name": "equipped-MASK", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/sexymime.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/sexymime.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..54828c8bd6 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/sexymime.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/sexymime.rsi/meta.json b/Resources/Textures/Clothing/Mask/sexymime.rsi/meta.json index ca8bcd1bc1..3428cd4303 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", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/blob/ed466a4c67828b44ddb9d9550366be5c2d745955/icons/obj/clothing/masks.dmi | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -13,6 +13,10 @@ { "name": "equipped-MASK", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/sterile.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/sterile.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..71f2c83018 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/sterile.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/sterile.rsi/meta.json b/Resources/Textures/Clothing/Mask/sterile.rsi/meta.json index ff664dffd4..6e2a3c8cd4 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", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -25,6 +25,14 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "up-equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/sterile.rsi/up-equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/sterile.rsi/up-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..4e0309f011 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/sterile.rsi/up-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/swat.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/swat.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..23cfef31d1 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/swat.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/swat.rsi/meta.json b/Resources/Textures/Clothing/Mask/swat.rsi/meta.json index 1eebf87c72..8f314ed93d 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", + "copyright": "Taken from tgstation at commit https://github.com/RemieRichards/-tg-station/blob/f8c05e21694cd3cb703e40edc5cfc375017944b1/icons/obj/clothing/masks.dmi | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/equipped-NECK.png index 309230e3ee..13b1c2efce 100644 Binary files a/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/equipped-NECK.png and b/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/icon.png b/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/icon.png index 11fc99f20c..49d27a0e96 100644 Binary files a/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/icon.png and b/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/inhand-left.png b/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/inhand-left.png index ea661b1f02..eda75fb97b 100644 Binary files a/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/inhand-left.png and b/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/inhand-right.png b/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/inhand-right.png index c8780bcb71..3b366bb979 100644 Binary files a/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/inhand-right.png and b/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/meta.json b/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/meta.json index 7de01f8732..bed9789445 100644 --- a/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/meta.json +++ b/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/pull/62603 which was taken from bee station. Bee station does not have a history on the cloaks on their github, sprites in hand by PuroSlavKing (Github) and RudeyCoolLeet#3875 , colors edited by Skarletto (github)", + "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/pull/62603 which was taken from bee station. Bee station does not have a history on the cloaks on their github, sprites in hand by PuroSlavKing (Github) and RudeyCoolLeet#3875 , colors edited by Skarletto (github), edited by Emisse for ss14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Neck/Cloaks/void.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Cloaks/void.rsi/equipped-NECK.png new file mode 100644 index 0000000000..cde2c669b6 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Cloaks/void.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Cloaks/void.rsi/icon.png b/Resources/Textures/Clothing/Neck/Cloaks/void.rsi/icon.png new file mode 100644 index 0000000000..7e959dd99e Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Cloaks/void.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Cloaks/void.rsi/inhand-left.png b/Resources/Textures/Clothing/Neck/Cloaks/void.rsi/inhand-left.png new file mode 100644 index 0000000000..41206fd4c1 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Cloaks/void.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Neck/Cloaks/void.rsi/inhand-right.png b/Resources/Textures/Clothing/Neck/Cloaks/void.rsi/inhand-right.png new file mode 100644 index 0000000000..b7e93991a3 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Cloaks/void.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Neck/Cloaks/void.rsi/meta.json b/Resources/Textures/Clothing/Neck/Cloaks/void.rsi/meta.json new file mode 100644 index 0000000000..83ecc370af --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Cloaks/void.rsi/meta.json @@ -0,0 +1,52 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TGstation at commit https://github.com/tgstation/tgstation/commit/8b1ffd1e49a2d30a0aab63264106a3ec0e07f415", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.5 + ], + [ + 0.1, + 0.1, + 0.1, + 0.5 + ], + [ + 0.1, + 0.1, + 0.1, + 0.5 + ], + [ + 0.1, + 0.1, + 0.1, + 0.5 + ] + ] + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/equipped-OUTERCLOTHING.png index 89a24c93fe..abbb7a2555 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/icon.png index a02c9b842b..1caea2582b 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/inhand-left.png index 7b1cd0e4b8..ba2375db82 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/inhand-right.png index 61b0e7a911..adb8622ebf 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/meta.json index 81e4553e83..b979f8bfb8 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/69842/commits/d8138946b0ed06fced522729ac8eaa0596864329 edited by Skarletto (github)", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/69842/commits/d8138946b0ed06fced522729ac8eaa0596864329 edited by Skarletto (github), edited by Emisse for ss14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..0d00f003d6 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/icon.png new file mode 100644 index 0000000000..711204c631 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/inhand-left.png new file mode 100644 index 0000000000..196377c3d8 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/inhand-right.png new file mode 100644 index 0000000000..9d7305f148 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/meta.json new file mode 100644 index 0000000000..97c559cbdc --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by patogrone (ss14 discord)", + "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/Coats/rd_coat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/rd_coat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..1bf638fab9 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/rd_coat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/rd_coat.rsi/icon-open.png b/Resources/Textures/Clothing/OuterClothing/Coats/rd_coat.rsi/icon-open.png new file mode 100644 index 0000000000..69fb3a2a15 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/rd_coat.rsi/icon-open.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/rd_coat.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/rd_coat.rsi/icon.png new file mode 100644 index 0000000000..877a730749 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/rd_coat.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/rd_coat.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/rd_coat.rsi/inhand-left.png new file mode 100644 index 0000000000..721c7d3e0d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/rd_coat.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/rd_coat.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/rd_coat.rsi/inhand-right.png new file mode 100644 index 0000000000..67af85f89e Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/rd_coat.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/rd_coat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/rd_coat.rsi/meta.json new file mode 100644 index 0000000000..600bbc3d6d --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Coats/rd_coat.rsi/meta.json @@ -0,0 +1,41 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Drawn by Ubaser", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-open" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "open-equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "open-inhand-left", + "directions": 4 + }, + { + "name": "open-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/rd_coat.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/rd_coat.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..4f70fdc3fb Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/rd_coat.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/rd_coat.rsi/open-inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/rd_coat.rsi/open-inhand-left.png new file mode 100644 index 0000000000..380a7eb5de Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/rd_coat.rsi/open-inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/rd_coat.rsi/open-inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/rd_coat.rsi/open-inhand-right.png new file mode 100644 index 0000000000..c016a74bc3 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/rd_coat.rsi/open-inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING.png index 02154c65cd..7ac2fbde5e 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/icon.png index 1bcc6adef9..77e0426ef4 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/inhand-left.png index 1c5a054bba..0545ffa683 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/inhand-right.png index 60c4c9631e..a0d0dd7125 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json index e482264df5..342d784473 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.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": "Made by Emisse for SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/equipped-OUTERCLOTHING.png index 77ec6c04be..17925efbf4 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/icon.png index 4e25faccc7..1c3177b459 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/inhand-left.png index 671fe901fd..ab9ffc9a9a 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/inhand-right.png index 88a52ec7df..560fb552f9 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/meta.json index 20f48be4c1..7786f98112 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by emisse for ss14", + "copyright": "Sprite made by Gtheglorious based on the sprite made by emisse for ss14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING.png index 0f4fe96e9b..391c62adad 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/icon.png index f42a8a96ae..2093000d23 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-left.png index 2b5da34689..5532ef90e6 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-right.png index a76acc62d7..340f4d1a67 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/meta.json index a13986d728..54a0ed85fa 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by Alekshhh for SS14", + "copyright": "Sprite made by Gtheglorious based on the sprite made by Alekshhh for SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING.png index 3615778dcd..ec979f4b51 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/icon.png index 61183533d4..e5d891560c 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-left.png index f808f0c975..6fdb2eedd8 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-right.png index 1fb781159d..51b09f7f29 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/meta.json index e482264df5..32d6d8901a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/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": "Sprite made by Gtheglorious based on the sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/janitor_bombsuit.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Suits/janitor_bombsuit.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..a22f3853fb Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/janitor_bombsuit.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/janitor_bombsuit.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Suits/janitor_bombsuit.rsi/icon.png new file mode 100644 index 0000000000..cfd02b300e Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/janitor_bombsuit.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/janitor_bombsuit.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Suits/janitor_bombsuit.rsi/inhand-left.png new file mode 100644 index 0000000000..e7f4a2e9a2 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/janitor_bombsuit.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/janitor_bombsuit.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Suits/janitor_bombsuit.rsi/inhand-right.png new file mode 100644 index 0000000000..d990be4086 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/janitor_bombsuit.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/janitor_bombsuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/janitor_bombsuit.rsi/meta.json new file mode 100644 index 0000000000..c216244ab0 --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Suits/janitor_bombsuit.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/760f0be7af33a31f5a08a3291864e91539d0ebb7, edited by Ubaser", + "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/Shoes/Boots/highheelboots.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/equipped-FEET.png new file mode 100644 index 0000000000..a27e43165c Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/icon.png new file mode 100644 index 0000000000..2ef4c376a4 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/inhand-left.png new file mode 100644 index 0000000000..d4c867fdf7 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/inhand-right.png new file mode 100644 index 0000000000..30fd68d805 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/meta.json new file mode 100644 index 0000000000..05e3d90682 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by IProduceWidgets", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/equipped-FEET.png new file mode 100644 index 0000000000..70618221d7 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/icon-on.png b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/icon-on.png new file mode 100644 index 0000000000..9f487123c0 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/icon-on.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/icon.png new file mode 100644 index 0000000000..2fda82988f Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/inhand-left.png new file mode 100644 index 0000000000..fbb48f5824 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/inhand-right.png new file mode 100644 index 0000000000..92620635af Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/meta.json new file mode 100644 index 0000000000..3aa61e31c5 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/meta.json @@ -0,0 +1,41 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by EmoGarbage404", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "on-equipped-FEET", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "icon-on" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "on-inhand-left", + "directions": 4 + }, + { + "name": "on-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/on-equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/on-equipped-FEET.png new file mode 100644 index 0000000000..b8b1846e16 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/on-equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/on-inhand-left.png new file mode 100644 index 0000000000..3077ae093f Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/on-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/on-inhand-right.png new file mode 100644 index 0000000000..ee0c1be1dd Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/on-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterboots.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/winterboots.rsi/equipped-FEET.png index 6e8c884f33..7f0f359ed4 100644 Binary files a/Resources/Textures/Clothing/Shoes/Boots/winterboots.rsi/equipped-FEET.png and b/Resources/Textures/Clothing/Shoes/Boots/winterboots.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterboots.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Boots/winterboots.rsi/icon.png index 0fcb05940b..31bdf9a1ad 100644 Binary files a/Resources/Textures/Clothing/Shoes/Boots/winterboots.rsi/icon.png and b/Resources/Textures/Clothing/Shoes/Boots/winterboots.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterboots.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Boots/winterboots.rsi/inhand-left.png index 2b4754255a..e605ea59bd 100644 Binary files a/Resources/Textures/Clothing/Shoes/Boots/winterboots.rsi/inhand-left.png and b/Resources/Textures/Clothing/Shoes/Boots/winterboots.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterboots.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Boots/winterboots.rsi/inhand-right.png index 467a79e9fa..6925df6df6 100644 Binary files a/Resources/Textures/Clothing/Shoes/Boots/winterboots.rsi/inhand-right.png and b/Resources/Textures/Clothing/Shoes/Boots/winterboots.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootscargo.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootscargo.rsi/equipped-FEET.png new file mode 100644 index 0000000000..b292b07a39 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/winterbootscargo.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootscargo.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootscargo.rsi/icon.png new file mode 100644 index 0000000000..95c916586e Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/winterbootscargo.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootscargo.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootscargo.rsi/inhand-left.png new file mode 100644 index 0000000000..2df546bd07 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/winterbootscargo.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootscargo.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootscargo.rsi/inhand-right.png new file mode 100644 index 0000000000..d4c3b8602f Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/winterbootscargo.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootscargo.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/winterbootscargo.rsi/meta.json new file mode 100644 index 0000000000..8bfe0c1a19 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Boots/winterbootscargo.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by UbaserB and edited by Kilk for SS14" , + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootsengi.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootsengi.rsi/equipped-FEET.png new file mode 100644 index 0000000000..467cad3bd8 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/winterbootsengi.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootsengi.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootsengi.rsi/icon.png new file mode 100644 index 0000000000..e1fea94f59 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/winterbootsengi.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootsengi.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootsengi.rsi/inhand-left.png new file mode 100644 index 0000000000..ae66fbf231 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/winterbootsengi.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootsengi.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootsengi.rsi/inhand-right.png new file mode 100644 index 0000000000..9fba6eb0ec Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/winterbootsengi.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootsengi.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/winterbootsengi.rsi/meta.json new file mode 100644 index 0000000000..8bfe0c1a19 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Boots/winterbootsengi.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by UbaserB and edited by Kilk for SS14" , + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootsmed.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootsmed.rsi/equipped-FEET.png new file mode 100644 index 0000000000..6736993f4f Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/winterbootsmed.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootsmed.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootsmed.rsi/icon.png new file mode 100644 index 0000000000..c0775e6f22 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/winterbootsmed.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootsmed.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootsmed.rsi/inhand-left.png new file mode 100644 index 0000000000..7a85298de1 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/winterbootsmed.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootsmed.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootsmed.rsi/inhand-right.png new file mode 100644 index 0000000000..903168d47b Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/winterbootsmed.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootsmed.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/winterbootsmed.rsi/meta.json new file mode 100644 index 0000000000..8bfe0c1a19 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Boots/winterbootsmed.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by UbaserB and edited by Kilk for SS14" , + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootssci.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootssci.rsi/equipped-FEET.png new file mode 100644 index 0000000000..1f3e961360 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/winterbootssci.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootssci.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootssci.rsi/icon.png new file mode 100644 index 0000000000..4bd7201d1e Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/winterbootssci.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootssci.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootssci.rsi/inhand-left.png new file mode 100644 index 0000000000..270f95ccf5 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/winterbootssci.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootssci.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootssci.rsi/inhand-right.png new file mode 100644 index 0000000000..eaa7faa88d Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/winterbootssci.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootssci.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/winterbootssci.rsi/meta.json new file mode 100644 index 0000000000..8bfe0c1a19 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Boots/winterbootssci.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by UbaserB and edited by Kilk for SS14" , + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootssec.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootssec.rsi/equipped-FEET.png new file mode 100644 index 0000000000..0e03908a0e Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/winterbootssec.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootssec.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootssec.rsi/icon.png new file mode 100644 index 0000000000..bec3a3c81f Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/winterbootssec.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootssec.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootssec.rsi/inhand-left.png new file mode 100644 index 0000000000..c600e2e27e Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/winterbootssec.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootssec.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootssec.rsi/inhand-right.png new file mode 100644 index 0000000000..e1251f2356 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/winterbootssec.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootssec.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/winterbootssec.rsi/meta.json new file mode 100644 index 0000000000..8bfe0c1a19 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Boots/winterbootssec.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by UbaserB and edited by Kilk for SS14" , + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootssyndicate.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootssyndicate.rsi/equipped-FEET.png new file mode 100644 index 0000000000..248b20735a Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/winterbootssyndicate.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootssyndicate.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootssyndicate.rsi/icon.png new file mode 100644 index 0000000000..bf7a5a514c Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/winterbootssyndicate.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootssyndicate.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootssyndicate.rsi/inhand-left.png new file mode 100644 index 0000000000..ebf7810dad Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/winterbootssyndicate.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootssyndicate.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootssyndicate.rsi/inhand-right.png new file mode 100644 index 0000000000..22f21c3eac Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/winterbootssyndicate.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootssyndicate.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/winterbootssyndicate.rsi/meta.json new file mode 100644 index 0000000000..b333e16946 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Boots/winterbootssyndicate.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by UbaserB and edited by Kilk for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootsweb.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootsweb.rsi/equipped-FEET.png new file mode 100644 index 0000000000..8a24f3260c Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/winterbootsweb.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootsweb.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootsweb.rsi/icon.png new file mode 100644 index 0000000000..bf2a8ee58a Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/winterbootsweb.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootsweb.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootsweb.rsi/inhand-left.png new file mode 100644 index 0000000000..345b1c6c78 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/winterbootsweb.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootsweb.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootsweb.rsi/inhand-right.png new file mode 100644 index 0000000000..4590699797 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/winterbootsweb.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootsweb.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/winterbootsweb.rsi/meta.json new file mode 100644 index 0000000000..8bfe0c1a19 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Boots/winterbootsweb.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by UbaserB and edited by Kilk for SS14" , + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/Misc/snakeskin.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Misc/snakeskin.rsi/equipped-FEET.png new file mode 100644 index 0000000000..7b2f287cca Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Misc/snakeskin.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Misc/snakeskin.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Misc/snakeskin.rsi/icon.png new file mode 100644 index 0000000000..103c20e1dd Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Misc/snakeskin.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Misc/snakeskin.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Misc/snakeskin.rsi/inhand-left.png new file mode 100644 index 0000000000..14c685192e Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Misc/snakeskin.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Misc/snakeskin.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Misc/snakeskin.rsi/inhand-right.png new file mode 100644 index 0000000000..fa9453602d Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Misc/snakeskin.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Misc/snakeskin.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Misc/snakeskin.rsi/meta.json new file mode 100644 index 0000000000..f478e93982 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Misc/snakeskin.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-3.0", + "copyright": "Made by Nimfar11 (GitHub) for Space Station 14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/equipped-FEET.png new file mode 100644 index 0000000000..486cc15dfb Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/icon.png new file mode 100644 index 0000000000..c39f640a8e Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/inhand-left.png new file mode 100644 index 0000000000..0bb56ebfb0 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/inhand-right.png new file mode 100644 index 0000000000..28764263f1 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/meta.json new file mode 100644 index 0000000000..e4431655fb --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by KREKS (ss14 discord) for ss14.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/equipped-FEET.png new file mode 100644 index 0000000000..09c92cfa5f Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/icon.png new file mode 100644 index 0000000000..0d9b9dcf32 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/inhand-left.png new file mode 100644 index 0000000000..1ba8eb4173 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/inhand-right.png new file mode 100644 index 0000000000..7886baaeda Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/meta.json new file mode 100644 index 0000000000..3c606364d8 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/equipped-INNERCLOTHING.png index 8651ad10e7..f6b6d7ab04 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/icon.png index 50641b757b..8a65d6675e 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/inhand-left.png index 46bc66d25f..b95ae73479 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/inhand-right.png index db345a7434..b43fd233e8 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/meta.json index 75cbde9bb6..3c6f171076 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/commit/30892aa892a2be846592b068ab71c606e2f0c5b7, monkey derivative made by brainfood1183 (github) for ss14", + "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/commit/30892aa892a2be846592b068ab71c606e2f0c5b7, edited by emisse for ss14, monkey derivative made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/equipped-INNERCLOTHING.png index 7966d2d815..dbdb51cef9 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/icon.png index 4029e6b99a..67fd943b4c 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/inhand-left.png index 4502068730..9641f214a5 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/inhand-right.png index f6bcc2b143..0b3d008747 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/meta.json index 0b57c04149..6eb08f0f32 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "monkey derivative derived by brainfood1183 (github) for ss14 from tgstation at commit https://github.com/tgstation/tgstation/commit/dd97a0e45d904fffadd9d2caad22aedd0d09f3ab then edited by Skarletto (github). Other sprites taken from tgstation at https://github.com/tgstation/tgstation/pull/69842/commits/d8138946b0ed06fced522729ac8eaa0596864329 and edited by Skarletto (github)", + "copyright": "monkey derivative derived by brainfood1183 (github) for ss14 from tgstation at commit https://github.com/tgstation/tgstation/commit/dd97a0e45d904fffadd9d2caad22aedd0d09f3ab then edited by Skarletto (github). Other sprites taken from tgstation at https://github.com/tgstation/tgstation/pull/69842/commits/d8138946b0ed06fced522729ac8eaa0596864329 and edited by Skarletto (github), edited by Emisse for ss14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/equipped-INNERCLOTHING-monkey.png new file mode 100644 index 0000000000..4cb7704e2c Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..93477d07f5 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/icon.png new file mode 100644 index 0000000000..06c845ef84 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/inhand-left.png new file mode 100644 index 0000000000..bdbd3ea488 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/inhand-right.png new file mode 100644 index 0000000000..7822bf686c Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/meta.json similarity index 100% rename from Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/meta.json rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/meta.json diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index f142d6efc0..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 71587c5878..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/icon.png deleted file mode 100644 index 0d92af9ee1..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/inhand-left.png deleted file mode 100644 index 1b40db931c..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/inhand-right.png deleted file mode 100644 index 5ba096c23a..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/capformal.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/capformal.rsi/equipped-INNERCLOTHING.png index 8fe19d25f0..fbd1b6aea5 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/capformal.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/capformal.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/capformal.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/capformal.rsi/icon.png index b6ecfcb58c..127e4ded44 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/capformal.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/capformal.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/capformal.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/capformal.rsi/inhand-left.png index c591079d53..f0dad45c99 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/capformal.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/capformal.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/capformal.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/capformal.rsi/inhand-right.png index e8d24fd267..1d8ab34a20 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/capformal.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/capformal.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/capformal.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/capformal.rsi/meta.json index e771fed56c..3eb2f76553 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/capformal.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/capformal.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/commit/30892aa892a2be846592b068ab71c606e2f0c5b7, monkey made by brainfood1183 (github) for ss14", + "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/commit/30892aa892a2be846592b068ab71c606e2f0c5b7,edited by Emisse for ss14, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/equipped-INNERCLOTHING.png index 86c999c882..5ad7eb1c1b 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/icon.png index eecc668d4b..0d6dc2631b 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/inhand-left.png index 4502068730..1bccf1eb46 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/inhand-right.png index f6bcc2b143..e0b994af89 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/meta.json index b2404c68cd..6eb08f0f32 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "monkey derivative derived by brainfood1183 (github) for ss14 from tgstation at commit https://github.com/tgstation/tgstation/commit/dd97a0e45d904fffadd9d2caad22aedd0d09f3ab then edited by Skarletto (github). Other sprites taken from tgstation at https://github.com/tgstation/tgstation/pull/69842/commits/d8138946b0ed06fced522729ac8eaa0596864329 and edited by Skarletto (github)", + "copyright": "monkey derivative derived by brainfood1183 (github) for ss14 from tgstation at commit https://github.com/tgstation/tgstation/commit/dd97a0e45d904fffadd9d2caad22aedd0d09f3ab then edited by Skarletto (github). Other sprites taken from tgstation at https://github.com/tgstation/tgstation/pull/69842/commits/d8138946b0ed06fced522729ac8eaa0596864329 and edited by Skarletto (github), edited by Emisse for ss14", "size": { "x": 32, "y": 32 @@ -27,4 +27,4 @@ "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING-monkey.png new file mode 100644 index 0000000000..7c9e3cfc92 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..171598455f Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/icon.png new file mode 100644 index 0000000000..50def373e3 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/inhand-left.png new file mode 100644 index 0000000000..bdbd3ea488 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/inhand-right.png new file mode 100644 index 0000000000..7822bf686c Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/meta.json similarity index 100% rename from Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/meta.json rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/meta.json diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/equipped-INNERCLOTHING-monkey.png new file mode 100644 index 0000000000..e4ac1bdd06 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..a85d2d2e61 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/icon.png new file mode 100644 index 0000000000..9338490aae Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/inhand-left.png new file mode 100644 index 0000000000..e1e0a47d97 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/inhand-right.png new file mode 100644 index 0000000000..32b49e37e4 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/meta.json new file mode 100644 index 0000000000..b1119f9122 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Recolor of lawyerblack.rsi joshepvodka", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING-monkey", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/equipped-INNERCLOTHING-monkey.png index df11793e46..ad203eb9b3 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/equipped-INNERCLOTHING-monkey.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/equipped-INNERCLOTHING.png index c0c5f8ad07..79e6727660 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/icon.png index 66c859b96f..3c407d9f12 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/inhand-left.png index ef8f0e64df..1a66d158f4 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/inhand-right.png index dfd361f63b..7b51b6e120 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/meta.json index 3f72fb4460..d9094ea077 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/meta.json @@ -1,30 +1,30 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14. Sprites recolored by joshepvodka", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING-monkey", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index afa10c94d4..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index d5dc5cd0a7..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/icon.png deleted file mode 100644 index 2d5cfefade..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/inhand-left.png deleted file mode 100644 index 1b40db931c..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/inhand-right.png deleted file mode 100644 index 5ba096c23a..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/equipped-INNERCLOTHING-monkey.png new file mode 100644 index 0000000000..d305015c3b Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..aae16e3130 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/icon.png new file mode 100644 index 0000000000..5ba1ea0b03 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/inhand-left.png new file mode 100644 index 0000000000..11ce676526 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/inhand-right.png new file mode 100644 index 0000000000..d1a4a6d4a3 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/meta.json new file mode 100644 index 0000000000..d1f37efa80 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by KREKS (ss14 discord) for ss14.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING-monkey", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/familiar_garbs.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/familiar_garbs.rsi/equipped-INNERCLOTHING-monkey.png new file mode 100644 index 0000000000..50ad9b716f Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/familiar_garbs.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/familiar_garbs.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/familiar_garbs.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..a95c02654c Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/familiar_garbs.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/familiar_garbs.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/familiar_garbs.rsi/icon.png new file mode 100644 index 0000000000..d0d58dedc8 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/familiar_garbs.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/familiar_garbs.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/familiar_garbs.rsi/inhand-left.png new file mode 100644 index 0000000000..e55c47cf21 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/familiar_garbs.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/familiar_garbs.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/familiar_garbs.rsi/inhand-right.png new file mode 100644 index 0000000000..6a936d7c38 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/familiar_garbs.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/familiar_garbs.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/familiar_garbs.rsi/meta.json new file mode 100644 index 0000000000..a02f7be81b --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/familiar_garbs.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from bartender outfit in SS14, edited by noctyrnal.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING-monkey", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hats/straw_hat.rsi/equipped-HELMET-hamster.png b/Resources/Textures/DeltaV/Clothing/Head/Hats/straw_hat.rsi/equipped-HELMET-hamster.png new file mode 100644 index 0000000000..10a56e316b Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hats/straw_hat.rsi/equipped-HELMET-hamster.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hats/straw_hat.rsi/equipped-HELMET.png b/Resources/Textures/DeltaV/Clothing/Head/Hats/straw_hat.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..2ddd8f3209 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hats/straw_hat.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hats/straw_hat.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Head/Hats/straw_hat.rsi/icon.png new file mode 100644 index 0000000000..bf9e3673d6 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hats/straw_hat.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hats/straw_hat.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Head/Hats/straw_hat.rsi/inhand-left.png new file mode 100644 index 0000000000..5cd89c082b Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hats/straw_hat.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hats/straw_hat.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Head/Hats/straw_hat.rsi/inhand-right.png new file mode 100644 index 0000000000..8ad5764d3c Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hats/straw_hat.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hats/straw_hat.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Head/Hats/straw_hat.rsi/meta.json new file mode 100644 index 0000000000..1885732f2b --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Head/Hats/straw_hat.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Adrian16199", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "equipped-HELMET-hamster", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsatmos.rsi/equipped-FEET.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsatmos.rsi/equipped-FEET.png new file mode 100644 index 0000000000..ae08e73e3e Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsatmos.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsatmos.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsatmos.rsi/icon.png new file mode 100644 index 0000000000..2888071af7 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsatmos.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsatmos.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsatmos.rsi/inhand-left.png new file mode 100644 index 0000000000..4f299cae89 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsatmos.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsatmos.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsatmos.rsi/inhand-right.png new file mode 100644 index 0000000000..ed11148b6f Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsatmos.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsatmos.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsatmos.rsi/meta.json new file mode 100644 index 0000000000..f0fd68e207 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsatmos.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "drawn by Kilk", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscap.rsi/equipped-FEET.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscap.rsi/equipped-FEET.png new file mode 100644 index 0000000000..4e5dcb6a19 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscap.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscap.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscap.rsi/icon.png new file mode 100644 index 0000000000..1712e51895 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscap.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscap.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscap.rsi/inhand-left.png new file mode 100644 index 0000000000..7cc5eb394b Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscap.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscap.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscap.rsi/inhand-right.png new file mode 100644 index 0000000000..8a10bb967e Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscap.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscap.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscap.rsi/meta.json new file mode 100644 index 0000000000..f0fd68e207 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscap.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "drawn by Kilk", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsce.rsi/equipped-FEET.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsce.rsi/equipped-FEET.png new file mode 100644 index 0000000000..240083c377 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsce.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsce.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsce.rsi/icon.png new file mode 100644 index 0000000000..a489b704b5 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsce.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsce.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsce.rsi/inhand-left.png new file mode 100644 index 0000000000..f3f291d6b5 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsce.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsce.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsce.rsi/inhand-right.png new file mode 100644 index 0000000000..26914768cd Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsce.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsce.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsce.rsi/meta.json new file mode 100644 index 0000000000..f0fd68e207 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsce.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "drawn by Kilk", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscentcom.rsi/equipped-FEET.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscentcom.rsi/equipped-FEET.png new file mode 100644 index 0000000000..6d726c88b2 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscentcom.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscentcom.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscentcom.rsi/icon.png new file mode 100644 index 0000000000..4cff3ca8f3 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscentcom.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscentcom.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscentcom.rsi/inhand-left.png new file mode 100644 index 0000000000..26822968ea Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscentcom.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscentcom.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscentcom.rsi/inhand-right.png new file mode 100644 index 0000000000..f973421de9 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscentcom.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscentcom.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscentcom.rsi/meta.json new file mode 100644 index 0000000000..f0fd68e207 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscentcom.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "drawn by Kilk", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschef.rsi/equipped-FEET.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschef.rsi/equipped-FEET.png new file mode 100644 index 0000000000..5932fb1994 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschef.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschef.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschef.rsi/icon.png new file mode 100644 index 0000000000..74dc47b60c Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschef.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschef.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschef.rsi/inhand-left.png new file mode 100644 index 0000000000..94ce915df0 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschef.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschef.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschef.rsi/inhand-right.png new file mode 100644 index 0000000000..28e876ed27 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschef.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschef.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschef.rsi/meta.json new file mode 100644 index 0000000000..f0fd68e207 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschef.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "drawn by Kilk", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschem.rsi/equipped-FEET.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschem.rsi/equipped-FEET.png new file mode 100644 index 0000000000..d7e65b2dac Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschem.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschem.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschem.rsi/icon.png new file mode 100644 index 0000000000..a3cad1f9e7 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschem.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschem.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschem.rsi/inhand-left.png new file mode 100644 index 0000000000..af1a522133 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschem.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschem.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschem.rsi/inhand-right.png new file mode 100644 index 0000000000..93a060e1d5 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschem.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschem.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschem.rsi/meta.json new file mode 100644 index 0000000000..f0fd68e207 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootschem.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "drawn by Kilk", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsclown.rsi/equipped-FEET.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsclown.rsi/equipped-FEET.png new file mode 100644 index 0000000000..b148d29c6c Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsclown.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsclown.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsclown.rsi/icon.png new file mode 100644 index 0000000000..68c6b5342a Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsclown.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsclown.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsclown.rsi/inhand-left.png new file mode 100644 index 0000000000..beda601a93 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsclown.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsclown.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsclown.rsi/inhand-right.png new file mode 100644 index 0000000000..6a27df29b5 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsclown.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsclown.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsclown.rsi/meta.json new file mode 100644 index 0000000000..f0fd68e207 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsclown.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "drawn by Kilk", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscmo.rsi/equipped-FEET.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscmo.rsi/equipped-FEET.png new file mode 100644 index 0000000000..564d971d4e Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscmo.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscmo.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscmo.rsi/icon.png new file mode 100644 index 0000000000..6b67bfa9b6 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscmo.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscmo.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscmo.rsi/inhand-left.png new file mode 100644 index 0000000000..336ac6cec8 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscmo.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscmo.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscmo.rsi/inhand-right.png new file mode 100644 index 0000000000..2d64f26b19 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscmo.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscmo.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscmo.rsi/meta.json new file mode 100644 index 0000000000..f0fd68e207 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootscmo.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "drawn by Kilk", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsgen.rsi/equipped-FEET.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsgen.rsi/equipped-FEET.png new file mode 100644 index 0000000000..a02dd300e2 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsgen.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsgen.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsgen.rsi/icon.png new file mode 100644 index 0000000000..fedbf5ed8e Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsgen.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsgen.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsgen.rsi/inhand-left.png new file mode 100644 index 0000000000..a8138bac8c Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsgen.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsgen.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsgen.rsi/inhand-right.png new file mode 100644 index 0000000000..b750e823b5 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsgen.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsgen.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsgen.rsi/meta.json new file mode 100644 index 0000000000..f0fd68e207 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsgen.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "drawn by Kilk", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshop.rsi/equipped-FEET.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshop.rsi/equipped-FEET.png new file mode 100644 index 0000000000..73c2aec9b6 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshop.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshop.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshop.rsi/icon.png new file mode 100644 index 0000000000..a1cb799252 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshop.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshop.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshop.rsi/inhand-left.png new file mode 100644 index 0000000000..feb443eb26 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshop.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshop.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshop.rsi/inhand-right.png new file mode 100644 index 0000000000..dce8896e90 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshop.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshop.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshop.rsi/meta.json new file mode 100644 index 0000000000..f0fd68e207 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshop.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "drawn by Kilk", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshos.rsi/equipped-FEET.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshos.rsi/equipped-FEET.png new file mode 100644 index 0000000000..fdd49ef996 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshos.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshos.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshos.rsi/icon.png new file mode 100644 index 0000000000..cdd85d3b30 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshos.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshos.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshos.rsi/inhand-left.png new file mode 100644 index 0000000000..52de63a382 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshos.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshos.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshos.rsi/inhand-right.png new file mode 100644 index 0000000000..93d8d3da75 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshos.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshos.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshos.rsi/meta.json new file mode 100644 index 0000000000..f0fd68e207 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshos.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "drawn by Kilk", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshydro.rsi/equipped-FEET.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshydro.rsi/equipped-FEET.png new file mode 100644 index 0000000000..e87d519d9d Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshydro.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshydro.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshydro.rsi/icon.png new file mode 100644 index 0000000000..b98c897e4b Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshydro.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshydro.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshydro.rsi/inhand-left.png new file mode 100644 index 0000000000..aeadbeac72 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshydro.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshydro.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshydro.rsi/inhand-right.png new file mode 100644 index 0000000000..da162f0b1d Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshydro.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshydro.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshydro.rsi/meta.json new file mode 100644 index 0000000000..f0fd68e207 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootshydro.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "drawn by Kilk", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsjani.rsi/equipped-FEET.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsjani.rsi/equipped-FEET.png new file mode 100644 index 0000000000..e86caf1fb1 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsjani.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsjani.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsjani.rsi/icon.png new file mode 100644 index 0000000000..576cba4986 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsjani.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsjani.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsjani.rsi/inhand-left.png new file mode 100644 index 0000000000..9d85ddff65 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsjani.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsjani.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsjani.rsi/inhand-right.png new file mode 100644 index 0000000000..38a466b6bb Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsjani.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsjani.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsjani.rsi/meta.json new file mode 100644 index 0000000000..f0fd68e207 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsjani.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "drawn by Kilk", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsmime.rsi/equipped-FEET.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsmime.rsi/equipped-FEET.png new file mode 100644 index 0000000000..98d5882e56 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsmime.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsmime.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsmime.rsi/icon.png new file mode 100644 index 0000000000..fe96877c30 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsmime.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsmime.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsmime.rsi/inhand-left.png new file mode 100644 index 0000000000..f402dce16c Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsmime.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsmime.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsmime.rsi/inhand-right.png new file mode 100644 index 0000000000..a091336ae8 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsmime.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsmime.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsmime.rsi/meta.json new file mode 100644 index 0000000000..f0fd68e207 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsmime.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "drawn by Kilk", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsminer.rsi/equipped-FEET.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsminer.rsi/equipped-FEET.png new file mode 100644 index 0000000000..8fee2c8e66 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsminer.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsminer.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsminer.rsi/icon.png new file mode 100644 index 0000000000..087bb89784 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsminer.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsminer.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsminer.rsi/inhand-left.png new file mode 100644 index 0000000000..e57ddb98d9 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsminer.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsminer.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsminer.rsi/inhand-right.png new file mode 100644 index 0000000000..d4d886581a Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsminer.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsminer.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsminer.rsi/meta.json new file mode 100644 index 0000000000..f0fd68e207 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsminer.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "drawn by Kilk", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsparamed.rsi/equipped-FEET.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsparamed.rsi/equipped-FEET.png new file mode 100644 index 0000000000..83a0b2f43c Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsparamed.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsparamed.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsparamed.rsi/icon.png new file mode 100644 index 0000000000..a653213a03 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsparamed.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsparamed.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsparamed.rsi/inhand-left.png new file mode 100644 index 0000000000..820fa2e28b Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsparamed.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsparamed.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsparamed.rsi/inhand-right.png new file mode 100644 index 0000000000..1065435324 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsparamed.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsparamed.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsparamed.rsi/meta.json new file mode 100644 index 0000000000..f0fd68e207 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsparamed.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "drawn by Kilk", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsqm.rsi/equipped-FEET.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsqm.rsi/equipped-FEET.png new file mode 100644 index 0000000000..bb1c95f94b Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsqm.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsqm.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsqm.rsi/icon.png new file mode 100644 index 0000000000..72e90dcc4c Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsqm.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsqm.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsqm.rsi/inhand-left.png new file mode 100644 index 0000000000..4c7b57b82a Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsqm.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsqm.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsqm.rsi/inhand-right.png new file mode 100644 index 0000000000..4ba41811a0 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsqm.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsqm.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsqm.rsi/meta.json new file mode 100644 index 0000000000..f0fd68e207 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsqm.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "drawn by Kilk", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrd.rsi/equipped-FEET.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrd.rsi/equipped-FEET.png new file mode 100644 index 0000000000..8db69e3119 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrd.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrd.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrd.rsi/icon.png new file mode 100644 index 0000000000..bd7e7cdbd1 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrd.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrd.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrd.rsi/inhand-left.png new file mode 100644 index 0000000000..99ce66de6c Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrd.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrd.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrd.rsi/inhand-right.png new file mode 100644 index 0000000000..8a617f15f1 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrd.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrd.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrd.rsi/meta.json new file mode 100644 index 0000000000..f0fd68e207 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrd.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "drawn by Kilk", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrobo.rsi/equipped-FEET.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrobo.rsi/equipped-FEET.png new file mode 100644 index 0000000000..cc063a59ad Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrobo.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrobo.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrobo.rsi/icon.png new file mode 100644 index 0000000000..86f0ae30a6 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrobo.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrobo.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrobo.rsi/inhand-left.png new file mode 100644 index 0000000000..788a607fdd Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrobo.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrobo.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrobo.rsi/inhand-right.png new file mode 100644 index 0000000000..2faabce455 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrobo.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrobo.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrobo.rsi/meta.json new file mode 100644 index 0000000000..f0fd68e207 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsrobo.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "drawn by Kilk", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsviro.rsi/equipped-FEET.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsviro.rsi/equipped-FEET.png new file mode 100644 index 0000000000..9bf59a0a1c Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsviro.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsviro.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsviro.rsi/icon.png new file mode 100644 index 0000000000..755a1f9b7b Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsviro.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsviro.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsviro.rsi/inhand-left.png new file mode 100644 index 0000000000..dbc71c3507 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsviro.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsviro.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsviro.rsi/inhand-right.png new file mode 100644 index 0000000000..a4b7dc2ba7 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsviro.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsviro.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsviro.rsi/meta.json new file mode 100644 index 0000000000..f0fd68e207 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootsviro.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "drawn by Kilk", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootswarden.rsi/equipped-FEET.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootswarden.rsi/equipped-FEET.png new file mode 100644 index 0000000000..203bbd0553 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootswarden.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootswarden.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootswarden.rsi/icon.png new file mode 100644 index 0000000000..b79a7121ea Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootswarden.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootswarden.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootswarden.rsi/inhand-left.png new file mode 100644 index 0000000000..2d7f4d495c Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootswarden.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootswarden.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootswarden.rsi/inhand-right.png new file mode 100644 index 0000000000..7dc383c60d Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootswarden.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootswarden.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootswarden.rsi/meta.json new file mode 100644 index 0000000000..f0fd68e207 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Shoes/Boots/winterbootswarden.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "drawn by Kilk", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/kilt.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/kilt.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..18ea669e6b Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/kilt.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/kilt.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/kilt.rsi/icon.png new file mode 100644 index 0000000000..4a5fe7ad16 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/kilt.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/kilt.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/kilt.rsi/inhand-left.png new file mode 100644 index 0000000000..0826c6c9b5 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/kilt.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/kilt.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/kilt.rsi/inhand-right.png new file mode 100644 index 0000000000..e44bfc36d8 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/kilt.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/kilt.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/kilt.rsi/meta.json new file mode 100644 index 0000000000..6ee68898e2 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/kilt.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Taken from Yogstation https://github.com/yogstation13/Yogstation/blob/master/icons/mob/clothing/uniform/uniform.dmi. Edited by ps3moira", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/DeltaV/Effects/harpysinger.rsi/meta.json b/Resources/Textures/DeltaV/Effects/harpysinger.rsi/meta.json new file mode 100644 index 0000000000..3c908beb5e --- /dev/null +++ b/Resources/Textures/DeltaV/Effects/harpysinger.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "copyright": "Made by @ps3moira", + "license": "CC-BY-SA-3.0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "singing_music_notes", + "directions": 1, + "delays": [ + [ + 0.3, + 0.3, + 0.3 + ] + ] + } + ] +} diff --git a/Resources/Textures/DeltaV/Effects/harpysinger.rsi/singing_music_notes.png b/Resources/Textures/DeltaV/Effects/harpysinger.rsi/singing_music_notes.png new file mode 100644 index 0000000000..9e3b83c777 Binary files /dev/null and b/Resources/Textures/DeltaV/Effects/harpysinger.rsi/singing_music_notes.png differ diff --git a/Resources/Textures/DeltaV/Icons/cri.rsi/cri.png b/Resources/Textures/DeltaV/Icons/cri.rsi/cri.png new file mode 100644 index 0000000000..b31d02763c Binary files /dev/null and b/Resources/Textures/DeltaV/Icons/cri.rsi/cri.png differ diff --git a/Resources/Textures/DeltaV/Icons/cri.rsi/meta.json b/Resources/Textures/DeltaV/Icons/cri.rsi/meta.json new file mode 100644 index 0000000000..edeccd8f6d --- /dev/null +++ b/Resources/Textures/DeltaV/Icons/cri.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC0-1.0", + "copyright": "IcedQuinn", + "states": [ + { + "name": "cri" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/DeltaV/Interface/Actions/harpy_syrinx.png b/Resources/Textures/DeltaV/Interface/Actions/harpy_syrinx.png new file mode 100644 index 0000000000..d09b090fd3 Binary files /dev/null and b/Resources/Textures/DeltaV/Interface/Actions/harpy_syrinx.png differ diff --git a/Resources/Textures/DeltaV/Interface/Paper/paper_background_corpcard.svg b/Resources/Textures/DeltaV/Interface/Paper/paper_background_corpcard.svg new file mode 100644 index 0000000000..6a61c40728 --- /dev/null +++ b/Resources/Textures/DeltaV/Interface/Paper/paper_background_corpcard.svg @@ -0,0 +1,205 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Resources/Textures/DeltaV/Interface/Paper/paper_background_corpcard.svg.96dpi.png b/Resources/Textures/DeltaV/Interface/Paper/paper_background_corpcard.svg.96dpi.png new file mode 100644 index 0000000000..be15ded857 Binary files /dev/null and b/Resources/Textures/DeltaV/Interface/Paper/paper_background_corpcard.svg.96dpi.png differ diff --git a/Resources/Textures/DeltaV/Interface/Paper/paper_background_corpcard.svg.96dpi.png.yml b/Resources/Textures/DeltaV/Interface/Paper/paper_background_corpcard.svg.96dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/DeltaV/Interface/Paper/paper_background_corpcard.svg.96dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/DeltaV/Mobs/Animals/nukiemouse.rsi/dead.png b/Resources/Textures/DeltaV/Mobs/Animals/nukiemouse.rsi/dead.png new file mode 100644 index 0000000000..5601342ebd Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Animals/nukiemouse.rsi/dead.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Animals/nukiemouse.rsi/equipped-HELMET.png b/Resources/Textures/DeltaV/Mobs/Animals/nukiemouse.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..24821ab68b Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Animals/nukiemouse.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Animals/nukiemouse.rsi/icon.png b/Resources/Textures/DeltaV/Mobs/Animals/nukiemouse.rsi/icon.png new file mode 100644 index 0000000000..087206070a Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Animals/nukiemouse.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Animals/nukiemouse.rsi/inhand-left.png b/Resources/Textures/DeltaV/Mobs/Animals/nukiemouse.rsi/inhand-left.png new file mode 100644 index 0000000000..786ad87f8f Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Animals/nukiemouse.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Animals/nukiemouse.rsi/inhand-right.png b/Resources/Textures/DeltaV/Mobs/Animals/nukiemouse.rsi/inhand-right.png new file mode 100644 index 0000000000..650f515aa8 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Animals/nukiemouse.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Animals/nukiemouse.rsi/meta.json b/Resources/Textures/DeltaV/Mobs/Animals/nukiemouse.rsi/meta.json new file mode 100644 index 0000000000..ad5e2c32ad --- /dev/null +++ b/Resources/Textures/DeltaV/Mobs/Animals/nukiemouse.rsi/meta.json @@ -0,0 +1,58 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from /vg/station https://github.com/vgstation-coders/vgstation13/blob/Bleeding-Edge/icons/mob/animal.dmi Edited variations by @ps3moira", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "mouse", + "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" + }, + { + "name": "splat" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/DeltaV/Mobs/Animals/nukiemouse.rsi/mouse.png b/Resources/Textures/DeltaV/Mobs/Animals/nukiemouse.rsi/mouse.png new file mode 100644 index 0000000000..338739ee2c Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Animals/nukiemouse.rsi/mouse.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Animals/nukiemouse.rsi/splat.png b/Resources/Textures/DeltaV/Mobs/Animals/nukiemouse.rsi/splat.png new file mode 100644 index 0000000000..b7ca9542fb Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Animals/nukiemouse.rsi/splat.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi/Felinid_fluffy_tail_full.png b/Resources/Textures/DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi/Felinid_fluffy_tail_full.png new file mode 100644 index 0000000000..d699f1035a Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi/Felinid_fluffy_tail_full.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi/felinid_fluffy_tail_rings.png b/Resources/Textures/DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi/felinid_fluffy_tail_rings.png new file mode 100644 index 0000000000..4e6a6d8dc0 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi/felinid_fluffy_tail_rings.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi/meta.json b/Resources/Textures/DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi/meta.json new file mode 100644 index 0000000000..fad9883e7e --- /dev/null +++ b/Resources/Textures/DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi/meta.json @@ -0,0 +1,111 @@ +{ + "version": 1, + "copyright": "Made by Adrian16199", + "license": "CC-BY-SA-4.0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "felinid_fluffy_tail_rings", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "Felinid_fluffy_tail_full", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + } + ] +} diff --git a/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_long.png b/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_long.png new file mode 100644 index 0000000000..39721687cc Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_long.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_long2.png b/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_long2.png new file mode 100644 index 0000000000..950bc1430b Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_long2.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_long3.png b/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_long3.png new file mode 100644 index 0000000000..bc7eb6ea06 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_long3.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/meta.json b/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/meta.json index c2197e13ea..387949d4b3 100644 --- a/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/meta.json +++ b/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/meta.json @@ -39,6 +39,18 @@ { "name":"classic_crewcut", "directions": 4 + }, + { + "name":"classic_long", + "directions": 4 + }, + { + "name":"classic_long2", + "directions": 4 + }, + { + "name":"classic_long3", + "directions": 4 } ] } diff --git a/Resources/Textures/DeltaV/Objects/Devices/cartridge.rsi/cart-cri.png b/Resources/Textures/DeltaV/Objects/Devices/cartridge.rsi/cart-cri.png new file mode 100644 index 0000000000..4da4343e58 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Devices/cartridge.rsi/cart-cri.png differ diff --git a/Resources/Textures/DeltaV/Objects/Devices/cartridge.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Devices/cartridge.rsi/meta.json new file mode 100644 index 0000000000..293870d3a3 --- /dev/null +++ b/Resources/Textures/DeltaV/Objects/Devices/cartridge.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Timfa", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "cart-cri" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/DeltaV/Objects/Devices/communication.rsi/cheese-radio.png b/Resources/Textures/DeltaV/Objects/Devices/communication.rsi/cheese-radio.png new file mode 100644 index 0000000000..3aadbea78c Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Devices/communication.rsi/cheese-radio.png differ diff --git a/Resources/Textures/DeltaV/Objects/Devices/communication.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Devices/communication.rsi/meta.json new file mode 100644 index 0000000000..15103558e1 --- /dev/null +++ b/Resources/Textures/DeltaV/Objects/Devices/communication.rsi/meta.json @@ -0,0 +1,15 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Inspired by the cheese wedge sprite from tg station https://github.com/tgstation/tgstation/blob/master/icons/obj/food/food.dmi modified by @ps3moira", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "cheese-radio", + "delays": [[ 1.8, 1.8, 1.8, 1.8, 1.8, 1.8, 1.8 ]] + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/biscuit.png b/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/biscuit.png new file mode 100644 index 0000000000..af96c1aa6e Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/biscuit.png differ diff --git a/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/biscuit_paper.png b/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/biscuit_paper.png new file mode 100644 index 0000000000..b832ff73bf Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/biscuit_paper.png differ diff --git a/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/biscuit_paper_corp.png b/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/biscuit_paper_corp.png new file mode 100644 index 0000000000..7104c4f027 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/biscuit_paper_corp.png differ diff --git a/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/biscuit_secret.png b/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/biscuit_secret.png new file mode 100644 index 0000000000..0570b1cf57 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/biscuit_secret.png differ diff --git a/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/biscuit_secret_top.png b/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/biscuit_secret_top.png new file mode 100644 index 0000000000..99e04ffc44 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/biscuit_secret_top.png differ diff --git a/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/biscuit_top.png b/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/biscuit_top.png new file mode 100644 index 0000000000..278a5bc964 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/biscuit_top.png differ diff --git a/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/corpslip.png b/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/corpslip.png new file mode 100644 index 0000000000..ee932b8821 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/corpslip.png differ diff --git a/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/corpslip_words.png b/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/corpslip_words.png new file mode 100644 index 0000000000..7eb04c02fb Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/corpslip_words.png differ diff --git a/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/meta.json new file mode 100644 index 0000000000..acd271ad13 --- /dev/null +++ b/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/meta.json @@ -0,0 +1,41 @@ +{ + "version": 1, + "copyright": "Taken from TG station at https://github.com/tgstation/tgstation/blob/eda6bbfd866e4e0c8beb4d563e6d4e14c694e23e/icons/obj/service/bureaucracy.dmi | biscuit_paper_corp modified by @DebugOk on GitHub", + "license": "CC-BY-SA-3.0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "slip" + }, + { + "name": "slip_words" + }, + { + "name": "corpslip" + }, + { + "name": "corpslip_words" + }, + { + "name": "biscuit" + }, + { + "name": "biscuit_secret" + }, + { + "name": "biscuit_secret_top" + }, + { + "name": "biscuit_top" + }, + { + "name": "biscuit_paper" + }, + { + "name": "biscuit_paper_corp" + } + ] +} diff --git a/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/slip.png b/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/slip.png new file mode 100644 index 0000000000..565b1dc7e3 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/slip.png differ diff --git a/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/slip_words.png b/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/slip_words.png new file mode 100644 index 0000000000..c2e3f3eebe Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Misc/biscuits.rsi/slip_words.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Ammunition/Boxes/bbgun.rsi/bbbox.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Ammunition/Boxes/bbgun.rsi/bbbox.png new file mode 100644 index 0000000000..cc5df022ee Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Ammunition/Boxes/bbgun.rsi/bbbox.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Ammunition/Boxes/bbgun.rsi/bbbullet.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Ammunition/Boxes/bbgun.rsi/bbbullet.png new file mode 100644 index 0000000000..0093a3e2e7 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Ammunition/Boxes/bbgun.rsi/bbbullet.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Ammunition/Boxes/bbgun.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Ammunition/Boxes/bbgun.rsi/meta.json new file mode 100644 index 0000000000..4e6ba54e34 --- /dev/null +++ b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Ammunition/Boxes/bbgun.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Velcroboy", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "bbbullet" + }, + { + "name": "bbbox" + } + ] +} diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/base.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/base.png new file mode 100644 index 0000000000..09a3bfee4c Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/base.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/disabler-inhand-left.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/disabler-inhand-left.png new file mode 100644 index 0000000000..6b65b30775 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/disabler-inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/disabler-inhand-right.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/disabler-inhand-right.png new file mode 100644 index 0000000000..4040a1d855 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/disabler-inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/icon.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/icon.png new file mode 100644 index 0000000000..cf8c781a24 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/lethal-inhand-left.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/lethal-inhand-left.png new file mode 100644 index 0000000000..43f8ac1800 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/lethal-inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/lethal-inhand-right.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/lethal-inhand-right.png new file mode 100644 index 0000000000..86a384f15b Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/lethal-inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/mag-unshaded-0.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/mag-unshaded-0.png new file mode 100644 index 0000000000..4440748c18 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/mag-unshaded-0.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/mag-unshaded-1.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/mag-unshaded-1.png new file mode 100644 index 0000000000..d94fbbea10 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/mag-unshaded-1.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/mag-unshaded-2.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/mag-unshaded-2.png new file mode 100644 index 0000000000..dfed74fb68 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/mag-unshaded-2.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/mag-unshaded-3.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/mag-unshaded-3.png new file mode 100644 index 0000000000..0f523560c4 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/mag-unshaded-3.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/mag-unshaded-4.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/mag-unshaded-4.png new file mode 100644 index 0000000000..fdee91317e Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/mag-unshaded-4.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/meta.json new file mode 100644 index 0000000000..e7c3ce2775 --- /dev/null +++ b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/meta.json @@ -0,0 +1,66 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tg station at commit https://github.com/tgstation/tgstation/commit/bb9be1ac98073a904c1c404ec5cdd73f40143057", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "mode-disabler" + }, + { + "name": "mode-lethal" + }, + { + "name": "mode-stun" + }, + { + "name": "mag-unshaded-0", + "delays": [[ 0.3, 0.3 ]] + }, + { + "name": "mag-unshaded-1" + }, + { + "name": "mag-unshaded-2" + }, + { + "name": "mag-unshaded-3" + }, + { + "name": "mag-unshaded-4" + }, + { + "name": "disabler-inhand-left", + "directions": 4 + }, + { + "name": "disabler-inhand-right", + "directions": 4 + }, + { + "name": "lethal-inhand-left", + "directions": 4 + }, + { + "name": "lethal-inhand-right", + "directions": 4 + }, + { + "name": "special-inhand-left", + "directions": 4 + }, + { + "name": "special-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/mode-disabler.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/mode-disabler.png new file mode 100644 index 0000000000..0562d77bf7 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/mode-disabler.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/mode-lethal.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/mode-lethal.png new file mode 100644 index 0000000000..d56e68b963 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/mode-lethal.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/mode-stun.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/mode-stun.png new file mode 100644 index 0000000000..56dd59a0ab Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/mode-stun.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/special-inhand-left.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/special-inhand-left.png new file mode 100644 index 0000000000..cfc216989b Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/special-inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/special-inhand-right.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/special-inhand-right.png new file mode 100644 index 0000000000..49e9127b46 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi/special-inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/base.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/base.png new file mode 100644 index 0000000000..b8c6feccd7 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/base.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/icon.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/icon.png new file mode 100644 index 0000000000..454c17255c Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/lethal-inhand-left.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/lethal-inhand-left.png new file mode 100644 index 0000000000..6b65b30775 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/lethal-inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/lethal-inhand-right.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/lethal-inhand-right.png new file mode 100644 index 0000000000..4040a1d855 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/lethal-inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/mag-unshaded-0.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/mag-unshaded-0.png new file mode 100644 index 0000000000..7e35409c18 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/mag-unshaded-0.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/mag-unshaded-1.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/mag-unshaded-1.png new file mode 100644 index 0000000000..5381fb09e3 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/mag-unshaded-1.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/mag-unshaded-2.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/mag-unshaded-2.png new file mode 100644 index 0000000000..d45aa15f3c Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/mag-unshaded-2.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/mag-unshaded-3.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/mag-unshaded-3.png new file mode 100644 index 0000000000..2b7da86977 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/mag-unshaded-3.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/mag-unshaded-4.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/mag-unshaded-4.png new file mode 100644 index 0000000000..6cbcf1d700 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/mag-unshaded-4.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/meta.json new file mode 100644 index 0000000000..f0e887bcf2 --- /dev/null +++ b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/meta.json @@ -0,0 +1,40 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from paradise station at commit https://github.com/ParadiseSS13/Paradise/pull/15894/commits/199daf90ee25f4285a1a90696d152493abf6ca65", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "mag-unshaded-0" + }, + { + "name": "mag-unshaded-1" + }, + { + "name": "mag-unshaded-2" + }, + { + "name": "mag-unshaded-3" + }, + { + "name": "mag-unshaded-4" + }, + { + "name": "lethal-inhand-left", + "directions": 4 + }, + { + "name": "lethal-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/base.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/base.png new file mode 100644 index 0000000000..4f957f29e4 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/base.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/disabler-inhand-left.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/disabler-inhand-left.png new file mode 100644 index 0000000000..6b65b30775 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/disabler-inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/disabler-inhand-right.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/disabler-inhand-right.png new file mode 100644 index 0000000000..4040a1d855 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/disabler-inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/icon.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/icon.png new file mode 100644 index 0000000000..5e27df954f Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/lethal-inhand-left.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/lethal-inhand-left.png new file mode 100644 index 0000000000..43f8ac1800 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/lethal-inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/lethal-inhand-right.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/lethal-inhand-right.png new file mode 100644 index 0000000000..86a384f15b Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/lethal-inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/mag-unshaded-0.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/mag-unshaded-0.png new file mode 100644 index 0000000000..5cbfec6bbe Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/mag-unshaded-0.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/mag-unshaded-1.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/mag-unshaded-1.png new file mode 100644 index 0000000000..9dbc0c5830 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/mag-unshaded-1.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/mag-unshaded-2.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/mag-unshaded-2.png new file mode 100644 index 0000000000..ca2996e213 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/mag-unshaded-2.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/mag-unshaded-3.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/mag-unshaded-3.png new file mode 100644 index 0000000000..7e008c14f1 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/mag-unshaded-3.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/mag-unshaded-4.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/mag-unshaded-4.png new file mode 100644 index 0000000000..e1ccd7e7e3 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/mag-unshaded-4.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/meta.json new file mode 100644 index 0000000000..f6aac319d7 --- /dev/null +++ b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/meta.json @@ -0,0 +1,54 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from paradise station at commit https://github.com/ParadiseSS13/Paradise/pull/15894/commits/199daf90ee25f4285a1a90696d152493abf6ca65", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "mode-disabler" + }, + { + "name": "mode-lethal" + }, + { + "name": "mag-unshaded-0" + }, + { + "name": "mag-unshaded-1" + }, + { + "name": "mag-unshaded-2" + }, + { + "name": "mag-unshaded-3" + }, + { + "name": "mag-unshaded-4" + }, + { + "name": "disabler-inhand-left", + "directions": 4 + }, + { + "name": "disabler-inhand-right", + "directions": 4 + }, + { + "name": "lethal-inhand-left", + "directions": 4 + }, + { + "name": "lethal-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/mode-disabler.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/mode-disabler.png new file mode 100644 index 0000000000..bdd6d88cd2 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/mode-disabler.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/mode-lethal.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/mode-lethal.png new file mode 100644 index 0000000000..5cbfec6bbe Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_pistol.rsi/mode-lethal.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/base.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/base.png new file mode 100644 index 0000000000..6dcd0f9006 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/base.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/disabler-inhand-left.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/disabler-inhand-left.png new file mode 100644 index 0000000000..6b65b30775 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/disabler-inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/disabler-inhand-right.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/disabler-inhand-right.png new file mode 100644 index 0000000000..4040a1d855 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/disabler-inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/equipped-BELT.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/equipped-BELT.png new file mode 100644 index 0000000000..785f4037d7 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/icon.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/icon.png new file mode 100644 index 0000000000..e0f4be9068 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/lethal-inhand-left.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/lethal-inhand-left.png new file mode 100644 index 0000000000..43f8ac1800 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/lethal-inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/lethal-inhand-right.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/lethal-inhand-right.png new file mode 100644 index 0000000000..86a384f15b Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/lethal-inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/mag-unshaded-0.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/mag-unshaded-0.png new file mode 100644 index 0000000000..719a022d49 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/mag-unshaded-0.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/mag-unshaded-1.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/mag-unshaded-1.png new file mode 100644 index 0000000000..771bc41b70 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/mag-unshaded-1.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/mag-unshaded-2.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/mag-unshaded-2.png new file mode 100644 index 0000000000..bab40cfa51 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/mag-unshaded-2.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/mag-unshaded-3.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/mag-unshaded-3.png new file mode 100644 index 0000000000..bab40cfa51 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/mag-unshaded-3.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/mag-unshaded-4.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/mag-unshaded-4.png new file mode 100644 index 0000000000..07358d778e Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/mag-unshaded-4.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/meta.json new file mode 100644 index 0000000000..a998b2c729 --- /dev/null +++ b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/meta.json @@ -0,0 +1,69 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from paradise station at commit https://github.com/ParadiseSS13/Paradise/pull/8613/commits/980d452f1c5a2b5ca195118182758f81aab64a2d", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "mode-disabler" + }, + { + "name": "mode-lethal" + }, + { + "name": "mode-stun" + }, + { + "name": "mag-unshaded-0" + }, + { + "name": "mag-unshaded-1" + }, + { + "name": "mag-unshaded-2" + }, + { + "name": "mag-unshaded-3" + }, + { + "name": "mag-unshaded-4" + }, + { + "name": "disabler-inhand-left", + "directions": 4 + }, + { + "name": "disabler-inhand-right", + "directions": 4 + }, + { + "name": "lethal-inhand-left", + "directions": 4 + }, + { + "name": "lethal-inhand-right", + "directions": 4 + }, + { + "name": "special-inhand-left", + "directions": 4 + }, + { + "name": "special-inhand-right", + "directions": 4 + }, + { + "name": "equipped-BELT", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/mode-disabler.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/mode-disabler.png new file mode 100644 index 0000000000..1eaba97b87 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/mode-disabler.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/mode-lethal.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/mode-lethal.png new file mode 100644 index 0000000000..24abdb7a81 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/mode-lethal.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/mode-stun.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/mode-stun.png new file mode 100644 index 0000000000..d29773d4af Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/mode-stun.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/special-inhand-left.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/special-inhand-left.png new file mode 100644 index 0000000000..cfc216989b Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/special-inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/special-inhand-right.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/special-inhand-right.png new file mode 100644 index 0000000000..49e9127b46 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/mini_energygun.rsi/special-inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/base.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/base.png new file mode 100644 index 0000000000..e4427ef964 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/base.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/disabler-inhand-left.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/disabler-inhand-left.png new file mode 100644 index 0000000000..0ff6f98972 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/disabler-inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/disabler-inhand-right.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/disabler-inhand-right.png new file mode 100644 index 0000000000..895d331208 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/disabler-inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/equipped-BELT.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/equipped-BELT.png new file mode 100644 index 0000000000..33d05e86d8 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/icon.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/icon.png new file mode 100644 index 0000000000..818e5898a6 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/lethal-inhand-left.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/lethal-inhand-left.png new file mode 100644 index 0000000000..444862e0f8 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/lethal-inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/lethal-inhand-right.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/lethal-inhand-right.png new file mode 100644 index 0000000000..17e978be31 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/lethal-inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/mag-unshaded-0.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/mag-unshaded-0.png new file mode 100644 index 0000000000..1dbb157ffe Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/mag-unshaded-0.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/mag-unshaded-1.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/mag-unshaded-1.png new file mode 100644 index 0000000000..6a88fff027 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/mag-unshaded-1.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/mag-unshaded-2.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/mag-unshaded-2.png new file mode 100644 index 0000000000..e7856c41dc Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/mag-unshaded-2.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/mag-unshaded-3.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/mag-unshaded-3.png new file mode 100644 index 0000000000..ea838dc755 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/mag-unshaded-3.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/mag-unshaded-4.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/mag-unshaded-4.png new file mode 100644 index 0000000000..ba12870d86 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/mag-unshaded-4.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/meta.json new file mode 100644 index 0000000000..a29f7f4cab --- /dev/null +++ b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/meta.json @@ -0,0 +1,70 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tg station at commit https://github.com/tgstation/tgstation/commit/bb9be1ac98073a904c1c404ec5cdd73f40143057", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "mode-disabler" + }, + { + "name": "mode-lethal" + }, + { + "name": "mode-ion" + }, + { + "name": "mag-unshaded-0", + "delays": [[ 0.3, 0.3 ]] + }, + { + "name": "mag-unshaded-1" + }, + { + "name": "mag-unshaded-2" + }, + { + "name": "mag-unshaded-3" + }, + { + "name": "mag-unshaded-4" + }, + { + "name": "disabler-inhand-left", + "directions": 4 + }, + { + "name": "disabler-inhand-right", + "directions": 4 + }, + { + "name": "lethal-inhand-left", + "directions": 4 + }, + { + "name": "lethal-inhand-right", + "directions": 4 + }, + { + "name": "special-inhand-left", + "directions": 4 + }, + { + "name": "special-inhand-right", + "directions": 4 + }, + { + "name": "equipped-BELT", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/mode-disabler.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/mode-disabler.png new file mode 100644 index 0000000000..fb323e387b Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/mode-disabler.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/mode-ion.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/mode-ion.png new file mode 100644 index 0000000000..c6432e1a49 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/mode-ion.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/mode-lethal.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/mode-lethal.png new file mode 100644 index 0000000000..3c4a6d7ae1 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/mode-lethal.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/special-inhand-left.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/special-inhand-left.png new file mode 100644 index 0000000000..73d17f58e7 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/special-inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/special-inhand-right.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/special-inhand-right.png new file mode 100644 index 0000000000..a6b053d617 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi/special-inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Rifles/bbgun.rsi/base.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Rifles/bbgun.rsi/base.png new file mode 100644 index 0000000000..a83d8e92b6 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Rifles/bbgun.rsi/base.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Rifles/bbgun.rsi/equipped-BACKPACK.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Rifles/bbgun.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000..ce3d78d944 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Rifles/bbgun.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Rifles/bbgun.rsi/icon.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Rifles/bbgun.rsi/icon.png new file mode 100644 index 0000000000..a83d8e92b6 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Rifles/bbgun.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Rifles/bbgun.rsi/inhand-left.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Rifles/bbgun.rsi/inhand-left.png new file mode 100644 index 0000000000..45651d5912 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Rifles/bbgun.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Rifles/bbgun.rsi/inhand-right.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Rifles/bbgun.rsi/inhand-right.png new file mode 100644 index 0000000000..f6590bb5c0 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Rifles/bbgun.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Rifles/bbgun.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Rifles/bbgun.rsi/meta.json new file mode 100644 index 0000000000..702b7c6132 --- /dev/null +++ b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Rifles/bbgun.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Base by ∆∆Molotovthief, equipped sprites by Velcroboy", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/bolt-open.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/bolt-open.png new file mode 100644 index 0000000000..dcbe062978 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/bolt-open.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/equipped-BACKPACK.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000..ab0cac8d09 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/icon.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/icon.png new file mode 100644 index 0000000000..24d2679270 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/inhand-left.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/inhand-left.png rename to Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/inhand-left.png diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/inhand-right.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/inhand-right.png rename to Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/inhand-right.png diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/meta.json new file mode 100644 index 0000000000..df70db984b --- /dev/null +++ b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-NC-4.0", + "copyright": "Taken from TerraGov Marine Corps at https://github.com/tgstation/TerraGov-Marine-Corps/pull/7678/commits/e7bc17b894aa4c1f882358016346c3be00236df8, https://github.com/tgstation/TerraGov-Marine-Corps/blob/master/icons/obj/items/gun.dmi, backpack sprite by Peptide, sprite modification by Jaсkal 298, backpack sling sprite edited by Boaz1111", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "bolt-open" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/enforcer.rsi/bolt-open.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/enforcer.rsi/bolt-open.png new file mode 100644 index 0000000000..c794549c55 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/enforcer.rsi/bolt-open.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/enforcer.rsi/equipped-BACKPACK.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/enforcer.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000..9d5dffa449 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/enforcer.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/enforcer.rsi/icon.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/enforcer.rsi/icon.png new file mode 100644 index 0000000000..f6edbb2c96 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/enforcer.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/inhand-left.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/enforcer.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/inhand-left.png rename to Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/enforcer.rsi/inhand-left.png diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/inhand-right.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/enforcer.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/inhand-right.png rename to Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/enforcer.rsi/inhand-right.png diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/enforcer.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/enforcer.rsi/meta.json new file mode 100644 index 0000000000..23e8bc2ee0 --- /dev/null +++ b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/enforcer.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken/modified from tgstation at https://github.com/tgstation/tgstation/pull/27557/commits, backpack sprite by Peptide (copy of bulldog), backpack sling sprite edited by Boaz1111", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "bolt-open" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/equipped-BACKPACK.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000..688a7c48eb Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/icon.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/icon.png new file mode 100644 index 0000000000..3366f94430 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/inhand-left.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/inhand-left.png new file mode 100644 index 0000000000..225fbe0446 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/inhand-right.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/inhand-right.png new file mode 100644 index 0000000000..87fafdb3c1 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/ishotgunstep1.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/ishotgunstep1.png new file mode 100644 index 0000000000..cca4e02c24 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/ishotgunstep1.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/ishotgunstep2.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/ishotgunstep2.png new file mode 100644 index 0000000000..ddfed1df03 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/ishotgunstep2.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/meta.json new file mode 100644 index 0000000000..8056d6f865 --- /dev/null +++ b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation/ at commit fb2d71495bfe81446159ef528534193d09dd8d34, back sprite modified by Flareguy, sprites tweaked by ps3moira", + "size": { + "x": 64, + "y": 64 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "ishotgunstep1" + }, + { + "name": "ishotgunstep2" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi/bolt-open.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi/bolt-open.png new file mode 100644 index 0000000000..cf99a2c2d5 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi/bolt-open.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi/equipped-BACKPACK.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000..67a9de667a Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi/icon.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi/icon.png new file mode 100644 index 0000000000..d2f0b8f80d Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/inhand-left.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/inhand-left.png rename to Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi/inhand-left.png diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/inhand-right.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/inhand-right.png rename to Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi/inhand-right.png diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json new file mode 100644 index 0000000000..c1c901f2eb --- /dev/null +++ b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-NC-4.0", + "copyright": "Taken from TerraGov Marine Corps at https://github.com/tgstation/TerraGov-Marine-Corps/pull/7678/commits/e7bc17b894aa4c1f882358016346c3be00236df8backpack, https://github.com/tgstation/TerraGov-Marine-Corps/blob/master/icons/obj/items/gun.dmi, backpack sprite by Peptide (copy of db), sprite modification by Jaсkal 298, backpack sling sprite edited by Boaz1111", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "bolt-open" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/sawn.rsi/bolt-open.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/sawn.rsi/bolt-open.png new file mode 100644 index 0000000000..f4b03e4603 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/sawn.rsi/bolt-open.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/sawn.rsi/equipped-BACKPACK.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/sawn.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000..da66a1846e Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/sawn.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/sawn.rsi/icon.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/sawn.rsi/icon.png new file mode 100644 index 0000000000..af968888cc Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/sawn.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/sawn.rsi/inhand-left.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/sawn.rsi/inhand-left.png new file mode 100644 index 0000000000..c9d961197c Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/sawn.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/sawn.rsi/inhand-right.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/sawn.rsi/inhand-right.png new file mode 100644 index 0000000000..caf78b661d Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/sawn.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/sawn.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/sawn.rsi/meta.json new file mode 100644 index 0000000000..04f71999e1 --- /dev/null +++ b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/sawn.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-NC-4.0", + "copyright": "Taken from TerraGov Marine Corps at https://github.com/tgstation/TerraGov-Marine-Corps/pull/7678/commits/e7bc17b894aa4c1f882358016346c3be00236df8, https://github.com/tgstation/TerraGov-Marine-Corps/blob/master/icons/obj/items/gun.dmi backpack sprite by Peptide, sprite modification by Jaсkal 298", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "bolt-open" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword.rsi/inhand-left-blade.png b/Resources/Textures/DeltaV/Objects/Weapons/Melee/e_sword.rsi/inhand-left-blade.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Melee/e_sword.rsi/inhand-left-blade.png rename to Resources/Textures/DeltaV/Objects/Weapons/Melee/e_sword.rsi/inhand-left-blade.png diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword.rsi/inhand-left.png b/Resources/Textures/DeltaV/Objects/Weapons/Melee/e_sword.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Melee/e_sword.rsi/inhand-left.png rename to Resources/Textures/DeltaV/Objects/Weapons/Melee/e_sword.rsi/inhand-left.png diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword.rsi/inhand-right-blade.png b/Resources/Textures/DeltaV/Objects/Weapons/Melee/e_sword.rsi/inhand-right-blade.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Melee/e_sword.rsi/inhand-right-blade.png rename to Resources/Textures/DeltaV/Objects/Weapons/Melee/e_sword.rsi/inhand-right-blade.png diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword.rsi/inhand-right.png b/Resources/Textures/DeltaV/Objects/Weapons/Melee/e_sword.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Melee/e_sword.rsi/inhand-right.png rename to Resources/Textures/DeltaV/Objects/Weapons/Melee/e_sword.rsi/inhand-right.png diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Melee/e_sword.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Weapons/Melee/e_sword.rsi/meta.json new file mode 100644 index 0000000000..ec329e4282 --- /dev/null +++ b/Resources/Textures/DeltaV/Objects/Weapons/Melee/e_sword.rsi/meta.json @@ -0,0 +1,63 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left-blade", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "inhand-right-blade", + "directions": 4, + "delays": [ + [ + 0.1, + 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/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/cabinet-empty-closed.png b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/cabinet-empty-closed.png new file mode 100644 index 0000000000..e196f37c3f Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/cabinet-empty-closed.png differ diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/cabinet-empty-open.png b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/cabinet-empty-open.png new file mode 100644 index 0000000000..e7a20d2b61 Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/cabinet-empty-open.png differ diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/cabinet-filled-closed.png b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/cabinet-filled-closed.png new file mode 100644 index 0000000000..746ca5ea79 Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/cabinet-filled-closed.png differ diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/cabinet-filled-open.png b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/cabinet-filled-open.png new file mode 100644 index 0000000000..fd7c9bcbd2 Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/cabinet-filled-open.png differ diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/cabinet.png b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/cabinet.png new file mode 100644 index 0000000000..0ba17d40ab Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/cabinet.png differ diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/card.png b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/card.png new file mode 100644 index 0000000000..c53c3d2763 Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/card.png differ diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/glass-1.png b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/glass-1.png new file mode 100644 index 0000000000..450de1004b Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/glass-1.png differ diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/glass-2.png b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/glass-2.png new file mode 100644 index 0000000000..7f6f593d25 Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/glass-2.png differ diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/glass-3.png b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/glass-3.png new file mode 100644 index 0000000000..2f80165912 Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/glass-3.png differ diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/glass-4.png b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/glass-4.png new file mode 100644 index 0000000000..0f3d0d0220 Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/glass-4.png differ diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/glass-up.png b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/glass-up.png new file mode 100644 index 0000000000..14d0125aef Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/glass-up.png differ diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/glass.png b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/glass.png new file mode 100644 index 0000000000..afed9b66d7 Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/glass.png differ diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/locked.png b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/locked.png new file mode 100644 index 0000000000..f24a3ab047 Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/locked.png differ diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/meta.json b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/meta.json new file mode 100644 index 0000000000..f45353aa26 --- /dev/null +++ b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/meta.json @@ -0,0 +1,53 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Original work by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "cabinet-empty-closed" + }, + { + "name": "cabinet-empty-open" + }, + { + "name": "cabinet-filled-open" + }, + { + "name": "cabinet-filled-closed" + }, + { + "name": "cabinet" + }, + { + "name": "card" + }, + { + "name": "glass" + }, + { + "name": "glass-1" + }, + { + "name": "glass-2" + }, + { + "name": "glass-3" + }, + { + "name": "glass-4" + }, + { + "name": "glass-up" + }, + { + "name": "unlocked" + }, + { + "name": "locked" + } + ] +} diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/unlocked.png b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/unlocked.png new file mode 100644 index 0000000000..22d718bb96 Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Wallmounts/idcard_cabinet.rsi/unlocked.png differ diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/cabinet-empty-open.png b/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/cabinet-empty-open.png new file mode 100644 index 0000000000..f867044e8e Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/cabinet-empty-open.png differ diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/cabinet-filled-closed.png b/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/cabinet-filled-closed.png new file mode 100644 index 0000000000..7d8a7b0531 Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/cabinet-filled-closed.png differ diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/cabinet-filled-open.png b/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/cabinet-filled-open.png new file mode 100644 index 0000000000..7be5a49135 Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/cabinet-filled-open.png differ diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/cabinet.png b/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/cabinet.png new file mode 100644 index 0000000000..a685c2263c Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/cabinet.png differ diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/glass-1.png b/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/glass-1.png new file mode 100644 index 0000000000..d22162c7c3 Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/glass-1.png differ diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/glass-2.png b/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/glass-2.png new file mode 100644 index 0000000000..b4dcdbdf75 Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/glass-2.png differ diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/glass-3.png b/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/glass-3.png new file mode 100644 index 0000000000..44c775f06c Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/glass-3.png differ diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/glass-4.png b/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/glass-4.png new file mode 100644 index 0000000000..cb94f03f9a Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/glass-4.png differ diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/glass-up.png b/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/glass-up.png new file mode 100644 index 0000000000..818cb9fb2a Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/glass-up.png differ diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/glass.png b/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/glass.png new file mode 100644 index 0000000000..cf8a78e81a Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/glass.png differ diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/locked.png b/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/locked.png new file mode 100644 index 0000000000..641150be22 Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/locked.png differ diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/meta.json b/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/meta.json new file mode 100644 index 0000000000..a32bc8c8c8 --- /dev/null +++ b/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/meta.json @@ -0,0 +1,50 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Inspired by tg station\u0027s fireaxe cabinet https://github.com/tgstation/tgstation/commit/d0d81185f09ca30d3b0856d476544240dba0de53 Made by DISCORD@ps3moira#9488", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "glass" + }, + { + "name": "glass-1" + }, + { + "name": "glass-2" + }, + { + "name": "glass-3" + }, + { + "name": "glass-4" + }, + { + "name": "glass-up" + }, + { + "name": "locked" + }, + { + "name": "shotgun" + }, + { + "name": "unlocked" + }, + { + "name": "cabinet" + }, + { + "name": "cabinet-empty-open" + }, + { + "name": "cabinet-filled-closed" + }, + { + "name": "cabinet-filled-open" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/shotgun.png b/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/shotgun.png new file mode 100644 index 0000000000..bc55a68675 Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/shotgun.png differ diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/unlocked.png b/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/unlocked.png new file mode 100644 index 0000000000..eb00105c6c Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Wallmounts/shotgun_cabinet.rsi/unlocked.png differ diff --git a/Resources/Textures/Effects/acidifier.rsi/acid.png b/Resources/Textures/Effects/acidifier.rsi/acid.png new file mode 100644 index 0000000000..53f74e332e Binary files /dev/null and b/Resources/Textures/Effects/acidifier.rsi/acid.png differ diff --git a/Resources/Textures/Effects/acidifier.rsi/meta.json b/Resources/Textures/Effects/acidifier.rsi/meta.json new file mode 100644 index 0000000000..358e92374c --- /dev/null +++ b/Resources/Textures/Effects/acidifier.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (github) for ss14", + "states": [ + { + "name": "acid", + "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 + ] + ] + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Effects/electricity.rsi/electrified_diagonal.png b/Resources/Textures/Effects/electricity.rsi/electrified_diagonal.png new file mode 100644 index 0000000000..435aec5276 Binary files /dev/null and b/Resources/Textures/Effects/electricity.rsi/electrified_diagonal.png differ diff --git a/Resources/Textures/Effects/electricity.rsi/meta.json b/Resources/Textures/Effects/electricity.rsi/meta.json index 0b762debd0..b603d7a385 100644 --- a/Resources/Textures/Effects/electricity.rsi/meta.json +++ b/Resources/Textures/Effects/electricity.rsi/meta.json @@ -19,6 +19,19 @@ 0.1 ] ] + }, + { + "name": "electrified_diagonal", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] } ] } \ No newline at end of file diff --git a/Resources/Textures/Effects/rcd.rsi/construct.png b/Resources/Textures/Effects/rcd.rsi/construct.png new file mode 100644 index 0000000000..f4be36c9bf Binary files /dev/null and b/Resources/Textures/Effects/rcd.rsi/construct.png differ diff --git a/Resources/Textures/Effects/rcd.rsi/meta.json b/Resources/Textures/Effects/rcd.rsi/meta.json new file mode 100644 index 0000000000..5004a9c4fc --- /dev/null +++ b/Resources/Textures/Effects/rcd.rsi/meta.json @@ -0,0 +1,50 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgStation at commit https://github.com/tgstation/tgstation/commit/d75cbd0a2900fdec4c12cd5ba986b52ccff03713/icons/effects/effects_rcd.dmi", + "states": [ + { + "name": "construct", + "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 + ] + ] + } + ] +} diff --git a/Resources/Textures/Interface/Alerts/borg_alive.rsi/health0.png b/Resources/Textures/Interface/Alerts/borg_alive.rsi/health0.png index b94d636d0f..ab8c3ac9ca 100644 Binary files a/Resources/Textures/Interface/Alerts/borg_alive.rsi/health0.png and b/Resources/Textures/Interface/Alerts/borg_alive.rsi/health0.png differ diff --git a/Resources/Textures/Interface/Alerts/borg_alive.rsi/health1.png b/Resources/Textures/Interface/Alerts/borg_alive.rsi/health1.png index c58c73f604..507f254882 100644 Binary files a/Resources/Textures/Interface/Alerts/borg_alive.rsi/health1.png and b/Resources/Textures/Interface/Alerts/borg_alive.rsi/health1.png differ diff --git a/Resources/Textures/Interface/Alerts/borg_alive.rsi/health2.png b/Resources/Textures/Interface/Alerts/borg_alive.rsi/health2.png index 2447ba0fe3..160f153af8 100644 Binary files a/Resources/Textures/Interface/Alerts/borg_alive.rsi/health2.png and b/Resources/Textures/Interface/Alerts/borg_alive.rsi/health2.png differ diff --git a/Resources/Textures/Interface/Alerts/borg_alive.rsi/health3.png b/Resources/Textures/Interface/Alerts/borg_alive.rsi/health3.png index fd4e7ccde3..be9ff364eb 100644 Binary files a/Resources/Textures/Interface/Alerts/borg_alive.rsi/health3.png and b/Resources/Textures/Interface/Alerts/borg_alive.rsi/health3.png differ diff --git a/Resources/Textures/Interface/Alerts/borg_alive.rsi/health4.png b/Resources/Textures/Interface/Alerts/borg_alive.rsi/health4.png index 449d4428b8..1ef65e48a0 100644 Binary files a/Resources/Textures/Interface/Alerts/borg_alive.rsi/health4.png and b/Resources/Textures/Interface/Alerts/borg_alive.rsi/health4.png differ diff --git a/Resources/Textures/Interface/Alerts/borg_critical.rsi/critical.png b/Resources/Textures/Interface/Alerts/borg_critical.rsi/critical.png new file mode 100644 index 0000000000..cd11538d50 Binary files /dev/null and b/Resources/Textures/Interface/Alerts/borg_critical.rsi/critical.png differ diff --git a/Resources/Textures/Interface/Alerts/borg_critical.rsi/meta.json b/Resources/Textures/Interface/Alerts/borg_critical.rsi/meta.json new file mode 100644 index 0000000000..cc3906665a --- /dev/null +++ b/Resources/Textures/Interface/Alerts/borg_critical.rsi/meta.json @@ -0,0 +1,21 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/tgstation/tgstation/blob/42ebbb4202b472cf94561974a30e00a0b00e11bc/icons/mob/screen1_robot.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "critical", + "delays": [ + [ + 0.1, + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/Interface/Alerts/borg_dead.rsi/dead.png b/Resources/Textures/Interface/Alerts/borg_dead.rsi/dead.png new file mode 100644 index 0000000000..c060f9b180 Binary files /dev/null and b/Resources/Textures/Interface/Alerts/borg_dead.rsi/dead.png differ diff --git a/Resources/Textures/Interface/Alerts/borg_dead.rsi/meta.json b/Resources/Textures/Interface/Alerts/borg_dead.rsi/meta.json new file mode 100644 index 0000000000..bb68e6e4ee --- /dev/null +++ b/Resources/Textures/Interface/Alerts/borg_dead.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/tgstation/tgstation/blob/42ebbb4202b472cf94561974a30e00a0b00e11bc/icons/mob/screen1_robot.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "dead" + } + ] +} diff --git a/Resources/Textures/Interface/Alerts/human_alive.rsi/health4.png b/Resources/Textures/Interface/Alerts/human_alive.rsi/health4.png index 9ae49ead79..259e00b577 100644 Binary files a/Resources/Textures/Interface/Alerts/human_alive.rsi/health4.png and b/Resources/Textures/Interface/Alerts/human_alive.rsi/health4.png differ diff --git a/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/alive.png b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/alive.png new file mode 100644 index 0000000000..69351e41b8 Binary files /dev/null and b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/alive.png differ diff --git a/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/critical.png b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/critical.png new file mode 100644 index 0000000000..f2a58e1ffe Binary files /dev/null and b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/critical.png differ diff --git a/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/dead.png b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/dead.png new file mode 100644 index 0000000000..c3dfe488d6 Binary files /dev/null and b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/dead.png differ diff --git a/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health0.png b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health0.png new file mode 100644 index 0000000000..755c74eba5 Binary files /dev/null and b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health0.png differ diff --git a/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health1.png b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health1.png new file mode 100644 index 0000000000..41ff5b21a1 Binary files /dev/null and b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health1.png differ diff --git a/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health2.png b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health2.png new file mode 100644 index 0000000000..cfe5441127 Binary files /dev/null and b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health2.png differ diff --git a/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health3.png b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health3.png new file mode 100644 index 0000000000..b82f46e453 Binary files /dev/null and b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health3.png differ diff --git a/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health4.png b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health4.png new file mode 100644 index 0000000000..d371bb2a14 Binary files /dev/null and b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/health4.png differ diff --git a/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/meta.json b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/meta.json new file mode 100644 index 0000000000..e95420f02c --- /dev/null +++ b/Resources/Textures/Interface/Alerts/human_crew_monitoring.rsi/meta.json @@ -0,0 +1,41 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by chromiumboy, derived from https://github.com/tgstation/tgstation/commits/50689f89a40e5e7a2732a0c5fb38c787b69f7d28/icons/hud/screen_gen.dmi, ", + "size": { + "x": 24, + "y": 8 + }, + "states": [ + { + "name": "alive" + }, + { + "name": "dead" + }, + { + "name": "health0" + }, + { + "name": "health1" + }, + { + "name": "health2" + }, + { + "name": "health3" + }, + { + "name": "health4" + }, + { + "name": "critical", + "delays": [ + [ + 0.35, + 0.35 + ] + ] + } + ] +} diff --git a/Resources/Textures/Interface/Classic/Slots/back.png b/Resources/Textures/Interface/Classic/Slots/back.png deleted file mode 100644 index 5f46e01b5c..0000000000 Binary files a/Resources/Textures/Interface/Classic/Slots/back.png and /dev/null differ diff --git a/Resources/Textures/Interface/Classic/Slots/belt.png b/Resources/Textures/Interface/Classic/Slots/belt.png deleted file mode 100644 index 8a240a2cab..0000000000 Binary files a/Resources/Textures/Interface/Classic/Slots/belt.png and /dev/null differ diff --git a/Resources/Textures/Interface/Classic/Slots/ears.png b/Resources/Textures/Interface/Classic/Slots/ears.png deleted file mode 100644 index a9daf15001..0000000000 Binary files a/Resources/Textures/Interface/Classic/Slots/ears.png and /dev/null differ diff --git a/Resources/Textures/Interface/Classic/Slots/glasses.png b/Resources/Textures/Interface/Classic/Slots/glasses.png deleted file mode 100644 index 9517a9f270..0000000000 Binary files a/Resources/Textures/Interface/Classic/Slots/glasses.png and /dev/null differ diff --git a/Resources/Textures/Interface/Classic/Slots/gloves.png b/Resources/Textures/Interface/Classic/Slots/gloves.png deleted file mode 100644 index d3311fcdae..0000000000 Binary files a/Resources/Textures/Interface/Classic/Slots/gloves.png and /dev/null differ diff --git a/Resources/Textures/Interface/Classic/Slots/hand_l.png b/Resources/Textures/Interface/Classic/Slots/hand_l.png deleted file mode 100644 index 1f61ca6ae5..0000000000 Binary files a/Resources/Textures/Interface/Classic/Slots/hand_l.png and /dev/null differ diff --git a/Resources/Textures/Interface/Classic/Slots/hand_l_no_letter.png b/Resources/Textures/Interface/Classic/Slots/hand_l_no_letter.png deleted file mode 100644 index 625ed12452..0000000000 Binary files a/Resources/Textures/Interface/Classic/Slots/hand_l_no_letter.png and /dev/null differ diff --git a/Resources/Textures/Interface/Classic/Slots/hand_r.png b/Resources/Textures/Interface/Classic/Slots/hand_r.png deleted file mode 100644 index c40220e39e..0000000000 Binary files a/Resources/Textures/Interface/Classic/Slots/hand_r.png and /dev/null differ diff --git a/Resources/Textures/Interface/Classic/Slots/hand_r_no_letter.png b/Resources/Textures/Interface/Classic/Slots/hand_r_no_letter.png deleted file mode 100644 index eb0f1a0248..0000000000 Binary files a/Resources/Textures/Interface/Classic/Slots/hand_r_no_letter.png and /dev/null differ diff --git a/Resources/Textures/Interface/Classic/Slots/head.png b/Resources/Textures/Interface/Classic/Slots/head.png deleted file mode 100644 index f52688bb28..0000000000 Binary files a/Resources/Textures/Interface/Classic/Slots/head.png and /dev/null differ diff --git a/Resources/Textures/Interface/Classic/Slots/id.png b/Resources/Textures/Interface/Classic/Slots/id.png deleted file mode 100644 index c7e5d64668..0000000000 Binary files a/Resources/Textures/Interface/Classic/Slots/id.png and /dev/null differ diff --git a/Resources/Textures/Interface/Classic/Slots/mask.png b/Resources/Textures/Interface/Classic/Slots/mask.png deleted file mode 100644 index 8c6375cb22..0000000000 Binary files a/Resources/Textures/Interface/Classic/Slots/mask.png and /dev/null differ diff --git a/Resources/Textures/Interface/Classic/Slots/neck.png b/Resources/Textures/Interface/Classic/Slots/neck.png deleted file mode 100644 index d744499516..0000000000 Binary files a/Resources/Textures/Interface/Classic/Slots/neck.png and /dev/null differ diff --git a/Resources/Textures/Interface/Classic/Slots/pocket.png b/Resources/Textures/Interface/Classic/Slots/pocket.png deleted file mode 100644 index 1906cabdcc..0000000000 Binary files a/Resources/Textures/Interface/Classic/Slots/pocket.png and /dev/null differ diff --git a/Resources/Textures/Interface/Classic/Slots/shoes.png b/Resources/Textures/Interface/Classic/Slots/shoes.png deleted file mode 100644 index f5497fe1d2..0000000000 Binary files a/Resources/Textures/Interface/Classic/Slots/shoes.png and /dev/null differ diff --git a/Resources/Textures/Interface/Classic/Slots/suit.png b/Resources/Textures/Interface/Classic/Slots/suit.png deleted file mode 100644 index 47e4a59d7f..0000000000 Binary files a/Resources/Textures/Interface/Classic/Slots/suit.png and /dev/null differ diff --git a/Resources/Textures/Interface/Classic/Slots/suit_storage.png b/Resources/Textures/Interface/Classic/Slots/suit_storage.png deleted file mode 100644 index 3693b73396..0000000000 Binary files a/Resources/Textures/Interface/Classic/Slots/suit_storage.png and /dev/null differ diff --git a/Resources/Textures/Interface/Classic/Slots/uniform.png b/Resources/Textures/Interface/Classic/Slots/uniform.png deleted file mode 100644 index 10fe9d3754..0000000000 Binary files a/Resources/Textures/Interface/Classic/Slots/uniform.png and /dev/null differ diff --git a/Resources/Textures/Interface/Classic/slot_highlight.png b/Resources/Textures/Interface/Classic/slot_highlight.png deleted file mode 100644 index d70086971d..0000000000 Binary files a/Resources/Textures/Interface/Classic/slot_highlight.png and /dev/null differ diff --git a/Resources/Textures/Interface/Clockwork/SlotBackground.png b/Resources/Textures/Interface/Clockwork/SlotBackground.png new file mode 100644 index 0000000000..d749117e5c Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/SlotBackground.png differ diff --git a/Resources/Textures/Interface/Clockwork/Slots/back.png b/Resources/Textures/Interface/Clockwork/Slots/back.png new file mode 100644 index 0000000000..868e9b9612 Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Slots/back.png differ diff --git a/Resources/Textures/Interface/Clockwork/Slots/belt.png b/Resources/Textures/Interface/Clockwork/Slots/belt.png new file mode 100644 index 0000000000..e122ccc9bf Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Slots/belt.png differ diff --git a/Resources/Textures/Interface/Clockwork/Slots/ears.png b/Resources/Textures/Interface/Clockwork/Slots/ears.png new file mode 100644 index 0000000000..266f77ad52 Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Slots/ears.png differ diff --git a/Resources/Textures/Interface/Clockwork/Slots/glasses.png b/Resources/Textures/Interface/Clockwork/Slots/glasses.png new file mode 100644 index 0000000000..c58c952982 Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Slots/glasses.png differ diff --git a/Resources/Textures/Interface/Clockwork/Slots/gloves.png b/Resources/Textures/Interface/Clockwork/Slots/gloves.png new file mode 100644 index 0000000000..0a1c8d756b Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Slots/gloves.png differ diff --git a/Resources/Textures/Interface/Clockwork/Slots/hand_l.png b/Resources/Textures/Interface/Clockwork/Slots/hand_l.png new file mode 100644 index 0000000000..52a6691ffe Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Slots/hand_l.png differ diff --git a/Resources/Textures/Interface/Clockwork/Slots/hand_l_no_letter.png b/Resources/Textures/Interface/Clockwork/Slots/hand_l_no_letter.png new file mode 100644 index 0000000000..e07ac248f1 Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Slots/hand_l_no_letter.png differ diff --git a/Resources/Textures/Interface/Clockwork/Slots/hand_r.png b/Resources/Textures/Interface/Clockwork/Slots/hand_r.png new file mode 100644 index 0000000000..600c4c0566 Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Slots/hand_r.png differ diff --git a/Resources/Textures/Interface/Clockwork/Slots/hand_r_no_letter.png b/Resources/Textures/Interface/Clockwork/Slots/hand_r_no_letter.png new file mode 100644 index 0000000000..d01818ee09 Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Slots/hand_r_no_letter.png differ diff --git a/Resources/Textures/Interface/Clockwork/Slots/head.png b/Resources/Textures/Interface/Clockwork/Slots/head.png new file mode 100644 index 0000000000..7b6a3a9bbf Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Slots/head.png differ diff --git a/Resources/Textures/Interface/Clockwork/Slots/id.png b/Resources/Textures/Interface/Clockwork/Slots/id.png new file mode 100644 index 0000000000..63ace2fc65 Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Slots/id.png differ diff --git a/Resources/Textures/Interface/Clockwork/Slots/mask.png b/Resources/Textures/Interface/Clockwork/Slots/mask.png new file mode 100644 index 0000000000..379ef7ef44 Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Slots/mask.png differ diff --git a/Resources/Textures/Interface/Clockwork/Slots/neck.png b/Resources/Textures/Interface/Clockwork/Slots/neck.png new file mode 100644 index 0000000000..2ee061d788 Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Slots/neck.png differ diff --git a/Resources/Textures/Interface/Clockwork/Slots/pocket.png b/Resources/Textures/Interface/Clockwork/Slots/pocket.png new file mode 100644 index 0000000000..71e64bcf0b Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Slots/pocket.png differ diff --git a/Resources/Textures/Interface/Clockwork/Slots/shoes.png b/Resources/Textures/Interface/Clockwork/Slots/shoes.png new file mode 100644 index 0000000000..62fbf474ab Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Slots/shoes.png differ diff --git a/Resources/Textures/Interface/Clockwork/Slots/suit.png b/Resources/Textures/Interface/Clockwork/Slots/suit.png new file mode 100644 index 0000000000..660bd0bb8e Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Slots/suit.png differ diff --git a/Resources/Textures/Interface/Clockwork/Slots/suit_storage.png b/Resources/Textures/Interface/Clockwork/Slots/suit_storage.png new file mode 100644 index 0000000000..a7584ccfa5 Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Slots/suit_storage.png differ diff --git a/Resources/Textures/Interface/Clockwork/Slots/uniform.png b/Resources/Textures/Interface/Clockwork/Slots/uniform.png new file mode 100644 index 0000000000..f75af1e911 Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Slots/uniform.png differ diff --git a/Resources/Textures/Interface/Clockwork/Slots/web.png b/Resources/Textures/Interface/Clockwork/Slots/web.png new file mode 100644 index 0000000000..62c31699f1 Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Slots/web.png differ diff --git a/Resources/Textures/Interface/Clockwork/Storage/piece_bottom.png b/Resources/Textures/Interface/Clockwork/Storage/piece_bottom.png new file mode 100644 index 0000000000..e084719425 Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Storage/piece_bottom.png differ diff --git a/Resources/Textures/Interface/Clockwork/Storage/piece_bottomLeft.png b/Resources/Textures/Interface/Clockwork/Storage/piece_bottomLeft.png new file mode 100644 index 0000000000..919d946c1f Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Storage/piece_bottomLeft.png differ diff --git a/Resources/Textures/Interface/Clockwork/Storage/piece_bottomRight.png b/Resources/Textures/Interface/Clockwork/Storage/piece_bottomRight.png new file mode 100644 index 0000000000..bb0e7e95a9 Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Storage/piece_bottomRight.png differ diff --git a/Resources/Textures/Interface/Clockwork/Storage/piece_center.png b/Resources/Textures/Interface/Clockwork/Storage/piece_center.png new file mode 100644 index 0000000000..c78032bfff Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Storage/piece_center.png differ diff --git a/Resources/Textures/Interface/Clockwork/Storage/piece_left.png b/Resources/Textures/Interface/Clockwork/Storage/piece_left.png new file mode 100644 index 0000000000..c7f252d284 Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Storage/piece_left.png differ diff --git a/Resources/Textures/Interface/Clockwork/Storage/piece_right.png b/Resources/Textures/Interface/Clockwork/Storage/piece_right.png new file mode 100644 index 0000000000..86498b441a Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Storage/piece_right.png differ diff --git a/Resources/Textures/Interface/Clockwork/Storage/piece_top.png b/Resources/Textures/Interface/Clockwork/Storage/piece_top.png new file mode 100644 index 0000000000..171f8321d1 Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Storage/piece_top.png differ diff --git a/Resources/Textures/Interface/Clockwork/Storage/piece_topLeft.png b/Resources/Textures/Interface/Clockwork/Storage/piece_topLeft.png new file mode 100644 index 0000000000..780a6aba34 Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Storage/piece_topLeft.png differ diff --git a/Resources/Textures/Interface/Clockwork/Storage/piece_topRight.png b/Resources/Textures/Interface/Clockwork/Storage/piece_topRight.png new file mode 100644 index 0000000000..b5f4e6f560 Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Storage/piece_topRight.png differ diff --git a/Resources/Textures/Interface/Clockwork/Storage/sidebar_bottom.png b/Resources/Textures/Interface/Clockwork/Storage/sidebar_bottom.png new file mode 100644 index 0000000000..0ad615bcf9 Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Storage/sidebar_bottom.png differ diff --git a/Resources/Textures/Interface/Clockwork/Storage/sidebar_mid.png b/Resources/Textures/Interface/Clockwork/Storage/sidebar_mid.png new file mode 100644 index 0000000000..b5bf62944a Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Storage/sidebar_mid.png differ diff --git a/Resources/Textures/Interface/Clockwork/Storage/sidebar_top.png b/Resources/Textures/Interface/Clockwork/Storage/sidebar_top.png new file mode 100644 index 0000000000..b0fbd4a8cb Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Storage/sidebar_top.png differ diff --git a/Resources/Textures/Interface/Clockwork/Storage/tile_blocked.png b/Resources/Textures/Interface/Clockwork/Storage/tile_blocked.png new file mode 100644 index 0000000000..9a553a3e7b Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Storage/tile_blocked.png differ diff --git a/Resources/Textures/Interface/Clockwork/Storage/tile_blocked_opaque.png b/Resources/Textures/Interface/Clockwork/Storage/tile_blocked_opaque.png new file mode 100644 index 0000000000..c198cd3f97 Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/Storage/tile_blocked_opaque.png differ diff --git a/Resources/Textures/Interface/Clockwork/slot_highlight.png b/Resources/Textures/Interface/Clockwork/slot_highlight.png new file mode 100644 index 0000000000..04aa4249e5 Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/slot_highlight.png differ diff --git a/Resources/Textures/Interface/Clockwork/template_small.png b/Resources/Textures/Interface/Clockwork/template_small.png new file mode 100644 index 0000000000..341f4274c5 Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/template_small.png differ diff --git a/Resources/Textures/Interface/Default/SlotBackground.png b/Resources/Textures/Interface/Default/SlotBackground.png index eb0ee037fd..f4185a0479 100644 Binary files a/Resources/Textures/Interface/Default/SlotBackground.png and b/Resources/Textures/Interface/Default/SlotBackground.png differ diff --git a/Resources/Textures/Interface/Default/Slots/back.png b/Resources/Textures/Interface/Default/Slots/back.png index db2ad4b13f..69a33b7aee 100644 Binary files a/Resources/Textures/Interface/Default/Slots/back.png and b/Resources/Textures/Interface/Default/Slots/back.png differ diff --git a/Resources/Textures/Interface/Default/Slots/belt.png b/Resources/Textures/Interface/Default/Slots/belt.png index b16af0c4b9..6725d14ece 100644 Binary files a/Resources/Textures/Interface/Default/Slots/belt.png and b/Resources/Textures/Interface/Default/Slots/belt.png differ diff --git a/Resources/Textures/Interface/Default/Slots/ears.png b/Resources/Textures/Interface/Default/Slots/ears.png index d0c0fc1590..a9daf15001 100644 Binary files a/Resources/Textures/Interface/Default/Slots/ears.png and b/Resources/Textures/Interface/Default/Slots/ears.png differ diff --git a/Resources/Textures/Interface/Default/Slots/glasses.png b/Resources/Textures/Interface/Default/Slots/glasses.png index c4ed533570..9517a9f270 100644 Binary files a/Resources/Textures/Interface/Default/Slots/glasses.png and b/Resources/Textures/Interface/Default/Slots/glasses.png differ diff --git a/Resources/Textures/Interface/Default/Slots/gloves.png b/Resources/Textures/Interface/Default/Slots/gloves.png index 3b54aced99..d3311fcdae 100644 Binary files a/Resources/Textures/Interface/Default/Slots/gloves.png and b/Resources/Textures/Interface/Default/Slots/gloves.png differ diff --git a/Resources/Textures/Interface/Default/Slots/hand_l.png b/Resources/Textures/Interface/Default/Slots/hand_l.png index 779db2f4f7..1f61ca6ae5 100644 Binary files a/Resources/Textures/Interface/Default/Slots/hand_l.png and b/Resources/Textures/Interface/Default/Slots/hand_l.png differ diff --git a/Resources/Textures/Interface/Default/Slots/hand_l_no_letter.png b/Resources/Textures/Interface/Default/Slots/hand_l_no_letter.png index d06aaa79dd..625ed12452 100644 Binary files a/Resources/Textures/Interface/Default/Slots/hand_l_no_letter.png and b/Resources/Textures/Interface/Default/Slots/hand_l_no_letter.png differ diff --git a/Resources/Textures/Interface/Default/Slots/hand_r.png b/Resources/Textures/Interface/Default/Slots/hand_r.png index 233f978607..c40220e39e 100644 Binary files a/Resources/Textures/Interface/Default/Slots/hand_r.png and b/Resources/Textures/Interface/Default/Slots/hand_r.png differ diff --git a/Resources/Textures/Interface/Default/Slots/hand_r_no_letter.png b/Resources/Textures/Interface/Default/Slots/hand_r_no_letter.png index 96e3b561a2..eb0f1a0248 100644 Binary files a/Resources/Textures/Interface/Default/Slots/hand_r_no_letter.png and b/Resources/Textures/Interface/Default/Slots/hand_r_no_letter.png differ diff --git a/Resources/Textures/Interface/Default/Slots/head.png b/Resources/Textures/Interface/Default/Slots/head.png index c542ed0cd8..0401f297c8 100644 Binary files a/Resources/Textures/Interface/Default/Slots/head.png and b/Resources/Textures/Interface/Default/Slots/head.png differ diff --git a/Resources/Textures/Interface/Default/Slots/id.png b/Resources/Textures/Interface/Default/Slots/id.png index bf3191cac1..b50a9770a7 100644 Binary files a/Resources/Textures/Interface/Default/Slots/id.png and b/Resources/Textures/Interface/Default/Slots/id.png differ diff --git a/Resources/Textures/Interface/Default/Slots/mask.png b/Resources/Textures/Interface/Default/Slots/mask.png index d616ddabb9..8c6375cb22 100644 Binary files a/Resources/Textures/Interface/Default/Slots/mask.png and b/Resources/Textures/Interface/Default/Slots/mask.png differ diff --git a/Resources/Textures/Interface/Default/Slots/neck.png b/Resources/Textures/Interface/Default/Slots/neck.png index 9458cc1a26..d744499516 100644 Binary files a/Resources/Textures/Interface/Default/Slots/neck.png and b/Resources/Textures/Interface/Default/Slots/neck.png differ diff --git a/Resources/Textures/Interface/Default/Slots/pocket.png b/Resources/Textures/Interface/Default/Slots/pocket.png index abbd289866..c05ef537fd 100644 Binary files a/Resources/Textures/Interface/Default/Slots/pocket.png and b/Resources/Textures/Interface/Default/Slots/pocket.png differ diff --git a/Resources/Textures/Interface/Default/Slots/shoes.png b/Resources/Textures/Interface/Default/Slots/shoes.png index 18f5553d91..f5497fe1d2 100644 Binary files a/Resources/Textures/Interface/Default/Slots/shoes.png and b/Resources/Textures/Interface/Default/Slots/shoes.png differ diff --git a/Resources/Textures/Interface/Default/Slots/suit.png b/Resources/Textures/Interface/Default/Slots/suit.png index c63fb7345a..47e4a59d7f 100644 Binary files a/Resources/Textures/Interface/Default/Slots/suit.png and b/Resources/Textures/Interface/Default/Slots/suit.png differ diff --git a/Resources/Textures/Interface/Default/Slots/suit_storage.png b/Resources/Textures/Interface/Default/Slots/suit_storage.png index aa7a7ccb6a..3693b73396 100644 Binary files a/Resources/Textures/Interface/Default/Slots/suit_storage.png and b/Resources/Textures/Interface/Default/Slots/suit_storage.png differ diff --git a/Resources/Textures/Interface/Default/Slots/uniform.png b/Resources/Textures/Interface/Default/Slots/uniform.png index 188e3387b8..10fe9d3754 100644 Binary files a/Resources/Textures/Interface/Default/Slots/uniform.png and b/Resources/Textures/Interface/Default/Slots/uniform.png differ diff --git a/Resources/Textures/Interface/Default/Slots/web.png b/Resources/Textures/Interface/Default/Slots/web.png index d85d84e28c..55f6ff9d1b 100644 Binary files a/Resources/Textures/Interface/Default/Slots/web.png and b/Resources/Textures/Interface/Default/Slots/web.png differ diff --git a/Resources/Textures/Interface/Default/slot_highlight.png b/Resources/Textures/Interface/Default/slot_highlight.png index e83a2ea824..d70086971d 100644 Binary files a/Resources/Textures/Interface/Default/slot_highlight.png and b/Resources/Textures/Interface/Default/slot_highlight.png differ diff --git a/Resources/Textures/Interface/Default/template_small.png b/Resources/Textures/Interface/Default/template_small.png new file mode 100644 index 0000000000..392ca89b10 Binary files /dev/null and b/Resources/Textures/Interface/Default/template_small.png differ diff --git a/Resources/Textures/Interface/Modernized/Slots/back.png b/Resources/Textures/Interface/Eris/Slots/back.png similarity index 100% rename from Resources/Textures/Interface/Modernized/Slots/back.png rename to Resources/Textures/Interface/Eris/Slots/back.png diff --git a/Resources/Textures/Interface/Modernized/Slots/belt.png b/Resources/Textures/Interface/Eris/Slots/belt.png similarity index 100% rename from Resources/Textures/Interface/Modernized/Slots/belt.png rename to Resources/Textures/Interface/Eris/Slots/belt.png diff --git a/Resources/Textures/Interface/Modernized/Slots/block.png b/Resources/Textures/Interface/Eris/Slots/block.png similarity index 100% rename from Resources/Textures/Interface/Modernized/Slots/block.png rename to Resources/Textures/Interface/Eris/Slots/block.png diff --git a/Resources/Textures/Interface/Modernized/Slots/ears.png b/Resources/Textures/Interface/Eris/Slots/ears.png similarity index 100% rename from Resources/Textures/Interface/Modernized/Slots/ears.png rename to Resources/Textures/Interface/Eris/Slots/ears.png diff --git a/Resources/Textures/Interface/Modernized/Slots/glasses.png b/Resources/Textures/Interface/Eris/Slots/glasses.png similarity index 100% rename from Resources/Textures/Interface/Modernized/Slots/glasses.png rename to Resources/Textures/Interface/Eris/Slots/glasses.png diff --git a/Resources/Textures/Interface/Modernized/Slots/gloves.png b/Resources/Textures/Interface/Eris/Slots/gloves.png similarity index 100% rename from Resources/Textures/Interface/Modernized/Slots/gloves.png rename to Resources/Textures/Interface/Eris/Slots/gloves.png diff --git a/Resources/Textures/Interface/Modernized/Slots/hand_l.png b/Resources/Textures/Interface/Eris/Slots/hand_l.png similarity index 100% rename from Resources/Textures/Interface/Modernized/Slots/hand_l.png rename to Resources/Textures/Interface/Eris/Slots/hand_l.png diff --git a/Resources/Textures/Interface/Modernized/Slots/hand_l_active.png b/Resources/Textures/Interface/Eris/Slots/hand_l_active.png similarity index 100% rename from Resources/Textures/Interface/Modernized/Slots/hand_l_active.png rename to Resources/Textures/Interface/Eris/Slots/hand_l_active.png diff --git a/Resources/Textures/Interface/Modernized/Slots/hand_r.png b/Resources/Textures/Interface/Eris/Slots/hand_r.png similarity index 100% rename from Resources/Textures/Interface/Modernized/Slots/hand_r.png rename to Resources/Textures/Interface/Eris/Slots/hand_r.png diff --git a/Resources/Textures/Interface/Modernized/Slots/hand_r_active.png b/Resources/Textures/Interface/Eris/Slots/hand_r_active.png similarity index 100% rename from Resources/Textures/Interface/Modernized/Slots/hand_r_active.png rename to Resources/Textures/Interface/Eris/Slots/hand_r_active.png diff --git a/Resources/Textures/Interface/Modernized/Slots/head.png b/Resources/Textures/Interface/Eris/Slots/head.png similarity index 100% rename from Resources/Textures/Interface/Modernized/Slots/head.png rename to Resources/Textures/Interface/Eris/Slots/head.png diff --git a/Resources/Textures/Interface/Modernized/Slots/id.png b/Resources/Textures/Interface/Eris/Slots/id.png similarity index 100% rename from Resources/Textures/Interface/Modernized/Slots/id.png rename to Resources/Textures/Interface/Eris/Slots/id.png diff --git a/Resources/Textures/Interface/Modernized/Slots/inventory.png b/Resources/Textures/Interface/Eris/Slots/inventory.png similarity index 100% rename from Resources/Textures/Interface/Modernized/Slots/inventory.png rename to Resources/Textures/Interface/Eris/Slots/inventory.png diff --git a/Resources/Textures/Interface/Modernized/Slots/mask.png b/Resources/Textures/Interface/Eris/Slots/mask.png similarity index 100% rename from Resources/Textures/Interface/Modernized/Slots/mask.png rename to Resources/Textures/Interface/Eris/Slots/mask.png diff --git a/Resources/Textures/Interface/Modernized/Slots/meta b/Resources/Textures/Interface/Eris/Slots/meta similarity index 100% rename from Resources/Textures/Interface/Modernized/Slots/meta rename to Resources/Textures/Interface/Eris/Slots/meta diff --git a/Resources/Textures/Interface/Modernized/Slots/neck.png b/Resources/Textures/Interface/Eris/Slots/neck.png similarity index 100% rename from Resources/Textures/Interface/Modernized/Slots/neck.png rename to Resources/Textures/Interface/Eris/Slots/neck.png diff --git a/Resources/Textures/Interface/Modernized/Slots/pocket.png b/Resources/Textures/Interface/Eris/Slots/pocket.png similarity index 100% rename from Resources/Textures/Interface/Modernized/Slots/pocket.png rename to Resources/Textures/Interface/Eris/Slots/pocket.png diff --git a/Resources/Textures/Interface/Modernized/Slots/sheet.png b/Resources/Textures/Interface/Eris/Slots/sheet.png similarity index 100% rename from Resources/Textures/Interface/Modernized/Slots/sheet.png rename to Resources/Textures/Interface/Eris/Slots/sheet.png diff --git a/Resources/Textures/Interface/Modernized/Slots/shoes.png b/Resources/Textures/Interface/Eris/Slots/shoes.png similarity index 100% rename from Resources/Textures/Interface/Modernized/Slots/shoes.png rename to Resources/Textures/Interface/Eris/Slots/shoes.png diff --git a/Resources/Textures/Interface/Modernized/Slots/suit.png b/Resources/Textures/Interface/Eris/Slots/suit.png similarity index 100% rename from Resources/Textures/Interface/Modernized/Slots/suit.png rename to Resources/Textures/Interface/Eris/Slots/suit.png diff --git a/Resources/Textures/Interface/Modernized/Slots/suit_storage.png b/Resources/Textures/Interface/Eris/Slots/suit_storage.png similarity index 100% rename from Resources/Textures/Interface/Modernized/Slots/suit_storage.png rename to Resources/Textures/Interface/Eris/Slots/suit_storage.png diff --git a/Resources/Textures/Interface/Modernized/Slots/uniform.png b/Resources/Textures/Interface/Eris/Slots/uniform.png similarity index 100% rename from Resources/Textures/Interface/Modernized/Slots/uniform.png rename to Resources/Textures/Interface/Eris/Slots/uniform.png diff --git a/Resources/Textures/Interface/Eris/Slots/web.png b/Resources/Textures/Interface/Eris/Slots/web.png new file mode 100644 index 0000000000..0e9a67f8be Binary files /dev/null and b/Resources/Textures/Interface/Eris/Slots/web.png differ diff --git a/Resources/Textures/Interface/Minimalist/SlotBackground.png b/Resources/Textures/Interface/Minimalist/SlotBackground.png new file mode 100644 index 0000000000..eb0ee037fd Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/SlotBackground.png differ diff --git a/Resources/Textures/Interface/Minimalist/Slots/back.png b/Resources/Textures/Interface/Minimalist/Slots/back.png new file mode 100644 index 0000000000..db2ad4b13f Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/Slots/back.png differ diff --git a/Resources/Textures/Interface/Minimalist/Slots/belt.png b/Resources/Textures/Interface/Minimalist/Slots/belt.png new file mode 100644 index 0000000000..b16af0c4b9 Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/Slots/belt.png differ diff --git a/Resources/Textures/Interface/Minimalist/Slots/ears.png b/Resources/Textures/Interface/Minimalist/Slots/ears.png new file mode 100644 index 0000000000..d0c0fc1590 Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/Slots/ears.png differ diff --git a/Resources/Textures/Interface/Default/Slots/ears_headset.png b/Resources/Textures/Interface/Minimalist/Slots/ears_headset.png similarity index 100% rename from Resources/Textures/Interface/Default/Slots/ears_headset.png rename to Resources/Textures/Interface/Minimalist/Slots/ears_headset.png diff --git a/Resources/Textures/Interface/Minimalist/Slots/glasses.png b/Resources/Textures/Interface/Minimalist/Slots/glasses.png new file mode 100644 index 0000000000..c4ed533570 Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/Slots/glasses.png differ diff --git a/Resources/Textures/Interface/Minimalist/Slots/gloves.png b/Resources/Textures/Interface/Minimalist/Slots/gloves.png new file mode 100644 index 0000000000..3b54aced99 Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/Slots/gloves.png differ diff --git a/Resources/Textures/Interface/Minimalist/Slots/hand_l.png b/Resources/Textures/Interface/Minimalist/Slots/hand_l.png new file mode 100644 index 0000000000..779db2f4f7 Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/Slots/hand_l.png differ diff --git a/Resources/Textures/Interface/Minimalist/Slots/hand_l_no_letter.png b/Resources/Textures/Interface/Minimalist/Slots/hand_l_no_letter.png new file mode 100644 index 0000000000..d06aaa79dd Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/Slots/hand_l_no_letter.png differ diff --git a/Resources/Textures/Interface/Minimalist/Slots/hand_m.png b/Resources/Textures/Interface/Minimalist/Slots/hand_m.png new file mode 100644 index 0000000000..d06aaa79dd Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/Slots/hand_m.png differ diff --git a/Resources/Textures/Interface/Minimalist/Slots/hand_r.png b/Resources/Textures/Interface/Minimalist/Slots/hand_r.png new file mode 100644 index 0000000000..233f978607 Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/Slots/hand_r.png differ diff --git a/Resources/Textures/Interface/Minimalist/Slots/hand_r_no_letter.png b/Resources/Textures/Interface/Minimalist/Slots/hand_r_no_letter.png new file mode 100644 index 0000000000..96e3b561a2 Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/Slots/hand_r_no_letter.png differ diff --git a/Resources/Textures/Interface/Minimalist/Slots/head.png b/Resources/Textures/Interface/Minimalist/Slots/head.png new file mode 100644 index 0000000000..c542ed0cd8 Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/Slots/head.png differ diff --git a/Resources/Textures/Interface/Minimalist/Slots/id.png b/Resources/Textures/Interface/Minimalist/Slots/id.png new file mode 100644 index 0000000000..bf3191cac1 Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/Slots/id.png differ diff --git a/Resources/Textures/Interface/Minimalist/Slots/inventory.png b/Resources/Textures/Interface/Minimalist/Slots/inventory.png new file mode 100644 index 0000000000..33fa9dba2c Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/Slots/inventory.png differ diff --git a/Resources/Textures/Interface/Minimalist/Slots/mask.png b/Resources/Textures/Interface/Minimalist/Slots/mask.png new file mode 100644 index 0000000000..d616ddabb9 Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/Slots/mask.png differ diff --git a/Resources/Textures/Interface/Minimalist/Slots/neck.png b/Resources/Textures/Interface/Minimalist/Slots/neck.png new file mode 100644 index 0000000000..9458cc1a26 Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/Slots/neck.png differ diff --git a/Resources/Textures/Interface/Default/Slots/pda.png b/Resources/Textures/Interface/Minimalist/Slots/pda.png similarity index 100% rename from Resources/Textures/Interface/Default/Slots/pda.png rename to Resources/Textures/Interface/Minimalist/Slots/pda.png diff --git a/Resources/Textures/Interface/Minimalist/Slots/pocket.png b/Resources/Textures/Interface/Minimalist/Slots/pocket.png new file mode 100644 index 0000000000..abbd289866 Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/Slots/pocket.png differ diff --git a/Resources/Textures/Interface/Minimalist/Slots/shoes.png b/Resources/Textures/Interface/Minimalist/Slots/shoes.png new file mode 100644 index 0000000000..18f5553d91 Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/Slots/shoes.png differ diff --git a/Resources/Textures/Interface/Minimalist/Slots/suit.png b/Resources/Textures/Interface/Minimalist/Slots/suit.png new file mode 100644 index 0000000000..c63fb7345a Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/Slots/suit.png differ diff --git a/Resources/Textures/Interface/Minimalist/Slots/suit_storage.png b/Resources/Textures/Interface/Minimalist/Slots/suit_storage.png new file mode 100644 index 0000000000..aa7a7ccb6a Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/Slots/suit_storage.png differ diff --git a/Resources/Textures/Interface/Minimalist/Slots/uniform.png b/Resources/Textures/Interface/Minimalist/Slots/uniform.png new file mode 100644 index 0000000000..188e3387b8 Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/Slots/uniform.png differ diff --git a/Resources/Textures/Interface/Minimalist/Slots/web.png b/Resources/Textures/Interface/Minimalist/Slots/web.png new file mode 100644 index 0000000000..f67ae575c7 Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/Slots/web.png differ diff --git a/Resources/Textures/Interface/Minimalist/slot_highlight.png b/Resources/Textures/Interface/Minimalist/slot_highlight.png new file mode 100644 index 0000000000..e83a2ea824 Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/slot_highlight.png differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/MindShield.png b/Resources/Textures/Interface/Misc/job_icons.rsi/MindShield.png new file mode 100644 index 0000000000..3049f3e50f Binary files /dev/null and b/Resources/Textures/Interface/Misc/job_icons.rsi/MindShield.png differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/Syndicate.png b/Resources/Textures/Interface/Misc/job_icons.rsi/Syndicate.png new file mode 100644 index 0000000000..a671977085 Binary files /dev/null and b/Resources/Textures/Interface/Misc/job_icons.rsi/Syndicate.png differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json b/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json index 2d71fcd056..da00077fbd 100644 --- a/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json +++ b/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/blob/e71d6c4fba5a51f99b81c295dcaec4fc2f58fb19/icons/mob/screen1.dmi | Brigmedic icon made by PuroSlavKing (Github) | Zombie icon made by RamZ | Zookeper by netwy (discort) | Rev and Head Rev icon taken from https://tgstation13.org/wiki/HUD and edited by coolmankid12345 (Discord)", + "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/blob/e71d6c4fba5a51f99b81c295dcaec4fc2f58fb19/icons/mob/screen1.dmi | Brigmedic icon made by PuroSlavKing (Github) | Zombie icon made by RamZ | Zookeper by netwy (discort) | Rev and Head Rev icon taken from https://tgstation13.org/wiki/HUD and edited by coolmankid12345 (Discord) | Mindshield icon made by Psychpsyo (Github)", "size": { "x": 8, @@ -169,6 +169,12 @@ }, { "name": "HeadRevolutionary" + }, + { + "name": "MindShield" + }, + { + "name": "Syndicate" } ] } diff --git a/Resources/Textures/Interface/NavMap/beveled_circle.png b/Resources/Textures/Interface/NavMap/beveled_circle.png new file mode 100644 index 0000000000..a54a9d6221 Binary files /dev/null and b/Resources/Textures/Interface/NavMap/beveled_circle.png differ diff --git a/Resources/Textures/Interface/Plasmafire/SlotBackground.png b/Resources/Textures/Interface/Plasmafire/SlotBackground.png new file mode 100644 index 0000000000..5260b94ca0 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/SlotBackground.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Slots/back.png b/Resources/Textures/Interface/Plasmafire/Slots/back.png new file mode 100644 index 0000000000..783d92c978 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Slots/back.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Slots/belt.png b/Resources/Textures/Interface/Plasmafire/Slots/belt.png new file mode 100644 index 0000000000..f14c3ca435 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Slots/belt.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Slots/ears.png b/Resources/Textures/Interface/Plasmafire/Slots/ears.png new file mode 100644 index 0000000000..98c2667ef2 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Slots/ears.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Slots/glasses.png b/Resources/Textures/Interface/Plasmafire/Slots/glasses.png new file mode 100644 index 0000000000..4f8ce53a11 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Slots/glasses.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Slots/gloves.png b/Resources/Textures/Interface/Plasmafire/Slots/gloves.png new file mode 100644 index 0000000000..6a8d3056b6 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Slots/gloves.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Slots/hand_l.png b/Resources/Textures/Interface/Plasmafire/Slots/hand_l.png new file mode 100644 index 0000000000..9d10c31606 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Slots/hand_l.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Slots/hand_l_no_letter.png b/Resources/Textures/Interface/Plasmafire/Slots/hand_l_no_letter.png new file mode 100644 index 0000000000..1ec6b6fa07 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Slots/hand_l_no_letter.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Slots/hand_r.png b/Resources/Textures/Interface/Plasmafire/Slots/hand_r.png new file mode 100644 index 0000000000..93b86f1bd6 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Slots/hand_r.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Slots/hand_r_no_letter.png b/Resources/Textures/Interface/Plasmafire/Slots/hand_r_no_letter.png new file mode 100644 index 0000000000..84f8866f67 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Slots/hand_r_no_letter.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Slots/head.png b/Resources/Textures/Interface/Plasmafire/Slots/head.png new file mode 100644 index 0000000000..b33c7da73b Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Slots/head.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Slots/id.png b/Resources/Textures/Interface/Plasmafire/Slots/id.png new file mode 100644 index 0000000000..20fa70476f Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Slots/id.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Slots/mask.png b/Resources/Textures/Interface/Plasmafire/Slots/mask.png new file mode 100644 index 0000000000..cc1a35f1ff Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Slots/mask.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Slots/neck.png b/Resources/Textures/Interface/Plasmafire/Slots/neck.png new file mode 100644 index 0000000000..2f4a6ea6b9 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Slots/neck.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Slots/pocket.png b/Resources/Textures/Interface/Plasmafire/Slots/pocket.png new file mode 100644 index 0000000000..0d671e7dd9 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Slots/pocket.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Slots/shoes.png b/Resources/Textures/Interface/Plasmafire/Slots/shoes.png new file mode 100644 index 0000000000..6777f3fe01 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Slots/shoes.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Slots/suit.png b/Resources/Textures/Interface/Plasmafire/Slots/suit.png new file mode 100644 index 0000000000..6c43df9c8c Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Slots/suit.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Slots/suit_storage.png b/Resources/Textures/Interface/Plasmafire/Slots/suit_storage.png new file mode 100644 index 0000000000..b0bb5cc819 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Slots/suit_storage.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Slots/uniform.png b/Resources/Textures/Interface/Plasmafire/Slots/uniform.png new file mode 100644 index 0000000000..7f98121663 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Slots/uniform.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Slots/web.png b/Resources/Textures/Interface/Plasmafire/Slots/web.png new file mode 100644 index 0000000000..1661c12ae8 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Slots/web.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Storage/piece_bottom.png b/Resources/Textures/Interface/Plasmafire/Storage/piece_bottom.png new file mode 100644 index 0000000000..ec0d3309c5 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Storage/piece_bottom.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Storage/piece_bottomLeft.png b/Resources/Textures/Interface/Plasmafire/Storage/piece_bottomLeft.png new file mode 100644 index 0000000000..81ca22e752 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Storage/piece_bottomLeft.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Storage/piece_bottomRight.png b/Resources/Textures/Interface/Plasmafire/Storage/piece_bottomRight.png new file mode 100644 index 0000000000..f2da5fe7f3 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Storage/piece_bottomRight.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Storage/piece_center.png b/Resources/Textures/Interface/Plasmafire/Storage/piece_center.png new file mode 100644 index 0000000000..2ce269ec5d Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Storage/piece_center.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Storage/piece_left.png b/Resources/Textures/Interface/Plasmafire/Storage/piece_left.png new file mode 100644 index 0000000000..bee7958ee0 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Storage/piece_left.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Storage/piece_right.png b/Resources/Textures/Interface/Plasmafire/Storage/piece_right.png new file mode 100644 index 0000000000..a1d0b24d89 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Storage/piece_right.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Storage/piece_top.png b/Resources/Textures/Interface/Plasmafire/Storage/piece_top.png new file mode 100644 index 0000000000..88c4b3e9a1 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Storage/piece_top.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Storage/piece_topLeft.png b/Resources/Textures/Interface/Plasmafire/Storage/piece_topLeft.png new file mode 100644 index 0000000000..4d17a465bb Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Storage/piece_topLeft.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Storage/piece_topRight.png b/Resources/Textures/Interface/Plasmafire/Storage/piece_topRight.png new file mode 100644 index 0000000000..83e194c089 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Storage/piece_topRight.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Storage/sidebar_bottom.png b/Resources/Textures/Interface/Plasmafire/Storage/sidebar_bottom.png new file mode 100644 index 0000000000..1407678d44 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Storage/sidebar_bottom.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Storage/sidebar_mid.png b/Resources/Textures/Interface/Plasmafire/Storage/sidebar_mid.png new file mode 100644 index 0000000000..22ebb90fe5 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Storage/sidebar_mid.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Storage/sidebar_top.png b/Resources/Textures/Interface/Plasmafire/Storage/sidebar_top.png new file mode 100644 index 0000000000..512ac2b1de Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Storage/sidebar_top.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Storage/tile_blocked.png b/Resources/Textures/Interface/Plasmafire/Storage/tile_blocked.png new file mode 100644 index 0000000000..8c8303cd2e Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Storage/tile_blocked.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Storage/tile_blocked_opaque.png b/Resources/Textures/Interface/Plasmafire/Storage/tile_blocked_opaque.png new file mode 100644 index 0000000000..ed269d6023 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Storage/tile_blocked_opaque.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Storage/tile_empty.png b/Resources/Textures/Interface/Plasmafire/Storage/tile_empty.png new file mode 100644 index 0000000000..3e1bb2e046 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Storage/tile_empty.png differ diff --git a/Resources/Textures/Interface/Plasmafire/Storage/tile_empty_opaque.png b/Resources/Textures/Interface/Plasmafire/Storage/tile_empty_opaque.png new file mode 100644 index 0000000000..144a92dd40 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/Storage/tile_empty_opaque.png differ diff --git a/Resources/Textures/Interface/Plasmafire/slot_highlight.png b/Resources/Textures/Interface/Plasmafire/slot_highlight.png new file mode 100644 index 0000000000..07d5386772 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/slot_highlight.png differ diff --git a/Resources/Textures/Interface/Plasmafire/template_small.png b/Resources/Textures/Interface/Plasmafire/template_small.png new file mode 100644 index 0000000000..f5395cf6fe Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/template_small.png differ diff --git a/Resources/Textures/Interface/Retro/SlotBackground.png b/Resources/Textures/Interface/Retro/SlotBackground.png new file mode 100644 index 0000000000..819fa70018 Binary files /dev/null and b/Resources/Textures/Interface/Retro/SlotBackground.png differ diff --git a/Resources/Textures/Interface/Retro/Slots/back.png b/Resources/Textures/Interface/Retro/Slots/back.png new file mode 100644 index 0000000000..ea1da1f67b Binary files /dev/null and b/Resources/Textures/Interface/Retro/Slots/back.png differ diff --git a/Resources/Textures/Interface/Retro/Slots/belt.png b/Resources/Textures/Interface/Retro/Slots/belt.png new file mode 100644 index 0000000000..bf4340c453 Binary files /dev/null and b/Resources/Textures/Interface/Retro/Slots/belt.png differ diff --git a/Resources/Textures/Interface/Retro/Slots/ears.png b/Resources/Textures/Interface/Retro/Slots/ears.png new file mode 100644 index 0000000000..66a3106314 Binary files /dev/null and b/Resources/Textures/Interface/Retro/Slots/ears.png differ diff --git a/Resources/Textures/Interface/Retro/Slots/glasses.png b/Resources/Textures/Interface/Retro/Slots/glasses.png new file mode 100644 index 0000000000..233d2429d6 Binary files /dev/null and b/Resources/Textures/Interface/Retro/Slots/glasses.png differ diff --git a/Resources/Textures/Interface/Retro/Slots/gloves.png b/Resources/Textures/Interface/Retro/Slots/gloves.png new file mode 100644 index 0000000000..3b48e8fdce Binary files /dev/null and b/Resources/Textures/Interface/Retro/Slots/gloves.png differ diff --git a/Resources/Textures/Interface/Retro/Slots/hand_l.png b/Resources/Textures/Interface/Retro/Slots/hand_l.png new file mode 100644 index 0000000000..e9796fea61 Binary files /dev/null and b/Resources/Textures/Interface/Retro/Slots/hand_l.png differ diff --git a/Resources/Textures/Interface/Retro/Slots/hand_l_no_letter.png b/Resources/Textures/Interface/Retro/Slots/hand_l_no_letter.png new file mode 100644 index 0000000000..ab779af3d5 Binary files /dev/null and b/Resources/Textures/Interface/Retro/Slots/hand_l_no_letter.png differ diff --git a/Resources/Textures/Interface/Retro/Slots/hand_r.png b/Resources/Textures/Interface/Retro/Slots/hand_r.png new file mode 100644 index 0000000000..2f6e281fdc Binary files /dev/null and b/Resources/Textures/Interface/Retro/Slots/hand_r.png differ diff --git a/Resources/Textures/Interface/Retro/Slots/hand_r_no_letter.png b/Resources/Textures/Interface/Retro/Slots/hand_r_no_letter.png new file mode 100644 index 0000000000..930f56ffd7 Binary files /dev/null and b/Resources/Textures/Interface/Retro/Slots/hand_r_no_letter.png differ diff --git a/Resources/Textures/Interface/Retro/Slots/head.png b/Resources/Textures/Interface/Retro/Slots/head.png new file mode 100644 index 0000000000..2e22f430bd Binary files /dev/null and b/Resources/Textures/Interface/Retro/Slots/head.png differ diff --git a/Resources/Textures/Interface/Retro/Slots/id.png b/Resources/Textures/Interface/Retro/Slots/id.png new file mode 100644 index 0000000000..60fe216e7f Binary files /dev/null and b/Resources/Textures/Interface/Retro/Slots/id.png differ diff --git a/Resources/Textures/Interface/Retro/Slots/mask.png b/Resources/Textures/Interface/Retro/Slots/mask.png new file mode 100644 index 0000000000..bc0eecbcd8 Binary files /dev/null and b/Resources/Textures/Interface/Retro/Slots/mask.png differ diff --git a/Resources/Textures/Interface/Retro/Slots/neck.png b/Resources/Textures/Interface/Retro/Slots/neck.png new file mode 100644 index 0000000000..3a5f9b3145 Binary files /dev/null and b/Resources/Textures/Interface/Retro/Slots/neck.png differ diff --git a/Resources/Textures/Interface/Retro/Slots/pocket.png b/Resources/Textures/Interface/Retro/Slots/pocket.png new file mode 100644 index 0000000000..b3fcca51fb Binary files /dev/null and b/Resources/Textures/Interface/Retro/Slots/pocket.png differ diff --git a/Resources/Textures/Interface/Retro/Slots/shoes.png b/Resources/Textures/Interface/Retro/Slots/shoes.png new file mode 100644 index 0000000000..524034f39d Binary files /dev/null and b/Resources/Textures/Interface/Retro/Slots/shoes.png differ diff --git a/Resources/Textures/Interface/Retro/Slots/suit.png b/Resources/Textures/Interface/Retro/Slots/suit.png new file mode 100644 index 0000000000..5de5a019ac Binary files /dev/null and b/Resources/Textures/Interface/Retro/Slots/suit.png differ diff --git a/Resources/Textures/Interface/Retro/Slots/suit_storage.png b/Resources/Textures/Interface/Retro/Slots/suit_storage.png new file mode 100644 index 0000000000..d79cceccde Binary files /dev/null and b/Resources/Textures/Interface/Retro/Slots/suit_storage.png differ diff --git a/Resources/Textures/Interface/Retro/Slots/uniform.png b/Resources/Textures/Interface/Retro/Slots/uniform.png new file mode 100644 index 0000000000..15b8a9ed2b Binary files /dev/null and b/Resources/Textures/Interface/Retro/Slots/uniform.png differ diff --git a/Resources/Textures/Interface/Retro/Slots/web.png b/Resources/Textures/Interface/Retro/Slots/web.png new file mode 100644 index 0000000000..80f4331f27 Binary files /dev/null and b/Resources/Textures/Interface/Retro/Slots/web.png differ diff --git a/Resources/Textures/Interface/Retro/Storage/piece_bottom.png b/Resources/Textures/Interface/Retro/Storage/piece_bottom.png new file mode 100644 index 0000000000..649c7ec695 Binary files /dev/null and b/Resources/Textures/Interface/Retro/Storage/piece_bottom.png differ diff --git a/Resources/Textures/Interface/Retro/Storage/piece_bottomLeft.png b/Resources/Textures/Interface/Retro/Storage/piece_bottomLeft.png new file mode 100644 index 0000000000..7833a53d12 Binary files /dev/null and b/Resources/Textures/Interface/Retro/Storage/piece_bottomLeft.png differ diff --git a/Resources/Textures/Interface/Retro/Storage/piece_bottomRight.png b/Resources/Textures/Interface/Retro/Storage/piece_bottomRight.png new file mode 100644 index 0000000000..d4019934d3 Binary files /dev/null and b/Resources/Textures/Interface/Retro/Storage/piece_bottomRight.png differ diff --git a/Resources/Textures/Interface/Retro/Storage/piece_center.png b/Resources/Textures/Interface/Retro/Storage/piece_center.png new file mode 100644 index 0000000000..1d4e35838f Binary files /dev/null and b/Resources/Textures/Interface/Retro/Storage/piece_center.png differ diff --git a/Resources/Textures/Interface/Retro/Storage/piece_left.png b/Resources/Textures/Interface/Retro/Storage/piece_left.png new file mode 100644 index 0000000000..43867e2174 Binary files /dev/null and b/Resources/Textures/Interface/Retro/Storage/piece_left.png differ diff --git a/Resources/Textures/Interface/Retro/Storage/piece_right.png b/Resources/Textures/Interface/Retro/Storage/piece_right.png new file mode 100644 index 0000000000..611edb2c7c Binary files /dev/null and b/Resources/Textures/Interface/Retro/Storage/piece_right.png differ diff --git a/Resources/Textures/Interface/Retro/Storage/piece_top.png b/Resources/Textures/Interface/Retro/Storage/piece_top.png new file mode 100644 index 0000000000..48bc521579 Binary files /dev/null and b/Resources/Textures/Interface/Retro/Storage/piece_top.png differ diff --git a/Resources/Textures/Interface/Retro/Storage/piece_topLeft.png b/Resources/Textures/Interface/Retro/Storage/piece_topLeft.png new file mode 100644 index 0000000000..f5437602ae Binary files /dev/null and b/Resources/Textures/Interface/Retro/Storage/piece_topLeft.png differ diff --git a/Resources/Textures/Interface/Retro/Storage/piece_topRight.png b/Resources/Textures/Interface/Retro/Storage/piece_topRight.png new file mode 100644 index 0000000000..3d2503d90b Binary files /dev/null and b/Resources/Textures/Interface/Retro/Storage/piece_topRight.png differ diff --git a/Resources/Textures/Interface/Retro/Storage/sidebar_bottom.png b/Resources/Textures/Interface/Retro/Storage/sidebar_bottom.png new file mode 100644 index 0000000000..dde5384b49 Binary files /dev/null and b/Resources/Textures/Interface/Retro/Storage/sidebar_bottom.png differ diff --git a/Resources/Textures/Interface/Retro/Storage/sidebar_mid.png b/Resources/Textures/Interface/Retro/Storage/sidebar_mid.png new file mode 100644 index 0000000000..dde5384b49 Binary files /dev/null and b/Resources/Textures/Interface/Retro/Storage/sidebar_mid.png differ diff --git a/Resources/Textures/Interface/Retro/Storage/sidebar_top.png b/Resources/Textures/Interface/Retro/Storage/sidebar_top.png new file mode 100644 index 0000000000..dde5384b49 Binary files /dev/null and b/Resources/Textures/Interface/Retro/Storage/sidebar_top.png differ diff --git a/Resources/Textures/Interface/Retro/Storage/tile_blocked.png b/Resources/Textures/Interface/Retro/Storage/tile_blocked.png new file mode 100644 index 0000000000..cedfcffb2b Binary files /dev/null and b/Resources/Textures/Interface/Retro/Storage/tile_blocked.png differ diff --git a/Resources/Textures/Interface/Retro/Storage/tile_blocked_opaque.png b/Resources/Textures/Interface/Retro/Storage/tile_blocked_opaque.png new file mode 100644 index 0000000000..cedfcffb2b Binary files /dev/null and b/Resources/Textures/Interface/Retro/Storage/tile_blocked_opaque.png differ diff --git a/Resources/Textures/Interface/Retro/Storage/tile_empty.png b/Resources/Textures/Interface/Retro/Storage/tile_empty.png new file mode 100644 index 0000000000..e3d758dab6 Binary files /dev/null and b/Resources/Textures/Interface/Retro/Storage/tile_empty.png differ diff --git a/Resources/Textures/Interface/Retro/Storage/tile_empty_opaque.png b/Resources/Textures/Interface/Retro/Storage/tile_empty_opaque.png new file mode 100644 index 0000000000..ffa2439067 Binary files /dev/null and b/Resources/Textures/Interface/Retro/Storage/tile_empty_opaque.png differ diff --git a/Resources/Textures/Interface/Retro/slot_highlight.png b/Resources/Textures/Interface/Retro/slot_highlight.png new file mode 100644 index 0000000000..fdd8d21cf2 Binary files /dev/null and b/Resources/Textures/Interface/Retro/slot_highlight.png differ diff --git a/Resources/Textures/Interface/Slimecore/SlotBackground.png b/Resources/Textures/Interface/Slimecore/SlotBackground.png new file mode 100644 index 0000000000..0b737fb490 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/SlotBackground.png differ diff --git a/Resources/Textures/Interface/Slimecore/Slots/back.png b/Resources/Textures/Interface/Slimecore/Slots/back.png new file mode 100644 index 0000000000..534636a2a2 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Slots/back.png differ diff --git a/Resources/Textures/Interface/Slimecore/Slots/belt.png b/Resources/Textures/Interface/Slimecore/Slots/belt.png new file mode 100644 index 0000000000..831a52fa37 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Slots/belt.png differ diff --git a/Resources/Textures/Interface/Slimecore/Slots/ears.png b/Resources/Textures/Interface/Slimecore/Slots/ears.png new file mode 100644 index 0000000000..6fdfbe4793 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Slots/ears.png differ diff --git a/Resources/Textures/Interface/Slimecore/Slots/glasses.png b/Resources/Textures/Interface/Slimecore/Slots/glasses.png new file mode 100644 index 0000000000..b44cb069cb Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Slots/glasses.png differ diff --git a/Resources/Textures/Interface/Slimecore/Slots/gloves.png b/Resources/Textures/Interface/Slimecore/Slots/gloves.png new file mode 100644 index 0000000000..c81ba230c9 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Slots/gloves.png differ diff --git a/Resources/Textures/Interface/Slimecore/Slots/hand_l.png b/Resources/Textures/Interface/Slimecore/Slots/hand_l.png new file mode 100644 index 0000000000..d7c6554855 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Slots/hand_l.png differ diff --git a/Resources/Textures/Interface/Slimecore/Slots/hand_l_no_letter.png b/Resources/Textures/Interface/Slimecore/Slots/hand_l_no_letter.png new file mode 100644 index 0000000000..26d0ae1084 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Slots/hand_l_no_letter.png differ diff --git a/Resources/Textures/Interface/Slimecore/Slots/hand_r.png b/Resources/Textures/Interface/Slimecore/Slots/hand_r.png new file mode 100644 index 0000000000..67c50e86c1 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Slots/hand_r.png differ diff --git a/Resources/Textures/Interface/Slimecore/Slots/hand_r_no_letter.png b/Resources/Textures/Interface/Slimecore/Slots/hand_r_no_letter.png new file mode 100644 index 0000000000..977433b9f7 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Slots/hand_r_no_letter.png differ diff --git a/Resources/Textures/Interface/Slimecore/Slots/head.png b/Resources/Textures/Interface/Slimecore/Slots/head.png new file mode 100644 index 0000000000..6a40cc6cd1 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Slots/head.png differ diff --git a/Resources/Textures/Interface/Slimecore/Slots/id.png b/Resources/Textures/Interface/Slimecore/Slots/id.png new file mode 100644 index 0000000000..6509274514 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Slots/id.png differ diff --git a/Resources/Textures/Interface/Slimecore/Slots/mask.png b/Resources/Textures/Interface/Slimecore/Slots/mask.png new file mode 100644 index 0000000000..cd4c2ddbd5 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Slots/mask.png differ diff --git a/Resources/Textures/Interface/Slimecore/Slots/neck.png b/Resources/Textures/Interface/Slimecore/Slots/neck.png new file mode 100644 index 0000000000..c2f98fd372 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Slots/neck.png differ diff --git a/Resources/Textures/Interface/Slimecore/Slots/pocket.png b/Resources/Textures/Interface/Slimecore/Slots/pocket.png new file mode 100644 index 0000000000..164e103b40 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Slots/pocket.png differ diff --git a/Resources/Textures/Interface/Slimecore/Slots/shoes.png b/Resources/Textures/Interface/Slimecore/Slots/shoes.png new file mode 100644 index 0000000000..50e6aad6fe Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Slots/shoes.png differ diff --git a/Resources/Textures/Interface/Slimecore/Slots/suit.png b/Resources/Textures/Interface/Slimecore/Slots/suit.png new file mode 100644 index 0000000000..34972ec890 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Slots/suit.png differ diff --git a/Resources/Textures/Interface/Slimecore/Slots/suit_storage.png b/Resources/Textures/Interface/Slimecore/Slots/suit_storage.png new file mode 100644 index 0000000000..c5564c2e42 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Slots/suit_storage.png differ diff --git a/Resources/Textures/Interface/Slimecore/Slots/uniform.png b/Resources/Textures/Interface/Slimecore/Slots/uniform.png new file mode 100644 index 0000000000..1a43266a7d Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Slots/uniform.png differ diff --git a/Resources/Textures/Interface/Slimecore/Slots/web.png b/Resources/Textures/Interface/Slimecore/Slots/web.png new file mode 100644 index 0000000000..bf7588cc1c Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Slots/web.png differ diff --git a/Resources/Textures/Interface/Slimecore/Storage/piece_bottom.png b/Resources/Textures/Interface/Slimecore/Storage/piece_bottom.png new file mode 100644 index 0000000000..8e9568e59e Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Storage/piece_bottom.png differ diff --git a/Resources/Textures/Interface/Slimecore/Storage/piece_bottomLeft.png b/Resources/Textures/Interface/Slimecore/Storage/piece_bottomLeft.png new file mode 100644 index 0000000000..35ea142214 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Storage/piece_bottomLeft.png differ diff --git a/Resources/Textures/Interface/Slimecore/Storage/piece_bottomRight.png b/Resources/Textures/Interface/Slimecore/Storage/piece_bottomRight.png new file mode 100644 index 0000000000..bc55aeb656 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Storage/piece_bottomRight.png differ diff --git a/Resources/Textures/Interface/Slimecore/Storage/piece_center.png b/Resources/Textures/Interface/Slimecore/Storage/piece_center.png new file mode 100644 index 0000000000..5279fa47f0 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Storage/piece_center.png differ diff --git a/Resources/Textures/Interface/Slimecore/Storage/piece_left.png b/Resources/Textures/Interface/Slimecore/Storage/piece_left.png new file mode 100644 index 0000000000..c43c940be2 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Storage/piece_left.png differ diff --git a/Resources/Textures/Interface/Slimecore/Storage/piece_right.png b/Resources/Textures/Interface/Slimecore/Storage/piece_right.png new file mode 100644 index 0000000000..25beea9bba Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Storage/piece_right.png differ diff --git a/Resources/Textures/Interface/Slimecore/Storage/piece_top.png b/Resources/Textures/Interface/Slimecore/Storage/piece_top.png new file mode 100644 index 0000000000..f322ea3c09 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Storage/piece_top.png differ diff --git a/Resources/Textures/Interface/Slimecore/Storage/piece_topLeft.png b/Resources/Textures/Interface/Slimecore/Storage/piece_topLeft.png new file mode 100644 index 0000000000..103ed6f499 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Storage/piece_topLeft.png differ diff --git a/Resources/Textures/Interface/Slimecore/Storage/piece_topRight.png b/Resources/Textures/Interface/Slimecore/Storage/piece_topRight.png new file mode 100644 index 0000000000..ab03a15b8c Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Storage/piece_topRight.png differ diff --git a/Resources/Textures/Interface/Slimecore/Storage/tile_blocked.png b/Resources/Textures/Interface/Slimecore/Storage/tile_blocked.png new file mode 100644 index 0000000000..c5b1701f39 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Storage/tile_blocked.png differ diff --git a/Resources/Textures/Interface/Slimecore/Storage/tile_blocked_opaque.png b/Resources/Textures/Interface/Slimecore/Storage/tile_blocked_opaque.png new file mode 100644 index 0000000000..d7dd48d5a6 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Storage/tile_blocked_opaque.png differ diff --git a/Resources/Textures/Interface/Slimecore/Storage/tile_empty.png b/Resources/Textures/Interface/Slimecore/Storage/tile_empty.png new file mode 100644 index 0000000000..f49fafe7cb Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Storage/tile_empty.png differ diff --git a/Resources/Textures/Interface/Slimecore/Storage/tile_empty_opaque.png b/Resources/Textures/Interface/Slimecore/Storage/tile_empty_opaque.png new file mode 100644 index 0000000000..5db0fd53d1 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/Storage/tile_empty_opaque.png differ diff --git a/Resources/Textures/Interface/Slimecore/slot_highlight.png b/Resources/Textures/Interface/Slimecore/slot_highlight.png new file mode 100644 index 0000000000..4b39dc563a Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/slot_highlight.png differ diff --git a/Resources/Textures/Interface/Slimecore/template_small.png b/Resources/Textures/Interface/Slimecore/template_small.png new file mode 100644 index 0000000000..738217811e Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/template_small.png differ diff --git a/Resources/Textures/Mobs/Aliens/Carps/sharkminnow.rsi/alive.png b/Resources/Textures/Mobs/Aliens/Carps/sharkminnow.rsi/alive.png new file mode 100644 index 0000000000..b4429e3a7d Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Carps/sharkminnow.rsi/alive.png differ diff --git a/Resources/Textures/Mobs/Aliens/Carps/sharkminnow.rsi/dead.png b/Resources/Textures/Mobs/Aliens/Carps/sharkminnow.rsi/dead.png new file mode 100644 index 0000000000..3d74b18704 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Carps/sharkminnow.rsi/dead.png differ diff --git a/Resources/Textures/Mobs/Aliens/Carps/sharkminnow.rsi/dead_mouth.png b/Resources/Textures/Mobs/Aliens/Carps/sharkminnow.rsi/dead_mouth.png new file mode 100644 index 0000000000..dab110c9ad Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Carps/sharkminnow.rsi/dead_mouth.png differ diff --git a/Resources/Textures/Mobs/Aliens/Carps/sharkminnow.rsi/icon.png b/Resources/Textures/Mobs/Aliens/Carps/sharkminnow.rsi/icon.png new file mode 100644 index 0000000000..5b4faa816f Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Carps/sharkminnow.rsi/icon.png differ diff --git a/Resources/Textures/Mobs/Aliens/Carps/sharkminnow.rsi/meta.json b/Resources/Textures/Mobs/Aliens/Carps/sharkminnow.rsi/meta.json new file mode 100644 index 0000000000..2f8d02bed2 --- /dev/null +++ b/Resources/Textures/Mobs/Aliens/Carps/sharkminnow.rsi/meta.json @@ -0,0 +1,72 @@ +{ + "version": 1, + "size": { + "x": 48, + "y": 48 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Sprited by Nimfar11 (Github) for Space Station 14", + "states": [ + { + "name": "icon" + }, + { + "name": "mouth", + "directions": 4, + "delays": [ + [ + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3 + ] + ] + }, + { + "name": "dead_mouth" + }, + { + "name": "dead" + }, + { + "name": "alive", + "directions": 4, + "delays": [ + [ + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3 + ] + ] + } + ] +} diff --git a/Resources/Textures/Mobs/Aliens/Carps/sharkminnow.rsi/mouth.png b/Resources/Textures/Mobs/Aliens/Carps/sharkminnow.rsi/mouth.png new file mode 100644 index 0000000000..c8b97b5e77 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Carps/sharkminnow.rsi/mouth.png differ diff --git a/Resources/Textures/Mobs/Animals/bat.rsi/bat.png b/Resources/Textures/Mobs/Animals/bat.rsi/bat.png index 404ac148c7..399912a1d5 100644 Binary files a/Resources/Textures/Mobs/Animals/bat.rsi/bat.png and b/Resources/Textures/Mobs/Animals/bat.rsi/bat.png differ diff --git a/Resources/Textures/Mobs/Animals/bat.rsi/dead.png b/Resources/Textures/Mobs/Animals/bat.rsi/dead.png index 9c0d4e458b..33ad04c4df 100644 Binary files a/Resources/Textures/Mobs/Animals/bat.rsi/dead.png and b/Resources/Textures/Mobs/Animals/bat.rsi/dead.png differ diff --git a/Resources/Textures/Mobs/Animals/bat.rsi/meta.json b/Resources/Textures/Mobs/Animals/bat.rsi/meta.json index eed1f0d8cb..f61411c0bd 100644 --- a/Resources/Textures/Mobs/Animals/bat.rsi/meta.json +++ b/Resources/Textures/Mobs/Animals/bat.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/tgstation/tgstation/commit/53d1f1477d22a11a99c6c6924977cd431075761b", + "copyright": "Sprite by Cohnway", "states": [ { "name": "bat", diff --git a/Resources/Textures/Mobs/Animals/cockroach.rsi/cockroach_dead.png b/Resources/Textures/Mobs/Animals/cockroach.rsi/cockroach_dead.png new file mode 100644 index 0000000000..399811dcba Binary files /dev/null and b/Resources/Textures/Mobs/Animals/cockroach.rsi/cockroach_dead.png differ diff --git a/Resources/Textures/Mobs/Animals/cockroach.rsi/cockroach_icon.png b/Resources/Textures/Mobs/Animals/cockroach.rsi/cockroach_icon.png new file mode 100644 index 0000000000..a05f708d35 Binary files /dev/null and b/Resources/Textures/Mobs/Animals/cockroach.rsi/cockroach_icon.png differ diff --git a/Resources/Textures/Mobs/Animals/cockroach.rsi/meta.json b/Resources/Textures/Mobs/Animals/cockroach.rsi/meta.json index 358ae88446..32c7e82510 100644 --- a/Resources/Textures/Mobs/Animals/cockroach.rsi/meta.json +++ b/Resources/Textures/Mobs/Animals/cockroach.rsi/meta.json @@ -28,6 +28,12 @@ 0.25 ] ] + }, + { + "name": "cockroach_dead" + }, + { + "name": "cockroach_icon" }, { "name": "glockroach", diff --git a/Resources/Textures/Nyanotrasen/Mobs/Animals/mothroach.rsi/0-equipped-HELMET.png b/Resources/Textures/Mobs/Animals/mothroach.rsi/0-equipped-HELMET.png similarity index 100% rename from Resources/Textures/Nyanotrasen/Mobs/Animals/mothroach.rsi/0-equipped-HELMET.png rename to Resources/Textures/Mobs/Animals/mothroach.rsi/0-equipped-HELMET.png diff --git a/Resources/Textures/Nyanotrasen/Mobs/Animals/mothroach.rsi/icon.png b/Resources/Textures/Mobs/Animals/mothroach.rsi/icon.png similarity index 100% rename from Resources/Textures/Nyanotrasen/Mobs/Animals/mothroach.rsi/icon.png rename to Resources/Textures/Mobs/Animals/mothroach.rsi/icon.png diff --git a/Resources/Textures/Nyanotrasen/Mobs/Animals/mothroach.rsi/inhand-left.png b/Resources/Textures/Mobs/Animals/mothroach.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Nyanotrasen/Mobs/Animals/mothroach.rsi/inhand-left.png rename to Resources/Textures/Mobs/Animals/mothroach.rsi/inhand-left.png diff --git a/Resources/Textures/Nyanotrasen/Mobs/Animals/mothroach.rsi/inhand-right.png b/Resources/Textures/Mobs/Animals/mothroach.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Nyanotrasen/Mobs/Animals/mothroach.rsi/inhand-right.png rename to Resources/Textures/Mobs/Animals/mothroach.rsi/inhand-right.png diff --git a/Resources/Textures/Nyanotrasen/Mobs/Animals/mothroach.rsi/meta.json b/Resources/Textures/Mobs/Animals/mothroach.rsi/meta.json similarity index 100% rename from Resources/Textures/Nyanotrasen/Mobs/Animals/mothroach.rsi/meta.json rename to Resources/Textures/Mobs/Animals/mothroach.rsi/meta.json diff --git a/Resources/Textures/Nyanotrasen/Mobs/Animals/mothroach.rsi/mothroach.png b/Resources/Textures/Mobs/Animals/mothroach.rsi/mothroach.png similarity index 100% rename from Resources/Textures/Nyanotrasen/Mobs/Animals/mothroach.rsi/mothroach.png rename to Resources/Textures/Mobs/Animals/mothroach.rsi/mothroach.png diff --git a/Resources/Textures/Nyanotrasen/Mobs/Animals/mothroach.rsi/mothroach_dead.png b/Resources/Textures/Mobs/Animals/mothroach.rsi/mothroach_dead.png similarity index 100% rename from Resources/Textures/Nyanotrasen/Mobs/Animals/mothroach.rsi/mothroach_dead.png rename to Resources/Textures/Mobs/Animals/mothroach.rsi/mothroach_dead.png diff --git a/Resources/Textures/Nyanotrasen/Mobs/Animals/mothroach.rsi/mothroach_lazy.png b/Resources/Textures/Mobs/Animals/mothroach.rsi/mothroach_lazy.png similarity index 100% rename from Resources/Textures/Nyanotrasen/Mobs/Animals/mothroach.rsi/mothroach_lazy.png rename to Resources/Textures/Mobs/Animals/mothroach.rsi/mothroach_lazy.png diff --git a/Resources/Textures/Nyanotrasen/Mobs/Animals/mothroach.rsi/mothroach_sleep.png b/Resources/Textures/Mobs/Animals/mothroach.rsi/mothroach_sleep.png similarity index 100% rename from Resources/Textures/Nyanotrasen/Mobs/Animals/mothroach.rsi/mothroach_sleep.png rename to Resources/Textures/Mobs/Animals/mothroach.rsi/mothroach_sleep.png diff --git a/Resources/Textures/Mobs/Animals/possum.rsi/meta.json b/Resources/Textures/Mobs/Animals/possum.rsi/meta.json index fd9ad6a836..16b2b33872 100644 --- a/Resources/Textures/Mobs/Animals/possum.rsi/meta.json +++ b/Resources/Textures/Mobs/Animals/possum.rsi/meta.json @@ -1,23 +1,27 @@ { "version": 1, - "size": - { + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Baystation12 at https://github.com/Baystation12/Baystation12/blob/c7442716b52ce4edeef5eaf5d2fc7c57a08a3f01/icons/mob/simple_animal/possum.dmi", + "size": { "x": 32, "y": 32 }, - "license": "CC-BY-NC-SA-3.0", - "copyright": "https://github.com/goonstation/goonstation/commit/c98666f47a90d106c7a154cedffc747b3769e933", - "states": - [ + "states": [ { "name": "possum", - "directions": 4, - "delays": [[1],[1],[1],[1]] + "directions": 4 }, { "name": "possum_dead", - "directions": 1, - "delays": [[1]] + "directions": 4 + }, + { + "name": "poppy", + "directions": 4 + }, + { + "name": "poppy_dead", + "directions": 4 } ] } diff --git a/Resources/Textures/Mobs/Animals/possum.rsi/poppy.png b/Resources/Textures/Mobs/Animals/possum.rsi/poppy.png new file mode 100644 index 0000000000..941d7c902a Binary files /dev/null and b/Resources/Textures/Mobs/Animals/possum.rsi/poppy.png differ diff --git a/Resources/Textures/Mobs/Animals/possum.rsi/poppy_dead.png b/Resources/Textures/Mobs/Animals/possum.rsi/poppy_dead.png new file mode 100644 index 0000000000..ebb08a2cce Binary files /dev/null and b/Resources/Textures/Mobs/Animals/possum.rsi/poppy_dead.png differ diff --git a/Resources/Textures/Mobs/Animals/possum.rsi/possum.png b/Resources/Textures/Mobs/Animals/possum.rsi/possum.png index b4b5713862..975a769d07 100644 Binary files a/Resources/Textures/Mobs/Animals/possum.rsi/possum.png and b/Resources/Textures/Mobs/Animals/possum.rsi/possum.png differ diff --git a/Resources/Textures/Mobs/Animals/possum.rsi/possum_dead.png b/Resources/Textures/Mobs/Animals/possum.rsi/possum_dead.png index e7297e7457..7d817c9e90 100644 Binary files a/Resources/Textures/Mobs/Animals/possum.rsi/possum_dead.png and b/Resources/Textures/Mobs/Animals/possum.rsi/possum_dead.png differ diff --git a/Resources/Textures/Mobs/Animals/possum_old.rsi/meta.json b/Resources/Textures/Mobs/Animals/possum_old.rsi/meta.json new file mode 100644 index 0000000000..6b969760c4 --- /dev/null +++ b/Resources/Textures/Mobs/Animals/possum_old.rsi/meta.json @@ -0,0 +1,21 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Taken from goonstation https://github.com/goonstation/goonstation/commit/c98666f47a90d106c7a154cedffc747b3769e933", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "possum_old", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "possum_dead_old", + "directions": 1, + "delays": [[1]] + } + ] +} diff --git a/Resources/Textures/Mobs/Animals/possum_old.rsi/possum_dead_old.png b/Resources/Textures/Mobs/Animals/possum_old.rsi/possum_dead_old.png new file mode 100644 index 0000000000..e7297e7457 Binary files /dev/null and b/Resources/Textures/Mobs/Animals/possum_old.rsi/possum_dead_old.png differ diff --git a/Resources/Textures/Mobs/Animals/possum_old.rsi/possum_old.png b/Resources/Textures/Mobs/Animals/possum_old.rsi/possum_old.png new file mode 100644 index 0000000000..b4b5713862 Binary files /dev/null and b/Resources/Textures/Mobs/Animals/possum_old.rsi/possum_old.png differ diff --git a/Resources/Textures/Mobs/Animals/spacecobra.rsi/dead_spacecobra.png b/Resources/Textures/Mobs/Animals/spacecobra.rsi/dead_spacecobra.png new file mode 100644 index 0000000000..a88564d310 Binary files /dev/null and b/Resources/Textures/Mobs/Animals/spacecobra.rsi/dead_spacecobra.png differ diff --git a/Resources/Textures/Mobs/Animals/spacecobra.rsi/glow.png b/Resources/Textures/Mobs/Animals/spacecobra.rsi/glow.png new file mode 100644 index 0000000000..950dc02a36 Binary files /dev/null and b/Resources/Textures/Mobs/Animals/spacecobra.rsi/glow.png differ diff --git a/Resources/Textures/Mobs/Animals/spacecobra.rsi/meta.json b/Resources/Textures/Mobs/Animals/spacecobra.rsi/meta.json new file mode 100644 index 0000000000..86f542aee9 --- /dev/null +++ b/Resources/Textures/Mobs/Animals/spacecobra.rsi/meta.json @@ -0,0 +1,34 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprited by Nimfar11 (Github) for Space Station 14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "spacecobra", + "directions": 4, + "delays": [ + [0.3,0.2,0.2,0.4,0.2,0.2,0.3], + [0.3,0.2,0.2,0.4,0.2,0.2,0.3], + [0.3,0.2,0.2,0.4,0.2,0.2,0.3], + [0.3,0.2,0.2,0.4,0.2,0.2,0.3] + ] + }, + { + "name": "glow", + "directions": 4, + "delays": [ + [0.3,0.2,0.2,0.4,0.2,0.2,0.3], + [0.3,0.2,0.2,0.4,0.2,0.2,0.3], + [0.3,0.2,0.2,0.4,0.2,0.2,0.3], + [0.3,0.2,0.2,0.4,0.2,0.2,0.3] + ] + }, + { + "name": "dead_spacecobra" + } + ] +} diff --git a/Resources/Textures/Mobs/Animals/spacecobra.rsi/spacecobra.png b/Resources/Textures/Mobs/Animals/spacecobra.rsi/spacecobra.png new file mode 100644 index 0000000000..fdaec29aa3 Binary files /dev/null and b/Resources/Textures/Mobs/Animals/spacecobra.rsi/spacecobra.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/chelicerae.rsi/downwards.png b/Resources/Textures/Mobs/Customization/Arachnid/chelicerae.rsi/downwards.png index f68272ec0e..f072ef05e9 100644 Binary files a/Resources/Textures/Mobs/Customization/Arachnid/chelicerae.rsi/downwards.png and b/Resources/Textures/Mobs/Customization/Arachnid/chelicerae.rsi/downwards.png differ diff --git a/Resources/Textures/Mobs/Customization/Moth/moth_parts.rsi/moonfly_head.png b/Resources/Textures/Mobs/Customization/Moth/moth_parts.rsi/moonfly_head.png index 1134c73187..38d07d8927 100644 Binary files a/Resources/Textures/Mobs/Customization/Moth/moth_parts.rsi/moonfly_head.png and b/Resources/Textures/Mobs/Customization/Moth/moth_parts.rsi/moonfly_head.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_abdomen.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_abdomen.png new file mode 100644 index 0000000000..7615fbc0d0 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_abdomen.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_blindfold.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_blindfold.png new file mode 100644 index 0000000000..3ac3d34d17 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_blindfold.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_boxerwrap_l.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_boxerwrap_l.png new file mode 100644 index 0000000000..f5b01c7d04 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_boxerwrap_l.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_boxerwrap_r.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_boxerwrap_r.png new file mode 100644 index 0000000000..d2658219a2 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_boxerwrap_r.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_leftarm.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_leftarm.png new file mode 100644 index 0000000000..cc1e437c23 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_leftarm.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lefteye_1.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lefteye_1.png new file mode 100644 index 0000000000..bad1df5067 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lefteye_1.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lefteye_2.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lefteye_2.png new file mode 100644 index 0000000000..25f271fbaf Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lefteye_2.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizardblindfold.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizardblindfold.png new file mode 100644 index 0000000000..c892f9e924 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizardblindfold.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizardfoot_l.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizardfoot_l.png new file mode 100644 index 0000000000..436b1ceea0 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizardfoot_l.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizardfoot_r.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizardfoot_r.png new file mode 100644 index 0000000000..90176db11e Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizardfoot_r.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizardlefteye.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizardlefteye.png new file mode 100644 index 0000000000..d62920480a Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizardlefteye.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizardrighteye.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizardrighteye.png new file mode 100644 index 0000000000..ac3ed19698 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizardrighteye.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lowerarm_r.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lowerarm_r.png new file mode 100644 index 0000000000..bd8b7c43cd Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lowerarm_r.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lowerleg_l.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lowerleg_l.png new file mode 100644 index 0000000000..3354511acb Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lowerleg_l.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lowerleg_r.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lowerleg_r.png new file mode 100644 index 0000000000..ee82d55eef Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lowerleg_r.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_righteye_1.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_righteye_1.png new file mode 100644 index 0000000000..74cf65e4cf Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_righteye_1.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_righteye_2.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_righteye_2.png new file mode 100644 index 0000000000..bff4c76ac3 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_righteye_2.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_shoulder.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_shoulder.png new file mode 100644 index 0000000000..9267921969 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_shoulder.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_upperarm_r.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_upperarm_r.png new file mode 100644 index 0000000000..9b25e1e222 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_upperarm_r.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_upperleg_l.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_upperleg_l.png new file mode 100644 index 0000000000..ba1371a5d9 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_upperleg_l.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_upperleg_r.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_upperleg_r.png new file mode 100644 index 0000000000..5061d6b396 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_upperleg_r.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/meta.json b/Resources/Textures/Mobs/Customization/gauze.rsi/meta.json new file mode 100644 index 0000000000..232e7b0b22 --- /dev/null +++ b/Resources/Textures/Mobs/Customization/gauze.rsi/meta.json @@ -0,0 +1,95 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Gauze sprites by Github KittenColony / Discord kittencolony (297865728374210561)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "gauze_abdomen", + "directions": 4 + }, + { + "name": "gauze_shoulder", + "directions": 4 + }, + { + "name": "gauze_lefteye_1", + "directions": 4 + }, + { + "name": "gauze_lefteye_2", + "directions": 4 + }, + { + "name": "gauze_righteye_1", + "directions": 4 + }, + { + "name": "gauze_righteye_2", + "directions": 4 + }, + { + "name": "gauze_lowerarm_r", + "directions": 4 + }, + { + "name": "gauze_upperarm_r", + "directions": 4 + }, + { + "name": "gauze_leftarm", + "directions": 4 + }, + { + "name": "gauze_upperleg_r", + "directions": 4 + }, + { + "name": "gauze_lowerleg_r", + "directions": 4 + }, + { + "name": "gauze_upperleg_l", + "directions": 4 + }, + { + "name": "gauze_lowerleg_l", + "directions": 4 + }, + { + "name": "gauze_boxerwrap_r", + "directions": 4 + }, + { + "name": "gauze_boxerwrap_l", + "directions": 4 + }, + { + "name": "gauze_blindfold", + "directions": 4 + }, + { + "name": "gauze_lizardblindfold", + "directions": 4 + }, + { + "name": "gauze_lizardrighteye", + "directions": 4 + }, + { + "name": "gauze_lizardlefteye", + "directions": 4 + }, + { + "name": "gauze_lizardfoot_r", + "directions": 4 + }, + { + "name": "gauze_lizardfoot_l", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/classicbusiness.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/classicbusiness.png new file mode 100644 index 0000000000..fae2a8601a Binary files /dev/null and b/Resources/Textures/Mobs/Customization/human_hair.rsi/classicbusiness.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/classiccornrows2.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/classiccornrows2.png new file mode 100644 index 0000000000..18438ab72d Binary files /dev/null and b/Resources/Textures/Mobs/Customization/human_hair.rsi/classiccornrows2.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json b/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json index 9b7d68a167..c56b30739d 100644 --- a/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json @@ -4,7 +4,7 @@ "x": 32, "y": 32 }, - "copyright": "Taken from https://github.com/tgstation/tgstation/blob/05ec94e46349c35e29ca91e5e97d0c88ae26ad44/icons/mob/species/human/human_face.dmi , resprited by Alekshhh, a modified by potato1234x", + "copyright": "Taken from https://github.com/tgstation/tgstation/blob/05ec94e46349c35e29ca91e5e97d0c88ae26ad44/icons/mob/species/human/human_face.dmi , resprited by Alekshhh, a modified by potato1234x, uneven is drawn by Ubaser", "license": "CC-BY-SA-3.0", "states": [ { @@ -163,9 +163,17 @@ "name": "classicbigafro", "directions": 4 }, + { + "name": "classicbusiness", + "directions": 4 + }, { "name": "classiccia", "directions": 4 + }, + { + "name": "classiccornrows2", + "directions": 4 }, { "name": "classicfloorlength_bedhead", @@ -742,6 +750,10 @@ { "name": "bald", "directions": 4 + }, + { + "name": "uneven", + "directions": 4 } ] } \ No newline at end of file diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/uneven.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/uneven.png new file mode 100644 index 0000000000..bb3be1e14f Binary files /dev/null and b/Resources/Textures/Mobs/Customization/human_hair.rsi/uneven.png differ diff --git a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/body_underbelly.png b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/body_underbelly.png new file mode 100644 index 0000000000..2a149ea3ea Binary files /dev/null and b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/body_underbelly.png differ diff --git a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/horns_kobold_ears.png b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/horns_kobold_ears.png index 8e859f4104..24b3828b34 100644 Binary files a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/horns_kobold_ears.png and b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/horns_kobold_ears.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 b4ed729b19..a9b7c44af0 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.", + "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.", "size": { "x": 32, "y": 32 @@ -174,6 +174,10 @@ { "name": "horns_floppy_kobold_ears", "directions": 4 + }, + { + "name": "body_underbelly", + "directions": 4 } ] } diff --git a/Resources/Textures/Mobs/Customization/scars.rsi/meta.json b/Resources/Textures/Mobs/Customization/scars.rsi/meta.json new file mode 100644 index 0000000000..c3bfd498d6 --- /dev/null +++ b/Resources/Textures/Mobs/Customization/scars.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Drawn by Ubaser", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "scar_eye_left", + "directions": 4 + }, + { + "name": "scar_eye_right", + "directions": 4 + }, + { + "name": "scar_top_surgery_short", + "directions": 4 + }, + { + "name": "scar_top_surgery_long", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Customization/scars.rsi/scar_eye_left.png b/Resources/Textures/Mobs/Customization/scars.rsi/scar_eye_left.png new file mode 100644 index 0000000000..7d5891f0c8 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/scars.rsi/scar_eye_left.png differ diff --git a/Resources/Textures/Mobs/Customization/scars.rsi/scar_eye_right.png b/Resources/Textures/Mobs/Customization/scars.rsi/scar_eye_right.png new file mode 100644 index 0000000000..3bfa12f121 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/scars.rsi/scar_eye_right.png differ diff --git a/Resources/Textures/Mobs/Customization/scars.rsi/scar_top_surgery_long.png b/Resources/Textures/Mobs/Customization/scars.rsi/scar_top_surgery_long.png new file mode 100644 index 0000000000..9804e86a17 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/scars.rsi/scar_top_surgery_long.png differ diff --git a/Resources/Textures/Mobs/Customization/scars.rsi/scar_top_surgery_short.png b/Resources/Textures/Mobs/Customization/scars.rsi/scar_top_surgery_short.png new file mode 100644 index 0000000000..649785ace7 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/scars.rsi/scar_top_surgery_short.png differ diff --git a/Resources/Textures/Mobs/Demons/honkmother.rsi/honkmother.png b/Resources/Textures/Mobs/Demons/honkmother.rsi/honkmother.png new file mode 100644 index 0000000000..922f2207dc Binary files /dev/null and b/Resources/Textures/Mobs/Demons/honkmother.rsi/honkmother.png differ diff --git a/Resources/Textures/Mobs/Demons/honkmother.rsi/meta.json b/Resources/Textures/Mobs/Demons/honkmother.rsi/meta.json new file mode 100644 index 0000000000..cdc51860cd --- /dev/null +++ b/Resources/Textures/Mobs/Demons/honkmother.rsi/meta.json @@ -0,0 +1,40 @@ +{ + "version": 1, + "size": { + "x": 201, + "y": 192 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Created by Alekshhh for SS14.", + "states": [ + { + "name": "honkmother", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "spawn", + "delays": [ + [ + 0.3, + 1, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + } + ] +} diff --git a/Resources/Textures/Mobs/Demons/honkmother.rsi/spawn.png b/Resources/Textures/Mobs/Demons/honkmother.rsi/spawn.png new file mode 100644 index 0000000000..bbef24fa95 Binary files /dev/null and b/Resources/Textures/Mobs/Demons/honkmother.rsi/spawn.png differ diff --git a/Resources/Textures/Mobs/Demons/narsie.rsi/meta.json b/Resources/Textures/Mobs/Demons/narsie.rsi/meta.json new file mode 100644 index 0000000000..61fcea8ab5 --- /dev/null +++ b/Resources/Textures/Mobs/Demons/narsie.rsi/meta.json @@ -0,0 +1,57 @@ +{ + "version": 1, + "size": { + "x": 252, + "y": 266 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/b44fcdedfb7c7d8425bd75b9caf71644a86375d1/icons/obj/antags/cult/narsie.dmi", + "states": [ + { + "name": "narsie", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "spawn", + "delays": [ + [ + 0.3, + 0.1, + 0.1, + 0.1, + 0.1, + 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.2 + ] + ] + } + ] +} diff --git a/Resources/Textures/Mobs/Demons/narsie.rsi/narsie.png b/Resources/Textures/Mobs/Demons/narsie.rsi/narsie.png new file mode 100644 index 0000000000..ca9e9ec0cb Binary files /dev/null and b/Resources/Textures/Mobs/Demons/narsie.rsi/narsie.png differ diff --git a/Resources/Textures/Mobs/Demons/narsie.rsi/spawn.png b/Resources/Textures/Mobs/Demons/narsie.rsi/spawn.png new file mode 100644 index 0000000000..c3d9cdb9fc Binary files /dev/null and b/Resources/Textures/Mobs/Demons/narsie.rsi/spawn.png differ diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/dead.png b/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/dead.png new file mode 100644 index 0000000000..06cafe53ff Binary files /dev/null and b/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/dead.png differ diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/dead_glow.png b/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/dead_glow.png new file mode 100644 index 0000000000..9295688721 Binary files /dev/null and b/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/dead_glow.png differ diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/glow.png b/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/glow.png new file mode 100644 index 0000000000..12c9773c38 Binary files /dev/null and b/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/glow.png differ diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/luminous_entity.png b/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/luminous_entity.png new file mode 100644 index 0000000000..53fca1627b Binary files /dev/null and b/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/luminous_entity.png differ diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/meta.json b/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/meta.json new file mode 100644 index 0000000000..6631e32227 --- /dev/null +++ b/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/meta.json @@ -0,0 +1,51 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Nimfar11 (github) for ss14", + "states": [ + { + "name": "glow", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "dead_glow" + }, + { + "name": "dead" + }, + { + "name": "luminous_entity", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/dead.png b/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/dead.png new file mode 100644 index 0000000000..06cafe53ff Binary files /dev/null and b/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/dead.png differ diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/dead_glow.png b/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/dead_glow.png new file mode 100644 index 0000000000..9295688721 Binary files /dev/null and b/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/dead_glow.png differ diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/glow.png b/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/glow.png new file mode 100644 index 0000000000..a82b0b7dfb Binary files /dev/null and b/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/glow.png differ diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/luminous_object.png b/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/luminous_object.png new file mode 100644 index 0000000000..f5a3006ce5 Binary files /dev/null and b/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/luminous_object.png differ diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/meta.json b/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/meta.json new file mode 100644 index 0000000000..b5cab9225b --- /dev/null +++ b/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/meta.json @@ -0,0 +1,61 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Nimfar11 (github) for ss14", + "states": [ + { + "name": "glow", + "directions": 4, + "delays": [ + [ + 0.4, + 0.4 + ], + [ + 0.4, + 0.4 + ], + [ + 0.4, + 0.4 + ], + [ + 0.4, + 0.4 + ] + ] + }, + { + "name": "dead_glow" + }, + { + "name": "dead" + }, + { + "name": "luminous_object", + "directions": 4, + "delays": [ + [ + 0.4, + 0.4 + ], + [ + 0.4, + 0.4 + ], + [ + 0.4, + 0.4 + ], + [ + 0.4, + 0.4 + ] + ] + } + ] +} diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/dead.png b/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/dead.png new file mode 100644 index 0000000000..06cafe53ff Binary files /dev/null and b/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/dead.png differ diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/dead_glow.png b/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/dead_glow.png new file mode 100644 index 0000000000..9295688721 Binary files /dev/null and b/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/dead_glow.png differ diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/glow.png b/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/glow.png new file mode 100644 index 0000000000..ffc32c2402 Binary files /dev/null and b/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/glow.png differ diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/luminous_person.png b/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/luminous_person.png new file mode 100644 index 0000000000..a04adc4b81 Binary files /dev/null and b/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/luminous_person.png differ diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/meta.json b/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/meta.json new file mode 100644 index 0000000000..e4566553eb --- /dev/null +++ b/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Nimfar11 (github) for ss14", + "states": [ + { + "name": "glow", + "directions": 4 + }, + { + "name": "dead_glow" + }, + { + "name": "dead" + }, + { + "name": "luminous_person", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Elemental/orecrab.rsi/ironcrab.png b/Resources/Textures/Mobs/Elemental/orecrab.rsi/iron_crab.png similarity index 100% rename from Resources/Textures/Mobs/Elemental/orecrab.rsi/ironcrab.png rename to Resources/Textures/Mobs/Elemental/orecrab.rsi/iron_crab.png diff --git a/Resources/Textures/Mobs/Elemental/orecrab.rsi/meta.json b/Resources/Textures/Mobs/Elemental/orecrab.rsi/meta.json index b8ffd5034d..a85de36617 100644 --- a/Resources/Textures/Mobs/Elemental/orecrab.rsi/meta.json +++ b/Resources/Textures/Mobs/Elemental/orecrab.rsi/meta.json @@ -8,15 +8,19 @@ "copyright": "Made by brainfood1183 (github)", "states": [ { - "name": "ironcrab", + "name": "iron_crab", "directions": 4 }, { - "name": "uraniumcrab", + "name": "uranium_crab", "directions": 4 }, { - "name": "quartzcrab", + "name": "silver_crab", + "directions": 4 + }, + { + "name": "quartz_crab", "directions": 4 } ] diff --git a/Resources/Textures/Mobs/Elemental/orecrab.rsi/quartzcrab.png b/Resources/Textures/Mobs/Elemental/orecrab.rsi/quartz_crab.png similarity index 100% rename from Resources/Textures/Mobs/Elemental/orecrab.rsi/quartzcrab.png rename to Resources/Textures/Mobs/Elemental/orecrab.rsi/quartz_crab.png diff --git a/Resources/Textures/Mobs/Elemental/orecrab.rsi/silver_crab.png b/Resources/Textures/Mobs/Elemental/orecrab.rsi/silver_crab.png new file mode 100644 index 0000000000..b378d65baf Binary files /dev/null and b/Resources/Textures/Mobs/Elemental/orecrab.rsi/silver_crab.png differ diff --git a/Resources/Textures/Mobs/Elemental/orecrab.rsi/uraniumcrab.png b/Resources/Textures/Mobs/Elemental/orecrab.rsi/uranium_crab.png similarity index 100% rename from Resources/Textures/Mobs/Elemental/orecrab.rsi/uraniumcrab.png rename to Resources/Textures/Mobs/Elemental/orecrab.rsi/uranium_crab.png diff --git a/Resources/Textures/Mobs/Pets/breaddog.rsi/base.png b/Resources/Textures/Mobs/Pets/breaddog.rsi/base.png new file mode 100644 index 0000000000..4897cc6422 Binary files /dev/null and b/Resources/Textures/Mobs/Pets/breaddog.rsi/base.png differ diff --git a/Resources/Textures/Mobs/Pets/breaddog.rsi/dead.png b/Resources/Textures/Mobs/Pets/breaddog.rsi/dead.png new file mode 100644 index 0000000000..4a1a7c809e Binary files /dev/null and b/Resources/Textures/Mobs/Pets/breaddog.rsi/dead.png differ diff --git a/Resources/Textures/Mobs/Pets/breaddog.rsi/meta.json b/Resources/Textures/Mobs/Pets/breaddog.rsi/meta.json new file mode 100644 index 0000000000..45d0190b0c --- /dev/null +++ b/Resources/Textures/Mobs/Pets/breaddog.rsi/meta.json @@ -0,0 +1,21 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "taken from tgstation on commit https://github.com/tgstation/tgstation/commit/ce6f2724cd79fa7c916e97167f9eab61cbd0a8cb", + "states": + [ + { + "name": "base", + "directions": 4 + }, + + { + "name": "dead", + "directions": 1 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Mobs/Pets/cat.rsi/cak-equipped-HELMET.png b/Resources/Textures/Mobs/Pets/cat.rsi/cak-equipped-HELMET.png new file mode 100644 index 0000000000..6ea20f86bd Binary files /dev/null and b/Resources/Textures/Mobs/Pets/cat.rsi/cak-equipped-HELMET.png differ diff --git a/Resources/Textures/Mobs/Pets/cat.rsi/cak-inhand-left.png b/Resources/Textures/Mobs/Pets/cat.rsi/cak-inhand-left.png new file mode 100644 index 0000000000..59705b5ee0 Binary files /dev/null and b/Resources/Textures/Mobs/Pets/cat.rsi/cak-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Pets/cat.rsi/cak-inhand-right.png b/Resources/Textures/Mobs/Pets/cat.rsi/cak-inhand-right.png new file mode 100644 index 0000000000..26f646e4fb Binary files /dev/null and b/Resources/Textures/Mobs/Pets/cat.rsi/cak-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Pets/cat.rsi/cak.png b/Resources/Textures/Mobs/Pets/cat.rsi/cak.png index 19e657b7cb..ced709d1e8 100644 Binary files a/Resources/Textures/Mobs/Pets/cat.rsi/cak.png and b/Resources/Textures/Mobs/Pets/cat.rsi/cak.png differ diff --git a/Resources/Textures/Mobs/Pets/cat.rsi/kitten.png b/Resources/Textures/Mobs/Pets/cat.rsi/kitten.png index fd579cb8cd..62c4883e63 100644 Binary files a/Resources/Textures/Mobs/Pets/cat.rsi/kitten.png and b/Resources/Textures/Mobs/Pets/cat.rsi/kitten.png differ diff --git a/Resources/Textures/Mobs/Pets/cat.rsi/kittencollar.png b/Resources/Textures/Mobs/Pets/cat.rsi/kittencollar.png index 079698ec85..09bf4c2526 100644 Binary files a/Resources/Textures/Mobs/Pets/cat.rsi/kittencollar.png and b/Resources/Textures/Mobs/Pets/cat.rsi/kittencollar.png differ diff --git a/Resources/Textures/Mobs/Pets/cat.rsi/kittentag.png b/Resources/Textures/Mobs/Pets/cat.rsi/kittentag.png index 6f3bf14f5c..b37123fb00 100644 Binary files a/Resources/Textures/Mobs/Pets/cat.rsi/kittentag.png and b/Resources/Textures/Mobs/Pets/cat.rsi/kittentag.png differ diff --git a/Resources/Textures/Mobs/Pets/cat.rsi/meta.json b/Resources/Textures/Mobs/Pets/cat.rsi/meta.json index e6d1436048..d9a6c182a9 100644 --- a/Resources/Textures/Mobs/Pets/cat.rsi/meta.json +++ b/Resources/Textures/Mobs/Pets/cat.rsi/meta.json @@ -49,6 +49,60 @@ ] ] }, + { + "name": "cak-inhand-left", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "cak-inhand-right", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "cak-equipped-HELMET", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, { "name": "cat", "directions": 4, diff --git a/Resources/Textures/Mobs/Pets/corgi.rsi/puppy.png b/Resources/Textures/Mobs/Pets/corgi.rsi/puppy.png index 52b36da606..d265b080cf 100644 Binary files a/Resources/Textures/Mobs/Pets/corgi.rsi/puppy.png and b/Resources/Textures/Mobs/Pets/corgi.rsi/puppy.png differ diff --git a/Resources/Textures/Mobs/Pets/corgi.rsi/puppy_dead.png b/Resources/Textures/Mobs/Pets/corgi.rsi/puppy_dead.png index 1f80afd4bf..2a51f46b11 100644 Binary files a/Resources/Textures/Mobs/Pets/corgi.rsi/puppy_dead.png and b/Resources/Textures/Mobs/Pets/corgi.rsi/puppy_dead.png differ diff --git a/Resources/Textures/Mobs/Pets/corgi.rsi/puppy_deadcollar.png b/Resources/Textures/Mobs/Pets/corgi.rsi/puppy_deadcollar.png index 6a34922c42..452dd52f85 100644 Binary files a/Resources/Textures/Mobs/Pets/corgi.rsi/puppy_deadcollar.png and b/Resources/Textures/Mobs/Pets/corgi.rsi/puppy_deadcollar.png differ diff --git a/Resources/Textures/Mobs/Pets/corgi.rsi/puppy_deadtag.png b/Resources/Textures/Mobs/Pets/corgi.rsi/puppy_deadtag.png index 0124355b13..3862cae5f6 100644 Binary files a/Resources/Textures/Mobs/Pets/corgi.rsi/puppy_deadtag.png and b/Resources/Textures/Mobs/Pets/corgi.rsi/puppy_deadtag.png differ diff --git a/Resources/Textures/Mobs/Pets/corgi.rsi/puppy_shaved.png b/Resources/Textures/Mobs/Pets/corgi.rsi/puppy_shaved.png index ae84297e04..2fbca50fa6 100644 Binary files a/Resources/Textures/Mobs/Pets/corgi.rsi/puppy_shaved.png and b/Resources/Textures/Mobs/Pets/corgi.rsi/puppy_shaved.png differ diff --git a/Resources/Textures/Mobs/Pets/corgi.rsi/puppy_shaved_dead.png b/Resources/Textures/Mobs/Pets/corgi.rsi/puppy_shaved_dead.png index 04584d4d44..39d2b8db38 100644 Binary files a/Resources/Textures/Mobs/Pets/corgi.rsi/puppy_shaved_dead.png and b/Resources/Textures/Mobs/Pets/corgi.rsi/puppy_shaved_dead.png differ diff --git a/Resources/Textures/Mobs/Pets/corgi.rsi/puppycollar.png b/Resources/Textures/Mobs/Pets/corgi.rsi/puppycollar.png index 8aa1939e7a..4683a1f9f5 100644 Binary files a/Resources/Textures/Mobs/Pets/corgi.rsi/puppycollar.png and b/Resources/Textures/Mobs/Pets/corgi.rsi/puppycollar.png differ diff --git a/Resources/Textures/Mobs/Pets/corgi.rsi/puppytag.png b/Resources/Textures/Mobs/Pets/corgi.rsi/puppytag.png index b7d9d09d57..1a74928939 100644 Binary files a/Resources/Textures/Mobs/Pets/corgi.rsi/puppytag.png and b/Resources/Textures/Mobs/Pets/corgi.rsi/puppytag.png differ diff --git a/Resources/Textures/Mobs/Species/Arachnid/parts.rsi/eyes.png b/Resources/Textures/Mobs/Species/Arachnid/parts.rsi/eyes.png index 3b205738f2..a662054108 100644 Binary files a/Resources/Textures/Mobs/Species/Arachnid/parts.rsi/eyes.png and b/Resources/Textures/Mobs/Species/Arachnid/parts.rsi/eyes.png differ diff --git a/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/full.png b/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/full.png index 39d9a69915..11c6100a6d 100644 Binary files a/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/full.png and b/Resources/Textures/Mobs/Species/Reptilian/parts.rsi/full.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/bedrock-inhand-left.png b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/bedrock-inhand-left.png new file mode 100644 index 0000000000..0f35af1aa8 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/bedrock-inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/bedrock-inhand-right.png b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/bedrock-inhand-right.png new file mode 100644 index 0000000000..65690ea25e Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/bedrock-inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/bedrock.png b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/bedrock.png new file mode 100644 index 0000000000..f2c93199ca Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/bedrock.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/dirt-inhand-left.png b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/dirt-inhand-left.png new file mode 100644 index 0000000000..08e74e1f79 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/dirt-inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/dirt-inhand-right.png b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/dirt-inhand-right.png new file mode 100644 index 0000000000..e912f56fb2 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/dirt-inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/dirt.png b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/dirt.png new file mode 100644 index 0000000000..1d5851bd1e Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/dirt.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassdark-inhand-left.png b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassdark-inhand-left.png new file mode 100644 index 0000000000..89c8980e0e Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassdark-inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassdark-inhand-right.png b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassdark-inhand-right.png new file mode 100644 index 0000000000..1b5858effd Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassdark-inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassdark.png b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassdark.png new file mode 100644 index 0000000000..6ebcb916e4 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassdark.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassjungle-inhand-left.png b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassjungle-inhand-left.png new file mode 100644 index 0000000000..396b8bff78 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassjungle-inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassjungle-inhand-right.png b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassjungle-inhand-right.png new file mode 100644 index 0000000000..201e0c149e Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassjungle-inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grasslight-inhand-left.png b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grasslight-inhand-left.png new file mode 100644 index 0000000000..9254700015 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grasslight-inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grasslight-inhand-right.png b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grasslight-inhand-right.png new file mode 100644 index 0000000000..f119a7f9a5 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grasslight-inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grasslight.png b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grasslight.png new file mode 100644 index 0000000000..d318e8b91a Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grasslight.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/meta.json b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/meta.json new file mode 100644 index 0000000000..c83cdb81ec --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/meta.json @@ -0,0 +1,63 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24, additional copyrights see tiles folder.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "grassdark" + }, + { + "name": "grasslight" + }, + { + "name": "dirt" + }, + { + "name": "bedrock" + }, + { + "name": "grassjungle-inhand-left", + "directions": 4 + }, + { + "name": "grassjungle-inhand-right", + "directions": 4 + }, + { + "name": "grassdark-inhand-left", + "directions": 4 + }, + { + "name": "grassdark-inhand-right", + "directions": 4 + }, + { + "name": "grasslight-inhand-left", + "directions": 4 + }, + { + "name": "grasslight-inhand-right", + "directions": 4 + }, + { + "name": "dirt-inhand-left", + "directions": 4 + }, + { + "name": "dirt-inhand-right", + "directions": 4 + }, + { + "name": "bedrock-inhand-left", + "directions": 4 + }, + { + "name": "bedrock-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Tiles/bedrock.png b/Resources/Textures/Nyanotrasen/Tiles/bedrock.png new file mode 100644 index 0000000000..9292305dfb Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Tiles/bedrock.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/bloodglass.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/bloodglass.rsi/icon.png new file mode 100644 index 0000000000..c044ab45c9 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/bloodglass.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/bloodglass.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/bloodglass.rsi/meta.json new file mode 100644 index 0000000000..a347d37fc3 --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Drinks/bloodglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "Drawn by Ubaser", "states": [{"name": "icon"}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-0.png b/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-0.png new file mode 100644 index 0000000000..d2a5ef967a Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-0.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-1.png b/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-1.png new file mode 100644 index 0000000000..c97ead8da8 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-2.png b/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-2.png new file mode 100644 index 0000000000..18ff175dad Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-3.png b/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-3.png new file mode 100644 index 0000000000..a60b6edb6d Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-3.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-4.png b/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-4.png new file mode 100644 index 0000000000..52a03df508 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-4.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon.png deleted file mode 100644 index 9b9bfe86d2..0000000000 Binary files a/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/meta.json index db0ac608ed..6dfbe5d8c0 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/meta.json @@ -1 +1,25 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon"}]} \ No newline at end of file +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "states": [{ + "name": "icon-0" + }, + { + "name": "icon-1" + }, + { + "name": "icon-2" + }, + { + "name": "icon-3" + }, + { + "name": "icon-4" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill1.png b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill1.png new file mode 100644 index 0000000000..2b1df1297a Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill2.png b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill2.png new file mode 100644 index 0000000000..e8cafc6f2c Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill3.png b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill3.png new file mode 100644 index 0000000000..42ed8ab370 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill3.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill4.png b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill4.png new file mode 100644 index 0000000000..a025896b67 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill4.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill5.png b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill5.png new file mode 100644 index 0000000000..acd8a99b26 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill5.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill6.png b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill6.png new file mode 100644 index 0000000000..65ad0b33a6 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill6.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill7.png b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill7.png new file mode 100644 index 0000000000..34d34e1586 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill7.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill8.png b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill8.png new file mode 100644 index 0000000000..caecc33f20 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill8.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill9.png b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill9.png new file mode 100644 index 0000000000..ccc78f6f15 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill9.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/icon-front.png b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/icon-front.png new file mode 100644 index 0000000000..be6ea7b3eb Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/icon-front.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/icon.png index 5daac2d49b..29eda9dee9 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/icon.png and b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/meta.json index db0ac608ed..ed109341de 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/meta.json @@ -1 +1,44 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon"}]} \ No newline at end of file +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi transparencies by IProduceWidgets", + "states": [ + { + "name": "icon" + }, + { + "name": "icon-front" + }, + { + "name": "fill1" + }, + { + "name": "fill2" + }, + { + "name": "fill3" + }, + { + "name": "fill4" + }, + { + "name": "fill5" + }, + { + "name": "fill6" + }, + { + "name": "fill7" + }, + { + "name": "fill8" + }, + { + "name": "fill9" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/milk-oat.png b/Resources/Textures/Objects/Consumable/Drinks/oatmilk.rsi/icon.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Food/ingredients.rsi/milk-oat.png rename to Resources/Textures/Objects/Consumable/Drinks/oatmilk.rsi/icon.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/oatmilk.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/oatmilk.rsi/meta.json new file mode 100644 index 0000000000..db0ac608ed --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Drinks/oatmilk.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon"}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/cake.rsi/lemoon-slice.png b/Resources/Textures/Objects/Consumable/Food/Baked/cake.rsi/lemoon-slice.png new file mode 100644 index 0000000000..c87731370d Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/Baked/cake.rsi/lemoon-slice.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/cake.rsi/lemoon.png b/Resources/Textures/Objects/Consumable/Food/Baked/cake.rsi/lemoon.png new file mode 100644 index 0000000000..b186366650 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/Baked/cake.rsi/lemoon.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/cake.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/Baked/cake.rsi/meta.json index ae32c43a05..43a54b0fe5 100644 --- a/Resources/Textures/Objects/Consumable/Food/Baked/cake.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Food/Baked/cake.rsi/meta.json @@ -1 +1 @@ -{"version": 1, "license": "CC-BY-SA-3.0", "copyright": "Taken from tgstation and modified by Swept at https://github.com/tgstation/tgstation/commit/40d75cc340c63582fb66ce15bf75a36115f6bdaa", "size": {"x": 32, "y": 32}, "states": [{"name": "alpha"}, {"name": "alpha-filling"}, {"name": "alpha-slice"}, {"name": "alpha-slice-filling"}, {"name": "apple"}, {"name": "apple-slice"}, {"name": "birthday"}, {"name": "birthday-slice"}, {"name": "brain"}, {"name": "brain-large"}, {"name": "brain-slice"}, {"name": "carrot"}, {"name": "carrot-slice"}, {"name": "cheese"}, {"name": "cheese-slice"}, {"name": "chocolate"}, {"name": "chocolate-slice"}, {"name": "lemon"}, {"name": "lemon-slice"}, {"name": "lime"}, {"name": "lime-slice"}, {"name": "orange"}, {"name": "orange-slice"}, {"name": "plain"}, {"name": "plain-slice"}, {"name": "clown"}, {"name": "clown-slice"}, {"name": "plate"}, {"name": "plate-small"}, {"name": "plate-plastic"}, {"name": "plate-small-plastic"}, {"name": "plate-slice-shading"}, {"name": "pumpkinspice"}, {"name": "pumpkinspice-slice"}, {"name": "slime"}, {"name": "slime-slice"}, {"name": "christmas"}, {"name": "christmas-slice"}, {"name": "vanilla"}, {"name": "vanilla-slice"}, {"name": "trumpet"}, {"name": "trumpet-slice"}, {"name": "suppermatter", "directions": 1, "delays": [[1.0]]}, {"name": "suppermatter-shard", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file +{"version": 1, "license": "CC-BY-SA-3.0", "copyright": "Taken from tgstation and modified by Swept at https://github.com/tgstation/tgstation/commit/40d75cc340c63582fb66ce15bf75a36115f6bdaa", "size": {"x": 32, "y": 32}, "states": [{"name": "alpha"}, {"name": "alpha-filling"}, {"name": "alpha-slice"}, {"name": "alpha-slice-filling"}, {"name": "apple"}, {"name": "apple-slice"}, {"name": "birthday"}, {"name": "birthday-slice"}, {"name": "brain"}, {"name": "brain-large"}, {"name": "brain-slice"}, {"name": "carrot"}, {"name": "carrot-slice"}, {"name": "cheese"}, {"name": "cheese-slice"}, {"name": "chocolate"}, {"name": "chocolate-slice"}, {"name": "lemon"}, {"name": "lemon-slice"}, {"name": "lime"}, {"name": "lime-slice"}, {"name": "orange"}, {"name": "orange-slice"}, {"name": "plain"}, {"name": "plain-slice"}, {"name": "clown"}, {"name": "clown-slice"}, {"name": "plate"}, {"name": "plate-small"}, {"name": "plate-plastic"}, {"name": "plate-small-plastic"}, {"name": "plate-slice-shading"}, {"name": "pumpkinspice"}, {"name": "pumpkinspice-slice"}, {"name": "slime"}, {"name": "slime-slice"}, {"name": "christmas"}, {"name": "christmas-slice"}, {"name": "vanilla"}, {"name": "vanilla-slice"}, {"name": "trumpet"}, {"name": "trumpet-slice"}, {"name": "suppermatter", "directions": 1, "delays": [[1.0]]}, {"name": "suppermatter-shard", "directions": 1, "delays": [[1.0]]},{"name": "lemoon","delays": [ [ 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15 ] ]},{"name": "lemoon-slice"}]} diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/bananapie-slice.png b/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/bananapie-slice.png new file mode 100644 index 0000000000..9f047756ec Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/bananapie-slice.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/meta.json index 3d0e47f870..ced8d58373 100644 --- a/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/meta.json @@ -1,94 +1,108 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "alpha-slice-filling" - }, - { - "name": "alpha-tart" - }, - { - "name": "amanita" - }, - { - "name": "apple" - }, - { - "name": "baklava" - }, - { - "name": "baklava-slice" - }, - { - "name": "berryclafoutis" - }, - { - "name": "cherry" - }, - { - "name": "cocolava" - }, - { - "name": "frosty" - }, - { - "name": "gapple" - }, - { - "name": "grape" - }, - { - "name": "happy" - }, - { - "name": "meat" - }, - { - "name": "mime" - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "plain" - }, - { - "name": "plain-slice" - }, - { - "name": "plate" - }, - { - "name": "plate-slice-shading" - }, - { - "name": "plate-small" - }, - { - "name": "plate-tart" - }, - { - "name": "plump" - }, - { - "name": "tin" - }, - { - "name": "whippedcream" - }, - { - "name": "xeno" - } - ] + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24, mime tart slice and banana cream pie slice from rosysyntax under under CC BY-SA 4.0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "alpha-slice-filling" + }, + { + "name": "alpha-tart" + }, + { + "name": "amanita" + }, + { + "name": "apple" + }, + { + "name": "baklava" + }, + { + "name": "baklava-slice" + }, + { + "name": "bananapie-slice" + }, + { + "name": "berryclafoutis" + }, + { + "name": "cherry" + }, + { + "name": "cocolava" + }, + { + "name": "frosty" + }, + { + "name": "gapple" + }, + { + "name": "grape" + }, + { + "name": "happy" + }, + { + "name": "meat" + }, + { + "name": "mime" + }, + { + "name": "mimetart-slice" + }, + { + "name": "mime-inhand-right", + "directions": 4 + }, + { + "name": "mime-inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "plain" + }, + { + "name": "plain-slice" + }, + { + "name": "plate" + }, + { + "name": "plate-slice-shading" + }, + { + "name": "plate-small" + }, + { + "name": "plate-tart" + }, + { + "name": "plump" + }, + { + "name": "tin" + }, + { + "name": "whippedcream" + }, + { + "name": "xeno" + } + ] } diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/mime-inhand-left.png b/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/mime-inhand-left.png new file mode 100644 index 0000000000..93036128a3 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/mime-inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/mime-inhand-right.png b/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/mime-inhand-right.png new file mode 100644 index 0000000000..8e8307b00f Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/mime-inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/mimetart-slice.png b/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/mimetart-slice.png new file mode 100644 index 0000000000..3f64bd6f26 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/mimetart-slice.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/meta.json index 3c66005b04..6633b0b0bd 100644 --- a/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/meta.json @@ -67,15 +67,6 @@ { "name": "mayo" }, - { - "name": "milk" - }, - { - "name": "milk-soy" - }, - { - "name": "milk-oat" - }, { "name": "oliveoil" }, diff --git a/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/milk-soy.png b/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/milk-soy.png deleted file mode 100644 index b36cc5c740..0000000000 Binary files a/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/milk-soy.png and /dev/null differ diff --git a/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/milk.png b/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/milk.png deleted file mode 100644 index f6be66ead1..0000000000 Binary files a/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/milk.png and /dev/null differ diff --git a/Resources/Textures/Objects/Consumable/Food/meat.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/meat.rsi/meta.json index f1aa4d3446..2bb20f1eb5 100644 --- a/Resources/Textures/Objects/Consumable/Food/meat.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Food/meat.rsi/meta.json @@ -156,6 +156,9 @@ { "name": "slime" }, + { + "name": "snake" + }, { "name": "spider" }, diff --git a/Resources/Textures/Objects/Consumable/Food/meat.rsi/snake.png b/Resources/Textures/Objects/Consumable/Food/meat.rsi/snake.png new file mode 100644 index 0000000000..a16189e6ee Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/meat.rsi/snake.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/lit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/lit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..ceea1e2e99 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/lit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/meta.json index 21312feb7b..8d6da16f6f 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Adapted from tgstation at commit https://github.com/tgstation/tgstation/commit/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8", + "copyright": "Adapted from tgstation at commit https://github.com/tgstation/tgstation/commit/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -177,6 +177,56 @@ 0.1 ] ] + }, + { + "name": "unlit-equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "lit-equipped-MASK-vulpkanin", + "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 + ] + ] } ] } diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/unlit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/unlit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..fc81b838cb Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/unlit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.rsi/lit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.rsi/lit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..f4e2671805 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.rsi/lit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.rsi/meta.json index 435e9748b1..cd4355ac14 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -177,6 +177,56 @@ 0.1 ] ] + }, + { + "name": "unlit-equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "lit-equipped-MASK-vulpkanin", + "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 + ] + ] } ] } diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.rsi/unlit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.rsi/unlit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..bd01ccf61f Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.rsi/unlit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/lit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/lit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..60c0c634f6 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/lit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/meta.json index 00fcb768fb..0d4fd176a0 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -177,6 +177,56 @@ 0.1 ] ] + }, + { + "name": "unlit-equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "lit-equipped-MASK-vulpkanin", + "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 + ] + ] } ] } diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/unlit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/unlit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..9e6a86b142 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/unlit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/lit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/lit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..4a3544c8fa Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/lit-equipped-MASK-vulpkanin.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..6b6687d88c 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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -165,6 +165,56 @@ 0.1 ] ] + }, + { + "name": "unlit-equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "lit-equipped-MASK-vulpkanin", + "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 + ] + ] } ] } diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/unlit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/unlit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..b9ab1e483f Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/unlit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/lit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/lit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..4a3544c8fa Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/lit-equipped-MASK-vulpkanin.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..6b6687d88c 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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -165,6 +165,56 @@ 0.1 ] ] + }, + { + "name": "unlit-equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "lit-equipped-MASK-vulpkanin", + "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 + ] + ] } ] } diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/unlit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/unlit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..b9ab1e483f Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/unlit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.rsi/lit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.rsi/lit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..bc72d5c2e8 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.rsi/lit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.rsi/meta.json index 00fcb768fb..0d4fd176a0 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -177,6 +177,56 @@ 0.1 ] ] + }, + { + "name": "unlit-equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "lit-equipped-MASK-vulpkanin", + "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 + ] + ] } ] } diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.rsi/unlit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.rsi/unlit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..806e5c4160 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.rsi/unlit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-0.png b/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-0.png new file mode 100644 index 0000000000..3bc1eafb97 Binary files /dev/null and b/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-0.png differ diff --git a/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-1.png b/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-1.png new file mode 100644 index 0000000000..0d4142d08d Binary files /dev/null and b/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-1.png differ diff --git a/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-10.png b/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-10.png new file mode 100644 index 0000000000..53f61b9243 Binary files /dev/null and b/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-10.png differ diff --git a/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-2.png b/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-2.png new file mode 100644 index 0000000000..1800a7eea0 Binary files /dev/null and b/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-2.png differ diff --git a/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-3.png b/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-3.png new file mode 100644 index 0000000000..a82fd0cf8f Binary files /dev/null and b/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-3.png differ diff --git a/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-4.png b/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-4.png new file mode 100644 index 0000000000..92169bb6c5 Binary files /dev/null and b/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-4.png differ diff --git a/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-5.png b/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-5.png new file mode 100644 index 0000000000..cca3f51863 Binary files /dev/null and b/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-5.png differ diff --git a/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-6.png b/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-6.png new file mode 100644 index 0000000000..77181b432e Binary files /dev/null and b/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-6.png differ diff --git a/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-7.png b/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-7.png new file mode 100644 index 0000000000..c42784db40 Binary files /dev/null and b/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-7.png differ diff --git a/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-8.png b/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-8.png new file mode 100644 index 0000000000..44c7a7e7a2 Binary files /dev/null and b/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-8.png differ diff --git a/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-9.png b/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-9.png new file mode 100644 index 0000000000..250c2ef488 Binary files /dev/null and b/Resources/Textures/Objects/Decoration/ashtray.rsi/icon-9.png differ diff --git a/Resources/Textures/Objects/Decoration/ashtray.rsi/meta.json b/Resources/Textures/Objects/Decoration/ashtray.rsi/meta.json new file mode 100644 index 0000000000..9e45b4ede1 --- /dev/null +++ b/Resources/Textures/Objects/Decoration/ashtray.rsi/meta.json @@ -0,0 +1,44 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by joshepvodka", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon-0" + }, + { + "name": "icon-1" + }, + { + "name": "icon-2" + }, + { + "name": "icon-3" + }, + { + "name": "icon-4" + }, + { + "name": "icon-5" + }, + { + "name": "icon-6" + }, + { + "name": "icon-7" + }, + { + "name": "icon-8" + }, + { + "name": "icon-9" + }, + { + "name": "icon-10" + } + ] +} diff --git a/Resources/Textures/Objects/Devices/gates.rsi/meta.json b/Resources/Textures/Objects/Devices/gates.rsi/meta.json index 1a4ca51419..9d10f53279 100644 --- a/Resources/Textures/Objects/Devices/gates.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/gates.rsi/meta.json @@ -33,6 +33,9 @@ }, { "name": "or_icon" + }, + { + "name": "power_sensor" } ] } diff --git a/Resources/Textures/Objects/Devices/gates.rsi/power_sensor.png b/Resources/Textures/Objects/Devices/gates.rsi/power_sensor.png new file mode 100644 index 0000000000..3bd6de6d10 Binary files /dev/null and b/Resources/Textures/Objects/Devices/gates.rsi/power_sensor.png differ diff --git a/Resources/Textures/Objects/Devices/pda.rsi/equipped-IDCARD.png b/Resources/Textures/Objects/Devices/pda.rsi/equipped-IDCARD.png new file mode 100644 index 0000000000..5c8b0666f1 Binary files /dev/null and b/Resources/Textures/Objects/Devices/pda.rsi/equipped-IDCARD.png differ diff --git a/Resources/Textures/Objects/Devices/pda.rsi/meta.json b/Resources/Textures/Objects/Devices/pda.rsi/meta.json index 7ec6b3b175..f77f8c0e71 100644 --- a/Resources/Textures/Objects/Devices/pda.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/pda.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/59f2a4e10e5ba36033c9734ddebfbbdc6157472d, pda-cluwne made by brainfood1183 (github) ss14 | pda-brigmedic and pda-centcom made by PuroSlavKing (Github) | pda-brigemdic resprited by Hülle#2562 (Discord)", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/59f2a4e10e5ba36033c9734ddebfbbdc6157472d, pda-cluwne made by brainfood1183 (github) ss14 | pda-brigmedic and pda-centcom made by PuroSlavKing (Github) | pda-brigemdic resprited by Hülle#2562 (Discord), pda-pirate made by brainfood1183 (Github), pda-syndi-agent drawn by Ubaser", "size": { "x": 32, "y": 32 @@ -114,6 +114,9 @@ { "name": "pda-miner" }, + { + "name": "pda-pirate" + }, { "name": "pda-qm" }, @@ -161,6 +164,9 @@ { "name": "pda-syndi" }, + { + "name": "pda-syndi-agent" + }, { "name": "pda-centcom", "delays": [ @@ -205,7 +211,7 @@ { "name": "pda-ert" }, - { + { "name": "pda-cluwne" }, { @@ -219,6 +225,10 @@ }, { "name": "pda-seniorofficer" + }, + { + "name": "equipped-IDCARD", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Devices/pda.rsi/pda-pirate.png b/Resources/Textures/Objects/Devices/pda.rsi/pda-pirate.png new file mode 100644 index 0000000000..f9408319a7 Binary files /dev/null and b/Resources/Textures/Objects/Devices/pda.rsi/pda-pirate.png differ diff --git a/Resources/Textures/Objects/Devices/pda.rsi/pda-syndi-agent.png b/Resources/Textures/Objects/Devices/pda.rsi/pda-syndi-agent.png new file mode 100644 index 0000000000..84fb47cc79 Binary files /dev/null and b/Resources/Textures/Objects/Devices/pda.rsi/pda-syndi-agent.png differ diff --git a/Resources/Textures/Objects/Devices/pinpointer.rsi/meta.json b/Resources/Textures/Objects/Devices/pinpointer.rsi/meta.json index 5e05af6671..d827f509cf 100644 --- a/Resources/Textures/Objects/Devices/pinpointer.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/pinpointer.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/59f2a4e10e5ba36033c9734ddebfbbdc6157472d", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/59f2a4e10e5ba36033c9734ddebfbbdc6157472d, station and syndicate pinpointer resprited by Ubaser", "states": [ { "name": "pinonalert", @@ -139,16 +139,19 @@ "name": "pinpointer" }, { - "name": "pinpointer_crew" + "name": "pinpointer-crew" }, { - "name": "pinpointer_crewprox" + "name": "pinpointer-crewprox" }, { - "name": "pinpointer_syndicate" + "name": "pinpointer-syndicate" }, { - "name": "pinpointer_way" + "name": "pinpointer-way" + }, + { + "name": "pinpointer-station" }, { "name": "inhand-left", diff --git a/Resources/Textures/Objects/Devices/pinpointer.rsi/pinpointer_crew.png b/Resources/Textures/Objects/Devices/pinpointer.rsi/pinpointer-crew.png similarity index 100% rename from Resources/Textures/Objects/Devices/pinpointer.rsi/pinpointer_crew.png rename to Resources/Textures/Objects/Devices/pinpointer.rsi/pinpointer-crew.png diff --git a/Resources/Textures/Objects/Devices/pinpointer.rsi/pinpointer_crewprox.png b/Resources/Textures/Objects/Devices/pinpointer.rsi/pinpointer-crewprox.png similarity index 100% rename from Resources/Textures/Objects/Devices/pinpointer.rsi/pinpointer_crewprox.png rename to Resources/Textures/Objects/Devices/pinpointer.rsi/pinpointer-crewprox.png diff --git a/Resources/Textures/Objects/Devices/pinpointer.rsi/pinpointer-station.png b/Resources/Textures/Objects/Devices/pinpointer.rsi/pinpointer-station.png new file mode 100644 index 0000000000..2b931884db Binary files /dev/null and b/Resources/Textures/Objects/Devices/pinpointer.rsi/pinpointer-station.png differ diff --git a/Resources/Textures/Objects/Devices/pinpointer.rsi/pinpointer-syndicate.png b/Resources/Textures/Objects/Devices/pinpointer.rsi/pinpointer-syndicate.png new file mode 100644 index 0000000000..66c0b9dec0 Binary files /dev/null and b/Resources/Textures/Objects/Devices/pinpointer.rsi/pinpointer-syndicate.png differ diff --git a/Resources/Textures/Objects/Devices/pinpointer.rsi/pinpointer_way.png b/Resources/Textures/Objects/Devices/pinpointer.rsi/pinpointer-way.png similarity index 100% rename from Resources/Textures/Objects/Devices/pinpointer.rsi/pinpointer_way.png rename to Resources/Textures/Objects/Devices/pinpointer.rsi/pinpointer-way.png diff --git a/Resources/Textures/Objects/Devices/pinpointer.rsi/pinpointer_syndicate.png b/Resources/Textures/Objects/Devices/pinpointer.rsi/pinpointer_syndicate.png deleted file mode 100644 index 46e9fbba6c..0000000000 Binary files a/Resources/Textures/Objects/Devices/pinpointer.rsi/pinpointer_syndicate.png and /dev/null differ diff --git a/Resources/Textures/Objects/Fun/Darts/dartbox.rsi/icon.png b/Resources/Textures/Objects/Fun/Darts/dartbox.rsi/icon.png new file mode 100644 index 0000000000..8ccdee1f06 Binary files /dev/null and b/Resources/Textures/Objects/Fun/Darts/dartbox.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Fun/Darts/dartbox.rsi/meta.json b/Resources/Textures/Objects/Fun/Darts/dartbox.rsi/meta.json new file mode 100644 index 0000000000..df8899fa0d --- /dev/null +++ b/Resources/Textures/Objects/Fun/Darts/dartbox.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created for SS14 by TheShuEd (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Fun/Instruments/blood_red_phone.rsi/icon.png b/Resources/Textures/Objects/Fun/Instruments/blood_red_phone.rsi/icon.png new file mode 100644 index 0000000000..b8473def4d Binary files /dev/null and b/Resources/Textures/Objects/Fun/Instruments/blood_red_phone.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Fun/Instruments/blood_red_phone.rsi/meta.json b/Resources/Textures/Objects/Fun/Instruments/blood_red_phone.rsi/meta.json new file mode 100644 index 0000000000..d6d8e5b6d6 --- /dev/null +++ b/Resources/Textures/Objects/Fun/Instruments/blood_red_phone.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from red_phone in https://github.com/tgstation/tgstation/blob/ed17dde468fc8a2b5743d9f64c5afd7eab2f23f5/icons/obj/device.dmi and modified by deltanedas (github) for ss14", + "states": [ + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/Objects/Fun/crayons.rsi/black_box.png b/Resources/Textures/Objects/Fun/crayons.rsi/black_box.png index aa9cc97a01..c4b4d9cfdc 100644 Binary files a/Resources/Textures/Objects/Fun/crayons.rsi/black_box.png and b/Resources/Textures/Objects/Fun/crayons.rsi/black_box.png differ diff --git a/Resources/Textures/Objects/Fun/crayons.rsi/blue_box.png b/Resources/Textures/Objects/Fun/crayons.rsi/blue_box.png index 2e974939cf..519accac21 100644 Binary files a/Resources/Textures/Objects/Fun/crayons.rsi/blue_box.png and b/Resources/Textures/Objects/Fun/crayons.rsi/blue_box.png differ diff --git a/Resources/Textures/Objects/Fun/crayons.rsi/box.png b/Resources/Textures/Objects/Fun/crayons.rsi/box.png index ec61836917..3cf8156030 100644 Binary files a/Resources/Textures/Objects/Fun/crayons.rsi/box.png and b/Resources/Textures/Objects/Fun/crayons.rsi/box.png differ diff --git a/Resources/Textures/Objects/Fun/crayons.rsi/green_box.png b/Resources/Textures/Objects/Fun/crayons.rsi/green_box.png index e6165cfa8c..8b5818a09f 100644 Binary files a/Resources/Textures/Objects/Fun/crayons.rsi/green_box.png and b/Resources/Textures/Objects/Fun/crayons.rsi/green_box.png differ diff --git a/Resources/Textures/Objects/Fun/crayons.rsi/meta.json b/Resources/Textures/Objects/Fun/crayons.rsi/meta.json index 40b21c290b..fd4cad8ac2 100644 --- a/Resources/Textures/Objects/Fun/crayons.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/crayons.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation and modified by Swept at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "copyright": "Taken from tgstation and modified by Swept at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24, tweaked by Ubaser", "size": { "x": 32, "y": 32 @@ -148,6 +148,9 @@ }, { "name": "blue_box" + }, + { + "name": "white_box" } ] } diff --git a/Resources/Textures/Objects/Fun/crayons.rsi/orange_box.png b/Resources/Textures/Objects/Fun/crayons.rsi/orange_box.png index cb354ae538..dbc57e084e 100644 Binary files a/Resources/Textures/Objects/Fun/crayons.rsi/orange_box.png and b/Resources/Textures/Objects/Fun/crayons.rsi/orange_box.png differ diff --git a/Resources/Textures/Objects/Fun/crayons.rsi/purple_box.png b/Resources/Textures/Objects/Fun/crayons.rsi/purple_box.png index 73c8fdfb43..8ac7a876da 100644 Binary files a/Resources/Textures/Objects/Fun/crayons.rsi/purple_box.png and b/Resources/Textures/Objects/Fun/crayons.rsi/purple_box.png differ diff --git a/Resources/Textures/Objects/Fun/crayons.rsi/red_box.png b/Resources/Textures/Objects/Fun/crayons.rsi/red_box.png index 1b47d24e0a..465a5a9238 100644 Binary files a/Resources/Textures/Objects/Fun/crayons.rsi/red_box.png and b/Resources/Textures/Objects/Fun/crayons.rsi/red_box.png differ diff --git a/Resources/Textures/Objects/Fun/crayons.rsi/white_box.png b/Resources/Textures/Objects/Fun/crayons.rsi/white_box.png new file mode 100644 index 0000000000..69e1795b69 Binary files /dev/null and b/Resources/Textures/Objects/Fun/crayons.rsi/white_box.png differ diff --git a/Resources/Textures/Objects/Fun/crayons.rsi/yellow_box.png b/Resources/Textures/Objects/Fun/crayons.rsi/yellow_box.png index 284db7c39b..e08b325333 100644 Binary files a/Resources/Textures/Objects/Fun/crayons.rsi/yellow_box.png and b/Resources/Textures/Objects/Fun/crayons.rsi/yellow_box.png differ diff --git a/Resources/Textures/Objects/Fun/dice.rsi/d10_0.png b/Resources/Textures/Objects/Fun/dice.rsi/d10_0.png new file mode 100644 index 0000000000..31573ac8b2 Binary files /dev/null and b/Resources/Textures/Objects/Fun/dice.rsi/d10_0.png differ diff --git a/Resources/Textures/Objects/Fun/dice.rsi/d10_10.png b/Resources/Textures/Objects/Fun/dice.rsi/d10_10.png deleted file mode 100644 index d71e46e19e..0000000000 Binary files a/Resources/Textures/Objects/Fun/dice.rsi/d10_10.png and /dev/null differ diff --git a/Resources/Textures/Objects/Fun/dice.rsi/meta.json b/Resources/Textures/Objects/Fun/dice.rsi/meta.json index 3216e05353..dbaf9fa847 100644 --- a/Resources/Textures/Objects/Fun/dice.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/dice.rsi/meta.json @@ -38,10 +38,10 @@ "name": "percentile_90" }, { - "name": "d10_1" + "name": "d10_0" }, { - "name": "d10_10" + "name": "d10_1" }, { "name": "d10_2" diff --git a/Resources/Textures/Objects/Fun/figurines.rsi/meta.json b/Resources/Textures/Objects/Fun/figurines.rsi/meta.json index f6e93b64fc..ebbb50e796 100644 --- a/Resources/Textures/Objects/Fun/figurines.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/figurines.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprites made by Flareguy for Space Station 14. Griffinprize, skeletonprize, and owlprize taken from /tg/station at commit https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432. Figurine_spawner sprite made using parts found in spawner_icons.dmi from Paradise Station at commit https://github.com/ParadiseSS13/Paradise/commit/813f0a3ae556d86dddd7c4ef93a52880de8d2e37. Head sprites excluding Captain, Medical exluding doctor, non-human excluding queen and slime, and service jobs excluding librarian done by tacobeller and holoclown done by brainfood1183.", + "copyright": "Sprites made by Flareguy for Space Station 14. Griffinprize, skeletonprize, thiefcharacter and owlprize taken from /tg/station at commit https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432. Figurine_spawner sprite made using parts found in spawner_icons.dmi from Paradise Station at commit https://github.com/ParadiseSS13/Paradise/commit/813f0a3ae556d86dddd7c4ef93a52880de8d2e37. Head sprites excluding Captain, Medical exluding doctor, non-human excluding queen and slime, and service jobs excluding librarian done by tacobeller and holoclown done by brainfood1183.", "size": { "x": 32, "y": 32 @@ -157,6 +157,9 @@ { "name": "fig_box_unfolded" }, + { + "name": "thiefcharacter" + }, { "name": "figurine_spawner" } diff --git a/Resources/Textures/Objects/Fun/figurines.rsi/thiefcharacter.png b/Resources/Textures/Objects/Fun/figurines.rsi/thiefcharacter.png new file mode 100644 index 0000000000..d0d3f559b8 Binary files /dev/null and b/Resources/Textures/Objects/Fun/figurines.rsi/thiefcharacter.png differ diff --git a/Resources/Textures/Objects/Fun/toy_sword.rsi/e_sword.png b/Resources/Textures/Objects/Fun/toy_sword.rsi/e_sword.png new file mode 100644 index 0000000000..c231db05b3 Binary files /dev/null and b/Resources/Textures/Objects/Fun/toy_sword.rsi/e_sword.png differ diff --git a/Resources/Textures/Objects/Fun/toy_sword.rsi/e_sword_blade.png b/Resources/Textures/Objects/Fun/toy_sword.rsi/e_sword_blade.png new file mode 100644 index 0000000000..28e0ec67a8 Binary files /dev/null and b/Resources/Textures/Objects/Fun/toy_sword.rsi/e_sword_blade.png differ diff --git a/Resources/Textures/Objects/Fun/toy_sword.rsi/icon.png b/Resources/Textures/Objects/Fun/toy_sword.rsi/icon.png new file mode 100644 index 0000000000..535d9de84e Binary files /dev/null and b/Resources/Textures/Objects/Fun/toy_sword.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Fun/toy_sword.rsi/inhand-left-blade.png b/Resources/Textures/Objects/Fun/toy_sword.rsi/inhand-left-blade.png new file mode 100644 index 0000000000..6bc304a12f Binary files /dev/null and b/Resources/Textures/Objects/Fun/toy_sword.rsi/inhand-left-blade.png differ diff --git a/Resources/Textures/Objects/Fun/toy_sword.rsi/inhand-left.png b/Resources/Textures/Objects/Fun/toy_sword.rsi/inhand-left.png new file mode 100644 index 0000000000..6e5fe94f81 Binary files /dev/null and b/Resources/Textures/Objects/Fun/toy_sword.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Fun/toy_sword.rsi/inhand-right-blade.png b/Resources/Textures/Objects/Fun/toy_sword.rsi/inhand-right-blade.png new file mode 100644 index 0000000000..456e742892 Binary files /dev/null and b/Resources/Textures/Objects/Fun/toy_sword.rsi/inhand-right-blade.png differ diff --git a/Resources/Textures/Objects/Fun/toy_sword.rsi/inhand-right.png b/Resources/Textures/Objects/Fun/toy_sword.rsi/inhand-right.png new file mode 100644 index 0000000000..b82aed42c0 Binary files /dev/null and b/Resources/Textures/Objects/Fun/toy_sword.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Fun/toy_sword.rsi/meta.json b/Resources/Textures/Objects/Fun/toy_sword.rsi/meta.json new file mode 100644 index 0000000000..2026e221b7 --- /dev/null +++ b/Resources/Textures/Objects/Fun/toy_sword.rsi/meta.json @@ -0,0 +1,78 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "e_sword" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "e_sword_blade", + "delays": [ + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "inhand-left-blade", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "inhand-right-blade", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/Objects/Fun/toys.rsi/meta.json b/Resources/Textures/Objects/Fun/toys.rsi/meta.json index a5f1211666..7ab46a3108 100644 --- a/Resources/Textures/Objects/Fun/toys.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/toys.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432, orb, orb-inhand-left and orb-inhand-right created by Pancake, plushie_diona and plushie_diona1 created by discord user Deos#5630, toy-mouse-equipped-HELMET is a resprited 1-equipped-HELMET in mouse.rsi by PuroSlavKing (Github), plushie_xeno by LinkUyx#6557, plushie_hampter by RenLou#4333, beachball taken from https://github.com/ss220-space/Paradise/commit/662c08272acd7be79531550919f56f846726eabb, beachb-inhand by ;3#1161, bee hat and in-hand sprites drawn by Ubaser", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432, orb, orb-inhand-left and orb-inhand-right created by Pancake, plushie_diona and plushie_diona1 created by discord user Deos#5630, toy-mouse-equipped-HELMET is a resprited 1-equipped-HELMET in mouse.rsi by PuroSlavKing (Github), plushie_xeno by LinkUyx#6557, plushie_hampter by RenLou#4333, beachball taken from https://github.com/ss220-space/Paradise/commit/662c08272acd7be79531550919f56f846726eabb, beachb-inhand by ;3#1161, bee hat and in-hand sprites drawn by Ubaser, plushie_penguin by netwy", "size": { "x": 32, "y": 32 @@ -10,7 +10,10 @@ { "name": "plushie_ratvar" }, - { + { + "name": "plushie_penguin" + }, + { "name": "plushie_moth" }, { diff --git a/Resources/Textures/Objects/Fun/toys.rsi/plushie_penguin.png b/Resources/Textures/Objects/Fun/toys.rsi/plushie_penguin.png new file mode 100644 index 0000000000..979af83fa9 Binary files /dev/null and b/Resources/Textures/Objects/Fun/toys.rsi/plushie_penguin.png differ diff --git a/Resources/Textures/Objects/Materials/Shards/crystal.rsi/meta.json b/Resources/Textures/Objects/Materials/Shards/crystal.rsi/meta.json new file mode 100644 index 0000000000..f800f2b6f6 --- /dev/null +++ b/Resources/Textures/Objects/Materials/Shards/crystal.rsi/meta.json @@ -0,0 +1,20 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "shard1" + }, + { + "name": "shard2" + }, + { + "name": "shard3" + } + ] +} diff --git a/Resources/Textures/Objects/Materials/Shards/crystal.rsi/shard1.png b/Resources/Textures/Objects/Materials/Shards/crystal.rsi/shard1.png new file mode 100644 index 0000000000..f8cb52c0ce Binary files /dev/null and b/Resources/Textures/Objects/Materials/Shards/crystal.rsi/shard1.png differ diff --git a/Resources/Textures/Objects/Materials/Shards/crystal.rsi/shard2.png b/Resources/Textures/Objects/Materials/Shards/crystal.rsi/shard2.png new file mode 100644 index 0000000000..f7925af0e6 Binary files /dev/null and b/Resources/Textures/Objects/Materials/Shards/crystal.rsi/shard2.png differ diff --git a/Resources/Textures/Objects/Materials/Shards/crystal.rsi/shard3.png b/Resources/Textures/Objects/Materials/Shards/crystal.rsi/shard3.png new file mode 100644 index 0000000000..966eba601d Binary files /dev/null and b/Resources/Textures/Objects/Materials/Shards/crystal.rsi/shard3.png differ diff --git a/Resources/Textures/Objects/Materials/silk.rsi/icon.png b/Resources/Textures/Objects/Materials/silk.rsi/icon.png index 648f370a54..003f17ab44 100644 Binary files a/Resources/Textures/Objects/Materials/silk.rsi/icon.png and b/Resources/Textures/Objects/Materials/silk.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Misc/Handy_Flags/NT_handy_flag.rsi/icon.png b/Resources/Textures/Objects/Misc/Handy_Flags/NT_handy_flag.rsi/icon.png new file mode 100644 index 0000000000..647b116ccf Binary files /dev/null and b/Resources/Textures/Objects/Misc/Handy_Flags/NT_handy_flag.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Misc/Handy_Flags/NT_handy_flag.rsi/inhand-left.png b/Resources/Textures/Objects/Misc/Handy_Flags/NT_handy_flag.rsi/inhand-left.png new file mode 100644 index 0000000000..4355065efa Binary files /dev/null and b/Resources/Textures/Objects/Misc/Handy_Flags/NT_handy_flag.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Misc/Handy_Flags/NT_handy_flag.rsi/inhand-right.png b/Resources/Textures/Objects/Misc/Handy_Flags/NT_handy_flag.rsi/inhand-right.png new file mode 100644 index 0000000000..7200c69295 Binary files /dev/null and b/Resources/Textures/Objects/Misc/Handy_Flags/NT_handy_flag.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Misc/Handy_Flags/NT_handy_flag.rsi/meta.json b/Resources/Textures/Objects/Misc/Handy_Flags/NT_handy_flag.rsi/meta.json new file mode 100644 index 0000000000..7fc21e61ab --- /dev/null +++ b/Resources/Textures/Objects/Misc/Handy_Flags/NT_handy_flag.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Drawn by Saveliy360", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Misc/Handy_Flags/blank_handy_flag.rsi/icon.png b/Resources/Textures/Objects/Misc/Handy_Flags/blank_handy_flag.rsi/icon.png new file mode 100644 index 0000000000..5ddc8efa5f Binary files /dev/null and b/Resources/Textures/Objects/Misc/Handy_Flags/blank_handy_flag.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Misc/Handy_Flags/blank_handy_flag.rsi/inhand-left.png b/Resources/Textures/Objects/Misc/Handy_Flags/blank_handy_flag.rsi/inhand-left.png new file mode 100644 index 0000000000..1863e624f3 Binary files /dev/null and b/Resources/Textures/Objects/Misc/Handy_Flags/blank_handy_flag.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Misc/Handy_Flags/blank_handy_flag.rsi/inhand-right.png b/Resources/Textures/Objects/Misc/Handy_Flags/blank_handy_flag.rsi/inhand-right.png new file mode 100644 index 0000000000..2963932a96 Binary files /dev/null and b/Resources/Textures/Objects/Misc/Handy_Flags/blank_handy_flag.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Misc/Handy_Flags/blank_handy_flag.rsi/meta.json b/Resources/Textures/Objects/Misc/Handy_Flags/blank_handy_flag.rsi/meta.json new file mode 100644 index 0000000000..7fc21e61ab --- /dev/null +++ b/Resources/Textures/Objects/Misc/Handy_Flags/blank_handy_flag.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Drawn by Saveliy360", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Misc/Handy_Flags/lgbtq_handy_flag.rsi/icon.png b/Resources/Textures/Objects/Misc/Handy_Flags/lgbtq_handy_flag.rsi/icon.png new file mode 100644 index 0000000000..ff4e3eb2cf Binary files /dev/null and b/Resources/Textures/Objects/Misc/Handy_Flags/lgbtq_handy_flag.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Misc/Handy_Flags/lgbtq_handy_flag.rsi/inhand-left.png b/Resources/Textures/Objects/Misc/Handy_Flags/lgbtq_handy_flag.rsi/inhand-left.png new file mode 100644 index 0000000000..63005e5416 Binary files /dev/null and b/Resources/Textures/Objects/Misc/Handy_Flags/lgbtq_handy_flag.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Misc/Handy_Flags/lgbtq_handy_flag.rsi/inhand-right.png b/Resources/Textures/Objects/Misc/Handy_Flags/lgbtq_handy_flag.rsi/inhand-right.png new file mode 100644 index 0000000000..fbdf7c7e77 Binary files /dev/null and b/Resources/Textures/Objects/Misc/Handy_Flags/lgbtq_handy_flag.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Misc/Handy_Flags/lgbtq_handy_flag.rsi/meta.json b/Resources/Textures/Objects/Misc/Handy_Flags/lgbtq_handy_flag.rsi/meta.json new file mode 100644 index 0000000000..7fc21e61ab --- /dev/null +++ b/Resources/Textures/Objects/Misc/Handy_Flags/lgbtq_handy_flag.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Drawn by Saveliy360", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Misc/Handy_Flags/pirate_handy_flag.rsi/icon.png b/Resources/Textures/Objects/Misc/Handy_Flags/pirate_handy_flag.rsi/icon.png new file mode 100644 index 0000000000..b6b4b46a04 Binary files /dev/null and b/Resources/Textures/Objects/Misc/Handy_Flags/pirate_handy_flag.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Misc/Handy_Flags/pirate_handy_flag.rsi/inhand-left.png b/Resources/Textures/Objects/Misc/Handy_Flags/pirate_handy_flag.rsi/inhand-left.png new file mode 100644 index 0000000000..2a6fc306f5 Binary files /dev/null and b/Resources/Textures/Objects/Misc/Handy_Flags/pirate_handy_flag.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Misc/Handy_Flags/pirate_handy_flag.rsi/inhand-right.png b/Resources/Textures/Objects/Misc/Handy_Flags/pirate_handy_flag.rsi/inhand-right.png new file mode 100644 index 0000000000..b00d5c8426 Binary files /dev/null and b/Resources/Textures/Objects/Misc/Handy_Flags/pirate_handy_flag.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Misc/Handy_Flags/pirate_handy_flag.rsi/meta.json b/Resources/Textures/Objects/Misc/Handy_Flags/pirate_handy_flag.rsi/meta.json new file mode 100644 index 0000000000..7fc21e61ab --- /dev/null +++ b/Resources/Textures/Objects/Misc/Handy_Flags/pirate_handy_flag.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Drawn by Saveliy360", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Misc/Handy_Flags/syndie_handy_flag.rsi/icon.png b/Resources/Textures/Objects/Misc/Handy_Flags/syndie_handy_flag.rsi/icon.png new file mode 100644 index 0000000000..aba18d46cc Binary files /dev/null and b/Resources/Textures/Objects/Misc/Handy_Flags/syndie_handy_flag.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Misc/Handy_Flags/syndie_handy_flag.rsi/inhand-left.png b/Resources/Textures/Objects/Misc/Handy_Flags/syndie_handy_flag.rsi/inhand-left.png new file mode 100644 index 0000000000..6196478e19 Binary files /dev/null and b/Resources/Textures/Objects/Misc/Handy_Flags/syndie_handy_flag.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Misc/Handy_Flags/syndie_handy_flag.rsi/inhand-right.png b/Resources/Textures/Objects/Misc/Handy_Flags/syndie_handy_flag.rsi/inhand-right.png new file mode 100644 index 0000000000..5ec9f14173 Binary files /dev/null and b/Resources/Textures/Objects/Misc/Handy_Flags/syndie_handy_flag.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Misc/Handy_Flags/syndie_handy_flag.rsi/meta.json b/Resources/Textures/Objects/Misc/Handy_Flags/syndie_handy_flag.rsi/meta.json new file mode 100644 index 0000000000..7fc21e61ab --- /dev/null +++ b/Resources/Textures/Objects/Misc/Handy_Flags/syndie_handy_flag.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Drawn by Saveliy360", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/folder-centcom.png b/Resources/Textures/Objects/Misc/bureaucracy.rsi/folder-centcom.png new file mode 100644 index 0000000000..cc9a33153f Binary files /dev/null and b/Resources/Textures/Objects/Misc/bureaucracy.rsi/folder-centcom.png differ diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/luxury_pen.png b/Resources/Textures/Objects/Misc/bureaucracy.rsi/luxury_pen.png new file mode 100644 index 0000000000..c3e203170b Binary files /dev/null and b/Resources/Textures/Objects/Misc/bureaucracy.rsi/luxury_pen.png differ diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json b/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json index 2898c26a63..a4f4c4f5b6 100644 --- a/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json +++ b/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432. paper_stamp-syndicate by Veritius. paper_receipt, paper_receipt_horizontal by eoineoineoin. pen_centcom is a resprited version of pen_cap by PuroSlavKing (Github). New stamp- icons taken from tgstation at https://github.com/tgstation/tgstation/commit/fb1012102257b7b0a08d861fd2b8ba963c416e93. stamp-warden is a darker version of stamp-hos.", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432. paper_stamp-syndicate by Veritius. paper_receipt, paper_receipt_horizontal by eoineoineoin. pen_centcom is a resprited version of pen_cap by PuroSlavKing (Github). New stamp- icons taken from tgstation at https://github.com/tgstation/tgstation/commit/fb1012102257b7b0a08d861fd2b8ba963c416e93. stamp-warden is a darker version of stamp-hos. Luxury pen is drawn by Ubaser.", "size": { "x": 32, "y": 32 @@ -31,6 +31,9 @@ { "name": "folder-white" }, + { + "name": "folder-centcom" + }, { "name": "folder-overlay-paper" }, @@ -225,6 +228,9 @@ { "name": "overpriced_pen" }, + { + "name": "luxury_pen" + }, { "name": "pen_blue" }, diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/paper_bin0.png b/Resources/Textures/Objects/Misc/bureaucracy.rsi/paper_bin0.png index 35ffa4cf85..a819682f78 100644 Binary files a/Resources/Textures/Objects/Misc/bureaucracy.rsi/paper_bin0.png and b/Resources/Textures/Objects/Misc/bureaucracy.rsi/paper_bin0.png differ diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/paper_bin1.png b/Resources/Textures/Objects/Misc/bureaucracy.rsi/paper_bin1.png index cbff65725b..b8e2e359b3 100644 Binary files a/Resources/Textures/Objects/Misc/bureaucracy.rsi/paper_bin1.png and b/Resources/Textures/Objects/Misc/bureaucracy.rsi/paper_bin1.png differ diff --git a/Resources/Textures/Objects/Misc/candles.rsi/candle-big.png b/Resources/Textures/Objects/Misc/candles.rsi/candle-big.png new file mode 100644 index 0000000000..56fbd861e6 Binary files /dev/null and b/Resources/Textures/Objects/Misc/candles.rsi/candle-big.png differ diff --git a/Resources/Textures/Objects/Misc/candles.rsi/candle-small.png b/Resources/Textures/Objects/Misc/candles.rsi/candle-small.png new file mode 100644 index 0000000000..441bac1f0d Binary files /dev/null and b/Resources/Textures/Objects/Misc/candles.rsi/candle-small.png differ diff --git a/Resources/Textures/Objects/Misc/candles.rsi/fire-big.png b/Resources/Textures/Objects/Misc/candles.rsi/fire-big.png new file mode 100644 index 0000000000..ead6179f9a Binary files /dev/null and b/Resources/Textures/Objects/Misc/candles.rsi/fire-big.png differ diff --git a/Resources/Textures/Objects/Misc/candles.rsi/fire-small.png b/Resources/Textures/Objects/Misc/candles.rsi/fire-small.png new file mode 100644 index 0000000000..8d6e26189a Binary files /dev/null and b/Resources/Textures/Objects/Misc/candles.rsi/fire-small.png differ diff --git a/Resources/Textures/Objects/Misc/candles.rsi/inhand-left-flame.png b/Resources/Textures/Objects/Misc/candles.rsi/inhand-left-flame.png new file mode 100644 index 0000000000..b11db57c7d Binary files /dev/null and b/Resources/Textures/Objects/Misc/candles.rsi/inhand-left-flame.png differ diff --git a/Resources/Textures/Objects/Misc/candles.rsi/inhand-left.png b/Resources/Textures/Objects/Misc/candles.rsi/inhand-left.png new file mode 100644 index 0000000000..4c9bacc509 Binary files /dev/null and b/Resources/Textures/Objects/Misc/candles.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Misc/candles.rsi/inhand-right-flame.png b/Resources/Textures/Objects/Misc/candles.rsi/inhand-right-flame.png new file mode 100644 index 0000000000..3703ab0fc5 Binary files /dev/null and b/Resources/Textures/Objects/Misc/candles.rsi/inhand-right-flame.png differ diff --git a/Resources/Textures/Objects/Misc/candles.rsi/inhand-right.png b/Resources/Textures/Objects/Misc/candles.rsi/inhand-right.png new file mode 100644 index 0000000000..4260bb4896 Binary files /dev/null and b/Resources/Textures/Objects/Misc/candles.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Misc/candles.rsi/meta.json b/Resources/Textures/Objects/Misc/candles.rsi/meta.json new file mode 100644 index 0000000000..9432ffae8b --- /dev/null +++ b/Resources/Textures/Objects/Misc/candles.rsi/meta.json @@ -0,0 +1,97 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by TheShuEd (github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "stand-small" + }, + { + "name": "stand-big" + }, + { + "name": "candle-small" + }, + { + "name": "candle-big" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "fire-small", + "delays": [ + [ + 0.15, + 0.15, + 0.15, + 0.15 + ] + ] + }, + { + "name": "fire-big", + "delays": [ + [ + 0.15, + 0.15, + 0.15, + 0.15 + ] + ] + }, + { + "name": "inhand-left-flame", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2 + ], + [ + 0.2, + 0.2 + ], + [ + 0.2, + 0.2 + ], + [ + 0.2, + 0.2 + ] + ] + }, + { + "name": "inhand-right-flame", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2 + ], + [ + 0.2, + 0.2 + ], + [ + 0.2, + 0.2 + ], + [ + 0.2, + 0.2 + ] + ] + } + ] +} diff --git a/Resources/Textures/Objects/Misc/candles.rsi/stand-big.png b/Resources/Textures/Objects/Misc/candles.rsi/stand-big.png new file mode 100644 index 0000000000..486a18086c Binary files /dev/null and b/Resources/Textures/Objects/Misc/candles.rsi/stand-big.png differ diff --git a/Resources/Textures/Objects/Misc/candles.rsi/stand-small.png b/Resources/Textures/Objects/Misc/candles.rsi/stand-small.png new file mode 100644 index 0000000000..28629a09b6 Binary files /dev/null and b/Resources/Textures/Objects/Misc/candles.rsi/stand-small.png differ diff --git a/Resources/Textures/Objects/Misc/cc-clipboard.rsi/clipboard.png b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/clipboard.png new file mode 100644 index 0000000000..a5197be4bd Binary files /dev/null and b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/clipboard.png differ diff --git a/Resources/Textures/Objects/Misc/cc-clipboard.rsi/clipboard_over.png b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/clipboard_over.png new file mode 100644 index 0000000000..675e133736 Binary files /dev/null and b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/clipboard_over.png differ diff --git a/Resources/Textures/Objects/Misc/cc-clipboard.rsi/clipboard_paper.png b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/clipboard_paper.png new file mode 100644 index 0000000000..d58b42b709 Binary files /dev/null and b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/clipboard_paper.png differ diff --git a/Resources/Textures/Objects/Misc/cc-clipboard.rsi/clipboard_pen.png b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/clipboard_pen.png new file mode 100644 index 0000000000..d56d62894e Binary files /dev/null and b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/clipboard_pen.png differ diff --git a/Resources/Textures/Objects/Misc/cc-clipboard.rsi/equipped-BELT.png b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/equipped-BELT.png new file mode 100644 index 0000000000..ea71ac85c1 Binary files /dev/null and b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Misc/cc-clipboard.rsi/inhand-left.png b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/inhand-left.png new file mode 100644 index 0000000000..83135923f2 Binary files /dev/null and b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Misc/cc-clipboard.rsi/inhand-right.png b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/inhand-right.png new file mode 100644 index 0000000000..5fc11d48ca Binary files /dev/null and b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Misc/cc-clipboard.rsi/meta.json b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/meta.json new file mode 100644 index 0000000000..6cb81a227a --- /dev/null +++ b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Do over of clipboard.rsi sprites done by joshepvodka", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "clipboard" + }, + { + "name": "clipboard_over" + }, + { + "name": "clipboard_paper" + }, + { + "name": "clipboard_pen" + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Misc/ice_crust.rsi/ice.png b/Resources/Textures/Objects/Misc/ice_crust.rsi/ice.png new file mode 100644 index 0000000000..0f460febe8 Binary files /dev/null and b/Resources/Textures/Objects/Misc/ice_crust.rsi/ice.png differ diff --git a/Resources/Textures/Objects/Misc/ice_crust.rsi/meta.json b/Resources/Textures/Objects/Misc/ice_crust.rsi/meta.json new file mode 100644 index 0000000000..865e457e9b --- /dev/null +++ b/Resources/Textures/Objects/Misc/ice_crust.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from space-station-14+Resources+Textures+Tiles+Planet+Snow", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "ice" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/idquartermaster.png b/Resources/Textures/Objects/Misc/id_cards.rsi/idquartermaster.png index d65c0cbda7..bfdd067872 100644 Binary files a/Resources/Textures/Objects/Misc/id_cards.rsi/idquartermaster.png and b/Resources/Textures/Objects/Misc/id_cards.rsi/idquartermaster.png differ diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/meta.json b/Resources/Textures/Objects/Misc/id_cards.rsi/meta.json index f169027a0d..a84c76a46c 100644 --- a/Resources/Textures/Objects/Misc/id_cards.rsi/meta.json +++ b/Resources/Textures/Objects/Misc/id_cards.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/d917f4c2a088419d5c3aec7656b7ff8cebd1822e idcluwne made by brainfood1183 (github) for ss14, idbrigmedic made by PuroSlavKing (Github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d917f4c2a088419d5c3aec7656b7ff8cebd1822e idcluwne made by brainfood1183 (github) for ss14, idbrigmedic made by PuroSlavKing (Github), pirate made by brainfood1183 (github)", "size": { "x": 32, "y": 32 @@ -172,6 +172,9 @@ { "name": "orange" }, + { + "name": "pirate" + }, { "name": "prisoner_001" }, @@ -199,7 +202,7 @@ { "name": "syndie" }, - { + { "name": "idcluwne" }, { diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/pirate.png b/Resources/Textures/Objects/Misc/id_cards.rsi/pirate.png new file mode 100644 index 0000000000..d5670a71aa Binary files /dev/null and b/Resources/Textures/Objects/Misc/id_cards.rsi/pirate.png differ diff --git a/Resources/Textures/Objects/Specific/Chapel/chaplainurn.rsi/icon.png b/Resources/Textures/Objects/Specific/Chapel/chaplainurn.rsi/icon.png new file mode 100644 index 0000000000..dbd2499cf2 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chapel/chaplainurn.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Specific/Chapel/chaplainurn.rsi/inhand-left.png b/Resources/Textures/Objects/Specific/Chapel/chaplainurn.rsi/inhand-left.png new file mode 100644 index 0000000000..f7b457ea79 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chapel/chaplainurn.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Specific/Chapel/chaplainurn.rsi/inhand-right.png b/Resources/Textures/Objects/Specific/Chapel/chaplainurn.rsi/inhand-right.png new file mode 100644 index 0000000000..94a4a585e4 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chapel/chaplainurn.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Specific/Chapel/chaplainurn.rsi/meta.json b/Resources/Textures/Objects/Specific/Chapel/chaplainurn.rsi/meta.json new file mode 100644 index 0000000000..a257cbc7dc --- /dev/null +++ b/Resources/Textures/Objects/Specific/Chapel/chaplainurn.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by NkoKirkto (Github,Discord) for SpaceStation14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] + } \ No newline at end of file diff --git a/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/cryo_base0.png b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/cryo_base0.png new file mode 100644 index 0000000000..57f12125b5 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/cryo_base0.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/meta.json b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/meta.json index 68413c692d..8c15361569 100644 --- a/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris https://github.com/discordia-space/CEV-Eris/commit/989b7b343045f30120c198ee100c9fee7ff8a989, bluespace syringe sprites modified by EmoGarbage404 (github)", + "copyright": "Taken from cev-eris https://github.com/discordia-space/CEV-Eris/commit/989b7b343045f30120c198ee100c9fee7ff8a989, bluespace syringe sprites modified by EmoGarbage404 (github), cryo syringe sprites by Ubaser", "size": { "x": 32, "y": 32 @@ -16,6 +16,20 @@ ] ] }, + { + "name": "cryo_base0", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, { "name": "syringe_base0" }, diff --git a/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/inhand-left.png b/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/inhand-left.png index 71a75ca66e..4a82b48c90 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/inhand-left.png and b/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/inhand-right.png b/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/inhand-right.png index c9c7de38f4..0f835ece48 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/inhand-right.png and b/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/lid_vial.png b/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/lid_vial.png deleted file mode 100644 index b1ad7e1a7c..0000000000 Binary files a/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/lid_vial.png and /dev/null differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/meta.json b/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/meta.json index 7b251e87ff..800cb2b522 100644 --- a/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/meta.json @@ -1,15 +1,12 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/blob/2b969adc2dfd3e9621bf3597c5cbffeb3ac8c9f0/icons/obj/chemical.dmi", + "copyright": "Drawn by Ubaser, taken inspiration by /tg/'s vials", "size": { "x": 32, "y": 32 }, "states": [ - { - "name": "lid_vial" - }, { "name": "vial" }, @@ -20,6 +17,27 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "vial-1" + }, + { + "name": "vial-1-1" + }, + { + "name": "vial-1-2" + }, + { + "name": "vial-1-3" + }, + { + "name": "vial-1-4" + }, + { + "name": "vial-1-5" + }, + { + "name": "vial-1-6" } ] } diff --git a/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/vial-1-1.png b/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/vial-1-1.png new file mode 100644 index 0000000000..84c961944a Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/vial-1-1.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/vial-1-2.png b/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/vial-1-2.png new file mode 100644 index 0000000000..2e477363e8 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/vial-1-2.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/vial-1-3.png b/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/vial-1-3.png new file mode 100644 index 0000000000..b11c4a5266 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/vial-1-3.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/vial-1-4.png b/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/vial-1-4.png new file mode 100644 index 0000000000..c87cbf9032 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/vial-1-4.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/vial-1-5.png b/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/vial-1-5.png new file mode 100644 index 0000000000..bedbf5b855 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/vial-1-5.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/vial-1-6.png b/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/vial-1-6.png new file mode 100644 index 0000000000..ba57cf0f06 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/vial-1-6.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/vial-1.png b/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/vial-1.png new file mode 100644 index 0000000000..983e6b6703 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/vial-1.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/vial.png b/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/vial.png index 27b92b3209..983e6b6703 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/vial.png and b/Resources/Textures/Objects/Specific/Chemistry/vial.rsi/vial.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/banana.rsi/baked-peel-inhand-left.png b/Resources/Textures/Objects/Specific/Hydroponics/banana.rsi/baked-peel-inhand-left.png new file mode 100644 index 0000000000..63d83d1f83 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/banana.rsi/baked-peel-inhand-left.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/banana.rsi/baked-peel-inhand-right.png b/Resources/Textures/Objects/Specific/Hydroponics/banana.rsi/baked-peel-inhand-right.png new file mode 100644 index 0000000000..301c5f007c Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/banana.rsi/baked-peel-inhand-right.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/banana.rsi/baked-peel.png b/Resources/Textures/Objects/Specific/Hydroponics/banana.rsi/baked-peel.png new file mode 100644 index 0000000000..7bcdef6828 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/banana.rsi/baked-peel.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/banana.rsi/baked-peel2.png b/Resources/Textures/Objects/Specific/Hydroponics/banana.rsi/baked-peel2.png new file mode 100644 index 0000000000..16f795680e Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/banana.rsi/baked-peel2.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/banana.rsi/baked-peel3.png b/Resources/Textures/Objects/Specific/Hydroponics/banana.rsi/baked-peel3.png new file mode 100644 index 0000000000..5e0b4a5080 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/banana.rsi/baked-peel3.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/banana.rsi/meta.json b/Resources/Textures/Objects/Specific/Hydroponics/banana.rsi/meta.json index 88c277fde7..27357cf18e 100644 --- a/Resources/Textures/Objects/Specific/Hydroponics/banana.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Hydroponics/banana.rsi/meta.json @@ -33,6 +33,23 @@ "name": "peel-inhand-right", "directions": 4 }, + { + "name": "baked-peel" + }, + { + "name": "baked-peel2" + }, + { + "name": "baked-peel3" + }, + { + "name": "baked-peel-inhand-left", + "directions": 4 + }, + { + "name": "baked-peel-inhand-right", + "directions": 4 + }, { "name": "seed" }, diff --git a/Resources/Textures/Objects/Specific/Hydroponics/cotton.rsi/dead.png b/Resources/Textures/Objects/Specific/Hydroponics/cotton.rsi/dead.png new file mode 100644 index 0000000000..490e558a27 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/cotton.rsi/dead.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/cotton.rsi/harvest.png b/Resources/Textures/Objects/Specific/Hydroponics/cotton.rsi/harvest.png new file mode 100644 index 0000000000..980840239e Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/cotton.rsi/harvest.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/cotton.rsi/meta.json b/Resources/Textures/Objects/Specific/Hydroponics/cotton.rsi/meta.json new file mode 100644 index 0000000000..d7f18a46c9 --- /dev/null +++ b/Resources/Textures/Objects/Specific/Hydroponics/cotton.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e245d374b2976c73d0aff37cf4a443d2e75c2f57", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "dead" + }, + { + "name": "harvest" + }, + { + "name": "produce" + }, + { + "name": "seed" + }, + { + "name": "stage-1" + }, + { + "name": "stage-2" + }, + { + "name": "stage-3" + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Hydroponics/cotton.rsi/produce.png b/Resources/Textures/Objects/Specific/Hydroponics/cotton.rsi/produce.png new file mode 100644 index 0000000000..24e84bf49d Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/cotton.rsi/produce.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/cotton.rsi/seed.png b/Resources/Textures/Objects/Specific/Hydroponics/cotton.rsi/seed.png new file mode 100644 index 0000000000..0fb8ed3fc6 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/cotton.rsi/seed.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/cotton.rsi/stage-1.png b/Resources/Textures/Objects/Specific/Hydroponics/cotton.rsi/stage-1.png new file mode 100644 index 0000000000..0b49286a83 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/cotton.rsi/stage-1.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/cotton.rsi/stage-2.png b/Resources/Textures/Objects/Specific/Hydroponics/cotton.rsi/stage-2.png new file mode 100644 index 0000000000..616d32cbeb Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/cotton.rsi/stage-2.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/cotton.rsi/stage-3.png b/Resources/Textures/Objects/Specific/Hydroponics/cotton.rsi/stage-3.png new file mode 100644 index 0000000000..77ab34fa1b Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/cotton.rsi/stage-3.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/dead.png b/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/dead.png new file mode 100644 index 0000000000..00d15ded8d Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/dead.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/harvest.png b/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/harvest.png new file mode 100644 index 0000000000..eb8e9be72c Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/harvest.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/meta.json b/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/meta.json new file mode 100644 index 0000000000..7d9b435455 --- /dev/null +++ b/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/meta.json @@ -0,0 +1,41 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken and resprite from https://github.com/vgstation-coders/vgstation13/commit/1dbcf389b0ec6b2c51b002df5fef8dd1519f8068", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "dead" + }, + { + "name": "harvest" + }, + { + "name": "produce" + }, + { + "name": "seed" + }, + { + "name": "stage-1" + }, + { + "name": "stage-2" + }, + { + "name": "stage-3" + }, + { + "name": "stage-4" + }, + { + "name": "stage-5" + }, + { + "name": "stage-6" + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/produce.png b/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/produce.png new file mode 100644 index 0000000000..8ccdaff40c Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/produce.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/seed.png b/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/seed.png new file mode 100644 index 0000000000..a1de9a7148 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/seed.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/stage-1.png b/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/stage-1.png new file mode 100644 index 0000000000..b6caf9be93 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/stage-1.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/stage-2.png b/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/stage-2.png new file mode 100644 index 0000000000..23eb583677 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/stage-2.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/stage-3.png b/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/stage-3.png new file mode 100644 index 0000000000..2f3eb17ce5 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/stage-3.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/stage-4.png b/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/stage-4.png new file mode 100644 index 0000000000..e09ce8d2a3 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/stage-4.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/stage-5.png b/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/stage-5.png new file mode 100644 index 0000000000..5125a625df Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/stage-5.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/stage-6.png b/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/stage-6.png new file mode 100644 index 0000000000..3f5bb97d67 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/lemoon.rsi/stage-6.png differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/deluxe-1.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/deluxe-1.png new file mode 100644 index 0000000000..74e3c29d22 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/deluxe-1.png differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/deluxe-2.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/deluxe-2.png new file mode 100644 index 0000000000..cf2eded81c Binary files /dev/null and b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/deluxe-2.png differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/deluxe-3.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/deluxe-3.png new file mode 100644 index 0000000000..4116fb276f Binary files /dev/null and b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/deluxe-3.png differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/deluxe-4.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/deluxe-4.png new file mode 100644 index 0000000000..a67f6e50c7 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/deluxe-4.png differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/deluxe.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/deluxe.png deleted file mode 100644 index f5e0a9c951..0000000000 Binary files a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/deluxe.png and /dev/null differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/gibs-1.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/gibs-1.png new file mode 100644 index 0000000000..1afa3da7c5 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/gibs-1.png differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/gibs-2.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/gibs-2.png new file mode 100644 index 0000000000..782c835f84 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/gibs-2.png differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/gibs-3.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/gibs-3.png new file mode 100644 index 0000000000..8de6e87bab Binary files /dev/null and b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/gibs-3.png differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/gibs-4.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/gibs-4.png new file mode 100644 index 0000000000..5347d4d70a Binary files /dev/null and b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/gibs-4.png differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/gibs.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/gibs.png deleted file mode 100644 index 5640e0e836..0000000000 Binary files a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/gibs.png and /dev/null differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/meta.json b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/meta.json index c6cd1086d7..ce6de2f88f 100644 --- a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/meta.json @@ -8,22 +8,79 @@ }, "states": [ { - "name": "soap" + "name": "soap-1" }, { - "name": "deluxe" + "name": "soap-2" }, { - "name": "gibs" + "name": "soap-3" }, { - "name": "nt" + "name": "soap-4" }, { - "name": "omega" + "name": "deluxe-1" }, { - "name": "syndie" + "name": "deluxe-2" + }, + { + "name": "deluxe-3" + }, + { + "name": "deluxe-4" + }, + { + "name": "gibs-1" + }, + { + "name": "gibs-2" + }, + { + "name": "gibs-3" + }, + { + "name": "gibs-4" + }, + { + "name": "nt-1" + }, + { + "name": "nt-2" + }, + { + "name": "nt-3" + }, + { + "name": "nt-4" + }, + { + "name": "omega-1" + }, + { + "name": "omega-2" + }, + { + "name": "omega-3" + }, + { + "name": "omega-4" + }, + { + "name": "syndie-1" + }, + { + "name": "syndie-2" + }, + { + "name": "syndie-3" + }, + { + "name": "syndie-4" + }, + { + "name": "syndie-soaplet" }, { "name": "inhand-left", diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/nt-1.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/nt-1.png new file mode 100644 index 0000000000..a75d5dffab Binary files /dev/null and b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/nt-1.png differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/nt-2.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/nt-2.png new file mode 100644 index 0000000000..515577e087 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/nt-2.png differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/nt-3.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/nt-3.png new file mode 100644 index 0000000000..3846f70fe3 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/nt-3.png differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/nt-4.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/nt-4.png new file mode 100644 index 0000000000..bdce46f675 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/nt-4.png differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/nt.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/nt.png deleted file mode 100644 index 1f02e35820..0000000000 Binary files a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/nt.png and /dev/null differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/omega-1.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/omega-1.png new file mode 100644 index 0000000000..173c995dee Binary files /dev/null and b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/omega-1.png differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/omega-2.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/omega-2.png new file mode 100644 index 0000000000..7f94298ce6 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/omega-2.png differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/omega-3.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/omega-3.png new file mode 100644 index 0000000000..90d8c0a0ca Binary files /dev/null and b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/omega-3.png differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/omega.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/omega-4.png similarity index 100% rename from Resources/Textures/Objects/Specific/Janitorial/soap.rsi/omega.png rename to Resources/Textures/Objects/Specific/Janitorial/soap.rsi/omega-4.png diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/soap-1.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/soap-1.png new file mode 100644 index 0000000000..355354a494 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/soap-1.png differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/soap-2.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/soap-2.png new file mode 100644 index 0000000000..4f3dab8298 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/soap-2.png differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/soap-3.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/soap-3.png new file mode 100644 index 0000000000..cc0c26f4ca Binary files /dev/null and b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/soap-3.png differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/soap-4.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/soap-4.png new file mode 100644 index 0000000000..c97059af86 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/soap-4.png differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/soap.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/soap.png deleted file mode 100644 index 3f82c55990..0000000000 Binary files a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/soap.png and /dev/null differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/syndie-1.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/syndie-1.png new file mode 100644 index 0000000000..cdb20008cc Binary files /dev/null and b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/syndie-1.png differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/syndie-2.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/syndie-2.png new file mode 100644 index 0000000000..d769bffc81 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/syndie-2.png differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/syndie-3.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/syndie-3.png new file mode 100644 index 0000000000..b1c4349685 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/syndie-3.png differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/syndie-4.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/syndie-4.png new file mode 100644 index 0000000000..a254bef8c3 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/syndie-4.png differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/syndie-soaplet.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/syndie-soaplet.png new file mode 100644 index 0000000000..b071219781 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/syndie-soaplet.png differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/syndie.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/syndie.png deleted file mode 100644 index 1886ea2481..0000000000 Binary files a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/syndie.png and /dev/null differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/arithpen.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/arithpen.png index 53a96484b4..3f04e24d57 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/arithpen.png and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/arithpen.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/arithpen_empty.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/arithpen_empty.png index f6f5cfb522..09d2c35298 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/arithpen_empty.png and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/arithpen_empty.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/bicpen.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/bicpen.png index 599026eee8..40cb1c0034 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/bicpen.png and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/bicpen.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/bicpen_empty.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/bicpen_empty.png index f959d0449a..f7cec51d03 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/bicpen_empty.png and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/bicpen_empty.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/dermpen.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/dermpen.png index 9eb79b6d92..48348e66b0 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/dermpen.png and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/dermpen.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/dermpen_empty.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/dermpen_empty.png index eca6df5b78..3702b9ba42 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/dermpen_empty.png and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/dermpen_empty.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/firstaid.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/firstaid.png index bc232bc112..f021690c35 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/firstaid.png and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/firstaid.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/firstaid_empty.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/firstaid_empty.png index db0ed1b59c..c33d3049ca 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/firstaid_empty.png and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/firstaid_empty.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/hypovolemic.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/hypovolemic.png index 0034a28756..a1f3cc4777 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/hypovolemic.png and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/hypovolemic.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/hypovolemic_empty.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/hypovolemic_empty.png index db0ed1b59c..80ef6e25df 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/hypovolemic_empty.png and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/hypovolemic_empty.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/medipen.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/medipen.png index e04a689f71..9b518aac52 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/medipen.png and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/medipen.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/medipen_empty.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/medipen_empty.png index db0ed1b59c..fd12e821a1 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/medipen_empty.png and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/medipen_empty.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/meta.json b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/meta.json index 3bf15e0a2e..8e9f54f1d0 100644 --- a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "tgstation at 986af32e22a88dae14fd147d812a5a4d27c1bc30 | stimpen sprites made by PuroSlavKing (Github) for Space Station 14", + "copyright": "tgstation at 986af32e22a88dae14fd147d812a5a4d27c1bc30 | stimpen sprites made by PuroSlavKing (Github) for Space Station 14. Nearly all resprited by joshepvodka", "size": { "x": 32, "y": 32 @@ -10,6 +10,9 @@ { "name": "medipen" }, + { + "name": "medipen_empty" + }, { "name": "firstaid" }, @@ -22,15 +25,18 @@ { "name": "hypovolemic_empty" }, - { - "name": "medipen_empty" - }, { "name": "stimpen" }, { "name": "stimpen_empty" }, + { + "name": "microstimpen" + }, + { + "name": "microstimpen_empty" + }, { "name": "morphen" }, diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/microstimpen.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/microstimpen.png new file mode 100644 index 0000000000..85c89b8ce9 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/microstimpen.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/microstimpen_empty.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/microstimpen_empty.png new file mode 100644 index 0000000000..637d608fba Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/microstimpen_empty.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/morphen.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/morphen.png index da4bcb91b7..3d75ba58ce 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/morphen.png and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/morphen.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/morphen_empty.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/morphen_empty.png index c0e4facda8..d96b7c5e24 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/morphen_empty.png and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/morphen_empty.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/penacid.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/penacid.png index 5c34da6fe2..6c207646ea 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/penacid.png and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/penacid.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/penacid_empty.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/penacid_empty.png index cfb26f09f6..aa98daeb5a 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/penacid_empty.png and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/penacid_empty.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/stimpen.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/stimpen.png index 3a06234bdd..990a1124c1 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/stimpen.png and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/stimpen.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/stimpen_empty.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/stimpen_empty.png index 616377ebb5..695b5ac4e0 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/stimpen_empty.png and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/stimpen_empty.png differ diff --git a/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/equipped-BELT.png b/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/equipped-BELT.png new file mode 100644 index 0000000000..f9cde5ce9f Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/icon.png b/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/icon.png new file mode 100644 index 0000000000..cbf6749b58 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/inhand-left.png b/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/inhand-left.png new file mode 100644 index 0000000000..a0dc828771 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/inhand-right.png b/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/inhand-right.png new file mode 100644 index 0000000000..65683df20d Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/meta.json b/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/meta.json new file mode 100644 index 0000000000..3b28912df0 --- /dev/null +++ b/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/meta.json @@ -0,0 +1,111 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/5ce5a66c814c4a60118d24885389357fd0240002/icons/obj/mining.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "inhand-left", + "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 + ] + ] + }, + { + "name": "inhand-right", + "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 + ] + ] + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-mop-adv.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-mop-adv.png new file mode 100644 index 0000000000..7afd3081ca Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-mop-adv.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/meta.json b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/meta.json index 62f02dda7e..20b8e18b9e 100644 --- a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/meta.json @@ -70,6 +70,9 @@ { "name": "icon-mop" }, + { + "name": "icon-mop-adv" + }, { "name": "icon-musique" }, diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/candle.png b/Resources/Textures/Objects/Storage/boxes.rsi/candle.png new file mode 100644 index 0000000000..05bb8437c0 Binary files /dev/null and b/Resources/Textures/Objects/Storage/boxes.rsi/candle.png differ diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/meta.json b/Resources/Textures/Objects/Storage/boxes.rsi/meta.json index 1af32510df..47c69de027 100644 --- a/Resources/Textures/Objects/Storage/boxes.rsi/meta.json +++ b/Resources/Textures/Objects/Storage/boxes.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/cc65477c04f7403ca8a457bd5bae69a01abadbf0, encryptokey was taken from Baystation12 at https://github.com/infinitystation/Baystation12/blob/073f678cdce92edb8fcd55f9ffc9f0523bf31506/icons/obj/radio.dmi and modified by lapatison. boxwidetoy, shelltoy, swab, flare, inflatable, trashbag, magazine, holo and forensic created by potato1234x (github) for ss14 based on toys.rsi, mouth_swab.rsi, flare.rsi, inflatable_wall.rsi, trashbag.rsi, caseless_pistol_mag.rsi, guardians.rsi and bureaucracy.rsi respectively, darts made by TheShuEd (github) for ss14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/cc65477c04f7403ca8a457bd5bae69a01abadbf0, encryptokey was taken from Baystation12 at https://github.com/infinitystation/Baystation12/blob/073f678cdce92edb8fcd55f9ffc9f0523bf31506/icons/obj/radio.dmi and modified by lapatison. boxwidetoy, shelltoy, swab, flare, inflatable, trashbag, magazine, holo and forensic created by potato1234x (github) for ss14 based on toys.rsi, mouth_swab.rsi, flare.rsi, inflatable_wall.rsi, trashbag.rsi, caseless_pistol_mag.rsi, guardians.rsi and bureaucracy.rsi respectively, candle and darts created by TheShuEd for ss14, vials was drawn by Ubaser.", "size": { "x": 32, "y": 32 @@ -197,8 +197,14 @@ { "name": "ziptie" }, + { + "name": "candle" + }, { "name": "darts" + }, + { + "name": "vials" } ] } diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/nitrile.png b/Resources/Textures/Objects/Storage/boxes.rsi/nitrile.png index f9a46ee99d..61e0c89c96 100644 Binary files a/Resources/Textures/Objects/Storage/boxes.rsi/nitrile.png and b/Resources/Textures/Objects/Storage/boxes.rsi/nitrile.png differ diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/vials.png b/Resources/Textures/Objects/Storage/boxes.rsi/vials.png new file mode 100644 index 0000000000..daf97dc2e4 Binary files /dev/null and b/Resources/Textures/Objects/Storage/boxes.rsi/vials.png differ diff --git a/Resources/Textures/Objects/Storage/boxicons.rsi/meta.json b/Resources/Textures/Objects/Storage/boxicons.rsi/meta.json index 8345f46658..3931b4f610 100644 --- a/Resources/Textures/Objects/Storage/boxicons.rsi/meta.json +++ b/Resources/Textures/Objects/Storage/boxicons.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from baystation at https://github.com/Baystation12/Baystation12/commit/bc9fbb1722530596e3aa7522ee407280b323ad43", + "copyright": "Taken from baystation at https://github.com/Baystation12/Baystation12/commit/bc9fbb1722530596e3aa7522ee407280b323ad43, vials drawn by Ubaser.", "size": { "x": 32, "y": 32 @@ -78,6 +78,9 @@ }, { "name": "ziptie" + }, + { + "name": "vials" } ] } diff --git a/Resources/Textures/Objects/Storage/boxicons.rsi/vials.png b/Resources/Textures/Objects/Storage/boxicons.rsi/vials.png new file mode 100644 index 0000000000..07a428bbb4 Binary files /dev/null and b/Resources/Textures/Objects/Storage/boxicons.rsi/vials.png differ diff --git a/Resources/Textures/Objects/Storage/petcarrier.rsi/icon.png b/Resources/Textures/Objects/Storage/petcarrier.rsi/icon.png new file mode 100644 index 0000000000..a4a3b9f90e Binary files /dev/null and b/Resources/Textures/Objects/Storage/petcarrier.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Storage/petcarrier.rsi/inhand-left.png b/Resources/Textures/Objects/Storage/petcarrier.rsi/inhand-left.png new file mode 100644 index 0000000000..d633c11225 Binary files /dev/null and b/Resources/Textures/Objects/Storage/petcarrier.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Storage/petcarrier.rsi/inhand-right.png b/Resources/Textures/Objects/Storage/petcarrier.rsi/inhand-right.png new file mode 100644 index 0000000000..d633c11225 Binary files /dev/null and b/Resources/Textures/Objects/Storage/petcarrier.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Storage/petcarrier.rsi/meta.json b/Resources/Textures/Objects/Storage/petcarrier.rsi/meta.json new file mode 100644 index 0000000000..0843ad299c --- /dev/null +++ b/Resources/Textures/Objects/Storage/petcarrier.rsi/meta.json @@ -0,0 +1,34 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Taken from TGstation at https://github.com/tgstation/tgstation/commit/8b1ffd1e49a2d30a0aab63264106a3ec0e07f415 and edited by TheShuEd", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "pet_carrier_base" + }, + { + "name": "pet_carrier_door" + }, + { + "name": "pet_carrier_open" + }, + { + "name": "icon" + }, + { + "name": "welded" + } + ] +} diff --git a/Resources/Textures/Objects/Storage/petcarrier.rsi/pet_carrier_base.png b/Resources/Textures/Objects/Storage/petcarrier.rsi/pet_carrier_base.png new file mode 100644 index 0000000000..1b4e86d740 Binary files /dev/null and b/Resources/Textures/Objects/Storage/petcarrier.rsi/pet_carrier_base.png differ diff --git a/Resources/Textures/Objects/Storage/petcarrier.rsi/pet_carrier_door.png b/Resources/Textures/Objects/Storage/petcarrier.rsi/pet_carrier_door.png new file mode 100644 index 0000000000..4208bb961f Binary files /dev/null and b/Resources/Textures/Objects/Storage/petcarrier.rsi/pet_carrier_door.png differ diff --git a/Resources/Textures/Objects/Storage/petcarrier.rsi/pet_carrier_open.png b/Resources/Textures/Objects/Storage/petcarrier.rsi/pet_carrier_open.png new file mode 100644 index 0000000000..3bc200bded Binary files /dev/null and b/Resources/Textures/Objects/Storage/petcarrier.rsi/pet_carrier_open.png differ diff --git a/Resources/Textures/Objects/Storage/petcarrier.rsi/welded.png b/Resources/Textures/Objects/Storage/petcarrier.rsi/welded.png new file mode 100644 index 0000000000..93b9c1dbc8 Binary files /dev/null and b/Resources/Textures/Objects/Storage/petcarrier.rsi/welded.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-BELT.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-BELT.png new file mode 100644 index 0000000000..7e2f947d34 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-cat.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-cat.png new file mode 100644 index 0000000000..249e8f7aee Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-cat.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-dog.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-dog.png new file mode 100644 index 0000000000..b9fc6cb164 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-dog.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-fox.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-fox.png new file mode 100644 index 0000000000..3f885a997d Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-fox.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-hamster.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-hamster.png new file mode 100644 index 0000000000..fb670ee7d1 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-hamster.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-kangaroo.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-kangaroo.png new file mode 100644 index 0000000000..4c9104aa30 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-kangaroo.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-pig.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-pig.png new file mode 100644 index 0000000000..2460c336ea Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-pig.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-possum.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-possum.png new file mode 100644 index 0000000000..bde2d60c8c Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-possum.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-puppy.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-puppy.png new file mode 100644 index 0000000000..e0ada59f71 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-puppy.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-sloth.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-sloth.png new file mode 100644 index 0000000000..38858193a2 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-sloth.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/icon.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/icon.png new file mode 100644 index 0000000000..584a122e5b Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/inhand-left.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/inhand-left.png new file mode 100644 index 0000000000..5a3ef99162 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/inhand-right.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/inhand-right.png new file mode 100644 index 0000000000..a9da66333c Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/meta.json b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/meta.json new file mode 100644 index 0000000000..ce287bf277 --- /dev/null +++ b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/meta.json @@ -0,0 +1,71 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Adapted by DangerRevolution from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE-dog", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-puppy", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-fox", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-cat", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-sloth", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-hamster", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-kangaroo", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-possum", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-pig", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-BELT.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-BELT.png new file mode 100644 index 0000000000..0470c6895f Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-cat.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-cat.png new file mode 100644 index 0000000000..55cd899faf Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-cat.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-dog.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-dog.png new file mode 100644 index 0000000000..820cf0af75 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-dog.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-fox.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-fox.png new file mode 100644 index 0000000000..881effe79c Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-fox.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-hamster.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-hamster.png new file mode 100644 index 0000000000..95fbac61b9 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-hamster.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-kangaroo.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-kangaroo.png new file mode 100644 index 0000000000..266b03c4ae Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-kangaroo.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-pig.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-pig.png new file mode 100644 index 0000000000..dfe35d0579 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-pig.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-possum.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-possum.png new file mode 100644 index 0000000000..34993de6d8 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-possum.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-puppy.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-puppy.png new file mode 100644 index 0000000000..423fcfbcd3 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-puppy.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-sloth.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-sloth.png new file mode 100644 index 0000000000..9bf4168ae8 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-sloth.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/icon.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/icon.png new file mode 100644 index 0000000000..ab8bebedb6 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/inhand-left.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/inhand-left.png new file mode 100644 index 0000000000..ad6e0f9bea Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/inhand-right.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/inhand-right.png new file mode 100644 index 0000000000..4983a573c3 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/meta.json b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/meta.json new file mode 100644 index 0000000000..a1661aee78 --- /dev/null +++ b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/meta.json @@ -0,0 +1,71 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE-dog", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-puppy", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-fox", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-cat", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-sloth", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-hamster", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-kangaroo", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-possum", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-pig", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-BELT.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-BELT.png new file mode 100644 index 0000000000..db800b2a3b Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-cat.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-cat.png new file mode 100644 index 0000000000..77933570cd Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-cat.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-dog.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-dog.png new file mode 100644 index 0000000000..77933570cd Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-dog.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-fox.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-fox.png new file mode 100644 index 0000000000..49150ee5d8 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-fox.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-hamster.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-hamster.png new file mode 100644 index 0000000000..9f97568f93 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-hamster.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-kangaroo.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-kangaroo.png new file mode 100644 index 0000000000..f13fb2eddd Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-kangaroo.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-pig.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-pig.png new file mode 100644 index 0000000000..3cf22a033d Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-pig.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-possum.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-possum.png new file mode 100644 index 0000000000..3edb64e81d Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-possum.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-puppy.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-puppy.png new file mode 100644 index 0000000000..6299351012 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-puppy.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-sloth.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-sloth.png new file mode 100644 index 0000000000..a59cce10b5 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-sloth.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/icon.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/icon.png new file mode 100644 index 0000000000..8ea77e5c6c Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/inhand-left.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/inhand-left.png new file mode 100644 index 0000000000..0f43ae1d6b Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/inhand-right.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/inhand-right.png new file mode 100644 index 0000000000..faf0d3df8b Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/meta.json b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/meta.json new file mode 100644 index 0000000000..ce287bf277 --- /dev/null +++ b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/meta.json @@ -0,0 +1,71 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Adapted by DangerRevolution from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE-dog", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-puppy", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-fox", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-cat", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-sloth", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-hamster", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-kangaroo", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-possum", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-pig", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-BELT.png b/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-BELT.png new file mode 100644 index 0000000000..db800b2a3b Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE-cat.png b/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE-cat.png new file mode 100644 index 0000000000..77933570cd Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE-cat.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE-dog.png b/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE-dog.png new file mode 100644 index 0000000000..77933570cd Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE-dog.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE-fox.png b/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE-fox.png new file mode 100644 index 0000000000..49150ee5d8 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE-fox.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE-hamster.png b/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE-hamster.png new file mode 100644 index 0000000000..9f97568f93 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE-hamster.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE-kangaroo.png b/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE-kangaroo.png new file mode 100644 index 0000000000..f13fb2eddd Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE-kangaroo.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE-pig.png b/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE-pig.png new file mode 100644 index 0000000000..3cf22a033d Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE-pig.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE-possum.png b/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE-possum.png new file mode 100644 index 0000000000..3edb64e81d Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE-possum.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE-puppy.png b/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE-puppy.png new file mode 100644 index 0000000000..6299351012 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE-puppy.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE-sloth.png b/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE-sloth.png new file mode 100644 index 0000000000..a59cce10b5 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE-sloth.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_red.rsi/icon.png b/Resources/Textures/Objects/Tanks/emergency_red.rsi/icon.png new file mode 100644 index 0000000000..4fd5f559ac Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_red.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_red.rsi/inhand-left.png b/Resources/Textures/Objects/Tanks/emergency_red.rsi/inhand-left.png new file mode 100644 index 0000000000..0f43ae1d6b Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_red.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_red.rsi/inhand-right.png b/Resources/Textures/Objects/Tanks/emergency_red.rsi/inhand-right.png new file mode 100644 index 0000000000..faf0d3df8b Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_red.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_red.rsi/meta.json b/Resources/Textures/Objects/Tanks/emergency_red.rsi/meta.json new file mode 100644 index 0000000000..ce3d401ca2 --- /dev/null +++ b/Resources/Textures/Objects/Tanks/emergency_red.rsi/meta.json @@ -0,0 +1,71 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Adapted by DangerRevolution from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE-dog", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-kangaroo", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-puppy", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-fox", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-cat", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-sloth", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-possum", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-pig", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "equipped-SUITSTORAGE-hamster", + "directions": 4, + "delays": [[1],[1],[1],[1]] + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/astrograss.png b/Resources/Textures/Objects/Tiles/tile.rsi/astrograss.png new file mode 100644 index 0000000000..14d2f9ef84 Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/astrograss.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/astroice.png b/Resources/Textures/Objects/Tiles/tile.rsi/astroice.png new file mode 100644 index 0000000000..e17ee0500b Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/astroice.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/lime.png b/Resources/Textures/Objects/Tiles/tile.rsi/lime.png new file mode 100644 index 0000000000..f3ad764ade Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/lime.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/meta.json b/Resources/Textures/Objects/Tiles/tile.rsi/meta.json index 26be33981a..05aeba33fd 100644 --- a/Resources/Textures/Objects/Tiles/tile.rsi/meta.json +++ b/Resources/Textures/Objects/Tiles/tile.rsi/meta.json @@ -37,6 +37,42 @@ { "name": "blue" }, + { + "name": "lime" + }, + { + "name": "mining" + }, + { + "name": "mining-inhand-right", + "directions": 4 + }, + { + "name": "mining-inhand-left", + "directions": 4 + }, + { + "name": "miningdark" + }, + { + "name": "miningdark-inhand-right", + "directions": 4 + }, + { + "name": "miningdark-inhand-left", + "directions": 4 + }, + { + "name": "mininglight" + }, + { + "name": "mininglight-inhand-right", + "directions": 4 + }, + { + "name": "mininglight-inhand-left", + "directions": 4 + }, { "name": "clown" }, @@ -183,6 +219,12 @@ { "name": "woodpatternfloor" }, + { + "name": "astrograss" + }, + { + "name": "astroice" + }, { "name": "bcircuit-inhand-left", "directions": 4 diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/mining-inhand-left.png b/Resources/Textures/Objects/Tiles/tile.rsi/mining-inhand-left.png new file mode 100644 index 0000000000..8fdad7bbf0 Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/mining-inhand-left.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/mining-inhand-right.png b/Resources/Textures/Objects/Tiles/tile.rsi/mining-inhand-right.png new file mode 100644 index 0000000000..4cbf66b77c Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/mining-inhand-right.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/mining.png b/Resources/Textures/Objects/Tiles/tile.rsi/mining.png new file mode 100644 index 0000000000..e907544d4c Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/mining.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/miningdark-inhand-left.png b/Resources/Textures/Objects/Tiles/tile.rsi/miningdark-inhand-left.png new file mode 100644 index 0000000000..8fdad7bbf0 Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/miningdark-inhand-left.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/miningdark-inhand-right.png b/Resources/Textures/Objects/Tiles/tile.rsi/miningdark-inhand-right.png new file mode 100644 index 0000000000..4cbf66b77c Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/miningdark-inhand-right.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/miningdark.png b/Resources/Textures/Objects/Tiles/tile.rsi/miningdark.png new file mode 100644 index 0000000000..22e497031f Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/miningdark.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/mininglight-inhand-left.png b/Resources/Textures/Objects/Tiles/tile.rsi/mininglight-inhand-left.png new file mode 100644 index 0000000000..8fdad7bbf0 Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/mininglight-inhand-left.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/mininglight-inhand-right.png b/Resources/Textures/Objects/Tiles/tile.rsi/mininglight-inhand-right.png new file mode 100644 index 0000000000..4cbf66b77c Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/mininglight-inhand-right.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/mininglight.png b/Resources/Textures/Objects/Tiles/tile.rsi/mininglight.png new file mode 100644 index 0000000000..af1e491c69 Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/mininglight.png differ diff --git a/Resources/Textures/Objects/Tools/access_configurator.rsi/equipped-BELT.png b/Resources/Textures/Objects/Tools/access_configurator.rsi/equipped-BELT.png index dfa1aeb1b4..3b57ed39b1 100644 Binary files a/Resources/Textures/Objects/Tools/access_configurator.rsi/equipped-BELT.png and b/Resources/Textures/Objects/Tools/access_configurator.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Tools/access_configurator.rsi/icon.png b/Resources/Textures/Objects/Tools/access_configurator.rsi/icon.png index 62230b0b37..b08a74a6a5 100644 Binary files a/Resources/Textures/Objects/Tools/access_configurator.rsi/icon.png and b/Resources/Textures/Objects/Tools/access_configurator.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Tools/access_configurator.rsi/inhand-left.png b/Resources/Textures/Objects/Tools/access_configurator.rsi/inhand-left.png index 7e17df650a..0ed77d8a65 100644 Binary files a/Resources/Textures/Objects/Tools/access_configurator.rsi/inhand-left.png and b/Resources/Textures/Objects/Tools/access_configurator.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Tools/access_configurator.rsi/inhand-right.png b/Resources/Textures/Objects/Tools/access_configurator.rsi/inhand-right.png index 4794468564..1391120e28 100644 Binary files a/Resources/Textures/Objects/Tools/access_configurator.rsi/inhand-right.png and b/Resources/Textures/Objects/Tools/access_configurator.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Tools/handdrill.rsi/inhand-left.png b/Resources/Textures/Objects/Tools/handdrill.rsi/inhand-left.png new file mode 100644 index 0000000000..048627b8c5 Binary files /dev/null and b/Resources/Textures/Objects/Tools/handdrill.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Tools/handdrill.rsi/inhand-right.png b/Resources/Textures/Objects/Tools/handdrill.rsi/inhand-right.png new file mode 100644 index 0000000000..1dedea40e8 Binary files /dev/null and b/Resources/Textures/Objects/Tools/handdrill.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Tools/handdrill.rsi/meta.json b/Resources/Textures/Objects/Tools/handdrill.rsi/meta.json index d31b77623a..54384696f6 100644 --- a/Resources/Textures/Objects/Tools/handdrill.rsi/meta.json +++ b/Resources/Textures/Objects/Tools/handdrill.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-NC-SA-3.0", - "copyright": "Taken from goonstation at commit https://github.com/goonstation/goonstation/commit/2ce04dea2495ed19aeca4b6b42bf59fef2b4dd37", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/8fdee6e4e3dacdb7a12efaac132933dc0fc649b4", "size": { "x": 32, "y": 32 @@ -9,6 +9,14 @@ "states": [ { "name": "handdrill" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 } ] } \ No newline at end of file diff --git a/Resources/Textures/Objects/Tools/scissors.rsi/icon.png b/Resources/Textures/Objects/Tools/scissors.rsi/icon.png new file mode 100644 index 0000000000..b92e522676 Binary files /dev/null and b/Resources/Textures/Objects/Tools/scissors.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Tools/scissors.rsi/meta.json b/Resources/Textures/Objects/Tools/scissors.rsi/meta.json new file mode 100644 index 0000000000..b544b3bc15 --- /dev/null +++ b/Resources/Textures/Objects/Tools/scissors.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by TheShuEd(github) for Space Station 14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/Objects/Tools/spy_device.rsi/icon.png b/Resources/Textures/Objects/Tools/spy_device.rsi/icon.png new file mode 100644 index 0000000000..5c71b3ef75 Binary files /dev/null and b/Resources/Textures/Objects/Tools/spy_device.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Tools/spy_device.rsi/inhand-left.png b/Resources/Textures/Objects/Tools/spy_device.rsi/inhand-left.png new file mode 100644 index 0000000000..9567849b28 Binary files /dev/null and b/Resources/Textures/Objects/Tools/spy_device.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Tools/spy_device.rsi/inhand-right.png b/Resources/Textures/Objects/Tools/spy_device.rsi/inhand-right.png new file mode 100644 index 0000000000..a8b1f97047 Binary files /dev/null and b/Resources/Textures/Objects/Tools/spy_device.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Tools/spy_device.rsi/meta.json b/Resources/Textures/Objects/Tools/spy_device.rsi/meta.json new file mode 100644 index 0000000000..718fde7d58 --- /dev/null +++ b/Resources/Textures/Objects/Tools/spy_device.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "license": "CC-BY-3.0", + "copyright": "Created by TheShuEd(Github) for SS14", + "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/Weapons/Bombs/ied.rsi/base.png b/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/base.png new file mode 100644 index 0000000000..300ee5552a Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/base.png differ diff --git a/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/fuel.png b/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/fuel.png new file mode 100644 index 0000000000..217abeb24f Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/fuel.png differ diff --git a/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/icon.png b/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/icon.png new file mode 100644 index 0000000000..a8c37b9910 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/meta.json b/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/meta.json new file mode 100644 index 0000000000..bf1554bef9 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by deltanedas (github) for SS14, icon and base based on cola sprite from cev-eris", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "fuel" + }, + { + "name": "wires" + }, + { + "name": "primed", + "delays": [ + [ + 0.5, + 0.5 + ] + ] + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/primed.png b/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/primed.png new file mode 100644 index 0000000000..48826776b1 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/primed.png differ diff --git a/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/wires.png b/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/wires.png new file mode 100644 index 0000000000..bfc9beed6d Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/wires.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/clusterbang.rsi/icon.png b/Resources/Textures/Objects/Weapons/Grenades/clusterbang.rsi/icon.png new file mode 100644 index 0000000000..18a1d3042c Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/clusterbang.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/clusterbang.rsi/meta.json b/Resources/Textures/Objects/Weapons/Grenades/clusterbang.rsi/meta.json index 01b494cc95..c017ee2117 100644 --- a/Resources/Textures/Objects/Weapons/Grenades/clusterbang.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Grenades/clusterbang.rsi/meta.json @@ -22,6 +22,19 @@ { "name": "base-3", "directions": 1 + }, + { + "name": "icon", + "directions": 1 + }, + { + "name": "primed", + "delays": [ + [ + 0.1, + 0.1 + ] + ] } ] } diff --git a/Resources/Textures/Objects/Weapons/Grenades/clusterbang.rsi/primed.png b/Resources/Textures/Objects/Weapons/Grenades/clusterbang.rsi/primed.png new file mode 100644 index 0000000000..7ce992cde8 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/clusterbang.rsi/primed.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/base-1.png b/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/base-1.png new file mode 100644 index 0000000000..d28cae5a6b Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/base-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/base-2.png b/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/base-2.png new file mode 100644 index 0000000000..392d6981b4 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/base-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/icon.png b/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/icon.png new file mode 100644 index 0000000000..7b4ccd1c0f Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/meta.json b/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/meta.json new file mode 100644 index 0000000000..a4d1e8aeb9 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation and modified by Swept at https://github.com/tgstation/tgstation/commit/29c0ed1b000619cb5398ef921000a8d4502ba0b6 and modified by Swept", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "base-1" + }, + { + "name": "base-2" + }, + { + "name": "primed", + "delays": [ + [ + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/primed.png b/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/primed.png new file mode 100644 index 0000000000..b3383c172d Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/primed.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/pyrogrenade.rsi/equipped-BELT.png b/Resources/Textures/Objects/Weapons/Grenades/pyrogrenade.rsi/equipped-BELT.png new file mode 100644 index 0000000000..20d341ef8c Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/pyrogrenade.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/pyrogrenade.rsi/icon.png b/Resources/Textures/Objects/Weapons/Grenades/pyrogrenade.rsi/icon.png new file mode 100644 index 0000000000..50421bf708 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/pyrogrenade.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/pyrogrenade.rsi/meta.json b/Resources/Textures/Objects/Weapons/Grenades/pyrogrenade.rsi/meta.json new file mode 100644 index 0000000000..28d3e6969a --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Grenades/pyrogrenade.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/b13d244d761a07e200a9a41730bd446e776020d5", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "primed", + "delays": [ + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "equipped-BELT", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Grenades/pyrogrenade.rsi/primed.png b/Resources/Textures/Objects/Weapons/Grenades/pyrogrenade.rsi/primed.png new file mode 100644 index 0000000000..fbe975391a Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/pyrogrenade.rsi/primed.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/shrapnelgrenade.rsi/equipped-BELT.png b/Resources/Textures/Objects/Weapons/Grenades/shrapnelgrenade.rsi/equipped-BELT.png new file mode 100644 index 0000000000..3b76c4e57f Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/shrapnelgrenade.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/shrapnelgrenade.rsi/icon.png b/Resources/Textures/Objects/Weapons/Grenades/shrapnelgrenade.rsi/icon.png new file mode 100644 index 0000000000..5bb1563118 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/shrapnelgrenade.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/shrapnelgrenade.rsi/meta.json b/Resources/Textures/Objects/Weapons/Grenades/shrapnelgrenade.rsi/meta.json new file mode 100644 index 0000000000..28d3e6969a --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Grenades/shrapnelgrenade.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/b13d244d761a07e200a9a41730bd446e776020d5", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "primed", + "delays": [ + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "equipped-BELT", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Grenades/shrapnelgrenade.rsi/primed.png b/Resources/Textures/Objects/Weapons/Grenades/shrapnelgrenade.rsi/primed.png new file mode 100644 index 0000000000..2369617cd3 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/shrapnelgrenade.rsi/primed.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/smoke.rsi/icon.png b/Resources/Textures/Objects/Weapons/Grenades/smoke.rsi/icon.png new file mode 100644 index 0000000000..c6365e6404 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/smoke.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/smoke.rsi/meta.json b/Resources/Textures/Objects/Weapons/Grenades/smoke.rsi/meta.json new file mode 100644 index 0000000000..525248ce94 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Grenades/smoke.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/524270a5bcc1e0ea844b98c5a204986cec9721ac/icons/obj/weapons/grenade.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "primed" + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Grenades/smoke.rsi/primed.png b/Resources/Textures/Objects/Weapons/Grenades/smoke.rsi/primed.png new file mode 100644 index 0000000000..ef7ca55e19 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/smoke.rsi/primed.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/equipped-BELT.png b/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/equipped-BELT.png new file mode 100644 index 0000000000..85a06f2d4d Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/icon.png b/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/icon.png new file mode 100644 index 0000000000..1fae857453 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/meta.json b/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/meta.json new file mode 100644 index 0000000000..28d3e6969a --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/b13d244d761a07e200a9a41730bd446e776020d5", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "primed", + "delays": [ + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "equipped-BELT", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/primed.png b/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/primed.png new file mode 100644 index 0000000000..32d39cb89f Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/primed.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/tear_gas.rsi/icon.png b/Resources/Textures/Objects/Weapons/Grenades/tear_gas.rsi/icon.png new file mode 100644 index 0000000000..e3980eaf10 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/tear_gas.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/tear_gas.rsi/meta.json b/Resources/Textures/Objects/Weapons/Grenades/tear_gas.rsi/meta.json new file mode 100644 index 0000000000..60b919588c --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Grenades/tear_gas.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/524270a5bcc1e0ea844b98c5a204986cec9721ac/icons/obj/weapons/grenade.dmi and modified by deltanedas (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "primed" + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Grenades/tear_gas.rsi/primed.png b/Resources/Textures/Objects/Weapons/Grenades/tear_gas.rsi/primed.png new file mode 100644 index 0000000000..ca49e02fe3 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/tear_gas.rsi/primed.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Casings/shotgun_shell.rsi/depleted-uranium-spent.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Casings/shotgun_shell.rsi/depleted-uranium-spent.png new file mode 100644 index 0000000000..f9e579ef05 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Casings/shotgun_shell.rsi/depleted-uranium-spent.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Casings/shotgun_shell.rsi/depleted-uranium.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Casings/shotgun_shell.rsi/depleted-uranium.png new file mode 100644 index 0000000000..a2f639b297 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Casings/shotgun_shell.rsi/depleted-uranium.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Casings/shotgun_shell.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Casings/shotgun_shell.rsi/meta.json index 805f5c2cf9..9274592a7f 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Casings/shotgun_shell.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Casings/shotgun_shell.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/e1d495c3faf4642b6ec1c4be8acc7cd5bc51d785/icons/obj/ammo.dmi, improvised ammo from https://github.com/tgstation/tgstation/ at commit fb2d71495bfe81446159ef528534193d09dd8d34", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/e1d495c3faf4642b6ec1c4be8acc7cd5bc51d785/icons/obj/ammo.dmi, improvised ammo from https://github.com/tgstation/tgstation/ at commit fb2d71495bfe81446159ef528534193d09dd8d34, uranium ammo is a modification of the slug sprite by Boaz1111", "states": [ { "name": "base" @@ -54,6 +54,12 @@ }, { "name": "slug-spent" + }, + { + "name": "depleted-uranium" + }, + { + "name": "depleted-uranium-spent" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Explosives/explosives.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Explosives/explosives.rsi/meta.json index 5a58b6b608..bfdf73fe57 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Explosives/explosives.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Explosives/explosives.rsi/meta.json @@ -29,4 +29,4 @@ "name": "spent" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/laser_cannon.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Battery/laser_cannon.rsi/equipped-BACKPACK.png index aff8583f5e..c58b7e3c45 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Battery/laser_cannon.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/Battery/laser_cannon.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/laser_cannon.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Battery/laser_cannon.rsi/meta.json index eb436502d5..d002675273 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Battery/laser_cannon.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Battery/laser_cannon.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/125c975f1b3bf9826b37029e9ab5a5f89e975a7e, backpack sprite by Peptide", + "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/125c975f1b3bf9826b37029e9ab5a5f89e975a7e, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/laser_gun.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Battery/laser_gun.rsi/equipped-BACKPACK.png index b2c3f009b3..e511f1379e 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Battery/laser_gun.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/Battery/laser_gun.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/laser_gun.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Battery/laser_gun.rsi/meta.json index f96746633c..4c6f32507b 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Battery/laser_gun.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Battery/laser_gun.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from Polaris at https://github.com/PolarisSS13/Polaris/commit/9ded73fb85b9106d6bbf1c9a34d1d2fa27ee0e2e, backpack sprite by Peptide", + "copyright": "Taken from Polaris at https://github.com/PolarisSS13/Polaris/commit/9ded73fb85b9106d6bbf1c9a34d1d2fa27ee0e2e, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/makeshift.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Battery/makeshift.rsi/equipped-BACKPACK.png index 64ba5562e4..2e4445adfa 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Battery/makeshift.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/Battery/makeshift.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/makeshift.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Battery/makeshift.rsi/meta.json index b287e22011..897d4233af 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Battery/makeshift.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Battery/makeshift.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/1b6831dab1e1a74c0d91f2229adb87abbb089d31, backpack sprite by Peptide", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/1b6831dab1e1a74c0d91f2229adb87abbb089d31, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_carbine.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_carbine.rsi/equipped-BACKPACK.png index a3a64a1b00..5ac3c6c8c4 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_carbine.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_carbine.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_carbine.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_carbine.rsi/meta.json index ea9289cea4..159cf411e0 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_carbine.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_carbine.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/27386/commits/4814da0f8e0d88f430c8b335e541e0a7734755a2 backpack sprite by Peptide (copy of pulse rifle)", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/27386/commits/4814da0f8e0d88f430c8b335e541e0a7734755a2 backpack sprite by Peptide (copy of pulse rifle), backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_rifle.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_rifle.rsi/equipped-BACKPACK.png index a3a64a1b00..e13760d4eb 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_rifle.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_rifle.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_rifle.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_rifle.rsi/meta.json index dbe738ae80..fd779f5a3a 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_rifle.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_rifle.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/27386/commits/4814da0f8e0d88f430c8b335e541e0a7734755a2, backpack sprite by Peptide", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/27386/commits/4814da0f8e0d88f430c8b335e541e0a7734755a2, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/xray.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Battery/xray.rsi/equipped-BACKPACK.png index 04c21a5440..6ae9d358cd 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Battery/xray.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/Battery/xray.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/xray.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Battery/xray.rsi/meta.json index c8609f2152..a0c1ca8b1d 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Battery/xray.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Battery/xray.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/167a810bc8534a56c74ffa8f1373acd3b1ac70ee/icons/obj/guns/energy/xray.dmi, backpack sprite by peptide", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/167a810bc8534a56c74ffa8f1373acd3b1ac70ee/icons/obj/guns/energy/xray.dmi, backpack sprite by peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Cannons/pie_cannon.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Cannons/pie_cannon.rsi/equipped-BACKPACK.png index 77cbcee447..08b657e2a6 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Cannons/pie_cannon.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/Cannons/pie_cannon.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Cannons/pie_cannon.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Cannons/pie_cannon.rsi/meta.json index 0ecd199786..1509c2c975 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Cannons/pie_cannon.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Cannons/pie_cannon.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation at dc9cef40447ee86c2b9fff9f690385cd63b655fa, backpack sprite by peptide", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation at dc9cef40447ee86c2b9fff9f690385cd63b655fa, backpack sprite by peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Cannons/pneumatic_cannon.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Cannons/pneumatic_cannon.rsi/equipped-BACKPACK.png index 322aa6a719..2457b212c3 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Cannons/pneumatic_cannon.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/Cannons/pneumatic_cannon.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Cannons/pneumatic_cannon.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Cannons/pneumatic_cannon.rsi/meta.json index 7bd3c1f786..002adee87c 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Cannons/pneumatic_cannon.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Cannons/pneumatic_cannon.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation at b2e5316993806b1524ab81237b1735b0591df2a2, backpack sprite by peptide", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation at b2e5316993806b1524ab81237b1735b0591df2a2, backpack sprite by peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/equipped-BACKPACK.png index 8d2be6b881..66bba2db27 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/meta.json index 7dc67f28bd..8cd2e3fe7b 100644 --- a/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/237d8f7894617007d75c71d5d9feb4354c78debd/icons/obj/guns/lmg.dmi, backpack sprite by Peptide", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/237d8f7894617007d75c71d5d9feb4354c78debd/icons/obj/guns/lmg.dmi, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/china_lake.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Launchers/china_lake.rsi/equipped-BACKPACK.png index 30a5475a42..63c4bdf3d6 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Launchers/china_lake.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/Launchers/china_lake.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/china_lake.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Launchers/china_lake.rsi/meta.json index b7d464cbb7..9a5cf766c7 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Launchers/china_lake.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Launchers/china_lake.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/pull/6042/commits/64916c98f4847acc4adf3a2416bf78c005fd7dd7, https://github.com/discordia-space/CEV-Eris/blob/master/icons/obj/guns/launcher/grenadelauncher.dmi, backpack sprite by Peptide", + "copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/pull/6042/commits/64916c98f4847acc4adf3a2416bf78c005fd7dd7, https://github.com/discordia-space/CEV-Eris/blob/master/icons/obj/guns/launcher/grenadelauncher.dmi, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/rocket.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Launchers/rocket.rsi/equipped-BACKPACK.png index f8458af21e..42d58d9d37 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Launchers/rocket.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/Launchers/rocket.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/rocket.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Launchers/rocket.rsi/meta.json index bbc0335401..8f0a2fed6e 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Launchers/rocket.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Launchers/rocket.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken/modified from tgstation at https://github.com/tgstation/tgstation/pull/21818/commits/8959238828600d01ee7c8165a0dd29007570a454, backpack sprite by Peptide", + "copyright": "Taken/modified from tgstation at https://github.com/tgstation/tgstation/pull/21818/commits/8959238828600d01ee7c8165a0dd29007570a454, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles2.rsi/depleted-uranium.png b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles2.rsi/depleted-uranium.png new file mode 100644 index 0000000000..44459c7a78 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles2.rsi/depleted-uranium.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles2.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles2.rsi/meta.json index f9825de1a4..5c5a22fce1 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles2.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles2.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/56cbafd6ad8c013ccd5472d6c4a0db790f7f872a, ball made by brainfood1183 (Github) for ss14", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/56cbafd6ad8c013ccd5472d6c4a0db790f7f872a, ball made by brainfood1183 (Github) for ss14, the uranium sprite is a modified version of the buckshot pellet by Boaz1111", "size": { "x": 32, "y": 32 @@ -13,6 +13,9 @@ { "name": "buckshot-flare" }, + { + "name": "depleted-uranium" + }, { "name": "ball" }, @@ -53,4 +56,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/ak.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/ak.rsi/equipped-BACKPACK.png index 38a0117dc5..d20bca74f5 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Rifles/ak.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/Rifles/ak.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/ak.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Rifles/ak.rsi/meta.json index 5f57a1e7a6..12a95021c6 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Rifles/ak.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Rifles/ak.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/pull/6042/commits/64916c98f4847acc4adf3a2416bf78c005fd7dd7, https://github.com/discordia-space/CEV-Eris/raw/e1a3cbe9ba2e6e29b7f1cad1bb456b390aac936d/icons/obj/guns/projectile.dmi, backpack sprite by Peptide", + "copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/pull/6042/commits/64916c98f4847acc4adf3a2416bf78c005fd7dd7, https://github.com/discordia-space/CEV-Eris/raw/e1a3cbe9ba2e6e29b7f1cad1bb456b390aac936d/icons/obj/guns/projectile.dmi, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/carbine.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/carbine.rsi/equipped-BACKPACK.png index ea6b63ddf8..8e2f1548b1 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Rifles/carbine.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/Rifles/carbine.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/carbine.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Rifles/carbine.rsi/meta.json index 9c6c4cdeab..eae8c0dd9a 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Rifles/carbine.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Rifles/carbine.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from Polaris at https://github.com/PolarisSS13/Polaris/commit/ff87150c3dfc387c46db7d1c956abf19ddff7819, backpack sprite by Peptide", + "copyright": "Taken from Polaris at https://github.com/PolarisSS13/Polaris/commit/ff87150c3dfc387c46db7d1c956abf19ddff7819, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/equipped-BACKPACK.png index ea6b63ddf8..7e73d94ffa 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/meta.json index bfcf15bd15..955dc6e8bf 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken/modified from tgstation at https://github.com/tgstation/tgstation/pull/41393/commits/1e56473177d0994d163c9edca3d13d6e5b640cc4, https://github.com/tgstation/tgstation/tree/master/icons/obj/weapons/guns backpack sprite by Peptide (copy of carbine)", + "copyright": "Taken/modified from tgstation at https://github.com/tgstation/tgstation/pull/41393/commits/1e56473177d0994d163c9edca3d13d6e5b640cc4, https://github.com/tgstation/tgstation/tree/master/icons/obj/weapons/guns backpack sprite by Peptide (copy of carbine), backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/atreides.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/atreides.rsi/equipped-BACKPACK.png index f8731ca83f..17384b5857 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/SMGs/atreides.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/SMGs/atreides.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/atreides.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/SMGs/atreides.rsi/meta.json index 31389e9102..4ed311cb4a 100644 --- a/Resources/Textures/Objects/Weapons/Guns/SMGs/atreides.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/SMGs/atreides.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/58c39351887ee7f3793d96fafa28238ff693756f, equipped-BACKPACK modified by Peptide", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/58c39351887ee7f3793d96fafa28238ff693756f, equipped-BACKPACK modified by Peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/c20r.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/c20r.rsi/equipped-BACKPACK.png index fec8e07503..caac143bc4 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/SMGs/c20r.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/SMGs/c20r.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/c20r.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/SMGs/c20r.rsi/meta.json index 979ecfc388..ef54ce952a 100644 --- a/Resources/Textures/Objects/Weapons/Guns/SMGs/c20r.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/SMGs/c20r.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken/modified from tgstation at https://github.com/tgstation/tgstation/pull/41804/commits/1baf679a544505960cebd071425f1df60669cdf3, backpack sprite by Peptide", + "copyright": "Taken/modified from tgstation at https://github.com/tgstation/tgstation/pull/41804/commits/1baf679a544505960cebd071425f1df60669cdf3, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/equipped-BACKPACK.png index 29687171f9..38a2686dfb 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/meta.json index 1109258b60..cbdbfefd14 100644 --- a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/56cbafd6ad8c013ccd5472d6c4a0db790f7f872a/icons/obj/guns/projectile/drozd.dmi, sprite modification by Jaсkal 298/TaralGit", + "copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/56cbafd6ad8c013ccd5472d6c4a0db790f7f872a/icons/obj/guns/projectile/drozd.dmi, sprite modification by Jaсkal 298/TaralGit, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/equipped-BACKPACK.png index f8731ca83f..061f8bdae9 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/meta.json index 099ca8bc55..66274aa8a6 100644 --- a/Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken/modified vgstation at https://github.com/vgstation-coders/vgstation13/pull/20330/commits/1604c9cc61a48585e25b5f9eba3e179c06362372, backpack sprite by Peptide (copy of Atreides)", + "copyright": "Taken/modified vgstation at https://github.com/vgstation-coders/vgstation13/pull/20330/commits/1604c9cc61a48585e25b5f9eba3e179c06362372, backpack sprite by Peptide (copy of Atreides), backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/wt550.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/wt550.rsi/equipped-BACKPACK.png index 351a991c35..ee46b3bcf7 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/SMGs/wt550.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/SMGs/wt550.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/wt550.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/SMGs/wt550.rsi/meta.json index 07b4b46efb..8de70644d1 100644 --- a/Resources/Textures/Objects/Weapons/Guns/SMGs/wt550.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/SMGs/wt550.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/e1a3cbe9ba2e6e29b7f1cad1bb456b390aac936d/icons/obj/guns/projectile.dmi, backpack sprite by Peptide (copy of Atreides), and sprite modification by Jaсkal 298", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/e1a3cbe9ba2e6e29b7f1cad1bb456b390aac936d/icons/obj/guns/projectile.dmi, backpack sprite by Peptide (copy of Atreides), and sprite modification by Jaсkal 298, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/bulldog.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/bulldog.rsi/equipped-BACKPACK.png index a18a000811..c325b84c7e 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Shotguns/bulldog.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/bulldog.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/bulldog.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/bulldog.rsi/meta.json index fe7b4c0449..607db55835 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Shotguns/bulldog.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/bulldog.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/1b6831dab1e1a74c0d91f2229adb87abbb089d31, backpack sprite by Peptide", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/1b6831dab1e1a74c0d91f2229adb87abbb089d31, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/bolt-open.png index dcbe062978..f593424bf5 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/bolt-open.png and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/equipped-BACKPACK.png index 10e436d269..79fe8aa7cd 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/icon.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/icon.png index 24d2679270..c14175daad 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/icon.png and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/meta.json index 33e5cae834..7408c3f4ac 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-NC-4.0", - "copyright": "Taken from TerraGov Marine Corps at https://github.com/tgstation/TerraGov-Marine-Corps/pull/7678/commits/e7bc17b894aa4c1f882358016346c3be00236df8, https://github.com/tgstation/TerraGov-Marine-Corps/blob/master/icons/obj/items/gun.dmi, backpack sprite by Peptide, sprite modification by Jaсkal 298", + "copyright": "Taken from https://github.com/tgstation/tgstation/ at commit fb2d71495bfe81446159ef528534193d09dd8d34, bolt-open modified from icon.png by Flareguy", "size": { "x": 32, "y": 32 @@ -13,14 +13,6 @@ { "name": "bolt-open" }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, { "name": "equipped-BACKPACK", "directions": 4 diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/bolt-open.png index c794549c55..1ce7995817 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/bolt-open.png and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/equipped-BACKPACK.png index a18a000811..c5e9fb4324 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/icon.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/icon.png index f6edbb2c96..f0f5dae71c 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/icon.png and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/meta.json index 2aed9f90d0..67bfc37e93 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken/modified from tgstation at https://github.com/tgstation/tgstation/pull/27557/commits, backpack sprite by Peptide (copy of bulldog)", + "copyright": "Taken from https://github.com/tgstation/tgstation/ at commit fb2d71495bfe81446159ef528534193d09dd8d34, bolt-open modified from icon.png by Flareguy", "size": { "x": 32, "y": 32 @@ -13,14 +13,6 @@ { "name": "bolt-open" }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, { "name": "equipped-BACKPACK", "directions": 4 diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/inhand-left.png deleted file mode 100644 index 9e52a5bbdd..0000000000 Binary files a/Resources/Textures/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/inhand-right.png deleted file mode 100644 index 34f7a40918..0000000000 Binary files a/Resources/Textures/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/meta.json index 3a12cd6330..92bc382a42 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken/modified from https://github.com/tgstation/tgstation/ at commit fb2d71495bfe81446159ef528534193d09dd8d34, inhand and back sprites modified by Flareguy", + "copyright": "Taken from https://github.com/tgstation/tgstation/ at commit fb2d71495bfe81446159ef528534193d09dd8d34, back sprite modified by Flareguy", "size": { "x": 32, "y": 32 @@ -10,14 +10,6 @@ { "name": "icon" }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, { "name": "equipped-BACKPACK", "directions": 4 diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/db-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/db-inhand-left.png new file mode 100644 index 0000000000..749dff75b0 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/db-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/db-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/db-inhand-right.png new file mode 100644 index 0000000000..ca804b8270 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/db-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/enforcer-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/enforcer-inhand-left.png new file mode 100644 index 0000000000..82ae89a0b8 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/enforcer-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/enforcer-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/enforcer-inhand-right.png new file mode 100644 index 0000000000..aef5cc6c71 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/enforcer-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/improvised-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/improvised-inhand-left.png new file mode 100644 index 0000000000..aa318a6151 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/improvised-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/improvised-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/improvised-inhand-right.png new file mode 100644 index 0000000000..2cab6d7425 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/improvised-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/meta.json new file mode 100644 index 0000000000..fefe1f6eb7 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/meta.json @@ -0,0 +1,51 @@ +{ + "version": 1, + "license": "CC-BY-NC-4.0", + "copyright": "Taken from https://github.com/tgstation/tgstation/ at commit fb2d71495bfe81446159ef528534193d09dd8d34, sawn-inhand states modified from db-inhand by Flareguy", + "size": { + "x": 64, + "y": 64 + }, + "states": [ + { + "name": "pump-inhand-left", + "directions": 4 + }, + { + "name": "pump-inhand-right", + "directions": 4 + }, + { + "name": "enforcer-inhand-left", + "directions": 4 + }, + { + "name": "enforcer-inhand-right", + "directions": 4 + }, + { + "name": "db-inhand-left", + "directions": 4 + }, + { + "name": "db-inhand-right", + "directions": 4 + }, + { + "name": "sawn-inhand-left", + "directions": 4 + }, + { + "name": "sawn-inhand-right", + "directions": 4 + }, + { + "name": "improvised-inhand-left", + "directions": 4 + }, + { + "name": "improvised-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/pump-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/pump-inhand-left.png new file mode 100644 index 0000000000..9276fc5521 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/pump-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/pump-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/pump-inhand-right.png new file mode 100644 index 0000000000..56c4aff874 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/pump-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/sawn-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/sawn-inhand-left.png new file mode 100644 index 0000000000..76be394118 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/sawn-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/sawn-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/sawn-inhand-right.png new file mode 100644 index 0000000000..a51a641f0b Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/sawn-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/bolt-open.png index cf99a2c2d5..233850622e 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/bolt-open.png and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/equipped-BACKPACK.png index 5de659eb1f..302e6d14b5 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/icon.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/icon.png index d2f0b8f80d..161c387047 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/icon.png and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json index 2839d6e45d..7408c3f4ac 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-NC-4.0", - "copyright": "Taken from TerraGov Marine Corps at https://github.com/tgstation/TerraGov-Marine-Corps/pull/7678/commits/e7bc17b894aa4c1f882358016346c3be00236df8backpack, https://github.com/tgstation/TerraGov-Marine-Corps/blob/master/icons/obj/items/gun.dmi, backpack sprite by Peptide (copy of db), sprite modification by Jaсkal 298", + "copyright": "Taken from https://github.com/tgstation/tgstation/ at commit fb2d71495bfe81446159ef528534193d09dd8d34, bolt-open modified from icon.png by Flareguy", "size": { "x": 32, "y": 32 @@ -13,14 +13,6 @@ { "name": "bolt-open" }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, { "name": "equipped-BACKPACK", "directions": 4 diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn.rsi/bolt-open.png index f4b03e4603..1d44a5bb53 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn.rsi/bolt-open.png and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn.rsi/equipped-BACKPACK.png index da66a1846e..d4e3306e6b 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn.rsi/icon.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn.rsi/icon.png index af968888cc..4adea9fa22 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn.rsi/icon.png and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn.rsi/inhand-left.png deleted file mode 100644 index 3b847fa3cb..0000000000 Binary files a/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn.rsi/inhand-right.png deleted file mode 100644 index 4ccf0dae98..0000000000 Binary files a/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn.rsi/meta.json index 04f71999e1..bb01559033 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-NC-4.0", - "copyright": "Taken from TerraGov Marine Corps at https://github.com/tgstation/TerraGov-Marine-Corps/pull/7678/commits/e7bc17b894aa4c1f882358016346c3be00236df8, https://github.com/tgstation/TerraGov-Marine-Corps/blob/master/icons/obj/items/gun.dmi backpack sprite by Peptide, sprite modification by Jaсkal 298", + "copyright": "Taken from https://github.com/tgstation/tgstation/ at commit fb2d71495bfe81446159ef528534193d09dd8d34, sprites edited from db_shotgun.rsi by Flareguy", "size": { "x": 32, "y": 32 @@ -13,14 +13,6 @@ { "name": "bolt-open" }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, { "name": "equipped-BACKPACK", "directions": 4 diff --git a/Resources/Textures/Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi/equipped-BACKPACK.png index 56d7dc39a7..a9ad62c9be 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi/meta.json index a959ed58f6..c223e6b194 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from InterBay13 at https://github.com/AndySok/InterBay13/commit/84824582fe1381d9ea6282b9da407994ab8ab509", + "copyright": "Taken from InterBay13 at https://github.com/AndySok/InterBay13/commit/84824582fe1381d9ea6282b9da407994ab8ab509, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.rsi/equipped-BACKPACK.png index ac0c7e5ac8..a349de44b0 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.rsi/meta.json index ffe748ea8d..33ee152a4e 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/13612/commits/c1cf3c42b0cd00023937e46845a7c32d6beefa0e", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/13612/commits/c1cf3c42b0cd00023937e46845a7c32d6beefa0e, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword-inhands.rsi/inhand-left-blade.png b/Resources/Textures/Objects/Weapons/Melee/e_sword-inhands.rsi/inhand-left-blade.png new file mode 100644 index 0000000000..a0e957d35d Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_sword-inhands.rsi/inhand-left-blade.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword-inhands.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/e_sword-inhands.rsi/inhand-left.png new file mode 100644 index 0000000000..f9a6e3404b Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_sword-inhands.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword-inhands.rsi/inhand-right-blade.png b/Resources/Textures/Objects/Weapons/Melee/e_sword-inhands.rsi/inhand-right-blade.png new file mode 100644 index 0000000000..a536ccffbe Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_sword-inhands.rsi/inhand-right-blade.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword-inhands.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/e_sword-inhands.rsi/inhand-right.png new file mode 100644 index 0000000000..13b78ac7dc Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_sword-inhands.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword-inhands.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/e_sword-inhands.rsi/meta.json new file mode 100644 index 0000000000..c5ff7a52d2 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Melee/e_sword-inhands.rsi/meta.json @@ -0,0 +1,63 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Inhands by RiceMar1244.", + "size": { + "x": 64, + "y": 64 + }, + "states": [ + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-left-blade", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-right-blade", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/e_sword.rsi/meta.json index 58c2a67aac..602e032963 100644 --- a/Resources/Textures/Objects/Weapons/Melee/e_sword.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Melee/e_sword.rsi/meta.json @@ -12,14 +12,6 @@ }, { "name": "e_sword" - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 }, { "name": "e_sword_blade", @@ -29,50 +21,6 @@ 0.1 ] ] - }, - { - "name": "inhand-left-blade", - "directions": 4, - "delays": [ - [ - 0.1, - 0.1 - ], - [ - 0.1, - 0.1 - ], - [ - 0.1, - 0.1 - ], - [ - 0.1, - 0.1 - ] - ] - }, - { - "name": "inhand-right-blade", - "directions": 4, - "delays": [ - [ - 0.1, - 0.1 - ], - [ - 0.1, - 0.1 - ], - [ - 0.1, - 0.1 - ], - [ - 0.1, - 0.1 - ] - ] } ] } diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword_double-inhands.rsi/inhand-left-blade.png b/Resources/Textures/Objects/Weapons/Melee/e_sword_double-inhands.rsi/inhand-left-blade.png new file mode 100644 index 0000000000..c5403860e5 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_sword_double-inhands.rsi/inhand-left-blade.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword_double-inhands.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/e_sword_double-inhands.rsi/inhand-left.png new file mode 100644 index 0000000000..5c1b0e20fb Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_sword_double-inhands.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword_double-inhands.rsi/inhand-right-blade.png b/Resources/Textures/Objects/Weapons/Melee/e_sword_double-inhands.rsi/inhand-right-blade.png new file mode 100644 index 0000000000..e8ad57084e Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_sword_double-inhands.rsi/inhand-right-blade.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword_double-inhands.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/e_sword_double-inhands.rsi/inhand-right.png new file mode 100644 index 0000000000..3e354dd6fe Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_sword_double-inhands.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword_double-inhands.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/e_sword_double-inhands.rsi/meta.json new file mode 100644 index 0000000000..a28cd72138 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Melee/e_sword_double-inhands.rsi/meta.json @@ -0,0 +1,71 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation and modified by RiceMar1244", + "size": { + "x": 64, + "y": 64 + }, + "states": [ + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "inhand-left-blade", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + }, + { + "name": "inhand-right-blade", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword_double-inhands.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/e_sword_double-inhands.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..a442878e76 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_sword_double-inhands.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword_double-inhands.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/e_sword_double-inhands.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..a1b6f2b852 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_sword_double-inhands.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/e_sword_double.png b/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/e_sword_double.png index dfd3bb9ace..5601092c2e 100644 Binary files a/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/e_sword_double.png and b/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/e_sword_double.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/e_sword_double_blade.png b/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/e_sword_double_blade.png index 9c19655cd4..31aecac1d2 100644 Binary files a/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/e_sword_double_blade.png and b/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/e_sword_double_blade.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/inhand-left-blade.png b/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/inhand-left-blade.png deleted file mode 100644 index 96d2136fce..0000000000 Binary files a/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/inhand-left-blade.png and /dev/null differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/inhand-left.png deleted file mode 100644 index 2f06869cd1..0000000000 Binary files a/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/inhand-right-blade.png b/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/inhand-right-blade.png deleted file mode 100644 index 18b785e11c..0000000000 Binary files a/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/inhand-right-blade.png and /dev/null differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/inhand-right.png deleted file mode 100644 index ebaeb95b41..0000000000 Binary files a/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/meta.json index d7ae4a0ad3..9e17f6e51a 100644 --- a/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/meta.json @@ -6,81 +6,21 @@ "x": 32, "y": 32 }, - "states": [ - { - "name": "icon" - }, - { - "name": "e_sword_double" - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "wielded-inhand-left", - "directions": 4 - }, - { - "name": "wielded-inhand-right", - "directions": 4 - }, - { - "name": "e_sword_double_blade", - "delays": [ - [ - 0.1, - 0.1 - ] - ] - }, - { - "name": "inhand-left-blade", - "directions": 4, - "delays": [ - [ - 0.1, - 0.1 - ], - [ - 0.1, - 0.1 - ], - [ - 0.1, - 0.1 - ], - [ - 0.1, - 0.1 - ] - ] - }, - { - "name": "inhand-right-blade", - "directions": 4, - "delays": [ - [ - 0.1, - 0.1 - ], - [ - 0.1, - 0.1 - ], - [ - 0.1, - 0.1 - ], - [ - 0.1, - 0.1 - ] - ] - } - ] + "states": [ + { + "name": "icon" + }, + { + "name": "e_sword_double" + }, + { + "name": "e_sword_double_blade", + "delays": [ + [ + 0.1, + 0.1 + ] + ] + } + ] } diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/wielded-inhand-left.png deleted file mode 100644 index 0160cafd5d..0000000000 Binary files a/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/wielded-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/wielded-inhand-right.png deleted file mode 100644 index 727fa419de..0000000000 Binary files a/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/wielded-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Objects/Weapons/Melee/fireaxe.rsi/icon.png b/Resources/Textures/Objects/Weapons/Melee/fireaxe.rsi/icon.png index 53c6de1803..9f8ae76c3c 100644 Binary files a/Resources/Textures/Objects/Weapons/Melee/fireaxe.rsi/icon.png and b/Resources/Textures/Objects/Weapons/Melee/fireaxe.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/web-shield.rsi/icon-inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/web-shield.rsi/icon-inhand-left.png new file mode 100644 index 0000000000..9b1341bc3e Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/web-shield.rsi/icon-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/web-shield.rsi/icon-inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/web-shield.rsi/icon-inhand-right.png new file mode 100644 index 0000000000..f0efd77d14 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/web-shield.rsi/icon-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/web-shield.rsi/icon.png b/Resources/Textures/Objects/Weapons/Melee/web-shield.rsi/icon.png new file mode 100644 index 0000000000..29830d3ac8 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/web-shield.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/web-shield.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/web-shield.rsi/meta.json new file mode 100644 index 0000000000..5d8774872d --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Melee/web-shield.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "size": {"x": 32, "y": 32}, + "license": "CC-BY-SA-3.0", + "copyright": "Made by PixelTheKermit (github) for SS14", + "states": [ + { + "name": "icon" + }, + { + "name": "icon-inhand-left", + "directions": 4 + }, + { + "name": "icon-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Shaders/world_gradient_circle.swsl b/Resources/Textures/Shaders/world_gradient_circle.swsl new file mode 100644 index 0000000000..8b0be51b18 --- /dev/null +++ b/Resources/Textures/Shaders/world_gradient_circle.swsl @@ -0,0 +1,27 @@ +// Has 2 circles, an inner one that is unaffected and an outer one. +light_mode unshaded; + +const highp vec4 color = vec4(1.0, 1.0, 1.0, 1.0); + +// Position of the center in pixel terms. +uniform highp vec2 position; +uniform highp float maxRange; +uniform highp float minRange; +uniform highp float bufferRange; +uniform highp float gradient; + +void fragment() { + highp float distance = length(FRAGCOORD.xy - position); + + if (distance > maxRange) { + discard; + } + else if (distance < minRange) { + COLOR = color; + } + else { + + highp float ratio = 1.0 - pow((distance - minRange) / bufferRange, gradient); + COLOR = vec4(color.x, color.y, color.z, ratio); + } +} diff --git a/Resources/Textures/Structures/Decoration/crystal.rsi/crystal_blue.png b/Resources/Textures/Structures/Decoration/crystal.rsi/crystal_blue.png deleted file mode 100644 index 03307bafd6..0000000000 Binary files a/Resources/Textures/Structures/Decoration/crystal.rsi/crystal_blue.png and /dev/null differ diff --git a/Resources/Textures/Structures/Decoration/crystal.rsi/crystal_cyan.png b/Resources/Textures/Structures/Decoration/crystal.rsi/crystal_cyan.png deleted file mode 100644 index f245ead035..0000000000 Binary files a/Resources/Textures/Structures/Decoration/crystal.rsi/crystal_cyan.png and /dev/null differ diff --git a/Resources/Textures/Structures/Decoration/crystal.rsi/crystal_green.png b/Resources/Textures/Structures/Decoration/crystal.rsi/crystal_green.png deleted file mode 100644 index d8d60fd276..0000000000 Binary files a/Resources/Textures/Structures/Decoration/crystal.rsi/crystal_green.png and /dev/null differ diff --git a/Resources/Textures/Structures/Decoration/crystal.rsi/crystal_grey.png b/Resources/Textures/Structures/Decoration/crystal.rsi/crystal_grey.png index 13c5bf3cac..5475398508 100644 Binary files a/Resources/Textures/Structures/Decoration/crystal.rsi/crystal_grey.png and b/Resources/Textures/Structures/Decoration/crystal.rsi/crystal_grey.png differ diff --git a/Resources/Textures/Structures/Decoration/crystal.rsi/crystal_orange.png b/Resources/Textures/Structures/Decoration/crystal.rsi/crystal_orange.png deleted file mode 100644 index 39d6230114..0000000000 Binary files a/Resources/Textures/Structures/Decoration/crystal.rsi/crystal_orange.png and /dev/null differ diff --git a/Resources/Textures/Structures/Decoration/crystal.rsi/crystal_pink.png b/Resources/Textures/Structures/Decoration/crystal.rsi/crystal_pink.png deleted file mode 100644 index f9f81c5cfe..0000000000 Binary files a/Resources/Textures/Structures/Decoration/crystal.rsi/crystal_pink.png and /dev/null differ diff --git a/Resources/Textures/Structures/Decoration/crystal.rsi/meta.json b/Resources/Textures/Structures/Decoration/crystal.rsi/meta.json index 14fb2c7974..21a6cf7150 100644 --- a/Resources/Textures/Structures/Decoration/crystal.rsi/meta.json +++ b/Resources/Textures/Structures/Decoration/crystal.rsi/meta.json @@ -7,21 +7,6 @@ "y": 32 }, "states": [ - { - "name": "crystal_green" - }, - { - "name": "crystal_pink" - }, - { - "name": "crystal_orange" - }, - { - "name": "crystal_blue" - }, - { - "name": "crystal_cyan" - }, { "name": "crystal_grey" } diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/open.png index 5dff6a5e50..3fa424bafa 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/open.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/assembly.png new file mode 100644 index 0000000000..33a9e276c7 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/assembly.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/bolted_unlit.png new file mode 100644 index 0000000000..9bce6022dc Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/closed.png new file mode 100644 index 0000000000..b82e16de2a Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/closed_unlit.png new file mode 100644 index 0000000000..cd5c6b4700 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/closing.png new file mode 100644 index 0000000000..e4019d4d07 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/closing_unlit.png new file mode 100644 index 0000000000..cec5fc7e85 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/deny_unlit.png new file mode 100644 index 0000000000..adfb0cf39c Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/emergency_unlit.png new file mode 100644 index 0000000000..c018c3f9fd Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/meta.json new file mode 100644 index 0000000000..f710aeb1ad --- /dev/null +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/meta.json @@ -0,0 +1,201 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken at https://github.com/ParadiseSS13/Paradise/commit/9312f1fb7dcdf1c195e255a528f31092613fb60d", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit" + }, + { + "name": "closing", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.05, + 0.05, + 0.1 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.05, + 0.05, + 0.1 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "open", + "delays": [ + [ + 1 + ] + ] + }, + { + "name": "opening", + "delays": [ + [ + 0.1, + 0.05, + 0.05, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.1, + 0.05, + 0.05, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.05, + 0.05, + 0.1 + ] + ] + }, + { + "name": "panel_open", + "delays": [ + [ + 1 + ] + ] + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.1, + 0.05, + 0.05, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded" + }, + { + "name": "emergency_unlit", + "delays": [ + [ + 0.4, + 0.4 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/open.png new file mode 100644 index 0000000000..a8fcf70b3d Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/opening.png new file mode 100644 index 0000000000..460e3187af Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/opening_unlit.png new file mode 100644 index 0000000000..b4de9fc9e2 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/panel_closing.png new file mode 100644 index 0000000000..42b84b72fe Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/panel_closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/panel_open.png new file mode 100644 index 0000000000..c76bdb146b Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/panel_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/panel_opening.png new file mode 100644 index 0000000000..09c5f5ca81 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/panel_opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/sparks.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/sparks.png new file mode 100644 index 0000000000..4d9cab3c5c Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/sparks.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/sparks_broken.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/sparks_broken.png new file mode 100644 index 0000000000..fb5d774588 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/sparks_broken.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/sparks_damaged.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/sparks_damaged.png new file mode 100644 index 0000000000..f16a028dee Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/sparks_damaged.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/sparks_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/sparks_open.png new file mode 100644 index 0000000000..630eabb976 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/sparks_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/welded.png new file mode 100644 index 0000000000..cf8f37a756 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/bolted_unlit.png new file mode 100644 index 0000000000..844bd201f1 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closed.png new file mode 100644 index 0000000000..3c3577610f Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closed_unlit.png new file mode 100644 index 0000000000..7c80bc210c Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closing.png new file mode 100644 index 0000000000..607e1c93fe Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closing_unlit.png new file mode 100644 index 0000000000..51ae8ad362 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/deny_unlit.png new file mode 100644 index 0000000000..dfe4d406ed Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/emergency_unlit.png new file mode 100644 index 0000000000..31f7a5f9f0 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/meta.json new file mode 100644 index 0000000000..8408176365 --- /dev/null +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/meta.json @@ -0,0 +1,143 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from CEV-Eris at commit https://github.com/discordia-space/CEV-Eris/commit/14517938186858388656a6aee14bf47af9e9649f - then modified by 20kdc & AJCM-git, glass by Peptide90, modified by brainfood1183 (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "bolted_unlit" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit" + }, + { + "name": "closing", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "open" + }, + { + "name": "opening", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "panel_open" + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "welded" + }, + { + "name": "emergency_unlit", + "delays": [ + [ + 0.4, + 0.4 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/open.png new file mode 100644 index 0000000000..d5fc8df3ca Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/opening.png new file mode 100644 index 0000000000..4d6ab7e701 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/opening_unlit.png new file mode 100644 index 0000000000..51ae8ad362 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/panel_closing.png new file mode 100644 index 0000000000..6afe206992 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/panel_closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/panel_open.png new file mode 100644 index 0000000000..d7d4122c08 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/panel_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/panel_opening.png new file mode 100644 index 0000000000..e6c87d740e Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/panel_opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/welded.png new file mode 100644 index 0000000000..eed2758c79 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/closed.png index 1c0787f2fd..75cfc05d02 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/closed.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/closing.png index 7894a1f34c..b6a10c1cfb 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/closing.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/open.png index 8b3c585e54..5620a500fc 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/open.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/opening.png index 37004d384a..283ac808a2 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/opening.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/open.png index 5dff6a5e50..3fa424bafa 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/open.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/assembly.png new file mode 100644 index 0000000000..322112c36f Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/assembly.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/bolted_unlit.png new file mode 100644 index 0000000000..9bce6022dc Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/closed.png new file mode 100644 index 0000000000..406b40544d Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/closed_unlit.png new file mode 100644 index 0000000000..cd5c6b4700 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/closing.png new file mode 100644 index 0000000000..b68a2ba131 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/closing_unlit.png new file mode 100644 index 0000000000..cec5fc7e85 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/deny_unlit.png new file mode 100644 index 0000000000..adfb0cf39c Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/emergency_unlit.png new file mode 100644 index 0000000000..c018c3f9fd Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/meta.json new file mode 100644 index 0000000000..f710aeb1ad --- /dev/null +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/meta.json @@ -0,0 +1,201 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken at https://github.com/ParadiseSS13/Paradise/commit/9312f1fb7dcdf1c195e255a528f31092613fb60d", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit" + }, + { + "name": "closing", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.05, + 0.05, + 0.1 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.05, + 0.05, + 0.1 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "open", + "delays": [ + [ + 1 + ] + ] + }, + { + "name": "opening", + "delays": [ + [ + 0.1, + 0.05, + 0.05, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.1, + 0.05, + 0.05, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.05, + 0.05, + 0.1 + ] + ] + }, + { + "name": "panel_open", + "delays": [ + [ + 1 + ] + ] + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.1, + 0.05, + 0.05, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded" + }, + { + "name": "emergency_unlit", + "delays": [ + [ + 0.4, + 0.4 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/open.png new file mode 100644 index 0000000000..a8fcf70b3d Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/opening.png new file mode 100644 index 0000000000..1eeca9f2ec Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/opening_unlit.png new file mode 100644 index 0000000000..b4de9fc9e2 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/panel_closing.png new file mode 100644 index 0000000000..42b84b72fe Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/panel_closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/panel_open.png new file mode 100644 index 0000000000..c76bdb146b Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/panel_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/panel_opening.png new file mode 100644 index 0000000000..09c5f5ca81 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/panel_opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/sparks.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/sparks.png new file mode 100644 index 0000000000..4d9cab3c5c Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/sparks.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/sparks_broken.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/sparks_broken.png new file mode 100644 index 0000000000..fb5d774588 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/sparks_broken.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/sparks_damaged.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/sparks_damaged.png new file mode 100644 index 0000000000..f16a028dee Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/sparks_damaged.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/sparks_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/sparks_open.png new file mode 100644 index 0000000000..630eabb976 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/sparks_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/welded.png new file mode 100644 index 0000000000..cf8f37a756 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/bolted_unlit.png new file mode 100644 index 0000000000..844bd201f1 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closed.png new file mode 100644 index 0000000000..39d2ff3172 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closed_unlit.png new file mode 100644 index 0000000000..7c80bc210c Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closing.png new file mode 100644 index 0000000000..042bf6bb10 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closing_unlit.png new file mode 100644 index 0000000000..51ae8ad362 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/deny_unlit.png new file mode 100644 index 0000000000..dfe4d406ed Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/emergency_unlit.png new file mode 100644 index 0000000000..31f7a5f9f0 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/meta.json new file mode 100644 index 0000000000..d9058e3372 --- /dev/null +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/meta.json @@ -0,0 +1,143 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from CEV-Eris at commit https://github.com/discordia-space/CEV-Eris/commit/14517938186858388656a6aee14bf47af9e9649f - then modified by brainfood1183 (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "bolted_unlit" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit" + }, + { + "name": "closing", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "open" + }, + { + "name": "opening", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "panel_open" + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "welded" + }, + { + "name": "emergency_unlit", + "delays": [ + [ + 0.4, + 0.4 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/open.png new file mode 100644 index 0000000000..bbca39b0aa Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/opening.png new file mode 100644 index 0000000000..b844d0a01c Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/opening_unlit.png new file mode 100644 index 0000000000..51ae8ad362 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/panel_closing.png new file mode 100644 index 0000000000..6afe206992 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/panel_closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/panel_open.png new file mode 100644 index 0000000000..d7d4122c08 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/panel_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/panel_opening.png new file mode 100644 index 0000000000..e6c87d740e Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/panel_opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/welded.png new file mode 100644 index 0000000000..eed2758c79 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closed.png index a71632a173..bc5174213c 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closed.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closing.png index 2c5ddab0b8..5311eca045 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closing.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/open.png index cfbb34b803..1c064b99d4 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/open.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/opening.png index 96142da1a6..cc155dc10b 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/opening.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_0.png b/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_0.png index 0dbf669528..ee14ebb3e6 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_0.png and b/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_0.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_1.png b/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_1.png index 0eae42bcf1..cf74dbff01 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_1.png and b/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_1.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_2.png b/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_2.png index 0dbf669528..ee14ebb3e6 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_2.png and b/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_2.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_3.png b/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_3.png index 0eae42bcf1..cf74dbff01 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_3.png and b/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_3.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_4.png b/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_4.png index 71fcb282f2..630c971cf7 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_4.png and b/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_4.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_5.png b/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_5.png index 7fa51e0e9d..c9163d9407 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_5.png and b/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_5.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_6.png b/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_6.png index 71fcb282f2..630c971cf7 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_6.png and b/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_6.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_7.png b/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_7.png index f56f9332cf..3c3fdb25a2 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_7.png and b/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/carpet_7.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/full.png b/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/full.png index c8704c41c0..e9781062de 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/full.png and b/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/full.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/meta.json b/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/meta.json index 15f1cbb81c..bc5c77c790 100644 --- a/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/meta.json +++ b/Resources/Textures/Structures/Furniture/Carpets/black_carpet.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/2cb66bae0e253e13d37f8939e0983bb94fee243e", + "copyright": "Made by Hqlle (github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_0.png b/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_0.png index 464feb67cf..f1355aa89f 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_0.png and b/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_0.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_1.png b/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_1.png index af1d4cf09e..a0dde2bcaf 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_1.png and b/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_1.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_2.png b/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_2.png index 464feb67cf..f1355aa89f 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_2.png and b/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_2.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_3.png b/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_3.png index af1d4cf09e..a0dde2bcaf 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_3.png and b/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_3.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_4.png b/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_4.png index 962ab6e17c..61af9b51fc 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_4.png and b/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_4.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_5.png b/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_5.png index 31ca15238e..af3f61f13b 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_5.png and b/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_5.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_6.png b/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_6.png index 962ab6e17c..61af9b51fc 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_6.png and b/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_6.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_7.png b/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_7.png index 962f2ca677..89f2502d80 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_7.png and b/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/carpet_7.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/full.png b/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/full.png index f2c21ce00c..c0b86e8635 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/full.png and b/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/full.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/meta.json b/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/meta.json index 15f1cbb81c..6d8edffd9f 100644 --- a/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/meta.json +++ b/Resources/Textures/Structures/Furniture/Carpets/blue_carpet.rsi/meta.json @@ -1,46 +1,46 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/2cb66bae0e253e13d37f8939e0983bb94fee243e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "full" - }, - { - "name": "carpet_0", - "directions": 4 - }, - { - "name": "carpet_1", - "directions": 4 - }, - { - "name": "carpet_2", - "directions": 4 - }, - { - "name": "carpet_3", - "directions": 4 - }, - { - "name": "carpet_4", - "directions": 4 - }, - { - "name": "carpet_5", - "directions": 4 - }, - { - "name": "carpet_6", - "directions": 4 - }, - { - "name": "carpet_7", - "directions": 4 - } - ] + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Hqlle (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "full" + }, + { + "name": "carpet_0", + "directions": 4 + }, + { + "name": "carpet_1", + "directions": 4 + }, + { + "name": "carpet_2", + "directions": 4 + }, + { + "name": "carpet_3", + "directions": 4 + }, + { + "name": "carpet_4", + "directions": 4 + }, + { + "name": "carpet_5", + "directions": 4 + }, + { + "name": "carpet_6", + "directions": 4 + }, + { + "name": "carpet_7", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_0.png b/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_0.png index 6b5121e816..28854899cb 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_0.png and b/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_0.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_1.png b/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_1.png index 4a7c022461..9263e976be 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_1.png and b/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_1.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_2.png b/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_2.png index 6b5121e816..28854899cb 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_2.png and b/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_2.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_3.png b/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_3.png index 4a7c022461..9263e976be 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_3.png and b/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_3.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_4.png b/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_4.png index d1f3d7c223..2b09d193b5 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_4.png and b/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_4.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_5.png b/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_5.png index cf7035ce3f..329a9e3ec3 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_5.png and b/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_5.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_6.png b/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_6.png index d1f3d7c223..2b09d193b5 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_6.png and b/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_6.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_7.png b/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_7.png index ddde0ed604..683f440f65 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_7.png and b/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/carpet_7.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/full.png b/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/full.png index 858308d425..55e052e518 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/full.png and b/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/full.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/meta.json b/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/meta.json index 15f1cbb81c..6d8edffd9f 100644 --- a/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/meta.json +++ b/Resources/Textures/Structures/Furniture/Carpets/green_carpet.rsi/meta.json @@ -1,46 +1,46 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/2cb66bae0e253e13d37f8939e0983bb94fee243e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "full" - }, - { - "name": "carpet_0", - "directions": 4 - }, - { - "name": "carpet_1", - "directions": 4 - }, - { - "name": "carpet_2", - "directions": 4 - }, - { - "name": "carpet_3", - "directions": 4 - }, - { - "name": "carpet_4", - "directions": 4 - }, - { - "name": "carpet_5", - "directions": 4 - }, - { - "name": "carpet_6", - "directions": 4 - }, - { - "name": "carpet_7", - "directions": 4 - } - ] + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Hqlle (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "full" + }, + { + "name": "carpet_0", + "directions": 4 + }, + { + "name": "carpet_1", + "directions": 4 + }, + { + "name": "carpet_2", + "directions": 4 + }, + { + "name": "carpet_3", + "directions": 4 + }, + { + "name": "carpet_4", + "directions": 4 + }, + { + "name": "carpet_5", + "directions": 4 + }, + { + "name": "carpet_6", + "directions": 4 + }, + { + "name": "carpet_7", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_0.png b/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_0.png index 5425585302..9b69986c95 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_0.png and b/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_0.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_1.png b/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_1.png index 250f4e854b..3dc443d5b5 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_1.png and b/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_1.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_2.png b/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_2.png index 5425585302..9b69986c95 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_2.png and b/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_2.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_3.png b/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_3.png index 250f4e854b..3dc443d5b5 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_3.png and b/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_3.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_4.png b/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_4.png index cfd75e3a00..bab624bac5 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_4.png and b/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_4.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_5.png b/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_5.png index 1880532abf..5d5ff651ef 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_5.png and b/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_5.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_6.png b/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_6.png index cfd75e3a00..bab624bac5 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_6.png and b/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_6.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_7.png b/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_7.png index fa83ed5be9..fbaf1e8dd1 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_7.png and b/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/carpet_7.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/full.png b/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/full.png index d4886e6c41..058e51c2f5 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/full.png and b/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/full.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/meta.json b/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/meta.json index 15f1cbb81c..6d8edffd9f 100644 --- a/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/meta.json +++ b/Resources/Textures/Structures/Furniture/Carpets/orange_carpet.rsi/meta.json @@ -1,46 +1,46 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/2cb66bae0e253e13d37f8939e0983bb94fee243e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "full" - }, - { - "name": "carpet_0", - "directions": 4 - }, - { - "name": "carpet_1", - "directions": 4 - }, - { - "name": "carpet_2", - "directions": 4 - }, - { - "name": "carpet_3", - "directions": 4 - }, - { - "name": "carpet_4", - "directions": 4 - }, - { - "name": "carpet_5", - "directions": 4 - }, - { - "name": "carpet_6", - "directions": 4 - }, - { - "name": "carpet_7", - "directions": 4 - } - ] + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Hqlle (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "full" + }, + { + "name": "carpet_0", + "directions": 4 + }, + { + "name": "carpet_1", + "directions": 4 + }, + { + "name": "carpet_2", + "directions": 4 + }, + { + "name": "carpet_3", + "directions": 4 + }, + { + "name": "carpet_4", + "directions": 4 + }, + { + "name": "carpet_5", + "directions": 4 + }, + { + "name": "carpet_6", + "directions": 4 + }, + { + "name": "carpet_7", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_0.png b/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_0.png index 1ad7b29c08..f50eae675f 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_0.png and b/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_0.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_1.png b/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_1.png index fb9158ea8e..8e9c456be7 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_1.png and b/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_1.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_2.png b/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_2.png index 1ad7b29c08..f50eae675f 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_2.png and b/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_2.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_3.png b/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_3.png index fb9158ea8e..8e9c456be7 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_3.png and b/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_3.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_4.png b/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_4.png index 7d6cfe21c7..3b6814eae6 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_4.png and b/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_4.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_5.png b/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_5.png index 8b765214dd..2cee61ff0f 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_5.png and b/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_5.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_6.png b/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_6.png index 7d6cfe21c7..3b6814eae6 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_6.png and b/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_6.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_7.png b/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_7.png index a20236a6a3..797bbe6555 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_7.png and b/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/carpet_7.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/full.png b/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/full.png index c69c133a8e..5b975f3d32 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/full.png and b/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/full.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/meta.json b/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/meta.json index 15f1cbb81c..6d8edffd9f 100644 --- a/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/meta.json +++ b/Resources/Textures/Structures/Furniture/Carpets/pink_carpet.rsi/meta.json @@ -1,46 +1,46 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/2cb66bae0e253e13d37f8939e0983bb94fee243e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "full" - }, - { - "name": "carpet_0", - "directions": 4 - }, - { - "name": "carpet_1", - "directions": 4 - }, - { - "name": "carpet_2", - "directions": 4 - }, - { - "name": "carpet_3", - "directions": 4 - }, - { - "name": "carpet_4", - "directions": 4 - }, - { - "name": "carpet_5", - "directions": 4 - }, - { - "name": "carpet_6", - "directions": 4 - }, - { - "name": "carpet_7", - "directions": 4 - } - ] + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Hqlle (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "full" + }, + { + "name": "carpet_0", + "directions": 4 + }, + { + "name": "carpet_1", + "directions": 4 + }, + { + "name": "carpet_2", + "directions": 4 + }, + { + "name": "carpet_3", + "directions": 4 + }, + { + "name": "carpet_4", + "directions": 4 + }, + { + "name": "carpet_5", + "directions": 4 + }, + { + "name": "carpet_6", + "directions": 4 + }, + { + "name": "carpet_7", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_0.png b/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_0.png index 51cd80fb90..878a884231 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_0.png and b/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_0.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_1.png b/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_1.png index edf97ef536..05e256e1b2 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_1.png and b/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_1.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_2.png b/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_2.png index 51cd80fb90..878a884231 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_2.png and b/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_2.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_3.png b/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_3.png index edf97ef536..05e256e1b2 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_3.png and b/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_3.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_4.png b/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_4.png index bf92db7e36..b71a043280 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_4.png and b/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_4.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_5.png b/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_5.png index ee6b06bbf0..6130a90045 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_5.png and b/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_5.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_6.png b/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_6.png index bf92db7e36..b71a043280 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_6.png and b/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_6.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_7.png b/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_7.png index 9084307d80..ca9b2fd28d 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_7.png and b/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/carpet_7.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/full.png b/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/full.png index 3e08bf7060..8dee2b8326 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/full.png and b/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/full.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/meta.json b/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/meta.json index 15f1cbb81c..6d8edffd9f 100644 --- a/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/meta.json +++ b/Resources/Textures/Structures/Furniture/Carpets/purple_carpet.rsi/meta.json @@ -1,46 +1,46 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/2cb66bae0e253e13d37f8939e0983bb94fee243e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "full" - }, - { - "name": "carpet_0", - "directions": 4 - }, - { - "name": "carpet_1", - "directions": 4 - }, - { - "name": "carpet_2", - "directions": 4 - }, - { - "name": "carpet_3", - "directions": 4 - }, - { - "name": "carpet_4", - "directions": 4 - }, - { - "name": "carpet_5", - "directions": 4 - }, - { - "name": "carpet_6", - "directions": 4 - }, - { - "name": "carpet_7", - "directions": 4 - } - ] + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Hqlle (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "full" + }, + { + "name": "carpet_0", + "directions": 4 + }, + { + "name": "carpet_1", + "directions": 4 + }, + { + "name": "carpet_2", + "directions": 4 + }, + { + "name": "carpet_3", + "directions": 4 + }, + { + "name": "carpet_4", + "directions": 4 + }, + { + "name": "carpet_5", + "directions": 4 + }, + { + "name": "carpet_6", + "directions": 4 + }, + { + "name": "carpet_7", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_0.png b/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_0.png index 85161d0a62..f69c741ac7 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_0.png and b/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_0.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_1.png b/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_1.png index 65d70246ae..2ba8712824 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_1.png and b/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_1.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_2.png b/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_2.png index 85161d0a62..f69c741ac7 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_2.png and b/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_2.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_3.png b/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_3.png index 65d70246ae..2ba8712824 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_3.png and b/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_3.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_4.png b/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_4.png index 6b559395e7..bdf22da252 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_4.png and b/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_4.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_5.png b/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_5.png index 1d240c1821..17147cfc0b 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_5.png and b/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_5.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_6.png b/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_6.png index 6b559395e7..bdf22da252 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_6.png and b/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_6.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_7.png b/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_7.png index d6d6e4033d..00cdf54aa0 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_7.png and b/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/carpet_7.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/full.png b/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/full.png index 2e15f0cc82..019068a3e4 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/full.png and b/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/full.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/meta.json b/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/meta.json index 15f1cbb81c..6d8edffd9f 100644 --- a/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/meta.json +++ b/Resources/Textures/Structures/Furniture/Carpets/red_carpet.rsi/meta.json @@ -1,46 +1,46 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/2cb66bae0e253e13d37f8939e0983bb94fee243e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "full" - }, - { - "name": "carpet_0", - "directions": 4 - }, - { - "name": "carpet_1", - "directions": 4 - }, - { - "name": "carpet_2", - "directions": 4 - }, - { - "name": "carpet_3", - "directions": 4 - }, - { - "name": "carpet_4", - "directions": 4 - }, - { - "name": "carpet_5", - "directions": 4 - }, - { - "name": "carpet_6", - "directions": 4 - }, - { - "name": "carpet_7", - "directions": 4 - } - ] + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Hqlle (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "full" + }, + { + "name": "carpet_0", + "directions": 4 + }, + { + "name": "carpet_1", + "directions": 4 + }, + { + "name": "carpet_2", + "directions": 4 + }, + { + "name": "carpet_3", + "directions": 4 + }, + { + "name": "carpet_4", + "directions": 4 + }, + { + "name": "carpet_5", + "directions": 4 + }, + { + "name": "carpet_6", + "directions": 4 + }, + { + "name": "carpet_7", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_0.png b/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_0.png index 25b013acf6..18f93ee9c4 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_0.png and b/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_0.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_1.png b/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_1.png index 4233522e36..f34c49095e 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_1.png and b/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_1.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_2.png b/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_2.png index 25b013acf6..18f93ee9c4 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_2.png and b/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_2.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_3.png b/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_3.png index 4233522e36..f34c49095e 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_3.png and b/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_3.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_4.png b/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_4.png index 10e4fa2310..e50e70b1d5 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_4.png and b/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_4.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_5.png b/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_5.png index 5ee1617972..31ae72382d 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_5.png and b/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_5.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_6.png b/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_6.png index 10e4fa2310..e50e70b1d5 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_6.png and b/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_6.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_7.png b/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_7.png index b97f0a0a60..3b8e6fdc7f 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_7.png and b/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/carpet_7.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/full.png b/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/full.png index e240c93fbd..9b69c84936 100644 Binary files a/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/full.png and b/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/full.png differ diff --git a/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/meta.json b/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/meta.json index 15f1cbb81c..6d8edffd9f 100644 --- a/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/meta.json +++ b/Resources/Textures/Structures/Furniture/Carpets/skyblue_carpet.rsi/meta.json @@ -1,46 +1,46 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/2cb66bae0e253e13d37f8939e0983bb94fee243e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "full" - }, - { - "name": "carpet_0", - "directions": 4 - }, - { - "name": "carpet_1", - "directions": 4 - }, - { - "name": "carpet_2", - "directions": 4 - }, - { - "name": "carpet_3", - "directions": 4 - }, - { - "name": "carpet_4", - "directions": 4 - }, - { - "name": "carpet_5", - "directions": 4 - }, - { - "name": "carpet_6", - "directions": 4 - }, - { - "name": "carpet_7", - "directions": 4 - } - ] + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Hqlle (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "full" + }, + { + "name": "carpet_0", + "directions": 4 + }, + { + "name": "carpet_1", + "directions": 4 + }, + { + "name": "carpet_2", + "directions": 4 + }, + { + "name": "carpet_3", + "directions": 4 + }, + { + "name": "carpet_4", + "directions": 4 + }, + { + "name": "carpet_5", + "directions": 4 + }, + { + "name": "carpet_6", + "directions": 4 + }, + { + "name": "carpet_7", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Structures/Furniture/furniture.rsi/meta.json b/Resources/Textures/Structures/Furniture/furniture.rsi/meta.json index f929c9dffc..1f7049dfbe 100644 --- a/Resources/Textures/Structures/Furniture/furniture.rsi/meta.json +++ b/Resources/Textures/Structures/Furniture/furniture.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/d5cb4288ec5f7cb9fb5b6f6e798f4c64cd82cd09", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d5cb4288ec5f7cb9fb5b6f6e798f4c64cd82cd09, Taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/9d7ff729b6b89eee0b3d750327f9fbaff4aeb045", "size": { "x": 32, "y": 32 @@ -19,6 +19,9 @@ { "name": "mattress" }, + { + "name": "psychbed" + }, { "name": "rack" }, diff --git a/Resources/Textures/Structures/Furniture/furniture.rsi/psychbed.png b/Resources/Textures/Structures/Furniture/furniture.rsi/psychbed.png new file mode 100644 index 0000000000..1fd4b9609b Binary files /dev/null and b/Resources/Textures/Structures/Furniture/furniture.rsi/psychbed.png differ diff --git a/Resources/Textures/Structures/Furniture/potted_plants.rsi/meta.json b/Resources/Textures/Structures/Furniture/potted_plants.rsi/meta.json index 72ae51dc54..19f57fd672 100644 --- a/Resources/Textures/Structures/Furniture/potted_plants.rsi/meta.json +++ b/Resources/Textures/Structures/Furniture/potted_plants.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation", + "copyright": "Taken from tgstation, plant-26 made by Fazansen(https://github.com/Fazansen)", "size": { "x": 32, "y": 32 @@ -227,7 +227,12 @@ "name": "plant-26", "delays": [ [ - 1.0 + 5, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 ] ] }, @@ -254,6 +259,14 @@ 1.0 ] ] + }, + { + "name": "plant-30", + "delays": [ + [ + 1.0 + ] + ] } ] } \ No newline at end of file diff --git a/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-26.png b/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-26.png index a79b9e2da8..10b4667d89 100644 Binary files a/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-26.png and b/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-26.png differ diff --git a/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-27.png b/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-27.png index 1019885b91..a79b9e2da8 100644 Binary files a/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-27.png and b/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-27.png differ diff --git a/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-28.png b/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-28.png index d5cbefe63a..1019885b91 100644 Binary files a/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-28.png and b/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-28.png differ diff --git a/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-29.png b/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-29.png index c59c7e4277..d5cbefe63a 100644 Binary files a/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-29.png and b/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-29.png differ diff --git a/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-30.png b/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-30.png new file mode 100644 index 0000000000..c59c7e4277 Binary files /dev/null and b/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-30.png differ diff --git a/Resources/Textures/Structures/Machines/Anomaly/adv_anomaly_vessel.rsi/anomaly-1.png b/Resources/Textures/Structures/Machines/Anomaly/adv_anomaly_vessel.rsi/anomaly-1.png new file mode 100644 index 0000000000..75b33a1d8d Binary files /dev/null and b/Resources/Textures/Structures/Machines/Anomaly/adv_anomaly_vessel.rsi/anomaly-1.png differ diff --git a/Resources/Textures/Structures/Machines/Anomaly/adv_anomaly_vessel.rsi/anomaly-2.png b/Resources/Textures/Structures/Machines/Anomaly/adv_anomaly_vessel.rsi/anomaly-2.png new file mode 100644 index 0000000000..ffa6efd144 Binary files /dev/null and b/Resources/Textures/Structures/Machines/Anomaly/adv_anomaly_vessel.rsi/anomaly-2.png differ diff --git a/Resources/Textures/Structures/Machines/Anomaly/adv_anomaly_vessel.rsi/anomaly-3.png b/Resources/Textures/Structures/Machines/Anomaly/adv_anomaly_vessel.rsi/anomaly-3.png new file mode 100644 index 0000000000..4f17e843d5 Binary files /dev/null and b/Resources/Textures/Structures/Machines/Anomaly/adv_anomaly_vessel.rsi/anomaly-3.png differ diff --git a/Resources/Textures/Structures/Machines/Anomaly/adv_anomaly_vessel.rsi/base.png b/Resources/Textures/Structures/Machines/Anomaly/adv_anomaly_vessel.rsi/base.png new file mode 100644 index 0000000000..a69b856d65 Binary files /dev/null and b/Resources/Textures/Structures/Machines/Anomaly/adv_anomaly_vessel.rsi/base.png differ diff --git a/Resources/Textures/Structures/Machines/Anomaly/adv_anomaly_vessel.rsi/meta.json b/Resources/Textures/Structures/Machines/Anomaly/adv_anomaly_vessel.rsi/meta.json new file mode 100644 index 0000000000..e7fe21e79a --- /dev/null +++ b/Resources/Textures/Structures/Machines/Anomaly/adv_anomaly_vessel.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by EmoGarbage404 (github)", + "size": { + "x": 32, + "y": 64 + }, + "states": [ + { + "name": "anomaly-1" + }, + { + "name": "anomaly-2" + }, + { + "name": "anomaly-3" + }, + { + "name": "base" + }, + { + "name": "panel" + }, + { + "name": "powered-1" + }, + { + "name": "powered-2" + }, + { + "name": "powered-3" + } + ] +} diff --git a/Resources/Textures/Structures/Machines/Anomaly/adv_anomaly_vessel.rsi/panel.png b/Resources/Textures/Structures/Machines/Anomaly/adv_anomaly_vessel.rsi/panel.png new file mode 100644 index 0000000000..5c11431bd7 Binary files /dev/null and b/Resources/Textures/Structures/Machines/Anomaly/adv_anomaly_vessel.rsi/panel.png differ diff --git a/Resources/Textures/Structures/Machines/Anomaly/adv_anomaly_vessel.rsi/powered-1.png b/Resources/Textures/Structures/Machines/Anomaly/adv_anomaly_vessel.rsi/powered-1.png new file mode 100644 index 0000000000..504857312a Binary files /dev/null and b/Resources/Textures/Structures/Machines/Anomaly/adv_anomaly_vessel.rsi/powered-1.png differ diff --git a/Resources/Textures/Structures/Machines/Anomaly/adv_anomaly_vessel.rsi/powered-2.png b/Resources/Textures/Structures/Machines/Anomaly/adv_anomaly_vessel.rsi/powered-2.png new file mode 100644 index 0000000000..e9ec8a60d7 Binary files /dev/null and b/Resources/Textures/Structures/Machines/Anomaly/adv_anomaly_vessel.rsi/powered-2.png differ diff --git a/Resources/Textures/Structures/Machines/Anomaly/adv_anomaly_vessel.rsi/powered-3.png b/Resources/Textures/Structures/Machines/Anomaly/adv_anomaly_vessel.rsi/powered-3.png new file mode 100644 index 0000000000..2c93f720c9 Binary files /dev/null and b/Resources/Textures/Structures/Machines/Anomaly/adv_anomaly_vessel.rsi/powered-3.png differ diff --git a/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/base-spinning.png b/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/base-spinning.png new file mode 100644 index 0000000000..16daad92ac Binary files /dev/null and b/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/base-spinning.png differ diff --git a/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/base.png b/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/base.png new file mode 100644 index 0000000000..c145d0322e Binary files /dev/null and b/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/base.png differ diff --git a/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/meta.json b/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/meta.json new file mode 100644 index 0000000000..808d1dbe7f --- /dev/null +++ b/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/meta.json @@ -0,0 +1,31 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Adapted from CEV-Eris by EmoGarbage404 (github) for Space Station 14.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "base-spinning", + "delays": + [ + [ + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "panel" + }, + { + "name": "unshaded" + } + ] +} diff --git a/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/panel.png b/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/panel.png new file mode 100644 index 0000000000..55550305ed Binary files /dev/null and b/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/panel.png differ diff --git a/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/unshaded.png b/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/unshaded.png new file mode 100644 index 0000000000..fcb54a8b9f Binary files /dev/null and b/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/unshaded.png differ diff --git a/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/base.png b/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/base.png new file mode 100644 index 0000000000..ef9305ae2a Binary files /dev/null and b/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/base.png differ diff --git a/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/meta.json b/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/meta.json new file mode 100644 index 0000000000..71eacfdf23 --- /dev/null +++ b/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Adapted from CEV-Eris by EmoGarbage404 (github) for Space Station 14.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "spinning", + "delays": + [ + [ + 0.25, + 0.25, + 0.25, + 0.25 + ] + ] + }, + { + "name": "panel" + }, + { + "name": "unshaded" + } + ] +} diff --git a/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/panel.png b/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/panel.png new file mode 100644 index 0000000000..4208f69693 Binary files /dev/null and b/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/panel.png differ diff --git a/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/spinning.png b/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/spinning.png new file mode 100644 index 0000000000..b2fc90cc12 Binary files /dev/null and b/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/spinning.png differ diff --git a/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/unshaded.png b/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/unshaded.png new file mode 100644 index 0000000000..5c2c1aaff2 Binary files /dev/null and b/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/unshaded.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/deny-unshaded.png b/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/deny-unshaded.png deleted file mode 100644 index c81ec5a929..0000000000 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/deny-unshaded.png and /dev/null differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/fill-0.png b/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/fill-0.png deleted file mode 100644 index 92b816012c..0000000000 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/fill-0.png and /dev/null differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/fill-1.png b/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/fill-1.png deleted file mode 100644 index 6faae75bb7..0000000000 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/fill-1.png and /dev/null differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/fill-2.png b/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/fill-2.png deleted file mode 100644 index 0a0a4a7703..0000000000 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/fill-2.png and /dev/null differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/fill-3.png b/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/fill-3.png deleted file mode 100644 index 4a81949abd..0000000000 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/fill-3.png and /dev/null differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/meta.json b/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/meta.json deleted file mode 100644 index 2fdeb904b8..0000000000 --- a/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/meta.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/1516a728931b4985c1e86f0c5995a5aa1554a1ad and modified by Swept", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "fill-0" - }, - { - "name": "fill-1" - }, - { - "name": "fill-2" - }, - { - "name": "fill-3" - }, - { - "name": "broken" - }, - { - "name": "deny-unshaded", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "normal-unshaded", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "on" - }, - { - "name": "off" - }, - { - "name": "panel" - } - ] -} diff --git a/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/normal-unshaded.png b/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/normal-unshaded.png deleted file mode 100644 index 3ef544801e..0000000000 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/normal-unshaded.png and /dev/null differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/on.png b/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/on.png deleted file mode 100644 index 334c74d09f..0000000000 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/on.png and /dev/null differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/panel.png b/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/panel.png deleted file mode 100644 index 057b8b38bc..0000000000 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/panel.png and /dev/null differ diff --git a/Resources/Textures/Structures/Machines/anomaly_sync.rsi/base.png b/Resources/Textures/Structures/Machines/anomaly_sync.rsi/base.png new file mode 100644 index 0000000000..e51f0e4a80 Binary files /dev/null and b/Resources/Textures/Structures/Machines/anomaly_sync.rsi/base.png differ diff --git a/Resources/Textures/Structures/Machines/anomaly_sync.rsi/energy.png b/Resources/Textures/Structures/Machines/anomaly_sync.rsi/energy.png new file mode 100644 index 0000000000..81e8758c05 Binary files /dev/null and b/Resources/Textures/Structures/Machines/anomaly_sync.rsi/energy.png differ diff --git a/Resources/Textures/Structures/Machines/anomaly_sync.rsi/meta.json b/Resources/Textures/Structures/Machines/anomaly_sync.rsi/meta.json new file mode 100644 index 0000000000..1a8f1a82ec --- /dev/null +++ b/Resources/Textures/Structures/Machines/anomaly_sync.rsi/meta.json @@ -0,0 +1,38 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by ThrShuEd (github) for Space Station 14", + "size": { + "x": 48, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "energy", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "pulse", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Machines/anomaly_sync.rsi/pulse.png b/Resources/Textures/Structures/Machines/anomaly_sync.rsi/pulse.png new file mode 100644 index 0000000000..cceb35afcb Binary files /dev/null and b/Resources/Textures/Structures/Machines/anomaly_sync.rsi/pulse.png differ diff --git a/Resources/Textures/Structures/Machines/artifact_crusher.rsi/base.png b/Resources/Textures/Structures/Machines/artifact_crusher.rsi/base.png new file mode 100644 index 0000000000..cf281d87ff Binary files /dev/null and b/Resources/Textures/Structures/Machines/artifact_crusher.rsi/base.png differ diff --git a/Resources/Textures/Structures/Machines/artifact_crusher.rsi/door-closed.png b/Resources/Textures/Structures/Machines/artifact_crusher.rsi/door-closed.png new file mode 100644 index 0000000000..3a863816f1 Binary files /dev/null and b/Resources/Textures/Structures/Machines/artifact_crusher.rsi/door-closed.png differ diff --git a/Resources/Textures/Structures/Machines/artifact_crusher.rsi/glass.png b/Resources/Textures/Structures/Machines/artifact_crusher.rsi/glass.png new file mode 100644 index 0000000000..04bb703d97 Binary files /dev/null and b/Resources/Textures/Structures/Machines/artifact_crusher.rsi/glass.png differ diff --git a/Resources/Textures/Structures/Machines/artifact_crusher.rsi/lights.png b/Resources/Textures/Structures/Machines/artifact_crusher.rsi/lights.png new file mode 100644 index 0000000000..181e9cb466 Binary files /dev/null and b/Resources/Textures/Structures/Machines/artifact_crusher.rsi/lights.png differ diff --git a/Resources/Textures/Structures/Machines/artifact_crusher.rsi/meta.json b/Resources/Textures/Structures/Machines/artifact_crusher.rsi/meta.json new file mode 100644 index 0000000000..dc0d23c539 --- /dev/null +++ b/Resources/Textures/Structures/Machines/artifact_crusher.rsi/meta.json @@ -0,0 +1,48 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (github) for ss14", + "size": { + "x": 32, + "y": 64 + }, + "states": [ + { + "name": "glass" + }, + { + "name": "door-closed" + }, + { + "name": "piston" + }, + { + "name": "base" + }, + { + "name": "lights" + }, + { + "name": "piston-push", + "delays": [ + [ + 0.66, + 0.66, + 0.66, + 0.66, + 0.66, + 0.66, + 0.66, + 0.66, + 0.66, + 0.66, + 0.66, + 0.66, + 0.66, + 0.66, + 1 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Machines/artifact_crusher.rsi/piston-push.png b/Resources/Textures/Structures/Machines/artifact_crusher.rsi/piston-push.png new file mode 100644 index 0000000000..e9fa5f8aae Binary files /dev/null and b/Resources/Textures/Structures/Machines/artifact_crusher.rsi/piston-push.png differ diff --git a/Resources/Textures/Structures/Machines/artifact_crusher.rsi/piston.png b/Resources/Textures/Structures/Machines/artifact_crusher.rsi/piston.png new file mode 100644 index 0000000000..9b1fe54623 Binary files /dev/null and b/Resources/Textures/Structures/Machines/artifact_crusher.rsi/piston.png differ diff --git a/Resources/Textures/Structures/Machines/electric_grill.rsi/high.png b/Resources/Textures/Structures/Machines/electric_grill.rsi/high.png index b1fe72eb4f..26d0dc6173 100644 Binary files a/Resources/Textures/Structures/Machines/electric_grill.rsi/high.png and b/Resources/Textures/Structures/Machines/electric_grill.rsi/high.png differ diff --git a/Resources/Textures/Structures/Machines/electric_grill.rsi/icon.png b/Resources/Textures/Structures/Machines/electric_grill.rsi/icon.png index d085b5b4c8..36b7a174d6 100644 Binary files a/Resources/Textures/Structures/Machines/electric_grill.rsi/icon.png and b/Resources/Textures/Structures/Machines/electric_grill.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Machines/electric_grill.rsi/low.png b/Resources/Textures/Structures/Machines/electric_grill.rsi/low.png index db27683a63..b1de9fa445 100644 Binary files a/Resources/Textures/Structures/Machines/electric_grill.rsi/low.png and b/Resources/Textures/Structures/Machines/electric_grill.rsi/low.png differ diff --git a/Resources/Textures/Structures/Machines/electric_grill.rsi/medium.png b/Resources/Textures/Structures/Machines/electric_grill.rsi/medium.png index ed5d431e8d..5fc7c4b93e 100644 Binary files a/Resources/Textures/Structures/Machines/electric_grill.rsi/medium.png and b/Resources/Textures/Structures/Machines/electric_grill.rsi/medium.png differ diff --git a/Resources/Textures/Structures/Machines/electric_grill.rsi/meta.json b/Resources/Textures/Structures/Machines/electric_grill.rsi/meta.json index acb06666db..bdd5782436 100644 --- a/Resources/Textures/Structures/Machines/electric_grill.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/electric_grill.rsi/meta.json @@ -1,7 +1,7 @@ { - "version": 1, + "version": 2, "license": "CC0-1.0", - "copyright": "Created by deltanedas (github) for SS14.", + "copyright": "Original base by deltanedas (github) for SS14. Resprited by (DISCORD)@ps3moira#9488", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Machines/hotplate.rsi/beaker.png b/Resources/Textures/Structures/Machines/hotplate.rsi/beaker.png index 1ca59f7699..fb4d799dd7 100644 Binary files a/Resources/Textures/Structures/Machines/hotplate.rsi/beaker.png and b/Resources/Textures/Structures/Machines/hotplate.rsi/beaker.png differ diff --git a/Resources/Textures/Structures/Machines/hotplate.rsi/icon.png b/Resources/Textures/Structures/Machines/hotplate.rsi/icon.png index ee6f0599cf..477892612f 100644 Binary files a/Resources/Textures/Structures/Machines/hotplate.rsi/icon.png and b/Resources/Textures/Structures/Machines/hotplate.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Machines/hotplate.rsi/on.png b/Resources/Textures/Structures/Machines/hotplate.rsi/on.png index 20582bf810..58f69bed1c 100644 Binary files a/Resources/Textures/Structures/Machines/hotplate.rsi/on.png and b/Resources/Textures/Structures/Machines/hotplate.rsi/on.png differ diff --git a/Resources/Textures/Structures/Machines/server.rsi/meta.json b/Resources/Textures/Structures/Machines/server.rsi/meta.json index 25ff730243..fec8f76e6c 100644 --- a/Resources/Textures/Structures/Machines/server.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/server.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/master/icons/obj/machines/excelsior/autolathe.dmi at 40b254106b46981b8ad95ccd5589deb8fa56e765", + "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/master/icons/obj/machines/excelsior/autolathe.dmi at 40b254106b46981b8ad95ccd5589deb8fa56e765. Variant-research made for Space Station 14 by Nairod(github)", "states": [ { "name": "server" @@ -30,6 +30,10 @@ { "name": "variant-crew" + }, + { + "name": "variant-research" + } ] } diff --git a/Resources/Textures/Structures/Machines/server.rsi/variant-research.png b/Resources/Textures/Structures/Machines/server.rsi/variant-research.png new file mode 100644 index 0000000000..31051f5175 Binary files /dev/null and b/Resources/Textures/Structures/Machines/server.rsi/variant-research.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/broken.png b/Resources/Textures/Structures/Machines/smartfridge.rsi/broken.png similarity index 100% rename from Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/broken.png rename to Resources/Textures/Structures/Machines/smartfridge.rsi/broken.png diff --git a/Resources/Textures/Structures/Machines/smartfridge.rsi/meta.json b/Resources/Textures/Structures/Machines/smartfridge.rsi/meta.json new file mode 100644 index 0000000000..309594f44a --- /dev/null +++ b/Resources/Textures/Structures/Machines/smartfridge.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/1516a728931b4985c1e86f0c5995a5aa1554a1ad and modified by Swept, modified by emisse for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "smartfridge_open" + }, + { + "name": "smartfridge" + }, + { + "name": "off" + }, + { + "name": "broken" + }, + { + "name": "smartfridge_door" + } + ] +} diff --git a/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/off.png b/Resources/Textures/Structures/Machines/smartfridge.rsi/off.png similarity index 100% rename from Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/off.png rename to Resources/Textures/Structures/Machines/smartfridge.rsi/off.png diff --git a/Resources/Textures/Structures/Machines/smartfridge.rsi/smartfridge.png b/Resources/Textures/Structures/Machines/smartfridge.rsi/smartfridge.png new file mode 100644 index 0000000000..ced744c574 Binary files /dev/null and b/Resources/Textures/Structures/Machines/smartfridge.rsi/smartfridge.png differ diff --git a/Resources/Textures/Structures/Machines/smartfridge.rsi/smartfridge_door.png b/Resources/Textures/Structures/Machines/smartfridge.rsi/smartfridge_door.png new file mode 100644 index 0000000000..a0e9999eb8 Binary files /dev/null and b/Resources/Textures/Structures/Machines/smartfridge.rsi/smartfridge_door.png differ diff --git a/Resources/Textures/Structures/Machines/smartfridge.rsi/smartfridge_open.png b/Resources/Textures/Structures/Machines/smartfridge.rsi/smartfridge_open.png new file mode 100644 index 0000000000..a43b41686b Binary files /dev/null and b/Resources/Textures/Structures/Machines/smartfridge.rsi/smartfridge_open.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-1.png b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-1.png new file mode 100644 index 0000000000..a030b2d524 Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-1.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-2.png b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-2.png new file mode 100644 index 0000000000..9007c74cb3 Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-2.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-3.png b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-3.png new file mode 100644 index 0000000000..364bd10840 Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-3.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-4.png b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-4.png new file mode 100644 index 0000000000..efbfaf5c04 Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-4.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-5.png b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-5.png new file mode 100644 index 0000000000..f87544fa82 Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-5.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-6.png b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-6.png new file mode 100644 index 0000000000..1fabf81878 Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-6.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-7.png b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-7.png new file mode 100644 index 0000000000..55e26a4d5a Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-7.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/meta.json b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/meta.json new file mode 100644 index 0000000000..591c223e5c --- /dev/null +++ b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/meta.json @@ -0,0 +1,60 @@ +{ + "version":1, + "size": + { + "x":32, + "y":32 + }, + "copyright":"Created by EmoGarbage404 (github) for Space Station 14.", + "license":"CC0-1.0", + "states": + [ + { + "name":"off" + }, + { + "name":"on", + "delays": + [ + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + ] + }, + { + "name":"panel" + }, + { + "name":"trans" + }, + { + "name":"pipe", + "directions":4 + }, + { + "name":"fill-1" + }, + { + "name":"fill-2" + }, + { + "name":"fill-3" + }, + { + "name":"fill-4" + }, + { + "name":"fill-5" + }, + { + "name":"fill-6" + }, + { + "name":"fill-7" + } + ] +} diff --git a/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/off.png b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/off.png new file mode 100644 index 0000000000..523adff6c3 Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/off.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/on.png b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/on.png new file mode 100644 index 0000000000..268750001a Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/on.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/panel.png b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/panel.png new file mode 100644 index 0000000000..05c2f179fa Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/panel.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/pipe.png b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/pipe.png new file mode 100644 index 0000000000..c9fbbec300 Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/pipe.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/trans.png b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/trans.png new file mode 100644 index 0000000000..06e34a2e36 Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/trans.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/meta.json b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/meta.json index ccf2bd69bc..ae4ff9b12d 100644 --- a/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/meta.json +++ b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/meta.json @@ -7,6 +7,10 @@ "license":"CC-BY-SA-3.0", "copyright":"pipeTrinaryConnectors made by Menshin for SS14 based on pipeTJunction, the rest is taken from https://github.com/tgstation/tgstation at commit 57cd1d59ca019dd0e7811ac451f295f818e573da", "states":[ + { + "name":"pipeBroken", + "directions":1 + }, { "name":"pipeTJunction", "directions":4 diff --git a/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/pipeBroken.png b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/pipeBroken.png new file mode 100644 index 0000000000..8a54fed66d Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/pipeBroken.png differ diff --git a/Resources/Textures/Structures/Piping/disposal.rsi/meta.json b/Resources/Textures/Structures/Piping/disposal.rsi/meta.json index fd0ed2ac25..87655b6b86 100644 --- a/Resources/Textures/Structures/Piping/disposal.rsi/meta.json +++ b/Resources/Textures/Structures/Piping/disposal.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/blob/bbe32606902c90f5290b57d905a3f31b84dc6d7d/icons/obj/pipes/disposal.dmi and modified by DrSmugleaf", + "copyright": "https://github.com/discordia-space/CEV-Eris/blob/bbe32606902c90f5290b57d905a3f31b84dc6d7d/icons/obj/pipes/disposal.dmi and modified by DrSmugleaf. Signal router sprites based on normal router modified by deltanedas (github).", "states": [ { "name": "condisposal", @@ -827,6 +827,78 @@ 1.0 ] ] + }, + { + "name": "signal-router", + "directions": 4, + "delays": [ + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ] + ] + }, + { + "name": "signal-router-free", + "directions": 4, + "delays": [ + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ] + ] + }, + { + "name": "signal-router-flipped", + "directions": 4, + "delays": [ + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ] + ] + }, + { + "name": "signal-router-flipped-free", + "directions": 4, + "delays": [ + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ] + ] } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Structures/Piping/disposal.rsi/signal-router-flipped-free.png b/Resources/Textures/Structures/Piping/disposal.rsi/signal-router-flipped-free.png new file mode 100644 index 0000000000..c8f27f8731 Binary files /dev/null and b/Resources/Textures/Structures/Piping/disposal.rsi/signal-router-flipped-free.png differ diff --git a/Resources/Textures/Structures/Piping/disposal.rsi/signal-router-flipped.png b/Resources/Textures/Structures/Piping/disposal.rsi/signal-router-flipped.png new file mode 100644 index 0000000000..8ea007cf87 Binary files /dev/null and b/Resources/Textures/Structures/Piping/disposal.rsi/signal-router-flipped.png differ diff --git a/Resources/Textures/Structures/Piping/disposal.rsi/signal-router-free.png b/Resources/Textures/Structures/Piping/disposal.rsi/signal-router-free.png new file mode 100644 index 0000000000..672aa5658d Binary files /dev/null and b/Resources/Textures/Structures/Piping/disposal.rsi/signal-router-free.png differ diff --git a/Resources/Textures/Structures/Piping/disposal.rsi/signal-router.png b/Resources/Textures/Structures/Piping/disposal.rsi/signal-router.png new file mode 100644 index 0000000000..2c9d4dd682 Binary files /dev/null and b/Resources/Textures/Structures/Piping/disposal.rsi/signal-router.png differ diff --git a/Resources/Textures/Structures/Specific/Anomalies/Cores/bluespace_core.rsi/core.png b/Resources/Textures/Structures/Specific/Anomalies/Cores/bluespace_core.rsi/core.png new file mode 100644 index 0000000000..818a2fe22b Binary files /dev/null and b/Resources/Textures/Structures/Specific/Anomalies/Cores/bluespace_core.rsi/core.png differ diff --git a/Resources/Textures/Structures/Specific/Anomalies/Cores/bluespace_core.rsi/meta.json b/Resources/Textures/Structures/Specific/Anomalies/Cores/bluespace_core.rsi/meta.json new file mode 100644 index 0000000000..94ffa2be6e --- /dev/null +++ b/Resources/Textures/Structures/Specific/Anomalies/Cores/bluespace_core.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by TheShuEd (github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "core" + }, + { + "name": "pulse", + "delays": [ + [ + 0.15625, + 0.15625, + 0.15625, + 0.15625 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Specific/Anomalies/Cores/bluespace_core.rsi/pulse.png b/Resources/Textures/Structures/Specific/Anomalies/Cores/bluespace_core.rsi/pulse.png new file mode 100644 index 0000000000..88421da601 Binary files /dev/null and b/Resources/Textures/Structures/Specific/Anomalies/Cores/bluespace_core.rsi/pulse.png differ diff --git a/Resources/Textures/Structures/Specific/Anomalies/Cores/electric_core.rsi/core.png b/Resources/Textures/Structures/Specific/Anomalies/Cores/electric_core.rsi/core.png new file mode 100644 index 0000000000..9176daa63a Binary files /dev/null and b/Resources/Textures/Structures/Specific/Anomalies/Cores/electric_core.rsi/core.png differ diff --git a/Resources/Textures/Structures/Specific/Anomalies/Cores/electric_core.rsi/meta.json b/Resources/Textures/Structures/Specific/Anomalies/Cores/electric_core.rsi/meta.json new file mode 100644 index 0000000000..94ffa2be6e --- /dev/null +++ b/Resources/Textures/Structures/Specific/Anomalies/Cores/electric_core.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by TheShuEd (github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "core" + }, + { + "name": "pulse", + "delays": [ + [ + 0.15625, + 0.15625, + 0.15625, + 0.15625 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Specific/Anomalies/Cores/electric_core.rsi/pulse.png b/Resources/Textures/Structures/Specific/Anomalies/Cores/electric_core.rsi/pulse.png new file mode 100644 index 0000000000..32a49cb7f4 Binary files /dev/null and b/Resources/Textures/Structures/Specific/Anomalies/Cores/electric_core.rsi/pulse.png differ diff --git a/Resources/Textures/Structures/Specific/Anomalies/Cores/flesh_core.rsi/core.png b/Resources/Textures/Structures/Specific/Anomalies/Cores/flesh_core.rsi/core.png new file mode 100644 index 0000000000..b6dc8fc386 Binary files /dev/null and b/Resources/Textures/Structures/Specific/Anomalies/Cores/flesh_core.rsi/core.png differ diff --git a/Resources/Textures/Structures/Specific/Anomalies/Cores/flesh_core.rsi/meta.json b/Resources/Textures/Structures/Specific/Anomalies/Cores/flesh_core.rsi/meta.json new file mode 100644 index 0000000000..94ffa2be6e --- /dev/null +++ b/Resources/Textures/Structures/Specific/Anomalies/Cores/flesh_core.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by TheShuEd (github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "core" + }, + { + "name": "pulse", + "delays": [ + [ + 0.15625, + 0.15625, + 0.15625, + 0.15625 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Specific/Anomalies/Cores/flesh_core.rsi/pulse.png b/Resources/Textures/Structures/Specific/Anomalies/Cores/flesh_core.rsi/pulse.png new file mode 100644 index 0000000000..8e26e73327 Binary files /dev/null and b/Resources/Textures/Structures/Specific/Anomalies/Cores/flesh_core.rsi/pulse.png differ diff --git a/Resources/Textures/Structures/Specific/Anomalies/Cores/gravity_core.rsi/core.png b/Resources/Textures/Structures/Specific/Anomalies/Cores/gravity_core.rsi/core.png new file mode 100644 index 0000000000..ccc1645d2d Binary files /dev/null and b/Resources/Textures/Structures/Specific/Anomalies/Cores/gravity_core.rsi/core.png differ diff --git a/Resources/Textures/Structures/Specific/Anomalies/Cores/gravity_core.rsi/meta.json b/Resources/Textures/Structures/Specific/Anomalies/Cores/gravity_core.rsi/meta.json new file mode 100644 index 0000000000..94ffa2be6e --- /dev/null +++ b/Resources/Textures/Structures/Specific/Anomalies/Cores/gravity_core.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by TheShuEd (github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "core" + }, + { + "name": "pulse", + "delays": [ + [ + 0.15625, + 0.15625, + 0.15625, + 0.15625 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Specific/Anomalies/Cores/gravity_core.rsi/pulse.png b/Resources/Textures/Structures/Specific/Anomalies/Cores/gravity_core.rsi/pulse.png new file mode 100644 index 0000000000..9d22ec71d1 Binary files /dev/null and b/Resources/Textures/Structures/Specific/Anomalies/Cores/gravity_core.rsi/pulse.png differ diff --git a/Resources/Textures/Structures/Specific/Anomalies/Cores/ice_core.rsi/core.png b/Resources/Textures/Structures/Specific/Anomalies/Cores/ice_core.rsi/core.png new file mode 100644 index 0000000000..de0694c7d8 Binary files /dev/null and b/Resources/Textures/Structures/Specific/Anomalies/Cores/ice_core.rsi/core.png differ diff --git a/Resources/Textures/Structures/Specific/Anomalies/Cores/ice_core.rsi/meta.json b/Resources/Textures/Structures/Specific/Anomalies/Cores/ice_core.rsi/meta.json new file mode 100644 index 0000000000..94ffa2be6e --- /dev/null +++ b/Resources/Textures/Structures/Specific/Anomalies/Cores/ice_core.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by TheShuEd (github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "core" + }, + { + "name": "pulse", + "delays": [ + [ + 0.15625, + 0.15625, + 0.15625, + 0.15625 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Specific/Anomalies/Cores/ice_core.rsi/pulse.png b/Resources/Textures/Structures/Specific/Anomalies/Cores/ice_core.rsi/pulse.png new file mode 100644 index 0000000000..b2ffbeb13c Binary files /dev/null and b/Resources/Textures/Structures/Specific/Anomalies/Cores/ice_core.rsi/pulse.png differ diff --git a/Resources/Textures/Structures/Specific/Anomalies/Cores/liquid_core.rsi/core.png b/Resources/Textures/Structures/Specific/Anomalies/Cores/liquid_core.rsi/core.png new file mode 100644 index 0000000000..f44798cf18 Binary files /dev/null and b/Resources/Textures/Structures/Specific/Anomalies/Cores/liquid_core.rsi/core.png differ diff --git a/Resources/Textures/Structures/Specific/Anomalies/Cores/liquid_core.rsi/meta.json b/Resources/Textures/Structures/Specific/Anomalies/Cores/liquid_core.rsi/meta.json new file mode 100644 index 0000000000..94ffa2be6e --- /dev/null +++ b/Resources/Textures/Structures/Specific/Anomalies/Cores/liquid_core.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by TheShuEd (github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "core" + }, + { + "name": "pulse", + "delays": [ + [ + 0.15625, + 0.15625, + 0.15625, + 0.15625 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Specific/Anomalies/Cores/liquid_core.rsi/pulse.png b/Resources/Textures/Structures/Specific/Anomalies/Cores/liquid_core.rsi/pulse.png new file mode 100644 index 0000000000..d8b04a5aaa Binary files /dev/null and b/Resources/Textures/Structures/Specific/Anomalies/Cores/liquid_core.rsi/pulse.png differ diff --git a/Resources/Textures/Structures/Specific/Anomalies/Cores/pyro_core.rsi/core.png b/Resources/Textures/Structures/Specific/Anomalies/Cores/pyro_core.rsi/core.png new file mode 100644 index 0000000000..61a5f22489 Binary files /dev/null and b/Resources/Textures/Structures/Specific/Anomalies/Cores/pyro_core.rsi/core.png differ diff --git a/Resources/Textures/Structures/Specific/Anomalies/Cores/pyro_core.rsi/meta.json b/Resources/Textures/Structures/Specific/Anomalies/Cores/pyro_core.rsi/meta.json new file mode 100644 index 0000000000..94ffa2be6e --- /dev/null +++ b/Resources/Textures/Structures/Specific/Anomalies/Cores/pyro_core.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by TheShuEd (github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "core" + }, + { + "name": "pulse", + "delays": [ + [ + 0.15625, + 0.15625, + 0.15625, + 0.15625 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Specific/Anomalies/Cores/pyro_core.rsi/pulse.png b/Resources/Textures/Structures/Specific/Anomalies/Cores/pyro_core.rsi/pulse.png new file mode 100644 index 0000000000..537c619d19 Binary files /dev/null and b/Resources/Textures/Structures/Specific/Anomalies/Cores/pyro_core.rsi/pulse.png differ diff --git a/Resources/Textures/Structures/Specific/Anomalies/Cores/rock_core.rsi/core.png b/Resources/Textures/Structures/Specific/Anomalies/Cores/rock_core.rsi/core.png new file mode 100644 index 0000000000..3d3ddce24e Binary files /dev/null and b/Resources/Textures/Structures/Specific/Anomalies/Cores/rock_core.rsi/core.png differ diff --git a/Resources/Textures/Structures/Specific/Anomalies/Cores/rock_core.rsi/meta.json b/Resources/Textures/Structures/Specific/Anomalies/Cores/rock_core.rsi/meta.json new file mode 100644 index 0000000000..94ffa2be6e --- /dev/null +++ b/Resources/Textures/Structures/Specific/Anomalies/Cores/rock_core.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by TheShuEd (github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "core" + }, + { + "name": "pulse", + "delays": [ + [ + 0.15625, + 0.15625, + 0.15625, + 0.15625 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Specific/Anomalies/Cores/rock_core.rsi/pulse.png b/Resources/Textures/Structures/Specific/Anomalies/Cores/rock_core.rsi/pulse.png new file mode 100644 index 0000000000..4612777984 Binary files /dev/null and b/Resources/Textures/Structures/Specific/Anomalies/Cores/rock_core.rsi/pulse.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/clown.png b/Resources/Textures/Structures/Storage/closet.rsi/clown.png new file mode 100644 index 0000000000..e84db4906e Binary files /dev/null and b/Resources/Textures/Structures/Storage/closet.rsi/clown.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/clown_door.png b/Resources/Textures/Structures/Storage/closet.rsi/clown_door.png new file mode 100644 index 0000000000..db53379a02 Binary files /dev/null and b/Resources/Textures/Structures/Storage/closet.rsi/clown_door.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/clown_open.png b/Resources/Textures/Structures/Storage/closet.rsi/clown_open.png new file mode 100644 index 0000000000..5e89726c58 Binary files /dev/null and b/Resources/Textures/Structures/Storage/closet.rsi/clown_open.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/generic_icon.png b/Resources/Textures/Structures/Storage/closet.rsi/generic_icon.png new file mode 100644 index 0000000000..2487eae1fd Binary files /dev/null and b/Resources/Textures/Structures/Storage/closet.rsi/generic_icon.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/janitor_bomb.png b/Resources/Textures/Structures/Storage/closet.rsi/janitor_bomb.png new file mode 100644 index 0000000000..a25fb4a6ed Binary files /dev/null and b/Resources/Textures/Structures/Storage/closet.rsi/janitor_bomb.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/janitor_bomb_door.png b/Resources/Textures/Structures/Storage/closet.rsi/janitor_bomb_door.png new file mode 100644 index 0000000000..f90fd31254 Binary files /dev/null and b/Resources/Textures/Structures/Storage/closet.rsi/janitor_bomb_door.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/janitor_bomb_open.png b/Resources/Textures/Structures/Storage/closet.rsi/janitor_bomb_open.png new file mode 100644 index 0000000000..2e0e6f716f Binary files /dev/null and b/Resources/Textures/Structures/Storage/closet.rsi/janitor_bomb_open.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/meta.json b/Resources/Textures/Structures/Storage/closet.rsi/meta.json index 5bd2127340..98bbe8085a 100644 --- a/Resources/Textures/Structures/Storage/closet.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/closet.rsi/meta.json @@ -106,6 +106,15 @@ { "name": "bomb_open" }, + { + "name": "janitor_bomb" + }, + { + "name": "janitor_bomb_door" + }, + { + "name": "janitor_bomb_open" + }, { "name": "cabinet" }, @@ -314,6 +323,9 @@ { "name": "generic_open" }, + { + "name": "generic_icon" + }, { "name": "green_door" }, @@ -513,6 +525,27 @@ }, { "name": "yellow_door" + }, + { + "name": "clown" + }, + { + "name": "clown_door" + }, + { + "name": "clown_open" + }, + { + "name": "mime" + }, + { + "name": "mime_door" + }, + { + "name": "mime_open" + }, + { + "name": "representative_door" } ] } diff --git a/Resources/Textures/Structures/Storage/closet.rsi/mime.png b/Resources/Textures/Structures/Storage/closet.rsi/mime.png new file mode 100644 index 0000000000..80e7a67d32 Binary files /dev/null and b/Resources/Textures/Structures/Storage/closet.rsi/mime.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/mime_door.png b/Resources/Textures/Structures/Storage/closet.rsi/mime_door.png new file mode 100644 index 0000000000..45f3657175 Binary files /dev/null and b/Resources/Textures/Structures/Storage/closet.rsi/mime_door.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/mime_open.png b/Resources/Textures/Structures/Storage/closet.rsi/mime_open.png new file mode 100644 index 0000000000..fca2d50921 Binary files /dev/null and b/Resources/Textures/Structures/Storage/closet.rsi/mime_open.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/representative_door.png b/Resources/Textures/Structures/Storage/closet.rsi/representative_door.png new file mode 100644 index 0000000000..474cf1ba27 Binary files /dev/null and b/Resources/Textures/Structures/Storage/closet.rsi/representative_door.png differ diff --git a/Resources/Textures/Structures/Storage/tanks.rsi/cleanerdispenser.png b/Resources/Textures/Structures/Storage/tanks.rsi/cleanerdispenser.png new file mode 100644 index 0000000000..0d42fa402e Binary files /dev/null and b/Resources/Textures/Structures/Storage/tanks.rsi/cleanerdispenser.png differ diff --git a/Resources/Textures/Structures/Storage/tanks.rsi/fueldispenser.png b/Resources/Textures/Structures/Storage/tanks.rsi/fueldispenser.png new file mode 100644 index 0000000000..333ffde9a9 Binary files /dev/null and b/Resources/Textures/Structures/Storage/tanks.rsi/fueldispenser.png differ diff --git a/Resources/Textures/Structures/Storage/tanks.rsi/meta.json b/Resources/Textures/Structures/Storage/tanks.rsi/meta.json index 93b557cf5a..c4d31e80b2 100644 --- a/Resources/Textures/Structures/Storage/tanks.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/tanks.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/8442af39ee82b813194f71db82edd2923d97818d, watercooler Taken from paradise at https://github.com/ParadiseSS13/Paradise/commit/ae2258d9235752ac6d80ec11e36553fe3b6ae59e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/8442af39ee82b813194f71db82edd2923d97818d, watercooler Taken from paradise at https://github.com/ParadiseSS13/Paradise/commit/ae2258d9235752ac6d80ec11e36553fe3b6ae59e, dispensers taken from paradise at https://github.com/ParadiseSS13/Paradise/commit/846ce475b2258a4336d8895f07f2c0f4053963bc", "size": { "x": 32, "y": 32 @@ -117,6 +117,15 @@ }, { "name": "generictank-1" + }, + { + "name": "cleanerdispenser" + }, + { + "name": "fueldispenser" + }, + { + "name": "pepperdispenser" } ] } diff --git a/Resources/Textures/Structures/Storage/tanks.rsi/pepperdispenser.png b/Resources/Textures/Structures/Storage/tanks.rsi/pepperdispenser.png new file mode 100644 index 0000000000..f8b99b5244 Binary files /dev/null and b/Resources/Textures/Structures/Storage/tanks.rsi/pepperdispenser.png differ diff --git a/Resources/Textures/Structures/Wallmounts/flags.rsi/NT_flag.png b/Resources/Textures/Structures/Wallmounts/flags.rsi/NT_flag.png new file mode 100644 index 0000000000..11c0a0c44e Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/flags.rsi/NT_flag.png differ diff --git a/Resources/Textures/Structures/Wallmounts/flags.rsi/blank_flag.png b/Resources/Textures/Structures/Wallmounts/flags.rsi/blank_flag.png new file mode 100644 index 0000000000..4a099faa44 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/flags.rsi/blank_flag.png differ diff --git a/Resources/Textures/Structures/Wallmounts/flags.rsi/lgbtq_flag.png b/Resources/Textures/Structures/Wallmounts/flags.rsi/lgbtq_flag.png new file mode 100644 index 0000000000..36237bb459 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/flags.rsi/lgbtq_flag.png differ diff --git a/Resources/Textures/Structures/Wallmounts/flags.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/flags.rsi/meta.json new file mode 100644 index 0000000000..36d69f0e42 --- /dev/null +++ b/Resources/Textures/Structures/Wallmounts/flags.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Derived by sprites from tgstation at https://github.com/tgstation/tgstation/commit/d0d81185f09ca30d3b0856d476544240dba0de53 and adapted by Saveliy360", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "blank_flag" + }, + { + "name": "NT_flag" + }, + { + "name": "syndie_flag" + }, + { + "name": "lgbtq_flag" + }, + { + "name": "pirate_flag" + } + ] +} diff --git a/Resources/Textures/Structures/Wallmounts/flags.rsi/pirate_flag.png b/Resources/Textures/Structures/Wallmounts/flags.rsi/pirate_flag.png new file mode 100644 index 0000000000..06483312ac Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/flags.rsi/pirate_flag.png differ diff --git a/Resources/Textures/Structures/Wallmounts/flags.rsi/syndie_flag.png b/Resources/Textures/Structures/Wallmounts/flags.rsi/syndie_flag.png new file mode 100644 index 0000000000..cac0a5f221 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/flags.rsi/syndie_flag.png differ diff --git a/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/meta.json new file mode 100644 index 0000000000..f5d234d91b --- /dev/null +++ b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "copyright": "Taken from Paradise Station from commit https://github.com/ParadiseSS13/Paradise/commit/137338f4dd3cb33124ab3fbd55a4865dd2bdab81", + "license": "CC-BY-SA-3.0", + "states": [ + { + "name": "noticeboard" + }, + { + "name": "notice-0" + }, + { + "name": "notice-1" + }, + { + "name": "notice-2" + }, + { + "name": "notice-3" + }, + { + "name": "notice-4" + }, + { + "name": "notice-5" + } + ] +} diff --git a/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-0.png b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-0.png new file mode 100644 index 0000000000..016d8ba5a7 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-0.png differ diff --git a/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-1.png b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-1.png new file mode 100644 index 0000000000..61b1825a41 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-1.png differ diff --git a/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-2.png b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-2.png new file mode 100644 index 0000000000..d069eef5e9 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-2.png differ diff --git a/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-3.png b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-3.png new file mode 100644 index 0000000000..7e4ac447be Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-3.png differ diff --git a/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-4.png b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-4.png new file mode 100644 index 0000000000..f3ddba1d00 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-4.png differ diff --git a/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-5.png b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-5.png new file mode 100644 index 0000000000..e04a0eb63f Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-5.png differ diff --git a/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/noticeboard.png b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/noticeboard.png new file mode 100644 index 0000000000..378577afdc Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/noticeboard.png differ diff --git a/Resources/Textures/Structures/Wallmounts/screen.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/screen.rsi/meta.json new file mode 100644 index 0000000000..a4c3148aa8 --- /dev/null +++ b/Resources/Textures/Structures/Wallmounts/screen.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "From vgstation: https://github.com/vgstation-coders/vgstation13/commit/a7290010020e541ed6b57817a07023ca6bef26fe#diff-20395160138bed693d15eee6f16d671531b5fa533ec52c50e8df6d52370dbecd", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "screen" + } + ] +} diff --git a/Resources/Textures/Structures/Wallmounts/screen.rsi/screen.png b/Resources/Textures/Structures/Wallmounts/screen.rsi/screen.png new file mode 100644 index 0000000000..a3e7a3fe55 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/screen.rsi/screen.png differ diff --git a/Resources/Textures/Structures/Wallmounts/service_light.rsi/broken.png b/Resources/Textures/Structures/Wallmounts/service_light.rsi/broken.png new file mode 100644 index 0000000000..ea789b2191 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/service_light.rsi/broken.png differ diff --git a/Resources/Textures/Structures/Wallmounts/service_light.rsi/burned.png b/Resources/Textures/Structures/Wallmounts/service_light.rsi/burned.png new file mode 100644 index 0000000000..c7eeb48e1b Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/service_light.rsi/burned.png differ diff --git a/Resources/Textures/Structures/Wallmounts/service_light.rsi/empty.png b/Resources/Textures/Structures/Wallmounts/service_light.rsi/empty.png new file mode 100644 index 0000000000..bcdc0ee0ff Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/service_light.rsi/empty.png differ diff --git a/Resources/Textures/Structures/Wallmounts/service_light.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/service_light.rsi/meta.json new file mode 100644 index 0000000000..cf91d5d1a5 --- /dev/null +++ b/Resources/Textures/Structures/Wallmounts/service_light.rsi/meta.json @@ -0,0 +1,49 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "On, off, broken, burned, empty sprites by RiceMar1244", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "broken", + "directions": 4 + }, + { + "name": "burned", + "directions": 4 + }, + { + "name": "empty", + "directions": 4 + }, + { + "name": "off", + "directions": 4 + }, + { + "name": "on", + "directions": 4, + "delays": [ + [ + 0.1, + 0.5 + ], + [ + 0.1, + 0.5 + ], + [ + 0.1, + 0.5 + ], + [ + 0.1, + 0.5 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Wallmounts/service_light.rsi/off.png b/Resources/Textures/Structures/Wallmounts/service_light.rsi/off.png new file mode 100644 index 0000000000..d54b01d159 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/service_light.rsi/off.png differ diff --git a/Resources/Textures/Structures/Wallmounts/service_light.rsi/on.png b/Resources/Textures/Structures/Wallmounts/service_light.rsi/on.png new file mode 100644 index 0000000000..3e52be44ec Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/service_light.rsi/on.png differ diff --git a/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/cabinet-empty-open.png b/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/cabinet-empty-open.png new file mode 100644 index 0000000000..7e8df53b12 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/cabinet-empty-open.png differ diff --git a/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/cabinet-filled-closed.png b/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/cabinet-filled-closed.png new file mode 100644 index 0000000000..ccdae19856 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/cabinet-filled-closed.png differ diff --git a/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/cabinet-filled-open.png b/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/cabinet-filled-open.png new file mode 100644 index 0000000000..22842029db Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/cabinet-filled-open.png differ diff --git a/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/cabinet.png b/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/cabinet.png new file mode 100644 index 0000000000..d663355383 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/cabinet.png differ diff --git a/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/glass-1.png b/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/glass-1.png new file mode 100644 index 0000000000..d22162c7c3 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/glass-1.png differ diff --git a/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/glass-2.png b/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/glass-2.png new file mode 100644 index 0000000000..b4dcdbdf75 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/glass-2.png differ diff --git a/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/glass-3.png b/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/glass-3.png new file mode 100644 index 0000000000..44c775f06c Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/glass-3.png differ diff --git a/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/glass-4.png b/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/glass-4.png new file mode 100644 index 0000000000..cb94f03f9a Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/glass-4.png differ diff --git a/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/glass-up.png b/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/glass-up.png new file mode 100644 index 0000000000..818cb9fb2a Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/glass-up.png differ diff --git a/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/glass.png b/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/glass.png new file mode 100644 index 0000000000..cf8a78e81a Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/glass.png differ diff --git a/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/locked.png b/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/locked.png new file mode 100644 index 0000000000..641150be22 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/meta.json new file mode 100644 index 0000000000..7004450d7e --- /dev/null +++ b/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/meta.json @@ -0,0 +1,50 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Inspired by tg station\u0027s fireaxe cabinet https://github.com/tgstation/tgstation/commit/d0d81185f09ca30d3b0856d476544240dba0de53 Made by DISCORD@ps3moira#9488, sprite further modified and updated by Flareguy", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "glass" + }, + { + "name": "glass-1" + }, + { + "name": "glass-2" + }, + { + "name": "glass-3" + }, + { + "name": "glass-4" + }, + { + "name": "glass-up" + }, + { + "name": "locked" + }, + { + "name": "shotgun" + }, + { + "name": "unlocked" + }, + { + "name": "cabinet" + }, + { + "name": "cabinet-empty-open" + }, + { + "name": "cabinet-filled-closed" + }, + { + "name": "cabinet-filled-open" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/shotgun.png b/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/shotgun.png new file mode 100644 index 0000000000..ef1c77c1dd Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/shotgun.png differ diff --git a/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/unlocked.png b/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/unlocked.png new file mode 100644 index 0000000000..eb00105c6c Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/shotgun_cabinet.rsi/unlocked.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signalscreen.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/signalscreen.rsi/meta.json new file mode 100644 index 0000000000..a5dfc0546b --- /dev/null +++ b/Resources/Textures/Structures/Wallmounts/signalscreen.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (Github) for Space Station 14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "signalscreen" + } + ] +} diff --git a/Resources/Textures/Structures/Wallmounts/textscreen.rsi/textscreen.png b/Resources/Textures/Structures/Wallmounts/signalscreen.rsi/signalscreen.png similarity index 100% rename from Resources/Textures/Structures/Wallmounts/textscreen.rsi/textscreen.png rename to Resources/Textures/Structures/Wallmounts/signalscreen.rsi/signalscreen.png diff --git a/Resources/Textures/Structures/Wallmounts/textscreen.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/textscreen.rsi/meta.json deleted file mode 100644 index 8fb2e2d80f..0000000000 --- a/Resources/Textures/Structures/Wallmounts/textscreen.rsi/meta.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (Github) for Space Station 14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "textscreen" - } - ] -} diff --git a/Resources/Textures/Structures/Walls/grille.rsi/grille_diagonal.png b/Resources/Textures/Structures/Walls/grille.rsi/grille_diagonal.png new file mode 100644 index 0000000000..64443a0b4d Binary files /dev/null and b/Resources/Textures/Structures/Walls/grille.rsi/grille_diagonal.png differ diff --git a/Resources/Textures/Structures/Walls/grille.rsi/meta.json b/Resources/Textures/Structures/Walls/grille.rsi/meta.json index fa55d903c6..975d50264c 100644 --- a/Resources/Textures/Structures/Walls/grille.rsi/meta.json +++ b/Resources/Textures/Structures/Walls/grille.rsi/meta.json @@ -10,6 +10,9 @@ { "name": "grille" }, + { + "name": "grille_diagonal" + }, { "name": "grille_broken" }, diff --git a/Resources/Textures/Structures/Walls/rock.rsi/meta.json b/Resources/Textures/Structures/Walls/rock.rsi/meta.json index d9e72a5055..0cdbae8978 100644 --- a/Resources/Textures/Structures/Walls/rock.rsi/meta.json +++ b/Resources/Textures/Structures/Walls/rock.rsi/meta.json @@ -97,6 +97,9 @@ { "name": "rock_carbon" }, + { + "name": "rock_coal" + }, { "name": "rock_copper" }, diff --git a/Resources/Textures/Structures/Walls/rock.rsi/rock_coal.png b/Resources/Textures/Structures/Walls/rock.rsi/rock_coal.png new file mode 100644 index 0000000000..a6249ef045 Binary files /dev/null and b/Resources/Textures/Structures/Walls/rock.rsi/rock_coal.png differ diff --git a/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_12.png b/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_12.png new file mode 100644 index 0000000000..76bdfefaf6 Binary files /dev/null and b/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_12.png differ diff --git a/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_4.png b/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_4.png new file mode 100644 index 0000000000..704711e227 Binary files /dev/null and b/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_4.png differ diff --git a/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_8.png b/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_8.png new file mode 100644 index 0000000000..d1e75e29d4 Binary files /dev/null and b/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_8.png differ diff --git a/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/meta.json new file mode 100644 index 0000000000..9d0cc9a505 --- /dev/null +++ b/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation at commit e06b82a7f4b2b09216fb28fd384c95a2e1dc50e5", + "states": [ + {"name": "DamageOverlay_4", "directions": 1}, + {"name": "DamageOverlay_8", "directions": 1}, + {"name": "DamageOverlay_12", "directions": 1} + ] +} diff --git a/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_12.png b/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_12.png new file mode 100644 index 0000000000..1d6459b8b2 Binary files /dev/null and b/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_12.png differ diff --git a/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_4.png b/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_4.png new file mode 100644 index 0000000000..d446775f35 Binary files /dev/null and b/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_4.png differ diff --git a/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_8.png b/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_8.png new file mode 100644 index 0000000000..70c23629e9 Binary files /dev/null and b/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_8.png differ diff --git a/Resources/Textures/Structures/Windows/cracks_directional.rsi/meta.json b/Resources/Textures/Structures/Windows/cracks_directional.rsi/meta.json new file mode 100644 index 0000000000..df077f67d2 --- /dev/null +++ b/Resources/Textures/Structures/Windows/cracks_directional.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Adapted from https://github.com/space-wizards/space-station-14/ at commit f57e8ec6b9b4b72ef56c8146be0bc159ed2691ee, originally added by Zumorica, and modified for directional use by Darkie", + "states": [ + { + "name": "DamageOverlay_4", + "directions": 4 + }, + { + "name": "DamageOverlay_8", + "directions": 4 + }, + { + "name": "DamageOverlay_12", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Structures/Windows/mining.rsi/full.png b/Resources/Textures/Structures/Windows/mining.rsi/full.png new file mode 100644 index 0000000000..a38121d202 Binary files /dev/null and b/Resources/Textures/Structures/Windows/mining.rsi/full.png differ diff --git a/Resources/Textures/Structures/Windows/mining.rsi/meta.json b/Resources/Textures/Structures/Windows/mining.rsi/meta.json new file mode 100644 index 0000000000..8604780420 --- /dev/null +++ b/Resources/Textures/Structures/Windows/mining.rsi/meta.json @@ -0,0 +1,46 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Paradise station https://github.com/ParadiseSS13/Paradise/blob/master/icons/obj/smooth_structures/windows/pod_window.dmi and modified by NULL882", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "full" + }, + { + "name": "mwindow0", + "directions": 4 + }, + { + "name": "mwindow1", + "directions": 4 + }, + { + "name": "mwindow2", + "directions": 4 + }, + { + "name": "mwindow3", + "directions": 4 + }, + { + "name": "mwindow4", + "directions": 4 + }, + { + "name": "mwindow5", + "directions": 4 + }, + { + "name": "mwindow6", + "directions": 4 + }, + { + "name": "mwindow7", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Structures/Windows/mining.rsi/mwindow0.png b/Resources/Textures/Structures/Windows/mining.rsi/mwindow0.png new file mode 100644 index 0000000000..1416a381de Binary files /dev/null and b/Resources/Textures/Structures/Windows/mining.rsi/mwindow0.png differ diff --git a/Resources/Textures/Structures/Windows/mining.rsi/mwindow1.png b/Resources/Textures/Structures/Windows/mining.rsi/mwindow1.png new file mode 100644 index 0000000000..48c3461769 Binary files /dev/null and b/Resources/Textures/Structures/Windows/mining.rsi/mwindow1.png differ diff --git a/Resources/Textures/Structures/Windows/mining.rsi/mwindow2.png b/Resources/Textures/Structures/Windows/mining.rsi/mwindow2.png new file mode 100644 index 0000000000..1416a381de Binary files /dev/null and b/Resources/Textures/Structures/Windows/mining.rsi/mwindow2.png differ diff --git a/Resources/Textures/Structures/Windows/mining.rsi/mwindow3.png b/Resources/Textures/Structures/Windows/mining.rsi/mwindow3.png new file mode 100644 index 0000000000..48c3461769 Binary files /dev/null and b/Resources/Textures/Structures/Windows/mining.rsi/mwindow3.png differ diff --git a/Resources/Textures/Structures/Windows/mining.rsi/mwindow4.png b/Resources/Textures/Structures/Windows/mining.rsi/mwindow4.png new file mode 100644 index 0000000000..ced25ea415 Binary files /dev/null and b/Resources/Textures/Structures/Windows/mining.rsi/mwindow4.png differ diff --git a/Resources/Textures/Structures/Windows/mining.rsi/mwindow5.png b/Resources/Textures/Structures/Windows/mining.rsi/mwindow5.png new file mode 100644 index 0000000000..84ce6f1696 Binary files /dev/null and b/Resources/Textures/Structures/Windows/mining.rsi/mwindow5.png differ diff --git a/Resources/Textures/Structures/Windows/mining.rsi/mwindow6.png b/Resources/Textures/Structures/Windows/mining.rsi/mwindow6.png new file mode 100644 index 0000000000..ced25ea415 Binary files /dev/null and b/Resources/Textures/Structures/Windows/mining.rsi/mwindow6.png differ diff --git a/Resources/Textures/Structures/Windows/mining.rsi/mwindow7.png b/Resources/Textures/Structures/Windows/mining.rsi/mwindow7.png new file mode 100644 index 0000000000..f0ac5b6b90 Binary files /dev/null and b/Resources/Textures/Structures/Windows/mining.rsi/mwindow7.png differ diff --git a/Resources/Textures/Structures/Windows/mining_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/mining_diagonal.rsi/meta.json new file mode 100644 index 0000000000..439147564d --- /dev/null +++ b/Resources/Textures/Structures/Windows/mining_diagonal.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by NULL882 (github)", + "states": [ + { + "name": "state0" + }, + { + "name": "state1" + } + ] +} diff --git a/Resources/Textures/Structures/Windows/mining_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/mining_diagonal.rsi/state0.png new file mode 100644 index 0000000000..54af8484b2 Binary files /dev/null and b/Resources/Textures/Structures/Windows/mining_diagonal.rsi/state0.png differ diff --git a/Resources/Textures/Structures/Windows/mining_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/mining_diagonal.rsi/state1.png new file mode 100644 index 0000000000..f790c761bc Binary files /dev/null and b/Resources/Textures/Structures/Windows/mining_diagonal.rsi/state1.png differ diff --git a/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/meta.json new file mode 100644 index 0000000000..453a379722 --- /dev/null +++ b/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (github)", + "states": [ + { + "name": "state0" + }, + { + "name": "state1" + } + ] +} diff --git a/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state0.png new file mode 100644 index 0000000000..60d1c0421b Binary files /dev/null and b/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state0.png differ diff --git a/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state1.png new file mode 100644 index 0000000000..1ae08dba88 Binary files /dev/null and b/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state1.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/meta.json new file mode 100644 index 0000000000..453a379722 --- /dev/null +++ b/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (github)", + "states": [ + { + "name": "state0" + }, + { + "name": "state1" + } + ] +} diff --git a/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state0.png new file mode 100644 index 0000000000..8ad1f325b3 Binary files /dev/null and b/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state0.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state1.png new file mode 100644 index 0000000000..e724d3b9f7 Binary files /dev/null and b/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state1.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_uranium_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/reinforced_uranium_diagonal.rsi/meta.json new file mode 100644 index 0000000000..453a379722 --- /dev/null +++ b/Resources/Textures/Structures/Windows/reinforced_uranium_diagonal.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (github)", + "states": [ + { + "name": "state0" + }, + { + "name": "state1" + } + ] +} diff --git a/Resources/Textures/Structures/Windows/reinforced_uranium_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/reinforced_uranium_diagonal.rsi/state0.png new file mode 100644 index 0000000000..facbfda3ad Binary files /dev/null and b/Resources/Textures/Structures/Windows/reinforced_uranium_diagonal.rsi/state0.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_uranium_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/reinforced_uranium_diagonal.rsi/state1.png new file mode 100644 index 0000000000..3799df51bf Binary files /dev/null and b/Resources/Textures/Structures/Windows/reinforced_uranium_diagonal.rsi/state1.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/meta.json new file mode 100644 index 0000000000..453a379722 --- /dev/null +++ b/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (github)", + "states": [ + { + "name": "state0" + }, + { + "name": "state1" + } + ] +} diff --git a/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state0.png new file mode 100644 index 0000000000..eb9489ddb4 Binary files /dev/null and b/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state0.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state1.png new file mode 100644 index 0000000000..6525420716 Binary files /dev/null and b/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state1.png differ diff --git a/Resources/Textures/Structures/Windows/shuttle_window_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/shuttle_window_diagonal.rsi/meta.json new file mode 100644 index 0000000000..453a379722 --- /dev/null +++ b/Resources/Textures/Structures/Windows/shuttle_window_diagonal.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (github)", + "states": [ + { + "name": "state0" + }, + { + "name": "state1" + } + ] +} diff --git a/Resources/Textures/Structures/Windows/shuttle_window_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/shuttle_window_diagonal.rsi/state0.png new file mode 100644 index 0000000000..d218355a78 Binary files /dev/null and b/Resources/Textures/Structures/Windows/shuttle_window_diagonal.rsi/state0.png differ diff --git a/Resources/Textures/Structures/Windows/shuttle_window_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/shuttle_window_diagonal.rsi/state1.png new file mode 100644 index 0000000000..810b703900 Binary files /dev/null and b/Resources/Textures/Structures/Windows/shuttle_window_diagonal.rsi/state1.png differ diff --git a/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/meta.json new file mode 100644 index 0000000000..453a379722 --- /dev/null +++ b/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (github)", + "states": [ + { + "name": "state0" + }, + { + "name": "state1" + } + ] +} diff --git a/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/state0.png new file mode 100644 index 0000000000..45b3c99189 Binary files /dev/null and b/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/state0.png differ diff --git a/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/state1.png new file mode 100644 index 0000000000..5286b1e17e Binary files /dev/null and b/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/state1.png differ diff --git a/Resources/Textures/Structures/Windows/window_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/window_diagonal.rsi/meta.json new file mode 100644 index 0000000000..453a379722 --- /dev/null +++ b/Resources/Textures/Structures/Windows/window_diagonal.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (github)", + "states": [ + { + "name": "state0" + }, + { + "name": "state1" + } + ] +} diff --git a/Resources/Textures/Structures/Windows/window_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/window_diagonal.rsi/state0.png new file mode 100644 index 0000000000..df5805957d Binary files /dev/null and b/Resources/Textures/Structures/Windows/window_diagonal.rsi/state0.png differ diff --git a/Resources/Textures/Structures/Windows/window_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/window_diagonal.rsi/state1.png new file mode 100644 index 0000000000..83737b8cef Binary files /dev/null and b/Resources/Textures/Structures/Windows/window_diagonal.rsi/state1.png differ diff --git a/Resources/Textures/Raw Sprites/Humanoid/human.png b/Resources/Textures/Template/Humanoid/human.png similarity index 100% rename from Resources/Textures/Raw Sprites/Humanoid/human.png rename to Resources/Textures/Template/Humanoid/human.png diff --git a/Resources/Textures/Template/Humanoid/reptilian.png b/Resources/Textures/Template/Humanoid/reptilian.png new file mode 100644 index 0000000000..b70dbc51b6 Binary files /dev/null and b/Resources/Textures/Template/Humanoid/reptilian.png differ diff --git a/Resources/Textures/Raw Sprites/softsuits.png b/Resources/Textures/Template/softsuits.png similarity index 100% rename from Resources/Textures/Raw Sprites/softsuits.png rename to Resources/Textures/Template/softsuits.png diff --git a/Resources/Textures/Tiles/attributions.yml b/Resources/Textures/Tiles/attributions.yml index b732333dd7..3616d5a7ec 100644 --- a/Resources/Textures/Tiles/attributions.yml +++ b/Resources/Textures/Tiles/attributions.yml @@ -6,6 +6,16 @@ copyright: "CEV-Eris commit 28e589f0ff72a009adf17db767e90be39054f0f2" source: "https://github.com/discordia-space/CEV-Eris/" +- files: ["plating.png"] + license: "CC-BY-SA-3.0" + copyright: "Taken from CEV-Eris commit 8e74e4370f4d5885f15c3f834973b1223ddb8b1b, modified by github user @Flareguy" + source: "https://github.com/discordia-space/CEV-Eris/" + +- files: ["plating_damaged.png", "plating_burnt.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified by github user @Flareguy from plating.png, using damaged plating sprites from /tg/station at commit https://github.com/tgstation/tgstation/blob/6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae/icons/turf/floors.dmi" + source: "https://github.com/space-wizards/space-station-14/pull/21711" + - files: [ "asteroid_red.png", "asteroid_tile.png", "elevator_shaft.png", "freezer.png", "green_circuit.png", "lino.png", "mono.png", "rock_vault.png", "showroom.png"] license: "CC-BY-SA-3.0" copyright: "vgstation13 at roughly commit e4d3ea7f69d21c3667be12b114fa935c4640cb05, asteroid_red and asteroid_tile taken from commit /vg/station at commit 02b9f6894af4419c9f7e699a22c402b086d8067e." @@ -16,7 +26,7 @@ copyright: "Taken from /tg/station at commit 6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae." source: "https://github.com/tgstation/tgstation/" -- files: ["blue_circuit.png", "cropped_parallax.png", "eighties.png", "gold.png", "grass.png", "ironsand1.png", "ironsand2.png", "ironsand3.png", "ironsand4.png", "junglegrass.png", "lattice.png", "plating.png", "reinforced.png", "silver.png", "snow.png", "wood.png"] +- files: ["blue_circuit.png", "cropped_parallax.png", "eighties.png", "gold.png", "grass.png", "ironsand1.png", "ironsand2.png", "ironsand3.png", "ironsand4.png", "junglegrass.png", "lattice.png", "reinforced.png", "silver.png", "snow.png", "wood.png"] license: "CC-BY-SA-3.0" copyright: "tgstation commit 8abb19545828230d92ba18827feeb42a67a55d49, cropped_parallax modified from parallax." source: "https://github.com/tgstation/tgstation/" @@ -41,7 +51,7 @@ copyright: "Created by github user @notquitehadouken." source: "https://github.com/space-wizards/space-station-14/pull/17948" -- files: [ "bar.png", "blue.png", "kitchen.png", "laundry.png", "mime.png", "steel.png", "steel_dirty.png", "steel_diagonal.png", "steel_mini.png", "steel_offset.png", "steel_pavement.png", "white.png", "white_diagonal.png", "white_mini.png", "white_offset.png", "white_pavement.png", "dark.png", "dark_diagonal.png", "dark_mini.png", "dark_offset.png", "dark_pavement.png", "hydro.png", "plastic.png", "dark_plastic.png", "white_plastic.png", "cafeteria.png", "checker_dark.png", "clown.png" ] +- files: [ "bar.png", "lime.png", "blue.png", "kitchen.png", "laundry.png", "mime.png", "steel.png", "steel_dirty.png", "steel_diagonal.png", "steel_mini.png", "steel_offset.png", "steel_pavement.png", "white.png", "white_diagonal.png", "white_mini.png", "white_offset.png", "white_pavement.png", "dark.png", "dark_diagonal.png", "dark_mini.png", "dark_offset.png", "dark_pavement.png", "hydro.png", "plastic.png", "dark_plastic.png", "white_plastic.png", "cafeteria.png", "checker_dark.png", "clown.png" ] license: "CC-BY-SA-3.0" copyright: "Created by github user @Flareguy, original, unedited base tiles modified from /tg/station at commit 6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae and github user @moonheart08" source: "https://github.com/space-wizards/space-station-14/" @@ -51,10 +61,10 @@ copyright: "arcadered renamed from eightiesred, arcadeblue by Peptide90 modified from arcadered.png, tgstation commit 8abb19545828230d92ba18827feeb42a67a55d49" source: "https://github.com/tgstation/tgstation/" -- files: ["hull", "hull_reinforced.png"] +- files: ["hull", "hull_reinforced.png", "steel_damaged.png", "steel_burnt.png"] license: "CC-BY-SA-3.0" copyright: "Taken from /tg/station at commit 6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae" - source: "https://github.com/space-wizards/space-station-14/pull/18676" + source: "https://github.com/tgstation/tgstation/" - files: ["shuttleblue.png", "shuttleorange.png", "shuttlepurple.png", "shuttlered.png", "shuttlewhite.png"] license: "CC-BY-SA-3.0" @@ -99,4 +109,9 @@ - files: ["chromite.png"] license: "CC-BY-NC-SA-3.0" copyright: "taken at commit 0587dd16e28108bdf0b0a28e2caae4319845e861, and recolored by TheShuEd" - source: "https://github.com/Mojave-Sun/mojave-sun-13" \ No newline at end of file + source: "https://github.com/Mojave-Sun/mojave-sun-13" + +- files: ["mining_floor.png", "mining_floor_dark.png", "mining_floor_light.png"] + license: "CC-BY-SA-3.0" + copyright: "taken at https://github.com/ParadiseSS13/Paradise/commit/43889a89d5a9378fd120d627f74613edb1841a66" + source: "https://github.com/ParadiseSS13/Paradise" diff --git a/Resources/Textures/Tiles/lime.png b/Resources/Textures/Tiles/lime.png new file mode 100644 index 0000000000..bf528d278b Binary files /dev/null and b/Resources/Textures/Tiles/lime.png differ diff --git a/Resources/Textures/Tiles/mining_floor.png b/Resources/Textures/Tiles/mining_floor.png new file mode 100644 index 0000000000..14ca175236 Binary files /dev/null and b/Resources/Textures/Tiles/mining_floor.png differ diff --git a/Resources/Textures/Tiles/mining_floor_dark.png b/Resources/Textures/Tiles/mining_floor_dark.png new file mode 100644 index 0000000000..310a7ff0e9 Binary files /dev/null and b/Resources/Textures/Tiles/mining_floor_dark.png differ diff --git a/Resources/Textures/Tiles/mining_floor_light.png b/Resources/Textures/Tiles/mining_floor_light.png new file mode 100644 index 0000000000..ce10e56b6d Binary files /dev/null and b/Resources/Textures/Tiles/mining_floor_light.png differ diff --git a/Resources/Textures/Tiles/plating_burnt.png b/Resources/Textures/Tiles/plating_burnt.png new file mode 100644 index 0000000000..7c89de081e Binary files /dev/null and b/Resources/Textures/Tiles/plating_burnt.png differ diff --git a/Resources/Textures/Tiles/plating_damaged.png b/Resources/Textures/Tiles/plating_damaged.png new file mode 100644 index 0000000000..03984d0942 Binary files /dev/null and b/Resources/Textures/Tiles/plating_damaged.png differ diff --git a/Resources/Textures/Tiles/steel.png b/Resources/Textures/Tiles/steel.png index d9405e7d5c..b7792ef138 100644 Binary files a/Resources/Textures/Tiles/steel.png and b/Resources/Textures/Tiles/steel.png differ diff --git a/Resources/Textures/Tiles/steel_burnt.png b/Resources/Textures/Tiles/steel_burnt.png new file mode 100644 index 0000000000..646c285916 Binary files /dev/null and b/Resources/Textures/Tiles/steel_burnt.png differ diff --git a/Resources/Textures/Tiles/steel_damaged.png b/Resources/Textures/Tiles/steel_damaged.png new file mode 100644 index 0000000000..c226b12c02 Binary files /dev/null and b/Resources/Textures/Tiles/steel_damaged.png differ diff --git a/Resources/clientCommandPerms.yml b/Resources/clientCommandPerms.yml index 1ea9b6a716..6f0c5b5e3a 100644 --- a/Resources/clientCommandPerms.yml +++ b/Resources/clientCommandPerms.yml @@ -57,6 +57,7 @@ - toggledecals - nodevis - nodevisfilter + - showbiome - net_draw_interp - showmeleespread - showgunspread diff --git a/Resources/engineCommandPerms.yml b/Resources/engineCommandPerms.yml index f8db432c3d..423da9cdc8 100644 --- a/Resources/engineCommandPerms.yml +++ b/Resources/engineCommandPerms.yml @@ -39,6 +39,7 @@ - addview - removeview - hwid + - showaudio - showpos - showray - showchunkbb diff --git a/Resources/keybinds.yml b/Resources/keybinds.yml index 1b82435861..b3ba05def2 100644 --- a/Resources/keybinds.yml +++ b/Resources/keybinds.yml @@ -510,43 +510,3 @@ binds: - function: Hotbar9 type: State key: Num9 -- function: Loadout0 - type: State - key: Num0 - mod1: Shift -- function: Loadout1 - type: State - key: Num1 - mod1: Shift -- function: Loadout2 - type: State - key: Num2 - mod1: Shift -- function: Loadout3 - type: State - key: Num3 - mod1: Shift -- function: Loadout4 - type: State - key: Num4 - mod1: Shift -- function: Loadout5 - type: State - key: Num5 - mod1: Shift -- function: Loadout6 - type: State - key: Num6 - mod1: Shift -- function: Loadout7 - type: State - key: Num7 - mod1: Shift -- function: Loadout8 - type: State - key: Num8 - mod1: Shift -- function: Loadout9 - type: State - key: Num9 - mod1: Shift diff --git a/Resources/migration.yml b/Resources/migration.yml deleted file mode 100644 index 7d974cb002..0000000000 --- a/Resources/migration.yml +++ /dev/null @@ -1,170 +0,0 @@ -# This is a basic dictionary that maps old entity prototype ids to new ids. This only works for entity prototypes, and -# is intended to allow maps to load without having to manually edit them. An empty or "null" string results in the -# entity getting deleted. - -# e.g., you can swap all walls with windows and delete all tables by adding lines like: -# -# Window: WallSolid -# WallSolid: Window -# Table: null - -# 2023-07-03 -ClothingHeadHelmetHelmet: ClothingHeadHelmetBasic -ClothingHeadHelmetHelmetOld: ClothingHeadHelmetBasic - -# 2023-07-04 -# Bulletproof armor is almost statistically identical to kevlar, however, before this kevlar armor was the closest thing there was to "basic" armor. It makes the most sense to replace it with this. -ClothingOuterVestKevlar: ClothingOuterArmorBasic - -# 2023-07-10 -Intercom: IntercomCommon - -# 2023-07-12 -ToyAssistant: ToyFigurinePassenger - -# 2023-07-20 -ForensicGloves: ClothingHandsGlovesForensic - -# 2023-07-24 -ClothingEyesGlassesBeer: ClothingEyesHudBeer - -# 2023-08-01 -lantern: Lantern -lanternextrabright: LanternFlash - -# 2023-08-04 -BoxMagazineLightRifleHighVelocity: BoxMagazineLightRifle -BoxMagazineMagnumSubMachineGunHighVelocity: BoxMagazineMagnumSubMachineGun -BoxMagazinePistolCaselessRifleHighVelocity: BoxMagazinePistolCaselessRifle -BoxMagazinePistolHighCapacityHighVelocity: BoxMagazinePistolHighCapacity -BoxMagazinePistolHighVelocity: BoxMagazinePistol -BoxMagazinePistolSubMachineGunHighVelocity: BoxMagazinePistolSubMachineGun -BoxMagazineRifleHighVelocity: BoxMagazineRifle -BulletCaselessRifleHighVelocity: BulletCaselessRifle -BulletLightRifleHighVelocity: BulletLightRifle -BulletMagnumHighVelocity: BulletMagnum -BulletPistolHighVelocity: BulletPistol -BulletRifleHighVelocity: BulletRifle -CartridgeCaselessRifleHighVelocity: CartridgeCaselessRifle -CartridgeLightRifleHighVelocity: CartridgeLightRifle -CartridgeMagnumHighVelocity: CartridgeMagnum -CartridgePistolHighVelocity: CartridgePistol -CartridgeRifleHighVelocity: CartridgeRifle -MagazineBoxCaselessRifleHighVelocity: MagazineBoxCaselessRifle -MagazineBoxLightRifleHighVelocity: MagazineBoxLightRifle -MagazineBoxMagnumHighVelocity: MagazineBoxMagnum -MagazineBoxPistolHighVelocity: MagazineBoxPistol -MagazineBoxRifleHighVelocity: MagazineBoxRifle -MagazineCaselessRifleHighVelocity: MagazineCaselessRifle -MagazineCaselessRifleShortHighVelocity: MagazineCaselessRifleShort -MagazineLightRifleHighVelocity: MagazineLightRifle -MagazineMagnumSubMachineGunHighVelocity: MagazineMagnumSubMachineGun -MagazinePistolCaselessRifleHighVelocity: MagazinePistolCaselessRifle -MagazinePistolHighCapacityHighVelocity: MagazinePistolHighCapacity -MagazinePistolHighVelocity: MagazinePistol -MagazinePistolSubMachineGunHighVelocity: MagazinePistolSubMachineGun -MagazineRifleHighVelocity: MagazineRifle -SpeedLoaderMagnumHighVelocity: SpeedLoaderMagnum -SpeedLoaderPistolHighVelocity: SpeedLoaderPistol -# -# 2023-08-07 -#If the name is anything to go off of, these are presumably just CEV-Eris versions of the snow rock (which we already have.) -#They are practically never used in this way however, so they're migrated to the basic rock type. -#MountainRock: AsteroidRock #DeltaV -#MountainRockMining: AsteroidRockMining #DeltaV - -# 2023-08-08 -#WindowTintedDirectional: WindowFrostedDirectional # DeltaV - -# 2023-08-10 -SyringeSpaceacillin: null - -# 2023-08-13 -AirlockPainter: SprayPainter - -# 2023-08-19 -GeneratorPlasma: PortableGeneratorPacman -GeneratorUranium: PortableGeneratorSuperPacman -GeneratorPlasmaMachineCircuitboard: PortableGeneratorPacmanMachineCircuitboard -GeneratorUraniumMachineCircuitboard: PortableGeneratorSuperPacmanMachineCircuitboard - -## Delta V changes follow ## - -# 2023-09-29 (Rebase related migrations) -PosterContrabandSMSyndie: PosterContrabandSafetyMothSyndie -PosterLegitSMPoisoning: PosterLegitSafetyMothPoisoning -PosterLegitSMBoH: PosterLegitSafetyMothBoH -PosterLegitSMHardhats: PosterLegitSafetyMothHardhat -PosterLegitSMFires: PosterLegitSafetyMothFires -PosterLegitSMPiping: PosterLegitSafetyMothPiping -PosterLegitSMMeth: PosterLegitSafetyMothMeth -PosterLegitSMEpi: PosterLegitSafetyMothEpi -PosterLegitSMPills: PosterLegitSafetyMothPills -PosterLegitSMAnomalies: PosterLegitSafetyMothDelam -PosterLegitSMGlimmer: PosterLegitSafetyMothGlimmer -EngineeringTechFab: Autolathe -EngineeringTechFabCircuitboard: AutolatheMachineCircuitboard -ScienceTechFab: Protolathe -ScienceTechFabCircuitboard: ProtolatheMachineCircuitboard -ServiceTechFab: Autolathe -ServiceTechFabCircuitboard: AutolatheMachineCircuitboard - -# 2023-10-05 (Rebase related migrations) -FoodMothTomatoSauce: null -LockerEpistemicsFilled: LockerScienceFilled -LockerMystagogueFilled: LockerResearchDirectorFilled -HyperlinkBookAlerts: BookRandom -HyperlinkBookAtmos: BookAtmosDistro -HyperlinkBookBartending: BookBartendersManual -HyperlinkBookBotany: BookLeafLoversSecret -HyperlinkBookChemistry: BookChemicalCompendium -HyperlinkBookCooking: BookChefGaming -HyperlinkBookGlimmer: BookScientistsGuidebook -HyperlinkBookHacking: BookEngineersHandbook -HyperlinkBookMedical: BookMedicalReferenceBook -HyperlinkBookPower: BookEngineersHandbook -HyperlinkBookProcedure: BookRandom -HyperlinkBookShuttle: BookRandom -HyperlinkBookSpaceLaw: BookSecurity -HyperlinkBookSupernanny: BookHowToSurvive -SpawnPointCataloguer: SpawnPointLibrarian -SpawnPointCyborg: SpawnPointBorg -SpawnPointMedicalCyborg: null -SpawnPointEpistemologist: SpawnPointScientist -SpawnPointMystagogue: SpawnPointResearchDirector -SpawnPointSalvageTechnician: SpawnPointSalvageSpecialist -SpawnPointValet: SpawnPointServiceWorker -VendingMachineEpiDrobe: VendingMachineSciDrobe -PlushieMoffRandom: PlushieMothRandom -PlushieMoffbar: PlushieMothBartender -PlushieMoffsician: PlushieMothMusician -PlushieMoff: PlushieMoth -ArachneWeb: SpiderWeb -PowerCellBluespace: PowerCellHigh -CrateMedicalDefib: CrateMedical -LeftLegSpider: null -RightLegSpider: null -WeaponShotgunEnforcerNonLethal: WeaponShotgunEnforcerRubber - -# 2023-10-06 (Merge related migrations) -FoodMealTaco: FoodMealSoftTaco -FoodTinBeansOpen: FoodTinBeans -FoodBreadMoldy: FoodBreadMoldySlice -FoodMeatPatty: FoodMeatMeatball -ClothingHeadHoodMystic: ClothingHeadHoodMysta - -# 2023-11-07 (Merge of MailDrobe and CourierDrobe) -VendingMachineMailDrobe: VendingMachineCourierDrobe - -#Delta V temporary changes. Remove When items are added. - -MetempsychoticMachine: CloningPod -MetempsychoticMachineCircuitboard: CloningPodMachineCircuitboard -ComputerShipyard: ComputerBroken -ShipyardComputerCircuitboard: null -SpawnMobGolemCult: null -ShogiBoard: CheckerBoard - -#Delta V Optional: Remove "#" for specific maps. -#AsteroidRock: AsteroidAltRock -#AsteroidRockMining: AsteroidAltRockMining diff --git a/RobustToolbox b/RobustToolbox index f5874ea402..2b4a428f9f 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit f5874ea402430bb902a5d5d1f47953679d79d781 +Subproject commit 2b4a428f9feeeb9f92658868fc70c6a5b842ea30 diff --git a/SpaceStation14.sln b/SpaceStation14.sln index a94daa316d..10c4ea1c2c 100644 --- a/SpaceStation14.sln +++ b/SpaceStation14.sln @@ -63,8 +63,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{806ED41A ProjectSection(SolutionItems) = preProject Tools\gen_build_info.py = Tools\gen_build_info.py Tools\generate_hashes.ps1 = Tools\generate_hashes.ps1 - Tools\package_client_build.py = Tools\package_client_build.py - Tools\package_server_build.py = Tools\package_server_build.py EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Robust.Shared.Scripting", "RobustToolbox\Robust.Shared.Scripting\Robust.Shared.Scripting.csproj", "{41B450C0-A361-4CD7-8121-7072B8995CFC}" diff --git a/TODO.md b/TODO.md new file mode 100644 index 0000000000..c6e2a6cc0c --- /dev/null +++ b/TODO.md @@ -0,0 +1,21 @@ +- [X] ~~https://github.com/space-wizards/space-station-14/commit/1c604a41a54f286604fa48e1b14f66d3c2d975dd - Replace our mothroaches with these (includes 672969b710d3da073564ef2b3757cb2aba411835)~~ + +- [ ] https://github.com/space-wizards/space-station-14/commit/670f7459d0fd722d756db8adaded6838963679fa - Investigate if this is our problem or not + +- [X] ~~https://github.com/space-wizards/space-station-14/commit/d07ea20f74bedc584cef22f1bad1a9f50b80baf1 - Probably not required~~ + +- [ ] Proper announcement attributions + +- [ ] Move Shiva localization into /DeltaV/ + +- [ ] https://github.com/space-wizards/space-station-14/commit/eb0c86f803648c0ad8387f7255e15c402dc41653 - Does this have to do with storage refactor is it actually generic? + +- [ ] a698a85f3489b32df81ce5f6c62a2ad86465fea4 - Funny shuttle shit + +- [ ] beb8c262ae0633767647ad5dbbafc1b1fa1a5dec - To discuss :blunt: + +- [ ] 736300d505d72d1302392df2f474624c4087e440 - Make this work for the normal inventory system + +- [ ] b37b988ce36cd73cc15f321ecd36c89d84476841 - Fuck xaml + +- [ ] 0349c53d0cf723eec8bd72deb82e370cc9aa6519 - Sigh \ No newline at end of file diff --git a/Tools/Nyanotrasen/TidyToolHowTo.txt b/Tools/Nyanotrasen/TidyToolHowTo.txt index a582a58a3d..2c0c98755c 100644 --- a/Tools/Nyanotrasen/TidyToolHowTo.txt +++ b/Tools/Nyanotrasen/TidyToolHowTo.txt @@ -1,6 +1,5 @@ The Python add-on Ruamel is needed for this. -Type 'python', hit Enter. Run 'pip install ruamel' or 'pip install ruamel.yml' in Windows Command Prompt If you need to update pip use cmnd 'py -m ensurepip --upgrade' diff --git a/Tools/Nyanotrasen/tidy_map.py b/Tools/Nyanotrasen/tidy_map.py index b392a5bb21..69e9ef18d4 100644 --- a/Tools/Nyanotrasen/tidy_map.py +++ b/Tools/Nyanotrasen/tidy_map.py @@ -23,6 +23,7 @@ def capitalized_bool_dumper(representer, data): "Fixtures", "GravityShake", "HandheldLight", # Floodlights are serializing these? + "PlaySoundBehaviour", ] # The component will have these fields removed, and if there is no other data diff --git a/Tools/actions_changelogs_since_last_run.py b/Tools/actions_changelogs_since_last_run.py index a2501753a6..4ca5dc9cc3 100755 --- a/Tools/actions_changelogs_since_last_run.py +++ b/Tools/actions_changelogs_since_last_run.py @@ -115,7 +115,11 @@ def send_to_discord(entries: Iterable[ChangelogEntry]) -> None: for change in entry["changes"]: emoji = TYPES_TO_EMOJI.get(change['type'], "❓") message = change['message'] - content.write(f"{emoji} {message}\n") + url = entry.get("url") + if url and url.strip(): + content.write(f"{emoji} [-]({url}) {message}\n") + else: + content.write(f"{emoji} - {message}\n") body = { "content": content.getvalue(), diff --git a/Tools/package_client_build.py b/Tools/package_client_build.py old mode 100755 new mode 100644 diff --git a/Tools/package_server_build.py b/Tools/package_server_build.py old mode 100755 new mode 100644 index 32a61722f6..78ef15d8d0 --- a/Tools/package_server_build.py +++ b/Tools/package_server_build.py @@ -286,4 +286,4 @@ def copy_content_assemblies(target, zipf): if __name__ == '__main__': - main() + main() \ No newline at end of file diff --git a/Tools/update_changelog.py b/Tools/update_changelog.py index b4e661d80d..53f6d88754 100755 --- a/Tools/update_changelog.py +++ b/Tools/update_changelog.py @@ -61,6 +61,7 @@ def main(): "time", datetime.datetime.now(datetime.timezone.utc).isoformat() ) changes = partyaml["changes"] + url = partyaml.get("url") if not isinstance(changes, list): changes = [changes] @@ -71,7 +72,7 @@ def main(): new_id = max_id entries_list.append( - {"author": author, "time": time, "changes": changes, "id": new_id} + {"author": author, "time": time, "changes": changes, "id": new_id, "url": url} ) os.remove(partpath) diff --git a/flake.lock b/flake.lock index 42b72caa2b..dccd6e6b01 100644 --- a/flake.lock +++ b/flake.lock @@ -5,11 +5,11 @@ "systems": "systems" }, "locked": { - "lastModified": 1685518550, - "narHash": "sha256-o2d0KcvaXzTrPRIo0kOLV0/QXHhDQ5DTi+OxcjO8xqY=", + "lastModified": 1701680307, + "narHash": "sha256-kAuep2h5ajznlPMD9rnQyffWG8EM/C73lejGofXvdM8=", "owner": "numtide", "repo": "flake-utils", - "rev": "a1720a10a6cfe8234c0e93907ffe81be440f4cef", + "rev": "4022d587cbbfd70fe950c1e2083a02621806a725", "type": "github" }, "original": { @@ -20,16 +20,16 @@ }, "nixpkgs": { "locked": { - "lastModified": 1686226347, - "narHash": "sha256-XSe3DXyslXbEMkkPEAZRqNuab5dZbFndpt30BFk5/Hw=", + "lastModified": 1702780907, + "narHash": "sha256-blbrBBXjjZt6OKTcYX1jpe9SRof2P9ZYWPzq22tzXAA=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "5c4b536bc7e94fec9ea542ffde996646a77f33e5", + "rev": "1e2e384c5b7c50dbf8e9c441a9e58d85f408b01f", "type": "github" }, "original": { "owner": "NixOS", - "ref": "release-23.05", + "ref": "release-23.11", "repo": "nixpkgs", "type": "github" } diff --git a/flake.nix b/flake.nix index 4617b65743..e2e119eb99 100644 --- a/flake.nix +++ b/flake.nix @@ -1,7 +1,7 @@ { description = "Development environment for Space Station 14"; - inputs.nixpkgs.url = "github:NixOS/nixpkgs/release-23.05"; + inputs.nixpkgs.url = "github:NixOS/nixpkgs/release-23.11"; inputs.flake-utils.url = "github:numtide/flake-utils"; outputs = { self, nixpkgs, flake-utils }: diff --git a/global.json b/global.json new file mode 100644 index 0000000000..391ba3c2a3 --- /dev/null +++ b/global.json @@ -0,0 +1,6 @@ +{ + "sdk": { + "version": "8.0.100", + "rollForward": "latestFeature" + } +} diff --git a/shell.nix b/shell.nix index ceb775cc99..9c8fe310fe 100644 --- a/shell.nix +++ b/shell.nix @@ -2,7 +2,7 @@ let dependencies = with pkgs; [ - dotnetCorePackages.sdk_7_0 + dotnetCorePackages.sdk_8_0 glfw SDL2 libGL